Repository: tjko/fanpico Branch: main Commit: c67e545143f2 Files: 168 Total size: 11.7 MB Directory structure: gitextract_l4rxsnmc/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── cmake.yml │ └── codeql.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── boards/ │ ├── fanpico-0200/ │ │ ├── README.md │ │ ├── bom.csv │ │ └── kicad/ │ │ ├── extra_fan_channel.kicad_sch │ │ ├── fan_channels.kicad_sch │ │ ├── fanpico.kicad_pcb │ │ ├── fanpico.kicad_pro │ │ ├── fanpico.kicad_sch │ │ ├── power.kicad_sch │ │ └── sensors.kicad_sch │ ├── fanpico-0401D/ │ │ ├── README.md │ │ ├── bom.csv │ │ └── kicad/ │ │ ├── extra_fan_channel.kicad_sch │ │ ├── fan_channel.kicad_sch │ │ ├── fan_channels.kicad_sch │ │ ├── fanpico.kicad_pcb │ │ ├── fanpico.kicad_pro │ │ ├── fanpico.kicad_sch │ │ ├── power.kicad_sch │ │ └── sensors.kicad_sch │ ├── fanpico-0804/ │ │ ├── README.md │ │ ├── bom.csv │ │ └── kicad/ │ │ ├── extra_fan_channel.kicad_sch │ │ ├── fan_channel.kicad_sch │ │ ├── fan_channels.kicad_sch │ │ ├── fanpico.kicad_pcb │ │ ├── fanpico.kicad_pro │ │ ├── fanpico.kicad_sch │ │ ├── power.kicad_sch │ │ └── sensors.kicad_sch │ ├── fanpico-0804D/ │ │ ├── README.md │ │ ├── bom.csv │ │ └── kicad/ │ │ ├── extra_fan_channel.kicad_sch │ │ ├── fan_channel.kicad_sch │ │ ├── fan_channels.kicad_sch │ │ ├── fanpico.kicad_pcb │ │ ├── fanpico.kicad_pro │ │ ├── fanpico.kicad_sch │ │ ├── power.kicad_sch │ │ └── sensors.kicad_sch │ ├── oled-adapter/ │ │ ├── README.md │ │ └── kicad/ │ │ ├── fanpico-oled-adapter.kicad_pcb │ │ ├── fanpico-oled-adapter.kicad_prl │ │ ├── fanpico-oled-adapter.kicad_pro │ │ └── fanpico-oled-adapter.kicad_sch │ └── power-board/ │ ├── README.md │ ├── bom.csv │ └── kicad/ │ ├── fanpico_powerboard.kicad_pcb │ ├── fanpico_powerboard.kicad_prl │ ├── fanpico_powerboard.kicad_pro │ └── fanpico_powerboard.kicad_sch ├── build.sh ├── build_httpd_fs.sh ├── cmake/ │ └── pico_sdk_import.cmake ├── commands.md ├── compile.sh ├── contrib/ │ ├── build_makefsdata.sh │ ├── kicad_extract_netclasses.py │ └── makefsdata.patch ├── credits.txt ├── debug.sh ├── flash.sh ├── kicad/ │ ├── FanPico.pretty/ │ │ ├── D_SOT-23_ANK.kicad_mod │ │ ├── Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.kicad_mod │ │ ├── IND-SMD_L7.2-W6.6_GPSR07X0.kicad_mod │ │ ├── L_7.3x7.3_H3.5_HandSolder.kicad_mod │ │ ├── OLED_module.kicad_mod │ │ ├── P2PAK.kicad_mod │ │ ├── RPi_Pico_PicoW_SMD_TH.kicad_mod │ │ ├── SW-SMD_L3.9-W3.0-P4.45.kicad_mod │ │ ├── SW_PUSH_6mm_SMD_2.kicad_mod │ │ ├── TE 171826-4 Floppy 4-pin Combo.kicad_mod │ │ ├── TE 171826-4 Floppy 4-pin.kicad_mod │ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.kicad_mod │ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle.kicad_mod │ │ ├── TSOT-26.kicad_mod │ │ └── ToolingHole_1.152mm.kicad_mod │ ├── README.md │ └── fanpico.kicad_sym ├── mibs/ │ ├── TJKO-FanPico-MIB │ └── TJKO-ROOT-MIB └── src/ ├── bi_decl.c ├── boards/ │ ├── 0200.h │ ├── 0200.json │ ├── 0401D.h │ ├── 0401D.json │ ├── 0804.h │ ├── 0804.json │ ├── 0804D.h │ └── 0804D.json ├── command.c ├── command_util.c ├── command_util.h ├── config.c ├── config.h.in ├── crc32.c ├── credits.s ├── default_config.S ├── dhcp.c ├── display.c ├── display_lcd.c ├── display_oled.c ├── fanpico-compile.h.in ├── fanpico.c ├── fanpico.h ├── fanpico_fsdata.c ├── filter_lossypeak.c ├── filter_sma.c ├── filters.c ├── filters.h ├── flash.c ├── httpd-fs/ │ ├── 404.html │ ├── fanpico.css │ ├── index.shtml │ ├── status.csv │ └── status.json ├── httpd-fs_ssi.list ├── httpd.c ├── i2c.c ├── log.c ├── log.h ├── logos/ │ ├── custom.h │ ├── custom.s │ ├── default.h │ └── default.s ├── lwip_hooks.h ├── lwipopts.h ├── mbedtls_config.h ├── memmap_custom_rp2040.ld ├── memmap_custom_rp2350.ld ├── memtest.c ├── memtest.h ├── mqtt.c ├── network.c ├── onewire.c ├── psram.c ├── psram.h ├── pulse_len.c ├── pulse_len.h ├── pwm.c ├── sensors.c ├── snmp.c ├── square_wave_gen.c ├── square_wave_gen.h ├── square_wave_gen.pio ├── ssh_util.c ├── sshd.c ├── syslog.c ├── syslog.h ├── tacho.c ├── telnetd.c ├── themes/ │ ├── custom.s │ ├── default-320x240.h │ ├── default-480x320.h │ └── lcd-background.s ├── tls.c ├── util.c ├── util_net.c ├── util_net.h ├── util_rp2.c └── wolfssl/ └── user_settings.h ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: tjko ================================================ FILE: .github/workflows/cmake.yml ================================================ name: Firmware Build on: push: branches: [ "main" ] pull_request: branches: [ "main" ] env: BUILD_THREADS: 4 BUILD_TYPE: Release # Pico-SDK version PICO_SDK_REF: 2.2.0 PICOTOOL_REF: 2.2.0 jobs: build: runs-on: ubuntu-latest outputs: fanpico_version: ${{steps.version-check.outputs.FANPICO_VERSION}} build_date: ${{steps.version-check.outputs.BUILD_DATE}} compiler_version: ${{steps.compiler-version.outputs.CC_VERSION}} strategy: matrix: fanpico_board: ["0804", "0804D", "0401D", "0200"] pico_board: ["pico", "pico_w", "pico2", "pico2_w"] steps: - name: Arm GNU Toolchain (arm-none-eabi-gcc) uses: carlosperate/arm-none-eabi-gcc-action@v1 - name: Check GCC Version id: compiler-version run: | arm-none-eabi-gcc --version ver=$(arm-none-eabi-gcc --version | head -1) echo "CC_VERSION=$ver" >> $GITHUB_OUTPUT - name: Cache Pico-SDK id: cache-pico-sdk uses: actions/cache@v4 with: path: pico-sdk key: ${{runner.os}}-pico-sdk-${{env.PICO_SDK_REF}} - name: Checkout Pico-SDK if: ${{steps.cache-pico-sdk.outputs.cache-hit != 'true' }} uses: actions/checkout@v4 with: repository: raspberrypi/pico-sdk ref: ${{env.PICO_SDK_REF}} path: pico-sdk submodules: recursive - name: Add PICO_SDK_PATH to Environment run: | echo "PICO_SDK_PATH=${{github.workspace}}/pico-sdk" >> $GITHUB_ENV - name: Cache picotool id: cache-picotool uses: actions/cache@v4 with: path: picotool key: ${{runner.os}}-picotool-${{env.PICOTOOL_REF}} - name: Checkout picotool if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }} uses: actions/checkout@v4 with: repository: raspberrypi/picotool ref: ${{env.PICOTOOL_REF}} path: picotool-src submodules: recursive - name: Build picotool if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }} run: | cmake -S picotool-src -B picotool-src/build -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/picotool -DPICOTOOL_FLAT_INSTALL=1 cd picotool-src/build make -j ${{env.BUILD_THREADS}} install - name: Checkout uses: actions/checkout@v4 with: path: main submodules: recursive - name: Configure CMake run: cmake -S main -B ${{github.workspace}}/main/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DPICO_BOARD=${{matrix.pico_board}} -DFANPICO_BOARD=${{matrix.fanpico_board}} -Dpicotool_DIR=${{github.workspace}}/picotool/picotool - name: Check Source Version id: version-check run: | ver=$(awk '/FANPICO_VERSION[[:space:]]/ { gsub(/"/,""); print $3; exit; }' main/build/config.h) echo "FANPICO_VERSION=$ver" >> $GITHUB_ENV echo "FANPICO_VERSION=$ver" >> $GITHUB_OUTPUT date=$(date +%Y%m%d) echo "BUILD_DATE=$date" >> $GITHUB_ENV echo "BUILD_DATE=$date" >> $GITHUB_OUTPUT - name: Build run: cmake --build ${{github.workspace}}/main/build --config ${{env.BUILD_TYPE}} -j ${{env.BUILD_THREADS}} - name: Test working-directory: ${{github.workspace}}/main/build # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: | ls -l fanpico.* sha256sum fanpico.uf2 - name: Gather Artifact Files working-directory: ${{github.workspace}}/main/build run: | mkdir dist cp -av fanpico.uf2 dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.uf2 cp -av fanpico.elf dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.elf cp -av fanpico.elf.map dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.elf.map - name: Upload Artifacts uses: actions/upload-artifact@v4 with: name: firmware-${{matrix.fanpico_board}}-${{matrix.pico_board}}-build${{github.run_number}}-${{env.BUILD_DATE}} path: main/build/dist - name: Gather License Files if: ${{ matrix.fanpico_board == '0804' && matrix.pico_board == 'pico' }} working-directory: ${{github.workspace}}/main run: | mkdir -p licenses/licenses cp -v LICENSE credits.txt licenses/ licenses=$(find libs/ -name 'LICENSE*'; find ${PICO_SDK_PATH}/ -maxdepth 3 -name 'LICENSE*') for file in $licenses; do dir=$(dirname $file) name=$(basename $file) lib=$(basename $dir) cp -v "$file" "licenses/licenses/${name}.${lib}" done - name: Upload License Artifact if: ${{ matrix.fanpico_board == '0804' && matrix.pico_board == 'pico' }} uses: actions/upload-artifact@v4 with: name: licenses path: main/licenses merge: runs-on: ubuntu-latest needs: build env: FANPICO_VERSION: ${{needs.build.outputs.fanpico_version}} BUILD_DATE: ${{needs.build.outputs.build_date}} COMPILER_VERSION: ${{needs.build.outputs.compiler_version}} steps: - name: Download All Artifacts uses: actions/download-artifact@v4 with: path: bundle pattern: firmware-* merge-multiple: true - name: Calculate checksums working-directory: bundle run: | sha256sum * > sha256sums.txt ls -la echo "### Compiler Used" >> $GITHUB_STEP_SUMMARY echo "${{env.COMPILER_VERSION}}" >> $GITHUB_STEP_SUMMARY echo "### Generated firmware files" >> $GITHUB_STEP_SUMMARY echo '```' >> $GITHUB_STEP_SUMMARY cat sha256sums.txt >> $GITHUB_STEP_SUMMARY echo '```' >> $GITHUB_STEP_SUMMARY - name: Upload checksum artifact uses: actions/upload-artifact@v4 with: name: firmware-checksums path: bundle/*.txt - name: Merge Artifacts uses: actions/upload-artifact/merge@v4 with: name: fanpico-firmware-${{env.BUILD_DATE}}-${{env.FANPICO_VERSION}}-build${{github.run_number}} delete-merged: true ================================================ FILE: .github/workflows/codeql.yml ================================================ # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ "main" ] pull_request: # The branches below must be a subset of the branches above branches: [ "main" ] schedule: - cron: '30 8 * * 6' env: BUILD_TYPE: Release # Pico-SDK version PICO_SDK_REF: 2.2.0 PICOTOOL_REF: 2.2.0 jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'cpp' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Use only 'java' to analyze code written in Java, Kotlin or both # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support steps: - name: Arm GNU Toolchain (arm-none-eabi-gcc) uses: carlosperate/arm-none-eabi-gcc-action@v1 - name: Checkout repository uses: actions/checkout@v4 with: submodules: recursive - name: Cache Pico-SDK id: cache-pico-sdk uses: actions/cache@v4 with: path: pico-sdk key: ${{runner.os}}-pico-sdk-${{env.PICO_SDK_REF}} - name: Checkout Pico-SDK if: ${{steps.cache-pico-sdk.outputs.cache-hit != 'true' }} uses: actions/checkout@v4 with: repository: raspberrypi/pico-sdk ref: ${{env.PICO_SDK_REF}} path: pico-sdk submodules: recursive - name: Add PICO_SDK_PATH to Environment run: | echo "PICO_SDK_PATH=${{github.workspace}}/pico-sdk" >> $GITHUB_ENV - name: Cache picotool id: cache-picotool uses: actions/cache@v4 with: path: picotool key: ${{runner.os}}-picotool-${{env.PICOTOOL_REF}} - name: Checkout picotool if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }} uses: actions/checkout@v4 with: repository: raspberrypi/picotool ref: ${{env.PICOTOOL_REF}} path: picotool-src submodules: recursive - name: Build picotool if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }} run: | cmake -S picotool-src -B picotool-src/build -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/picotool -DPICOTOOL_FLAT_INSTALL=1 cd picotool-src/build make -j ${{env.BUILD_THREADS}} install # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - name: Configure CMake run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DPICO_BOARD=pico_w -DFANPICO_BOARD=0804D -Dpicotool_DIR=${{github.workspace}}/picotool/picotool - name: Build run: cmake --build build --config ${{env.BUILD_TYPE}} - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" ================================================ FILE: .gitignore ================================================ CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps # Emacs *~ # MacOS .DS_Store build/ ================================================ FILE: .gitmodules ================================================ [submodule "libs/cJSON"] path = libs/cJSON url = https://github.com/DaveGamble/cJSON.git [submodule "libs/ss_oled-lib"] path = libs/ss_oled-lib url = https://github.com/tjko/ss_oled-lib.git [submodule "libs/libb64"] path = libs/libb64 url = https://github.com/libb64/libb64.git [submodule "libs/bb_spi_lcd-lib"] path = libs/bb_spi_lcd-lib url = https://github.com/tjko/bb_spi_lcd-lib.git [submodule "libs/pico-telnetd"] path = libs/pico-telnetd url = https://github.com/tjko/pico-telnetd.git [submodule "libs/pico-lfs"] path = libs/pico-lfs url = https://github.com/tjko/pico-lfs.git [submodule "libs/pico-1wire-lib"] path = libs/pico-1wire-lib url = https://github.com/tjko/pico-1wire-lib.git [submodule "libs/pico-sensor-lib"] path = libs/pico-sensor-lib url = https://github.com/tjko/pico-sensor-lib.git [submodule "libs/wolfssl"] path = libs/wolfssl url = https://github.com/wolfSSL/wolfssl.git [submodule "libs/wolfssh"] path = libs/wolfssh url = https://github.com/wolfSSL/wolfssh.git [submodule "libs/pico-sshd"] path = libs/pico-sshd url = https://github.com/tjko/pico-sshd.git ================================================ FILE: CMakeLists.txt ================================================ # CMakeLists.txt for fanpico # cmake_minimum_required(VERSION 3.18) # Include Pico-SDK if (DEFINED ENV{PICO_SDK_PATH}) include($ENV{PICO_SDK_PATH}/external/pico_sdk_import.cmake) else () include(cmake/pico_sdk_import.cmake) endif () message("Pico SDK version: ${PICO_SDK_VERSION_STRING}") if (PICO_SDK_VERSION_STRING VERSION_LESS "2.0.0") message(FATAL_ERROR "Pico-SDK version 2.0.0 or later required.") endif() project(fanpico VERSION 1.7.9 DESCRIPTION "FanPico - Programmable PWM (PC) Fan Controller" HOMEPAGE_URL https://kokkonen.net/fanpico/ LANGUAGES C CXX ASM ) set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 17) set(FANPICO_BUILD beta CACHE STRING "Fanpico Build Tag") set(FANPICO_BOARD 0804D CACHE STRING "Fanpico Board Model") #set_property(CACHE FANPICO_BOARD PROPERTY STRINGS 0804 0804D 0401D) set(FANPICO_CUSTOM_THEME 0 CACHE STRING "Fanpico LCD Custom Theme") set(FANPICO_CUSTOM_LOGO 0 CACHE STRING "Fanpico LCD Custom Logo") set(TLS_SUPPORT 1 CACHE STRING "TLS Support") # Generate some "random" data for mbedtls (better than nothing...) set(EXTRA_ENTROPY_LEN 64) string(RANDOM LENGTH ${EXTRA_ENTROPY_LEN} EXTRA_ENTROPY) #set(CMAKE_BUILD_TYPE Debug) pico_sdk_init() message("---------------------------------") message(" FANPICO_BOARD: ${FANPICO_BOARD}") message(" PICO_BOARD: ${PICO_BOARD}") message(" PICO_PLATFORM: ${PICO_PLATFORM}") message("FANPICO_CUSTOM_THEME: ${FANPICO_CUSTOM_THEME}") message(" FANPICO_CUSTOM_LOGO: ${FANPICO_CUSTOM_LOGO}") message(" TLS_SUPPORT: ${TLS_SUPPORT}") message(" CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") message("---------------------------------") # External libaries # pico-lfs add_subdirectory(libs/pico-lfs) # prevent warnings from littlefs... set_source_files_properties( libs/pico-lfs/libs/littlefs/lfs.c PROPERTIES COMPILE_OPTIONS "-Wno-unused-function" ) # ss_oled add_subdirectory(libs/ss_oled-lib) # bb_spi_lcd add_subdirectory(libs/bb_spi_lcd-lib) # cJSON add_library(cJSON INTERFACE) target_include_directories(cJSON INTERFACE libs/cJSON) target_sources(cJSON INTERFACE libs/cJSON/cJSON.h libs/cJSON/cJSON.c ) # libb64 add_library(libb64 INTERFACE) target_include_directories(libb64 INTERFACE libs/libb64/include) target_sources(libb64 INTERFACE libs/libb64/src/cdecode.c libs/libb64/src/cencode.c ) # pico-telnetd add_subdirectory(libs/pico-telnetd) # pico-1wire-lib add_subdirectory(libs/pico-1wire-lib) # pico-sensor-lib add_subdirectory(libs/pico-sensor-lib) # pico-sshd add_subdirectory(libs/pico-sshd) target_compile_definitions(pico-sshd-lib INTERFACE PICOSSHD_EXTERNAL_SHA512CRYPT) # wolfSSL / wolfCrypt if (DEFINED ENV{WOLFSSL_ROOT}) set(WOLFSSL_ROOT $ENV{WOLFSSL_ROOT}) else () set(WOLFSSL_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/libs/wolfssl) endif () message("wolfSSL available at ${WOLFSSL_ROOT}") include(libs/pico-sshd/cmake/wolfssl_pico.cmake) # wolfSSH if (DEFINED ENV{WOLFSSH_ROOT}) set(WOLFSSH_ROOT $ENV{WOLFSSH_ROOT}) else () set(WOLFSSH_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/libs/wolfssh) endif () message("wolfSSH available at ${WOLFSSH_ROOT}") include(libs/pico-sshd/cmake/wolfssh_pico.cmake) include_directories(src/wolfssl) # FanPico Firmware add_executable(fanpico src/fanpico.c src/bi_decl.c src/command.c src/command_util.c src/flash.c src/config.c src/display.c src/display_lcd.c src/display_oled.c src/network.c src/tls.c src/pwm.c src/tacho.c src/sensors.c src/i2c.c src/onewire.c src/filters.c src/filter_lossypeak.c src/filter_sma.c src/square_wave_gen.c src/psram.c src/memtest.c src/pulse_len.c src/util.c src/util_rp2.c src/log.c src/crc32.c src/default_config.S src/credits.s src/logos/default.s src/themes/lcd-background.s ) if (FANPICO_CUSTOM_THEME) message("Enable custom theme...") target_sources(fanpico PRIVATE src/themes/custom.s) set_property(SOURCE src/themes/custom.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/themes) endif() if (FANPICO_CUSTOM_LOGO) message("Enable custom logo...") target_sources(fanpico PRIVATE src/logos/custom.s) set_property(SOURCE src/logos/custom.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/logos) endif() set_property(SOURCE src/*.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src) set_property(SOURCE src/themes/lcd-background.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/themes) set_property(SOURCE src/logos/default.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/logos) set_property(SOURCE src/credits.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}) pico_generate_pio_header(fanpico ${CMAKE_CURRENT_LIST_DIR}/src/square_wave_gen.pio) pico_enable_stdio_usb(fanpico 1) pico_enable_stdio_uart(fanpico 0) pico_add_extra_outputs(fanpico) target_include_directories(fanpico PRIVATE src) configure_file(src/config.h.in config.h) configure_file(src/fanpico-compile.h.in fanpico-compile.h) target_link_libraries(fanpico PRIVATE pico_stdlib pico_stdio_uart pico_multicore pico_rand pico_aon_timer hardware_pwm hardware_pio hardware_adc hardware_i2c pico-lfs cJSON ss_oled-lib bb_spi_lcd-lib libb64 pico_1wire_lib pico_sensor_lib ) if (PICO_CYW43_SUPPORTED) # set by PICO_BOARD=pico_w message("Enabling WiFi stuff...") target_sources(fanpico PRIVATE src/dhcp.c src/syslog.c src/httpd.c src/mqtt.c src/telnetd.c src/snmp.c src/sshd.c src/ssh_util.c # ${WOLFSSL_ROOT}/wolfcrypt/test/test.c src/util_net.c ) target_link_libraries(fanpico PRIVATE pico_cyw43_arch_lwip_threadsafe_background pico_lwip_sntp pico_lwip_http pico_lwip_mqtt pico_lwip_snmp pico-telnetd-lib pico-sshd-lib wolfssl wolfssh ) if (TLS_SUPPORT) target_link_libraries(fanpico PRIVATE pico_lwip_mbedtls pico_mbedtls ) # prevent warnings from mbedtls... set_source_files_properties( ${PICO_LWIP_PATH}/src/apps/altcp_tls/altcp_tls_mbedtls.c PROPERTIES COMPILE_OPTIONS "-Wno-unused-result" ) endif() endif() target_compile_options(fanpico PRIVATE -Wall) #target_compile_options(fanpico PRIVATE -fno-strict-aliasing -fwrapv -fno-aggressive-loop-optimizations) #target_compile_options(fanpico PRIVATE -fstack-protector-all) target_compile_options(fanpico PRIVATE -fmacro-prefix-map=${CMAKE_SOURCE_DIR}/=) target_compile_definitions(fanpico PRIVATE USBD_MANUFACTURER="TJKO Industries") target_compile_definitions(fanpico PRIVATE USBD_PRODUCT="FanPico-${FANPICO_BOARD} Fan Controller") target_compile_definitions(fanpico PRIVATE USBD_DESC_STR_MAX=32) target_compile_definitions(fanpico PRIVATE PARAM_ASSERTIONS_ENABLE_ALL=1) target_compile_definitions(fanpico PRIVATE PICO_MALLOC_PANIC=0) target_compile_definitions(fanpico PRIVATE PICO_DEBUG_MALLOC=0) #target_compile_definitions(fanpico PRIVATE PICO_DEOPTIMIZED_DEBUG=1) target_compile_definitions(fanpico PRIVATE PICO_STACK_SIZE=0x2000) target_compile_definitions(fanpico PRIVATE PICO_CORE1_STACK_SIZE=0x1000) target_compile_definitions(fanpico PRIVATE PICO_USE_STACK_GUARDS=1) target_compile_definitions(fanpico PRIVATE PICO_RP2040_USB_DEVICE_ENUMERATION_FIX=1) target_compile_definitions(fanpico PRIVATE PICO_USE_FASTEST_SUPPORTED_CLOCK=1) target_compile_definitions(fanpico PRIVATE PICO_EMBED_XIP_SETUP=1) #target_compile_definitions(bs2_default PRIVATE PICO_FLASH_SPI_CLKDIV=2) target_compile_definitions(fanpico PRIVATE LFS_THREADSAFE=1 LFS_NO_DEBUG=1 # LFS_YES_TRACE=1 # I2C_DEBUG=1 ) if (${PICO_PLATFORM} MATCHES rp2350) pico_set_linker_script(fanpico ${CMAKE_SOURCE_DIR}/src/memmap_custom_rp2350.ld) else() pico_set_linker_script(fanpico ${CMAKE_SOURCE_DIR}/src/memmap_custom_rp2040.ld) endif() # eof :-) ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================ # Fanpico: Programmable PWM (PC) Fan Controller [![CI](https://github.com/tjko/fanpico/actions/workflows/cmake.yml/badge.svg)](https://github.com/tjko/fanpico/actions/workflows/cmake.yml) [![CodeQL](https://github.com/tjko/fanpico/actions/workflows/codeql.yml/badge.svg)](https://github.com/tjko/fanpico/actions/workflows/codeql.yml)

[OSHW] US002599 | Certified open source hardware | oshwa.org/cert

Fanpico is a smart PWM (PC) fan controller based around [Raspberry Pi Pico](https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html) (RP2040 MCU). Fanpico operates as standalone controller that can be configured and left running. It does not require any drivers and doesn't care what OS is being used. FanPico is an Open-source hardware (OSHW) project. [![FanPico-0804D](images/fanpico-0804D-v1.3-small.jpg)](images/fanpico-0804D-v1.3-large.jpg?raw=true) [![FanPico-0401D](images/fanpico-0401D-small.jpg)](images/fanpico-0401D-large.jpg?raw=true) ## What is it for? * Fanpico is for customizing fan "curves" to fine tune how your motherboard controlled fans run. * Fine tuning fan speeds to easily balance airflow. * Controlling fan based on temperature sensor input. * Monitoring fan speeds and behaviour as well as monitoring what exactly motherboard is doing. * Fanpico works also as standalong controller for other things than a PC, it's been used controlling fans on 3D printers and on enclosed network equipment racks, etc.. ## Features * Controls up to 8 fans. * Connect up to 4 motherboard fan outputs. * Connect up to 2 remote temperature probes (plus onboard "ambient" temperature sensor). * Support for [1-Wire Temperature sensors](https://github.com/tjko/fanpico/wiki/1%E2%80%90Wire-Temperature-Sensors-with-FanPico) (up to 8 sensors) * Support for [I2C Temperature sensors](https://github.com/tjko/fanpico/wiki/I2C-Temperature-Sensors-with-FanPico) (up to 8 sensors) * [OLED](https://github.com/tjko/fanpico/wiki/OLED-(I2C)-Display-Support) and [LCD](https://github.com/tjko/fanpico/wiki/LCD-(SPI)-Panel-Connection) display support (boards where model name ends with "D"). * Can be powered from motherboard fan outputs or using auxiliary power connector (4-Pin Floppy or DC Barrel jack connector). * Ability to define custom fan "curves" for each fan. * Ability to provide custom tachometer (fan RPM) output signal back to motherboard. * Support for Locked Rotor (Alarm) signal fans (allows using regular tachometer fans with system expecting Locked Rotor Alarm fans and vice versa). * Control fans from any motherboard PWM signal or from temperature sensors. * OS Independent, no drivers or software needed. * Configuration stored on the device itself (in the flash memory). * SCPI "like" programming interface (see [Command Reference](commands.md)) * Monitor each fan and motherboard output signals as well as temperatures. * [WiFi support](https://github.com/tjko/fanpico/wiki/FanPico-Network-Interface) if opting to mount Pico W on the board. * [HTTP server](https://github.com/tjko/fanpico/wiki/Fanpico-HTTP-Server) with TLS (HTTPS) support. * [MQTT client](https://github.com/tjko/fanpico/wiki/FanPico-MQTT-Tutorial) with TLS support for logging data and to receive commands. * [Home Assistant](https://github.com/tjko/fanpico/wiki/FanPico-Home-Assistant-(MQTT-Discovery)-Support) support using MQTT Discovery feature. * Telnet server for configuration and monitoring. * [SSH server](https://github.com/tjko/fanpico/wiki/Fanpico-Using-SSH-Server) for configuration and monitoring (experimental). * [SNMP Agent](https://github.com/tjko/fanpico/wiki/SNMP-Agent-Usage) for monitoring. ### Interfaces * Serial "Console". Primary method for configuring/monitoring FanPico units is via (USB) Serial console (some units also have 3.3V TTL Serial connection). * Desktop application (that polls FanPico using SCPI commands over the console connection): [FanPico Monitor](https://github.com/tjko/fanpico-monitor) * Web Interface (available when using _Pico W_) over WiFi [![FanPico](images/fanpico-web-small.png)](images/fanpico-web.png?raw=true) For more documentation check [FanPico Wiki](https://github.com/tjko/fanpico/wiki) ## Sponsors I would like to thank following sponsors, who have helped FanPico project: * PCBWay ## Where can I get one? Currently Fanpico is available as a DIY project. Check discussion forums for places to purchase Kits or PCBs: [Places to Purchase FanPico](https://github.com/tjko/fanpico/discussions/12) (Instructions for building the kit are in [FanPico Wiki](https://github.com/tjko/fanpico/wiki)) However, if there is sufficient interest, then ready-made units may be made available for sale. If you'd be interested in purchasing FanPico pease indicate your interest here: [FanPico Forum](https://github.com/tjko/fanpico/discussions/9) ### DIY Option You can upload the Kerber files (found under boards directory) to your favorite PCB maker website and get your boards produced in matter of days. Component list (BOM or bill of materials) is found under boards directory as well along with the electrical schematics. NOTE, check [discussions forum](https://github.com/tjko/fanpico/discussions/) for giveaways for free PCBs. ### Review Units If you are member of press (or YouTuber) and would like to review/test Fanpico. Please contact me via email. ## How Can I help? * Build your own FanPico and provide feedback, suggestions (see discussion forums). * If you're into electronics new/improved board designs are most welcome. * If you're into programming: - Create cool (desktop) program that allows easily configuring FanPico boards (with ability to "draw" fan curves, etc..) and to monitor Fan statuses. - Help improve the firmware. * If you're into graphics (or web) design: - Help create cool (but lightweight) web interface - Create better logo for FanPico * As this is Open (Source) Hardware Project, if you like to build (and sell) assembled boards or DIY kits, you'd be most welcome... * You can always donate (and get your name added to the Sponsors section, if you so wish). ## Hardware Fanpico is Open Source Hardware, reference design is provided for the "0804" model (8 fan outputs and 4 motherboard fan inputs), and "0804D" model that adds OLED display support (hence the "D" suffix). Additional models with different combinations of fan inputs/outputs could be easily designed (takining into account limitations of Raspberry Pi Pico I/O limits). New and improved PCB models/designs are most welcome. Model "0840D" with (with right-angle connectors and DC power connector): [![Fanpico-0804D](images/fanpico-0804D-v1.3-dc.jpg)](images/fanpico-0804D-v1.3-dc-large.jpg?raw=true) Model "0804" without display (with straight connectors): ![Fanpico-0804](images/fanpico-0804.jpg) ### Hardware Design Fanpico (reference design) utilizes all available I/O pins on a Raspberry Pi Pico. * Fan PWM outputs are driven by the Pico's PWM hardware. * Motherboard Fan PWM inputs are read using Pico's PWM hardware. * Tacho signal output (for motherboard connectors) is generated using Pico's PIO hardware, providing extremely stable tachometer signal. * Tacho signal inputs (from fans) are read differently in model 0804 and 0804D: - 0804: signals are read using GPIO interrupts, measuring all fans simultaneously by counting number of pulses received over a period of time. - 0804D: signals are read through multiplexer measuring one fan at a time, by measuring pulse length. * Temperature readings are done using ADC, with help of a accurrate 3V voltage reference (LM4040). Any NTC (10k or 100k) thermistors can be used as themperature sensors. * Each FAN output has jumper to select whether fan gets its power from associated MBFAN connector or from the AUX connector * There is a jumper to select whether power the Fanpico itself from MBFAN1 or AUX connector. To help design and test Fanpico couple other projects were born: * [Tiny PicoProbe](https://github.com/tjko/tiny-picoprobe/) - tiny PicoProbe implementation. * [Fan Test Adapter](https://github.com/tjko/fan-test-adapter/) - adapter to help simulate motherboard fan outputs. Projects based on FanPico firmware: * [BrickPico](https://github.com/tjko/brickpico/) - (LEGO) LED Light Kit Controller. ### Models (PCB designs) Currently following models are available: |Model|Fans (Outputs)|MB Fan (Inputs)|External Temperature Sensors|Display|Notes| |-----|--------------|---------------|-------------------|--------|-----| |[FANPICO-0804](boards/fanpico-0804/)|8|4|2|N|First publicly available board (reference design).| |[FANPICO-0804D](boards/fanpico-0804D/)|8|4|2|Y|Support for OLED (128x64 or 128x128) displays| |[FANPICO-0401D](boards/fanpico-0401D/)|4|1|2|Y|Adds QWIIC and 1-Wire connectors.| |[FANPICO-0200](boards/fanpico-0200/)|2|0|2|Y|OLED display supported via QWIIC connector. PCB under development. (all boards have one additional 'on-board' temperature sensor on the RP2040 MCU itself) Models ending with "D" have connector to attach OLED display module to see 'real-time' status of fans and temperatures. OLED panel directly mounted on the PCB: ![FanPico OLED Display](images/oled-status-screen-2.jpg) LCD Panel attached via a short cable: ![FanPico LCD Display](images/theme-default-480x320-small.jpg) #### Accessory Boards (PCB designs) Following accessories are available: |Model|Info| |-----|----| |[OLED-Adapter](boards/oled-adapter/)|Mounting adapter for OLED boards with different pinouts.| |[Power-Board](boards/power-board/)|Adapter for using high-power fans with FanPico.| ## Firmware Firmware is developed in C using the Pico SDK. Pre-compiled firmware is released when there is new major features or bug fixes. Latest pre-compiled firmware image can be found here: [Releases](https://github.com/tjko/fanpico/releases) To get latest firmware with latest updates/fixes you must compile the firmware from the sources. ### Installing firmware image Firmware can be installed via the built-in UF2 bootloader on the Raspberry Pi Pico or using the debug header with Picoprobe, etc... #### Selecting Right Firmware to use Each release (zip file) contains multiple different firmware files. Make sure to select firmware for the board you're using and for the pico model ("pico_w" if using Pico W). Firmware file names have format: fanpico--.uf2 ``` fanpico-0401D-pico.uf2 fanpico-0401D-pico_w.uf2 fanpico-0804-pico.uf2 fanpico-0804-pico_w.uf2 fanpico-0804D-pico.uf2 fanpico-0804D-pico_w.uf2 ``` #### Upgrading Firmware Firmware upgrade steps: * Boot Pico into UF2 bootloader. This can be done in two ways: 1) Press and hold "bootsel" button and then press and release "reset" button. 2) Issue command: SYS:UPGRADE * Copy firmware file to the USB mass storage device that appears. * As soon as firmware copy is complete, Pico will reboot and run the fanpico firmware. ### Building Firmware Images Raspberry Pi Pico C/C++ SDK is required for compiling the firmware: #### Requirements / Dependencies * [Raspberry Pi Pico C/C++ SDK](https://www.raspberrypi.com/documentation/microcontrollers/c_sdk.html) * [cJSON](https://github.com/DaveGamble/cJSON) * [pico-lfs](https://github.com/tjko/pico-lfs) * [ss_oled-lib](https://github.com/tjko/ss_oled-lib) * [bb_spi_lcd-lib](https://github.com/tjko/bb_spi_lcd-lib) * [libb64](https://github.com/libb64/libb64) * [pico-telnetd](https://github.com/tjko/pico-telnetd) * [pico-1wire-lib](https://github.com/tjko/pico-1wire-lib) * [pico-sensor-lib](https://github.com/tjko/pico-sensor-lib) * [wolfSSL](https://github.com/wolfSSL/wolfssl) * [wolfSSH](https://github.com/wolfSSL/wolfssh) * [pico-sshd](https://github.com/tjko/pico-sshd) ##### Install Pico SDK Pico SDK must be installed working before you can compile fanpico. Instructions on installing Pico SDK see: [Getting started with Raspberry Pi Pico](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf) (Make sure PICO_SDK_PATH environment variable is set) ##### Downloading sources Create some directory for building fanpico ('src' used in this example): ``` $ mkdir src $ cd src $ git clone https://github.com/tjko/fanpico.git $ git submodule update --init --recursive ``` ##### Building fanpico firmware To build fanpico firmware, first create a build directory: ``` $ cd fanpico $ mkdir build ``` Select which board to build firmware for (default is "0804") and which Pico is to be used (default is "pico"): ``` $ cd build $ cmake -DFANPICO_BOARD=0804D -DPICO_BOARD=pico_w .. ``` Then compile fanpico: ``` $ make -j ``` After successful compile you should see firmware binary in the build directory: subdirectory: ``` $ ls *.uf2 fanpico.uf2 ``` If you have picotool installed you can check the firmware image information: ``` $ picotool info -a fanpico.uf2 File fanpico.uf2 family ID 'rp2040': Program Information name: fanpico version: 1.7.6 web site: https://kokkonen.net/fanpico/ description: FanPico-0804D - Smart PWM Fan Controller features: USB stdin / stdout boot settings: bootdelay = 0 safemode = 0 binary start: 0x10000000 binary end: 0x1012edc0 embedded drive: 0x101c0000-0x10200000 (256K): littlefs Fixed Pin Information 0: TX (Serial) / MISO (SPI) 1: RX (Serial) / CS (SPI) 2: SDA (I2C) / SCK (SPI) 3: SCL (I2C) / MOSI (SPI) 4: Fan1 PWM signal (output) 5: Fan2 PWM signal (output) 6: Fan3 PWM signal (output) 7: Fan4 PWM signal (output) 8: Fan5 PWM signal (output) 9: Fan6 PWM signal (output) 10: Fan7 PWM signal (output) 11: Fan8 PWM signal (output) 12: MB Fan1 tacho signal (output) 13: MB Fan1 PWM signal (input) 14: MB Fan2 tacho signal (output) 15: MB Fan2 PWM signal (input) 16: MB Fan3 tacho signal (output) 17: MB Fan3 PWM signal (input) 18: MB Fan4 tacho signal (output) 19: MB Fan4 PWM signal (input) 20: Multiplexer S2 (output) 21: Multiplexer S1 (output) 22: Multiplexer S0 (output) 26: Multiplexer A [tacho signal] (input) 27: Temperature Sensor1 (input) 28: Temperature Sensor2 (input) Build Information sdk version: 2.1.1 pico_board: pico_w boot2_name: boot2_w25q080 build date: Jul 10 2025 build attributes: Release Metadata Blocks none ``` ================================================ FILE: boards/fanpico-0200/README.md ================================================ # FANPICO-0200 PCB PCB Size: 81.0mm x 60.0mm ![PCB Render](board.png) ## Change Log v1.1 - Add fuse (F3) to prevent pulling too much current through the buck regulator. - Move sensor connectors footprints (J16 & J17) slightly away from board edge to allow better fitment of right angle connectors. v1.0 - First Prototye ================================================ FILE: boards/fanpico-0200/bom.csv ================================================ "Reference","Value","Datasheet","Footprint","Qty","DNP","Mouser Part Number","LCSC Part Number","Manufacturer","Manufacturer Part Number","Type","Notes" "C1,C3,C4,C6,C24,C26,C29","0.1uF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","7","","","C1591","Samsung Electro-Mechanics","CL10B104KB8NNNC","SMD","" "C2","10uF 50V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","1","","","C89632","Samsung Electro-Mechanics","CL31B106KBHNNNE","SMD","" "C5","10uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder","1","","","C7194","Kyocera AVX","TAJB106K025RNJ","SMD","" "C7,C8,C30","10uF 16V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","3","","80--T491A106K016","C7171","Kyocera AVX","TAJA106K016RNJ","SMD","" "C9","12pF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","1","","","C38523","Samsung Electro-Mechanics","CL10C120JB8NNNC","SMD","" "C10,C11","22uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","2","","","C12891","Samsung Electro-Mechanics","CL31A226KAHNNNE","SMD","" "C23,C25","1nF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","2","","","C1588","Samsung Electro-Mechanics","CL10B102KB8NNNC","SMD","" "D1","SM5819PL 1A 40V","~","Diode_SMD:D_SMA","1","","833-SM5819PL-TP","C669023","MCC","SM5819PL-TP","SMD","" "D2,D4,D5,D6","LED 0805 (green)","~","LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder","4","","710-150080GS75000","C434432","Yongyu Photoelectric","SZYY0805G","SMD","" "D3,D28,D31","ES1D 1A 200V","~","Diode_SMD:D_SMA_Handsoldering","3","","512-ES1D","C445494","MDD(Microdiode Semiconductor)","ES1D","SMD","" "D7,D13,D14,D16,D17,D23","3.3V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","6","","","C78439","Brightking","UDD32C03L01","SMD","" "D8","30V TVS","~","Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder","1","","","C7473181","MSKSEMI","PESD0603MS30-MS","SMD","" "D21,D22,D26","12V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","3","","","C5199168","ElecSuper","UDD32C12L01-ES","SMD","C502541" "D27,D30","BAT54(C)","~","FanPico:D_SOT-23_ANK","2","","241-BAT54C_R1_00001","C2844172","FUXINSEMI","BAT54C","SMD","" "D35,D36","5V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","2","","","C5180216","ElecSuper","PESD5V0S1BA-ES","SMD","" "F1","Polyfuse 2A (48V)","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","","C22399926","BHFUSE","BSMD2920-200-48V","SMD","" "F2","Polyfuse 0.5A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","530-0ZCJ0050AF2E","C70072","TECHFUSE","nSMD035-16V","SMD","" "F3","Polyfuse 1A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","","C7542958","LUTE","1206L100/30NR","SMD","" "G1","qwiic_Logo","","sparkfun-qwiic:qwiic_5mm","1","","","","","","","" "G2","Logo_Open_Hardware_Small","~","Symbol:OSHW-Logo_5.7x6mm_SilkScreen","1","","","","","","","" "H1,H2,H3,H4","MountingHole_Pad","~","MountingHole:MountingHole_3.2mm_M3_Pad_Via","4","DNP","","","","","","" "J1","DC Power Input","~","TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal","1","","651-1715022 ","C1509679","JILN","JL301-50002U04","THT","" "J5","1-Wire","~","TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal","1","","","C68305","BOOMELE(Boom Precision Elec)","2.54-3P","THT","C5188443" "J6","QWIIC","~","Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal","1","","","C160404","JST","SM04B-SRSS-TB(LF)(SN)","SMD","" "J13","Fan1 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P" "J14","Fan2 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P" "J16","Sensor1","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C20079","BOOMELE(Boom Precision Elec)","XH-2A","THT","C33132 (Right-Angle)" "J17","Sensor2","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C20079","BOOMELE(Boom Precision Elec)","XH-2A","THT","C33132 (Right-Angle)" "J19","Serial Console (TTL)","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","","C2937625","XFCN","PZ254V-11-03P","THT","" "JP12","1-Wire PullUp Enable","~","Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical","1","","","C492401","XFCN","PZ254V-11-02P","THT","" "L1","10uH","~","FanPico:IND-SMD_L7.2-W6.6_GPSR07X0","1","","","C5189958","SHOU HAN","CYA0630-10UH","SMD","" "R1,R4","1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C22548","YAGEO","RC0603FR-071KL","SMD","" "R2","4.7k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C99782","YAGEO","RC0603FR-074K7L","SMD","" "R3,R48","330","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C105881","YAGEO","RC0603FR-07330RL","SMD","" "R5,R7,R40,R43,R50,R51","10k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","6","","","C98220","YAGEO","RC0603FR-0710KL","SMD","" "R6","4.99k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C114621","YAGEO","RC0603FR-074K99L","SMD","" "R8","422k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C245966","YAGEO","RC0603FR-07422KL","SMD","" "R9","30.1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C23000","UNI-ROYAL","0603WAF3012T5E","SMD","" "R10","49.9k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C114624","YAGEO","RC0603FR-0749K9L","SMD","" "R41,R44","680","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C115415","YAGEO","RC0603JR-07680RL","SMD","" "R49,R55","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C21189","UNI-ROYAL","0603WAF0000T5E","SMD","" "R54","DNF","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","DNP","","C21189","UNI-ROYAL","0603WAF0000T5E","SMD","" "SW1","SW_Push","~","FanPico:SW-SMD_L3.9-W3.0-P4.45","1","","","C720477","XUNPU","TS-1088-AR02016","SMD","" "U1","SN74AHCT126","(AHCT125 = C36365, AHCT126 = C155177)","Package_SO:TSSOP-14_4.4x5mm_P0.65mm","1","","","C155177","TI","SN74AHCT126PWR","SMD","" "U2","AP63301","","FanPico:TSOT-26","1","","","C2158003","DIODES","AP63301WU-7","SMD","" "U4","Pico W","","FanPico:RPi_Pico_PicoW_SMD_TH","1","","","","RaspberryPi","Pico W / Pico 2 W","SMD","" "U5","SPX1117-ADJ","http://www.diodes.com/datasheets/AP1117.pdf","Package_TO_SOT_SMD:SOT-223-3_TabPin2","1","","","C67402","MaxLinear","SPX1117M3-L/TR","SMD","" "U6","LM4040DBZ-3","http://www.ti.com/lit/ds/symlink/lm4040-n.pdf","Package_TO_SOT_SMD:SOT-23","1","","","C143326","MAXIM","LM4040AIM3-3.0+T","SMD","" ================================================ FILE: boards/fanpico-0200/kicad/extra_fan_channel.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "a3e4201d-65f6-465e-922c-6bde94345467") (paper "A4") (title_block (title "FanPico-0200 v1.1") (date "2025-12-05") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 146.05 74.93) (diameter 0) (color 0 0 0 0) (uuid "4934aed7-9338-49be-aee9-d617ef7b3e51") ) (junction (at 195.58 74.93) (diameter 0) (color 0 0 0 0) (uuid "4e267e78-bddd-40b5-9867-c24899e604c9") ) (junction (at 167.64 121.92) (diameter 0) (color 0 0 0 0) (uuid "8f9aa02d-452d-42e7-8563-0d0082e11af4") ) (junction (at 179.07 132.08) (diameter 0) (color 0 0 0 0) (uuid "9f2e46e1-c478-4404-884b-69466fb68e1c") ) (junction (at 179.07 121.92) (diameter 0) (color 0 0 0 0) (uuid "ac05814b-dc09-4f9a-bc3a-2cb524195c3f") ) (junction (at 166.37 74.93) (diameter 0) (color 0 0 0 0) (uuid "bc3c0dfa-b464-40ed-b333-1addf7963fde") ) (junction (at 195.58 46.99) (diameter 0) (color 0 0 0 0) (uuid "c65cf519-771a-455b-9fae-86c31004fccc") ) (wire (pts (xy 195.58 74.93) (xy 195.58 80.01) ) (stroke (width 0) (type default) ) (uuid "05338c02-d69b-4bed-8580-e522a090bd45") ) (wire (pts (xy 195.58 60.96) (xy 195.58 63.5) ) (stroke (width 0) (type default) ) (uuid "07926de5-6438-4a83-8c20-6b36a09f0ddb") ) (polyline (pts (xy 250.19 144.78) (xy 207.01 144.78) ) (stroke (width 0) (type default) ) (uuid "0b251daa-acb2-4563-8a00-282536baae82") ) (wire (pts (xy 101.6 121.92) (xy 101.6 135.89) ) (stroke (width 0) (type default) ) (uuid "1f024d5e-560e-405c-b664-e735dd50af4a") ) (wire (pts (xy 179.07 132.08) (xy 179.07 135.89) ) (stroke (width 0) (type default) ) (uuid "239ab539-0f2d-42cb-a59d-0f7a520a8dcf") ) (wire (pts (xy 195.58 74.93) (xy 212.09 74.93) ) (stroke (width 0) (type default) ) (uuid "24bcd667-a4ad-49f2-82b8-20ee15fe191d") ) (wire (pts (xy 166.37 60.96) (xy 166.37 63.5) ) (stroke (width 0) (type default) ) (uuid "29fa2cb4-25a8-4253-84f8-795855ed8080") ) (wire (pts (xy 171.45 46.99) (xy 195.58 46.99) ) (stroke (width 0) (type default) ) (uuid "3222a7b4-5960-48c5-b386-30b570b191e1") ) (polyline (pts (xy 250.19 31.75) (xy 250.19 144.78) ) (stroke (width 0) (type default) ) (uuid "4bcd8d4b-6bb8-48f7-9029-c4c42d68bceb") ) (wire (pts (xy 167.64 129.54) (xy 167.64 132.08) ) (stroke (width 0) (type default) ) (uuid "4f0cd46e-f1ad-4a55-84d1-386ed36e8a83") ) (wire (pts (xy 166.37 71.12) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "51405f88-3b2e-4de2-9aab-1d126e774505") ) (wire (pts (xy 173.99 74.93) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "5d7c9e49-c51b-4cd3-9c74-e64da3dc723c") ) (wire (pts (xy 195.58 46.99) (xy 212.09 46.99) ) (stroke (width 0) (type default) ) (uuid "64d1f619-52db-4a09-8a28-848f170f0a20") ) (polyline (pts (xy 90.17 34.29) (xy 137.16 34.29) ) (stroke (width 0) (type default) ) (uuid "650bf3ce-8e8e-4b15-8637-54cb9b7d608d") ) (polyline (pts (xy 207.01 31.75) (xy 250.19 31.75) ) (stroke (width 0) (type default) ) (uuid "66311f16-42b4-4a80-99aa-0e16a0305b15") ) (polyline (pts (xy 137.16 90.17) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "71f1d60b-385f-4b2a-8c0f-92a6f8634db3") ) (wire (pts (xy 146.05 87.63) (xy 146.05 91.44) ) (stroke (width 0) (type default) ) (uuid "81e854b4-7131-4b2b-b926-8bd1b2e4e843") ) (wire (pts (xy 66.04 135.89) (xy 101.6 135.89) ) (stroke (width 0) (type default) ) (uuid "8d0a11f6-388a-4c76-ab1d-fdcf7b784131") ) (polyline (pts (xy 90.17 34.29) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "90f6e54f-8e86-4885-a5e0-960086fd80b7") ) (wire (pts (xy 179.07 121.92) (xy 212.09 121.92) ) (stroke (width 0) (type default) ) (uuid "92a45522-f05b-4305-8b6a-18a9db6efdd7") ) (wire (pts (xy 179.07 129.54) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "ac920f33-a13d-4674-8247-5663f541b13e") ) (wire (pts (xy 146.05 74.93) (xy 132.08 74.93) ) (stroke (width 0) (type default) ) (uuid "bb43e9ed-3325-4a9f-855c-573d9e644fdb") ) (wire (pts (xy 146.05 74.93) (xy 146.05 80.01) ) (stroke (width 0) (type default) ) (uuid "c24962ac-0aa7-4b5f-8ff3-244ea83df066") ) (wire (pts (xy 167.64 121.92) (xy 179.07 121.92) ) (stroke (width 0) (type default) ) (uuid "c7dc142e-31cd-4ff7-a1c4-185343ae8f78") ) (wire (pts (xy 166.37 74.93) (xy 146.05 74.93) ) (stroke (width 0) (type default) ) (uuid "cf212b08-31ad-4e19-903d-ca6ccfb8ccdd") ) (wire (pts (xy 195.58 46.99) (xy 195.58 53.34) ) (stroke (width 0) (type default) ) (uuid "d3fb9dda-2c53-4126-a673-2a22ced20443") ) (wire (pts (xy 101.6 121.92) (xy 167.64 121.92) ) (stroke (width 0) (type default) ) (uuid "d56419c1-2488-4102-8a1c-bdb708cc35ca") ) (polyline (pts (xy 207.01 31.75) (xy 207.01 144.78) ) (stroke (width 0) (type default) ) (uuid "d781a121-7dce-4e92-b9ad-3e37759ee30c") ) (wire (pts (xy 167.64 132.08) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "e0a1d798-f495-4ded-8f8a-2525b66ec0d5") ) (wire (pts (xy 195.58 87.63) (xy 195.58 91.44) ) (stroke (width 0) (type default) ) (uuid "ea9008d9-37c4-4f12-b430-1228301c1358") ) (wire (pts (xy 181.61 74.93) (xy 195.58 74.93) ) (stroke (width 0) (type default) ) (uuid "f804c6fc-5a85-423f-8ff9-2e1589e89c38") ) (wire (pts (xy 132.08 46.99) (xy 163.83 46.99) ) (stroke (width 0) (type default) ) (uuid "f8154772-bd77-41c1-9a1e-fcfdebcdcac4") ) (wire (pts (xy 160.02 60.96) (xy 166.37 60.96) ) (stroke (width 0) (type default) ) (uuid "fa3056d1-383c-4a6e-aa50-73d503531c9d") ) (polyline (pts (xy 137.16 34.29) (xy 137.16 90.17) ) (stroke (width 0) (type default) ) (uuid "fcf37293-f178-4396-8fee-82c7d5b494ed") ) (text "MCU Inputs/Outputs" (exclude_from_sim no) (at 104.14 38.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "53707df5-9a46-46d0-ac51-34bdb4c24446") ) (text "(Extra) Fan Channel: ${SHEETNAME}" (exclude_from_sim no) (at 17.78 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "c43db354-0f28-4995-93b5-d0b6a1ecf636") ) (text "To Fan" (exclude_from_sim no) (at 226.06 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e18bc51f-9518-468f-97da-2d26eb089a20") ) (hierarchical_label "PWR_OUT" (shape output) (at 212.09 121.92 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0651f145-e5ab-45b0-a185-34b46b65decd") ) (hierarchical_label "TACHO_READ" (shape output) (at 132.08 74.93 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "17e3805c-dc66-4948-bd12-835d03937191") ) (hierarchical_label "TACHO_IN" (shape input) (at 212.09 74.93 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "44cf5094-95f1-41a4-b2b5-634803e10da1") ) (hierarchical_label "PWM_GEN" (shape input) (at 132.08 46.99 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7f09a51b-27ac-4cfb-822c-abe1268d8c50") ) (hierarchical_label "PWM_OUT" (shape output) (at 212.09 46.99 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7f310825-1f15-4d79-9bab-026cf11500fb") ) (hierarchical_label "PWR_IN" (shape input) (at 66.04 135.89 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e2014b0f-a50a-4333-81ed-31444f0ecafa") ) (symbol (lib_id "power:GND") (at 146.05 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0aebdc55-e632-4445-9db7-ba8cc31b43b3") (property "Reference" "#PWR070" (at 146.05 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 146.05 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2aa46078-df7a-4f8d-b4e9-2440f4cf4d70") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR070") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR074") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 160.02 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2beabec1-a436-4b64-a488-7d07c9d15d77") (property "Reference" "#PWR072" (at 163.83 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 156.21 60.9599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "18527cec-a364-4293-a3ef-5550922c03aa") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR072") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR076") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 146.05 83.82 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3cd107d3-c6a7-4254-9209-0b9ac70966b7") (property "Reference" "C23" (at 149.86 82.5499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1nF 50V" (at 149.86 85.0899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 147.0152 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1588" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B102KB8NNNC" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "62da4944-efd6-4146-9e24-7534afda4788") ) (pin "2" (uuid "08350092-d004-4d88-ad3b-41c1eb89e443") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C23") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C25") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 167.64 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (property "Reference" "C24" (at 171.45 124.4599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF 50V" (at 171.45 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 168.6052 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "34911415-9e26-4f43-9972-7ec508951cea") ) (pin "2" (uuid "c1dcf2f2-8ceb-454d-abe8-36c791deef4d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C24") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C26") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 195.58 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4e25f2ae-4b68-4e63-a15d-70880675d738") (property "Reference" "#PWR022" (at 195.58 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 195.58 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0e08f158-50e9-41e9-aa19-92588a1ee656") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR022") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR023") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 195.58 57.15 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6535bc33-56ae-4cc2-99e7-1448e1c62b75") (property "Reference" "D35" (at 198.12 55.8799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 198.12 58.4199 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 195.58 57.15 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "ElecSuper" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PESD5V0S1BA-ES" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e8702433-44c2-4946-aeb2-d43a492304ca") ) (pin "2" (uuid "d04829e4-c99e-474f-a569-53c22467dde9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D35") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D36") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 195.58 83.82 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6702d47f-0b12-4453-a9e7-aa625d400c1c") (property "Reference" "D21" (at 198.12 82.5499 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 198.12 85.0899 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5199168" (at 195.58 83.82 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "ElecSuper" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C12L01-ES" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "C502541" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c5bab814-dd32-47e0-87f6-4603631d4fd9") ) (pin "2" (uuid "04566c58-479a-4b60-8194-4ad8bd081298") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D21") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D22") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 166.37 67.31 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "713f0faf-9b32-443b-b4b5-18ccafb68231") (property "Reference" "R40" (at 168.91 66.0399 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 168.91 68.5799 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 168.148 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5155727b-4990-4c37-9beb-355f58e9803a") ) (pin "2" (uuid "e648f2dc-b928-4ff8-963a-41c0dd40a454") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R40") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R43") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 179.07 125.73 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (property "Reference" "D28" (at 181.61 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "ES1D 1A 200V" (at 179.324 128.778 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-ES1D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MDD(Microdiode Semiconductor)" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "ES1D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3bd54a97-a49e-4cfb-ae50-ba191e3888ad") ) (pin "2" (uuid "29b4a113-5f9c-475f-a3ef-d9373376c3df") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D28") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D31") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 195.58 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b26a0ffc-7745-484b-9539-c92880c70c86") (property "Reference" "#PWR042" (at 195.58 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 195.58 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "774df901-1392-426e-bc85-6012ac6af56b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR042") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR043") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 177.8 74.93 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b49d0204-e5c4-45fa-965e-427ea584956f") (property "Reference" "D27" (at 177.8 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "BAT54(C)" (at 177.8 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2844172" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "FUXINSEMI" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "BAT54C" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb1f26c8-53a2-40e5-85f5-666e138dcc60") ) (pin "2" (uuid "d5e97938-d7f8-443c-8d94-c4a4e1343555") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D27") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D30") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 179.07 135.89 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f") (property "Reference" "#PWR073" (at 179.07 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 179.07 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e1a2a4db-32f0-46a2-8e44-db366ed945ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR073") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR077") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 167.64 46.99 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (property "Reference" "R41" (at 167.64 40.64 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "680" (at 167.64 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 167.64 48.768 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C115415" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603JR-07680RL" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3afa5a6c-ee7d-460c-ab30-cd43c75ca778") ) (pin "2" (uuid "22a5a5e7-3266-4b58-a242-890b32c355e4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R41") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R44") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0200/kicad/fan_channels.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "21c2a7bb-e53e-404f-aa6f-d468a4437c78") (paper "A4") (title_block (title "FanPico-0200 v1.1") (date "2025-12-05") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (wire (pts (xy 113.03 71.12) (xy 125.73 71.12) ) (stroke (width 0) (type default) ) (uuid "00bcd8b0-8b79-4470-9fae-9418c696e9b1") ) (wire (pts (xy 113.03 107.95) (xy 125.73 107.95) ) (stroke (width 0) (type default) ) (uuid "0132f4e7-fd28-433b-bb32-9f82f9dfe657") ) (wire (pts (xy 125.73 107.95) (xy 125.73 101.6) ) (stroke (width 0) (type default) ) (uuid "13f3e094-8561-4a83-9e47-ddbb60946697") ) (wire (pts (xy 113.03 100.33) (xy 123.19 100.33) ) (stroke (width 0) (type default) ) (uuid "1cbeafd1-3c28-46e1-b594-64fee3bd8654") ) (wire (pts (xy 123.19 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "21a592e4-7607-493b-9f82-0d6ca73ff7a2") ) (wire (pts (xy 128.27 72.39) (xy 128.27 62.23) ) (stroke (width 0) (type default) ) (uuid "3054643b-cc74-445f-9f58-89c37bb9865e") ) (wire (pts (xy 123.19 100.33) (xy 123.19 106.68) ) (stroke (width 0) (type default) ) (uuid "4cb3934b-5b6d-4bbe-b2d2-1982e1fb63d1") ) (wire (pts (xy 99.06 85.09) (xy 93.98 85.09) ) (stroke (width 0) (type default) ) (uuid "50e1ed27-1c84-4767-8b11-82b957497406") ) (wire (pts (xy 123.19 63.5) (xy 123.19 69.85) ) (stroke (width 0) (type default) ) (uuid "52271ddf-65dd-4e7c-9cb1-2aa361c3bc53") ) (wire (pts (xy 99.06 85.09) (xy 99.06 96.52) ) (stroke (width 0) (type default) ) (uuid "5315c3cb-84b7-4249-8b12-328cc52c0fef") ) (wire (pts (xy 113.03 63.5) (xy 123.19 63.5) ) (stroke (width 0) (type default) ) (uuid "58cde8d9-0ad1-44ef-9890-5578f39b2130") ) (wire (pts (xy 125.73 101.6) (xy 132.08 101.6) ) (stroke (width 0) (type default) ) (uuid "60659308-433c-494e-991c-835bcd7e7c39") ) (wire (pts (xy 123.19 106.68) (xy 132.08 106.68) ) (stroke (width 0) (type default) ) (uuid "63d04e82-80ff-453c-a4bc-cc90dbde29f3") ) (wire (pts (xy 128.27 99.06) (xy 132.08 99.06) ) (stroke (width 0) (type default) ) (uuid "66987d47-b8b4-47c2-8a35-18def9c545eb") ) (wire (pts (xy 113.03 104.14) (xy 132.08 104.14) ) (stroke (width 0) (type default) ) (uuid "680fe3a9-fb24-47d8-9f42-3417dfb35233") ) (wire (pts (xy 128.27 62.23) (xy 132.08 62.23) ) (stroke (width 0) (type default) ) (uuid "8f1e8604-5e81-471a-9eac-8ef396a859db") ) (wire (pts (xy 99.06 48.26) (xy 99.06 59.69) ) (stroke (width 0) (type default) ) (uuid "9382627e-3cf0-4d33-98c9-233a96a9fd5e") ) (wire (pts (xy 99.06 48.26) (xy 93.98 48.26) ) (stroke (width 0) (type default) ) (uuid "a304b53c-89a8-44e6-8dec-80d9dcbba3a0") ) (wire (pts (xy 125.73 64.77) (xy 132.08 64.77) ) (stroke (width 0) (type default) ) (uuid "a9c190c1-86a4-4992-afc8-a74431cccd21") ) (wire (pts (xy 78.74 107.95) (xy 81.28 107.95) ) (stroke (width 0) (type default) ) (uuid "afbf65be-8669-458b-aaff-6186389819f6") ) (wire (pts (xy 113.03 67.31) (xy 132.08 67.31) ) (stroke (width 0) (type default) ) (uuid "ca39a9a0-dbc9-4c89-bca0-abb108e869ab") ) (wire (pts (xy 95.25 90.17) (xy 95.25 96.52) ) (stroke (width 0) (type default) ) (uuid "cc63e37e-3cbd-4b55-84be-dc2da2264b46") ) (wire (pts (xy 128.27 109.22) (xy 128.27 99.06) ) (stroke (width 0) (type default) ) (uuid "d6c65298-ad4e-46ea-bd24-3cc284b70958") ) (wire (pts (xy 95.25 53.34) (xy 93.98 53.34) ) (stroke (width 0) (type default) ) (uuid "d8f3468c-042a-431a-9078-9cef94a41cf8") ) (wire (pts (xy 78.74 71.12) (xy 81.28 71.12) ) (stroke (width 0) (type default) ) (uuid "de6c98ea-aca3-4c10-a032-8370dafc995e") ) (wire (pts (xy 125.73 71.12) (xy 125.73 64.77) ) (stroke (width 0) (type default) ) (uuid "e2507488-307b-4de4-b1cf-dfb101572885") ) (wire (pts (xy 95.25 53.34) (xy 95.25 59.69) ) (stroke (width 0) (type default) ) (uuid "e5f3fba9-c47a-45b8-9de6-857957e45973") ) (wire (pts (xy 95.25 90.17) (xy 93.98 90.17) ) (stroke (width 0) (type default) ) (uuid "eea02f8c-c157-4213-8050-6320da82d3a9") ) (text "Fan Channels" (exclude_from_sim no) (at 18.796 20.066 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "4a8a343e-0bd9-4ace-9df8-a918ed5fa45d") ) (global_label "MAIN_PWR" (shape input) (at 78.74 107.95 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1452443b-8fad-4d22-9155-7658866f1b12") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 66.3205 107.95 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape output) (at 93.98 90.17 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4aa1a01c-cbdf-42d3-afba-8167c577daaf") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.5776 90.17 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 93.98 85.09 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5793e4e9-7aa5-470c-a622-e845954092f1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.4201 85.09 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_PWM_GEN" (shape output) (at 93.98 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5872c166-5581-44f5-a134-2ee42c3def37") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.4201 48.26 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape output) (at 93.98 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bbb9975-39da-4616-a4ec-cf4f8f4c6d2f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.5776 53.34 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 78.74 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "999f5199-3f37-4f5d-abc7-42c46678765b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 66.3205 71.12 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 137.16 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "094bbf69-e345-406c-a80f-9e08f85706fd") (property "Reference" "J13" (at 137.16 55.88 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan1 Output" (at 137.16 58.42 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MOLEX" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "470531000" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "KF2510-AW 3+1P" (at 137.16 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "85dd6ce4-16c1-431a-9b36-297bf5f965d0") ) (pin "2" (uuid "9f0ed9a6-fec4-431e-9eb9-12ce63446809") ) (pin "3" (uuid "c4bfbc89-6800-4798-8ac7-47e94a6126a9") ) (pin "4" (uuid "336c0835-35df-4312-8013-633aac76c9b9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J13") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 137.16 101.6 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (property "Reference" "J14" (at 137.16 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan2 Output" (at 137.16 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MOLEX" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "470531000" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "KF2510-AW 3+1P" (at 137.16 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "45e1981c-20aa-4236-9307-b7a47f504563") ) (pin "2" (uuid "cd2dbccd-c8ff-4362-a3ef-40ddf635fac9") ) (pin "3" (uuid "770e80d2-d2c8-4d17-8be1-34a26e2fb8b9") ) (pin "4" (uuid "f27c4151-f52f-4c90-89ae-5fbd8ae50b10") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J14") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 128.27 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7ad3c56a-fe9a-4831-b136-d7236a73b27f") (property "Reference" "#PWR027" (at 128.27 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 128.27 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 128.27 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 128.27 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3c6c7d1d-a2bb-4336-815e-3e447cdde78f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR027") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 128.27 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9370a547-cff7-4cf5-b1b1-9154c18cd2f1") (property "Reference" "#PWR026" (at 128.27 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 128.27 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 128.27 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 128.27 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7fcb9167-b44b-4a83-99dc-ee6b2eb6958b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR026") (unit 1) ) ) ) ) (sheet (at 81.28 59.69) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5ae37739-065e-4580-bde3-1038e45a286b") (property "Sheetname" "Fan1" (at 81.28 58.9784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 81.28 75.5146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 113.03 67.31 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "53b9af5e-0d1e-4798-9730-b2f66425d0e8") ) (pin "PWM_OUT" output (at 113.03 63.5 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e9717cad-e0dc-45e2-afb0-8dcba040a896") ) (pin "PWR_OUT" output (at 113.03 71.12 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8a8c9370-87f2-4203-8b7f-4a8549fd9767") ) (pin "PWM_GEN" input (at 99.06 59.69 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "51197e01-04a3-4056-a0e6-81164ad9cc72") ) (pin "TACHO_READ" output (at 95.25 59.69 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bb11d0bc-a8c0-45a1-ac7b-23c222935227") ) (pin "PWR_IN" input (at 81.28 71.12 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "8d7ef8e7-23dc-4d68-9f71-31a41a69dddd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "5") ) ) ) ) (sheet (at 81.28 96.52) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "61057e9f-bb51-4960-97cb-0865458dfe32") (property "Sheetname" "Fan2" (at 81.28 95.8084 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 81.28 112.3446 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 113.03 104.14 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "87476565-1a0d-4c16-ba90-bb7914407d9a") ) (pin "PWM_OUT" output (at 113.03 100.33 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "46f1b7fb-6428-4189-9973-637b6836e8d7") ) (pin "PWR_OUT" output (at 113.03 107.95 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9ed282dd-4c14-4f0f-bd42-1e43fd6fecbb") ) (pin "PWM_GEN" input (at 99.06 96.52 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "880b4ba4-39a0-4201-bf42-f99ce14cf754") ) (pin "TACHO_READ" output (at 95.25 96.52 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "123ba2db-1a3e-43c1-8c22-830021803414") ) (pin "PWR_IN" input (at 81.28 107.95 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "363b576f-dd0b-43f0-96c2-8f8b7a260877") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "6") ) ) ) ) ) ================================================ FILE: boards/fanpico-0200/kicad/fanpico.kicad_pcb ================================================ (kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") (general (thickness 1.6) (legacy_teardrops no) ) (paper "A4") (title_block (date "2025-10-04") ) (layers (0 "F.Cu" signal) (1 "In1.Cu" signal) (2 "In2.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (stackup (layer "F.SilkS" (type "Top Silk Screen") ) (layer "F.Paste" (type "Top Solder Paste") ) (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01) ) (layer "F.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 1" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "In1.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 2" (type "core") (thickness 1.24) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "In2.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 3" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "B.Cu" (type "copper") (thickness 0.035) ) (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01) ) (layer "B.Paste" (type "Bottom Solder Paste") ) (layer "B.SilkS" (type "Bottom Silk Screen") ) (copper_finish "None") (dielectric_constraints no) ) (pad_to_mask_clearance 0) (allow_soldermask_bridges_in_footprints no) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) (disableapertmacros no) (usegerberextensions yes) (usegerberattributes yes) (usegerberadvancedattributes yes) (creategerberjobfile yes) (dashed_line_dash_ratio 12.000000) (dashed_line_gap_ratio 3.000000) (svgprecision 6) (plotframeref no) (viasonmask no) (mode 1) (useauxorigin no) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (pdf_front_fp_property_popups yes) (pdf_back_fp_property_popups yes) (dxfpolygonmode yes) (dxfimperialunits yes) (dxfusepcbnewfont yes) (psnegative no) (psa4output no) (plotreference yes) (plotvalue no) (plotfptext yes) (plotinvisibletext no) (sketchpadsonfab no) (subtractmaskfromsilk yes) (outputformat 1) (mirror no) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "+5V") (net 2 "GND") (net 3 "3V3") (net 4 "unconnected-(U4-GPIO8-Pad11)") (net 5 "FAN1_TACHO_READ") (net 6 "/Power Rails/5V_REG_IN") (net 7 "Net-(U5-ADJ)") (net 8 "/Power Rails/5V_REG_OUT") (net 9 "unconnected-(U4-GPIO11-Pad15)") (net 10 "Net-(D4-A)") (net 11 "Net-(D5-A)") (net 12 "Net-(D6-A)") (net 13 "DQ") (net 14 "SDA") (net 15 "SCL") (net 16 "TX") (net 17 "RX") (net 18 "unconnected-(U4-GPIO9-Pad12)") (net 19 "unconnected-(U4-GPIO10-Pad14)") (net 20 "unconnected-(U4-GND-Pad13)") (net 21 "unconnected-(U4-GPIO13-Pad17)") (net 22 "unconnected-(U4-GPIO12-Pad16)") (net 23 "/Fan Channels/Fan1/TACHO_IN") (net 24 "/Fan Channels/Fan2/TACHO_IN") (net 25 "unconnected-(U4-GPIO22-Pad29)") (net 26 "unconnected-(U4-GPIO26_ADC0-Pad31)") (net 27 "/Fan Channels/Fan1/PWM_OUT") (net 28 "/Fan Channels/Fan2/PWM_OUT") (net 29 "unconnected-(U4-GPIO17-Pad22)") (net 30 "Net-(JP1-B)") (net 31 "unconnected-(U1-4Y-Pad11)") (net 32 "RESET") (net 33 "Net-(R1-Pad2)") (net 34 "unconnected-(U4-GPIO17-Pad22)_1") (net 35 "FAN1_PWM_GEN") (net 36 "/PWM2A") (net 37 "/PWM2B") (net 38 "FAN2_PWM_GEN") (net 39 "unconnected-(U1-3Y-Pad8)") (net 40 "unconnected-(U4-GPIO7-Pad10)") (net 41 "unconnected-(U4-GPIO14-Pad19)_1") (net 42 "unconnected-(U4-GPIO14-Pad19)") (net 43 "unconnected-(U4-GPIO26_ADC0-Pad31)_1") (net 44 "unconnected-(U4-3V3_EN-Pad37)_1") (net 45 "unconnected-(U4-GPIO22-Pad29)_1") (net 46 "unconnected-(U6-NC-Pad3)") (net 47 "unconnected-(U4-GPIO6-Pad9)") (net 48 "unconnected-(U4-GPIO10-Pad14)_1") (net 49 "unconnected-(U4-GPIO9-Pad12)_1") (net 50 "FAN2_TACHO_READ") (net 51 "unconnected-(U4-GPIO16-Pad21)") (net 52 "unconnected-(U4-GPIO8-Pad11)_1") (net 53 "ADC_REF") (net 54 "unconnected-(U4-GPIO16-Pad21)_1") (net 55 "VBUS") (net 56 "Net-(U2-SW)") (net 57 "AGND") (net 58 "TEMP1_READ") (net 59 "TEMP2_READ") (net 60 "unconnected-(U4-GPIO6-Pad9)_1") (net 61 "VSYS") (net 62 "unconnected-(U4-3V3_EN-Pad37)") (net 63 "Net-(U1-~{1OE})") (net 64 "Net-(JP12-A)") (net 65 "unconnected-(U4-GPIO12-Pad16)_1") (net 66 "unconnected-(U4-GPIO11-Pad15)_1") (net 67 "unconnected-(U4-GPIO13-Pad17)_1") (net 68 "unconnected-(U4-GND-Pad13)_1") (net 69 "unconnected-(U4-GPIO7-Pad10)_1") (net 70 "Net-(U2-BST)") (net 71 "Net-(U2-FB)") (net 72 "MAIN_PWR") (net 73 "DC_IN") (net 74 "Net-(JP1-A)") (net 75 "Net-(D8-A2)") (net 76 "Net-(D2-A)") (net 77 "Net-(JP2-B)") (net 78 "unconnected-(U4-GPIO4-Pad6)") (net 79 "unconnected-(U4-GPIO4-Pad6)_1") (net 80 "unconnected-(U4-GPIO5-Pad7)") (net 81 "unconnected-(U4-GPIO5-Pad7)_1") (net 82 "Net-(C10-Pad1)") (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu") (uuid "00b018ab-882c-4b2d-8e10-e589455112c6") (at 167.43 97.7125 90) (descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F2" (at 0 -1.82 90) (layer "F.SilkS") (uuid "2ed599af-df7f-4495-a2e0-0fdedd142358") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 0.5A" (at 0 1.82 90) (layer "F.Fab") (uuid "30a738b9-4315-4afe-8c01-baf958491ed3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bae8d5cf-3770-4757-a23f-cd008c74b4fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4a700991-2632-4761-a03a-ec531ab96b20") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "43f796ea-aa41-4ab1-8e89-d5d4b35814db") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C70072" (at 151.425 167.3625 90) (layer "F.Fab") (hide yes) (uuid "ea6dcc1d-09ca-4d8e-972a-6a59ee8acff9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fcdb13a-36ce-4308-a20c-b2caf7f3b47d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "530-0ZCJ0050AF2E" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6cf51a65-e0aa-4ce5-8073-3c01c1cdf617") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "TECHFUSE" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "696a8806-4864-4d5e-8464-a00d5b97b192") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "nSMD035-16V" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c370c8a-99e1-40f4-a2ed-e96be2144ba7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "848cd5bc-946b-45ab-a6e8-1ca9fdcabba4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4817873d-34cb-4a39-8d03-d98c73c1842f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3e2d1350-ff19-46cc-a322-b1dc8962272c") ) (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f843f20a-8ad0-4ec1-89a3-49ae602d7baf") ) (fp_line (start 2.45 -1.12) (end 2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9d103dd9-df24-4882-a7d6-9de79e5b9094") ) (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "096c0910-3543-4bfe-8ecf-1b15690b917d") ) (fp_line (start 2.45 1.12) (end -2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "36ffaba3-16b6-49c0-851f-20fccdf76951") ) (fp_line (start -2.45 1.12) (end -2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "04fb1a04-3770-4cd5-ab65-a9ecf9d783c9") ) (fp_line (start 1.6 -0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d2350c1-cf5d-4345-ac62-ecf22354bc10") ) (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2d480a4-ed61-41d2-bc8b-ff90123d7801") ) (fp_line (start 1.6 0.8) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b5129ea6-dd93-4320-b6ae-affdbfafa8e4") ) (fp_line (start -1.6 0.8) (end -1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dbff8703-8408-4a2c-94a8-f89da6191e9e") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "7929d1c5-5aa4-4568-ab51-cc93458ce4e6") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "08619e52-025f-4468-9792-279a1404b409") ) (pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 1 "+5V") (pintype "passive") (uuid "4f368048-24c3-4f22-ad1f-294ca2458e45") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (layer "F.Cu") (uuid "01424783-9d7e-4bcd-85ec-4a6696ab5e0e") (at 113.1568 91.7848 90) (descr "Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity") (tags "THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm") (property "Reference" "J5" (at 5.4848 1.9732 90) (layer "F.SilkS") (uuid "33576754-23d1-4de5-bb33-cbc07cad8878") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire" (at 2.54 4.37 90) (layer "F.Fab") (uuid "89d6d4b8-900e-4cd7-a4c6-87309853d5fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "351aa55d-72f1-48fd-9f19-2906f3f77128") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "42c5b224-cac2-490f-86a5-f342a5ef12b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6da75fda-a105-4820-9fd1-b6e476d5c852") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e6b3946-3aed-41d8-91b5-c5bceb6071b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e65b981a-8b32-4131-ba09-77f36ffb5fb9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C68305" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bbcc4ae5-3f67-4da7-964f-053d91bcaa2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "81417cf4-5ee1-43e7-9556-63cbd4db6451") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "2.54-3P" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7816a31b-de0e-4822-9785-713492a953c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "82caa6f9-f6ce-4c95-8ec6-dc4423affdf3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C5188443" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "378aa737-4282-4a03-952b-425e1d22f3df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/96a18ea7-3d15-46f8-bc11-da38dba4984f") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 6.7 -3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c83c8d34-680d-49a5-a51c-5e88ab6dd94e") ) (fp_line (start -1.62 -3.37) (end 6.7 -3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9aeda4bc-7ed9-4b63-8768-1e670be0d2d8") ) (fp_line (start -1.62 -3.37) (end -1.62 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2d95eace-643f-4ab9-a7ff-05e1629d00a1") ) (fp_line (start -1.62 -2.25) (end 6.7 -2.25) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4ac92cbb-08b4-4b1a-85b9-7ce26f24cc0e") ) (fp_line (start -1.62 2.85) (end 6.7 2.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae01362d-0e4c-4cd0-8ef9-2483a532925f") ) (fp_line (start -1.86 2.97) (end -1.86 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ce3686c-2fef-4704-893d-0ce7ad1685c9") ) (fp_line (start -1.62 3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8150d465-46eb-401a-92c6-44a3f7fa7ece") ) (fp_line (start -1.86 3.61) (end -1.46 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fce8a3d5-b40c-4148-9156-065e78de0375") ) (fp_line (start 7.08 -3.75) (end -2 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dd320482-ae57-4acb-a26a-b2d82659d039") ) (fp_line (start -2 -3.75) (end -2 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f084aeee-e1cf-46b4-8967-205efab45f70") ) (fp_line (start 7.08 3.75) (end 7.08 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a39772be-58f1-4fb1-83ac-a55b7ecee6ba") ) (fp_line (start -2 3.75) (end 7.08 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e3fcdf20-8066-4b71-9d39-219461c0bf2f") ) (fp_line (start 6.58 -3.25) (end 6.58 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "066eead6-ed23-46fb-bbd9-0483d74deb40") ) (fp_line (start -1.5 -3.25) (end 6.58 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b9665493-d93d-481e-9cd2-4c82c2f9f3eb") ) (fp_line (start -1.5 -2.25) (end 6.58 -2.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53cc8d19-0d7e-49c0-9528-6c6b7be82584") ) (fp_line (start 5.781 -0.835) (end 4.246 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "976de7d7-35e6-4b66-9d3f-f4b70834f01a") ) (fp_line (start 3.241 -0.835) (end 1.706 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f69cea0a-1a76-4fc0-9e49-80b52d94547a") ) (fp_line (start 0.701 -0.835) (end -0.835 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae5b4c9c-03bd-4845-802c-62f6769d7d95") ) (fp_line (start 5.915 -0.7) (end 4.38 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1412591a-699e-4952-821c-128085a2444d") ) (fp_line (start 3.375 -0.7) (end 1.84 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4404c800-f0c6-41c5-b1f2-6f8cfc260f93") ) (fp_line (start 0.835 -0.7) (end -0.701 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a64adbbd-07e7-4c92-968e-e27a1e519b0f") ) (fp_line (start -1.5 2.85) (end -1.5 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4712a69-ec54-4376-84c7-5f253a04be5c") ) (fp_line (start -1.5 2.85) (end 6.58 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59e6bd55-1fab-4b36-9cd6-febe03fbbd9a") ) (fp_line (start 6.58 3.25) (end -1.1 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "afe96426-249e-46fb-bd99-28a262044cfa") ) (fp_line (start -1.1 3.25) (end -1.5 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cf83a6cc-c5cc-44a3-99e2-223843936ab7") ) (fp_circle (center 5.08 0) (end 6.18 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "07f5c71b-7c4a-48d6-a82d-e83dfd886e54") ) (fp_circle (center 2.54 0) (end 3.64 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "623b16b6-851e-4ed3-861e-2390c41befd8") ) (fp_circle (center 0 0) (end 1.1 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "453d3185-bd67-4c43-acc3-99183f5699f4") ) (fp_text user "${REFERENCE}" (at 2.54 2 90) (layer "F.Fab") (uuid "a471ae33-e316-4c35-875c-a1af3e652c3e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "1009bf27-939f-4a32-9c99-eea18db80378") ) (pad "2" thru_hole circle (at 2.54 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 13 "DQ") (pinfunction "Pin_2") (pintype "passive") (uuid "a12e5bed-e19e-45a4-8fb7-d08347627996") ) (pad "3" thru_hole circle (at 5.08 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_3") (pintype "passive") (uuid "11abf23a-6e3d-452b-b333-8ed64f03fc01") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_TE-Connectivity.3dshapes/TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "01505f11-ae48-4d01-8ba1-2dd7ade04b75") (at 111.38 94.9172) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D7" (at 2.65 0.0172 90) (layer "F.SilkS") (uuid "1e42f0b0-6b38-450c-a77c-63968f7a1628") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "53c524f3-0be4-4232-9bcc-29cd59c8f5c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "adb3b399-a786-414d-9a19-0d3f92d5c10f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "590cf364-561b-4125-9be1-ad802d2a957a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a1f05101-e7c8-42c9-a74e-a0e6e5dc377d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8a76be17-aab6-4587-91fa-a9be730dbfb5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5bc9cedb-c6e4-499c-82f7-b02f3565408d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "22c523bb-2941-41f2-9c20-48ffcddb1d7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b08a4591-839c-4834-b947-39d015147b5f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "010293b6-fe4b-432b-af07-e197e7ae9d3f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "29986a66-41ff-4218-883f-b8e2d703a9d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "01995888-9366-4c01-9046-516d9155af92") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f1bbb4cf-cac1-498d-9bb6-9485f1c1e67c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87f9d48e-d27d-4826-959c-78977effea50") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07a813c7-9b6b-48b3-b899-e95750d97dc4") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59efb69d-5fb6-40a6-ba0c-4a84966a7e77") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f0409028-cd56-4d6f-b67b-42f15906ad22") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce337114-3d4f-45d8-aaba-36a2b69a01ca") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "42936067-22f4-4d4d-9c69-0aac924a1058") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "efe063d0-cdff-4c8a-aac3-2fc8d637fa95") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "74b69873-57a1-47df-b820-5be4f193db87") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c88c9328-5ab3-4141-8e6f-4e79a4886ba4") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37780151-dc8a-48ea-923b-e6f0a52b2199") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0110a53-f40c-4077-a103-1b6b1b626a6a") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0332c80-4df3-4f87-91fa-21b434ac8026") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8760480-c83b-4e28-9aa7-107e448c320c") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "617b55bf-e977-4ba4-a3d7-47c1896d3722") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c4387c8-69bd-4b71-b37e-1deb25346cf0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa594cd2-4c45-4fb8-a97a-0b5480a47cb8") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4dd2cd1c-e1ba-4670-85e2-28a1fe304bd4") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "cacbd7e8-be74-4d13-a93f-2d2d29abbcd0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5f4fd14a-1565-4007-8dec-ca9021e277f0") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 13 "DQ") (pinfunction "A2") (pintype "passive") (uuid "222094cb-8c56-4019-afea-99348cd86414") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (layer "F.Cu") (uuid "069671bf-7878-4007-9563-123b12569053") (at 109.85 78.3672 -90) (descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator") (tags "connector JST SH horizontal") (property "Reference" "J6" (at 0.0328 1.185 90) (layer "F.SilkS") (uuid "38a57dc1-48ad-4191-87b7-e4871da0e1a5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "QWIIC" (at 0 3.98 90) (layer "F.Fab") (uuid "1bac8b80-6509-4263-a74e-b6a45d04c73a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fcd67a35-333b-4b89-a64a-a74cbb708d72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f831b691-a258-48cd-b656-89feb81bd997") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db013852-9a43-4092-a476-17e13a52539d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C160404" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b62bd26-1fca-48e1-9186-cfe3e0746399") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c1d1694-a68c-4040-b32f-1486cf47ec3b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e2c68e75-fba4-47bd-96d8-8b14dfeb96ce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "JST" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "218a6a45-f2b5-4e99-b64c-f45bac535a76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SM04B-SRSS-TB(LF)(SN)" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ec1e8e92-ef28-4666-952a-354b9a36fb7c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "700d2fdc-d699-4900-b47d-9b9802e256d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4faf5fd1-d9bc-4741-b265-d750af8a3d05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/19772840-0f1c-4864-a3f2-b85e11be6f6a") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -1.94 2.685) (end 1.94 2.685) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "edbe4232-6cf0-468a-8610-6a5aa05df967") ) (fp_line (start -3.11 0.715) (end -3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba95068f-8251-429c-8b4f-f804d7c4d596") ) (fp_line (start 3.11 0.715) (end 3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ffc4347-08e4-4eb7-b6c0-d78142aa3ea1") ) (fp_line (start -3.11 -1.785) (end -2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3225412-9439-4f15-b8c2-75deeb6bc217") ) (fp_line (start -2.06 -1.785) (end -2.06 -2.775) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7d4b46b5-8145-4f73-94f9-4df440cb51c0") ) (fp_line (start 3.11 -1.785) (end 2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b347cf7e-5683-4961-bbdd-fa4d700f21fc") ) (fp_line (start -3.9 3.28) (end 3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db6058ad-9ba9-4172-a6ef-fb916749cffb") ) (fp_line (start 3.9 3.28) (end 3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4d1a28df-993f-4783-bf6c-8f52dd18205b") ) (fp_line (start -3.9 -3.28) (end -3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4c5b603-e4ad-45d3-8d70-c83a62f2b8dd") ) (fp_line (start 3.9 -3.28) (end -3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77028bb4-3b0e-4cc1-8fc5-399c384f78ee") ) (fp_line (start -3 2.575) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a411a123-3e34-4ff9-a6ea-45882037e9bb") ) (fp_line (start -1.5 -0.967893) (end -1 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2f56a9c-94c4-441b-a277-76da8aa887f1") ) (fp_line (start -3 -1.675) (end -3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b5a8faea-812b-4a3f-8806-d259b66e436e") ) (fp_line (start -3 -1.675) (end 3 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1fe9f02-0dcb-4107-96b9-4a9b739bc73b") ) (fp_line (start -2 -1.675) (end -1.5 -0.967893) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28b8d8bd-877f-486c-991c-21b95aff89b3") ) (fp_line (start 3 -1.675) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ecb9d16c-c767-4401-a01f-30e292e774af") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "9cbbe8a8-1e57-4a5f-bd61-a676af391d97") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.5 -2 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "dd1f797c-2aef-4dbe-8c8b-f65f1071b2f3") ) (pad "2" smd roundrect (at -0.5 -2 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "9cf63c14-749d-403f-aacd-295de5252437") ) (pad "3" smd roundrect (at 0.5 -2 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 14 "SDA") (pinfunction "Pin_3") (pintype "passive") (uuid "5b5b36b4-d8c3-4fc5-9e88-a828a477aa97") ) (pad "4" smd roundrect (at 1.5 -2 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 15 "SCL") (pinfunction "Pin_4") (pintype "passive") (uuid "a7f9b718-52f5-43ec-86dc-20c1aad15ae2") ) (pad "MP" smd roundrect (at -2.8 1.875 270) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "dd631c7c-a433-46a9-9618-c2998b537852") ) (pad "MP" smd roundrect (at 2.8 1.875 270) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "70ba55b7-17e1-492f-9502-6fd935e483b2") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "08801f4d-29f3-4989-9ccd-e1b6cf102dda") (at 148.48 119.6) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J16" (at 2.8 2.025 0) (layer "F.SilkS") (uuid "5ca2cdf6-2be0-4914-8df6-10cd3596f371") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor1" (at 1.25 4.6 0) (layer "F.Fab") (uuid "a77cda28-6d3d-4c48-9a2b-6259781a0de0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "326fcb41-a6ad-40a5-a424-6dee8064d9de") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f7663f93-bbae-4f99-9582-d076b474f4c6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1f8c3e17-5ed0-41de-b8df-06845669e2dc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d3424c39-2687-40e4-9e57-29a706f4fec2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C20079" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bcf6c0c9-e1a2-407e-9404-0c777c380956") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d17e7a19-2499-4587-9a4d-ef65e058f8de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b3cd4b05-c96e-40d8-8ef3-d5b3531babc7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "XH-2A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cfd10f75-7bb1-44ee-a0ff-f478a9efce34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b9cfe182-54f4-4359-9565-f438e5f9e988") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C33132 (Right-Angle)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62239af7-ad90-4190-bac1-3b808293f272") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3da7d9c3-e85c-4c87-9ef2-8f780fbcbba3") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0b3f3fda-8194-4abd-997c-550fd4138bff") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf0ac0c4-f31d-4d63-9d00-9a465f042772") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3846f93a-db84-4555-bb8c-740981e774e3") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "71f125fa-b999-4890-8f50-bfb325e0edf9") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f6abd7c-75c0-4fbe-b564-a62ecea546e5") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "67c099db-29f5-4f27-b344-fa4e0ab26b52") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "773f6dc6-195b-4a40-80d7-12c35d6a35ef") ) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "beb2a7e7-53ae-49a0-a4b8-5f83be671f36") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "55d36896-d1c8-42f7-97df-4a8017a327cf") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07cb77b3-2eb0-488a-bafe-a545c623b74d") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "692cf441-8c52-4bbc-8f59-9fdfccd6f627") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3882bbb8-ad54-458d-8d8b-af3a74b0ac06") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6584b987-46ca-4d41-879c-0132d2085cf0") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ee86fe3-ff12-469a-9b3b-a8d4d7b82ee0") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "41c5ee0f-5a15-4e5b-9d2b-752b8bdcc208") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "215a6a13-8068-48b3-ae13-664040ceb214") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db64a1b4-cfaa-45ee-b418-2e3ff5dfba20") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2df327fb-84e9-4ed8-a8e9-24bf18167821") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "831814d3-05d8-4a08-870e-0ec01aa8a6f1") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65f0684e-46a8-4f49-ae95-635963f15d4d") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6d6a6503-c547-41c6-8681-5a03d4b144f0") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a63c2df8-8a19-4775-8ea5-46dbe1833ac7") ) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5acfc03b-6477-4953-9c34-50d9af8aab9a") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6fe34533-a80c-4be8-9df9-ea5729202c9b") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0750adc2-5ee5-4bac-8629-4bbfff364103") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7c991ab6-d8a2-4a99-a579-749628e82308") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c7d2766-7202-40b2-bb6b-94ac71e8347b") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "077c6e3b-48c3-49b3-a47b-57903ef8e3a2") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f76567c-91a3-40dc-880c-214def5cbd7c") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5adb2515-b742-4d89-9061-0454371cd5d6") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be85efa8-6297-4ca7-a1f4-3b68ef1f872a") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91935937-ea67-4fd5-8745-90e48650329a") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dfd9699d-71d8-469b-b944-b3083f789edd") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 0) (layer "F.Fab") (uuid "98efe830-083b-496b-b22c-a27cc5f428e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (roundrect_rratio 0.147059) (net 57 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "51ada84f-c091-4c37-be18-560cdbf62d2b") ) (pad "2" thru_hole oval (at 2.5 0) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 58 "TEMP1_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "16e711fe-7ca0-4336-b569-56cf1e7eb35e") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "0a9fa84d-e2ac-47ab-935a-a282f9d2d763") (at 153.8005 81.1625 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D22" (at 0 -1.85 0) (layer "F.SilkS") (uuid "644946c6-aad6-44e3-bb06-5f00be854373") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "8fdfd28d-cf44-42f6-beae-0d1b1a5da47c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bc575efd-c2c5-48c2-b900-34a042524768") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a6c55022-6065-42aa-ba75-3ad7358c7817") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d6eaa0c0-15c4-4f4b-b585-8313295def3c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3932e2b-78c6-4e12-a214-f28e1f0c8e15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1d5ebf3d-2729-4eec-8160-17df076c28f4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ebc640d3-0970-4440-85c3-77de01abf39f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "ElecSuper" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cf542ad8-535a-4e42-aabd-3208af718908") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C12L01-ES" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5ae05c3f-69e2-45c4-a911-459f6e9e8795") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "75600245-af1e-4695-b387-69746b36e4b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C502541" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a9e0c9a4-6152-44ce-99f1-32d0a8a099e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/6702d47f-0b12-4453-a9e7-aa625d400c1c") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e926672e-1cbf-4134-b573-791ac9ffaecf") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a9fd837-5c5c-4ca0-95c9-95037b95223a") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77df123c-5f8f-44f6-8d5e-e734cbfb7319") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3c9e01da-1f17-4ccc-a5b2-42404d487add") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "00974859-7ddf-4819-808f-ebcfcf6fb81e") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1a702c6-ad00-44f8-b854-ca302efab8b3") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bb44ed72-baaf-4632-b8e7-bbf3897f49f6") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7fac106e-faff-4f5e-99fa-97fb36ed9787") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d822c172-7a0c-4b75-a569-ff25847adde3") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0d6be54-2d9a-4bde-bf6c-657987838885") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62322151-c6a0-4b55-bce8-45916f11ac95") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "101ac440-9c93-4719-aa54-b03f1902d822") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "715e8be3-2797-4792-8098-5d63becc8962") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad1ea364-7b66-4314-85a8-5a8f41222242") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3650e08-ce0f-4572-92e2-b1beb0942fad") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "75002a42-8a64-4f01-bbbe-c3aecf58fca6") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b86736a-e5e8-4341-b39b-52a74841d3ea") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "765f0683-806d-4e1c-8288-57e3d829fc4c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "566bdf5d-940a-47f6-8c25-b6f1e1064774") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "b69ca6ed-df16-49c6-8e65-28d223bdf011") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (uuid "1605f882-81f6-454d-be37-e69a0e3e7d42") (at 174.23 83.2 180) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F1" (at 5.6 0 90) (layer "F.SilkS") (uuid "d06d8ae1-6d37-423e-ba0c-dad3bdc76d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 2A (48V)" (at 0 3.68 0) (layer "F.Fab") (uuid "6cf04bb5-7ab1-4f57-bda6-a92120bf5781") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5807a72f-485e-4df4-8ea8-af50742ecd18") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f5272040-ebe1-41e2-b947-e0747797ec2d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f7cddf4d-2377-4dcf-ac07-1c8935abc8b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22399926" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "19c4c383-6e84-4f0e-9b0b-44ecce045f27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bfd35a2a-8425-4156-89e6-b06c063bed57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "beefe38f-aaf7-4cb7-ad2c-9b732f752209") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "BHFUSE" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "81ebabef-3546-4ecb-a51c-02cf0d881c50") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "BSMD2920-200-48V" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "781ac40f-50a7-47ad-ac86-746f186a6b32") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0dc7dfcd-b35a-4ca0-a899-d1376a97e10d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "66f755f7-78c6-41f7-8966-43ce3d676813") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/4c74a725-f10f-4273-b4be-b4c0a9315c7e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ceb00f98-14ff-4ea5-96cd-9b0a1ccbf0f8") ) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7a191eac-186d-452c-b9f8-7cb6a593e9d5") ) (fp_line (start 4.78 2.98) (end -4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bf9394d2-5ab3-4f5e-8f24-903964c6a692") ) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8b9c1d63-84f0-476b-82ae-ea1a15c1f09c") ) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "01726b97-402a-4b65-9492-a44be08332f3") ) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ff1a6701-93c5-4163-91be-f71fc7dadb2c") ) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6dec525-11c0-454e-9139-979a4d2df10f") ) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "837b3d29-e7f3-4255-9ca9-c98ec2aaf9ea") ) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58431367-2284-4ef6-9deb-5ec6e15ad0ad") ) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e5606eb-5da8-4346-84b1-1a3062e9efdb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "43fc35cb-04d0-40aa-b8de-36e2c30f1f51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -3.475 0 180) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 75 "Net-(D8-A2)") (pintype "passive") (uuid "b0ed11fd-3a56-44ac-875f-879dedf0b4bf") ) (pad "2" smd roundrect (at 3.475 0 180) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 73 "DC_IN") (pintype "passive") (uuid "362e8581-9855-4fdb-aa07-17976cd5e53d") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "191ee32f-08dd-4925-8d49-812b84e6e2dc") (at 170.68245 97.7532) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R3" (at 2.65 0 0) (layer "F.SilkS") (uuid "ef8a70b4-3082-4e5f-8d00-99d795d0f51a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 0) (layer "F.Fab") (uuid "568bc312-9dce-43b0-b3b2-5608a069dd85") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "46475f62-fa74-4465-9af8-1172c115c73a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "728ba9ed-737f-4bcb-9433-ab6636e949ce") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3f36e452-f2ce-4b45-8708-2b85d2b2816e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at -3.11875 152.54375 90) (layer "F.Fab") (hide yes) (uuid "5b77bd2d-fc68-45ee-ba5f-ccb342acc2c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a9234ebc-79f8-48bb-a4ae-e104989a1f68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ecf56035-6536-4ef2-8deb-9546ec07f9c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ad40cc7a-c553-4f6e-bf6f-50cdab05517a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-07330RL" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f3ea6ba8-97cc-48cf-8b64-afb5abb4c1e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45d3a5c6-6d79-4feb-a824-47f8947f5e11") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f0db2b0a-1c1d-42cb-8b56-855daa973678") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5a65fde0-58e9-41b7-bb45-7d350448b336") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4305ed74-4ec9-4310-8b60-fa5179be5b8d") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "25f54ff6-3c9f-4f76-a47c-27691af21904") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0127bebe-cfdc-4966-b811-5a4fd2c27e26") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5303f939-2d92-4ccd-962b-64d46249cd96") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d85a054c-deda-41a2-bec8-2adc7abb6492") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "118b5787-4347-4242-a586-85b6f7dc706b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c57ae9d-48ca-4ebe-a1ba-71efdb01f898") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "603ee348-ea6e-40ca-b3e4-8bbeeb6ce78d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2d8e3b55-eeae-4d18-9375-846df3bce71a") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0d3eb58-7ed7-4452-9d69-1901cac6f560") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d53ddc0e-afee-4094-80b4-03d8efe9cecb") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "6c975c99-7b99-49a4-a5d3-8f98e6bff47e") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "ac1f7c6f-794b-4fe6-af1f-a108657d33b3") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "1ad5c265-c931-4eb8-8d65-46519581b2c1") (at 155.7792 76.348 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C26" (at 2.2341 0.1016 0) (layer "F.SilkS") (uuid "aee324f3-3cd8-412b-9d01-c5681a928a36") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "434a7b04-607a-4c87-bd68-a94d1287ffa0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "243a075e-5a59-493f-b080-253799842280") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fb15b1b5-0c75-4f48-9a1a-ada1ab771fb1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b17f5904-448a-4eb0-9b93-f5fa7d2e3ddf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1b8ef986-391a-41e2-8b1e-df91adc19cc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fec72e5-f4a5-42ff-a618-17a209a69037") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3fdd24e7-8907-4b70-bab0-4446b16eaa85") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c5f50f8-63fb-4034-a402-ece13d3adba7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3cb9ea6a-d8c5-40f4-8854-144cc68e0f75") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c43a7791-1414-40aa-a472-9792dafd71dd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c3fa320b-a44f-4fdf-9842-424c7afbcdcb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e6b4dcee-ccca-4161-bc43-5a9a0d3067f7") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "74c0470d-ad5c-4a48-b838-eaf14a9361b7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b8c3249-3252-4ce8-afac-77eb1679ed1c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7e75d48f-a8ae-48a8-a6c2-630688550fc1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "92343d80-6f5b-4118-a984-f1733c3d613d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "11f1b928-231f-4427-91d7-bba1306f29f7") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b2a9fb6-bb1d-4714-8e43-adf9cde4c946") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd67e37d-6782-47dc-9d2b-bb8baaac2b83") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26f3b371-a28c-426a-b856-343375dfced9") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48739937-e75e-4a92-ba84-0383d8480fa4") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "2db50a2e-e32c-4726-9043-6aecab7ed92c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "MAIN_PWR") (pintype "passive") (uuid "1c3f13d9-abc8-4423-8e37-f6522e3c1ce0") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "e38fd24b-52b4-4a09-873f-a997b0ead5bf") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "1cf64412-b01e-4eaf-ba50-ca0daa6994ec") (at 184.65 87.3645 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D4" (at 2.4355 0.024 0) (layer "F.SilkS") (uuid "b035c3bd-a14f-474d-a4c4-29dc73b45689") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "2160ba62-8ce7-472a-9137-3fa0506a324a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "13125aae-2694-4f4e-9db1-fed971cf9f45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e3ae5f0f-0fa1-4a19-b757-7ed761e3b1b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b4c571b2-da1b-4eef-9e53-92c6593a8661") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6ba7bad9-2259-4c39-b8a5-a9fbafb731ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69edd2c3-8506-4432-ba74-a4254fe93d70") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c74807bb-b603-40b9-a1b0-8c5f854c3b02") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2d60b16b-f6f4-4473-8c93-b10ff61661c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6299da85-d68a-46a2-8726-a112f9bf536c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db88c322-6407-45cc-aaff-68206b590749") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2c5b28e8-472a-4ff2-8d68-f340a346397d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/2fe78790-cca2-409c-b93b-37aabedf28fc") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4deba6a-1958-4810-8bb2-f2e92982ad8f") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b61ffbb4-250c-4452-b5dc-9f68338c69b9") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7144d40-59ed-43a5-8cc1-21cd00a6793f") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "932e54fd-1522-4d1a-a61c-3b912a8e9fb3") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "466929e7-601a-49cb-ad6e-134a86833651") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d325f46a-3fb2-44a8-b001-9626080eed20") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23e2f586-c192-4eb2-83c6-4bd826a4c1d6") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6eb38f29-0539-4735-81f4-94c70c8d6a18") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9ecad3c-29c9-4749-9281-827866590857") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07803474-147f-4d8e-a555-e80b9f7c0d6a") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8496ed2-bd96-4f9a-81f2-3094af6d7e68") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9524f306-04ff-4f55-98c7-5143b682ab60") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "dcdabc96-66d5-455e-aa5b-38c599242af8") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "9c2f6c07-4623-4d06-8769-115c0f569b18") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 10 "Net-(D4-A)") (pinfunction "A") (pintype "passive") (uuid "896aac73-0408-4fca-8525-f2d909ee6777") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "1e0fa736-c93b-4f04-ac49-f38ac4164c62") (at 150.0044 82.7584 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R44" (at 0.0584 1.1256 90) (layer "F.SilkS") (uuid "b1bbb81d-bc07-426a-92bb-889f1080a885") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 90) (layer "F.Fab") (uuid "b98a0959-d9b1-4c64-a107-2cada5e8bfb4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fff0bcb9-bf82-4c98-ab90-4d79cd0edef3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ff15a9f5-127d-41bc-b614-0cdc6b5a2331") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2e04d2c9-a3c1-4825-a637-2d74385497dd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8903a9cd-6910-4c16-90d0-356af02ddcfd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1c4b8d73-e306-4ff4-968b-84b003be43e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6f1e9060-7428-4ea5-8d27-cf78606ed724") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "794338e4-5c5d-4e66-bcfe-fffae555e983") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603JR-07680RL" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f68e50db-8f5b-44bf-b3c5-a107f155cb26") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "379ee8b3-db32-4192-9175-d81e098e1e6b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5b0f4f5b-8654-48f5-8851-718cb819177c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a47d3d9-2af4-42ff-a1e4-3cc7d22b2ae8") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "722babbf-2e64-4666-918d-7e8d74a45644") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "efe339d4-b9ee-4217-97f6-d9f21dceccdf") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc9aca4d-761f-463e-b545-9cd43e34809a") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "16b067c2-a528-43e0-8700-6a8bbda815db") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad1ad684-627a-4b93-b651-64bba36746a6") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22491d73-2b7a-4158-b5b4-b55cf48104ae") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7118ad21-8faa-41d6-ba53-ea308f5b9ca1") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c97dbc6b-c51b-42d2-b94f-fc3a81b293bb") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "621916f2-8dce-4f50-8c52-1719fb22f012") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "77b0730f-08ef-4c54-817e-5d51d2c6efc1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "FAN2_PWM_GEN") (pintype "passive") (uuid "4fd5fcd6-2c8b-4e44-b505-c9b221b1d621") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 28 "/Fan Channels/Fan2/PWM_OUT") (pintype "passive") (uuid "38f85c68-ef1b-4c1e-8b65-bc626b8b156b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "20859ee2-cbf8-46fe-9c40-f518330ff9ec") (at 161.7468 76.348) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D28" (at -3.4 2.3 0) (layer "F.SilkS") (uuid "a1d7dfe0-de93-4a26-a738-9c87a691804b") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "e8247656-50ec-4519-ae32-d57fce426182") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e3514fde-9cd9-4861-8aeb-8c051861ee4b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "179e727f-73c0-4358-bbbf-776bae687750") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d78749b7-b654-4c59-af24-867e49438bf9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 65.1 259.5 90) (layer "F.Fab") (hide yes) (uuid "9271f5b1-36dd-43e3-9dbf-99d343e185f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 65.1 259.5 90) (layer "F.Fab") (hide yes) (uuid "4d523a7c-02fb-4429-a108-429b3f130e04") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 65.1 259.5 90) (layer "F.Fab") (hide yes) (uuid "abf10899-b137-4f5a-b172-25724b6774db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0f320c0d-e36a-404d-8306-13050ae8fbf9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ff114979-4697-40f5-87b3-a6f4f18f6bd5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MDD(Microdiode Semiconductor)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46d6729d-5798-479a-bb6e-00c609c561e7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9367e8b6-e34e-48ed-b4c3-ca6d97bd7697") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a4080da9-6b52-47c4-ad17-5479fce01ccb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b11b01e3-9fd0-4995-a711-31fce2866ad5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e43ed4b-f514-45fe-9606-b249702ceb87") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb3d6661-b9ad-4675-bee4-462a0a1ea4c4") ) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f75900d5-d4c9-4e8d-b5ec-ad0ded86ca42") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aefad7d6-6c4a-4f5b-9e1b-e5b8484d8a21") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "73ef913a-67c6-48f0-8e7f-e83626bb9f7a") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a01c9ce9-22e7-48a7-9c4b-ff97f32c764e") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1541facc-0d12-4ff2-b106-7a4022c21721") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c93e7496-947c-4198-83d1-0e1c7e0f8b18") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "711d8790-2d82-4fbf-8d8b-cba4d4655b4d") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88cb6c9d-dbfa-495d-a7fd-30b9f4294500") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d75ed9c2-8175-4ac0-b521-4027e54eddb5") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2cf4c21c-0c49-41de-aa9b-c41a863467f1") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a780037-ef16-4628-bbee-05278325d268") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4efa8619-d61a-4aa4-9401-1b5a7e7838b1") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5205171e-13b8-4424-9c3f-be5d86752c42") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d39d7677-0b35-4042-a46c-9a34ee0b14bb") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "51ebc552-60fe-4f50-8d51-2ce319e57767") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "214a77ed-e0d3-49d3-af5a-2ed7cc97d6d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 72 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "a254737c-0dce-4a1a-86af-2aec92a0c200") ) (pad "2" smd roundrect (at 2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "d24b3409-7c39-464d-b398-d91651cd4059") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "22c5ec8c-92fa-43bc-955a-ac62de3d0d1e") (at 163.7925 86.25 90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D27" (at 0 -2.5 90) (layer "F.SilkS") (uuid "b0a1f075-8c2b-4b57-a622-3cdbff2047a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 90) (layer "F.Fab") (uuid "d9b3de35-d771-493b-8dfd-4660bbdef51a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3999cc89-04a1-4a69-9a32-086abf03af3d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e948592f-864a-4307-a168-820e8ac1f2d3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "686e335b-bbcc-48c0-82a1-785828ef6705") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4846d87a-d4a7-4c7b-aeac-c8da5ba2457d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2110bf5e-ae0c-4b9f-a849-5e2148c089d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a539b23e-5760-4cdf-8988-c43b358e2715") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "531908ca-211e-457e-89ef-aeb34b162ea6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a401dbce-8189-4d70-9efa-b672bcf49acf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "FUXINSEMI" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fbb0e964-9cd7-4f84-a19c-bf3cb2cbd43d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "BAT54C" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02711d96-4ce1-40d9-a739-9279ea305f7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ed5dde3-dc46-4708-ba89-3da4feff0e8e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37d8ad1f-26ce-4da3-a4a1-8c42e0341f64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c8e5e8a1-05af-4761-8cca-1c988d6986dc") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "155ccdaa-da10-4dc4-bee9-324f7663abdc") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8531042b-2378-4904-a2c1-59423d346b67") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7c392289-3b29-4b06-972c-5db0e4d02920") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6c8ecb6f-219c-46cf-a70a-2d5e020a5759") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bc942a77-6dae-457d-b901-a74a97b7b69a") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce774108-3749-4fbf-ade3-8b75524f7b79") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e596cba1-5e3a-4de4-b9ea-9a63ce0f665b") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c35dc1fd-05bc-42c7-83ad-f237d1138b70") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1790509b-7779-4348-9050-3721f54ba7ad") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c02c08ee-078a-4543-87c2-1d9d7eccba04") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b43ed414-b407-4b76-a751-d404f829e31e") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "178408eb-4911-4712-ba9e-b0f7be2bc73a") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "46de7f39-4205-432f-9ba7-8e0bf4b45b9f") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5efab20c-0bd3-45e2-bc23-fa8563dc724f") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2183e36c-76c1-4d07-9ca8-bc6398b2433b") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7dce971-939b-4d87-9375-8505f139f2c8") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7014058c-24eb-43dd-bcef-398ab9ccf6f4") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "56c80a84-6c90-47c3-972e-47b8b2b2a70f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "cda510c2-2f9e-4df8-965f-ab96f7e011bc") ) (pad "1" smd rect (at 1.1 0 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 23 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "6e87a3be-7619-408e-ad46-ce499e96e244") ) (pad "2" smd rect (at -1.1 -0.95 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "FAN1_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "4bdea605-9cf6-44f2-8a08-bf3c3558afa6") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "23d75056-8ad4-462d-aa30-6d8d564b8e62") (at 166.0468 71.248 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J13" (at 7.3 2.5 0) (layer "F.SilkS") (uuid "61c1f2c5-70c4-495f-ba08-1c06971f553c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan1 Output" (at 4.05 4.35 0) (layer "F.Fab") (uuid "e1438f1e-e2c4-4f8f-8403-0cc2e327787e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dbf8dea5-e11a-40e6-a774-473f8e24f364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cca106b8-32a6-4f72-8a84-edde177a4f3e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4108743e-b486-4cdb-886a-af61be4009a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df3e33fd-3b4c-4db9-91ba-ea3d22905760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8093b88a-93c9-466c-afd3-1c3fb02e7d01") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "faeaff28-89cd-48fe-8917-6c6a8c53ba32") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MOLEX" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b93ea251-14d7-4ee5-bb37-9058af52119e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "470531000" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5e8172cd-dd52-43b7-9fc8-4842266e89ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5d8407c5-a933-4202-bdcd-2997df668bd8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "KF2510-AW 3+1P" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cd11cc4a-1f5a-4555-a3d6-48cbee9123c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/094bbf69-e345-406c-a80f-9e08f85706fd") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcc413ff-0695-423b-9f8d-1212d4cd728f") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c607ed1-db94-471a-96d0-1bc5fddbe527") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b85c6772-1186-48a6-b3d4-478e8c4e7042") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "283964de-de6e-4752-a590-d7e939049c83") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ad379c9-cc86-4877-a950-736620d3cdeb") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9928407f-d3cc-40e1-b175-6c49eb839934") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d3c0abc0-7ab6-431d-9b93-c6d8f47d6b0d") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4783dd49-2903-48a1-be38-d478508837c9") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e6b6ff09-896c-4af7-8df9-c42c878478ce") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba840ca5-6a77-4813-97ee-4775c877757d") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "18e663f7-b191-4fae-9988-b7a321867025") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d336c310-83ce-4da1-ab3a-afaaa46dea5b") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66c51246-2a88-4ddd-a39e-e27174eb031f") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77efd79a-82b2-4713-b6a1-45e5061c729d") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a42c087e-50c3-4814-a310-3dfe21fdb38d") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28b63874-7d81-4f71-93ea-9d4bbaece0c9") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e372447-92a7-41b4-8e9d-a671aa7f1757") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eccd5871-30c5-4894-bb6c-dc2bd7ca0ecc") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c8a6782-02ae-4d4b-9d7f-20b038a13b88") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7043db9-b55a-4558-91c5-98549dee4d00") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d088470e-df14-4453-98ec-661492cb69f8") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "1d4c2f8a-82cd-46b1-82ed-7ef4422b6880") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (uuid "202f12d1-3417-4294-b73c-ad868bfe845d") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "b5897087-04f1-41bb-9760-833a668a8a00") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 72 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "619917e9-122f-4072-b775-8acbdbb01463") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 23 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "48400581-b0c0-49d8-8135-88cac14986ee") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 27 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "4cd2edcf-3839-432d-b736-0052d5d08272") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "2a890243-9791-4864-b23d-70886207fb43") (at 111.965 100.6 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R2" (at 2.335 0 90) (layer "F.SilkS") (uuid "a7a167b2-6696-4727-83ad-2c3c7174d6a3") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "4.7k" (at 0 1.43 0) (layer "F.Fab") (uuid "7cb0700b-a490-4368-aaa3-76fc9c5741af") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e082c5dd-fe0e-46c9-947a-aed7247dcbc4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fba0acc-3813-41ad-89a4-541e2534e55a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9887e4be-db4b-4c79-9d90-35c3da7caf61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C99782" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b71e8809-a539-45a4-a995-eb907884f49f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "56960fbd-28bc-4c87-9f2b-af7806c46f80") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "57d77aa4-1680-4535-b56c-924edafd9cc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ca0c1b03-0375-41c7-82fb-fcdd37dd4770") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-074K7L" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c701ac12-cf52-4f38-bbfb-78833d97e846") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5ed88e16-2aae-4e23-93fd-ff9b3b4fbcfb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d71ba49f-caf1-40ea-9d82-8819383be28e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/7b19fa25-e005-4aa6-aa89-d93cfa6f6b28") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b8b3e9f-9b4f-445b-be9e-4eca3c6b39e2") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "853caa0a-ed40-48f8-9fd6-2e2d1c9a49de") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "faa956db-5c3c-4328-9e60-1e5c653e4ab4") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2320a66d-c85a-4925-b4ae-863311e01bba") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0cba742-551c-47eb-9994-8671074eb50e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "666ef73e-19fd-4351-a2a4-8d3efb6c4c55") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14ceafbe-db92-4ba4-bda2-e03333e2ade7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb2f568d-28ba-47ff-b1b4-00b85518f303") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea26dc20-d41d-4b4d-89b1-ae36f7196c6c") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2458d72-7479-4372-ba9b-e4143651d9d9") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ff2ea4b3-973a-43e6-8327-b6b80508bea3") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "3a5fa7a7-e3f2-41aa-a887-ae50547b41f5") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "Net-(JP12-A)") (pintype "passive") (uuid "8444d0d3-334e-4543-99a2-85edf7edd4e4") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "37745207-6bdf-4c7b-9911-6f752cdd4766") (at 157.18 119.575) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J17" (at 2.9 2 0) (layer "F.SilkS") (uuid "c82234f8-2ff6-42f1-a8ea-90507178900f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor2" (at 1.25 4.6 0) (layer "F.Fab") (uuid "a9ffff2d-c467-446e-8954-c09542ba39a1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d904ffe6-a2be-4944-8992-553d8334830e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b97bdeff-a594-4da9-8583-f53103c60eba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "de18c346-5c8e-4478-96e0-0132b844d3cb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e80d7969-8d04-453a-89a2-9b979d1b2f3a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C20079" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a48f5ca3-6c4f-47aa-9ac8-8036c35c4e50") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b75af48a-7bb3-48a0-bbc2-369dc16552a9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "90a9da03-5be2-42c6-a65f-b3d592fe91d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "XH-2A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e2e2968c-407b-454c-9d25-410dbef841d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d8aeb984-af56-4843-a538-c24b31c77944") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C33132 (Right-Angle)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ef236080-9aa3-4576-9668-0b78037d1894") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2ab9bb49-234a-4ed1-af89-c2604f58121c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ae54366-0b44-4b6d-9341-3033cf0b491b") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2e3c0128-bc6e-4ba5-899a-99e462864b2e") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "602aa9b4-3c76-43bc-9611-d536358e3b83") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31cfb117-21ce-4d6f-b553-72de1f2c9771") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "99cf69be-b55f-4176-92ae-bb49d025c8e9") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8424e26a-875a-4363-a43c-ae20a9bdb913") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "abaccf40-d4b3-447d-8d8f-ce3cca675026") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5bf9deba-f27b-4b37-a22d-1513361cbe65") ) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b115340-3531-4a17-824e-2b89413d1a0e") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "38938011-e3f3-4138-84b3-6d300fb49444") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f8f003d-7ff8-46c7-95e9-eb94205a4a56") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "934181f3-858c-4128-9cbf-7a847012bd16") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e0fd62de-daa5-4d79-9465-a8862ebabe0a") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e6c3464-3826-4297-b7a7-6f5b603927f3") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86bd54b2-e904-4a9c-b5e4-6035b6a6fb93") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae45bf96-9a1a-4a66-a96d-29bc55ff5a09") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76df799d-e19a-465e-a380-da035d2397df") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba1f3aa5-955d-4fb2-a2e7-e72f9bf631cd") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7730052c-1ecc-4aa0-aad2-8b6ffcfe7a87") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ffa2f0b2-2d90-42c6-986f-720fd1e53c11") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b58413a1-c1b7-4c76-b40f-ab115007b795") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5590d68-3543-403c-8ae6-c429659b2bd6") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "aed87006-1dce-4e10-8efe-b52527b98770") ) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "535acc9e-1e93-47ac-887c-8107ff3703d0") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7f1568d9-844d-4653-bf32-10f29613e09a") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b4a66b6-6934-4cd8-94ce-c15c3e1156af") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c1ce3828-6d60-401a-90b5-83eec43a1cd2") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7eaaad08-beb7-401b-a1cd-b65700a77859") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66738d1e-b3e5-40a8-9945-89f93aed354a") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ce8e9c5-726f-4f0e-a72e-65eea4fd2ae8") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f046addb-73dc-4327-a16c-281e81a3300b") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a4ae07f-4bff-4dc9-9f78-a616a666283c") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36d5c88d-ecf7-4690-9f4f-b6e0f3f6b765") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c48407f-3040-4ab5-9629-b6af71f1bf41") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 0) (layer "F.Fab") (uuid "b4e7a464-8e6f-4dab-9eb7-1e342deb5760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (roundrect_rratio 0.147059) (net 57 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "3767bf7f-c657-432b-a428-ff4d1125f149") ) (pad "2" thru_hole oval (at 2.5 0) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 59 "TEMP2_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "55d50efb-1939-4859-8918-661a9e24c234") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "3979f30f-0085-4c72-a490-729b174812d7") (at 173 107.7 90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C11" (at 0 -1.7 90) (layer "F.SilkS") (uuid "03e24f29-62d6-482f-88db-20464506fb62") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "22uF 25V" (at 0 1.75 90) (layer "F.Fab") (uuid "e65c6d4e-00a2-4d2e-bf21-97ed2fdcaf9e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43aedd2d-65eb-4f89-b7ad-44073d7b327e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e8238271-1b72-4003-804a-7eea0062875b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3862885d-8be5-4706-994f-ee23abe91051") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C12891" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cff63e48-1a04-4dc6-a48f-1f382c502c6e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6fe5bedf-60ae-47e5-b428-8f8a85897afb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL31A226KAHNNNE" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0a6cee1c-9113-4548-b60d-4d0adb194bb3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0bc155f2-bdca-4b4e-8fd0-f62f3d2d830e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c599caa2-9eb1-4835-8c6b-e84b7474639b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/c42ea71f-c107-439c-a1ea-b3a68372ea5d") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3bf6fb8a-941f-4673-8469-64a1003b2512") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "96468ff2-735f-4639-b4c7-188289e703bf") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7f827a13-af16-43a5-a09e-feac7b2592b6") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db6c2fc3-f4ae-4403-8949-43f6775b8863") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1554615-c23e-4d70-bd8c-d68312f2f2d8") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "44dc3b4f-cc19-4362-ab63-325cf72e3b43") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dd969932-cffc-4b80-8fc4-135d53d134b7") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f04c7c3-2077-4785-bf57-927f5115c456") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1dcad7f5-5ee0-4d78-a811-1feee1b820c5") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa8b74db-2f5c-4192-9b6a-80199e5b4dd8") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3ef6e4f-1d55-4c0b-8686-feaede15e4a1") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "025c6960-f191-4059-a915-9556c909172d") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "10e97400-53ce-4ea8-8fbd-417738a7d82d") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "107f1866-76fd-4e9f-a283-397f3f42d2a3") ) (pad "2" smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "30dee45f-7c4f-4cc0-a2ec-bada4d917285") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") (uuid "3bdb7f50-b7c6-4e3e-90d6-4ca872bacf77") (at 165.83 108 90) (descr "module CMS SOT223 4 pins") (tags "CMS SOT") (property "Reference" "U5" (at 0 4.1 90) (layer "F.SilkS") (uuid "d3128d80-62cb-47db-96fe-57cbf4ff63e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SPX1117-ADJ" (at 0 4.5 90) (layer "F.Fab") (uuid "41af32d7-2f2f-41e6-9645-51b6120c83a5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "edf8fa84-40f1-4214-81a6-19460883f853") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "231bed19-4e97-4d61-b8ad-a1ad3d9c2253") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd85633b-5677-4663-956e-a00d6474ac34") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C67402" (at 9.45 158.95 0) (layer "F.Fab") (hide yes) (uuid "cbba1c14-2a04-4889-a288-885548738342") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3779848-dfc9-4d68-8c0d-c9bd12800080") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5f79ef20-bb83-49ee-b26c-da32d7652377") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MaxLinear" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e07a498-0fd1-4d9c-9a65-91613cdfc3d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SPX1117M3-L/TR" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0a4a178-78e7-4a8f-a802-fbfaee90e3ea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "15f59ef3-e5e2-4210-8fee-76476e6ad40d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0a773440-19d0-4f39-acd4-ad062765844b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?223*TabPin2*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "be96d1b4-4cf9-44bb-b3f7-a5b288de469f") ) (fp_line (start -1.85 -3.41) (end 1.91 -3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "33d552a9-9ad9-46aa-8d4e-c3e168f68839") ) (fp_line (start 1.91 3.41) (end 1.91 2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e7a40bfb-6a2b-460c-aa97-bf6c3ccc5379") ) (fp_line (start -1.85 3.41) (end 1.91 3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e9349a5-2a34-472d-8bf3-6b8b3b3fd628") ) (fp_poly (pts (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "be374ebc-959f-43dd-8809-e3e0f7840ba8") ) (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8a86276d-bad4-430e-ae3a-ced1132f0577") ) (fp_line (start -4.4 -3.6) (end -4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "132af0fd-e7b6-4085-958b-7b4a187aa822") ) (fp_line (start 4.4 3.6) (end 4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39ab5a97-ac9a-4b18-9381-03c38024755c") ) (fp_line (start -4.4 3.6) (end 4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aefbdd10-584e-482d-835f-58ee992dfb24") ) (fp_line (start 1.85 -3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "10ed4870-d6b9-4d5c-9b3d-8878622d2014") ) (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac40f094-196a-4852-9bd9-42a5b0df62b3") ) (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58914b81-580a-4bb7-ba41-4760bb706597") ) (fp_line (start -1.85 -2.35) (end -1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d462503e-e42f-4813-b538-ebaa205278ed") ) (fp_line (start -1.85 3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "275ac459-29a9-4eb0-afe3-41837deb46fe") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "10f0e0a7-6e84-4d34-938b-333fdf00cc15") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -3.15 -2.3 90) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pinfunction "ADJ") (pintype "input") (uuid "41e15dbb-ce5c-49ce-b65b-e4ebf3a12930") ) (pad "2" smd roundrect (at -3.15 0 90) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "d07bf62f-8eec-4766-97fe-29e94c7f499b") ) (pad "2" smd roundrect (at 3.15 0 90) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "a6c2f0fe-e4f6-4674-abe3-9996dd7aa086") ) (pad "3" smd roundrect (at -3.15 2.3 90) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "VI") (pintype "power_in") (uuid "d0ddc8b4-4f44-4a66-b26f-2f55cd038225") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "3e36c75d-6613-4cb2-8e17-72b7200a7a55") (at 146.33 80.7625 90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C4" (at -2.0375 0 0) (layer "F.SilkS") (uuid "bf59faba-47e5-477c-ac7b-fc2e742726d4") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "0c489dff-5aeb-4f3b-9b02-e7e8005eb8be") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "24bfc401-9a4e-4580-b719-b3effc127409") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "aff11abc-d66b-4aca-8b0f-b84c10c40a21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e48adce3-b937-4444-b071-5382bdb42b38") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f08ab224-c17c-453c-acd8-d320ac311a4f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62d5c98a-4b74-4125-a80f-531c99367100") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9cbe54b8-a88c-416c-b188-a3a5db794dad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "236e534b-c3de-449d-95e1-e5f91a518ead") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ba3cf2b0-2016-42b5-a729-e98495931da9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "16f56e1b-626b-412b-9540-1ddb9ee8e0e0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1bdf07a2-7acf-4c26-b66a-c0f3c2b6399a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/8d64b89a-1924-4f6c-af5f-09a59972040a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "27e1dbcb-ba67-411a-9bd3-d60367a92efa") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87f15b89-2b30-4e1b-a52f-ac72e2068437") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df7d5f59-1035-4e91-9fb9-187b68fb38bb") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c35eb689-02fb-45ee-87d8-788fb1ccde68") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e1e15e9d-17ba-4ea7-83cc-3a75f76d42b4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17addb2b-9b47-489c-b90a-c1242c44bcf4") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d04c36f6-d7a1-4e8a-9a20-24fd2ce60d43") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f48aad00-ba79-488c-9377-85101c656b42") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "810524be-8402-4834-8ebc-dc6fd091dc66") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1fdbdaea-0b7d-46f6-a633-95f8c1fabc20") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "98c13d19-de7c-49ec-b82a-6b05e26feb0b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "VSYS") (pintype "passive") (uuid "2d19b504-e980-4193-9f29-f41f295bb0a4") ) (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "c55df8e3-e12b-4eaf-a483-a43e41ae51a5") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:TSOT-26" (layer "F.Cu") (uuid "3f8958da-a6bf-49af-8612-c9a88977e2a0") (at 180.93 101.775 -90) (descr "TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "TSOT TO_SOT_SMD") (property "Reference" "U2" (at 2.9625 1.1 90) (layer "F.SilkS") (uuid "beae4773-1730-487d-9c35-2296c6ad78ca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "AP63301" (at 0 2.4 90) (layer "F.Fab") (uuid "80135ec0-fb89-4f5d-a329-6ed5d5a1e01f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:TSOT-26" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8b3938ec-24d3-4c03-a1b1-a61ccfc5f031") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "095958cb-a6ee-4269-a071-347cab98df90") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "4A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT26" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fd15d954-ad22-4fb9-bbf5-bce659edd65e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2158003" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a252a84-d9ef-407e-8573-401a6ff5d5a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "DIODES" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fda928cf-42db-4e6f-bed4-314fc3428ee8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "AP63301WU-7" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "75615ff3-de0b-4649-995f-f921d18ac564") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d3ea31fa-474d-41c5-a79c-97f7ae7b941f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc58a3ed-a2a3-4df4-a50e-496fa78e3dc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TSOT?23*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b81d687e-c0a3-4656-910f-d5aa93a6d6ea") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 0 1.56) (end -0.8 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c503728a-143f-4ba2-8099-1a9cb5d9a960") ) (fp_line (start 0 1.56) (end 0.8 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8cb786a7-523d-41dd-8345-213ca6703cca") ) (fp_line (start 0 -1.56) (end -1.8 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c654d462-c29f-4119-ada5-e657b2632add") ) (fp_line (start 0 -1.56) (end 0.8 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "06201abc-7292-43a1-b9bf-57ccdd1db41f") ) (fp_line (start -2.05 1.7) (end 2.05 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "22e8f993-8814-4fa6-8551-9698cbeba997") ) (fp_line (start 2.05 1.7) (end 2.05 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b751c427-bee6-4576-9619-b1300f6f985b") ) (fp_line (start -2.05 -1.7) (end -2.05 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9fd9bdc0-83f1-48f0-80d1-05ffd4e6ca39") ) (fp_line (start 2.05 -1.7) (end -2.05 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27cdfaac-90ae-4ab9-9872-6ebeca97ba8b") ) (fp_line (start -0.8 1.45) (end -0.8 -1.05) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6fbbbc69-7d91-4d2b-8706-1f1412e79438") ) (fp_line (start 0.8 1.45) (end -0.8 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a470d909-f0a4-4297-84a8-5d61b1bb6cd8") ) (fp_line (start -0.8 -1.05) (end -0.4 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "602f0327-8908-4892-bed4-a58d2e909247") ) (fp_line (start -0.4 -1.45) (end 0.8 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38d98f63-e0d0-43a4-a5a4-0bab789e3405") ) (fp_line (start 0.8 -1.45) (end 0.8 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9503229f-7d33-437d-912e-23674b67f1b7") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "28aaed84-82c5-441d-82fd-81a984bb1240") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -1.2 -0.95 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "Net-(U2-FB)") (pinfunction "FB") (pintype "input") (uuid "eb98d50f-face-4431-9343-b3b754a11ed3") ) (pad "2" smd roundrect (at -1.2 0 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 30 "Net-(JP1-B)") (pinfunction "EN") (pintype "input") (uuid "cbfd45aa-fe36-4446-b402-53e632990858") ) (pad "3" smd roundrect (at -1.2 0.95 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 30 "Net-(JP1-B)") (pinfunction "IN") (pintype "power_in") (uuid "16d6d74b-fa2c-4d42-a10d-fc12871fde8a") ) (pad "4" smd roundrect (at 1.2 0.95 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "a8144979-ac07-49d0-a45d-6a2607f6844a") ) (pad "5" smd roundrect (at 1.2 0 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "Net-(U2-SW)") (pinfunction "SW") (pintype "output") (uuid "2085ad15-3845-4aef-813b-3a755a5e7da3") ) (pad "6" smd roundrect (at 1.2 -0.95 270) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "Net-(U2-BST)") (pinfunction "BST") (pintype "passive") (uuid "f2ec44ed-472c-4275-86da-4c840de4ff24") ) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TSOT-23-6.wrl" (hide yes) (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "44842254-6f58-4232-a01d-89ba77812ddb") (at 182.63 92.6 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R6" (at 0 1.4 90) (layer "F.SilkS") (uuid "b3257527-0e02-4b3a-bb02-2c5bb16c0fc2") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "4.99k" (at 0 1.43 90) (layer "F.Fab") (uuid "127ef77e-0665-4ea3-80ac-3cf257b7a6d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e38ed339-09e3-4bb8-b988-a12274b684cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b1af7067-cbed-451d-8034-b95a60d89918") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "dce66bfe-70e3-44bf-829e-89548cf68db0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114621" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d5dc9f0d-83e8-4f21-bd59-f467fd908896") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "638f7e25-4b9e-451f-96c1-2b133594b718") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4f18c5e-5786-4f42-a5e0-476c1246fa1b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "82626252-b295-4407-bb59-dba87e9051fe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-074K99L" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d48c5544-308f-4d08-a86e-bc13920a7a30") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04fdfe9d-5ab6-42fb-92a2-24a84f0b03f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0a60c88c-8721-4154-ad67-8eb64c2b6806") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/adba1fff-18c7-4fb6-97ae-324d243206c4") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a7eeba5a-d7f5-4308-ac71-0dd99997ccad") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "af2a1a8c-3a49-4292-b636-80a4c7abd49a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a87e579-c5df-490e-a8ae-ae5dbc139481") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0be9be5c-58a2-4a8b-8af9-93a1b45c9499") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc6ee7d4-3758-4227-b024-8e13b63bd1dc") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d71ef1a9-b75c-4655-9588-ad7286c3e98b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69624e8f-6632-44cc-a2f0-e58b0b65f728") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "095c5eef-1e1f-444f-b0c7-f3e6bff360fc") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe7b9bec-4d2a-4a82-9c6a-df18b0a32c71") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d4b36ea9-24ff-4f56-8e07-a1825ada2aca") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "102f4b7d-da8f-4d0a-a48d-0f3a902fec9d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "1c7eea72-480b-4439-a7f4-8f38f02e1395") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "Net-(D5-A)") (pintype "passive") (uuid "80401e12-dbae-4351-ace9-7ddbba571376") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "468b2a1d-505b-4cf1-93d2-fa7f57fd517c") (at 173.21 88.1 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP1" (at 0 -2.33 90) (layer "F.SilkS") (uuid "279eadc6-642f-418f-8ae5-251bb4750db9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Jumper_3_Open" (at 0 7.41 90) (layer "F.Fab") (uuid "c67800c7-0cf9-4964-81b9-da743dc43260") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "29e8037f-d4e8-49df-81dc-d52ca625ad35") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e385fb6f-0f1f-4f8d-8941-af48007c2cde") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, both open" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f678fabf-a9fc-4d1e-b00b-69d7723f0ff4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Manufacturer" "XFCN" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "61f62800-206e-406c-895c-9ffd2d65e9d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9aa2f4e3-06b8-4a4d-a86a-7ece93f9ae1c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2043510b-905a-41eb-9dd3-ca51e44b55c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "63dfc00d-e8c3-402c-a160-569db0124b2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2937625" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a970ba91-21ad-4851-8e53-e8f111c050c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/0364ffa7-abcc-4897-b428-aacfe086e2a7") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr through_hole exclude_from_bom) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7627de3b-e665-42ae-aad4-608e6d9c6da5") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1c45fd6f-8e39-445e-9afa-c6c43d2d65f4") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1995ffa4-4252-4760-884b-bac073c60f06") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8591fe2a-959e-404c-b1e3-9fe26cfb3c74") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bca2fa27-ae67-4691-aa1f-b737312b5e70") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "58c70c4e-ef9e-4a57-a843-23580dabd3fc") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b170ccc6-4bbc-449c-b06c-23466ef6f228") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "43927fd3-f16d-40d0-9249-cb4a3e38d49e") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aaa39b52-b2be-4610-8755-6d2f3bb840c5") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "63a1a576-443b-47dc-becf-242ac12ae70f") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3fc44e72-96ac-4394-a78c-5dc302b73176") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "13d981d0-41a7-45e0-9e8b-7174f0b3cf64") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "689d453a-0005-4119-8b93-be952f8bc946") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b4dfd18-257b-48d9-a10c-a127411dcf45") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe3df7af-cfbb-4db4-afaf-08a362d3875b") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "0827d7c9-5007-4f88-9e64-31b3570b571b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 74 "Net-(JP1-A)") (pinfunction "A") (pintype "passive") (uuid "aa7dcc7c-45b9-4e02-a6c7-2ba9696e2976") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 73 "DC_IN") (pinfunction "C") (pintype "passive") (uuid "df98002c-ba7d-4ebb-b9ed-cc88fcc14085") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 30 "Net-(JP1-B)") (pinfunction "B") (pintype "passive") (uuid "dfd701fd-fd64-4ca1-82f9-65a15a0cf5f3") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "498ad573-90fa-4112-a3ba-3dace9d4ef29") (at 152.68 97.7125 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C1" (at 0.4 -1.5 90) (layer "F.SilkS") (uuid "a38b02cc-d18c-452e-8de0-f855641c8e98") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "b080beb0-0662-40ac-b451-8db67d056fdd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "39846fac-aa94-44fa-82ce-b31bc460a192") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0af22384-7c84-4f22-aa19-1c13ca5c0d3c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1dd2736e-66d3-4bce-8005-968ed854dbc1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 133 241 90) (layer "F.Fab") (hide yes) (uuid "a7026967-c8ee-4c4f-9c56-c88f8ff14cfa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cea00e85-9b5d-4002-856f-9aa27ad8ce4e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4cce322-3b07-4712-bece-1a87a548bceb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4b979426-7e4d-4e40-a9ff-99ae7349cbbf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8638c69d-8821-4122-ae3f-5d3228e4543e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ad068d1b-a62b-477e-a8e0-8c529a7bdb88") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "32e6d264-96bf-4da1-a2b7-77bbc906f195") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/0113ec05-ff50-4170-824e-aedf99bcdf74") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e39f4adb-c597-4fc8-8da8-a4efc17b5984") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6f87bdf-d854-4db5-bc81-a707e4125849") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d76db392-37c0-4b88-b118-f397faea2ad7") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b2decb3-d093-4273-8637-798a734ba9f3") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "10be0848-1df0-4f00-9cf2-5f160ff84756") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f869a44-17b8-485d-82ae-807b987c9d0f") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ae78796-26e2-4f7d-9c3f-dd4f0be573ff") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "137c0d48-26c1-40aa-89ad-15e2e20f86e9") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ca75005-f648-473d-a7f0-d93a2bb4a39b") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14c27969-5fa6-476e-bfaf-8f289c4c566e") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b5556c1b-6298-4853-a187-1580e23e69d6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "8016ca3b-869b-4a4f-ac76-35ef1b55b586") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "3714cd02-ee32-4120-87c1-656d2bbd39b8") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:SW-SMD_L3.9-W3.0-P4.45" (layer "F.Cu") (uuid "4d2fcf14-ba48-45f8-bec9-66e367853057") (at 141.3 121.6 180) (property "Reference" "SW1" (at 0.6 2.4 0) (layer "F.SilkS") (uuid "6d29a26b-e09e-4d9d-bf2c-fc42fc2fcb41") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SW_Push" (at 0 2.3175 0) (layer "F.Fab") (uuid "2874e4a3-ccbb-400d-9c53-9fea8a913dba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:SW-SMD_L3.9-W3.0-P4.45" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1eab6a7d-e37d-480f-882a-111c0a0f856a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d9f7cac5-2fe8-441b-aec6-13c00581fe61") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8e3d91f6-d31d-4e2e-9c71-2ff254bd69d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "22b98aff-036e-489d-bc14-a8f91dcecbc7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C720477" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db320115-2310-4238-b224-4ef6e0cdf922") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc423e74-15dc-426a-98fc-8c100dae4693") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "XUNPU" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6b8beec8-1378-4ebf-9c92-865b59089c66") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "TS-1088-AR02016" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd4d9d33-6bc7-4b66-9e44-d09444b568a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcd48e8c-6ba6-4548-8b86-356cad1e2055") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "93fbcb01-a280-417b-9a20-0c8b66e2e69f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/21c2b408-da95-4394-b5b2-e408611b3d07") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start 2.026 1.541) (end -2.026 1.541) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "18156c1a-0fe2-4c6d-9e5f-d1c0dee61ea6") ) (fp_line (start 2.026 -1.541) (end -2.026 -1.541) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "e1d9027d-440c-4e94-bb73-7991b1cf23d2") ) (fp_line (start -2.026 1.541) (end -2.026 0.883) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "15387e3f-fc81-4926-bee4-4102073c168b") ) (fp_line (start -2.026 -1.541) (end -2.026 -0.883) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "46a14229-1cd5-4ae3-8dd3-3df25f6aa608") ) (fp_circle (center 0 0) (end 0.9 0) (stroke (width 0.254) (type default) ) (fill none) (layer "F.SilkS") (uuid "ec3733a0-37ab-4b5f-8748-7938dc8ec1e7") ) (fp_poly (pts (xy 1.95 1.6175) (xy 1.95 0.8325) (xy 2.255 0.8325) (xy 2.255 1.6175) ) (stroke (width 0) (type default) ) (fill solid) (layer "F.SilkS") (uuid "25b03357-3cca-464d-a21a-6c36db8dc90e") ) (fp_poly (pts (xy 1.95 -1.6175) (xy 1.95 -0.8325) (xy 2.255 -0.8325) (xy 2.255 -1.6175) ) (stroke (width 0) (type default) ) (fill solid) (layer "F.SilkS") (uuid "bb7ca51f-eb25-4f7f-84ab-0bea032c7c5f") ) (fp_poly (pts (xy 2.5 -0.65) (xy 2.5 0.65) (xy 1.6 0.65) (xy 1.6 -0.65) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "3e4da784-a370-498c-8ec3-40b72237272d") ) (fp_poly (pts (xy -2.5 -0.65) (xy -2.5 0.65) (xy -1.6 0.65) (xy -1.6 -0.65) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "738b0414-a02d-4ec3-82ec-93d21013267d") ) (fp_line (start 1.95 1.465) (end -1.95 1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "93b6ddc7-b46c-4df9-b788-0490636a0140") ) (fp_line (start 1.95 -1.465) (end 1.95 1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "8f86df6c-de40-42e4-962d-06cd4e398ce7") ) (fp_line (start -1.95 1.465) (end -1.95 -1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "56bbf76f-1ffe-4eeb-8c4f-15bc5e32df56") ) (fp_line (start -1.95 -1.465) (end 1.95 -1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "27804742-f736-45c1-a6a9-d1d4d2e5330d") ) (fp_poly (pts (xy 2.56 -1.465) (xy 2.542426 -1.507426) (xy 2.5 -1.525) (xy 2.457574 -1.507426) (xy 2.44 -1.465) (xy 2.457574 -1.422574) (xy 2.5 -1.405) (xy 2.542426 -1.422574) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.3") (uuid "87d80b9b-22c2-4cfe-a519-f90a25558925") ) (pad "1" smd rect (at -2.185 0 180) (size 1.23 1.36) (layers "F.Cu" "F.Paste" "F.Mask") (net 33 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "bcb9607f-f629-419b-ba4f-b8fc75eab7b6") ) (pad "2" smd rect (at 2.185 0 180) (size 1.23 1.36) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "1ae3b0d9-7ea7-487e-8c51-461d185c67fa") ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "4eb5fad5-8048-4c21-bf6a-ede62b9ef129") (at 167.0468 76.348 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C24" (at 2.3357 0.0916 0) (layer "F.SilkS") (uuid "9f2552ed-7543-4d2c-a31a-4f0b0aa75bb5") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "9cd021e1-6c5e-40e0-aec4-ca28d24c98f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "be5f6dea-b07a-4a86-bf9e-4441e0a217c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e8952dd8-c30d-431b-be0a-36a863d0c7ba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "cfc88586-ab3b-4ef6-a6c9-ac62fe51255c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "acf1ce41-c591-41e7-9bb0-32c10055dd0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cdec19de-b601-4e4f-8f41-8da30dfca843") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a58e235f-1006-4694-8937-1dd356f55a41") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e08c81fa-3961-46e6-ab06-f0b746527460") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "59945878-33ba-4d7a-9c84-3a251e1ad60a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3afb37ed-f488-4ea4-84e7-eb6acda98d57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7a7548e4-0190-49ee-8a5b-34b90d1abd62") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b25de442-5cb5-4f8d-869f-430b2648b615") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4573649d-c966-4ff6-89c0-6774f0cc1490") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "94b23e9c-138f-4b59-989d-e0f01d022840") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a78e7533-b339-46f9-9812-fb39ae94319e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "36a5ba80-cccb-4b9f-9c2d-d6615c7f34d7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "37b12cbe-1aa1-4051-b075-c3741b49869a") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "068fc850-5587-4a6b-b69a-b00473f38471") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27514cc7-9ae2-4b43-9288-1150beae1b6f") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c076856-4b3a-4c10-81a2-f8452040a817") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7eb0d4a1-e135-4e0c-9006-dfffcaf515a6") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "70d63b13-8cbe-44eb-a135-5d1702b2daf6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "MAIN_PWR") (pintype "passive") (uuid "1bb2145f-8672-4542-b038-c3c557625c2d") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2e3c4b5f-1145-4d9c-8827-f69ff7c69f44") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "5171f182-b224-4a7a-8bfc-2ff58a513506") (at 175.67 118.3 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP2" (at 0 -2.33 90) (layer "F.SilkS") (uuid "b8c9c49a-b35f-4794-aaea-d5f9fc8b66fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Jumper_3_Open" (at 0 7.41 90) (layer "F.Fab") (uuid "abaf0770-cf83-49b8-81e1-381d6aa514c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46cbdcf6-6aef-43fa-b14e-21e70e3031b9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5566d382-7768-448e-899d-a04e60e723ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, both open" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7f6f556d-05d1-4e92-b2e5-3d577a6e5ce8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Manufacturer" "XFCN" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3eb49f18-ab81-49f4-8a83-db5300f14d25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37d2010e-fa64-4333-936a-a53c51d7823f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "330242b7-880f-45c3-b849-7cb8a4dbdf3f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "acf34624-2609-42ed-bf99-fcbe6a2970fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2937625" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2c23731c-5e37-410b-b116-78015a8a76d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b2a40005-487f-412a-8ac9-41fd503ee05c") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr through_hole exclude_from_bom) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c5cf6c6f-787a-4541-90fe-e97b54453880") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "95d71ff4-7a2d-44fb-a311-5b117084f32f") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "071b43e4-1390-489c-a71d-764cc1f3bf04") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78052e00-a510-4cdb-850b-3bce3d95ccf5") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e918eff8-3c67-402b-a714-4d94b6a47b6f") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f23ac202-7ffd-4350-8eb0-aa095bfd34d3") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b71489db-8f26-400f-8ea1-c149b73ee942") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8af318f7-c918-4453-8c5a-e1b59562f21c") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b47f080-bc7e-4151-a07a-7964dd0fcf51") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17f9478a-13d3-4e7f-9e4e-f50cfe40f610") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "355e26b9-43d0-4e5a-bf97-aeef66992da2") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a0e35f50-360e-4361-b3ca-14b24e28b784") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37c8d7e8-4147-4e23-b948-3e1510c1bf72") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ff04cb7-8c67-456c-a956-40d2cdddd538") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ae31af2-655d-45d5-aed6-fa459b14a72c") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "6e24aae2-5309-41cb-a26e-5f9b60da10e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 74 "Net-(JP1-A)") (pinfunction "A") (pintype "passive") (uuid "be3ba60b-38ca-4d96-87d8-e8a3334ed0fd") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 72 "MAIN_PWR") (pinfunction "C") (pintype "passive") (uuid "8743c575-96ef-46c2-a778-44d4b0c0ba79") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 77 "Net-(JP2-B)") (pinfunction "B") (pintype "passive") (uuid "d33ae80d-2d43-42f1-b34e-100ce18a8071") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "52be7244-11c7-4e42-90d8-1f5f084f6218") (at 184.65 76.8407 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D6" (at 2.4468 0.0204 0) (layer "F.SilkS") (uuid "017bf5b7-4d3b-47d5-918d-ff8872488ce1") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "ee875959-3b29-4b8b-bf88-1c9c034e35ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b1dc99a8-37f8-493d-abaf-25c25dde3095") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ae829a25-574e-489c-baa5-c8c193c3411b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d5f1bc39-78c3-40d3-b034-987c32154823") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at -41.2375 123.0375 0) (layer "F.Fab") (hide yes) (uuid "4dc6e062-45e7-4afd-b614-b431f8425863") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "312da289-82f8-4bd3-9224-0b2b948d2557") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45adda49-59aa-4871-955c-1c1abb73d70e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "acf66c7a-206d-45af-b283-04ade7cccabf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "74ad68cd-7b2b-4e4c-8c04-6aef902811fd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5071f7f4-593d-441a-837b-cd216ee43530") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "85803c92-785f-48ba-8948-04c141880288") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "810bd8d6-1cff-4e4f-a0c4-f01f25f73489") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "838769e4-42df-4e0a-9aa6-c1845c8f393f") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7176feb7-6b13-46c3-acc7-3af4be243fe3") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a9d306cb-5cfa-4fa4-8bad-8862f1bf476b") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8ad06565-adca-4ca0-86de-321c4cafb3e4") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f6cb7dec-adfe-4617-b29d-ae28fd377a6e") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e1583e7-8a85-42e6-89af-3b23fb667b13") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "049efb2f-c7df-48cc-89cb-23bcaac24eb4") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed70ff24-7d91-4d8f-9801-ab69f377de84") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4c1ab8c-018d-448a-bf55-d3933fe8eaab") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ba4fb8a-5e4a-47c6-8ea3-88d23ba020c1") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6f1b323-0027-4b65-9b11-46fe24032cf1") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "13f27061-27b4-4eb3-820d-f9998d726013") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "3479507f-e43d-47a5-9bba-6614faf1bd9a") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 12 "Net-(D6-A)") (pinfunction "A") (pintype "passive") (uuid "547037cf-4c68-4f4d-952f-03fa9140d068") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "53e8046a-1d59-4374-919a-be5f7cc4a4f4") (at 171.28245 95.7532) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C7" (at 3.1 0 90) (layer "F.SilkS") (uuid "1684a297-ab7a-42d9-a42c-bf4877d2fa65") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 0) (layer "F.Fab") (uuid "e7e05d81-0ee4-46a6-a205-3c96dc6eb3b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "38bb3930-1f6c-4de1-ae96-c7363652f73e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f0ff72c0-e914-4029-842b-fef1d3c6be7d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7b77a0d4-0496-4449-a122-ff08dcba6a6b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 139.075 161.2 0) (layer "F.Fab") (hide yes) (uuid "8b8e18b9-ca4d-4e8a-80dc-2f8f80866b57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "41415285-97ae-486f-962b-e61c2ebe9107") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a5e75a15-f32f-42a9-afcd-197a02adeda2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Kyocera AVX" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "abbabbff-6a9a-4cd4-9bac-de5b25a837c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43abf51c-e48f-404d-878a-cd2adf258a2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "73e5654c-598b-43a3-9286-efb96fd642e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9c40f37b-0069-4944-a071-82ddcdd77eab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b015ca17-0c62-4378-a701-bca3b6597330") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "29b2ee46-65f8-4956-9f68-0898c30251eb") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5829bbe1-2a29-40ac-bc2f-062878410149") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "082d3326-e69d-4ea2-8034-c00e8a650050") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d671b762-fd59-443c-9c81-705032ce16aa") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "418068ce-3250-464f-8211-d8dcce8a7d78") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e44a86eb-b4a8-4e79-8690-b59cd99d6125") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ea4b09c-cca6-46c5-8563-d58ca2773daf") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63e25774-3c65-4fa7-a495-6c6c426ab91f") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b026f407-4947-4621-834e-cefea76d1c1b") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9ec8cde-671e-42b1-99c5-2ecd0e95abe4") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ec1d95c-1780-4cfe-8f3f-ab2ceb62ae8b") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "09e115e3-6ddd-4862-afbe-bbff409322ae") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "488cf99b-d05b-42d5-b680-af3daf947973") ) (pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "e577927e-fe8a-44f4-8884-b64096ad5191") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "55366e14-cec9-493d-901d-448b04d2f286") (at 154.8468 71.248 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J14" (at 7.3 2.5 0) (layer "F.SilkS") (uuid "2f3511b7-1df8-4664-afa9-e0e4d17b1a4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan2 Output" (at 4.05 4.35 0) (layer "F.Fab") (uuid "0fa1a736-1b0b-49b4-a132-736896e20ac7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5c93d659-415d-4e65-91fd-941b7ea34018") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "fda30ba5-52a8-44ce-8480-74c27c36538a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7922cd61-e74b-42a9-9c1c-e92c2c03f52f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e504374-9fb4-409e-b225-5f56305df19f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62e4e229-4efc-4555-80ac-824910490ecd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8f9cb63f-a4ca-49b8-b006-4834377e77e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MOLEX" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2f00e36e-c0fa-41b8-b4d4-38704973756b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "470531000" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "78bbb9f3-85ef-444b-a0c6-7872c16b241c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e7fb091-94db-427d-980e-708f251fb99e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "KF2510-AW 3+1P" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7b23da97-2a9b-431d-944b-197c40cff08c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8c93c53-29ce-433c-a661-2d61accde02e") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "43c236cb-1b1b-4b4d-ad26-db683989563f") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e25f5346-4ce6-43d7-9160-64c3adf7a5a2") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ee122cd-ff4b-49a5-ad1e-754271f666e4") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ddb07dba-4d67-4f10-9c3f-a6d2223cd723") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "84d669d0-b57a-4f8d-bf18-899719cf8fab") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75044342-ad22-4829-8aa8-efae5b0629f6") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30726265-5041-41ff-9f45-4d4052a2ab39") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "331a0baa-b1a7-4e34-8a65-a7543ab264cd") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "000608c9-5261-4210-be40-17b745e0656f") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2e9ee285-f778-417b-924e-2e6f249da333") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9cb2d0a8-0dc1-4a39-b94a-109d2629743a") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "31e20d34-82b9-4e72-a99e-b7d21e365231") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "24b8c65b-bf0e-4519-925e-188686da19d3") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41adf183-8a43-4bad-aa85-406ac5acdeee") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4242627e-d392-437c-968f-186d696ba5d6") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "639622a6-4add-4adf-9522-42a4e559d35c") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69edce0d-6553-4408-a08d-3a24108392e4") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "808fa0d6-46e6-432f-88d6-b4df2be1c1b2") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd26eed3-4084-4acd-addd-2875f976c062") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "701778c2-8be2-4958-bfee-492d61e10801") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "e7965833-7011-41d7-bff5-dbc5345de62c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (uuid "1e8d6e98-dd52-4af3-8c30-1fdcf53e6d43") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "ea5db54a-cba6-40f3-bfe6-a653d43edcea") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 72 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "138cb10b-cd75-46a7-89b3-c928c131408a") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 24 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "b2ab04f8-ed33-4553-bd6b-5fc61a691fd8") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 28 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "02b615e2-5289-4e3f-9741-b6ab85e8846b") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "559d2b3c-8937-4de3-8602-90b11787ea54") (at 159.36 81.2 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D35" (at 2.5 0.03 0) (layer "F.SilkS") (uuid "61ca305f-a682-4abc-80d7-36e118f3716c") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "9cb3c11e-d467-455d-a5e3-db48dc953a76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04449df8-e0b5-4b4c-9437-f3643e1d6f2a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f30e3b64-7f5e-4a83-881d-ab9aa06c6aab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "42830bba-3faf-4848-aedc-3504a9aa666f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "86acb952-c0ee-4382-9f08-e976b95fc927") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "03022e9b-e5fe-4add-abbd-45f4f2bbeb19") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a225518d-452a-41e0-9c5a-292acbca72c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "ElecSuper" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "402d9364-b722-4e73-a2bd-7ee05d0ce9c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PESD5V0S1BA-ES" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ff19b816-03d0-475d-a554-33aeafb43396") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a77e1fea-8683-4bf1-a313-44a4c2c5d80d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5ba74abd-a787-4f34-9ec1-5e32b0463f34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/6535bc33-56ae-4cc2-99e7-1448e1c62b75") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "959d6bc3-b390-4a0e-ab40-bff9ca0c8455") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5d4209d0-af0c-4243-a740-a3d6075c0b86") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d6e7196a-bbc6-4e0f-8017-e604d793b0a2") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f7c5f2d-1bee-46b2-9f15-f96e6df4e283") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91f37b26-68eb-49b1-9846-93089c2021ea") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "133d71f5-2860-454c-afbb-4fa7f32ca770") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "098ed546-a801-48d5-9133-89b2db56c2f4") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25ddfe76-d961-49b6-9c6f-989bacd2349d") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "42793702-6090-4e97-a13a-b2bd3aca7ee1") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9405a7b6-6513-47fd-a0f9-3a2857711c6a") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e8328fe-51bc-4f57-be23-a9435941722f") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fd108b4f-4f93-4b35-b828-9fe2a9090875") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b9fd18d-b041-44b5-a3c4-44f46e2872b0") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3fee1dee-9533-4624-934d-b4d0571f6f2d") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "314998c4-feff-4e59-a73f-3f08d49539a6") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3e61203-3f03-44b4-b1d5-6e1f7c35234c") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ff3036d-7f7a-41d5-a21c-2d1fdff864c6") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "cd7ccbc8-ae37-45a7-b72d-7fd3bc39768c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "cb067c13-7d92-4f6c-ab64-6f3dc27ed084") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 27 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "c5acfefa-1e2b-4947-8fbe-65ee88471f69") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "55ee3126-63d3-41df-9fd0-eabf0dc0523b") (at 156 114.3) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R50" (at 0.05 -1.4 0) (layer "F.SilkS") (uuid "a020c19b-4072-4e04-9edf-249f5a6fe64e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "14417dbc-0b9b-4db6-b52f-595b849f7b2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4a938327-009c-4658-9e6b-2eabdff1430f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b9dd6c3f-7f15-4689-8809-d24d17bf75c4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "48c0c763-5e5d-458d-a23d-d61aadbef440") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 14.2125 140.5125 90) (layer "F.Fab") (hide yes) (uuid "ba75d2a0-1cda-427f-8e83-6e7578667f76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0c8a712-5255-41d1-8433-73605506ed15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e9b5f4ef-b06a-43b9-bb24-b5be240aaff7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "18ad2c0d-b41e-4f18-9ff3-9a6dceeecffc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ad5e2c25-11ce-418b-a625-504979a5551c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dd744df0-36df-4d0f-9b33-1e3448c8d73f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c1cc9e24-9bf0-4a19-bba4-00bd2ca7a9e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6f5e15d3-8889-4380-8ba4-82af742cd899") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "033e16e1-75c7-4d6b-a4c1-01b4331dad4c") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e97d234c-60b6-46ad-a567-1f7f47affbe8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1fb8df0c-68d5-49a1-92b1-6e6eb4e7d659") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7b74a709-fbb9-45fb-8ba7-691b8dcba6f6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9c647245-6993-4cf4-a897-143283e15b05") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae6aaed0-2c55-4783-977d-e892fd441250") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a54ad79-0805-4301-8d46-17d091a5556e") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c6ea3aa-42b5-49ef-b12c-012bd83de6f4") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "edb36ba1-cd4f-43f6-94ba-e5a924bcf446") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8fa8ec61-91e9-4fba-ac1e-78cf7616405b") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "a41c9c16-9fc4-4e13-969a-4774b43f3fa9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 58 "TEMP1_READ") (pintype "passive") (uuid "f4167ec1-7b35-43da-bb8e-ab489e75f27f") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "ADC_REF") (pintype "passive") (uuid "96f8ae6a-606e-4838-be1e-f5860b975fa7") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "5aec8d5d-e224-449a-89b8-998fb8815e1a") (at 177.93 102.1375 -90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C2" (at -0.1375 1.73 -90) (layer "F.SilkS") (uuid "7d42cfb4-d2cf-4b6c-a3e2-1d90724a9de9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 50V" (at 0 1.75 -90) (layer "F.Fab") (uuid "5badebe4-4ebd-42ca-8246-14c7c5010a7e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7efaf297-99e4-47f9-9b1a-8c40680db39b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a334edad-f1bd-44c4-aae8-9d41bf3386a3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "19bdabe0-54fe-477d-9b7d-6604cede4088") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C89632" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a799ce1-a288-4ca3-8354-498824521913") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cb76268f-1503-48aa-bc34-fb4003fd9dd9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL31B106KBHNNNE" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5eef10c4-bdfd-4025-b37f-816de8031e6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "664a480f-2076-44d0-8221-f1f90f8389a1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f6971a59-3820-4417-b8ff-ac83804062ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/8360a5ee-94fd-4bef-ad9d-ec793099d31c") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53baf9a7-fc5e-43c8-aebb-a2f551b92f8c") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "54c6af87-c613-427a-8356-10f0e19e35ac") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "51fcd9c0-762f-4544-a918-15fa847d27ec") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "402964cb-9b15-4b07-afb8-05a7dfdb1ac4") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "85a948b2-41f7-4ba6-b47c-186605ee22f6") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cdd4667a-a457-442c-9024-07337f0acee7") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "931d26e3-ef7f-408c-9b75-aaba6d5496f4") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4caa9920-9a7a-4b08-8b8e-f30845eed89e") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "898ae568-8875-4f5c-9f19-08cd853fb606") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f724e51-972f-45c0-b951-05e63ff59d8a") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a750ff1-71f2-4925-91fe-8a51242de479") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8fae77c3-48a8-44d3-b303-0d6364466133") ) (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") (uuid "04fa9503-40a9-42c6-9066-8c364a5f0b0d") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 30 "Net-(JP1-B)") (pintype "passive") (uuid "0af97567-9955-4676-bf41-fdbc77124859") ) (pad "2" smd roundrect (at 1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "e44a1134-25f5-45b5-8eac-b6b7112d9dd4") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "5c7f9cd1-7e82-49fd-83ae-a52e39d9d004") (at 184.65 92.6125 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D5" (at 2.3875 0.025 0) (layer "F.SilkS") (uuid "1ff79f9e-25f9-4973-91e1-c80766e6b55f") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "ce3fae07-70bf-4d16-a43a-010ff619e303") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8a96e3fd-c735-4f5d-83bf-35524a15b8a3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9c8e344f-62d7-4120-abe9-92a32640df45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d32e2c57-9417-46d8-b0b5-b396f339b46a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a4ed5a1b-b8ff-43fd-b74a-919079bfb1ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "84b0560b-d4a1-4944-ba50-7855857bd778") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d1698e48-924a-4491-adc1-241df96543eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0c61783b-9af2-4f8d-9996-a68185a5a692") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f03c10b7-1247-4e4a-859c-ff7c59161d81") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2da6c803-6582-4b3a-9321-8e3860ea68e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd713e91-330a-4601-ab4d-d5f8e845b96f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6823870e-28cc-4ec1-9b5a-c8beb3288006") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69145bc2-1b87-44e4-a0df-4968387871a3") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "587bc6dd-c4ee-4d00-8ac8-d53a2c05c18f") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfbd628d-1234-4249-8b9d-d4005df4acff") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2eba9347-a358-408c-86e4-c8f7560a6918") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b438d554-69ee-4593-9274-d1019bcbf287") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ac22326-331d-476a-ad3a-6be8a45c0d1a") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4814abb0-ae4c-4d98-81a6-e4aa0558a77a") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2684067a-8647-4b1c-9b96-d3cf5ff7110b") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "821dd499-9e65-4d43-be64-3261ddfbabba") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b05150df-601e-4f45-8b81-adab1d17906b") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c53822c2-e0d3-402c-bbec-f50542f14dc9") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54407171-0431-4f75-bbf6-787fa6316ceb") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "05331fd6-6e91-4335-bc12-371df4c034e5") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "ae532b07-ba13-4cbb-ba5a-f77f7587a539") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 11 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (uuid "154943d8-9f2a-4ded-9ed0-1279c683ff71") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA" (layer "F.Cu") (uuid "5d97d096-994b-4e4d-91f2-4dca3f8e21c4") (at 163.43 93.4 -90) (descr "Diode SMA (DO-214AC)") (tags "Diode SMA (DO-214AC)") (property "Reference" "D1" (at 0 2.53 90) (layer "F.SilkS") (uuid "bf17b7cf-5b7d-4000-9894-30e8bf4b2508") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SM5819PL 1A 40V" (at 0 2.6 90) (layer "F.Fab") (uuid "045c4a23-5d9e-4cd0-a474-004295c8060f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f6735106-363a-4715-9903-9aba609519d1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ed05362f-1a20-4d92-9c50-20270e3efbdd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Schottky diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e40988b8-63e7-40d2-8b06-08ce8b313772") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C669023" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6723223d-d25d-4e20-9760-b9ae4c1a7b0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf7cb9d5-5991-4986-9ba3-f5932b0ee97d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "833-SM5819PL-TP" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "01ee37a0-944b-497e-8bb7-91bb2956cbd7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MCC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7bb68fd5-39b3-41ec-b0a5-cff9804a30f8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SM5819PL-TP" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43519184-c31a-4400-bca7-9def2036783a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7f64f426-f36e-4aab-a164-066a7e919140") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "081f5fa8-2851-4f4d-b9c7-a11734cbbab8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/feba9514-0d4e-45e7-8d97-6a49db19119e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -3.51 1.65) (end 2 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b84108e3-0f28-44a4-8e3a-42e9865357b5") ) (fp_line (start -3.51 -1.65) (end -3.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0022832a-126b-4e6a-9231-7746b713790a") ) (fp_line (start -3.51 -1.65) (end 2 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e946044-ec24-40a2-8f71-d72a1cf5cfca") ) (fp_line (start -3.5 1.75) (end -3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76253c13-5786-403a-8f68-b9dfe3004a15") ) (fp_line (start 3.5 1.75) (end -3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4ba6e85-4b6e-496b-b3a6-5dd75f5b0491") ) (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "880516c7-94ea-465c-847a-5fd31d4e1748") ) (fp_line (start 3.5 -1.75) (end 3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "26c61d36-cb8a-4209-af3a-2788055071cc") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7be49bb8-93eb-4024-a2ac-00b64bdf75be") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "60f1b4e3-55bd-42cb-a39c-cf4998bc42db") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "97f25d4b-1bd8-4d2b-b64f-1b090701532b") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c5ddd44-4082-46ed-a89d-d21096c773c2") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be2056cf-127b-4bd2-9c78-baea7d68ec54") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48b5172c-f727-4644-aa4f-5e0a6ac8adbf") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5edc15e2-8347-4270-9f38-b0cd2324ad6f") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9694713d-1ef3-4a56-98f5-eda5456125ad") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05743ece-b41c-4cb3-9ab1-8dd7c1e5a532") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05b80ff1-ffc2-4e8b-82f8-d6eb410d7c96") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "1d906edd-d9fd-4680-bfe1-f09985c81aae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 61 "VSYS") (pinfunction "K") (pintype "passive") (uuid "92d5aa02-e94a-4387-b213-104468897aa9") ) (pad "2" smd roundrect (at 2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 1 "+5V") (pinfunction "A") (pintype "passive") (uuid "d36dac70-97b1-4676-b830-9e01431e2f8f") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu") (uuid "64ff59bf-8e1b-494b-917a-544574e1fbeb") (at 174.28 79.2) (descr "Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "diode handsolder") (property "Reference" "D8" (at -2.78 0 0) (layer "F.SilkS") (uuid "c28e7deb-299c-435a-ae62-6162f4562c5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "30V TVS" (at 0 1.43 0) (layer "F.Fab") (uuid "c0ad65b9-b99a-4402-a93b-7e196c86d597") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2309d504-80b2-4c09-a04f-60198e064245") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b2866674-b7b4-4c1b-8eee-5ee3ae26d95d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "28f5546e-5c92-4e01-9b0b-84e493f04b11") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7473181" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "79d60a62-c655-4656-9bea-2a5f0c84d5b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c9db5e04-e3ac-4001-90a8-6669b0411c13") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62728d4e-5a21-4330-ab33-260b428f4676") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MSKSEMI" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f420b7ed-ec41-46d8-8def-ee4b31d2303a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PESD0603MS30-MS" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d646c62b-77e4-43a6-8935-87cc5f45a86c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b5894d57-ff4e-4beb-b9da-cb38ccad593b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "96f248c1-6c02-4f07-aca4-d76a5726fbad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/92cefb02-a7b5-4ee4-b8f8-ed72e07a4c29") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -1.66 -0.735) (end -1.66 0.735) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b1ebbd6c-d3c0-447c-87ad-3e1f4765f484") ) (fp_line (start -1.66 0.735) (end 0.8 0.735) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "18e1beb7-3ccf-4085-82fa-2a76395fa11e") ) (fp_line (start 0.8 -0.735) (end -1.66 -0.735) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f7ed7a46-3eb1-4bba-a1cd-a1d77118626b") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09945330-c313-4566-ae2e-752e83aa4099") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba629e7f-3746-45e9-9910-6841c0acade5") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ee27a322-2803-440e-b032-6dad094d555b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3d7379c1-6d83-4be5-af89-6e554a98ccae") ) (fp_line (start -0.8 -0.1) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f3896a9-4703-445a-b039-85f87c6b8058") ) (fp_line (start -0.8 0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "716a1b2f-076d-41d3-b4ea-8a28fa2f7a3f") ) (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b5f8019-6914-46b3-be16-cf58154cc64a") ) (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb060094-b1bc-409e-ab04-3a3823becdb1") ) (fp_line (start 0.8 0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd3db0ca-9fe0-4dc0-85b0-366f7b3f894a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f0397675-e105-40da-b0dc-649100acac21") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "783bd94a-ae11-4359-ac64-9d8de82739c0") ) (pad "2" smd roundrect (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "Net-(D8-A2)") (pinfunction "A2") (pintype "passive") (uuid "3ea20a3d-b0c0-4a1c-bcad-d153511341ab") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:RPi_Pico_PicoW_SMD_TH" (layer "F.Cu") (uuid "69e9e663-adb6-43be-bee7-e238a2b332b0") (at 130.7 91.5) (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x20 2.54mm double row") (property "Reference" "U4" (at 0 -2.1 0) (layer "F.SilkS") (uuid "1fbc06e7-0aec-4a6a-b168-285329f1ac2f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Pico" (at 0 2.159 0) (layer "F.Fab") (uuid "e91dc2a5-8bd9-4839-aada-6092ac9f93d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "62b37301-5713-4ca2-bed9-ca5ee1e0bc10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6e01c5e6-e93a-4db2-94d7-62a29efb022b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "31539d63-e2c4-44f3-8157-4a6fc501a2e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a88f99ca-d14e-43ca-a733-3d35a6a39968") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8bfca0c3-f247-4e12-935b-914381dc7bff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "RaspberryPi" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e87e6fd-e614-4e45-8603-07dc86e09e70") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "Pico W / Pico 2 W" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e6f33c6e-f4fe-4776-8ffb-3a4781a640d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b32cd41d-271d-4337-b771-14350057513e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "262795d3-daf9-4bb8-b4e1-d920fb7e102c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start -10.5 -25.5) (end -10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75ede6be-2efd-4906-b88b-79e6b5e3e207") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30ed34e0-d524-4457-b828-d0eae8fd1c80") ) (fp_line (start -10.5 -23.1) (end -10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7a87a0a9-0cb0-48c6-a2b0-6d793bb3a839") ) (fp_line (start -10.5 -22.833) (end -7.493 -22.833) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00c9a41b-5462-4302-a1ff-442a4ff2d57a") ) (fp_line (start -10.5 -20.5) (end -10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d380968a-2cbf-4b91-a39f-d7388b7e108a") ) (fp_line (start -10.5 -18) (end -10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ec094f9-2982-44ab-98a1-c961086e483d") ) (fp_line (start -10.5 -15.4) (end -10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a08788bf-1ccb-4c3e-b9d3-f61088cb2d0a") ) (fp_line (start -10.5 -12.9) (end -10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b916b151-d01e-446b-ad11-fda442c730ba") ) (fp_line (start -10.5 -10.4) (end -10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae223f36-e818-4b3b-af1c-9b3b1750663d") ) (fp_line (start -10.5 -7.8) (end -10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0d8750a-4940-4c62-b698-880327c121ff") ) (fp_line (start -10.5 -5.3) (end -10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ed2a1935-e554-4f4a-a069-f3ef0922724e") ) (fp_line (start -10.5 -2.7) (end -10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "70756116-1e66-414d-9af3-a9bb1734f5ef") ) (fp_line (start -10.5 -0.2) (end -10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "164af4ea-656e-4c0f-8a44-1643ae796012") ) (fp_line (start -10.5 2.3) (end -10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42eda101-01d4-4aa5-bfad-a6d7b083a12b") ) (fp_line (start -10.5 4.9) (end -10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6350bfa0-340e-4b69-8a1b-64a0382294bf") ) (fp_line (start -10.5 7.4) (end -10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f527a18a-1619-4edd-8338-9fe903c592b3") ) (fp_line (start -10.5 10) (end -10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "45d50212-fd3e-4c1c-81cc-e60664d206c4") ) (fp_line (start -10.5 12.5) (end -10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1adb9fc-babf-40f8-8c47-bef0fac1797c") ) (fp_line (start -10.5 15.1) (end -10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "243e068d-c9b1-4824-baba-13923e03ffa8") ) (fp_line (start -10.5 17.6) (end -10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d438d4f1-2961-4c1d-aeaf-dfc49045be8e") ) (fp_line (start -10.5 20.1) (end -10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfaaee71-e632-43b3-980a-099dc06dc06e") ) (fp_line (start -10.5 22.7) (end -10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "93f545d7-4641-478b-a946-9ab130eb1286") ) (fp_line (start -7.493 -22.833) (end -7.493 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ab443de0-eaa6-4e5a-a8d0-238d282797ec") ) (fp_line (start -7.3 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "df99e5ea-fdd8-4130-9c85-7376239100e9") ) (fp_line (start 10.5 -25.5) (end 10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e2ad9ae4-3e7c-487b-906f-ff458e7a1172") ) (fp_line (start 10.5 -23.1) (end 10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a270a1c-e8fe-4ce9-9aef-ad51b2d1288b") ) (fp_line (start 10.5 -20.5) (end 10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69fa815d-ac21-4445-8474-5f84bcdcac9b") ) (fp_line (start 10.5 -18) (end 10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "983604fe-4e8c-401c-bae1-73e0e8498c9e") ) (fp_line (start 10.5 -15.4) (end 10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ae5e011-1a91-4dd3-8e5a-30cb4e96e7a5") ) (fp_line (start 10.5 -12.9) (end 10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "98607aaf-6384-44d5-805d-aec2c9266dee") ) (fp_line (start 10.5 -10.4) (end 10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a821006d-d7fe-43e4-b5bf-4c1bbd3268f0") ) (fp_line (start 10.5 -7.8) (end 10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eeb35ff5-3771-452b-94a3-3ce311d375f8") ) (fp_line (start 10.5 -5.3) (end 10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2bbb8caa-6196-415f-ad17-cab568829acc") ) (fp_line (start 10.5 -2.7) (end 10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecadac60-9cb4-4cd4-9cf2-824340b05709") ) (fp_line (start 10.5 -0.2) (end 10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b9c81345-205a-467a-9fae-7e9254dcd126") ) (fp_line (start 10.5 2.3) (end 10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b7b073d8-fa51-4ddd-aa68-a75f00c09210") ) (fp_line (start 10.5 4.9) (end 10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c333750a-3565-4d60-bbd5-de8fb6ecfd84") ) (fp_line (start 10.5 7.4) (end 10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7014ad0-b5bf-4b7c-a14d-99211e0afc4c") ) (fp_line (start 10.5 10) (end 10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fca22a67-4662-4654-ab41-1e995ed201bf") ) (fp_line (start 10.5 12.5) (end 10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6def6bae-d99e-4313-9317-e90be3d39b9e") ) (fp_line (start 10.5 15.1) (end 10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "871aa26a-378e-40c1-a3ad-92e99e36a274") ) (fp_line (start 10.5 17.6) (end 10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d0959fa8-db11-4b0e-8562-cd4f865c73fb") ) (fp_line (start 10.5 20.1) (end 10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac3cb829-b801-4b54-924b-3b5a2d6ac2e3") ) (fp_line (start 10.5 22.7) (end 10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9cf8c814-2f29-4519-934b-938a7f938dfa") ) (fp_line (start 10.5 25.5) (end 7.3 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "23659a14-e37c-4d68-994e-ae20df789626") ) (fp_line (start -7.1 17) (end 7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "874c60de-df6e-4909-bda2-bdf6c2a2e34e") ) (fp_line (start -7.1 25.5) (end -7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "68c33dad-5e3a-4a9b-8da5-5898e7ef0dfe") ) (fp_line (start 7.1 17) (end 7.1 25.5) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "512688d3-c70c-4c9e-af1d-8638669d33c9") ) (fp_poly (pts (xy -1.5 -14.9) (xy -3.5 -14.9) (xy -3.5 -16.9) (xy -1.5 -16.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "5699e4d2-0ae3-4cf4-8d3f-392e92384531") ) (fp_poly (pts (xy -1.5 -12.4) (xy -3.5 -12.4) (xy -3.5 -14.4) (xy -1.5 -14.4) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "a0f31b9a-6cb2-49e5-bf91-cb5285a76657") ) (fp_poly (pts (xy -1.5 -9.9) (xy -3.5 -9.9) (xy -3.5 -11.9) (xy -1.5 -11.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "f6c3e791-3257-4e22-a090-c301752afeb1") ) (fp_poly (pts (xy 1.575 6.6) (xy -0.425 6.6) (xy -0.425 4.6) (xy 1.575 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "9e576556-5bc6-4b16-8409-e59a1cedd62e") ) (fp_poly (pts (xy 3.7 -20.2) (xy -3.7 -20.2) (xy -3.7 -24.9) (xy 3.7 -24.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "05823517-3b40-4495-ae2f-3b7d07e78e2e") ) (fp_poly (pts (xy 4.125 6.6) (xy 2.125 6.6) (xy 2.125 4.6) (xy 4.125 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "937a3640-d90f-4dc0-b38d-91e6aefa76c2") ) (fp_poly (pts (xy 6.65 6.6) (xy 4.65 6.6) (xy 4.65 4.6) (xy 6.65 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "dd7c670a-5bdd-402c-a8cd-8e8bec8299cd") ) (fp_line (start -11 -26) (end 11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "6ba53279-b100-4247-b90f-4c8dfceaadbe") ) (fp_line (start -11 26) (end -11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "6974da63-172c-4e70-942d-6d2dc1a8a9ea") ) (fp_line (start 11 -26) (end 11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "7a304eec-8b25-47ce-8362-7ef6981f77e9") ) (fp_line (start 11 26) (end -11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "b0fab9ba-dc74-4d6a-aeea-cfd94c64e8e5") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "387319a2-707b-40b5-81bd-18bd8c76d19a") ) (fp_line (start -10.5 -24.2) (end -9.2 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "a023e6af-56e4-43a2-bfc2-2581b43d18e9") ) (fp_line (start -10.5 25.5) (end -10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "28f48ca6-651d-414f-bf26-787f999e6b9f") ) (fp_line (start 10.5 -25.5) (end 10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "e57d7441-01e0-422b-a750-33d0874bf9c6") ) (fp_line (start 10.5 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "6585a4f9-2376-4b3c-b9e5-09d8fd34cdc6") ) (fp_text user "GND" (at -12.8 19.05 45) (layer "F.SilkS") (uuid "04cd0e4b-5310-4533-b148-57c6bd7ba3ee") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "RUN" (at 13 1.27 45) (layer "F.SilkS") (uuid "04e63bba-8155-4e64-814f-d9cf02f24480") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 -19.05 45) (layer "F.SilkS") (uuid "051508d1-6ad4-47ec-b1b8-3d6170e48590") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP7" (at -12.7 -1.3 45) (layer "F.SilkS") (uuid "07f1cb6c-291e-41e9-8f10-b6529ed47ff1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP15" (at -13.054 24.13 45) (layer "F.SilkS") (uuid "0857d82c-6abd-4e43-b088-f7987c6355a7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 19.05 45) (layer "F.SilkS") (uuid "09b72d0c-2e33-4083-a955-2afe79b52cca") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP18" (at 13.054 16.51 45) (layer "F.SilkS") (uuid "0e107bed-9f6e-4c3d-9787-bc45db42b61c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP8" (at -12.8 1.27 45) (layer "F.SilkS") (uuid "0e2f18b1-d5d8-4543-a960-a77f763f209a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP19" (at 13.054 13.97 45) (layer "F.SilkS") (uuid "0ecc0c54-4f05-4619-bf0e-181270fa12ee") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP21" (at 13.054 8.9 45) (layer "F.SilkS") (uuid "122e524a-934d-41cb-a853-19be5b9c147f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VSYS" (at 13.2 -21.59 45) (layer "F.SilkS") (uuid "13245622-ef86-4feb-bbdb-2b855a2166a8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP22" (at 13.054 3.81 45) (layer "F.SilkS") (uuid "169aa854-da52-472a-af8d-5d479a115073") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP28" (at 13.054 -9.144 45) (layer "F.SilkS") (uuid "19d4450d-dc97-491c-97b8-af3e8ca207eb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP10" (at -13.054 8.89 45) (layer "F.SilkS") (uuid "1c2281df-3929-42b3-b34d-98f3447d1e96") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 6.35 45) (layer "F.SilkS") (uuid "1dd7c85f-1d35-4ec6-bf4c-3b44a5ce5a65") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP4" (at -12.8 -11.43 45) (layer "F.SilkS") (uuid "2455f167-8bf1-4d88-9f16-7c15387d30d4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP2" (at -12.9 -16.51 45) (layer "F.SilkS") (uuid "2ad896bf-0f55-4e26-be1f-3993ecb3b00d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP1" (at -12.9 -21.6 45) (layer "F.SilkS") (uuid "2d86e878-93f4-40ba-88f0-07580a4f7b6f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3EN" (at 13.33 -17 45) (layer "F.SilkS") (uuid "3f795e8f-8ceb-4a24-aa38-b4334a25aa54") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VBUS" (at 13.3 -24.2 45) (layer "F.SilkS") (uuid "41bfe7aa-e151-40b4-b80d-7d16524c31a1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP16" (at 13.054 24.13 45) (layer "F.SilkS") (uuid "6a10b507-df30-478f-a4ab-6c683afc94eb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 6.35 45) (layer "F.SilkS") (uuid "7488551e-1055-4706-8533-fbbadb543f47") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP27" (at 13.054 -3.8 45) (layer "F.SilkS") (uuid "7830dcc7-c79c-4891-afef-79ae90b7cfe8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "AGND" (at 13.054 -6.35 45) (layer "F.SilkS") (uuid "791de6c3-de38-4efd-8cd1-efb38f235c4f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP20" (at 13.054 11.43 45) (layer "F.SilkS") (uuid "892f5736-f1e5-4bc1-80b8-54f6c111fc2b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP17" (at 13.054 21.59 45) (layer "F.SilkS") (uuid "96a63f55-d6ef-42d5-8bd5-9f91afe36ec5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP26" (at 13.054 -1.27 45) (layer "F.SilkS") (uuid "9e349ae7-5513-46f1-a78b-bb2934f96b91") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -19.05 45) (layer "F.SilkS") (uuid "a2ff1c40-c352-4fe0-8edf-1e9628ead9f1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3" (at 12.9 -13.9 45) (layer "F.SilkS") (uuid "b1068996-ad4d-4b90-9329-afafe0da327a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP0" (at -12.8 -24.13 45) (layer "F.SilkS") (uuid "bf14a8ce-8abe-4a63-8991-0c096a9cbffc") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VREF" (at 13.0675 -11.7425 45) (layer "F.SilkS") (uuid "ce87e9fb-7bbd-4e0b-b5d0-5948e2d9e6f5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -6.35 45) (layer "F.SilkS") (uuid "da5fca0f-b9c9-4fd4-bb7f-9fac1b0ef779") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP13" (at -13.054 16.8325 45) (layer "F.SilkS") (uuid "db5f07a7-1475-411e-b5be-8bbdb5b6bd5c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP14" (at -13.1 21.59 45) (layer "F.SilkS") (uuid "e1464ff0-8993-42d1-9389-bee88ac705fd") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP3" (at -12.8 -13.97 45) (layer "F.SilkS") (uuid "e425db35-20da-47a2-a3aa-6c63aca9b75e") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP12" (at -13.2 14.2925 45) (layer "F.SilkS") (uuid "e513f458-4e59-442b-a9c1-578d4c4bab19") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP5" (at -12.8 -8.89 45) (layer "F.SilkS") (uuid "eb25294a-1a1e-4d61-87a3-55841c71b2f7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP6" (at -12.8 -3.81 45) (layer "F.SilkS") (uuid "ebae6901-1e24-4342-97a3-ef96a7c5af35") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP11" (at -13.2 11.7525 45) (layer "F.SilkS") (uuid "f78c2474-1b81-416a-869f-74dd0747345c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP9" (at -12.8 3.81 45) (layer "F.SilkS") (uuid "fb2ec5b8-0817-410c-a267-dba0e59693f8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2 0) (layer "Cmts.User") (uuid "a5f0598f-bcf1-41ba-a4b5-15a34223cb9a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "303f1cb4-bb69-438d-b06c-698a079a3000") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole oval (at -2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "b01e21c2-2107-416a-a6f3-95c7c2ffaa4d") ) (pad "" np_thru_hole oval (at -2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "F&B.Cu" "*.Mask") (uuid "a8a961ae-0b96-4dec-9578-26e99e71f064") ) (pad "" np_thru_hole oval (at 0.5841 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "6ee89589-5bf6-47f1-8813-3dfaffabb40e") ) (pad "" np_thru_hole oval (at 2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (uuid "82575cc1-5403-4bd9-9d6a-41802bf1f8e7") ) (pad "" np_thru_hole oval (at 2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (uuid "b1089335-f62f-455c-bd12-688e3e6f82c3") ) (pad "" np_thru_hole oval (at 3.1241 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "76fbeac9-28eb-48a2-b665-807f7e81d6e9") ) (pad "" np_thru_hole oval (at 5.6641 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "54ad38b7-7725-4576-9a96-95c02f91197b") ) (pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 16 "TX") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "afe118a9-69d9-473d-9f39-2a49267999b5") ) (pad "1" smd rect (at -8.89 -24.13) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 16 "TX") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "acfdca3b-702a-41df-a961-6e2903b641f4") ) (pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 17 "RX") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "fd506c65-617b-4da6-97c5-cc694920446e") ) (pad "2" smd rect (at -8.89 -21.59) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 17 "RX") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "a82aafa1-c732-4e43-b3ff-33b6ebc2efac") ) (pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d14437f5-58cb-41b1-b836-b4a1739a3787") ) (pad "3" smd rect (at -8.89 -19.05) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "fbb36cc3-3d95-4f47-94b3-653f40d2c102") ) (pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 14 "SDA") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "3e095887-6383-4974-81af-bba6dd523ebc") ) (pad "4" smd rect (at -8.89 -16.51) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 14 "SDA") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "54c46b0c-f741-4904-bd66-de12dd1a2f25") ) (pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 15 "SCL") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "648eedbf-d63b-47b3-92ed-3190a2f79865") ) (pad "5" smd rect (at -8.89 -13.97) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 15 "SCL") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "9dc5a066-5f78-4b56-9a00-6cdc1d6e3761") ) (pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 79 "unconnected-(U4-GPIO4-Pad6)_1") (pinfunction "GPIO4") (pintype "bidirectional+no_connect") (uuid "20e2cd93-fc23-44e6-963f-1d0a1054a0ef") ) (pad "6" smd rect (at -8.89 -11.43) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 78 "unconnected-(U4-GPIO4-Pad6)") (pinfunction "GPIO4") (pintype "bidirectional+no_connect") (uuid "209fd407-6b20-4d54-804e-2041a2a5e04b") ) (pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 80 "unconnected-(U4-GPIO5-Pad7)") (pinfunction "GPIO5") (pintype "bidirectional+no_connect") (uuid "3a2c3267-bf8d-4996-8efc-31c7c6813152") ) (pad "7" smd rect (at -8.89 -8.89) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 81 "unconnected-(U4-GPIO5-Pad7)_1") (pinfunction "GPIO5") (pintype "bidirectional+no_connect") (uuid "4a51a685-3d0b-49f3-a097-23e25bc14bf1") ) (pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "ad6a09fe-bfc7-4641-8149-7bc00c98f380") ) (pad "8" smd rect (at -8.89 -6.35) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "a28b9abb-2d2e-4401-b96b-af69a09b6fc5") ) (pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 47 "unconnected-(U4-GPIO6-Pad9)") (pinfunction "GPIO6") (pintype "bidirectional+no_connect") (uuid "68f173db-5ae8-4de4-b491-e7fef0c7b0a9") ) (pad "9" smd rect (at -8.89 -3.81) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 60 "unconnected-(U4-GPIO6-Pad9)_1") (pinfunction "GPIO6") (pintype "bidirectional+no_connect") (uuid "b46e8959-5d93-4272-bd34-e7ac94991895") ) (pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 69 "unconnected-(U4-GPIO7-Pad10)_1") (pinfunction "GPIO7") (pintype "bidirectional+no_connect") (uuid "fa53462e-c4d2-4227-8795-f2292c21999d") ) (pad "10" smd rect (at -8.89 -1.27) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 40 "unconnected-(U4-GPIO7-Pad10)") (pinfunction "GPIO7") (pintype "bidirectional+no_connect") (uuid "68ec0995-80e0-4a3c-ad31-789c5b776af5") ) (pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 52 "unconnected-(U4-GPIO8-Pad11)_1") (pinfunction "GPIO8") (pintype "bidirectional+no_connect") (uuid "82962c49-1cc3-420d-816c-fbf6feab051b") ) (pad "11" smd rect (at -8.89 1.27) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 4 "unconnected-(U4-GPIO8-Pad11)") (pinfunction "GPIO8") (pintype "bidirectional+no_connect") (uuid "03f68ba7-ae03-4bcc-97ba-5021d6b3c767") ) (pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 18 "unconnected-(U4-GPIO9-Pad12)") (pinfunction "GPIO9") (pintype "bidirectional+no_connect") (uuid "48c72724-ec29-46d7-acb4-4fe755f238a3") ) (pad "12" smd rect (at -8.89 3.81) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 49 "unconnected-(U4-GPIO9-Pad12)_1") (pinfunction "GPIO9") (pintype "bidirectional+no_connect") (uuid "72c6bb9e-4386-47c3-954c-9edd547edd53") ) (pad "13" thru_hole rect (at -8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 20 "unconnected-(U4-GND-Pad13)") (pinfunction "GND") (pintype "power_in+no_connect") (uuid "a1680c4b-53ff-4ddd-9d7e-c7f932e413db") ) (pad "13" smd rect (at -8.89 6.35) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 68 "unconnected-(U4-GND-Pad13)_1") (pinfunction "GND") (pintype "power_in+no_connect") (uuid "dba30600-aeb9-4f54-a3c9-6ca89766a124") ) (pad "14" thru_hole oval (at -8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 48 "unconnected-(U4-GPIO10-Pad14)_1") (pinfunction "GPIO10") (pintype "bidirectional+no_connect") (uuid "696a2f13-38b1-41fb-b700-6c81676af8f9") ) (pad "14" smd rect (at -8.89 8.89) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 19 "unconnected-(U4-GPIO10-Pad14)") (pinfunction "GPIO10") (pintype "bidirectional+no_connect") (uuid "68aace09-d697-4de1-abc2-571e092a1da3") ) (pad "15" thru_hole oval (at -8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 9 "unconnected-(U4-GPIO11-Pad15)") (pinfunction "GPIO11") (pintype "bidirectional+no_connect") (uuid "07d711c8-b6b4-42f7-aebe-2f05bf9d7299") ) (pad "15" smd rect (at -8.89 11.43) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 66 "unconnected-(U4-GPIO11-Pad15)_1") (pinfunction "GPIO11") (pintype "bidirectional+no_connect") (uuid "c7168aa8-99d2-4a19-9cd3-7f3974d81454") ) (pad "16" thru_hole oval (at -8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 65 "unconnected-(U4-GPIO12-Pad16)_1") (pinfunction "GPIO12") (pintype "bidirectional+no_connect") (uuid "c5758509-3174-4889-bd07-84ba5d9e83a9") ) (pad "16" smd rect (at -8.89 13.97) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 22 "unconnected-(U4-GPIO12-Pad16)") (pinfunction "GPIO12") (pintype "bidirectional+no_connect") (uuid "b6aa9121-061c-42fc-8ad2-1db8b2d5709b") ) (pad "17" thru_hole oval (at -8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 67 "unconnected-(U4-GPIO13-Pad17)_1") (pinfunction "GPIO13") (pintype "bidirectional+no_connect") (uuid "ce2d8d74-8841-458c-a33a-2b17344a8540") ) (pad "17" smd rect (at -8.89 16.51) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 21 "unconnected-(U4-GPIO13-Pad17)") (pinfunction "GPIO13") (pintype "bidirectional+no_connect") (uuid "a1aa7ad3-30a1-4c00-8fe6-82d299beed76") ) (pad "18" thru_hole rect (at -8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d689ddff-1d1d-44f4-89cf-44ac0f1ff5c5") ) (pad "18" smd rect (at -8.89 19.05) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "882a2d9a-359f-47d5-a66c-19024afd24f0") ) (pad "19" thru_hole oval (at -8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 42 "unconnected-(U4-GPIO14-Pad19)") (pinfunction "GPIO14") (pintype "bidirectional+no_connect") (uuid "22419db3-986b-4143-bce1-d5df7075f715") ) (pad "19" smd rect (at -8.89 21.59) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 41 "unconnected-(U4-GPIO14-Pad19)_1") (pinfunction "GPIO14") (pintype "bidirectional+no_connect") (uuid "c8307212-89f4-4143-a9f6-be94975f569f") ) (pad "20" thru_hole oval (at -8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 13 "DQ") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "c6df602f-f194-474f-b3d9-7c1bb4407a87") ) (pad "20" smd rect (at -8.89 24.13) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 13 "DQ") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "7563c861-8f1e-4cfc-9095-7e6cfe3d37bd") ) (pad "21" thru_hole oval (at 8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 54 "unconnected-(U4-GPIO16-Pad21)_1") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (uuid "b3bd3c6d-da3d-4dfa-9e1e-72b87e031b61") ) (pad "21" smd rect (at 8.89 24.13) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 51 "unconnected-(U4-GPIO16-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (uuid "7fe1e54d-9fe9-4139-b5d5-004b8152cf77") ) (pad "22" thru_hole oval (at 8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 34 "unconnected-(U4-GPIO17-Pad22)_1") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (uuid "c67b86ce-86c9-4c70-8638-39209349b756") ) (pad "22" smd rect (at 8.89 21.59) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 29 "unconnected-(U4-GPIO17-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (uuid "a534705a-2065-4c0e-91be-8be65211bcda") ) (pad "23" thru_hole rect (at 8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "961e01d8-f4b2-497e-a3c9-5036e4e061c9") ) (pad "23" smd rect (at 8.89 19.05) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "6e7ce9f3-b87d-4e7e-8440-7980fb948dbf") ) (pad "24" thru_hole oval (at 8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 5 "FAN1_TACHO_READ") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "2ef817e2-c1d6-4e00-bbd5-9fb4c237979e") ) (pad "24" smd rect (at 8.89 16.51) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 5 "FAN1_TACHO_READ") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "9a7235b8-5e28-4f50-8583-f6fee63ac52e") ) (pad "25" thru_hole oval (at 8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 50 "FAN2_TACHO_READ") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "dd5e4f02-b2f5-42b3-bf93-30f0704a0969") ) (pad "25" smd rect (at 8.89 13.97) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 50 "FAN2_TACHO_READ") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "217ef7cf-79c7-48ab-ad9f-42957d0e0007") ) (pad "26" thru_hole oval (at 8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 36 "/PWM2A") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "47dc707d-3fe2-4254-9277-c24d40f2c6d8") ) (pad "26" smd rect (at 8.89 11.43) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 36 "/PWM2A") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "d93fa0b7-dfc7-4110-9c72-ebaebc18c931") ) (pad "27" thru_hole oval (at 8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 37 "/PWM2B") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "81661d46-c1c8-40e7-bbf2-7cf9a65378ef") ) (pad "27" smd rect (at 8.89 8.89) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 37 "/PWM2B") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "08a425ce-4f90-4bae-bd46-c9cd087a51c3") ) (pad "28" thru_hole rect (at 8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "fd4af6e4-0a4f-4dd2-a2a6-e0b9802c5515") ) (pad "28" smd rect (at 8.89 6.35) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "41ee75e1-ae37-480c-85b0-4825297d5017") ) (pad "29" thru_hole oval (at 8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 45 "unconnected-(U4-GPIO22-Pad29)_1") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (uuid "f1616fea-fda5-4897-a142-7114af46faab") ) (pad "29" smd rect (at 8.89 3.81) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 25 "unconnected-(U4-GPIO22-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (uuid "d0ae2edd-f12c-4ed9-953a-2b63cf950a2f") ) (pad "30" thru_hole oval (at 8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 32 "RESET") (pinfunction "RUN") (pintype "input") (uuid "4b0e631a-88a2-4429-a718-8e1ba17cc3e6") ) (pad "30" smd rect (at 8.89 1.27) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 32 "RESET") (pinfunction "RUN") (pintype "input") (uuid "d836d29f-d067-4c08-8b41-e439d55897be") ) (pad "31" thru_hole oval (at 8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 26 "unconnected-(U4-GPIO26_ADC0-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (uuid "3d4c66cf-5fa6-469a-96d6-9ec0ffaa97e9") ) (pad "31" smd rect (at 8.89 -1.27) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 43 "unconnected-(U4-GPIO26_ADC0-Pad31)_1") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (uuid "e240f1aa-e7df-4e79-9029-969bf2f6af26") ) (pad "32" thru_hole oval (at 8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 58 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "2dcd2521-e8c6-4d78-a715-475d2c8c3fe7") ) (pad "32" smd rect (at 8.89 -3.81) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 58 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "153a260b-dc59-4164-99c5-68af3efe4c82") ) (pad "33" thru_hole rect (at 8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 57 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "12fcca8a-dc35-43b3-9fdd-c8a5c0c62f27") ) (pad "33" smd rect (at 8.89 -6.35) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 57 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "41ceebbf-68bf-49a6-967b-97776410785b") ) (pad "34" thru_hole oval (at 8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 59 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "19702b34-a254-46e8-bede-0a73c146855d") ) (pad "34" smd rect (at 8.89 -8.89) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 59 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "17a27ef9-7e00-49e3-b4ce-07f3a39d16d5") ) (pad "35" thru_hole oval (at 8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 53 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "92cfc6bb-b455-4149-ad18-edbf30360a52") ) (pad "35" smd rect (at 8.89 -11.43) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 53 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "e05078a4-7898-437e-acdc-394f0adcfa46") ) (pad "36" thru_hole oval (at 8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "a312f469-8766-4067-b19d-1fc1b802a738") ) (pad "36" smd rect (at 8.89 -13.97) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "22465265-6a7f-4922-b62b-97d4bda7ee61") ) (pad "37" thru_hole oval (at 8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 62 "unconnected-(U4-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "8122b2e9-0a6f-43c1-a3db-5c10458f3c92") ) (pad "37" smd rect (at 8.89 -16.51) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 44 "unconnected-(U4-3V3_EN-Pad37)_1") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "ee7f9bf1-ce18-45d3-acec-805d8f6b94df") ) (pad "38" thru_hole rect (at 8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "c2ab961f-0543-44e1-a174-f83c65d6b72c") ) (pad "38" smd rect (at 8.89 -19.05) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "f3aa69dc-066a-4c8d-8ff7-18887420e8a0") ) (pad "39" thru_hole oval (at 8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 61 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "a4450a62-b3c8-4db5-9c5b-1ab37a7e95f6") ) (pad "39" smd rect (at 8.89 -21.59) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 61 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "c2adc975-483f-4a73-99aa-6773314f948e") ) (pad "40" thru_hole oval (at 8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 55 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "fce80962-7717-4dc5-9fd9-7abea47c3404") ) (pad "40" smd rect (at 8.89 -24.13) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 55 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "183de28f-4005-459f-bc18-30d684359bcc") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "6be87dba-b1c4-47bc-a328-c3cb6b6b5275") (at 152.68 94.3125 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R55" (at 3.1 -0.1 90) (layer "F.SilkS") (uuid "4e3f2178-9587-469b-978f-4681dfc62421") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 90) (layer "F.Fab") (uuid "55252fc4-02b7-4831-845c-241af0614fa9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "83911c08-0230-488c-b6ef-7d75a400c68a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8dbd5130-33d1-42af-9108-b8b1879db0b4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bdcfce60-dbd9-4a3a-9213-0efc184b0b8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 127.8 234.8 90) (layer "F.Fab") (hide yes) (uuid "25f715c0-f78c-4dc4-8166-4a207065c57f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1dd2dd58-2279-46ae-bfa8-e341d8016991") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a73c470d-6120-4f6a-9824-eccc586dc0df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "UNI-ROYAL" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "355a13ff-0e17-470f-98a5-fb62826605b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cc77d029-797f-4da0-b63b-c0f15b1ae09e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17c17a28-9c09-47d2-b669-5f79d16c095d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "41a27d59-f484-48dd-822b-e80fb6e6db80") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/72e0c837-1ab2-470c-91ad-f34c0c878b4f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42bf9a4d-d3ad-4775-bf11-b569dd567e64") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5fbe32ee-de28-442e-a9f6-6083efc1080e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a645e51f-bacc-444a-871f-9657f511ed1a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45b9e6e8-6fa7-488f-b369-90964260e2de") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12407aaf-7a1f-4ce4-9928-d1c901f80198") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dbd8e0ff-fafd-4c21-b1a5-224f3c8df513") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eb72ec3d-f62f-43a3-b683-f7e73a5b48ba") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c342ec6f-9094-4167-a022-7cc43a9e2102") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "40e08271-9d49-435d-b805-6b4136fb216b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5d952fe8-127c-4f22-bb1f-63e30c1df7c6") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b9e5eb76-55f2-4f67-bd45-cd82db974b80") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "a47bd6e4-8f9b-4da6-b7ce-8ab30291f531") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pintype "passive") (uuid "c738f93e-854c-4b5d-b9bd-819216fa3fa5") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "6f9935bd-e6ff-4499-95e0-bcff7e1cbc7f") (at 115.6 75.95 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D13" (at -3.2 0 90) (layer "F.SilkS") (uuid "00b54620-46c9-4999-ab3a-643e0c3f97ac") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "798373d4-4721-4175-aba8-5d633d18aeda") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48f53bb4-078b-48a8-9d90-7bb4eeec1c50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77a09b05-92f2-48df-97f9-c5a01ea3bdba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3ca371a-bf2d-4ca4-b603-4daef0b54837") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09ed4ecc-29dc-46ef-855a-301c16377ddc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f309e10f-0b76-40a8-bb5c-5cb7d3b7c647") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87f9c5fa-586d-4545-8820-a1cca12e4662") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b1d0e8de-feba-4bcc-acf2-5a7e5b67a528") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ec474b4a-b0e0-42a0-a338-f2b2733e5430") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e8ae5a24-6f7e-4c3a-9927-c080e144d8bc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8b49e278-dfc0-4d00-bb4d-5284fbb79c84") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/543211f1-d18f-43bc-a156-ce9568f63336") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "956a9b80-b0d4-48aa-86cf-92f00259d5db") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae123d53-9f7b-451f-b30b-c1576b652f65") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a8c23c7-d622-41d7-98f0-324270f27de1") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6589a076-f753-4715-9333-47f1384c1005") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "357593e1-e9c5-401a-a9dd-989e1accf1fc") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f6df92e-160b-4d3b-a7c7-af6be8811c1b") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e752923f-404a-4753-87ea-36bb11d7039c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea3f3e81-5b04-4035-8ef5-59cfd01e1ee8") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e993f6fd-3ca5-42bb-b83b-1a5431bae73c") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b45fa20-8378-4fa6-b437-048aa1087841") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa8024e6-490d-4505-b02a-a8a4ac0aebdf") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe569299-78c0-4217-96cf-8922cef7a20a") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "61742e09-1989-4dd6-9f5c-6e85b8e152ea") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9abaffb8-7691-43d0-be68-d775257ef9e0") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a32789f-4150-4c83-8a2c-315b36e38f26") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "491a8184-4b36-4045-9bf2-4136672f02c9") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e8ba20d-1bfd-4d1e-b6f4-99f01f8689a1") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "c3a83298-581f-4fca-83d7-01d7e245fd95") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "0c1bd131-06e5-4723-a28e-4b987c91d0a3") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 14 "SDA") (pinfunction "A2") (pintype "passive") (uuid "ecb9f065-55ac-4bad-9db3-ab6e24688105") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "7185ec7a-5979-4090-8ed6-13e8ebfd50b5") (at 150.4852 76.2961) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D31" (at -3.4 2.3 0) (layer "F.SilkS") (uuid "27553798-724f-4ebe-a29f-2993c8de7768") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "91739e1e-ba32-49f2-b574-279446fc6c3b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aad79833-59ff-45ac-939b-4c040983fdb6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ba755b76-ffd9-4938-82ac-e6d379d90e4e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "274b3e64-01ee-45de-bd3d-9116d137b1c3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 76.5 248.1 90) (layer "F.Fab") (hide yes) (uuid "2486bab4-5c37-49ce-a97e-15ee8fb1eb07") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 76.5 248.1 90) (layer "F.Fab") (hide yes) (uuid "6045abc7-61d7-4b13-9471-8d54386fe47b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 76.5 248.1 90) (layer "F.Fab") (hide yes) (uuid "9fe51aab-76b5-4397-af3e-0d4ddbc66501") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6851d3a9-f9d8-40f3-87ae-179f6a4f2b8a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "577eb87f-9328-4086-b477-69d87a3b25e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MDD(Microdiode Semiconductor)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "501d0cf3-f1e6-4c00-a302-226b4afac361") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e596cf4-3e4c-4c91-aa00-6b0ccb891708") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b0844e5-932b-48f7-a3b0-d34c86a06ead") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "93324b78-73c5-408a-94cf-25a7b676b593") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0c8546c0-410a-4407-8985-4942e4cb7d01") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0bc023af-d299-469e-9be3-539317c32b1a") ) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a765d08f-d558-49eb-b904-7b7f382f1464") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3106e21a-9a38-46ae-a7bd-f112b1281b3b") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce5dbef4-7975-4b13-9b4e-d589a9a0e642") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3899d188-670c-4f67-9a2f-c3802699e144") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfc00936-f874-428b-ae32-6c217c82fd03") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88a5202a-1e8f-4d6f-9432-86aaa8e5ae85") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a797d2b-e666-4642-adf5-28ee8f5ff4c9") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0650ca86-ce1f-42cc-b8b9-601cb68fa95a") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c4dc8adc-9ba4-4696-a385-dc07954f557d") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f8258e7-1627-4df0-a931-dac682ab7d44") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1596535-7366-4b3b-a8c5-e0ca01f78f54") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c006f76-2cad-4167-9539-7d7a1410235b") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c70fbc9-8730-41d6-b982-c3ebf4773b8c") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "abe50688-a78a-4a51-8092-6d9f56b7e3b8") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b31c7a7-1d56-46f8-baa3-299a0aa78246") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "d2a42588-8c3c-49f0-8365-bedb634a5538") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 72 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "c2fe3cef-30c3-4ca2-8219-229d360660e3") ) (pad "2" smd roundrect (at 2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "fc193f01-85df-4764-86f5-57858f108317") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (layer "F.Cu") (uuid "732e2973-4921-4615-b912-28493839045a") (at 148.98 94.8625 -90) (descr "TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "TSSOP SO") (property "Reference" "U1" (at 4.8375 -1.95 90) (layer "F.SilkS") (uuid "2925308f-6789-45ac-86a9-f49a24990c25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SN74AHCT126" (at 0 3.45 90) (layer "F.Fab") (uuid "cbb1b87a-8958-4eb4-83ec-3df7989d5b71") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a1b98204-98d2-417b-99e9-2dfa39d0c958") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "(AHCT125 = C36365, AHCT126 = C155177)" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ffe25869-1fce-4782-b884-f70f8c0c7b98") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e12fa9a-edf9-4a91-b6b0-412f0ce33b50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C155177" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "062a3637-c2ed-4b05-889a-9f878864d078") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "80fbf2b7-e1b4-40d6-a334-907ffe5e01f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "35105bcf-a7f7-4228-a74c-36363c845271") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "TI" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7fded235-9b0d-4106-b9cd-d7b4658a3a16") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SN74AHCT126PWR" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2e37d88-8617-47be-b8bd-42b8d1c12118") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a20b44bb-9d59-43c8-93eb-ab9bfbccac4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "88cada39-f900-4420-b8c2-e9aa83c4c901") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 2.61) (end -2.2 2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "120cf577-0839-4326-9fd0-1c1789980768") ) (fp_line (start 0 2.61) (end 2.2 2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1b57c5c-097d-419e-9641-d8d63311de08") ) (fp_line (start 0 -2.61) (end -2.2 -2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4bb8b346-45c2-4d1d-b208-122013d0ea1d") ) (fp_line (start 0 -2.61) (end 2.2 -2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1beb279a-a5f5-452f-8033-e09b97c4bd07") ) (fp_poly (pts (xy -2.9 -2.41) (xy -3.14 -2.74) (xy -2.66 -2.74) (xy -2.9 -2.41) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c9847478-39dd-4a68-b9d0-3f76e3f23614") ) (fp_line (start -3.85 2.75) (end 3.85 2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c3c4cd41-d032-4518-9d12-aec0f39d55c7") ) (fp_line (start 3.85 2.75) (end 3.85 -2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "28151d8b-146a-470b-9dc2-b29a7994639d") ) (fp_line (start -3.85 -2.75) (end -3.85 2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d0523a9e-1a5c-4b4f-aef7-4bab35b7db4d") ) (fp_line (start 3.85 -2.75) (end -3.85 -2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a2785d4b-760e-4b19-94d2-7b5d76ac3205") ) (fp_line (start -2.2 2.5) (end -2.2 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ffc54a40-a595-41ff-9696-fd5db6e1476d") ) (fp_line (start 2.2 2.5) (end -2.2 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "99c61692-3fe7-4857-8b2f-6affcc025355") ) (fp_line (start -2.2 -1.5) (end -1.2 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d904cb92-a52d-4480-bcf4-4ea546e70258") ) (fp_line (start -1.2 -2.5) (end 2.2 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd218fcf-ca6e-4530-bf21-9dfad9a05508") ) (fp_line (start 2.2 -2.5) (end 2.2 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c32ae23-7f4f-4dcf-9eba-9291f21bed85") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "5bd2e4fb-4051-4497-9635-3ee813aa1ae5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.8625 -1.95 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pinfunction "~{1OE}") (pintype "input") (uuid "b213b7ba-b1e2-4a25-9aba-c070f791490e") ) (pad "2" smd roundrect (at -2.8625 -1.3 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 36 "/PWM2A") (pinfunction "1A") (pintype "input") (uuid "c55949bd-52fd-4257-88a0-85f59806cc4a") ) (pad "3" smd roundrect (at -2.8625 -0.65 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "FAN1_PWM_GEN") (pinfunction "1Y") (pintype "output") (uuid "452f18ce-f671-4419-b258-e55955f0dd3b") ) (pad "4" smd roundrect (at -2.8625 0 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pinfunction "~{2OE}") (pintype "input") (uuid "aa49762b-0fb9-4bc0-bc76-722fd1f9a977") ) (pad "5" smd roundrect (at -2.8625 0.65 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 37 "/PWM2B") (pinfunction "2A") (pintype "input") (uuid "5a487058-3b84-4e53-9e91-38573059aed4") ) (pad "6" smd roundrect (at -2.8625 1.3 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "FAN2_PWM_GEN") (pinfunction "2Y") (pintype "output") (uuid "0688290d-cdbd-4758-af6d-bc0576427bb8") ) (pad "7" smd roundrect (at -2.8625 1.95 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "b3f7a424-a2b6-4ff6-ba39-008e7d2bb671") ) (pad "8" smd roundrect (at 2.8625 1.95 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 39 "unconnected-(U1-3Y-Pad8)") (pinfunction "3Y") (pintype "output+no_connect") (uuid "8e684bba-57cb-4f64-85cc-5240b021dedd") ) (pad "9" smd roundrect (at 2.8625 1.3 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "3A") (pintype "input") (uuid "afc20645-ce06-45d4-88d7-16554c82a801") ) (pad "10" smd roundrect (at 2.8625 0.65 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pinfunction "~{3OE}") (pintype "input") (uuid "50d0c0ce-b2c5-46e1-a905-c46d2fa07aba") ) (pad "11" smd roundrect (at 2.8625 0 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 31 "unconnected-(U1-4Y-Pad11)") (pinfunction "4Y") (pintype "output+no_connect") (uuid "58f3d257-e2aa-4e51-aa81-26ec101fc378") ) (pad "12" smd roundrect (at 2.8625 -0.65 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "4A") (pintype "input") (uuid "f6921628-2b34-408c-a977-de5af0992d9c") ) (pad "13" smd roundrect (at 2.8625 -1.3 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pinfunction "~{4OE}") (pintype "input") (uuid "d341cada-c642-4084-97a0-307420513102") ) (pad "14" smd roundrect (at 2.8625 -1.95 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (uuid "5ace1ac5-c9d6-44d0-b102-bf65103d5c9b") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-14_4.4x5mm_P0.65mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "77719df2-8f84-4826-86a8-648c59a1aadb") (at 158.9911 105.1318) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "U6" (at 2.5 0 90) (layer "F.SilkS") (uuid "a22651b0-b4d3-4342-8ef5-c44aaa20a1b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 2.4 0) (layer "F.Fab") (uuid "9a247972-0a5f-4786-aab0-b76158edb278") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "faff3033-a943-4c19-998c-0c58672393ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "005f5240-aa70-4fc6-b091-5ff34b6b64e2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a0e8285b-66e2-4334-9096-6f0ada25a3a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C143326" (at 141.575 16.575 90) (layer "F.Fab") (hide yes) (uuid "2245ab7c-6186-4956-bc9b-ade32859ec0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46bc0356-87a5-4acd-bcd0-fd174e47c0f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f31b5bcb-8ed8-4848-8b2e-ba8287bf78cc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MAXIM" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "833c6818-ef23-46f8-8eea-669547cf3ce4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "LM4040AIM3-3.0+T" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a0c55025-60da-4585-86f7-d5ded7038490") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e99c291-b235-4b0b-9a02-dd058372e632") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "70af28bf-a0c7-4e2a-92e5-e0f21328fa5b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/424316b7-e2a3-4008-bbc5-a6a4ca971456") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "820d69e7-d606-40da-bea3-8c938540d9d1") ) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "72facb3b-a15a-4619-aff8-587c0d18c93a") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2adb4d4-b8b4-4daf-8f44-b6175680286c") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "89012759-133c-4b6d-8ae6-0389526ec267") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "12d786ef-e806-4f69-9678-5aea35215a14") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "de27cc23-d24b-42ee-83dd-c18df1acb397") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09835904-73a2-44e2-89ec-619f3f8cabf3") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1ba6171-a7c2-4622-bfce-d8a3646a5d08") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4807e1b-2eda-4c6f-9bd6-c33e7617bfb3") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "853d0686-e9c1-43f0-92cd-6be51c306bad") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "51da2d95-06a8-40d9-91dd-364eb0ba6c49") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a7a2be7-889a-4b4c-b5f0-c4d898d7cc3a") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9d1e9e89-d516-4baf-9e72-e4133a39b961") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dde442a8-ac64-4450-92e5-feefb573c7db") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d013da5d-be0a-4ed2-bb20-443b7b98c3d5") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "ADC_REF") (pinfunction "K") (pintype "passive") (uuid "47b911a8-f788-40ae-97d8-7156ac83c87c") ) (pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "AGND") (pinfunction "A") (pintype "passive") (uuid "97ae7115-216b-4e4e-85bd-5203eba5d2d2") ) (pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "unconnected-(U6-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (uuid "a1ab9ab7-2398-42aa-8178-3abca0c8495a") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "7949befa-57c1-44ae-a457-0485919ea370") (at 111.4796 104.6) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "J19" (at 0 -2.2376 0) (layer "F.SilkS") (uuid "e44bb7db-287f-4915-ab13-9a5919298af7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Serial Console (TTL)" (at 0 7.41 0) (layer "F.Fab") (uuid "94034ec7-a4cf-4e36-a4e9-512321e81fa9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "30152052-eb12-478b-a4c7-ce32043dc96d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "345e2400-b19c-49ea-98a3-3114519eb52d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5b45741f-ca31-4716-9d39-ff13d5ac2553") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "da864e04-de62-4b6f-a2ee-c86061919c6d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "182fdf8c-a68f-4b77-88b7-733ee48a637f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "XFCN" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8c97bcc4-1b7f-47e1-b098-ab1b0daceb6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e5df7112-55af-481e-bf4c-4f230551864c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87b516ee-1a67-4bda-b164-00eca78c5f72") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1f56fced-56d8-4c79-8ec7-c65336b42357") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2937625" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4f92f81e-35f1-4e6e-8cc3-0e5e1a06d342") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/b7bc6b02-4815-4959-b689-29dc65d07154") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dbb93318-f7f2-429a-bd0d-0bd1d9dc15ad") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8b48ee4-b591-4f8a-b337-5e915da44bc3") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc2cd032-a304-49bb-8836-056596bb8520") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3d5e8ead-32bc-422b-8c12-fddd43a10128") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "abbe9de6-7e79-44ed-a12e-5d02ff29bc74") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12a3b469-c194-4a21-a0a0-46a6f5d06841") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c69cecc9-4d49-4644-bef3-51ddfa06f425") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66b1a989-c6f0-4f19-991a-d36f77dc23a7") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a52004bb-063a-42b2-819d-769f3647db25") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e238751-8678-48f1-8c19-0ec9571e9a16") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ece87f7f-845d-4591-814d-1e6b6aecbe08") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce30a86a-fba7-405f-826c-26dc0cfa3b2a") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2771d3a-02c9-41f2-b6d7-daac53cf734d") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a0a9e309-d396-40ea-82ac-77263a2d4178") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8caeeba3-fa09-46c5-a1f9-104a6a42d1b0") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "c91a6b42-1363-45d2-95f1-8a3abd889ea9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "defb2df9-0e13-4d29-8920-07d5ce832397") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 17 "RX") (pinfunction "Pin_2") (pintype "passive") (uuid "5f10f831-259e-4cf5-841e-c34ff8b0438a") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 16 "TX") (pinfunction "Pin_3") (pintype "passive") (uuid "5a7d0dfd-7d8a-47c2-ba01-b974f520621d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "7a89709d-a8cb-4a64-a3a3-ed263fad27d0") (at 152.5425 86.25 90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D30" (at 0 -2.5 90) (layer "F.SilkS") (uuid "39b534e7-3e68-4fb8-86fa-c6017260d04a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 90) (layer "F.Fab") (uuid "2e578801-1c30-4239-b8f4-a4fceddeebd6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3380db7e-757b-4682-bdc8-cf8912a49098") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5dab5ea5-570b-4df0-bc29-197de8591bc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d6753a56-d8f9-4f0c-a78a-f6a48fbf181c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "89035c25-67b1-4e93-af76-2d055b03b21c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ff19308d-54f3-48a2-95a9-f6548f2e7839") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "84e74640-c3e3-4e16-95a0-9f34215bb936") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5154cbcb-a2e3-4c49-a6bf-8ff0116cc84f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db850878-fed2-415a-b6b8-25cfe0273818") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "FUXINSEMI" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e1c8c22-5a5f-4f53-a296-33f3e56d070e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "BAT54C" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "12c95124-09e9-4e2b-96fe-4e70906269da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e66e5c5e-fafc-4d29-899c-515be77e92dd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f0377073-99db-4667-8dcf-40fcd3254b68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc9084c8-2571-472e-9776-c29a97e92b18") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bf5a2e9e-c42a-4271-9de0-e359d211c7f1") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1317bcf-1e83-44b9-b850-29e7d992208d") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a4a2bdc-6a36-4cef-b544-03c24f5f590d") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62aed2a9-8fa5-4f49-92f5-5ad3670bd2b2") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e829a2e2-2ea2-4e3b-8063-2bf6738fb3f0") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "94aa495b-456d-4592-8162-96a058a2f9b6") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f683e26d-7946-4e44-b5b5-d7a62066dd44") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "175b4e47-df53-4ddb-933e-fdf8b3137f29") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "937d250f-8a09-4bb9-b5a8-a5f58e5ae675") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0741b792-4723-4b2f-92f6-3afdd2ab2bb1") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c233db6-0649-4550-ae94-228c81f8c677") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb6d1f36-d5ec-4e35-bda8-ec1c372b90e7") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25012ac4-9f3f-4a57-98da-ba7115cfdc3b") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71c410b8-3eea-436f-be86-825a01ea8265") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f5a12ab-1ab8-477b-b536-d63ad945b25f") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed77f4fb-7deb-4246-ae54-aea873317949") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a0c0e87-4a33-4123-b951-6c5e6724f925") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "a3bcdfa9-936d-4dfa-967d-93efe0ef837b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "726bb8f4-2278-4d9a-9537-2aef8e615059") ) (pad "1" smd rect (at 1.1 0 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 24 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "a3f42448-86e2-4c64-ae12-f2ded06eac74") ) (pad "2" smd rect (at -1.1 -0.95 90) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 50 "FAN2_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "92ca1d5c-a2bb-4de6-b7f2-c09424a3c0a2") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "7bb94872-8dbb-49c9-ba04-f5628db9fbfd") (at 161.2312 82.7584 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R41" (at 0 1.5 90) (layer "F.SilkS") (uuid "acbb8ab6-8994-4112-a2ac-35948834a5d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 90) (layer "F.Fab") (uuid "4e4762ca-30b8-4a66-8cb4-4804ed87ed7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "dfa26378-de53-4546-a989-a1093e3f9c72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "638166f1-59c4-4033-a659-2973e21a3a21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "421a088a-38fa-4f26-8aea-bf597a6ad431") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "68cdcf1e-fb0b-4e85-8cee-328e66d97611") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c5dacd53-b7a4-411a-9da6-2f47d03dc350") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dc208847-38ef-4841-bff2-6b30c6e698b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "759f3319-6a2e-439e-8e83-bdc131b079ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603JR-07680RL" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e2664a51-71d0-4daa-8fad-de2750718339") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c744d520-6fb4-42dc-9b80-2255fe81d8c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c78dc94c-fe4f-484a-859c-f428645fad82") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "83c77dc8-c277-4a7c-be74-536e648ffa73") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "df72e173-0103-46b6-8b2e-b3a74566f7b9") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e89b6e6a-bd88-4648-aaff-2ecf051821b0") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23e2fd88-2757-492b-8429-8b72ab9fbf5a") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a6ee6bd0-f59a-4d35-8de4-9a1f44365ce3") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "922d65a4-5b7d-4bc4-b22c-4c554622e54c") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8df3648-4281-4799-9375-d7c18fe87199") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47a10075-c006-436f-9d48-e4250a4f6a36") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c784961-48cd-46cd-9ac7-593ca3b96619") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa107519-8e91-4481-8422-23603f5baf49") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "63123528-83b8-4aaf-b8ab-727094165736") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "FAN1_PWM_GEN") (pintype "passive") (uuid "54be31e8-fcce-4227-b583-6748aad71bb6") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 27 "/Fan Channels/Fan1/PWM_OUT") (pintype "passive") (uuid "5b48f8c4-9b9b-4954-a08f-9e950974dc9e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "7dc9f489-4156-491b-be43-4d23744698f1") (at 155.9604 105.1636 -90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C30" (at -4.0132 -0.1524 90) (layer "F.SilkS") (uuid "dc994edc-db8d-4dfc-a4c4-a0942194e586") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 90) (layer "F.Fab") (uuid "cab02a7a-46e3-46ee-973a-47c0e9220626") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7636708f-6694-40dc-9163-c18279df6598") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "745ac1c0-3c10-4656-a57e-00f0005ee00c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e9b13c13-9bad-45f7-b0c5-cb9bfb17ff1b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c4231127-27db-4f5f-9b8a-5eb65c33bffe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0431980b-285d-4920-9871-55a8f089f46e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a48c6e25-6997-4f93-9c73-b7295e21e4d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Kyocera AVX" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3414c0c3-743e-48ba-bf6f-9121ae94d1f7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "095b8187-c003-471a-b990-fb8f00461045") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1921263c-4829-4069-a949-ec4c49f92673") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9439afe7-6a0f-4508-9d0c-c6d779fb7182") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1b5d9ccf-06fd-4d51-b913-ec533e173096") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1b84112-e4d3-4bb7-8e27-a0eb7f094d78") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "92b59d20-53f9-4240-a9cb-635bf4e89ebb") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "02a6eab5-5cd9-4cca-9edb-49290fab042a") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "156487ac-9917-430f-bc3a-658760c9e042") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f83e9977-d68a-4787-a45e-f5d14ff35f9f") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5af7bdc-d749-4479-a3f7-73a3159e4e1a") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2fc39f2-efe2-485e-8a53-dedf17ecf02f") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bbba9c91-4755-4443-b30a-4fe8451f6707") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3bbaf63d-2279-400f-9948-d0e4fc441f6f") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "105e268a-d25a-4c3d-95de-4452c51df036") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7467a29b-97dc-4565-a625-2943e0e28f18") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b7ad1336-47d5-406d-83ce-98929764d70b") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 53 "ADC_REF") (pintype "passive") (uuid "762571dc-b9dd-4271-ba5d-1b3239f206ee") ) (pad "2" smd roundrect (at 1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 57 "AGND") (pintype "passive") (uuid "87f1ad97-567a-4e5e-b36c-9bba43cc0786") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "826bf74b-7c1c-47a3-86c2-86f3af532b55") (at 182.63 97.2375) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C9" (at 2.4 -0.0375 0) (layer "F.SilkS") (uuid "7d654bba-7714-4e9d-ba5f-0373d939e73c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12pF 50V" (at 0 1.43 0) (layer "F.Fab") (uuid "0d806ac4-5c90-47ce-ad0b-8be7183d09f8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "183832d1-9622-43fd-b3da-3b5bf4100b6a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4663e75b-72a6-43d8-9c77-516d190a6ca5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48ffeb16-278e-4b23-a297-6ce422afd52e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C38523" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "60ceaa43-ff61-4082-ac79-024a231404cd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "05ac87a8-2eea-4375-90ce-0f9f2c24332c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "088325eb-b06e-4f31-9a9f-eb5184dad3c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "080f0e8a-6b1b-4dfe-b209-48da48525492") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10C120JB8NNNC" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c2cb8178-c540-4565-bb0f-096b62ddaf6b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d385f1a5-afe0-4f34-8e35-85ba394b3eac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2967c1c0-2c15-47eb-ad16-09366a3ba636") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6138d87f-fad6-404c-9cd2-0ba7741020be") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b16920ed-4cea-4467-8433-0f7ace8a57f6") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "93ae19d4-33d0-4006-a9db-b8be66358d3b") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7a2cdedb-eaf9-452e-82b8-5ac243ec5df7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "07735048-f3be-47c3-963b-11516bb1d2e1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c528b704-bda0-4d06-8c43-d895854acc2f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c2a50c39-479d-4489-85a2-bc3a1894941a") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6332d21-1c7c-441f-ba6c-268d4fdbd2ed") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "438968fc-530a-4518-9a75-395a6ee25ff8") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b54a0572-b1f7-46b2-bbc2-deff488526d7") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db32b968-be6e-40d0-bd0e-5c0e04a1e675") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5e30d1cd-178d-4d92-b63c-4bf3492566e9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "8753ea27-5215-49d0-8846-29c8f82378e3") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "Net-(U2-FB)") (pintype "passive") (uuid "14fac80f-1585-4726-a3ef-6d063f302405") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "866fcabf-fb8f-4309-9f82-35b7b782cf70") (at 148.63 86.1375 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C25" (at 3.2175 0.116 90) (layer "F.SilkS") (uuid "ac25ad2a-20cd-40d7-80f8-bf999863086b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "37efe8b4-1f0f-4021-aac8-0b0ee83956c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9c58b655-33cb-443a-ae28-1819643f2e47") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d75c7254-55b5-4c90-b4e3-c7fc23cc9364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "879b599c-d076-4969-a57a-c17be025315b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 63.5 229 0) (layer "F.Fab") (hide yes) (uuid "2f9a9fe1-ae65-492a-b0dc-b9bdfa26000b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3d51273c-c41c-45d8-9d5d-6f001d95e919") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa28d1f8-163d-403d-ab47-544d475272de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "82bcc750-acef-40e7-a208-37ae031eba0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B102KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ac014253-8c5c-4d29-b3af-9774b06c4df9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6f665cb9-d2a9-4cb2-a8a2-8a805876f9d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f02b6b70-4a23-4212-a567-cf267cd775ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "36753e7c-3a0a-4f91-b414-33ddbaeabc6f") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d6a7057-4f24-4858-b422-1c20b2a5e447") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "470dfdcb-654e-4b7a-9a37-9aba2a1a3b0d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cf6efa5d-0b64-434e-ab12-3adf98a3cdfb") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce13fb9f-aa98-4198-a2f7-0aa0a07904bc") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5363812c-0406-4560-b829-28e15e8b6941") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53313f79-a500-4546-a72a-8102a1aa9d85") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "540bc5af-2c4a-47af-adcd-6fca7848ccbe") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e3899ba-e121-4b3c-baec-48a3ff0194e8") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "52587534-f03a-4c8d-a29f-fee985a9ce1b") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "5ac636f1-ac0b-4344-8895-09958969b895") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN2_TACHO_READ") (pintype "passive") (uuid "96893fea-effa-4834-a4cb-47d61a83dd47") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f7d820e6-7e2b-4667-a96b-4efd01e98c84") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "8c32b2f3-8ad5-4637-94bd-2e68cae5091b") (at 112.75 83.45 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D23" (at 2.65 0.0172 90) (layer "F.SilkS") (uuid "020a9888-b7c2-414f-a687-bf22c7584f78") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "559f6038-bfea-43e2-8471-0996586ea018") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3f8094c6-f2a6-4314-8dd6-45650399aa4e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4388f71d-565f-4603-9494-28bcc2b3b219") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48a74277-8f1b-47ae-a30d-c03dbd6be8c1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4546215-7850-4c65-a52b-b9a6f0828108") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ebd96749-c8d0-473e-bab3-52647219bd5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9bd2f8a3-40ff-40dd-8ee7-75b21f4cb77a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "65c8af75-82ba-455d-a99f-fdd6721f50fd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d2558822-aa06-4c98-8016-eaedfa9b62a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9e807549-c668-4128-bf3a-a75d2bc0e925") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "67fb9d64-b4d8-48a9-b399-fe578ab288c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/0c54e4ad-df7a-4f93-94d7-9edfd7e30a70") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d2651c4a-5ab4-4f33-91d4-c22c7a6152b3") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "de006f0c-27a3-4d1f-8c9a-98fd695fd694") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f8aba6e6-a334-4fb0-acd0-a839c6813b6c") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12d22aec-a835-4566-bc43-8c75fd992ae3") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45fc3f77-3b2f-4504-86ca-4c6ca9338602") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce903a12-042b-49ce-9fc2-e3440db33bf4") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e860b40c-c0b0-4ee8-ba2d-d9cf59c359a0") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a22699ac-d664-4288-b7ae-6c8a1783314a") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1193d57a-d631-4e47-93de-22f18efcd15c") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5bb30308-2313-42d2-afba-050b6ea522ef") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fde3041b-3768-4022-b591-dfaf88a33d5c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32eb9a9a-4792-4175-8b3d-fa329e4e3a7a") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a9a1834-ffb7-432a-9ab6-6c7cbfc985fa") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0268b798-7dd5-4725-b51f-e1c5eebc74c2") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9141d6fb-807f-4d6f-81d6-af2cb1d3d653") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8767cf6-e429-4654-bcdc-5b03623e6c04") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f452ea2a-bc4c-47be-9417-a96cbd2af895") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "f777c1ed-a230-4637-8158-a219a93c811b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "4733772c-8e98-48f9-bc12-2acc672cdfcf") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "76fee000-2d28-42e0-b1d8-005aa6b0a71b") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8d9ed836-03c9-469d-b64c-e961bc8ffbda") (at 170.7 93.6532) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R4" (at 2.45 0.0468 0) (layer "F.SilkS") (uuid "22d2407f-fc5b-4019-8297-70ac387b5a73") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "9d3f057d-dbdf-4976-962e-096cc2899a38") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c7df3b68-18d9-4204-bc84-f512f9657270") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7ca2166d-5c98-4aa6-97ae-b3202294ffc7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9a85812e-5138-4c0d-bcc7-98b859e8584b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 140.675 168 0) (layer "F.Fab") (hide yes) (uuid "0048410d-3943-4ee0-9d5f-eb4468177521") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f483a5e8-64b5-4860-88a8-87bffa2238d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df95401f-4406-4c4c-a46d-44dddabda34e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "94889b79-246c-40c9-9266-09bba7575665") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-071KL" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d203016c-97f8-4a6e-81e8-15913203d628") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dd659f1f-f90e-46c4-8226-232eb5396a9d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4f8b3c43-203c-4380-b3b8-9abc4557c1f0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcb2d071-6921-4528-b2d3-1a59bbc83744") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee207ce8-4fd7-4ed0-ab71-7f32868dc2b5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b35682d1-2e89-4563-9d7d-f15598d90402") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7a787e10-2ef2-4cc5-8cd6-7ea1fc1fd6f6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f8a16386-efcf-4f86-b0ee-b1c184843f13") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9b4bb590-3738-4132-a021-457522342593") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1711b2b1-edf5-451c-8869-01cd1b85d4ec") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5925d6a0-951a-406e-8722-e635c8676340") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "03096557-8087-4897-b960-1ee6df0b726d") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4538193e-530c-4711-9b14-f9b81e9d0dae") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "30296dfb-88db-4f4e-be47-bf5fccf1f86a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "8f3fa403-e5b0-42ad-93c3-22256c463456") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "c087bb70-35c9-47de-a3ba-15e9c975a8a7") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8dfa8eb2-f6af-4814-9c8a-167c232aaec4") (at 182.63 87.3 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R5" (at -0.1 1.5 90) (layer "F.SilkS") (uuid "2e0e4308-0826-4d0e-bc59-fa92ed08f07b") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "922d04bb-fff9-43d8-90bd-a483f43ba66d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "457b0865-f322-410e-a44a-50ac8fc85083") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0edde9d5-a1a3-4c0b-ae18-a1225febfd1a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3329775b-fd36-439d-8129-6d4e267236cb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 161.925 167.5 90) (layer "F.Fab") (hide yes) (uuid "691d8d74-cef1-409e-b350-8d91305773f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "007c95af-babb-4a28-833b-a99f3fd5692f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7df98a72-b7fa-4424-ac71-f74a90101c57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "03680a89-3367-4828-bc26-1b1419d5f3b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "afd6b407-a467-42e4-932f-ffb9d56c4c60") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "582b8c79-88ff-4371-8fe0-4beaa7745308") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "95d718a0-ee6a-434c-adc6-ac023bd25d0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/536545a8-ec75-4173-afef-e4439b3a7241") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6bdcd3c3-c004-4a1a-93df-ef4c15c77cbb") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bd9f3990-3b48-450b-b943-47da1ebfd142") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1fa234b-0152-4a85-b59b-aa2a77f87874") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8346e57d-fa8b-4948-b17a-4311d4a1cb9e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "caa4dce0-d513-4727-a854-7eec1b4ca9b6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "70c9e42b-f003-4234-a1e1-1df2d0142af2") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab3c0525-43f7-4283-9c97-cb136fc49f37") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa41ca47-7075-4c65-a8fb-bf89a51d7248") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e28d2954-8589-4eb4-b201-69b32dec6535") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d65ce845-6e76-4720-8ed6-da8c4577f223") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b7705320-39e9-4a9f-b1b1-47f773ead16f") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "bfa572c1-fd42-4250-a4ae-9b0ffccd1684") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 10 "Net-(D4-A)") (pintype "passive") (uuid "dabc2478-3355-41ae-b952-22b65ff3c272") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "9d70d401-de1e-4aaa-b6dd-55e1aa68b559") (at 159.2411 108.1318 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R48" (at -0.5889 -1.4682 0) (layer "F.SilkS") (uuid "032acc7b-9906-4537-8bfb-749794973f5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 0) (layer "F.Fab") (uuid "e93a2c63-721d-42a1-962f-58ca1ca96a16") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9cd97a48-cbe3-4231-87bf-52cd3a2f828d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "88d0024a-46f6-4069-bed0-de90ce227d8d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1cbc1d4e-609b-4298-beb3-84f596beaa53") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0b142de8-9421-499d-a2f1-0d9715b73d6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3a12e277-5055-4b8a-a9f8-3792b56dbded") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "be6f4e07-51bd-4c5d-848c-9fe4dcb49448") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "128aa4a2-0104-47cc-b226-25f4af9dacfa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-07330RL" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b6c92a16-e96f-4aa6-a3ac-0524a5dbb223") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1e3262ca-2577-46ac-ac86-44a7838eb672") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a5a088c5-807a-4e66-9f42-b5c74843cc10") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/46efb677-f647-4e2b-b34d-dc07526879da") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "21b196c9-e48a-4346-a6d7-b81f29d1cd83") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dd450fe8-fdeb-4e08-ba61-3832596277ce") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91615485-6c62-49a3-aae9-0d8940530575") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6848d13b-7d2d-4035-9122-203b1e5904ba") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "908f5962-5a33-4b96-8209-337bc910503b") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e278dad6-fd9d-481c-9de2-82df30599746") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb321521-4e58-43bb-ab25-d7acb4c3859b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a7fc641-fc99-43fb-8cc1-d13425e911c9") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d052122-3d54-4d8a-810d-676a9ab19d1c") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ea2498a-f308-4ce4-8e8a-f33225b64f79") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3056d890-d667-4e11-b974-0647c93ab4c4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "4bcf7545-563c-4b3d-8cfb-c4b3bd8cf9d5") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "ADC_REF") (pintype "passive") (uuid "6b002b84-1be5-4271-99ec-c83603dfbb70") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (layer "F.Cu") (uuid "9e297fb5-7dd6-4bff-9d58-a869619f5ca6") (at 165.73 116.1 180) (descr "Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C5" (at -0.2 -2.4 0) (layer "F.SilkS") (uuid "c2194165-5a02-4fba-b57f-c803820eb57c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 25V" (at 0 2.35 0) (layer "F.Fab") (uuid "a3072bd3-30ef-4224-99b6-5c2aef005629") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b3bdfd75-fa5a-4897-bda3-818aa3d3ed17") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3d83e4f4-eb67-4c82-b044-0cc660b5f0b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "591d76f6-bfb0-4058-b994-00a706ff7d9b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7194" (at 139.4 154.8 0) (layer "F.Fab") (hide yes) (uuid "f73cd722-bca6-498c-8ed2-b0a731ee0a14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c5fabb74-d08a-4a45-ab0c-4c2332d57580") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "18adbaaf-278d-4ab2-9c1d-03b80f096d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Kyocera AVX" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a759fb90-a5bc-414e-9f8d-5adb18d69590") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "TAJB106K025RNJ" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "38dc5cd1-12ae-49ed-ba8a-877355b39554") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4acf2061-ca11-45d4-8db1-df5113a67882") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5d2151f7-2ed9-477c-9be5-56f87640100d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/9a6664d9-b6d9-4e81-817a-45c56239601e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.75 -1.51) (end -2.635 -1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a9de9387-872b-4b35-b326-a34851ed0e40") ) (fp_line (start -2.635 1.51) (end 1.75 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1fcff4db-7299-439d-8d86-9c92508a7af1") ) (fp_line (start -2.635 -1.51) (end -2.635 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c06c7be-1198-4eb5-9482-754a360cdc33") ) (fp_line (start 2.62 1.65) (end -2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ff920cc2-1cbd-4189-b519-a23385a47080") ) (fp_line (start 2.62 -1.65) (end 2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aecbd816-4566-400c-8fd5-e1d0e347213b") ) (fp_line (start -2.62 1.65) (end -2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "106551b8-4dd6-43ff-880e-5a87ab35fe7d") ) (fp_line (start -2.62 -1.65) (end 2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e104a21c-1622-484b-a5e3-63bfca9e7c85") ) (fp_line (start 1.75 1.4) (end 1.75 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad120ef7-1609-4878-83e1-7d4239db4f2f") ) (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2709536c-8bce-4c14-b333-e4e70188ca1f") ) (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "67cfb124-8632-4112-9278-899db0c40d26") ) (fp_line (start -1.75 1.4) (end 1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e010f72-1461-42f1-a0fd-ccde58adcfa8") ) (fp_line (start -1.75 -0.7) (end -1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d672b35-96dd-4a6d-9ae9-6de74c457abf") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3e6f34b2-d5bd-4488-ab10-a15bd0e2d4d0") (effects (font (size 0.88 0.88) (thickness 0.13) ) ) ) (pad "1" smd roundrect (at -1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "cd05a613-c636-4b50-b23c-836d418cb68b") ) (pad "2" smd roundrect (at 1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 2 "GND") (pintype "passive") (uuid "1176a01e-c199-4c5a-a098-b3ad1e10cb0f") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-12_Kemet-T.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "a103e322-082e-4ef6-b79f-47cebf258ece") (at 182.5 120.5 -90) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H2" (at 0 -4.2 90) (layer "F.SilkS") (hide yes) (uuid "0e5ca958-c7ca-4d4e-b25b-5f2f9e2eed82") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 2.7 90) (layer "F.Fab") (uuid "74509051-6567-4868-b394-bffad0b0bbbc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "05361848-4e45-43de-bdd4-4899d5ee1fbf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e7a91f84-8899-48df-b967-870cbc0512e9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "61d0034b-2c74-4b98-8333-d3689ec79819") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f94ef482-ea59-4f16-884f-ecbebb9efc7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "25d70bbd-10f6-4520-a2a0-b017f6a51655") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d535d17d-3975-4df4-af72-ef2b6371d7b7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c0459f7-84f0-43cf-ac29-d66373460eb8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "044bd3f2-da3f-4a52-b4ad-59e2891819c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "65ad4985-4a92-4943-bf0c-5d3fa88f5d33") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "52d75b57-618e-4089-88ec-046a26291077") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/fc6c8e15-a262-4b02-88cd-fdf30196bc30") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "426189c7-89c7-4e27-aae2-14905cb7d640") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "10b75572-d4da-4d1e-9111-862897b89595") ) (fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab") (uuid "db9f8bb8-5415-4cdc-93bc-cc5846cc39e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "95cbdfde-5322-42a3-a2c8-ec46794b4a73") ) (pad "1" thru_hole circle (at -1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d5776231-611f-44ac-9502-c643bb774485") ) (pad "1" thru_hole circle (at -1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "0216afd7-9711-4604-a90e-f6346b597120") ) (pad "1" thru_hole circle (at 0 -2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "67bf90da-9a4e-4581-96f9-bd4ae054a948") ) (pad "1" thru_hole circle (at 0 0 270) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "edcc69d0-e7ff-410a-8bf1-5096c02a7f91") ) (pad "1" thru_hole circle (at 0 2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2fa7b387-72ca-4a84-82fc-584da6a54a07") ) (pad "1" thru_hole circle (at 1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2508ffa1-f925-44e5-a092-d21880e69b86") ) (pad "1" thru_hole circle (at 1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "7977bd5a-20d5-47ac-b0dd-ccf5c4177d36") ) (pad "1" thru_hole circle (at 2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2710c859-65b2-4d35-943b-6f08e8f0c33f") ) ) (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu") (uuid "a229bda5-dfe5-4ba1-9edb-f227edc88dd3") (at 173.5 114.2 180) (descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F3" (at 0.1 1.75 0) (layer "F.SilkS") (uuid "ed972877-20f3-46dd-90ba-047802dcbe61") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 1A" (at 0 1.82 0) (layer "F.Fab") (uuid "1c865ee9-bbca-4bcc-b2df-d3892abd821a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8e3b3b89-a02d-41ea-9128-6031128610cc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "606fa98c-ee70-4c82-a350-4a64ad23f419") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b4dca352-29a3-4050-befd-cd0902280bdf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7542958" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fca22a23-03e8-46f8-9716-d2f801a92033") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9595b8bf-10b7-447b-a71f-166e9cbb5e52") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08352309-10d3-4591-981d-02aa5db5a9a0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "LUTE" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7692475-8ff4-4146-9713-3c1bc0e6d867") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "1206L100/30NR" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eed98450-c8cd-4259-8571-5cc1519a454c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b9533a29-9696-4f6d-a840-5071aabbac43") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1e1737be-d7d0-4fbb-9166-f0dde9b6f006") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/77ca7b5c-b61b-4e9b-99f7-e6e552a9e49f") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "25747efd-dbbd-4025-83f3-4433fe4551f5") ) (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "952b4983-d08c-45cd-9f01-36b5d65e92d8") ) (fp_line (start 2.45 1.12) (end -2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a176e5ca-d392-4795-b1eb-40972518bf7e") ) (fp_line (start 2.45 -1.12) (end 2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "11d0c118-e5e3-4cf8-bb7c-99038b2a9790") ) (fp_line (start -2.45 1.12) (end -2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6bd0914e-c2c1-4333-96e3-60bb1fd42d7f") ) (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d1e198f7-52b0-4227-920d-3ee0a2387bb1") ) (fp_line (start 1.6 0.8) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3bbd313f-fc06-4416-994e-91e2fc1ee4ce") ) (fp_line (start 1.6 -0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0dddeba8-202d-4cb5-aa6b-b731406ce930") ) (fp_line (start -1.6 0.8) (end -1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d1b3358a-8c7a-4f76-bf19-9896856576e3") ) (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d35fee15-472b-489f-95db-e3b4a5e01e1a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "37d21b67-dabb-4d47-a113-7272ca05ce99") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "49b9d73d-cb99-4870-a949-985fb4d25aaf") ) (pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 77 "Net-(JP2-B)") (pintype "passive") (uuid "f05ad911-4e80-4d23-849b-62382af91afc") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "a57a044f-1e0a-4f57-b98f-7a871f824575") (at 158.03 86.2 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R40" (at 3.2775 -0.064 90) (layer "F.SilkS") (uuid "8355ad70-e585-4c78-a3d6-08863bd1a55d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "6b0a5257-580e-4e28-9092-3086cfffc956") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "17712446-1051-4b3e-860c-9e9282bd393b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "10e58eb7-268d-4166-85a8-b5d2c1d763a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "be904f75-aed7-4f40-9e7e-4cb97e3e5823") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 50.5 238.5 0) (layer "F.Fab") (hide yes) (uuid "c2c75bbb-b35f-4530-8fbe-b301d32fd6e4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5709cd31-2952-46d4-bcf6-ee9158a2a7b2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08a2a3c7-8f10-4f25-af30-8deef7b7cc43") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e35c0fa9-d9d0-47d3-9e0d-eb2563da2255") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bbf797ce-6e03-4bde-90a7-d287ae4bfc77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "410871fc-4192-462d-a5ec-fef9371974ab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5419b4e1-ac5f-4962-80c5-36de0961e252") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e4508fdb-2a67-498b-8a41-210b07a713fc") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e8aa8693-d31c-4f8b-bba6-5c68ad441929") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89d8efbb-16d4-433c-a140-d397707ca241") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aeae0fc9-009e-4772-b49a-86eebae3db69") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aff0fca9-3bfc-4fef-8a77-e194fa95fc86") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4c69dd64-b220-4ed1-a6ae-89c42074afa0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4515ae78-f0d2-45b0-a9ca-707dfa58ae50") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3db29846-f486-4574-8d28-f787ea583783") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d9f779c-bdcf-432e-80d9-5350b5c3907c") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d83c00de-0b9e-4aee-9c52-e2d383d7181a") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "cc659521-acd3-44f8-8bfb-a4d332776ec5") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "b29e64d3-7d8d-4ac9-9374-adf33a034630") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "a5bc3e22-5d1b-4526-981e-81ebb7790fba") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a8a96833-be8e-4225-b0a4-3bcb78623204") (at 110.68 113.5608 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D16" (at -0.0516 -1.8 90) (layer "F.SilkS") (uuid "3ff36e07-3c13-4e9b-bb66-c9f7ad09b1f7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "f885598d-153b-4ed7-a34d-12d1f23500fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9818069e-0cac-4ab7-af98-0fa493349b7f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09ffbccb-f2b0-42b3-89fd-37029075a1d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8fc03d9e-847a-40e7-b967-48cc022ce364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2eeddeab-6b99-4a27-986f-3dbc15ac6c99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2560d06-da1a-4143-a7bf-a09ef5ba0dab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b76adbe8-06ae-4c16-837a-59d9db252811") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "335f7b09-6ec1-4259-8644-1c8fb9d7aca9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ce4d867a-0010-44cd-ad88-e187b65fec52") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9436eff6-a2d8-43f9-abae-41622a102b4b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1544571d-9a5a-4510-b34d-106c19288045") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/48c1ca3c-b2b7-4043-b6d4-db9851ebd51f") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "91f5153b-7d9b-4d00-b011-7bde87a378bb") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "41aa58c0-3f8d-4d97-86bd-33b6e75c668a") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e44bbfc1-fd5e-4acb-93c0-26cdedfe0c69") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13f04c16-b7bd-4645-aaa4-72f12ad20676") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "405539c7-e2e4-4321-ac5f-9cbe097ea375") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c12cf245-d584-4b9f-a083-d1a87b9b3920") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "104f63bb-29fe-4f46-9d50-4c60ffd3bed0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0bd681c2-dedb-4393-b25b-c69b96368c47") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07a90c52-62df-44fa-a9f7-8287ec5d01dd") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "87e27ed2-9c35-4fa0-bb63-01a7b2dd951b") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6381dc0e-b84b-47af-bc34-9cd872a7d909") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db5af5e9-f928-4581-bd1e-342caed02aec") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7318020-0b97-4b41-a5a3-d9f148272cc3") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dc9b64b6-1d9f-4431-9476-7077a4eb82c4") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36e24906-ff55-4278-88cd-c3fad148990e") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2674a00-7343-4447-bee0-205aa1cf54ff") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70978bae-de44-4e7b-97d6-f92b2ab6150e") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "bc869778-e76a-4210-91f5-4121bb54f9eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "46225cbe-f00e-4b09-954b-a31fbf95e5c2") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 16 "TX") (pinfunction "A2") (pintype "passive") (uuid "21dc7d1c-9c14-4d70-b0f9-3bc9d6999327") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a9744741-030d-4a69-8ab9-4c4ebf873020") (at 148.11 81.126 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D36" (at 2.574 -0.02 0) (layer "F.SilkS") (uuid "8b7361f7-e681-429e-b629-d0a508ffbb0f") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "09aa96b2-b3c3-40dc-a515-a49bcbc37bc2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fcab3243-3ba3-4f9d-a747-411853b2cc24") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e7b30775-e6c0-4a20-92e5-d9930a01e893") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "72b4df10-c527-47a9-916e-1b576f0fb921") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2a2e592e-7737-4bd9-9664-f1a771f54760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bcd07745-794b-4ff4-aa27-36a939e14a6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "88f24f86-2e33-4f46-b824-1639a25da0b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "ElecSuper" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "578f666a-b93c-4210-b176-b17815b1538f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PESD5V0S1BA-ES" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "331cfb3e-ede4-471b-af6c-55fe991ebe2d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bc496ed1-bd12-4dc9-900a-96fcbbcc8238") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5aba7e2-50c7-4c55-9b8e-81cf2deaf946") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/6535bc33-56ae-4cc2-99e7-1448e1c62b75") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f6f0e93-66d6-4f91-b49d-cbc259b08692") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4cdddc1f-26aa-410c-8da6-3b8f94469faa") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78ae873a-68dc-44c5-b3de-6f6b0a7b0d7c") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5f534838-9bd8-4443-af6f-ca3fa70211fb") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fb62b671-a5f9-4d67-8516-a2c92d6ff41f") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66079d33-9e63-4dc5-8866-2913c353079d") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1eae23b7-944b-4845-bf95-e14c44871bbd") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a7ca8a0-0f8c-423c-bb7a-e7824bc48e8c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cee38e5a-f762-4b89-b6ba-0826f55d7c52") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2bf8023-cded-4f75-96c4-3e0626dd149b") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f876a1f9-43e2-410a-b08f-68af05c464b4") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "80ec1571-e620-4f38-a0df-595923578461") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c423f6d-7981-4030-8cae-80e2a881978f") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6691d3f-105e-472e-bb7b-0b83b1c85e1c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57b785c1-a843-451c-b165-6cb26ac9574f") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eedbfec8-828a-4283-9e48-d12a9f7ec93d") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "caf313db-bbac-485e-9872-6c39baa2f1df") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "882faa2b-9a80-4ca8-abba-dbbe9e1e14de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "12b3bf78-56b7-4205-8135-65ff2bb156a3") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 28 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "086d8abd-0bee-43fd-a36e-0fcd1f6c5bcc") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "ac2dd344-9bcd-43ef-97cf-410a56901723") (at 167.73 122) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D3" (at -0.2 -2.5 0) (layer "F.SilkS") (uuid "f7b64f7c-4ffa-4729-b84f-3316837daa25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "a9c4b132-c315-428b-a428-3982f8ef9e45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f4cc4586-914a-4cdd-868d-9b65563cc5c1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d5bad705-3a33-4b71-9714-57d5f5f79382") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aab4a7f3-d1fa-4913-82e6-8c6b3ac0f254") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "ca5f989f-54ac-43df-b4f3-4d4fdb7fd85a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "0ae96428-9cf2-489e-b140-29caef249c4c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "f5cead4b-4288-41a6-874a-01830d06bfdb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa9ed483-17b8-463e-b647-b3b33848213e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5e376d35-d307-47b4-9e6d-0318eabba448") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "MDD(Microdiode Semiconductor)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5c7e209-f29a-49cd-8b75-ec5693101a77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "ES1D" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b7f308f-277a-4d3f-b479-9e5d65c97177") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f1845551-fd22-487f-8111-ac86f67ee6e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "edff531a-8109-47f9-9470-b025267ffe8b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/14a165bd-0b65-4fb0-9565-152bd6300a32") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5c8a7d87-4cc3-4be0-bf38-e002942c7359") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3617a72-2ff5-4406-8df0-a715a4485fbb") ) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cc7f7d32-7e12-4221-9f88-342e41840cb7") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "898f9cd0-bcd2-43f6-bd91-c66a16ddedcb") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f02915a-5370-4e3e-a4fb-7e88a2540aa3") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c0135e34-e9a0-4912-8611-03dd8111f7b1") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a1120d0-11e5-41c1-8477-cc7a8f162192") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e3238d3-edb7-4af8-a5bd-f680d307f335") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ad95c14-3567-4992-b34d-94440a59265d") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "acae6ad7-8c7a-4b0c-a73b-e98cbed54a36") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a03fdf1-6b38-43e2-a6db-1ce3a00790f2") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d84973fe-c82c-4fd6-b907-921c806a9b99") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f84009f-8b4a-40bb-bbca-72ed2d3a5f0f") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b534c2d1-9834-4cfc-b52f-d00e9e9b3d0b") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a1a6bbf-3e80-4812-9d3c-eafbda928226") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c9f142b-5c91-4c35-ba2a-4e488b876c4c") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "391224cb-74a5-4be0-befc-4844ce401419") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "247c55cd-7440-42d8-ab05-f30f3764b695") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "K") (pintype "passive") (uuid "3a707722-05ec-4654-88a9-611f489c7082") ) (pad "2" smd roundrect (at 2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 72 "MAIN_PWR") (pinfunction "A") (pintype "passive") (uuid "d2e913cd-38ef-40d8-bcac-0a5b8100d08f") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "b055826f-f9a5-470f-9630-fc5cb40dbab6") (at 175.73 107.7 90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C10" (at 0 1.72 90) (layer "F.SilkS") (uuid "b0e15c0c-03c5-4bb3-841d-bc820a8103ea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "22uF 25V" (at 0 1.75 90) (layer "F.Fab") (uuid "7a238280-71b6-4aab-b275-cd3b37fca846") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ec12b69f-febb-4642-944e-1ab6fff2e66c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5e478998-986d-4288-8a2d-723d5330bd54") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6bd643ea-bb68-4cba-9012-3aa5cb738dae") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C12891" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d45d297c-ddff-428d-bf37-883ea1ccf13a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "093c2a8f-6c0d-4d8b-af84-db2eaccafba5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL31A226KAHNNNE" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "286ddfbb-5a63-4cee-bf3c-7c77e42d783a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e4354cb-6965-4731-a216-fde8540b70aa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3137d5e-a96a-4a0d-b0ed-881dcbd8a4a0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/a3f45769-b95f-4c8d-8efb-a6e8629d79f3") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dad05931-ad87-48e9-8e90-58e49b83e272") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4324843c-c853-4548-ae00-7f837dcee552") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f8f3d43e-f6a0-4f24-ae1e-2fbcdde92579") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09c7a7f0-e45c-49a5-8462-b7454c19bcd3") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2cc9d795-ad2e-44ae-b49b-bf6e67bc03c6") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cacb55da-bd68-406e-ade7-466465f65554") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "21ab541b-9c84-42c4-932a-f5d367cbfbea") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e987a9f0-cd4d-434f-a302-7ae7b2b0fe85") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f878abcb-dce2-429f-b52b-1925cac208fe") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "092dd968-0f6c-4328-a80b-b7fd9f88d478") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49cabcd3-2f33-4a49-bd48-919b35f7f7a7") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "89215d70-bf5e-4bff-80a0-02f9579c9651") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "5f202608-2807-4825-96bb-77972c20a513") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "f2eab813-1aea-4cf9-9090-eba1a695f8e4") ) (pad "2" smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "f5fd9569-08cb-4053-bfbf-085f578515de") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "b5dc6d29-c7d9-423d-9396-c8827e47436c") (at 174.43 121.3 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D26" (at -0.1 -1.7 0) (layer "F.SilkS") (uuid "9ea20a65-8f2c-4bad-a997-b08cead9ada9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "e10200be-6a2d-4619-8bcd-da97630c6d28") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a19548c2-af6a-46fd-9402-31c2db2ebffd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ce94c1d-adbc-448b-a6ae-88698275ed33") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a3c7e9e-6c77-4e46-9dfd-73dd9d740be9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcd48309-898a-490a-a6fc-6dd886367c47") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db32b7c2-488f-49a3-8393-22d83e1e38a8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cc311c84-6629-4147-9eab-0665acae801c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "ElecSuper" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "96b146b4-2e08-41e0-afe4-85c37024f78f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C12L01-ES" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4af6c8d4-0ebc-4ad8-9ba0-7d918b886557") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1663b688-a9aa-4fab-bb7b-932e9c5e5441") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C502541" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c588cec8-30e9-4ec4-b3a5-280f68d817f9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/c5742aa7-a922-4b75-8984-e94c4654beb8") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "279417b0-2eab-48a5-a3b0-6abc5adb4789") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e888dfb-f43d-4c55-b3a5-44d3959bf43e") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d1d61f8-5417-47c0-a73b-c9f427b6d947") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1a9d36f1-c9df-40cf-97c3-19792c489855") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5808659b-4b15-4bda-9311-d35194cddeac") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9cd1141-b351-4c72-a905-b554070c0d86") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "353fc32e-3e6a-499e-a51b-093b88f7636c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af9a17f0-662a-4997-b8db-6c63644b3bab") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92578bbb-aa41-4c66-9b43-ba77db81aa25") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e395b369-246e-458d-a20e-35c7828a82ba") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eac61818-ba6a-49ac-9fa1-7d3b5f4ff8a8") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6610d51-5cd4-44d3-a3a1-44f20496761d") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a47dd546-8fb3-43b3-b751-e923658fa6b1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2a97469-2ee5-4555-a80b-d343e35f8a94") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6882c09e-6ad9-44e6-8866-f48055ae7a04") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7290af2e-3746-42b6-8469-9126a4dfa656") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26b994d0-0c75-4326-92f8-c0778b84d130") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "5cc30329-2d37-42c2-add4-1e8dd2d0c5f7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "822a6732-3627-4832-a8ba-dc80e6c39543") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "MAIN_PWR") (pinfunction "A2") (pintype "passive") (uuid "54e9195d-f6ec-40ff-a018-cea8c4f6c11d") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "b6faa3d1-9cab-4cf0-bbf1-abc808bc9059") (at 182.5 70.5 -90) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H1" (at 0 -4.2 90) (layer "F.SilkS") (hide yes) (uuid "1a2b840f-9893-427b-af08-31066505f217") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 90) (layer "F.Fab") (uuid "04c51518-091a-4ab6-97cd-314197ef29e0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "71d2616b-6174-40a0-aa4c-6473738974a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "55853587-6eda-4e5b-a92e-613b9c41bd9d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "782d1531-5be9-4c87-aa21-766b13009dd1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e1f2de36-aa83-47d0-b4d1-44429f288642") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d03222a7-0f68-4491-b8b7-31dad03d225b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43de0c95-148a-439b-ad30-cb4133837167") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3aa9d85c-1064-4cfc-adb5-815d7dc3645d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e13e36e4-0af4-4dbd-b3c7-6d63f3ce071c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "add73b5d-a0db-45f4-b365-a285f3bdb9d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "75e5fbf5-466e-49ac-b01d-e1f75e7f1b17") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/cbfea856-81cc-4920-8136-231416e676cf") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "a5ab5040-27a0-4a28-8c0e-608b0de96392") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "2f527a12-c1ea-4d9a-a729-d6c216857436") ) (fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab") (uuid "63ad88b0-82e3-4521-bd6d-dcf177794df0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "db1acc73-38be-4bfc-a17d-880c63b75456") ) (pad "1" thru_hole circle (at -1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d0c0d2de-106a-497c-8919-c1ba850c21de") ) (pad "1" thru_hole circle (at -1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "165bdfa4-a6a7-41a5-b27e-9d8848d4a679") ) (pad "1" thru_hole circle (at 0 -2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6cbb0263-fb06-4f9c-89db-d7f97bb09168") ) (pad "1" thru_hole circle (at 0 0 270) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "4e7dd4a5-1573-4ef8-a165-fe4a40bfb521") ) (pad "1" thru_hole circle (at 0 2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f075e5e5-c7b2-4f9f-aa82-b5b38f8d045b") ) (pad "1" thru_hole circle (at 1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "73287c98-0945-4a90-91e0-be7ec23c38b7") ) (pad "1" thru_hole circle (at 1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "afacdabf-7a36-47a7-a266-127e2ec12652") ) (pad "1" thru_hole circle (at 2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "db351afb-903b-49e0-ad56-3db76eebab13") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "b77bebad-2f07-4beb-b732-bed65b1be535") (at 182.63 98.8375) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R8" (at 2.4 0 0) (layer "F.SilkS") (uuid "a4a98a2b-9e72-4ec8-9d5c-75643650938d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "422k" (at 0 1.43 0) (layer "F.Fab") (uuid "269c2dcb-565a-4471-8da3-0fb245b30c66") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dafa3470-9080-404f-9c12-c5db6c9e135d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6dd839b7-b9b0-4665-b865-f26c124c93a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc646352-5ab7-4a9c-91fb-5def1e8f4254") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C245966" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5d9c953-6407-4212-b057-26fabe29370b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17736ecb-6c8e-4aa7-8bc9-312f63958d8b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a715da7a-5b70-495c-b5b2-de1207814f03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7c2a8049-0b7f-40d3-a10b-c4a03c1c7f1f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-07422KL" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1e063b27-9bc8-45d4-8032-e5e9bcefefef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5415c46-1fc9-44b7-a891-5f65eaa4fdb6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48b9778e-4ef9-45fd-a579-39de80d28265") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/41602654-a8a4-4659-b09c-68b643d60f11") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "203da88c-bcbb-4e02-bf00-4ff87ba72c77") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6f664648-b7cb-4391-a53c-889a3eac186c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1c5fb09b-551a-4638-8a80-866c54903218") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4a73b39-1d58-4e31-acfe-dd57099a652d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "699b7da0-6104-47b2-8f55-ee274a272a96") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45cec787-f4ee-4717-82fa-28818956534a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8b318308-6ef0-41f6-8a18-6c8277a858cd") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ecc3682-0275-4a6d-8f96-c49e8c8fdb0d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f7f978c0-7b99-4774-93e1-4ad44e17a331") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb21bb6f-caed-4fd0-9ee8-e531158d52ea") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "40a56b1d-6346-479d-9ba1-9a6937b52781") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "f72249bb-574c-442b-b6b0-8a4422d76d98") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "Net-(U2-FB)") (pintype "passive") (uuid "acf3a7fd-6d56-4ce8-97a3-b142a97845f8") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "ba566fd6-3c00-4758-b55e-90b7e219eb11") (at 166.73 113.5 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C6" (at 2.6 0 0) (layer "F.SilkS") (uuid "578758e6-6c59-4f4f-8588-d0153ed77d03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 0) (layer "F.Fab") (uuid "2c8445e7-0b35-4231-9575-50eb116bed66") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2b2c6572-86f6-4885-8a7d-87eb482d5e1a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9b3aa34d-1d47-45e3-b776-e9e961f01ff3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "96d28e38-b814-43b5-9ba2-9058f41d7b8b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 151.45 -7.55 90) (layer "F.Fab") (hide yes) (uuid "d26a05ed-5b41-4c21-9cee-1b64ef400e95") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c1db387c-2240-4bad-8c85-89b39f47ad3e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "764fd5d7-c208-44ec-a85a-e7c60a4b07d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c984847b-7aba-4c39-9904-435e18c453c0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3ffdb0af-9d06-4833-859a-bd9ce6663620") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43a3e8f5-5acd-4fd5-b07f-c10a454306e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cae00d45-620b-4a29-98d0-a1acd29d938b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b1335ea9-16da-44b9-9459-ec64501666b6") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc55524d-a608-4687-a837-d8248198675d") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7bd61f0d-6afb-48df-b444-3f3a6241d217") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a0d2d354-f059-43f6-94ac-7f75b2a75eb7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ab0744e-b7e1-4adf-ab19-458eb0d2a0a1") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e62592d-f457-493f-8f0d-1ca7effeee72") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b776af14-cee4-407f-9f79-2e0aa708dd02") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e262cc3-29b2-4a01-87e9-831d58150ded") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "594ac923-7a05-4dd2-bc6c-caa8d3fa5982") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0d26b92-c7e4-4c4e-93b7-f8a367c6af16") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b4c4d2c-9540-4740-ad30-ab8af5c7b471") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f693a42a-100b-4d5d-84e7-5ed252a64b84") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "2dfdaa99-258e-46bc-8f7a-0320d22c3d40") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "0b700b7e-1384-47b4-8153-18479bc1d0f2") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "bb783fbf-1ec2-49fc-a427-90e531a888cc") (at 112.7 113.55 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D17" (at -0.0008 1.7188 90) (layer "F.SilkS") (uuid "13790f67-a955-4358-b128-a892a5dde830") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "5490164b-2193-4d3c-bb5a-62c78d795b51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2fe58aca-4758-40ff-801e-4ec59378c162") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d6ef25a5-77b5-408c-a995-ba08a7162eeb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b4eab4d-3928-4b8d-9a87-e324cc2a2e98") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45f23e95-2274-4b6b-b728-503d5bd7cb47") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1dd41648-da1c-48ae-8106-57f753981f29") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc9934ac-0956-4124-b115-a31195634518") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "960e6995-cea0-4e15-93ec-27d1eb2850c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3e0dfbc1-29c0-4312-b211-e9f404ede67f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8b7816aa-fca4-4024-87c6-60ba151415ec") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a26cd192-0f3f-49bd-ad96-1f68031ceaaa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2b949ba6-5a8f-4360-8686-0d967c367aff") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ebb98d7-e354-4c0e-8041-63ce6279ec05") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee4bb296-c68b-4b2b-adf2-e9ea06009298") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "63cbea0b-5f8e-420a-ab9c-69717e04acb5") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dcaa7dd8-d412-464c-a98f-344a5862c562") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9d8dd689-f25d-4aaa-9966-acd4de55974b") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "faf23198-1399-45ad-b85b-704fea5a6916") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9aa0ca6a-646a-4015-9b5b-62cf1fdfaf4e") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e1aa347c-24bd-452c-b913-39a4f2297ed3") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1849f2c7-5f50-4428-be5c-171b29ea9353") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a247966-cb8e-4da6-b310-4d84c7d4acfd") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15856ae2-8c26-40b5-957a-3864da2f1fdb") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a3643e2-1cbb-4697-b492-115f684941e9") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a6d867c-717e-450e-a0ca-487f84771af1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dacfcc79-5105-494b-8cca-5ac3e14e853a") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f4bb75e8-5f31-4a56-8230-9b2b7246fa6e") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73d92c16-d3e0-4e7a-8d02-c96aa1e5e33f") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c3993c1-b2fc-4d30-9e8d-a754f1f44e58") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "834f671d-4b0b-4944-95c4-a9de3842b7da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "4f0bdab8-999d-45a2-926e-8f9744146ece") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 17 "RX") (pinfunction "A2") (pintype "passive") (uuid "de2baa02-ce98-4f1c-be4c-2098f6677d65") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "bbfc380b-a351-4b9d-a575-294a2dc5b3c1") (at 182.73 76.7875 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R7" (at 0.0508 1.3462 90) (layer "F.SilkS") (uuid "dfcee624-e4f7-48bd-a9ba-8d8d838778e7") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "a31b9911-2d45-4bcf-864e-eb5e83f619e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2e4ebf3a-642b-4848-af14-9748682ff3b3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ef5a9208-278a-447f-9721-e586fd90338f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "20abb526-7a00-4b96-b680-515744c1f028") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 83.2 170.375 90) (layer "F.Fab") (hide yes) (uuid "8fdb8db0-e1fa-405a-8061-61fea2efef61") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5b06e917-b1c5-4a72-801b-a24395640f4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fef17455-1056-4bb4-9aa0-fb4f4e953a78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d9119f65-6313-4a22-8aa9-22ca3c8fb602") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b41946bd-d3de-4637-95ab-50f6fbab2e49") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "721c155b-b12e-42b2-91a7-637b17525adf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f744d7c3-6e83-423d-8e7d-f80ac1d93dad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1fde763e-90ef-4ddc-b2e5-d750ee01b070") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ba9c5c3-05a6-4d34-8eb9-ddad7190e150") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f54b67a-1cc8-443a-bedb-d986e30b465f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bfe035d3-ae2f-45df-b39c-f6249f9c3367") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5cc48a3e-765a-4b0a-b35c-c4acb818ca27") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0b6e39e-2e0e-4991-9cb3-4d9ff95be8ee") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ccc2ef35-7788-41d8-8fd0-17ba55ea4255") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7568053e-f7f9-4e8a-95c1-b5dbc0d01bb9") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b39e6673-f178-474b-8f9b-4efe8ecbb495") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98e73aea-d618-43a9-b6ff-3f2e9e71ef7b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a841f2eb-6af7-4c88-94f6-4988a426b08f") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "829ec71f-82d6-463e-a11e-458a66f112ba") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 55 "VBUS") (pintype "passive") (uuid "02ca46a5-c7dc-43e0-b3bf-994af849a626") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 12 "Net-(D6-A)") (pintype "passive") (uuid "f1720378-df98-4d38-8cb3-c24ffd9852f9") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c0e42a22-59ee-4a79-b22d-300f6c3f03db") (at 154.03 104.3 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C29" (at -3.3528 0.1016 90) (layer "F.SilkS") (uuid "2949eadd-e9ef-467c-ad12-c5948fa7e159") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "348651c6-44fa-4b28-8f5b-38f076463cc8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "31cee461-9158-4a8e-81be-dfd1138b2551") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4a60d55f-7a34-41d8-a7e7-474825d61171") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "826cfa1f-b1c5-426e-9ac9-dd6a914fa67a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4a4fa7bd-8a64-4798-9641-65ce35f0073e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3c36c342-200d-48a9-8d9b-f45f62b836d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3eec7113-bfbb-4179-820c-eb9e4b5ffff0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "441e6c75-7de3-49a5-9f55-b2415429502b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2e9f599a-f017-40af-873b-45887732d7bf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5a1902cc-e398-43af-b890-db503836cc97") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "050dd82f-ea2f-4356-9f73-b80de7a2c4c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/9fda019a-5350-4524-b5e4-0e13d75d61d1") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f75fced8-4976-4157-af12-26b672bf69d9") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a400aba0-7c90-48f8-abb6-152328f5721b") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e14590c-aa03-4345-b90f-028391398ee5") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39ab5e21-c65e-43d8-91c6-35c5dd6a1fd5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0ce7b13a-3b04-40f3-b1fa-6d6bec6aa1d6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3417023a-447d-473d-aecf-4a3e0a7e375b") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a30dc52-caa1-47c0-9f4d-3d031542a81e") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6366807e-2d93-4665-80b3-e71173aa4183") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "83450bef-6200-4a86-bdc4-701f8bf93b8f") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8347caf5-0d02-4b0d-8e69-6df0ba51346e") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "63b8400c-49d6-4e91-acf1-78fa96d51ddf") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "ADC_REF") (pintype "passive") (uuid "c26a001b-c9f9-4bf3-8244-0d456a618048") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "AGND") (pintype "passive") (uuid "8e90f624-2cc0-464d-8e8f-8c8e00cb98a5") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "c173dca6-6ab6-465e-85ec-e09c8c8bfdd9") (at 111.5 120.5 -90) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H4" (at 0 -4.2 90) (layer "F.SilkS") (hide yes) (uuid "0e046ea9-fbc0-4f13-aadc-e40cef209fb3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 90) (layer "F.Fab") (uuid "93accfd9-104e-432c-bc94-d5b80b89da60") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b331dc55-c1d6-41d7-958d-adad02bccb90") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2206a410-410a-4f3b-95f6-7d0b56c9f339") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ba5739e5-177f-474a-be5f-69d1ca8f384a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cf0d1503-7e11-439a-9e7a-0ee5e3d84620") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "10547647-d169-42d8-8ddd-b00183012e64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69173b8d-8019-45db-ac32-6d2b6afc6d5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "68373b9a-4ea7-4ccc-8898-5e7e59378937") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ce744b10-90e7-4a62-93ad-540ad5197139") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4bdc9178-e809-465e-93a2-f0a81c67c4ca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ca0ca14f-6bdc-477c-a78b-9c691924ce24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/91796faf-4963-43e3-be77-8c6bb9373a7f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "64d678cf-e0ed-470f-8d7e-7a788e2db93e") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "0882ba49-dfa8-40e6-a0a9-8e8737329b86") ) (fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab") (uuid "f1efb196-b0b9-44a6-b768-e865c9b9fb3f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "e356b00c-4c5a-443e-950d-5fe0d1728787") ) (pad "1" thru_hole circle (at -1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "1799ab67-413e-4c14-a7d6-1645026d58b4") ) (pad "1" thru_hole circle (at -1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b8e0e5ee-10e2-4c47-ac7a-fce19f9dee94") ) (pad "1" thru_hole circle (at 0 -2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "a68a1d4a-b222-4844-b66c-a0e086a9667a") ) (pad "1" thru_hole circle (at 0 0 270) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "b8fb10f9-2382-43c2-88de-64115ddb07d9") ) (pad "1" thru_hole circle (at 0 2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "79e4cf8c-fca5-4107-a133-62ff49817dd8") ) (pad "1" thru_hole circle (at 1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "ead3ac4a-56e6-4c22-946a-1fda9835b32f") ) (pad "1" thru_hole circle (at 1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "42d33b8b-a4d7-42ca-bb65-04960772bb3b") ) (pad "1" thru_hole circle (at 2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bcb8430d-bfc6-4ef8-b8df-61baf4112822") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c49de291-4f40-4b4a-a42d-a9218ebf31a4") (at 159.4 114.3 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R51" (at 0 1.4 0) (layer "F.SilkS") (uuid "0985ba38-38b5-4353-99f2-2d738d2087d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "870d8528-b256-4359-a9cf-a0ed45bc2b12") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "50f3a288-6a86-4588-9fa6-98d4a3fae2c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "73dca739-48ec-4980-932e-f85a0774693d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "da517184-cf9b-48c3-9314-6117bd7ea186") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 36.6125 156.2125 90) (layer "F.Fab") (hide yes) (uuid "2f3157dd-8337-4bf2-853f-cd2d8423792f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a9e4075-b0f2-4ee1-96fc-d4a8f2fe2f1d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45fc0aad-d672-4ed4-ad1c-52b006bbd6ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "669f4cdb-d43e-47db-b8e6-cc626211de18") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ec5e087b-6659-4987-9f4a-8311bbead748") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8fac460a-23da-4cd5-88be-6dffc0a1b214") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dbac39c1-a9cc-4a78-9980-a4c16703152a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5effda4f-f509-4c42-bf3f-632077643ed1") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b05881f-fd8b-467f-9e47-bb931760b409") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8a6a09bb-dae5-40b7-b79e-c07414b00499") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b6e350ee-a378-494e-8889-b8052537587a") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6175ca60-6eae-402d-8ea2-48515c57efa7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1f60cc2-0ba9-4719-820c-00482f94a805") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "594ff60f-eae3-4574-9fc1-53c070ce0f54") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49ff95ad-c1fa-4f90-8913-d0255c4b34a3") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95ac8600-4d6f-48f8-bb6e-3bfbacbd1940") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49b4523e-7bc7-49db-897f-50c75ac49acc") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d7d2c548-36e3-40e1-921f-b92e36f1ab52") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ca1276cc-13e3-4bce-9045-c5bf740a6a54") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "TEMP2_READ") (pintype "passive") (uuid "5bddfc07-560c-4a11-b3eb-12674814acc8") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "ADC_REF") (pintype "passive") (uuid "fbeb655e-9d0f-49be-b27d-2fd6064032fa") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:IND-SMD_L7.2-W6.6_GPSR07X0" (layer "F.Cu") (uuid "c5fc9945-4b28-45f3-8271-440c148b56b1") (at 181.95 111 -90) (property "Reference" "L1" (at 0.05 4.1 -90) (layer "F.SilkS") (uuid "77bfe553-aeef-4953-88bb-1bdab58df188") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uH" (at 0 4.127 -90) (layer "F.Fab") (uuid "ce67e0be-735f-4164-ba38-3051b720f321") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:IND-SMD_L7.2-W6.6_GPSR07X0" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "0d6d41ef-9431-4f4a-ad5d-3124387f4e0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "2182fa3e-48cb-4b90-bf1e-e05b9dc57670") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Description" "Inductor, small symbol" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "166225cd-161f-4cae-918c-7a7e87321594") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5189958" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "01e163fc-dae0-476c-80ed-15b09a203c6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "SHOU HAN" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7a030bae-73dd-4a35-afff-d25d09cef5da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CYA0630-10UH" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6cd891a7-e59b-40bb-9ed9-7d04c12df088") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a98078eb-5406-4824-8d1a-6380e744ea05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d3a8e27d-f3ee-459a-8505-357f8615a4a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1b589b07-c4df-4ad4-bb8b-1dc9f58a7aa3") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (fp_line (start -3.3 3.3) (end 3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "d8664c80-a826-4a9c-90b3-e332f90796da") ) (fp_line (start -3.3 1.981) (end -3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "ef227609-d464-43bd-b756-5b3493c9ccfc") ) (fp_line (start 3.3 1.981) (end 3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "02f392c2-2153-47bc-b126-dd7f679d9783") ) (fp_line (start -3.3 -3.3) (end -3.3 -1.981) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "8cc86070-711b-47d7-a9c4-3329e68552ac") ) (fp_line (start -3.3 -3.3) (end 3.3 -3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "44fe8270-5d96-4e77-a718-5fbf2e22e0a5") ) (fp_line (start 3.3 -3.3) (end 3.3 -1.981) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "d45c3784-b040-4ad8-ab5e-69b2ee31baec") ) (fp_poly (pts (xy -1.9 1.5) (xy -3.6 1.5) (xy -3.6 -1.5) (xy -1.9 -1.5) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "196a6efc-df5a-40e2-b3f9-54391f0f89c1") ) (fp_poly (pts (xy 1.9 -1.5) (xy 3.6 -1.5) (xy 3.6 1.5) (xy 1.9 1.5) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "2e4323d6-55a5-4fe2-b37d-f73bacf9b5ff") ) (fp_line (start -3.25 3.25) (end -3.25 -3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "a1afb391-0bc9-4f2e-9bb5-ac1b87bade90") ) (fp_line (start 3.25 3.25) (end -3.25 3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "1075da22-fa67-4e76-ab71-07b5aedc012c") ) (fp_line (start -3.25 -3.25) (end 3.25 -3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "bd71f6ac-0498-4fc4-9587-1f9b621faf50") ) (fp_line (start 3.25 -3.25) (end 3.25 3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "2c7fc7f6-18a6-4e33-ae93-e9d7981349b0") ) (fp_poly (pts (xy -3.54 3.25) (xy -3.557574 3.207574) (xy -3.6 3.19) (xy -3.642426 3.207574) (xy -3.66 3.25) (xy -3.642426 3.292426) (xy -3.6 3.31) (xy -3.557574 3.292426) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.3") (uuid "2956b4b4-ecf6-440b-a9e7-0d3a3c6dc7a8") ) (pad "1" smd rect (at -2.85 0 270) (size 2.35 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 56 "Net-(U2-SW)") (pintype "passive") (uuid "3a428610-a95a-4390-9ad8-0f520545a9ef") ) (pad "2" smd rect (at 2.85 0 270) (size 2.35 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 82 "Net-(C10-Pad1)") (pintype "passive") (uuid "1e9492af-5405-4089-ad13-3737acd0976d") ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "c62cedc1-9209-414a-bd7b-08f3cafd00d4") (at 184.65 82.025 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D2" (at 2.475 0 0) (layer "F.SilkS") (uuid "4df99948-8eba-4cef-8487-6bd0f197008b") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "4292337a-71dd-4710-8d1d-6253d6c2f242") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4c91f066-992d-49b5-b486-73c1ae265cec") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5ccf7cff-3d9c-44c4-92bb-7e797739a09a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d7d99694-85d9-4123-aca2-60a8830f8de5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a47ba177-c79c-43ea-98cd-befc7ea7fda4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a49d0771-c654-45b9-97ef-1ddc915d7abb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4bf426fd-983e-415f-8934-49ee0cb7e780") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b0d19272-a418-4f23-91f9-843bbeae649c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "643dcc3e-253b-4978-8993-7572e5862572") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d77ff1b6-9617-4014-b855-cd40cebac436") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "19a10e7e-2769-416d-88c6-f2330e3c1a1b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/8853a3b1-5c85-4113-8308-4cbefb00b424") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "808d2e21-3e9e-4d51-b3ae-bdaac23dec77") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f5630629-7701-44e4-913f-2d768aace1ed") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b4a7ebb1-1977-42eb-9620-865b8750e3da") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fb9b92eb-ed45-4ef8-9816-f43da7718eb4") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2a1823ad-f7b6-4bdb-b3ac-7e167dcf5095") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "78c830f2-1cca-401e-b0f9-1670a9bc71f5") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e467aac1-6602-4b86-90ae-6acde06592dc") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8aac5a2-11af-4f0b-b2ca-8ed4b66ddeef") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cc054b0a-a2c7-4e77-ac3e-97cd1983c10c") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6bb46848-2139-43db-813e-d43e74ed5104") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "282ec603-7225-4d31-a251-36752ffc2a8f") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7eaf29b9-bdb9-48ae-86b6-9882426882da") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "67cca6b0-4aee-49bb-8f50-2653ce065494") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "bbe360ac-f9d4-44c9-b0fd-5521c17379e3") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 76 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (uuid "5f5b421e-231a-47eb-9da7-015689d35108") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c6755a81-7c14-4c1b-9e7c-b1323e38f892") (at 159.78 86.2 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C23" (at 3.2475 -0.064 90) (layer "F.SilkS") (uuid "ae06b4d4-72e4-4e29-98ad-11e57e87899e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "011cab22-68aa-4c45-ab92-06552063a2e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "34627907-e0af-443b-8bcd-cb55879fc682") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "09c8529d-0fbd-470a-a2e8-a766bfd3fd4d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e7032be1-11f3-4767-9fd3-d792582983c8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 52.25 240.25 0) (layer "F.Fab") (hide yes) (uuid "1b8e6c1b-2f3a-44bf-b727-9aadf66c768d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f096a013-f58c-4dff-b2fa-a6d77ab04d74") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "694460dd-b308-42cc-b50b-222c1ed987a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b3f03d87-ed3f-41c2-82a0-2dc899c3d974") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B102KB8NNNC" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a5f6980a-9af8-41de-b85c-e5d5bd913773") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "93832fad-9f33-4e1f-8a23-58064c8c27f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6bef7315-ccdf-4ac6-bbc4-ac4108dfec89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "96577cf1-e32e-46e5-ba4e-5ef33ea4959f") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb17f05b-ac69-42d3-9b93-895933e5301f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "628ee0c2-abf6-4c1d-b791-ae3136b84597") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "175bdce1-a187-483d-acab-9c349af452aa") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12d54952-1234-444b-95ff-fafadfec8a06") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "652cb423-0682-4628-a9a0-266c7b856bc9") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0e3ad6fa-1685-4cfb-8a6d-aad2c696af0c") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64500ebb-cc8d-425e-9f80-ea3a02687a7e") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f142c963-3f1e-4a14-ace4-1292a78291d4") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "12f92547-cb52-46d6-91a7-85969c2c50dd") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d8be6ea3-cb8d-4299-bbe4-d1b98059eab7") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "cef37967-c1e8-4756-b433-b834b969af83") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "98206cb8-652b-4f78-880e-b430d7a3b7d4") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c7efe77d-9d18-4131-856c-a7d232549585") (at 115.63 80.1 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D14" (at -3.1328 0 90) (layer "F.SilkS") (uuid "3f11939c-842d-4207-970d-13ad552e47a4") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "0b800890-4845-46db-955f-06eb2bb6289a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f0d47d01-2b4e-4a03-ad6a-3d3b838c920b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6db3b769-f4f2-4375-b0a9-71d30fc6a824") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "36927295-15b5-4ad0-9da2-06a68383e320") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e17a35b-1f23-4768-b97a-26824fe17cb7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a3418aa-4f81-431a-a4b3-5cc48d8bed1d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e1e0f99d-4916-4c16-b56e-ebef8108e5fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Brightking" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62380aa0-a97e-4cf2-a901-7875e1a7df48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fea7efcd-2031-4e9d-a2cf-27e78dcbde1b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8cde9a00-19a4-4da7-b469-95b37c36e51f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "91edb605-b612-4349-a580-920a66ccb218") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/ca2a012a-60f2-4f1c-b957-9a7b568e167e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "770b7fc9-4d04-47b7-97ca-91e25bfaebfa") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4fcf5ae-9190-4505-a401-d288fb9b80c1") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9846a270-996f-48b7-8bcb-2519f061807e") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1af1a439-1e38-4342-9ed4-74bb1583479b") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4b10bd51-7600-49be-a242-a23e072bde16") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa50178c-8fd7-4a70-9538-f2128d2657cb") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3ffe6935-069c-4f73-ada1-0d758a87550a") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b87eec61-17ee-4272-8f35-a224b76254b7") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb6df94a-a35d-4c30-ad4b-a3b2cd0ba7f4") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ae01293-bf8b-4c94-bf46-c365514b88b3") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9416439-b7cc-4e7d-a4fc-9c7922b8661b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c2ab407-a69c-41ac-8080-5f3bffcdee70") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e9ce152-f980-4a77-832b-11048274032c") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3c0a4726-0f8c-449b-9a2a-db42259a5397") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe01dc8a-1e30-4635-ad93-3d203b874f77") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8ade54a-5a62-4027-87b5-245376a9245c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b14a3d5-638a-4cc5-ab01-8c5874f8943a") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "8cd605d1-2011-40ac-86e3-4e26965a6505") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5ee189a8-234f-4885-a5f0-5947636a41c3") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 15 "SCL") (pinfunction "A2") (pintype "passive") (uuid "6097cb91-2834-4b01-9091-96b1a43a3d66") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c8ad63a6-4c52-4182-9d59-39ad3082bcd7") (at 144.6 118.7 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R1" (at -0.2 1.4 90) (layer "F.SilkS") (uuid "573de23d-e526-477e-a72a-9eb8cea12e76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 90) (layer "F.Fab") (uuid "b7a5b853-f019-48f1-8836-f05256e44a29") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "856a5235-4b0d-4a68-aa4a-b207a056fefd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ff97ea9b-afec-45ed-b6ff-6e4785435ac2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3496e539-78ac-43d5-b71e-51cab2cd7eb8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 127.4 124.4 90) (layer "F.Fab") (hide yes) (uuid "c82b218e-2851-4a3e-813c-3ae415367ebd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7681158-6377-4ba4-aa37-9c3d07370d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b09b5ace-24a1-4afd-9af7-48d2f80b9820") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a0f6e701-b9c9-4210-9893-f78c2e8f339a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-071KL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d91696fa-b18b-486b-8bd4-1e9355e44039") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5f2f9ca-34f3-47e3-a1e7-5b4d99ab0b54") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7b83a332-1902-4ba1-b417-f093e2f06f2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/acf00741-1e6b-4573-832b-01221b598fad") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a63ce18a-8399-41c1-98aa-d32c98ea5148") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c30024b3-ca8f-4cf2-bee1-a225a9401c2d") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "08021255-c0ce-4ea6-94c6-cbc608a84a26") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "461d8141-48a1-4d22-8eb9-72b2b026f6da") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "44ab65a2-41f4-41c9-93dd-f7f24a1be5ea") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "42c5851a-2974-4603-9190-0cfdf7e064a8") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db6a7e2b-5ae8-4885-a38d-eeed3eda516d") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c195e39-7f05-43a8-8261-c6ceeae6e323") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3412ffd6-d5fc-4d66-abb3-38cc371e6a9d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac41e450-3655-4937-b3d0-4ec11e1a3f5d") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "c878f580-6b89-40c2-8fee-debc35bcd782") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 32 "RESET") (pintype "passive") (uuid "e519d360-47d0-49e5-9ff4-acc897e85ecb") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 33 "Net-(R1-Pad2)") (pintype "passive") (uuid "b343a24e-83e7-4262-b2b5-25bd957fe8de") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c8e43365-c2d3-4be5-8372-a9be3f60711a") (at 165.3968 81.1625 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D21" (at 0 -1.85 0) (layer "F.SilkS") (uuid "cc3291ea-eef0-40e6-b2e4-0ff165286f5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "26c43fbb-0465-4d0b-8df4-d0130942f9bb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d185d5bc-9780-4b08-90be-c41607399315") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e01ca9d5-0a3b-46db-bc72-dde59756a82f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d7d274e3-7f33-4a7e-b871-0965d115aee6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f5d1249d-27eb-4bbb-a399-74b06917fd8f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9f7c711c-df75-478a-bf00-9f17251b0d2f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f27b79b2-af54-4015-9cfb-7dbe383eab90") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "ElecSuper" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dc4ed48a-9348-4254-8b10-43619beac594") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "UDD32C12L01-ES" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4fc8ca70-45b3-47f8-960e-bc5925be376c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "637bbdc5-b114-4d7d-83fc-9ffefc5a63dc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "C502541" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "57750ccc-237e-4601-b026-94a2dd52efea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/6702d47f-0b12-4453-a9e7-aa625d400c1c") (sheetname "Fan1") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7f9dc555-5f5e-4295-8aa1-4490d88301ca") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4197d86b-17de-4876-993e-ae72b22206e8") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "22b8bd72-a540-431e-89fc-1a65c600080a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76caab16-6066-4573-be0f-7d131a4781c8") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "946c1eb0-8f75-422a-ba7b-3a45527d21d9") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6546c1b1-6587-4553-a0db-e3fb5ebf8a0c") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f19b615b-d8ab-4ee4-a1d6-45a73ea4037c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb5fb3ff-8495-4045-9830-abfe2a07baa9") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fb67403-1274-4a7f-8ded-e52aa1727ad2") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b2bb472-459e-4b11-a922-a440fcefa88e") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b97dd0da-c659-4b32-b5d4-bc3c6fc340f5") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54960c8c-4b7b-4ce8-9e78-60ba20bf0b27") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a5a28d47-003c-4de8-9390-c8c9b64a98d5") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9b7dc50-4f63-4143-abfa-0b9ed173bdf7") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bf5ece68-fc12-4e10-befc-fd27cc0e07a4") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e1962735-3b90-4a2b-abfa-5fa35bb09ae1") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a10a390-7e80-4e75-9de6-0ad33ab3f594") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "ca500e46-7c86-4081-b7ee-e3ea27811b14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "c7aa4267-23bb-43f9-88e7-2f80b8afef53") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 23 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "9189d364-e83f-4b2e-b203-73684c6a8d7c") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "cffab4f5-85f3-407b-a649-74bb72009e9b") (at 146.88 86.1375 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R43" (at 3.2175 -0.094 90) (layer "F.SilkS") (uuid "73012483-c8b8-4c17-a6d8-97a2d51a1e9f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "cafcac04-02d9-4823-ba9e-d0733b3367ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f3735633-e251-4626-8ba2-405ce4f550d8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "edc258d9-ba02-4068-a885-6c5625e18c2a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7ebfc062-26af-4b04-a31b-d8ef1edad79d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 61.75 227.25 0) (layer "F.Fab") (hide yes) (uuid "6fd27ed8-e58b-4d02-9220-74995c18cc55") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf88b610-0ce3-466c-91e1-713811393896") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "52cd93db-a22c-4f40-8a1c-718bdd3c5147") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2cee5b72-df46-429a-b3ce-e5c307030f53") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "14bbddc9-d276-4fc8-9cca-3b6e2439853f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "31fd83bb-2e84-467d-b3c0-e70f9ca87594") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9a40a710-ba1c-473f-8abb-11cab9fd3658") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f9bde5c-7661-40cd-af39-cf145fb368c0") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "34b8d1f9-c00e-4926-a8f5-37e2d8dcc4d4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2f29bef5-026e-4c30-b42a-c4543fdf8565") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "404bcfb5-c4be-4090-a242-7e9169104b28") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82517be3-c909-4f2f-a438-7b58d1013cc3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c8b89b48-619c-45de-8782-1a73c4c90bb0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ef917de-dccf-4db9-bb59-ea9476f2fa96") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "44d6a17e-9cd0-482e-9e21-d5faa58565e7") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f82fe7ed-f664-4154-8494-0d5e9234b415") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94f661ef-cca3-4593-8673-951aa7133e97") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "722f8e1d-62a1-4c54-a1a6-a946b6269df1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN2_TACHO_READ") (pintype "passive") (uuid "ee4ebe8d-b89a-4c9e-bea4-c4003ecd784c") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "af5e4156-de12-4c78-a091-15c0c21f82d9") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "d162cdf7-ae32-417a-828f-b8bb6c98dc12") (at 154.28 94.3125 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R54" (at 3.2 0 90) (layer "F.SilkS") (uuid "e548cda6-22e0-4027-a6ca-4c544fcb244b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "DNF" (at 0 1.43 90) (layer "F.Fab") (uuid "8ced33dd-df4e-4a87-ac1c-67159babfc62") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "aecf3811-d5a3-40ec-8bbd-faee4a2503f6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e7358f0a-ff20-4119-b25c-13d81b11f7ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bc74ca3b-ba7d-4acb-bbe3-f41f518138f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "970fc097-6d17-48eb-be78-057b92f0ef7c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "596e6a3d-56d7-4bd4-83ec-f36ba483a4ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1d0e0d49-b47c-44fd-9d21-9d8f76e1f3fb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "UNI-ROYAL" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6df6f679-4125-4712-a88b-d525283e0932") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f6a22a6f-00cb-49f6-8dcf-5d159448a5a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "20a4b287-8d6a-495a-af9f-db5cc75ee263") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a45d033e-4a01-43bc-9018-f96873fd0484") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/68788af4-cd69-4bb0-8b00-fc6856411aae") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd dnp) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e5ed505d-42b6-47f4-9232-214464705dc8") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "13381e01-4f98-453a-8ca9-ef245e3378b1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfd8071c-3e5e-4631-897f-90a7aa14cd90") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b184630-1430-4d7e-9920-8b47682d6a37") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0362e5c4-0626-42f9-8828-a013b46ad015") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a08edd3-e0a9-4ec3-90d7-c953e4a9c59f") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8bee6659-ae3c-4f2b-86ea-b2538e3df616") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e44131b1-7c7f-4aed-a975-e67488606344") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5bbc68c6-a26a-43bc-82fd-5570cdf5800a") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "895ec607-2fbb-432a-bcc5-2b861ae68046") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "1b3b5070-f9bd-4999-97e6-9d04faa5f57e") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "b9eed783-ecc6-48e2-a630-e5a25f362060") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "Net-(U1-~{1OE})") (pintype "passive") (uuid "1c51a4b4-25bc-4ede-ad82-df11d34f837f") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (layer "F.Cu") (uuid "dcd43ccc-598c-47af-887a-29a8f1c661e1") (at 175.93 72.4 180) (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") (property "Reference" "J1" (at 2.4 -3.8 0) (layer "F.SilkS") (uuid "006a2bfe-6ff9-43ec-b9b2-b4c1e6316c2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "DC Power Input" (at 2.5 5.66 0) (layer "F.Fab") (uuid "1a7520aa-dd3c-461d-92ec-b1f9b753748b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c06e3b38-8a39-41c8-b632-daafc749321c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3266b2f-40e7-4852-95f0-0dac349b34d4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aa2fb48b-a972-45ae-90a2-b44aaf8f5118") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2bad8b94-98f0-4ae8-8c83-0a3de5a6e0b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1509679" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7255ec27-902b-4ef8-a892-0c2d420f3c86") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "651-1715022 " (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "455ba2e9-307a-4982-befb-7702cc7d51e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "JILN" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8d92824d-7d2b-4c6d-a605-e6254c9a0f9d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "JL301-50002U04" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09b18501-e255-47a9-9611-8035ab7cdd15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cc84f385-78eb-4930-98ad-2ceb716eae2a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "341eb1b0-b354-41e9-8df2-e76d80b938b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/32d11869-f2aa-448e-999e-866b16c452b4") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 7.56 -5.261) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "81f4a758-b841-4071-9b8e-fd8d32475b39") ) (fp_line (start 6.275 -1.069) (end 6.228 -1.023) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3b2b6b9-84aa-469a-a072-a18bb93af315") ) (fp_line (start 6.07 -1.275) (end 6.035 -1.239) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "56cf1bb1-2487-4f9c-b5f9-972de9eb63bb") ) (fp_line (start 3.966 1.239) (end 3.931 1.274) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b19d6cc8-8ccc-48d5-95da-da5786c4920e") ) (fp_line (start 3.773 1.023) (end 3.726 1.069) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "52b81d9b-c843-405d-ba51-1de9dd1529c5") ) (fp_line (start -2.56 4.66) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c76d183f-eb9e-4b39-ab40-23115b2eed1c") ) (fp_line (start -2.56 4.1) (end 7.56 4.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "37ad9294-353d-4571-bd6c-5d6d2ed7a418") ) (fp_line (start -2.56 2.6) (end 7.56 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c28a685-aa94-46b3-b3b5-bc9bc2d57850") ) (fp_line (start -2.56 -2.301) (end 7.56 -2.301) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cd76149d-0b91-4fa9-8f2d-b427d10330b1") ) (fp_line (start -2.56 -5.261) (end 7.56 -5.261) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c727522-8fef-4cb6-b73f-5016c9ee5895") ) (fp_line (start -2.56 -5.261) (end -2.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e5c8885b-c4b1-4529-8643-02b0bafa852e") ) (fp_line (start -2.8 4.9) (end -2.3 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7f51bb83-18a0-4ee8-99ee-8a81bed58322") ) (fp_line (start -2.8 4.16) (end -2.8 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4c143087-7708-44bf-a68d-abe5d32759df") ) (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e11ea18c-393b-4811-859d-8f1a30b0a252") ) (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "36e8e8ee-7a9c-4e1b-9b9a-56fc8239d806") ) (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8ea4206f-e94c-4802-8552-df8278c36392") ) (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7642ca78-75e1-443a-91cf-57cf9fbfb363") ) (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "341afb31-51f3-4965-b743-17c49447b6ca") ) (fp_circle (center 5 0) (end 6.68 0) (stroke (width 0.12) (type solid) ) (fill none) (layer "F.SilkS") (uuid "a968e83c-9b2d-4142-b040-b0f25c6fbbef") ) (fp_line (start 8 5.1) (end 8 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17ad16ab-3e1c-4ca4-a541-d13257a2d329") ) (fp_line (start 8 -5.71) (end -3 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2b7c4a7e-41b1-4809-a7a3-97508d582f9e") ) (fp_line (start -3 5.1) (end 8 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0e814a7f-21cf-4551-86ce-f5b772cd9795") ) (fp_line (start -3 -5.71) (end -3 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4a3ce250-e6ab-4520-9fbe-bf44b278a75c") ) (fp_line (start 7.5 4.6) (end -2 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5adeafd6-470f-410e-b9a0-2a619263e6f2") ) (fp_line (start 7.5 -5.2) (end 7.5 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fd63aa32-4fec-421c-9ca4-932f6dcb9dba") ) (fp_line (start 6.138 -0.955) (end 4.046 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e78f1b7e-df33-462d-a755-7198ebf9be11") ) (fp_line (start 5.955 -1.138) (end 3.863 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18b4954c-0ba9-4158-865e-4b44c5e9ce55") ) (fp_line (start 1.138 -0.955) (end -0.955 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38e06cfa-f35c-4a69-9f02-70b43bcd8346") ) (fp_line (start 0.955 -1.138) (end -1.138 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "524d3f13-4631-486a-8352-91c8d02a8c3b") ) (fp_line (start -2 4.6) (end -2.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c7848af6-d047-4c8f-9b48-4396695c210b") ) (fp_line (start -2.5 4.1) (end 7.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "10202d7b-6c51-417f-918e-fc9bf6e9c955") ) (fp_line (start -2.5 4.1) (end -2.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f74d484-8a96-4134-8829-8aac81ebe2d2") ) (fp_line (start -2.5 2.6) (end 7.5 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c826dc2a-ed1d-4f67-9532-450516c53389") ) (fp_line (start -2.5 -2.3) (end 7.5 -2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a9de157-de0d-4e0b-b072-eb9a37346b6b") ) (fp_line (start -2.5 -5.2) (end 7.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd06f74a-8d36-4eef-bb48-90600a57b88e") ) (fp_circle (center 5 0) (end 6.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "3b5724ca-53a2-43f5-8158-a77d1dfd44db") ) (fp_circle (center 0 0) (end 1.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "5582d68a-f84f-4614-b030-6d8bdf6cefd4") ) (fp_text user "${REFERENCE}" (at 2.5 3.2 0) (layer "F.Fab") (uuid "f19f170f-32be-483a-b7da-1ba50dec790e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 75 "Net-(D8-A2)") (pinfunction "Pin_1") (pintype "passive") (uuid "0eccd546-37eb-4b77-9298-3a395b2a6c39") ) (pad "2" thru_hole circle (at 5 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "ffb89047-0fc9-4cc7-afe3-e6228e4dd319") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "dd84530f-c5fe-45e5-8faf-e2719fcb14cd") (at 111.5 70.5 -90) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H3" (at 0 -4.2 90) (layer "F.SilkS") (hide yes) (uuid "fd1596d9-5937-4db3-950d-36e83808ce45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 90) (layer "F.Fab") (uuid "d5dfdb90-9c14-4b72-b7c7-e7a00255fd48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "17fe4ac1-6686-4f5c-853b-24b4984311c8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6bdf9632-473e-40d2-b866-622e8d845320") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "55add841-4bb1-4c66-b0f5-bd8732b3c49d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3574564-eb15-48bd-9bfb-d0b22e473c82") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a3b5d16-bb26-4645-9d2f-9639028d1ace") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eadb9e08-8bfd-40d4-a963-5c9c6ecc7d6b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2032187b-e551-4cb8-92d9-a8c01f2c2c0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6be6c611-6b11-4cd8-9266-c0042d85448b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3eee6bc-ed60-4981-814f-013ec533fd17") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e89c1b6-b8ed-42f4-a398-fae70f4177cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/63465697-0038-4a5a-931e-e383d18d8993") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "a053c383-6ca0-4029-be60-bcda1e5582b1") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "8905709c-aad6-41c8-82b6-6eee41e8cb52") ) (fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab") (uuid "6b731ae0-9629-4107-a66c-8273acabd2b3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6cd0efc8-34a3-4c8c-8a50-7d4de9c40642") ) (pad "1" thru_hole circle (at -1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d4342f0a-1a6f-4edb-8ae7-f313579ca662") ) (pad "1" thru_hole circle (at -1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "28a56824-c159-4d47-94c0-29b660a7f035") ) (pad "1" thru_hole circle (at 0 -2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bada44d3-adb8-4b9a-bb51-9b350738ceac") ) (pad "1" thru_hole circle (at 0 0 270) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "987d7c29-44df-4f2a-ad2b-029baeb3d59e") ) (pad "1" thru_hole circle (at 0 2.4 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d85ccb5c-b82f-4fde-b7d2-64ebd7a0162a") ) (pad "1" thru_hole circle (at 1.697056 -1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "0d068561-aeb9-4575-b23d-c698ec86d016") ) (pad "1" thru_hole circle (at 1.697056 1.697056 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "8d90da58-f912-41fc-984c-4322cde60d92") ) (pad "1" thru_hole circle (at 2.4 0 270) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "3f919bc1-0280-4a7d-8aba-f3b138bc128a") ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "dfff3463-763a-40c2-87aa-dbb671377316") (at 183.53 104.9375 90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C3" (at 0.0375 -1.4 90) (layer "F.SilkS") (uuid "2115f385-f36b-480a-a0a3-a3a1c1fdc47b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF 50V" (at 0 1.43 90) (layer "F.Fab") (uuid "462690f3-2bf1-4dc9-a0f6-b6eeb2d8fdf3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d974242c-71b0-49ed-a31a-edd100553077") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a4d0ca0-c92d-4d08-8593-b3c96f54b77b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3bbc8024-8aa8-4e9e-9430-64e474e54301") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "05a2210b-d334-4621-9d5b-20db30d7e6fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e5b8b330-4f89-48ad-8e84-731da1d9ca0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "228d08fd-fec9-47f1-a881-204b3ee621ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f00166df-1b51-4ef3-99ec-b83e9091d725") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7a51456a-f3bb-4302-89be-e4c9f6fd4394") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "44026caa-cbff-4554-91fb-0cde993381e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bad0a4d7-e461-48f1-8701-ecc3827a99c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/64a1c4bb-f61a-4b61-9178-939a4d34c52f") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9523d7d4-00ef-415e-85a2-6ceaf1a7e6f8") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e09dd52a-c8c7-4717-baf4-ed5005c6cb03") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe8fdbd8-808e-42ef-9e24-f7dfe0f81ae5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0a66fe40-80d8-4dea-972c-932580fbc9a2") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5cb1c64-ad12-47fa-9c2a-6fc7020b35cc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e8f20847-1272-4a1a-aa5e-1520e90d512d") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49f04458-f10d-434d-a612-a1814f1be1ac") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "11fdc3bc-a284-461d-803d-4afdc3fc7b94") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7aaca866-55c0-425b-99f6-a0fbcba85905") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2806cb43-db54-408a-923d-bcebbf9c8a41") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b912b12c-a701-4d96-a05e-19e6e5971cca") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "Net-(U2-SW)") (pintype "passive") (uuid "29b3487a-ef9a-468e-9242-f180278852ef") ) (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "Net-(U2-BST)") (pintype "passive") (uuid "2d7b0690-33c1-449b-a37a-35e226ad08c4") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" (layer "F.Cu") (uuid "e4f2baa9-a0e3-4ddf-b2eb-a7720fc7bdca") (at 149.3 104.35) (descr "Open Source Hardware Logo") (tags "Logo OSHW") (property "Reference" "G2" (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "48f67e94-b525-48f1-944e-cab15fbf2e0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 0.75 0 0) (layer "F.Fab") (hide yes) (uuid "44bc10df-d9d7-44cb-a373-4b60128d892c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "472aceee-a502-4d22-8344-abf23e51d371") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "adc06d90-3173-446b-bb13-c10331107f23") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Open Hardware logo, small" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ada7a460-8e4b-43e2-8976-f7d15b2f8e02") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1bc055da-2b64-42c8-b52c-9da97ffe278d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "86f5cc2b-9e4f-4b6d-95a3-9b34cb4ffd8e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7b143e2f-8cae-4bf3-93b2-b3494bbb1f6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6ad41a76-8b91-450c-92ba-3958cfe49b25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/876ade33-6b93-4690-a10c-6369295dc457") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr exclude_from_pos_files) (fp_poly (pts (xy 1.79946 1.45803) (xy 1.842711 1.471245) (xy 1.870558 1.487941) (xy 1.879629 1.501145) (xy 1.877132 1.516797) (xy 1.860931 1.541385) (xy 1.847232 1.5588) (xy 1.818992 1.590283) (xy 1.797775 1.603529) (xy 1.779688 1.602664) (xy 1.726035 1.58901) (xy 1.68663 1.58963) (xy 1.654632 1.605104) (xy 1.64389 1.614161) (xy 1.609505 1.646027) (xy 1.609505 2.062179) (xy 1.471188 2.062179) (xy 1.471188 1.458614) (xy 1.540347 1.458614) (xy 1.581869 1.460256) (xy 1.603291 1.466087) (xy 1.609502 1.477461) (xy 1.609505 1.477798) (xy 1.612439 1.489713) (xy 1.625704 1.488159) (xy 1.644084 1.479563) (xy 1.682046 1.463568) (xy 1.712872 1.453945) (xy 1.752536 1.451478) (xy 1.79946 1.45803) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "06075d00-934b-40e6-8ad5-4f502663e923") ) (fp_poly (pts (xy 1.635255 2.401486) (xy 1.683595 2.411015) (xy 1.711114 2.425125) (xy 1.740064 2.448568) (xy 1.698876 2.500571) (xy 1.673482 2.532064) (xy 1.656238 2.547428) (xy 1.639102 2.549776) (xy 1.614027 2.542217) (xy 1.602257 2.537941) (xy 1.55427 2.531631) (xy 1.510324 2.545156) (xy 1.47806 2.57571) (xy 1.472819 2.585452) (xy 1.467112 2.611258) (xy 1.462706 2.658817) (xy 1.459811 2.724758) (xy 1.458631 2.80571) (xy 1.458614 2.817226) (xy 1.458614 3.017822) (xy 1.320297 3.017822) (xy 1.320297 2.401683) (xy 1.389456 2.401683) (xy 1.429333 2.402725) (xy 1.450107 2.407358) (xy 1.457789 2.417849) (xy 1.458614 2.427745) (xy 1.458614 2.453806) (xy 1.491745 2.427745) (xy 1.529735 2.409965) (xy 1.58077 2.401174) (xy 1.635255 2.401486) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "fd93fa7d-7116-4264-82ae-2881c1c5ce4c") ) (fp_poly (pts (xy -0.993356 2.40302) (xy -0.974539 2.40866) (xy -0.968473 2.421053) (xy -0.968218 2.426647) (xy -0.967129 2.44223) (xy -0.959632 2.444676) (xy -0.939381 2.433993) (xy -0.927351 2.426694) (xy -0.8894 2.411063) (xy -0.844072 2.403334) (xy -0.796544 2.40274) (xy -0.751995 2.408513) (xy -0.715602 2.419884) (xy -0.692543 2.436088) (xy -0.687996 2.456355) (xy -0.690291 2.461843) (xy -0.70702 2.484626) (xy -0.732963 2.512647) (xy -0.737655 2.517177) (xy -0.762383 2.538005) (xy -0.783718 2.544735) (xy -0.813555 2.540038) (xy -0.825508 2.536917) (xy -0.862705 2.529421) (xy -0.888859 2.532792) (xy -0.910946 2.544681) (xy -0.931178 2.560635) (xy -0.946079 2.5807) (xy -0.956434 2.608702) (xy -0.963029 2.648467) (xy -0.966649 2.703823) (xy -0.968078 2.778594) (xy -0.968218 2.82374) (xy -0.968218 3.017822) (xy -1.09396 3.017822) (xy -1.09396 2.401683) (xy -1.031089 2.401683) (xy -0.993356 2.40302) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "11d54ff2-ba93-4234-aca0-62ca643b335b") ) (fp_poly (pts (xy 0.993367 1.654342) (xy 0.994555 1.746563) (xy 0.998897 1.81661) (xy 1.007558 1.867381) (xy 1.021704 1.901772) (xy 1.0425 1.922679) (xy 1.07111 1.933) (xy 1.106535 1.935636) (xy 1.143636 1.932682) (xy 1.171818 1.921889) (xy 1.192243 1.90036) (xy 1.206079 1.865199) (xy 1.214491 1.81351) (xy 1.218643 1.742394) (xy 1.219703 1.654342) (xy 1.219703 1.458614) (xy 1.35802 1.458614) (xy 1.35802 2.062179) (xy 1.288862 2.062179) (xy 1.24717 2.060489) (xy 1.225701 2.054556) (xy 1.219703 2.043293) (xy 1.216091 2.033261) (xy 1.201714 2.035383) (xy 1.172736 2.04958) (xy 1.106319 2.07148) (xy 1.035875 2.069928) (xy 0.968377 2.046147) (xy 0.936233 2.027362) (xy 0.911715 2.007022) (xy 0.893804 1.981573) (xy 0.881479 1.947458) (xy 0.873723 1.901121) (xy 0.869516 1.839007) (xy 0.86784 1.757561) (xy 0.867624 1.694578) (xy 0.867624 1.458614) (xy 0.993367 1.458614) (xy 0.993367 1.654342) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "9f6026e1-8125-43ea-bb38-d99e2ddf9043") ) (fp_poly (pts (xy -0.754012 1.469002) (xy -0.722717 1.48395) (xy -0.692409 1.505541) (xy -0.669318 1.530391) (xy -0.6525 1.562087) (xy -0.641006 1.604214) (xy -0.633891 1.660358) (xy -0.630207 1.734106) (xy -0.629008 1.829044) (xy -0.628989 1.838985) (xy -0.628713 2.062179) (xy -0.76703 2.062179) (xy -0.76703 1.856418) (xy -0.767128 1.780189) (xy -0.767809 1.724939) (xy -0.769651 1.686501) (xy -0.773233 1.660706) (xy -0.779132 1.643384) (xy -0.787927 1.630368) (xy -0.80018 1.617507) (xy -0.843047 1.589873) (xy -0.889843 1.584745) (xy -0.934424 1.602217) (xy -0.949928 1.615221) (xy -0.96131 1.627447) (xy -0.969481 1.64054) (xy -0.974974 1.658615) (xy -0.97832 1.685787) (xy -0.980051 1.72617) (xy -0.980697 1.783879) (xy -0.980792 1.854132) (xy -0.980792 2.062179) (xy -1.119109 2.062179) (xy -1.119109 1.458614) (xy -1.04995 1.458614) (xy -1.008428 1.460256) (xy -0.987006 1.466087) (xy -0.980795 1.477461) (xy -0.980792 1.477798) (xy -0.97791 1.488938) (xy -0.965199 1.487674) (xy -0.939926 1.475434) (xy -0.882605 1.457424) (xy -0.817037 1.455421) (xy -0.754012 1.469002) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "fb47e183-bcef-4b2c-af51-a85bc00f9c04") ) (fp_poly (pts (xy 2.217226 1.46388) (xy 2.29008 1.49483) (xy 2.313027 1.509895) (xy 2.342354 1.533048) (xy 2.360764 1.551253) (xy 2.363961 1.557183) (xy 2.354935 1.57034) (xy 2.331837 1.592667) (xy 2.313344 1.60825) (xy 2.262728 1.648926) (xy 2.22276 1.615295) (xy 2.191874 1.593584) (xy 2.161759 1.58609) (xy 2.127292 1.58792) (xy 2.072561 1.601528) (xy 2.034886 1.629772) (xy 2.011991 1.675433) (xy 2.001597 1.741289) (xy 2.001595 1.741331) (xy 2.002494 1.814939) (xy 2.016463 1.868946) (xy 2.044328 1.905716) (xy 2.063325 1.918168) (xy 2.113776 1.933673) (xy 2.167663 1.933683) (xy 2.214546 1.918638) (xy 2.225644 1.911287) (xy 2.253476 1.892511) (xy 2.275236 1.889434) (xy 2.298704 1.903409) (xy 2.324649 1.92851) (xy 2.365716 1.97088) (xy 2.320121 2.008464) (xy 2.249674 2.050882) (xy 2.170233 2.071785) (xy 2.087215 2.070272) (xy 2.032694 2.056411) (xy 1.96897 2.022135) (xy 1.918005 1.968212) (xy 1.894851 1.930149) (xy 1.876099 1.875536) (xy 1.866715 1.806369) (xy 1.866643 1.731407) (xy 1.875824 1.659409) (xy 1.894199 1.599137) (xy 1.897093 1.592958) (xy 1.939952 1.532351) (xy 1.997979 1.488224) (xy 2.066591 1.461493) (xy 2.141201 1.453073) (xy 2.217226 1.46388) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c8e516e0-1d2c-4384-bd2a-d636d24f216c") ) (fp_poly (pts (xy 0.610762 1.466055) (xy 0.674363 1.500692) (xy 0.724123 1.555372) (xy 0.747568 1.599842) (xy 0.757634 1.639121) (xy 0.764156 1.695116) (xy 0.766951 1.759621) (xy 0.765836 1.824429) (xy 0.760626 1.881334) (xy 0.754541 1.911727) (xy 0.734014 1.953306) (xy 0.698463 1.997468) (xy 0.655619 2.036087) (xy 0.613211 2.061034) (xy 0.612177 2.06143) (xy 0.559553 2.072331) (xy 0.497188 2.072601) (xy 0.437924 2.062676) (xy 0.41504 2.054722) (xy 0.356102 2.0213) (xy 0.31389 1.977511) (xy 0.286156 1.919538) (xy 0.270651 1.843565) (xy 0.267143 1.803771) (xy 0.26759 1.753766) (xy 0.402376 1.753766) (xy 0.406917 1.826732) (xy 0.419986 1.882334) (xy 0.440756 1.917861) (xy 0.455552 1.92802) (xy 0.493464 1.935104) (xy 0.538527 1.933007) (xy 0.577487 1.922812) (xy 0.587704 1.917204) (xy 0.614659 1.884538) (xy 0.632451 1.834545) (xy 0.640024 1.773705) (xy 0.636325 1.708497) (xy 0.628057 1.669253) (xy 0.60432 1.623805) (xy 0.566849 1.595396) (xy 0.52172 1.585573) (xy 0.475011 1.595887) (xy 0.439132 1.621112) (xy 0.420277 1.641925) (xy 0.409272 1.662439) (xy 0.404026 1.690203) (xy 0.402449 1.732762) (xy 0.402376 1.753766) (xy 0.26759 1.753766) (xy 0.268094 1.69758) (xy 0.285388 1.610501) (xy 0.319029 1.54253) (xy 0.369018 1.493664) (xy 0.435356 1.463899) (xy 0.449601 1.460448) (xy 0.53521 1.452345) (xy 0.610762 1.466055) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "ed2c1b85-dbe6-4212-8648-72e036b0c091") ) (fp_poly (pts (xy 0.281524 2.404237) (xy 0.331255 2.407971) (xy 0.461291 2.797773) (xy 0.481678 2.728614) (xy 0.493946 2.685874) (xy 0.510085 2.628115) (xy 0.527512 2.564625) (xy 0.536726 2.53057) (xy 0.571388 2.401683) (xy 0.714391 2.401683) (xy 0.671646 2.536857) (xy 0.650596 2.603342) (xy 0.625167 2.683539) (xy 0.59861 2.767193) (xy 0.574902 2.841782) (xy 0.520902 3.011535) (xy 0.462598 3.015328) (xy 0.404295 3.019122) (xy 0.372679 2.914734) (xy 0.353182 2.849889) (xy 0.331904 2.7784) (xy 0.313308 2.715263) (xy 0.312574 2.71275) (xy 0.298684 2.669969) (xy 0.286429 2.640779) (xy 0.277846 2.629741) (xy 0.276082 2.631018) (xy 0.269891 2.64813) (xy 0.258128 2.684787) (xy 0.242225 2.736378) (xy 0.223614 2.798294) (xy 0.213543 2.832352) (xy 0.159007 3.017822) (xy 0.043264 3.017822) (xy -0.049263 2.725471) (xy -0.075256 2.643462) (xy -0.098934 2.568987) (xy -0.11918 2.505544) (xy -0.134874 2.456632) (xy -0.144898 2.425749) (xy -0.147945 2.416726) (xy -0.145533 2.407487) (xy -0.126592 2.403441) (xy -0.087177 2.403846) (xy -0.081007 2.404152) (xy -0.007914 2.407971) (xy 0.039957 2.58401) (xy 0.057553 2.648211) (xy 0.073277 2.704649) (xy 0.085746 2.748422) (xy 0.093574 2.77463) (xy 0.09502 2.778903) (xy 0.101014 2.77399) (xy 0.113101 2.748532) (xy 0.129893 2.705997) (xy 0.150003 2.64985) (xy 0.167003 2.59913) (xy 0.231794 2.400504) (xy 0.281524 2.404237) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "75cd42d5-6fc3-4f22-a77a-ece5565d3343") ) (fp_poly (pts (xy -2.538261 1.465148) (xy -2.472479 1.494231) (xy -2.42254 1.542793) (xy -2.388374 1.610908) (xy -2.369907 1.698651) (xy -2.368583 1.712351) (xy -2.367546 1.808939) (xy -2.380993 1.893602) (xy -2.408108 1.962221) (xy -2.422627 1.984294) (xy -2.473201 2.031011) (xy -2.537609 2.061268) (xy -2.609666 2.073824) (xy -2.683185 2.067439) (xy -2.739072 2.047772) (xy -2.787132 2.014629) (xy -2.826412 1.971175) (xy -2.827092 1.970158) (xy -2.843044 1.943338) (xy -2.85341 1.916368) (xy -2.859688 1.882332) (xy -2.863373 1.83431) (xy -2.864997 1.794931) (xy -2.865672 1.759219) (xy -2.739955 1.759219) (xy -2.738726 1.79477) (xy -2.734266 1.842094) (xy -2.726397 1.872465) (xy -2.712207 1.894072) (xy -2.698917 1.906694) (xy -2.651802 1.933122) (xy -2.602505 1.936653) (xy -2.556593 1.917639) (xy -2.533638 1.896331) (xy -2.517096 1.874859) (xy -2.507421 1.854313) (xy -2.503174 1.827574) (xy -2.50292 1.787523) (xy -2.504228 1.750638) (xy -2.507043 1.697947) (xy -2.511505 1.663772) (xy -2.519548 1.64148) (xy -2.533103 1.624442) (xy -2.543845 1.614703) (xy -2.588777 1.589123) (xy -2.637249 1.587847) (xy -2.677894 1.602999) (xy -2.712567 1.634642) (xy -2.733224 1.68662) (xy -2.739955 1.759219) (xy -2.865672 1.759219) (xy -2.866479 1.716621) (xy -2.863948 1.658056) (xy -2.856362 1.614007) (xy -2.842681 1.579248) (xy -2.821865 1.548551) (xy -2.814147 1.539436) (xy -2.765889 1.494021) (xy -2.714128 1.467493) (xy -2.650828 1.456379) (xy -2.619961 1.455471) (xy -2.538261 1.465148) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "95cf04c8-cf7f-4686-89f7-3c8f1842fd41") ) (fp_poly (pts (xy -0.201188 3.017822) (xy -0.270346 3.017822) (xy -0.310488 3.016645) (xy -0.331394 3.011772) (xy -0.338922 3.001186) (xy -0.339505 2.994029) (xy -0.340774 2.979676) (xy -0.348779 2.976923) (xy -0.369815 2.985771) (xy -0.386173 2.994029) (xy -0.448977 3.013597) (xy -0.517248 3.014729) (xy -0.572752 3.000135) (xy -0.624438 2.964877) (xy -0.663838 2.912835) (xy -0.685413 2.85145) (xy -0.685962 2.848018) (xy -0.689167 2.810571) (xy -0.690761 2.756813) (xy -0.690633 2.716155) (xy -0.553279 2.716155) (xy -0.550097 2.770194) (xy -0.542859 2.814735) (xy -0.53306 2.839888) (xy -0.495989 2.87426) (xy -0.451974 2.886582) (xy -0.406584 2.876618) (xy -0.367797 2.846895) (xy -0.353108 2.826905) (xy -0.344519 2.80305) (xy -0.340496 2.76823) (xy -0.339505 2.71593) (xy -0.341278 2.664139) (xy -0.345963 2.618634) (xy -0.352603 2.588181) (xy -0.35371 2.585452) (xy -0.380491 2.553) (xy -0.419579 2.535183) (xy -0.463315 2.532306) (xy -0.504038 2.544674) (xy -0.534087 2.572593) (xy -0.537204 2.578148) (xy -0.546961 2.612022) (xy -0.552277 2.660728) (xy -0.553279 2.716155) (xy -0.690633 2.716155) (xy -0.690568 2.69554) (xy -0.689664 2.662563) (xy -0.683514 2.580981) (xy -0.670733 2.51973) (xy -0.649471 2.474449) (xy -0.617878 2.440779) (xy -0.587207 2.421014) (xy -0.544354 2.40712) (xy -0.491056 2.402354) (xy -0.43648 2.406236) (xy -0.389792 2.418282) (xy -0.365124 2.432693) (xy -0.339505 2.455878) (xy -0.339505 2.162773) (xy -0.201188 2.162773) (xy -0.201188 3.017822) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c60e65d8-d448-480e-b6ef-340939b2752a") ) (fp_poly (pts (xy 2.677898 1.456457) (xy 2.710096 1.464279) (xy 2.771825 1.492921) (xy 2.82461 1.536667) (xy 2.861141 1.589117) (xy 2.86616 1.600893) (xy 2.873045 1.63174) (xy 2.877864 1.677371) (xy 2.879505 1.723492) (xy 2.879505 1.810693) (xy 2.697178 1.810693) (xy 2.621979 1.810978) (xy 2.569003 1.812704) (xy 2.535325 1.817181) (xy 2.51802 1.82572) (xy 2.514163 1.83963) (xy 2.520829 1.860222) (xy 2.53277 1.884315) (xy 2.56608 1.924525) (xy 2.612368 1.944558) (xy 2.668944 1.943905) (xy 2.733031 1.922101) (xy 2.788417 1.895193) (xy 2.834375 1.931532) (xy 2.880333 1.967872) (xy 2.837096 2.007819) (xy 2.779374 2.045563) (xy 2.708386 2.06832) (xy 2.632029 2.074688) (xy 2.558199 2.063268) (xy 2.546287 2.059393) (xy 2.481399 2.025506) (xy 2.43313 1.974986) (xy 2.400465 1.906325) (xy 2.382385 1.818014) (xy 2.382175 1.816121) (xy 2.380556 1.719878) (xy 2.3871 1.685542) (xy 2.514852 1.685542) (xy 2.526584 1.690822) (xy 2.558438 1.694867) (xy 2.605397 1.697176) (xy 2.635154 1.697525) (xy 2.690648 1.697306) (xy 2.725346 1.695916) (xy 2.743601 1.692251) (xy 2.749766 1.68521) (xy 2.748195 1.67369) (xy 2.746878 1.669233) (xy 2.724382 1.627355) (xy 2.689003 1.593604) (xy 2.65778 1.578773) (xy 2.616301 1.579668) (xy 2.574269 1.598164) (xy 2.539012 1.628786) (xy 2.517854 1.666062) (xy 2.514852 1.685542) (xy 2.3871 1.685542) (xy 2.39669 1.635229) (xy 2.428698 1.564191) (xy 2.474701 1.508779) (xy 2.532821 1.471009) (xy 2.60118 1.452896) (xy 2.677898 1.456457) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "09bfab16-4920-49c0-95a8-64dd5671d150") ) (fp_poly (pts (xy 0.014017 1.456452) (xy 0.061634 1.465482) (xy 0.111034 1.48437) (xy 0.116312 1.486777) (xy 0.153774 1.506476) (xy 0.179717 1.524781) (xy 0.188103 1.536508) (xy 0.180117 1.555632) (xy 0.16072 1.58385) (xy 0.15211 1.594384) (xy 0.116628 1.635847) (xy 0.070885 1.608858) (xy 0.02735 1.590878) (xy -0.02295 1.581267) (xy -0.071188 1.58066) (xy -0.108533 1.589691) (xy -0.117495 1.595327) (xy -0.134563 1.621171) (xy -0.136637 1.650941) (xy -0.123866 1.674197) (xy -0.116312 1.678708) (xy -0.093675 1.684309) (xy -0.053885 1.690892) (xy -0.004834 1.697183) (xy 0.004215 1.69817) (xy 0.082996 1.711798) (xy 0.140136 1.734946) (xy 0.17803 1.769752) (xy 0.199079 1.818354) (xy 0.205635 1.877718) (xy 0.196577 1.945198) (xy 0.167164 1.998188) (xy 0.117278 2.036783) (xy 0.0468 2.061081) (xy -0.031435 2.070667) (xy -0.095234 2.070552) (xy -0.146984 2.061845) (xy -0.182327 2.049825) (xy -0.226983 2.02888) (xy -0.268253 2.004574) (xy -0.282921 1.993876) (xy -0.320643 1.963084) (xy -0.275148 1.917049) (xy -0.229653 1.871013) (xy -0.177928 1.905243) (xy -0.126048 1.930952) (xy -0.070649 1.944399) (xy -0.017395 1.945818) (xy 0.028049 1.935443) (xy 0.060016 1.913507) (xy 0.070338 1.894998) (xy 0.068789 1.865314) (xy 0.04314 1.842615) (xy -0.00654 1.82694) (xy -0.060969 1.819695) (xy -0.144736 1.805873) (xy -0.206967 1.779796) (xy -0.248493 1.740699) (xy -0.270147 1.68782) (xy -0.273147 1.625126) (xy -0.258329 1.559642) (xy -0.224546 1.510144) (xy -0.171495 1.476408) (xy -0.098874 1.458207) (xy -0.045072 1.454639) (xy 0.014017 1.456452) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c77f717f-272b-48aa-93fe-15fd65548164") ) (fp_poly (pts (xy 2.032581 2.40497) (xy 2.092685 2.420597) (xy 2.143021 2.452848) (xy 2.167393 2.47694) (xy 2.207345 2.533895) (xy 2.230242 2.599965) (xy 2.238108 2.681182) (xy 2.238148 2.687748) (xy 2.238218 2.753763) (xy 1.858264 2.753763) (xy 1.866363 2.788342) (xy 1.880987 2.819659) (xy 1.906581 2.852291) (xy 1.911935 2.8575) (xy 1.957943 2.885694) (xy 2.01041 2.890475) (xy 2.070803 2.871926) (xy 2.08104 2.866931) (xy 2.112439 2.851745) (xy 2.13347 2.843094) (xy 2.137139 2.842293) (xy 2.149948 2.850063) (xy 2.174378 2.869072) (xy 2.186779 2.87946) (xy 2.212476 2.903321) (xy 2.220915 2.919077) (xy 2.215058 2.933571) (xy 2.211928 2.937534) (xy 2.190725 2.954879) (xy 2.155738 2.975959) (xy 2.131337 2.988265) (xy 2.062072 3.009946) (xy 1.985388 3.016971) (xy 1.912765 3.008647) (xy 1.892426 3.002686) (xy 1.829476 2.968952) (xy 1.782815 2.917045) (xy 1.752173 2.846459) (xy 1.737282 2.756692) (xy 1.735647 2.709753) (xy 1.740421 2.641413) (xy 1.86099 2.641413) (xy 1.872652 2.646465) (xy 1.903998 2.650429) (xy 1.949571 2.652768) (xy 1.980446 2.653169) (xy 2.035981 2.652783) (xy 2.071033 2.650975) (xy 2.090262 2.646773) (xy 2.09833 2.639203) (xy 2.099901 2.628218) (xy 2.089121 2.594381) (xy 2.06198 2.56094) (xy 2.026277 2.535272) (xy 1.99056 2.524772) (xy 1.942048 2.534086) (xy 1.900053 2.561013) (xy 1.870936 2.599827) (xy 1.86099 2.641413) (xy 1.740421 2.641413) (xy 1.742599 2.610236) (xy 1.764055 2.530949) (xy 1.80047 2.471263) (xy 1.852297 2.430549) (xy 1.91999 2.408179) (xy 1.956662 2.403871) (xy 2.032581 2.40497) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "feaff050-0fb5-4cfb-980a-16b1efcb6899") ) (fp_poly (pts (xy -1.356699 1.472614) (xy -1.344168 1.478514) (xy -1.300799 1.510283) (xy -1.25979 1.556646) (xy -1.229168 1.607696) (xy -1.220459 1.631166) (xy -1.212512 1.673091) (xy -1.207774 1.723757) (xy -1.207199 1.744679) (xy -1.207129 1.810693) (xy -1.587083 1.810693) (xy -1.578983 1.845273) (xy -1.559104 1.88617) (xy -1.524347 1.921514) (xy -1.482998 1.944282) (xy -1.456649 1.94901) (xy -1.420916 1.943273) (xy -1.378282 1.928882) (xy -1.363799 1.922262) (xy -1.31024 1.895513) (xy -1.264533 1.930376) (xy -1.238158 1.953955) (xy -1.224124 1.973417) (xy -1.223414 1.979129) (xy -1.235951 1.992973) (xy -1.263428 2.014012) (xy -1.288366 2.030425) (xy -1.355664 2.05993) (xy -1.43111 2.073284) (xy -1.505888 2.069812) (xy -1.565495 2.051663) (xy -1.626941 2.012784) (xy -1.670608 1.961595) (xy -1.697926 1.895367) (xy -1.710322 1.811371) (xy -1.711421 1.772936) (xy -1.707022 1.684861) (xy -1.706482 1.682299) (xy -1.580582 1.682299) (xy -1.577115 1.690558) (xy -1.562863 1.695113) (xy -1.53347 1.697065) (xy -1.484575 1.697517) (xy -1.465748 1.697525) (xy -1.408467 1.696843) (xy -1.372141 1.694364) (xy -1.352604 1.689443) (xy -1.34569 1.681434) (xy -1.345445 1.678862) (xy -1.353336 1.658423) (xy -1.373085 1.629789) (xy -1.381575 1.619763) (xy -1.413094 1.591408) (xy -1.445949 1.580259) (xy -1.463651 1.579327) (xy -1.511539 1.590981) (xy -1.551699 1.622285) (xy -1.577173 1.667752) (xy -1.577625 1.669233) (xy -1.580582 1.682299) (xy -1.706482 1.682299) (xy -1.692392 1.61551) (xy -1.666038 1.560025) (xy -1.633807 1.520639) (xy -1.574217 1.477931) (xy -1.504168 1.455109) (xy -1.429661 1.453046) (xy -1.356699 1.472614) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "0b5cc0ed-8cea-4c1c-abbc-44be855b0778") ) (fp_poly (pts (xy 1.038411 2.405417) (xy 1.091411 2.41829) (xy 1.106731 2.42511) (xy 1.136428 2.442974) (xy 1.15922 2.463093) (xy 1.176083 2.488962) (xy 1.187998 2.524073) (xy 1.195942 2.57192) (xy 1.200894 2.635996) (xy 1.203831 2.719794) (xy 1.204947 2.775768) (xy 1.209052 3.017822) (xy 1.138932 3.017822) (xy 1.096393 3.016038) (xy 1.074476 3.009942) (xy 1.068812 2.999706) (xy 1.065821 2.988637) (xy 1.052451 2.990754) (xy 1.034233 2.999629) (xy 0.988624 3.013233) (xy 0.930007 3.016899) (xy 0.868354 3.010903) (xy 0.813638 2.995521) (xy 0.80873 2.993386) (xy 0.758723 2.958255) (xy 0.725756 2.909419) (xy 0.710587 2.852333) (xy 0.711746 2.831824) (xy 0.835508 2.831824) (xy 0.846413 2.859425) (xy 0.878745 2.879204) (xy 0.93091 2.889819) (xy 0.958787 2.891228) (xy 1.005247 2.88762) (xy 1.036129 2.873597) (xy 1.043664 2.866931) (xy 1.064076 2.830666) (xy 1.068812 2.797773) (xy 1.068812 2.753763) (xy 1.007513 2.753763) (xy 0.936256 2.757395) (xy 0.886276 2.768818) (xy 0.854696 2.788824) (xy 0.847626 2.797743) (xy 0.835508 2.831824) (xy 0.711746 2.831824) (xy 0.713971 2.792456) (xy 0.736663 2.735244) (xy 0.767624 2.69658) (xy 0.786376 2.679864) (xy 0.804733 2.668878) (xy 0.828619 2.66218) (xy 0.863957 2.658326) (xy 0.916669 2.655873) (xy 0.937577 2.655168) (xy 1.068812 2.650879) (xy 1.06862 2.611158) (xy 1.063537 2.569405) (xy 1.045162 2.544158) (xy 1.008039 2.52803) (xy 1.007043 2.527742) (xy 0.95441 2.5214) (xy 0.902906 2.529684) (xy 0.86463 2.549827) (xy 0.849272 2.559773) (xy 0.83273 2.558397) (xy 0.807275 2.543987) (xy 0.792328 2.533817) (xy 0.763091 2.512088) (xy 0.74498 2.4958) (xy 0.742074 2.491137) (xy 0.75404 2.467005) (xy 0.789396 2.438185) (xy 0.804753 2.428461) (xy 0.848901 2.411714) (xy 0.908398 2.402227) (xy 0.974487 2.400095) (xy 1.038411 2.405417) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "7b48db74-bd63-4253-a8c3-355cd7866ada") ) (fp_poly (pts (xy -1.38421 2.406555) (xy -1.325055 2.422339) (xy -1.280023 2.450948) (xy -1.248246 2.488419) (xy -1.238366 2.504411) (xy -1.231073 2.521163) (xy -1.225974 2.542592) (xy -1.222679 2.572616) (xy -1.220797 2.615154) (xy -1.219937 2.674122) (xy -1.219707 2.75344) (xy -1.219703 2.774484) (xy -1.219703 3.017822) (xy -1.280059 3.017822) (xy -1.318557 3.015126) (xy -1.347023 3.008295) (xy -1.354155 3.004083) (xy -1.373652 2.996813) (xy -1.393566 3.004083) (xy -1.426353 3.01316) (xy -1.473978 3.016813) (xy -1.526764 3.015228) (xy -1.575036 3.008589) (xy -1.603218 3.000072) (xy -1.657753 2.965063) (xy -1.691835 2.916479) (xy -1.707157 2.851882) (xy -1.707299 2.850223) (xy -1.705955 2.821566) (xy -1.584356 2.821566) (xy -1.573726 2.854161) (xy -1.55641 2.872505) (xy -1.521652 2.886379) (xy -1.475773 2.891917) (xy -1.428988 2.889191) (xy -1.391514 2.878274) (xy -1.381015 2.871269) (xy -1.362668 2.838904) (xy -1.35802 2.802111) (xy -1.35802 2.753763) (xy -1.427582 2.753763) (xy -1.493667 2.75885) (xy -1.543764 2.773263) (xy -1.574929 2.795729) (xy -1.584356 2.821566) (xy -1.705955 2.821566) (xy -1.703987 2.779647) (xy -1.68071 2.723845) (xy -1.636948 2.681647) (xy -1.630899 2.677808) (xy -1.604907 2.665309) (xy -1.572735 2.65774) (xy -1.52776 2.654061) (xy -1.474331 2.653216) (xy -1.35802 2.653169) (xy -1.35802 2.604411) (xy -1.362953 2.566581) (xy -1.375543 2.541236) (xy -1.377017 2.539887) (xy -1.405034 2.5288) (xy -1.447326 2.524503) (xy -1.494064 2.526615) (xy -1.535418 2.534756) (xy -1.559957 2.546965) (xy -1.573253 2.556746) (xy -1.587294 2.558613) (xy -1.606671 2.5506) (xy -1.635976 2.530739) (xy -1.679803 2.497063) (xy -1.683825 2.493909) (xy -1.681764 2.482236) (xy -1.664568 2.462822) (xy -1.638433 2.441248) (xy -1.609552 2.423096) (xy -1.600478 2.418809) (xy -1.56738 2.410256) (xy -1.51888 2.404155) (xy -1.464695 2.401708) (xy -1.462161 2.401703) (xy -1.38421 2.406555) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "195a9e1a-d947-4608-9536-2426a5c111c1") ) (fp_poly (pts (xy -1.908759 1.469184) (xy -1.882247 1.482282) (xy -1.849553 1.505106) (xy -1.825725 1.529996) (xy -1.809406 1.561249) (xy -1.79924 1.603166) (xy -1.793872 1.660044) (xy -1.791944 1.736184) (xy -1.791831 1.768917) (xy -1.792161 1.840656) (xy -1.793527 1.891927) (xy -1.7965 1.927404) (xy -1.801649 1.951763) (xy -1.809543 1.96968) (xy -1.817757 1.981902) (xy -1.870187 2.033905) (xy -1.93193 2.065184) (xy -1.998536 2.074592) (xy -2.065558 2.06098) (xy -2.086792 2.051354) (xy -2.137624 2.024859) (xy -2.137624 2.440052) (xy -2.100525 2.420868) (xy -2.051643 2.406025) (xy -1.991561 2.402222) (xy -1.931564 2.409243) (xy -1.886256 2.425013) (xy -1.848675 2.455047) (xy -1.816564 2.498024) (xy -1.81415 2.502436) (xy -1.803967 2.523221) (xy -1.79653 2.54417) (xy -1.791411 2.569548) (xy -1.788181 2.603618) (xy -1.786413 2.650641) (xy -1.785677 2.714882) (xy -1.785544 2.787176) (xy -1.785544 3.017822) (xy -1.923861 3.017822) (xy -1.923861 2.592533) (xy -1.962549 2.559979) (xy -2.002738 2.53394) (xy -2.040797 2.529205) (xy -2.079066 2.541389) (xy -2.099462 2.55332) (xy -2.114642 2.570313) (xy -2.125438 2.595995) (xy -2.132683 2.633991) (xy -2.137208 2.687926) (xy -2.139844 2.761425) (xy -2.140772 2.810347) (xy -2.143911 3.011535) (xy -2.209926 3.015336) (xy -2.27594 3.019136) (xy -2.27594 1.77065) (xy -2.137624 1.77065) (xy -2.134097 1.840254) (xy -2.122215 1.888569) (xy -2.10002 1.918631) (xy -2.065559 1.933471) (xy -2.030742 1.936436) (xy -1.991329 1.933028) (xy -1.965171 1.919617) (xy -1.948814 1.901896) (xy -1.935937 1.882835) (xy -1.928272 1.861601) (xy -1.924861 1.831849) (xy -1.924749 1.787236) (xy -1.925897 1.74988) (xy -1.928532 1.693604) (xy -1.932456 1.656658) (xy -1.939063 1.633223) (xy -1.949749 1.61748) (xy -1.959833 1.60838) (xy -2.00197 1.588537) (xy -2.05184 1.585332) (xy -2.080476 1.592168) (xy -2.108828 1.616464) (xy -2.127609 1.663728) (xy -2.136712 1.733624) (xy -2.137624 1.77065) (xy -2.27594 1.77065) (xy -2.27594 1.458614) (xy -2.206782 1.458614) (xy -2.16526 1.460256) (xy -2.143838 1.466087) (xy -2.137626 1.477461) (xy -2.137624 1.477798) (xy -2.134742 1.488938) (xy -2.12203 1.487673) (xy -2.096757 1.475433) (xy -2.037869 1.456707) (xy -1.971615 1.454739) (xy -1.908759 1.469184) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "7709304a-8adc-4e78-b27d-5dba61b9f248") ) (fp_poly (pts (xy 0.376964 -2.709982) (xy 0.433812 -2.40843) (xy 0.853338 -2.235488) (xy 1.104984 -2.406605) (xy 1.175458 -2.45425) (xy 1.239163 -2.49679) (xy 1.293126 -2.532285) (xy 1.334373 -2.55879) (xy 1.359934 -2.574364) (xy 1.366895 -2.577722) (xy 1.379435 -2.569086) (xy 1.406231 -2.545208) (xy 1.44428 -2.509141) (xy 1.490579 -2.463933) (xy 1.542123 -2.412636) (xy 1.595909 -2.358299) (xy 1.648935 -2.303972) (xy 1.698195 -2.252705) (xy 1.740687 -2.207549) (xy 1.773407 -2.171554) (xy 1.793351 -2.14777) (xy 1.798119 -2.13981) (xy 1.791257 -2.125135) (xy 1.77202 -2.092986) (xy 1.74243 -2.046508) (xy 1.70451 -1.988844) (xy 1.660282 -1.92314) (xy 1.634654 -1.885664) (xy 1.587941 -1.817232) (xy 1.546432 -1.75548) (xy 1.51214 -1.703481) (xy 1.48708 -1.664308) (xy 1.473264 -1.641035) (xy 1.471188 -1.636145) (xy 1.475895 -1.622245) (xy 1.488723 -1.58985) (xy 1.507738 -1.543515) (xy 1.531003 -1.487794) (xy 1.556584 -1.427242) (xy 1.582545 -1.366414) (xy 1.60695 -1.309864) (xy 1.627863 -1.262148) (xy 1.643349 -1.227819) (xy 1.651472 -1.211432) (xy 1.651952 -1.210788) (xy 1.664707 -1.207659) (xy 1.698677 -1.200679) (xy 1.75034 -1.190533) (xy 1.816176 -1.177908) (xy 1.892664 -1.163491) (xy 1.93729 -1.155177) (xy 2.019021 -1.139616) (xy 2.092843 -1.124808) (xy 2.155021 -1.111564) (xy 2.201822 -1.100695) (xy 2.229509 -1.093011) (xy 2.235074 -1.090573) (xy 2.240526 -1.07407) (xy 2.244924 -1.0368) (xy 2.248272 -0.98312) (xy 2.250574 -0.917388) (xy 2.251832 -0.843963) (xy 2.252048 -0.767204) (xy 2.251227 -0.691468) (xy 2.249371 -0.621114) (xy 2.246482 -0.5605) (xy 2.242565 -0.513984) (xy 2.237622 -0.485925) (xy 2.234657 -0.480084) (xy 2.216934 -0.473083) (xy 2.179381 -0.463073) (xy 2.126964 -0.451231) (xy 2.064652 -0.438733) (xy 2.0429 -0.43469) (xy 1.938024 -0.41548) (xy 1.85518 -0.400009) (xy 1.79163 -0.387663) (xy 1.744637 -0.377827) (xy 1.711463 -0.369886) (xy 1.689371 -0.363224) (xy 1.675624 -0.357227) (xy 1.667484 -0.351281) (xy 1.666345 -0.350106) (xy 1.654977 -0.331174) (xy 1.637635 -0.294331) (xy 1.61605 -0.244087) (xy 1.591954 -0.184954) (xy 1.567079 -0.121444) (xy 1.543157 -0.058068) (xy 1.521919 0.000662) (xy 1.505097 0.050235) (xy 1.494422 0.086139) (xy 1.491627 0.103862) (xy 1.49186 0.104483) (xy 1.501331 0.11897) (xy 1.522818 0.150844) (xy 1.554063 0.196789) (xy 1.592807 0.253485) (xy 1.636793 0.317617) (xy 1.649319 0.335842) (xy 1.693984 0.401914) (xy 1.733288 0.4622) (xy 1.765088 0.513235) (xy 1.787245 0.55156) (xy 1.797617 0.573711) (xy 1.798119 0.576432) (xy 1.789405 0.590736) (xy 1.765325 0.619072) (xy 1.728976 0.658396) (xy 1.683453 0.705661) (xy 1.631852 0.757823) (xy 1.577267 0.811835) (xy 1.522794 0.864653) (xy 1.471529 0.913231) (xy 1.426567 0.954523) (xy 1.391004 0.985485) (xy 1.367935 1.00307) (xy 1.361554 1.005941) (xy 1.346699 0.999178) (xy 1.316286 0.980939) (xy 1.275268 0.954297) (xy 1.243709 0.932852) (xy 1.186525 0.893503) (xy 1.118806 0.847171) (xy 1.05088 0.800913) (xy 1.014361 0.776155) (xy 0.890752 0.692547) (xy 0.786991 0.74865) (xy 0.73972 0.773228) (xy 0.699523 0.792331) (xy 0.672326 0.803227) (xy 0.665402 0.804743) (xy 0.657077 0.793549) (xy 0.640654 0.761917) (xy 0.617357 0.712765) (xy 0.588414 0.64901) (xy 0.55505 0.573571) (xy 0.518491 0.489364) (xy 0.479964 0.399308) (xy 0.440694 0.306321) (xy 0.401908 0.21332) (xy 0.36483 0.123223) (xy 0.330689 0.038948) (xy 0.300708 -0.036587) (xy 0.276116 -0.100466) (xy 0.258136 -0.149769) (xy 0.247997 -0.181579) (xy 0.246366 -0.192504) (xy 0.259291 -0.206439) (xy 0.287589 -0.22906) (xy 0.325346 -0.255667) (xy 0.328515 -0.257772) (xy 0.4261 -0.335886) (xy 0.504786 -0.427018) (xy 0.563891 -0.528255) (xy 0.602732 -0.636682) (xy 0.620628 -0.749386) (xy 0.616897 -0.863452) (xy 0.590857 -0.975966) (xy 0.541825 -1.084015) (xy 0.5274 -1.107655) (xy 0.452369 -1.203113) (xy 0.36373 -1.279768) (xy 0.264549 -1.33722) (xy 0.157895 -1.375071) (xy 0.046836 -1.392922) (xy -0.065561 -1.390375) (xy -0.176227 -1.36703) (xy -0.282094 -1.32249) (xy -0.380095 -1.256355) (xy -0.41041 -1.229513) (xy -0.487562 -1.145488) (xy -0.543782 -1.057034) (xy -0.582347 -0.957885) (xy -0.603826 -0.859697) (xy -0.609128 -0.749303) (xy -0.591448 -0.63836) (xy -0.552581 -0.530619) (xy -0.494323 -0.429831) (xy -0.418469 -0.339744) (xy -0.326817 -0.264108) (xy -0.314772 -0.256136) (xy -0.276611 -0.230026) (xy -0.247601 -0.207405) (xy -0.233732 -0.192961) (xy -0.233531 -0.192504) (xy -0.236508 -0.176879) (xy -0.248311 -0.141418) (xy -0.267714 -0.089038) (xy -0.293488 -0.022655) (xy -0.324409 0.054814) (xy -0.359249 0.14045) (xy -0.396783 0.231337) (xy -0.435783 0.324559) (xy -0.475023 0.417197) (xy -0.513276 0.506335) (xy -0.549317 0.589055) (xy -0.581917 0.662441) (xy -0.609852 0.723575) (xy -0.631895 0.769541) (xy -0.646818 0.797421) (xy -0.652828 0.804743) (xy -0.671191 0.799041) (xy -0.705552 0.783749) (xy -0.749984 0.761599) (xy -0.774417 0.74865) (xy -0.878178 0.692547) (xy -1.001787 0.776155) (xy -1.064886 0.818987) (xy -1.13397 0.866122) (xy -1.198707 0.910503) (xy -1.231134 0.932852) (xy -1.276741 0.963477) (xy -1.31536 0.987747) (xy -1.341952 1.002587) (xy -1.35059 1.005724) (xy -1.363161 0.997261) (xy -1.390984 0.973636) (xy -1.431361 0.937302) (xy -1.481595 0.890711) (xy -1.538988 0.836317) (xy -1.575286 0.801392) (xy -1.63879 0.738996) (xy -1.693673 0.683188) (xy -1.737714 0.636354) (xy -1.768695 0.600882) (xy -1.784398 0.579161) (xy -1.785905 0.574752) (xy -1.778914 0.557985) (xy -1.759594 0.524082) (xy -1.730091 0.476476) (xy -1.692545 0.418599) (xy -1.6491 0.353884) (xy -1.636745 0.335842) (xy -1.591727 0.270267) (xy -1.55134 0.211228) (xy -1.51784 0.162042) (xy -1.493486 0.126028) (xy -1.480536 0.106502) (xy -1.479285 0.104483) (xy -1.481156 0.088922) (xy -1.491087 0.054709) (xy -1.507347 0.006355) (xy -1.528205 -0.051629) (xy -1.551927 -0.11473) (xy -1.576784 -0.178437) (xy -1.601042 -0.238239) (xy -1.622971 -0.289624) (xy -1.640838 -0.328081) (xy -1.652913 -0.349098) (xy -1.653771 -0.350106) (xy -1.661154 -0.356112) (xy -1.673625 -0.362052) (xy -1.69392 -0.36854) (xy -1.724778 -0.376191) (xy -1.768934 -0.38562) (xy -1.829126 -0.397441) (xy -1.908093 -0.412271) (xy -2.00857 -0.430723) (xy -2.030325 -0.43469) (xy -2.094802 -0.447147) (xy -2.151011 -0.459334) (xy -2.193987 -0.470074) (xy -2.21876 -0.478191) (xy -2.222082 -0.480084) (xy -2.227556 -0.496862) (xy -2.232006 -0.534355) (xy -2.235428 -0.588206) (xy -2.237819 -0.654056) (xy -2.239177 -0.727547) (xy -2.239499 -0.80432) (xy -2.238781 -0.880017) (xy -2.237021 -0.95028) (xy -2.234216 -1.01075) (xy -2.230362 -1.05707) (xy -2.225457 -1.084881) (xy -2.2225 -1.090573) (xy -2.206037 -1.096314) (xy -2.168551 -1.105655) (xy -2.113775 -1.117785) (xy -2.045445 -1.131893) (xy -1.967294 -1.14717) (xy -1.924716 -1.155177) (xy -1.843929 -1.170279) (xy -1.771887 -1.18396) (xy -1.712111 -1.195533) (xy -1.668121 -1.204313) (xy -1.643439 -1.209613) (xy -1.639377 -1.210788) (xy -1.632511 -1.224035) (xy -1.617998 -1.255943) (xy -1.597771 -1.301953) (xy -1.573766 -1.357508) (xy -1.547918 -1.418047) (xy -1.52216 -1.479014) (xy -1.498427 -1.535849) (xy -1.478654 -1.583994) (xy -1.464776 -1.61889) (xy -1.458726 -1.635979) (xy -1.458614 -1.636726) (xy -1.465472 -1.650207) (xy -1.484698 -1.68123) (xy -1.514272 -1.726711) (xy -1.552173 -1.783568) (xy -1.59638 -1.848717) (xy -1.622079 -1.886138) (xy -1.668907 -1.954753) (xy -1.710499 -2.017048) (xy -1.744825 -2.069871) (xy -1.769857 -2.110073) (xy -1.783565 -2.1345) (xy -1.785544 -2.139976) (xy -1.777034 -2.152722) (xy -1.753507 -2.179937) (xy -1.717968 -2.218572) (xy -1.673423 -2.265577) (xy -1.622877 -2.317905) (xy -1.569336 -2.372505) (xy -1.515805 -2.42633) (xy -1.465289 -2.47633) (xy -1.420794 -2.519457) (xy -1.385325 -2.552661) (xy -1.361887 -2.572894) (xy -1.354046 -2.577722) (xy -1.34128 -2.570933) (xy -1.310744 -2.551858) (xy -1.26541 -2.522439) (xy -1.208244 -2.484619) (xy -1.142216 -2.440339) (xy -1.09241 -2.406605) (xy -0.840764 -2.235488) (xy -0.631001 -2.321959) (xy -0.421237 -2.40843) (xy -0.364389 -2.709982) (xy -0.30754 -3.011534) (xy 0.320115 -3.011534) (xy 0.376964 -2.709982) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "a3daede2-a5e2-48b2-970f-4d57ca4c986c") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e52b82df-9c78-4427-aff0-111199235a03") (at 155.9911 109.4816 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R49" (at 0.9184 -1.3389 90) (layer "F.SilkS") (uuid "a558ba4a-8cd2-4f4e-9181-744912a66d5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 90) (layer "F.Fab") (uuid "d0336e13-7351-4075-8911-ac5bc77f0e02") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d78bd656-3a7d-4c8d-bd98-cd028adee53f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3bf7658e-7f4b-45a0-a085-3132221011f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c8759f58-fa9d-4555-ad10-b36f426311a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3c1f4622-a6f0-4e5b-afa9-21a4bfbc55c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0395f194-82e1-4390-b8e0-4ad842476dc5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e89c3b84-8920-4cac-a0be-fa079c3db12d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "UNI-ROYAL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f3ad1a91-5823-439b-af72-5b5f0a7b7f2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5225685-76f7-4e5e-8d69-038455d84160") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "83dd90b7-df8c-45c5-b7f0-b1e54e44bd17") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "429d587f-24d9-40e8-a52b-09a3e20e04d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/00d03321-5580-4405-8c0a-820cab392953") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3f2a29df-2091-4bf6-bec3-fbf3521916b9") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dba4240a-5135-49cd-acc3-74f3e902fe4c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1bf00fee-8aad-49d7-8082-8be438eae6a3") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83b4288d-aa95-4780-80bf-958c2fc5941e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2f16c37a-80e3-46bf-b4d6-83febb3b537e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc2c474c-6db9-492c-a37d-8edca3b94847") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "75d7e8b9-ffc1-4b2b-a591-1b7bef4bf766") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "407599f1-06c5-4953-9dd2-bc0e027785d0") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc7f43be-ee61-4940-8169-7d3875515b85") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00ce8ab6-59b8-4549-94a5-50798301bffd") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "ec8e4255-a5f1-4685-bea3-e90a69f9dcd0") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "AGND") (pintype "passive") (uuid "4765703d-5f4f-40b0-aa73-4d2a181de612") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "8bb2aa47-0fb4-40c1-9aa4-eee3f743d344") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e8728629-4be2-4485-8667-5caa53dbb9c5") (at 182.73 82.1 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R10" (at 0 1.3 90) (layer "F.SilkS") (uuid "85ea3c50-6f89-41da-bbf1-11166a177f8f") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "b103a2c9-8ce5-4b5f-b767-a919fbb5e1a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69315451-2bfa-4fcd-a87d-6a967b4d7be4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7b3a5f5-59a4-4db4-9044-f35111e4eaa4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c0002362-888f-4299-b28e-ebee74644c01") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5a0064d1-9495-4dc1-9000-07ae5186a5bb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9dc872ce-d3e6-4210-979e-4f2596ac4703") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d4f1ee1c-f51b-48b2-ac06-57b52144e653") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "YAGEO" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "38b6dd38-1857-4e66-94ba-2b3b50398611") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "RC0603FR-0749K9L" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9dc1dde7-2aca-4784-b258-fe4f957644b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "317a190f-3c87-4866-915a-b4dbefe1d464") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ecda6b9f-603a-4259-a37d-718914eb7578") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/06f2007e-89d3-4a7e-8912-a0b675374ed4") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a6325602-9f56-4547-92bb-63822ea5ac48") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a4bb3c8b-475e-44fd-b6cb-41e3c3dbbdea") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "56576587-2a19-4f4f-8210-0b7622e5a60f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "47159faa-6056-4424-a859-80e346e0a3de") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3162aae1-8710-48b8-a4ad-bd39ee03c1d5") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "19b147ca-dcdd-4f09-9bb2-a334037595a7") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8699682-9ab8-41f5-bcf4-b01fbec5a25b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b803b03-82f6-4a2f-95f1-5d751324317e") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22952005-a961-4e79-8a4c-71a0f601d50d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4fb165f1-f17f-432a-86fe-aadd43625b69") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "eb0fdb04-36df-4387-b62f-ce8b291ba88a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "MAIN_PWR") (pintype "passive") (uuid "d3dd2834-2f1a-4583-b006-8a1d458cd99f") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "Net-(D2-A)") (pintype "passive") (uuid "6870c8f0-20b9-47ec-8eb8-3bbec0649145") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "sparkfun-qwiic:qwiic_5mm" (layer "F.Cu") (uuid "e9783345-d91b-4817-a588-6685e56020bd") (at 113.73 78.2672 -90) (tags "SparkFun") (property "Reference" "G1" (at 0 -1.27 90) (layer "F.Fab") (hide yes) (uuid "2e2f0713-ace5-4f44-b798-5ccbcd5abae6") (effects (font (size 0.5 0.5) (thickness 0.1) ) ) ) (property "Value" "qwiic_Logo" (at 0 1.27 90) (layer "F.Fab") (hide yes) (uuid "92e6d1bc-d15c-4393-ae78-d1bcf57e9b52") (effects (font (size 0.5 0.5) (thickness 0.1) ) ) ) (property "Footprint" "sparkfun-qwiic:qwiic_5mm" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0ffb55a7-89b4-409e-8a3a-3f44dc9b024d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d4de67e3-be4f-45fb-b6cd-dd4146a41eb6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f41386ba-4000-4ad4-876b-8ea5201207d7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Manufacturer" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "89cdc212-1ae1-4f05-965a-b15194ad6f27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e8f8995-4492-4cf1-82c5-f122a428e624") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0ab6ec7-5db3-430f-80a4-d4b4b98e12d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aeeeab5a-22ff-45ad-84e5-d9739045f860") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/2028e21a-89b4-439f-a02c-03b397439e69") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr board_only exclude_from_pos_files) (fp_poly (pts (xy -1.585671 -0.207396) (xy -1.547301 -0.194776) (xy -1.512502 -0.172432) (xy -1.50341 -0.164656) (xy -1.472309 -0.130338) (xy -1.450325 -0.090949) (xy -1.437041 -0.045282) (xy -1.432042 0.00787) (xy -1.432667 0.040619) (xy -1.434648 0.069526) (xy -1.437816 0.091041) (xy -1.443371 0.109853) (xy -1.452516 0.130646) (xy -1.459117 0.143854) (xy -1.485013 0.184983) (xy -1.515936 0.21557) (xy -1.553121 0.236432) (xy -1.597801 0.248387) (xy -1.620947 0.2511) (xy -1.645896 0.25092) (xy -1.671603 0.247559) (xy -1.679266 0.245732) (xy -1.725431 0.227094) (xy -1.763355 0.199714) (xy -1.792851 0.163853) (xy -1.81373 0.119772) (xy -1.825805 0.06773) (xy -1.828471 0.039025) (xy -1.827548 -0.019069) (xy -1.818015 -0.06937) (xy -1.799507 -0.112911) (xy -1.771659 -0.150727) (xy -1.756028 -0.16611) (xy -1.721841 -0.190726) (xy -1.684028 -0.205458) (xy -1.640078 -0.211211) (xy -1.630528 -0.211364) ) (stroke (width 0) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "18670517-9ae7-407f-9629-4ad6ba3bfc5b") ) (fp_poly (pts (xy 0.17178 -0.794125) (xy 0.334916 -0.794118) (xy 0.486803 -0.794103) (xy 0.627855 -0.794078) (xy 0.758488 -0.794039) (xy 0.879116 -0.793985) (xy 0.990154 -0.793913) (xy 1.092015 -0.793821) (xy 1.185116 -0.793705) (xy 1.269869 -0.793564) (xy 1.34669 -0.793394) (xy 1.415994 -0.793194) (xy 1.478195 -0.792961) (xy 1.533707 -0.792691) (xy 1.582945 -0.792384) (xy 1.626324 -0.792035) (xy 1.664259 -0.791644) (xy 1.697163 -0.791206) (xy 1.725452 -0.79072) (xy 1.74954 -0.790182) (xy 1.769841 -0.789591) (xy 1.786771 -0.788944) (xy 1.800743 -0.788239) (xy 1.812173 -0.787472) (xy 1.821474 -0.786642) (xy 1.829063 -0.785745) (xy 1.835352 -0.784779) (xy 1.840757 -0.783743) (xy 1.844912 -0.782816) (xy 1.943042 -0.754044) (xy 2.034791 -0.715338) (xy 2.119689 -0.667056) (xy 2.197269 -0.609559) (xy 2.26706 -0.543205) (xy 2.328593 -0.468353) (xy 2.381401 -0.385362) (xy 2.393418 -0.362933) (xy 2.431158 -0.279727) (xy 2.458064 -0.196342) (xy 2.474721 -0.110337) (xy 2.481717 -0.01927) (xy 2.482026 0.005766) (xy 2.476607 0.106134) (xy 2.460277 0.201368) (xy 2.43293 0.291735) (xy 2.394457 0.377504) (xy 2.344752 0.458941) (xy 2.283707 0.536316) (xy 2.257626 0.564592) (xy 2.18937 0.628816) (xy 2.117309 0.682854) (xy 2.039984 0.727516) (xy 1.955938 0.763611) (xy 1.863713 0.791952) (xy 1.837055 0.798417) (xy 1.778483 0.811887) (xy 0.327615 0.813696) (xy -1.123252 0.815504) (xy -1.123252 0.18431) (xy -1.123252 -0.443866) (xy -1.07377 -0.443866) (xy -0.906773 0.016504) (xy -0.739776 0.476873) (xy -0.588399 0.476977) (xy -0.437021 0.477081) (xy -0.350454 0.197777) (xy -0.333126 0.142036) (xy -0.316792 0.089813) (xy -0.301814 0.042244) (xy -0.288554 0.000464) (xy -0.277375 -0.034392) (xy -0.268639 -0.061187) (xy -0.262707 -0.078787) (xy -0.259943 -0.086056) (xy -0.259879 -0.086147) (xy -0.257377 -0.081481) (xy -0.251727 -0.066337) (xy -0.243282 -0.041793) (xy -0.232395 -0.00893) (xy -0.219419 0.031172) (xy -0.204705 0.077432) (xy -0.188607 0.12877) (xy -0.171478 0.184106) (xy -0.168698 0.19315) (xy -0.081526 0.477066) (xy 0.069485 0.477074) (xy 0.220497 0.477081) (xy 0.388042 0.019) (xy 0.414026 -0.052087) (xy 0.438776 -0.119892) (xy 0.461982 -0.18356) (xy 0.483336 -0.242238) (xy 0.502528 -0.295071) (xy 0.519247 -0.341204) (xy 0.533183 -0.379784) (xy 0.544028 -0.409957) (xy 0.55147 -0.430867) (xy 0.555201 -0.441662) (xy 0.555587 -0.442982) (xy 0.549822 -0.444063) (xy 0.533618 -0.44503) (xy 0.508616 -0.445837) (xy 0.476456 -0.446443) (xy 0.438776 -0.446803) (xy 0.408776 -0.446885) (xy 0.59786 -0.446885) (xy 0.59786 0.015098) (xy 0.59786 0.477081) (xy 0.748835 0.477081) (xy 0.89981 0.477081) (xy 0.89981 0.015098) (xy 0.89981 -0.446885) (xy 0.9602 -0.446885) (xy 0.9602 0.015098) (xy 0.9602 0.477081) (xy 1.111175 0.477081) (xy 1.262149 0.477081) (xy 1.262149 0.018117) (xy 1.325576 0.018117) (xy 1.326161 0.066487) (xy 1.328319 0.105846) (xy 1.332681 0.139222) (xy 1.339878 0.169646) (xy 1.350539 0.200146) (xy 1.365296 0.233752) (xy 1.374399 0.25265) (xy 1.409871 0.311485) (xy 1.454508 0.362598) (xy 1.507732 0.405401) (xy 1.549247 0.429828) (xy 1.604794 0.455326) (xy 1.657706 0.472746) (xy 1.711964 0.482998) (xy 1.771551 0.486991) (xy 1.79962 0.487014) (xy 1.85699 0.486139) (xy 1.858623 0.364594) (xy 1.860255 0.243049) (xy 1.80687 0.240497) (xy 1.763707 0.235363) (xy 1.728972 0.223869) (xy 1.700245 0.204967) (xy 1.682161 0.186467) (xy 1.656522 0.147728) (xy 1.638723 0.103278) (xy 1.628699 0.055302) (xy 1.626382 0.005982) (xy 1.631706 -0.042499) (xy 1.644605 -0.087956) (xy 1.665012 -0.128208) (xy 1.69274 -0.160961) (xy 1.72208 -0.183502) (xy 1.752165 -0.197389) (xy 1.786901 -0.204055) (xy 1.81333 -0.205193) (xy 1.860255 -0.205325) (xy 1.858622 -0.330634) (xy 1.85699 -0.455943) (xy 1.781503 -0.454973) (xy 1.721395 -0.451912) (xy 1.668601 -0.443779) (xy 1.61909 -0.429642) (xy 1.568829 -0.40857) (xy 1.55806 -0.403305) (xy 1.509526 -0.373656) (xy 1.462983 -0.335138) (xy 1.421419 -0.290699) (xy 1.387827 -0.243286) (xy 1.378294 -0.22612) (xy 1.359294 -0.186568) (xy 1.345279 -0.150511) (xy 1.335574 -0.114824) (xy 1.329506 -0.076379) (xy 1.326399 -0.032052) (xy 1.325576 0.018117) (xy 1.262149 0.018117) (xy 1.262149 0.015098) (xy 1.262149 -0.446885) (xy 1.111175 -0.446885) (xy 0.9602 -0.446885) (xy 0.89981 -0.446885) (xy 0.748835 -0.446885) (xy 0.59786 -0.446885) (xy 0.408776 -0.446885) (xy 0.261964 -0.446885) (xy 0.175453 -0.152484) (xy 0.158402 -0.094577) (xy 0.142192 -0.039753) (xy 0.127176 0.010809) (xy 0.113708 0.055932) (xy 0.102139 0.094439) (xy 0.092824 0.125151) (xy 0.086113 0.146891) (xy 0.082361 0.158483) (xy 0.08196 0.159573) (xy 0.080621 0.162592) (xy 0.079179 0.164327) (xy 0.077417 0.164099) (xy 0.075121 0.161229) (xy 0.072077 0.155037) (xy 0.068069 0.144845) (xy 0.062882 0.129972) (xy 0.056302 0.109741) (xy 0.048114 0.083471) (xy 0.038103 0.050484) (xy 0.026054 0.0101) (xy 0.011752 -0.038359) (xy -0.005018 -0.095574) (xy -0.02447 -0.162222) (xy -0.046819 -0.238984) (xy -0.072281 -0.326538) (xy -0.077422 -0.344222) (xy -0.106391 -0.443866) (xy -0.252084 -0.445482) (xy -0.397777 -0.447098) (xy -0.41283 -0.39717) (xy -0.417711 -0.380713) (xy -0.425491 -0.354138) (xy -0.43574 -0.318938) (xy -0.448023 -0.276604) (xy -0.461908 -0.228627) (xy -0.476964 -0.1765) (xy -0.492757 -0.121714) (xy -0.501717 -0.090584) (xy -0.517176 -0.037045) (xy -0.531711 0.012913) (xy -0.544966 0.05809) (xy -0.556583 0.097291) (xy -0.566208 0.129318) (xy -0.573482 0.152974) (xy -0.578051 0.167062) (xy -0.579456 0.170599) (xy -0.581851 0.165861) (xy -0.587288 0.150575) (xy -0.59544 0.125791) (xy -0.60598 0.092559) (xy -0.61858 0.051931) (xy -0.632913 0.004956) (xy -0.64865 -0.047316) (xy -0.665465 -0.103833) (xy -0.673002 -0.129373) (xy -0.690248 -0.187823) (xy -0.706557 -0.242836) (xy -0.721597 -0.29331) (xy -0.735035 -0.338144) (xy -0.74654 -0.376236) (xy -0.75578 -0.406483) (xy -0.762422 -0.427786) (xy -0.766136 -0.439041) (xy -0.766729 -0.440485) (xy -0.773173 -0.442745) (xy -0.789634 -0.444377) (xy -0.816586 -0.445396) (xy -0.854502 -0.445817) (xy -0.903856 -0.445655) (xy -0.922292 -0.445481) (xy -1.07377 -0.443866) (xy -1.123252 -0.443866) (xy -1.123252 -0.446885) (xy -1.277247 -0.446885) (xy -1.431241 -0.446885) (xy -1.431241 -0.388211) (xy -1.431241 -0.329537) (xy -1.462946 -0.360444) (xy -1.510075 -0.399442) (xy -1.56231 -0.428752) (xy -1.594294 -0.441434) (xy -1.625407 -0.449071) (xy -1.664602 -0.453953) (xy -1.70819 -0.456031) (xy -1.752479 -0.455252) (xy -1.793781 -0.451566) (xy -1.828407 -0.444922) (xy -1.829292 -0.444679) (xy -1.895055 -0.420458) (xy -1.954317 -0.386189) (xy -2.006503 -0.342349) (xy -2.051041 -0.289413) (xy -2.085062 -0.232501) (xy -2.10777 -0.176537) (xy -2.124255 -0.113179) (xy -2.134008 -0.045673) (xy -2.136518 0.022735) (xy -2.133188 0.074033) (xy -2.126638 0.122582) (xy -2.1185 0.163201) (xy -2.107613 0.200032) (xy -2.092818 0.237215) (xy -2.079492 0.265716) (xy -2.045359 0.32302) (xy -2.002876 0.373396) (xy -1.95355 0.415317) (xy -1.902282 0.445648) (xy -1.836439 0.471008) (xy -1.767193 0.485364) (xy -1.704519 0.489159) (xy -1.63834 0.483875) (xy -1.577706 0.468123) (xy -1.523003 0.442048) (xy -1.474619 0.4058) (xy -1.467006 0.398593) (xy -1.431241 0.363597) (xy -1.431241 0.589431) (xy -1.431241 0.815264) (xy -1.577686 0.814249) (xy -1.620018 0.813873) (xy -1.659608 0.813365) (xy -1.694435 0.812764) (xy -1.722475 0.812108) (xy -1.741706 0.811435) (xy -1.748288 0.811029) (xy -1.843287 0.796545) (xy -1.935113 0.77112) (xy -2.02285 0.735435) (xy -2.105582 0.69017) (xy -2.182395 0.636008) (xy -2.252373 0.573629) (xy -2.3146 0.503713) (xy -2.368161 0.426943) (xy -2.412141 0.343998) (xy -2.428513 0.304969) (xy -2.458128 0.213738) (xy -2.477225 0.121275) (xy -2.485535 0.029391) (xy -2.482816 -0.059801) (xy -2.467758 -0.160063) (xy -2.442118 -0.254532) (xy -2.405797 -0.343416) (xy -2.358696 -0.42692) (xy -2.300715 -0.50525) (xy -2.235838 -0.574705) (xy -2.162343 -0.637932) (xy -2.08365 -0.690675) (xy -1.998847 -0.733438) (xy -1.907022 -0.766723) (xy -1.867703 -0.777601) (xy -1.802639 -0.794127) (xy -0.003019 -0.794127) ) (stroke (width 0) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "60aba576-4ae4-4c56-b7b9-8a4dc6250b23") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e97f3617-28a5-4c82-8c4c-148e7da3af6f") (at 183.53 101.5375 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R9" (at 0 -1.2 90) (layer "F.SilkS") (uuid "9b0af996-cc60-4b3c-853f-47caee04c40e") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "30.1k" (at 0 1.43 90) (layer "F.Fab") (uuid "df502ef6-ca81-408b-9c38-37a8b21ae927") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0620599e-3e3b-4b5e-adeb-33c9bf6a4fd3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3afc3f0f-e643-4d02-960c-e43d0830e6cc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "408bc4d8-de1e-45cf-8c74-cf71a8c6c850") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C23000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6ecc1c6f-6444-4b98-bcb9-eba0aed591e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ca9bdb06-9ad9-47b7-8497-043a46dbd798") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9f1429c5-c915-4308-a69e-5545dd52d424") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "UNI-ROYAL" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e5c24c2-a710-40b9-b862-ba58573851d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "0603WAF3012T5E" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "86a6388e-69c2-441b-bb44-20c3b543a478") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "518debf8-0f3a-424b-895f-d794fdf00005") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87c1eef3-ef9a-4ac7-95e0-dbf71bb61887") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/4f89dab7-2826-49b5-ae3d-37db4da5d60d") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0d36019-b30e-4543-8342-0afba4d0c07f") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b424ef91-364e-4a58-9cb2-f6bce5bf7a02") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3d0fc46a-0720-41f0-b664-e9272386bf18") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9fa3e625-3dc9-42b1-9468-32b80975dc95") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27dc1d1f-9e8a-4fe2-a564-655ff8bcbb18") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6d4ae3ec-58b5-4498-b933-7c25cc9064fd") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4be34a48-93ff-4280-bc16-cee2089c111f") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7ae899b7-30e7-4259-baa2-6069148998df") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d754c3d8-e2f2-4f68-a492-2f89d96dcc66") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ead98350-c1f0-41a2-be20-adb3bdbaf5fb") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b6589c6a-9ae9-46fa-96b2-5e38aa07b337") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "Net-(U2-FB)") (pintype "passive") (uuid "0cb523bb-04ae-4669-af7e-67d8c90c27af") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "0523ef21-d98d-4095-bcbe-d3d852d081ff") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") (uuid "f9dc42c0-7be2-45dd-a527-5667d83216e4") (at 110.34 98 90) (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x02 2.54mm single row") (property "Reference" "JP12" (at 0 -2.33 -90) (unlocked yes) (layer "F.SilkS") (uuid "b4cbd031-13d9-41cc-ad98-00fb003b938a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire PullUp Enable" (at 0 4.87 90) (layer "F.Fab") (uuid "42de5b86-5752-4aad-ba81-4d20be5ec511") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e40c1ea1-f9ec-4630-b131-348a080de665") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "643dabe2-977a-4227-b801-d4d93ca53b50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3e1783f0-e89a-4979-b94c-d8c41c737e85") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Manufacturer" "XFCN" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "55381814-1490-4fb9-8e18-bb62b61c80cd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "PZ254V-11-02P" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "034b1f51-53d2-4910-a9a7-d92710aaa002") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "THT" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "644c63d8-cf76-4898-b930-fee71c5f22df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8fec50a7-8f97-4ae9-b279-1e784da6f83f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C492401" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9f983d9a-cc4c-4566-8c30-ff866db87ee3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*2Pads* TestPoint*Bridge*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/8b27d78f-77f3-4e7f-be27-7ca7183cde2c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0abbd2a4-8288-4687-8a45-1e180e97ea0f") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c448b21-0d84-4840-b552-03ed1cb63794") ) (fp_line (start 1.33 1.27) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ffed2f60-ad9a-40d0-abf2-cd89bc7a40e1") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b7c6e261-1330-40ed-a890-0d7de6921956") ) (fp_line (start -1.33 1.27) (end -1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "135b852b-828f-4b3c-816b-bda12250556a") ) (fp_line (start -1.33 3.87) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4786611a-b98f-4456-bfe8-74362bc8f409") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba8ac277-164c-4134-b103-9c1d5dac69d0") ) (fp_line (start -1.8 -1.8) (end -1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "083b3967-afff-416c-8e35-86bb0da10842") ) (fp_line (start 1.8 4.35) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a0253874-0d94-4f39-a25e-0cf8b43d34e0") ) (fp_line (start -1.8 4.35) (end 1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "107d4b64-211e-48f7-9c93-7866eef9a1a5") ) (fp_line (start 1.27 -1.27) (end 1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53aea749-2107-4c05-bcc4-01b08c632b01") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57d75b93-2c19-4c3e-9f51-e9b42683c1fe") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8370c9a3-6202-4cb6-abf6-e4adda0fca52") ) (fp_line (start 1.27 3.81) (end -1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6949cb2d-786f-421c-8080-0e15b48a240e") ) (fp_line (start -1.27 3.81) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ade7fdf1-7d3c-4526-a7a2-327f834bb667") ) (fp_text user "${REFERENCE}" (at 0 1.27 0) (layer "F.Fab") (uuid "2cb73324-640c-4063-9ed3-8b87d4b82a96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 64 "Net-(JP12-A)") (pinfunction "A") (pintype "passive") (uuid "825f50bc-ef6c-44a2-aca2-c1f2c097c753") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu" "In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu" "In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu" "In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu" "In30.Cu" ) (remove_unused_layers no) (net 13 "DQ") (pinfunction "B") (pintype "passive") (uuid "a9dd3c12-6a54-4f76-9953-36b1ac7cb28a") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "fa36be4e-7de9-478f-a4ef-c229ac16c103") (at 171.28245 99.8532) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C8" (at 0.05 1.85 0) (layer "F.SilkS") (uuid "fa1d4363-f425-40d2-8a03-5969cbd389db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 0) (layer "F.Fab") (uuid "471b0f01-233c-4955-be2a-1b914378a132") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "394d18a5-a022-4e52-8f0b-ed21706c82aa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1074f0bb-9833-4c48-9376-9c398fbe97a8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "385347d2-2954-4789-b195-590763ace92c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at -1.11875 155.74375 90) (layer "F.Fab") (hide yes) (uuid "d99e48d4-5d4b-42ff-ac40-b4ecc6528a07") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "81bb18a2-feb9-473b-98f3-17e6a71a1ab0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77a52056-e265-4fa0-a143-7752ccbd21eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer" "Kyocera AVX" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2810d9bc-5770-4c59-9462-7e1d59b9c835") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b053d6f-d9f1-4639-bcd7-ad5e9afae272") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Type" "SMD" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62650f52-8bad-4df9-8609-b370942916b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Notes" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "766326c5-6683-4278-9e3c-5e347ca615b0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/27625c54-6268-4c25-bed4-fca1fa7ca75b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30f92202-208a-472c-b21e-999021dca528") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c72b4b7c-7f61-4c1d-bbbe-27eaebebc70b") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87a42316-739c-45a3-ad0e-50e1ada93b3e") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "821500cf-0ddd-472a-8076-d32e0236ecff") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "52930d14-af2d-43db-b1cc-a8a0248df031") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82cb85c2-1d36-4bca-ac89-fc5d4ef9f260") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c306acfb-1858-410e-b5bb-0debdaaae433") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d53b7ab-d307-420e-96de-a2d463eec682") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3ad719d-11f5-4e04-968a-ed651eacda3b") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb108922-0dea-489d-a9c3-32431e531024") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e2693ce-44ac-47b0-bb48-b7d00b65d0ef") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f42d89a4-6d7f-4264-ae6b-25d0ed0988d1") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "de4b3725-33bb-4a22-b6c8-88a6c84d8bd3") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "b2d3a484-4ef7-4fba-be23-3b5599c33e40") ) (pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "c2a89320-cb2e-4059-9ec3-78e8fcdc173e") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (gr_rect (start 146.4 109.2) (end 148.125 110.775) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a") ) (gr_rect (start 149.175 111.85) (end 152.65 113.45) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4f929ae2-48f5-4477-ae85-53b87595350b") ) (gr_rect (start 146.3 109.1) (end 152.7 113.5) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.SilkS") (uuid "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e") ) (gr_rect (start 149.175 109.2) (end 152.65 110.8) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cbfcf842-ae79-48e8-8439-be79bc4d3d3b") ) (gr_rect (start 146.4 111.85) (end 148.125 113.45) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cf7a1173-45eb-49f7-92cb-0fcb446fcd83") ) (gr_line (start 106.5 120.5) (end 106.5 70.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "1ff9ad4f-df6f-49ab-9620-4c1f4c826e3c") ) (gr_arc (start 182.5 65.5) (mid 186.035534 66.964466) (end 187.5 70.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "253cd7ee-a6a8-4a88-9b21-3a5492d3387f") ) (gr_line (start 137.864315 108.4) (end 137.864315 116.7) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "306e60d7-6bad-4f84-ab78-5e252d0cdaec") ) (gr_line (start 182.5 125.5) (end 111.5 125.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "30ed1a5d-b8ab-4cec-9a9e-3c4371e9a785") ) (gr_arc (start 187.5 120.5) (mid 186.035534 124.035534) (end 182.5 125.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "421ca7a6-2f12-4107-ad04-ca67564c53c5") ) (gr_arc (start 123.464315 108.4) (mid 123.69863 107.834315) (end 124.264315 107.6) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "42680025-3ddd-4ce9-812b-6c53966adcf8") ) (gr_line (start 187.5 70.5) (end 187.5 120.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "598fbf1d-d0d7-4444-8960-60d4c83f984f") ) (gr_arc (start 137.864315 116.7) (mid 137.63 117.265685) (end 137.064315 117.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "84186294-131c-441e-a634-b464a4262ee9") ) (gr_line (start 137.064315 117.5) (end 124.264315 117.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "b28dd4d8-0b33-4c9e-a730-ec162ed73550") ) (gr_line (start 124.264315 107.6) (end 137.064315 107.6) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db6d91d4-3bed-48a0-ad10-421190cd937a") ) (gr_line (start 123.464315 116.7) (end 123.464315 108.4) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db736a94-38b1-4c57-9ace-a27bfb574f55") ) (gr_arc (start 106.5 70.5) (mid 107.964466 66.964466) (end 111.5 65.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "e03c412e-e7b3-4b0f-9b16-46f8ef6f97ef") ) (gr_arc (start 137.064315 107.6) (mid 137.63 107.834315) (end 137.864315 108.4) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "edc3c0d1-6a9a-42cb-b5b2-5a42e4aa0055") ) (gr_arc (start 124.264315 117.5) (mid 123.69863 117.265685) (end 123.464315 116.7) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "ee0b9580-0014-44b0-9235-2368f5c231a1") ) (gr_line (start 111.5 65.5) (end 182.5 65.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "f5d57285-06a2-4d77-b4e1-e76bf33a8003") ) (gr_arc (start 111.5 125.5) (mid 107.964466 124.035534) (end 106.5 120.5) (stroke (width 0.1) (type default) ) (layer "Edge.Cuts") (uuid "fe9c8d46-cec6-4d1e-a60b-23bbd31adfd0") ) (gr_text "3.3V" (at 186.45 92.6796 90) (layer "F.SilkS") (uuid "005e0d8d-b943-464e-af2c-f96930a8ff84") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "5V" (at 186.45 87.3964 90) (layer "F.SilkS") (uuid "1a0ae3a6-83b0-4211-b4fd-9efadc0316e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FanPico-0200 v1.1 \n2025-12-05\nTimo Kokkonen \n" (at 126.5 121.5 0) (layer "F.SilkS") (uuid "21b2d000-a302-44cb-bc67-350475ec7fc7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "TX" (at 108.9832 109.7 0) (layer "F.SilkS") (uuid "27faad38-2e22-45fb-a99c-5be64b840c33") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "kokkonen.net/fanpico/" (at 186.3 109.3 90) (layer "F.SilkS") (uuid "31e38805-9300-46a1-ae3d-e0445fabc435") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 108.5 104.6 0) (layer "F.SilkS") (uuid "3ce321c4-e665-475a-93bf-17b3c0502f24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "DQ" (at 108.662 89.1848 0) (layer "F.SilkS") (uuid "3d0d69c3-8d77-49c7-a495-9e478f323d9d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RX" (at 108.9832 107.1 0) (layer "F.SilkS") (uuid "42125ff3-0237-4fef-b843-40aa0ddb4ce6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 149.93 124.35 0) (layer "F.SilkS") (uuid "4416ed46-3141-4f6f-ac61-feb10f872ed6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "12V" (at 186.45 81.8 90) (layer "F.SilkS") (uuid "4d864871-6255-4aed-9ed6-3bed961863e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 161.8968 66.6625 180) (layer "F.SilkS") (uuid "5e499852-b518-49d2-a1ed-8042c9891343") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 108.3064 91.7848 0) (layer "F.SilkS") (uuid "63007d28-f4f7-414b-96ab-2219d1e3c9a3") (effects (font (size 1 0.9) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 149.93 116.2 0) (layer "F.SilkS") (uuid "66dd6af7-4245-4df4-9421-4f19ff9b02b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 151.6468 78.9625 180) (layer "F.SilkS") (uuid "7fe752dd-4bbf-4450-b28b-0b0a16fded4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "12V" (at 174.55 91.9 90) (layer "F.SilkS") (uuid "81de3ef3-edc0-4917-a620-cd133f9ae80d") (effects (font (size 0.8 0.8) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "+ -" (at 176.63 66.2 180) (layer "F.SilkS") (uuid "83c0cc15-9f90-41c7-b850-ea2c5bb57ef1") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "1-WIRE" (at 115.53 96.7 -90) (layer "F.SilkS") (uuid "8b7e8ea2-5ed1-4636-9af1-ce8a39a59665") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RESET" (at 141.3 124.4 0) (layer "F.SilkS") (uuid "916e8d4c-532d-4061-9c96-c2e65884e105") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "13-30V" (at 167.75 94.4 90) (layer "F.SilkS") (uuid "96bbd744-925a-4963-b163-d3be5f7b8122") (effects (font (size 0.8 0.8) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "SENSOR2" (at 158.43 124.35 0) (layer "F.SilkS") (uuid "a0c22e18-cc4b-46fd-8af9-c6618f778cf6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "DC IN" (at 179.43 75.2 90) (layer "F.SilkS") (uuid "b089f2fd-e2fa-41f2-9ded-7ec550001ee7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 150.2968 66.6625 180) (layer "F.SilkS") (uuid "b37072bc-4cc6-449d-8ad2-cadefb35af34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "12V" (at 177.05 116.6 90) (layer "F.SilkS") (uuid "b664f0ca-58c7-47f4-930c-5b6d5bae5e17") (effects (font (size 0.8 0.8) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "FAN1" (at 162.6468 78.9625 180) (layer "F.SilkS") (uuid "bcaf5622-a67d-42c9-bc38-f553924017a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "VDD" (at 108.4 86.6848 0) (layer "F.SilkS") (uuid "c46f0365-eca5-465a-a5a4-01b26fc3fb6d") (effects (font (size 1 0.9) (thickness 0.15) ) ) ) (gr_text "SENSOR2" (at 158.43 116.2 0) (layer "F.SilkS") (uuid "d3168e5a-881c-4c53-a21f-a85a6828c456") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "13-30V" (at 170.2 116.7 90) (layer "F.SilkS") (uuid "d6ed2efb-0544-4436-bfa4-ff7de8c08442") (effects (font (size 0.8 0.8) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "FanPico-0200" (at 124.8072 73.7708 -90) (layer "F.SilkS") (uuid "debf45ec-e862-4f94-8c02-30d17d9a3c5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Serial (TTL)" (at 114.0796 107.2 -90) (layer "F.SilkS") (uuid "e2a98e6b-c242-4852-88b0-912e1ae71965") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "USB" (at 186.45 76.7875 90) (layer "F.SilkS") (uuid "eaece356-bd32-4b59-977f-c84615c36577") (effects (font (size 1 1) (thickness 0.15) ) ) ) (segment (start 152.68 95.225) (end 152.68 96.85) (width 0.25) (layer "F.Cu") (net 1) (uuid "2d911b0b-1588-423d-b491-7a28493cf2d0") ) (segment (start 152.68 96.85) (end 151.7425 96.85) (width 0.2) (layer "F.Cu") (net 1) (uuid "389c3e5a-af4b-4c9d-85a1-69cf9e2f82d2") ) (segment (start 152.68 96.85) (end 153.0103 96.5197) (width 0.2) (layer "F.Cu") (net 1) (uuid "3e9b5c62-f997-48c6-b76a-f3663116d36c") ) (segment (start 150.93 97.6625) (end 150.93 97.725) (width 0.2) (layer "F.Cu") (net 1) (uuid "462aca2f-1657-4c32-8d75-63e333e2f20e") ) (segment (start 151.7425 96.85) (end 150.93 97.6625) (width 0.2) (layer "F.Cu") (net 1) (uuid "7d363c74-f4cc-4352-9637-fcec563198a0") ) (segment (start 167.43 96.225) (end 163.405 96.225) (width 0.5) (layer "F.Cu") (net 1) (uuid "8b4bef61-8365-4ee4-aacb-11cdc6697930") ) (segment (start 163.405 96.225) (end 163.33 96.3) (width 0.5) (layer "F.Cu") (net 1) (uuid "950bed31-f28c-4e12-bdff-48d739a37337") ) (segment (start 163.1103 96.5197) (end 163.33 96.3) (width 0.2) (layer "F.Cu") (net 1) (uuid "9d472c1d-214b-49da-b96a-96fad2084de4") ) (segment (start 153.0103 96.5197) (end 163.1103 96.5197) (width 0.2) (layer "F.Cu") (net 1) (uuid "cb51d767-b986-4ec8-ac16-f096f45231b1") ) (segment (start 182.63 86.3875) (end 182.63 85) (width 0.25) (layer "F.Cu") (net 1) (uuid "f4296762-b401-4d94-bfd3-89828d45b265") ) (segment (start 152.8925 96.4625) (end 152.98 96.55) (width 0.25) (layer "F.Cu") (net 1) (uuid "f57d48a3-5065-4729-922f-bc34f558d3a8") ) (via (at 182.63 85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "2b508ab8-1328-4e77-827d-edaeed76d3c1") ) (via (at 165.55 96.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "a0987a38-ce98-45a6-965a-789056068157") ) (segment (start 165.55 95.25) (end 165.55 96.2) (width 0.5) (layer "In1.Cu") (net 1) (uuid "17b4bb64-b1ab-48a0-b21a-061df4b23f0f") ) (segment (start 182.63 85) (end 182.63 85.7) (width 0.5) (layer "In1.Cu") (net 1) (uuid "51d39a16-d447-4305-9b5f-88736f6fc560") ) (segment (start 166.6 94.2) (end 165.55 95.25) (width 0.5) (layer "In1.Cu") (net 1) (uuid "7d19d4df-e926-4f41-b602-7909e43eb52c") ) (segment (start 182.63 85.7) (end 174.13 94.2) (width 0.5) (layer "In1.Cu") (net 1) (uuid "89dc46e5-69c0-459e-bcc0-586e631656a0") ) (segment (start 174.13 94.2) (end 166.6 94.2) (width 0.5) (layer "In1.Cu") (net 1) (uuid "f792500b-c0e4-45df-b4fd-6c756107696c") ) (segment (start 148.086 79.9) (end 148.11 79.876) (width 0.5) (layer "F.Cu") (net 2) (uuid "1bfc58b2-336d-4c6d-8b79-2de286d4ef93") ) (segment (start 147.03 92) (end 147.03 96.2625) (width 0.25) (layer "F.Cu") (net 2) (uuid "1c1fa24d-046a-4f78-8a98-74005d6cd7e6") ) (segment (start 179.93 101.8) (end 182.88 101.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "357a2782-adbe-4b35-ade4-dee82cbf0d92") ) (segment (start 145.63 79.2) (end 146.33 79.9) (width 0.75) (layer "F.Cu") (net 2) (uuid "374a07dd-d770-455c-8cd7-0dbc816e0477") ) (segment (start 182.88 101.8) (end 183.53 102.45) (width 0.75) (layer "F.Cu") (net 2) (uuid "490f2354-524b-4e1b-960d-45865d1d9532") ) (segment (start 149.63 96.6) (end 149.33 96.3) (width 0.25) (layer "F.Cu") (net 2) (uuid "53affcdd-56c0-4cc2-9536-d05fe126d650") ) (segment (start 149.63 97.725) (end 149.63 96.6) (width 0.25) (layer "F.Cu") (net 2) (uuid "60ff016c-e81f-4240-9d8a-b954c4011c19") ) (segment (start 145.63 79) (end 145.63 79.2) (width 0.75) (layer "F.Cu") (net 2) (uuid "79342b8d-1b75-4b81-974b-122b5a5099ea") ) (segment (start 147.68 97.033688) (end 147.68 97.725) (width 0.25) (layer "F.Cu") (net 2) (uuid "970244f5-ca8e-4c16-9512-92300d05030b") ) (segment (start 146.33 79.9) (end 148.086 79.9) (width 0.5) (layer "F.Cu") (net 2) (uuid "a08de72a-770f-4ed0-8bb8-9292988cb115") ) (segment (start 147.68 96.85) (end 147.68 97.033688) (width 0.25) (layer "F.Cu") (net 2) (uuid "ad8f72d3-323e-4fdd-87aa-0aba7c848629") ) (segment (start 149.33 96.3) (end 148.23 96.3) (width 0.25) (layer "F.Cu") (net 2) (uuid "b4911913-6e09-4bcc-80ba-5b256adb8597") ) (segment (start 147.68 96.9125) (end 147.68 97.033688) (width 0.25) (layer "F.Cu") (net 2) (uuid "c9319940-f52b-4c69-869b-bab31eb76f97") ) (segment (start 147.03 96.2625) (end 147.68 96.9125) (width 0.25) (layer "F.Cu") (net 2) (uuid "d78e9bff-a81e-4320-9eed-3730a4a76799") ) (segment (start 179.93 101.8) (end 179.33 101.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "e35fd167-c145-4edc-8909-869b18e0af49") ) (segment (start 148.23 96.3) (end 147.68 96.85) (width 0.25) (layer "F.Cu") (net 2) (uuid "ec8b70c7-1625-4b7a-a3a6-fc7f3206ab7d") ) (segment (start 179.33 101.8) (end 177.93 103.2) (width 0.75) (layer "F.Cu") (net 2) (uuid "f012d3fc-1669-41b5-a100-9b847e7c28f2") ) (segment (start 177.93 103.2) (end 177.93 103.7) (width 0.75) (layer "F.Cu") (net 2) (uuid "fa9c88e4-b195-4eb2-85e6-68a19f71aef8") ) (via (at 145.63 79) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "08112ac9-3f39-4343-b23f-7e6368d61dba") ) (via (at 161.33 80.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "17d6b00e-d113-4a31-a52c-6b004e28faa0") ) (via (at 177.7 105.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "1f6df03d-d0a7-4df5-b9b0-c5ea090652ef") ) (via (at 171.63 104.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "201b2263-f17f-4dd9-8c6c-fdb40f7ec466") ) (via (at 173.13 103.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3437a75b-1cb3-47be-bcd6-9f045d3dac69") ) (via (at 182.33 101.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "345f722a-8bd7-497c-ade5-c7ecbde0142e") ) (via (at 157.03 81.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4e36382d-80fa-4989-9c60-bb217bd513a3") ) (via (at 143.2 88.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "68942be2-a619-4d18-8f46-3178b6ed831a") ) (via (at 179.33 101.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6c69b173-c47f-40ad-87a1-8c72dae244ab") ) (via (at 179.1 105.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "7016876d-b296-4ae8-9913-01f1a51c819c") ) (via (at 148.63 88.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "71836c74-638d-4b8b-8fff-44c336edeba8") ) (via (at 154.1 119) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "7c82dc0f-e31b-4e46-be4d-02c342a2bfa7") ) (via (at 171.63 105.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "859e7efd-a930-47e6-8450-eaf260df19d6") ) (via (at 150.83 80.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "868747d9-6798-48fe-ba12-1fdfd416a07f") ) (via (at 179.1 106.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "91eef4a4-93fa-4304-b553-4e39aa44ef05") ) (via (at 146.5 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "9522f992-2137-492f-94c5-4339cfc1d278") ) (via (at 177.7 106.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "b137e98e-f493-4481-a461-a71e2314a292") ) (via (at 156.2 111.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "b532831f-e9bf-461e-9221-e90cd07a0dbf") ) (via (at 174.63 103.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "b8c5f69f-1ea9-4fcd-a050-49f36f2223b2") ) (via (at 155.1 84.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "bf0c2f1d-d4ee-4d1b-bdd8-031ea251cf9c") ) (via (at 180.43 101.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "c62b1a6b-8048-417b-8b20-acbc3fded6c6") ) (via (at 168.4 79.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cddbcc9e-3e0b-41bb-a55e-15f5f73d8662") ) (via (at 154.15 79.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cec87290-989e-496e-b77d-ce5264714b0b") ) (via (at 174.63 104.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d2e03179-5c3d-4ef5-a7a3-c0a381e431af") ) (via (at 173.13 104.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d53546dd-d74f-4abf-a6b6-1be4f9acc5f8") ) (via (at 168.63 102) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "f7e525b7-8a38-45f3-b88e-d8baee329e47") ) (via (at 181.43 101.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "fa77c5cb-4188-4e6f-95ae-332683584bc9") ) (segment (start 145.205 87.395) (end 145.205 101.675) (width 0.25) (layer "F.Cu") (net 3) (uuid "0d3c88e6-0c4a-4bd8-bb1b-a1332a8b3ee0") ) (segment (start 145.75 87.013604) (end 145.75 87.05) (width 0.25) (layer "F.Cu") (net 3) (uuid "0ec2b0c8-d5b3-4dbf-8fa3-d1e2ed16d0e6") ) (segment (start 112.8775 100.8525) (end 112.8775 100.6) (width 0.5) (layer "F.Cu") (net 3) (uuid "122f02fe-26fe-42dc-bd3c-2706ff476b08") ) (segment (start 110.23 81.6072) (end 110.23 78.4972) (width 0.5) (layer "F.Cu") (net 3) (uuid "2374a537-5460-4b0c-8bed-5f770d61277b") ) (segment (start 145.7241 102.1941) (end 158.7441 102.1941) (width 0.25) (layer "F.Cu") (net 3) (uuid "241cf414-e371-498b-a70f-fb00a4e0d9da") ) (segment (start 111.5312 85.0792) (end 111.5312 83.4672) (width 0.5) (layer "F.Cu") (net 3) (uuid "2d49622a-92f4-44d0-8a17-d3ffc2b869e8") ) (segment (start 145.205 101.675) (end 145.7241 102.1941) (width 0.25) (layer "F.Cu") (net 3) (uuid "2df65516-ff56-4796-a796-ce1b4deeb940") ) (segment (start 113.1568 86.7048) (end 111.5312 85.0792) (width 0.5) (layer "F.Cu") (net 3) (uuid "3e5c963a-2502-4996-bf23-0ee319d74998") ) (segment (start 112.5252 86.7048) (end 108.65 90.58) (width 0.5) (layer "F.Cu") (net 3) (uuid "51774cba-1744-4cf6-a83e-87ac6f23c9e2") ) (segment (start 111.83 101.9) (end 112.8775 100.8525) (width 0.5) (layer "F.Cu") (net 3) (uuid "57295168-3511-453c-a50d-0f03018a8970") ) (segment (start 161.1911 104.6411) (end 161.1911 107.0943) (width 0.25) (layer "F.Cu") (net 3) (uuid "5a029418-539f-4bea-b518-72025d73f679") ) (segment (start 111.5312 82.9084) (end 110.23 81.6072) (width 0.5) (layer "F.Cu") (net 3) (uuid "5c070f06-5b58-4e2e-a560-8675546732e7") ) (segment (start 141.2 77.53) (end 143.03 79.36) (width 0.25) (layer "F.Cu") (net 3) (uuid "5e8e1c0b-1086-42ed-ba3e-f58926cd8a09") ) (segment (start 139.59 77.53) (end 141.2 77.53) (width 0.25) (layer "F.Cu") (net 3) (uuid "6c3ca71d-15e5-4150-815a-0439629bd22a") ) (segment (start 158.03 87.1125) (end 158.03 87.2) (width 0.25) (layer "F.Cu") (net 3) (uuid "6e241bde-4c2e-4a2c-9269-ecb7658203e3") ) (segment (start 182.63 91.6875) (end 182.63 90.2) (width 0.25) (layer "F.Cu") (net 3) (uuid "73a9dbdb-0320-4d9d-893b-007d917262d6") ) (segment (start 110.23 78.4972) (end 110.86 77.8672) (width 0.5) (layer "F.Cu") (net 3) (uuid "7931642a-7a0e-424d-b0d7-6a56c05e15e5") ) (segment (start 146.88 87.05) (end 145.75 87.05) (width 0.25) (layer "F.Cu") (net 3) (uuid "7d6bc66c-5bb6-4ec4-a588-ff9f027bbe6b") ) (segment (start 143.03 84.293604) (end 145.75 87.013604) (width 0.25) (layer "F.Cu") (net 3) (uuid "920dece7-8eec-44e9-b59f-c6d9f83f5589") ) (segment (start 110.13 101.9) (end 111.83 101.9) (width 0.5) (layer "F.Cu") (net 3) (uuid "ad10ab41-6059-4727-88cb-5c00414fbe1e") ) (segment (start 158.03 87.2) (end 156.73 88.5) (width 0.25) (layer "F.Cu") (net 3) (uuid "b2a945c5-10c1-4d64-812d-fde90a176577") ) (segment (start 113.1568 86.7048) (end 112.5252 86.7048) (width 0.5) (layer "F.Cu") (net 3) (uuid "b6ae2ba9-fd3c-49ac-9f6c-6341de8e7a6b") ) (segment (start 110.86 77.8672) (end 111.59 77.8672) (width 0.5) (layer "F.Cu") (net 3) (uuid "b742f481-8283-4959-89b4-d62b8c0b5b04") ) (segment (start 108.65 100.42) (end 110.13 101.9) (width 0.5) (layer "F.Cu") (net 3) (uuid "b828724c-25bc-494b-a551-ab0ded5afdbd") ) (segment (start 158.7441 102.1941) (end 161.1911 104.6411) (width 0.25) (layer "F.Cu") (net 3) (uuid "c18c7d32-af20-4750-b23f-506bdd5d0426") ) (segment (start 145.55 87.05) (end 145.205 87.395) (width 0.25) (layer "F.Cu") (net 3) (uuid "d60091b0-e254-4730-81b0-58bc7026ac4e") ) (segment (start 111.5312 83.4672) (end 111.5312 82.9084) (width 0.5) (layer "F.Cu") (net 3) (uuid "f32c523a-4f26-4810-afd7-ae09b1695b3b") ) (segment (start 108.65 90.58) (end 108.65 100.42) (width 0.5) (layer "F.Cu") (net 3) (uuid "f3cc026d-a222-4ec4-922b-743c357008c6") ) (segment (start 143.03 79.36) (end 143.03 84.293604) (width 0.25) (layer "F.Cu") (net 3) (uuid "f6bde3bf-f733-4a88-a1e1-0d3dbae01fc6") ) (segment (start 145.75 87.05) (end 145.55 87.05) (width 0.25) (layer "F.Cu") (net 3) (uuid "f769ad7b-2163-4f25-84fc-82fcf551deef") ) (segment (start 161.1911 107.0943) (end 160.1536 108.1318) (width 0.25) (layer "F.Cu") (net 3) (uuid "fe430332-c96a-4295-8681-d4bfe1f1d763") ) (via (at 182.63 90.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "2b6ca1a8-c8d6-4c94-8d73-33a6271be53e") ) (via (at 156.73 88.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "b947bfdf-e7fc-44f4-9e2f-7cef014ae947") ) (segment (start 139.59 77.53) (end 145.76 77.53) (width 0.4) (layer "In1.Cu") (net 3) (uuid "17871f90-c776-4407-873b-f11ce68599cb") ) (segment (start 183.83 90.2) (end 182.63 90.2) (width 0.25) (layer "In1.Cu") (net 3) (uuid "22d1aeb4-f151-4264-97a3-d9780d49fbff") ) (segment (start 145.76 77.53) (end 156.73 88.5) (width 0.4) (layer "In1.Cu") (net 3) (uuid "262182d1-1c6f-4cbd-a364-8ce771d66143") ) (segment (start 163.33 82) (end 183.63 82) (width 0.25) (layer "In1.Cu") (net 3) (uuid "3974abfb-2d38-45a8-b8c5-1fb05f0f8aa4") ) (segment (start 184.93 89.1) (end 183.83 90.2) (width 0.25) (layer "In1.Cu") (net 3) (uuid "49ac02eb-9222-4932-ad81-789431a88801") ) (segment (start 183.63 82) (end 184.93 83.3) (width 0.25) (layer "In1.Cu") (net 3) (uuid "6080e08e-855d-41da-a24a-3df27fd37646") ) (segment (start 156.73 88.5) (end 156.83 88.5) (width 0.25) (layer "In1.Cu") (net 3) (uuid "90975c82-5bf6-4d47-8f44-6d383195af72") ) (segment (start 118.5116 81.35) (end 113.1568 86.7048) (width 0.4) (layer "In1.Cu") (net 3) (uuid "a28bac85-822b-454d-9017-778d659dfde0") ) (segment (start 184.93 83.3) (end 184.93 89.1) (width 0.25) (layer "In1.Cu") (net 3) (uuid "b94387ba-3b10-4eee-875c-02ecb6cd500c") ) (segment (start 139.59 77.53) (end 139.1 77.53) (width 0.4) (layer "In1.Cu") (net 3) (uuid "bb58c1df-5d3e-4afc-8df6-f3bab374e0e2") ) (segment (start 139.1 77.53) (end 135.28 81.35) (width 0.4) (layer "In1.Cu") (net 3) (uuid "cb55563c-ce91-4eb0-a2a0-37b59777932c") ) (segment (start 135.28 81.35) (end 118.5116 81.35) (width 0.4) (layer "In1.Cu") (net 3) (uuid "e80b468f-1912-4aa3-9ee4-c5097f7985b2") ) (segment (start 156.83 88.5) (end 163.33 82) (width 0.25) (layer "In1.Cu") (net 3) (uuid "f274326b-8823-439f-8762-4cc8ed3ebf34") ) (segment (start 162.8425 88.1075) (end 162.8425 87.35) (width 0.25) (layer "F.Cu") (net 5) (uuid "0de3e0a0-33bb-4f53-9409-616d7d75e2e0") ) (segment (start 162.15 88.8) (end 162.8425 88.1075) (width 0.25) (layer "F.Cu") (net 5) (uuid "3eb9c34a-c37f-4ab6-9c89-1779fddc771e") ) (segment (start 160.78 85.2875) (end 162.8425 87.35) (width 0.25) (layer "F.Cu") (net 5) (uuid "70501096-d99f-4b4d-90c2-88648890e31f") ) (segment (start 161 88.8) (end 162.15 88.8) (width 0.25) (layer "F.Cu") (net 5) (uuid "954b6998-43b8-4d21-946a-5bc7a209d2f6") ) (segment (start 158.03 85.2875) (end 160.78 85.2875) (width 0.25) (layer "F.Cu") (net 5) (uuid "9bd5cf1e-8308-4047-b099-5a8f8ffccac8") ) (via (at 161 88.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (uuid "b3dca58d-fca0-4f82-baf9-896769880174") ) (segment (start 140.32 108.01) (end 159.53 88.8) (width 0.25) (layer "In1.Cu") (net 5) (uuid "02e5f40d-213d-45ca-bbf5-d1005c26e16a") ) (segment (start 139.59 108.01) (end 140.32 108.01) (width 0.25) (layer "In1.Cu") (net 5) (uuid "53483a1e-448f-412e-aee6-64a77bae7e1b") ) (segment (start 159.53 88.8) (end 161 88.8) (width 0.25) (layer "In1.Cu") (net 5) (uuid "ab257578-dd23-4ef1-a72f-3781b3e5ed6e") ) (segment (start 165.23 120.2) (end 167.355 118.075) (width 1.5) (layer "F.Cu") (net 6) (uuid "0768dec1-82c9-46e1-9c8d-81e288d6f824") ) (segment (start 168.13 115.325) (end 168.13 111.15) (width 1.5) (layer "F.Cu") (net 6) (uuid "2f29a5d0-1f4a-4748-9c8a-6b688cee7573") ) (segment (start 165.23 122) (end 165.23 120.2) (width 1.5) (layer "F.Cu") (net 6) (uuid "8a8d3fa3-3d98-41e6-8059-f783e788441d") ) (segment (start 167.355 118.075) (end 167.355 116.1) (width 1.5) (layer "F.Cu") (net 6) (uuid "9371a163-d609-4d1f-9150-6ba054cc42fc") ) (segment (start 167.355 116.1) (end 168.13 115.325) (width 1.5) (layer "F.Cu") (net 6) (uuid "edf93204-77cd-473e-b493-4beacd88352c") ) (segment (start 167.055 106.775) (end 171.59495 102.23505) (width 0.25) (layer "F.Cu") (net 7) (uuid "091b7d9d-c60f-4882-a5b0-7a92af171f6a") ) (segment (start 169.84495 93.71065) (end 169.7875 93.6532) (width 0.25) (layer "F.Cu") (net 7) (uuid "23b33688-e744-4658-b889-51f41796db0c") ) (segment (start 164.855 112.475) (end 166.58 112.475) (width 0.25) (layer "F.Cu") (net 7) (uuid "271f7c45-9f9b-4257-9995-5025517341ea") ) (segment (start 166.58 112.475) (end 167.055 112) (width 0.25) (layer "F.Cu") (net 7) (uuid "392431b9-a244-4ffa-aff9-d32a97b472a6") ) (segment (start 169.84495 96.0032) (end 171.59495 97.7532) (width 0.25) (layer "F.Cu") (net 7) (uuid "6ed17945-03c8-4597-9dc9-4ea431f5d1a9") ) (segment (start 171.59495 102.23505) (end 171.59495 97.7532) (width 0.25) (layer "F.Cu") (net 7) (uuid "9c3571e2-0809-4ea3-a7ea-cd5ecb148f59") ) (segment (start 163.53 111.15) (end 164.855 112.475) (width 0.25) (layer "F.Cu") (net 7) (uuid "a81e4fec-3a62-4436-b70f-384849048013") ) (segment (start 169.84495 95.7532) (end 169.84495 96.0032) (width 0.25) (layer "F.Cu") (net 7) (uuid "c9008663-0772-45d6-9893-13718f758c14") ) (segment (start 167.055 112) (end 167.055 106.775) (width 0.25) (layer "F.Cu") (net 7) (uuid "d47d697f-58db-4c22-991f-d775a8129182") ) (segment (start 169.84495 95.7532) (end 169.84495 93.71065) (width 0.25) (layer "F.Cu") (net 7) (uuid "f75f5c4d-871f-494f-b1f3-2384c23396b9") ) (segment (start 165.83 104.85) (end 165.83 100.8) (width 1) (layer "F.Cu") (net 8) (uuid "0f1f3749-7106-42d0-9c4b-0f5866c7ea70") ) (segment (start 165.83 111.15) (end 165.83 104.85) (width 1) (layer "F.Cu") (net 8) (uuid "1474bdb1-6fe6-4852-9700-3794ac30bb44") ) (segment (start 169.76995 99.7782) (end 169.84495 99.8532) (width 0.25) (layer "F.Cu") (net 8) (uuid "27eef489-ac99-4fc0-afc4-056979856eb8") ) (segment (start 168.78245 99.8532) (end 168.12925 99.2) (width 0.5) (layer "F.Cu") (net 8) (uuid "2ffdeeb7-db34-4a0a-a15c-be5e4b511abe") ) (segment (start 168.12925 99.2) (end 167.43 99.2) (width 0.5) (layer "F.Cu") (net 8) (uuid "3bf0fb64-4845-418a-9bff-fc9dbb2162b0") ) (segment (start 169.84495 99.8532) (end 168.78245 99.8532) (width 0.5) (layer "F.Cu") (net 8) (uuid "5a2a5817-e2dc-4554-a445-19c554dcd207") ) (segment (start 169.76995 97.7532) (end 169.76995 99.7782) (width 0.25) (layer "F.Cu") (net 8) (uuid "9520b4e5-342a-4009-9205-2f06668e3947") ) (segment (start 165.83 100.8) (end 167.43 99.2) (width 1) (layer "F.Cu") (net 8) (uuid "a284ffdd-80f8-450e-a32c-219d74c9a1ec") ) (segment (start 184.577 88.2125) (end 184.754 88.3895) (width 0.25) (layer "F.Cu") (net 10) (uuid "1f21bb65-4292-4713-be9d-9f9df2c69715") ) (segment (start 182.63 88.2125) (end 184.577 88.2125) (width 0.25) (layer "F.Cu") (net 10) (uuid "834d1719-35d6-42b1-a15e-1a3bce3bca5a") ) (segment (start 182.63 93.5125) (end 184.63 93.5125) (width 0.25) (layer "F.Cu") (net 11) (uuid "68f9673a-1655-4f0a-994b-6295638d3690") ) (segment (start 184.63 93.5125) (end 184.755 93.6375) (width 0.25) (layer "F.Cu") (net 11) (uuid "bca3901d-eabf-4d6c-87b5-0d4f3d70f6e9") ) (segment (start 182.73 77.7) (end 184.5847 77.7) (width 0.25) (layer "F.Cu") (net 12) (uuid "b5694561-2639-4cec-9945-d74b845990ac") ) (segment (start 184.5847 77.7) (end 184.7504 77.8657) (width 0.25) (layer "F.Cu") (net 12) (uuid "daadede2-dd04-4682-8db1-760069de366d") ) (segment (start 113.1568 89.2448) (end 114.641724 89.2448) (width 0.25) (layer "F.Cu") (net 13) (uuid "1707536c-d6d4-42b4-87b0-e4eca6407d56") ) (segment (start 117.46 115.63) (end 121.81 115.63) (width 0.25) (layer "F.Cu") (net 13) (uuid "188b364e-e250-45cb-8f36-11f77dc4465f") ) (segment (start 114.641724 89.2448) (end 115.25 89.853076) (width 0.25) (layer "F.Cu") (net 13) (uuid "25e6068b-31aa-4a67-9ecf-892f527ed2ac") ) (segment (start 115.25 89.853076) (end 115.25 93.7) (width 0.25) (layer "F.Cu") (net 13) (uuid "2784e8e5-9970-48db-a0f2-b88c5afcd3a8") ) (segment (start 112.7 94.9872) (end 112.63 94.9172) (width 0.25) (layer "F.Cu") (net 13) (uuid "30629b1c-bb9c-4bd7-9732-c0a2361a6ab7") ) (segment (start 114.0328 94.9172) (end 112.63 94.9172) (width 0.25) (layer "F.Cu") (net 13) (uuid "35f191b1-e255-442d-b26d-7579a4d47bf6") ) (segment (start 115.83 99.03) (end 115.83 114) (width 0.25) (layer "F.Cu") (net 13) (uuid "3ca46e85-832c-497d-b0fd-fa81cb5630cf") ) (segment (start 112.88 98) (end 114.8 98) (width 0.25) (layer "F.Cu") (net 13) (uuid "57c9f105-c6b2-4e0c-9fea-beb19df0fa5a") ) (segment (start 112.7 98) (end 112.88 98) (width 0.25) (layer "F.Cu") (net 13) (uuid "6bbcfcb6-4480-469c-a064-fa15c686daa2") ) (segment (start 112.88 98) (end 112.7 97.82) (width 0.25) (layer "F.Cu") (net 13) (uuid "85d93d32-f509-4782-8103-b06ea29a2f07") ) (segment (start 112.7 97.82) (end 112.7 94.9872) (width 0.25) (layer "F.Cu") (net 13) (uuid "c7490dad-c893-4158-ae4c-85dddac88d70") ) (segment (start 114.8 98) (end 115.83 99.03) (width 0.25) (layer "F.Cu") (net 13) (uuid "cb2bd57e-40ba-45b5-9166-e90857a31dab") ) (segment (start 115.25 93.7) (end 114.0328 94.9172) (width 0.25) (layer "F.Cu") (net 13) (uuid "d89a1e1f-f9a3-4ac7-9202-679161c035b6") ) (segment (start 115.83 114) (end 117.46 115.63) (width 0.25) (layer "F.Cu") (net 13) (uuid "d9f0ad6e-e428-4f44-9b11-84b64bfc392e") ) (segment (start 117.58 77.25) (end 115.63 77.25) (width 0.25) (layer "F.Cu") (net 14) (uuid "08a44937-fa2a-4f46-8a9c-096e406a7c6d") ) (segment (start 113.93 78.8672) (end 115.5472 77.25) (width 0.2) (layer "F.Cu") (net 14) (uuid "7f7d59fb-de06-4227-a8e1-d0f53838a84b") ) (segment (start 121.81 74.99) (end 119.84 74.99) (width 0.25) (layer "F.Cu") (net 14) (uuid "bc118269-7572-430d-92d1-d7b9ee5ae0ab") ) (segment (start 111.59 78.8672) (end 113.93 78.8672) (width 0.2) (layer "F.Cu") (net 14) (uuid "bf6f8170-68e9-46a3-8f59-06eb557d32e2") ) (segment (start 115.5472 77.25) (end 115.63 77.25) (width 0.2) (layer "F.Cu") (net 14) (uuid "c2ddde8c-f015-4009-807c-cf1195f9519c") ) (segment (start 119.84 74.99) (end 117.58 77.25) (width 0.25) (layer "F.Cu") (net 14) (uuid "c62746a3-d8f7-4af4-ad4e-5872e1a13d18") ) (segment (start 115.2396 77.25) (end 115.2396 77.4576) (width 0.2) (layer "F.Cu") (net 14) (uuid "e1bd8534-c440-41ad-9514-a29bc87df6d2") ) (segment (start 114.78 79.0172) (end 114.03 79.7672) (width 0.2) (layer "F.Cu") (net 15) (uuid "212c3d67-d33e-4800-a044-8e4ba69e0e44") ) (segment (start 115.63 79.0172) (end 114.78 79.0172) (width 0.2) (layer "F.Cu") (net 15) (uuid "4738492a-14b4-42f2-b5a0-876c14916687") ) (segment (start 116.9472 77.7) (end 115.63 79.0172) (width 0.25) (layer "F.Cu") (net 15) (uuid "5203792a-edab-40f3-a5f3-a90882e740d4") ) (segment (start 121.81 77.53) (end 121.64 77.7) (width 0.25) (layer "F.Cu") (net 15) (uuid "7610fd56-be9d-4ae7-8efd-83a685f9a1b7") ) (segment (start 114.03 79.7672) (end 111.69 79.7672) (width 0.2) (layer "F.Cu") (net 15) (uuid "d20ec4a6-06a8-446b-b78e-f676dbf5454b") ) (segment (start 121.64 77.7) (end 116.9472 77.7) (width 0.25) (layer "F.Cu") (net 15) (uuid "e0dfce6c-6f21-4385-8c99-4752487cf81d") ) (segment (start 111.69 79.7672) (end 111.59 79.8672) (width 0.2) (layer "F.Cu") (net 15) (uuid "ed140d73-4dc1-4535-bea2-cbff92bf3bb8") ) (segment (start 110.68 112.3108) (end 110.68 110.4796) (width 0.2) (layer "F.Cu") (net 16) (uuid "9016f7e5-0377-4828-875a-96a4397f3782") ) (segment (start 110.68 110.4796) (end 111.4796 109.68) (width 0.2) (layer "F.Cu") (net 16) (uuid "cc4e08b2-8e6e-4d8c-9ce7-54587d7b8522") ) (segment (start 110.992899 105.965) (end 110.3046 106.653299) (width 0.25) (layer "In2.Cu") (net 16) (uuid "039e31f0-d181-4854-8d02-a04c54b3d566") ) (segment (start 110.3046 106.653299) (end 110.3046 108.505) (width 0.25) (layer "In2.Cu") (net 16) (uuid "6f712cab-3543-43e3-863b-47d18153460c") ) (segment (start 116.95 72.23) (end 116.95 102.913604) (width 0.25) (layer "In2.Cu") (net 16) (uuid "7d457078-ee72-422c-922f-35500f60059a") ) (segment (start 113.898604 105.965) (end 110.992899 105.965) (width 0.25) (layer "In2.Cu") (net 16) (uuid "90ea4353-c846-4a2a-8191-6ee0ee27d925") ) (segment (start 121.81 67.37) (end 116.95 72.23) (width 0.25) (layer "In2.Cu") (net 16) (uuid "b8b3c344-0fa2-405b-8934-bd481b7f0087") ) (segment (start 116.95 102.913604) (end 113.898604 105.965) (width 0.25) (layer "In2.Cu") (net 16) (uuid "b9969aa6-aef2-434f-ba90-08f6ce5e0690") ) (segment (start 110.3046 108.505) (end 111.4796 109.68) (width 0.25) (layer "In2.Cu") (net 16) (uuid "cb283a5c-d5cd-4b8a-b207-4d0d6ec8057d") ) (segment (start 112.6612 112.3616) (end 112.83 112.1928) (width 0.25) (layer "F.Cu") (net 17) (uuid "0fa4736c-a0f4-492b-adc6-69f908835148") ) (segment (start 112.83 108.4904) (end 111.4796 107.14) (width 0.25) (layer "F.Cu") (net 17) (uuid "425b1e91-e010-4236-969a-eb8c29b4a28a") ) (segment (start 112.83 112.1928) (end 112.83 108.4904) (width 0.25) (layer "F.Cu") (net 17) (uuid "6da23ceb-7e7b-4fd3-8e2b-2dfa52c7fecd") ) (segment (start 120.19 69.91) (end 117.5 72.6) (width 0.25) (layer "In2.Cu") (net 17) (uuid "27e0662a-2ab3-4c1c-bf60-848578bf025d") ) (segment (start 111.9696 106.65) (end 111.4796 107.14) (width 0.25) (layer "In2.Cu") (net 17) (uuid "2f1d2bd9-1fc7-4a74-a61a-64494238bb89") ) (segment (start 114 106.65) (end 111.9696 106.65) (width 0.25) (layer "In2.Cu") (net 17) (uuid "ae930ba8-8e7a-4ef7-8074-1de3533d8d53") ) (segment (start 121.81 69.91) (end 120.19 69.91) (width 0.25) (layer "In2.Cu") (net 17) (uuid "b0683423-7484-4bdc-8b3f-6bc7b02c82ca") ) (segment (start 117.5 103.15) (end 114 106.65) (width 0.25) (layer "In2.Cu") (net 17) (uuid "babe8bf7-6847-4f85-bfe9-da4e877ea2bc") ) (segment (start 117.5 72.6) (end 117.5 103.15) (width 0.25) (layer "In2.Cu") (net 17) (uuid "eecb14ef-004c-417d-bd80-432384079d71") ) (segment (start 158.376556 78.4125) (end 161.3968 78.4125) (width 0.2) (layer "F.Cu") (net 23) (uuid "53165478-0268-481e-94fd-f4ed5a481035") ) (segment (start 164.1468 81.1625) (end 164.1468 84.7957) (width 0.2) (layer "F.Cu") (net 23) (uuid "5935ee8e-62a3-4292-bf90-537ca1f43a94") ) (segment (start 161.3968 78.4125) (end 164.1468 81.1625) (width 0.2) (layer "F.Cu") (net 23) (uuid "6897d41f-ad85-41ba-b208-8843d374b37f") ) (segment (start 160.9668 71.248) (end 160.9668 71.5332) (width 0.2) (layer "F.Cu") (net 23) (uuid "8b94a25c-edc9-4f00-aa57-215e205abe7f") ) (segment (start 160.9668 71.5332) (end 157.1344 75.3656) (width 0.2) (layer "F.Cu") (net 23) (uuid "9c5a6f24-f8c4-41a1-89f7-6680165561bc") ) (segment (start 164.1468 84.7957) (end 163.7925 85.15) (width 0.2) (layer "F.Cu") (net 23) (uuid "c76662d3-62ee-4f84-88ec-9a9cff604c58") ) (segment (start 157.1344 75.3656) (end 157.1344 77.170344) (width 0.2) (layer "F.Cu") (net 23) (uuid "d3c11518-8854-4fa7-a6ce-0b944abc3128") ) (segment (start 157.1344 77.170344) (end 158.376556 78.4125) (width 0.2) (layer "F.Cu") (net 23) (uuid "d8b10308-f7bb-4a8b-9baf-034d6d0fb1e9") ) (segment (start 150.6468 78.4125) (end 152.5505 80.3162) (width 0.2) (layer "F.Cu") (net 24) (uuid "1f7102a1-a94b-4675-a1df-aae0f939927e") ) (segment (start 152.5505 81.1625) (end 152.5505 81.3929) (width 0.2) (layer "F.Cu") (net 24) (uuid "362a6e7b-6df6-4149-9d07-66aa8107c93a") ) (segment (start 149.7668 71.579756) (end 145.8911 75.455456) (width 0.2) (layer "F.Cu") (net 24) (uuid "5114916e-c4cd-4c51-a62e-6f713f26ccb9") ) (segment (start 145.8911 77.136744) (end 147.166856 78.4125) (width 0.2) (layer "F.Cu") (net 24) (uuid "5d1493e2-5cd0-464a-8e32-fc5871439fbe") ) (segment (start 152.5425 81.4009) (end 152.5425 85.15) (width 0.2) (layer "F.Cu") (net 24) (uuid "6db3c826-8408-4e24-82aa-9c2325ea9a93") ) (segment (start 152.5505 81.3929) (end 152.5425 81.4009) (width 0.2) (layer "F.Cu") (net 24) (uuid "82a9ebe8-e2bd-449f-9004-e49794748b8c") ) (segment (start 145.8911 75.455456) (end 145.8911 77.136744) (width 0.2) (layer "F.Cu") (net 24) (uuid "843e69d8-ce71-4dcc-a317-618d8ee8b1f2") ) (segment (start 147.166856 78.4125) (end 150.6468 78.4125) (width 0.2) (layer "F.Cu") (net 24) (uuid "8cc9a6ae-964f-44f1-bec8-52c00cebbd6f") ) (segment (start 149.7668 71.248) (end 149.7668 71.579756) (width 0.2) (layer "F.Cu") (net 24) (uuid "9b61ba6f-f7c9-40ca-b5ad-3d1cbd6376b3") ) (segment (start 152.5505 80.3162) (end 152.5505 81.1625) (width 0.2) (layer "F.Cu") (net 24) (uuid "9f842e07-2301-48cf-998d-2bdc964e2948") ) (segment (start 158.4268 71.248) (end 158.4268 73.4732) (width 0.2) (layer "F.Cu") (net 27) (uuid "07cf60d0-962c-46fa-bfaa-0784005dd05e") ) (segment (start 159.36 81.576) (end 159.36 82.376) (width 0.2) (layer "F.Cu") (net 27) (uuid "2d5d85b6-64c0-421e-a517-293c26237c80") ) (segment (start 161.0011 82.076) (end 161.2312 81.8459) (width 0.2) (layer "F.Cu") (net 27) (uuid "4327ca08-fe85-4e7b-ba55-a572446ea3ae") ) (segment (start 158.21087 78.8125) (end 159.7968 78.8125) (width 0.2) (layer "F.Cu") (net 27) (uuid "44fd9f5d-97a3-4682-86c3-9955aff6326b") ) (segment (start 159.7968 78.8125) (end 160.51 79.5257) (width 0.2) (layer "F.Cu") (net 27) (uuid "649d3efe-0488-4972-b056-d7d1545e8292") ) (segment (start 158.4268 73.4732) (end 156.7344 75.1656) (width 0.2) (layer "F.Cu") (net 27) (uuid "736c44bd-7564-4641-ab46-6f902dc12b1e") ) (segment (start 156.7344 75.1656) (end 156.7344 77.33603) (width 0.2) (layer "F.Cu") (net 27) (uuid "84e70782-9fb6-4a7b-a521-71216e245d8d") ) (segment (start 159.66 82.076) (end 161.0011 82.076) (width 0.2) (layer "F.Cu") (net 27) (uuid "900e41fc-ca7c-453a-85fd-df8dee7dcd61") ) (segment (start 159.36 82.376) (end 159.66 82.076) (width 0.2) (layer "F.Cu") (net 27) (uuid "b5318893-b60e-4444-b207-7e6cf71db3e8") ) (segment (start 160.51 79.5257) (end 160.51 80.426) (width 0.2) (layer "F.Cu") (net 27) (uuid "c5746755-cfd8-4811-b538-b1b5683a0528") ) (segment (start 160.51 80.426) (end 159.36 81.576) (width 0.2) (layer "F.Cu") (net 27) (uuid "f16ee953-6d9c-4a3e-a5d6-a596f8c3e818") ) (segment (start 156.7344 77.33603) (end 158.21087 78.8125) (width 0.2) (layer "F.Cu") (net 27) (uuid "faf3a126-cf61-43d3-9cb5-5fea7364a683") ) (segment (start 149.2667 79.5324) (end 149.2667 80.5693) (width 0.2) (layer "F.Cu") (net 28) (uuid "27f00323-0949-4340-80da-cf6c7211c42a") ) (segment (start 149.7743 82.076) (end 150.0044 81.8459) (width 0.2) (layer "F.Cu") (net 28) (uuid "3b19d992-c35c-4ed8-9607-649dcb9fba7e") ) (segment (start 147.2268 73.55407) (end 145.4911 75.28977) (width 0.2) (layer "F.Cu") (net 28) (uuid "4353e279-bd6c-4c05-8892-0a4f8e7d6848") ) (segment (start 147.00117 78.8125) (end 148.5468 78.8125) (width 0.2) (layer "F.Cu") (net 28) (uuid "5698292c-8933-4326-94a9-c5a838941d1e") ) (segment (start 148.11 81.726) (end 148.11 82.376) (width 0.2) (layer "F.Cu") (net 28) (uuid "59356d19-80be-41da-befc-7e7c3ae82bcb") ) (segment (start 149.2667 80.5693) (end 148.11 81.726) (width 0.2) (layer "F.Cu") (net 28) (uuid "748973b9-33ca-4ce3-9a17-3d3b805b6790") ) (segment (start 145.4911 75.28977) (end 145.4911 77.30243) (width 0.2) (layer "F.Cu") (net 28) (uuid "7602f5f1-1b10-4ee6-8592-dc3b71de68f9") ) (segment (start 145.4911 77.30243) (end 147.00117 78.8125) (width 0.2) (layer "F.Cu") (net 28) (uuid "81e48d47-7e1e-4861-972f-ab7949313c4c") ) (segment (start 148.41 82.076) (end 149.7743 82.076) (width 0.2) (layer "F.Cu") (net 28) (uuid "a28ce281-cf00-4e9d-8720-4312874fa8fa") ) (segment (start 148.5468 78.8125) (end 149.2667 79.5324) (width 0.2) (layer "F.Cu") (net 28) (uuid "aa99b398-a8a0-49f6-8dc8-4975692e9594") ) (segment (start 147.2268 71.248) (end 147.2268 73.55407) (width 0.2) (layer "F.Cu") (net 28) (uuid "e975c745-3022-4354-9fd0-346a9fe7834e") ) (segment (start 177.39 95.36) (end 173.33 91.3) (width 2) (layer "F.Cu") (net 30) (uuid "1a1795a2-8c7e-4ec5-bbe0-a586428bc01e") ) (segment (start 168.13 89) (end 168.13 88.1) (width 2) (layer "F.Cu") (net 30) (uuid "43eb776d-20f9-4bb6-9c46-d22628328246") ) (segment (start 173.33 91.3) (end 170.43 91.3) (width 2) (layer "F.Cu") (net 30) (uuid "57024ef8-973b-42a8-a7f5-904c6d652ab9") ) (segment (start 179.98 100.575) (end 177.93 100.575) (width 0.5) (layer "F.Cu") (net 30) (uuid "68c91f90-4676-47ed-841c-bba393b063f0") ) (segment (start 179.98 100.575) (end 180.93 100.575) (width 0.5) (layer "F.Cu") (net 30) (uuid "8c1b9289-9245-41a2-bb17-27d899baf9b2") ) (segment (start 177.39 100.035) (end 177.39 95.36) (width 2) (layer "F.Cu") (net 30) (uuid "9c114bed-e586-46a6-9316-80609ec9d483") ) (segment (start 177.93 100.575) (end 177.39 100.035) (width 2) (layer "F.Cu") (net 30) (uuid "9ea80421-69ab-40c3-85ec-695093a6488a") ) (segment (start 170.43 91.3) (end 168.13 89) (width 2) (layer "F.Cu") (net 30) (uuid "fd3f879f-c00d-42b9-b812-2b7e4fd24823") ) (via (at 179.73 99.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 30) (uuid "031553f7-cbaf-4679-bb4e-adae3786284b") ) (via (at 177.53 99.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 30) (uuid "42255821-d2ef-4ac6-ab90-6ef9ca9c1a52") ) (via (at 178.63 99.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 30) (uuid "553f1a8c-1dfc-4751-beba-afd2219d0342") ) (segment (start 143.83 94) (end 143.83 102.83) (width 0.25) (layer "F.Cu") (net 32) (uuid "0eb2986b-b2e7-45af-8a70-0cedf5e3e86f") ) (segment (start 139.59 92.77) (end 142.6 92.77) (width 0.25) (layer "F.Cu") (net 32) (uuid "1d69e786-f64e-4fcd-a348-ede54dc716f4") ) (segment (start 143.83 102.83) (end 144.6 103.6) (width 0.25) (layer "F.Cu") (net 32) (uuid "84369110-8160-457b-9cea-4e554676321c") ) (segment (start 142.6 92.77) (end 143.83 94) (width 0.25) (layer "F.Cu") (net 32) (uuid "cca54f28-eb6d-4011-8d11-6dbe082cbb36") ) (segment (start 144.6 103.6) (end 144.6 117.7875) (width 0.25) (layer "F.Cu") (net 32) (uuid "d15f6873-060c-4903-a1d7-cd6686a6dfeb") ) (segment (start 144.4 121.6) (end 144.6 121.4) (width 0.25) (layer "F.Cu") (net 33) (uuid "2c568556-26a2-4cb7-82c6-11c2ed7b4850") ) (segment (start 144.6 121.4) (end 144.6 119.6125) (width 0.25) (layer "F.Cu") (net 33) (uuid "4f7ffa5c-c9c9-4618-b47b-7f6388769531") ) (segment (start 143.485 121.6) (end 144.4 121.6) (width 0.25) (layer "F.Cu") (net 33) (uuid "fc552a29-03c3-493d-b31a-80ecc74bc5c8") ) (segment (start 155.1 88.7) (end 156.8 87) (width 0.25) (layer "F.Cu") (net 35) (uuid "216bf1ba-8e4d-4f96-824a-1b586495c1c2") ) (segment (start 156.8 84.5) (end 157.6291 83.6709) (width 0.25) (layer "F.Cu") (net 35) (uuid "4887acd6-93ea-48db-95bd-e4e2cfba493d") ) (segment (start 149.63 91.262501) (end 152.192501 88.7) (width 0.25) (layer "F.Cu") (net 35) (uuid "4e74d96d-0485-4fb3-8af6-f6dace033c15") ) (segment (start 152.192501 88.7) (end 155.1 88.7) (width 0.25) (layer "F.Cu") (net 35) (uuid "5949dbdc-a752-4702-9e69-1c2adb960dfc") ) (segment (start 157.6291 83.6709) (end 161.2312 83.6709) (width 0.25) (layer "F.Cu") (net 35) (uuid "75c5a7e5-6fc7-43f9-9441-cedc7a83544d") ) (segment (start 156.8 87) (end 156.8 84.5) (width 0.25) (layer "F.Cu") (net 35) (uuid "cdc679c8-1dda-4e35-a5e2-420593414947") ) (segment (start 149.63 92) (end 149.63 91.262501) (width 0.25) (layer "F.Cu") (net 35) (uuid "dcef48c9-4c9b-405a-a2fa-d7b396fc6f06") ) (segment (start 150.28 91.262501) (end 150.942501 90.6) (width 0.2) (layer "F.Cu") (net 36) (uuid "1311f08d-25ea-45b5-a043-bfca8468cc23") ) (segment (start 150.28 92) (end 150.28 91.262501) (width 0.2) (layer "F.Cu") (net 36) (uuid "6cfee951-ddcf-4810-b65a-de23c23fdfc0") ) (segment (start 150.23 91.95) (end 150.28 92) (width 0.2) (layer "F.Cu") (net 36) (uuid "74ee12d3-da44-46a3-bb48-feca2f6a21bf") ) (segment (start 150.942501 90.6) (end 151.43 90.6) (width 0.2) (layer "F.Cu") (net 36) (uuid "d5cec458-d97b-4bea-9d8b-b091f02cd684") ) (via (at 151.43 90.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (uuid "8de5026d-552d-4fa6-82b4-8bb7e469f481") ) (segment (start 151.43 91.8) (end 151.43 90.6) (width 0.25) (layer "In1.Cu") (net 36) (uuid "6e8d2f14-714e-41fe-8e84-541230537bcf") ) (segment (start 139.59 102.93) (end 140.3 102.93) (width 0.25) (layer "In1.Cu") (net 36) (uuid "ccdb9b1d-48de-4af2-853c-46b748804fdc") ) (segment (start 140.3 102.93) (end 151.43 91.8) (width 0.25) (layer "In1.Cu") (net 36) (uuid "da57487d-62f4-487d-a3c9-fae3e52461e4") ) (segment (start 149.08 90.35) (end 149.53 89.9) (width 0.25) (layer "F.Cu") (net 37) (uuid "652c995f-55d8-44cb-a497-b92b95f1a3ce") ) (segment (start 148.33 91.1) (end 149.08 90.35) (width 0.25) (layer "F.Cu") (net 37) (uuid "936923b3-f447-4b8e-a187-a86e53fd9978") ) (segment (start 148.33 92) (end 148.33 91.1) (width 0.25) (layer "F.Cu") (net 37) (uuid "bc08d615-5a8d-4f52-be5a-0d5bd7fe7910") ) (via (at 149.53 89.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (uuid "a638978e-4ab9-4560-8f82-390aca45a90f") ) (segment (start 139.59 100.39) (end 141.36 100.39) (width 0.25) (layer "In1.Cu") (net 37) (uuid "35834c28-af8d-4223-82b0-62b23344e7e5") ) (segment (start 141.36 100.39) (end 149.8 91.95) (width 0.25) (layer "In1.Cu") (net 37) (uuid "ac6c8786-cf4c-486d-b8da-8df8e408abf9") ) (segment (start 149.8 90.17) (end 149.53 89.9) (width 0.25) (layer "In1.Cu") (net 37) (uuid "cd59f443-0408-4b2f-8fa6-25b78494d74b") ) (segment (start 149.8 91.95) (end 149.8 90.17) (width 0.25) (layer "In1.Cu") (net 37) (uuid "dc50437c-3f91-49f3-bc14-0fe159517ee4") ) (segment (start 145.98 85.814576) (end 146.402924 86.2375) (width 0.25) (layer "F.Cu") (net 38) (uuid "3b868e81-7630-4361-94ea-17f60965cf7f") ) (segment (start 146.402924 86.2375) (end 147.357076 86.2375) (width 0.25) (layer "F.Cu") (net 38) (uuid "642a478e-0f12-4207-bfa4-a6b43497a97b") ) (segment (start 150.0044 83.6709) (end 149.2628 84.4125) (width 0.25) (layer "F.Cu") (net 38) (uuid "74d799dc-8154-407a-952d-f69eba121258") ) (segment (start 146.402924 84.4125) (end 145.98 84.835424) (width 0.25) (layer "F.Cu") (net 38) (uuid "95b7e90a-2707-4821-91e4-91f355cd139b") ) (segment (start 147.68 86.560424) (end 147.68 92) (width 0.25) (layer "F.Cu") (net 38) (uuid "95fcd602-2cd6-46ba-8e60-c27cd1a973ce") ) (segment (start 147.357076 86.2375) (end 147.68 86.560424) (width 0.25) (layer "F.Cu") (net 38) (uuid "f2ffa8e9-01f4-4725-8517-23f94e15b26e") ) (segment (start 149.2628 84.4125) (end 146.402924 84.4125) (width 0.25) (layer "F.Cu") (net 38) (uuid "fbed3d44-8b22-47c9-b67d-4e3b28c48a2c") ) (segment (start 145.98 84.835424) (end 145.98 85.814576) (width 0.25) (layer "F.Cu") (net 38) (uuid "fea7a485-8fae-4c23-b8dc-e2e12bb97bab") ) (segment (start 151.08 87.35) (end 149.93 88.5) (width 0.25) (layer "F.Cu") (net 50) (uuid "482af9ab-9e07-4d1c-9e5a-b5fb51a4df85") ) (segment (start 148.58 85.225) (end 148.63 85.275) (width 0.25) (layer "F.Cu") (net 50) (uuid "753a1eaf-6aab-4e9f-ae01-a0f83f34c14e") ) (segment (start 148.63 85.275) (end 149.5175 85.275) (width 0.25) (layer "F.Cu") (net 50) (uuid "82daaa2a-1f8c-49bf-a7a1-f76e02ba71ef") ) (segment (start 151.5925 87.35) (end 151.08 87.35) (width 0.25) (layer "F.Cu") (net 50) (uuid "adedda40-8586-43ac-b204-9d3cf68163a3") ) (segment (start 149.5175 85.275) (end 151.5925 87.35) (width 0.25) (layer "F.Cu") (net 50) (uuid "b5db1a12-3334-45c0-b235-e341a9f071c6") ) (segment (start 146.88 85.225) (end 148.58 85.225) (width 0.25) (layer "F.Cu") (net 50) (uuid "d692544d-7bfb-4e99-afe1-216a60831180") ) (via (at 149.93 88.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (uuid "d693dac5-b9c7-433f-bc26-1ff3cf05364e") ) (segment (start 139.59 105.01) (end 152.7 91.9) (width 0.25) (layer "In1.Cu") (net 50) (uuid "0e1c9a12-ee93-4eee-b89e-54886775d21b") ) (segment (start 152.7 91.9) (end 152.7 90.3) (width 0.25) (layer "In1.Cu") (net 50) (uuid "0f437cf1-e565-44fe-89ce-3b55e5c4ca4a") ) (segment (start 150.9 88.5) (end 149.93 88.5) (width 0.25) (layer "In1.Cu") (net 50) (uuid "2364eb0e-d7b0-49a0-b9c8-e3bb5af54578") ) (segment (start 152.7 90.3) (end 150.9 88.5) (width 0.25) (layer "In1.Cu") (net 50) (uuid "81549212-ddf7-4a09-a3e0-27243db8afb1") ) (segment (start 139.59 105.47) (end 139.59 105.01) (width 0.25) (layer "In1.Cu") (net 50) (uuid "c869606d-cc0a-4654-a2ff-6ba48d455f1c") ) (segment (start 156.4161 104.1818) (end 158.0536 104.1818) (width 0.2) (layer "F.Cu") (net 53) (uuid "056cf522-3e0c-4602-b05d-5ce4976aac52") ) (segment (start 158.0536 104.703748) (end 159.0911 105.741248) (width 0.2) (layer "F.Cu") (net 53) (uuid "0a85d41c-28a0-428e-8d41-b5e6efb56869") ) (segment (start 159.0911 105.741248) (end 159.0911 107.3693) (width 0.2) (layer "F.Cu") (net 53) (uuid "0d90ed38-ab6f-4282-a5e4-070e386f4ada") ) (segment (start 142.58 84.58) (end 144.73 86.73) (width 0.25) (layer "F.Cu") (net 53) (uuid "0e0802b8-1945-48c4-b76e-bf104398051f") ) (segment (start 144.73 86.73) (end 144.73 102.23) (width 0.25) (layer "F.Cu") (net 53) (uuid "205c595a-f281-49ae-8269-1527daa59eb4") ) (segment (start 158.0536 104.1818) (end 158.0536 104.703748) (width 0.2) (layer "F.Cu") (net 53) (uuid "25e4df79-538f-4a24-80b5-5d380eb84e9a") ) (segment (start 154.03 103.4375) (end 155.6718 103.4375) (width 0.2) (layer "F.Cu") (net 53) (uuid "3aa3add9-66fd-4820-895f-e6e084e7d119") ) (segment (start 144.73 102.23) (end 145.3 102.8) (width 0.25) (layer "F.Cu") (net 53) (uuid "40d9ba56-5524-4264-8206-651c25976155") ) (segment (start 139.59 80.07) (end 141.32 80.07) (width 0.25) (layer "F.Cu") (net 53) (uuid "60a98799-ef03-4631-a4a9-7d44a951894d") ) (segment (start 158.4875 114.3) (end 156.9125 114.3) (width 0.2) (layer "F.Cu") (net 53) (uuid "71ed8731-c387-4d56-b711-05d61de8b83f") ) (segment (start 159.05 113.7375) (end 158.4875 114.3) (width 0.2) (layer "F.Cu") (net 53) (uuid "84b4dcad-d05f-4e44-b514-04de2dccd905") ) (segment (start 142.58 81.33) (end 142.58 84.58) (width 0.25) (layer "F.Cu") (net 53) (uuid "9ec4f2bf-02f1-40d6-af8b-3ab26762cfc6") ) (segment (start 145.3 102.8) (end 153.3925 102.8) (width 0.25) (layer "F.Cu") (net 53) (uuid "b24ddd84-5af4-4aaa-9258-7c850dd5dc58") ) (segment (start 159.05 108.8532) (end 159.05 113.7375) (width 0.2) (layer "F.Cu") (net 53) (uuid "b4a8d30d-2831-446f-909d-d95e1e08eb9a") ) (segment (start 158.3286 108.1318) (end 159.05 108.8532) (width 0.2) (layer "F.Cu") (net 53) (uuid "c28a461a-228a-4c9d-bfb3-c292010ac93a") ) (segment (start 153.3925 102.8) (end 154.03 103.4375) (width 0.25) (layer "F.Cu") (net 53) (uuid "d4761f29-d39b-4b0c-8442-cec10bf83cd2") ) (segment (start 141.32 80.07) (end 142.58 81.33) (width 0.25) (layer "F.Cu") (net 53) (uuid "db2cf724-0527-46fa-84bf-d45b6bf39104") ) (segment (start 159.0911 107.3693) (end 158.3286 108.1318) (width 0.2) (layer "F.Cu") (net 53) (uuid "ec2921f2-c578-4da9-aa42-82303b751986") ) (segment (start 181.605 75.875) (end 181.53 75.8) (width 0.25) (layer "F.Cu") (net 55) (uuid "34a379ea-cbec-44c4-b28f-5ef4da7721b3") ) (segment (start 182.73 75.875) (end 181.605 75.875) (width 0.25) (layer "F.Cu") (net 55) (uuid "a299636a-14b5-46d0-9c6d-d9e8cbe59d50") ) (via (at 181.53 75.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 55) (uuid "10092273-a3b8-48ac-b4da-6829e19e43a4") ) (segment (start 178.625 72.895) (end 181.53 75.8) (width 0.25) (layer "In1.Cu") (net 55) (uuid "264c3e48-0690-49e6-8a03-84940330642d") ) (segment (start 175.62 67.37) (end 178.625 70.375) (width 0.25) (layer "In1.Cu") (net 55) (uuid "43c5805d-dfab-4fb7-bb7d-968e3f9ebfb0") ) (segment (start 178.625 70.375) (end 178.625 72.895) (width 0.25) (layer "In1.Cu") (net 55) (uuid "5973ba9f-3dee-4a20-b889-30bcd7234640") ) (segment (start 139.59 67.37) (end 175.62 67.37) (width 0.25) (layer "In1.Cu") (net 55) (uuid "79ef54d2-4f48-4c89-a101-059e765980c1") ) (segment (start 139.59 67.37) (end 139.66 67.3) (width 0.25) (layer "In1.Cu") (net 55) (uuid "f4166a3a-b325-4e04-aeae-3f5bc418cfac") ) (segment (start 180.93 102.975) (end 180.93 105.9) (width 0.75) (layer "F.Cu") (net 56) (uuid "344003be-c78a-4296-b974-96a2223cae69") ) (segment (start 180.93 107.1) (end 181.43 107.6) (width 0.5) (layer "F.Cu") (net 56) (uuid "57d97631-c23b-4338-b8f3-13fbb29cbb13") ) (segment (start 180.93 105.9) (end 180.93 107.1) (width 0.75) (layer "F.Cu") (net 56) (uuid "d5988f04-0c0f-4983-96ec-7545636f719f") ) (via (at 180.93 105.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (uuid "268e5269-613e-4415-bb6d-7556b159fb27") ) (via (at 182.1 105.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 56) (uuid "44873fd9-71e3-4a66-9a20-74826499c5a9") ) (via (at 182.1 104.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 56) (uuid "8c24ed25-45fd-48fa-bfd1-3ac09fd07d42") ) (segment (start 157.0411 106.0818) (end 158.0536 106.0818) (width 0.2) (layer "F.Cu") (net 57) (uuid "05e7333f-c472-4d09-b015-5a6ec67a17b8") ) (segment (start 148.48 119.6) (end 148.5 119.6) (width 0.25) (layer "F.Cu") (net 57) (uuid "0ba705b8-b8d4-489d-814f-e5bd719dd9c9") ) (segment (start 145.2 103.4) (end 152.2675 103.4) (width 0.25) (layer "F.Cu") (net 57) (uuid "11abd639-11fa-492d-8246-8cc4e0893b6a") ) (segment (start 150.43 121.85) (end 155.205 121.85) (width 0.5) (layer "F.Cu") (net 57) (uuid "14137f6e-8cb8-4db1-bb6c-98aa80356e58") ) (segment (start 154.15 113.95) (end 154.15 110.4102) (width 0.25) (layer "F.Cu") (net 57) (uuid "1cf24e91-3f7b-4029-9058-e1bd3f657be2") ) (segment (start 148.5 119.6) (end 154.15 113.95) (width 0.25) (layer "F.Cu") (net 57) (uuid "31c1e04f-48a9-409f-b753-91fa1e0977f8") ) (segment (start 155.2718 105.1625) (end 154.03 105.1625) (width 0.2) (layer "F.Cu") (net 57) (uuid "45afda1b-fdad-49c2-ba38-f996f2bdc134") ) (segment (start 144.28 102.48) (end 145.2 103.4) (width 0.25) (layer "F.Cu") (net 57) (uuid "52d1b5b0-d7bd-4205-b25e-44a3e7191fff") ) (segment (start 156.5218 106.6011) (end 157.0411 106.0818) (width 0.2) (layer "F.Cu") (net 57) (uuid "5b5ff2a6-246b-4c06-ac1a-51764ea6f28f") ) (segment (start 142.45 85.15) (end 144.28 86.98) (width 0.25) (layer "F.Cu") (net 57) (uuid "5b9f58cc-bf53-40b3-80e6-c97bf63172ac") ) (segment (start 139.59 85.15) (end 142.45 85.15) (width 0.25) (layer "F.Cu") (net 57) (uuid "6b444f0b-1661-4181-b4bd-2c368461fcc3") ) (segment (start 144.28 86.98) (end 144.28 102.48) (width 0.25) (layer "F.Cu") (net 57) (uuid "97eb56bc-39a0-48da-966b-5d87a1d3b7ca") ) (segment (start 154.15 110.4102) (end 155.9911 108.5691) (width 0.25) (layer "F.Cu") (net 57) (uuid "9a66b726-cf55-4484-852e-2e567f0a557f") ) (segment (start 152.2675 103.4) (end 154.03 105.1625) (width 0.25) (layer "F.Cu") (net 57) (uuid "b0dca736-cd24-4077-80b3-49be15d68e1e") ) (segment (start 155.9604 106.6011) (end 155.9604 108.2135) (width 0.2) (layer "F.Cu") (net 57) (uuid "d01dab6b-ab98-483a-b131-c6b31bd4c568") ) (segment (start 148.48 119.6) (end 150.43 121.85) (width 0.5) (layer "F.Cu") (net 57) (uuid "d21d5778-184b-4f6d-a228-74caf490cdb3") ) (segment (start 155.9604 105.8511) (end 155.2718 105.1625) (width 0.2) (layer "F.Cu") (net 57) (uuid "e87ee3b0-a1e5-4cee-a839-8687f816b277") ) (segment (start 155.205 121.85) (end 157.18 119.575) (width 0.5) (layer "F.Cu") (net 57) (uuid "e99bc798-1b59-4f37-977e-cfbfbade2920") ) (segment (start 155.0875 114.3) (end 154.75 114.3) (width 0.25) (layer "F.Cu") (net 58) (uuid "6cbce483-3f04-41c2-a122-c5572a1b78b2") ) (segment (start 154.75 114.3) (end 150.98 118.07) (width 0.25) (layer "F.Cu") (net 58) (uuid "6ea5073a-6e4e-4354-8efc-becfec24fc52") ) (segment (start 150.98 118.07) (end 150.98 119.6) (width 0.25) (layer "F.Cu") (net 58) (uuid "cc3788b8-74b7-4489-8ce9-5b1a4599f89b") ) (segment (start 139.82 87.69) (end 139.59 87.69) (width 0.25) (layer "In2.Cu") (net 58) (uuid "0aa6ed34-b725-4d6e-aae5-39f1a3e60cae") ) (segment (start 150.98 98.85) (end 139.82 87.69) (width 0.25) (layer "In2.Cu") (net 58) (uuid "137be18c-be53-4db7-b5ba-145664ed4510") ) (segment (start 150.98 119.6) (end 150.98 98.85) (width 0.25) (layer "In2.Cu") (net 58) (uuid "7ebd89d6-4c3b-4266-87b0-d8521e2569db") ) (segment (start 160.3125 114.3) (end 159.65 114.9625) (width 0.25) (layer "F.Cu") (net 59) (uuid "0f05574e-2158-4355-a528-c43ae4e9199d") ) (segment (start 159.65 114.9625) (end 159.68 119.575) (width 0.25) (layer "F.Cu") (net 59) (uuid "1010b056-4f78-4a09-a14d-71678ea935d3") ) (segment (start 159.68 119.575) (end 159.68 119.875) (width 0.25) (layer "F.Cu") (net 59) (uuid "294dde38-ce2a-4499-9242-710014f8bb5d") ) (segment (start 160.0415 119.5135) (end 159.68 119.875) (width 0.2) (layer "F.Cu") (net 59) (uuid "9230ba12-fa02-4ac6-a1f6-d86d2f0c00c1") ) (segment (start 159.68 119.575) (end 159.68 102.825) (width 0.2) (layer "In2.Cu") (net 59) (uuid "9b52dc14-6957-4220-bcd8-e16abc39ece8") ) (segment (start 159.68 102.825) (end 139.59 82.735) (width 0.2) (layer "In2.Cu") (net 59) (uuid "def98b92-0963-429d-bbe9-0f66166951d3") ) (segment (start 139.59 82.735) (end 139.59 82.61) (width 0.2) (layer "In2.Cu") (net 59) (uuid "e976ff4f-801e-49e0-8ede-1d523e53ed8f") ) (segment (start 144.73 80.025) (end 144.73 72.7) (width 0.5) (layer "F.Cu") (net 61) (uuid "09527a3c-efcc-44ff-a078-25f2e7d8f2fd") ) (segment (start 163.33 91.3) (end 163.43 91.4) (width 0.5) (layer "F.Cu") (net 61) (uuid "099270cd-63e0-417e-9e0f-dbd994c8b842") ) (segment (start 146.33 81.625) (end 144.73 80.025) (width 0.5) (layer "F.Cu") (net 61) (uuid "1a1c7f26-4440-4cd9-b795-466872e0950c") ) (segment (start 146.33 81.625) (end 146.33 83.5) (width 0.5) (layer "F.Cu") (net 61) (uuid "259f3dcc-4560-4c1e-981c-9d01a8afe24d") ) (segment (start 141.94 69.91) (end 139.59 69.91) (width 0.5) (layer "F.Cu") (net 61) (uuid "52f64d73-a4c2-4a5e-a7ae-c7535243ad3b") ) (segment (start 160.83 91.3) (end 163.33 91.3) (width 0.5) (layer "F.Cu") (net 61) (uuid "9f0d2f27-3555-4d6c-b934-0251712cb7a7") ) (segment (start 144.73 72.7) (end 141.94 69.91) (width 0.5) (layer "F.Cu") (net 61) (uuid "e9bb0f43-c2aa-4f6c-8450-79dd8c78f1fd") ) (via (at 160.83 91.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 61) (uuid "157999f5-f5eb-471c-bbec-4f2d4a747b37") ) (via (at 146.33 83.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 61) (uuid "9f43896f-8cf2-45a6-a708-dc1d0f61a277") ) (segment (start 156.03 91.3) (end 160.83 91.3) (width 0.5) (layer "B.Cu") (net 61) (uuid "616a504d-56df-4e68-870b-6dc123fedbb3") ) (segment (start 148.23 83.5) (end 156.03 91.3) (width 0.5) (layer "B.Cu") (net 61) (uuid "a6bf2179-39f0-4823-9adf-81b0379e30ad") ) (segment (start 146.33 83.5) (end 148.23 83.5) (width 0.5) (layer "B.Cu") (net 61) (uuid "c5ee1c61-2842-4dac-9703-4e4bec37dd3f") ) (segment (start 150.93 96.241844) (end 150.93 92) (width 0.25) (layer "F.Cu") (net 63) (uuid "1f8c2453-325d-4734-81af-62bc46d8a755") ) (segment (start 150.005 98.7875) (end 150.28 98.5125) (width 0.25) (layer "F.Cu") (net 63) (uuid "273b5e58-1648-4d1b-95ed-fa1a20c8c357") ) (segment (start 150.93 92.9125) (end 150.93 92.737499) (width 0.25) (layer "F.Cu") (net 63) (uuid "2804fe1f-3cb4-4748-986e-aeb5f2a41a14") ) (segment (start 148.98 92.8425) (end 149.43 93.2925) (width 0.25) (layer "F.Cu") (net 63) (uuid "3b4d1a76-5d42-4446-ab7b-87651376b1dd") ) (segment (start 154.28 93.4) (end 152.68 93.4) (width 0.25) (layer "F.Cu") (net 63) (uuid "588bc778-c910-40d6-9a3c-c6fe17f04f2e") ) (segment (start 150.28 97.725) (end 150.28 96.891844) (width 0.25) (layer "F.Cu") (net 63) (uuid "66e3c780-eeb8-4275-8112-01af71539f5a") ) (segment (start 148.33 98.462499) (end 148.655001 98.7875) (width 0.25) (layer "F.Cu") (net 63) (uuid "6aa6c772-c869-481b-9eb5-2a88caf72979") ) (segment (start 150.28 98.5125) (end 150.28 97.725) (width 0.25) (layer "F.Cu") (net 63) (uuid "6b280cf5-2068-4e35-88a6-a5f0baba2c23") ) (segment (start 149.43 93.2925) (end 150.55 93.2925) (width 0.25) (layer "F.Cu") (net 63) (uuid "900b60dd-7460-402f-a50e-844200d023e9") ) (segment (start 152.4675 93.1875) (end 152.68 93.4) (width 0.25) (layer "F.Cu") (net 63) (uuid "9071b20b-ed6e-41b7-8c49-17e5f5e7da2d") ) (segment (start 151.4775 93.4) (end 150.93 92.8525) (width 0.25) (layer "F.Cu") (net 63) (uuid "9747fead-c0a7-4cca-b7f2-f81c39d572df") ) (segment (start 150.28 96.891844) (end 150.93 96.241844) (width 0.25) (layer "F.Cu") (net 63) (uuid "a4fb79e0-daf7-46a2-85e8-868b0e56c152") ) (segment (start 150.55 93.2925) (end 150.93 92.9125) (width 0.25) (layer "F.Cu") (net 63) (uuid "aa9281f7-ac9f-4fa4-bdd8-08cf551e41d8") ) (segment (start 148.33 97.725) (end 148.33 98.462499) (width 0.25) (layer "F.Cu") (net 63) (uuid "b31c86ce-7aca-4e4b-8977-7bdbebfb3098") ) (segment (start 150.93 92.737499) (end 150.93 92) (width 0.25) (layer "F.Cu") (net 63) (uuid "bb36c82c-eec5-4f77-9691-cefccfa34413") ) (segment (start 148.98 92) (end 148.98 92.8425) (width 0.25) (layer "F.Cu") (net 63) (uuid "bd0c0b06-d698-4180-96e5-8a310a501c59") ) (segment (start 148.655001 98.7875) (end 150.005 98.7875) (width 0.25) (layer "F.Cu") (net 63) (uuid "d7a8d01d-5b5f-484b-a249-8756581c19f5") ) (segment (start 150.93 92.8525) (end 150.93 92.737499) (width 0.25) (layer "F.Cu") (net 63) (uuid "e0e98e24-21ad-4560-9c20-b3c9b4900634") ) (segment (start 152.68 93.4) (end 151.4775 93.4) (width 0.25) (layer "F.Cu") (net 63) (uuid "ec52009e-e19b-4462-863d-5e971ed7eddb") ) (segment (start 110.4 100.6) (end 109.7 99.9) (width 0.25) (layer "F.Cu") (net 64) (uuid "21679dcb-498f-4475-8017-2a5a296e72ee") ) (segment (start 109.7 99.9) (end 109.7 98.64) (width 0.25) (layer "F.Cu") (net 64) (uuid "62973835-d481-4734-b118-bb8bae44fa81") ) (segment (start 111.0525 100.6) (end 110.4 100.6) (width 0.25) (layer "F.Cu") (net 64) (uuid "66ebb436-eaaa-491e-afa9-024a8ce520be") ) (segment (start 109.7 98.64) (end 110.34 98) (width 0.25) (layer "F.Cu") (net 64) (uuid "9f50b903-857e-4977-bbe8-43a3d82fee37") ) (segment (start 182.905 104.075) (end 183.53 104.075) (width 0.5) (layer "F.Cu") (net 70) (uuid "3fb431b3-1fbf-44ac-85ef-1790176bfc63") ) (segment (start 181.88 102.975) (end 181.88 103.05) (width 0.5) (layer "F.Cu") (net 70) (uuid "bad0859a-ccfb-4979-b1f6-805ae6cf39c8") ) (segment (start 181.88 103.05) (end 182.905 104.075) (width 0.5) (layer "F.Cu") (net 70) (uuid "c30576cd-64b4-45e8-9697-5923fb13ac50") ) (segment (start 183.5425 100.6125) (end 183.53 100.625) (width 0.5) (layer "F.Cu") (net 71) (uuid "0f6647c8-4287-4143-b7aa-6af4b40de499") ) (segment (start 183.48 100.575) (end 183.53 100.625) (width 0.75) (layer "F.Cu") (net 71) (uuid "3307bb1b-8212-49d2-a4d0-373dc5f030ae") ) (segment (start 181.88 100.575) (end 183.48 100.575) (width 0.75) (layer "F.Cu") (net 71) (uuid "7af10aa5-de06-465f-bf4e-ca2e26bc3314") ) (segment (start 183.4925 100.5875) (end 183.53 100.625) (width 0.5) (layer "F.Cu") (net 71) (uuid "886779e3-04f8-48cf-b43a-025cdf3d73b9") ) (segment (start 183.53 100.625) (end 183.53 98.85) (width 0.75) (layer "F.Cu") (net 71) (uuid "88c4082e-ea68-4eff-8518-65e9efd7a8f2") ) (segment (start 183.4925 97.2375) (end 183.4925 98.7875) (width 0.75) (layer "F.Cu") (net 71) (uuid "dfaa030b-1491-4031-82ce-a3c81ee6d888") ) (segment (start 183.4925 98.7875) (end 183.5425 98.8375) (width 0.5) (layer "F.Cu") (net 71) (uuid "f09c960b-22c2-435c-8bb0-d547a26401c3") ) (segment (start 183.53 98.85) (end 183.5425 98.8375) (width 0.5) (layer "F.Cu") (net 71) (uuid "f9381f5b-e0fc-4574-a554-5bc62b24a481") ) (segment (start 167.0468 74.788) (end 163.5068 71.248) (width 0.2) (layer "F.Cu") (net 72) (uuid "2c4e3d0a-57ef-4d08-8047-5de565b7962e") ) (segment (start 155.7792 75.4855) (end 155.7792 75.4325) (width 0.2) (layer "F.Cu") (net 72) (uuid "2cc875a3-ee2b-4b06-b8ae-259611c3a208") ) (segment (start 155.7792 75.4325) (end 152.3068 71.9601) (width 0.2) (layer "F.Cu") (net 72) (uuid "4c4bf519-a12b-4d6a-9841-883f0fd99aaa") ) (segment (start 152.3068 71.248) (end 152.3068 73.060031) (width 1.5) (layer "F.Cu") (net 72) (uuid "4d6f42ea-f1b1-429e-a799-6587380247cd") ) (segment (start 168.4155 75.4855) (end 168.43 75.5) (width 0.2) (layer "F.Cu") (net 72) (uuid "4fda7727-b180-474c-bea7-0ef6044f033d") ) (segment (start 182.73 81.1875) (end 182.5175 81.1875) (width 0.25) (layer "F.Cu") (net 72) (uuid "58daa0ab-85e4-4f8f-9648-ee201cc91a4d") ) (segment (start 173.13 121.25) (end 173.18 121.3) (width 1.5) (layer "F.Cu") (net 72) (uuid "59336f70-25f4-4576-a148-a6de47662614") ) (segment (start 147.8468 76.348) (end 146.9411 76.348) (width 1.5) (layer "F.Cu") (net 72) (uuid "6235a9f6-19b7-41c0-b428-a0e4f04f1446") ) (segment (start 167.0468 75.4855) (end 168.4155 75.4855) (width 0.2) (layer "F.Cu") (net 72) (uuid "789b4852-cf32-437b-800a-2cbafe6d2075") ) (segment (start 173.13 118.3) (end 173.13 121.25) (width 1.5) (layer "F.Cu") (net 72) (uuid "84517884-70c5-4385-864a-b115f0fe2b5e") ) (segment (start 149.070731 76.2961) (end 147.9852 76.2961) (width 1.5) (layer "F.Cu") (net 72) (uuid "9addc8a4-005d-4af7-b580-a26ac454bb34") ) (segment (start 163.5068 73.060031) (end 160.218831 76.348) (width 1.5) (layer "F.Cu") (net 72) (uuid "a05c3373-3e9d-4a91-badb-36635e3c66a1") ) (segment (start 152.3068 73.060031) (end 149.070731 76.2961) (width 1.5) (layer "F.Cu") (net 72) (uuid "a49f2e19-9273-4dd2-93f7-87549e9902c6") ) (segment (start 173.18 121.3) (end 170.93 121.3) (width 1.5) (layer "F.Cu") (net 72) (uuid "b4af6c81-7223-4958-ad45-8aa2e40b0c2e") ) (segment (start 163.5068 71.248) (end 163.5068 73.060031) (width 1.5) (layer "F.Cu") (net 72) (uuid "be52b759-70ef-415c-bfd5-f812d56825cb") ) (segment (start 170.93 121.3) (end 170.23 122) (width 1.5) (layer "F.Cu") (net 72) (uuid "c6da3abc-bb35-43e2-973c-25c009689a42") ) (segment (start 160.218831 76.348) (end 159.2468 76.348) (width 1.5) (layer "F.Cu") (net 72) (uuid "d0e35190-e4c4-41ca-a26e-9b9410a78528") ) (segment (start 182.5175 81.1875) (end 181.53 80.2) (width 0.25) (layer "F.Cu") (net 72) (uuid "d729b8ec-f0cb-4301-833d-9d72e08744fc") ) (segment (start 167.0468 75.4855) (end 167.0468 74.788) (width 0.2) (layer "F.Cu") (net 72) (uuid "f0f7e2ef-cbec-4a9f-9d77-f3a175363904") ) (segment (start 152.3068 71.9601) (end 152.3068 71.248) (width 0.2) (layer "F.Cu") (net 72) (uuid "fb4620fa-d6e0-4476-aa2d-6f3d0647be4d") ) (via (at 168.43 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 72) (uuid "3258ebf8-5a53-4c22-aa7b-fff7648df41d") ) (via (at 181.53 80.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 72) (uuid "ccdb04b1-36b0-48e5-8475-549ae08ddde3") ) (segment (start 179.53 78.2) (end 181.53 80.2) (width 0.2) (layer "In1.Cu") (net 72) (uuid "3e9c4ad7-2afb-47be-81aa-539e446fc3c2") ) (segment (start 171.13 78.2) (end 179.53 78.2) (width 0.2) (layer "In1.Cu") (net 72) (uuid "896a5d25-32bc-4061-bc2d-2be8833738ea") ) (segment (start 168.43 75.5) (end 171.13 78.2) (width 0.2) (layer "In1.Cu") (net 72) (uuid "f6e92ab2-ca4b-4093-97ad-a4a7257fd83b") ) (segment (start 173.13 111.3) (end 173.13 118.3) (width 1.5) (layer "B.Cu") (net 72) (uuid "2685441f-a458-488f-b6ec-cbc64128992b") ) (segment (start 163.5068 101.6768) (end 173.13 111.3) (width 1.5) (layer "B.Cu") (net 72) (uuid "2b977b9d-66a9-4a3f-b4b0-71f7b9c483f3") ) (segment (start 163.5068 69.6068) (end 163.5068 71.248) (width 1.5) (layer "B.Cu") (net 72) (uuid "3ca0eebe-167c-4ef0-b9f4-e1360e3f1fae") ) (segment (start 152.3068 69.5932) (end 153.75 68.15) (width 1.5) (layer "B.Cu") (net 72) (uuid "3d1ade0f-3e35-4111-89a6-34d477cd8f74") ) (segment (start 152.3068 71.248) (end 152.3068 69.5932) (width 1.5) (layer "B.Cu") (net 72) (uuid "69c09cbf-4dcc-44e0-9b32-7d6454200b10") ) (segment (start 162.05 68.15) (end 163.5068 69.6068) (width 1.5) (layer "B.Cu") (net 72) (uuid "7146fbb8-4834-4f7b-8c56-f946b19c5dd1") ) (segment (start 153.75 68.15) (end 162.05 68.15) (width 1.5) (layer "B.Cu") (net 72) (uuid "af756cc0-6810-4ba3-b2dd-7a5adb216dfd") ) (segment (start 163.5068 101.6768) (end 163.5068 71.248) (width 1.5) (layer "B.Cu") (net 72) (uuid "e36feb69-a514-47ed-844e-f66113d4fb25") ) (segment (start 170.67 88.1) (end 170.67 83.285) (width 2) (layer "F.Cu") (net 73) (uuid "0dc6dc48-bfea-4c39-8411-b84842aecfcf") ) (segment (start 170.67 83.285) (end 170.755 83.2) (width 2) (layer "F.Cu") (net 73) (uuid "cb8c149e-c016-4799-98de-ffaf915276b9") ) (segment (start 184.6 96.35) (end 184.6 110.2) (width 2) (layer "B.Cu") (net 74) (uuid "18e8c044-1a4c-490d-af96-ab1d1d103a74") ) (segment (start 176.35 88.1) (end 184.6 96.35) (width 2) (layer "B.Cu") (net 74) (uuid "4454e147-4758-421f-b991-0c30fa59606b") ) (segment (start 184.6 110.2) (end 176.5 118.3) (width 2) (layer "B.Cu") (net 74) (uuid "694ba28b-a302-4f9d-8698-fa4bab199d8f") ) (segment (start 173.21 88.1) (end 176.35 88.1) (width 2) (layer "B.Cu") (net 74) (uuid "8b80fcb6-ebed-44ee-bac8-45778e87ca00") ) (segment (start 176.5 118.3) (end 175.67 118.3) (width 2) (layer "B.Cu") (net 74) (uuid "f0235fb5-f7f3-4d6f-98a7-3bebb95739a5") ) (segment (start 175.93 72.4) (end 177.73 74.2) (width 2) (layer "F.Cu") (net 75) (uuid "3bb32005-2f50-4d4c-b2c0-01edba0c9c76") ) (segment (start 177.73 74.2) (end 177.705 74.225) (width 2) (layer "F.Cu") (net 75) (uuid "3cf44e05-6776-4d2a-9f15-c3748bb20668") ) (segment (start 177.705 74.225) (end 177.705 79.2) (width 2) (layer "F.Cu") (net 75) (uuid "3d4432a5-72b1-46bf-a6b7-8ff473d1176d") ) (segment (start 175.53 79.2) (end 177.705 79.2) (width 0.5) (layer "F.Cu") (net 75) (uuid "44d8f1d7-b8e1-4455-b35b-5bce58d10a70") ) (segment (start 177.705 79.2) (end 177.705 83.2) (width 2) (layer "F.Cu") (net 75) (uuid "fa46e4ef-c209-4cfd-bfc3-af896fa879cd") ) (segment (start 184.6925 83.0125) (end 184.73 83.05) (width 0.25) (layer "F.Cu") (net 76) (uuid "2303fe54-b984-48f7-9130-572c2f57d38c") ) (segment (start 182.73 83.0125) (end 184.6925 83.0125) (width 0.25) (layer "F.Cu") (net 76) (uuid "51142ec6-37e3-4390-921e-a3af3a0127de") ) (segment (start 170.59 118.3) (end 170.59 115.46) (width 1.5) (layer "F.Cu") (net 77) (uuid "5d28e4ff-fca0-4cac-b2f8-64bb60796842") ) (segment (start 170.59 115.46) (end 171.85 114.2) (width 1.5) (layer "F.Cu") (net 77) (uuid "c457459a-1d1a-40bc-9981-84ba2db92d97") ) (segment (start 171.85 114.2) (end 172.0125 114.2) (width 1.5) (layer "F.Cu") (net 77) (uuid "ce69e4ab-4ed2-4e38-aef4-173f2ba7c827") ) (segment (start 181.43 114.2) (end 174.9875 114.2) (width 1.5) (layer "F.Cu") (net 82) (uuid "092b74ad-45e0-403f-b6a1-1ae0221a89d7") ) (segment (start 180.2925 97.2375) (end 180.23 97.3) (width 0.5) (layer "F.Cu") (net 82) (uuid "5a3bba92-d8dd-450d-a325-b27a252c58c5") ) (segment (start 181.7675 97.2375) (end 180.2925 97.2375) (width 0.75) (layer "F.Cu") (net 82) (uuid "a2f20abd-71e1-4e4d-ab64-dcbf0b30c6bc") ) (segment (start 181.7175 98.8375) (end 181.7175 97.2875) (width 0.75) (layer "F.Cu") (net 82) (uuid "b2a3e7cc-73d4-49aa-8458-b2d37d134646") ) (segment (start 181.7175 97.2875) (end 181.7675 97.2375) (width 0.5) (layer "F.Cu") (net 82) (uuid "dd68aa59-18e1-45aa-9547-e569fc767934") ) (via (at 180.23 97.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 82) (uuid "984c7628-96fb-468c-8a76-1802c820bb35") ) (via (at 176.83 112.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 82) (uuid "efdd6dc2-e73b-4f77-b763-119d5b891931") ) (segment (start 175.83 111.1) (end 176.83 112.1) (width 0.5) (layer "B.Cu") (net 82) (uuid "0ba8e07b-1a2f-4558-91bd-d782649d5a90") ) (segment (start 175.83 98) (end 175.83 111.1) (width 0.5) (layer "B.Cu") (net 82) (uuid "0c657aee-9c51-4b33-8f37-f5465ed3c2ed") ) (segment (start 180.23 97.3) (end 176.53 97.3) (width 0.5) (layer "B.Cu") (net 82) (uuid "86f5e100-82ee-4064-a331-c54f38f654a2") ) (segment (start 176.53 97.3) (end 175.83 98) (width 0.5) (layer "B.Cu") (net 82) (uuid "f1a7eda5-5b4b-4dd5-af9e-f53b13758666") ) (zone (net 2) (net_name "GND") (layer "F.Cu") (uuid "023602f5-aeda-4a57-a9c3-f5258169b32b") (hatch edge 0.5) (priority 6) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 180.33 101.8) (xy 180.33 104.6) (xy 179.83 105.6) (xy 179.83 107.2) (xy 170.03 107.2) (xy 170.03 101.8) ) ) (filled_polygon (layer "F.Cu") (pts (xy 177.031348 101.83653) (xy 177.182262 101.929615) (xy 177.29447 101.966796) (xy 177.350573 101.985387) (xy 177.356422 101.985984) (xy 177.393647 101.989787) (xy 177.41935 101.99521) (xy 177.576759 102.046356) (xy 177.694018 102.064928) (xy 177.811273 102.0835) (xy 177.811278 102.0835) (xy 178.048727 102.0835) (xy 178.155321 102.066616) (xy 178.283241 102.046356) (xy 178.440649 101.99521) (xy 178.466356 101.989786) (xy 178.509426 101.985387) (xy 178.677738 101.929615) (xy 178.828652 101.83653) (xy 178.865182 101.8) (xy 180.33 101.8) (xy 180.33 102.008384) (xy 180.213008 102.125376) (xy 180.213005 102.12538) (xy 180.127139 102.267421) (xy 180.127138 102.267423) (xy 180.077759 102.425886) (xy 180.077758 102.425893) (xy 180.0715 102.494759) (xy 180.0715 102.75008) (xy 180.069118 102.77427) (xy 180.0465 102.887984) (xy 180.0465 105.167) (xy 179.83 105.6) (xy 179.83 106.620741) (xy 179.749111 106.728795) (xy 179.698011 106.865795) (xy 179.698011 106.865797) (xy 179.6915 106.926345) (xy 179.6915 107.2) (xy 170.03 107.2) (xy 170.03 104.695904) (xy 172.087018 102.638886) (xy 172.087021 102.638883) (xy 172.15635 102.535125) (xy 172.204105 102.419835) (xy 172.22845 102.297444) (xy 172.22845 102.172656) (xy 172.22845 101.8) (xy 176.994818 101.8) ) ) (filled_polygon (layer "F.Cu") (pts (xy 170.96145 101.921284) (xy 170.941765 101.988323) (xy 170.925131 102.008965) (xy 170.03 102.904096) (xy 170.03 101.8) (xy 170.96145 101.8) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "2204b7a7-a325-4a3f-94a1-747c0a75a9cf") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 137.8058 98.6148) (xy 129.7808 98.6148) (xy 129.7808 95.6148) (xy 137.8058 95.6148) ) ) ) (zone (net 71) (net_name "Net-(U2-FB)") (layer "F.Cu") (uuid "3fa13a97-ac1b-4319-b13a-2397f33778f2") (hatch edge 0.5) (priority 1) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 184.23 96.6) (xy 184.23 101.1) (xy 181.53 101.2) (xy 181.53 99.8) (xy 182.83 99.8) (xy 182.83 96.6) ) ) (filled_polygon (layer "F.Cu") (pts (xy 184.173039 96.619685) (xy 184.218794 96.672489) (xy 184.23 96.724) (xy 184.23 100.980507) (xy 184.210315 101.047546) (xy 184.157511 101.093301) (xy 184.110589 101.104422) (xy 183.505143 101.126845) (xy 183.437421 101.109655) (xy 183.431663 101.106032) (xy 183.298492 101.01705) (xy 183.29849 101.017049) (xy 183.137712 100.950453) (xy 183.1377 100.95045) (xy 182.967021 100.9165) (xy 182.967017 100.9165) (xy 182.556134 100.9165) (xy 182.530353 100.91379) (xy 182.425487 100.8915) (xy 182.234513 100.8915) (xy 182.129647 100.91379) (xy 182.103866 100.9165) (xy 181.9125 100.9165) (xy 181.845461 100.896815) (xy 181.799706 100.844011) (xy 181.7885 100.7925) (xy 181.788499 100.094749) (xy 181.782243 100.025897) (xy 181.782242 100.025893) (xy 181.782242 100.025891) (xy 181.768529 99.981887) (xy 181.767378 99.91203) (xy 181.804178 99.852637) (xy 181.867247 99.822569) (xy 181.886915 99.820999) (xy 182.017205 99.820999) (xy 182.017212 99.820999) (xy 182.119381 99.810562) (xy 182.132261 99.806293) (xy 182.171265 99.8) (xy 182.83 99.8) (xy 182.83 96.724) (xy 182.849685 96.656961) (xy 182.902489 96.611206) (xy 182.954 96.6) (xy 184.106 96.6) ) ) ) (zone (net 30) (net_name "Net-(JP1-B)") (layer "F.Cu") (uuid "a95675d8-ec65-4f0c-8df9-14af354f6f5a") (hatch edge 0.5) (priority 4) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 180.33 101.2) (xy 180.33 98.3) (xy 176.43 98.3) (xy 176.43 101.2) ) ) (filled_polygon (layer "F.Cu") (pts (xy 180.273039 98.319685) (xy 180.318794 98.372489) (xy 180.33 98.424) (xy 180.33 100.792046) (xy 180.310315 100.859085) (xy 180.257511 100.90484) (xy 180.231804 100.913331) (xy 180.229663 100.913786) (xy 180.203866 100.9165) (xy 179.556134 100.9165) (xy 179.530353 100.91379) (xy 179.425487 100.8915) (xy 179.234513 100.8915) (xy 179.047714 100.931205) (xy 178.873246 101.008883) (xy 178.718748 101.121133) (xy 178.718747 101.121134) (xy 178.684675 101.158974) (xy 178.625192 101.19562) (xy 178.592528 101.2) (xy 176.554 101.2) (xy 176.486961 101.180315) (xy 176.441206 101.127511) (xy 176.43 101.076) (xy 176.43 98.424) (xy 176.449685 98.356961) (xy 176.502489 98.311206) (xy 176.554 98.3) (xy 180.206 98.3) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "cc716bd0-4abf-43b4-b162-4586fc1a08aa") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 126.5366 71.875) (xy 126.5366 66.025) (xy 134.9116 66.025) (xy 134.9116 71.875) ) ) ) (zone (net 82) (net_name "Net-(C10-Pad1)") (layer "F.Cu") (uuid "df302ca1-1d8e-4f0d-b418-a610283312f1") (hatch edge 0.5) (priority 3) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 184.95 115.4) (xy 184.95 110.5) (xy 179.63 110.5) (xy 179.65 107.65) (xy 170.55 107.65) (xy 170.55 112.6) (xy 173.6 112.6) (xy 173.6 115.3) ) ) (filled_polygon (layer "F.Cu") (pts (xy 179.59172 107.733185) (xy 179.637475 107.785989) (xy 179.648678 107.83837) (xy 179.63 110.5) (xy 184.826 110.5) (xy 184.893039 110.519685) (xy 184.938794 110.572489) (xy 184.95 110.624) (xy 184.95 115.274902) (xy 184.930315 115.341941) (xy 184.877511 115.387696) (xy 184.824908 115.398897) (xy 173.722908 115.301082) (xy 173.656044 115.280808) (xy 173.610756 115.227603) (xy 173.6 115.177087) (xy 173.6 112.6) (xy 170.674 112.6) (xy 170.606961 112.580315) (xy 170.561206 112.527511) (xy 170.55 112.476) (xy 170.55 107.8375) (xy 170.569685 107.770461) (xy 170.622489 107.724706) (xy 170.674 107.7135) (xy 179.524681 107.7135) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "e98c5fb5-05de-4f33-a9fa-564d621425e6") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 126.78 82.5806) (xy 126.78 72.9556) (xy 129.73 72.9556) (xy 129.73 82.5806) ) ) ) (zone (net 56) (net_name "Net-(U2-SW)") (layer "F.Cu") (uuid "eb7c153a-de8c-459e-a96a-70232a914140") (hatch edge 0.5) (priority 2) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 180.13 110.05) (xy 180.13 105.1) (xy 180.63 104) (xy 180.63 103.4) (xy 181.23 103.4) (xy 183.23 105.1) (xy 184.9 105.1) (xy 184.93 110.05) ) ) (filled_polygon (layer "F.Cu") (pts (xy 180.983363 103.515263) (xy 181.035406 103.561881) (xy 181.048385 103.590303) (xy 181.077137 103.682574) (xy 181.077139 103.682578) (xy 181.163005 103.824619) (xy 181.163008 103.824623) (xy 181.280377 103.941992) (xy 181.422423 104.027861) (xy 181.580891 104.077242) (xy 181.649757 104.0835) (xy 181.789455 104.083499) (xy 181.856495 104.103183) (xy 181.877137 104.119818) (xy 182.421481 104.664163) (xy 182.421482 104.664164) (xy 182.421485 104.664166) (xy 182.545716 104.747174) (xy 182.625232 104.78011) (xy 182.642789 104.787383) (xy 182.697193 104.831224) (xy 182.700874 104.836845) (xy 182.703342 104.840846) (xy 182.826654 104.964158) (xy 182.826656 104.964159) (xy 182.826657 104.96416) (xy 182.975071 105.055704) (xy 182.975074 105.055705) (xy 182.97508 105.055709) (xy 183.140619 105.110562) (xy 183.242787 105.121) (xy 183.817212 105.120999) (xy 183.919381 105.110562) (xy 183.932261 105.106293) (xy 183.971265 105.1) (xy 184.776749 105.1) (xy 184.843788 105.119685) (xy 184.889543 105.172489) (xy 184.900747 105.223249) (xy 184.928859 109.861749) (xy 184.909581 109.928906) (xy 184.857055 109.97498) (xy 184.804861 109.9865) (xy 180.271989 109.9865) (xy 180.20495 109.966815) (xy 180.159195 109.914011) (xy 180.147992 109.86163) (xy 180.162165 107.84198) (xy 180.162164 107.841958) (xy 180.150822 107.730975) (xy 180.150822 107.730974) (xy 180.139619 107.678593) (xy 180.136277 107.668492) (xy 180.13 107.62954) (xy 180.13 107.490325) (xy 180.141206 107.438813) (xy 180.184199 107.344672) (xy 180.184198 107.344672) (xy 180.1842 107.34467) (xy 180.205 107.2) (xy 180.205 107.017934) (xy 180.224685 106.950895) (xy 180.229728 106.943629) (xy 180.241076 106.928472) (xy 180.261984 106.89836) (xy 180.3227 106.765411) (xy 180.3435 106.620741) (xy 180.3435 105.750492) (xy 180.356591 105.695038) (xy 180.505784 105.396651) (xy 180.505788 105.396644) (xy 180.5392 105.31167) (xy 180.56 105.167) (xy 180.56 104.180859) (xy 180.571115 104.129547) (xy 180.594891 104.07724) (xy 180.63 104) (xy 180.63 103.942977) (xy 180.649685 103.875938) (xy 180.666319 103.855296) (xy 180.696992 103.824623) (xy 180.782861 103.682577) (xy 180.811615 103.590303) (xy 180.850352 103.532155) (xy 180.914377 103.504181) ) ) ) (zone (net 2) (net_name "GND") (layers "F.Cu" "In1.Cu" "In2.Cu" "B.Cu") (uuid "c01f5cc6-0083-48e0-9be7-a9d472f38092") (hatch edge 0.508) (connect_pads (clearance 0.508) ) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 5) ) (polygon (pts (xy 106.5 125.5) (xy 106.5 65.5) (xy 187.5 65.5) (xy 187.5 125.5) ) ) (filled_polygon (layer "F.Cu") (pts (xy 182.502748 66.00062) (xy 182.886661 66.017382) (xy 182.89761 66.018339) (xy 183.275883 66.06814) (xy 183.286699 66.070048) (xy 183.541337 66.1265) (xy 183.659184 66.152626) (xy 183.6698 66.15547) (xy 183.673823 66.156739) (xy 184.033668 66.270197) (xy 184.043997 66.273956) (xy 184.396494 66.419965) (xy 184.406456 66.424611) (xy 184.744875 66.600781) (xy 184.754378 66.606267) (xy 185.076174 66.811274) (xy 185.085166 66.81757) (xy 185.387863 67.049839) (xy 185.396283 67.056904) (xy 185.67757 67.314656) (xy 185.685343 67.322429) (xy 185.943095 67.603716) (xy 185.95016 67.612136) (xy 186.182429 67.914833) (xy 186.188734 67.923837) (xy 186.393727 68.245613) (xy 186.399223 68.255133) (xy 186.575388 68.593543) (xy 186.580034 68.603505) (xy 186.726043 68.956002) (xy 186.729802 68.966331) (xy 186.844528 69.330197) (xy 186.847373 69.340815) (xy 186.92995 69.713296) (xy 186.931859 69.724121) (xy 186.981659 70.102388) (xy 186.982617 70.113338) (xy 186.99938 70.497251) (xy 186.9995 70.502747) (xy 186.9995 120.497252) (xy 186.99938 120.502748) (xy 186.982617 120.886661) (xy 186.981659 120.897611) (xy 186.931859 121.275878) (xy 186.92995 121.286703) (xy 186.847373 121.659184) (xy 186.844528 121.669802) (xy 186.729802 122.033668) (xy 186.726043 122.043997) (xy 186.580034 122.396494) (xy 186.575388 122.406456) (xy 186.399223 122.744866) (xy 186.393727 122.754386) (xy 186.188734 123.076162) (xy 186.182429 123.085166) (xy 185.95016 123.387863) (xy 185.943095 123.396283) (xy 185.685343 123.67757) (xy 185.67757 123.685343) (xy 185.396283 123.943095) (xy 185.387863 123.95016) (xy 185.085166 124.182429) (xy 185.076162 124.188734) (xy 184.754386 124.393727) (xy 184.744866 124.399223) (xy 184.406456 124.575388) (xy 184.396494 124.580034) (xy 184.043997 124.726043) (xy 184.033668 124.729802) (xy 183.669802 124.844528) (xy 183.659184 124.847373) (xy 183.286703 124.92995) (xy 183.275878 124.931859) (xy 182.897611 124.981659) (xy 182.886661 124.982617) (xy 182.502748 124.99938) (xy 182.497252 124.9995) (xy 111.502748 124.9995) (xy 111.497252 124.99938) (xy 111.113338 124.982617) (xy 111.102388 124.981659) (xy 110.724121 124.931859) (xy 110.713296 124.92995) (xy 110.340815 124.847373) (xy 110.330197 124.844528) (xy 109.966331 124.729802) (xy 109.956002 124.726043) (xy 109.603505 124.580034) (xy 109.593543 124.575388) (xy 109.255133 124.399223) (xy 109.245613 124.393727) (xy 109.244105 124.392766) (xy 108.923829 124.188728) (xy 108.914833 124.182429) (xy 108.612136 123.95016) (xy 108.603716 123.943095) (xy 108.322429 123.685343) (xy 108.314656 123.67757) (xy 108.056904 123.396283) (xy 108.049839 123.387863) (xy 107.81757 123.085166) (xy 107.811274 123.076174) (xy 107.606267 122.754378) (xy 107.600781 122.744875) (xy 107.424611 122.406456) (xy 107.419965 122.396494) (xy 107.409318 122.370791) (xy 107.391841 122.328597) (xy 137.992 122.328597) (xy 137.998505 122.389093) (xy 138.049555 122.525964) (xy 138.049555 122.525965) (xy 138.137095 122.642904) (xy 138.254034 122.730444) (xy 138.390906 122.781494) (xy 138.451402 122.787999) (xy 138.451415 122.788) (xy 138.861 122.788) (xy 139.369 122.788) (xy 139.778585 122.788) (xy 139.778597 122.787999) (xy 139.839093 122.781494) (xy 139.975964 122.730444) (xy 139.975965 122.730444) (xy 140.092904 122.642904) (xy 140.180444 122.525965) (xy 140.180444 122.525964) (xy 140.231494 122.389093) (xy 140.237999 122.328597) (xy 140.238 122.328585) (xy 140.238 121.854) (xy 139.369 121.854) (xy 139.369 122.788) (xy 138.861 122.788) (xy 138.861 121.854) (xy 137.992 121.854) (xy 137.992 122.328597) (xy 107.391841 122.328597) (xy 107.273956 122.043997) (xy 107.270197 122.033668) (xy 107.155471 121.669802) (xy 107.152626 121.659184) (xy 107.070049 121.286703) (xy 107.06814 121.275878) (xy 107.057568 121.195579) (xy 107.018339 120.89761) (xy 107.017382 120.886661) (xy 107.016716 120.871402) (xy 137.992 120.871402) (xy 137.992 121.346) (xy 138.861 121.346) (xy 139.369 121.346) (xy 140.238 121.346) (xy 140.238 120.871414) (xy 140.237999 120.871402) (xy 140.231494 120.810906) (xy 140.180444 120.674035) (xy 140.180444 120.674034) (xy 140.092904 120.557095) (xy 139.975965 120.469555) (xy 139.839093 120.418505) (xy 139.778597 120.412) (xy 139.369 120.412) (xy 139.369 121.346) (xy 138.861 121.346) (xy 138.861 120.412) (xy 138.451402 120.412) (xy 138.390906 120.418505) (xy 138.254035 120.469555) (xy 138.254034 120.469555) (xy 138.137095 120.557095) (xy 138.049555 120.674034) (xy 138.049555 120.674035) (xy 137.998505 120.810906) (xy 137.992 120.871402) (xy 107.016716 120.871402) (xy 107.00062 120.502748) (xy 107.0005 120.497252) (xy 107.0005 115.111316) (xy 109.672 115.111316) (xy 109.682605 115.215118) (xy 109.682606 115.215121) (xy 109.738342 115.383325) (xy 109.831365 115.534139) (xy 109.83137 115.534145) (xy 109.956654 115.659429) (xy 109.95666 115.659434) (xy 110.107474 115.752457) (xy 110.275678 115.808193) (xy 110.275681 115.808194) (xy 110.379483 115.818799) (xy 110.379483 115.8188) (xy 110.426 115.8188) (xy 110.426 115.0648) (xy 110.934 115.0648) (xy 110.934 115.8188) (xy 110.980517 115.8188) (xy 110.980516 115.818799) (xy 111.084318 115.808194) (xy 111.084321 115.808193) (xy 111.252525 115.752457) (xy 111.403339 115.659434) (xy 111.403345 115.659429) (xy 111.528629 115.534145) (xy 111.528636 115.534136) (xy 111.586089 115.44099) (xy 111.638874 115.393511) (xy 111.708949 115.382108) (xy 111.774065 115.4104) (xy 111.800571 115.440989) (xy 111.851365 115.523339) (xy 111.85137 115.523345) (xy 111.976654 115.648629) (xy 111.97666 115.648634) (xy 112.127474 115.741657) (xy 112.295678 115.797393) (xy 112.295681 115.797394) (xy 112.399483 115.807999) (xy 112.399483 115.808) (xy 112.446 115.808) (xy 112.954 115.808) (xy 113.000517 115.808) (xy 113.000516 115.807999) (xy 113.104318 115.797394) (xy 113.104321 115.797393) (xy 113.272525 115.741657) (xy 113.423339 115.648634) (xy 113.423345 115.648629) (xy 113.548629 115.523345) (xy 113.548634 115.523339) (xy 113.641657 115.372525) (xy 113.697393 115.204321) (xy 113.697394 115.204318) (xy 113.707999 115.100516) (xy 113.708 115.100516) (xy 113.708 115.054) (xy 112.954 115.054) (xy 112.954 115.808) (xy 112.446 115.808) (xy 112.446 115.054) (xy 111.798298 115.054) (xy 111.783792 115.061921) (xy 111.757009 115.0648) (xy 110.934 115.0648) (xy 110.426 115.0648) (xy 109.672 115.0648) (xy 109.672 115.111316) (xy 107.0005 115.111316) (xy 107.0005 114.510283) (xy 109.672 114.510283) (xy 109.672 114.5568) (xy 110.426 114.5568) (xy 110.426 113.8028) (xy 110.934 113.8028) (xy 110.934 114.5568) (xy 111.581702 114.5568) (xy 111.596208 114.548879) (xy 111.622991 114.546) (xy 112.446 114.546) (xy 112.954 114.546) (xy 113.708 114.546) (xy 113.708 114.499483) (xy 113.697394 114.395681) (xy 113.697393 114.395678) (xy 113.641657 114.227474) (xy 113.548634 114.07666) (xy 113.548629 114.076654) (xy 113.423345 113.95137) (xy 113.423339 113.951365) (xy 113.272525 113.858342) (xy 113.104321 113.802606) (xy 113.104318 113.802605) (xy 113.000516 113.792) (xy 112.954 113.792) (xy 112.954 114.546) (xy 112.446 114.546) (xy 112.446 113.792) (xy 112.399483 113.792) (xy 112.295681 113.802605) (xy 112.295678 113.802606) (xy 112.127474 113.858342) (xy 111.97666 113.951365) (xy 111.976654 113.95137) (xy 111.85137 114.076654) (xy 111.851365 114.07666) (xy 111.79391 114.16981) (xy 111.741124 114.217288) (xy 111.671049 114.228691) (xy 111.605933 114.200398) (xy 111.579428 114.16981) (xy 111.528634 114.08746) (xy 111.528629 114.087454) (xy 111.403345 113.96217) (xy 111.403339 113.962165) (xy 111.252525 113.869142) (xy 111.084321 113.813406) (xy 111.084318 113.813405) (xy 110.980516 113.8028) (xy 110.934 113.8028) (xy 110.426 113.8028) (xy 110.379483 113.8028) (xy 110.275681 113.813405) (xy 110.275678 113.813406) (xy 110.107474 113.869142) (xy 109.95666 113.962165) (xy 109.956654 113.96217) (xy 109.83137 114.087454) (xy 109.831365 114.08746) (xy 109.738342 114.238274) (xy 109.682606 114.406478) (xy 109.682605 114.406481) (xy 109.672 114.510283) (xy 107.0005 114.510283) (xy 107.0005 112.010246) (xy 109.6715 112.010246) (xy 109.6715 112.611344) (xy 109.682112 112.715225) (xy 109.737885 112.883538) (xy 109.83097 113.034452) (xy 109.830975 113.034458) (xy 109.956341 113.159824) (xy 109.956347 113.159829) (xy 109.956348 113.15983) (xy 110.107262 113.252915) (xy 110.275574 113.308687) (xy 110.379455 113.3193) (xy 110.980544 113.319299) (xy 111.084426 113.308687) (xy 111.252738 113.252915) (xy 111.403652 113.15983) (xy 111.52903 113.034452) (xy 111.58609 112.941942) (xy 111.638874 112.894465) (xy 111.708949 112.883062) (xy 111.774065 112.911354) (xy 111.80057 112.941942) (xy 111.850968 113.02365) (xy 111.850975 113.023658) (xy 111.976341 113.149024) (xy 111.976347 113.149029) (xy 111.976348 113.14903) (xy 112.127262 113.242115) (xy 112.295574 113.297887) (xy 112.399455 113.3085) (xy 113.000544 113.308499) (xy 113.104426 113.297887) (xy 113.272738 113.242115) (xy 113.423652 113.14903) (xy 113.54903 113.023652) (xy 113.642115 112.872738) (xy 113.697887 112.704426) (xy 113.7085 112.600545) (xy 113.708499 111.999456) (xy 113.697887 111.895574) (xy 113.642115 111.727262) (xy 113.54903 111.576348) (xy 113.549029 111.576347) (xy 113.549024 111.576341) (xy 113.500405 111.527722) (xy 113.466379 111.46541) (xy 113.4635 111.438627) (xy 113.4635 108.428007) (xy 113.463499 108.428003) (xy 113.439155 108.305615) (xy 113.3914 108.190325) (xy 113.322071 108.086567) (xy 113.233833 107.998329) (xy 112.829466 107.593962) (xy 112.79544 107.53165) (xy 112.796416 107.473937) (xy 112.824164 107.364368) (xy 112.842756 107.14) (xy 112.824164 106.915632) (xy 112.798809 106.815509) (xy 112.768897 106.697387) (xy 112.768896 106.697386) (xy 112.768896 106.697384) (xy 112.67846 106.491209) (xy 112.637945 106.429196) (xy 112.555324 106.302734) (xy 112.555314 106.302722) (xy 112.411759 106.146782) (xy 112.380337 106.083117) (xy 112.388323 106.012571) (xy 112.433182 105.957542) (xy 112.460427 105.943388) (xy 112.575565 105.900444) (xy 112.692504 105.812904) (xy 112.780044 105.695965) (xy 112.780044 105.695964) (xy 112.831094 105.559093) (xy 112.837599 105.498597) (xy 112.8376 105.498585) (xy 112.8376 104.854) (xy 111.910303 104.854) (xy 111.945525 104.792993) (xy 111.9796 104.665826) (xy 111.9796 104.534174) (xy 111.945525 104.407007) (xy 111.910303 104.346) (xy 112.8376 104.346) (xy 112.8376 103.701414) (xy 112.837599 103.701402) (xy 112.831094 103.640906) (xy 112.780044 103.504035) (xy 112.780044 103.504034) (xy 112.692504 103.387095) (xy 112.575565 103.299555) (xy 112.438693 103.248505) (xy 112.378197 103.242) (xy 111.7336 103.242) (xy 111.7336 104.169297) (xy 111.672593 104.134075) (xy 111.545426 104.1) (xy 111.413774 104.1) (xy 111.286607 104.134075) (xy 111.2256 104.169297) (xy 111.2256 103.242) (xy 110.581002 103.242) (xy 110.520506 103.248505) (xy 110.383635 103.299555) (xy 110.383634 103.299555) (xy 110.266695 103.387095) (xy 110.179155 103.504034) (xy 110.179155 103.504035) (xy 110.128105 103.640906) (xy 110.1216 103.701402) (xy 110.1216 104.346) (xy 111.048897 104.346) (xy 111.013675 104.407007) (xy 110.9796 104.534174) (xy 110.9796 104.665826) (xy 111.013675 104.792993) (xy 111.048897 104.854) (xy 110.1216 104.854) (xy 110.1216 105.498597) (xy 110.128105 105.559093) (xy 110.179155 105.695964) (xy 110.179155 105.695965) (xy 110.266695 105.812904) (xy 110.383634 105.900444) (xy 110.498772 105.943388) (xy 110.555608 105.985935) (xy 110.580419 106.052455) (xy 110.565328 106.121829) (xy 110.547441 106.146782) (xy 110.40388 106.302729) (xy 110.403875 106.302734) (xy 110.280741 106.491206) (xy 110.190303 106.697386) (xy 110.190302 106.697387) (xy 110.135037 106.915624) (xy 110.135036 106.91563) (xy 110.135036 106.915632) (xy 110.116444 107.14) (xy 110.132737 107.336629) (xy 110.135037 107.364375) (xy 110.190302 107.582612) (xy 110.190303 107.582613) (xy 110.190304 107.582616) (xy 110.258299 107.73763) (xy 110.280741 107.788793) (xy 110.403875 107.977265) (xy 110.403879 107.97727) (xy 110.556362 108.142908) (xy 110.575368 108.157701) (xy 110.734024 108.281189) (xy 110.76728 108.299186) (xy 110.817671 108.3492) (xy 110.833023 108.418516) (xy 110.808462 108.485129) (xy 110.76728 108.520813) (xy 110.734026 108.53881) (xy 110.734024 108.538811) (xy 110.556362 108.677091) (xy 110.403879 108.842729) (xy 110.403875 108.842734) (xy 110.280741 109.031206) (xy 110.190303 109.237386) (xy 110.190302 109.237387) (xy 110.135037 109.455624) (xy 110.135036 109.45563) (xy 110.135036 109.455632) (xy 110.116444 109.68) (xy 110.134411 109.89683) (xy 110.135037 109.904375) (xy 110.175656 110.064776) (xy 110.172989 110.135722) (xy 110.162632 110.158706) (xy 110.112969 110.244724) (xy 110.112968 110.244727) (xy 110.097331 110.303086) (xy 110.075107 110.38603) (xy 110.0715 110.39949) (xy 110.0715 111.32042) (xy 110.051498 111.388541) (xy 110.011648 111.42766) (xy 109.956349 111.461768) (xy 109.956341 111.461775) (xy 109.830975 111.587141) (xy 109.83097 111.587147) (xy 109.737885 111.738062) (xy 109.682113 111.906372) (xy 109.682112 111.906379) (xy 109.6715 112.010246) (xy 107.0005 112.010246) (xy 107.0005 82.383219) (xy 107.020502 82.315098) (xy 107.074158 82.268605) (xy 107.144432 82.258501) (xy 107.166124 82.263612) (xy 107.170574 82.265087) (xy 107.274455 82.2757) (xy 108.675544 82.275699) (xy 108.779426 82.265087) (xy 108.947738 82.209315) (xy 109.098652 82.11623) (xy 109.22403 81.990852) (xy 109.300407 81.867024) (xy 109.35319 81.819548) (xy 109.423265 81.808145) (xy 109.488381 81.836437) (xy 109.524054 81.884954) (xy 109.557823 81.966479) (xy 109.557825 81.966483) (xy 109.587924 82.011529) (xy 109.640834 82.090715) (xy 109.640838 82.090719) (xy 110.470449 82.92033) (xy 110.504475 82.982642) (xy 110.501527 83.038414) (xy 110.503553 83.038848) (xy 110.502112 83.045575) (xy 110.4915 83.149446) (xy 110.4915 83.750544) (xy 110.502112 83.854425) (xy 110.540613 83.970613) (xy 110.557885 84.022738) (xy 110.65097 84.173652) (xy 110.735796 84.258478) (xy 110.76982 84.320788) (xy 110.7727 84.347572) (xy 110.7727 85.153908) (xy 110.775767 85.169323) (xy 110.775767 85.169327) (xy 110.775768 85.169327) (xy 110.775768 85.169328) (xy 110.801849 85.300447) (xy 110.859026 85.438484) (xy 110.942034 85.562715) (xy 110.942038 85.562719) (xy 111.606746 86.227427) (xy 111.640772 86.289739) (xy 111.64017 86.345935) (xy 111.612727 86.460246) (xy 111.612727 86.460249) (xy 111.609168 86.505459) (xy 111.583882 86.5718) (xy 111.572652 86.584665) (xy 108.06084 90.096477) (xy 108.060835 90.096483) (xy 107.99098 90.20103) (xy 107.977826 90.220716) (xy 107.96753 90.245574) (xy 107.924179 90.350233) (xy 107.924177 90.350238) (xy 107.92065 90.35875) (xy 107.920648 90.358757) (xy 107.8915 90.50529) (xy 107.8915 100.494711) (xy 107.8976 100.525374) (xy 107.906074 100.567976) (xy 107.920649 100.641247) (xy 107.977826 100.779284) (xy 108.060834 100.903515) (xy 109.646485 102.489166) (xy 109.770715 102.572174) (xy 109.908753 102.629351) (xy 109.931284 102.633832) (xy 109.931285 102.633833) (xy 109.931286 102.633833) (xy 110.055294 102.6585) (xy 111.904706 102.6585) (xy 112.028714 102.633833) (xy 112.051247 102.629351) (xy 112.189284 102.572174) (xy 112.313515 102.489166) (xy 113.19226 101.610419) (xy 113.254571 101.576396) (xy 113.268553 101.574168) (xy 113.269919 101.574028) (xy 113.279381 101.573062) (xy 113.44492 101.518209) (xy 113.593346 101.426658) (xy 113.716658 101.303346) (xy 113.808209 101.15492) (xy 113.863062 100.989381) (xy 113.8735 100.887213) (xy 113.873499 100.312788) (xy 113.863062 100.210619) (xy 113.808209 100.04508) (xy 113.716658 99.896654) (xy 113.716657 99.896653) (xy 113.716652 99.896647) (xy 113.593352 99.773347) (xy 113.593346 99.773342) (xy 113.511337 99.722758) (xy 113.44492 99.681791) (xy 113.279381 99.626938) (xy 113.279379 99.626937) (xy 113.279377 99.626937) (xy 113.177221 99.6165) (xy 112.577787 99.6165) (xy 112.475619 99.626937) (xy 112.310079 99.681791) (xy 112.161653 99.773342) (xy 112.161647 99.773347) (xy 112.054095 99.8809) (xy 111.991783 99.914926) (xy 111.920968 99.909861) (xy 111.875905 99.8809) (xy 111.768352 99.773347) (xy 111.768346 99.773342) (xy 111.686337 99.722758) (xy 111.61992 99.681791) (xy 111.454381 99.626938) (xy 111.454379 99.626937) (xy 111.454377 99.626937) (xy 111.352221 99.6165) (xy 110.752787 99.6165) (xy 110.650619 99.626937) (xy 110.556047 99.658275) (xy 110.49913 99.677135) (xy 110.428178 99.679575) (xy 110.367168 99.643267) (xy 110.335472 99.579738) (xy 110.3335 99.55753) (xy 110.3335 99.4845) (xy 110.353502 99.416379) (xy 110.407158 99.369886) (xy 110.4595 99.3585) (xy 111.238632 99.3585) (xy 111.238638 99.3585) (xy 111.238645 99.358499) (xy 111.238649 99.358499) (xy 111.299196 99.35199) (xy 111.299199 99.351989) (xy 111.299201 99.351989) (xy 111.436204 99.300889) (xy 111.445685 99.293792) (xy 111.553261 99.213261) (xy 111.640886 99.096208) (xy 111.640885 99.096208) (xy 111.640889 99.096204) (xy 111.684999 98.977939) (xy 111.727545 98.921107) (xy 111.794066 98.896296) (xy 111.86344 98.911388) (xy 111.895753 98.936635) (xy 111.927388 98.971) (xy 111.956762 99.002908) (xy 111.961349 99.006478) (xy 112.134424 99.141189) (xy 112.332426 99.248342) (xy 112.332427 99.248342) (xy 112.332428 99.248343) (xy 112.423384 99.279568) (xy 112.545365 99.321444) (xy 112.767431 99.3585) (xy 112.767435 99.3585) (xy 112.992565 99.3585) (xy 112.992569 99.3585) (xy 113.214635 99.321444) (xy 113.427574 99.248342) (xy 113.625576 99.141189) (xy 113.80324 99.002906) (xy 113.955722 98.837268) (xy 113.982366 98.796486) (xy 114.051555 98.690585) (xy 114.105558 98.644496) (xy 114.157038 98.6335) (xy 114.485406 98.6335) (xy 114.553527 98.653502) (xy 114.574501 98.670405) (xy 115.159595 99.255499) (xy 115.193621 99.317811) (xy 115.1965 99.344594) (xy 115.1965 114.062396) (xy 115.201485 114.087454) (xy 115.220845 114.184785) (xy 115.2686 114.300075) (xy 115.337929 114.403833) (xy 117.056167 116.122071) (xy 117.159925 116.1914) (xy 117.275215 116.239155) (xy 117.397606 116.2635) (xy 117.522394 116.2635) (xy 118.5255 116.2635) (xy 118.593621 116.283502) (xy 118.640114 116.337158) (xy 118.6515 116.3895) (xy 118.6515 116.528649) (xy 118.658009 116.589196) (xy 118.658011 116.589204) (xy 118.70911 116.726202) (xy 118.709112 116.726207) (xy 118.796738 116.843261) (xy 118.913792 116.930887) (xy 118.913794 116.930888) (xy 118.913796 116.930889) (xy 118.960589 116.948342) (xy 119.050795 116.981988) (xy 119.050803 116.98199) (xy 119.11135 116.988499) (xy 119.111355 116.988499) (xy 119.111362 116.9885) (xy 119.111368 116.9885) (xy 122.708632 116.9885) (xy 122.708638 116.9885) (xy 122.708645 116.988499) (xy 122.708649 116.988499) (xy 122.769196 116.98199) (xy 122.769201 116.981989) (xy 122.778408 116.978555) (xy 122.841568 116.954996) (xy 122.912383 116.949931) (xy 122.974695 116.983956) (xy 123.005434 117.034115) (xy 123.04595 117.15881) (xy 123.059082 117.199224) (xy 123.152013 117.381611) (xy 123.152018 117.381619) (xy 123.152019 117.381621) (xy 123.272337 117.54722) (xy 123.272342 117.547227) (xy 123.417092 117.691974) (xy 123.582703 117.812295) (xy 123.765098 117.905227) (xy 123.959786 117.968482) (xy 123.959791 117.968482) (xy 123.959792 117.968483) (xy 123.959824 117.968488) (xy 124.161972 118.000501) (xy 124.264324 118.0005) (xy 136.998428 118.0005) (xy 136.998432 118.000501) (xy 137.012115 118.0005) (xy 137.012167 118.000515) (xy 137.064324 118.000514) (xy 137.064324 118.000515) (xy 137.166672 118.000513) (xy 137.166678 118.000513) (xy 137.276347 117.98314) (xy 137.368858 117.968487) (xy 137.563541 117.905227) (xy 137.745932 117.812291) (xy 137.911539 117.691968) (xy 138.056284 117.54722) (xy 138.176604 117.381611) (xy 138.269536 117.199219) (xy 138.330897 117.010365) (xy 138.370968 116.951763) (xy 138.436365 116.924125) (xy 138.49476 116.931248) (xy 138.540589 116.948342) (xy 138.630795 116.981988) (xy 138.630803 116.98199) (xy 138.69135 116.988499) (xy 138.691355 116.988499) (xy 138.691362 116.9885) (xy 138.691368 116.9885) (xy 142.288632 116.9885) (xy 142.288638 116.9885) (xy 142.288645 116.988499) (xy 142.288649 116.988499) (xy 142.349196 116.98199) (xy 142.349199 116.981989) (xy 142.349201 116.981989) (xy 142.358403 116.978557) (xy 142.368045 116.97496) (xy 142.486204 116.930889) (xy 142.541642 116.889389) (xy 142.603261 116.843261) (xy 142.690887 116.726207) (xy 142.690887 116.726206) (xy 142.690889 116.726204) (xy 142.741989 116.589201) (xy 142.742508 116.584382) (xy 142.748499 116.528649) (xy 142.7485 116.528632) (xy 142.7485 114.731367) (xy 142.748499 114.73135) (xy 142.74199 114.670803) (xy 142.741988 114.670795) (xy 142.706619 114.57597) (xy 142.690889 114.533796) (xy 142.617311 114.435507) (xy 142.592501 114.368989) (xy 142.607592 114.299615) (xy 142.617306 114.284497) (xy 142.690889 114.186204) (xy 142.73496 114.068045) (xy 142.741988 114.049204) (xy 142.74199 114.049196) (xy 142.748499 113.988649) (xy 142.7485 113.988632) (xy 142.7485 112.191367) (xy 142.748499 112.19135) (xy 142.74199 112.130803) (xy 142.741988 112.130795) (xy 142.697028 112.010255) (xy 142.690889 111.993796) (xy 142.690888 111.993794) (xy 142.690887 111.993792) (xy 142.617 111.895091) (xy 142.592189 111.828571) (xy 142.60728 111.759197) (xy 142.617001 111.744072) (xy 142.690443 111.645966) (xy 142.690444 111.645964) (xy 142.741494 111.509093) (xy 142.747999 111.448597) (xy 142.748 111.448585) (xy 142.748 110.804) (xy 140.032251 110.804) (xy 140.065245 110.746853) (xy 140.1 110.617143) (xy 140.1 110.482857) (xy 140.065245 110.353147) (xy 140.032251 110.296) (xy 142.748 110.296) (xy 142.748 109.651414) (xy 142.747999 109.651402) (xy 142.741494 109.590906) (xy 142.690444 109.454035) (xy 142.690444 109.454034) (xy 142.617 109.355925) (xy 142.592189 109.289405) (xy 142.60728 109.220031) (xy 142.616998 109.204909) (xy 142.690889 109.106204) (xy 142.741989 108.969201) (xy 142.7485 108.908638) (xy 142.7485 107.111362) (xy 142.747851 107.105322) (xy 142.74199 107.050803) (xy 142.741988 107.050795) (xy 142.694551 106.923615) (xy 142.690889 106.913796) (xy 142.617311 106.815507) (xy 142.592501 106.748989) (xy 142.607592 106.679615) (xy 142.617306 106.664497) (xy 142.690889 106.566204) (xy 142.741989 106.429201) (xy 142.7485 106.368638) (xy 142.7485 104.571362) (xy 142.742209 104.512842) (xy 142.74199 104.510803) (xy 142.741988 104.510795) (xy 142.690889 104.373797) (xy 142.690889 104.373796) (xy 142.648529 104.31721) (xy 142.617311 104.275507) (xy 142.592501 104.208989) (xy 142.607592 104.139615) (xy 142.617306 104.124497) (xy 142.690889 104.026204) (xy 142.741989 103.889201) (xy 142.742011 103.889003) (xy 142.748499 103.828649) (xy 142.7485 103.828632) (xy 142.7485 102.031367) (xy 142.748499 102.03135) (xy 142.74199 101.970803) (xy 142.741988 101.970795) (xy 142.699145 101.855932) (xy 142.690889 101.833796) (xy 142.617311 101.735507) (xy 142.592501 101.668989) (xy 142.607592 101.599615) (xy 142.617306 101.584497) (xy 142.690889 101.486204) (xy 142.741989 101.349201) (xy 142.74289 101.340827) (xy 142.748499 101.288649) (xy 142.7485 101.288632) (xy 142.7485 99.491367) (xy 142.748499 99.49135) (xy 142.74199 99.430803) (xy 142.741988 99.430795) (xy 142.701201 99.321444) (xy 142.690889 99.293796) (xy 142.690888 99.293794) (xy 142.690887 99.293792) (xy 142.617 99.195091) (xy 142.592189 99.128571) (xy 142.60728 99.059197) (xy 142.617001 99.044072) (xy 142.690443 98.945966) (xy 142.690444 98.945964) (xy 142.741494 98.809093) (xy 142.747999 98.748597) (xy 142.748 98.748585) (xy 142.748 98.104) (xy 140.032251 98.104) (xy 140.065245 98.046853) (xy 140.1 97.917143) (xy 140.1 97.782857) (xy 140.065245 97.653147) (xy 140.032251 97.596) (xy 142.748 97.596) (xy 142.748 96.951414) (xy 142.747999 96.951402) (xy 142.741494 96.890906) (xy 142.690444 96.754035) (xy 142.690444 96.754034) (xy 142.617 96.655925) (xy 142.592189 96.589405) (xy 142.60728 96.520031) (xy 142.616998 96.504909) (xy 142.690889 96.406204) (xy 142.741989 96.269201) (xy 142.742024 96.268884) (xy 142.748499 96.208649) (xy 142.7485 96.208632) (xy 142.7485 94.411367) (xy 142.748499 94.41135) (xy 142.74199 94.350803) (xy 142.741987 94.350791) (xy 142.690889 94.213797) (xy 142.690889 94.213796) (xy 142.68664 94.20812) (xy 142.617311 94.115507) (xy 142.592501 94.048989) (xy 142.607592 93.979615) (xy 142.617311 93.964492) (xy 142.617312 93.964491) (xy 142.650588 93.920039) (xy 142.707421 93.877494) (xy 142.778237 93.872428) (xy 142.840547 93.906451) (xy 142.84055 93.906454) (xy 143.159595 94.225499) (xy 143.193621 94.287811) (xy 143.1965 94.314594) (xy 143.1965 102.767606) (xy 143.1965 102.892394) (xy 143.220845 103.014785) (xy 143.2686 103.130075) (xy 143.337929 103.233833) (xy 143.337931 103.233835) (xy 143.929595 103.825499) (xy 143.963621 103.887811) (xy 143.9665 103.914594) (xy 143.9665 116.834937) (xy 143.946498 116.903058) (xy 143.90665 116.942176) (xy 143.896655 116.94834) (xy 143.896647 116.948347) (xy 143.773347 117.071647) (xy 143.773342 117.071653) (xy 143.681791 117.22008) (xy 143.626937 117.385622) (xy 143.6165 117.487778) (xy 143.6165 118.087212) (xy 143.626937 118.18938) (xy 143.681791 118.35492) (xy 143.773342 118.503346) (xy 143.773347 118.503352) (xy 143.8809 118.610905) (xy 143.914926 118.673217) (xy 143.909861 118.744032) (xy 143.8809 118.789095) (xy 143.773347 118.896647) (xy 143.773342 118.896653) (xy 143.681791 119.04508) (xy 143.626937 119.210622) (xy 143.6165 119.312778) (xy 143.6165 119.912212) (xy 143.626937 120.01438) (xy 143.681791 120.17992) (xy 143.706114 120.219353) (xy 143.724851 120.287833) (xy 143.703592 120.355571) (xy 143.649084 120.401063) (xy 143.598873 120.4115) (xy 142.82135 120.4115) (xy 142.760803 120.418009) (xy 142.760795 120.418011) (xy 142.623797 120.46911) (xy 142.623792 120.469112) (xy 142.506738 120.556738) (xy 142.419112 120.673792) (xy 142.41911 120.673797) (xy 142.368011 120.810795) (xy 142.368009 120.810803) (xy 142.3615 120.87135) (xy 142.3615 122.328649) (xy 142.368009 122.389196) (xy 142.368011 122.389204) (xy 142.41911 122.526202) (xy 142.419112 122.526207) (xy 142.506738 122.643261) (xy 142.623792 122.730887) (xy 142.623794 122.730888) (xy 142.623796 122.730889) (xy 142.674364 122.74975) (xy 142.760795 122.781988) (xy 142.760803 122.78199) (xy 142.82135 122.788499) (xy 142.821355 122.788499) (xy 142.821362 122.7885) (xy 142.821368 122.7885) (xy 144.148632 122.7885) (xy 144.148638 122.7885) (xy 144.148645 122.788499) (xy 144.148649 122.788499) (xy 144.209196 122.78199) (xy 144.209199 122.781989) (xy 144.209201 122.781989) (xy 144.346204 122.730889) (xy 144.346799 122.730444) (xy 144.463261 122.643261) (xy 144.550887 122.526207) (xy 144.550887 122.526206) (xy 144.550889 122.526204) (xy 144.601989 122.389201) (xy 144.603969 122.370791) (xy 144.608499 122.328649) (xy 144.6085 122.328632) (xy 144.6085 122.283521) (xy 144.628502 122.2154) (xy 144.682158 122.168907) (xy 144.686262 122.167121) (xy 144.700075 122.1614) (xy 144.803833 122.092071) (xy 145.092072 121.803833) (xy 145.161401 121.700075) (xy 145.209155 121.584784) (xy 145.215279 121.554) (xy 145.21713 121.544697) (xy 145.233499 121.462399) (xy 145.2335 121.462392) (xy 145.2335 120.565062) (xy 145.253502 120.496941) (xy 145.293353 120.457821) (xy 145.303346 120.451658) (xy 145.426658 120.328346) (xy 145.518209 120.17992) (xy 145.573062 120.014381) (xy 145.5835 119.912213) (xy 145.583499 119.312788) (xy 145.573062 119.210619) (xy 145.518209 119.04508) (xy 145.426658 118.896654) (xy 145.426657 118.896653) (xy 145.426652 118.896647) (xy 145.3191 118.789095) (xy 145.285074 118.726783) (xy 145.290139 118.655968) (xy 145.3191 118.610905) (xy 145.426652 118.503352) (xy 145.426658 118.503346) (xy 145.518209 118.35492) (xy 145.573062 118.189381) (xy 145.5835 118.087213) (xy 145.583499 117.487788) (xy 145.573062 117.385619) (xy 145.518209 117.22008) (xy 145.426658 117.071654) (xy 145.426657 117.071653) (xy 145.426652 117.071647) (xy 145.303352 116.948347) (xy 145.303344 116.94834) (xy 145.29335 116.942176) (xy 145.245873 116.889389) (xy 145.2335 116.834937) (xy 145.2335 104.1595) (xy 145.253502 104.091379) (xy 145.307158 104.044886) (xy 145.3595 104.0335) (xy 151.952906 104.0335) (xy 152.021027 104.053502) (xy 152.042001 104.070405) (xy 153.009595 105.037999) (xy 153.043621 105.100311) (xy 153.0465 105.127094) (xy 153.0465 105.512212) (xy 153.056937 105.61438) (xy 153.111791 105.77992) (xy 153.203342 105.928346) (xy 153.203347 105.928352) (xy 153.326647 106.051652) (xy 153.326653 106.051657) (xy 153.326654 106.051658) (xy 153.47508 106.143209) (xy 153.640619 106.198062) (xy 153.742787 106.2085) (xy 154.317212 106.208499) (xy 154.419381 106.198062) (xy 154.58492 106.143209) (xy 154.584925 106.143206) (xy 154.59157 106.140108) (xy 154.592124 106.141296) (xy 154.653226 106.124573) (xy 154.720966 106.14583) (xy 154.76646 106.200334) (xy 154.7769 106.250552) (xy 154.7769 107.189144) (xy 154.787512 107.293025) (xy 154.843285 107.461338) (xy 154.93637 107.612252) (xy 154.936375 107.612258) (xy 155.061741 107.737624) (xy 155.061747 107.737629) (xy 155.061748 107.73763) (xy 155.08056 107.749233) (xy 155.128038 107.802017) (xy 155.139442 107.872092) (xy 155.121655 107.92262) (xy 155.087947 107.97727) (xy 155.072891 108.00168) (xy 155.062942 108.031705) (xy 155.018037 108.167222) (xy 155.0076 108.269378) (xy 155.0076 108.604503) (xy 154.987598 108.672624) (xy 154.970696 108.693598) (xy 153.746167 109.918129) (xy 153.657927 110.006369) (xy 153.657926 110.006371) (xy 153.588601 110.110123) (xy 153.549756 110.203903) (xy 153.540845 110.225415) (xy 153.538696 110.236218) (xy 153.5165 110.347803) (xy 153.5165 113.635405) (xy 153.496498 113.703526) (xy 153.479595 113.7245) (xy 149.149499 118.054595) (xy 149.087187 118.088621) (xy 149.060404 118.0915) (xy 147.829455 118.0915) (xy 147.725574 118.102112) (xy 147.557261 118.157885) (xy 147.406347 118.25097) (xy 147.406341 118.250975) (xy 147.280975 118.376341) (xy 147.28097 118.376347) (xy 147.187885 118.527262) (xy 147.132113 118.695572) (xy 147.132112 118.695579) (xy 147.1215 118.799446) (xy 147.1215 120.400544) (xy 147.132112 120.504425) (xy 147.187885 120.672738) (xy 147.28097 120.823652) (xy 147.280975 120.823658) (xy 147.406341 120.949024) (xy 147.406347 120.949029) (xy 147.406348 120.94903) (xy 147.557262 121.042115) (xy 147.725574 121.097887) (xy 147.829455 121.1085) (xy 148.72611 121.108499) (xy 148.794231 121.128501) (xy 148.821327 121.151978) (xy 149.521264 121.959597) (xy 149.81402 122.297393) (xy 149.820544 122.30492) (xy 149.83009 122.317436) (xy 149.840833 122.333514) (xy 149.840835 122.333516) (xy 149.871358 122.364039) (xy 149.877468 122.370601) (xy 149.905732 122.403214) (xy 149.905734 122.403215) (xy 149.905737 122.403219) (xy 149.921012 122.415082) (xy 149.932809 122.42549) (xy 149.946484 122.439165) (xy 149.982377 122.463147) (xy 149.989651 122.468391) (xy 150.023738 122.494867) (xy 150.041024 122.503518) (xy 150.054632 122.511427) (xy 150.070716 122.522174) (xy 150.070718 122.522175) (xy 150.083598 122.52751) (xy 150.110598 122.538693) (xy 150.118762 122.542422) (xy 150.157347 122.561732) (xy 150.157349 122.561732) (xy 150.157352 122.561734) (xy 150.176006 122.566849) (xy 150.190891 122.571952) (xy 150.208746 122.579348) (xy 150.208747 122.579348) (xy 150.208754 122.579351) (xy 150.251086 122.587771) (xy 150.259815 122.589833) (xy 150.284696 122.596656) (xy 150.301443 122.60125) (xy 150.302928 122.601356) (xy 150.320728 122.602627) (xy 150.336331 122.604727) (xy 150.355294 122.6085) (xy 150.398447 122.6085) (xy 150.407424 122.60882) (xy 150.450474 122.611895) (xy 150.469655 122.609483) (xy 150.485369 122.6085) (xy 155.149256 122.6085) (xy 155.165075 122.609497) (xy 155.183889 122.611878) (xy 155.227307 122.608812) (xy 155.23618 122.6085) (xy 155.279702 122.6085) (xy 155.279706 122.6085) (xy 155.298305 122.6048) (xy 155.314006 122.602692) (xy 155.332928 122.601357) (xy 155.374927 122.589876) (xy 155.383509 122.587851) (xy 155.426246 122.579351) (xy 155.443773 122.57209) (xy 155.458751 122.566964) (xy 155.477053 122.561962) (xy 155.516004 122.542508) (xy 155.52404 122.538842) (xy 155.564284 122.522174) (xy 155.580064 122.511629) (xy 155.593745 122.503685) (xy 155.610722 122.495207) (xy 155.645129 122.468529) (xy 155.652302 122.463361) (xy 155.688516 122.439165) (xy 155.701924 122.425755) (xy 155.713806 122.415281) (xy 155.7288 122.403657) (xy 155.757348 122.370771) (xy 155.763372 122.364308) (xy 155.794165 122.333516) (xy 155.804703 122.317743) (xy 155.814305 122.305162) (xy 156.837194 121.126898) (xy 156.896956 121.08857) (xy 156.932342 121.083499) (xy 157.830544 121.083499) (xy 157.934426 121.072887) (xy 158.102738 121.017115) (xy 158.253652 120.92403) (xy 158.37903 120.798652) (xy 158.468349 120.653842) (xy 158.521134 120.606365) (xy 158.591208 120.594962) (xy 158.656324 120.623254) (xy 158.664684 120.630895) (xy 158.79499 120.761201) (xy 158.794993 120.761203) (xy 158.794996 120.761206) (xy 158.967991 120.886894) (xy 159.158517 120.983972) (xy 159.361878 121.050047) (xy 159.361879 121.050047) (xy 159.361884 121.050049) (xy 159.573084 121.0835) (xy 159.573087 121.0835) (xy 159.786913 121.0835) (xy 159.786916 121.0835) (xy 159.998116 121.050049) (xy 160.201483 120.983972) (xy 160.392009 120.886894) (xy 160.565004 120.761206) (xy 160.716206 120.610004) (xy 160.841894 120.437009) (xy 160.938972 120.246483) (xy 161.005049 120.043116) (xy 161.0385 119.831916) (xy 161.0385 119.318084) (xy 161.005049 119.106884) (xy 160.938972 118.903517) (xy 160.841894 118.712991) (xy 160.716206 118.539996) (xy 160.716203 118.539993) (xy 160.716201 118.53999) (xy 160.565009 118.388798) (xy 160.565006 118.388796) (xy 160.565004 118.388794) (xy 160.392009 118.263106) (xy 160.391569 118.262882) (xy 160.372983 118.253411) (xy 160.321369 118.204662) (xy 160.304192 118.141965) (xy 160.303845 118.088621) (xy 160.297256 117.075507) (xy 162.847001 117.075507) (xy 162.857605 117.179318) (xy 162.913342 117.347525) (xy 163.006366 117.498339) (xy 163.006371 117.498345) (xy 163.131654 117.623628) (xy 163.13166 117.623633) (xy 163.282474 117.716657) (xy 163.450678 117.772393) (xy 163.450682 117.772394) (xy 163.554484 117.782999) (xy 163.851 117.782999) (xy 164.359 117.782999) (xy 164.655507 117.782999) (xy 164.759318 117.772394) (xy 164.927525 117.716657) (xy 165.078339 117.623633) (xy 165.078345 117.623628) (xy 165.203628 117.498345) (xy 165.203633 117.498339) (xy 165.296657 117.347525) (xy 165.352393 117.179321) (xy 165.352394 117.179318) (xy 165.362999 117.075515) (xy 165.363 117.075515) (xy 165.363 116.354) (xy 164.359 116.354) (xy 164.359 117.782999) (xy 163.851 117.782999) (xy 163.851 116.354) (xy 162.847001 116.354) (xy 162.847001 117.075507) (xy 160.297256 117.075507) (xy 160.288943 115.797393) (xy 160.286426 115.410318) (xy 160.305984 115.342069) (xy 160.359336 115.295228) (xy 160.412423 115.283499) (xy 160.612212 115.283499) (xy 160.714381 115.273062) (xy 160.87992 115.218209) (xy 161.028346 115.126658) (xy 161.03052 115.124484) (xy 162.847 115.124484) (xy 162.847 115.846) (xy 163.851 115.846) (xy 163.851 114.417) (xy 164.359 114.417) (xy 164.359 115.846) (xy 165.362999 115.846) (xy 165.362999 115.124492) (xy 165.352394 115.020681) (xy 165.296657 114.852474) (xy 165.203633 114.70166) (xy 165.203628 114.701654) (xy 165.131825 114.629851) (xy 165.097799 114.567539) (xy 165.102864 114.496724) (xy 165.145411 114.439888) (xy 165.211931 114.415077) (xy 165.260553 114.421151) (xy 165.415723 114.472568) (xy 165.415726 114.472569) (xy 165.517815 114.482999) (xy 165.517815 114.483) (xy 165.6135 114.483) (xy 165.6135 113.754) (xy 164.822 113.754) (xy 164.822 113.787184) (xy 164.83243 113.889273) (xy 164.832431 113.889276) (xy 164.887248 114.054707) (xy 164.978737 114.203033) (xy 164.978742 114.203039) (xy 165.047418 114.271715) (xy 165.081444 114.334027) (xy 165.076379 114.404842) (xy 165.033832 114.461678) (xy 164.967312 114.486489) (xy 164.91869 114.480415) (xy 164.759321 114.427606) (xy 164.759318 114.427605) (xy 164.655515 114.417) (xy 164.359 114.417) (xy 163.851 114.417) (xy 163.554492 114.417) (xy 163.450681 114.427605) (xy 163.282474 114.483342) (xy 163.13166 114.576366) (xy 163.131654 114.576371) (xy 163.006371 114.701654) (xy 163.006366 114.70166) (xy 162.913342 114.852474) (xy 162.857606 115.020678) (xy 162.857605 115.020681) (xy 162.847 115.124484) (xy 161.03052 115.124484) (xy 161.151658 115.003346) (xy 161.243209 114.85492) (xy 161.298062 114.689381) (xy 161.3085 114.587213) (xy 161.308499 114.012788) (xy 161.298062 113.910619) (xy 161.243209 113.74508) (xy 161.151658 113.596654) (xy 161.151657 113.596653) (xy 161.151652 113.596647) (xy 161.028352 113.473347) (xy 161.028346 113.473342) (xy 160.966499 113.435194) (xy 160.87992 113.381791) (xy 160.714381 113.326938) (xy 160.714379 113.326937) (xy 160.714377 113.326937) (xy 160.612221 113.3165) (xy 160.012787 113.3165) (xy 159.910618 113.326938) (xy 159.824132 113.355596) (xy 159.753177 113.358036) (xy 159.692167 113.321727) (xy 159.660472 113.258198) (xy 159.6585 113.235991) (xy 159.6585 109.234866) (xy 159.678502 109.166745) (xy 159.732158 109.120252) (xy 159.797306 109.109519) (xy 159.853887 109.1153) (xy 160.453312 109.115299) (xy 160.555481 109.104862) (xy 160.72102 109.050009) (xy 160.869446 108.958458) (xy 160.992758 108.835146) (xy 161.084309 108.68672) (xy 161.139162 108.521181) (xy 161.1496 108.419013) (xy 161.149599 108.083894) (xy 161.169601 108.015775) (xy 161.186499 107.994804) (xy 161.683172 107.498133) (xy 161.752501 107.394375) (xy 161.794621 107.292686) (xy 161.800255 107.279085) (xy 161.8246 107.156694) (xy 161.8246 104.578706) (xy 161.800255 104.456315) (xy 161.776225 104.398302) (xy 161.752501 104.341025) (xy 161.683172 104.237267) (xy 161.683167 104.237261) (xy 159.147935 101.702031) (xy 159.147933 101.702029) (xy 159.044175 101.6327) (xy 158.928885 101.584945) (xy 158.855186 101.570285) (xy 158.806496 101.5606) (xy 158.806494 101.5606) (xy 146.038694 101.5606) (xy 145.970573 101.540598) (xy 145.949599 101.523695) (xy 145.875405 101.449501) (xy 145.841379 101.387189) (xy 145.8385 101.360406) (xy 145.8385 87.855195) (xy 145.858502 87.787074) (xy 145.912158 87.740581) (xy 145.982432 87.730477) (xy 146.047012 87.759971) (xy 146.053595 87.7661) (xy 146.176647 87.889152) (xy 146.176653 87.889157) (xy 146.176654 87.889158) (xy 146.32508 87.980709) (xy 146.490619 88.035562) (xy 146.592787 88.046) (xy 146.9205 88.045999) (xy 146.98862 88.066001) (xy 147.035113 88.119656) (xy 147.0465 88.171999) (xy 147.0465 90.674196) (xy 147.026498 90.742317) (xy 146.972842 90.78881) (xy 146.902568 90.798914) (xy 146.837988 90.76942) (xy 146.837423 90.768928) (xy 146.83 90.762418) (xy 146.771281 90.770149) (xy 146.623378 90.831412) (xy 146.62337 90.831417) (xy 146.496369 90.928869) (xy 146.398917 91.05587) (xy 146.398912 91.055878) (xy 146.337649 91.203781) (xy 146.322 91.32265) (xy 146.322 91.8) (xy 146.8455 91.8) (xy 146.913621 91.820002) (xy 146.960114 91.873658) (xy 146.9715 91.925999) (xy 146.971501 92.073999) (xy 146.951499 92.14212) (xy 146.897844 92.188613) (xy 146.845501 92.2) (xy 146.322001 92.2) (xy 146.322001 92.677354) (xy 146.33765 92.796218) (xy 146.33765 92.796219) (xy 146.398912 92.944121) (xy 146.398917 92.944129) (xy 146.496369 93.07113) (xy 146.62337 93.168582) (xy 146.623378 93.168587) (xy 146.77128 93.229849) (xy 146.771281 93.22985) (xy 146.83 93.237579) (xy 146.83 93.030837) (xy 146.850002 92.962716) (xy 146.903658 92.916223) (xy 146.973932 92.906119) (xy 147.038512 92.935613) (xy 147.055962 92.954132) (xy 147.11482 93.030837) (xy 147.146013 93.071487) (xy 147.180706 93.098108) (xy 147.222571 93.155442) (xy 147.23 93.198068) (xy 147.23 93.237579) (xy 147.288718 93.22985) (xy 147.288722 93.229848) (xy 147.306126 93.22264) (xy 147.376715 93.21505) (xy 147.402559 93.222637) (xy 147.42115 93.230338) (xy 147.540115 93.246) (xy 147.819884 93.245999) (xy 147.93885 93.230338) (xy 147.95678 93.22291) (xy 148.027366 93.215319) (xy 148.053213 93.222908) (xy 148.07115 93.230338) (xy 148.190115 93.246) (xy 148.435403 93.245999) (xy 148.503524 93.266001) (xy 148.524499 93.282903) (xy 148.937929 93.696333) (xy 149.026167 93.784571) (xy 149.129925 93.8539) (xy 149.245215 93.901655) (xy 149.367606 93.926) (xy 150.1705 93.926) (xy 150.238621 93.946002) (xy 150.285114 93.999658) (xy 150.2965 94.052) (xy 150.2965 95.92725) (xy 150.276498 95.995371) (xy 150.259595 96.016345) (xy 149.787931 96.488008) (xy 149.787926 96.488015) (xy 149.7186 96.591768) (xy 149.712682 96.606056) (xy 149.668133 96.661336) (xy 149.600769 96.683755) (xy 149.531978 96.666195) (xy 149.519567 96.657796) (xy 149.513989 96.653515) (xy 149.513987 96.653513) (xy 149.479292 96.62689) (xy 149.437428 96.569551) (xy 149.43 96.52693) (xy 149.43 96.487419) (xy 149.429999 96.487419) (xy 149.371279 96.49515) (xy 149.371278 96.49515) (xy 149.35387 96.502361) (xy 149.28328 96.509949) (xy 149.257438 96.502361) (xy 149.23885 96.494662) (xy 149.238842 96.494661) (xy 149.119885 96.479) (xy 149.119882 96.479) (xy 148.840116 96.479) (xy 148.840107 96.479001) (xy 148.733046 96.493095) (xy 148.72115 96.494662) (xy 148.703214 96.502091) (xy 148.632624 96.509677) (xy 148.606786 96.502091) (xy 148.588848 96.494661) (xy 148.511402 96.484465) (xy 148.469885 96.479) (xy 148.469882 96.479) (xy 148.190116 96.479) (xy 148.190107 96.479001) (xy 148.083046 96.493095) (xy 148.07115 96.494662) (xy 148.071149 96.494662) (xy 148.071146 96.494663) (xy 148.052558 96.502362) (xy 147.981968 96.509948) (xy 147.95613 96.502361) (xy 147.93872 96.49515) (xy 147.88 96.487419) (xy 147.88 96.52693) (xy 147.859998 96.595051) (xy 147.830707 96.62689) (xy 147.796013 96.653513) (xy 147.79601 96.653516) (xy 147.779961 96.674431) (xy 147.722622 96.716297) (xy 147.651751 96.720517) (xy 147.589849 96.685752) (xy 147.580039 96.674431) (xy 147.568232 96.659045) (xy 147.563987 96.653513) (xy 147.547421 96.640801) (xy 147.529293 96.62689) (xy 147.487427 96.569551) (xy 147.48 96.52693) (xy 147.48 96.487419) (xy 147.479999 96.487419) (xy 147.421279 96.49515) (xy 147.421278 96.49515) (xy 147.40387 96.502361) (xy 147.33328 96.509949) (xy 147.307438 96.502361) (xy 147.28885 96.494662) (xy 147.288842 96.494661) (xy 147.169885 96.479) (xy 147.169882 96.479) (xy 146.890116 96.479) (xy 146.890107 96.479001) (xy 146.783046 96.493095) (xy 146.77115 96.494662) (xy 146.623121 96.555977) (xy 146.496013 96.653513) (xy 146.398477 96.780621) (xy 146.337161 96.928651) (xy 146.3215 97.047612) (xy 146.3215 98.402383) (xy 146.321501 98.402392) (xy 146.328869 98.458357) (xy 146.337162 98.52135) (xy 146.391901 98.653502) (xy 146.398477 98.669378) (xy 146.41475 98.690585) (xy 146.496013 98.796487) (xy 146.623124 98.894024) (xy 146.77115 98.955338) (xy 146.890115 98.971) (xy 147.169884 98.970999) (xy 147.28885 98.955338) (xy 147.307437 98.947638) (xy 147.378026 98.94005) (xy 147.403872 98.947639) (xy 147.42128 98.954849) (xy 147.421281 98.95485) (xy 147.48 98.962579) (xy 147.48 98.923068) (xy 147.500002 98.854947) (xy 147.52929 98.82311) (xy 147.563987 98.796487) (xy 147.578431 98.777662) (xy 147.635768 98.735795) (xy 147.706639 98.731573) (xy 147.768542 98.766336) (xy 147.783159 98.784364) (xy 147.837925 98.866327) (xy 147.837931 98.866334) (xy 147.843095 98.871498) (xy 147.877121 98.93381) (xy 147.88 98.960593) (xy 147.88 98.962579) (xy 147.885476 98.967382) (xy 147.936416 98.975325) (xy 147.971811 99.000214) (xy 148.16293 99.191333) (xy 148.251168 99.279571) (xy 148.354926 99.3489) (xy 148.470216 99.396655) (xy 148.592607 99.421) (xy 148.592608 99.421) (xy 150.067393 99.421) (xy 150.067394 99.421) (xy 150.189785 99.396655) (xy 150.305075 99.3489) (xy 150.408833 99.279571) (xy 150.681928 99.006475) (xy 150.744237 98.972453) (xy 150.787464 98.970651) (xy 150.790115 98.971) (xy 151.069884 98.970999) (xy 151.18885 98.955338) (xy 151.336876 98.894024) (xy 151.463987 98.796487) (xy 151.471037 98.787299) (xy 151.528373 98.745432) (xy 151.599244 98.741208) (xy 151.661148 98.775971) (xy 151.69443 98.838683) (xy 151.697 98.864002) (xy 151.697 98.924684) (xy 151.70743 99.026773) (xy 151.707431 99.026776) (xy 151.762248 99.192207) (xy 151.853737 99.340533) (xy 151.853742 99.340539) (xy 151.97696 99.463757) (xy 151.976966 99.463762) (xy 152.125292 99.555251) (xy 152.290723 99.610068) (xy 152.290726 99.610069) (xy 152.392815 99.620499) (xy 152.392815 99.6205) (xy 152.426 99.6205) (xy 152.934 99.6205) (xy 152.967185 99.6205) (xy 152.967184 99.620499) (xy 153.069273 99.610069) (xy 153.069276 99.610068) (xy 153.234707 99.555251) (xy 153.383033 99.463762) (xy 153.383039 99.463757) (xy 153.506257 99.340539) (xy 153.506262 99.340533) (xy 153.597751 99.192207) (xy 153.652568 99.026776) (xy 153.652569 99.026773) (xy 153.662999 98.924684) (xy 153.663 98.924684) (xy 153.663 98.829) (xy 152.934 98.829) (xy 152.934 99.6205) (xy 152.426 99.6205) (xy 152.426 98.701) (xy 152.446002 98.632879) (xy 152.499658 98.586386) (xy 152.552 98.575) (xy 152.68 98.575) (xy 152.68 98.447) (xy 152.700002 98.378879) (xy 152.753658 98.332386) (xy 152.806 98.321) (xy 153.663 98.321) (xy 153.663 98.225315) (xy 153.652569 98.123226) (xy 153.652568 98.123223) (xy 153.597751 97.957792) (xy 153.506262 97.809466) (xy 153.506257 97.80946) (xy 153.498745 97.801948) (xy 153.464719 97.739636) (xy 153.469784 97.668821) (xy 153.498747 97.623756) (xy 153.506658 97.615846) (xy 153.598209 97.46742) (xy 153.653062 97.301881) (xy 153.659242 97.241393) (xy 153.686064 97.175658) (xy 153.744167 97.13486) (xy 153.784589 97.1282) (xy 162.545829 97.1282) (xy 162.58546 97.134595) (xy 162.625574 97.147887) (xy 162.729455 97.1585) (xy 164.130544 97.158499) (xy 164.234426 97.147887) (xy 164.402738 97.092115) (xy 164.548417 97.002258) (xy 164.614563 96.9835) (xy 165.049355 96.9835) (xy 165.100603 96.994392) (xy 165.267712 97.068794) (xy 165.454513 97.1085) (xy 165.645487 97.1085) (xy 165.832288 97.068794) (xy 165.980116 97.002976) (xy 166.050483 96.993543) (xy 166.11478 97.02365) (xy 166.138603 97.051934) (xy 166.197789 97.147887) (xy 166.20597 97.161151) (xy 166.205975 97.161157) (xy 166.331342 97.286524) (xy 166.331348 97.286529) (xy 166.331349 97.28653) (xy 166.482262 97.379615) (xy 166.650575 97.435387) (xy 166.678906 97.438281) (xy 166.754448 97.446) (xy 166.754456 97.446) (xy 168.105552 97.446) (xy 168.177966 97.438601) (xy 168.209425 97.435387) (xy 168.377738 97.379615) (xy 168.528651 97.28653) (xy 168.573516 97.241664) (xy 168.635826 97.207641) (xy 168.706641 97.212705) (xy 168.763477 97.255251) (xy 168.788289 97.321771) (xy 168.785819 97.357132) (xy 168.784388 97.363817) (xy 168.77395 97.465978) (xy 168.77395 98.040414) (xy 168.777024 98.070501) (xy 168.764047 98.140302) (xy 168.715393 98.192006) (xy 168.64651 98.209198) (xy 168.579266 98.18642) (xy 168.562581 98.172399) (xy 168.528657 98.138475) (xy 168.528651 98.13847) (xy 168.418457 98.070501) (xy 168.377738 98.045385) (xy 168.209425 97.989613) (xy 168.209423 97.989612) (xy 168.209421 97.989612) (xy 168.105552 97.979) (xy 168.105544 97.979) (xy 166.754456 97.979) (xy 166.754448 97.979) (xy 166.650578 97.989612) (xy 166.482262 98.045385) (xy 166.48226 98.045386) (xy 166.331348 98.13847) (xy 166.331342 98.138475) (xy 166.205975 98.263842) (xy 166.20597 98.263848) (xy 166.112886 98.41476) (xy 166.112885 98.414762) (xy 166.057112 98.583078) (xy 166.0465 98.686947) (xy 166.0465 99.105074) (xy 166.026498 99.173195) (xy 166.009596 99.194169) (xy 165.187119 100.016647) (xy 165.046645 100.157121) (xy 165.046644 100.157123) (xy 164.936279 100.322296) (xy 164.860258 100.505825) (xy 164.860256 100.50583) (xy 164.8215 100.700668) (xy 164.8215 103.2155) (xy 164.801498 103.283621) (xy 164.747842 103.330114) (xy 164.6955 103.3415) (xy 164.380465 103.3415) (xy 164.380445 103.341501) (xy 164.232305 103.35609) (xy 164.042195 103.413759) (xy 163.866995 103.507405) (xy 163.713432 103.633432) (xy 163.587405 103.786995) (xy 163.493759 103.962195) (xy 163.43609 104.152305) (xy 163.4215 104.300446) (xy 163.4215 105.399534) (xy 163.421501 105.399554) (xy 163.43609 105.547694) (xy 163.436091 105.5477) (xy 163.436092 105.547701) (xy 163.493759 105.737804) (xy 163.587405 105.913004) (xy 163.713432 106.066568) (xy 163.866996 106.192595) (xy 164.042196 106.286241) (xy 164.232299 106.343908) (xy 164.232303 106.343908) (xy 164.232305 106.343909) (xy 164.272502 106.347867) (xy 164.380453 106.3585) (xy 164.6955 106.358499) (xy 164.76362 106.378501) (xy 164.810113 106.432156) (xy 164.8215 106.484499) (xy 164.8215 109.858791) (xy 164.801498 109.926912) (xy 164.79342 109.938086) (xy 164.777919 109.957228) (xy 164.719505 109.99758) (xy 164.648547 109.999944) (xy 164.587576 109.963572) (xy 164.582079 109.957228) (xy 164.53317 109.89683) (xy 164.533168 109.896828) (xy 164.533167 109.896827) (xy 164.388846 109.779957) (xy 164.388837 109.779952) (xy 164.22336 109.695637) (xy 164.097266 109.66185) (xy 164.043971 109.64757) (xy 163.966843 109.6415) (xy 163.966839 109.6415) (xy 163.093158 109.6415) (xy 163.01603 109.647569) (xy 162.836639 109.695637) (xy 162.671162 109.779952) (xy 162.671153 109.779957) (xy 162.526829 109.896829) (xy 162.409957 110.041153) (xy 162.409952 110.041162) (xy 162.325637 110.206639) (xy 162.277571 110.386025) (xy 162.27757 110.386029) (xy 162.27238 110.451979) (xy 162.2715 110.46316) (xy 162.2715 111.836841) (xy 162.277569 111.913969) (xy 162.325637 112.09336) (xy 162.409952 112.258837) (xy 162.409957 112.258846) (xy 162.526829 112.40317) (xy 162.671153 112.520042) (xy 162.671158 112.520045) (xy 162.671161 112.520047) (xy 162.836638 112.604362) (xy 163.016029 112.65243) (xy 163.093157 112.6585) (xy 163.966842 112.658499) (xy 164.043971 112.65243) (xy 164.046688 112.651702) (xy 164.048023 112.651733) (xy 164.049663 112.651452) (xy 164.049718 112.651773) (xy 164.117664 112.653384) (xy 164.168406 112.68431) (xy 164.451167 112.967071) (xy 164.554925 113.0364) (xy 164.65043 113.07596) (xy 164.670212 113.084154) (xy 164.670213 113.084154) (xy 164.670215 113.084155) (xy 164.720582 113.094173) (xy 164.783491 113.12708) (xy 164.818623 113.188775) (xy 164.822 113.217752) (xy 164.822 113.246) (xy 165.7415 113.246) (xy 165.809621 113.266002) (xy 165.856114 113.319658) (xy 165.8675 113.372) (xy 165.8675 113.5) (xy 165.9955 113.5) (xy 166.063621 113.520002) (xy 166.110114 113.573658) (xy 166.1215 113.626) (xy 166.1215 114.483) (xy 166.170128 114.483) (xy 166.238249 114.503002) (xy 166.284742 114.556658) (xy 166.294846 114.626932) (xy 166.265352 114.691512) (xy 166.259223 114.698095) (xy 166.255975 114.701342) (xy 166.25597 114.701348) (xy 166.162886 114.85226) (xy 166.162885 114.852262) (xy 166.107112 115.020578) (xy 166.0965 115.124447) (xy 166.0965 117.501522) (xy 166.076498 117.569643) (xy 166.059595 117.590617) (xy 164.410142 119.24007) (xy 164.347306 119.302906) (xy 164.27007 119.380141) (xy 164.153636 119.540398) (xy 164.096778 119.651988) (xy 164.063702 119.716903) (xy 164.002488 119.9053) (xy 163.976009 120.072489) (xy 163.9715 120.100957) (xy 163.9715 120.4655) (xy 163.951498 120.533621) (xy 163.897842 120.580114) (xy 163.845501 120.5915) (xy 163.679455 120.5915) (xy 163.575574 120.602112) (xy 163.407261 120.657885) (xy 163.256347 120.75097) (xy 163.256341 120.750975) (xy 163.130975 120.876341) (xy 163.13097 120.876347) (xy 163.037885 121.027262) (xy 162.982113 121.195572) (xy 162.982112 121.195579) (xy 162.9715 121.299446) (xy 162.9715 122.700544) (xy 162.982112 122.804425) (xy 163.037885 122.972738) (xy 163.13097 123.123652) (xy 163.130975 123.123658) (xy 163.256341 123.249024) (xy 163.256347 123.249029) (xy 163.256348 123.24903) (xy 163.407262 123.342115) (xy 163.575574 123.397887) (xy 163.679455 123.4085) (xy 166.780544 123.408499) (xy 166.884426 123.397887) (xy 167.052738 123.342115) (xy 167.203652 123.24903) (xy 167.32903 123.123652) (xy 167.422115 122.972738) (xy 167.477887 122.804426) (xy 167.4885 122.700545) (xy 167.488499 121.299456) (xy 167.477887 121.195574) (xy 167.422115 121.027262) (xy 167.32903 120.876348) (xy 167.329029 120.876347) (xy 167.329024 120.876341) (xy 167.203658 120.750975) (xy 167.203652 120.75097) (xy 167.052738 120.657885) (xy 166.948227 120.623254) (xy 166.884427 120.602113) (xy 166.883003 120.601809) (xy 166.882208 120.601378) (xy 166.877897 120.59995) (xy 166.878151 120.59918) (xy 166.820578 120.567991) (xy 166.786346 120.505792) (xy 166.791176 120.43496) (xy 166.82028 120.389507) (xy 168.31493 118.894858) (xy 168.431367 118.734598) (xy 168.521299 118.558096) (xy 168.582512 118.369699) (xy 168.584853 118.35492) (xy 168.58542 118.351345) (xy 168.605022 118.227575) (xy 168.6135 118.174046) (xy 168.6135 116.673477) (xy 168.633502 116.605356) (xy 168.6504 116.584386) (xy 168.942673 116.292112) (xy 168.942686 116.292102) (xy 169.089925 116.144863) (xy 169.08993 116.144858) (xy 169.103564 116.126091) (xy 169.159786 116.082738) (xy 169.230522 116.076663) (xy 169.293314 116.109794) (xy 169.328225 116.171614) (xy 169.3315 116.200153) (xy 169.3315 117.760755) (xy 169.320888 117.811367) (xy 169.300704 117.857381) (xy 169.300702 117.857387) (xy 169.245437 118.075624) (xy 169.245436 118.07563) (xy 169.245436 118.075632) (xy 169.226844 118.3) (xy 169.243604 118.502262) (xy 169.245437 118.524375) (xy 169.300702 118.742612) (xy 169.300703 118.742613) (xy 169.300704 118.742616) (xy 169.368271 118.896654) (xy 169.391141 118.948793) (xy 169.514275 119.137265) (xy 169.514279 119.13727) (xy 169.666762 119.302908) (xy 169.679443 119.312778) (xy 169.844424 119.441189) (xy 170.042426 119.548342) (xy 170.042427 119.548342) (xy 170.042428 119.548343) (xy 170.154227 119.586723) (xy 170.255365 119.621444) (xy 170.477431 119.6585) (xy 170.477435 119.6585) (xy 170.702565 119.6585) (xy 170.702569 119.6585) (xy 170.924635 119.621444) (xy 171.137574 119.548342) (xy 171.335576 119.441189) (xy 171.51324 119.302906) (xy 171.652799 119.151306) (xy 171.713653 119.114735) (xy 171.784617 119.11687) (xy 171.843162 119.157032) (xy 171.8707 119.22247) (xy 171.8715 119.236644) (xy 171.8715 119.9155) (xy 171.851498 119.983621) (xy 171.797842 120.030114) (xy 171.7455 120.0415) (xy 170.830954 120.0415) (xy 170.6353 120.072488) (xy 170.635297 120.072488) (xy 170.635296 120.072489) (xy 170.446903 120.133702) (xy 170.446901 120.133703) (xy 170.299333 120.208893) (xy 170.299332 120.208892) (xy 170.270401 120.223634) (xy 170.110141 120.34007) (xy 169.895615 120.554596) (xy 169.833303 120.588621) (xy 169.80652 120.5915) (xy 168.679455 120.5915) (xy 168.575574 120.602112) (xy 168.407261 120.657885) (xy 168.256347 120.75097) (xy 168.256341 120.750975) (xy 168.130975 120.876341) (xy 168.13097 120.876347) (xy 168.037885 121.027262) (xy 167.982113 121.195572) (xy 167.982112 121.195579) (xy 167.9715 121.299446) (xy 167.9715 122.700544) (xy 167.982112 122.804425) (xy 168.037885 122.972738) (xy 168.13097 123.123652) (xy 168.130975 123.123658) (xy 168.256341 123.249024) (xy 168.256347 123.249029) (xy 168.256348 123.24903) (xy 168.407262 123.342115) (xy 168.575574 123.397887) (xy 168.679455 123.4085) (xy 171.780544 123.408499) (xy 171.884426 123.397887) (xy 172.052738 123.342115) (xy 172.203652 123.24903) (xy 172.32903 123.123652) (xy 172.422115 122.972738) (xy 172.477887 122.804426) (xy 172.4854 122.730889) (xy 172.4885 122.700553) (xy 172.4885 122.6845) (xy 172.508502 122.616379) (xy 172.562158 122.569886) (xy 172.6145 122.5585) (xy 173.279043 122.5585) (xy 173.279046 122.5585) (xy 173.4747 122.527512) (xy 173.663096 122.466299) (xy 173.839598 122.376367) (xy 173.999858 122.25993) (xy 174.13993 122.119858) (xy 174.256367 121.959598) (xy 174.346299 121.783096) (xy 174.407512 121.5947) (xy 174.421551 121.506054) (xy 174.451963 121.441903) (xy 174.512231 121.404375) (xy 174.583221 121.405389) (xy 174.642393 121.444621) (xy 174.670961 121.509617) (xy 174.672 121.525766) (xy 174.672 121.600516) (xy 174.682605 121.704318) (xy 174.682606 121.704321) (xy 174.738342 121.872525) (xy 174.831365 122.023339) (xy 174.83137 122.023345) (xy 174.956654 122.148629) (xy 174.95666 122.148634) (xy 175.107474 122.241657) (xy 175.275678 122.297393) (xy 175.275681 122.297394) (xy 175.379483 122.307999) (xy 175.379483 122.308) (xy 175.426 122.308) (xy 175.934 122.308) (xy 175.980517 122.308) (xy 175.980516 122.307999) (xy 176.084318 122.297394) (xy 176.084321 122.297393) (xy 176.252525 122.241657) (xy 176.403339 122.148634) (xy 176.403345 122.148629) (xy 176.528629 122.023345) (xy 176.528634 122.023339) (xy 176.621657 121.872525) (xy 176.677393 121.704321) (xy 176.677394 121.704318) (xy 176.687999 121.600516) (xy 176.688 121.600516) (xy 176.688 121.554) (xy 175.934 121.554) (xy 175.934 122.308) (xy 175.426 122.308) (xy 175.426 121.046) (xy 175.934 121.046) (xy 176.688 121.046) (xy 176.688 120.999483) (xy 176.677394 120.895681) (xy 176.677393 120.895678) (xy 176.621657 120.727474) (xy 176.528634 120.57666) (xy 176.528629 120.576654) (xy 176.403345 120.45137) (xy 176.403339 120.451365) (xy 176.252525 120.358342) (xy 176.084321 120.302606) (xy 176.084318 120.302605) (xy 175.980516 120.292) (xy 175.934 120.292) (xy 175.934 121.046) (xy 175.426 121.046) (xy 175.426 120.292) (xy 175.379483 120.292) (xy 175.275681 120.302605) (xy 175.275678 120.302606) (xy 175.107474 120.358342) (xy 174.95666 120.451365) (xy 174.956654 120.45137) (xy 174.83137 120.576654) (xy 174.831365 120.57666) (xy 174.738342 120.727474) (xy 174.682606 120.895678) (xy 174.682605 120.895681) (xy 174.672 120.999483) (xy 174.672 121.074229) (xy 174.651998 121.14235) (xy 174.598342 121.188843) (xy 174.528068 121.198947) (xy 174.463488 121.169453) (xy 174.425104 121.109727) (xy 174.421551 121.09394) (xy 174.421165 121.0915) (xy 174.407512 121.0053) (xy 174.405622 120.999483) (xy 174.394667 120.965766) (xy 174.3885 120.92683) (xy 174.3885 119.712071) (xy 174.408502 119.64395) (xy 174.462158 119.597457) (xy 174.532432 119.587353) (xy 174.565163 119.598247) (xy 174.565353 119.59774) (xy 174.710795 119.651988) (xy 174.710803 119.65199) (xy 174.77135 119.658499) (xy 174.771355 119.658499) (xy 174.771362 119.6585) (xy 174.771368 119.6585) (xy 176.568632 119.6585) (xy 176.568638 119.6585) (xy 176.568645 119.658499) (xy 176.568649 119.658499) (xy 176.629196 119.65199) (xy 176.629199 119.651989) (xy 176.629201 119.651989) (xy 176.766204 119.600889) (xy 176.769734 119.598247) (xy 176.883261 119.513261) (xy 176.970887 119.396207) (xy 176.970887 119.396206) (xy 176.970889 119.396204) (xy 177.021989 119.259201) (xy 177.0285 119.198638) (xy 177.0285 117.401362) (xy 177.028499 117.40135) (xy 177.02199 117.340803) (xy 177.021988 117.340795) (xy 176.970889 117.203796) (xy 176.970887 117.203792) (xy 176.883261 117.086738) (xy 176.766207 116.999112) (xy 176.766202 116.99911) (xy 176.629204 116.948011) (xy 176.629196 116.948009) (xy 176.568649 116.9415) (xy 176.568638 116.9415) (xy 174.771362 116.9415) (xy 174.77135 116.9415) (xy 174.710803 116.948009) (xy 174.710795 116.948011) (xy 174.573797 116.99911) (xy 174.573792 116.999112) (xy 174.456738 117.086738) (xy 174.369112 117.203792) (xy 174.369111 117.203795) (xy 174.325 117.322058) (xy 174.282453 117.378893) (xy 174.215932 117.403703) (xy 174.146558 117.388611) (xy 174.114246 117.363363) (xy 174.05324 117.297094) (xy 174.053239 117.297093) (xy 174.053237 117.297091) (xy 173.971382 117.233381) (xy 173.875576 117.158811) (xy 173.677574 117.051658) (xy 173.677572 117.051657) (xy 173.677571 117.051656) (xy 173.464639 116.978557) (xy 173.46463 116.978555) (xy 173.420476 116.971187) (xy 173.242569 116.9415) (xy 173.017431 116.9415) (xy 172.869211 116.966233) (xy 172.795369 116.978555) (xy 172.79536 116.978557) (xy 172.582428 117.051656) (xy 172.582426 117.051658) (xy 172.384426 117.15881) (xy 172.384424 117.158811) (xy 172.206759 117.297094) (xy 172.0672 117.448693) (xy 172.006347 117.485264) (xy 171.935383 117.483129) (xy 171.876838 117.442967) (xy 171.8493 117.377528) (xy 171.8485 117.363355) (xy 171.8485 116.033478) (xy 171.868502 115.965357) (xy 171.885405 115.944383) (xy 172.209383 115.620405) (xy 172.271695 115.586379) (xy 172.298478 115.5835) (xy 172.525552 115.5835) (xy 172.594798 115.576424) (xy 172.629425 115.572887) (xy 172.797738 115.517115) (xy 172.948651 115.42403) (xy 172.950623 115.422057) (xy 172.95231 115.421136) (xy 172.954409 115.419477) (xy 172.954692 115.419835) (xy 173.012931 115.388029) (xy 173.083747 115.393089) (xy 173.140586 115.435632) (xy 173.146307 115.443949) (xy 173.219731 115.560442) (xy 173.219734 115.560446) (xy 173.265016 115.613645) (xy 173.271727 115.619564) (xy 173.374633 115.710331) (xy 173.507043 115.772215) (xy 173.573907 115.792489) (xy 173.718384 115.814562) (xy 184.820384 115.912377) (xy 184.85754 115.90863) (xy 184.931836 115.901139) (xy 184.93184 115.901138) (xy 184.931852 115.901137) (xy 184.984455 115.889936) (xy 185.090827 115.854792) (xy 185.213782 115.775773) (xy 185.213784 115.77577) (xy 185.213786 115.77577) (xy 185.253154 115.741657) (xy 185.266586 115.730018) (xy 185.362297 115.619563) (xy 185.423014 115.486615) (xy 185.442699 115.419576) (xy 185.4427 115.419572) (xy 185.4635 115.274902) (xy 185.4635 110.624) (xy 185.451764 110.514843) (xy 185.440558 110.463332) (xy 185.40589 110.359173) (xy 185.364886 110.29537) (xy 185.344884 110.227249) (xy 185.355955 110.175603) (xy 185.403148 110.070589) (xy 185.422426 110.003432) (xy 185.422426 110.00343) (xy 185.422458 110.003196) (xy 185.423576 109.99525) (xy 185.423602 109.994883) (xy 185.423954 109.992323) (xy 185.44235 109.858637) (xy 185.414238 105.220137) (xy 185.402178 105.112571) (xy 185.390974 105.061811) (xy 185.356639 104.959173) (xy 185.27762 104.836218) (xy 185.277619 104.836217) (xy 185.277618 104.836215) (xy 185.277617 104.836213) (xy 185.231868 104.783417) (xy 185.148444 104.711129) (xy 185.12141 104.687703) (xy 184.988464 104.626986) (xy 184.921428 104.607302) (xy 184.921424 104.607301) (xy 184.921421 104.6073) (xy 184.921419 104.6073) (xy 184.776749 104.5865) (xy 184.776745 104.5865) (xy 184.6365 104.5865) (xy 184.568379 104.566498) (xy 184.521886 104.512842) (xy 184.511153 104.447693) (xy 184.513499 104.424721) (xy 184.5135 104.424713) (xy 184.513499 103.725288) (xy 184.503062 103.623119) (xy 184.448209 103.45758) (xy 184.448042 103.45731) (xy 184.352967 103.30317) (xy 184.334229 103.234691) (xy 184.352967 103.170875) (xy 184.44775 103.017208) (xy 184.502568 102.851776) (xy 184.502569 102.851773) (xy 184.512999 102.749684) (xy 184.513 102.749684) (xy 184.513 102.704) (xy 183.656 102.704) (xy 183.587879 102.683998) (xy 183.541386 102.630342) (xy 183.53 102.578) (xy 183.53 102.322) (xy 183.550002 102.253879) (xy 183.603658 102.207386) (xy 183.656 102.196) (xy 184.513 102.196) (xy 184.513 102.150315) (xy 184.502569 102.048226) (xy 184.502568 102.048223) (xy 184.447751 101.882792) (xy 184.356261 101.734465) (xy 184.356104 101.734266) (xy 184.356038 101.734103) (xy 184.35241 101.728221) (xy 184.353415 101.7276) (xy 184.329543 101.668425) (xy 184.342794 101.598676) (xy 184.386818 101.55012) (xy 184.493782 101.481378) (xy 184.493784 101.481376) (xy 184.493786 101.481375) (xy 184.540564 101.440841) (xy 184.546586 101.435623) (xy 184.642297 101.325168) (xy 184.703014 101.19222) (xy 184.722699 101.125181) (xy 184.7227 101.125177) (xy 184.7435 100.980507) (xy 184.7435 96.724) (xy 184.731764 96.614843) (xy 184.720558 96.563332) (xy 184.68589 96.459173) (xy 184.606871 96.336218) (xy 184.60687 96.336217) (xy 184.606869 96.336215) (xy 184.606868 96.336213) (xy 184.561119 96.283417) (xy 184.554402 96.277597) (xy 184.450661 96.187703) (xy 184.43259 96.17945) (xy 184.317715 96.126986) (xy 184.250679 96.107302) (xy 184.250675 96.107301) (xy 184.250672 96.1073) (xy 184.25067 96.1073) (xy 184.106 96.0865) (xy 182.954 96.0865) (xy 182.953992 96.0865) (xy 182.860104 96.096595) (xy 182.844843 96.098236) (xy 182.844841 96.098236) (xy 182.844835 96.098237) (xy 182.793332 96.109441) (xy 182.689174 96.144109) (xy 182.566215 96.22313) (xy 182.566213 96.223131) (xy 182.513416 96.26888) (xy 182.505863 96.277597) (xy 182.446135 96.315976) (xy 182.375138 96.315972) (xy 182.371041 96.314692) (xy 182.219381 96.264438) (xy 182.219379 96.264437) (xy 182.219377 96.264437) (xy 182.117221 96.254) (xy 181.417787 96.254) (xy 181.315619 96.264437) (xy 181.191829 96.305456) (xy 181.15008 96.319291) (xy 181.12422 96.335241) (xy 181.058075 96.354) (xy 180.20548 96.354) (xy 180.034792 96.387952) (xy 180.034787 96.387954) (xy 179.898194 96.444533) (xy 179.874006 96.454552) (xy 179.840467 96.476961) (xy 179.821719 96.487301) (xy 179.77325 96.508881) (xy 179.773248 96.508882) (xy 179.618744 96.621135) (xy 179.490965 96.763048) (xy 179.490958 96.763058) (xy 179.401386 96.918202) (xy 179.395473 96.928444) (xy 179.38801 96.951414) (xy 179.336457 97.110072) (xy 179.316496 97.3) (xy 179.336457 97.489928) (xy 179.379229 97.621564) (xy 179.381257 97.692531) (xy 179.344594 97.753329) (xy 179.280882 97.784655) (xy 179.259396 97.7865) (xy 179.0245 97.7865) (xy 178.956379 97.766498) (xy 178.909886 97.712842) (xy 178.8985 97.6605) (xy 178.8985 95.483939) (xy 178.898501 95.483914) (xy 178.898501 95.241281) (xy 178.894769 95.217716) (xy 178.861356 95.006759) (xy 178.787982 94.780937) (xy 178.680185 94.569373) (xy 178.635958 94.5085) (xy 178.54062 94.377278) (xy 178.540617 94.377275) (xy 178.540615 94.377272) (xy 178.369576 94.206233) (xy 178.369545 94.206204) (xy 174.48503 90.321689) (xy 174.48501 90.321667) (xy 174.312727 90.149384) (xy 174.312724 90.149382) (xy 174.312722 90.14938) (xy 174.120627 90.009815) (xy 173.909063 89.902018) (xy 173.90906 89.902017) (xy 173.909058 89.902016) (xy 173.683244 89.828645) (xy 173.683241 89.828644) (xy 173.683239 89.828643) (xy 173.683229 89.828641) (xy 173.681982 89.828444) (xy 173.681978 89.828442) (xy 173.681978 89.828444) (xy 173.448722 89.791499) (xy 173.211278 89.791499) (xy 173.206085 89.791499) (xy 173.206061 89.7915) (xy 171.14124 89.7915) (xy 171.073119 89.771498) (xy 171.026626 89.717842) (xy 171.016522 89.647568) (xy 171.046016 89.582988) (xy 171.102304 89.545667) (xy 171.126032 89.537957) (xy 171.249063 89.497982) (xy 171.460627 89.390185) (xy 171.652722 89.25062) (xy 171.719823 89.183518) (xy 171.782133 89.149495) (xy 171.852949 89.154559) (xy 171.909785 89.197105) (xy 171.949846 89.250619) (xy 171.993665 89.309155) (xy 171.99674 89.313262) (xy 172.113792 89.400887) (xy 172.113794 89.400888) (xy 172.113796 89.400889) (xy 172.135958 89.409155) (xy 172.250795 89.451988) (xy 172.250803 89.45199) (xy 172.31135 89.458499) (xy 172.311355 89.458499) (xy 172.311362 89.4585) (xy 172.311368 89.4585) (xy 174.108632 89.4585) (xy 174.108638 89.4585) (xy 174.108645 89.458499) (xy 174.108649 89.458499) (xy 174.169196 89.45199) (xy 174.169199 89.451989) (xy 174.169201 89.451989) (xy 174.306204 89.400889) (xy 174.306401 89.400742) (xy 174.423261 89.313261) (xy 174.510887 89.196207) (xy 174.510887 89.196206) (xy 174.510889 89.196204) (xy 174.561989 89.059201) (xy 174.562883 89.05089) (xy 174.568499 88.998649) (xy 174.5685 88.998632) (xy 174.5685 87.201367) (xy 174.568499 87.20135) (xy 174.56199 87.140803) (xy 174.561988 87.140795) (xy 174.51372 87.011386) (xy 174.510889 87.003796) (xy 174.510888 87.003794) (xy 174.510887 87.003792) (xy 174.423261 86.886738) (xy 174.306207 86.799112) (xy 174.306202 86.79911) (xy 174.169204 86.748011) (xy 174.169196 86.748009) (xy 174.108649 86.7415) (xy 174.108638 86.7415) (xy 172.311362 86.7415) (xy 172.311341 86.7415) (xy 172.31121 86.741507) (xy 172.31118 86.7415) (xy 172.307988 86.7415) (xy 172.307988 86.740744) (xy 172.24212 86.725161) (xy 172.192836 86.674057) (xy 172.1785 86.615686) (xy 172.1785 86.144711) (xy 172.197259 86.078566) (xy 172.247115 85.997738) (xy 172.302887 85.829425) (xy 172.307333 85.785904) (xy 172.3135 85.725552) (xy 172.3135 80.674447) (xy 172.303748 80.579) (xy 172.302887 80.570575) (xy 172.247115 80.402262) (xy 172.15403 80.251349) (xy 172.154029 80.251348) (xy 172.154024 80.251342) (xy 172.028657 80.125975) (xy 172.028651 80.12597) (xy 172.015326 80.117751) (xy 171.877738 80.032885) (xy 171.709425 79.977113) (xy 171.709423 79.977112) (xy 171.709421 79.977112) (xy 171.605552 79.9665) (xy 171.605544 79.9665) (xy 169.904456 79.9665) (xy 169.904448 79.9665) (xy 169.800578 79.977112) (xy 169.632262 80.032885) (xy 169.63226 80.032886) (xy 169.481348 80.12597) (xy 169.481342 80.125975) (xy 169.355975 80.251342) (xy 169.35597 80.251348) (xy 169.262886 80.40226) (xy 169.262885 80.402262) (xy 169.207112 80.570578) (xy 169.1965 80.674447) (xy 169.1965 82.935376) (xy 169.194948 82.955087) (xy 169.16416 83.149483) (xy 169.161499 83.166281) (xy 169.161499 83.408914) (xy 169.1615 83.408939) (xy 169.1615 86.73753) (xy 169.141498 86.805651) (xy 169.087842 86.852144) (xy 169.017568 86.862248) (xy 168.96144 86.839467) (xy 168.920629 86.809816) (xy 168.805906 86.751362) (xy 168.709063 86.702018) (xy 168.70906 86.702017) (xy 168.709058 86.702016) (xy 168.483246 86.628645) (xy 168.483242 86.628644) (xy 168.483241 86.628644) (xy 168.248722 86.5915) (xy 168.011278 86.5915) (xy 167.776759 86.628644) (xy 167.776753 86.628645) (xy 167.550941 86.702016) (xy 167.550935 86.702019) (xy 167.339369 86.809817) (xy 167.147275 86.949382) (xy 167.147272 86.949384) (xy 166.979384 87.117272) (xy 166.979382 87.117275) (xy 166.839817 87.309369) (xy 166.732019 87.520935) (xy 166.732016 87.520941) (xy 166.658645 87.746753) (xy 166.658644 87.746758) (xy 166.658644 87.746759) (xy 166.621591 87.980709) (xy 166.6215 87.981281) (xy 166.6215 88.876791) (xy 166.621499 88.876821) (xy 166.621499 88.881278) (xy 166.621499 89.118722) (xy 166.648805 89.291117) (xy 166.651351 89.307193) (xy 166.658645 89.353247) (xy 166.732016 89.579058) (xy 166.732018 89.579063) (xy 166.836428 89.783979) (xy 166.839817 89.79063) (xy 166.847333 89.800975) (xy 166.97938 89.982722) (xy 166.979382 89.982724) (xy 166.979384 89.982727) (xy 167.151667 90.15501) (xy 167.151689 90.15503) (xy 169.447271 92.450614) (xy 169.447274 92.450616) (xy 169.447278 92.45062) (xy 169.449923 92.452542) (xy 169.450685 92.45353) (xy 169.45104 92.453833) (xy 169.450976 92.453907) (xy 169.493277 92.508762) (xy 169.499354 92.579498) (xy 169.466224 92.64229) (xy 169.404404 92.677203) (xy 169.388674 92.679825) (xy 169.385623 92.680136) (xy 169.385621 92.680137) (xy 169.220079 92.734991) (xy 169.071653 92.826542) (xy 169.071647 92.826547) (xy 168.948347 92.949847) (xy 168.948342 92.949853) (xy 168.856791 93.09828) (xy 168.801937 93.263822) (xy 168.7915 93.365978) (xy 168.7915 93.940412) (xy 168.801937 94.04258) (xy 168.856791 94.20812) (xy 168.948342 94.356546) (xy 168.948347 94.356552) (xy 169.023307 94.431512) (xy 169.057333 94.493824) (xy 169.052268 94.564639) (xy 169.009721 94.621475) (xy 168.987474 94.634796) (xy 168.98472 94.63608) (xy 168.833797 94.72917) (xy 168.833791 94.729175) (xy 168.708425 94.854541) (xy 168.70842 94.854547) (xy 168.615333 95.005465) (xy 168.607273 95.029788) (xy 168.566858 95.088158) (xy 168.501301 95.115413) (xy 168.431416 95.102897) (xy 168.42153 95.097396) (xy 168.377738 95.070385) (xy 168.209425 95.014613) (xy 168.209423 95.014612) (xy 168.209421 95.014612) (xy 168.105552 95.004) (xy 168.105544 95.004) (xy 166.754456 95.004) (xy 166.754448 95.004) (xy 166.650578 95.014612) (xy 166.482262 95.070385) (xy 166.48226 95.070386) (xy 166.331348 95.16347) (xy 166.331342 95.163475) (xy 166.205975 95.288842) (xy 166.205968 95.288851) (xy 166.1628 95.358836) (xy 166.110013 95.406314) (xy 166.039938 95.417716) (xy 166.004312 95.407795) (xy 165.83229 95.331206) (xy 165.645487 95.2915) (xy 165.454513 95.2915) (xy 165.267711 95.331206) (xy 165.093247 95.408882) (xy 165.047065 95.442436) (xy 164.980197 95.466295) (xy 164.973004 95.4665) (xy 164.9645 95.4665) (xy 164.896379 95.446498) (xy 164.849886 95.392842) (xy 164.8385 95.3405) (xy 164.838499 94.349455) (xy 164.827887 94.245574) (xy 164.815476 94.20812) (xy 164.772115 94.077262) (xy 164.67903 93.926348) (xy 164.679029 93.926347) (xy 164.679024 93.926341) (xy 164.553658 93.800975) (xy 164.553652 93.80097) (xy 164.491114 93.762396) (xy 164.402738 93.707885) (xy 164.318582 93.679999) (xy 164.234427 93.652113) (xy 164.23442 93.652112) (xy 164.130553 93.6415) (xy 162.729455 93.6415) (xy 162.625574 93.652112) (xy 162.457261 93.707885) (xy 162.306347 93.80097) (xy 162.306341 93.800975) (xy 162.180975 93.926341) (xy 162.18097 93.926347) (xy 162.087885 94.077262) (xy 162.032113 94.245572) (xy 162.032112 94.245579) (xy 162.0215 94.349446) (xy 162.0215 94.349454) (xy 162.0215 94.349455) (xy 162.0215 95.115413) (xy 162.021501 95.7852) (xy 162.001499 95.853321) (xy 161.947843 95.899814) (xy 161.895501 95.9112) (xy 155.332811 95.9112) (xy 155.26469 95.891198) (xy 155.218197 95.837542) (xy 155.208093 95.767268) (xy 155.213206 95.745567) (xy 155.252568 95.626776) (xy 155.252569 95.626773) (xy 155.262999 95.524684) (xy 155.263 95.524684) (xy 155.263 95.479) (xy 154.406 95.479) (xy 154.337879 95.458998) (xy 154.291386 95.405342) (xy 154.28 95.353) (xy 154.28 95.097) (xy 154.300002 95.028879) (xy 154.353658 94.982386) (xy 154.406 94.971) (xy 155.263 94.971) (xy 155.263 94.925315) (xy 155.252569 94.823226) (xy 155.252568 94.823223) (xy 155.197751 94.657792) (xy 155.106262 94.509466) (xy 155.106257 94.50946) (xy 154.998746 94.401949) (xy 154.96472 94.339637) (xy 154.969785 94.268822) (xy 154.998746 94.223759) (xy 155.106652 94.115852) (xy 155.106658 94.115846) (xy 155.198209 93.96742) (xy 155.253062 93.801881) (xy 155.2635 93.699713) (xy 155.263499 93.100288) (xy 155.253062 92.998119) (xy 155.198209 92.83258) (xy 155.106658 92.684154) (xy 155.106657 92.684153) (xy 155.106652 92.684147) (xy 154.983352 92.560847) (xy 154.983346 92.560842) (xy 154.972944 92.554426) (xy 154.83492 92.469291) (xy 154.669381 92.414438) (xy 154.669379 92.414437) (xy 154.669377 92.414437) (xy 154.567221 92.404) (xy 153.992787 92.404) (xy 153.890619 92.414437) (xy 153.725079 92.469291) (xy 153.576653 92.560842) (xy 153.576647 92.560847) (xy 153.569095 92.5684) (xy 153.506783 92.602426) (xy 153.435968 92.597361) (xy 153.390905 92.5684) (xy 153.383352 92.560847) (xy 153.383346 92.560842) (xy 153.372944 92.554426) (xy 153.23492 92.469291) (xy 153.069381 92.414438) (xy 153.069379 92.414437) (xy 153.069377 92.414437) (xy 152.967221 92.404) (xy 152.392787 92.404) (xy 152.290619 92.414437) (xy 152.125079 92.469291) (xy 151.976653 92.560842) (xy 151.976647 92.560847) (xy 151.853594 92.683901) (xy 151.791282 92.717927) (xy 151.720467 92.712862) (xy 151.663631 92.670315) (xy 151.63882 92.603795) (xy 151.638499 92.594806) (xy 151.638499 91.583472) (xy 151.658501 91.515351) (xy 151.712157 91.468858) (xy 151.713205 91.468385) (xy 151.886752 91.391118) (xy 152.012165 91.3) (xy 159.916496 91.3) (xy 159.936457 91.489927) (xy 159.966526 91.58247) (xy 159.995473 91.671556) (xy 159.995476 91.671561) (xy 160.090958 91.836941) (xy 160.090965 91.836951) (xy 160.218744 91.978864) (xy 160.243833 91.997092) (xy 160.373248 92.091118) (xy 160.547712 92.168794) (xy 160.734513 92.2085) (xy 160.925487 92.2085) (xy 161.112288 92.168794) (xy 161.286752 92.091118) (xy 161.298524 92.082564) (xy 161.365391 92.058706) (xy 161.372587 92.0585) (xy 161.895501 92.0585) (xy 161.963622 92.078502) (xy 162.010115 92.132158) (xy 162.021501 92.1845) (xy 162.021501 92.450544) (xy 162.032112 92.554425) (xy 162.087885 92.722738) (xy 162.18097 92.873652) (xy 162.180975 92.873658) (xy 162.306341 92.999024) (xy 162.306347 92.999029) (xy 162.306348 92.99903) (xy 162.457262 93.092115) (xy 162.625574 93.147887) (xy 162.729455 93.1585) (xy 164.130544 93.158499) (xy 164.234426 93.147887) (xy 164.402738 93.092115) (xy 164.553652 92.99903) (xy 164.67903 92.873652) (xy 164.772115 92.722738) (xy 164.827887 92.554426) (xy 164.8385 92.450545) (xy 164.838499 90.349456) (xy 164.835662 90.321689) (xy 164.827887 90.245574) (xy 164.813127 90.20103) (xy 164.772115 90.077262) (xy 164.67903 89.926348) (xy 164.679029 89.926347) (xy 164.679024 89.926341) (xy 164.553658 89.800975) (xy 164.553652 89.80097) (xy 164.536974 89.790683) (xy 164.402738 89.707885) (xy 164.28324 89.668288) (xy 164.234427 89.652113) (xy 164.23442 89.652112) (xy 164.130553 89.6415) (xy 162.729455 89.6415) (xy 162.625574 89.652112) (xy 162.457261 89.707885) (xy 162.306347 89.80097) (xy 162.306341 89.800975) (xy 162.180975 89.926341) (xy 162.18097 89.926347) (xy 162.087885 90.077262) (xy 162.032113 90.245572) (xy 162.032112 90.245579) (xy 162.0215 90.349446) (xy 162.0215 90.4155) (xy 162.001498 90.483621) (xy 161.947842 90.530114) (xy 161.8955 90.5415) (xy 161.372587 90.5415) (xy 161.304466 90.521498) (xy 161.298524 90.517435) (xy 161.286754 90.508883) (xy 161.230014 90.483621) (xy 161.112288 90.431206) (xy 160.925487 90.3915) (xy 160.734513 90.3915) (xy 160.547711 90.431206) (xy 160.373247 90.508882) (xy 160.218744 90.621135) (xy 160.090965 90.763048) (xy 160.090958 90.763058) (xy 159.995476 90.928438) (xy 159.995473 90.928444) (xy 159.981466 90.971554) (xy 159.936457 91.110072) (xy 159.916496 91.3) (xy 152.012165 91.3) (xy 152.041253 91.278866) (xy 152.16904 91.136944) (xy 152.264527 90.971556) (xy 152.323542 90.789928) (xy 152.343504 90.6) (xy 152.323542 90.410072) (xy 152.264527 90.228444) (xy 152.16904 90.063056) (xy 152.121333 90.010072) (xy 152.038828 89.91844) (xy 152.008111 89.854432) (xy 152.016876 89.783979) (xy 152.043367 89.745037) (xy 152.418002 89.370404) (xy 152.480314 89.336379) (xy 152.507097 89.3335) (xy 155.162393 89.3335) (xy 155.162394 89.3335) (xy 155.284785 89.309155) (xy 155.400075 89.2614) (xy 155.503833 89.192071) (xy 155.753327 88.942575) (xy 155.81564 88.908551) (xy 155.886455 88.913615) (xy 155.943291 88.956162) (xy 155.951541 88.968668) (xy 155.99096 89.036944) (xy 155.990962 89.036947) (xy 155.990965 89.036951) (xy 156.118744 89.178864) (xy 156.166105 89.213274) (xy 156.273248 89.291118) (xy 156.447712 89.368794) (xy 156.634513 89.4085) (xy 156.825487 89.4085) (xy 157.012288 89.368794) (xy 157.186752 89.291118) (xy 157.341253 89.178866) (xy 157.341255 89.178864) (xy 157.469034 89.036951) (xy 157.469035 89.036949) (xy 157.46904 89.036944) (xy 157.564527 88.871556) (xy 157.623542 88.689928) (xy 157.640907 88.524704) (xy 157.66792 88.459049) (xy 157.677104 88.448799) (xy 157.980502 88.145401) (xy 158.042812 88.111378) (xy 158.069595 88.108499) (xy 158.317212 88.108499) (xy 158.419381 88.098062) (xy 158.58492 88.043209) (xy 158.733346 87.951658) (xy 158.772226 87.912778) (xy 158.816259 87.868746) (xy 158.878571 87.83472) (xy 158.949386 87.839785) (xy 158.994449 87.868746) (xy 159.07696 87.951257) (xy 159.076966 87.951262) (xy 159.225292 88.042751) (xy 159.390723 88.097568) (xy 159.390726 88.097569) (xy 159.492815 88.107999) (xy 159.492815 88.108) (xy 159.526 88.108) (xy 159.526 87.1885) (xy 159.546002 87.120379) (xy 159.599658 87.073886) (xy 159.652 87.0625) (xy 159.78 87.0625) (xy 159.78 86.9345) (xy 159.800002 86.866379) (xy 159.853658 86.819886) (xy 159.906 86.8085) (xy 160.763 86.8085) (xy 160.763 86.712815) (xy 160.752569 86.610726) (xy 160.752568 86.610723) (xy 160.695443 86.438327) (xy 160.697476 86.437653) (xy 160.688396 86.377922) (xy 160.717368 86.313105) (xy 160.776783 86.274242) (xy 160.847777 86.27367) (xy 160.902349 86.305753) (xy 161.897095 87.300499) (xy 161.931121 87.362811) (xy 161.934 87.389594) (xy 161.934 87.948649) (xy 161.940509 88.009195) (xy 161.941059 88.011519) (xy 161.940959 88.013377) (xy 161.941353 88.017038) (xy 161.940759 88.017101) (xy 161.937261 88.082414) (xy 161.895738 88.140002) (xy 161.829672 88.165998) (xy 161.818437 88.1665) (xy 161.7082 88.1665) (xy 161.640079 88.146498) (xy 161.614563 88.12481) (xy 161.611252 88.121133) (xy 161.456752 88.008882) (xy 161.282288 87.931206) (xy 161.095487 87.8915) (xy 160.904513 87.8915) (xy 160.804224 87.912817) (xy 160.733433 87.907415) (xy 160.676801 87.864598) (xy 160.652307 87.79796) (xy 160.667728 87.728659) (xy 160.670787 87.723421) (xy 160.697751 87.679706) (xy 160.752568 87.514276) (xy 160.752569 87.514273) (xy 160.762999 87.412184) (xy 160.763 87.412184) (xy 160.763 87.3165) (xy 160.034 87.3165) (xy 160.034 88.108) (xy 160.067182 88.108) (xy 160.12311 88.102285) (xy 160.192912 88.115258) (xy 160.244618 88.16391) (xy 160.261813 88.232793) (xy 160.245038 88.290632) (xy 160.165476 88.428438) (xy 160.165473 88.428444) (xy 160.150999 88.472986) (xy 160.106457 88.610072) (xy 160.086496 88.8) (xy 160.106457 88.989927) (xy 160.126515 89.051657) (xy 160.165473 89.171556) (xy 160.175055 89.188152) (xy 160.260958 89.336941) (xy 160.260965 89.336951) (xy 160.388744 89.478864) (xy 160.415055 89.49798) (xy 160.543248 89.591118) (xy 160.717712 89.668794) (xy 160.904513 89.7085) (xy 161.095487 89.7085) (xy 161.282288 89.668794) (xy 161.456752 89.591118) (xy 161.611253 89.478866) (xy 161.614563 89.47519) (xy 161.675009 89.43795) (xy 161.7082 89.4335) (xy 162.212393 89.4335) (xy 162.212394 89.4335) (xy 162.334785 89.409155) (xy 162.450075 89.3614) (xy 162.553833 89.292071) (xy 163.334571 88.511333) (xy 163.403593 88.408035) (xy 163.45807 88.362507) (xy 163.464319 88.359984) (xy 163.488704 88.350889) (xy 163.605761 88.263261) (xy 163.691632 88.14855) (xy 163.748467 88.106004) (xy 163.819283 88.100939) (xy 163.881595 88.134964) (xy 163.893368 88.148551) (xy 163.979238 88.263261) (xy 164.096292 88.350887) (xy 164.096294 88.350888) (xy 164.096296 88.350889) (xy 164.12067 88.35998) (xy 164.233295 88.401988) (xy 164.233303 88.40199) (xy 164.29385 88.408499) (xy 164.293855 88.408499) (xy 164.293862 88.4085) (xy 164.293868 88.4085) (xy 165.191132 88.4085) (xy 165.191138 88.4085) (xy 165.191145 88.408499) (xy 165.191149 88.408499) (xy 165.251696 88.40199) (xy 165.251699 88.401989) (xy 165.251701 88.401989) (xy 165.388704 88.350889) (xy 165.505761 88.263261) (xy 165.578196 88.1665) (xy 165.593387 88.146207) (xy 165.593387 88.146206) (xy 165.593389 88.146204) (xy 165.641566 88.017038) (xy 165.644488 88.009204) (xy 165.64449 88.009196) (xy 165.650999 87.948649) (xy 165.651 87.948632) (xy 165.651 86.751367) (xy 165.650999 86.75135) (xy 165.64449 86.690803) (xy 165.644488 86.690795) (xy 165.607452 86.5915) (xy 165.593389 86.553796) (xy 165.593388 86.553794) (xy 165.593387 86.553792) (xy 165.505761 86.436738) (xy 165.388707 86.349112) (xy 165.388702 86.34911) (xy 165.251704 86.298011) (xy 165.251696 86.298009) (xy 165.191149 86.2915) (xy 165.191138 86.2915) (xy 164.629439 86.2915) (xy 164.561318 86.271498) (xy 164.514825 86.217842) (xy 164.504721 86.147568) (xy 164.534215 86.082988) (xy 164.55393 86.064632) (xy 164.555761 86.063261) (xy 164.643387 85.946207) (xy 164.643387 85.946206) (xy 164.643389 85.946204) (xy 164.694489 85.809201) (xy 164.696994 85.785907) (xy 164.700999 85.748649) (xy 164.701 85.748632) (xy 164.701 85.086559) (xy 164.713668 85.039443) (xy 164.710671 85.038202) (xy 164.713828 85.030577) (xy 164.713832 85.030572) (xy 164.722024 85) (xy 164.726357 84.983832) (xy 164.74989 84.896) (xy 164.7553 84.875811) (xy 164.7553 82.152879) (xy 164.775302 82.084758) (xy 164.815154 82.045638) (xy 164.823153 82.040704) (xy 164.870452 82.01153) (xy 164.99583 81.886152) (xy 165.088915 81.735238) (xy 165.144687 81.566926) (xy 165.1553 81.463045) (xy 165.1553 81.463016) (xy 165.6388 81.463016) (xy 165.649405 81.566818) (xy 165.649406 81.566821) (xy 165.705142 81.735025) (xy 165.798165 81.885839) (xy 165.79817 81.885845) (xy 165.923454 82.011129) (xy 165.92346 82.011134) (xy 166.074274 82.104157) (xy 166.242478 82.159893) (xy 166.242481 82.159894) (xy 166.346283 82.170499) (xy 166.346283 82.1705) (xy 166.3928 82.1705) (xy 166.9008 82.1705) (xy 166.947317 82.1705) (xy 166.947316 82.170499) (xy 167.051118 82.159894) (xy 167.051121 82.159893) (xy 167.219325 82.104157) (xy 167.370139 82.011134) (xy 167.370145 82.011129) (xy 167.495429 81.885845) (xy 167.495434 81.885839) (xy 167.588457 81.735025) (xy 167.644193 81.566821) (xy 167.644194 81.566818) (xy 167.654799 81.463016) (xy 167.6548 81.463016) (xy 167.6548 81.4165) (xy 166.9008 81.4165) (xy 166.9008 82.1705) (xy 166.3928 82.1705) (xy 166.3928 81.4165) (xy 165.6388 81.4165) (xy 165.6388 81.463016) (xy 165.1553 81.463016) (xy 165.155299 80.861983) (xy 165.6388 80.861983) (xy 165.6388 80.9085) (xy 166.3928 80.9085) (xy 166.9008 80.9085) (xy 167.6548 80.9085) (xy 167.6548 80.861983) (xy 167.644194 80.758181) (xy 167.644193 80.758178) (xy 167.588457 80.589974) (xy 167.495434 80.43916) (xy 167.495429 80.439154) (xy 167.370145 80.31387) (xy 167.370139 80.313865) (xy 167.219325 80.220842) (xy 167.051121 80.165106) (xy 167.051118 80.165105) (xy 166.947316 80.1545) (xy 166.9008 80.1545) (xy 166.9008 80.9085) (xy 166.3928 80.9085) (xy 166.3928 80.1545) (xy 166.346283 80.1545) (xy 166.242481 80.165105) (xy 166.242478 80.165106) (xy 166.074274 80.220842) (xy 165.92346 80.313865) (xy 165.923454 80.31387) (xy 165.79817 80.439154) (xy 165.798165 80.43916) (xy 165.705142 80.589974) (xy 165.649406 80.758178) (xy 165.649405 80.758181) (xy 165.6388 80.861983) (xy 165.155299 80.861983) (xy 165.155299 80.861956) (xy 165.154067 80.8499) (xy 165.144687 80.758074) (xy 165.122557 80.69129) (xy 165.088915 80.589762) (xy 164.99583 80.438848) (xy 164.995829 80.438847) (xy 164.995824 80.438841) (xy 164.870458 80.313475) (xy 164.870452 80.31347) (xy 164.848072 80.299666) (xy 164.719538 80.220385) (xy 164.635382 80.192499) (xy 164.551227 80.164613) (xy 164.55122 80.164612) (xy 164.447353 80.154) (xy 164.447345 80.154) (xy 164.051039 80.154) (xy 163.982918 80.133998) (xy 163.961944 80.117095) (xy 163.332034 79.487184) (xy 172.372 79.487184) (xy 172.38243 79.589273) (xy 172.382431 79.589276) (xy 172.437248 79.754707) (xy 172.528737 79.903033) (xy 172.528742 79.903039) (xy 172.65196 80.026257) (xy 172.651966 80.026262) (xy 172.800292 80.117751) (xy 172.965723 80.172568) (xy 172.965726 80.172569) (xy 173.067815 80.182999) (xy 173.067815 80.183) (xy 173.151 80.183) (xy 173.151 79.454) (xy 172.372 79.454) (xy 172.372 79.487184) (xy 163.332034 79.487184) (xy 162.757665 78.912815) (xy 172.372 78.912815) (xy 172.372 78.946) (xy 173.151 78.946) (xy 173.151 78.217) (xy 173.659 78.217) (xy 173.659 80.183) (xy 173.742185 80.183) (xy 173.742184 80.182999) (xy 173.844273 80.172569) (xy 173.844276 80.172568) (xy 174.009707 80.117751) (xy 174.158033 80.026262) (xy 174.190549 79.993746) (xy 174.252861 79.95972) (xy 174.323677 79.964784) (xy 174.36874 79.993744) (xy 174.401654 80.026658) (xy 174.55008 80.118209) (xy 174.715619 80.173062) (xy 174.817787 80.1835) (xy 175.492212 80.183499) (xy 175.594381 80.173062) (xy 175.75992 80.118209) (xy 175.908346 80.026658) (xy 175.921193 80.013811) (xy 175.9396 79.995405) (xy 176.001912 79.961379) (xy 176.028695 79.9585) (xy 176.0705 79.9585) (xy 176.138621 79.978502) (xy 176.185114 80.032158) (xy 176.1965 80.0845) (xy 176.1965 80.431376) (xy 176.190105 80.471007) (xy 176.157112 80.570576) (xy 176.1465 80.674447) (xy 176.1465 85.725552) (xy 176.146499 85.725552) (xy 176.157112 85.829421) (xy 176.157112 85.829423) (xy 176.157113 85.829425) (xy 176.212885 85.997738) (xy 176.30354 86.144711) (xy 176.30597 86.148651) (xy 176.305975 86.148657) (xy 176.431342 86.274024) (xy 176.431348 86.274029) (xy 176.431349 86.27403) (xy 176.582262 86.367115) (xy 176.750575 86.422887) (xy 176.778906 86.425781) (xy 176.854448 86.4335) (xy 176.854456 86.4335) (xy 178.555552 86.4335) (xy 178.624798 86.426424) (xy 178.659425 86.422887) (xy 178.827738 86.367115) (xy 178.978651 86.27403) (xy 179.10403 86.148651) (xy 179.197115 85.997738) (xy 179.252887 85.829425) (xy 179.257333 85.785904) (xy 179.2635 85.725552) (xy 179.2635 80.674447) (xy 179.252887 80.570576) (xy 179.243303 80.541653) (xy 179.236353 80.520678) (xy 179.219895 80.471007) (xy 179.2135 80.431376) (xy 179.2135 80.2) (xy 180.616496 80.2) (xy 180.636457 80.389927) (xy 180.656532 80.451709) (xy 180.695473 80.571556) (xy 180.695476 80.571561) (xy 180.790958 80.736941) (xy 180.790965 80.736951) (xy 180.918744 80.878864) (xy 180.96161 80.910008) (xy 181.073248 80.991118) (xy 181.247712 81.068794) (xy 181.434513 81.1085) (xy 181.490406 81.1085) (xy 181.558527 81.128502) (xy 181.579501 81.145405) (xy 181.709595 81.275499) (xy 181.743621 81.337811) (xy 181.7465 81.364593) (xy 181.7465 81.487212) (xy 181.756937 81.58938) (xy 181.811791 81.75492) (xy 181.903342 81.903346) (xy 181.903347 81.903352) (xy 182.0109 82.010905) (xy 182.044926 82.073217) (xy 182.039861 82.144032) (xy 182.0109 82.189095) (xy 181.903347 82.296647) (xy 181.903342 82.296653) (xy 181.811791 82.44508) (xy 181.756937 82.610622) (xy 181.7465 82.712778) (xy 181.7465 83.312212) (xy 181.756937 83.41438) (xy 181.811791 83.57992) (xy 181.903342 83.728346) (xy 181.903347 83.728352) (xy 182.026647 83.851652) (xy 182.026652 83.851656) (xy 182.026654 83.851658) (xy 182.17508 83.943209) (xy 182.207238 83.953865) (xy 182.265609 83.994277) (xy 182.292866 84.059833) (xy 182.280354 84.129718) (xy 182.232045 84.181745) (xy 182.218856 84.188575) (xy 182.173251 84.20888) (xy 182.173248 84.208882) (xy 182.018744 84.321135) (xy 181.890965 84.463048) (xy 181.890958 84.463058) (xy 181.810966 84.601609) (xy 181.795473 84.628444) (xy 181.787169 84.654) (xy 181.736457 84.810072) (xy 181.716496 85) (xy 181.736457 85.189927) (xy 181.761535 85.267106) (xy 181.795473 85.371556) (xy 181.795476 85.371561) (xy 181.859854 85.483068) (xy 181.876592 85.552064) (xy 181.853371 85.619155) (xy 181.839833 85.635161) (xy 181.803344 85.671651) (xy 181.803342 85.671653) (xy 181.711791 85.82008) (xy 181.656937 85.985622) (xy 181.6465 86.087778) (xy 181.6465 86.687212) (xy 181.656937 86.78938) (xy 181.711791 86.95492) (xy 181.803342 87.103346) (xy 181.803347 87.103352) (xy 181.9109 87.210905) (xy 181.944926 87.273217) (xy 181.939861 87.344032) (xy 181.9109 87.389095) (xy 181.803347 87.496647) (xy 181.803342 87.496653) (xy 181.711791 87.64508) (xy 181.656937 87.810622) (xy 181.6465 87.912778) (xy 181.6465 88.512212) (xy 181.656937 88.61438) (xy 181.711791 88.77992) (xy 181.803342 88.928346) (xy 181.803347 88.928352) (xy 181.926647 89.051652) (xy 181.926653 89.051657) (xy 181.926654 89.051658) (xy 182.07508 89.143209) (xy 182.164571 89.172863) (xy 182.222941 89.213274) (xy 182.250198 89.27883) (xy 182.237686 89.348715) (xy 182.189377 89.400742) (xy 182.176196 89.407569) (xy 182.17325 89.40888) (xy 182.173248 89.408882) (xy 182.018744 89.521135) (xy 181.890965 89.663048) (xy 181.890958 89.663058) (xy 181.811335 89.80097) (xy 181.795473 89.828444) (xy 181.787029 89.854432) (xy 181.736457 90.010072) (xy 181.716496 90.2) (xy 181.736457 90.389927) (xy 181.74987 90.431206) (xy 181.795473 90.571556) (xy 181.795474 90.571557) (xy 181.795476 90.571561) (xy 181.894262 90.742663) (xy 181.892643 90.743597) (xy 181.913462 90.801944) (xy 181.897381 90.871096) (xy 181.876763 90.898232) (xy 181.803342 90.971653) (xy 181.711791 91.12008) (xy 181.656937 91.285622) (xy 181.6465 91.387778) (xy 181.6465 91.987212) (xy 181.656937 92.08938) (xy 181.711791 92.25492) (xy 181.803342 92.403346) (xy 181.803347 92.403352) (xy 181.9109 92.510905) (xy 181.944926 92.573217) (xy 181.939861 92.644032) (xy 181.9109 92.689095) (xy 181.803347 92.796647) (xy 181.803342 92.796653) (xy 181.711791 92.94508) (xy 181.656937 93.110622) (xy 181.6465 93.212778) (xy 181.6465 93.812212) (xy 181.656937 93.91438) (xy 181.711791 94.07992) (xy 181.803342 94.228346) (xy 181.803347 94.228352) (xy 181.926647 94.351652) (xy 181.926653 94.351657) (xy 181.926654 94.351658) (xy 182.07508 94.443209) (xy 182.240619 94.498062) (xy 182.342787 94.5085) (xy 182.917212 94.508499) (xy 183.019381 94.498062) (xy 183.18492 94.443209) (xy 183.333346 94.351658) (xy 183.353958 94.331045) (xy 183.416267 94.297021) (xy 183.487083 94.302084) (xy 183.54392 94.34463) (xy 183.550293 94.353993) (xy 183.600968 94.43615) (xy 183.600975 94.436158) (xy 183.726341 94.561524) (xy 183.726347 94.561529) (xy 183.726348 94.56153) (xy 183.877262 94.654615) (xy 184.045574 94.710387) (xy 184.149455 94.721) (xy 185.150544 94.720999) (xy 185.254426 94.710387) (xy 185.422738 94.654615) (xy 185.573652 94.56153) (xy 185.69903 94.436152) (xy 185.792115 94.285238) (xy 185.847887 94.116926) (xy 185.8585 94.013045) (xy 185.858499 93.261956) (xy 185.854482 93.222638) (xy 185.847887 93.158074) (xy 185.828739 93.100288) (xy 185.792115 92.989762) (xy 185.69903 92.838848) (xy 185.699029 92.838847) (xy 185.699024 92.838841) (xy 185.573657 92.713474) (xy 185.570547 92.711015) (xy 185.568967 92.708784) (xy 185.568463 92.70828) (xy 185.568549 92.708193) (xy 185.529518 92.653075) (xy 185.526326 92.58215) (xy 185.561986 92.520759) (xy 185.570558 92.513332) (xy 185.57335 92.511124) (xy 185.698629 92.385845) (xy 185.698634 92.385839) (xy 185.791657 92.235025) (xy 185.847393 92.066821) (xy 185.847394 92.066818) (xy 185.857999 91.963016) (xy 185.858 91.963016) (xy 185.858 91.8415) (xy 184.776 91.8415) (xy 184.707879 91.821498) (xy 184.661386 91.767842) (xy 184.65 91.7155) (xy 184.65 91.5875) (xy 184.522 91.5875) (xy 184.453879 91.567498) (xy 184.407386 91.513842) (xy 184.396 91.4615) (xy 184.396 91.3335) (xy 184.904 91.3335) (xy 185.858 91.3335) (xy 185.858 91.211983) (xy 185.847394 91.108181) (xy 185.847393 91.108178) (xy 185.791657 90.939974) (xy 185.698634 90.78916) (xy 185.698629 90.789154) (xy 185.573345 90.66387) (xy 185.573339 90.663865) (xy 185.422525 90.570842) (xy 185.254321 90.515106) (xy 185.254318 90.515105) (xy 185.150516 90.5045) (xy 184.904 90.5045) (xy 184.904 91.3335) (xy 184.396 91.3335) (xy 184.396 90.5045) (xy 184.149483 90.5045) (xy 184.045681 90.515105) (xy 184.045678 90.515106) (xy 183.877474 90.570842) (xy 183.72666 90.663865) (xy 183.657095 90.73343) (xy 183.594782 90.767455) (xy 183.523967 90.762389) (xy 183.467131 90.719842) (xy 183.442321 90.653322) (xy 183.457413 90.583948) (xy 183.458848 90.58139) (xy 183.464527 90.571556) (xy 183.523542 90.389928) (xy 183.543504 90.2) (xy 183.523542 90.010072) (xy 183.464527 89.828444) (xy 183.36904 89.663056) (xy 183.369038 89.663054) (xy 183.369034 89.663048) (xy 183.241255 89.521135) (xy 183.160395 89.462387) (xy 183.086752 89.408882) (xy 183.086749 89.40888) (xy 183.086747 89.408879) (xy 183.083815 89.407574) (xy 183.082392 89.406365) (xy 183.081031 89.405579) (xy 183.081174 89.405329) (xy 183.029718 89.361595) (xy 183.009068 89.293668) (xy 183.028419 89.22536) (xy 183.081629 89.178358) (xy 183.095423 89.172864) (xy 183.18492 89.143209) (xy 183.333346 89.051658) (xy 183.334115 89.050888) (xy 183.334772 89.050529) (xy 183.339104 89.047105) (xy 183.339688 89.047844) (xy 183.396422 89.01686) (xy 183.467239 89.021919) (xy 183.524078 89.064461) (xy 183.530444 89.073813) (xy 183.591539 89.172862) (xy 183.60097 89.188152) (xy 183.600975 89.188158) (xy 183.726341 89.313524) (xy 183.726347 89.313529) (xy 183.726348 89.31353) (xy 183.877262 89.406615) (xy 184.045574 89.462387) (xy 184.149455 89.473) (xy 185.150544 89.472999) (xy 185.254426 89.462387) (xy 185.422738 89.406615) (xy 185.573652 89.31353) (xy 185.69903 89.188152) (xy 185.792115 89.037238) (xy 185.847887 88.868926) (xy 185.8585 88.765045) (xy 185.858499 88.013956) (xy 185.851826 87.948638) (xy 185.847887 87.910074) (xy 185.837587 87.878989) (xy 185.792115 87.741762) (xy 185.69903 87.590848) (xy 185.699029 87.590847) (xy 185.699024 87.590841) (xy 185.573657 87.465474) (xy 185.570547 87.463015) (xy 185.568967 87.460784) (xy 185.568463 87.46028) (xy 185.568549 87.460193) (xy 185.529518 87.405075) (xy 185.526326 87.33415) (xy 185.561986 87.272759) (xy 185.570558 87.265332) (xy 185.57335 87.263124) (xy 185.698629 87.137845) (xy 185.698634 87.137839) (xy 185.791657 86.987025) (xy 185.847393 86.818821) (xy 185.847394 86.818818) (xy 185.857999 86.715016) (xy 185.858 86.715016) (xy 185.858 86.5935) (xy 184.776 86.5935) (xy 184.707879 86.573498) (xy 184.661386 86.519842) (xy 184.65 86.4675) (xy 184.65 86.3395) (xy 184.522 86.3395) (xy 184.453879 86.319498) (xy 184.407386 86.265842) (xy 184.396 86.2135) (xy 184.396 86.0855) (xy 184.904 86.0855) (xy 185.858 86.0855) (xy 185.858 85.963983) (xy 185.847394 85.860181) (xy 185.847393 85.860178) (xy 185.791657 85.691974) (xy 185.698634 85.54116) (xy 185.698629 85.541154) (xy 185.573345 85.41587) (xy 185.573339 85.415865) (xy 185.422525 85.322842) (xy 185.254321 85.267106) (xy 185.254318 85.267105) (xy 185.150516 85.2565) (xy 184.904 85.2565) (xy 184.904 86.0855) (xy 184.396 86.0855) (xy 184.396 85.2565) (xy 184.149483 85.2565) (xy 184.045681 85.267105) (xy 184.045678 85.267106) (xy 183.877474 85.322842) (xy 183.72666 85.415865) (xy 183.726654 85.41587) (xy 183.688142 85.454382) (xy 183.62583 85.488407) (xy 183.555014 85.483341) (xy 183.498179 85.440794) (xy 183.473369 85.374273) (xy 183.479214 85.326352) (xy 183.523542 85.189928) (xy 183.543504 85) (xy 183.523542 84.810072) (xy 183.464527 84.628444) (xy 183.36904 84.463056) (xy 183.369038 84.463054) (xy 183.369034 84.463048) (xy 183.241255 84.321135) (xy 183.096322 84.215835) (xy 183.052968 84.159613) (xy 183.046893 84.088876) (xy 183.080024 84.026085) (xy 183.130749 83.994294) (xy 183.28492 83.943209) (xy 183.433346 83.851658) (xy 183.433351 83.851652) (xy 183.439104 83.847105) (xy 183.440839 83.849299) (xy 183.491789 83.821432) (xy 183.562609 83.826446) (xy 183.607755 83.855438) (xy 183.726341 83.974024) (xy 183.726347 83.974029) (xy 183.726348 83.97403) (xy 183.877262 84.067115) (xy 184.045574 84.122887) (xy 184.149455 84.1335) (xy 185.150544 84.133499) (xy 185.254426 84.122887) (xy 185.422738 84.067115) (xy 185.573652 83.97403) (xy 185.69903 83.848652) (xy 185.792115 83.697738) (xy 185.847887 83.529426) (xy 185.8585 83.425545) (xy 185.858499 82.674456) (xy 185.847887 82.570574) (xy 185.792115 82.402262) (xy 185.69903 82.251348) (xy 185.699029 82.251347) (xy 185.699024 82.251341) (xy 185.573657 82.125974) (xy 185.570547 82.123515) (xy 185.568967 82.121284) (xy 185.568463 82.12078) (xy 185.568549 82.120693) (xy 185.529518 82.065575) (xy 185.526326 81.99465) (xy 185.561986 81.933259) (xy 185.570558 81.925832) (xy 185.57335 81.923624) (xy 185.698629 81.798345) (xy 185.698634 81.798339) (xy 185.791657 81.647525) (xy 185.847393 81.479321) (xy 185.847394 81.479318) (xy 185.857999 81.375516) (xy 185.858 81.375516) (xy 185.858 81.254) (xy 184.776 81.254) (xy 184.707879 81.233998) (xy 184.661386 81.180342) (xy 184.65 81.128) (xy 184.65 81) (xy 184.522 81) (xy 184.453879 80.979998) (xy 184.407386 80.926342) (xy 184.396 80.874) (xy 184.396 80.746) (xy 184.904 80.746) (xy 185.858 80.746) (xy 185.858 80.624483) (xy 185.847394 80.520681) (xy 185.847393 80.520678) (xy 185.791657 80.352474) (xy 185.698634 80.20166) (xy 185.698629 80.201654) (xy 185.573345 80.07637) (xy 185.573339 80.076365) (xy 185.422525 79.983342) (xy 185.254321 79.927606) (xy 185.254318 79.927605) (xy 185.150516 79.917) (xy 184.904 79.917) (xy 184.904 80.746) (xy 184.396 80.746) (xy 184.396 79.917) (xy 184.149483 79.917) (xy 184.045681 79.927605) (xy 184.045678 79.927606) (xy 183.877474 79.983342) (xy 183.72666 80.076365) (xy 183.726654 80.07637) (xy 183.60137 80.201654) (xy 183.601365 80.20166) (xy 183.555667 80.275749) (xy 183.502881 80.323227) (xy 183.432806 80.33463) (xy 183.382279 80.316843) (xy 183.315655 80.275749) (xy 183.28492 80.256791) (xy 183.119381 80.201938) (xy 183.119379 80.201937) (xy 183.119377 80.201937) (xy 183.017221 80.1915) (xy 182.556061 80.1915) (xy 182.48794 80.171498) (xy 182.441447 80.117842) (xy 182.430751 80.078672) (xy 182.423542 80.010072) (xy 182.364527 79.828444) (xy 182.26904 79.663056) (xy 182.269038 79.663054) (xy 182.269034 79.663048) (xy 182.141255 79.521135) (xy 181.986752 79.408882) (xy 181.812288 79.331206) (xy 181.625487 79.2915) (xy 181.434513 79.2915) (xy 181.247711 79.331206) (xy 181.073247 79.408882) (xy 180.918744 79.521135) (xy 180.790965 79.663048) (xy 180.790958 79.663058) (xy 180.699193 79.822) (xy 180.695473 79.828444) (xy 180.685707 79.8585) (xy 180.636457 80.010072) (xy 180.616496 80.2) (xy 179.2135 80.2) (xy 179.2135 75.8) (xy 180.616496 75.8) (xy 180.636457 75.989927) (xy 180.663004 76.071627) (xy 180.695473 76.171556) (xy 180.702941 76.184491) (xy 180.790958 76.336941) (xy 180.790965 76.336951) (xy 180.918744 76.478864) (xy 180.918747 76.478866) (xy 181.073248 76.591118) (xy 181.247712 76.668794) (xy 181.434513 76.7085) (xy 181.625487 76.7085) (xy 181.812288 76.668794) (xy 181.812288 76.668793) (xy 181.812292 76.668793) (xy 181.850115 76.651953) (xy 181.920482 76.642518) (xy 181.984779 76.672624) (xy 181.990457 76.677961) (xy 182.010899 76.698403) (xy 182.044925 76.760713) (xy 182.039862 76.831529) (xy 182.010901 76.876594) (xy 181.903342 76.984153) (xy 181.811791 77.13258) (xy 181.756937 77.298122) (xy 181.7465 77.400278) (xy 181.7465 77.999712) (xy 181.756937 78.10188) (xy 181.811791 78.26742) (xy 181.903342 78.415846) (xy 181.903347 78.415852) (xy 182.026647 78.539152) (xy 182.026653 78.539157) (xy 182.026654 78.539158) (xy 182.17508 78.630709) (xy 182.340619 78.685562) (xy 182.442787 78.696) (xy 183.017212 78.695999) (xy 183.119381 78.685562) (xy 183.28492 78.630709) (xy 183.373738 78.575924) (xy 183.391593 78.564912) (xy 183.460072 78.546174) (xy 183.527811 78.567433) (xy 183.56498 78.606004) (xy 183.600968 78.66435) (xy 183.600975 78.664358) (xy 183.726341 78.789724) (xy 183.726347 78.789729) (xy 183.726348 78.78973) (xy 183.877262 78.882815) (xy 184.045574 78.938587) (xy 184.149455 78.9492) (xy 185.150544 78.949199) (xy 185.254426 78.938587) (xy 185.422738 78.882815) (xy 185.573652 78.78973) (xy 185.69903 78.664352) (xy 185.792115 78.513438) (xy 185.847887 78.345126) (xy 185.8585 78.241245) (xy 185.858499 77.490156) (xy 185.856296 77.468595) (xy 185.847887 77.386274) (xy 185.826171 77.320738) (xy 185.792115 77.217962) (xy 185.69903 77.067048) (xy 185.699029 77.067047) (xy 185.699024 77.067041) (xy 185.573657 76.941674) (xy 185.570547 76.939215) (xy 185.568967 76.936984) (xy 185.568463 76.93648) (xy 185.568549 76.936393) (xy 185.529518 76.881275) (xy 185.526326 76.81035) (xy 185.561986 76.748959) (xy 185.570558 76.741532) (xy 185.57335 76.739324) (xy 185.698629 76.614045) (xy 185.698634 76.614039) (xy 185.791657 76.463225) (xy 185.847393 76.295021) (xy 185.847394 76.295018) (xy 185.857999 76.191216) (xy 185.858 76.191216) (xy 185.858 76.0697) (xy 184.776 76.0697) (xy 184.707879 76.049698) (xy 184.661386 75.996042) (xy 184.65 75.9437) (xy 184.65 75.8157) (xy 184.522 75.8157) (xy 184.453879 75.795698) (xy 184.407386 75.742042) (xy 184.396 75.6897) (xy 184.396 75.5617) (xy 184.904 75.5617) (xy 185.858 75.5617) (xy 185.858 75.440183) (xy 185.847394 75.336381) (xy 185.847393 75.336378) (xy 185.791657 75.168174) (xy 185.698634 75.01736) (xy 185.698629 75.017354) (xy 185.573345 74.89207) (xy 185.573339 74.892065) (xy 185.422525 74.799042) (xy 185.254321 74.743306) (xy 185.254318 74.743305) (xy 185.150516 74.7327) (xy 184.904 74.7327) (xy 184.904 75.5617) (xy 184.396 75.5617) (xy 184.396 74.7327) (xy 184.149483 74.7327) (xy 184.045681 74.743305) (xy 184.045678 74.743306) (xy 183.877474 74.799042) (xy 183.72666 74.892065) (xy 183.726654 74.89207) (xy 183.596175 75.02255) (xy 183.593953 75.020328) (xy 183.546863 75.053036) (xy 183.475912 75.055583) (xy 183.440572 75.038105) (xy 183.439592 75.039695) (xy 183.433347 75.035843) (xy 183.433346 75.035842) (xy 183.28492 74.944291) (xy 183.119381 74.889438) (xy 183.119379 74.889437) (xy 183.119377 74.889437) (xy 183.017221 74.879) (xy 182.442787 74.879) (xy 182.340619 74.889437) (xy 182.175077 74.944292) (xy 182.091931 74.995577) (xy 182.023452 75.014314) (xy 181.974536 75.003443) (xy 181.812288 74.931206) (xy 181.625487 74.8915) (xy 181.434513 74.8915) (xy 181.247711 74.931206) (xy 181.073247 75.008882) (xy 180.918744 75.121135) (xy 180.790965 75.263048) (xy 180.790958 75.263058) (xy 180.695476 75.428438) (xy 180.695473 75.428445) (xy 180.636457 75.610072) (xy 180.616496 75.8) (xy 179.2135 75.8) (xy 179.2135 74.486484) (xy 179.215051 74.466774) (xy 179.2385 74.318719) (xy 179.2385 74.081281) (xy 179.235646 74.063261) (xy 179.201356 73.846759) (xy 179.127982 73.620937) (xy 179.059657 73.486842) (xy 179.020185 73.409373) (xy 178.995089 73.374832) (xy 178.880617 73.217275) (xy 177.775405 72.112063) (xy 177.741379 72.049751) (xy 177.7385 72.022968) (xy 177.7385 71.051367) (xy 177.738499 71.05135) (xy 177.73199 70.990803) (xy 177.731988 70.990795) (xy 177.680889 70.853797) (xy 177.680887 70.853792) (xy 177.593261 70.736738) (xy 177.476207 70.649112) (xy 177.476202 70.64911) (xy 177.339204 70.598011) (xy 177.339196 70.598009) (xy 177.278649 70.5915) (xy 177.278638 70.5915) (xy 174.581362 70.5915) (xy 174.58135 70.5915) (xy 174.520803 70.598009) (xy 174.520795 70.598011) (xy 174.383797 70.64911) (xy 174.383792 70.649112) (xy 174.266738 70.736738) (xy 174.179112 70.853792) (xy 174.17911 70.853797) (xy 174.128011 70.990795) (xy 174.128009 70.990803) (xy 174.1215 71.05135) (xy 174.1215 73.748649) (xy 174.128009 73.809196) (xy 174.128011 73.809204) (xy 174.17911 73.946202) (xy 174.179112 73.946207) (xy 174.266738 74.063261) (xy 174.383792 74.150887) (xy 174.383794 74.150888) (xy 174.383796 74.150889) (xy 174.428629 74.167611) (xy 174.520795 74.201988) (xy 174.520803 74.20199) (xy 174.58135 74.208499) (xy 174.581355 74.208499) (xy 174.581362 74.2085) (xy 175.552969 74.2085) (xy 175.62109 74.228502) (xy 175.642064 74.245405) (xy 176.159595 74.762936) (xy 176.193621 74.825248) (xy 176.1965 74.852031) (xy 176.1965 78.3155) (xy 176.176498 78.383621) (xy 176.122842 78.430114) (xy 176.0705 78.4415) (xy 176.028695 78.4415) (xy 175.960574 78.421498) (xy 175.9396 78.404595) (xy 175.908352 78.373347) (xy 175.908346 78.373342) (xy 175.901866 78.369345) (xy 175.75992 78.281791) (xy 175.594381 78.226938) (xy 175.594379 78.226937) (xy 175.594377 78.226937) (xy 175.492221 78.2165) (xy 174.817787 78.2165) (xy 174.715619 78.226937) (xy 174.550079 78.281791) (xy 174.401653 78.373342) (xy 174.401647 78.373347) (xy 174.368741 78.406254) (xy 174.306429 78.44028) (xy 174.235614 78.435215) (xy 174.190551 78.406254) (xy 174.158039 78.373742) (xy 174.158033 78.373737) (xy 174.009707 78.282248) (xy 173.844276 78.227431) (xy 173.844273 78.22743) (xy 173.742184 78.217) (xy 173.659 78.217) (xy 173.151 78.217) (xy 173.067815 78.217) (xy 172.965726 78.22743) (xy 172.965723 78.227431) (xy 172.800292 78.282248) (xy 172.651966 78.373737) (xy 172.65196 78.373742) (xy 172.528742 78.49696) (xy 172.528737 78.496966) (xy 172.437248 78.645292) (xy 172.382431 78.810723) (xy 172.38243 78.810726) (xy 172.372 78.912815) (xy 162.757665 78.912815) (xy 161.770433 77.925583) (xy 161.770423 77.925575) (xy 161.631677 77.84547) (xy 161.631674 77.845469) (xy 161.631673 77.845468) (xy 161.631671 77.845467) (xy 161.63167 77.845467) (xy 161.504528 77.8114) (xy 161.504528 77.811399) (xy 161.476911 77.804) (xy 161.317673 77.804) (xy 161.249552 77.783998) (xy 161.203059 77.730342) (xy 161.192955 77.660068) (xy 161.222449 77.595488) (xy 161.228578 77.588905) (xy 161.345824 77.471658) (xy 161.34583 77.471652) (xy 161.438915 77.320738) (xy 161.494687 77.152426) (xy 161.5053 77.048545) (xy 161.505299 76.893508) (xy 161.525301 76.825388) (xy 161.542195 76.804422) (xy 161.773707 76.57291) (xy 161.836017 76.538887) (xy 161.906833 76.543952) (xy 161.963668 76.586499) (xy 161.988479 76.65302) (xy 161.9888 76.662008) (xy 161.9888 77.048516) (xy 161.999405 77.152318) (xy 161.999406 77.152321) (xy 162.055142 77.320525) (xy 162.148165 77.471339) (xy 162.14817 77.471345) (xy 162.273454 77.596629) (xy 162.27346 77.596634) (xy 162.424274 77.689657) (xy 162.592478 77.745393) (xy 162.592481 77.745394) (xy 162.696283 77.755999) (xy 162.696283 77.756) (xy 163.9928 77.756) (xy 163.9928 74.94) (xy 163.710809 74.94) (xy 163.642688 74.919998) (xy 163.596195 74.866342) (xy 163.586091 74.796068) (xy 163.615585 74.731488) (xy 163.621704 74.724914) (xy 164.46673 73.879889) (xy 164.583166 73.719629) (xy 164.622976 73.641497) (xy 164.673098 73.543128) (xy 164.67535 73.536194) (xy 164.715418 73.477588) (xy 164.780812 73.449946) (xy 164.85077 73.462048) (xy 164.88428 73.486029) (xy 166.11069 74.712439) (xy 166.144716 74.774751) (xy 166.139651 74.845566) (xy 166.128845 74.867666) (xy 166.128594 74.868072) (xy 166.128592 74.868077) (xy 166.121077 74.890755) (xy 166.080662 74.949126) (xy 166.015105 74.97638) (xy 165.961842 74.970725) (xy 165.901128 74.950607) (xy 165.901118 74.950605) (xy 165.797316 74.94) (xy 164.5008 74.94) (xy 164.5008 77.756) (xy 165.797317 77.756) (xy 165.797316 77.755999) (xy 165.901118 77.745394) (xy 165.901127 77.745392) (xy 165.962314 77.725117) (xy 166.033269 77.722676) (xy 166.094279 77.758983) (xy 166.121552 77.805086) (xy 166.129047 77.827705) (xy 166.220537 77.976033) (xy 166.220542 77.976039) (xy 166.34376 78.099257) (xy 166.343766 78.099262) (xy 166.492092 78.190751) (xy 166.657523 78.245568) (xy 166.657526 78.245569) (xy 166.759615 78.255999) (xy 166.759615 78.256) (xy 166.7928 78.256) (xy 167.3008 78.256) (xy 167.333985 78.256) (xy 167.333984 78.255999) (xy 167.436073 78.245569) (xy 167.436076 78.245568) (xy 167.601507 78.190751) (xy 167.749833 78.099262) (xy 167.749839 78.099257) (xy 167.873057 77.976039) (xy 167.873062 77.976033) (xy 167.964551 77.827707) (xy 168.019368 77.662276) (xy 168.019369 77.662273) (xy 168.029799 77.560184) (xy 168.0298 77.560184) (xy 168.0298 77.4645) (xy 167.3008 77.4645) (xy 167.3008 78.256) (xy 166.7928 78.256) (xy 166.7928 77.3365) (xy 166.812802 77.268379) (xy 166.866458 77.221886) (xy 166.9188 77.2105) (xy 167.0468 77.2105) (xy 167.0468 77.0825) (xy 167.066802 77.014379) (xy 167.120458 76.967886) (xy 167.1728 76.9565) (xy 168.0298 76.9565) (xy 168.0298 76.860815) (xy 168.019369 76.758726) (xy 168.019368 76.758723) (xy 167.96455 76.593291) (xy 167.918439 76.518534) (xy 167.899701 76.450055) (xy 167.92096 76.382316) (xy 167.975466 76.336823) (xy 168.045915 76.328022) (xy 168.076927 76.337278) (xy 168.147712 76.368794) (xy 168.334513 76.4085) (xy 168.525487 76.4085) (xy 168.712288 76.368794) (xy 168.886752 76.291118) (xy 169.041253 76.178866) (xy 169.041255 76.178864) (xy 169.169034 76.036951) (xy 169.169035 76.036949) (xy 169.16904 76.036944) (xy 169.264527 75.871556) (xy 169.323542 75.689928) (xy 169.343504 75.5) (xy 169.323542 75.310072) (xy 169.264527 75.128444) (xy 169.16904 74.963056) (xy 169.169038 74.963054) (xy 169.169034 74.963048) (xy 169.041255 74.821135) (xy 168.886752 74.708882) (xy 168.712288 74.631206) (xy 168.525487 74.5915) (xy 168.334513 74.5915) (xy 168.147709 74.631206) (xy 167.975856 74.70772) (xy 167.905489 74.717154) (xy 167.841192 74.687047) (xy 167.835513 74.681708) (xy 167.750152 74.596347) (xy 167.750146 74.596342) (xy 167.666704 74.544874) (xy 167.604256 74.506355) (xy 167.561286 74.462116) (xy 167.533722 74.414373) (xy 167.533719 74.41437) (xy 167.533716 74.414366) (xy 166.105444 72.986095) (xy 166.071419 72.923783) (xy 166.076483 72.852968) (xy 166.11903 72.796132) (xy 166.18555 72.771321) (xy 166.194539 72.771) (xy 166.960385 72.771) (xy 166.960397 72.770999) (xy 167.020893 72.764494) (xy 167.157764 72.713444) (xy 167.157765 72.713444) (xy 167.274704 72.625904) (xy 167.362244 72.508965) (xy 167.362244 72.508964) (xy 167.402885 72.4) (xy 169.11693 72.4) (xy 169.13718 72.670227) (xy 169.19748 72.934413) (xy 169.197481 72.934416) (xy 169.29648 73.186664) (xy 169.431968 73.421335) (xy 169.484092 73.486696) (xy 169.484093 73.486696) (xy 170.327301 72.643488) (xy 170.353978 72.70789) (xy 170.425112 72.814351) (xy 170.515649 72.904888) (xy 170.62211 72.976022) (xy 170.68651 73.002698) (xy 169.842455 73.846752) (xy 169.842455 73.846753) (xy 170.023469 73.970167) (xy 170.02347 73.970168) (xy 170.267602 74.087735) (xy 170.526547 74.167611) (xy 170.526555 74.167612) (xy 170.794513 74.208) (xy 171.065487 74.208) (xy 171.333444 74.167612) (xy 171.333452 74.167611) (xy 171.592397 74.087735) (xy 171.836529 73.970168) (xy 171.83653 73.970167) (xy 172.017544 73.846753) (xy 171.173489 73.002698) (xy 171.23789 72.976022) (xy 171.344351 72.904888) (xy 171.434888 72.814351) (xy 171.506022 72.70789) (xy 171.532698 72.643489) (xy 172.375906 73.486697) (xy 172.375907 73.486696) (xy 172.428025 73.421343) (xy 172.428031 73.421335) (xy 172.563519 73.186664) (xy 172.662518 72.934416) (xy 172.662519 72.934413) (xy 172.722819 72.670227) (xy 172.743069 72.4) (xy 172.722819 72.129772) (xy 172.662519 71.865586) (xy 172.662518 71.865583) (xy 172.563519 71.613335) (xy 172.428031 71.378664) (xy 172.375906 71.313302) (xy 172.375905 71.313302) (xy 171.532697 72.156509) (xy 171.506022 72.09211) (xy 171.434888 71.985649) (xy 171.344351 71.895112) (xy 171.23789 71.823978) (xy 171.173488 71.797301) (xy 172.017543 70.953246) (xy 172.017543 70.953244) (xy 171.836537 70.829836) (xy 171.836529 70.829831) (xy 171.592397 70.712264) (xy 171.333452 70.632388) (xy 171.333444 70.632387) (xy 171.065487 70.592) (xy 170.794513 70.592) (xy 170.526555 70.632387) (xy 170.526547 70.632388) (xy 170.267602 70.712264) (xy 170.02347 70.829831) (xy 170.023462 70.829836) (xy 169.842455 70.953244) (xy 169.842455 70.953246) (xy 170.68651 71.797301) (xy 170.62211 71.823978) (xy 170.515649 71.895112) (xy 170.425112 71.985649) (xy 170.353978 72.09211) (xy 170.327301 72.15651) (xy 169.484093 71.313302) (xy 169.484091 71.313302) (xy 169.431968 71.378664) (xy 169.29648 71.613335) (xy 169.197481 71.865583) (xy 169.19748 71.865586) (xy 169.13718 72.129772) (xy 169.11693 72.4) (xy 167.402885 72.4) (xy 167.413294 72.372093) (xy 167.419799 72.311597) (xy 167.4198 72.311585) (xy 167.4198 71.502) (xy 166.489051 71.502) (xy 166.522045 71.444853) (xy 166.5568 71.315143) (xy 166.5568 71.180857) (xy 166.522045 71.051147) (xy 166.489051 70.994) (xy 167.4198 70.994) (xy 167.4198 70.184414) (xy 167.419799 70.184402) (xy 167.413294 70.123906) (xy 167.362244 69.987035) (xy 167.362244 69.987034) (xy 167.274704 69.870095) (xy 167.157765 69.782555) (xy 167.020893 69.731505) (xy 166.960397 69.725) (xy 166.3008 69.725) (xy 166.3008 70.805749) (xy 166.243653 70.772755) (xy 166.113943 70.738) (xy 165.979657 70.738) (xy 165.849947 70.772755) (xy 165.7928 70.805749) (xy 165.7928 69.725) (xy 165.133202 69.725) (xy 165.072706 69.731505) (xy 164.935835 69.782555) (xy 164.935834 69.782555) (xy 164.818895 69.870095) (xy 164.731355 69.987034) (xy 164.731353 69.987039) (xy 164.693082 70.089647) (xy 164.650535 70.146483) (xy 164.584015 70.171293) (xy 164.514641 70.156201) (xy 164.485932 70.134709) (xy 164.40158 70.050357) (xy 164.401577 70.050355) (xy 164.401575 70.050353) (xy 164.226671 69.923278) (xy 164.034041 69.825128) (xy 164.03404 69.825127) (xy 164.034039 69.825127) (xy 163.828432 69.758321) (xy 163.828429 69.75832) (xy 163.614897 69.7245) (xy 163.398703 69.7245) (xy 163.185171 69.75832) (xy 163.185168 69.75832) (xy 163.185167 69.758321) (xy 162.97956 69.825127) (xy 162.786925 69.92328) (xy 162.612022 70.050355) (xy 162.612019 70.050357) (xy 162.459154 70.203222) (xy 162.338736 70.368964) (xy 162.282513 70.412318) (xy 162.211777 70.418393) (xy 162.148986 70.385261) (xy 162.134864 70.368964) (xy 162.014445 70.203222) (xy 161.86158 70.050357) (xy 161.861577 70.050355) (xy 161.861575 70.050353) (xy 161.686671 69.923278) (xy 161.494041 69.825128) (xy 161.49404 69.825127) (xy 161.494039 69.825127) (xy 161.288432 69.758321) (xy 161.288429 69.75832) (xy 161.074897 69.7245) (xy 160.858703 69.7245) (xy 160.645171 69.75832) (xy 160.645168 69.75832) (xy 160.645167 69.758321) (xy 160.43956 69.825127) (xy 160.246925 69.92328) (xy 160.072022 70.050355) (xy 160.072019 70.050357) (xy 159.919154 70.203222) (xy 159.798736 70.368964) (xy 159.742513 70.412318) (xy 159.671777 70.418393) (xy 159.608986 70.385261) (xy 159.594864 70.368964) (xy 159.474445 70.203222) (xy 159.32158 70.050357) (xy 159.321577 70.050355) (xy 159.321575 70.050353) (xy 159.146671 69.923278) (xy 158.954041 69.825128) (xy 158.95404 69.825127) (xy 158.954039 69.825127) (xy 158.748432 69.758321) (xy 158.748429 69.75832) (xy 158.534897 69.7245) (xy 158.318703 69.7245) (xy 158.105171 69.75832) (xy 158.105168 69.75832) (xy 158.105167 69.758321) (xy 157.89956 69.825127) (xy 157.706925 69.92328) (xy 157.532022 70.050355) (xy 157.532019 70.050357) (xy 157.379157 70.203219) (xy 157.379155 70.203222) (xy 157.25208 70.378125) (xy 157.153927 70.57076) (xy 157.088295 70.772755) (xy 157.08712 70.776371) (xy 157.0533 70.989903) (xy 157.0533 71.506097) (xy 157.08712 71.719629) (xy 157.087121 71.719632) (xy 157.137603 71.875) (xy 157.153928 71.925241) (xy 157.238952 72.09211) (xy 157.25208 72.117874) (xy 157.265869 72.136853) (xy 157.379153 72.292775) (xy 157.379155 72.292777) (xy 157.379157 72.29278) (xy 157.532019 72.445642) (xy 157.532022 72.445644) (xy 157.532025 72.445647) (xy 157.706929 72.572722) (xy 157.749503 72.594414) (xy 157.801118 72.643162) (xy 157.8183 72.706681) (xy 157.8183 73.16896) (xy 157.798298 73.237081) (xy 157.781395 73.258055) (xy 156.528601 74.510848) (xy 156.466289 74.544874) (xy 156.395473 74.539809) (xy 156.37336 74.528994) (xy 156.334126 74.504794) (xy 156.334122 74.504792) (xy 156.33412 74.504791) (xy 156.168581 74.449938) (xy 156.168579 74.449937) (xy 156.168577 74.449937) (xy 156.066421 74.4395) (xy 156.066413 74.4395) (xy 155.698939 74.4395) (xy 155.630818 74.419498) (xy 155.609844 74.402595) (xy 154.193344 72.986095) (xy 154.159318 72.923783) (xy 154.164383 72.852968) (xy 154.20693 72.796132) (xy 154.27345 72.771321) (xy 154.282439 72.771) (xy 154.5928 72.771) (xy 154.5928 71.69025) (xy 154.649947 71.723245) (xy 154.779657 71.758) (xy 154.913943 71.758) (xy 155.043653 71.723245) (xy 155.1008 71.69025) (xy 155.1008 72.771) (xy 155.760385 72.771) (xy 155.760397 72.770999) (xy 155.820893 72.764494) (xy 155.957764 72.713444) (xy 155.957765 72.713444) (xy 156.074704 72.625904) (xy 156.162244 72.508965) (xy 156.162244 72.508964) (xy 156.213294 72.372093) (xy 156.219799 72.311597) (xy 156.2198 72.311585) (xy 156.2198 71.502) (xy 155.289051 71.502) (xy 155.322045 71.444853) (xy 155.3568 71.315143) (xy 155.3568 71.180857) (xy 155.322045 71.051147) (xy 155.289051 70.994) (xy 156.2198 70.994) (xy 156.2198 70.184414) (xy 156.219799 70.184402) (xy 156.213294 70.123906) (xy 156.162244 69.987035) (xy 156.162244 69.987034) (xy 156.074704 69.870095) (xy 155.957765 69.782555) (xy 155.820893 69.731505) (xy 155.760397 69.725) (xy 155.1008 69.725) (xy 155.1008 70.805749) (xy 155.043653 70.772755) (xy 154.913943 70.738) (xy 154.779657 70.738) (xy 154.649947 70.772755) (xy 154.5928 70.805749) (xy 154.5928 69.725) (xy 153.933202 69.725) (xy 153.872706 69.731505) (xy 153.735835 69.782555) (xy 153.735834 69.782555) (xy 153.618895 69.870095) (xy 153.531355 69.987034) (xy 153.531353 69.987039) (xy 153.493082 70.089647) (xy 153.450535 70.146483) (xy 153.384015 70.171293) (xy 153.314641 70.156201) (xy 153.285932 70.134709) (xy 153.20158 70.050357) (xy 153.201577 70.050355) (xy 153.201575 70.050353) (xy 153.026671 69.923278) (xy 152.834041 69.825128) (xy 152.83404 69.825127) (xy 152.834039 69.825127) (xy 152.628432 69.758321) (xy 152.628429 69.75832) (xy 152.414897 69.7245) (xy 152.198703 69.7245) (xy 151.985171 69.75832) (xy 151.985168 69.75832) (xy 151.985167 69.758321) (xy 151.77956 69.825127) (xy 151.586925 69.92328) (xy 151.412022 70.050355) (xy 151.412019 70.050357) (xy 151.259154 70.203222) (xy 151.138736 70.368964) (xy 151.082513 70.412318) (xy 151.011777 70.418393) (xy 150.948986 70.385261) (xy 150.934864 70.368964) (xy 150.814445 70.203222) (xy 150.66158 70.050357) (xy 150.661577 70.050355) (xy 150.661575 70.050353) (xy 150.486671 69.923278) (xy 150.294041 69.825128) (xy 150.29404 69.825127) (xy 150.294039 69.825127) (xy 150.088432 69.758321) (xy 150.088429 69.75832) (xy 149.874897 69.7245) (xy 149.658703 69.7245) (xy 149.445171 69.75832) (xy 149.445168 69.75832) (xy 149.445167 69.758321) (xy 149.23956 69.825127) (xy 149.046925 69.92328) (xy 148.872022 70.050355) (xy 148.872019 70.050357) (xy 148.719154 70.203222) (xy 148.598736 70.368964) (xy 148.542513 70.412318) (xy 148.471777 70.418393) (xy 148.408986 70.385261) (xy 148.394864 70.368964) (xy 148.274445 70.203222) (xy 148.12158 70.050357) (xy 148.121577 70.050355) (xy 148.121575 70.050353) (xy 147.946671 69.923278) (xy 147.754041 69.825128) (xy 147.75404 69.825127) (xy 147.754039 69.825127) (xy 147.548432 69.758321) (xy 147.548429 69.75832) (xy 147.334897 69.7245) (xy 147.118703 69.7245) (xy 146.905171 69.75832) (xy 146.905168 69.75832) (xy 146.905167 69.758321) (xy 146.69956 69.825127) (xy 146.506925 69.92328) (xy 146.332022 70.050355) (xy 146.332019 70.050357) (xy 146.179157 70.203219) (xy 146.179155 70.203222) (xy 146.05208 70.378125) (xy 145.953927 70.57076) (xy 145.888295 70.772755) (xy 145.88712 70.776371) (xy 145.8533 70.989903) (xy 145.8533 71.506097) (xy 145.88712 71.719629) (xy 145.887121 71.719632) (xy 145.937603 71.875) (xy 145.953928 71.925241) (xy 146.038952 72.09211) (xy 146.05208 72.117874) (xy 146.065869 72.136853) (xy 146.179153 72.292775) (xy 146.179155 72.292777) (xy 146.179157 72.29278) (xy 146.332019 72.445642) (xy 146.332022 72.445644) (xy 146.332025 72.445647) (xy 146.506929 72.572722) (xy 146.549503 72.594414) (xy 146.601118 72.643162) (xy 146.6183 72.706681) (xy 146.6183 73.249831) (xy 146.598298 73.317952) (xy 146.581395 73.338926) (xy 145.703595 74.216726) (xy 145.641283 74.250752) (xy 145.570468 74.245687) (xy 145.513632 74.20314) (xy 145.488821 74.13662) (xy 145.4885 74.127631) (xy 145.4885 72.625293) (xy 145.488499 72.62529) (xy 145.484941 72.607404) (xy 145.459351 72.478754) (xy 145.443909 72.441475) (xy 145.42692 72.400458) (xy 145.426908 72.400431) (xy 145.42673 72.400001) (xy 145.402174 72.340716) (xy 145.319166 72.216485) (xy 142.785405 69.682724) (xy 142.751379 69.620412) (xy 142.7485 69.593629) (xy 142.7485 69.011367) (xy 142.748499 69.01135) (xy 142.74199 68.950803) (xy 142.741988 68.950795) (xy 142.690889 68.813797) (xy 142.690889 68.813796) (xy 142.690886 68.813792) (xy 142.617311 68.715507) (xy 142.592501 68.648989) (xy 142.607592 68.579615) (xy 142.617306 68.564497) (xy 142.690889 68.466204) (xy 142.741989 68.329201) (xy 142.7485 68.268638) (xy 142.7485 66.471362) (xy 142.743201 66.422068) (xy 142.74199 66.410803) (xy 142.741988 66.410795) (xy 142.712924 66.332875) (xy 142.690889 66.273796) (xy 142.690888 66.273794) (xy 142.690887 66.273792) (xy 142.63715 66.202009) (xy 142.612339 66.135489) (xy 142.62743 66.066115) (xy 142.677632 66.015913) (xy 142.738018 66.0005) (xy 182.434108 66.0005) (xy 182.497252 66.0005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 156.044032 114.990139) (xy 156.089095 115.0191) (xy 156.196647 115.126652) (xy 156.196653 115.126657) (xy 156.196654 115.126658) (xy 156.34508 115.218209) (xy 156.510619 115.273062) (xy 156.612787 115.2835) (xy 157.212212 115.283499) (xy 157.314381 115.273062) (xy 157.47992 115.218209) (xy 157.628346 115.126658) (xy 157.628348 115.126655) (xy 157.633852 115.123261) (xy 157.702332 115.104523) (xy 157.766148 115.123261) (xy 157.771651 115.126655) (xy 157.771654 115.126658) (xy 157.92008 115.218209) (xy 158.085619 115.273062) (xy 158.187787 115.2835) (xy 158.787212 115.283499) (xy 158.88052 115.273967) (xy 158.950321 115.286943) (xy 159.002026 115.335596) (xy 159.019322 115.398496) (xy 159.037216 118.1498) (xy 159.017658 118.218049) (xy 158.971788 118.259822) (xy 158.972214 118.260518) (xy 158.968578 118.262746) (xy 158.968429 118.262882) (xy 158.967999 118.263101) (xy 158.967989 118.263107) (xy 158.794995 118.388794) (xy 158.664684 118.519105) (xy 158.602372 118.55313) (xy 158.531556 118.548065) (xy 158.474721 118.505518) (xy 158.468356 118.496168) (xy 158.37903 118.351348) (xy 158.379027 118.351345) (xy 158.379024 118.351341) (xy 158.253658 118.225975) (xy 158.253652 118.22597) (xy 158.19433 118.18938) (xy 158.102738 118.132885) (xy 158.018582 118.104999) (xy 157.934427 118.077113) (xy 157.93442 118.077112) (xy 157.830553 118.0665) (xy 156.529455 118.0665) (xy 156.425574 118.077112) (xy 156.257261 118.132885) (xy 156.106347 118.22597) (xy 156.106341 118.225975) (xy 155.980975 118.351341) (xy 155.98097 118.351347) (xy 155.887885 118.502262) (xy 155.832113 118.670572) (xy 155.832112 118.670579) (xy 155.8215 118.774446) (xy 155.8215 119.935768) (xy 155.801498 120.003889) (xy 155.790648 120.018369) (xy 154.896706 121.048101) (xy 154.836944 121.086429) (xy 154.801558 121.0915) (xy 151.832591 121.0915) (xy 151.76447 121.071498) (xy 151.717977 121.017842) (xy 151.707873 120.947568) (xy 151.737367 120.882988) (xy 151.75853 120.863564) (xy 151.773299 120.852833) (xy 151.865004 120.786206) (xy 152.016206 120.635004) (xy 152.141894 120.462009) (xy 152.238972 120.271483) (xy 152.305049 120.068116) (xy 152.3385 119.856916) (xy 152.3385 119.343084) (xy 152.305049 119.131884) (xy 152.238972 118.928517) (xy 152.141894 118.737991) (xy 152.016206 118.564996) (xy 152.016203 118.564993) (xy 152.016201 118.56499) (xy 151.865009 118.413798) (xy 151.865005 118.413795) (xy 151.865004 118.413794) (xy 151.791543 118.360421) (xy 151.74819 118.304201) (xy 151.742114 118.233465) (xy 151.775246 118.170673) (xy 151.776435 118.169467) (xy 154.631689 115.314213) (xy 154.693999 115.280189) (xy 154.73359 115.277963) (xy 154.787787 115.2835) (xy 155.387212 115.283499) (xy 155.489381 115.273062) (xy 155.65492 115.218209) (xy 155.803346 115.126658) (xy 155.844761 115.085243) (xy 155.910905 115.0191) (xy 155.973217 114.985074) ) ) (filled_polygon (layer "F.Cu") (pts (xy 118.596213 78.353502) (xy 118.642706 78.407158) (xy 118.65337 78.446033) (xy 118.658009 78.489196) (xy 118.658011 78.489204) (xy 118.70911 78.626202) (xy 118.709112 78.626207) (xy 118.782687 78.724491) (xy 118.807498 78.791011) (xy 118.792407 78.860385) (xy 118.782687 78.875509) (xy 118.709112 78.973792) (xy 118.70911 78.973797) (xy 118.658011 79.110795) (xy 118.658009 79.110803) (xy 118.6515 79.17135) (xy 118.6515 80.968649) (xy 118.658009 81.029196) (xy 118.658011 81.029204) (xy 118.70911 81.166202) (xy 118.709112 81.166207) (xy 118.782687 81.264491) (xy 118.807498 81.331011) (xy 118.792407 81.400385) (xy 118.782687 81.415509) (xy 118.709112 81.513792) (xy 118.70911 81.513797) (xy 118.658011 81.650795) (xy 118.658009 81.650803) (xy 118.6515 81.71135) (xy 118.6515 83.508649) (xy 118.658009 83.569196) (xy 118.658011 83.569204) (xy 118.70911 83.706202) (xy 118.709112 83.706207) (xy 118.782999 83.804907) (xy 118.80781 83.871427) (xy 118.792719 83.940801) (xy 118.783 83.955924) (xy 118.709555 84.054035) (xy 118.658505 84.190906) (xy 118.652 84.251402) (xy 118.652 84.896) (xy 121.367749 84.896) (xy 121.334755 84.953147) (xy 121.3 85.082857) (xy 121.3 85.217143) (xy 121.334755 85.346853) (xy 121.367749 85.404) (xy 118.652 85.404) (xy 118.652 86.048597) (xy 118.658505 86.109093) (xy 118.709555 86.245964) (xy 118.709556 86.245966) (xy 118.782999 86.344072) (xy 118.807811 86.410592) (xy 118.79272 86.479966) (xy 118.783 86.495091) (xy 118.709112 86.593792) (xy 118.70911 86.593797) (xy 118.658011 86.730795) (xy 118.658009 86.730803) (xy 118.6515 86.79135) (xy 118.6515 88.588649) (xy 118.658009 88.649196) (xy 118.658011 88.649204) (xy 118.70911 88.786202) (xy 118.709112 88.786207) (xy 118.782687 88.884491) (xy 118.807498 88.951011) (xy 118.792407 89.020385) (xy 118.782687 89.035509) (xy 118.709112 89.133792) (xy 118.70911 89.133797) (xy 118.658011 89.270795) (xy 118.658009 89.270803) (xy 118.6515 89.33135) (xy 118.6515 91.128649) (xy 118.658009 91.189196) (xy 118.658011 91.189204) (xy 118.70911 91.326202) (xy 118.709112 91.326207) (xy 118.782687 91.424491) (xy 118.807498 91.491011) (xy 118.792407 91.560385) (xy 118.782687 91.575509) (xy 118.709112 91.673792) (xy 118.70911 91.673797) (xy 118.658011 91.810795) (xy 118.658009 91.810803) (xy 118.6515 91.87135) (xy 118.6515 93.668649) (xy 118.658009 93.729196) (xy 118.658011 93.729204) (xy 118.70911 93.866202) (xy 118.709112 93.866207) (xy 118.782687 93.964491) (xy 118.807498 94.031011) (xy 118.792407 94.100385) (xy 118.782687 94.115509) (xy 118.709112 94.213792) (xy 118.70911 94.213797) (xy 118.658013 94.350791) (xy 118.658009 94.350803) (xy 118.6515 94.41135) (xy 118.6515 96.208649) (xy 118.658009 96.269196) (xy 118.658011 96.269204) (xy 118.70911 96.406202) (xy 118.709112 96.406207) (xy 118.782687 96.504491) (xy 118.807498 96.571011) (xy 118.792407 96.640385) (xy 118.782687 96.655509) (xy 118.709112 96.753792) (xy 118.70911 96.753797) (xy 118.658011 96.890795) (xy 118.658009 96.890803) (xy 118.6515 96.95135) (xy 118.6515 98.748649) (xy 118.658009 98.809196) (xy 118.658011 98.809204) (xy 118.70911 98.946202) (xy 118.709112 98.946207) (xy 118.782687 99.044491) (xy 118.807498 99.111011) (xy 118.792407 99.180385) (xy 118.782687 99.195509) (xy 118.709112 99.293792) (xy 118.70911 99.293797) (xy 118.658011 99.430795) (xy 118.658009 99.430803) (xy 118.6515 99.49135) (xy 118.6515 101.288649) (xy 118.658009 101.349196) (xy 118.658011 101.349204) (xy 118.70911 101.486202) (xy 118.709112 101.486207) (xy 118.782687 101.584491) (xy 118.807498 101.651011) (xy 118.792407 101.720385) (xy 118.782687 101.735509) (xy 118.709112 101.833792) (xy 118.70911 101.833797) (xy 118.658011 101.970795) (xy 118.658009 101.970803) (xy 118.6515 102.03135) (xy 118.6515 103.828649) (xy 118.658009 103.889196) (xy 118.658011 103.889204) (xy 118.70911 104.026202) (xy 118.709112 104.026207) (xy 118.782687 104.124491) (xy 118.807498 104.191011) (xy 118.792407 104.260385) (xy 118.782687 104.275509) (xy 118.709112 104.373792) (xy 118.70911 104.373797) (xy 118.658011 104.510795) (xy 118.658009 104.510803) (xy 118.6515 104.57135) (xy 118.6515 106.368649) (xy 118.658009 106.429196) (xy 118.658011 106.429204) (xy 118.70911 106.566202) (xy 118.709112 106.566207) (xy 118.782687 106.664491) (xy 118.807498 106.731011) (xy 118.792407 106.800385) (xy 118.782687 106.815509) (xy 118.709112 106.913792) (xy 118.70911 106.913797) (xy 118.658011 107.050795) (xy 118.658009 107.050803) (xy 118.6515 107.11135) (xy 118.6515 108.908649) (xy 118.658009 108.969196) (xy 118.658011 108.969204) (xy 118.70911 109.106202) (xy 118.709112 109.106207) (xy 118.782999 109.204907) (xy 118.80781 109.271427) (xy 118.792719 109.340801) (xy 118.783 109.355924) (xy 118.709555 109.454035) (xy 118.658505 109.590906) (xy 118.652 109.651402) (xy 118.652 110.296) (xy 120.784 110.296) (xy 120.852121 110.316002) (xy 120.898614 110.369658) (xy 120.91 110.422) (xy 120.91 110.678) (xy 120.889998 110.746121) (xy 120.836342 110.792614) (xy 120.784 110.804) (xy 118.652 110.804) (xy 118.652 111.448597) (xy 118.658505 111.509093) (xy 118.709555 111.645964) (xy 118.709556 111.645966) (xy 118.782999 111.744072) (xy 118.807811 111.810592) (xy 118.79272 111.879966) (xy 118.783 111.895091) (xy 118.709112 111.993792) (xy 118.70911 111.993797) (xy 118.658011 112.130795) (xy 118.658009 112.130803) (xy 118.6515 112.19135) (xy 118.6515 113.988649) (xy 118.658009 114.049196) (xy 118.658011 114.049204) (xy 118.70911 114.186202) (xy 118.709112 114.186207) (xy 118.782687 114.284491) (xy 118.807498 114.351011) (xy 118.792407 114.420385) (xy 118.782687 114.435509) (xy 118.709112 114.533792) (xy 118.70911 114.533797) (xy 118.658011 114.670795) (xy 118.658009 114.670803) (xy 118.6515 114.73135) (xy 118.6515 114.8705) (xy 118.631498 114.938621) (xy 118.577842 114.985114) (xy 118.5255 114.9965) (xy 117.774594 114.9965) (xy 117.706473 114.976498) (xy 117.685499 114.959595) (xy 116.500405 113.774501) (xy 116.466379 113.712189) (xy 116.4635 113.685406) (xy 116.4635 98.967607) (xy 116.463499 98.967603) (xy 116.4625 98.962579) (xy 116.439155 98.845215) (xy 116.3914 98.729925) (xy 116.322071 98.626167) (xy 116.233833 98.537929) (xy 115.203833 97.507929) (xy 115.100075 97.4386) (xy 114.984785 97.390845) (xy 114.903895 97.374755) (xy 114.862396 97.3665) (xy 114.862394 97.3665) (xy 114.157038 97.3665) (xy 114.088917 97.346498) (xy 114.051555 97.309415) (xy 113.955724 97.162734) (xy 113.95572 97.162729) (xy 113.82622 97.022057) (xy 113.80324 96.997094) (xy 113.803239 96.997093) (xy 113.803237 96.997091) (xy 113.711378 96.925594) (xy 113.625576 96.858811) (xy 113.427574 96.751658) (xy 113.427569 96.751656) (xy 113.427564 96.751654) (xy 113.41858 96.748569) (xy 113.360648 96.707529) (xy 113.3341 96.641682) (xy 113.3335 96.629399) (xy 113.3335 95.838572) (xy 113.353502 95.770451) (xy 113.3704 95.749481) (xy 113.47903 95.640852) (xy 113.497718 95.610554) (xy 113.550504 95.563075) (xy 113.604959 95.5507) (xy 114.095193 95.5507) (xy 114.095194 95.5507) (xy 114.217585 95.526355) (xy 114.332875 95.4786) (xy 114.436633 95.409271) (xy 115.742072 94.103833) (xy 115.811401 94.000075) (xy 115.859155 93.884785) (xy 115.8835 93.762394) (xy 115.8835 93.637606) (xy 115.8835 89.790682) (xy 115.859155 89.668291) (xy 115.8114 89.553001) (xy 115.742071 89.449243) (xy 115.653833 89.361005) (xy 115.045557 88.752729) (xy 114.941799 88.6834) (xy 114.826509 88.635645) (xy 114.75281 88.620985) (xy 114.70412 88.6113) (xy 114.704118 88.6113) (xy 114.665494 88.6113) (xy 114.597373 88.591298) (xy 114.552318 88.539302) (xy 114.551974 88.539478) (xy 114.551264 88.538086) (xy 114.55088 88.537642) (xy 114.54995 88.535506) (xy 114.549727 88.535068) (xy 114.421554 88.325907) (xy 114.421553 88.325906) (xy 114.421552 88.325904) (xy 114.262233 88.139367) (xy 114.181729 88.070609) (xy 114.142921 88.01116) (xy 114.142415 87.940166) (xy 114.180371 87.880167) (xy 114.181679 87.879032) (xy 114.262233 87.810233) (xy 114.421552 87.623696) (xy 114.549727 87.414532) (xy 114.643605 87.187892) (xy 114.700872 86.949357) (xy 114.720119 86.7048) (xy 114.700872 86.460243) (xy 114.643605 86.221708) (xy 114.549727 85.995068) (xy 114.421552 85.785904) (xy 114.262233 85.599367) (xy 114.075696 85.440048) (xy 114.075694 85.440046) (xy 114.075692 85.440045) (xy 113.953056 85.364894) (xy 113.866532 85.311873) (xy 113.639892 85.217995) (xy 113.401357 85.160728) (xy 113.1568 85.141481) (xy 112.912241 85.160728) (xy 112.797935 85.18817) (xy 112.727027 85.184622) (xy 112.679427 85.154746) (xy 112.326605 84.801924) (xy 112.292579 84.739612) (xy 112.2897 84.712829) (xy 112.2897 84.285172) (xy 112.309702 84.217051) (xy 112.326601 84.19608) (xy 112.34903 84.173652) (xy 112.442115 84.022738) (xy 112.497887 83.854426) (xy 112.5085 83.750545) (xy 112.5085 83.750516) (xy 112.992 83.750516) (xy 113.002605 83.854318) (xy 113.002606 83.854321) (xy 113.058342 84.022525) (xy 113.151365 84.173339) (xy 113.15137 84.173345) (xy 113.276654 84.298629) (xy 113.27666 84.298634) (xy 113.427474 84.391657) (xy 113.595678 84.447393) (xy 113.595681 84.447394) (xy 113.699483 84.457999) (xy 113.699483 84.458) (xy 113.746 84.458) (xy 114.254 84.458) (xy 114.300517 84.458) (xy 114.300516 84.457999) (xy 114.404318 84.447394) (xy 114.404321 84.447393) (xy 114.572525 84.391657) (xy 114.723339 84.298634) (xy 114.723345 84.298629) (xy 114.848629 84.173345) (xy 114.848634 84.173339) (xy 114.941657 84.022525) (xy 114.997393 83.854321) (xy 114.997394 83.854318) (xy 115.007999 83.750516) (xy 115.008 83.750516) (xy 115.008 83.704) (xy 114.254 83.704) (xy 114.254 84.458) (xy 113.746 84.458) (xy 113.746 83.704) (xy 112.992 83.704) (xy 112.992 83.750516) (xy 112.5085 83.750516) (xy 112.508499 83.149483) (xy 112.992 83.149483) (xy 112.992 83.196) (xy 113.746 83.196) (xy 114.254 83.196) (xy 115.008 83.196) (xy 115.008 83.149483) (xy 114.997394 83.045681) (xy 114.997393 83.045678) (xy 114.941657 82.877474) (xy 114.848634 82.72666) (xy 114.848629 82.726654) (xy 114.723345 82.60137) (xy 114.723339 82.601365) (xy 114.572525 82.508342) (xy 114.404321 82.452606) (xy 114.404318 82.452605) (xy 114.300516 82.442) (xy 114.254 82.442) (xy 114.254 83.196) (xy 113.746 83.196) (xy 113.746 82.442) (xy 113.699483 82.442) (xy 113.595681 82.452605) (xy 113.595678 82.452606) (xy 113.427474 82.508342) (xy 113.27666 82.601365) (xy 113.276654 82.60137) (xy 113.15137 82.726654) (xy 113.151365 82.72666) (xy 113.058342 82.877474) (xy 113.002606 83.045678) (xy 113.002605 83.045681) (xy 112.992 83.149483) (xy 112.508499 83.149483) (xy 112.508499 83.149456) (xy 112.497887 83.045574) (xy 112.442115 82.877262) (xy 112.34903 82.726348) (xy 112.24342 82.620738) (xy 112.216111 82.579866) (xy 112.203374 82.549116) (xy 112.180016 82.514158) (xy 112.120366 82.424885) (xy 111.345997 81.650516) (xy 114.622 81.650516) (xy 114.632605 81.754318) (xy 114.632606 81.754321) (xy 114.688342 81.922525) (xy 114.781365 82.073339) (xy 114.78137 82.073345) (xy 114.906654 82.198629) (xy 114.90666 82.198634) (xy 115.057474 82.291657) (xy 115.225678 82.347393) (xy 115.225681 82.347394) (xy 115.329483 82.357999) (xy 115.329483 82.358) (xy 115.376 82.358) (xy 115.884 82.358) (xy 115.930517 82.358) (xy 115.930516 82.357999) (xy 116.034318 82.347394) (xy 116.034321 82.347393) (xy 116.202525 82.291657) (xy 116.353339 82.198634) (xy 116.353345 82.198629) (xy 116.478629 82.073345) (xy 116.478634 82.073339) (xy 116.571657 81.922525) (xy 116.627393 81.754321) (xy 116.627394 81.754318) (xy 116.637999 81.650516) (xy 116.638 81.650516) (xy 116.638 81.604) (xy 115.884 81.604) (xy 115.884 82.358) (xy 115.376 82.358) (xy 115.376 81.604) (xy 114.622 81.604) (xy 114.622 81.650516) (xy 111.345997 81.650516) (xy 111.025405 81.329924) (xy 110.991379 81.267612) (xy 110.9885 81.240829) (xy 110.9885 81.049483) (xy 114.622 81.049483) (xy 114.622 81.096) (xy 115.376 81.096) (xy 115.884 81.096) (xy 116.638 81.096) (xy 116.638 81.049483) (xy 116.627394 80.945681) (xy 116.627393 80.945678) (xy 116.571657 80.777474) (xy 116.478634 80.62666) (xy 116.478629 80.626654) (xy 116.353345 80.50137) (xy 116.353339 80.501365) (xy 116.202525 80.408342) (xy 116.034321 80.352606) (xy 116.034318 80.352605) (xy 115.930516 80.342) (xy 115.884 80.342) (xy 115.884 81.096) (xy 115.376 81.096) (xy 115.376 80.342) (xy 115.329483 80.342) (xy 115.225681 80.352605) (xy 115.225678 80.352606) (xy 115.057474 80.408342) (xy 114.90666 80.501365) (xy 114.906654 80.50137) (xy 114.78137 80.626654) (xy 114.781365 80.62666) (xy 114.688342 80.777474) (xy 114.632606 80.945678) (xy 114.632605 80.945681) (xy 114.622 81.049483) (xy 110.9885 81.049483) (xy 110.9885 80.798626) (xy 111.008502 80.730505) (xy 111.062158 80.684012) (xy 111.124388 80.673015) (xy 111.140792 80.674306) (xy 111.158491 80.6757) (xy 111.158498 80.6757) (xy 112.541511 80.6757) (xy 112.541511 80.675699) (xy 112.578831 80.672762) (xy 112.738601 80.626345) (xy 112.738603 80.626343) (xy 112.738605 80.626343) (xy 112.831247 80.571554) (xy 112.881807 80.541653) (xy 112.928998 80.494462) (xy 113.005059 80.418402) (xy 113.006081 80.419424) (xy 113.056653 80.382905) (xy 113.098651 80.3757) (xy 114.110109 80.3757) (xy 114.11011 80.3757) (xy 114.110111 80.3757) (xy 114.212213 80.348342) (xy 114.264873 80.334232) (xy 114.403627 80.254122) (xy 114.868293 79.789454) (xy 114.930604 79.755431) (xy 115.001419 79.760495) (xy 115.023527 79.771307) (xy 115.057262 79.792115) (xy 115.225574 79.847887) (xy 115.329455 79.8585) (xy 115.930544 79.858499) (xy 116.034426 79.847887) (xy 116.202738 79.792115) (xy 116.353652 79.69903) (xy 116.47903 79.573652) (xy 116.572115 79.422738) (xy 116.627887 79.254426) (xy 116.6385 79.150545) (xy 116.638499 78.956794) (xy 116.658501 78.888674) (xy 116.675399 78.867703) (xy 117.1727 78.370404) (xy 117.235012 78.336379) (xy 117.261795 78.3335) (xy 118.528092 78.3335) ) ) (filled_polygon (layer "F.Cu") (pts (xy 170.03 107.2) (xy 170.673992 107.2) (xy 170.580104 107.210095) (xy 170.564843 107.211736) (xy 170.564841 107.211736) (xy 170.564835 107.211737) (xy 170.513332 107.222941) (xy 170.409174 107.257609) (xy 170.286215 107.33663) (xy 170.286213 107.336631) (xy 170.233417 107.38238) (xy 170.137704 107.492837) (xy 170.137703 107.492838) (xy 170.076986 107.625784) (xy 170.057302 107.69282) (xy 170.057301 107.692824) (xy 170.057301 107.692826) (xy 170.0573 107.69283) (xy 170.038131 107.826162) (xy 170.0365 107.837503) (xy 170.0365 112.476007) (xy 170.048237 112.585164) (xy 170.059441 112.636667) (xy 170.094109 112.740825) (xy 170.17313 112.863784) (xy 170.173131 112.863786) (xy 170.21888 112.916582) (xy 170.218882 112.916583) (xy 170.218884 112.916586) (xy 170.329339 113.012297) (xy 170.382116 113.0364) (xy 170.462284 113.073013) (xy 170.462286 113.073013) (xy 170.462287 113.073014) (xy 170.529326 113.092699) (xy 170.52933 113.0927) (xy 170.674 113.1135) (xy 170.729377 113.1135) (xy 170.797498 113.133502) (xy 170.843991 113.187158) (xy 170.854095 113.257432) (xy 170.848983 113.279125) (xy 170.802113 113.420575) (xy 170.802113 113.420576) (xy 170.80126 113.428921) (xy 170.774434 113.494654) (xy 170.765008 113.505202) (xy 169.770142 114.50007) (xy 169.724212 114.546) (xy 169.630071 114.64014) (xy 169.616435 114.658909) (xy 169.560212 114.702262) (xy 169.489475 114.708336) (xy 169.426684 114.675203) (xy 169.391774 114.613382) (xy 169.3885 114.584846) (xy 169.3885 111.043237) (xy 169.388499 111.043219) (xy 169.388499 110.463158) (xy 169.38243 110.38603) (xy 169.361358 110.307386) (xy 169.334362 110.206638) (xy 169.250047 110.041161) (xy 169.250045 110.041158) (xy 169.250042 110.041153) (xy 169.13317 109.896829) (xy 168.988846 109.779957) (xy 168.988837 109.779952) (xy 168.82336 109.695637) (xy 168.697266 109.66185) (xy 168.643971 109.64757) (xy 168.566843 109.6415) (xy 168.56684 109.6415) (xy 167.8145 109.6415) (xy 167.746379 109.621498) (xy 167.699886 109.567842) (xy 167.6885 109.5155) (xy 167.6885 107.089594) (xy 167.708502 107.021473) (xy 167.725405 107.000499) (xy 169.889691 104.836213) (xy 170.03 104.695904) ) ) (filled_polygon (layer "F.Cu") (pts (xy 157.305034 106.870733) (xy 157.362269 106.887362) (xy 157.399588 106.890299) (xy 157.399589 106.8903) (xy 157.399598 106.8903) (xy 158.3566 106.8903) (xy 158.424721 106.910302) (xy 158.471214 106.963958) (xy 158.4826 107.0163) (xy 158.4826 107.0223) (xy 158.462598 107.090421) (xy 158.408942 107.136914) (xy 158.3566 107.1483) (xy 158.028887 107.1483) (xy 157.926719 107.158737) (xy 157.761179 107.213591) (xy 157.612753 107.305142) (xy 157.612747 107.305147) (xy 157.489447 107.428447) (xy 157.489442 107.428453) (xy 157.397891 107.57688) (xy 157.343037 107.742422) (xy 157.3326 107.844578) (xy 157.3326 108.419012) (xy 157.343037 108.52118) (xy 157.397891 108.68672) (xy 157.489442 108.835146) (xy 157.489447 108.835152) (xy 157.612747 108.958452) (xy 157.612753 108.958457) (xy 157.612754 108.958458) (xy 157.76118 109.050009) (xy 157.926719 109.104862) (xy 158.028887 109.1153) (xy 158.315501 109.115299) (xy 158.38362 109.135301) (xy 158.430113 109.188956) (xy 158.4415 109.241299) (xy 158.4415 113.1905) (xy 158.421498 113.258621) (xy 158.367842 113.305114) (xy 158.315501 113.3165) (xy 158.187787 113.3165) (xy 158.085619 113.326937) (xy 157.920079 113.381791) (xy 157.766147 113.476739) (xy 157.697668 113.495476) (xy 157.633853 113.476739) (xy 157.628346 113.473342) (xy 157.47992 113.381791) (xy 157.314381 113.326938) (xy 157.314379 113.326937) (xy 157.314377 113.326937) (xy 157.212221 113.3165) (xy 156.612787 113.3165) (xy 156.510619 113.326937) (xy 156.345079 113.381791) (xy 156.196653 113.473342) (xy 156.196647 113.473347) (xy 156.089095 113.5809) (xy 156.026783 113.614926) (xy 155.955968 113.609861) (xy 155.910905 113.5809) (xy 155.803352 113.473347) (xy 155.803346 113.473342) (xy 155.741499 113.435194) (xy 155.65492 113.381791) (xy 155.489381 113.326938) (xy 155.489379 113.326937) (xy 155.489377 113.326937) (xy 155.387221 113.3165) (xy 154.9095 113.3165) (xy 154.841379 113.296498) (xy 154.794886 113.242842) (xy 154.7835 113.1905) (xy 154.7835 110.86742) (xy 154.803502 110.799299) (xy 154.857158 110.752806) (xy 154.927432 110.742702) (xy 154.992012 110.772196) (xy 155.029105 110.827787) (xy 155.073348 110.961307) (xy 155.164837 111.109633) (xy 155.164842 111.109639) (xy 155.28806 111.232857) (xy 155.288066 111.232862) (xy 155.436392 111.324351) (xy 155.601823 111.379168) (xy 155.601826 111.379169) (xy 155.703915 111.389599) (xy 155.703915 111.3896) (xy 155.7371 111.3896) (xy 156.2451 111.3896) (xy 156.278285 111.3896) (xy 156.278284 111.389599) (xy 156.380373 111.379169) (xy 156.380376 111.379168) (xy 156.545807 111.324351) (xy 156.694133 111.232862) (xy 156.694139 111.232857) (xy 156.817357 111.109639) (xy 156.817362 111.109633) (xy 156.908851 110.961307) (xy 156.963668 110.795876) (xy 156.963669 110.795873) (xy 156.974099 110.693784) (xy 156.9741 110.693784) (xy 156.9741 110.6481) (xy 156.2451 110.6481) (xy 156.2451 111.3896) (xy 155.7371 111.3896) (xy 155.7371 110.5201) (xy 155.757102 110.451979) (xy 155.810758 110.405486) (xy 155.8631 110.3941) (xy 155.9911 110.3941) (xy 155.9911 110.2661) (xy 156.011102 110.197979) (xy 156.064758 110.151486) (xy 156.1171 110.1401) (xy 156.9741 110.1401) (xy 156.9741 110.094415) (xy 156.963669 109.992326) (xy 156.963668 109.992323) (xy 156.908851 109.826892) (xy 156.817362 109.678566) (xy 156.817357 109.67856) (xy 156.709846 109.571049) (xy 156.67582 109.508737) (xy 156.680885 109.437922) (xy 156.709846 109.392859) (xy 156.817752 109.284952) (xy 156.817758 109.284946) (xy 156.909309 109.13652) (xy 156.964162 108.970981) (xy 156.9746 108.868813) (xy 156.974599 108.269388) (xy 156.964162 108.167219) (xy 156.909309 108.00168) (xy 156.841702 107.892074) (xy 156.822966 107.823596) (xy 156.844225 107.755857) (xy 156.859844 107.736837) (xy 156.98443 107.612252) (xy 157.077515 107.461338) (xy 157.133287 107.293026) (xy 157.1439 107.189145) (xy 157.143899 106.991734) (xy 157.163901 106.923615) (xy 157.217556 106.877122) (xy 157.28783 106.867017) ) ) (filled_polygon (layer "F.Cu") (pts (xy 139.114755 110.353147) (xy 139.08 110.482857) (xy 139.08 110.617143) (xy 139.114755 110.746853) (xy 139.147749 110.804) (xy 138.490815 110.804) (xy 138.422694 110.783998) (xy 138.376201 110.730342) (xy 138.364815 110.678) (xy 138.364815 110.422) (xy 138.384817 110.353879) (xy 138.438473 110.307386) (xy 138.490815 110.296) (xy 139.147749 110.296) ) ) (filled_polygon (layer "F.Cu") (pts (xy 126.478721 66.020502) (xy 126.525214 66.074158) (xy 126.5366 66.1265) (xy 126.5366 71.875) (xy 134.9116 71.875) (xy 134.9116 66.1265) (xy 134.931602 66.058379) (xy 134.985258 66.011886) (xy 135.0376 66.0005) (xy 138.241982 66.0005) (xy 138.310103 66.020502) (xy 138.356596 66.074158) (xy 138.3667 66.144432) (xy 138.34285 66.202009) (xy 138.289112 66.273792) (xy 138.28911 66.273797) (xy 138.238011 66.410795) (xy 138.238009 66.410803) (xy 138.2315 66.47135) (xy 138.2315 67.308595) (xy 138.23107 67.318999) (xy 138.226844 67.369999) (xy 138.23107 67.420998) (xy 138.2315 67.431403) (xy 138.2315 68.268649) (xy 138.238009 68.329196) (xy 138.238011 68.329204) (xy 138.28911 68.466202) (xy 138.289112 68.466207) (xy 138.362687 68.564491) (xy 138.387498 68.631011) (xy 138.372407 68.700385) (xy 138.362687 68.715509) (xy 138.289112 68.813792) (xy 138.28911 68.813797) (xy 138.238011 68.950795) (xy 138.238009 68.950803) (xy 138.2315 69.01135) (xy 138.2315 69.848595) (xy 138.23107 69.858999) (xy 138.226844 69.91) (xy 138.23107 69.960998) (xy 138.2315 69.971403) (xy 138.2315 70.808649) (xy 138.238009 70.869196) (xy 138.238011 70.869204) (xy 138.28911 71.006202) (xy 138.289112 71.006207) (xy 138.362999 71.104907) (xy 138.38781 71.171427) (xy 138.372719 71.240801) (xy 138.363 71.255924) (xy 138.289555 71.354035) (xy 138.238505 71.490906) (xy 138.232 71.551402) (xy 138.232 72.196) (xy 139.147749 72.196) (xy 139.114755 72.253147) (xy 139.08 72.382857) (xy 139.08 72.517143) (xy 139.114755 72.646853) (xy 139.147749 72.704) (xy 138.232 72.704) (xy 138.232 73.348597) (xy 138.238505 73.409093) (xy 138.289555 73.545964) (xy 138.289556 73.545966) (xy 138.362999 73.644072) (xy 138.387811 73.710592) (xy 138.37272 73.779966) (xy 138.363 73.795091) (xy 138.289112 73.893792) (xy 138.28911 73.893797) (xy 138.238011 74.030795) (xy 138.238009 74.030803) (xy 138.2315 74.09135) (xy 138.2315 74.928595) (xy 138.23107 74.938999) (xy 138.228441 74.970725) (xy 138.226844 74.99) (xy 138.230643 75.035842) (xy 138.23107 75.040998) (xy 138.2315 75.051403) (xy 138.2315 75.888649) (xy 138.238009 75.949196) (xy 138.238011 75.949204) (xy 138.28911 76.086202) (xy 138.289112 76.086207) (xy 138.362687 76.184491) (xy 138.387498 76.251011) (xy 138.372407 76.320385) (xy 138.362687 76.335509) (xy 138.289112 76.433792) (xy 138.28911 76.433797) (xy 138.238011 76.570795) (xy 138.238009 76.570803) (xy 138.2315 76.63135) (xy 138.2315 77.468595) (xy 138.23107 77.478999) (xy 138.226844 77.53) (xy 138.230233 77.570903) (xy 138.23107 77.580998) (xy 138.2315 77.591403) (xy 138.2315 78.428649) (xy 138.238009 78.489196) (xy 138.238011 78.489204) (xy 138.28911 78.626202) (xy 138.289112 78.626207) (xy 138.362687 78.724491) (xy 138.387498 78.791011) (xy 138.372407 78.860385) (xy 138.362687 78.875509) (xy 138.289112 78.973792) (xy 138.28911 78.973797) (xy 138.238011 79.110795) (xy 138.238009 79.110803) (xy 138.2315 79.17135) (xy 138.2315 80.008595) (xy 138.23107 80.018999) (xy 138.230435 80.026658) (xy 138.226844 80.07) (xy 138.229306 80.099707) (xy 138.23107 80.120998) (xy 138.2315 80.131403) (xy 138.2315 80.968649) (xy 138.238009 81.029196) (xy 138.238011 81.029204) (xy 138.28911 81.166202) (xy 138.289112 81.166207) (xy 138.362687 81.264491) (xy 138.387498 81.331011) (xy 138.372407 81.400385) (xy 138.362687 81.415509) (xy 138.289112 81.513792) (xy 138.28911 81.513797) (xy 138.238011 81.650795) (xy 138.238009 81.650803) (xy 138.2315 81.71135) (xy 138.2315 82.548595) (xy 138.23107 82.558999) (xy 138.226844 82.609999) (xy 138.23107 82.660998) (xy 138.2315 82.671403) (xy 138.2315 83.508649) (xy 138.238009 83.569196) (xy 138.238011 83.569204) (xy 138.28911 83.706202) (xy 138.289112 83.706207) (xy 138.362687 83.804491) (xy 138.387498 83.871011) (xy 138.372407 83.940385) (xy 138.362687 83.955509) (xy 138.289112 84.053792) (xy 138.28911 84.053797) (xy 138.238011 84.190795) (xy 138.238009 84.190803) (xy 138.2315 84.25135) (xy 138.2315 86.048649) (xy 138.238009 86.109196) (xy 138.238011 86.109204) (xy 138.28911 86.246202) (xy 138.289112 86.246207) (xy 138.362687 86.344491) (xy 138.387498 86.411011) (xy 138.372407 86.480385) (xy 138.362687 86.495509) (xy 138.289112 86.593792) (xy 138.28911 86.593797) (xy 138.238011 86.730795) (xy 138.238009 86.730803) (xy 138.2315 86.79135) (xy 138.2315 87.628595) (xy 138.23107 87.638999) (xy 138.226844 87.69) (xy 138.230198 87.730477) (xy 138.23107 87.740998) (xy 138.2315 87.751403) (xy 138.2315 88.588649) (xy 138.238009 88.649196) (xy 138.238011 88.649204) (xy 138.28911 88.786202) (xy 138.289112 88.786207) (xy 138.362687 88.884491) (xy 138.387498 88.951011) (xy 138.372407 89.020385) (xy 138.362687 89.035509) (xy 138.289112 89.133792) (xy 138.28911 89.133797) (xy 138.238011 89.270795) (xy 138.238009 89.270803) (xy 138.2315 89.33135) (xy 138.2315 90.168595) (xy 138.23107 90.178999) (xy 138.227623 90.220596) (xy 138.226844 90.23) (xy 138.23107 90.280998) (xy 138.2315 90.291403) (xy 138.2315 91.128649) (xy 138.238009 91.189196) (xy 138.238011 91.189204) (xy 138.28911 91.326202) (xy 138.289112 91.326207) (xy 138.362687 91.424491) (xy 138.387498 91.491011) (xy 138.372407 91.560385) (xy 138.362687 91.575509) (xy 138.289112 91.673792) (xy 138.28911 91.673797) (xy 138.238011 91.810795) (xy 138.238009 91.810803) (xy 138.2315 91.87135) (xy 138.2315 92.708595) (xy 138.23107 92.718999) (xy 138.226844 92.77) (xy 138.229052 92.796647) (xy 138.23107 92.820998) (xy 138.2315 92.831403) (xy 138.2315 93.668649) (xy 138.238009 93.729196) (xy 138.238011 93.729204) (xy 138.28911 93.866202) (xy 138.289112 93.866207) (xy 138.362687 93.964491) (xy 138.387498 94.031011) (xy 138.372407 94.100385) (xy 138.362687 94.115509) (xy 138.289112 94.213792) (xy 138.28911 94.213797) (xy 138.238013 94.350791) (xy 138.238009 94.350803) (xy 138.2315 94.41135) (xy 138.2315 95.248595) (xy 138.23107 95.258999) (xy 138.226844 95.31) (xy 138.227799 95.321521) (xy 138.23107 95.360998) (xy 138.2315 95.371403) (xy 138.2315 96.208649) (xy 138.238009 96.269196) (xy 138.238011 96.269204) (xy 138.28911 96.406202) (xy 138.289112 96.406207) (xy 138.362999 96.504907) (xy 138.38781 96.571427) (xy 138.372719 96.640801) (xy 138.363 96.655924) (xy 138.289555 96.754035) (xy 138.238505 96.890906) (xy 138.232 96.951402) (xy 138.232 97.596) (xy 139.147749 97.596) (xy 139.114755 97.653147) (xy 139.08 97.782857) (xy 139.08 97.917143) (xy 139.114755 98.046853) (xy 139.147749 98.104) (xy 138.232 98.104) (xy 138.232 98.748597) (xy 138.238505 98.809093) (xy 138.289555 98.945964) (xy 138.289556 98.945966) (xy 138.362999 99.044072) (xy 138.387811 99.110592) (xy 138.37272 99.179966) (xy 138.363 99.195091) (xy 138.289112 99.293792) (xy 138.28911 99.293797) (xy 138.238011 99.430795) (xy 138.238009 99.430803) (xy 138.2315 99.49135) (xy 138.2315 100.328595) (xy 138.23107 100.338999) (xy 138.226844 100.39) (xy 138.230911 100.439079) (xy 138.23107 100.440998) (xy 138.2315 100.451403) (xy 138.2315 101.288649) (xy 138.238009 101.349196) (xy 138.238011 101.349204) (xy 138.28911 101.486202) (xy 138.289112 101.486207) (xy 138.362687 101.584491) (xy 138.387498 101.651011) (xy 138.372407 101.720385) (xy 138.362687 101.735509) (xy 138.289112 101.833792) (xy 138.28911 101.833797) (xy 138.238011 101.970795) (xy 138.238009 101.970803) (xy 138.2315 102.03135) (xy 138.2315 102.868595) (xy 138.23107 102.878999) (xy 138.226844 102.929999) (xy 138.23107 102.980998) (xy 138.2315 102.991403) (xy 138.2315 103.828649) (xy 138.238009 103.889196) (xy 138.238011 103.889204) (xy 138.28911 104.026202) (xy 138.289112 104.026207) (xy 138.362687 104.124491) (xy 138.387498 104.191011) (xy 138.372407 104.260385) (xy 138.362687 104.275509) (xy 138.289112 104.373792) (xy 138.28911 104.373797) (xy 138.238011 104.510795) (xy 138.238009 104.510803) (xy 138.2315 104.57135) (xy 138.2315 105.408595) (xy 138.23107 105.418999) (xy 138.226844 105.47) (xy 138.22875 105.492996) (xy 138.23107 105.520998) (xy 138.2315 105.531403) (xy 138.2315 106.368649) (xy 138.238009 106.429196) (xy 138.238011 106.429204) (xy 138.28911 106.566202) (xy 138.289112 106.566207) (xy 138.362687 106.664491) (xy 138.387498 106.731011) (xy 138.372407 106.800385) (xy 138.362687 106.815509) (xy 138.289112 106.913792) (xy 138.28911 106.913797) (xy 138.238011 107.050795) (xy 138.238009 107.050803) (xy 138.2315 107.11135) (xy 138.2315 107.423825) (xy 138.211498 107.491946) (xy 138.157842 107.538439) (xy 138.087568 107.548543) (xy 138.022988 107.519049) (xy 138.016404 107.51292) (xy 137.911529 107.408043) (xy 137.753227 107.293027) (xy 137.745924 107.287721) (xy 137.745923 107.28772) (xy 137.745921 107.287719) (xy 137.563539 107.194788) (xy 137.546197 107.189153) (xy 137.368855 107.131528) (xy 137.368849 107.131527) (xy 137.368846 107.131526) (xy 137.166675 107.099501) (xy 137.137938 107.099501) (xy 137.13792 107.0995) (xy 137.130207 107.0995) (xy 137.064324 107.0995) (xy 136.998432 107.099499) (xy 136.998431 107.099499) (xy 136.990715 107.099499) (xy 136.990699 107.0995) (xy 124.190533 107.0995) (xy 124.190312 107.099514) (xy 124.161973 107.099514) (xy 124.135472 107.10371) (xy 123.959795 107.131531) (xy 123.765106 107.194786) (xy 123.58271 107.287717) (xy 123.582704 107.287721) (xy 123.417099 107.408038) (xy 123.383594 107.441543) (xy 123.321282 107.475567) (xy 123.250466 107.470501) (xy 123.193631 107.427954) (xy 123.168821 107.361433) (xy 123.1685 107.352446) (xy 123.1685 107.111367) (xy 123.168499 107.11135) (xy 123.16199 107.050803) (xy 123.161988 107.050795) (xy 123.114551 106.923615) (xy 123.110889 106.913796) (xy 123.037311 106.815507) (xy 123.012501 106.748989) (xy 123.027592 106.679615) (xy 123.037306 106.664497) (xy 123.110889 106.566204) (xy 123.161989 106.429201) (xy 123.1685 106.368638) (xy 123.1685 105.531403) (xy 123.16893 105.520998) (xy 123.17125 105.492996) (xy 123.173156 105.47) (xy 123.16893 105.418999) (xy 123.1685 105.408595) (xy 123.1685 104.571367) (xy 123.168499 104.57135) (xy 123.16199 104.510803) (xy 123.161988 104.510795) (xy 123.110889 104.373797) (xy 123.110889 104.373796) (xy 123.068529 104.31721) (xy 123.037311 104.275507) (xy 123.012501 104.208989) (xy 123.027592 104.139615) (xy 123.037306 104.124497) (xy 123.110889 104.026204) (xy 123.161989 103.889201) (xy 123.162011 103.889003) (xy 123.168499 103.828649) (xy 123.1685 103.828632) (xy 123.1685 102.991403) (xy 123.16893 102.980998) (xy 123.169427 102.975) (xy 123.173156 102.93) (xy 123.16893 102.878999) (xy 123.1685 102.868595) (xy 123.1685 102.031367) (xy 123.168499 102.03135) (xy 123.16199 101.970803) (xy 123.161988 101.970795) (xy 123.119145 101.855932) (xy 123.110889 101.833796) (xy 123.037311 101.735507) (xy 123.012501 101.668989) (xy 123.027592 101.599615) (xy 123.037306 101.584497) (xy 123.110889 101.486204) (xy 123.161989 101.349201) (xy 123.16289 101.340827) (xy 123.168499 101.288649) (xy 123.1685 101.288632) (xy 123.1685 100.451403) (xy 123.16893 100.440998) (xy 123.169089 100.439079) (xy 123.173156 100.39) (xy 123.16893 100.338999) (xy 123.1685 100.328595) (xy 123.1685 99.491367) (xy 123.168499 99.49135) (xy 123.16199 99.430803) (xy 123.161988 99.430795) (xy 123.121201 99.321444) (xy 123.110889 99.293796) (xy 123.037311 99.195507) (xy 123.012501 99.128989) (xy 123.027592 99.059615) (xy 123.037306 99.044497) (xy 123.110889 98.946204) (xy 123.161989 98.809201) (xy 123.163357 98.796484) (xy 123.168499 98.748649) (xy 123.1685 98.748632) (xy 123.1685 98.6148) (xy 129.7808 98.6148) (xy 137.8058 98.6148) (xy 137.8058 95.6148) (xy 129.7808 95.6148) (xy 129.7808 98.6148) (xy 123.1685 98.6148) (xy 123.1685 96.951367) (xy 123.168499 96.95135) (xy 123.16199 96.890803) (xy 123.161988 96.890795) (xy 123.120714 96.780138) (xy 123.110889 96.753796) (xy 123.037311 96.655507) (xy 123.012501 96.588989) (xy 123.027592 96.519615) (xy 123.037306 96.504497) (xy 123.110889 96.406204) (xy 123.161989 96.269201) (xy 123.162024 96.268884) (xy 123.168499 96.208649) (xy 123.1685 96.208632) (xy 123.1685 95.371403) (xy 123.16893 95.360998) (xy 123.169593 95.353) (xy 123.173156 95.31) (xy 123.16893 95.258999) (xy 123.1685 95.248595) (xy 123.1685 94.411367) (xy 123.168499 94.41135) (xy 123.16199 94.350803) (xy 123.161987 94.350791) (xy 123.110889 94.213797) (xy 123.110889 94.213796) (xy 123.10664 94.20812) (xy 123.037311 94.115507) (xy 123.012501 94.048989) (xy 123.027592 93.979615) (xy 123.037311 93.964492) (xy 123.110889 93.866204) (xy 123.161989 93.729201) (xy 123.163938 93.711079) (xy 123.168499 93.668649) (xy 123.1685 93.668632) (xy 123.1685 92.831403) (xy 123.16893 92.820998) (xy 123.169101 92.818937) (xy 123.173156 92.77) (xy 123.16893 92.718999) (xy 123.1685 92.708595) (xy 123.1685 91.871367) (xy 123.168499 91.87135) (xy 123.16199 91.810803) (xy 123.161988 91.810795) (xy 123.110889 91.673797) (xy 123.110889 91.673796) (xy 123.046288 91.5875) (xy 123.037311 91.575507) (xy 123.012501 91.508989) (xy 123.027592 91.439615) (xy 123.037306 91.424497) (xy 123.110889 91.326204) (xy 123.161989 91.189201) (xy 123.167607 91.136951) (xy 123.168499 91.128649) (xy 123.1685 91.128632) (xy 123.1685 90.291403) (xy 123.16893 90.280998) (xy 123.173156 90.23) (xy 123.16893 90.178999) (xy 123.1685 90.168595) (xy 123.1685 89.331367) (xy 123.168499 89.33135) (xy 123.16199 89.270803) (xy 123.161988 89.270795) (xy 123.1144 89.143209) (xy 123.110889 89.133796) (xy 123.037311 89.035507) (xy 123.012501 88.968989) (xy 123.027592 88.899615) (xy 123.037306 88.884497) (xy 123.110889 88.786204) (xy 123.161989 88.649201) (xy 123.163447 88.635646) (xy 123.168499 88.588649) (xy 123.1685 88.588632) (xy 123.1685 87.751403) (xy 123.16893 87.740998) (xy 123.169802 87.730477) (xy 123.173156 87.69) (xy 123.16893 87.638999) (xy 123.1685 87.628595) (xy 123.1685 86.791367) (xy 123.168499 86.79135) (xy 123.16199 86.730803) (xy 123.161988 86.730795) (xy 123.123887 86.628644) (xy 123.110889 86.593796) (xy 123.110888 86.593794) (xy 123.110887 86.593792) (xy 123.037 86.495091) (xy 123.012189 86.428571) (xy 123.02728 86.359197) (xy 123.037001 86.344072) (xy 123.110443 86.245966) (xy 123.110444 86.245964) (xy 123.161494 86.109093) (xy 123.167999 86.048597) (xy 123.168 86.048585) (xy 123.168 85.404) (xy 122.252251 85.404) (xy 122.285245 85.346853) (xy 122.32 85.217143) (xy 122.32 85.082857) (xy 122.285245 84.953147) (xy 122.252251 84.896) (xy 123.168 84.896) (xy 123.168 84.251414) (xy 123.167999 84.251402) (xy 123.161494 84.190906) (xy 123.110444 84.054035) (xy 123.110444 84.054034) (xy 123.037 83.955925) (xy 123.012189 83.889405) (xy 123.02728 83.820031) (xy 123.036998 83.804909) (xy 123.110889 83.706204) (xy 123.161989 83.569201) (xy 123.1685 83.508638) (xy 123.1685 82.671403) (xy 123.16893 82.660998) (xy 123.173156 82.61) (xy 123.17072 82.5806) (xy 126.78 82.5806) (xy 129.73 82.5806) (xy 129.73 72.9556) (xy 126.78 72.9556) (xy 126.78 82.5806) (xy 123.17072 82.5806) (xy 123.16893 82.558999) (xy 123.1685 82.548595) (xy 123.1685 81.711367) (xy 123.168499 81.71135) (xy 123.16199 81.650803) (xy 123.161988 81.650795) (xy 123.130703 81.56692) (xy 123.110889 81.513796) (xy 123.037311 81.415507) (xy 123.012501 81.348989) (xy 123.027592 81.279615) (xy 123.037306 81.264497) (xy 123.110889 81.166204) (xy 123.161989 81.029201) (xy 123.163565 81.014549) (xy 123.168499 80.968649) (xy 123.1685 80.968632) (xy 123.1685 80.131403) (xy 123.16893 80.120998) (xy 123.169161 80.118208) (xy 123.173156 80.07) (xy 123.16893 80.018999) (xy 123.1685 80.008595) (xy 123.1685 79.171367) (xy 123.168499 79.17135) (xy 123.16199 79.110803) (xy 123.161988 79.110795) (xy 123.112504 78.978127) (xy 123.110889 78.973796) (xy 123.037311 78.875507) (xy 123.012501 78.808989) (xy 123.027592 78.739615) (xy 123.037306 78.724497) (xy 123.110889 78.626204) (xy 123.161989 78.489201) (xy 123.167249 78.44028) (xy 123.168499 78.428649) (xy 123.1685 78.428632) (xy 123.1685 77.591403) (xy 123.16893 77.580998) (xy 123.173156 77.53) (xy 123.16893 77.478999) (xy 123.1685 77.468595) (xy 123.1685 76.631367) (xy 123.168499 76.63135) (xy 123.16199 76.570803) (xy 123.161988 76.570795) (xy 123.126758 76.476341) (xy 123.110889 76.433796) (xy 123.037311 76.335507) (xy 123.012501 76.268989) (xy 123.027592 76.199615) (xy 123.037306 76.184497) (xy 123.110889 76.086204) (xy 123.161989 75.949201) (xy 123.162581 75.9437) (xy 123.168499 75.888649) (xy 123.1685 75.888632) (xy 123.1685 75.051403) (xy 123.16893 75.040998) (xy 123.169357 75.035842) (xy 123.173156 74.99) (xy 123.169013 74.94) (xy 123.16893 74.938999) (xy 123.1685 74.928595) (xy 123.1685 74.091367) (xy 123.168499 74.09135) (xy 123.16199 74.030803) (xy 123.161988 74.030795) (xy 123.120025 73.918291) (xy 123.110889 73.893796) (xy 123.110888 73.893794) (xy 123.110887 73.893792) (xy 123.037 73.795091) (xy 123.012189 73.728571) (xy 123.02728 73.659197) (xy 123.037001 73.644072) (xy 123.110443 73.545966) (xy 123.110444 73.545964) (xy 123.161494 73.409093) (xy 123.167999 73.348597) (xy 123.168 73.348585) (xy 123.168 72.704) (xy 122.252251 72.704) (xy 122.285245 72.646853) (xy 122.32 72.517143) (xy 122.32 72.382857) (xy 122.285245 72.253147) (xy 122.252251 72.196) (xy 123.168 72.196) (xy 123.168 71.551414) (xy 123.167999 71.551402) (xy 123.161494 71.490906) (xy 123.110444 71.354035) (xy 123.110444 71.354034) (xy 123.037 71.255925) (xy 123.012189 71.189405) (xy 123.02728 71.120031) (xy 123.036998 71.104909) (xy 123.110889 71.006204) (xy 123.161989 70.869201) (xy 123.163646 70.853796) (xy 123.168499 70.808649) (xy 123.1685 70.808632) (xy 123.1685 69.971403) (xy 123.16893 69.960998) (xy 123.173156 69.91) (xy 123.16893 69.858999) (xy 123.1685 69.848595) (xy 123.1685 69.011367) (xy 123.168499 69.01135) (xy 123.16199 68.950803) (xy 123.161988 68.950795) (xy 123.110889 68.813797) (xy 123.110889 68.813796) (xy 123.110886 68.813792) (xy 123.037311 68.715507) (xy 123.012501 68.648989) (xy 123.027592 68.579615) (xy 123.037306 68.564497) (xy 123.110889 68.466204) (xy 123.161989 68.329201) (xy 123.1685 68.268638) (xy 123.1685 67.431403) (xy 123.16893 67.420998) (xy 123.173156 67.37) (xy 123.16893 67.318999) (xy 123.1685 67.308595) (xy 123.1685 66.471367) (xy 123.168499 66.47135) (xy 123.16199 66.410803) (xy 123.161988 66.410795) (xy 123.132924 66.332875) (xy 123.110889 66.273796) (xy 123.110888 66.273794) (xy 123.110887 66.273792) (xy 123.05715 66.202009) (xy 123.032339 66.135489) (xy 123.04743 66.066115) (xy 123.097632 66.015913) (xy 123.158018 66.0005) (xy 126.4106 66.0005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 179.547569 107.20329) (xy 179.524681 107.2) (xy 179.570453 107.2) ) ) (filled_polygon (layer "F.Cu") (pts (xy 179.856829 105.577054) (xy 179.856825 105.577068) (xy 179.84374 105.632499) (xy 179.843734 105.632531) (xy 179.830001 105.750476) (xy 179.83 105.750498) (xy 179.83 105.6) (xy 179.897299 105.465401) ) ) (filled_polygon (layer "F.Cu") (pts (xy 168.271984 100.424099) (xy 168.294931 100.439079) (xy 168.298931 100.442362) (xy 168.298934 100.442365) (xy 168.298937 100.442367) (xy 168.423166 100.525374) (xy 168.423168 100.525375) (xy 168.483329 100.550294) (xy 168.48333 100.550295) (xy 168.515586 100.563655) (xy 168.561203 100.582551) (xy 168.561209 100.582552) (xy 168.567127 100.584348) (xy 168.566351 100.586903) (xy 168.618985 100.614391) (xy 168.638795 100.638972) (xy 168.676849 100.700668) (xy 168.70842 100.751852) (xy 168.708425 100.751858) (xy 168.833791 100.877224) (xy 168.833797 100.877229) (xy 168.833798 100.87723) (xy 168.984712 100.970315) (xy 169.153024 101.026087) (xy 169.256905 101.0367) (xy 170.432994 101.036699) (xy 170.536876 101.026087) (xy 170.705188 100.970315) (xy 170.769304 100.930767) (xy 170.837781 100.91203) (xy 170.90552 100.933289) (xy 170.951012 100.987795) (xy 170.96145 101.038008) (xy 170.96145 101.8) (xy 170.03 101.8) (xy 170.03 102.904095) (xy 168.453594 104.480501) (xy 168.391282 104.514527) (xy 168.320467 104.509462) (xy 168.263631 104.466915) (xy 168.23882 104.400395) (xy 168.238499 104.391406) (xy 168.238499 104.300465) (xy 168.238499 104.300454) (xy 168.232276 104.237267) (xy 168.223909 104.152305) (xy 168.223908 104.152303) (xy 168.223908 104.152299) (xy 168.166241 103.962196) (xy 168.072595 103.786996) (xy 167.946568 103.633432) (xy 167.793004 103.507405) (xy 167.617804 103.413759) (xy 167.427701 103.356092) (xy 167.4277 103.356091) (xy 167.427694 103.35609) (xy 167.279553 103.3415) (xy 167.279547 103.3415) (xy 166.9645 103.3415) (xy 166.896379 103.321498) (xy 166.849886 103.267842) (xy 166.8385 103.2155) (xy 166.8385 101.269925) (xy 166.858502 101.201804) (xy 166.875405 101.180829) (xy 167.598331 100.457904) (xy 167.660643 100.423879) (xy 167.687426 100.421) (xy 168.105551 100.421) (xy 168.148907 100.416569) (xy 168.202186 100.411126) ) ) (filled_polygon (layer "F.Cu") (pts (xy 182.743634 101.478502) (xy 182.790127 101.532158) (xy 182.800231 101.602432) (xy 182.770737 101.667012) (xy 182.764608 101.673595) (xy 182.703742 101.73446) (xy 182.703737 101.734466) (xy 182.612246 101.882796) (xy 182.605212 101.904025) (xy 182.564798 101.962397) (xy 182.499242 101.989652) (xy 182.429357 101.977138) (xy 182.420424 101.972221) (xy 182.337579 101.92214) (xy 182.337578 101.922139) (xy 182.337577 101.922139) (xy 182.251428 101.895293) (xy 182.192344 101.855932) (xy 182.163919 101.790874) (xy 182.175179 101.720777) (xy 182.22255 101.667894) (xy 182.251425 101.654707) (xy 182.337577 101.627861) (xy 182.479623 101.541992) (xy 182.526211 101.495403) (xy 182.588521 101.46138) (xy 182.615305 101.4585) (xy 182.675513 101.4585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 172.72109 92.828502) (xy 172.742064 92.845405) (xy 175.844595 95.947936) (xy 175.878621 96.010248) (xy 175.8815 96.037031) (xy 175.8815 99.911791) (xy 175.881499 99.911821) (xy 175.881499 99.916278) (xy 175.881499 100.153722) (xy 175.882038 100.157123) (xy 175.909221 100.328745) (xy 175.914949 100.36491) (xy 175.9165 100.384621) (xy 175.9165 101.076007) (xy 175.928237 101.185164) (xy 175.939441 101.236667) (xy 175.968898 101.325168) (xy 175.97411 101.340827) (xy 175.979492 101.349201) (xy 176.05313 101.463784) (xy 176.053131 101.463786) (xy 176.09888 101.516582) (xy 176.098882 101.516583) (xy 176.098884 101.516586) (xy 176.209339 101.612297) (xy 176.269983 101.639993) (xy 176.342284 101.673013) (xy 176.342286 101.673013) (xy 176.342287 101.673014) (xy 176.409326 101.692699) (xy 176.40933 101.6927) (xy 176.554 101.7135) (xy 176.856128 101.7135) (xy 176.924249 101.733502) (xy 176.945218 101.7504) (xy 176.994818 101.8) (xy 172.22845 101.8) (xy 172.22845 101.1622) (xy 172.248452 101.094079) (xy 172.302108 101.047586) (xy 172.35445 101.0362) (xy 172.46595 101.0362) (xy 172.97395 101.0362) (xy 173.307967 101.0362) (xy 173.307966 101.036199) (xy 173.411768 101.025594) (xy 173.411771 101.025593) (xy 173.579975 100.969857) (xy 173.730789 100.876834) (xy 173.730795 100.876829) (xy 173.856079 100.751545) (xy 173.856084 100.751539) (xy 173.949107 100.600725) (xy 174.004843 100.432521) (xy 174.004844 100.432518) (xy 174.015449 100.328716) (xy 174.01545 100.328716) (xy 174.01545 100.1072) (xy 172.97395 100.1072) (xy 172.97395 101.0362) (xy 172.46595 101.0362) (xy 172.46595 99.5992) (xy 172.97395 99.5992) (xy 174.01545 99.5992) (xy 174.01545 99.377683) (xy 174.004844 99.273881) (xy 174.004843 99.273878) (xy 173.949107 99.105674) (xy 173.856084 98.95486) (xy 173.856079 98.954854) (xy 173.730795 98.82957) (xy 173.730789 98.829565) (xy 173.579975 98.736542) (xy 173.411771 98.680806) (xy 173.411768 98.680805) (xy 173.307966 98.6702) (xy 172.97395 98.6702) (xy 172.97395 99.5992) (xy 172.46595 99.5992) (xy 172.46595 98.670199) (xy 172.432298 98.636547) (xy 172.398272 98.574235) (xy 172.403337 98.50342) (xy 172.429691 98.462412) (xy 172.429555 98.462304) (xy 172.430657 98.460909) (xy 172.432298 98.458357) (xy 172.434102 98.456552) (xy 172.434108 98.456546) (xy 172.525659 98.30812) (xy 172.580512 98.142581) (xy 172.59095 98.040413) (xy 172.590949 97.465988) (xy 172.580512 97.363819) (xy 172.525659 97.19828) (xy 172.455198 97.084046) (xy 172.436461 97.01557) (xy 172.45772 96.947831) (xy 172.46595 96.937809) (xy 172.46595 96.9362) (xy 172.97395 96.9362) (xy 173.307967 96.9362) (xy 173.307966 96.936199) (xy 173.411768 96.925594) (xy 173.411771 96.925593) (xy 173.579975 96.869857) (xy 173.730789 96.776834) (xy 173.730795 96.776829) (xy 173.856079 96.651545) (xy 173.856084 96.651539) (xy 173.949107 96.500725) (xy 174.004843 96.332521) (xy 174.004844 96.332518) (xy 174.015449 96.228716) (xy 174.01545 96.228716) (xy 174.01545 96.0072) (xy 172.97395 96.0072) (xy 172.97395 96.9362) (xy 172.46595 96.9362) (xy 172.46595 96.0072) (xy 171.42445 96.0072) (xy 171.42445 96.228716) (xy 171.435055 96.332518) (xy 171.435056 96.332525) (xy 171.44866 96.373578) (xy 171.4511 96.444533) (xy 171.414791 96.505543) (xy 171.351262 96.537238) (xy 171.280682 96.529555) (xy 171.23996 96.502305) (xy 171.167107 96.429452) (xy 171.133081 96.36714) (xy 171.130855 96.327553) (xy 171.14095 96.228745) (xy 171.140949 95.277683) (xy 171.42445 95.277683) (xy 171.42445 95.4992) (xy 172.46595 95.4992) (xy 172.97395 95.4992) (xy 174.01545 95.4992) (xy 174.01545 95.277683) (xy 174.004844 95.173881) (xy 174.004843 95.173878) (xy 173.949107 95.005674) (xy 173.856084 94.85486) (xy 173.856079 94.854854) (xy 173.730795 94.72957) (xy 173.730789 94.729565) (xy 173.579975 94.636542) (xy 173.411771 94.580806) (xy 173.411768 94.580805) (xy 173.307966 94.5702) (xy 172.97395 94.5702) (xy 172.97395 95.4992) (xy 172.46595 95.4992) (xy 172.46595 94.570199) (xy 172.440719 94.544968) (xy 172.406693 94.482656) (xy 172.411758 94.411841) (xy 172.440719 94.366778) (xy 172.451257 94.356239) (xy 172.451262 94.356233) (xy 172.542751 94.207907) (xy 172.597568 94.042476) (xy 172.597569 94.042473) (xy 172.607999 93.940384) (xy 172.608 93.940384) (xy 172.608 93.9072) (xy 171.8665 93.9072) (xy 171.8665 94.6422) (xy 171.846498 94.710321) (xy 171.792842 94.756814) (xy 171.7405 94.7682) (xy 171.670474 94.7682) (xy 171.58382 94.854854) (xy 171.583815 94.85486) (xy 171.490792 95.005674) (xy 171.435056 95.173878) (xy 171.435055 95.173881) (xy 171.42445 95.277683) (xy 171.140949 95.277683) (xy 171.140949 95.277656) (xy 171.130337 95.173774) (xy 171.074565 95.005462) (xy 170.98148 94.854548) (xy 170.981479 94.854547) (xy 170.981474 94.854541) (xy 170.899624 94.772691) (xy 170.865598 94.710379) (xy 170.870663 94.639564) (xy 170.91321 94.582728) (xy 170.97973 94.557917) (xy 171.038299 94.568725) (xy 171.038327 94.568643) (xy 171.038926 94.568841) (xy 171.041974 94.569404) (xy 171.045288 94.570949) (xy 171.210723 94.625768) (xy 171.210726 94.625769) (xy 171.312815 94.636199) (xy 171.312815 94.6362) (xy 171.3585 94.6362) (xy 171.3585 93.7792) (xy 171.378502 93.711079) (xy 171.432158 93.664586) (xy 171.4845 93.6532) (xy 171.6125 93.6532) (xy 171.6125 93.5252) (xy 171.632502 93.457079) (xy 171.686158 93.410586) (xy 171.7385 93.3992) (xy 172.608 93.3992) (xy 172.608 93.366015) (xy 172.597569 93.263926) (xy 172.597568 93.263923) (xy 172.542751 93.098492) (xy 172.482399 93.000647) (xy 172.463662 92.932168) (xy 172.484921 92.864429) (xy 172.539428 92.818937) (xy 172.58964 92.8085) (xy 172.652969 92.8085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 179.316414 101.478047) (xy 179.317695 101.479311) (xy 179.38037 101.541986) (xy 179.380373 101.541988) (xy 179.380377 101.541992) (xy 179.522423 101.627861) (xy 179.60941 101.654967) (xy 179.668494 101.694328) (xy 179.696919 101.759386) (xy 179.690395 101.8) (xy 178.865182 101.8) (xy 178.95403 101.711152) (xy 178.989504 101.653637) (xy 179.007645 101.630693) (xy 179.080619 101.557721) (xy 179.126664 101.494344) (xy 179.182886 101.450991) (xy 179.253622 101.444916) ) ) (filled_polygon (layer "F.Cu") (pts (xy 111.530858 88.875987) (xy 111.587694 88.918534) (xy 111.612505 88.985054) (xy 111.612438 89.003927) (xy 111.608742 89.05089) (xy 111.595344 89.221134) (xy 111.593481 89.2448) (xy 111.612728 89.489357) (xy 111.669995 89.727892) (xy 111.763873 89.954532) (xy 111.812853 90.03446) (xy 111.872929 90.132497) (xy 111.891467 90.20103) (xy 111.87001 90.268707) (xy 111.841006 90.299198) (xy 111.743896 90.371895) (xy 111.656355 90.488834) (xy 111.656355 90.488835) (xy 111.605305 90.625706) (xy 111.5988 90.686202) (xy 111.5988 91.5308) (xy 112.668362 91.5308) (xy 112.644282 91.572508) (xy 112.6068 91.712391) (xy 112.6068 91.857209) (xy 112.644282 91.997092) (xy 112.668362 92.0388) (xy 111.5988 92.0388) (xy 111.5988 92.883397) (xy 111.605305 92.943893) (xy 111.656355 93.080764) (xy 111.656355 93.080765) (xy 111.743895 93.197704) (xy 111.860834 93.285244) (xy 111.997706 93.336294) (xy 112.058202 93.342799) (xy 112.058215 93.3428) (xy 112.9028 93.3428) (xy 112.9028 92.273238) (xy 112.944508 92.297318) (xy 113.084391 92.3348) (xy 113.229209 92.3348) (xy 113.369092 92.297318) (xy 113.4108 92.273238) (xy 113.4108 93.3428) (xy 114.255385 93.3428) (xy 114.255397 93.342799) (xy 114.315896 93.336294) (xy 114.414179 93.299636) (xy 114.484994 93.29457) (xy 114.547307 93.328595) (xy 114.581332 93.390907) (xy 114.576268 93.461723) (xy 114.547308 93.506786) (xy 113.807301 94.246795) (xy 113.744988 94.28082) (xy 113.718205 94.2837) (xy 113.604959 94.2837) (xy 113.536838 94.263698) (xy 113.497718 94.223846) (xy 113.479031 94.19355) (xy 113.47903 94.193548) (xy 113.479027 94.193545) (xy 113.479024 94.193541) (xy 113.353658 94.068175) (xy 113.353652 94.06817) (xy 113.202738 93.975085) (xy 113.0981 93.940412) (xy 113.034427 93.919313) (xy 113.03442 93.919312) (xy 112.930553 93.9087) (xy 112.329455 93.9087) (xy 112.225574 93.919312) (xy 112.057261 93.975085) (xy 111.906347 94.06817) (xy 111.906341 94.068175) (xy 111.780975 94.193541) (xy 111.78097 94.193547) (xy 111.687885 94.344462) (xy 111.632113 94.512772) (xy 111.632112 94.512779) (xy 111.6215 94.616646) (xy 111.6215 95.217744) (xy 111.632112 95.321625) (xy 111.687885 95.489938) (xy 111.78097 95.640852) (xy 111.780975 95.640858) (xy 111.906341 95.766224) (xy 111.906347 95.766229) (xy 111.906348 95.76623) (xy 111.948809 95.79242) (xy 112.006647 95.828095) (xy 112.054125 95.880881) (xy 112.0665 95.935336) (xy 112.0665 96.850081) (xy 112.046498 96.918202) (xy 112.017892 96.949512) (xy 111.95676 96.997094) (xy 111.956754 96.997099) (xy 111.895755 97.063362) (xy 111.834902 97.099933) (xy 111.763937 97.097798) (xy 111.705392 97.057636) (xy 111.684999 97.022057) (xy 111.652975 96.936199) (xy 111.640889 96.903796) (xy 111.640888 96.903794) (xy 111.640887 96.903792) (xy 111.553261 96.786738) (xy 111.436207 96.699112) (xy 111.436202 96.69911) (xy 111.299204 96.648011) (xy 111.299196 96.648009) (xy 111.238649 96.6415) (xy 111.238638 96.6415) (xy 109.5345 96.6415) (xy 109.466379 96.621498) (xy 109.419886 96.567842) (xy 109.4085 96.5155) (xy 109.4085 95.983982) (xy 109.428502 95.915861) (xy 109.482158 95.869368) (xy 109.552432 95.859264) (xy 109.574133 95.864377) (xy 109.725678 95.914593) (xy 109.725681 95.914594) (xy 109.829483 95.925199) (xy 109.829483 95.9252) (xy 109.876 95.9252) (xy 110.384 95.9252) (xy 110.430517 95.9252) (xy 110.430516 95.925199) (xy 110.534318 95.914594) (xy 110.534321 95.914593) (xy 110.702525 95.858857) (xy 110.853339 95.765834) (xy 110.853345 95.765829) (xy 110.978629 95.640545) (xy 110.978634 95.640539) (xy 111.071657 95.489725) (xy 111.127393 95.321521) (xy 111.127394 95.321518) (xy 111.137999 95.217716) (xy 111.138 95.217716) (xy 111.138 95.1712) (xy 110.384 95.1712) (xy 110.384 95.9252) (xy 109.876 95.9252) (xy 109.876 94.6632) (xy 110.384 94.6632) (xy 111.138 94.6632) (xy 111.138 94.616683) (xy 111.127394 94.512881) (xy 111.127393 94.512878) (xy 111.071657 94.344674) (xy 110.978634 94.19386) (xy 110.978629 94.193854) (xy 110.853345 94.06857) (xy 110.853339 94.068565) (xy 110.702525 93.975542) (xy 110.534321 93.919806) (xy 110.534318 93.919805) (xy 110.430516 93.9092) (xy 110.384 93.9092) (xy 110.384 94.6632) (xy 109.876 94.6632) (xy 109.876 93.9092) (xy 109.829483 93.9092) (xy 109.725681 93.919805) (xy 109.725674 93.919806) (xy 109.574132 93.970022) (xy 109.503178 93.972462) (xy 109.442168 93.936153) (xy 109.410472 93.872624) (xy 109.4085 93.850417) (xy 109.4085 90.94637) (xy 109.428502 90.878249) (xy 109.4454 90.85728) (xy 111.397733 88.904946) (xy 111.460043 88.870923) ) ) (filled_polygon (layer "F.Cu") (pts (xy 142.87277 86.484776) (xy 142.917833 86.513737) (xy 143.609595 87.205499) (xy 143.643621 87.267811) (xy 143.6465 87.294594) (xy 143.6465 92.616404) (xy 143.626498 92.684525) (xy 143.572842 92.731018) (xy 143.502568 92.741122) (xy 143.437988 92.711628) (xy 143.431405 92.7055) (xy 143.111743 92.385839) (xy 143.003833 92.277929) (xy 142.900075 92.2086) (xy 142.826281 92.178033) (xy 142.771001 92.133486) (xy 142.74858 92.066122) (xy 142.7485 92.061625) (xy 142.7485 91.871367) (xy 142.748499 91.87135) (xy 142.74199 91.810803) (xy 142.741988 91.810795) (xy 142.690889 91.673797) (xy 142.690889 91.673796) (xy 142.626288 91.5875) (xy 142.617311 91.575507) (xy 142.592501 91.508989) (xy 142.607592 91.439615) (xy 142.617306 91.424497) (xy 142.690889 91.326204) (xy 142.741989 91.189201) (xy 142.747607 91.136951) (xy 142.748499 91.128649) (xy 142.7485 91.128632) (xy 142.7485 89.331367) (xy 142.748499 89.33135) (xy 142.74199 89.270803) (xy 142.741988 89.270795) (xy 142.6944 89.143209) (xy 142.690889 89.133796) (xy 142.617311 89.035507) (xy 142.592501 88.968989) (xy 142.607592 88.899615) (xy 142.617306 88.884497) (xy 142.690889 88.786204) (xy 142.741989 88.649201) (xy 142.743447 88.635646) (xy 142.748499 88.588649) (xy 142.7485 88.588632) (xy 142.7485 86.791367) (xy 142.748499 86.79135) (xy 142.74199 86.730803) (xy 142.741988 86.730795) (xy 142.710683 86.646865) (xy 142.705617 86.57605) (xy 142.739642 86.513737) (xy 142.801954 86.479712) ) ) (filled_polygon (layer "F.Cu") (pts (xy 149.803064 86.459134) (xy 149.819753 86.473157) (xy 150.351249 87.004653) (xy 150.385275 87.066965) (xy 150.38021 87.13778) (xy 150.35125 87.182843) (xy 149.979501 87.554595) (xy 149.917189 87.58862) (xy 149.890405 87.5915) (xy 149.834511 87.5915) (xy 149.750097 87.609442) (xy 149.679306 87.604039) (xy 149.622674 87.561222) (xy 149.598181 87.494584) (xy 149.602742 87.458853) (xy 149.601128 87.458508) (xy 149.602569 87.451773) (xy 149.612999 87.349684) (xy 149.613 87.349684) (xy 149.613 87.254) (xy 148.884 87.254) (xy 148.884 88.0455) (xy 148.917178 88.0455) (xy 148.937058 88.043468) (xy 149.006859 88.05644) (xy 149.058567 88.10509) (xy 149.075764 88.173972) (xy 149.069703 88.207751) (xy 149.036457 88.31007) (xy 149.016496 88.5) (xy 149.036457 88.689927) (xy 149.056862 88.752726) (xy 149.095473 88.871556) (xy 149.095474 88.871557) (xy 149.095476 88.871561) (xy 149.12996 88.93129) (xy 149.146698 89.000286) (xy 149.123477 89.067378) (xy 149.078264 89.104351) (xy 149.078972 89.105577) (xy 149.073248 89.108882) (xy 148.918744 89.221135) (xy 148.790965 89.363048) (xy 148.790958 89.363058) (xy 148.695476 89.528438) (xy 148.695473 89.528445) (xy 148.636457 89.710072) (xy 148.619092 89.875292) (xy 148.592079 89.940949) (xy 148.582878 89.951216) (xy 148.528596 90.005499) (xy 148.466284 90.039524) (xy 148.395469 90.03446) (xy 148.338632 89.991914) (xy 148.313821 89.925394) (xy 148.3135 89.916404) (xy 148.3135 88.160191) (xy 148.333502 88.09207) (xy 148.350405 88.071096) (xy 148.376 88.045501) (xy 148.376 87.126) (xy 148.396002 87.057879) (xy 148.449658 87.011386) (xy 148.502 87) (xy 148.63 87) (xy 148.63 86.872) (xy 148.650002 86.803879) (xy 148.703658 86.757386) (xy 148.756 86.746) (xy 149.613 86.746) (xy 149.613 86.650315) (xy 149.605311 86.575059) (xy 149.618285 86.505258) (xy 149.666937 86.453552) (xy 149.73582 86.436358) ) ) (filled_polygon (layer "F.Cu") (pts (xy 153.360417 73.890368) (xy 153.40548 73.919329) (xy 154.159156 74.673005) (xy 154.193182 74.735317) (xy 154.188117 74.806132) (xy 154.14557 74.862968) (xy 154.07905 74.887779) (xy 154.070061 74.8881) (xy 153.2392 74.8881) (xy 153.2392 77.7041) (xy 154.535717 77.7041) (xy 154.535716 77.704099) (xy 154.639518 77.693494) (xy 154.639523 77.693493) (xy 154.67981 77.680143) (xy 154.750764 77.677701) (xy 154.811775 77.714008) (xy 154.839049 77.760113) (xy 154.861447 77.827704) (xy 154.952937 77.976033) (xy 154.952942 77.976039) (xy 155.07616 78.099257) (xy 155.076166 78.099262) (xy 155.224492 78.190751) (xy 155.389923 78.245568) (xy 155.389926 78.245569) (xy 155.492015 78.255999) (xy 155.492015 78.256) (xy 155.5252 78.256) (xy 155.5252 77.3365) (xy 155.545202 77.268379) (xy 155.598858 77.221886) (xy 155.6512 77.2105) (xy 155.9072 77.2105) (xy 155.975321 77.230502) (xy 156.021814 77.284158) (xy 156.0332 77.3365) (xy 156.0332 78.256) (xy 156.066385 78.256) (xy 156.066384 78.255999) (xy 156.168473 78.245569) (xy 156.168476 78.245568) (xy 156.333907 78.190751) (xy 156.488479 78.09541) (xy 156.489421 78.096938) (xy 156.546578 78.073874) (xy 156.616329 78.087118) (xy 156.647996 78.110175) (xy 157.837236 79.299416) (xy 157.837241 79.29942) (xy 157.837243 79.299422) (xy 157.837244 79.299423) (xy 157.837246 79.299424) (xy 157.870671 79.318722) (xy 157.975997 79.379532) (xy 157.976003 79.379533) (xy 157.976004 79.379534) (xy 158.018154 79.390828) (xy 158.018155 79.390828) (xy 158.130759 79.421) (xy 158.13076 79.421) (xy 158.235815 79.421) (xy 158.303936 79.441002) (xy 158.350429 79.494658) (xy 158.361162 79.559806) (xy 158.352 79.649481) (xy 158.352 79.696) (xy 159.234 79.696) (xy 159.302121 79.716002) (xy 159.348614 79.769658) (xy 159.36 79.822) (xy 159.36 80.078) (xy 159.339998 80.146121) (xy 159.286342 80.192614) (xy 159.234 80.204) (xy 158.352 80.204) (xy 158.352 80.250516) (xy 158.362605 80.354318) (xy 158.362606 80.354321) (xy 158.418342 80.522525) (xy 158.511365 80.673339) (xy 158.51137 80.673345) (xy 158.636654 80.798629) (xy 158.63666 80.798634) (xy 158.787474 80.891657) (xy 158.891245 80.926043) (xy 158.949616 80.966457) (xy 158.976872 81.032014) (xy 158.964359 81.101899) (xy 158.940707 81.134743) (xy 158.873083 81.202366) (xy 158.873075 81.202376) (xy 158.79297 81.341121) (xy 158.792968 81.341125) (xy 158.792968 81.341127) (xy 158.783058 81.378113) (xy 158.772772 81.4165) (xy 158.753524 81.488335) (xy 158.716572 81.548957) (xy 158.697965 81.562963) (xy 158.63635 81.600968) (xy 158.636341 81.600975) (xy 158.510975 81.726341) (xy 158.51097 81.726347) (xy 158.417885 81.877262) (xy 158.362113 82.045572) (xy 158.362112 82.045579) (xy 158.3515 82.149446) (xy 158.3515 82.750544) (xy 158.362113 82.854427) (xy 158.362113 82.854429) (xy 158.367859 82.871769) (xy 158.370298 82.942723) (xy 158.33399 83.003733) (xy 158.27046 83.035428) (xy 158.248254 83.0374) (xy 157.566703 83.0374) (xy 157.444314 83.061745) (xy 157.444309 83.061747) (xy 157.332848 83.107916) (xy 157.329029 83.109497) (xy 157.329026 83.109499) (xy 157.225271 83.178826) (xy 157.225264 83.178831) (xy 156.307931 84.096164) (xy 156.307926 84.096171) (xy 156.244698 84.190799) (xy 156.2386 84.199925) (xy 156.190845 84.315215) (xy 156.185248 84.343353) (xy 156.1665 84.437603) (xy 156.1665 86.685406) (xy 156.146498 86.753527) (xy 156.129595 86.774501) (xy 154.874501 88.029595) (xy 154.812189 88.063621) (xy 154.785406 88.0665) (xy 154.527 88.0665) (xy 154.458879 88.046498) (xy 154.412386 87.992842) (xy 154.401 87.9405) (xy 154.401 86.751367) (xy 154.400999 86.75135) (xy 154.39449 86.690803) (xy 154.394488 86.690795) (xy 154.357452 86.5915) (xy 154.343389 86.553796) (xy 154.343388 86.553794) (xy 154.343387 86.553792) (xy 154.255761 86.436738) (xy 154.138707 86.349112) (xy 154.138702 86.34911) (xy 154.001704 86.298011) (xy 154.001696 86.298009) (xy 153.941149 86.2915) (xy 153.941138 86.2915) (xy 153.379439 86.2915) (xy 153.311318 86.271498) (xy 153.264825 86.217842) (xy 153.254721 86.147568) (xy 153.284215 86.082988) (xy 153.30393 86.064632) (xy 153.305761 86.063261) (xy 153.393387 85.946207) (xy 153.393387 85.946206) (xy 153.393389 85.946204) (xy 153.444489 85.809201) (xy 153.446994 85.785907) (xy 153.450999 85.748649) (xy 153.451 85.748632) (xy 153.451 84.551367) (xy 153.450999 84.55135) (xy 153.44449 84.490803) (xy 153.444488 84.490795) (xy 153.415424 84.412875) (xy 153.393389 84.353796) (xy 153.393388 84.353794) (xy 153.393387 84.353792) (xy 153.305762 84.23674) (xy 153.305759 84.236738) (xy 153.268546 84.20888) (xy 153.20149 84.158682) (xy 153.158944 84.101846) (xy 153.151 84.057814) (xy 153.151 82.157814) (xy 153.171002 82.089693) (xy 153.210853 82.050573) (xy 153.218854 82.045638) (xy 153.274152 82.01153) (xy 153.39953 81.886152) (xy 153.492615 81.735238) (xy 153.548387 81.566926) (xy 153.559 81.463045) (xy 153.559 81.463016) (xy 154.0425 81.463016) (xy 154.053105 81.566818) (xy 154.053106 81.566821) (xy 154.108842 81.735025) (xy 154.201865 81.885839) (xy 154.20187 81.885845) (xy 154.327154 82.011129) (xy 154.32716 82.011134) (xy 154.477974 82.104157) (xy 154.646178 82.159893) (xy 154.646181 82.159894) (xy 154.749983 82.170499) (xy 154.749983 82.1705) (xy 154.7965 82.1705) (xy 155.3045 82.1705) (xy 155.351017 82.1705) (xy 155.351016 82.170499) (xy 155.454818 82.159894) (xy 155.454821 82.159893) (xy 155.623025 82.104157) (xy 155.773839 82.011134) (xy 155.773845 82.011129) (xy 155.899129 81.885845) (xy 155.899134 81.885839) (xy 155.992157 81.735025) (xy 156.047893 81.566821) (xy 156.047894 81.566818) (xy 156.058499 81.463016) (xy 156.0585 81.463016) (xy 156.0585 81.4165) (xy 155.3045 81.4165) (xy 155.3045 82.1705) (xy 154.7965 82.1705) (xy 154.7965 81.4165) (xy 154.0425 81.4165) (xy 154.0425 81.463016) (xy 153.559 81.463016) (xy 153.558999 80.861983) (xy 154.0425 80.861983) (xy 154.0425 80.9085) (xy 154.7965 80.9085) (xy 155.3045 80.9085) (xy 156.0585 80.9085) (xy 156.0585 80.861983) (xy 156.047894 80.758181) (xy 156.047893 80.758178) (xy 155.992157 80.589974) (xy 155.899134 80.43916) (xy 155.899129 80.439154) (xy 155.773845 80.31387) (xy 155.773839 80.313865) (xy 155.623025 80.220842) (xy 155.454821 80.165106) (xy 155.454818 80.165105) (xy 155.351016 80.1545) (xy 155.3045 80.1545) (xy 155.3045 80.9085) (xy 154.7965 80.9085) (xy 154.7965 80.1545) (xy 154.749983 80.1545) (xy 154.646181 80.165105) (xy 154.646178 80.165106) (xy 154.477974 80.220842) (xy 154.32716 80.313865) (xy 154.327154 80.31387) (xy 154.20187 80.439154) (xy 154.201865 80.43916) (xy 154.108842 80.589974) (xy 154.053106 80.758178) (xy 154.053105 80.758181) (xy 154.0425 80.861983) (xy 153.558999 80.861983) (xy 153.558999 80.861956) (xy 153.557767 80.8499) (xy 153.548387 80.758074) (xy 153.526257 80.69129) (xy 153.492615 80.589762) (xy 153.39953 80.438848) (xy 153.399529 80.438847) (xy 153.399524 80.438841) (xy 153.274158 80.313475) (xy 153.274154 80.313472) (xy 153.274152 80.31347) (xy 153.274146 80.313466) (xy 153.203644 80.269979) (xy 153.156166 80.217193) (xy 153.148082 80.19534) (xy 153.147053 80.191501) (xy 153.117532 80.081327) (xy 153.072887 80.004) (xy 153.037423 79.942575) (xy 153.037415 79.942565) (xy 151.020433 77.925583) (xy 151.020423 77.925575) (xy 150.881677 77.84547) (xy 150.881674 77.845469) (xy 150.881673 77.845468) (xy 150.881671 77.845467) (xy 150.88167 77.845467) (xy 150.754528 77.8114) (xy 150.754528 77.811399) (xy 150.726911 77.804) (xy 149.983447 77.804) (xy 149.915326 77.783998) (xy 149.868833 77.730342) (xy 149.858729 77.660068) (xy 149.888223 77.595488) (xy 149.917297 77.570761) (xy 149.958852 77.54513) (xy 150.08423 77.419752) (xy 150.177315 77.268838) (xy 150.233087 77.100526) (xy 150.2437 76.996645) (xy 150.243699 76.955109) (xy 150.2637 76.88699) (xy 150.280595 76.866022) (xy 150.512107 76.63451) (xy 150.574417 76.600487) (xy 150.645233 76.605552) (xy 150.702068 76.648099) (xy 150.726879 76.71462) (xy 150.7272 76.723608) (xy 150.7272 76.996616) (xy 150.737805 77.100418) (xy 150.737806 77.100421) (xy 150.793542 77.268625) (xy 150.886565 77.419439) (xy 150.88657 77.419445) (xy 151.011854 77.544729) (xy 151.01186 77.544734) (xy 151.162674 77.637757) (xy 151.330878 77.693493) (xy 151.330881 77.693494) (xy 151.434683 77.704099) (xy 151.434683 77.7041) (xy 152.7312 77.7041) (xy 152.7312 74.8881) (xy 152.562709 74.8881) (xy 152.494588 74.868098) (xy 152.448095 74.814442) (xy 152.437991 74.744168) (xy 152.467485 74.679588) (xy 152.473614 74.673005) (xy 153.22729 73.919329) (xy 153.289602 73.885303) ) ) (filled_polygon (layer "F.Cu") (pts (xy 150.410682 79.041002) (xy 150.431656 79.057905) (xy 151.673417 80.299666) (xy 151.707443 80.361978) (xy 151.702378 80.432793) (xy 151.691563 80.454907) (xy 151.615023 80.579) (xy 151.608385 80.589762) (xy 151.593654 80.634218) (xy 151.552613 80.758072) (xy 151.552612 80.758079) (xy 151.542 80.861946) (xy 151.542 81.463044) (xy 151.552612 81.566925) (xy 151.608385 81.735238) (xy 151.70147 81.886152) (xy 151.701475 81.886158) (xy 151.826841 82.011524) (xy 151.826847 82.011529) (xy 151.826848 82.01153) (xy 151.874147 82.040704) (xy 151.921625 82.09349) (xy 151.934 82.147945) (xy 151.934 84.057814) (xy 151.913998 84.125935) (xy 151.88351 84.158682) (xy 151.779237 84.23674) (xy 151.691612 84.353792) (xy 151.69161 84.353797) (xy 151.640511 84.490795) (xy 151.640509 84.490803) (xy 151.634 84.55135) (xy 151.634 85.748649) (xy 151.640509 85.809196) (xy 151.640511 85.809204) (xy 151.69161 85.946202) (xy 151.691612 85.946207) (xy 151.779238 86.063261) (xy 151.78107 86.064632) (xy 151.782442 86.066465) (xy 151.785611 86.069634) (xy 151.785155 86.070089) (xy 151.823617 86.121467) (xy 151.828682 86.192283) (xy 151.794656 86.254595) (xy 151.732344 86.288621) (xy 151.705561 86.2915) (xy 151.482094 86.2915) (xy 151.413973 86.271498) (xy 151.392999 86.254595) (xy 150.020398 84.881994) (xy 149.986372 84.819682) (xy 149.991437 84.748867) (xy 150.033984 84.692031) (xy 150.100504 84.66722) (xy 150.109493 84.666899) (xy 150.291612 84.666899) (xy 150.393781 84.656462) (xy 150.55932 84.601609) (xy 150.707746 84.510058) (xy 150.831058 84.386746) (xy 150.922609 84.23832) (xy 150.977462 84.072781) (xy 150.9879 83.970613) (xy 150.987899 83.371188) (xy 150.977462 83.269019) (xy 150.922609 83.10348) (xy 150.831058 82.955054) (xy 150.831057 82.955053) (xy 150.831052 82.955047) (xy 150.7235 82.847495) (xy 150.689474 82.785183) (xy 150.694539 82.714368) (xy 150.7235 82.669305) (xy 150.831052 82.561752) (xy 150.831058 82.561746) (xy 150.922609 82.41332) (xy 150.977462 82.247781) (xy 150.9879 82.145613) (xy 150.987899 81.546188) (xy 150.979405 81.463044) (xy 150.977462 81.444019) (xy 150.961668 81.396355) (xy 150.922609 81.27848) (xy 150.831058 81.130054) (xy 150.831057 81.130053) (xy 150.831052 81.130047) (xy 150.707752 81.006747) (xy 150.707746 81.006742) (xy 150.682414 80.991117) (xy 150.55932 80.915191) (xy 150.393781 80.860338) (xy 150.393779 80.860337) (xy 150.393777 80.860337) (xy 150.291621 80.8499) (xy 150.291613 80.8499) (xy 149.985686 80.8499) (xy 149.917565 80.829898) (xy 149.871072 80.776242) (xy 149.860968 80.705968) (xy 149.863979 80.69129) (xy 149.868489 80.674456) (xy 149.8752 80.649411) (xy 149.8752 79.452289) (xy 149.837179 79.310393) (xy 149.837179 79.310391) (xy 149.833733 79.297531) (xy 149.833732 79.297527) (xy 149.783198 79.21) (xy 149.76646 79.141005) (xy 149.78968 79.073913) (xy 149.845487 79.030026) (xy 149.892317 79.021) (xy 150.342561 79.021) ) ) (filled_polygon (layer "F.Cu") (pts (xy 161.251954 79.138001) (xy 161.28599 79.162239) (xy 163.101395 80.977644) (xy 163.135421 81.039956) (xy 163.1383 81.066739) (xy 163.1383 81.463044) (xy 163.148912 81.566925) (xy 163.204685 81.735238) (xy 163.29777 81.886152) (xy 163.297775 81.886158) (xy 163.423141 82.011524) (xy 163.423145 82.011527) (xy 163.423148 82.01153) (xy 163.42315 82.011531) (xy 163.478446 82.045638) (xy 163.525925 82.098423) (xy 163.5383 82.152879) (xy 163.5383 83.9655) (xy 163.518298 84.033621) (xy 163.464642 84.080114) (xy 163.4123 84.0915) (xy 163.34385 84.0915) (xy 163.283303 84.098009) (xy 163.283295 84.098011) (xy 163.146297 84.14911) (xy 163.146292 84.149112) (xy 163.029238 84.236738) (xy 162.941612 84.353792) (xy 162.94161 84.353797) (xy 162.890511 84.490795) (xy 162.890509 84.490803) (xy 162.884 84.55135) (xy 162.884 85.748649) (xy 162.890509 85.809196) (xy 162.890511 85.809204) (xy 162.94161 85.946202) (xy 162.941612 85.946207) (xy 163.029238 86.063261) (xy 163.03107 86.064632) (xy 163.032442 86.066465) (xy 163.035611 86.069634) (xy 163.035155 86.070089) (xy 163.073617 86.121467) (xy 163.078682 86.192283) (xy 163.044656 86.254595) (xy 162.982344 86.288621) (xy 162.955561 86.2915) (xy 162.732094 86.2915) (xy 162.663973 86.271498) (xy 162.642999 86.254595) (xy 161.270398 84.881994) (xy 161.236372 84.819682) (xy 161.241437 84.748867) (xy 161.283984 84.692031) (xy 161.350504 84.66722) (xy 161.359485 84.666899) (xy 161.518412 84.666899) (xy 161.620581 84.656462) (xy 161.78612 84.601609) (xy 161.934546 84.510058) (xy 162.057858 84.386746) (xy 162.149409 84.23832) (xy 162.204262 84.072781) (xy 162.2147 83.970613) (xy 162.214699 83.371188) (xy 162.204262 83.269019) (xy 162.149409 83.10348) (xy 162.057858 82.955054) (xy 162.057857 82.955053) (xy 162.057852 82.955047) (xy 161.9503 82.847495) (xy 161.916274 82.785183) (xy 161.921339 82.714368) (xy 161.9503 82.669305) (xy 162.057852 82.561752) (xy 162.057858 82.561746) (xy 162.149409 82.41332) (xy 162.204262 82.247781) (xy 162.2147 82.145613) (xy 162.214699 81.546188) (xy 162.206205 81.463044) (xy 162.204262 81.444019) (xy 162.188468 81.396355) (xy 162.149409 81.27848) (xy 162.057858 81.130054) (xy 162.057857 81.130053) (xy 162.057852 81.130047) (xy 161.934552 81.006747) (xy 161.934546 81.006742) (xy 161.909214 80.991117) (xy 161.78612 80.915191) (xy 161.620581 80.860338) (xy 161.620579 80.860337) (xy 161.620577 80.860337) (xy 161.518421 80.8499) (xy 161.518413 80.8499) (xy 161.186136 80.8499) (xy 161.118015 80.829898) (xy 161.071522 80.776242) (xy 161.061418 80.705968) (xy 161.074318 80.668693) (xy 161.07387 80.668508) (xy 161.076987 80.66098) (xy 161.077014 80.660904) (xy 161.077032 80.660872) (xy 161.089547 80.614165) (xy 161.096086 80.58976) (xy 161.1185 80.506111) (xy 161.1185 79.445589) (xy 161.084506 79.318722) (xy 161.077032 79.290827) (xy 161.075187 79.28394) (xy 161.076879 79.212964) (xy 161.116676 79.15417) (xy 161.181941 79.126224) ) ) (filled_polygon (layer "F.Cu") (pts (xy 142.956512 71.999647) (xy 142.963095 72.005776) (xy 143.934595 72.977276) (xy 143.968621 73.039588) (xy 143.9715 73.066371) (xy 143.9715 80.099707) (xy 143.99487 80.217193) (xy 144.000649 80.246247) (xy 144.057826 80.384284) (xy 144.140834 80.508515) (xy 144.140838 80.508519) (xy 145.309595 81.677276) (xy 145.343621 81.739588) (xy 145.3465 81.76637) (xy 145.3465 81.974712) (xy 145.356937 82.07688) (xy 145.388901 82.173342) (xy 145.411791 82.24242) (xy 145.503342 82.390846) (xy 145.534595 82.422099) (xy 145.56862 82.484409) (xy 145.5715 82.511194) (xy 145.5715 82.962999) (xy 145.554619 83.025999) (xy 145.495476 83.128438) (xy 145.495473 83.128445) (xy 145.436457 83.310072) (xy 145.416496 83.5) (xy 145.436457 83.689927) (xy 145.454948 83.746835) (xy 145.495473 83.871556) (xy 145.495476 83.871561) (xy 145.590958 84.036941) (xy 145.590965 84.036951) (xy 145.649118 84.101536) (xy 145.679836 84.165543) (xy 145.671071 84.235997) (xy 145.644578 84.274941) (xy 145.576167 84.343353) (xy 145.487927 84.431593) (xy 145.487926 84.431595) (xy 145.418601 84.535347) (xy 145.371099 84.650027) (xy 145.370845 84.650639) (xy 145.367547 84.66722) (xy 145.3465 84.773027) (xy 145.3465 85.41001) (xy 145.326498 85.478131) (xy 145.272842 85.524624) (xy 145.202568 85.534728) (xy 145.137988 85.505234) (xy 145.131405 85.499105) (xy 143.700405 84.068105) (xy 143.666379 84.005793) (xy 143.6635 83.97901) (xy 143.6635 79.297607) (xy 143.663499 79.297603) (xy 143.663484 79.297527) (xy 143.639155 79.175215) (xy 143.5914 79.059925) (xy 143.522071 78.956167) (xy 143.433833 78.867929) (xy 142.785405 78.219501) (xy 142.751379 78.157189) (xy 142.7485 78.130406) (xy 142.7485 76.631367) (xy 142.748499 76.63135) (xy 142.74199 76.570803) (xy 142.741988 76.570795) (xy 142.706758 76.476341) (xy 142.690889 76.433796) (xy 142.617311 76.335507) (xy 142.592501 76.268989) (xy 142.607592 76.199615) (xy 142.617306 76.184497) (xy 142.690889 76.086204) (xy 142.741989 75.949201) (xy 142.742581 75.9437) (xy 142.748499 75.888649) (xy 142.7485 75.888632) (xy 142.7485 74.091367) (xy 142.748499 74.09135) (xy 142.74199 74.030803) (xy 142.741988 74.030795) (xy 142.700025 73.918291) (xy 142.690889 73.893796) (xy 142.690888 73.893794) (xy 142.690887 73.893792) (xy 142.617 73.795091) (xy 142.592189 73.728571) (xy 142.60728 73.659197) (xy 142.617001 73.644072) (xy 142.690443 73.545966) (xy 142.690444 73.545964) (xy 142.741494 73.409093) (xy 142.747999 73.348597) (xy 142.748 73.348585) (xy 142.748 72.704) (xy 140.032251 72.704) (xy 140.065245 72.646853) (xy 140.1 72.517143) (xy 140.1 72.382857) (xy 140.065245 72.253147) (xy 140.032251 72.196) (xy 142.748 72.196) (xy 142.748 72.094871) (xy 142.768002 72.02675) (xy 142.821658 71.980257) (xy 142.891932 71.970153) ) ) (filled_polygon (layer "F.Cu") (pts (xy 118.730103 66.020502) (xy 118.776596 66.074158) (xy 118.7867 66.144432) (xy 118.76285 66.202009) (xy 118.709112 66.273792) (xy 118.70911 66.273797) (xy 118.658011 66.410795) (xy 118.658009 66.410803) (xy 118.6515 66.47135) (xy 118.6515 68.268649) (xy 118.658009 68.329196) (xy 118.658011 68.329204) (xy 118.70911 68.466202) (xy 118.709112 68.466207) (xy 118.782687 68.564491) (xy 118.807498 68.631011) (xy 118.792407 68.700385) (xy 118.782687 68.715509) (xy 118.709112 68.813792) (xy 118.70911 68.813797) (xy 118.658011 68.950795) (xy 118.658009 68.950803) (xy 118.6515 69.01135) (xy 118.6515 70.808649) (xy 118.658009 70.869196) (xy 118.658011 70.869204) (xy 118.70911 71.006202) (xy 118.709112 71.006207) (xy 118.782999 71.104907) (xy 118.80781 71.171427) (xy 118.792719 71.240801) (xy 118.783 71.255924) (xy 118.709555 71.354035) (xy 118.658505 71.490906) (xy 118.652 71.551402) (xy 118.652 72.196) (xy 121.367749 72.196) (xy 121.334755 72.253147) (xy 121.3 72.382857) (xy 121.3 72.517143) (xy 121.334755 72.646853) (xy 121.367749 72.704) (xy 118.652 72.704) (xy 118.652 73.348597) (xy 118.658505 73.409093) (xy 118.709555 73.545964) (xy 118.709556 73.545966) (xy 118.782999 73.644072) (xy 118.807811 73.710592) (xy 118.79272 73.779966) (xy 118.783 73.795091) (xy 118.709112 73.893792) (xy 118.70911 73.893797) (xy 118.658011 74.030795) (xy 118.658009 74.030803) (xy 118.6515 74.09135) (xy 118.6515 75.230405) (xy 118.631498 75.298526) (xy 118.614595 75.3195) (xy 117.354501 76.579595) (xy 117.292189 76.61362) (xy 117.265406 76.6165) (xy 116.6058 76.6165) (xy 116.537679 76.596498) (xy 116.498559 76.556647) (xy 116.490729 76.543952) (xy 116.44903 76.476348) (xy 116.449029 76.476347) (xy 116.449024 76.476341) (xy 116.323658 76.350975) (xy 116.323652 76.35097) (xy 116.298586 76.335509) (xy 116.172738 76.257885) (xy 116.007891 76.203261) (xy 116.004427 76.202113) (xy 116.00442 76.202112) (xy 115.900553 76.1915) (xy 115.299455 76.1915) (xy 115.195574 76.202112) (xy 115.027261 76.257885) (xy 114.876347 76.35097) (xy 114.876341 76.350975) (xy 114.750975 76.476341) (xy 114.75097 76.476347) (xy 114.657885 76.627262) (xy 114.602113 76.795572) (xy 114.602112 76.795579) (xy 114.5915 76.899446) (xy 114.5915 77.292959) (xy 114.571498 77.36108) (xy 114.554596 77.382054) (xy 113.714856 78.221795) (xy 113.652543 78.25582) (xy 113.62576 78.2587) (xy 113.256033 78.2587) (xy 113.187912 78.238698) (xy 113.141419 78.185042) (xy 113.130422 78.122812) (xy 113.132458 78.096938) (xy 113.133499 78.083711) (xy 113.1335 78.083711) (xy 113.1335 77.650689) (xy 113.133499 77.650688) (xy 113.132517 77.638215) (xy 113.130562 77.613369) (xy 113.084145 77.453599) (xy 113.070689 77.430847) (xy 113.05323 77.362032) (xy 113.07069 77.302568) (xy 113.08368 77.280602) (xy 113.129993 77.1212) (xy 112.795071 77.1212) (xy 112.745035 77.110839) (xy 112.738604 77.108056) (xy 112.7236 77.103697) (xy 112.701117 77.097165) (xy 112.578829 77.061637) (xy 112.541511 77.0587) (xy 112.541502 77.0587) (xy 111.158498 77.0587) (xy 111.158489 77.0587) (xy 111.121171 77.061637) (xy 111.121167 77.061638) (xy 110.976398 77.103697) (xy 110.941246 77.1087) (xy 110.78529 77.1087) (xy 110.734624 77.118779) (xy 110.710042 77.1212) (xy 110.570006 77.1212) (xy 110.540623 77.160335) (xy 110.505251 77.190671) (xy 110.505863 77.191587) (xy 110.376486 77.278033) (xy 110.37648 77.278038) (xy 109.640838 78.01368) (xy 109.640833 78.013686) (xy 109.557826 78.137916) (xy 109.500648 78.275954) (xy 109.500646 78.275959) (xy 109.491665 78.321118) (xy 109.491665 78.32112) (xy 109.4715 78.422493) (xy 109.4715 80.30047) (xy 109.451498 80.368591) (xy 109.397842 80.415084) (xy 109.327568 80.425188) (xy 109.262988 80.395694) (xy 109.23826 80.366618) (xy 109.224031 80.343549) (xy 109.224024 80.343541) (xy 109.098658 80.218175) (xy 109.098652 80.21817) (xy 109.055442 80.191518) (xy 108.947738 80.125085) (xy 108.863582 80.097199) (xy 108.779427 80.069313) (xy 108.77942 80.069312) (xy 108.675553 80.0587) (xy 107.274455 80.0587) (xy 107.170572 80.069313) (xy 107.17057 80.069313) (xy 107.166126 80.070786) (xy 107.095171 80.073222) (xy 107.034163 80.03691) (xy 107.002471 79.973379) (xy 107.0005 79.951179) (xy 107.0005 76.783219) (xy 107.020502 76.715098) (xy 107.074158 76.668605) (xy 107.144432 76.658501) (xy 107.166124 76.663612) (xy 107.170574 76.665087) (xy 107.274455 76.6757) (xy 108.675544 76.675699) (xy 108.779426 76.665087) (xy 108.936014 76.6132) (xy 110.570007 76.6132) (xy 111.596 76.6132) (xy 112.104 76.6132) (xy 113.129992 76.6132) (xy 113.083681 76.453798) (xy 112.999051 76.310698) (xy 112.99905 76.310696) (xy 112.881503 76.193149) (xy 112.881501 76.193148) (xy 112.738401 76.108518) (xy 112.578748 76.062134) (xy 112.57875 76.062134) (xy 112.541456 76.0592) (xy 112.104 76.0592) (xy 112.104 76.6132) (xy 111.596 76.6132) (xy 111.596 76.0592) (xy 111.158544 76.0592) (xy 111.121249 76.062134) (xy 110.961599 76.108518) (xy 110.818498 76.193148) (xy 110.818496 76.193149) (xy 110.700949 76.310696) (xy 110.700948 76.310698) (xy 110.616318 76.453798) (xy 110.570007 76.6132) (xy 108.936014 76.6132) (xy 108.947738 76.609315) (xy 109.098652 76.51623) (xy 109.22403 76.390852) (xy 109.317115 76.239938) (xy 109.372887 76.071626) (xy 109.3835 75.967745) (xy 109.383499 75.166656) (xy 109.379595 75.128444) (xy 109.372887 75.062774) (xy 109.365671 75.040998) (xy 109.352257 75.000516) (xy 114.592 75.000516) (xy 114.602605 75.104318) (xy 114.602606 75.104321) (xy 114.658342 75.272525) (xy 114.751365 75.423339) (xy 114.75137 75.423345) (xy 114.876654 75.548629) (xy 114.87666 75.548634) (xy 115.027474 75.641657) (xy 115.195678 75.697393) (xy 115.195681 75.697394) (xy 115.299483 75.707999) (xy 115.299483 75.708) (xy 115.346 75.708) (xy 115.854 75.708) (xy 115.900517 75.708) (xy 115.900516 75.707999) (xy 116.004318 75.697394) (xy 116.004321 75.697393) (xy 116.172525 75.641657) (xy 116.323339 75.548634) (xy 116.323345 75.548629) (xy 116.448629 75.423345) (xy 116.448634 75.423339) (xy 116.541657 75.272525) (xy 116.597393 75.104321) (xy 116.597394 75.104318) (xy 116.607999 75.000516) (xy 116.608 75.000516) (xy 116.608 74.954) (xy 115.854 74.954) (xy 115.854 75.708) (xy 115.346 75.708) (xy 115.346 74.954) (xy 114.592 74.954) (xy 114.592 75.000516) (xy 109.352257 75.000516) (xy 109.317115 74.894462) (xy 109.22403 74.743548) (xy 109.224029 74.743547) (xy 109.224024 74.743541) (xy 109.098658 74.618175) (xy 109.098652 74.61817) (xy 109.03887 74.581296) (xy 108.947738 74.525085) (xy 108.801315 74.476566) (xy 108.779427 74.469313) (xy 108.77942 74.469312) (xy 108.675553 74.4587) (xy 107.274455 74.4587) (xy 107.170572 74.469313) (xy 107.17057 74.469313) (xy 107.166126 74.470786) (xy 107.095171 74.473222) (xy 107.034163 74.43691) (xy 107.015493 74.399483) (xy 114.592 74.399483) (xy 114.592 74.446) (xy 115.346 74.446) (xy 115.854 74.446) (xy 116.608 74.446) (xy 116.608 74.399483) (xy 116.597394 74.295681) (xy 116.597393 74.295678) (xy 116.541657 74.127474) (xy 116.448634 73.97666) (xy 116.448629 73.976654) (xy 116.323345 73.85137) (xy 116.323339 73.851365) (xy 116.172525 73.758342) (xy 116.004321 73.702606) (xy 116.004318 73.702605) (xy 115.900516 73.692) (xy 115.854 73.692) (xy 115.854 74.446) (xy 115.346 74.446) (xy 115.346 73.692) (xy 115.299483 73.692) (xy 115.195681 73.702605) (xy 115.195678 73.702606) (xy 115.027474 73.758342) (xy 114.87666 73.851365) (xy 114.876654 73.85137) (xy 114.75137 73.976654) (xy 114.751365 73.97666) (xy 114.658342 74.127474) (xy 114.602606 74.295678) (xy 114.602605 74.295681) (xy 114.592 74.399483) (xy 107.015493 74.399483) (xy 107.002471 74.373379) (xy 107.0005 74.351179) (xy 107.0005 70.502747) (xy 107.00062 70.497251) (xy 107.010433 70.272498) (xy 107.017382 70.113336) (xy 107.01834 70.102388) (xy 107.068141 69.724113) (xy 107.070049 69.713296) (xy 107.085009 69.645819) (xy 107.152627 69.340808) (xy 107.155471 69.330197) (xy 107.270199 68.966323) (xy 107.273956 68.956002) (xy 107.419969 68.603496) (xy 107.424611 68.593543) (xy 107.600786 68.255114) (xy 107.606261 68.245631) (xy 107.811281 67.923813) (xy 107.817564 67.914841) (xy 107.913338 67.790026) (xy 108.049839 67.612136) (xy 108.056904 67.603716) (xy 108.2148 67.431403) (xy 108.31466 67.322424) (xy 108.322429 67.314656) (xy 108.323352 67.313811) (xy 108.603718 67.056901) (xy 108.612136 67.049839) (xy 108.790026 66.913338) (xy 108.914841 66.817564) (xy 108.923813 66.811281) (xy 109.245631 66.606261) (xy 109.255114 66.600786) (xy 109.593552 66.424606) (xy 109.603496 66.419969) (xy 109.956009 66.273953) (xy 109.966323 66.270199) (xy 110.330204 66.155468) (xy 110.340808 66.152627) (xy 110.713304 66.070047) (xy 110.724113 66.068141) (xy 111.102391 66.018339) (xy 111.113336 66.017382) (xy 111.497252 66.00062) (xy 111.502748 66.0005) (xy 111.565892 66.0005) (xy 118.661982 66.0005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 148.052121 79.642002) (xy 148.098614 79.695658) (xy 148.11 79.748) (xy 148.11 80.004) (xy 148.089998 80.072121) (xy 148.036342 80.118614) (xy 147.984 80.13) (xy 147.434271 80.13) (xy 147.395592 80.151121) (xy 147.368809 80.154) (xy 146.456 80.154) (xy 146.387879 80.133998) (xy 146.341386 80.080342) (xy 146.33 80.028) (xy 146.33 79.772) (xy 146.350002 79.703879) (xy 146.403658 79.657386) (xy 146.456 79.646) (xy 146.980729 79.646) (xy 147.019408 79.624879) (xy 147.046191 79.622) (xy 147.984 79.622) ) ) (filled_polygon (layer "F.Cu") (pts (xy 145.697012 78.369345) (xy 145.703595 78.375474) (xy 145.985803 78.657682) (xy 146.019829 78.719994) (xy 146.014764 78.790809) (xy 145.972217 78.847645) (xy 145.936341 78.866381) (xy 145.775296 78.919746) (xy 145.680647 78.978127) (xy 145.612168 78.996864) (xy 145.544429 78.975605) (xy 145.498937 78.921098) (xy 145.4885 78.870886) (xy 145.4885 78.464569) (xy 145.508502 78.396448) (xy 145.562158 78.349955) (xy 145.632432 78.339851) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 121.058854 66.020502) (xy 121.105347 66.074158) (xy 121.115451 66.144432) (xy 121.085957 66.209012) (xy 121.068124 66.225932) (xy 121.064427 66.228809) (xy 121.064424 66.228811) (xy 121.011252 66.270197) (xy 120.886762 66.367091) (xy 120.734279 66.532729) (xy 120.734275 66.532734) (xy 120.611141 66.721206) (xy 120.520703 66.927386) (xy 120.520702 66.927387) (xy 120.465437 67.145624) (xy 120.465436 67.14563) (xy 120.465436 67.145632) (xy 120.446844 67.37) (xy 120.465119 67.590546) (xy 120.465437 67.594375) (xy 120.520702 67.812612) (xy 120.520703 67.812613) (xy 120.611141 68.018793) (xy 120.734275 68.207265) (xy 120.734279 68.20727) (xy 120.886762 68.372908) (xy 120.89273 68.377553) (xy 121.064424 68.511189) (xy 121.09768 68.529186) (xy 121.148071 68.5792) (xy 121.163423 68.648516) (xy 121.138862 68.715129) (xy 121.09768 68.750813) (xy 121.064426 68.76881) (xy 121.064424 68.768811) (xy 120.886762 68.907091) (xy 120.734279 69.072729) (xy 120.734275 69.072734) (xy 120.611141 69.261206) (xy 120.520703 69.467386) (xy 120.520702 69.467387) (xy 120.465437 69.685624) (xy 120.465436 69.68563) (xy 120.465436 69.685632) (xy 120.446844 69.91) (xy 120.463693 70.113338) (xy 120.465437 70.134375) (xy 120.520702 70.352612) (xy 120.520703 70.352613) (xy 120.520704 70.352616) (xy 120.584146 70.497251) (xy 120.611141 70.558793) (xy 120.734275 70.747265) (xy 120.734279 70.74727) (xy 120.877841 70.903217) (xy 120.909262 70.966882) (xy 120.901276 71.037428) (xy 120.856417 71.092457) (xy 120.829173 71.10661) (xy 120.714039 71.149553) (xy 120.714034 71.149555) (xy 120.597095 71.237095) (xy 120.509555 71.354034) (xy 120.509555 71.354035) (xy 120.458505 71.490906) (xy 120.452 71.551402) (xy 120.452 72.196) (xy 121.367749 72.196) (xy 121.334755 72.253147) (xy 121.3 72.382857) (xy 121.3 72.517143) (xy 121.334755 72.646853) (xy 121.367749 72.704) (xy 120.452 72.704) (xy 120.452 73.348597) (xy 120.458505 73.409093) (xy 120.509555 73.545964) (xy 120.509555 73.545965) (xy 120.597095 73.662904) (xy 120.714034 73.750444) (xy 120.829172 73.793388) (xy 120.886008 73.835935) (xy 120.910819 73.902455) (xy 120.895728 73.971829) (xy 120.877841 73.996782) (xy 120.73428 74.152729) (xy 120.734275 74.152734) (xy 120.611141 74.341206) (xy 120.520703 74.547386) (xy 120.520702 74.547387) (xy 120.465437 74.765624) (xy 120.465436 74.76563) (xy 120.465436 74.765632) (xy 120.446844 74.99) (xy 120.45771 75.121135) (xy 120.465437 75.214375) (xy 120.520702 75.432612) (xy 120.520703 75.432613) (xy 120.611141 75.638793) (xy 120.734275 75.827265) (xy 120.734279 75.82727) (xy 120.886762 75.992908) (xy 120.941331 76.035381) (xy 121.064424 76.131189) (xy 121.09768 76.149186) (xy 121.148071 76.1992) (xy 121.163423 76.268516) (xy 121.138862 76.335129) (xy 121.09768 76.370813) (xy 121.064426 76.38881) (xy 121.064424 76.388811) (xy 120.886762 76.527091) (xy 120.734279 76.692729) (xy 120.734275 76.692734) (xy 120.611141 76.881206) (xy 120.520703 77.087386) (xy 120.520702 77.087387) (xy 120.465437 77.305624) (xy 120.465437 77.305628) (xy 120.465436 77.305632) (xy 120.446844 77.53) (xy 120.462014 77.713075) (xy 120.465437 77.754375) (xy 120.520702 77.972612) (xy 120.520703 77.972613) (xy 120.611141 78.178793) (xy 120.734275 78.367265) (xy 120.734279 78.36727) (xy 120.886762 78.532908) (xy 120.941331 78.575381) (xy 121.064424 78.671189) (xy 121.09768 78.689186) (xy 121.148071 78.7392) (xy 121.163423 78.808516) (xy 121.138862 78.875129) (xy 121.09768 78.910813) (xy 121.064426 78.92881) (xy 121.064424 78.928811) (xy 120.886762 79.067091) (xy 120.734279 79.232729) (xy 120.734275 79.232734) (xy 120.611141 79.421206) (xy 120.520703 79.627386) (xy 120.520702 79.627387) (xy 120.465437 79.845624) (xy 120.465436 79.84563) (xy 120.465436 79.845632) (xy 120.446844 80.07) (xy 120.457616 80.2) (xy 120.465437 80.294375) (xy 120.513601 80.484569) (xy 120.510934 80.555515) (xy 120.470334 80.613757) (xy 120.404691 80.640803) (xy 120.391457 80.6415) (xy 118.441813 80.6415) (xy 118.304942 80.668725) (xy 118.304939 80.668726) (xy 118.267172 80.684368) (xy 118.267172 80.684369) (xy 118.24829 80.69219) (xy 118.176 80.722133) (xy 118.059954 80.799674) (xy 118.059952 80.799676) (xy 113.691191 85.168436) (xy 113.628879 85.202462) (xy 113.572684 85.20186) (xy 113.401357 85.160728) (xy 113.1568 85.141481) (xy 112.912243 85.160728) (xy 112.673707 85.217995) (xy 112.447066 85.311874) (xy 112.237907 85.440045) (xy 112.051367 85.599367) (xy 111.892045 85.785907) (xy 111.763874 85.995066) (xy 111.669995 86.221707) (xy 111.664114 86.246204) (xy 111.612728 86.460243) (xy 111.593481 86.7048) (xy 111.612728 86.949357) (xy 111.669995 87.187892) (xy 111.763873 87.414532) (xy 111.795182 87.465624) (xy 111.892045 87.623692) (xy 111.892046 87.623694) (xy 111.892048 87.623696) (xy 112.051367 87.810233) (xy 112.117247 87.8665) (xy 112.131869 87.878989) (xy 112.170678 87.93844) (xy 112.171184 88.009435) (xy 112.133228 88.069433) (xy 112.131869 88.070611) (xy 112.051367 88.139367) (xy 111.892045 88.325907) (xy 111.763874 88.535066) (xy 111.763873 88.535068) (xy 111.753328 88.560525) (xy 111.669995 88.761707) (xy 111.660802 88.8) (xy 111.612728 89.000243) (xy 111.593481 89.2448) (xy 111.612728 89.489357) (xy 111.669995 89.727892) (xy 111.763873 89.954532) (xy 111.79169 89.999925) (xy 111.872929 90.132497) (xy 111.891467 90.20103) (xy 111.87001 90.268707) (xy 111.841006 90.299198) (xy 111.743896 90.371895) (xy 111.656355 90.488834) (xy 111.656355 90.488835) (xy 111.605305 90.625706) (xy 111.5988 90.686202) (xy 111.5988 91.5308) (xy 112.668362 91.5308) (xy 112.644282 91.572508) (xy 112.6068 91.712391) (xy 112.6068 91.857209) (xy 112.644282 91.997092) (xy 112.668362 92.0388) (xy 111.5988 92.0388) (xy 111.5988 92.883397) (xy 111.605305 92.943893) (xy 111.656355 93.080764) (xy 111.656355 93.080765) (xy 111.743895 93.197704) (xy 111.860834 93.285244) (xy 111.997706 93.336294) (xy 112.058202 93.342799) (xy 112.058215 93.3428) (xy 112.9028 93.3428) (xy 112.9028 92.273238) (xy 112.944508 92.297318) (xy 113.084391 92.3348) (xy 113.229209 92.3348) (xy 113.369092 92.297318) (xy 113.4108 92.273238) (xy 113.4108 93.3428) (xy 114.255385 93.3428) (xy 114.255397 93.342799) (xy 114.315893 93.336294) (xy 114.452764 93.285244) (xy 114.452765 93.285244) (xy 114.569704 93.197704) (xy 114.657244 93.080765) (xy 114.657244 93.080764) (xy 114.708294 92.943893) (xy 114.714799 92.883397) (xy 114.7148 92.883385) (xy 114.7148 92.0388) (xy 113.645238 92.0388) (xy 113.669318 91.997092) (xy 113.7068 91.857209) (xy 113.7068 91.712391) (xy 113.669318 91.572508) (xy 113.645238 91.5308) (xy 114.7148 91.5308) (xy 114.7148 90.686214) (xy 114.714799 90.686202) (xy 114.708294 90.625706) (xy 114.657244 90.488835) (xy 114.657244 90.488834) (xy 114.569705 90.371897) (xy 114.472593 90.299199) (xy 114.430047 90.242363) (xy 114.424983 90.171547) (xy 114.440667 90.132501) (xy 114.549727 89.954532) (xy 114.643605 89.727892) (xy 114.700872 89.489357) (xy 114.720119 89.2448) (xy 114.700872 89.000243) (xy 114.643605 88.761708) (xy 114.549727 88.535068) (xy 114.421552 88.325904) (xy 114.262233 88.139367) (xy 114.181729 88.070609) (xy 114.142921 88.01116) (xy 114.142415 87.940166) (xy 114.180371 87.880167) (xy 114.181679 87.879032) (xy 114.262233 87.810233) (xy 114.421552 87.623696) (xy 114.549727 87.414532) (xy 114.643605 87.187892) (xy 114.700872 86.949357) (xy 114.720119 86.7048) (xy 114.700872 86.460243) (xy 114.659739 86.288911) (xy 114.663286 86.218007) (xy 114.693161 86.170408) (xy 118.768165 82.095405) (xy 118.830477 82.061379) (xy 118.85726 82.0585) (xy 120.386392 82.0585) (xy 120.454513 82.078502) (xy 120.501006 82.132158) (xy 120.51111 82.202432) (xy 120.508536 82.215431) (xy 120.465437 82.385624) (xy 120.465436 82.38563) (xy 120.465436 82.385632) (xy 120.446844 82.61) (xy 120.464339 82.821135) (xy 120.465437 82.834375) (xy 120.520702 83.052612) (xy 120.520703 83.052613) (xy 120.520704 83.052616) (xy 120.601848 83.237607) (xy 120.611141 83.258793) (xy 120.734275 83.447265) (xy 120.734279 83.44727) (xy 120.806295 83.525499) (xy 120.877475 83.60282) (xy 120.877841 83.603217) (xy 120.909262 83.666882) (xy 120.901276 83.737428) (xy 120.856417 83.792457) (xy 120.829173 83.80661) (xy 120.714039 83.849553) (xy 120.714034 83.849555) (xy 120.597095 83.937095) (xy 120.509555 84.054034) (xy 120.509555 84.054035) (xy 120.458505 84.190906) (xy 120.452 84.251402) (xy 120.452 84.896) (xy 121.367749 84.896) (xy 121.334755 84.953147) (xy 121.3 85.082857) (xy 121.3 85.217143) (xy 121.334755 85.346853) (xy 121.367749 85.404) (xy 120.452 85.404) (xy 120.452 86.048597) (xy 120.458505 86.109093) (xy 120.509555 86.245964) (xy 120.509555 86.245965) (xy 120.597095 86.362904) (xy 120.714034 86.450444) (xy 120.829172 86.493388) (xy 120.886008 86.535935) (xy 120.910819 86.602455) (xy 120.895728 86.671829) (xy 120.877841 86.696782) (xy 120.73428 86.852729) (xy 120.734275 86.852734) (xy 120.611141 87.041206) (xy 120.520703 87.247386) (xy 120.520702 87.247387) (xy 120.465437 87.465624) (xy 120.465436 87.46563) (xy 120.465436 87.465632) (xy 120.446844 87.69) (xy 120.462504 87.878989) (xy 120.465437 87.914375) (xy 120.520702 88.132612) (xy 120.520703 88.132613) (xy 120.520704 88.132616) (xy 120.57792 88.263056) (xy 120.611141 88.338793) (xy 120.734275 88.527265) (xy 120.734279 88.52727) (xy 120.788903 88.586606) (xy 120.88402 88.68993) (xy 120.886762 88.692908) (xy 120.941331 88.735381) (xy 121.064424 88.831189) (xy 121.09768 88.849186) (xy 121.148071 88.8992) (xy 121.163423 88.968516) (xy 121.138862 89.035129) (xy 121.09768 89.070813) (xy 121.064426 89.08881) (xy 121.064424 89.088811) (xy 120.886762 89.227091) (xy 120.734279 89.392729) (xy 120.734275 89.392734) (xy 120.611141 89.581206) (xy 120.520703 89.787386) (xy 120.520702 89.787387) (xy 120.465437 90.005624) (xy 120.465436 90.00563) (xy 120.465436 90.005632) (xy 120.446844 90.23) (xy 120.463992 90.436944) (xy 120.465437 90.454375) (xy 120.520702 90.672612) (xy 120.520703 90.672613) (xy 120.520704 90.672616) (xy 120.61114 90.878791) (xy 120.611141 90.878793) (xy 120.734275 91.067265) (xy 120.734279 91.06727) (xy 120.886762 91.232908) (xy 120.889193 91.2348) (xy 121.064424 91.371189) (xy 121.09768 91.389186) (xy 121.148071 91.4392) (xy 121.163423 91.508516) (xy 121.138862 91.575129) (xy 121.09768 91.610813) (xy 121.064426 91.62881) (xy 121.064424 91.628811) (xy 120.886762 91.767091) (xy 120.734279 91.932729) (xy 120.734275 91.932734) (xy 120.611141 92.121206) (xy 120.520703 92.327386) (xy 120.520702 92.327387) (xy 120.465437 92.545624) (xy 120.465436 92.54563) (xy 120.465436 92.545632) (xy 120.446844 92.77) (xy 120.461253 92.943893) (xy 120.465437 92.994375) (xy 120.520702 93.212612) (xy 120.520703 93.212613) (xy 120.520704 93.212616) (xy 120.574954 93.336294) (xy 120.611141 93.418793) (xy 120.734275 93.607265) (xy 120.734279 93.60727) (xy 120.886762 93.772908) (xy 120.941331 93.815381) (xy 121.064424 93.911189) (xy 121.09768 93.929186) (xy 121.148071 93.9792) (xy 121.163423 94.048516) (xy 121.138862 94.115129) (xy 121.09768 94.150813) (xy 121.064426 94.16881) (xy 121.064424 94.168811) (xy 120.886762 94.307091) (xy 120.734279 94.472729) (xy 120.734275 94.472734) (xy 120.611141 94.661206) (xy 120.520703 94.867386) (xy 120.520702 94.867387) (xy 120.465437 95.085624) (xy 120.465436 95.08563) (xy 120.465436 95.085632) (xy 120.446844 95.31) (xy 120.464848 95.527276) (xy 120.465437 95.534375) (xy 120.520702 95.752612) (xy 120.520703 95.752613) (xy 120.520704 95.752616) (xy 120.607065 95.9495) (xy 120.611141 95.958793) (xy 120.734275 96.147265) (xy 120.734278 96.147268) (xy 120.824655 96.245442) (xy 120.877475 96.30282) (xy 120.908896 96.366485) (xy 120.900909 96.437031) (xy 120.856051 96.49206) (xy 120.828807 96.506213) (xy 120.713797 96.54911) (xy 120.713792 96.549112) (xy 120.596738 96.636738) (xy 120.509112 96.753792) (xy 120.50911 96.753797) (xy 120.458011 96.890795) (xy 120.458009 96.890803) (xy 120.4515 96.95135) (xy 120.4515 98.748649) (xy 120.458009 98.809196) (xy 120.458011 98.809204) (xy 120.50911 98.946202) (xy 120.509112 98.946207) (xy 120.596738 99.063261) (xy 120.713791 99.150886) (xy 120.713792 99.150886) (xy 120.713796 99.150889) (xy 120.82881 99.193787) (xy 120.885642 99.236332) (xy 120.910453 99.302852) (xy 120.895362 99.372226) (xy 120.877475 99.397179) (xy 120.73428 99.552729) (xy 120.734275 99.552734) (xy 120.611141 99.741206) (xy 120.520703 99.947386) (xy 120.520702 99.947387) (xy 120.465437 100.165624) (xy 120.446844 100.39) (xy 120.465437 100.614375) (xy 120.520702 100.832612) (xy 120.520703 100.832613) (xy 120.611141 101.038793) (xy 120.734275 101.227265) (xy 120.734279 101.22727) (xy 120.886762 101.392908) (xy 120.941331 101.435381) (xy 121.064424 101.531189) (xy 121.09768 101.549186) (xy 121.148071 101.5992) (xy 121.163423 101.668516) (xy 121.138862 101.735129) (xy 121.09768 101.770813) (xy 121.064426 101.78881) (xy 121.064424 101.788811) (xy 120.886762 101.927091) (xy 120.734279 102.092729) (xy 120.734275 102.092734) (xy 120.611141 102.281206) (xy 120.520703 102.487386) (xy 120.520702 102.487387) (xy 120.465437 102.705624) (xy 120.446844 102.93) (xy 120.465437 103.154375) (xy 120.520702 103.372612) (xy 120.520703 103.372613) (xy 120.611141 103.578793) (xy 120.734275 103.767265) (xy 120.734279 103.76727) (xy 120.886762 103.932908) (xy 120.941331 103.975381) (xy 121.064424 104.071189) (xy 121.09768 104.089186) (xy 121.148071 104.1392) (xy 121.163423 104.208516) (xy 121.138862 104.275129) (xy 121.09768 104.310813) (xy 121.064426 104.32881) (xy 121.064424 104.328811) (xy 120.886762 104.467091) (xy 120.734279 104.632729) (xy 120.734275 104.632734) (xy 120.611141 104.821206) (xy 120.520703 105.027386) (xy 120.520702 105.027387) (xy 120.465437 105.245624) (xy 120.465436 105.24563) (xy 120.465436 105.245632) (xy 120.446844 105.47) (xy 120.451686 105.528438) (xy 120.465437 105.694375) (xy 120.520702 105.912612) (xy 120.520703 105.912613) (xy 120.520704 105.912616) (xy 120.564548 106.012571) (xy 120.611141 106.118793) (xy 120.734275 106.307265) (xy 120.734279 106.30727) (xy 120.886762 106.472908) (xy 120.910275 106.491209) (xy 121.064424 106.611189) (xy 121.095285 106.62789) (xy 121.09768 106.629186) (xy 121.148071 106.6792) (xy 121.163423 106.748516) (xy 121.138862 106.815129) (xy 121.09768 106.850813) (xy 121.064426 106.86881) (xy 121.064424 106.868811) (xy 120.886762 107.007091) (xy 120.734279 107.172729) (xy 120.734275 107.172734) (xy 120.611141 107.361206) (xy 120.520703 107.567386) (xy 120.520702 107.567387) (xy 120.465437 107.785624) (xy 120.465436 107.78563) (xy 120.465436 107.785632) (xy 120.446844 108.01) (xy 120.457857 108.142908) (xy 120.465437 108.234375) (xy 120.520702 108.452612) (xy 120.520703 108.452613) (xy 120.520704 108.452616) (xy 120.584815 108.598775) (xy 120.611141 108.658793) (xy 120.734275 108.847265) (xy 120.734279 108.84727) (xy 120.877841 109.003217) (xy 120.909262 109.066882) (xy 120.901276 109.137428) (xy 120.856417 109.192457) (xy 120.829173 109.20661) (xy 120.714039 109.249553) (xy 120.714034 109.249555) (xy 120.597095 109.337095) (xy 120.509555 109.454034) (xy 120.509555 109.454035) (xy 120.458505 109.590906) (xy 120.452 109.651402) (xy 120.452 110.296) (xy 121.367749 110.296) (xy 121.334755 110.353147) (xy 121.3 110.482857) (xy 121.3 110.617143) (xy 121.334755 110.746853) (xy 121.367749 110.804) (xy 120.452 110.804) (xy 120.452 111.448597) (xy 120.458505 111.509093) (xy 120.509555 111.645964) (xy 120.509555 111.645965) (xy 120.597095 111.762904) (xy 120.714034 111.850444) (xy 120.829172 111.893388) (xy 120.886008 111.935935) (xy 120.910819 112.002455) (xy 120.895728 112.071829) (xy 120.877841 112.096782) (xy 120.73428 112.252729) (xy 120.734275 112.252734) (xy 120.611141 112.441206) (xy 120.520703 112.647386) (xy 120.520702 112.647387) (xy 120.465437 112.865624) (xy 120.465436 112.86563) (xy 120.465436 112.865632) (xy 120.446844 113.09) (xy 120.465437 113.314375) (xy 120.520702 113.532612) (xy 120.520703 113.532613) (xy 120.611141 113.738793) (xy 120.734275 113.927265) (xy 120.734279 113.92727) (xy 120.886762 114.092908) (xy 120.941331 114.135381) (xy 121.064424 114.231189) (xy 121.09768 114.249186) (xy 121.148071 114.2992) (xy 121.163423 114.368516) (xy 121.138862 114.435129) (xy 121.09768 114.470813) (xy 121.064426 114.48881) (xy 121.064424 114.488811) (xy 120.886762 114.627091) (xy 120.734279 114.792729) (xy 120.734275 114.792734) (xy 120.611141 114.981206) (xy 120.520703 115.187386) (xy 120.520702 115.187387) (xy 120.465437 115.405624) (xy 120.446844 115.63) (xy 120.465437 115.854375) (xy 120.520702 116.072612) (xy 120.520703 116.072613) (xy 120.611141 116.278793) (xy 120.734275 116.467265) (xy 120.734279 116.46727) (xy 120.886762 116.632908) (xy 120.888304 116.634108) (xy 121.064424 116.771189) (xy 121.262426 116.878342) (xy 121.262427 116.878342) (xy 121.262428 116.878343) (xy 121.374227 116.916723) (xy 121.475365 116.951444) (xy 121.697431 116.9885) (xy 121.697435 116.9885) (xy 121.922565 116.9885) (xy 121.922569 116.9885) (xy 122.144635 116.951444) (xy 122.357574 116.878342) (xy 122.555576 116.771189) (xy 122.73324 116.632906) (xy 122.737925 116.627817) (xy 122.745099 116.620024) (xy 122.805951 116.583453) (xy 122.876916 116.585586) (xy 122.935461 116.625748) (xy 122.963 116.691186) (xy 122.9638 116.705361) (xy 122.9638 116.80235) (xy 122.995824 117.00454) (xy 123.059078 117.199212) (xy 123.059082 117.199224) (xy 123.152017 117.381618) (xy 123.272342 117.547227) (xy 123.417092 117.691974) (xy 123.582703 117.812295) (xy 123.765098 117.905227) (xy 123.959786 117.968482) (xy 123.959791 117.968482) (xy 123.959792 117.968483) (xy 123.959824 117.968488) (xy 124.161972 118.000501) (xy 124.264324 118.0005) (xy 136.998428 118.0005) (xy 136.998432 118.000501) (xy 137.012115 118.0005) (xy 137.012167 118.000515) (xy 137.064324 118.000514) (xy 137.064324 118.000515) (xy 137.166672 118.000513) (xy 137.166678 118.000513) (xy 137.276347 117.98314) (xy 137.368858 117.968487) (xy 137.563541 117.905227) (xy 137.745932 117.812291) (xy 137.911539 117.691968) (xy 138.056284 117.54722) (xy 138.176604 117.381611) (xy 138.269536 117.199219) (xy 138.269539 117.199212) (xy 138.332789 117.004542) (xy 138.33279 117.004541) (xy 138.33279 117.004539) (xy 138.332792 117.004534) (xy 138.364815 116.802351) (xy 138.364815 116.7) (xy 138.364815 116.634108) (xy 138.364815 116.627817) (xy 138.384817 116.559696) (xy 138.438473 116.513203) (xy 138.508747 116.503099) (xy 138.573327 116.532593) (xy 138.583509 116.542472) (xy 138.654901 116.620024) (xy 138.666762 116.632908) (xy 138.668304 116.634108) (xy 138.844424 116.771189) (xy 139.042426 116.878342) (xy 139.042427 116.878342) (xy 139.042428 116.878343) (xy 139.154227 116.916723) (xy 139.255365 116.951444) (xy 139.477431 116.9885) (xy 139.477435 116.9885) (xy 139.702565 116.9885) (xy 139.702569 116.9885) (xy 139.924635 116.951444) (xy 140.137574 116.878342) (xy 140.335576 116.771189) (xy 140.51324 116.632906) (xy 140.665722 116.467268) (xy 140.78886 116.278791) (xy 140.879296 116.072616) (xy 140.934564 115.854368) (xy 140.953156 115.63) (xy 140.934564 115.405632) (xy 140.879296 115.187384) (xy 140.78886 114.981209) (xy 140.743815 114.912262) (xy 140.665724 114.792734) (xy 140.66572 114.792729) (xy 140.513237 114.627091) (xy 140.420171 114.554655) (xy 140.335576 114.488811) (xy 140.302319 114.470813) (xy 140.251929 114.420802) (xy 140.236576 114.351485) (xy 140.261136 114.284872) (xy 140.30232 114.249186) (xy 140.335576 114.231189) (xy 140.51324 114.092906) (xy 140.665722 113.927268) (xy 140.78886 113.738791) (xy 140.879296 113.532616) (xy 140.934564 113.314368) (xy 140.953156 113.09) (xy 140.934564 112.865632) (xy 140.879296 112.647384) (xy 140.78886 112.441209) (xy 140.743815 112.372262) (xy 140.665724 112.252734) (xy 140.665714 112.252722) (xy 140.525121 112.1) (xy 175.916496 112.1) (xy 175.936457 112.289927) (xy 175.96321 112.372262) (xy 175.995473 112.471556) (xy 175.995476 112.471561) (xy 176.090958 112.636941) (xy 176.090965 112.636951) (xy 176.218744 112.778864) (xy 176.218747 112.778866) (xy 176.373248 112.891118) (xy 176.547712 112.968794) (xy 176.734513 113.0085) (xy 176.925487 113.0085) (xy 177.112288 112.968794) (xy 177.286752 112.891118) (xy 177.441253 112.778866) (xy 177.56904 112.636944) (xy 177.664527 112.471556) (xy 177.723542 112.289928) (xy 177.743504 112.1) (xy 177.723542 111.910072) (xy 177.664527 111.728444) (xy 177.56904 111.563056) (xy 177.569038 111.563054) (xy 177.569034 111.563048) (xy 177.441255 111.421135) (xy 177.286752 111.308882) (xy 177.112288 111.231206) (xy 176.925487 111.1915) (xy 176.734513 111.1915) (xy 176.547711 111.231206) (xy 176.373247 111.308882) (xy 176.218744 111.421135) (xy 176.090965 111.563048) (xy 176.090958 111.563058) (xy 175.995476 111.728438) (xy 175.995473 111.728445) (xy 175.936457 111.910072) (xy 175.916496 112.1) (xy 140.525121 112.1) (xy 140.522159 112.096782) (xy 140.490737 112.033117) (xy 140.498723 111.962571) (xy 140.543582 111.907542) (xy 140.570827 111.893388) (xy 140.685965 111.850444) (xy 140.802904 111.762904) (xy 140.890444 111.645965) (xy 140.890444 111.645964) (xy 140.941494 111.509093) (xy 140.947999 111.448597) (xy 140.948 111.448585) (xy 140.948 110.804) (xy 140.032251 110.804) (xy 140.065245 110.746853) (xy 140.1 110.617143) (xy 140.1 110.482857) (xy 140.065245 110.353147) (xy 140.032251 110.296) (xy 140.948 110.296) (xy 140.948 109.651414) (xy 140.947999 109.651402) (xy 140.941494 109.590906) (xy 140.890444 109.454035) (xy 140.890444 109.454034) (xy 140.802904 109.337095) (xy 140.685966 109.249556) (xy 140.570826 109.206611) (xy 140.513991 109.164064) (xy 140.48918 109.097543) (xy 140.504272 109.028169) (xy 140.522154 109.003222) (xy 140.665722 108.847268) (xy 140.78886 108.658791) (xy 140.879296 108.452616) (xy 140.906728 108.344286) (xy 140.939775 108.286127) (xy 143.325903 105.9) (xy 180.016496 105.9) (xy 180.036457 106.089927) (xy 180.046823 106.121829) (xy 180.095473 106.271556) (xy 180.095476 106.271561) (xy 180.190958 106.436941) (xy 180.190965 106.436951) (xy 180.318744 106.578864) (xy 180.363234 106.611188) (xy 180.473248 106.691118) (xy 180.647712 106.768794) (xy 180.834513 106.8085) (xy 181.025487 106.8085) (xy 181.212288 106.768794) (xy 181.386752 106.691118) (xy 181.44094 106.651747) (xy 181.507806 106.62789) (xy 181.576958 106.64397) (xy 181.58905 106.65174) (xy 181.643248 106.691118) (xy 181.817712 106.768794) (xy 182.004513 106.8085) (xy 182.195487 106.8085) (xy 182.382288 106.768794) (xy 182.556752 106.691118) (xy 182.711253 106.578866) (xy 182.79018 106.491209) (xy 182.839034 106.436951) (xy 182.839035 106.436949) (xy 182.83904 106.436944) (xy 182.934527 106.271556) (xy 182.993542 106.089928) (xy 183.013504 105.9) (xy 182.993542 105.710072) (xy 182.934527 105.528444) (xy 182.896742 105.463) (xy 182.880005 105.394005) (xy 182.896743 105.336999) (xy 182.934527 105.271556) (xy 182.993542 105.089928) (xy 183.013504 104.9) (xy 182.993542 104.710072) (xy 182.934527 104.528444) (xy 182.83904 104.363056) (xy 182.839038 104.363054) (xy 182.839034 104.363048) (xy 182.711255 104.221135) (xy 182.556752 104.108882) (xy 182.382288 104.031206) (xy 182.195487 103.9915) (xy 182.004513 103.9915) (xy 181.817711 104.031206) (xy 181.643247 104.108882) (xy 181.488744 104.221135) (xy 181.360965 104.363048) (xy 181.360958 104.363058) (xy 181.265476 104.528438) (xy 181.265473 104.528445) (xy 181.206457 104.710072) (xy 181.188198 104.883804) (xy 181.161185 104.949461) (xy 181.102963 104.990091) (xy 181.036694 104.993881) (xy 181.025491 104.9915) (xy 181.025487 104.9915) (xy 180.834513 104.9915) (xy 180.647711 105.031206) (xy 180.473247 105.108882) (xy 180.318744 105.221135) (xy 180.190965 105.363048) (xy 180.190958 105.363058) (xy 180.112712 105.498585) (xy 180.095473 105.528444) (xy 180.080999 105.572986) (xy 180.036457 105.710072) (xy 180.016496 105.9) (xy 143.325903 105.9) (xy 150.125904 99.1) (xy 176.616496 99.1) (xy 176.636457 99.289927) (xy 176.663069 99.371829) (xy 176.695473 99.471556) (xy 176.695476 99.471561) (xy 176.790958 99.636941) (xy 176.790965 99.636951) (xy 176.918744 99.778864) (xy 176.918747 99.778866) (xy 177.073248 99.891118) (xy 177.247712 99.968794) (xy 177.434513 100.0085) (xy 177.625487 100.0085) (xy 177.812288 99.968794) (xy 177.986752 99.891118) (xy 178.00594 99.877176) (xy 178.072805 99.853319) (xy 178.141956 99.869398) (xy 178.154048 99.877168) (xy 178.173248 99.891118) (xy 178.347712 99.968794) (xy 178.534513 100.0085) (xy 178.725487 100.0085) (xy 178.912288 99.968794) (xy 179.086752 99.891118) (xy 179.10594 99.877176) (xy 179.172805 99.853319) (xy 179.241956 99.869398) (xy 179.254048 99.877168) (xy 179.273248 99.891118) (xy 179.447712 99.968794) (xy 179.634513 100.0085) (xy 179.825487 100.0085) (xy 180.012288 99.968794) (xy 180.186752 99.891118) (xy 180.341253 99.778866) (xy 180.341255 99.778864) (xy 180.469034 99.636951) (xy 180.469035 99.636949) (xy 180.46904 99.636944) (xy 180.564527 99.471556) (xy 180.623542 99.289928) (xy 180.643504 99.1) (xy 180.623542 98.910072) (xy 180.564527 98.728444) (xy 180.46904 98.563056) (xy 180.469038 98.563054) (xy 180.469034 98.563048) (xy 180.341256 98.421136) (xy 180.340211 98.420377) (xy 180.339752 98.419782) (xy 180.336348 98.416717) (xy 180.336908 98.416094) (xy 180.296858 98.364153) (xy 180.290784 98.293417) (xy 180.323917 98.230626) (xy 180.385738 98.195716) (xy 180.387998 98.195212) (xy 180.512288 98.168794) (xy 180.686752 98.091118) (xy 180.841253 97.978866) (xy 180.96904 97.836944) (xy 181.064527 97.671556) (xy 181.123542 97.489928) (xy 181.143504 97.3) (xy 181.123542 97.110072) (xy 181.064527 96.928444) (xy 180.96904 96.763056) (xy 180.969038 96.763054) (xy 180.969034 96.763048) (xy 180.841255 96.621135) (xy 180.686752 96.508882) (xy 180.512288 96.431206) (xy 180.325487 96.3915) (xy 180.134513 96.3915) (xy 179.947711 96.431206) (xy 179.773247 96.508882) (xy 179.618744 96.621135) (xy 179.490965 96.763048) (xy 179.490958 96.763058) (xy 179.395476 96.928438) (xy 179.395473 96.928444) (xy 179.38801 96.951414) (xy 179.336457 97.110072) (xy 179.316496 97.3) (xy 179.336457 97.489927) (xy 179.358377 97.557387) (xy 179.395473 97.671556) (xy 179.395476 97.671561) (xy 179.490958 97.836941) (xy 179.490965 97.836951) (xy 179.618743 97.978863) (xy 179.619785 97.97962) (xy 179.620242 97.980213) (xy 179.623652 97.983283) (xy 179.62309 97.983906) (xy 179.66314 98.035842) (xy 179.669216 98.106579) (xy 179.636084 98.169371) (xy 179.574264 98.204282) (xy 179.571922 98.204804) (xy 179.447711 98.231206) (xy 179.273246 98.308882) (xy 179.273245 98.308883) (xy 179.254061 98.322822) (xy 179.187193 98.346681) (xy 179.118041 98.3306) (xy 179.105939 98.322822) (xy 179.086754 98.308883) (xy 179.086753 98.308882) (xy 178.912288 98.231206) (xy 178.725487 98.1915) (xy 178.534513 98.1915) (xy 178.347711 98.231206) (xy 178.173246 98.308882) (xy 178.173245 98.308883) (xy 178.154061 98.322822) (xy 178.087193 98.346681) (xy 178.018041 98.3306) (xy 178.005939 98.322822) (xy 177.986754 98.308883) (xy 177.986753 98.308882) (xy 177.812288 98.231206) (xy 177.625487 98.1915) (xy 177.434513 98.1915) (xy 177.247711 98.231206) (xy 177.073247 98.308882) (xy 176.918744 98.421135) (xy 176.790965 98.563048) (xy 176.790958 98.563058) (xy 176.695476 98.728438) (xy 176.695473 98.728444) (xy 176.688912 98.748638) (xy 176.636457 98.910072) (xy 176.616496 99.1) (xy 150.125904 99.1) (xy 153.025904 96.2) (xy 164.636496 96.2) (xy 164.656457 96.389927) (xy 164.676363 96.451189) (xy 164.715473 96.571556) (xy 164.715476 96.571561) (xy 164.810958 96.736941) (xy 164.810965 96.736951) (xy 164.938744 96.878864) (xy 164.97306 96.903796) (xy 165.093248 96.991118) (xy 165.267712 97.068794) (xy 165.454513 97.1085) (xy 165.645487 97.1085) (xy 165.832288 97.068794) (xy 166.006752 96.991118) (xy 166.161253 96.878866) (xy 166.179311 96.858811) (xy 166.289034 96.736951) (xy 166.289035 96.736949) (xy 166.28904 96.736944) (xy 166.384527 96.571556) (xy 166.443542 96.389928) (xy 166.463504 96.2) (xy 166.443542 96.010072) (xy 166.384527 95.828444) (xy 166.340746 95.752613) (xy 166.325381 95.725999) (xy 166.3085 95.662999) (xy 166.3085 95.616371) (xy 166.328502 95.54825) (xy 166.345405 95.527276) (xy 166.877276 94.995405) (xy 166.939588 94.961379) (xy 166.966371 94.9585) (xy 174.204701 94.9585) (xy 174.204705 94.9585) (xy 174.204706 94.9585) (xy 174.277976 94.943925) (xy 174.351247 94.929351) (xy 174.489284 94.872174) (xy 174.613515 94.789166) (xy 183.219165 86.183516) (xy 183.255351 86.12936) (xy 183.302174 86.059284) (xy 183.359351 85.921246) (xy 183.361887 85.9085) (xy 183.385235 85.791118) (xy 183.385236 85.791118) (xy 183.385236 85.791112) (xy 183.3885 85.774706) (xy 183.3885 85.536999) (xy 183.40538 85.474) (xy 183.464527 85.371556) (xy 183.523542 85.189928) (xy 183.543504 85) (xy 183.523542 84.810072) (xy 183.464527 84.628444) (xy 183.36904 84.463056) (xy 183.369038 84.463054) (xy 183.369034 84.463048) (xy 183.241255 84.321135) (xy 183.086752 84.208882) (xy 182.912288 84.131206) (xy 182.725487 84.0915) (xy 182.534513 84.0915) (xy 182.347711 84.131206) (xy 182.173247 84.208882) (xy 182.018744 84.321135) (xy 181.890965 84.463048) (xy 181.890958 84.463058) (xy 181.795476 84.628438) (xy 181.795473 84.628445) (xy 181.736457 84.810072) (xy 181.716496 85) (xy 181.736457 85.189927) (xy 181.745743 85.218505) (xy 181.787446 85.346853) (xy 181.793755 85.366268) (xy 181.795783 85.437236) (xy 181.763017 85.4943) (xy 173.852724 93.404595) (xy 173.790412 93.438621) (xy 173.763629 93.4415) (xy 166.525288 93.4415) (xy 166.452024 93.456073) (xy 166.452024 93.456074) (xy 166.378753 93.470649) (xy 166.378751 93.470649) (xy 166.37875 93.47065) (xy 166.378749 93.47065) (xy 166.321576 93.494332) (xy 166.321575 93.494331) (xy 166.24072 93.527823) (xy 166.240716 93.527825) (xy 166.121823 93.607266) (xy 166.121822 93.607268) (xy 166.119135 93.609063) (xy 166.116485 93.610834) (xy 166.116475 93.610842) (xy 164.960838 94.76648) (xy 164.960833 94.766486) (xy 164.877826 94.890715) (xy 164.827211 95.012913) (xy 164.82721 95.012915) (xy 164.82065 95.02875) (xy 164.820649 95.028754) (xy 164.7915 95.17529) (xy 164.7915 95.662999) (xy 164.774619 95.725999) (xy 164.715476 95.828438) (xy 164.715473 95.828445) (xy 164.656457 96.010072) (xy 164.636496 96.2) (xy 153.025904 96.2) (xy 157.925905 91.3) (xy 159.916496 91.3) (xy 159.936457 91.489927) (xy 159.96329 91.572508) (xy 159.995473 91.671556) (xy 159.995476 91.671561) (xy 160.090958 91.836941) (xy 160.090965 91.836951) (xy 160.218744 91.978864) (xy 160.218747 91.978866) (xy 160.373248 92.091118) (xy 160.547712 92.168794) (xy 160.734513 92.2085) (xy 160.925487 92.2085) (xy 161.112288 92.168794) (xy 161.286752 92.091118) (xy 161.441253 91.978866) (xy 161.456083 91.962396) (xy 161.569034 91.836951) (xy 161.569035 91.836949) (xy 161.56904 91.836944) (xy 161.664527 91.671556) (xy 161.723542 91.489928) (xy 161.743504 91.3) (xy 161.723542 91.110072) (xy 161.664527 90.928444) (xy 161.56904 90.763056) (xy 161.569038 90.763054) (xy 161.569034 90.763048) (xy 161.441255 90.621135) (xy 161.286752 90.508882) (xy 161.112288 90.431206) (xy 160.925487 90.3915) (xy 160.734513 90.3915) (xy 160.547711 90.431206) (xy 160.373247 90.508882) (xy 160.218744 90.621135) (xy 160.090965 90.763048) (xy 160.090958 90.763058) (xy 159.995476 90.928438) (xy 159.995473 90.928445) (xy 159.936457 91.110072) (xy 159.916496 91.3) (xy 157.925905 91.3) (xy 159.7555 89.470405) (xy 159.817812 89.436379) (xy 159.844595 89.4335) (xy 160.2918 89.4335) (xy 160.359921 89.453502) (xy 160.385437 89.47519) (xy 160.388747 89.478866) (xy 160.543248 89.591118) (xy 160.717712 89.668794) (xy 160.904513 89.7085) (xy 161.095487 89.7085) (xy 161.282288 89.668794) (xy 161.456752 89.591118) (xy 161.611253 89.478866) (xy 161.614563 89.47519) (xy 161.739034 89.336951) (xy 161.739035 89.336949) (xy 161.73904 89.336944) (xy 161.834527 89.171556) (xy 161.893542 88.989928) (xy 161.913504 88.8) (xy 161.893542 88.610072) (xy 161.834527 88.428444) (xy 161.73904 88.263056) (xy 161.739038 88.263054) (xy 161.739034 88.263048) (xy 161.611255 88.121135) (xy 161.582165 88.1) (xy 166.766844 88.1) (xy 166.784251 88.310072) (xy 166.785437 88.324375) (xy 166.840702 88.542612) (xy 166.840703 88.542613) (xy 166.840704 88.542616) (xy 166.906627 88.692906) (xy 166.931141 88.748793) (xy 167.054275 88.937265) (xy 167.054279 88.93727) (xy 167.206762 89.102908) (xy 167.246067 89.1335) (xy 167.384424 89.241189) (xy 167.582426 89.348342) (xy 167.582427 89.348342) (xy 167.582428 89.348343) (xy 167.694227 89.386723) (xy 167.795365 89.421444) (xy 168.017431 89.4585) (xy 168.017435 89.4585) (xy 168.242565 89.4585) (xy 168.242569 89.4585) (xy 168.464635 89.421444) (xy 168.677574 89.348342) (xy 168.875576 89.241189) (xy 169.05324 89.102906) (xy 169.205722 88.937268) (xy 169.294518 88.801354) (xy 169.34852 88.755268) (xy 169.418868 88.745692) (xy 169.483225 88.775669) (xy 169.50548 88.801353) (xy 169.524973 88.831188) (xy 169.594275 88.937265) (xy 169.594279 88.93727) (xy 169.746762 89.102908) (xy 169.786067 89.1335) (xy 169.924424 89.241189) (xy 170.122426 89.348342) (xy 170.122427 89.348342) (xy 170.122428 89.348343) (xy 170.234227 89.386723) (xy 170.335365 89.421444) (xy 170.557431 89.4585) (xy 170.557435 89.4585) (xy 170.782565 89.4585) (xy 170.782569 89.4585) (xy 171.004635 89.421444) (xy 171.217574 89.348342) (xy 171.415576 89.241189) (xy 171.59324 89.102906) (xy 171.654245 89.036637) (xy 171.715096 89.000067) (xy 171.786061 89.0022) (xy 171.844606 89.042362) (xy 171.865 89.077941) (xy 171.909111 89.196204) (xy 171.909112 89.196207) (xy 171.996738 89.313261) (xy 172.113792 89.400887) (xy 172.113794 89.400888) (xy 172.113796 89.400889) (xy 172.134202 89.4085) (xy 172.250795 89.451988) (xy 172.250803 89.45199) (xy 172.31135 89.458499) (xy 172.311355 89.458499) (xy 172.311362 89.4585) (xy 172.311368 89.4585) (xy 174.108632 89.4585) (xy 174.108638 89.4585) (xy 174.108645 89.458499) (xy 174.108649 89.458499) (xy 174.169196 89.45199) (xy 174.169199 89.451989) (xy 174.169201 89.451989) (xy 174.306204 89.400889) (xy 174.307292 89.400075) (xy 174.423261 89.313261) (xy 174.510887 89.196207) (xy 174.510887 89.196206) (xy 174.510889 89.196204) (xy 174.561989 89.059201) (xy 174.562884 89.050884) (xy 174.568499 88.998649) (xy 174.5685 88.998632) (xy 174.5685 87.201367) (xy 174.568499 87.20135) (xy 174.56199 87.140803) (xy 174.561988 87.140795) (xy 174.510889 87.003797) (xy 174.510887 87.003792) (xy 174.423261 86.886738) (xy 174.306207 86.799112) (xy 174.306202 86.79911) (xy 174.169204 86.748011) (xy 174.169196 86.748009) (xy 174.108649 86.7415) (xy 174.108638 86.7415) (xy 172.311362 86.7415) (xy 172.31135 86.7415) (xy 172.250803 86.748009) (xy 172.250795 86.748011) (xy 172.113797 86.79911) (xy 172.113792 86.799112) (xy 171.996738 86.886738) (xy 171.909112 87.003792) (xy 171.909111 87.003795) (xy 171.865 87.122058) (xy 171.822453 87.178893) (xy 171.755932 87.203703) (xy 171.686558 87.188611) (xy 171.654246 87.163363) (xy 171.59324 87.097094) (xy 171.593239 87.097093) (xy 171.593237 87.097091) (xy 171.473372 87.003796) (xy 171.415576 86.958811) (xy 171.217574 86.851658) (xy 171.217572 86.851657) (xy 171.217571 86.851656) (xy 171.004639 86.778557) (xy 171.00463 86.778555) (xy 170.960476 86.771187) (xy 170.782569 86.7415) (xy 170.557431 86.7415) (xy 170.409211 86.766233) (xy 170.335369 86.778555) (xy 170.33536 86.778557) (xy 170.122428 86.851656) (xy 170.122426 86.851658) (xy 169.941896 86.949356) (xy 169.924426 86.95881) (xy 169.924424 86.958811) (xy 169.746762 87.097091) (xy 169.594279 87.262729) (xy 169.505483 87.398643) (xy 169.451479 87.444731) (xy 169.381131 87.454306) (xy 169.316774 87.424329) (xy 169.294517 87.398643) (xy 169.20572 87.262729) (xy 169.053237 87.097091) (xy 168.933372 87.003796) (xy 168.875576 86.958811) (xy 168.677574 86.851658) (xy 168.677572 86.851657) (xy 168.677571 86.851656) (xy 168.464639 86.778557) (xy 168.46463 86.778555) (xy 168.420476 86.771187) (xy 168.242569 86.7415) (xy 168.017431 86.7415) (xy 167.869211 86.766233) (xy 167.795369 86.778555) (xy 167.79536 86.778557) (xy 167.582428 86.851656) (xy 167.582426 86.851658) (xy 167.401896 86.949356) (xy 167.384426 86.95881) (xy 167.384424 86.958811) (xy 167.206762 87.097091) (xy 167.054279 87.262729) (xy 167.054275 87.262734) (xy 166.931141 87.451206) (xy 166.840703 87.657386) (xy 166.840702 87.657387) (xy 166.785437 87.875624) (xy 166.785436 87.87563) (xy 166.785436 87.875632) (xy 166.766844 88.1) (xy 161.582165 88.1) (xy 161.456752 88.008882) (xy 161.282288 87.931206) (xy 161.095487 87.8915) (xy 160.904513 87.8915) (xy 160.717711 87.931206) (xy 160.543247 88.008882) (xy 160.388747 88.121133) (xy 160.385437 88.12481) (xy 160.324991 88.16205) (xy 160.2918 88.1665) (xy 159.467603 88.1665) (xy 159.345209 88.190846) (xy 159.324735 88.199328) (xy 159.324733 88.199329) (xy 159.229923 88.2386) (xy 159.126171 88.307925) (xy 159.126164 88.30793) (xy 140.543425 106.890669) (xy 140.481113 106.924695) (xy 140.410298 106.91963) (xy 140.376939 106.901005) (xy 140.335583 106.868816) (xy 140.335579 106.868813) (xy 140.335576 106.868811) (xy 140.302319 106.850813) (xy 140.251929 106.800802) (xy 140.236576 106.731485) (xy 140.261136 106.664872) (xy 140.30232 106.629186) (xy 140.304715 106.62789) (xy 140.335576 106.611189) (xy 140.51324 106.472906) (xy 140.665722 106.307268) (xy 140.78886 106.118791) (xy 140.879296 105.912616) (xy 140.934564 105.694368) (xy 140.953156 105.47) (xy 140.934564 105.245632) (xy 140.879296 105.027384) (xy 140.78886 104.821209) (xy 140.788858 104.821206) (xy 140.788631 104.820688) (xy 140.779584 104.75027) (xy 140.810045 104.68614) (xy 140.814905 104.680997) (xy 153.192072 92.303833) (xy 153.2614 92.200075) (xy 153.309155 92.084785) (xy 153.3335 91.962394) (xy 153.3335 91.837606) (xy 153.3335 90.237606) (xy 153.309155 90.115215) (xy 153.2614 89.999925) (xy 153.192071 89.896167) (xy 153.103833 89.807929) (xy 151.303833 88.007929) (xy 151.200075 87.9386) (xy 151.084785 87.890845) (xy 151.008264 87.875624) (xy 150.962396 87.8665) (xy 150.962394 87.8665) (xy 150.6382 87.8665) (xy 150.570079 87.846498) (xy 150.544563 87.82481) (xy 150.541252 87.821133) (xy 150.386752 87.708882) (xy 150.212288 87.631206) (xy 150.025487 87.5915) (xy 149.834513 87.5915) (xy 149.647711 87.631206) (xy 149.473247 87.708882) (xy 149.318744 87.821135) (xy 149.190965 87.963048) (xy 149.190958 87.963058) (xy 149.097571 88.12481) (xy 149.095473 88.128444) (xy 149.091924 88.139367) (xy 149.036457 88.310072) (xy 149.016496 88.5) (xy 149.036457 88.689927) (xy 149.059781 88.761708) (xy 149.095473 88.871556) (xy 149.095476 88.871561) (xy 149.12996 88.93129) (xy 149.146698 89.000286) (xy 149.123477 89.067378) (xy 149.078264 89.104351) (xy 149.078972 89.105577) (xy 149.073248 89.108882) (xy 148.918744 89.221135) (xy 148.790965 89.363048) (xy 148.790958 89.363058) (xy 148.695476 89.528438) (xy 148.695473 89.528445) (xy 148.636457 89.710072) (xy 148.616496 89.9) (xy 148.636457 90.089927) (xy 148.660427 90.163696) (xy 148.695473 90.271556) (xy 148.695476 90.271561) (xy 148.790958 90.436941) (xy 148.790965 90.436951) (xy 148.918744 90.578864) (xy 148.918747 90.578866) (xy 149.073248 90.691118) (xy 149.091747 90.699354) (xy 149.145843 90.745331) (xy 149.166494 90.813258) (xy 149.1665 90.814461) (xy 149.1665 91.635406) (xy 149.146498 91.703527) (xy 149.129595 91.724501) (xy 141.134501 99.719595) (xy 141.072189 99.753621) (xy 141.045406 99.7565) (xy 140.867038 99.7565) (xy 140.798917 99.736498) (xy 140.761555 99.699415) (xy 140.665724 99.552734) (xy 140.665714 99.552722) (xy 140.522159 99.396782) (xy 140.490737 99.333117) (xy 140.498723 99.262571) (xy 140.543582 99.207542) (xy 140.570827 99.193388) (xy 140.685965 99.150444) (xy 140.802904 99.062904) (xy 140.890444 98.945965) (xy 140.890444 98.945964) (xy 140.941494 98.809093) (xy 140.947999 98.748597) (xy 140.948 98.748585) (xy 140.948 98.104) (xy 140.032251 98.104) (xy 140.065245 98.046853) (xy 140.1 97.917143) (xy 140.1 97.782857) (xy 140.065245 97.653147) (xy 140.032251 97.596) (xy 140.948 97.596) (xy 140.948 96.951414) (xy 140.947999 96.951402) (xy 140.941494 96.890906) (xy 140.890444 96.754035) (xy 140.890444 96.754034) (xy 140.802904 96.637095) (xy 140.685966 96.549556) (xy 140.570826 96.506611) (xy 140.513991 96.464064) (xy 140.48918 96.397543) (xy 140.504272 96.328169) (xy 140.522154 96.303222) (xy 140.665722 96.147268) (xy 140.78886 95.958791) (xy 140.879296 95.752616) (xy 140.934564 95.534368) (xy 140.953156 95.31) (xy 140.934564 95.085632) (xy 140.920161 95.028754) (xy 140.879297 94.867387) (xy 140.879296 94.867386) (xy 140.879296 94.867384) (xy 140.78886 94.661209) (xy 140.78214 94.650924) (xy 140.665724 94.472734) (xy 140.66572 94.472729) (xy 140.513237 94.307091) (xy 140.431382 94.243381) (xy 140.335576 94.168811) (xy 140.302319 94.150813) (xy 140.251929 94.100802) (xy 140.236576 94.031485) (xy 140.261136 93.964872) (xy 140.30232 93.929186) (xy 140.335576 93.911189) (xy 140.51324 93.772906) (xy 140.665722 93.607268) (xy 140.78886 93.418791) (xy 140.879296 93.212616) (xy 140.934564 92.994368) (xy 140.953156 92.77) (xy 140.934564 92.545632) (xy 140.879296 92.327384) (xy 140.78886 92.121209) (xy 140.73502 92.0388) (xy 140.665724 91.932734) (xy 140.66572 91.932729) (xy 140.513237 91.767091) (xy 140.390955 91.671915) (xy 140.335576 91.628811) (xy 140.302319 91.610813) (xy 140.251929 91.560802) (xy 140.236576 91.491485) (xy 140.261136 91.424872) (xy 140.30232 91.389186) (xy 140.335576 91.371189) (xy 140.51324 91.232906) (xy 140.665722 91.067268) (xy 140.78886 90.878791) (xy 140.879296 90.672616) (xy 140.934564 90.454368) (xy 140.953156 90.23) (xy 140.934564 90.005632) (xy 140.921623 89.95453) (xy 140.879297 89.787387) (xy 140.879296 89.787386) (xy 140.879296 89.787384) (xy 140.78886 89.581209) (xy 140.749611 89.521134) (xy 140.665724 89.392734) (xy 140.66572 89.392729) (xy 140.526215 89.241189) (xy 140.51324 89.227094) (xy 140.513239 89.227093) (xy 140.513237 89.227091) (xy 140.425277 89.158629) (xy 140.335576 89.088811) (xy 140.302319 89.070813) (xy 140.251929 89.020802) (xy 140.236576 88.951485) (xy 140.261136 88.884872) (xy 140.30232 88.849186) (xy 140.335576 88.831189) (xy 140.51324 88.692906) (xy 140.665722 88.527268) (xy 140.78886 88.338791) (xy 140.879296 88.132616) (xy 140.934564 87.914368) (xy 140.953156 87.69) (xy 140.934564 87.465632) (xy 140.879296 87.247384) (xy 140.78886 87.041209) (xy 140.68794 86.886739) (xy 140.665724 86.852734) (xy 140.665719 86.852729) (xy 140.597437 86.778556) (xy 140.522524 86.697179) (xy 140.491103 86.633514) (xy 140.49909 86.562968) (xy 140.543948 86.507939) (xy 140.571183 86.493789) (xy 140.686204 86.450889) (xy 140.686799 86.450444) (xy 140.803261 86.363261) (xy 140.890887 86.246207) (xy 140.890887 86.246206) (xy 140.890889 86.246204) (xy 140.941989 86.109201) (xy 140.947356 86.059284) (xy 140.948499 86.048649) (xy 140.9485 86.048632) (xy 140.9485 84.251367) (xy 140.948499 84.25135) (xy 140.94199 84.190803) (xy 140.941988 84.190795) (xy 140.890978 84.054035) (xy 140.890889 84.053796) (xy 140.890888 84.053794) (xy 140.890887 84.053792) (xy 140.803261 83.936738) (xy 140.686207 83.849112) (xy 140.686203 83.84911) (xy 140.571192 83.806213) (xy 140.514356 83.763667) (xy 140.489546 83.697146) (xy 140.504638 83.627772) (xy 140.522525 83.60282) (xy 140.617179 83.5) (xy 145.416496 83.5) (xy 145.436457 83.689927) (xy 145.456363 83.751189) (xy 145.495473 83.871556) (xy 145.495476 83.871561) (xy 145.590958 84.036941) (xy 145.590965 84.036951) (xy 145.718744 84.178864) (xy 145.76006 84.208882) (xy 145.873248 84.291118) (xy 146.047712 84.368794) (xy 146.234513 84.4085) (xy 146.425487 84.4085) (xy 146.612288 84.368794) (xy 146.786752 84.291118) (xy 146.941253 84.178866) (xy 147.019918 84.0915) (xy 147.069034 84.036951) (xy 147.069035 84.036949) (xy 147.06904 84.036944) (xy 147.164527 83.871556) (xy 147.223542 83.689928) (xy 147.243504 83.5) (xy 147.223542 83.310072) (xy 147.164527 83.128444) (xy 147.06904 82.963056) (xy 147.069038 82.963054) (xy 147.069034 82.963048) (xy 146.941255 82.821135) (xy 146.786752 82.708882) (xy 146.612288 82.631206) (xy 146.425487 82.5915) (xy 146.234513 82.5915) (xy 146.047711 82.631206) (xy 145.873247 82.708882) (xy 145.718744 82.821135) (xy 145.590965 82.963048) (xy 145.590958 82.963058) (xy 145.495476 83.128438) (xy 145.495473 83.128445) (xy 145.436457 83.310072) (xy 145.416496 83.5) (xy 140.617179 83.5) (xy 140.665714 83.447277) (xy 140.665724 83.447265) (xy 140.755356 83.310072) (xy 140.78886 83.258791) (xy 140.879296 83.052616) (xy 140.934564 82.834368) (xy 140.953156 82.61) (xy 140.934564 82.385632) (xy 140.891463 82.215431) (xy 140.879297 82.167387) (xy 140.879296 82.167386) (xy 140.879296 82.167384) (xy 140.78886 81.961209) (xy 140.749085 81.900328) (xy 140.665724 81.772734) (xy 140.66572 81.772729) (xy 140.513237 81.607091) (xy 140.431382 81.543381) (xy 140.335576 81.468811) (xy 140.302319 81.450813) (xy 140.251929 81.400802) (xy 140.236576 81.331485) (xy 140.261136 81.264872) (xy 140.30232 81.229186) (xy 140.335576 81.211189) (xy 140.51324 81.072906) (xy 140.665722 80.907268) (xy 140.78886 80.718791) (xy 140.879296 80.512616) (xy 140.934564 80.294368) (xy 140.953156 80.07) (xy 140.934564 79.845632) (xy 140.93021 79.828438) (xy 140.879297 79.627387) (xy 140.879296 79.627386) (xy 140.879296 79.627384) (xy 140.78886 79.421209) (xy 140.704117 79.2915) (xy 140.665724 79.232734) (xy 140.66572 79.232729) (xy 140.513237 79.067091) (xy 140.431382 79.003381) (xy 140.335576 78.928811) (xy 140.302319 78.910813) (xy 140.251929 78.860802) (xy 140.236576 78.791485) (xy 140.261136 78.724872) (xy 140.30232 78.689186) (xy 140.335576 78.671189) (xy 140.51324 78.532906) (xy 140.665722 78.367268) (xy 140.712555 78.295585) (xy 140.766558 78.249496) (xy 140.818038 78.2385) (xy 145.414339 78.2385) (xy 145.48246 78.258502) (xy 145.503434 78.275405) (xy 155.795334 88.567304) (xy 155.82936 88.629616) (xy 155.831549 88.643227) (xy 155.836457 88.689927) (xy 155.859781 88.761708) (xy 155.895473 88.871556) (xy 155.895476 88.871561) (xy 155.990958 89.036941) (xy 155.990965 89.036951) (xy 156.118744 89.178864) (xy 156.142615 89.196207) (xy 156.273248 89.291118) (xy 156.447712 89.368794) (xy 156.634513 89.4085) (xy 156.825487 89.4085) (xy 157.012288 89.368794) (xy 157.186752 89.291118) (xy 157.341253 89.178866) (xy 157.344996 89.174709) (xy 157.469034 89.036951) (xy 157.469035 89.036949) (xy 157.46904 89.036944) (xy 157.564527 88.871556) (xy 157.623542 88.689928) (xy 157.629162 88.636449) (xy 157.656174 88.570794) (xy 157.665368 88.560534) (xy 163.555499 82.670405) (xy 163.617811 82.636379) (xy 163.644594 82.6335) (xy 183.315406 82.6335) (xy 183.383527 82.653502) (xy 183.404501 82.670405) (xy 184.259595 83.525499) (xy 184.293621 83.587811) (xy 184.2965 83.614594) (xy 184.2965 88.785406) (xy 184.276498 88.853527) (xy 184.259595 88.874501) (xy 183.604501 89.529595) (xy 183.542189 89.563621) (xy 183.515406 89.5665) (xy 183.3382 89.5665) (xy 183.270079 89.546498) (xy 183.244563 89.52481) (xy 183.241252 89.521133) (xy 183.086752 89.408882) (xy 182.912288 89.331206) (xy 182.725487 89.2915) (xy 182.534513 89.2915) (xy 182.347711 89.331206) (xy 182.173247 89.408882) (xy 182.018744 89.521135) (xy 181.890965 89.663048) (xy 181.890958 89.663058) (xy 181.795476 89.828438) (xy 181.795473 89.828445) (xy 181.736457 90.010072) (xy 181.716496 90.2) (xy 181.736457 90.389927) (xy 181.757396 90.454368) (xy 181.795473 90.571556) (xy 181.811895 90.6) (xy 181.890958 90.736941) (xy 181.890965 90.736951) (xy 182.018744 90.878864) (xy 182.018747 90.878866) (xy 182.173248 90.991118) (xy 182.347712 91.068794) (xy 182.534513 91.1085) (xy 182.725487 91.1085) (xy 182.912288 91.068794) (xy 183.086752 90.991118) (xy 183.241253 90.878866) (xy 183.244563 90.87519) (xy 183.305009 90.83795) (xy 183.3382 90.8335) (xy 183.892393 90.8335) (xy 183.892394 90.8335) (xy 184.014785 90.809155) (xy 184.130075 90.7614) (xy 184.233833 90.692071) (xy 185.422071 89.503833) (xy 185.4914 89.400075) (xy 185.539155 89.284785) (xy 185.5635 89.162394) (xy 185.5635 89.037606) (xy 185.5635 83.237606) (xy 185.539155 83.115215) (xy 185.525168 83.081447) (xy 185.491401 82.999925) (xy 185.422072 82.896167) (xy 184.033833 81.507929) (xy 183.930075 81.4386) (xy 183.814785 81.390845) (xy 183.741086 81.376185) (xy 183.692396 81.3665) (xy 183.692394 81.3665) (xy 163.392394 81.3665) (xy 163.267606 81.3665) (xy 163.267603 81.3665) (xy 163.194568 81.381028) (xy 163.145215 81.390845) (xy 163.145213 81.390845) (xy 163.145212 81.390846) (xy 163.029923 81.438601) (xy 162.926171 81.507926) (xy 162.926164 81.507931) (xy 156.922127 87.511967) (xy 156.859815 87.545993) (xy 156.788999 87.540928) (xy 156.743937 87.511967) (xy 146.211648 76.979676) (xy 146.211642 76.979671) (xy 146.173137 76.953943) (xy 146.095601 76.902135) (xy 146.004427 76.864369) (xy 146.004426 76.864368) (xy 145.966669 76.848729) (xy 145.966663 76.848727) (xy 145.966662 76.848727) (xy 145.898221 76.835113) (xy 145.89822 76.835112) (xy 145.829787 76.8215) (xy 145.829782 76.8215) (xy 145.829781 76.8215) (xy 140.818038 76.8215) (xy 140.749917 76.801498) (xy 140.712555 76.764415) (xy 140.665724 76.692734) (xy 140.66572 76.692729) (xy 140.513237 76.527091) (xy 140.38657 76.428502) (xy 140.335576 76.388811) (xy 140.302319 76.370813) (xy 140.251929 76.320802) (xy 140.236576 76.251485) (xy 140.261136 76.184872) (xy 140.30232 76.149186) (xy 140.335576 76.131189) (xy 140.51324 75.992906) (xy 140.665722 75.827268) (xy 140.667397 75.824705) (xy 140.717 75.748781) (xy 140.78886 75.638791) (xy 140.849739 75.5) (xy 167.516496 75.5) (xy 167.536457 75.689927) (xy 167.566526 75.78247) (xy 167.595473 75.871556) (xy 167.595476 75.871561) (xy 167.690958 76.036941) (xy 167.690965 76.036951) (xy 167.818744 76.178864) (xy 167.846734 76.1992) (xy 167.973248 76.291118) (xy 168.147712 76.368794) (xy 168.334513 76.4085) (xy 168.425761 76.4085) (xy 168.493882 76.428502) (xy 168.514856 76.445405) (xy 170.756366 78.686916) (xy 170.75637 78.686919) (xy 170.756373 78.686922) (xy 170.863127 78.748556) (xy 170.895128 78.767032) (xy 171.049889 78.8085) (xy 171.04989 78.8085) (xy 171.210111 78.8085) (xy 179.225761 78.8085) (xy 179.293882 78.828502) (xy 179.314856 78.845405) (xy 180.579591 80.11014) (xy 180.613617 80.172452) (xy 180.616496 80.199235) (xy 180.616496 80.199999) (xy 180.636457 80.389927) (xy 180.666526 80.48247) (xy 180.695473 80.571556) (xy 180.695476 80.571561) (xy 180.790958 80.736941) (xy 180.790965 80.736951) (xy 180.918744 80.878864) (xy 180.918747 80.878866) (xy 181.073248 80.991118) (xy 181.247712 81.068794) (xy 181.434513 81.1085) (xy 181.625487 81.1085) (xy 181.812288 81.068794) (xy 181.986752 80.991118) (xy 182.141253 80.878866) (xy 182.26904 80.736944) (xy 182.364527 80.571556) (xy 182.423542 80.389928) (xy 182.443504 80.2) (xy 182.423542 80.010072) (xy 182.364527 79.828444) (xy 182.26904 79.663056) (xy 182.269038 79.663054) (xy 182.269034 79.663048) (xy 182.141255 79.521135) (xy 181.986752 79.408882) (xy 181.812288 79.331206) (xy 181.625487 79.2915) (xy 181.534239 79.2915) (xy 181.466118 79.271498) (xy 181.445144 79.254595) (xy 179.903633 77.713083) (xy 179.903623 77.713075) (xy 179.764877 77.63297) (xy 179.764874 77.632969) (xy 179.764873 77.632968) (xy 179.764871 77.632967) (xy 179.76487 77.632967) (xy 179.687491 77.612234) (xy 179.610111 77.5915) (xy 179.610109 77.5915) (xy 171.434239 77.5915) (xy 171.366118 77.571498) (xy 171.345144 77.554595) (xy 169.380409 75.58986) (xy 169.346383 75.527548) (xy 169.343504 75.500765) (xy 169.343504 75.500001) (xy 169.323542 75.310072) (xy 169.308263 75.263048) (xy 169.264527 75.128444) (xy 169.16904 74.963056) (xy 169.169038 74.963054) (xy 169.169034 74.963048) (xy 169.041255 74.821135) (xy 168.886752 74.708882) (xy 168.712288 74.631206) (xy 168.525487 74.5915) (xy 168.334513 74.5915) (xy 168.147711 74.631206) (xy 167.973247 74.708882) (xy 167.818744 74.821135) (xy 167.690965 74.963048) (xy 167.690958 74.963058) (xy 167.595476 75.128438) (xy 167.595473 75.128445) (xy 167.536457 75.310072) (xy 167.516496 75.5) (xy 140.849739 75.5) (xy 140.879296 75.432616) (xy 140.934564 75.214368) (xy 140.953156 74.99) (xy 140.934564 74.765632) (xy 140.879296 74.547384) (xy 140.78886 74.341209) (xy 140.702157 74.2085) (xy 140.665724 74.152734) (xy 140.665714 74.152722) (xy 140.522159 73.996782) (xy 140.490737 73.933117) (xy 140.498723 73.862571) (xy 140.543582 73.807542) (xy 140.570827 73.793388) (xy 140.685965 73.750444) (xy 140.802904 73.662904) (xy 140.890444 73.545965) (xy 140.890444 73.545964) (xy 140.941494 73.409093) (xy 140.947999 73.348597) (xy 140.948 73.348585) (xy 140.948 72.704) (xy 140.032251 72.704) (xy 140.065245 72.646853) (xy 140.1 72.517143) (xy 140.1 72.382857) (xy 140.065245 72.253147) (xy 140.032251 72.196) (xy 140.948 72.196) (xy 140.948 71.551414) (xy 140.947999 71.551402) (xy 140.941494 71.490906) (xy 140.890444 71.354035) (xy 140.890444 71.354034) (xy 140.802904 71.237095) (xy 140.685966 71.149556) (xy 140.570826 71.106611) (xy 140.513991 71.064064) (xy 140.48918 70.997543) (xy 140.490842 70.989903) (xy 145.8533 70.989903) (xy 145.8533 71.506097) (xy 145.88712 71.719629) (xy 145.887121 71.719632) (xy 145.934544 71.865586) (xy 145.953928 71.925241) (xy 146.038952 72.09211) (xy 146.05208 72.117874) (xy 146.065869 72.136853) (xy 146.179153 72.292775) (xy 146.179155 72.292777) (xy 146.179157 72.29278) (xy 146.332019 72.445642) (xy 146.332022 72.445644) (xy 146.332025 72.445647) (xy 146.506929 72.572722) (xy 146.699559 72.670872) (xy 146.905171 72.73768) (xy 147.118703 72.7715) (xy 147.118706 72.7715) (xy 147.334894 72.7715) (xy 147.334897 72.7715) (xy 147.548429 72.73768) (xy 147.754041 72.670872) (xy 147.946671 72.572722) (xy 148.121575 72.445647) (xy 148.274447 72.292775) (xy 148.394864 72.127035) (xy 148.451086 72.083681) (xy 148.521822 72.077606) (xy 148.584614 72.110737) (xy 148.598736 72.127035) (xy 148.719153 72.292775) (xy 148.719155 72.292777) (xy 148.719157 72.29278) (xy 148.872019 72.445642) (xy 148.872022 72.445644) (xy 148.872025 72.445647) (xy 149.046929 72.572722) (xy 149.172676 72.636793) (xy 149.22429 72.68554) (xy 149.241356 72.754455) (xy 149.218455 72.821657) (xy 149.204568 72.838154) (xy 149.145009 72.897713) (xy 149.145008 72.897715) (xy 149.057406 73.02882) (xy 148.997065 73.174497) (xy 148.997063 73.174502) (xy 148.9663 73.329155) (xy 148.9663 73.329158) (xy 148.9663 73.486842) (xy 148.997063 73.641497) (xy 149.057406 73.787179) (xy 149.145011 73.918289) (xy 149.256511 74.029789) (xy 149.387621 74.117394) (xy 149.533303 74.177737) (xy 149.687958 74.2085) (xy 149.687959 74.2085) (xy 149.845641 74.2085) (xy 149.845642 74.2085) (xy 150.000297 74.177737) (xy 150.145979 74.117394) (xy 150.277089 74.029789) (xy 150.388589 73.918289) (xy 150.476194 73.787179) (xy 150.536537 73.641497) (xy 150.5673 73.486842) (xy 150.5673 73.329158) (xy 150.536537 73.174503) (xy 150.476194 73.028821) (xy 150.388589 72.897711) (xy 150.329032 72.838154) (xy 150.295006 72.775842) (xy 150.300071 72.705027) (xy 150.342618 72.648191) (xy 150.360917 72.636796) (xy 150.486671 72.572722) (xy 150.661575 72.445647) (xy 150.814447 72.292775) (xy 150.934864 72.127035) (xy 150.991086 72.083681) (xy 151.061822 72.077606) (xy 151.124614 72.110737) (xy 151.138736 72.127035) (xy 151.259153 72.292775) (xy 151.259155 72.292777) (xy 151.259157 72.29278) (xy 151.412019 72.445642) (xy 151.412022 72.445644) (xy 151.412025 72.445647) (xy 151.586929 72.572722) (xy 151.779559 72.670872) (xy 151.985171 72.73768) (xy 152.198703 72.7715) (xy 152.198706 72.7715) (xy 152.414894 72.7715) (xy 152.414897 72.7715) (xy 152.628429 72.73768) (xy 152.834041 72.670872) (xy 153.026671 72.572722) (xy 153.201575 72.445647) (xy 153.285933 72.361288) (xy 153.348243 72.327265) (xy 153.419059 72.332329) (xy 153.475895 72.374875) (xy 153.493083 72.406352) (xy 153.531356 72.508966) (xy 153.618895 72.625904) (xy 153.735834 72.713444) (xy 153.872706 72.764494) (xy 153.933202 72.770999) (xy 153.933215 72.771) (xy 154.5928 72.771) (xy 154.5928 71.69025) (xy 154.649947 71.723245) (xy 154.779657 71.758) (xy 154.913943 71.758) (xy 155.043653 71.723245) (xy 155.1008 71.69025) (xy 155.1008 72.771) (xy 155.760385 72.771) (xy 155.760397 72.770999) (xy 155.820893 72.764494) (xy 155.957764 72.713444) (xy 155.957765 72.713444) (xy 156.074704 72.625904) (xy 156.162244 72.508965) (xy 156.162244 72.508964) (xy 156.213294 72.372093) (xy 156.219799 72.311597) (xy 156.2198 72.311585) (xy 156.2198 71.502) (xy 155.289051 71.502) (xy 155.322045 71.444853) (xy 155.3568 71.315143) (xy 155.3568 71.180857) (xy 155.322045 71.051147) (xy 155.289051 70.994) (xy 156.2198 70.994) (xy 156.2198 70.989903) (xy 157.0533 70.989903) (xy 157.0533 71.506097) (xy 157.08712 71.719629) (xy 157.087121 71.719632) (xy 157.134544 71.865586) (xy 157.153928 71.925241) (xy 157.238952 72.09211) (xy 157.25208 72.117874) (xy 157.265869 72.136853) (xy 157.379153 72.292775) (xy 157.379155 72.292777) (xy 157.379157 72.29278) (xy 157.532019 72.445642) (xy 157.532022 72.445644) (xy 157.532025 72.445647) (xy 157.706929 72.572722) (xy 157.899559 72.670872) (xy 158.105171 72.73768) (xy 158.318703 72.7715) (xy 158.318706 72.7715) (xy 158.534894 72.7715) (xy 158.534897 72.7715) (xy 158.748429 72.73768) (xy 158.954041 72.670872) (xy 159.146671 72.572722) (xy 159.321575 72.445647) (xy 159.474447 72.292775) (xy 159.594864 72.127035) (xy 159.651086 72.083681) (xy 159.721822 72.077606) (xy 159.784614 72.110737) (xy 159.798736 72.127035) (xy 159.919153 72.292775) (xy 159.919155 72.292777) (xy 159.919157 72.29278) (xy 160.072019 72.445642) (xy 160.072022 72.445644) (xy 160.072025 72.445647) (xy 160.246929 72.572722) (xy 160.372676 72.636793) (xy 160.42429 72.68554) (xy 160.441356 72.754455) (xy 160.418455 72.821657) (xy 160.404568 72.838154) (xy 160.345009 72.897713) (xy 160.345008 72.897715) (xy 160.257406 73.02882) (xy 160.197065 73.174497) (xy 160.197063 73.174502) (xy 160.1663 73.329155) (xy 160.1663 73.329158) (xy 160.1663 73.486842) (xy 160.197063 73.641497) (xy 160.257406 73.787179) (xy 160.345011 73.918289) (xy 160.456511 74.029789) (xy 160.587621 74.117394) (xy 160.733303 74.177737) (xy 160.887958 74.2085) (xy 160.887959 74.2085) (xy 161.045641 74.2085) (xy 161.045642 74.2085) (xy 161.200297 74.177737) (xy 161.345979 74.117394) (xy 161.477089 74.029789) (xy 161.588589 73.918289) (xy 161.676194 73.787179) (xy 161.736537 73.641497) (xy 161.7673 73.486842) (xy 161.7673 73.329158) (xy 161.736537 73.174503) (xy 161.676194 73.028821) (xy 161.588589 72.897711) (xy 161.529032 72.838154) (xy 161.495006 72.775842) (xy 161.500071 72.705027) (xy 161.542618 72.648191) (xy 161.560917 72.636796) (xy 161.686671 72.572722) (xy 161.861575 72.445647) (xy 162.014447 72.292775) (xy 162.134864 72.127035) (xy 162.191086 72.083681) (xy 162.261822 72.077606) (xy 162.324614 72.110737) (xy 162.338736 72.127035) (xy 162.459153 72.292775) (xy 162.459155 72.292777) (xy 162.459157 72.29278) (xy 162.612019 72.445642) (xy 162.612022 72.445644) (xy 162.612025 72.445647) (xy 162.786929 72.572722) (xy 162.979559 72.670872) (xy 163.185171 72.73768) (xy 163.398703 72.7715) (xy 163.398706 72.7715) (xy 163.614894 72.7715) (xy 163.614897 72.7715) (xy 163.828429 72.73768) (xy 164.034041 72.670872) (xy 164.226671 72.572722) (xy 164.401575 72.445647) (xy 164.485933 72.361288) (xy 164.548243 72.327265) (xy 164.619059 72.332329) (xy 164.675895 72.374875) (xy 164.693083 72.406352) (xy 164.731356 72.508966) (xy 164.818895 72.625904) (xy 164.935834 72.713444) (xy 165.072706 72.764494) (xy 165.133202 72.770999) (xy 165.133215 72.771) (xy 165.7928 72.771) (xy 165.7928 71.69025) (xy 165.849947 71.723245) (xy 165.979657 71.758) (xy 166.113943 71.758) (xy 166.243653 71.723245) (xy 166.3008 71.69025) (xy 166.3008 72.771) (xy 166.960385 72.771) (xy 166.960397 72.770999) (xy 167.020893 72.764494) (xy 167.157764 72.713444) (xy 167.157765 72.713444) (xy 167.274704 72.625904) (xy 167.362244 72.508965) (xy 167.362244 72.508964) (xy 167.402885 72.4) (xy 169.11693 72.4) (xy 169.13718 72.670227) (xy 169.19748 72.934413) (xy 169.197481 72.934416) (xy 169.29648 73.186664) (xy 169.431968 73.421335) (xy 169.484092 73.486696) (xy 169.484093 73.486696) (xy 170.327301 72.643488) (xy 170.353978 72.70789) (xy 170.425112 72.814351) (xy 170.515649 72.904888) (xy 170.62211 72.976022) (xy 170.68651 73.002698) (xy 169.842455 73.846752) (xy 169.842455 73.846753) (xy 170.023469 73.970167) (xy 170.02347 73.970168) (xy 170.267602 74.087735) (xy 170.526547 74.167611) (xy 170.526555 74.167612) (xy 170.794513 74.208) (xy 171.065487 74.208) (xy 171.333444 74.167612) (xy 171.333452 74.167611) (xy 171.592397 74.087735) (xy 171.836529 73.970168) (xy 171.83653 73.970167) (xy 172.017544 73.846753) (xy 171.173489 73.002698) (xy 171.23789 72.976022) (xy 171.344351 72.904888) (xy 171.434888 72.814351) (xy 171.506022 72.70789) (xy 171.532698 72.643489) (xy 172.375906 73.486697) (xy 172.375907 73.486696) (xy 172.428025 73.421343) (xy 172.428031 73.421335) (xy 172.563519 73.186664) (xy 172.662518 72.934416) (xy 172.662519 72.934413) (xy 172.722819 72.670227) (xy 172.743069 72.4) (xy 172.722819 72.129772) (xy 172.662519 71.865586) (xy 172.662518 71.865583) (xy 172.563519 71.613335) (xy 172.428031 71.378664) (xy 172.375906 71.313302) (xy 172.375905 71.313302) (xy 171.532697 72.156509) (xy 171.506022 72.09211) (xy 171.434888 71.985649) (xy 171.344351 71.895112) (xy 171.23789 71.823978) (xy 171.173488 71.797301) (xy 171.919439 71.05135) (xy 174.1215 71.05135) (xy 174.1215 73.748649) (xy 174.128009 73.809196) (xy 174.128011 73.809204) (xy 174.17911 73.946202) (xy 174.179112 73.946207) (xy 174.266738 74.063261) (xy 174.383792 74.150887) (xy 174.383794 74.150888) (xy 174.383796 74.150889) (xy 174.428629 74.167611) (xy 174.520795 74.201988) (xy 174.520803 74.20199) (xy 174.58135 74.208499) (xy 174.581355 74.208499) (xy 174.581362 74.2085) (xy 174.581368 74.2085) (xy 177.278632 74.2085) (xy 177.278638 74.2085) (xy 177.278645 74.208499) (xy 177.278649 74.208499) (xy 177.339196 74.20199) (xy 177.339199 74.201989) (xy 177.339201 74.201989) (xy 177.476204 74.150889) (xy 177.52095 74.117393) (xy 177.593261 74.063261) (xy 177.680887 73.946207) (xy 177.680887 73.946206) (xy 177.680889 73.946204) (xy 177.731989 73.809201) (xy 177.732168 73.807542) (xy 177.738499 73.748649) (xy 177.7385 73.748632) (xy 177.7385 71.051367) (xy 177.738499 71.05135) (xy 177.73199 70.990803) (xy 177.731988 70.990795) (xy 177.680889 70.853797) (xy 177.680887 70.853792) (xy 177.593261 70.736738) (xy 177.476207 70.649112) (xy 177.476202 70.64911) (xy 177.339204 70.598011) (xy 177.339196 70.598009) (xy 177.278649 70.5915) (xy 177.278638 70.5915) (xy 174.581362 70.5915) (xy 174.58135 70.5915) (xy 174.520803 70.598009) (xy 174.520795 70.598011) (xy 174.383797 70.64911) (xy 174.383792 70.649112) (xy 174.266738 70.736738) (xy 174.179112 70.853792) (xy 174.17911 70.853797) (xy 174.128011 70.990795) (xy 174.128009 70.990803) (xy 174.1215 71.05135) (xy 171.919439 71.05135) (xy 172.017543 70.953246) (xy 172.017543 70.953244) (xy 171.836537 70.829836) (xy 171.836529 70.829831) (xy 171.592397 70.712264) (xy 171.333452 70.632388) (xy 171.333444 70.632387) (xy 171.065487 70.592) (xy 170.794513 70.592) (xy 170.526555 70.632387) (xy 170.526547 70.632388) (xy 170.267602 70.712264) (xy 170.02347 70.829831) (xy 170.023462 70.829836) (xy 169.842455 70.953244) (xy 169.842455 70.953246) (xy 170.68651 71.797301) (xy 170.62211 71.823978) (xy 170.515649 71.895112) (xy 170.425112 71.985649) (xy 170.353978 72.09211) (xy 170.327301 72.15651) (xy 169.484093 71.313302) (xy 169.484091 71.313302) (xy 169.431968 71.378664) (xy 169.29648 71.613335) (xy 169.197481 71.865583) (xy 169.19748 71.865586) (xy 169.13718 72.129772) (xy 169.11693 72.4) (xy 167.402885 72.4) (xy 167.413294 72.372093) (xy 167.419799 72.311597) (xy 167.4198 72.311585) (xy 167.4198 71.502) (xy 166.489051 71.502) (xy 166.522045 71.444853) (xy 166.5568 71.315143) (xy 166.5568 71.180857) (xy 166.522045 71.051147) (xy 166.489051 70.994) (xy 167.4198 70.994) (xy 167.4198 70.184414) (xy 167.419799 70.184402) (xy 167.413294 70.123906) (xy 167.362244 69.987035) (xy 167.362244 69.987034) (xy 167.274704 69.870095) (xy 167.157765 69.782555) (xy 167.020893 69.731505) (xy 166.960397 69.725) (xy 166.3008 69.725) (xy 166.3008 70.805749) (xy 166.243653 70.772755) (xy 166.113943 70.738) (xy 165.979657 70.738) (xy 165.849947 70.772755) (xy 165.7928 70.805749) (xy 165.7928 69.725) (xy 165.133202 69.725) (xy 165.072706 69.731505) (xy 164.935835 69.782555) (xy 164.935834 69.782555) (xy 164.818895 69.870095) (xy 164.731355 69.987034) (xy 164.731353 69.987039) (xy 164.693082 70.089647) (xy 164.650535 70.146483) (xy 164.584015 70.171293) (xy 164.514641 70.156201) (xy 164.485932 70.134709) (xy 164.40158 70.050357) (xy 164.401577 70.050355) (xy 164.401575 70.050353) (xy 164.226671 69.923278) (xy 164.034041 69.825128) (xy 164.03404 69.825127) (xy 164.034039 69.825127) (xy 163.828432 69.758321) (xy 163.828429 69.75832) (xy 163.614897 69.7245) (xy 163.398703 69.7245) (xy 163.185171 69.75832) (xy 163.185168 69.75832) (xy 163.185167 69.758321) (xy 162.97956 69.825127) (xy 162.786925 69.92328) (xy 162.612022 70.050355) (xy 162.612019 70.050357) (xy 162.459154 70.203222) (xy 162.338736 70.368964) (xy 162.282513 70.412318) (xy 162.211777 70.418393) (xy 162.148986 70.385261) (xy 162.134864 70.368964) (xy 162.014445 70.203222) (xy 161.86158 70.050357) (xy 161.861577 70.050355) (xy 161.861575 70.050353) (xy 161.686671 69.923278) (xy 161.494041 69.825128) (xy 161.49404 69.825127) (xy 161.494039 69.825127) (xy 161.288432 69.758321) (xy 161.288429 69.75832) (xy 161.074897 69.7245) (xy 160.858703 69.7245) (xy 160.645171 69.75832) (xy 160.645168 69.75832) (xy 160.645167 69.758321) (xy 160.43956 69.825127) (xy 160.246925 69.92328) (xy 160.072022 70.050355) (xy 160.072019 70.050357) (xy 159.919154 70.203222) (xy 159.798736 70.368964) (xy 159.742513 70.412318) (xy 159.671777 70.418393) (xy 159.608986 70.385261) (xy 159.594864 70.368964) (xy 159.474445 70.203222) (xy 159.32158 70.050357) (xy 159.321577 70.050355) (xy 159.321575 70.050353) (xy 159.146671 69.923278) (xy 158.954041 69.825128) (xy 158.95404 69.825127) (xy 158.954039 69.825127) (xy 158.748432 69.758321) (xy 158.748429 69.75832) (xy 158.534897 69.7245) (xy 158.318703 69.7245) (xy 158.105171 69.75832) (xy 158.105168 69.75832) (xy 158.105167 69.758321) (xy 157.89956 69.825127) (xy 157.706925 69.92328) (xy 157.532022 70.050355) (xy 157.532019 70.050357) (xy 157.379157 70.203219) (xy 157.379155 70.203222) (xy 157.25208 70.378125) (xy 157.153927 70.57076) (xy 157.096575 70.747271) (xy 157.08712 70.776371) (xy 157.0533 70.989903) (xy 156.2198 70.989903) (xy 156.2198 70.184414) (xy 156.219799 70.184402) (xy 156.213294 70.123906) (xy 156.162244 69.987035) (xy 156.162244 69.987034) (xy 156.074704 69.870095) (xy 155.957765 69.782555) (xy 155.820893 69.731505) (xy 155.760397 69.725) (xy 155.1008 69.725) (xy 155.1008 70.805749) (xy 155.043653 70.772755) (xy 154.913943 70.738) (xy 154.779657 70.738) (xy 154.649947 70.772755) (xy 154.5928 70.805749) (xy 154.5928 69.725) (xy 153.933202 69.725) (xy 153.872706 69.731505) (xy 153.735835 69.782555) (xy 153.735834 69.782555) (xy 153.618895 69.870095) (xy 153.531355 69.987034) (xy 153.531353 69.987039) (xy 153.493082 70.089647) (xy 153.450535 70.146483) (xy 153.384015 70.171293) (xy 153.314641 70.156201) (xy 153.285932 70.134709) (xy 153.20158 70.050357) (xy 153.201577 70.050355) (xy 153.201575 70.050353) (xy 153.026671 69.923278) (xy 152.834041 69.825128) (xy 152.83404 69.825127) (xy 152.834039 69.825127) (xy 152.628432 69.758321) (xy 152.628429 69.75832) (xy 152.414897 69.7245) (xy 152.198703 69.7245) (xy 151.985171 69.75832) (xy 151.985168 69.75832) (xy 151.985167 69.758321) (xy 151.77956 69.825127) (xy 151.586925 69.92328) (xy 151.412022 70.050355) (xy 151.412019 70.050357) (xy 151.259154 70.203222) (xy 151.138736 70.368964) (xy 151.082513 70.412318) (xy 151.011777 70.418393) (xy 150.948986 70.385261) (xy 150.934864 70.368964) (xy 150.814445 70.203222) (xy 150.66158 70.050357) (xy 150.661577 70.050355) (xy 150.661575 70.050353) (xy 150.486671 69.923278) (xy 150.294041 69.825128) (xy 150.29404 69.825127) (xy 150.294039 69.825127) (xy 150.088432 69.758321) (xy 150.088429 69.75832) (xy 149.874897 69.7245) (xy 149.658703 69.7245) (xy 149.445171 69.75832) (xy 149.445168 69.75832) (xy 149.445167 69.758321) (xy 149.23956 69.825127) (xy 149.046925 69.92328) (xy 148.872022 70.050355) (xy 148.872019 70.050357) (xy 148.719154 70.203222) (xy 148.598736 70.368964) (xy 148.542513 70.412318) (xy 148.471777 70.418393) (xy 148.408986 70.385261) (xy 148.394864 70.368964) (xy 148.274445 70.203222) (xy 148.12158 70.050357) (xy 148.121577 70.050355) (xy 148.121575 70.050353) (xy 147.946671 69.923278) (xy 147.754041 69.825128) (xy 147.75404 69.825127) (xy 147.754039 69.825127) (xy 147.548432 69.758321) (xy 147.548429 69.75832) (xy 147.334897 69.7245) (xy 147.118703 69.7245) (xy 146.905171 69.75832) (xy 146.905168 69.75832) (xy 146.905167 69.758321) (xy 146.69956 69.825127) (xy 146.506925 69.92328) (xy 146.332022 70.050355) (xy 146.332019 70.050357) (xy 146.179157 70.203219) (xy 146.179155 70.203222) (xy 146.05208 70.378125) (xy 145.953927 70.57076) (xy 145.896575 70.747271) (xy 145.88712 70.776371) (xy 145.8533 70.989903) (xy 140.490842 70.989903) (xy 140.504272 70.928169) (xy 140.522154 70.903222) (xy 140.665722 70.747268) (xy 140.78886 70.558791) (xy 140.879296 70.352616) (xy 140.934564 70.134368) (xy 140.953156 69.91) (xy 140.934564 69.685632) (xy 140.90332 69.562251) (xy 140.879297 69.467387) (xy 140.879296 69.467386) (xy 140.879296 69.467384) (xy 140.78886 69.261209) (xy 140.78214 69.250924) (xy 140.665724 69.072734) (xy 140.66572 69.072729) (xy 140.513237 68.907091) (xy 140.368307 68.794287) (xy 140.335576 68.768811) (xy 140.302319 68.750813) (xy 140.251929 68.700802) (xy 140.236576 68.631485) (xy 140.261136 68.564872) (xy 140.30232 68.529186) (xy 140.335576 68.511189) (xy 140.51324 68.372906) (xy 140.665722 68.207268) (xy 140.761555 68.060585) (xy 140.815558 68.014496) (xy 140.867038 68.0035) (xy 175.305406 68.0035) (xy 175.373527 68.023502) (xy 175.394501 68.040405) (xy 177.954595 70.600499) (xy 177.988621 70.662811) (xy 177.9915 70.689594) (xy 177.9915 72.832606) (xy 177.9915 72.957394) (xy 178.015845 73.079785) (xy 178.0636 73.195075) (xy 178.132929 73.298833) (xy 178.132931 73.298835) (xy 180.582877 75.748781) (xy 180.616903 75.811093) (xy 180.619092 75.824705) (xy 180.636457 75.989927) (xy 180.666526 76.08247) (xy 180.695473 76.171556) (xy 180.703161 76.184872) (xy 180.790958 76.336941) (xy 180.790965 76.336951) (xy 180.918744 76.478864) (xy 180.918747 76.478866) (xy 181.073248 76.591118) (xy 181.247712 76.668794) (xy 181.434513 76.7085) (xy 181.625487 76.7085) (xy 181.812288 76.668794) (xy 181.986752 76.591118) (xy 182.141253 76.478866) (xy 182.141255 76.478864) (xy 182.269034 76.336951) (xy 182.269035 76.336949) (xy 182.26904 76.336944) (xy 182.364527 76.171556) (xy 182.423542 75.989928) (xy 182.443504 75.8) (xy 182.423542 75.610072) (xy 182.364527 75.428444) (xy 182.26904 75.263056) (xy 182.269038 75.263054) (xy 182.269034 75.263048) (xy 182.141255 75.121135) (xy 181.986752 75.008882) (xy 181.812288 74.931206) (xy 181.625487 74.8915) (xy 181.569594 74.8915) (xy 181.501473 74.871498) (xy 181.480499 74.854595) (xy 179.295405 72.669501) (xy 179.261379 72.607189) (xy 179.2585 72.580406) (xy 179.2585 70.312607) (xy 179.258499 70.312603) (xy 179.234155 70.190215) (xy 179.186401 70.074925) (xy 179.117072 69.971167) (xy 179.117067 69.971161) (xy 176.023835 66.877931) (xy 176.023833 66.877929) (xy 175.920075 66.8086) (xy 175.804785 66.760845) (xy 175.731086 66.746185) (xy 175.682396 66.7365) (xy 175.682394 66.7365) (xy 140.867038 66.7365) (xy 140.798917 66.716498) (xy 140.761555 66.679415) (xy 140.665724 66.532734) (xy 140.66572 66.532729) (xy 140.513237 66.367091) (xy 140.42584 66.299067) (xy 140.335576 66.228811) (xy 140.335572 66.228809) (xy 140.331876 66.225932) (xy 140.290405 66.168306) (xy 140.286671 66.097408) (xy 140.321861 66.035746) (xy 140.384802 66.002898) (xy 140.409267 66.0005) (xy 182.434108 66.0005) (xy 182.497252 66.0005) (xy 182.502748 66.00062) (xy 182.886661 66.017382) (xy 182.89761 66.018339) (xy 183.275883 66.06814) (xy 183.286699 66.070048) (xy 183.622223 66.144432) (xy 183.659184 66.152626) (xy 183.6698 66.15547) (xy 183.710509 66.168306) (xy 184.033668 66.270197) (xy 184.043997 66.273956) (xy 184.396494 66.419965) (xy 184.406456 66.424611) (xy 184.744875 66.600781) (xy 184.754378 66.606267) (xy 185.076174 66.811274) (xy 185.085166 66.81757) (xy 185.387863 67.049839) (xy 185.396283 67.056904) (xy 185.67757 67.314656) (xy 185.685343 67.322429) (xy 185.943095 67.603716) (xy 185.95016 67.612136) (xy 186.182429 67.914833) (xy 186.188728 67.923829) (xy 186.28958 68.082134) (xy 186.393727 68.245613) (xy 186.399223 68.255133) (xy 186.575388 68.593543) (xy 186.580034 68.603505) (xy 186.726043 68.956002) (xy 186.729802 68.966331) (xy 186.844528 69.330197) (xy 186.847373 69.340815) (xy 186.92995 69.713296) (xy 186.931859 69.724121) (xy 186.981659 70.102388) (xy 186.982617 70.113338) (xy 186.99938 70.497251) (xy 186.9995 70.502747) (xy 186.9995 120.497252) (xy 186.99938 120.502748) (xy 186.982617 120.886661) (xy 186.981659 120.897611) (xy 186.931859 121.275878) (xy 186.92995 121.286703) (xy 186.847373 121.659184) (xy 186.844528 121.669802) (xy 186.729802 122.033668) (xy 186.726043 122.043997) (xy 186.580034 122.396494) (xy 186.575388 122.406456) (xy 186.399223 122.744866) (xy 186.393727 122.754386) (xy 186.188734 123.076162) (xy 186.182429 123.085166) (xy 185.95016 123.387863) (xy 185.943095 123.396283) (xy 185.685343 123.67757) (xy 185.67757 123.685343) (xy 185.396283 123.943095) (xy 185.387863 123.95016) (xy 185.085166 124.182429) (xy 185.076162 124.188734) (xy 184.754386 124.393727) (xy 184.744866 124.399223) (xy 184.406456 124.575388) (xy 184.396494 124.580034) (xy 184.043997 124.726043) (xy 184.033668 124.729802) (xy 183.669802 124.844528) (xy 183.659184 124.847373) (xy 183.286703 124.92995) (xy 183.275878 124.931859) (xy 182.897611 124.981659) (xy 182.886661 124.982617) (xy 182.502748 124.99938) (xy 182.497252 124.9995) (xy 111.502748 124.9995) (xy 111.497252 124.99938) (xy 111.113338 124.982617) (xy 111.102388 124.981659) (xy 110.724121 124.931859) (xy 110.713296 124.92995) (xy 110.340815 124.847373) (xy 110.330197 124.844528) (xy 109.966331 124.729802) (xy 109.956002 124.726043) (xy 109.603505 124.580034) (xy 109.593543 124.575388) (xy 109.255133 124.399223) (xy 109.245613 124.393727) (xy 109.244105 124.392766) (xy 108.923829 124.188728) (xy 108.914833 124.182429) (xy 108.612136 123.95016) (xy 108.603716 123.943095) (xy 108.322429 123.685343) (xy 108.314656 123.67757) (xy 108.056904 123.396283) (xy 108.049839 123.387863) (xy 107.81757 123.085166) (xy 107.811274 123.076174) (xy 107.606267 122.754378) (xy 107.600781 122.744875) (xy 107.424611 122.406456) (xy 107.419965 122.396494) (xy 107.273956 122.043997) (xy 107.270197 122.033668) (xy 107.155471 121.669802) (xy 107.152626 121.659184) (xy 107.070049 121.286703) (xy 107.06814 121.275878) (xy 107.041415 121.072886) (xy 107.018339 120.89761) (xy 107.017382 120.886661) (xy 107.00062 120.502748) (xy 107.0005 120.497252) (xy 107.0005 118.799446) (xy 147.1215 118.799446) (xy 147.1215 120.400544) (xy 147.132112 120.504425) (xy 147.187885 120.672738) (xy 147.28097 120.823652) (xy 147.280975 120.823658) (xy 147.406341 120.949024) (xy 147.406347 120.949029) (xy 147.406348 120.94903) (xy 147.557262 121.042115) (xy 147.725574 121.097887) (xy 147.829455 121.1085) (xy 149.130544 121.108499) (xy 149.234426 121.097887) (xy 149.402738 121.042115) (xy 149.553652 120.94903) (xy 149.67903 120.823652) (xy 149.768349 120.678842) (xy 149.821134 120.631365) (xy 149.891208 120.619962) (xy 149.956324 120.648254) (xy 149.964684 120.655895) (xy 150.09499 120.786201) (xy 150.094993 120.786203) (xy 150.094996 120.786206) (xy 150.267991 120.911894) (xy 150.458517 121.008972) (xy 150.661878 121.075047) (xy 150.661879 121.075047) (xy 150.661884 121.075049) (xy 150.873084 121.1085) (xy 150.873087 121.1085) (xy 151.086913 121.1085) (xy 151.086916 121.1085) (xy 151.298116 121.075049) (xy 151.501483 121.008972) (xy 151.692009 120.911894) (xy 151.865004 120.786206) (xy 152.016206 120.635004) (xy 152.141894 120.462009) (xy 152.238972 120.271483) (xy 152.305049 120.068116) (xy 152.3385 119.856916) (xy 152.3385 119.343084) (xy 152.305049 119.131884) (xy 152.238972 118.928517) (xy 152.160469 118.774446) (xy 155.8215 118.774446) (xy 155.8215 120.375544) (xy 155.832112 120.479425) (xy 155.887885 120.647738) (xy 155.98097 120.798652) (xy 155.980975 120.798658) (xy 156.106341 120.924024) (xy 156.106347 120.924029) (xy 156.106348 120.92403) (xy 156.257262 121.017115) (xy 156.425574 121.072887) (xy 156.529455 121.0835) (xy 157.830544 121.083499) (xy 157.934426 121.072887) (xy 158.102738 121.017115) (xy 158.253652 120.92403) (xy 158.37903 120.798652) (xy 158.468349 120.653842) (xy 158.521134 120.606365) (xy 158.591208 120.594962) (xy 158.656324 120.623254) (xy 158.664684 120.630895) (xy 158.79499 120.761201) (xy 158.794993 120.761203) (xy 158.794996 120.761206) (xy 158.967991 120.886894) (xy 159.158517 120.983972) (xy 159.361878 121.050047) (xy 159.361879 121.050047) (xy 159.361884 121.050049) (xy 159.573084 121.0835) (xy 159.573087 121.0835) (xy 159.786913 121.0835) (xy 159.786916 121.0835) (xy 159.998116 121.050049) (xy 160.201483 120.983972) (xy 160.392009 120.886894) (xy 160.565004 120.761206) (xy 160.716206 120.610004) (xy 160.841894 120.437009) (xy 160.938972 120.246483) (xy 161.005049 120.043116) (xy 161.0385 119.831916) (xy 161.0385 119.318084) (xy 161.005049 119.106884) (xy 160.938972 118.903517) (xy 160.841894 118.712991) (xy 160.716206 118.539996) (xy 160.716203 118.539993) (xy 160.716201 118.53999) (xy 160.565009 118.388798) (xy 160.565006 118.388796) (xy 160.565004 118.388794) (xy 160.442789 118.3) (xy 169.226844 118.3) (xy 169.243604 118.502262) (xy 169.245437 118.524375) (xy 169.300702 118.742612) (xy 169.300703 118.742613) (xy 169.391141 118.948793) (xy 169.514275 119.137265) (xy 169.514279 119.13727) (xy 169.666762 119.302908) (xy 169.68626 119.318084) (xy 169.844424 119.441189) (xy 170.042426 119.548342) (xy 170.042427 119.548342) (xy 170.042428 119.548343) (xy 170.154227 119.586723) (xy 170.255365 119.621444) (xy 170.477431 119.6585) (xy 170.477435 119.6585) (xy 170.702565 119.6585) (xy 170.702569 119.6585) (xy 170.924635 119.621444) (xy 171.137574 119.548342) (xy 171.335576 119.441189) (xy 171.51324 119.302906) (xy 171.665722 119.137268) (xy 171.754518 119.001354) (xy 171.80852 118.955268) (xy 171.878868 118.945692) (xy 171.943225 118.975669) (xy 171.96548 119.001353) (xy 171.998607 119.052058) (xy 172.054275 119.137265) (xy 172.054279 119.13727) (xy 172.206762 119.302908) (xy 172.22626 119.318084) (xy 172.384424 119.441189) (xy 172.582426 119.548342) (xy 172.582427 119.548342) (xy 172.582428 119.548343) (xy 172.694227 119.586723) (xy 172.795365 119.621444) (xy 173.017431 119.6585) (xy 173.017435 119.6585) (xy 173.242565 119.6585) (xy 173.242569 119.6585) (xy 173.464635 119.621444) (xy 173.677574 119.548342) (xy 173.875576 119.441189) (xy 174.05324 119.302906) (xy 174.114245 119.236637) (xy 174.175096 119.200067) (xy 174.246061 119.2022) (xy 174.304606 119.242362) (xy 174.325 119.277941) (xy 174.369111 119.396204) (xy 174.369112 119.396207) (xy 174.456738 119.513261) (xy 174.573792 119.600887) (xy 174.573794 119.600888) (xy 174.573796 119.600889) (xy 174.6289 119.621442) (xy 174.710795 119.651988) (xy 174.710803 119.65199) (xy 174.77135 119.658499) (xy 174.771355 119.658499) (xy 174.771362 119.6585) (xy 174.771368 119.6585) (xy 176.568632 119.6585) (xy 176.568638 119.6585) (xy 176.568645 119.658499) (xy 176.568649 119.658499) (xy 176.629196 119.65199) (xy 176.629199 119.651989) (xy 176.629201 119.651989) (xy 176.766204 119.600889) (xy 176.836399 119.548342) (xy 176.883261 119.513261) (xy 176.970887 119.396207) (xy 176.970887 119.396206) (xy 176.970889 119.396204) (xy 177.021989 119.259201) (xy 177.0238 119.242362) (xy 177.028499 119.198649) (xy 177.0285 119.198632) (xy 177.0285 117.401367) (xy 177.028499 117.40135) (xy 177.02199 117.340803) (xy 177.021988 117.340795) (xy 176.970889 117.203796) (xy 176.970887 117.203792) (xy 176.883261 117.086738) (xy 176.766207 116.999112) (xy 176.766202 116.99911) (xy 176.629204 116.948011) (xy 176.629196 116.948009) (xy 176.568649 116.9415) (xy 176.568638 116.9415) (xy 174.771362 116.9415) (xy 174.77135 116.9415) (xy 174.710803 116.948009) (xy 174.710795 116.948011) (xy 174.573797 116.99911) (xy 174.573792 116.999112) (xy 174.456738 117.086738) (xy 174.369112 117.203792) (xy 174.369111 117.203795) (xy 174.325 117.322058) (xy 174.282453 117.378893) (xy 174.215932 117.403703) (xy 174.146558 117.388611) (xy 174.114246 117.363363) (xy 174.05324 117.297094) (xy 174.053239 117.297093) (xy 174.053237 117.297091) (xy 173.933372 117.203796) (xy 173.875576 117.158811) (xy 173.677574 117.051658) (xy 173.677572 117.051657) (xy 173.677571 117.051656) (xy 173.464639 116.978557) (xy 173.46463 116.978555) (xy 173.420476 116.971187) (xy 173.242569 116.9415) (xy 173.017431 116.9415) (xy 172.869211 116.966233) (xy 172.795369 116.978555) (xy 172.79536 116.978557) (xy 172.582428 117.051656) (xy 172.582426 117.051658) (xy 172.384426 117.15881) (xy 172.384424 117.158811) (xy 172.206762 117.297091) (xy 172.054279 117.462729) (xy 171.965483 117.598643) (xy 171.911479 117.644731) (xy 171.841131 117.654306) (xy 171.776774 117.624329) (xy 171.754517 117.598643) (xy 171.66572 117.462729) (xy 171.513237 117.297091) (xy 171.393372 117.203796) (xy 171.335576 117.158811) (xy 171.137574 117.051658) (xy 171.137572 117.051657) (xy 171.137571 117.051656) (xy 170.924639 116.978557) (xy 170.92463 116.978555) (xy 170.880476 116.971187) (xy 170.702569 116.9415) (xy 170.477431 116.9415) (xy 170.329211 116.966233) (xy 170.255369 116.978555) (xy 170.25536 116.978557) (xy 170.042428 117.051656) (xy 170.042426 117.051658) (xy 169.844426 117.15881) (xy 169.844424 117.158811) (xy 169.666762 117.297091) (xy 169.514279 117.462729) (xy 169.514275 117.462734) (xy 169.391141 117.651206) (xy 169.300703 117.857386) (xy 169.300702 117.857387) (xy 169.245437 118.075624) (xy 169.245436 118.07563) (xy 169.245436 118.075632) (xy 169.226844 118.3) (xy 160.442789 118.3) (xy 160.392009 118.263106) (xy 160.201483 118.166028) (xy 160.20148 118.166027) (xy 160.201478 118.166026) (xy 159.99812 118.099952) (xy 159.998123 118.099952) (xy 159.944759 118.0915) (xy 159.786916 118.0665) (xy 159.573084 118.0665) (xy 159.361884 118.099951) (xy 159.361878 118.099952) (xy 159.158521 118.166026) (xy 159.158515 118.166029) (xy 158.967987 118.263108) (xy 158.794995 118.388794) (xy 158.664684 118.519105) (xy 158.602372 118.55313) (xy 158.531556 118.548065) (xy 158.474721 118.505518) (xy 158.468356 118.496168) (xy 158.37903 118.351348) (xy 158.379029 118.351347) (xy 158.379024 118.351341) (xy 158.253658 118.225975) (xy 158.253652 118.22597) (xy 158.196999 118.191026) (xy 158.102738 118.132885) (xy 158.018582 118.104999) (xy 157.934427 118.077113) (xy 157.93442 118.077112) (xy 157.830553 118.0665) (xy 156.529455 118.0665) (xy 156.425574 118.077112) (xy 156.257261 118.132885) (xy 156.106347 118.22597) (xy 156.106341 118.225975) (xy 155.980975 118.351341) (xy 155.98097 118.351347) (xy 155.887885 118.502262) (xy 155.832113 118.670572) (xy 155.832112 118.670579) (xy 155.8215 118.774446) (xy 152.160469 118.774446) (xy 152.141894 118.737991) (xy 152.016206 118.564996) (xy 152.016203 118.564993) (xy 152.016201 118.56499) (xy 151.865009 118.413798) (xy 151.865006 118.413796) (xy 151.865004 118.413794) (xy 151.692009 118.288106) (xy 151.501483 118.191028) (xy 151.50148 118.191027) (xy 151.501478 118.191026) (xy 151.29812 118.124952) (xy 151.298123 118.124952) (xy 151.258801 118.118724) (xy 151.086916 118.0915) (xy 150.873084 118.0915) (xy 150.661884 118.124951) (xy 150.661878 118.124952) (xy 150.458521 118.191026) (xy 150.458515 118.191029) (xy 150.267987 118.288108) (xy 150.094995 118.413794) (xy 149.964684 118.544105) (xy 149.902372 118.57813) (xy 149.831556 118.573065) (xy 149.774721 118.530518) (xy 149.768356 118.521168) (xy 149.67903 118.376348) (xy 149.679029 118.376347) (xy 149.679024 118.376341) (xy 149.553658 118.250975) (xy 149.553652 118.25097) (xy 149.513129 118.225975) (xy 149.402738 118.157885) (xy 149.303348 118.124951) (xy 149.234427 118.102113) (xy 149.23442 118.102112) (xy 149.130553 118.0915) (xy 147.829455 118.0915) (xy 147.725574 118.102112) (xy 147.557261 118.157885) (xy 147.406347 118.25097) (xy 147.406341 118.250975) (xy 147.280975 118.376341) (xy 147.28097 118.376347) (xy 147.187885 118.527262) (xy 147.132113 118.695572) (xy 147.132112 118.695579) (xy 147.1215 118.799446) (xy 107.0005 118.799446) (xy 107.0005 107.14) (xy 110.116444 107.14) (xy 110.134774 107.361209) (xy 110.135037 107.364375) (xy 110.190302 107.582612) (xy 110.190303 107.582613) (xy 110.190304 107.582616) (xy 110.207262 107.621276) (xy 110.280741 107.788793) (xy 110.403875 107.977265) (xy 110.403879 107.97727) (xy 110.556362 108.142908) (xy 110.575368 108.157701) (xy 110.734024 108.281189) (xy 110.76728 108.299186) (xy 110.817671 108.3492) (xy 110.833023 108.418516) (xy 110.808462 108.485129) (xy 110.76728 108.520813) (xy 110.734026 108.53881) (xy 110.734024 108.538811) (xy 110.556362 108.677091) (xy 110.403879 108.842729) (xy 110.403875 108.842734) (xy 110.280741 109.031206) (xy 110.190303 109.237386) (xy 110.190302 109.237387) (xy 110.135037 109.455624) (xy 110.116444 109.68) (xy 110.135037 109.904375) (xy 110.190302 110.122612) (xy 110.190303 110.122613) (xy 110.280741 110.328793) (xy 110.403875 110.517265) (xy 110.403879 110.51727) (xy 110.556362 110.682908) (xy 110.610931 110.725381) (xy 110.734024 110.821189) (xy 110.932026 110.928342) (xy 110.932027 110.928342) (xy 110.932028 110.928343) (xy 111.018714 110.958102) (xy 111.144965 111.001444) (xy 111.367031 111.0385) (xy 111.367035 111.0385) (xy 111.592165 111.0385) (xy 111.592169 111.0385) (xy 111.814235 111.001444) (xy 112.027174 110.928342) (xy 112.225176 110.821189) (xy 112.40284 110.682906) (xy 112.555322 110.517268) (xy 112.67846 110.328791) (xy 112.768896 110.122616) (xy 112.824164 109.904368) (xy 112.842756 109.68) (xy 112.824164 109.455632) (xy 112.792715 109.331444) (xy 112.768897 109.237387) (xy 112.768896 109.237386) (xy 112.768896 109.237384) (xy 112.67846 109.031209) (xy 112.660171 109.003216) (xy 112.555324 108.842734) (xy 112.55532 108.842729) (xy 112.402837 108.677091) (xy 112.302217 108.598775) (xy 112.225176 108.538811) (xy 112.191919 108.520813) (xy 112.141529 108.470802) (xy 112.126176 108.401485) (xy 112.150736 108.334872) (xy 112.19192 108.299186) (xy 112.225176 108.281189) (xy 112.40284 108.142906) (xy 112.555322 107.977268) (xy 112.67846 107.788791) (xy 112.768896 107.582616) (xy 112.824164 107.364368) (xy 112.842756 107.14) (xy 112.824164 106.915632) (xy 112.82046 106.901005) (xy 112.768897 106.697387) (xy 112.768896 106.697386) (xy 112.768896 106.697384) (xy 112.67846 106.491209) (xy 112.558284 106.307265) (xy 112.555324 106.302734) (xy 112.555314 106.302722) (xy 112.411759 106.146782) (xy 112.380337 106.083117) (xy 112.388323 106.012571) (xy 112.433182 105.957542) (xy 112.460427 105.943388) (xy 112.575565 105.900444) (xy 112.692504 105.812904) (xy 112.780044 105.695965) (xy 112.780044 105.695964) (xy 112.831094 105.559093) (xy 112.837599 105.498597) (xy 112.8376 105.498585) (xy 112.8376 104.854) (xy 111.910303 104.854) (xy 111.945525 104.792993) (xy 111.9796 104.665826) (xy 111.9796 104.534174) (xy 111.945525 104.407007) (xy 111.910303 104.346) (xy 112.8376 104.346) (xy 112.8376 103.701414) (xy 112.837599 103.701402) (xy 112.831094 103.640906) (xy 112.780044 103.504035) (xy 112.780044 103.504034) (xy 112.692504 103.387095) (xy 112.575565 103.299555) (xy 112.438693 103.248505) (xy 112.378197 103.242) (xy 111.7336 103.242) (xy 111.7336 104.169297) (xy 111.672593 104.134075) (xy 111.545426 104.1) (xy 111.413774 104.1) (xy 111.286607 104.134075) (xy 111.2256 104.169297) (xy 111.2256 103.242) (xy 110.581002 103.242) (xy 110.520506 103.248505) (xy 110.383635 103.299555) (xy 110.383634 103.299555) (xy 110.266695 103.387095) (xy 110.179155 103.504034) (xy 110.179155 103.504035) (xy 110.128105 103.640906) (xy 110.1216 103.701402) (xy 110.1216 104.346) (xy 111.048897 104.346) (xy 111.013675 104.407007) (xy 110.9796 104.534174) (xy 110.9796 104.665826) (xy 111.013675 104.792993) (xy 111.048897 104.854) (xy 110.1216 104.854) (xy 110.1216 105.498597) (xy 110.128105 105.559093) (xy 110.179155 105.695964) (xy 110.179155 105.695965) (xy 110.266695 105.812904) (xy 110.383634 105.900444) (xy 110.498772 105.943388) (xy 110.555608 105.985935) (xy 110.580419 106.052455) (xy 110.565328 106.121829) (xy 110.547441 106.146782) (xy 110.40388 106.302729) (xy 110.403875 106.302734) (xy 110.280741 106.491206) (xy 110.190303 106.697386) (xy 110.190302 106.697387) (xy 110.135037 106.915624) (xy 110.135036 106.91563) (xy 110.135036 106.915632) (xy 110.116444 107.14) (xy 107.0005 107.14) (xy 107.0005 97.10135) (xy 108.9815 97.10135) (xy 108.9815 98.898649) (xy 108.988009 98.959196) (xy 108.988011 98.959204) (xy 109.03911 99.096202) (xy 109.039112 99.096207) (xy 109.126738 99.213261) (xy 109.243792 99.300887) (xy 109.243794 99.300888) (xy 109.243796 99.300889) (xy 109.2989 99.321442) (xy 109.380795 99.351988) (xy 109.380803 99.35199) (xy 109.44135 99.358499) (xy 109.441355 99.358499) (xy 109.441362 99.3585) (xy 109.441368 99.3585) (xy 111.238632 99.3585) (xy 111.238638 99.3585) (xy 111.238645 99.358499) (xy 111.238649 99.358499) (xy 111.299196 99.35199) (xy 111.299199 99.351989) (xy 111.299201 99.351989) (xy 111.436204 99.300889) (xy 111.450848 99.289927) (xy 111.553261 99.213261) (xy 111.640886 99.096208) (xy 111.640885 99.096208) (xy 111.640889 99.096204) (xy 111.684999 98.977939) (xy 111.727545 98.921107) (xy 111.794066 98.896296) (xy 111.86344 98.911388) (xy 111.895753 98.936635) (xy 111.916529 98.959204) (xy 111.956762 99.002908) (xy 111.993497 99.0315) (xy 112.134424 99.141189) (xy 112.332426 99.248342) (xy 112.332427 99.248342) (xy 112.332428 99.248343) (xy 112.37503 99.262968) (xy 112.545365 99.321444) (xy 112.767431 99.3585) (xy 112.767435 99.3585) (xy 112.992565 99.3585) (xy 112.992569 99.3585) (xy 113.214635 99.321444) (xy 113.427574 99.248342) (xy 113.625576 99.141189) (xy 113.80324 99.002906) (xy 113.955722 98.837268) (xy 114.07886 98.648791) (xy 114.169296 98.442616) (xy 114.224564 98.224368) (xy 114.243156 98) (xy 114.224564 97.775632) (xy 114.169296 97.557384) (xy 114.07886 97.351209) (xy 113.973894 97.190546) (xy 113.955724 97.162734) (xy 113.95572 97.162729) (xy 113.803237 96.997091) (xy 113.666811 96.890906) (xy 113.625576 96.858811) (xy 113.427574 96.751658) (xy 113.427572 96.751657) (xy 113.427571 96.751656) (xy 113.214639 96.678557) (xy 113.21463 96.678555) (xy 113.154372 96.6685) (xy 112.992569 96.6415) (xy 112.767431 96.6415) (xy 112.619211 96.666233) (xy 112.545369 96.678555) (xy 112.54536 96.678557) (xy 112.332428 96.751656) (xy 112.332426 96.751658) (xy 112.134426 96.85881) (xy 112.134424 96.858811) (xy 111.956762 96.997091) (xy 111.895754 97.063363) (xy 111.834901 97.099933) (xy 111.763936 97.097798) (xy 111.705391 97.057636) (xy 111.684999 97.022057) (xy 111.658626 96.95135) (xy 111.640889 96.903796) (xy 111.640888 96.903794) (xy 111.640887 96.903792) (xy 111.553261 96.786738) (xy 111.436207 96.699112) (xy 111.436202 96.69911) (xy 111.299204 96.648011) (xy 111.299196 96.648009) (xy 111.238649 96.6415) (xy 111.238638 96.6415) (xy 109.441362 96.6415) (xy 109.44135 96.6415) (xy 109.380803 96.648009) (xy 109.380795 96.648011) (xy 109.243797 96.69911) (xy 109.243792 96.699112) (xy 109.126738 96.786738) (xy 109.039112 96.903792) (xy 109.03911 96.903797) (xy 108.988011 97.040795) (xy 108.988009 97.040803) (xy 108.9815 97.10135) (xy 107.0005 97.10135) (xy 107.0005 70.502747) (xy 107.00062 70.497251) (xy 107.011932 70.238161) (xy 107.017382 70.113336) (xy 107.01834 70.102388) (xy 107.068141 69.724113) (xy 107.070049 69.713296) (xy 107.102272 69.56795) (xy 107.152627 69.340808) (xy 107.155471 69.330197) (xy 107.270199 68.966323) (xy 107.273956 68.956002) (xy 107.293632 68.9085) (xy 107.419969 68.603496) (xy 107.424611 68.593543) (xy 107.600786 68.255114) (xy 107.606261 68.245631) (xy 107.811281 67.923813) (xy 107.817564 67.914841) (xy 107.957383 67.732626) (xy 108.049839 67.612136) (xy 108.056904 67.603716) (xy 108.31466 67.322424) (xy 108.322429 67.314656) (xy 108.374029 67.267374) (xy 108.603718 67.056901) (xy 108.612136 67.049839) (xy 108.811316 66.897002) (xy 108.914841 66.817564) (xy 108.923813 66.811281) (xy 109.245631 66.606261) (xy 109.255114 66.600786) (xy 109.593552 66.424606) (xy 109.603496 66.419969) (xy 109.956009 66.273953) (xy 109.966323 66.270199) (xy 110.330204 66.155468) (xy 110.340808 66.152627) (xy 110.713304 66.070047) (xy 110.724113 66.068141) (xy 111.102391 66.018339) (xy 111.113336 66.017382) (xy 111.497252 66.00062) (xy 111.502748 66.0005) (xy 111.565892 66.0005) (xy 120.990733 66.0005) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 138.210672 79.525462) (xy 138.267508 79.568009) (xy 138.292319 79.634529) (xy 138.288785 79.674449) (xy 138.245436 79.84563) (xy 138.245436 79.845632) (xy 138.226844 80.07) (xy 138.237616 80.2) (xy 138.245437 80.294375) (xy 138.300702 80.512612) (xy 138.300703 80.512613) (xy 138.300704 80.512616) (xy 138.356932 80.640803) (xy 138.391141 80.718793) (xy 138.514275 80.907265) (xy 138.514279 80.90727) (xy 138.666762 81.072908) (xy 138.712491 81.1085) (xy 138.844424 81.211189) (xy 138.87768 81.229186) (xy 138.928071 81.2792) (xy 138.943423 81.348516) (xy 138.918862 81.415129) (xy 138.87768 81.450813) (xy 138.844426 81.46881) (xy 138.844424 81.468811) (xy 138.666762 81.607091) (xy 138.514279 81.772729) (xy 138.514275 81.772734) (xy 138.391141 81.961206) (xy 138.300703 82.167386) (xy 138.300702 82.167387) (xy 138.245437 82.385624) (xy 138.245436 82.38563) (xy 138.245436 82.385632) (xy 138.226844 82.61) (xy 138.244339 82.821135) (xy 138.245437 82.834375) (xy 138.300702 83.052612) (xy 138.300703 83.052613) (xy 138.300704 83.052616) (xy 138.381848 83.237607) (xy 138.391141 83.258793) (xy 138.514275 83.447265) (xy 138.51428 83.44727) (xy 138.657475 83.60282) (xy 138.688896 83.666485) (xy 138.680909 83.737031) (xy 138.636051 83.79206) (xy 138.608807 83.806213) (xy 138.493797 83.84911) (xy 138.493792 83.849112) (xy 138.376738 83.936738) (xy 138.289112 84.053792) (xy 138.28911 84.053797) (xy 138.238011 84.190795) (xy 138.238009 84.190803) (xy 138.2315 84.25135) (xy 138.2315 86.048649) (xy 138.238009 86.109196) (xy 138.238011 86.109204) (xy 138.28911 86.246202) (xy 138.289112 86.246207) (xy 138.376738 86.363261) (xy 138.493791 86.450886) (xy 138.493792 86.450886) (xy 138.493796 86.450889) (xy 138.60881 86.493787) (xy 138.665642 86.536332) (xy 138.690453 86.602852) (xy 138.675362 86.672226) (xy 138.657475 86.697179) (xy 138.51428 86.852729) (xy 138.514275 86.852734) (xy 138.391141 87.041206) (xy 138.300703 87.247386) (xy 138.300702 87.247387) (xy 138.245437 87.465624) (xy 138.245436 87.46563) (xy 138.245436 87.465632) (xy 138.226844 87.69) (xy 138.242504 87.878989) (xy 138.245437 87.914375) (xy 138.300702 88.132612) (xy 138.300703 88.132613) (xy 138.300704 88.132616) (xy 138.35792 88.263056) (xy 138.391141 88.338793) (xy 138.514275 88.527265) (xy 138.514279 88.52727) (xy 138.568903 88.586606) (xy 138.66402 88.68993) (xy 138.666762 88.692908) (xy 138.721331 88.735381) (xy 138.844424 88.831189) (xy 138.87768 88.849186) (xy 138.928071 88.8992) (xy 138.943423 88.968516) (xy 138.918862 89.035129) (xy 138.87768 89.070813) (xy 138.844426 89.08881) (xy 138.844424 89.088811) (xy 138.666762 89.227091) (xy 138.514279 89.392729) (xy 138.514275 89.392734) (xy 138.391141 89.581206) (xy 138.300703 89.787386) (xy 138.300702 89.787387) (xy 138.245437 90.005624) (xy 138.245436 90.00563) (xy 138.245436 90.005632) (xy 138.226844 90.23) (xy 138.243992 90.436944) (xy 138.245437 90.454375) (xy 138.300702 90.672612) (xy 138.300703 90.672613) (xy 138.300704 90.672616) (xy 138.39114 90.878791) (xy 138.391141 90.878793) (xy 138.514275 91.067265) (xy 138.514279 91.06727) (xy 138.666762 91.232908) (xy 138.669193 91.2348) (xy 138.844424 91.371189) (xy 138.87768 91.389186) (xy 138.928071 91.4392) (xy 138.943423 91.508516) (xy 138.918862 91.575129) (xy 138.87768 91.610813) (xy 138.844426 91.62881) (xy 138.844424 91.628811) (xy 138.666762 91.767091) (xy 138.514279 91.932729) (xy 138.514275 91.932734) (xy 138.391141 92.121206) (xy 138.300703 92.327386) (xy 138.300702 92.327387) (xy 138.245437 92.545624) (xy 138.245436 92.54563) (xy 138.245436 92.545632) (xy 138.226844 92.77) (xy 138.241253 92.943893) (xy 138.245437 92.994375) (xy 138.300702 93.212612) (xy 138.300703 93.212613) (xy 138.300704 93.212616) (xy 138.354954 93.336294) (xy 138.391141 93.418793) (xy 138.514275 93.607265) (xy 138.514279 93.60727) (xy 138.666762 93.772908) (xy 138.721331 93.815381) (xy 138.844424 93.911189) (xy 138.87768 93.929186) (xy 138.928071 93.9792) (xy 138.943423 94.048516) (xy 138.918862 94.115129) (xy 138.87768 94.150813) (xy 138.844426 94.16881) (xy 138.844424 94.168811) (xy 138.666762 94.307091) (xy 138.514279 94.472729) (xy 138.514275 94.472734) (xy 138.391141 94.661206) (xy 138.300703 94.867386) (xy 138.300702 94.867387) (xy 138.245437 95.085624) (xy 138.245436 95.08563) (xy 138.245436 95.085632) (xy 138.226844 95.31) (xy 138.244848 95.527276) (xy 138.245437 95.534375) (xy 138.300702 95.752612) (xy 138.300703 95.752613) (xy 138.300704 95.752616) (xy 138.387065 95.9495) (xy 138.391141 95.958793) (xy 138.514275 96.147265) (xy 138.514279 96.14727) (xy 138.583489 96.222451) (xy 138.657475 96.30282) (xy 138.657841 96.303217) (xy 138.689262 96.366882) (xy 138.681276 96.437428) (xy 138.636417 96.492457) (xy 138.609173 96.50661) (xy 138.494039 96.549553) (xy 138.494034 96.549555) (xy 138.377095 96.637095) (xy 138.289555 96.754034) (xy 138.289555 96.754035) (xy 138.238505 96.890906) (xy 138.232 96.951402) (xy 138.232 97.596) (xy 139.147749 97.596) (xy 139.114755 97.653147) (xy 139.08 97.782857) (xy 139.08 97.917143) (xy 139.114755 98.046853) (xy 139.147749 98.104) (xy 138.232 98.104) (xy 138.232 98.748597) (xy 138.238505 98.809093) (xy 138.289555 98.945964) (xy 138.289555 98.945965) (xy 138.377095 99.062904) (xy 138.494034 99.150444) (xy 138.609172 99.193388) (xy 138.666008 99.235935) (xy 138.690819 99.302455) (xy 138.675728 99.371829) (xy 138.657841 99.396782) (xy 138.51428 99.552729) (xy 138.514275 99.552734) (xy 138.391141 99.741206) (xy 138.300703 99.947386) (xy 138.300702 99.947387) (xy 138.245437 100.165624) (xy 138.226844 100.39) (xy 138.245437 100.614375) (xy 138.300702 100.832612) (xy 138.300703 100.832613) (xy 138.391141 101.038793) (xy 138.514275 101.227265) (xy 138.514279 101.22727) (xy 138.666762 101.392908) (xy 138.721331 101.435381) (xy 138.844424 101.531189) (xy 138.87768 101.549186) (xy 138.928071 101.5992) (xy 138.943423 101.668516) (xy 138.918862 101.735129) (xy 138.87768 101.770813) (xy 138.844426 101.78881) (xy 138.844424 101.788811) (xy 138.666762 101.927091) (xy 138.514279 102.092729) (xy 138.514275 102.092734) (xy 138.391141 102.281206) (xy 138.300703 102.487386) (xy 138.300702 102.487387) (xy 138.245437 102.705624) (xy 138.226844 102.93) (xy 138.245437 103.154375) (xy 138.300702 103.372612) (xy 138.300703 103.372613) (xy 138.391141 103.578793) (xy 138.514275 103.767265) (xy 138.514279 103.76727) (xy 138.666762 103.932908) (xy 138.721331 103.975381) (xy 138.844424 104.071189) (xy 138.87768 104.089186) (xy 138.928071 104.1392) (xy 138.943423 104.208516) (xy 138.918862 104.275129) (xy 138.87768 104.310813) (xy 138.844426 104.32881) (xy 138.844424 104.328811) (xy 138.666762 104.467091) (xy 138.514279 104.632729) (xy 138.514275 104.632734) (xy 138.391141 104.821206) (xy 138.300703 105.027386) (xy 138.300702 105.027387) (xy 138.245437 105.245624) (xy 138.245436 105.24563) (xy 138.245436 105.245632) (xy 138.226844 105.47) (xy 138.231686 105.528438) (xy 138.245437 105.694375) (xy 138.300702 105.912612) (xy 138.300703 105.912613) (xy 138.300704 105.912616) (xy 138.344548 106.012571) (xy 138.391141 106.118793) (xy 138.514275 106.307265) (xy 138.514279 106.30727) (xy 138.666762 106.472908) (xy 138.690275 106.491209) (xy 138.844424 106.611189) (xy 138.875285 106.62789) (xy 138.87768 106.629186) (xy 138.928071 106.6792) (xy 138.943423 106.748516) (xy 138.918862 106.815129) (xy 138.87768 106.850813) (xy 138.844426 106.86881) (xy 138.844424 106.868811) (xy 138.666762 107.007091) (xy 138.514279 107.172729) (xy 138.514275 107.172734) (xy 138.391139 107.361209) (xy 138.300903 107.566928) (xy 138.255222 107.621276) (xy 138.18741 107.6423) (xy 138.118996 107.623324) (xy 138.08358 107.590375) (xy 138.056273 107.552789) (xy 137.911529 107.408043) (xy 137.745921 107.287719) (xy 137.563539 107.194788) (xy 137.563533 107.194786) (xy 137.368855 107.131528) (xy 137.368849 107.131527) (xy 137.368846 107.131526) (xy 137.166675 107.099501) (xy 137.137938 107.099501) (xy 137.13792 107.0995) (xy 137.130207 107.0995) (xy 137.064324 107.0995) (xy 136.998432 107.099499) (xy 136.998431 107.099499) (xy 136.990715 107.099499) (xy 136.990699 107.0995) (xy 124.190533 107.0995) (xy 124.190312 107.099514) (xy 124.161973 107.099514) (xy 124.135472 107.10371) (xy 123.959795 107.131531) (xy 123.765106 107.194786) (xy 123.58271 107.287717) (xy 123.582704 107.287721) (xy 123.417099 107.408038) (xy 123.278011 107.547124) (xy 123.215698 107.581149) (xy 123.144882 107.576083) (xy 123.088047 107.533536) (xy 123.073532 107.508648) (xy 123.00886 107.361209) (xy 122.960847 107.287719) (xy 122.885724 107.172734) (xy 122.88572 107.172729) (xy 122.733237 107.007091) (xy 122.627375 106.924695) (xy 122.555576 106.868811) (xy 122.522319 106.850813) (xy 122.471929 106.800802) (xy 122.456576 106.731485) (xy 122.481136 106.664872) (xy 122.52232 106.629186) (xy 122.524715 106.62789) (xy 122.555576 106.611189) (xy 122.73324 106.472906) (xy 122.885722 106.307268) (xy 123.00886 106.118791) (xy 123.099296 105.912616) (xy 123.154564 105.694368) (xy 123.173156 105.47) (xy 123.154564 105.245632) (xy 123.099296 105.027384) (xy 123.00886 104.821209) (xy 122.963746 104.752157) (xy 122.885724 104.632734) (xy 122.88572 104.632729) (xy 122.733237 104.467091) (xy 122.599563 104.363048) (xy 122.555576 104.328811) (xy 122.522319 104.310813) (xy 122.471929 104.260802) (xy 122.456576 104.191485) (xy 122.481136 104.124872) (xy 122.52232 104.089186) (xy 122.555576 104.071189) (xy 122.73324 103.932906) (xy 122.885722 103.767268) (xy 123.00886 103.578791) (xy 123.099296 103.372616) (xy 123.154564 103.154368) (xy 123.173156 102.93) (xy 123.154564 102.705632) (xy 123.099296 102.487384) (xy 123.00886 102.281209) (xy 123.00214 102.270924) (xy 122.885724 102.092734) (xy 122.88572 102.092729) (xy 122.733237 101.927091) (xy 122.616128 101.835941) (xy 122.555576 101.788811) (xy 122.522319 101.770813) (xy 122.471929 101.720802) (xy 122.456576 101.651485) (xy 122.481136 101.584872) (xy 122.52232 101.549186) (xy 122.555576 101.531189) (xy 122.73324 101.392906) (xy 122.885722 101.227268) (xy 123.00886 101.038791) (xy 123.099296 100.832616) (xy 123.154564 100.614368) (xy 123.173156 100.39) (xy 123.154564 100.165632) (xy 123.099296 99.947384) (xy 123.00886 99.741209) (xy 122.940745 99.636951) (xy 122.885724 99.552734) (xy 122.885719 99.552729) (xy 122.810993 99.471556) (xy 122.742524 99.397179) (xy 122.711103 99.333514) (xy 122.71909 99.262968) (xy 122.763948 99.207939) (xy 122.791183 99.193789) (xy 122.906204 99.150889) (xy 122.906799 99.150444) (xy 123.023261 99.063261) (xy 123.110887 98.946207) (xy 123.110887 98.946206) (xy 123.110889 98.946204) (xy 123.161989 98.809201) (xy 123.1685 98.748638) (xy 123.1685 97.009454) (xy 130.1336 97.009454) (xy 130.1336 97.190546) (xy 130.161929 97.369409) (xy 130.217889 97.541639) (xy 130.300104 97.702994) (xy 130.406547 97.849501) (xy 130.406549 97.849503) (xy 130.406551 97.849506) (xy 130.534593 97.977548) (xy 130.534596 97.97755) (xy 130.534599 97.977553) (xy 130.681106 98.083996) (xy 130.842461 98.166211) (xy 131.014691 98.222171) (xy 131.193554 98.2505) (xy 131.193557 98.2505) (xy 131.374643 98.2505) (xy 131.374646 98.2505) (xy 131.553509 98.222171) (xy 131.725739 98.166211) (xy 131.887094 98.083996) (xy 132.033601 97.977553) (xy 132.161653 97.849501) (xy 132.268096 97.702994) (xy 132.350311 97.541639) (xy 132.406271 97.369409) (xy 132.429651 97.221787) (xy 132.460063 97.157636) (xy 132.520332 97.120109) (xy 132.591321 97.121123) (xy 132.650493 97.160356) (xy 132.678548 97.221786) (xy 132.701929 97.369409) (xy 132.757889 97.541639) (xy 132.840104 97.702994) (xy 132.946547 97.849501) (xy 132.946549 97.849503) (xy 132.946551 97.849506) (xy 133.074593 97.977548) (xy 133.074596 97.97755) (xy 133.074599 97.977553) (xy 133.221106 98.083996) (xy 133.382461 98.166211) (xy 133.554691 98.222171) (xy 133.733554 98.2505) (xy 133.733557 98.2505) (xy 133.914643 98.2505) (xy 133.914646 98.2505) (xy 134.093509 98.222171) (xy 134.265739 98.166211) (xy 134.427094 98.083996) (xy 134.573601 97.977553) (xy 134.701653 97.849501) (xy 134.808096 97.702994) (xy 134.890311 97.541639) (xy 134.946271 97.369409) (xy 134.969651 97.221787) (xy 135.000063 97.157636) (xy 135.060332 97.120109) (xy 135.131321 97.121123) (xy 135.190493 97.160356) (xy 135.218548 97.221786) (xy 135.241929 97.369409) (xy 135.297889 97.541639) (xy 135.380104 97.702994) (xy 135.486547 97.849501) (xy 135.486549 97.849503) (xy 135.486551 97.849506) (xy 135.614593 97.977548) (xy 135.614596 97.97755) (xy 135.614599 97.977553) (xy 135.761106 98.083996) (xy 135.922461 98.166211) (xy 136.094691 98.222171) (xy 136.273554 98.2505) (xy 136.273557 98.2505) (xy 136.454643 98.2505) (xy 136.454646 98.2505) (xy 136.633509 98.222171) (xy 136.805739 98.166211) (xy 136.967094 98.083996) (xy 137.113601 97.977553) (xy 137.241653 97.849501) (xy 137.348096 97.702994) (xy 137.430311 97.541639) (xy 137.486271 97.369409) (xy 137.5146 97.190546) (xy 137.5146 97.009454) (xy 137.486271 96.830591) (xy 137.430311 96.658361) (xy 137.348096 96.497006) (xy 137.241653 96.350499) (xy 137.24165 96.350496) (xy 137.241648 96.350493) (xy 137.113606 96.222451) (xy 137.113603 96.222449) (xy 137.113601 96.222447) (xy 136.967094 96.116004) (xy 136.805739 96.033789) (xy 136.805736 96.033788) (xy 136.805734 96.033787) (xy 136.633512 95.97783) (xy 136.633509 95.977829) (xy 136.454646 95.9495) (xy 136.273554 95.9495) (xy 136.094691 95.977829) (xy 136.094688 95.977829) (xy 136.094687 95.97783) (xy 135.922465 96.033787) (xy 135.922459 96.03379) (xy 135.761102 96.116006) (xy 135.614596 96.222449) (xy 135.614593 96.222451) (xy 135.486551 96.350493) (xy 135.486549 96.350496) (xy 135.380106 96.497002) (xy 135.29789 96.658359) (xy 135.297887 96.658365) (xy 135.263872 96.763056) (xy 135.241929 96.830591) (xy 135.222795 96.951402) (xy 135.218549 96.97821) (xy 135.188136 97.042363) (xy 135.127868 97.07989) (xy 135.056879 97.078876) (xy 134.997707 97.039643) (xy 134.969651 96.97821) (xy 134.965407 96.951414) (xy 134.946271 96.830591) (xy 134.890311 96.658361) (xy 134.808096 96.497006) (xy 134.701653 96.350499) (xy 134.70165 96.350496) (xy 134.701648 96.350493) (xy 134.573606 96.222451) (xy 134.573603 96.222449) (xy 134.573601 96.222447) (xy 134.427094 96.116004) (xy 134.265739 96.033789) (xy 134.265736 96.033788) (xy 134.265734 96.033787) (xy 134.093512 95.97783) (xy 134.093509 95.977829) (xy 133.914646 95.9495) (xy 133.733554 95.9495) (xy 133.554691 95.977829) (xy 133.554688 95.977829) (xy 133.554687 95.97783) (xy 133.382465 96.033787) (xy 133.382459 96.03379) (xy 133.221102 96.116006) (xy 133.074596 96.222449) (xy 133.074593 96.222451) (xy 132.946551 96.350493) (xy 132.946549 96.350496) (xy 132.840106 96.497002) (xy 132.75789 96.658359) (xy 132.757887 96.658365) (xy 132.723872 96.763056) (xy 132.701929 96.830591) (xy 132.682795 96.951402) (xy 132.678549 96.97821) (xy 132.648136 97.042363) (xy 132.587868 97.07989) (xy 132.516879 97.078876) (xy 132.457707 97.039643) (xy 132.429651 96.97821) (xy 132.425407 96.951414) (xy 132.406271 96.830591) (xy 132.350311 96.658361) (xy 132.268096 96.497006) (xy 132.161653 96.350499) (xy 132.16165 96.350496) (xy 132.161648 96.350493) (xy 132.033606 96.222451) (xy 132.033603 96.222449) (xy 132.033601 96.222447) (xy 131.887094 96.116004) (xy 131.725739 96.033789) (xy 131.725736 96.033788) (xy 131.725734 96.033787) (xy 131.553512 95.97783) (xy 131.553509 95.977829) (xy 131.374646 95.9495) (xy 131.193554 95.9495) (xy 131.014691 95.977829) (xy 131.014688 95.977829) (xy 131.014687 95.97783) (xy 130.842465 96.033787) (xy 130.842459 96.03379) (xy 130.681102 96.116006) (xy 130.534596 96.222449) (xy 130.534593 96.222451) (xy 130.406551 96.350493) (xy 130.406549 96.350496) (xy 130.300106 96.497002) (xy 130.21789 96.658359) (xy 130.217887 96.658365) (xy 130.183872 96.763056) (xy 130.161929 96.830591) (xy 130.1336 97.009454) (xy 123.1685 97.009454) (xy 123.1685 96.951362) (xy 123.168499 96.95135) (xy 123.16199 96.890803) (xy 123.161988 96.890795) (xy 123.123176 96.786738) (xy 123.110889 96.753796) (xy 123.110888 96.753794) (xy 123.110887 96.753792) (xy 123.023261 96.636738) (xy 122.906207 96.549112) (xy 122.906203 96.54911) (xy 122.791192 96.506213) (xy 122.734356 96.463667) (xy 122.709546 96.397146) (xy 122.724638 96.327772) (xy 122.742525 96.30282) (xy 122.885714 96.147277) (xy 122.885724 96.147265) (xy 122.906148 96.116004) (xy 123.00886 95.958791) (xy 123.099296 95.752616) (xy 123.154564 95.534368) (xy 123.173156 95.31) (xy 123.154564 95.085632) (xy 123.140161 95.028754) (xy 123.099297 94.867387) (xy 123.099296 94.867386) (xy 123.099296 94.867384) (xy 123.00886 94.661209) (xy 123.00214 94.650924) (xy 122.885724 94.472734) (xy 122.88572 94.472729) (xy 122.733237 94.307091) (xy 122.651382 94.243381) (xy 122.555576 94.168811) (xy 122.522319 94.150813) (xy 122.471929 94.100802) (xy 122.456576 94.031485) (xy 122.481136 93.964872) (xy 122.52232 93.929186) (xy 122.555576 93.911189) (xy 122.73324 93.772906) (xy 122.885722 93.607268) (xy 123.00886 93.418791) (xy 123.099296 93.212616) (xy 123.154564 92.994368) (xy 123.173156 92.77) (xy 123.154564 92.545632) (xy 123.099296 92.327384) (xy 123.00886 92.121209) (xy 122.95502 92.0388) (xy 122.885724 91.932734) (xy 122.88572 91.932729) (xy 122.733237 91.767091) (xy 122.610955 91.671915) (xy 122.555576 91.628811) (xy 122.522319 91.610813) (xy 122.471929 91.560802) (xy 122.456576 91.491485) (xy 122.481136 91.424872) (xy 122.52232 91.389186) (xy 122.555576 91.371189) (xy 122.73324 91.232906) (xy 122.885722 91.067268) (xy 123.00886 90.878791) (xy 123.099296 90.672616) (xy 123.154564 90.454368) (xy 123.173156 90.23) (xy 123.154564 90.005632) (xy 123.141623 89.95453) (xy 123.099297 89.787387) (xy 123.099296 89.787386) (xy 123.099296 89.787384) (xy 123.00886 89.581209) (xy 122.969611 89.521134) (xy 122.885724 89.392734) (xy 122.88572 89.392729) (xy 122.746215 89.241189) (xy 122.73324 89.227094) (xy 122.733239 89.227093) (xy 122.733237 89.227091) (xy 122.645277 89.158629) (xy 122.555576 89.088811) (xy 122.522319 89.070813) (xy 122.471929 89.020802) (xy 122.456576 88.951485) (xy 122.481136 88.884872) (xy 122.52232 88.849186) (xy 122.555576 88.831189) (xy 122.73324 88.692906) (xy 122.885722 88.527268) (xy 123.00886 88.338791) (xy 123.099296 88.132616) (xy 123.154564 87.914368) (xy 123.173156 87.69) (xy 123.154564 87.465632) (xy 123.099296 87.247384) (xy 123.00886 87.041209) (xy 122.90794 86.886739) (xy 122.885724 86.852734) (xy 122.885714 86.852722) (xy 122.742159 86.696782) (xy 122.710737 86.633117) (xy 122.718723 86.562571) (xy 122.763582 86.507542) (xy 122.790827 86.493388) (xy 122.905965 86.450444) (xy 123.022904 86.362904) (xy 123.110444 86.245965) (xy 123.110444 86.245964) (xy 123.161494 86.109093) (xy 123.167999 86.048597) (xy 123.168 86.048585) (xy 123.168 85.404) (xy 122.252251 85.404) (xy 122.285245 85.346853) (xy 122.32 85.217143) (xy 122.32 85.082857) (xy 122.285245 84.953147) (xy 122.252251 84.896) (xy 123.168 84.896) (xy 123.168 84.251414) (xy 123.167999 84.251402) (xy 123.161494 84.190906) (xy 123.110444 84.054035) (xy 123.110444 84.054034) (xy 123.022904 83.937095) (xy 122.905966 83.849556) (xy 122.790826 83.806611) (xy 122.733991 83.764064) (xy 122.70918 83.697543) (xy 122.724272 83.628169) (xy 122.742154 83.603222) (xy 122.885722 83.447268) (xy 123.00886 83.258791) (xy 123.099296 83.052616) (xy 123.154564 82.834368) (xy 123.173156 82.61) (xy 123.154564 82.385632) (xy 123.154562 82.385624) (xy 123.111464 82.215431) (xy 123.114131 82.144485) (xy 123.154731 82.086243) (xy 123.220375 82.059197) (xy 123.233608 82.0585) (xy 135.349777 82.0585) (xy 135.349782 82.0585) (xy 135.418221 82.044886) (xy 135.486662 82.031273) (xy 135.524427 82.01563) (xy 135.615601 81.977865) (xy 135.731643 81.900328) (xy 138.077549 79.554419) (xy 138.139857 79.520398) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 132.807032 66.020502) (xy 132.853525 66.074158) (xy 132.863629 66.144432) (xy 132.834135 66.209012) (xy 132.798881 66.237312) (xy 132.738117 66.270197) (xy 132.651984 66.316809) (xy 132.651983 66.31681) (xy 132.467778 66.460182) (xy 132.467774 66.460186) (xy 132.309685 66.631916) (xy 132.182015 66.827331) (xy 132.088252 67.041089) (xy 132.088249 67.041096) (xy 132.03095 67.267366) (xy 132.030949 67.267372) (xy 132.030949 67.267374) (xy 132.011673 67.5) (xy 132.026751 67.681969) (xy 132.03095 67.732633) (xy 132.088249 67.958903) (xy 132.088252 67.95891) (xy 132.182015 68.172668) (xy 132.309685 68.368083) (xy 132.467774 68.539813) (xy 132.467778 68.539817) (xy 132.53365 68.591087) (xy 132.651983 68.68319) (xy 132.857273 68.794287) (xy 133.078049 68.87008) (xy 133.308288 68.9085) (xy 133.308292 68.9085) (xy 133.541708 68.9085) (xy 133.541712 68.9085) (xy 133.771951 68.87008) (xy 133.992727 68.794287) (xy 134.198017 68.68319) (xy 134.38222 68.539818) (xy 134.392008 68.529186) (xy 134.540314 68.368083) (xy 134.667984 68.172669) (xy 134.761749 67.958907) (xy 134.819051 67.732626) (xy 134.838327 67.5) (xy 134.819051 67.267374) (xy 134.766122 67.058361) (xy 134.76175 67.041096) (xy 134.761747 67.041089) (xy 134.667984 66.827331) (xy 134.540314 66.631916) (xy 134.382225 66.460186) (xy 134.382221 66.460182) (xy 134.276415 66.37783) (xy 134.198017 66.31681) (xy 134.051119 66.237313) (xy 134.000729 66.187301) (xy 133.985377 66.117984) (xy 134.009938 66.051371) (xy 134.066613 66.008611) (xy 134.111089 66.0005) (xy 138.770733 66.0005) (xy 138.838854 66.020502) (xy 138.885347 66.074158) (xy 138.895451 66.144432) (xy 138.865957 66.209012) (xy 138.848124 66.225932) (xy 138.844427 66.228809) (xy 138.844424 66.228811) (xy 138.791252 66.270197) (xy 138.666762 66.367091) (xy 138.514279 66.532729) (xy 138.514275 66.532734) (xy 138.391141 66.721206) (xy 138.300703 66.927386) (xy 138.300702 66.927387) (xy 138.245437 67.145624) (xy 138.245436 67.14563) (xy 138.245436 67.145632) (xy 138.226844 67.37) (xy 138.245119 67.590546) (xy 138.245437 67.594375) (xy 138.300702 67.812612) (xy 138.300703 67.812613) (xy 138.391141 68.018793) (xy 138.514275 68.207265) (xy 138.514279 68.20727) (xy 138.666762 68.372908) (xy 138.67273 68.377553) (xy 138.844424 68.511189) (xy 138.87768 68.529186) (xy 138.928071 68.5792) (xy 138.943423 68.648516) (xy 138.918862 68.715129) (xy 138.87768 68.750813) (xy 138.844426 68.76881) (xy 138.844424 68.768811) (xy 138.666762 68.907091) (xy 138.514279 69.072729) (xy 138.514275 69.072734) (xy 138.391141 69.261206) (xy 138.300703 69.467386) (xy 138.300702 69.467387) (xy 138.245437 69.685624) (xy 138.245436 69.68563) (xy 138.245436 69.685632) (xy 138.226844 69.91) (xy 138.243693 70.113338) (xy 138.245437 70.134375) (xy 138.300702 70.352612) (xy 138.300703 70.352613) (xy 138.300704 70.352616) (xy 138.364146 70.497251) (xy 138.391141 70.558793) (xy 138.514275 70.747265) (xy 138.514279 70.74727) (xy 138.657841 70.903217) (xy 138.689262 70.966882) (xy 138.681276 71.037428) (xy 138.636417 71.092457) (xy 138.609173 71.10661) (xy 138.494039 71.149553) (xy 138.494034 71.149555) (xy 138.377095 71.237095) (xy 138.289555 71.354034) (xy 138.289555 71.354035) (xy 138.238505 71.490906) (xy 138.232 71.551402) (xy 138.232 72.196) (xy 139.147749 72.196) (xy 139.114755 72.253147) (xy 139.08 72.382857) (xy 139.08 72.517143) (xy 139.114755 72.646853) (xy 139.147749 72.704) (xy 138.232 72.704) (xy 138.232 73.348597) (xy 138.238505 73.409093) (xy 138.289555 73.545964) (xy 138.289555 73.545965) (xy 138.377095 73.662904) (xy 138.494034 73.750444) (xy 138.609172 73.793388) (xy 138.666008 73.835935) (xy 138.690819 73.902455) (xy 138.675728 73.971829) (xy 138.657841 73.996782) (xy 138.51428 74.152729) (xy 138.514275 74.152734) (xy 138.391141 74.341206) (xy 138.300703 74.547386) (xy 138.300702 74.547387) (xy 138.245437 74.765624) (xy 138.245436 74.76563) (xy 138.245436 74.765632) (xy 138.226844 74.99) (xy 138.23771 75.121135) (xy 138.245437 75.214375) (xy 138.300702 75.432612) (xy 138.300703 75.432613) (xy 138.391141 75.638793) (xy 138.514275 75.827265) (xy 138.514279 75.82727) (xy 138.666762 75.992908) (xy 138.721331 76.035381) (xy 138.844424 76.131189) (xy 138.87768 76.149186) (xy 138.928071 76.1992) (xy 138.943423 76.268516) (xy 138.918862 76.335129) (xy 138.87768 76.370813) (xy 138.844426 76.38881) (xy 138.844424 76.388811) (xy 138.666762 76.527091) (xy 138.514279 76.692729) (xy 138.514275 76.692734) (xy 138.391141 76.881206) (xy 138.300703 77.087386) (xy 138.300702 77.087387) (xy 138.245436 77.305628) (xy 138.245435 77.30563) (xy 138.242295 77.343521) (xy 138.216734 77.409756) (xy 138.205821 77.422207) (xy 135.023434 80.604595) (xy 134.961122 80.638621) (xy 134.934339 80.6415) (xy 123.228543 80.6415) (xy 123.160422 80.621498) (xy 123.113929 80.567842) (xy 123.103825 80.497568) (xy 123.106399 80.484569) (xy 123.154562 80.294375) (xy 123.154564 80.294368) (xy 123.173156 80.07) (xy 123.154564 79.845632) (xy 123.15021 79.828438) (xy 123.099297 79.627387) (xy 123.099296 79.627386) (xy 123.099296 79.627384) (xy 123.00886 79.421209) (xy 122.924117 79.2915) (xy 122.885724 79.232734) (xy 122.88572 79.232729) (xy 122.733237 79.067091) (xy 122.651382 79.003381) (xy 122.555576 78.928811) (xy 122.522319 78.910813) (xy 122.471929 78.860802) (xy 122.456576 78.791485) (xy 122.481136 78.724872) (xy 122.52232 78.689186) (xy 122.555576 78.671189) (xy 122.73324 78.532906) (xy 122.885722 78.367268) (xy 123.00886 78.178791) (xy 123.099296 77.972616) (xy 123.154564 77.754368) (xy 123.173156 77.53) (xy 123.154564 77.305632) (xy 123.099296 77.087384) (xy 123.00886 76.881209) (xy 122.98764 76.848729) (xy 122.885724 76.692734) (xy 122.88572 76.692729) (xy 122.733237 76.527091) (xy 122.60657 76.428502) (xy 122.555576 76.388811) (xy 122.522319 76.370813) (xy 122.471929 76.320802) (xy 122.456576 76.251485) (xy 122.481136 76.184872) (xy 122.52232 76.149186) (xy 122.555576 76.131189) (xy 122.73324 75.992906) (xy 122.885722 75.827268) (xy 122.887397 75.824705) (xy 122.937 75.748781) (xy 123.00886 75.638791) (xy 123.099296 75.432616) (xy 123.154564 75.214368) (xy 123.173156 74.99) (xy 123.154564 74.765632) (xy 123.099296 74.547384) (xy 123.00886 74.341209) (xy 122.922157 74.2085) (xy 122.885724 74.152734) (xy 122.885714 74.152722) (xy 122.742159 73.996782) (xy 122.710737 73.933117) (xy 122.718723 73.862571) (xy 122.763582 73.807542) (xy 122.790827 73.793388) (xy 122.905965 73.750444) (xy 123.022904 73.662904) (xy 123.110444 73.545965) (xy 123.110444 73.545964) (xy 123.161494 73.409093) (xy 123.167999 73.348597) (xy 123.168 73.348585) (xy 123.168 72.704) (xy 122.252251 72.704) (xy 122.285245 72.646853) (xy 122.32 72.517143) (xy 122.32 72.382857) (xy 122.285245 72.253147) (xy 122.252251 72.196) (xy 123.168 72.196) (xy 123.168 71.551414) (xy 123.167999 71.551402) (xy 123.161494 71.490906) (xy 123.110444 71.354035) (xy 123.110444 71.354034) (xy 123.022904 71.237095) (xy 122.905966 71.149556) (xy 122.790826 71.106611) (xy 122.733991 71.064064) (xy 122.70918 70.997543) (xy 122.724272 70.928169) (xy 122.742154 70.903222) (xy 122.885722 70.747268) (xy 123.00886 70.558791) (xy 123.064714 70.431455) (xy 127.2745 70.431455) (xy 127.2745 70.628544) (xy 127.312949 70.821835) (xy 127.31295 70.821838) (xy 127.373029 70.966882) (xy 127.388368 71.003914) (xy 127.497861 71.167782) (xy 127.637218 71.307139) (xy 127.801086 71.416632) (xy 127.983165 71.492051) (xy 128.176459 71.5305) (xy 128.373541 71.5305) (xy 128.566835 71.492051) (xy 128.748914 71.416632) (xy 128.912782 71.307139) (xy 129.052139 71.167782) (xy 129.161632 71.003914) (xy 129.237051 70.821835) (xy 129.2755 70.628541) (xy 129.2755 70.53) (xy 131.861693 70.53) (xy 131.87065 70.632387) (xy 131.880885 70.74937) (xy 131.937879 70.962073) (xy 131.937881 70.962079) (xy 132.030942 71.16165) (xy 132.030944 71.161654) (xy 132.079812 71.231444) (xy 132.157251 71.342038) (xy 132.157254 71.342042) (xy 132.312957 71.497745) (xy 132.312961 71.497748) (xy 132.312962 71.497749) (xy 132.493346 71.624056) (xy 132.692924 71.71712) (xy 132.905629 71.774115) (xy 133.125 71.793307) (xy 133.344371 71.774115) (xy 133.557076 71.71712) (xy 133.756654 71.624056) (xy 133.937038 71.497749) (xy 134.092749 71.342038) (xy 134.219056 71.161654) (xy 134.31212 70.962076) (xy 134.369115 70.749371) (xy 134.388307 70.53) (xy 134.369115 70.310629) (xy 134.31212 70.097924) (xy 134.219056 69.898347) (xy 134.092749 69.717962) (xy 133.937038 69.562251) (xy 133.756654 69.435944) (xy 133.75665 69.435942) (xy 133.557079 69.342881) (xy 133.557073 69.342879) (xy 133.467178 69.318791) (xy 133.344371 69.285885) (xy 133.125 69.266693) (xy 132.905629 69.285885) (xy 132.692926 69.342879) (xy 132.69292 69.342881) (xy 132.493346 69.435944) (xy 132.312965 69.562248) (xy 132.312959 69.562253) (xy 132.157253 69.717959) (xy 132.157248 69.717965) (xy 132.030944 69.898346) (xy 131.937881 70.09792) (xy 131.937879 70.097926) (xy 131.91315 70.190215) (xy 131.880885 70.310629) (xy 131.861693 70.53) (xy 129.2755 70.53) (xy 129.2755 70.431459) (xy 129.237051 70.238165) (xy 129.161632 70.056086) (xy 129.052139 69.892218) (xy 128.912782 69.752861) (xy 128.748914 69.643368) (xy 128.566838 69.56795) (xy 128.566835 69.567949) (xy 128.373544 69.5295) (xy 128.373541 69.5295) (xy 128.176459 69.5295) (xy 128.176455 69.5295) (xy 127.983164 69.567949) (xy 127.983161 69.56795) (xy 127.801085 69.643368) (xy 127.637222 69.752858) (xy 127.637215 69.752863) (xy 127.497863 69.892215) (xy 127.497858 69.892222) (xy 127.388368 70.056085) (xy 127.31295 70.238161) (xy 127.312949 70.238164) (xy 127.2745 70.431455) (xy 123.064714 70.431455) (xy 123.099296 70.352616) (xy 123.154564 70.134368) (xy 123.173156 69.91) (xy 123.154564 69.685632) (xy 123.12332 69.562251) (xy 123.099297 69.467387) (xy 123.099296 69.467386) (xy 123.099296 69.467384) (xy 123.00886 69.261209) (xy 123.00214 69.250924) (xy 122.885724 69.072734) (xy 122.88572 69.072729) (xy 122.733237 68.907091) (xy 122.588307 68.794287) (xy 122.555576 68.768811) (xy 122.522319 68.750813) (xy 122.471929 68.700802) (xy 122.456576 68.631485) (xy 122.481136 68.564872) (xy 122.52232 68.529186) (xy 122.555576 68.511189) (xy 122.73324 68.372906) (xy 122.885722 68.207268) (xy 123.00886 68.018791) (xy 123.099296 67.812616) (xy 123.154564 67.594368) (xy 123.169887 67.409454) (xy 126.8245 67.409454) (xy 126.8245 67.590546) (xy 126.852829 67.769409) (xy 126.85283 67.769412) (xy 126.866867 67.812616) (xy 126.908789 67.941639) (xy 126.991004 68.102994) (xy 127.097447 68.249501) (xy 127.097449 68.249503) (xy 127.097451 68.249506) (xy 127.225493 68.377548) (xy 127.225496 68.37755) (xy 127.225499 68.377553) (xy 127.372006 68.483996) (xy 127.533361 68.566211) (xy 127.705591 68.622171) (xy 127.884454 68.6505) (xy 127.884457 68.6505) (xy 128.065543 68.6505) (xy 128.065546 68.6505) (xy 128.244409 68.622171) (xy 128.416639 68.566211) (xy 128.577994 68.483996) (xy 128.724501 68.377553) (xy 128.852553 68.249501) (xy 128.958996 68.102994) (xy 129.041211 67.941639) (xy 129.097171 67.769409) (xy 129.1255 67.590546) (xy 129.1255 67.409454) (xy 129.097171 67.230591) (xy 129.041211 67.058361) (xy 128.958996 66.897006) (xy 128.852553 66.750499) (xy 128.85255 66.750496) (xy 128.852548 66.750493) (xy 128.724506 66.622451) (xy 128.724503 66.622449) (xy 128.724501 66.622447) (xy 128.577994 66.516004) (xy 128.416639 66.433789) (xy 128.416636 66.433788) (xy 128.416634 66.433787) (xy 128.244412 66.37783) (xy 128.244409 66.377829) (xy 128.065546 66.3495) (xy 127.884454 66.3495) (xy 127.705591 66.377829) (xy 127.705588 66.377829) (xy 127.705587 66.37783) (xy 127.533365 66.433787) (xy 127.533359 66.43379) (xy 127.372002 66.516006) (xy 127.225496 66.622449) (xy 127.225493 66.622451) (xy 127.097451 66.750493) (xy 127.097449 66.750496) (xy 126.991006 66.897002) (xy 126.90879 67.058359) (xy 126.908787 67.058365) (xy 126.880436 67.145624) (xy 126.852829 67.230591) (xy 126.8245 67.409454) (xy 123.169887 67.409454) (xy 123.173156 67.37) (xy 123.154564 67.145632) (xy 123.132464 67.058361) (xy 123.099297 66.927387) (xy 123.099296 66.927386) (xy 123.099296 66.927384) (xy 123.00886 66.721209) (xy 122.950522 66.631916) (xy 122.885724 66.532734) (xy 122.88572 66.532729) (xy 122.733237 66.367091) (xy 122.64584 66.299067) (xy 122.555576 66.228811) (xy 122.555572 66.228809) (xy 122.551876 66.225932) (xy 122.510405 66.168306) (xy 122.506671 66.097408) (xy 122.541861 66.035746) (xy 122.604802 66.002898) (xy 122.629267 66.0005) (xy 132.738911 66.0005) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 121.058854 66.020502) (xy 121.105347 66.074158) (xy 121.115451 66.144432) (xy 121.085957 66.209012) (xy 121.068124 66.225932) (xy 121.064427 66.228809) (xy 121.064424 66.228811) (xy 121.011252 66.270197) (xy 120.886762 66.367091) (xy 120.734279 66.532729) (xy 120.734275 66.532734) (xy 120.611141 66.721206) (xy 120.520703 66.927386) (xy 120.520702 66.927387) (xy 120.465437 67.145624) (xy 120.465436 67.14563) (xy 120.465436 67.145632) (xy 120.458396 67.230591) (xy 120.446844 67.37) (xy 120.465436 67.594371) (xy 120.493182 67.703937) (xy 120.490514 67.774883) (xy 120.460132 67.823962) (xy 116.546167 71.737929) (xy 116.457931 71.826164) (xy 116.457926 71.826171) (xy 116.388601 71.929923) (xy 116.340846 72.045212) (xy 116.3165 72.167603) (xy 116.3165 102.599009) (xy 116.296498 102.66713) (xy 116.279595 102.688104) (xy 113.673105 105.294595) (xy 113.610793 105.32862) (xy 113.58401 105.3315) (xy 112.9636 105.3315) (xy 112.895479 105.311498) (xy 112.848986 105.257842) (xy 112.8376 105.2055) (xy 112.8376 104.854) (xy 111.910303 104.854) (xy 111.945525 104.792993) (xy 111.9796 104.665826) (xy 111.9796 104.534174) (xy 111.945525 104.407007) (xy 111.910303 104.346) (xy 112.8376 104.346) (xy 112.8376 103.701414) (xy 112.837599 103.701402) (xy 112.831094 103.640906) (xy 112.780044 103.504035) (xy 112.780044 103.504034) (xy 112.692504 103.387095) (xy 112.575565 103.299555) (xy 112.438693 103.248505) (xy 112.378197 103.242) (xy 111.7336 103.242) (xy 111.7336 104.169297) (xy 111.672593 104.134075) (xy 111.545426 104.1) (xy 111.413774 104.1) (xy 111.286607 104.134075) (xy 111.2256 104.169297) (xy 111.2256 103.242) (xy 110.581002 103.242) (xy 110.520506 103.248505) (xy 110.383635 103.299555) (xy 110.383634 103.299555) (xy 110.266695 103.387095) (xy 110.179155 103.504034) (xy 110.179155 103.504035) (xy 110.128105 103.640906) (xy 110.1216 103.701402) (xy 110.1216 104.346) (xy 111.048897 104.346) (xy 111.013675 104.407007) (xy 110.9796 104.534174) (xy 110.9796 104.665826) (xy 111.013675 104.792993) (xy 111.048897 104.854) (xy 110.1216 104.854) (xy 110.1216 105.498597) (xy 110.128105 105.559093) (xy 110.179155 105.695964) (xy 110.193729 105.715433) (xy 110.218539 105.781953) (xy 110.203447 105.851327) (xy 110.181956 105.880036) (xy 109.900767 106.161228) (xy 109.812527 106.249468) (xy 109.812526 106.24947) (xy 109.773906 106.30727) (xy 109.7432 106.353224) (xy 109.695445 106.468514) (xy 109.694571 106.472908) (xy 109.6711 106.590902) (xy 109.6711 106.590905) (xy 109.6711 108.442606) (xy 109.6711 108.567394) (xy 109.695445 108.689785) (xy 109.7432 108.805075) (xy 109.812529 108.908833) (xy 109.812531 108.908835) (xy 110.129732 109.226036) (xy 110.163758 109.288348) (xy 110.162782 109.346061) (xy 110.135036 109.455628) (xy 110.116444 109.68) (xy 110.135037 109.904375) (xy 110.190302 110.122612) (xy 110.190303 110.122613) (xy 110.280741 110.328793) (xy 110.403875 110.517265) (xy 110.403879 110.51727) (xy 110.556362 110.682908) (xy 110.610931 110.725381) (xy 110.734024 110.821189) (xy 110.932026 110.928342) (xy 110.932027 110.928342) (xy 110.932028 110.928343) (xy 111.018714 110.958102) (xy 111.144965 111.001444) (xy 111.367031 111.0385) (xy 111.367035 111.0385) (xy 111.592165 111.0385) (xy 111.592169 111.0385) (xy 111.814235 111.001444) (xy 112.027174 110.928342) (xy 112.225176 110.821189) (xy 112.40284 110.682906) (xy 112.555322 110.517268) (xy 112.67846 110.328791) (xy 112.768896 110.122616) (xy 112.824164 109.904368) (xy 112.842756 109.68) (xy 112.824164 109.455632) (xy 112.781802 109.288348) (xy 112.768897 109.237387) (xy 112.768896 109.237386) (xy 112.768896 109.237384) (xy 112.67846 109.031209) (xy 112.660171 109.003216) (xy 112.555324 108.842734) (xy 112.55532 108.842729) (xy 112.402837 108.677091) (xy 112.302217 108.598775) (xy 112.225176 108.538811) (xy 112.191919 108.520813) (xy 112.141529 108.470802) (xy 112.126176 108.401485) (xy 112.150736 108.334872) (xy 112.19192 108.299186) (xy 112.225176 108.281189) (xy 112.40284 108.142906) (xy 112.555322 107.977268) (xy 112.67846 107.788791) (xy 112.768896 107.582616) (xy 112.813105 107.408038) (xy 112.820568 107.378569) (xy 112.85668 107.317443) (xy 112.920107 107.285544) (xy 112.942712 107.2835) (xy 114.062393 107.2835) (xy 114.062394 107.2835) (xy 114.184785 107.259155) (xy 114.300075 107.2114) (xy 114.403833 107.142071) (xy 117.992071 103.553833) (xy 118.0614 103.450075) (xy 118.109155 103.334785) (xy 118.1335 103.212394) (xy 118.1335 72.914594) (xy 118.153502 72.846473) (xy 118.170405 72.825499) (xy 120.415499 70.580405) (xy 120.477811 70.546379) (xy 120.504594 70.5435) (xy 120.532962 70.5435) (xy 120.601083 70.563502) (xy 120.638445 70.600585) (xy 120.734275 70.747265) (xy 120.734279 70.74727) (xy 120.877841 70.903217) (xy 120.909262 70.966882) (xy 120.901276 71.037428) (xy 120.856417 71.092457) (xy 120.829173 71.10661) (xy 120.714039 71.149553) (xy 120.714034 71.149555) (xy 120.597095 71.237095) (xy 120.509555 71.354034) (xy 120.509555 71.354035) (xy 120.458505 71.490906) (xy 120.452 71.551402) (xy 120.452 72.196) (xy 121.367749 72.196) (xy 121.334755 72.253147) (xy 121.3 72.382857) (xy 121.3 72.517143) (xy 121.334755 72.646853) (xy 121.367749 72.704) (xy 120.452 72.704) (xy 120.452 73.348597) (xy 120.458505 73.409093) (xy 120.509555 73.545964) (xy 120.509555 73.545965) (xy 120.597095 73.662904) (xy 120.714034 73.750444) (xy 120.829172 73.793388) (xy 120.886008 73.835935) (xy 120.910819 73.902455) (xy 120.895728 73.971829) (xy 120.877841 73.996782) (xy 120.73428 74.152729) (xy 120.734275 74.152734) (xy 120.611141 74.341206) (xy 120.520703 74.547386) (xy 120.520702 74.547387) (xy 120.465437 74.765624) (xy 120.465436 74.76563) (xy 120.465436 74.765632) (xy 120.446844 74.99) (xy 120.45771 75.121135) (xy 120.465437 75.214375) (xy 120.520702 75.432612) (xy 120.520703 75.432613) (xy 120.611141 75.638793) (xy 120.734275 75.827265) (xy 120.734279 75.82727) (xy 120.886762 75.992908) (xy 120.941331 76.035381) (xy 121.064424 76.131189) (xy 121.09768 76.149186) (xy 121.148071 76.1992) (xy 121.163423 76.268516) (xy 121.138862 76.335129) (xy 121.09768 76.370813) (xy 121.064426 76.38881) (xy 121.064424 76.388811) (xy 120.886762 76.527091) (xy 120.734279 76.692729) (xy 120.734275 76.692734) (xy 120.611141 76.881206) (xy 120.520703 77.087386) (xy 120.520702 77.087387) (xy 120.465437 77.305624) (xy 120.446844 77.53) (xy 120.465437 77.754375) (xy 120.520702 77.972612) (xy 120.520703 77.972613) (xy 120.611141 78.178793) (xy 120.734275 78.367265) (xy 120.734279 78.36727) (xy 120.886762 78.532908) (xy 120.941331 78.575381) (xy 121.064424 78.671189) (xy 121.09768 78.689186) (xy 121.148071 78.7392) (xy 121.163423 78.808516) (xy 121.138862 78.875129) (xy 121.09768 78.910813) (xy 121.064426 78.92881) (xy 121.064424 78.928811) (xy 120.886762 79.067091) (xy 120.734279 79.232729) (xy 120.734275 79.232734) (xy 120.611141 79.421206) (xy 120.520703 79.627386) (xy 120.520702 79.627387) (xy 120.465437 79.845624) (xy 120.465436 79.84563) (xy 120.465436 79.845632) (xy 120.446844 80.07) (xy 120.457616 80.2) (xy 120.465437 80.294375) (xy 120.520702 80.512612) (xy 120.520703 80.512613) (xy 120.520704 80.512616) (xy 120.61114 80.718791) (xy 120.611141 80.718793) (xy 120.734275 80.907265) (xy 120.734279 80.90727) (xy 120.886762 81.072908) (xy 120.932491 81.1085) (xy 121.064424 81.211189) (xy 121.09768 81.229186) (xy 121.148071 81.2792) (xy 121.163423 81.348516) (xy 121.138862 81.415129) (xy 121.09768 81.450813) (xy 121.064426 81.46881) (xy 121.064424 81.468811) (xy 120.886762 81.607091) (xy 120.734279 81.772729) (xy 120.734275 81.772734) (xy 120.611141 81.961206) (xy 120.520703 82.167386) (xy 120.520702 82.167387) (xy 120.465437 82.385624) (xy 120.465436 82.38563) (xy 120.465436 82.385632) (xy 120.446844 82.61) (xy 120.464339 82.821135) (xy 120.465437 82.834375) (xy 120.520702 83.052612) (xy 120.520703 83.052613) (xy 120.520704 83.052616) (xy 120.581289 83.190736) (xy 120.611141 83.258793) (xy 120.734275 83.447265) (xy 120.734279 83.44727) (xy 120.828582 83.549708) (xy 120.877475 83.60282) (xy 120.877841 83.603217) (xy 120.909262 83.666882) (xy 120.901276 83.737428) (xy 120.856417 83.792457) (xy 120.829173 83.80661) (xy 120.714039 83.849553) (xy 120.714034 83.849555) (xy 120.597095 83.937095) (xy 120.509555 84.054034) (xy 120.509555 84.054035) (xy 120.458505 84.190906) (xy 120.452 84.251402) (xy 120.452 84.896) (xy 121.367749 84.896) (xy 121.334755 84.953147) (xy 121.3 85.082857) (xy 121.3 85.217143) (xy 121.334755 85.346853) (xy 121.367749 85.404) (xy 120.452 85.404) (xy 120.452 86.048597) (xy 120.458505 86.109093) (xy 120.509555 86.245964) (xy 120.509555 86.245965) (xy 120.597095 86.362904) (xy 120.714034 86.450444) (xy 120.829172 86.493388) (xy 120.886008 86.535935) (xy 120.910819 86.602455) (xy 120.895728 86.671829) (xy 120.877841 86.696782) (xy 120.73428 86.852729) (xy 120.734275 86.852734) (xy 120.611141 87.041206) (xy 120.520703 87.247386) (xy 120.520702 87.247387) (xy 120.465437 87.465624) (xy 120.465436 87.46563) (xy 120.465436 87.465632) (xy 120.446844 87.69) (xy 120.464999 87.909096) (xy 120.465437 87.914375) (xy 120.520702 88.132612) (xy 120.520703 88.132613) (xy 120.520704 88.132616) (xy 120.57792 88.263056) (xy 120.611141 88.338793) (xy 120.734275 88.527265) (xy 120.734279 88.52727) (xy 120.886762 88.692908) (xy 120.941331 88.735381) (xy 121.064424 88.831189) (xy 121.09768 88.849186) (xy 121.148071 88.8992) (xy 121.163423 88.968516) (xy 121.138862 89.035129) (xy 121.09768 89.070813) (xy 121.064426 89.08881) (xy 121.064424 89.088811) (xy 120.886762 89.227091) (xy 120.734279 89.392729) (xy 120.734275 89.392734) (xy 120.611141 89.581206) (xy 120.520703 89.787386) (xy 120.520702 89.787387) (xy 120.465437 90.005624) (xy 120.465436 90.00563) (xy 120.465436 90.005632) (xy 120.446844 90.23) (xy 120.463992 90.436944) (xy 120.465437 90.454375) (xy 120.520702 90.672612) (xy 120.520703 90.672613) (xy 120.520704 90.672616) (xy 120.580141 90.808119) (xy 120.611141 90.878793) (xy 120.734275 91.067265) (xy 120.734279 91.06727) (xy 120.886762 91.232908) (xy 120.889193 91.2348) (xy 121.064424 91.371189) (xy 121.09768 91.389186) (xy 121.148071 91.4392) (xy 121.163423 91.508516) (xy 121.138862 91.575129) (xy 121.09768 91.610813) (xy 121.064426 91.62881) (xy 121.064424 91.628811) (xy 120.886762 91.767091) (xy 120.734279 91.932729) (xy 120.734275 91.932734) (xy 120.611141 92.121206) (xy 120.520703 92.327386) (xy 120.520702 92.327387) (xy 120.465437 92.545624) (xy 120.465436 92.54563) (xy 120.465436 92.545632) (xy 120.446844 92.77) (xy 120.461253 92.943893) (xy 120.465437 92.994375) (xy 120.520702 93.212612) (xy 120.520703 93.212613) (xy 120.520704 93.212616) (xy 120.574954 93.336294) (xy 120.611141 93.418793) (xy 120.734275 93.607265) (xy 120.734279 93.60727) (xy 120.886762 93.772908) (xy 120.941331 93.815381) (xy 121.064424 93.911189) (xy 121.09768 93.929186) (xy 121.148071 93.9792) (xy 121.163423 94.048516) (xy 121.138862 94.115129) (xy 121.09768 94.150813) (xy 121.064426 94.16881) (xy 121.064424 94.168811) (xy 120.886762 94.307091) (xy 120.734279 94.472729) (xy 120.734275 94.472734) (xy 120.611141 94.661206) (xy 120.520703 94.867386) (xy 120.520702 94.867387) (xy 120.465437 95.085624) (xy 120.465436 95.08563) (xy 120.465436 95.085632) (xy 120.446844 95.31) (xy 120.464339 95.521135) (xy 120.465437 95.534375) (xy 120.520702 95.752612) (xy 120.520703 95.752613) (xy 120.520704 95.752616) (xy 120.607065 95.9495) (xy 120.611141 95.958793) (xy 120.734275 96.147265) (xy 120.734278 96.147268) (xy 120.824655 96.245442) (xy 120.877475 96.30282) (xy 120.908896 96.366485) (xy 120.900909 96.437031) (xy 120.856051 96.49206) (xy 120.828807 96.506213) (xy 120.713797 96.54911) (xy 120.713792 96.549112) (xy 120.596738 96.636738) (xy 120.509112 96.753792) (xy 120.50911 96.753797) (xy 120.458011 96.890795) (xy 120.458009 96.890803) (xy 120.4515 96.95135) (xy 120.4515 98.748649) (xy 120.458009 98.809196) (xy 120.458011 98.809204) (xy 120.50911 98.946202) (xy 120.509112 98.946207) (xy 120.596738 99.063261) (xy 120.713791 99.150886) (xy 120.713792 99.150886) (xy 120.713796 99.150889) (xy 120.82881 99.193787) (xy 120.885642 99.236332) (xy 120.910453 99.302852) (xy 120.895362 99.372226) (xy 120.877475 99.397179) (xy 120.73428 99.552729) (xy 120.734275 99.552734) (xy 120.611141 99.741206) (xy 120.520703 99.947386) (xy 120.520702 99.947387) (xy 120.465437 100.165624) (xy 120.446844 100.39) (xy 120.465437 100.614375) (xy 120.520702 100.832612) (xy 120.520703 100.832613) (xy 120.611141 101.038793) (xy 120.734275 101.227265) (xy 120.734279 101.22727) (xy 120.886762 101.392908) (xy 120.941331 101.435381) (xy 121.064424 101.531189) (xy 121.09768 101.549186) (xy 121.148071 101.5992) (xy 121.163423 101.668516) (xy 121.138862 101.735129) (xy 121.09768 101.770813) (xy 121.064426 101.78881) (xy 121.064424 101.788811) (xy 120.886762 101.927091) (xy 120.734279 102.092729) (xy 120.734275 102.092734) (xy 120.611141 102.281206) (xy 120.520703 102.487386) (xy 120.520702 102.487387) (xy 120.465437 102.705624) (xy 120.465436 102.70563) (xy 120.465436 102.705632) (xy 120.446844 102.93) (xy 120.461134 103.102456) (xy 120.465437 103.154375) (xy 120.520702 103.372612) (xy 120.520703 103.372613) (xy 120.520704 103.372616) (xy 120.61114 103.578791) (xy 120.611141 103.578793) (xy 120.734275 103.767265) (xy 120.734279 103.76727) (xy 120.886762 103.932908) (xy 120.941331 103.975381) (xy 121.064424 104.071189) (xy 121.09768 104.089186) (xy 121.148071 104.1392) (xy 121.163423 104.208516) (xy 121.138862 104.275129) (xy 121.09768 104.310813) (xy 121.064426 104.32881) (xy 121.064424 104.328811) (xy 120.886762 104.467091) (xy 120.734279 104.632729) (xy 120.734275 104.632734) (xy 120.611141 104.821206) (xy 120.520703 105.027386) (xy 120.520702 105.027387) (xy 120.465437 105.245624) (xy 120.465436 105.24563) (xy 120.465436 105.245632) (xy 120.446844 105.47) (xy 120.451686 105.528438) (xy 120.465437 105.694375) (xy 120.520702 105.912612) (xy 120.520703 105.912613) (xy 120.611141 106.118793) (xy 120.734275 106.307265) (xy 120.734279 106.30727) (xy 120.886762 106.472908) (xy 120.941331 106.515381) (xy 121.064424 106.611189) (xy 121.095285 106.62789) (xy 121.09768 106.629186) (xy 121.148071 106.6792) (xy 121.163423 106.748516) (xy 121.138862 106.815129) (xy 121.09768 106.850813) (xy 121.064426 106.86881) (xy 121.064424 106.868811) (xy 120.886762 107.007091) (xy 120.734279 107.172729) (xy 120.734275 107.172734) (xy 120.611141 107.361206) (xy 120.520703 107.567386) (xy 120.520702 107.567387) (xy 120.465437 107.785624) (xy 120.465436 107.78563) (xy 120.465436 107.785632) (xy 120.446844 108.01) (xy 120.457857 108.142908) (xy 120.465437 108.234375) (xy 120.520702 108.452612) (xy 120.520703 108.452613) (xy 120.520704 108.452616) (xy 120.57105 108.567394) (xy 120.611141 108.658793) (xy 120.734275 108.847265) (xy 120.734279 108.84727) (xy 120.877841 109.003217) (xy 120.909262 109.066882) (xy 120.901276 109.137428) (xy 120.856417 109.192457) (xy 120.829173 109.20661) (xy 120.714039 109.249553) (xy 120.714034 109.249555) (xy 120.597095 109.337095) (xy 120.509555 109.454034) (xy 120.509555 109.454035) (xy 120.458505 109.590906) (xy 120.452 109.651402) (xy 120.452 110.296) (xy 121.367749 110.296) (xy 121.334755 110.353147) (xy 121.3 110.482857) (xy 121.3 110.617143) (xy 121.334755 110.746853) (xy 121.367749 110.804) (xy 120.452 110.804) (xy 120.452 111.448597) (xy 120.458505 111.509093) (xy 120.509555 111.645964) (xy 120.509555 111.645965) (xy 120.597095 111.762904) (xy 120.714034 111.850444) (xy 120.829172 111.893388) (xy 120.886008 111.935935) (xy 120.910819 112.002455) (xy 120.895728 112.071829) (xy 120.877841 112.096782) (xy 120.73428 112.252729) (xy 120.734275 112.252734) (xy 120.611141 112.441206) (xy 120.520703 112.647386) (xy 120.520702 112.647387) (xy 120.465437 112.865624) (xy 120.465436 112.86563) (xy 120.465436 112.865632) (xy 120.446844 113.09) (xy 120.465437 113.314375) (xy 120.520702 113.532612) (xy 120.520703 113.532613) (xy 120.611141 113.738793) (xy 120.734275 113.927265) (xy 120.734279 113.92727) (xy 120.886762 114.092908) (xy 120.941331 114.135381) (xy 121.064424 114.231189) (xy 121.09768 114.249186) (xy 121.148071 114.2992) (xy 121.163423 114.368516) (xy 121.138862 114.435129) (xy 121.09768 114.470813) (xy 121.064426 114.48881) (xy 121.064424 114.488811) (xy 120.886762 114.627091) (xy 120.734279 114.792729) (xy 120.734275 114.792734) (xy 120.611141 114.981206) (xy 120.520703 115.187386) (xy 120.520702 115.187387) (xy 120.465437 115.405624) (xy 120.446844 115.63) (xy 120.465437 115.854375) (xy 120.520702 116.072612) (xy 120.520703 116.072613) (xy 120.611141 116.278793) (xy 120.734275 116.467265) (xy 120.734279 116.46727) (xy 120.886762 116.632908) (xy 120.888304 116.634108) (xy 121.064424 116.771189) (xy 121.262426 116.878342) (xy 121.262427 116.878342) (xy 121.262428 116.878343) (xy 121.374227 116.916723) (xy 121.475365 116.951444) (xy 121.697431 116.9885) (xy 121.697435 116.9885) (xy 121.922565 116.9885) (xy 121.922569 116.9885) (xy 122.144635 116.951444) (xy 122.357574 116.878342) (xy 122.555576 116.771189) (xy 122.73324 116.632906) (xy 122.737925 116.627817) (xy 122.745099 116.620024) (xy 122.805951 116.583453) (xy 122.876916 116.585586) (xy 122.935461 116.625748) (xy 122.963 116.691186) (xy 122.9638 116.705361) (xy 122.9638 116.80235) (xy 122.995824 117.00454) (xy 123.059078 117.199212) (xy 123.059082 117.199224) (xy 123.152017 117.381618) (xy 123.272342 117.547227) (xy 123.417092 117.691974) (xy 123.582703 117.812295) (xy 123.765098 117.905227) (xy 123.959786 117.968482) (xy 123.959791 117.968482) (xy 123.959792 117.968483) (xy 123.959824 117.968488) (xy 124.161972 118.000501) (xy 124.264324 118.0005) (xy 136.998428 118.0005) (xy 136.998432 118.000501) (xy 137.012115 118.0005) (xy 137.012167 118.000515) (xy 137.064324 118.000514) (xy 137.064324 118.000515) (xy 137.166672 118.000513) (xy 137.166678 118.000513) (xy 137.276347 117.98314) (xy 137.368858 117.968487) (xy 137.563541 117.905227) (xy 137.745932 117.812291) (xy 137.911539 117.691968) (xy 138.056284 117.54722) (xy 138.176604 117.381611) (xy 138.269536 117.199219) (xy 138.269539 117.199212) (xy 138.332789 117.004542) (xy 138.33279 117.004541) (xy 138.33279 117.004539) (xy 138.332792 117.004534) (xy 138.364815 116.802351) (xy 138.364815 116.7) (xy 138.364815 116.634108) (xy 138.364815 116.627817) (xy 138.384817 116.559696) (xy 138.438473 116.513203) (xy 138.508747 116.503099) (xy 138.573327 116.532593) (xy 138.583509 116.542472) (xy 138.654901 116.620024) (xy 138.666762 116.632908) (xy 138.668304 116.634108) (xy 138.844424 116.771189) (xy 139.042426 116.878342) (xy 139.042427 116.878342) (xy 139.042428 116.878343) (xy 139.154227 116.916723) (xy 139.255365 116.951444) (xy 139.477431 116.9885) (xy 139.477435 116.9885) (xy 139.702565 116.9885) (xy 139.702569 116.9885) (xy 139.924635 116.951444) (xy 140.137574 116.878342) (xy 140.335576 116.771189) (xy 140.51324 116.632906) (xy 140.665722 116.467268) (xy 140.78886 116.278791) (xy 140.879296 116.072616) (xy 140.934564 115.854368) (xy 140.953156 115.63) (xy 140.934564 115.405632) (xy 140.879296 115.187384) (xy 140.78886 114.981209) (xy 140.743815 114.912262) (xy 140.665724 114.792734) (xy 140.66572 114.792729) (xy 140.513237 114.627091) (xy 140.420171 114.554655) (xy 140.335576 114.488811) (xy 140.302319 114.470813) (xy 140.251929 114.420802) (xy 140.236576 114.351485) (xy 140.261136 114.284872) (xy 140.30232 114.249186) (xy 140.335576 114.231189) (xy 140.51324 114.092906) (xy 140.665722 113.927268) (xy 140.78886 113.738791) (xy 140.879296 113.532616) (xy 140.934564 113.314368) (xy 140.953156 113.09) (xy 140.934564 112.865632) (xy 140.879296 112.647384) (xy 140.78886 112.441209) (xy 140.743815 112.372262) (xy 140.665724 112.252734) (xy 140.665714 112.252722) (xy 140.522159 112.096782) (xy 140.490737 112.033117) (xy 140.498723 111.962571) (xy 140.543582 111.907542) (xy 140.570827 111.893388) (xy 140.685965 111.850444) (xy 140.802904 111.762904) (xy 140.890444 111.645965) (xy 140.890444 111.645964) (xy 140.941494 111.509093) (xy 140.947999 111.448597) (xy 140.948 111.448585) (xy 140.948 110.804) (xy 140.032251 110.804) (xy 140.065245 110.746853) (xy 140.1 110.617143) (xy 140.1 110.482857) (xy 140.065245 110.353147) (xy 140.032251 110.296) (xy 140.948 110.296) (xy 140.948 109.651414) (xy 140.947999 109.651402) (xy 140.941494 109.590906) (xy 140.890444 109.454035) (xy 140.890444 109.454034) (xy 140.802904 109.337095) (xy 140.685966 109.249556) (xy 140.570826 109.206611) (xy 140.513991 109.164064) (xy 140.48918 109.097543) (xy 140.504272 109.028169) (xy 140.522154 109.003222) (xy 140.665722 108.847268) (xy 140.78886 108.658791) (xy 140.879296 108.452616) (xy 140.934564 108.234368) (xy 140.953156 108.01) (xy 140.934564 107.785632) (xy 140.917536 107.71839) (xy 140.879297 107.567387) (xy 140.879296 107.567386) (xy 140.879296 107.567384) (xy 140.78886 107.361209) (xy 140.740847 107.287719) (xy 140.665724 107.172734) (xy 140.66572 107.172729) (xy 140.513237 107.007091) (xy 140.431382 106.943381) (xy 140.335576 106.868811) (xy 140.302319 106.850813) (xy 140.251929 106.800802) (xy 140.236576 106.731485) (xy 140.261136 106.664872) (xy 140.30232 106.629186) (xy 140.304715 106.62789) (xy 140.335576 106.611189) (xy 140.51324 106.472906) (xy 140.665722 106.307268) (xy 140.78886 106.118791) (xy 140.879296 105.912616) (xy 140.934564 105.694368) (xy 140.953156 105.47) (xy 140.934564 105.245632) (xy 140.879296 105.027384) (xy 140.78886 104.821209) (xy 140.716251 104.710072) (xy 140.665724 104.632734) (xy 140.66572 104.632729) (xy 140.513237 104.467091) (xy 140.379563 104.363048) (xy 140.335576 104.328811) (xy 140.302319 104.310813) (xy 140.251929 104.260802) (xy 140.236576 104.191485) (xy 140.261136 104.124872) (xy 140.30232 104.089186) (xy 140.335576 104.071189) (xy 140.51324 103.932906) (xy 140.665722 103.767268) (xy 140.78886 103.578791) (xy 140.879296 103.372616) (xy 140.934564 103.154368) (xy 140.953156 102.93) (xy 140.934564 102.705632) (xy 140.905315 102.59013) (xy 140.879297 102.487387) (xy 140.879296 102.487386) (xy 140.879296 102.487384) (xy 140.78886 102.281209) (xy 140.78214 102.270924) (xy 140.665724 102.092734) (xy 140.66572 102.092729) (xy 140.513237 101.927091) (xy 140.431382 101.863381) (xy 140.335576 101.788811) (xy 140.302319 101.770813) (xy 140.251929 101.720802) (xy 140.236576 101.651485) (xy 140.261136 101.584872) (xy 140.30232 101.549186) (xy 140.335576 101.531189) (xy 140.51324 101.392906) (xy 140.665722 101.227268) (xy 140.78886 101.038791) (xy 140.879296 100.832616) (xy 140.934564 100.614368) (xy 140.953156 100.39) (xy 140.934564 100.165632) (xy 140.879296 99.947384) (xy 140.78886 99.741209) (xy 140.720745 99.636951) (xy 140.665724 99.552734) (xy 140.665714 99.552722) (xy 140.522159 99.396782) (xy 140.490737 99.333117) (xy 140.498723 99.262571) (xy 140.543582 99.207542) (xy 140.570827 99.193388) (xy 140.685965 99.150444) (xy 140.802904 99.062904) (xy 140.890444 98.945965) (xy 140.890444 98.945964) (xy 140.941494 98.809093) (xy 140.947999 98.748597) (xy 140.948 98.748585) (xy 140.948 98.104) (xy 140.032251 98.104) (xy 140.065245 98.046853) (xy 140.1 97.917143) (xy 140.1 97.782857) (xy 140.065245 97.653147) (xy 140.032251 97.596) (xy 140.948 97.596) (xy 140.948 96.951414) (xy 140.947999 96.951402) (xy 140.941494 96.890906) (xy 140.890444 96.754035) (xy 140.890444 96.754034) (xy 140.802904 96.637095) (xy 140.685966 96.549556) (xy 140.570826 96.506611) (xy 140.513991 96.464064) (xy 140.48918 96.397543) (xy 140.504272 96.328169) (xy 140.522154 96.303222) (xy 140.665722 96.147268) (xy 140.78886 95.958791) (xy 140.879296 95.752616) (xy 140.934564 95.534368) (xy 140.953156 95.31) (xy 140.934564 95.085632) (xy 140.879296 94.867384) (xy 140.78886 94.661209) (xy 140.78214 94.650924) (xy 140.665724 94.472734) (xy 140.66572 94.472729) (xy 140.513237 94.307091) (xy 140.431382 94.243381) (xy 140.335576 94.168811) (xy 140.302319 94.150813) (xy 140.251929 94.100802) (xy 140.236576 94.031485) (xy 140.261136 93.964872) (xy 140.30232 93.929186) (xy 140.335576 93.911189) (xy 140.51324 93.772906) (xy 140.665722 93.607268) (xy 140.78886 93.418791) (xy 140.879296 93.212616) (xy 140.934564 92.994368) (xy 140.953156 92.77) (xy 140.934564 92.545632) (xy 140.879296 92.327384) (xy 140.78886 92.121209) (xy 140.73502 92.0388) (xy 140.665724 91.932734) (xy 140.66572 91.932729) (xy 140.513237 91.767091) (xy 140.431382 91.703381) (xy 140.335576 91.628811) (xy 140.302319 91.610813) (xy 140.251929 91.560802) (xy 140.236576 91.491485) (xy 140.261136 91.424872) (xy 140.30232 91.389186) (xy 140.335576 91.371189) (xy 140.51324 91.232906) (xy 140.665722 91.067268) (xy 140.78886 90.878791) (xy 140.879296 90.672616) (xy 140.934564 90.454368) (xy 140.953156 90.23) (xy 140.935376 90.015441) (xy 140.949684 89.945906) (xy 140.999317 89.895141) (xy 141.068517 89.879268) (xy 141.135313 89.903327) (xy 141.150041 89.915945) (xy 150.309595 99.075499) (xy 150.343621 99.137811) (xy 150.3465 99.164594) (xy 150.3465 118.17089) (xy 150.326498 118.239011) (xy 150.277709 118.283154) (xy 150.267989 118.288107) (xy 150.094995 118.413794) (xy 149.964684 118.544105) (xy 149.902372 118.57813) (xy 149.831556 118.573065) (xy 149.774721 118.530518) (xy 149.768356 118.521168) (xy 149.67903 118.376348) (xy 149.679029 118.376347) (xy 149.679024 118.376341) (xy 149.553658 118.250975) (xy 149.553652 118.25097) (xy 149.513129 118.225975) (xy 149.402738 118.157885) (xy 149.318582 118.129999) (xy 149.234427 118.102113) (xy 149.23442 118.102112) (xy 149.130553 118.0915) (xy 147.829455 118.0915) (xy 147.725574 118.102112) (xy 147.557261 118.157885) (xy 147.406347 118.25097) (xy 147.406341 118.250975) (xy 147.280975 118.376341) (xy 147.28097 118.376347) (xy 147.187885 118.527262) (xy 147.132113 118.695572) (xy 147.132112 118.695579) (xy 147.1215 118.799446) (xy 147.1215 120.400544) (xy 147.132112 120.504425) (xy 147.187885 120.672738) (xy 147.28097 120.823652) (xy 147.280975 120.823658) (xy 147.406341 120.949024) (xy 147.406347 120.949029) (xy 147.406348 120.94903) (xy 147.557262 121.042115) (xy 147.725574 121.097887) (xy 147.829455 121.1085) (xy 149.130544 121.108499) (xy 149.234426 121.097887) (xy 149.402738 121.042115) (xy 149.553652 120.94903) (xy 149.67903 120.823652) (xy 149.768349 120.678842) (xy 149.821134 120.631365) (xy 149.891208 120.619962) (xy 149.956324 120.648254) (xy 149.964684 120.655895) (xy 150.09499 120.786201) (xy 150.094993 120.786203) (xy 150.094996 120.786206) (xy 150.267991 120.911894) (xy 150.458517 121.008972) (xy 150.661878 121.075047) (xy 150.661879 121.075047) (xy 150.661884 121.075049) (xy 150.873084 121.1085) (xy 150.873087 121.1085) (xy 151.086913 121.1085) (xy 151.086916 121.1085) (xy 151.298116 121.075049) (xy 151.501483 121.008972) (xy 151.692009 120.911894) (xy 151.865004 120.786206) (xy 152.016206 120.635004) (xy 152.141894 120.462009) (xy 152.238972 120.271483) (xy 152.305049 120.068116) (xy 152.3385 119.856916) (xy 152.3385 119.343084) (xy 152.305049 119.131884) (xy 152.238972 118.928517) (xy 152.141894 118.737991) (xy 152.016206 118.564996) (xy 152.016203 118.564993) (xy 152.016201 118.56499) (xy 151.865009 118.413798) (xy 151.865006 118.413796) (xy 151.865004 118.413794) (xy 151.692009 118.288106) (xy 151.686332 118.285213) (xy 151.682291 118.283154) (xy 151.630678 118.234403) (xy 151.6135 118.17089) (xy 151.6135 98.787607) (xy 151.613499 98.787603) (xy 151.589155 98.665215) (xy 151.5414 98.549925) (xy 151.472071 98.446167) (xy 151.383833 98.357929) (xy 140.976298 87.950394) (xy 140.942272 87.888082) (xy 140.939823 87.850894) (xy 140.942289 87.821134) (xy 140.953156 87.69) (xy 140.934564 87.465632) (xy 140.879296 87.247384) (xy 140.78886 87.041209) (xy 140.68794 86.886739) (xy 140.665724 86.852734) (xy 140.665719 86.852729) (xy 140.597437 86.778556) (xy 140.522524 86.697179) (xy 140.491103 86.633514) (xy 140.49909 86.562968) (xy 140.543948 86.507939) (xy 140.571183 86.493789) (xy 140.686204 86.450889) (xy 140.686799 86.450444) (xy 140.803261 86.363261) (xy 140.890887 86.246207) (xy 140.890887 86.246206) (xy 140.890889 86.246204) (xy 140.941989 86.109201) (xy 140.9485 86.048638) (xy 140.9485 85.258239) (xy 140.968502 85.190118) (xy 141.022158 85.143625) (xy 141.092432 85.133521) (xy 141.157012 85.163015) (xy 141.163595 85.169144) (xy 159.034595 103.040144) (xy 159.068621 103.102456) (xy 159.0715 103.129239) (xy 159.0715 118.133152) (xy 159.051498 118.201273) (xy 159.002705 118.245418) (xy 158.967988 118.263107) (xy 158.794995 118.388794) (xy 158.664684 118.519105) (xy 158.602372 118.55313) (xy 158.531556 118.548065) (xy 158.474721 118.505518) (xy 158.468356 118.496168) (xy 158.37903 118.351348) (xy 158.379029 118.351347) (xy 158.379024 118.351341) (xy 158.253658 118.225975) (xy 158.253652 118.22597) (xy 158.213612 118.201273) (xy 158.102738 118.132885) (xy 158.018582 118.104999) (xy 157.934427 118.077113) (xy 157.93442 118.077112) (xy 157.830553 118.0665) (xy 156.529455 118.0665) (xy 156.425574 118.077112) (xy 156.257261 118.132885) (xy 156.106347 118.22597) (xy 156.106341 118.225975) (xy 155.980975 118.351341) (xy 155.98097 118.351347) (xy 155.887885 118.502262) (xy 155.832113 118.670572) (xy 155.832112 118.670579) (xy 155.8215 118.774446) (xy 155.8215 120.375544) (xy 155.832112 120.479425) (xy 155.887885 120.647738) (xy 155.98097 120.798652) (xy 155.980975 120.798658) (xy 156.106341 120.924024) (xy 156.106347 120.924029) (xy 156.106348 120.92403) (xy 156.257262 121.017115) (xy 156.425574 121.072887) (xy 156.529455 121.0835) (xy 157.830544 121.083499) (xy 157.934426 121.072887) (xy 158.102738 121.017115) (xy 158.253652 120.92403) (xy 158.37903 120.798652) (xy 158.468349 120.653842) (xy 158.521134 120.606365) (xy 158.591208 120.594962) (xy 158.656324 120.623254) (xy 158.664684 120.630895) (xy 158.79499 120.761201) (xy 158.794993 120.761203) (xy 158.794996 120.761206) (xy 158.967991 120.886894) (xy 159.158517 120.983972) (xy 159.361878 121.050047) (xy 159.361879 121.050047) (xy 159.361884 121.050049) (xy 159.573084 121.0835) (xy 159.573087 121.0835) (xy 159.786913 121.0835) (xy 159.786916 121.0835) (xy 159.998116 121.050049) (xy 160.201483 120.983972) (xy 160.392009 120.886894) (xy 160.565004 120.761206) (xy 160.716206 120.610004) (xy 160.841894 120.437009) (xy 160.938972 120.246483) (xy 161.005049 120.043116) (xy 161.0385 119.831916) (xy 161.0385 119.318084) (xy 161.005049 119.106884) (xy 160.938972 118.903517) (xy 160.841894 118.712991) (xy 160.716206 118.539996) (xy 160.716203 118.539993) (xy 160.716201 118.53999) (xy 160.565009 118.388798) (xy 160.565006 118.388796) (xy 160.565004 118.388794) (xy 160.470392 118.320054) (xy 160.44279 118.3) (xy 169.226844 118.3) (xy 169.243604 118.502262) (xy 169.245437 118.524375) (xy 169.300702 118.742612) (xy 169.300703 118.742613) (xy 169.391141 118.948793) (xy 169.514275 119.137265) (xy 169.514279 119.13727) (xy 169.666762 119.302908) (xy 169.68626 119.318084) (xy 169.844424 119.441189) (xy 170.042426 119.548342) (xy 170.042427 119.548342) (xy 170.042428 119.548343) (xy 170.154227 119.586723) (xy 170.255365 119.621444) (xy 170.477431 119.6585) (xy 170.477435 119.6585) (xy 170.702565 119.6585) (xy 170.702569 119.6585) (xy 170.924635 119.621444) (xy 171.137574 119.548342) (xy 171.335576 119.441189) (xy 171.51324 119.302906) (xy 171.665722 119.137268) (xy 171.754518 119.001354) (xy 171.80852 118.955268) (xy 171.878868 118.945692) (xy 171.943225 118.975669) (xy 171.96548 119.001353) (xy 171.998607 119.052058) (xy 172.054275 119.137265) (xy 172.054279 119.13727) (xy 172.206762 119.302908) (xy 172.22626 119.318084) (xy 172.384424 119.441189) (xy 172.582426 119.548342) (xy 172.582427 119.548342) (xy 172.582428 119.548343) (xy 172.694227 119.586723) (xy 172.795365 119.621444) (xy 173.017431 119.6585) (xy 173.017435 119.6585) (xy 173.242565 119.6585) (xy 173.242569 119.6585) (xy 173.464635 119.621444) (xy 173.677574 119.548342) (xy 173.875576 119.441189) (xy 174.05324 119.302906) (xy 174.114245 119.236637) (xy 174.175096 119.200067) (xy 174.246061 119.2022) (xy 174.304606 119.242362) (xy 174.325 119.277941) (xy 174.369111 119.396204) (xy 174.369112 119.396207) (xy 174.456738 119.513261) (xy 174.573792 119.600887) (xy 174.573794 119.600888) (xy 174.573796 119.600889) (xy 174.6289 119.621442) (xy 174.710795 119.651988) (xy 174.710803 119.65199) (xy 174.77135 119.658499) (xy 174.771355 119.658499) (xy 174.771362 119.6585) (xy 174.771368 119.6585) (xy 176.568632 119.6585) (xy 176.568638 119.6585) (xy 176.568645 119.658499) (xy 176.568649 119.658499) (xy 176.629196 119.65199) (xy 176.629199 119.651989) (xy 176.629201 119.651989) (xy 176.766204 119.600889) (xy 176.836399 119.548342) (xy 176.883261 119.513261) (xy 176.970887 119.396207) (xy 176.970887 119.396206) (xy 176.970889 119.396204) (xy 177.021989 119.259201) (xy 177.0238 119.242362) (xy 177.028499 119.198649) (xy 177.0285 119.198632) (xy 177.0285 117.401367) (xy 177.028499 117.40135) (xy 177.02199 117.340803) (xy 177.021988 117.340795) (xy 176.970889 117.203796) (xy 176.970887 117.203792) (xy 176.883261 117.086738) (xy 176.766207 116.999112) (xy 176.766202 116.99911) (xy 176.629204 116.948011) (xy 176.629196 116.948009) (xy 176.568649 116.9415) (xy 176.568638 116.9415) (xy 174.771362 116.9415) (xy 174.77135 116.9415) (xy 174.710803 116.948009) (xy 174.710795 116.948011) (xy 174.573797 116.99911) (xy 174.573792 116.999112) (xy 174.456738 117.086738) (xy 174.369112 117.203792) (xy 174.369111 117.203795) (xy 174.325 117.322058) (xy 174.282453 117.378893) (xy 174.215932 117.403703) (xy 174.146558 117.388611) (xy 174.114246 117.363363) (xy 174.05324 117.297094) (xy 174.053239 117.297093) (xy 174.053237 117.297091) (xy 173.933372 117.203796) (xy 173.875576 117.158811) (xy 173.677574 117.051658) (xy 173.677572 117.051657) (xy 173.677571 117.051656) (xy 173.464639 116.978557) (xy 173.46463 116.978555) (xy 173.420476 116.971187) (xy 173.242569 116.9415) (xy 173.017431 116.9415) (xy 172.869211 116.966233) (xy 172.795369 116.978555) (xy 172.79536 116.978557) (xy 172.582428 117.051656) (xy 172.582426 117.051658) (xy 172.384426 117.15881) (xy 172.384424 117.158811) (xy 172.206762 117.297091) (xy 172.054279 117.462729) (xy 171.965483 117.598643) (xy 171.911479 117.644731) (xy 171.841131 117.654306) (xy 171.776774 117.624329) (xy 171.754517 117.598643) (xy 171.66572 117.462729) (xy 171.513237 117.297091) (xy 171.393372 117.203796) (xy 171.335576 117.158811) (xy 171.137574 117.051658) (xy 171.137572 117.051657) (xy 171.137571 117.051656) (xy 170.924639 116.978557) (xy 170.92463 116.978555) (xy 170.880476 116.971187) (xy 170.702569 116.9415) (xy 170.477431 116.9415) (xy 170.329211 116.966233) (xy 170.255369 116.978555) (xy 170.25536 116.978557) (xy 170.042428 117.051656) (xy 170.042426 117.051658) (xy 169.844426 117.15881) (xy 169.844424 117.158811) (xy 169.666762 117.297091) (xy 169.514279 117.462729) (xy 169.514275 117.462734) (xy 169.391141 117.651206) (xy 169.300703 117.857386) (xy 169.300702 117.857387) (xy 169.245437 118.075624) (xy 169.245436 118.07563) (xy 169.245436 118.075632) (xy 169.226844 118.3) (xy 160.44279 118.3) (xy 160.392011 118.263107) (xy 160.357295 118.245418) (xy 160.305681 118.196669) (xy 160.2885 118.133152) (xy 160.2885 112.1) (xy 175.916496 112.1) (xy 175.936457 112.289927) (xy 175.96321 112.372262) (xy 175.995473 112.471556) (xy 175.995476 112.471561) (xy 176.090958 112.636941) (xy 176.090965 112.636951) (xy 176.218744 112.778864) (xy 176.218747 112.778866) (xy 176.373248 112.891118) (xy 176.547712 112.968794) (xy 176.734513 113.0085) (xy 176.925487 113.0085) (xy 177.112288 112.968794) (xy 177.286752 112.891118) (xy 177.441253 112.778866) (xy 177.56904 112.636944) (xy 177.664527 112.471556) (xy 177.723542 112.289928) (xy 177.743504 112.1) (xy 177.723542 111.910072) (xy 177.664527 111.728444) (xy 177.56904 111.563056) (xy 177.569038 111.563054) (xy 177.569034 111.563048) (xy 177.441255 111.421135) (xy 177.286752 111.308882) (xy 177.112288 111.231206) (xy 176.925487 111.1915) (xy 176.734513 111.1915) (xy 176.547711 111.231206) (xy 176.373247 111.308882) (xy 176.218744 111.421135) (xy 176.090965 111.563048) (xy 176.090958 111.563058) (xy 175.995476 111.728438) (xy 175.995473 111.728445) (xy 175.936457 111.910072) (xy 175.916496 112.1) (xy 160.2885 112.1) (xy 160.2885 105.9) (xy 180.016496 105.9) (xy 180.036457 106.089927) (xy 180.059625 106.161228) (xy 180.095473 106.271556) (xy 180.095476 106.271561) (xy 180.190958 106.436941) (xy 180.190965 106.436951) (xy 180.318744 106.578864) (xy 180.363234 106.611188) (xy 180.473248 106.691118) (xy 180.647712 106.768794) (xy 180.834513 106.8085) (xy 181.025487 106.8085) (xy 181.212288 106.768794) (xy 181.386752 106.691118) (xy 181.44094 106.651747) (xy 181.507806 106.62789) (xy 181.576958 106.64397) (xy 181.58905 106.65174) (xy 181.643248 106.691118) (xy 181.817712 106.768794) (xy 182.004513 106.8085) (xy 182.195487 106.8085) (xy 182.382288 106.768794) (xy 182.556752 106.691118) (xy 182.711253 106.578866) (xy 182.80666 106.472906) (xy 182.839034 106.436951) (xy 182.839035 106.436949) (xy 182.83904 106.436944) (xy 182.934527 106.271556) (xy 182.993542 106.089928) (xy 183.013504 105.9) (xy 182.993542 105.710072) (xy 182.934527 105.528444) (xy 182.896742 105.463) (xy 182.880005 105.394005) (xy 182.896743 105.336999) (xy 182.921225 105.294595) (xy 182.934527 105.271556) (xy 182.993542 105.089928) (xy 183.013504 104.9) (xy 182.993542 104.710072) (xy 182.934527 104.528444) (xy 182.83904 104.363056) (xy 182.839038 104.363054) (xy 182.839034 104.363048) (xy 182.711255 104.221135) (xy 182.556752 104.108882) (xy 182.382288 104.031206) (xy 182.195487 103.9915) (xy 182.004513 103.9915) (xy 181.817711 104.031206) (xy 181.643247 104.108882) (xy 181.488744 104.221135) (xy 181.360965 104.363048) (xy 181.360958 104.363058) (xy 181.265476 104.528438) (xy 181.265473 104.528445) (xy 181.206457 104.710072) (xy 181.188198 104.883804) (xy 181.161185 104.949461) (xy 181.102963 104.990091) (xy 181.036694 104.993881) (xy 181.025491 104.9915) (xy 181.025487 104.9915) (xy 180.834513 104.9915) (xy 180.647711 105.031206) (xy 180.473247 105.108882) (xy 180.318744 105.221135) (xy 180.190965 105.363048) (xy 180.190958 105.363058) (xy 180.127525 105.472928) (xy 180.095473 105.528444) (xy 180.080999 105.572986) (xy 180.036457 105.710072) (xy 180.016496 105.9) (xy 160.2885 105.9) (xy 160.2885 102.74489) (xy 160.277979 102.705624) (xy 160.247032 102.590128) (xy 160.166921 102.451372) (xy 160.053628 102.338079) (xy 156.815549 99.1) (xy 176.616496 99.1) (xy 176.636457 99.289927) (xy 176.663069 99.371829) (xy 176.695473 99.471556) (xy 176.695476 99.471561) (xy 176.790958 99.636941) (xy 176.790965 99.636951) (xy 176.918744 99.778864) (xy 176.918747 99.778866) (xy 177.073248 99.891118) (xy 177.247712 99.968794) (xy 177.434513 100.0085) (xy 177.625487 100.0085) (xy 177.812288 99.968794) (xy 177.986752 99.891118) (xy 178.00594 99.877176) (xy 178.072805 99.853319) (xy 178.141956 99.869398) (xy 178.154048 99.877168) (xy 178.173248 99.891118) (xy 178.347712 99.968794) (xy 178.534513 100.0085) (xy 178.725487 100.0085) (xy 178.912288 99.968794) (xy 179.086752 99.891118) (xy 179.10594 99.877176) (xy 179.172805 99.853319) (xy 179.241956 99.869398) (xy 179.254048 99.877168) (xy 179.273248 99.891118) (xy 179.447712 99.968794) (xy 179.634513 100.0085) (xy 179.825487 100.0085) (xy 180.012288 99.968794) (xy 180.186752 99.891118) (xy 180.341253 99.778866) (xy 180.341255 99.778864) (xy 180.469034 99.636951) (xy 180.469035 99.636949) (xy 180.46904 99.636944) (xy 180.564527 99.471556) (xy 180.623542 99.289928) (xy 180.643504 99.1) (xy 180.623542 98.910072) (xy 180.564527 98.728444) (xy 180.46904 98.563056) (xy 180.469038 98.563054) (xy 180.469034 98.563048) (xy 180.341256 98.421136) (xy 180.340211 98.420377) (xy 180.339752 98.419782) (xy 180.336348 98.416717) (xy 180.336908 98.416094) (xy 180.296858 98.364153) (xy 180.290784 98.293417) (xy 180.323917 98.230626) (xy 180.385738 98.195716) (xy 180.387998 98.195212) (xy 180.512288 98.168794) (xy 180.686752 98.091118) (xy 180.841253 97.978866) (xy 180.96904 97.836944) (xy 181.064527 97.671556) (xy 181.123542 97.489928) (xy 181.143504 97.3) (xy 181.123542 97.110072) (xy 181.064527 96.928444) (xy 180.96904 96.763056) (xy 180.969038 96.763054) (xy 180.969034 96.763048) (xy 180.841255 96.621135) (xy 180.686752 96.508882) (xy 180.512288 96.431206) (xy 180.325487 96.3915) (xy 180.134513 96.3915) (xy 179.947711 96.431206) (xy 179.773247 96.508882) (xy 179.618744 96.621135) (xy 179.490965 96.763048) (xy 179.490958 96.763058) (xy 179.395476 96.928438) (xy 179.395473 96.928444) (xy 179.38801 96.951414) (xy 179.336457 97.110072) (xy 179.316496 97.3) (xy 179.336457 97.489927) (xy 179.358377 97.557387) (xy 179.395473 97.671556) (xy 179.395476 97.671561) (xy 179.490958 97.836941) (xy 179.490965 97.836951) (xy 179.618743 97.978863) (xy 179.619785 97.97962) (xy 179.620242 97.980213) (xy 179.623652 97.983283) (xy 179.62309 97.983906) (xy 179.66314 98.035842) (xy 179.669216 98.106579) (xy 179.636084 98.169371) (xy 179.574264 98.204282) (xy 179.571922 98.204804) (xy 179.447711 98.231206) (xy 179.273246 98.308882) (xy 179.273245 98.308883) (xy 179.254061 98.322822) (xy 179.187193 98.346681) (xy 179.118041 98.3306) (xy 179.105939 98.322822) (xy 179.086754 98.308883) (xy 179.086753 98.308882) (xy 178.912288 98.231206) (xy 178.725487 98.1915) (xy 178.534513 98.1915) (xy 178.347711 98.231206) (xy 178.173246 98.308882) (xy 178.173245 98.308883) (xy 178.154061 98.322822) (xy 178.087193 98.346681) (xy 178.018041 98.3306) (xy 178.005939 98.322822) (xy 177.986754 98.308883) (xy 177.986753 98.308882) (xy 177.812288 98.231206) (xy 177.625487 98.1915) (xy 177.434513 98.1915) (xy 177.247711 98.231206) (xy 177.073247 98.308882) (xy 176.918744 98.421135) (xy 176.790965 98.563048) (xy 176.790958 98.563058) (xy 176.695476 98.728438) (xy 176.695473 98.728444) (xy 176.688912 98.748638) (xy 176.636457 98.910072) (xy 176.616496 99.1) (xy 156.815549 99.1) (xy 153.915549 96.2) (xy 164.636496 96.2) (xy 164.656457 96.389927) (xy 164.676363 96.451189) (xy 164.715473 96.571556) (xy 164.715476 96.571561) (xy 164.810958 96.736941) (xy 164.810965 96.736951) (xy 164.938744 96.878864) (xy 164.97306 96.903796) (xy 165.093248 96.991118) (xy 165.267712 97.068794) (xy 165.454513 97.1085) (xy 165.645487 97.1085) (xy 165.832288 97.068794) (xy 166.006752 96.991118) (xy 166.161253 96.878866) (xy 166.179311 96.858811) (xy 166.289034 96.736951) (xy 166.289035 96.736949) (xy 166.28904 96.736944) (xy 166.384527 96.571556) (xy 166.443542 96.389928) (xy 166.463504 96.2) (xy 166.443542 96.010072) (xy 166.384527 95.828444) (xy 166.28904 95.663056) (xy 166.289038 95.663054) (xy 166.289034 95.663048) (xy 166.161255 95.521135) (xy 166.006752 95.408882) (xy 165.832288 95.331206) (xy 165.645487 95.2915) (xy 165.454513 95.2915) (xy 165.267711 95.331206) (xy 165.093247 95.408882) (xy 164.938744 95.521135) (xy 164.810965 95.663048) (xy 164.810958 95.663058) (xy 164.715476 95.828438) (xy 164.715473 95.828445) (xy 164.656457 96.010072) (xy 164.636496 96.2) (xy 153.915549 96.2) (xy 147.615549 89.9) (xy 148.616496 89.9) (xy 148.636457 90.089927) (xy 148.658892 90.158972) (xy 148.695473 90.271556) (xy 148.695476 90.271561) (xy 148.790958 90.436941) (xy 148.790965 90.436951) (xy 148.918744 90.578864) (xy 148.918747 90.578866) (xy 149.073248 90.691118) (xy 149.247712 90.768794) (xy 149.434513 90.8085) (xy 149.625487 90.8085) (xy 149.812288 90.768794) (xy 149.986752 90.691118) (xy 150.141253 90.578866) (xy 150.141255 90.578864) (xy 150.269034 90.436951) (xy 150.269034 90.43695) (xy 150.26904 90.436944) (xy 150.296132 90.390018) (xy 150.347511 90.341028) (xy 150.417225 90.327591) (xy 150.483136 90.353977) (xy 150.524319 90.411809) (xy 150.530559 90.466191) (xy 150.516496 90.599999) (xy 150.536457 90.789927) (xy 150.542492 90.8085) (xy 150.595473 90.971556) (xy 150.595476 90.971561) (xy 150.690958 91.136941) (xy 150.690965 91.136951) (xy 150.818744 91.278864) (xy 150.818747 91.278866) (xy 150.973248 91.391118) (xy 151.147712 91.468794) (xy 151.334513 91.5085) (xy 151.525487 91.5085) (xy 151.712288 91.468794) (xy 151.886752 91.391118) (xy 152.012165 91.3) (xy 159.916496 91.3) (xy 159.936457 91.489927) (xy 159.96329 91.572508) (xy 159.995473 91.671556) (xy 159.995476 91.671561) (xy 160.090958 91.836941) (xy 160.090965 91.836951) (xy 160.218744 91.978864) (xy 160.218747 91.978866) (xy 160.373248 92.091118) (xy 160.547712 92.168794) (xy 160.734513 92.2085) (xy 160.925487 92.2085) (xy 161.112288 92.168794) (xy 161.286752 92.091118) (xy 161.441253 91.978866) (xy 161.441255 91.978864) (xy 161.569034 91.836951) (xy 161.569035 91.836949) (xy 161.56904 91.836944) (xy 161.664527 91.671556) (xy 161.723542 91.489928) (xy 161.743504 91.3) (xy 161.723542 91.110072) (xy 161.664527 90.928444) (xy 161.56904 90.763056) (xy 161.569038 90.763054) (xy 161.569034 90.763048) (xy 161.441255 90.621135) (xy 161.286752 90.508882) (xy 161.112288 90.431206) (xy 160.925487 90.3915) (xy 160.734513 90.3915) (xy 160.547711 90.431206) (xy 160.373247 90.508882) (xy 160.218744 90.621135) (xy 160.090965 90.763048) (xy 160.090958 90.763058) (xy 159.995476 90.928438) (xy 159.995473 90.928445) (xy 159.936457 91.110072) (xy 159.916496 91.3) (xy 152.012165 91.3) (xy 152.041253 91.278866) (xy 152.16904 91.136944) (xy 152.264527 90.971556) (xy 152.323542 90.789928) (xy 152.343504 90.6) (xy 152.323542 90.410072) (xy 152.264527 90.228444) (xy 152.248105 90.2) (xy 181.716496 90.2) (xy 181.736457 90.389927) (xy 181.766526 90.48247) (xy 181.795473 90.571556) (xy 181.811895 90.599999) (xy 181.890958 90.736941) (xy 181.890965 90.736951) (xy 182.018744 90.878864) (xy 182.018747 90.878866) (xy 182.173248 90.991118) (xy 182.347712 91.068794) (xy 182.534513 91.1085) (xy 182.725487 91.1085) (xy 182.912288 91.068794) (xy 183.086752 90.991118) (xy 183.241253 90.878866) (xy 183.36904 90.736944) (xy 183.464527 90.571556) (xy 183.523542 90.389928) (xy 183.543504 90.2) (xy 183.523542 90.010072) (xy 183.464527 89.828444) (xy 183.36904 89.663056) (xy 183.369038 89.663054) (xy 183.369034 89.663048) (xy 183.241255 89.521135) (xy 183.086752 89.408882) (xy 182.912288 89.331206) (xy 182.725487 89.2915) (xy 182.534513 89.2915) (xy 182.347711 89.331206) (xy 182.173247 89.408882) (xy 182.018744 89.521135) (xy 181.890965 89.663048) (xy 181.890958 89.663058) (xy 181.795476 89.828438) (xy 181.795473 89.828445) (xy 181.736457 90.010072) (xy 181.716496 90.2) (xy 152.248105 90.2) (xy 152.16904 90.063056) (xy 152.169038 90.063054) (xy 152.169034 90.063048) (xy 152.041255 89.921135) (xy 151.886752 89.808882) (xy 151.712288 89.731206) (xy 151.525487 89.6915) (xy 151.334513 89.6915) (xy 151.147711 89.731206) (xy 150.973247 89.808882) (xy 150.818744 89.921135) (xy 150.690965 90.063048) (xy 150.69096 90.063055) (xy 150.663869 90.109979) (xy 150.612485 90.158972) (xy 150.542772 90.172407) (xy 150.476861 90.14602) (xy 150.435679 90.088187) (xy 150.42944 90.033807) (xy 150.431935 90.010072) (xy 150.443504 89.9) (xy 150.423542 89.710072) (xy 150.364527 89.528444) (xy 150.330039 89.468709) (xy 150.313301 89.399714) (xy 150.336521 89.332622) (xy 150.38174 89.295649) (xy 150.381031 89.294421) (xy 150.38674 89.291123) (xy 150.386752 89.291118) (xy 150.541253 89.178866) (xy 150.541255 89.178864) (xy 150.669034 89.036951) (xy 150.669035 89.036949) (xy 150.66904 89.036944) (xy 150.764527 88.871556) (xy 150.823542 88.689928) (xy 150.843504 88.5) (xy 155.816496 88.5) (xy 155.836457 88.689927) (xy 155.859781 88.761708) (xy 155.895473 88.871556) (xy 155.895476 88.871561) (xy 155.990958 89.036941) (xy 155.990965 89.036951) (xy 156.118744 89.178864) (xy 156.142615 89.196207) (xy 156.273248 89.291118) (xy 156.447712 89.368794) (xy 156.634513 89.4085) (xy 156.825487 89.4085) (xy 157.012288 89.368794) (xy 157.186752 89.291118) (xy 157.341253 89.178866) (xy 157.341255 89.178864) (xy 157.469034 89.036951) (xy 157.469035 89.036949) (xy 157.46904 89.036944) (xy 157.564527 88.871556) (xy 157.587777 88.8) (xy 160.086496 88.8) (xy 160.106457 88.989927) (xy 160.123495 89.042362) (xy 160.165473 89.171556) (xy 160.179702 89.196202) (xy 160.260958 89.336941) (xy 160.260965 89.336951) (xy 160.388744 89.478864) (xy 160.424614 89.504925) (xy 160.543248 89.591118) (xy 160.717712 89.668794) (xy 160.904513 89.7085) (xy 161.095487 89.7085) (xy 161.282288 89.668794) (xy 161.456752 89.591118) (xy 161.611253 89.478866) (xy 161.611255 89.478864) (xy 161.739034 89.336951) (xy 161.739035 89.336949) (xy 161.73904 89.336944) (xy 161.834527 89.171556) (xy 161.893542 88.989928) (xy 161.913504 88.8) (xy 161.893542 88.610072) (xy 161.834527 88.428444) (xy 161.73904 88.263056) (xy 161.739038 88.263054) (xy 161.739034 88.263048) (xy 161.611255 88.121135) (xy 161.582165 88.1) (xy 166.766844 88.1) (xy 166.784251 88.310072) (xy 166.785437 88.324375) (xy 166.840702 88.542612) (xy 166.840703 88.542613) (xy 166.931141 88.748793) (xy 167.054275 88.937265) (xy 167.054279 88.93727) (xy 167.206762 89.102908) (xy 167.261331 89.145381) (xy 167.384424 89.241189) (xy 167.582426 89.348342) (xy 167.582427 89.348342) (xy 167.582428 89.348343) (xy 167.694227 89.386723) (xy 167.795365 89.421444) (xy 168.017431 89.4585) (xy 168.017435 89.4585) (xy 168.242565 89.4585) (xy 168.242569 89.4585) (xy 168.464635 89.421444) (xy 168.677574 89.348342) (xy 168.875576 89.241189) (xy 169.05324 89.102906) (xy 169.205722 88.937268) (xy 169.294518 88.801354) (xy 169.34852 88.755268) (xy 169.418868 88.745692) (xy 169.483225 88.775669) (xy 169.50548 88.801353) (xy 169.524973 88.831188) (xy 169.594275 88.937265) (xy 169.594279 88.93727) (xy 169.746762 89.102908) (xy 169.801331 89.145381) (xy 169.924424 89.241189) (xy 170.122426 89.348342) (xy 170.122427 89.348342) (xy 170.122428 89.348343) (xy 170.234227 89.386723) (xy 170.335365 89.421444) (xy 170.557431 89.4585) (xy 170.557435 89.4585) (xy 170.782565 89.4585) (xy 170.782569 89.4585) (xy 171.004635 89.421444) (xy 171.217574 89.348342) (xy 171.415576 89.241189) (xy 171.59324 89.102906) (xy 171.654245 89.036637) (xy 171.715096 89.000067) (xy 171.786061 89.0022) (xy 171.844606 89.042362) (xy 171.865 89.077941) (xy 171.909111 89.196204) (xy 171.909112 89.196207) (xy 171.996738 89.313261) (xy 172.113792 89.400887) (xy 172.113794 89.400888) (xy 172.113796 89.400889) (xy 172.134202 89.4085) (xy 172.250795 89.451988) (xy 172.250803 89.45199) (xy 172.31135 89.458499) (xy 172.311355 89.458499) (xy 172.311362 89.4585) (xy 172.311368 89.4585) (xy 174.108632 89.4585) (xy 174.108638 89.4585) (xy 174.108645 89.458499) (xy 174.108649 89.458499) (xy 174.169196 89.45199) (xy 174.169199 89.451989) (xy 174.169201 89.451989) (xy 174.306204 89.400889) (xy 174.317101 89.392732) (xy 174.423261 89.313261) (xy 174.510887 89.196207) (xy 174.510887 89.196206) (xy 174.510889 89.196204) (xy 174.561989 89.059201) (xy 174.562884 89.050884) (xy 174.568499 88.998649) (xy 174.5685 88.998632) (xy 174.5685 87.201367) (xy 174.568499 87.20135) (xy 174.56199 87.140803) (xy 174.561988 87.140795) (xy 174.510889 87.003797) (xy 174.510887 87.003792) (xy 174.423261 86.886738) (xy 174.306207 86.799112) (xy 174.306202 86.79911) (xy 174.169204 86.748011) (xy 174.169196 86.748009) (xy 174.108649 86.7415) (xy 174.108638 86.7415) (xy 172.311362 86.7415) (xy 172.31135 86.7415) (xy 172.250803 86.748009) (xy 172.250795 86.748011) (xy 172.113797 86.79911) (xy 172.113792 86.799112) (xy 171.996738 86.886738) (xy 171.909112 87.003792) (xy 171.909111 87.003795) (xy 171.865 87.122058) (xy 171.822453 87.178893) (xy 171.755932 87.203703) (xy 171.686558 87.188611) (xy 171.654246 87.163363) (xy 171.59324 87.097094) (xy 171.593239 87.097093) (xy 171.593237 87.097091) (xy 171.473372 87.003796) (xy 171.415576 86.958811) (xy 171.217574 86.851658) (xy 171.217572 86.851657) (xy 171.217571 86.851656) (xy 171.004639 86.778557) (xy 171.00463 86.778555) (xy 170.960476 86.771187) (xy 170.782569 86.7415) (xy 170.557431 86.7415) (xy 170.409211 86.766233) (xy 170.335369 86.778555) (xy 170.33536 86.778557) (xy 170.122428 86.851656) (xy 170.122426 86.851658) (xy 169.941896 86.949356) (xy 169.924426 86.95881) (xy 169.924424 86.958811) (xy 169.746762 87.097091) (xy 169.594279 87.262729) (xy 169.505483 87.398643) (xy 169.451479 87.444731) (xy 169.381131 87.454306) (xy 169.316774 87.424329) (xy 169.294517 87.398643) (xy 169.20572 87.262729) (xy 169.053237 87.097091) (xy 168.933372 87.003796) (xy 168.875576 86.958811) (xy 168.677574 86.851658) (xy 168.677572 86.851657) (xy 168.677571 86.851656) (xy 168.464639 86.778557) (xy 168.46463 86.778555) (xy 168.420476 86.771187) (xy 168.242569 86.7415) (xy 168.017431 86.7415) (xy 167.869211 86.766233) (xy 167.795369 86.778555) (xy 167.79536 86.778557) (xy 167.582428 86.851656) (xy 167.582426 86.851658) (xy 167.401896 86.949356) (xy 167.384426 86.95881) (xy 167.384424 86.958811) (xy 167.206762 87.097091) (xy 167.054279 87.262729) (xy 167.054275 87.262734) (xy 166.931141 87.451206) (xy 166.840703 87.657386) (xy 166.840702 87.657387) (xy 166.785437 87.875624) (xy 166.785436 87.87563) (xy 166.785436 87.875632) (xy 166.766844 88.1) (xy 161.582165 88.1) (xy 161.456752 88.008882) (xy 161.282288 87.931206) (xy 161.095487 87.8915) (xy 160.904513 87.8915) (xy 160.717711 87.931206) (xy 160.543247 88.008882) (xy 160.388744 88.121135) (xy 160.260965 88.263048) (xy 160.260958 88.263058) (xy 160.165476 88.428438) (xy 160.165473 88.428445) (xy 160.106457 88.610072) (xy 160.086496 88.8) (xy 157.587777 88.8) (xy 157.623542 88.689928) (xy 157.643504 88.5) (xy 157.623542 88.310072) (xy 157.564527 88.128444) (xy 157.46904 87.963056) (xy 157.469038 87.963054) (xy 157.469034 87.963048) (xy 157.341255 87.821135) (xy 157.186752 87.708882) (xy 157.012288 87.631206) (xy 156.825487 87.5915) (xy 156.634513 87.5915) (xy 156.447711 87.631206) (xy 156.273247 87.708882) (xy 156.118744 87.821135) (xy 155.990965 87.963048) (xy 155.990958 87.963058) (xy 155.895476 88.128438) (xy 155.895473 88.128444) (xy 155.891924 88.139367) (xy 155.836457 88.310072) (xy 155.816496 88.5) (xy 150.843504 88.5) (xy 150.823542 88.310072) (xy 150.764527 88.128444) (xy 150.66904 87.963056) (xy 150.669038 87.963054) (xy 150.669034 87.963048) (xy 150.541255 87.821135) (xy 150.386752 87.708882) (xy 150.212288 87.631206) (xy 150.025487 87.5915) (xy 149.834513 87.5915) (xy 149.647711 87.631206) (xy 149.473247 87.708882) (xy 149.318744 87.821135) (xy 149.190965 87.963048) (xy 149.190958 87.963058) (xy 149.095476 88.128438) (xy 149.095473 88.128444) (xy 149.091924 88.139367) (xy 149.036457 88.310072) (xy 149.016496 88.5) (xy 149.036457 88.689927) (xy 149.059781 88.761708) (xy 149.095473 88.871556) (xy 149.095476 88.871561) (xy 149.12996 88.93129) (xy 149.146698 89.000286) (xy 149.123477 89.067378) (xy 149.078264 89.104351) (xy 149.078972 89.105577) (xy 149.073248 89.108882) (xy 148.918744 89.221135) (xy 148.790965 89.363048) (xy 148.790958 89.363058) (xy 148.695476 89.528438) (xy 148.695473 89.528445) (xy 148.636457 89.710072) (xy 148.616496 89.9) (xy 147.615549 89.9) (xy 142.715549 85) (xy 181.716496 85) (xy 181.736457 85.189927) (xy 181.758654 85.258239) (xy 181.795473 85.371556) (xy 181.795476 85.371561) (xy 181.890958 85.536941) (xy 181.890965 85.536951) (xy 182.018744 85.678864) (xy 182.018747 85.678866) (xy 182.173248 85.791118) (xy 182.347712 85.868794) (xy 182.534513 85.9085) (xy 182.725487 85.9085) (xy 182.912288 85.868794) (xy 183.086752 85.791118) (xy 183.241253 85.678866) (xy 183.312834 85.599367) (xy 183.369034 85.536951) (xy 183.369035 85.536949) (xy 183.36904 85.536944) (xy 183.464527 85.371556) (xy 183.523542 85.189928) (xy 183.543504 85) (xy 183.523542 84.810072) (xy 183.464527 84.628444) (xy 183.36904 84.463056) (xy 183.369038 84.463054) (xy 183.369034 84.463048) (xy 183.241255 84.321135) (xy 183.086752 84.208882) (xy 182.912288 84.131206) (xy 182.725487 84.0915) (xy 182.534513 84.0915) (xy 182.347711 84.131206) (xy 182.173247 84.208882) (xy 182.018744 84.321135) (xy 181.890965 84.463048) (xy 181.890958 84.463058) (xy 181.795476 84.628438) (xy 181.795473 84.628445) (xy 181.736457 84.810072) (xy 181.716496 85) (xy 142.715549 85) (xy 141.215549 83.5) (xy 145.416496 83.5) (xy 145.436457 83.689927) (xy 145.456363 83.751189) (xy 145.495473 83.871556) (xy 145.495476 83.871561) (xy 145.590958 84.036941) (xy 145.590965 84.036951) (xy 145.718744 84.178864) (xy 145.76006 84.208882) (xy 145.873248 84.291118) (xy 146.047712 84.368794) (xy 146.234513 84.4085) (xy 146.425487 84.4085) (xy 146.612288 84.368794) (xy 146.786752 84.291118) (xy 146.941253 84.178866) (xy 147.019918 84.0915) (xy 147.069034 84.036951) (xy 147.069035 84.036949) (xy 147.06904 84.036944) (xy 147.164527 83.871556) (xy 147.223542 83.689928) (xy 147.243504 83.5) (xy 147.223542 83.310072) (xy 147.164527 83.128444) (xy 147.06904 82.963056) (xy 147.069038 82.963054) (xy 147.069034 82.963048) (xy 146.941255 82.821135) (xy 146.786752 82.708882) (xy 146.612288 82.631206) (xy 146.425487 82.5915) (xy 146.234513 82.5915) (xy 146.047711 82.631206) (xy 145.873247 82.708882) (xy 145.718744 82.821135) (xy 145.590965 82.963048) (xy 145.590958 82.963058) (xy 145.495476 83.128438) (xy 145.495473 83.128445) (xy 145.436457 83.310072) (xy 145.416496 83.5) (xy 141.215549 83.5) (xy 140.906285 83.190736) (xy 140.872259 83.128424) (xy 140.877324 83.057609) (xy 140.879007 83.053457) (xy 140.879297 83.052612) (xy 140.934562 82.834375) (xy 140.934564 82.834368) (xy 140.953156 82.61) (xy 140.934564 82.385632) (xy 140.879296 82.167384) (xy 140.78886 81.961209) (xy 140.78214 81.950924) (xy 140.665724 81.772734) (xy 140.66572 81.772729) (xy 140.513237 81.607091) (xy 140.431382 81.543381) (xy 140.335576 81.468811) (xy 140.302319 81.450813) (xy 140.251929 81.400802) (xy 140.236576 81.331485) (xy 140.261136 81.264872) (xy 140.30232 81.229186) (xy 140.335576 81.211189) (xy 140.51324 81.072906) (xy 140.665722 80.907268) (xy 140.78886 80.718791) (xy 140.879296 80.512616) (xy 140.934564 80.294368) (xy 140.942384 80.2) (xy 180.616496 80.2) (xy 180.636457 80.389927) (xy 180.666526 80.48247) (xy 180.695473 80.571556) (xy 180.695476 80.571561) (xy 180.790958 80.736941) (xy 180.790965 80.736951) (xy 180.918744 80.878864) (xy 180.918747 80.878866) (xy 181.073248 80.991118) (xy 181.247712 81.068794) (xy 181.434513 81.1085) (xy 181.625487 81.1085) (xy 181.812288 81.068794) (xy 181.986752 80.991118) (xy 182.141253 80.878866) (xy 182.26904 80.736944) (xy 182.364527 80.571556) (xy 182.423542 80.389928) (xy 182.443504 80.2) (xy 182.423542 80.010072) (xy 182.364527 79.828444) (xy 182.26904 79.663056) (xy 182.269038 79.663054) (xy 182.269034 79.663048) (xy 182.141255 79.521135) (xy 181.986752 79.408882) (xy 181.812288 79.331206) (xy 181.625487 79.2915) (xy 181.434513 79.2915) (xy 181.247711 79.331206) (xy 181.073247 79.408882) (xy 180.918744 79.521135) (xy 180.790965 79.663048) (xy 180.790958 79.663058) (xy 180.695476 79.828438) (xy 180.695473 79.828445) (xy 180.636457 80.010072) (xy 180.616496 80.2) (xy 140.942384 80.2) (xy 140.953156 80.07) (xy 140.934564 79.845632) (xy 140.88833 79.663058) (xy 140.879297 79.627387) (xy 140.879296 79.627386) (xy 140.879296 79.627384) (xy 140.78886 79.421209) (xy 140.704117 79.2915) (xy 140.665724 79.232734) (xy 140.66572 79.232729) (xy 140.513237 79.067091) (xy 140.431382 79.003381) (xy 140.335576 78.928811) (xy 140.302319 78.910813) (xy 140.251929 78.860802) (xy 140.236576 78.791485) (xy 140.261136 78.724872) (xy 140.30232 78.689186) (xy 140.335576 78.671189) (xy 140.51324 78.532906) (xy 140.665722 78.367268) (xy 140.78886 78.178791) (xy 140.879296 77.972616) (xy 140.934564 77.754368) (xy 140.953156 77.53) (xy 140.934564 77.305632) (xy 140.879296 77.087384) (xy 140.78886 76.881209) (xy 140.676024 76.7085) (xy 140.665724 76.692734) (xy 140.66572 76.692729) (xy 140.513237 76.527091) (xy 140.431382 76.463381) (xy 140.335576 76.388811) (xy 140.302319 76.370813) (xy 140.251929 76.320802) (xy 140.236576 76.251485) (xy 140.261136 76.184872) (xy 140.30232 76.149186) (xy 140.335576 76.131189) (xy 140.51324 75.992906) (xy 140.665722 75.827268) (xy 140.78886 75.638791) (xy 140.849739 75.5) (xy 167.516496 75.5) (xy 167.536457 75.689927) (xy 167.566526 75.78247) (xy 167.595473 75.871556) (xy 167.595476 75.871561) (xy 167.690958 76.036941) (xy 167.690965 76.036951) (xy 167.818744 76.178864) (xy 167.846734 76.1992) (xy 167.973248 76.291118) (xy 168.147712 76.368794) (xy 168.334513 76.4085) (xy 168.525487 76.4085) (xy 168.712288 76.368794) (xy 168.886752 76.291118) (xy 169.041253 76.178866) (xy 169.041255 76.178864) (xy 169.169034 76.036951) (xy 169.169035 76.036949) (xy 169.16904 76.036944) (xy 169.264527 75.871556) (xy 169.287777 75.8) (xy 180.616496 75.8) (xy 180.636457 75.989927) (xy 180.666526 76.08247) (xy 180.695473 76.171556) (xy 180.703161 76.184872) (xy 180.790958 76.336941) (xy 180.790965 76.336951) (xy 180.918744 76.478864) (xy 180.918747 76.478866) (xy 181.073248 76.591118) (xy 181.247712 76.668794) (xy 181.434513 76.7085) (xy 181.625487 76.7085) (xy 181.812288 76.668794) (xy 181.986752 76.591118) (xy 182.141253 76.478866) (xy 182.22234 76.38881) (xy 182.269034 76.336951) (xy 182.269035 76.336949) (xy 182.26904 76.336944) (xy 182.364527 76.171556) (xy 182.423542 75.989928) (xy 182.443504 75.8) (xy 182.423542 75.610072) (xy 182.364527 75.428444) (xy 182.26904 75.263056) (xy 182.269038 75.263054) (xy 182.269034 75.263048) (xy 182.141255 75.121135) (xy 181.986752 75.008882) (xy 181.812288 74.931206) (xy 181.625487 74.8915) (xy 181.434513 74.8915) (xy 181.247711 74.931206) (xy 181.073247 75.008882) (xy 180.918744 75.121135) (xy 180.790965 75.263048) (xy 180.790958 75.263058) (xy 180.763815 75.310072) (xy 180.695473 75.428444) (xy 180.680999 75.472986) (xy 180.636457 75.610072) (xy 180.616496 75.8) (xy 169.287777 75.8) (xy 169.323542 75.689928) (xy 169.343504 75.5) (xy 169.323542 75.310072) (xy 169.264527 75.128444) (xy 169.16904 74.963056) (xy 169.169038 74.963054) (xy 169.169034 74.963048) (xy 169.041255 74.821135) (xy 168.886752 74.708882) (xy 168.712288 74.631206) (xy 168.525487 74.5915) (xy 168.334513 74.5915) (xy 168.147711 74.631206) (xy 167.973247 74.708882) (xy 167.818744 74.821135) (xy 167.690965 74.963048) (xy 167.690958 74.963058) (xy 167.595476 75.128438) (xy 167.595473 75.128445) (xy 167.536457 75.310072) (xy 167.516496 75.5) (xy 140.849739 75.5) (xy 140.879296 75.432616) (xy 140.934564 75.214368) (xy 140.953156 74.99) (xy 140.934564 74.765632) (xy 140.879296 74.547384) (xy 140.78886 74.341209) (xy 140.702157 74.2085) (xy 140.665724 74.152734) (xy 140.665714 74.152722) (xy 140.522159 73.996782) (xy 140.490737 73.933117) (xy 140.498723 73.862571) (xy 140.543582 73.807542) (xy 140.570827 73.793388) (xy 140.685965 73.750444) (xy 140.802904 73.662904) (xy 140.890444 73.545965) (xy 140.890444 73.545964) (xy 140.941494 73.409093) (xy 140.947999 73.348597) (xy 140.948 73.348585) (xy 140.948 72.704) (xy 140.032251 72.704) (xy 140.065245 72.646853) (xy 140.1 72.517143) (xy 140.1 72.382857) (xy 140.065245 72.253147) (xy 140.032251 72.196) (xy 140.948 72.196) (xy 140.948 71.551414) (xy 140.947999 71.551402) (xy 140.941494 71.490906) (xy 140.890444 71.354035) (xy 140.890444 71.354034) (xy 140.802904 71.237095) (xy 140.685966 71.149556) (xy 140.570826 71.106611) (xy 140.513991 71.064064) (xy 140.48918 70.997543) (xy 140.490842 70.989903) (xy 145.8533 70.989903) (xy 145.8533 71.506097) (xy 145.88712 71.719629) (xy 145.887121 71.719632) (xy 145.934544 71.865586) (xy 145.953928 71.925241) (xy 146.038952 72.09211) (xy 146.05208 72.117874) (xy 146.065869 72.136853) (xy 146.179153 72.292775) (xy 146.179155 72.292777) (xy 146.179157 72.29278) (xy 146.332019 72.445642) (xy 146.332022 72.445644) (xy 146.332025 72.445647) (xy 146.506929 72.572722) (xy 146.699559 72.670872) (xy 146.905171 72.73768) (xy 147.118703 72.7715) (xy 147.118706 72.7715) (xy 147.334894 72.7715) (xy 147.334897 72.7715) (xy 147.548429 72.73768) (xy 147.754041 72.670872) (xy 147.946671 72.572722) (xy 148.121575 72.445647) (xy 148.274447 72.292775) (xy 148.394864 72.127035) (xy 148.451086 72.083681) (xy 148.521822 72.077606) (xy 148.584614 72.110737) (xy 148.598736 72.127035) (xy 148.719153 72.292775) (xy 148.719155 72.292777) (xy 148.719157 72.29278) (xy 148.872019 72.445642) (xy 148.872022 72.445644) (xy 148.872025 72.445647) (xy 149.046929 72.572722) (xy 149.172676 72.636793) (xy 149.22429 72.68554) (xy 149.241356 72.754455) (xy 149.218455 72.821657) (xy 149.204568 72.838154) (xy 149.145009 72.897713) (xy 149.145008 72.897715) (xy 149.057406 73.02882) (xy 148.997065 73.174497) (xy 148.997063 73.174502) (xy 148.9663 73.329155) (xy 148.9663 73.329158) (xy 148.9663 73.486842) (xy 148.997063 73.641497) (xy 149.057406 73.787179) (xy 149.145011 73.918289) (xy 149.256511 74.029789) (xy 149.387621 74.117394) (xy 149.533303 74.177737) (xy 149.687958 74.2085) (xy 149.687959 74.2085) (xy 149.845641 74.2085) (xy 149.845642 74.2085) (xy 150.000297 74.177737) (xy 150.145979 74.117394) (xy 150.277089 74.029789) (xy 150.388589 73.918289) (xy 150.476194 73.787179) (xy 150.536537 73.641497) (xy 150.5673 73.486842) (xy 150.5673 73.329158) (xy 150.536537 73.174503) (xy 150.476194 73.028821) (xy 150.388589 72.897711) (xy 150.329032 72.838154) (xy 150.295006 72.775842) (xy 150.300071 72.705027) (xy 150.342618 72.648191) (xy 150.360917 72.636796) (xy 150.486671 72.572722) (xy 150.661575 72.445647) (xy 150.814447 72.292775) (xy 150.934864 72.127035) (xy 150.991086 72.083681) (xy 151.061822 72.077606) (xy 151.124614 72.110737) (xy 151.138736 72.127035) (xy 151.259153 72.292775) (xy 151.259155 72.292777) (xy 151.259157 72.29278) (xy 151.412019 72.445642) (xy 151.412022 72.445644) (xy 151.412025 72.445647) (xy 151.586929 72.572722) (xy 151.779559 72.670872) (xy 151.985171 72.73768) (xy 152.198703 72.7715) (xy 152.198706 72.7715) (xy 152.414894 72.7715) (xy 152.414897 72.7715) (xy 152.628429 72.73768) (xy 152.834041 72.670872) (xy 153.026671 72.572722) (xy 153.201575 72.445647) (xy 153.285933 72.361288) (xy 153.348243 72.327265) (xy 153.419059 72.332329) (xy 153.475895 72.374875) (xy 153.493083 72.406352) (xy 153.531356 72.508966) (xy 153.618895 72.625904) (xy 153.735834 72.713444) (xy 153.872706 72.764494) (xy 153.933202 72.770999) (xy 153.933215 72.771) (xy 154.5928 72.771) (xy 154.5928 71.69025) (xy 154.649947 71.723245) (xy 154.779657 71.758) (xy 154.913943 71.758) (xy 155.043653 71.723245) (xy 155.1008 71.69025) (xy 155.1008 72.771) (xy 155.760385 72.771) (xy 155.760397 72.770999) (xy 155.820893 72.764494) (xy 155.957764 72.713444) (xy 155.957765 72.713444) (xy 156.074704 72.625904) (xy 156.162244 72.508965) (xy 156.162244 72.508964) (xy 156.213294 72.372093) (xy 156.219799 72.311597) (xy 156.2198 72.311585) (xy 156.2198 71.502) (xy 155.289051 71.502) (xy 155.322045 71.444853) (xy 155.3568 71.315143) (xy 155.3568 71.180857) (xy 155.322045 71.051147) (xy 155.289051 70.994) (xy 156.2198 70.994) (xy 156.2198 70.989903) (xy 157.0533 70.989903) (xy 157.0533 71.506097) (xy 157.08712 71.719629) (xy 157.087121 71.719632) (xy 157.134544 71.865586) (xy 157.153928 71.925241) (xy 157.238952 72.09211) (xy 157.25208 72.117874) (xy 157.265869 72.136853) (xy 157.379153 72.292775) (xy 157.379155 72.292777) (xy 157.379157 72.29278) (xy 157.532019 72.445642) (xy 157.532022 72.445644) (xy 157.532025 72.445647) (xy 157.706929 72.572722) (xy 157.899559 72.670872) (xy 158.105171 72.73768) (xy 158.318703 72.7715) (xy 158.318706 72.7715) (xy 158.534894 72.7715) (xy 158.534897 72.7715) (xy 158.748429 72.73768) (xy 158.954041 72.670872) (xy 159.146671 72.572722) (xy 159.321575 72.445647) (xy 159.474447 72.292775) (xy 159.594864 72.127035) (xy 159.651086 72.083681) (xy 159.721822 72.077606) (xy 159.784614 72.110737) (xy 159.798736 72.127035) (xy 159.919153 72.292775) (xy 159.919155 72.292777) (xy 159.919157 72.29278) (xy 160.072019 72.445642) (xy 160.072022 72.445644) (xy 160.072025 72.445647) (xy 160.246929 72.572722) (xy 160.372676 72.636793) (xy 160.42429 72.68554) (xy 160.441356 72.754455) (xy 160.418455 72.821657) (xy 160.404568 72.838154) (xy 160.345009 72.897713) (xy 160.345008 72.897715) (xy 160.257406 73.02882) (xy 160.197065 73.174497) (xy 160.197063 73.174502) (xy 160.1663 73.329155) (xy 160.1663 73.329158) (xy 160.1663 73.486842) (xy 160.197063 73.641497) (xy 160.257406 73.787179) (xy 160.345011 73.918289) (xy 160.456511 74.029789) (xy 160.587621 74.117394) (xy 160.733303 74.177737) (xy 160.887958 74.2085) (xy 160.887959 74.2085) (xy 161.045641 74.2085) (xy 161.045642 74.2085) (xy 161.200297 74.177737) (xy 161.345979 74.117394) (xy 161.477089 74.029789) (xy 161.588589 73.918289) (xy 161.676194 73.787179) (xy 161.736537 73.641497) (xy 161.7673 73.486842) (xy 161.7673 73.329158) (xy 161.736537 73.174503) (xy 161.676194 73.028821) (xy 161.588589 72.897711) (xy 161.529032 72.838154) (xy 161.495006 72.775842) (xy 161.500071 72.705027) (xy 161.542618 72.648191) (xy 161.560917 72.636796) (xy 161.686671 72.572722) (xy 161.861575 72.445647) (xy 162.014447 72.292775) (xy 162.134864 72.127035) (xy 162.191086 72.083681) (xy 162.261822 72.077606) (xy 162.324614 72.110737) (xy 162.338736 72.127035) (xy 162.459153 72.292775) (xy 162.459155 72.292777) (xy 162.459157 72.29278) (xy 162.612019 72.445642) (xy 162.612022 72.445644) (xy 162.612025 72.445647) (xy 162.786929 72.572722) (xy 162.979559 72.670872) (xy 163.185171 72.73768) (xy 163.398703 72.7715) (xy 163.398706 72.7715) (xy 163.614894 72.7715) (xy 163.614897 72.7715) (xy 163.828429 72.73768) (xy 164.034041 72.670872) (xy 164.226671 72.572722) (xy 164.401575 72.445647) (xy 164.485933 72.361288) (xy 164.548243 72.327265) (xy 164.619059 72.332329) (xy 164.675895 72.374875) (xy 164.693083 72.406352) (xy 164.731356 72.508966) (xy 164.818895 72.625904) (xy 164.935834 72.713444) (xy 165.072706 72.764494) (xy 165.133202 72.770999) (xy 165.133215 72.771) (xy 165.7928 72.771) (xy 165.7928 71.69025) (xy 165.849947 71.723245) (xy 165.979657 71.758) (xy 166.113943 71.758) (xy 166.243653 71.723245) (xy 166.3008 71.69025) (xy 166.3008 72.771) (xy 166.960385 72.771) (xy 166.960397 72.770999) (xy 167.020893 72.764494) (xy 167.157764 72.713444) (xy 167.157765 72.713444) (xy 167.274704 72.625904) (xy 167.362244 72.508965) (xy 167.362244 72.508964) (xy 167.402885 72.4) (xy 169.11693 72.4) (xy 169.13718 72.670227) (xy 169.19748 72.934413) (xy 169.197481 72.934416) (xy 169.29648 73.186664) (xy 169.431968 73.421335) (xy 169.484092 73.486696) (xy 169.484093 73.486696) (xy 170.327301 72.643488) (xy 170.353978 72.70789) (xy 170.425112 72.814351) (xy 170.515649 72.904888) (xy 170.62211 72.976022) (xy 170.68651 73.002698) (xy 169.842455 73.846752) (xy 169.842455 73.846753) (xy 170.023469 73.970167) (xy 170.02347 73.970168) (xy 170.267602 74.087735) (xy 170.526547 74.167611) (xy 170.526555 74.167612) (xy 170.794513 74.208) (xy 171.065487 74.208) (xy 171.333444 74.167612) (xy 171.333452 74.167611) (xy 171.592397 74.087735) (xy 171.836529 73.970168) (xy 171.83653 73.970167) (xy 172.017544 73.846753) (xy 171.173489 73.002698) (xy 171.23789 72.976022) (xy 171.344351 72.904888) (xy 171.434888 72.814351) (xy 171.506022 72.70789) (xy 171.532698 72.643489) (xy 172.375906 73.486697) (xy 172.375907 73.486696) (xy 172.428025 73.421343) (xy 172.428031 73.421335) (xy 172.563519 73.186664) (xy 172.662518 72.934416) (xy 172.662519 72.934413) (xy 172.722819 72.670227) (xy 172.743069 72.4) (xy 172.722819 72.129772) (xy 172.662519 71.865586) (xy 172.662518 71.865583) (xy 172.563519 71.613335) (xy 172.428031 71.378664) (xy 172.375906 71.313302) (xy 172.375905 71.313302) (xy 171.532697 72.156509) (xy 171.506022 72.09211) (xy 171.434888 71.985649) (xy 171.344351 71.895112) (xy 171.23789 71.823978) (xy 171.173488 71.797301) (xy 171.919439 71.05135) (xy 174.1215 71.05135) (xy 174.1215 73.748649) (xy 174.128009 73.809196) (xy 174.128011 73.809204) (xy 174.17911 73.946202) (xy 174.179112 73.946207) (xy 174.266738 74.063261) (xy 174.383792 74.150887) (xy 174.383794 74.150888) (xy 174.383796 74.150889) (xy 174.428629 74.167611) (xy 174.520795 74.201988) (xy 174.520803 74.20199) (xy 174.58135 74.208499) (xy 174.581355 74.208499) (xy 174.581362 74.2085) (xy 174.581368 74.2085) (xy 177.278632 74.2085) (xy 177.278638 74.2085) (xy 177.278645 74.208499) (xy 177.278649 74.208499) (xy 177.339196 74.20199) (xy 177.339199 74.201989) (xy 177.339201 74.201989) (xy 177.476204 74.150889) (xy 177.52095 74.117393) (xy 177.593261 74.063261) (xy 177.680887 73.946207) (xy 177.680887 73.946206) (xy 177.680889 73.946204) (xy 177.731989 73.809201) (xy 177.732168 73.807542) (xy 177.738499 73.748649) (xy 177.7385 73.748632) (xy 177.7385 71.051367) (xy 177.738499 71.05135) (xy 177.73199 70.990803) (xy 177.731988 70.990795) (xy 177.680889 70.853797) (xy 177.680887 70.853792) (xy 177.593261 70.736738) (xy 177.476207 70.649112) (xy 177.476202 70.64911) (xy 177.339204 70.598011) (xy 177.339196 70.598009) (xy 177.278649 70.5915) (xy 177.278638 70.5915) (xy 174.581362 70.5915) (xy 174.58135 70.5915) (xy 174.520803 70.598009) (xy 174.520795 70.598011) (xy 174.383797 70.64911) (xy 174.383792 70.649112) (xy 174.266738 70.736738) (xy 174.179112 70.853792) (xy 174.17911 70.853797) (xy 174.128011 70.990795) (xy 174.128009 70.990803) (xy 174.1215 71.05135) (xy 171.919439 71.05135) (xy 172.017543 70.953246) (xy 172.017543 70.953244) (xy 171.836537 70.829836) (xy 171.836529 70.829831) (xy 171.592397 70.712264) (xy 171.333452 70.632388) (xy 171.333444 70.632387) (xy 171.065487 70.592) (xy 170.794513 70.592) (xy 170.526555 70.632387) (xy 170.526547 70.632388) (xy 170.267602 70.712264) (xy 170.02347 70.829831) (xy 170.023462 70.829836) (xy 169.842455 70.953244) (xy 169.842455 70.953246) (xy 170.68651 71.797301) (xy 170.62211 71.823978) (xy 170.515649 71.895112) (xy 170.425112 71.985649) (xy 170.353978 72.09211) (xy 170.327301 72.15651) (xy 169.484093 71.313302) (xy 169.484091 71.313302) (xy 169.431968 71.378664) (xy 169.29648 71.613335) (xy 169.197481 71.865583) (xy 169.19748 71.865586) (xy 169.13718 72.129772) (xy 169.11693 72.4) (xy 167.402885 72.4) (xy 167.413294 72.372093) (xy 167.419799 72.311597) (xy 167.4198 72.311585) (xy 167.4198 71.502) (xy 166.489051 71.502) (xy 166.522045 71.444853) (xy 166.5568 71.315143) (xy 166.5568 71.180857) (xy 166.522045 71.051147) (xy 166.489051 70.994) (xy 167.4198 70.994) (xy 167.4198 70.184414) (xy 167.419799 70.184402) (xy 167.413294 70.123906) (xy 167.362244 69.987035) (xy 167.362244 69.987034) (xy 167.274704 69.870095) (xy 167.157765 69.782555) (xy 167.020893 69.731505) (xy 166.960397 69.725) (xy 166.3008 69.725) (xy 166.3008 70.805749) (xy 166.243653 70.772755) (xy 166.113943 70.738) (xy 165.979657 70.738) (xy 165.849947 70.772755) (xy 165.7928 70.805749) (xy 165.7928 69.725) (xy 165.133202 69.725) (xy 165.072706 69.731505) (xy 164.935835 69.782555) (xy 164.935834 69.782555) (xy 164.818895 69.870095) (xy 164.731355 69.987034) (xy 164.731353 69.987039) (xy 164.693082 70.089647) (xy 164.650535 70.146483) (xy 164.584015 70.171293) (xy 164.514641 70.156201) (xy 164.485932 70.134709) (xy 164.40158 70.050357) (xy 164.401577 70.050355) (xy 164.401575 70.050353) (xy 164.226671 69.923278) (xy 164.034041 69.825128) (xy 164.03404 69.825127) (xy 164.034039 69.825127) (xy 163.828432 69.758321) (xy 163.828429 69.75832) (xy 163.614897 69.7245) (xy 163.398703 69.7245) (xy 163.185171 69.75832) (xy 163.185168 69.75832) (xy 163.185167 69.758321) (xy 162.97956 69.825127) (xy 162.786925 69.92328) (xy 162.612022 70.050355) (xy 162.612019 70.050357) (xy 162.459154 70.203222) (xy 162.338736 70.368964) (xy 162.282513 70.412318) (xy 162.211777 70.418393) (xy 162.148986 70.385261) (xy 162.134864 70.368964) (xy 162.014445 70.203222) (xy 161.86158 70.050357) (xy 161.861577 70.050355) (xy 161.861575 70.050353) (xy 161.686671 69.923278) (xy 161.494041 69.825128) (xy 161.49404 69.825127) (xy 161.494039 69.825127) (xy 161.288432 69.758321) (xy 161.288429 69.75832) (xy 161.074897 69.7245) (xy 160.858703 69.7245) (xy 160.645171 69.75832) (xy 160.645168 69.75832) (xy 160.645167 69.758321) (xy 160.43956 69.825127) (xy 160.246925 69.92328) (xy 160.072022 70.050355) (xy 160.072019 70.050357) (xy 159.919154 70.203222) (xy 159.798736 70.368964) (xy 159.742513 70.412318) (xy 159.671777 70.418393) (xy 159.608986 70.385261) (xy 159.594864 70.368964) (xy 159.474445 70.203222) (xy 159.32158 70.050357) (xy 159.321577 70.050355) (xy 159.321575 70.050353) (xy 159.146671 69.923278) (xy 158.954041 69.825128) (xy 158.95404 69.825127) (xy 158.954039 69.825127) (xy 158.748432 69.758321) (xy 158.748429 69.75832) (xy 158.534897 69.7245) (xy 158.318703 69.7245) (xy 158.105171 69.75832) (xy 158.105168 69.75832) (xy 158.105167 69.758321) (xy 157.89956 69.825127) (xy 157.706925 69.92328) (xy 157.532022 70.050355) (xy 157.532019 70.050357) (xy 157.379157 70.203219) (xy 157.379155 70.203222) (xy 157.25208 70.378125) (xy 157.153927 70.57076) (xy 157.096575 70.747271) (xy 157.08712 70.776371) (xy 157.0533 70.989903) (xy 156.2198 70.989903) (xy 156.2198 70.184414) (xy 156.219799 70.184402) (xy 156.213294 70.123906) (xy 156.162244 69.987035) (xy 156.162244 69.987034) (xy 156.074704 69.870095) (xy 155.957765 69.782555) (xy 155.820893 69.731505) (xy 155.760397 69.725) (xy 155.1008 69.725) (xy 155.1008 70.805749) (xy 155.043653 70.772755) (xy 154.913943 70.738) (xy 154.779657 70.738) (xy 154.649947 70.772755) (xy 154.5928 70.805749) (xy 154.5928 69.725) (xy 153.933202 69.725) (xy 153.872706 69.731505) (xy 153.735835 69.782555) (xy 153.735834 69.782555) (xy 153.618895 69.870095) (xy 153.531355 69.987034) (xy 153.531353 69.987039) (xy 153.493082 70.089647) (xy 153.450535 70.146483) (xy 153.384015 70.171293) (xy 153.314641 70.156201) (xy 153.285932 70.134709) (xy 153.20158 70.050357) (xy 153.201577 70.050355) (xy 153.201575 70.050353) (xy 153.026671 69.923278) (xy 152.834041 69.825128) (xy 152.83404 69.825127) (xy 152.834039 69.825127) (xy 152.628432 69.758321) (xy 152.628429 69.75832) (xy 152.414897 69.7245) (xy 152.198703 69.7245) (xy 151.985171 69.75832) (xy 151.985168 69.75832) (xy 151.985167 69.758321) (xy 151.77956 69.825127) (xy 151.586925 69.92328) (xy 151.412022 70.050355) (xy 151.412019 70.050357) (xy 151.259154 70.203222) (xy 151.138736 70.368964) (xy 151.082513 70.412318) (xy 151.011777 70.418393) (xy 150.948986 70.385261) (xy 150.934864 70.368964) (xy 150.814445 70.203222) (xy 150.66158 70.050357) (xy 150.661577 70.050355) (xy 150.661575 70.050353) (xy 150.486671 69.923278) (xy 150.294041 69.825128) (xy 150.29404 69.825127) (xy 150.294039 69.825127) (xy 150.088432 69.758321) (xy 150.088429 69.75832) (xy 149.874897 69.7245) (xy 149.658703 69.7245) (xy 149.445171 69.75832) (xy 149.445168 69.75832) (xy 149.445167 69.758321) (xy 149.23956 69.825127) (xy 149.046925 69.92328) (xy 148.872022 70.050355) (xy 148.872019 70.050357) (xy 148.719154 70.203222) (xy 148.598736 70.368964) (xy 148.542513 70.412318) (xy 148.471777 70.418393) (xy 148.408986 70.385261) (xy 148.394864 70.368964) (xy 148.274445 70.203222) (xy 148.12158 70.050357) (xy 148.121577 70.050355) (xy 148.121575 70.050353) (xy 147.946671 69.923278) (xy 147.754041 69.825128) (xy 147.75404 69.825127) (xy 147.754039 69.825127) (xy 147.548432 69.758321) (xy 147.548429 69.75832) (xy 147.334897 69.7245) (xy 147.118703 69.7245) (xy 146.905171 69.75832) (xy 146.905168 69.75832) (xy 146.905167 69.758321) (xy 146.69956 69.825127) (xy 146.506925 69.92328) (xy 146.332022 70.050355) (xy 146.332019 70.050357) (xy 146.179157 70.203219) (xy 146.179155 70.203222) (xy 146.05208 70.378125) (xy 145.953927 70.57076) (xy 145.896575 70.747271) (xy 145.88712 70.776371) (xy 145.8533 70.989903) (xy 140.490842 70.989903) (xy 140.504272 70.928169) (xy 140.522154 70.903222) (xy 140.665722 70.747268) (xy 140.78886 70.558791) (xy 140.879296 70.352616) (xy 140.934564 70.134368) (xy 140.953156 69.91) (xy 140.934564 69.685632) (xy 140.90332 69.562251) (xy 140.879297 69.467387) (xy 140.879296 69.467386) (xy 140.879296 69.467384) (xy 140.78886 69.261209) (xy 140.78214 69.250924) (xy 140.665724 69.072734) (xy 140.66572 69.072729) (xy 140.513237 68.907091) (xy 140.368307 68.794287) (xy 140.335576 68.768811) (xy 140.302319 68.750813) (xy 140.251929 68.700802) (xy 140.236576 68.631485) (xy 140.261136 68.564872) (xy 140.30232 68.529186) (xy 140.335576 68.511189) (xy 140.51324 68.372906) (xy 140.665722 68.207268) (xy 140.78886 68.018791) (xy 140.879296 67.812616) (xy 140.934564 67.594368) (xy 140.953156 67.37) (xy 140.934564 67.145632) (xy 140.912464 67.058361) (xy 140.879297 66.927387) (xy 140.879296 66.927386) (xy 140.879296 66.927384) (xy 140.78886 66.721209) (xy 140.730522 66.631916) (xy 140.665724 66.532734) (xy 140.66572 66.532729) (xy 140.513237 66.367091) (xy 140.42584 66.299067) (xy 140.335576 66.228811) (xy 140.335572 66.228809) (xy 140.331876 66.225932) (xy 140.290405 66.168306) (xy 140.286671 66.097408) (xy 140.321861 66.035746) (xy 140.384802 66.002898) (xy 140.409267 66.0005) (xy 182.434108 66.0005) (xy 182.497252 66.0005) (xy 182.502748 66.00062) (xy 182.886661 66.017382) (xy 182.89761 66.018339) (xy 183.275883 66.06814) (xy 183.286699 66.070048) (xy 183.622223 66.144432) (xy 183.659184 66.152626) (xy 183.6698 66.15547) (xy 183.710509 66.168306) (xy 184.033668 66.270197) (xy 184.043997 66.273956) (xy 184.396494 66.419965) (xy 184.406456 66.424611) (xy 184.744875 66.600781) (xy 184.754378 66.606267) (xy 185.076174 66.811274) (xy 185.085166 66.81757) (xy 185.387863 67.049839) (xy 185.396283 67.056904) (xy 185.67757 67.314656) (xy 185.685343 67.322429) (xy 185.943095 67.603716) (xy 185.95016 67.612136) (xy 186.182429 67.914833) (xy 186.188728 67.923829) (xy 186.249226 68.018791) (xy 186.393727 68.245613) (xy 186.399223 68.255133) (xy 186.575388 68.593543) (xy 186.580034 68.603505) (xy 186.726043 68.956002) (xy 186.729802 68.966331) (xy 186.844528 69.330197) (xy 186.847373 69.340815) (xy 186.92995 69.713296) (xy 186.931859 69.724121) (xy 186.981659 70.102388) (xy 186.982617 70.113338) (xy 186.99938 70.497251) (xy 186.9995 70.502747) (xy 186.9995 120.497252) (xy 186.99938 120.502748) (xy 186.982617 120.886661) (xy 186.981659 120.897611) (xy 186.931859 121.275878) (xy 186.92995 121.286703) (xy 186.847373 121.659184) (xy 186.844528 121.669802) (xy 186.729802 122.033668) (xy 186.726043 122.043997) (xy 186.580034 122.396494) (xy 186.575388 122.406456) (xy 186.399223 122.744866) (xy 186.393727 122.754386) (xy 186.188734 123.076162) (xy 186.182429 123.085166) (xy 185.95016 123.387863) (xy 185.943095 123.396283) (xy 185.685343 123.67757) (xy 185.67757 123.685343) (xy 185.396283 123.943095) (xy 185.387863 123.95016) (xy 185.085166 124.182429) (xy 185.076162 124.188734) (xy 184.754386 124.393727) (xy 184.744866 124.399223) (xy 184.406456 124.575388) (xy 184.396494 124.580034) (xy 184.043997 124.726043) (xy 184.033668 124.729802) (xy 183.669802 124.844528) (xy 183.659184 124.847373) (xy 183.286703 124.92995) (xy 183.275878 124.931859) (xy 182.897611 124.981659) (xy 182.886661 124.982617) (xy 182.502748 124.99938) (xy 182.497252 124.9995) (xy 111.502748 124.9995) (xy 111.497252 124.99938) (xy 111.113338 124.982617) (xy 111.102388 124.981659) (xy 110.724121 124.931859) (xy 110.713296 124.92995) (xy 110.340815 124.847373) (xy 110.330197 124.844528) (xy 109.966331 124.729802) (xy 109.956002 124.726043) (xy 109.603505 124.580034) (xy 109.593543 124.575388) (xy 109.255133 124.399223) (xy 109.245613 124.393727) (xy 109.244105 124.392766) (xy 108.923829 124.188728) (xy 108.914833 124.182429) (xy 108.612136 123.95016) (xy 108.603716 123.943095) (xy 108.322429 123.685343) (xy 108.314656 123.67757) (xy 108.056904 123.396283) (xy 108.049839 123.387863) (xy 107.81757 123.085166) (xy 107.811274 123.076174) (xy 107.606267 122.754378) (xy 107.600781 122.744875) (xy 107.424611 122.406456) (xy 107.419965 122.396494) (xy 107.273956 122.043997) (xy 107.270197 122.033668) (xy 107.155471 121.669802) (xy 107.152626 121.659184) (xy 107.070049 121.286703) (xy 107.06814 121.275878) (xy 107.041415 121.072886) (xy 107.018339 120.89761) (xy 107.017382 120.886661) (xy 107.00062 120.502748) (xy 107.0005 120.497252) (xy 107.0005 97.10135) (xy 108.9815 97.10135) (xy 108.9815 98.898649) (xy 108.988009 98.959196) (xy 108.988011 98.959204) (xy 109.03911 99.096202) (xy 109.039112 99.096207) (xy 109.126738 99.213261) (xy 109.243792 99.300887) (xy 109.243794 99.300888) (xy 109.243796 99.300889) (xy 109.2989 99.321442) (xy 109.380795 99.351988) (xy 109.380803 99.35199) (xy 109.44135 99.358499) (xy 109.441355 99.358499) (xy 109.441362 99.3585) (xy 109.441368 99.3585) (xy 111.238632 99.3585) (xy 111.238638 99.3585) (xy 111.238645 99.358499) (xy 111.238649 99.358499) (xy 111.299196 99.35199) (xy 111.299199 99.351989) (xy 111.299201 99.351989) (xy 111.436204 99.300889) (xy 111.450848 99.289927) (xy 111.553261 99.213261) (xy 111.640886 99.096208) (xy 111.640885 99.096208) (xy 111.640889 99.096204) (xy 111.684999 98.977939) (xy 111.727545 98.921107) (xy 111.794066 98.896296) (xy 111.86344 98.911388) (xy 111.895753 98.936635) (xy 111.916529 98.959204) (xy 111.956762 99.002908) (xy 111.993497 99.0315) (xy 112.134424 99.141189) (xy 112.332426 99.248342) (xy 112.332427 99.248342) (xy 112.332428 99.248343) (xy 112.37503 99.262968) (xy 112.545365 99.321444) (xy 112.767431 99.3585) (xy 112.767435 99.3585) (xy 112.992565 99.3585) (xy 112.992569 99.3585) (xy 113.214635 99.321444) (xy 113.427574 99.248342) (xy 113.625576 99.141189) (xy 113.80324 99.002906) (xy 113.955722 98.837268) (xy 114.07886 98.648791) (xy 114.169296 98.442616) (xy 114.224564 98.224368) (xy 114.243156 98) (xy 114.224564 97.775632) (xy 114.169296 97.557384) (xy 114.07886 97.351209) (xy 113.973894 97.190546) (xy 113.955724 97.162734) (xy 113.95572 97.162729) (xy 113.803237 96.997091) (xy 113.666811 96.890906) (xy 113.625576 96.858811) (xy 113.427574 96.751658) (xy 113.427572 96.751657) (xy 113.427571 96.751656) (xy 113.214639 96.678557) (xy 113.21463 96.678555) (xy 113.154372 96.6685) (xy 112.992569 96.6415) (xy 112.767431 96.6415) (xy 112.619211 96.666233) (xy 112.545369 96.678555) (xy 112.54536 96.678557) (xy 112.332428 96.751656) (xy 112.332426 96.751658) (xy 112.134426 96.85881) (xy 112.134424 96.858811) (xy 111.956762 96.997091) (xy 111.895754 97.063363) (xy 111.834901 97.099933) (xy 111.763936 97.097798) (xy 111.705391 97.057636) (xy 111.684999 97.022057) (xy 111.658626 96.95135) (xy 111.640889 96.903796) (xy 111.640888 96.903794) (xy 111.640887 96.903792) (xy 111.553261 96.786738) (xy 111.436207 96.699112) (xy 111.436202 96.69911) (xy 111.299204 96.648011) (xy 111.299196 96.648009) (xy 111.238649 96.6415) (xy 111.238638 96.6415) (xy 109.441362 96.6415) (xy 109.44135 96.6415) (xy 109.380803 96.648009) (xy 109.380795 96.648011) (xy 109.243797 96.69911) (xy 109.243792 96.699112) (xy 109.126738 96.786738) (xy 109.039112 96.903792) (xy 109.03911 96.903797) (xy 108.988011 97.040795) (xy 108.988009 97.040803) (xy 108.9815 97.10135) (xy 107.0005 97.10135) (xy 107.0005 86.7048) (xy 111.593481 86.7048) (xy 111.612728 86.949357) (xy 111.669995 87.187892) (xy 111.763873 87.414532) (xy 111.795182 87.465624) (xy 111.892045 87.623692) (xy 111.892046 87.623694) (xy 111.892048 87.623696) (xy 112.051367 87.810233) (xy 112.098975 87.850894) (xy 112.131869 87.878989) (xy 112.170678 87.93844) (xy 112.171184 88.009435) (xy 112.133228 88.069433) (xy 112.131869 88.070611) (xy 112.051367 88.139367) (xy 111.892045 88.325907) (xy 111.763874 88.535066) (xy 111.763873 88.535068) (xy 111.742525 88.586606) (xy 111.672663 88.755268) (xy 111.669995 88.761708) (xy 111.612728 89.000243) (xy 111.593481 89.2448) (xy 111.612728 89.489357) (xy 111.669995 89.727892) (xy 111.763873 89.954532) (xy 111.820607 90.047114) (xy 111.872929 90.132497) (xy 111.891467 90.20103) (xy 111.87001 90.268707) (xy 111.841006 90.299198) (xy 111.743896 90.371895) (xy 111.656355 90.488834) (xy 111.656355 90.488835) (xy 111.605305 90.625706) (xy 111.5988 90.686202) (xy 111.5988 91.5308) (xy 112.668362 91.5308) (xy 112.644282 91.572508) (xy 112.6068 91.712391) (xy 112.6068 91.857209) (xy 112.644282 91.997092) (xy 112.668362 92.0388) (xy 111.5988 92.0388) (xy 111.5988 92.883397) (xy 111.605305 92.943893) (xy 111.656355 93.080764) (xy 111.656355 93.080765) (xy 111.743895 93.197704) (xy 111.860834 93.285244) (xy 111.997706 93.336294) (xy 112.058202 93.342799) (xy 112.058215 93.3428) (xy 112.9028 93.3428) (xy 112.9028 92.273238) (xy 112.944508 92.297318) (xy 113.084391 92.3348) (xy 113.229209 92.3348) (xy 113.369092 92.297318) (xy 113.4108 92.273238) (xy 113.4108 93.3428) (xy 114.255385 93.3428) (xy 114.255397 93.342799) (xy 114.315893 93.336294) (xy 114.452764 93.285244) (xy 114.452765 93.285244) (xy 114.569704 93.197704) (xy 114.657244 93.080765) (xy 114.657244 93.080764) (xy 114.708294 92.943893) (xy 114.714799 92.883397) (xy 114.7148 92.883385) (xy 114.7148 92.0388) (xy 113.645238 92.0388) (xy 113.669318 91.997092) (xy 113.7068 91.857209) (xy 113.7068 91.712391) (xy 113.669318 91.572508) (xy 113.645238 91.5308) (xy 114.7148 91.5308) (xy 114.7148 90.686214) (xy 114.714799 90.686202) (xy 114.708294 90.625706) (xy 114.657244 90.488835) (xy 114.657244 90.488834) (xy 114.569705 90.371897) (xy 114.472593 90.299199) (xy 114.430047 90.242363) (xy 114.424983 90.171547) (xy 114.440667 90.132501) (xy 114.549727 89.954532) (xy 114.643605 89.727892) (xy 114.700872 89.489357) (xy 114.720119 89.2448) (xy 114.700872 89.000243) (xy 114.643605 88.761708) (xy 114.549727 88.535068) (xy 114.421552 88.325904) (xy 114.262233 88.139367) (xy 114.181729 88.070609) (xy 114.142921 88.01116) (xy 114.142415 87.940166) (xy 114.180371 87.880167) (xy 114.181679 87.879032) (xy 114.262233 87.810233) (xy 114.421552 87.623696) (xy 114.549727 87.414532) (xy 114.643605 87.187892) (xy 114.700872 86.949357) (xy 114.720119 86.7048) (xy 114.700872 86.460243) (xy 114.643605 86.221708) (xy 114.549727 85.995068) (xy 114.421552 85.785904) (xy 114.262233 85.599367) (xy 114.075696 85.440048) (xy 114.075694 85.440046) (xy 114.075692 85.440045) (xy 113.953056 85.364894) (xy 113.866532 85.311873) (xy 113.639892 85.217995) (xy 113.401357 85.160728) (xy 113.1568 85.141481) (xy 112.912243 85.160728) (xy 112.673707 85.217995) (xy 112.447066 85.311874) (xy 112.237907 85.440045) (xy 112.051367 85.599367) (xy 111.892045 85.785907) (xy 111.763874 85.995066) (xy 111.669995 86.221707) (xy 111.664114 86.246204) (xy 111.612728 86.460243) (xy 111.593481 86.7048) (xy 107.0005 86.7048) (xy 107.0005 70.502747) (xy 107.00062 70.497251) (xy 107.011932 70.238161) (xy 107.017382 70.113336) (xy 107.01834 70.102388) (xy 107.068141 69.724113) (xy 107.070049 69.713296) (xy 107.102272 69.56795) (xy 107.152627 69.340808) (xy 107.155471 69.330197) (xy 107.270199 68.966323) (xy 107.273956 68.956002) (xy 107.293632 68.9085) (xy 107.419969 68.603496) (xy 107.424611 68.593543) (xy 107.600786 68.255114) (xy 107.606261 68.245631) (xy 107.811281 67.923813) (xy 107.817564 67.914841) (xy 107.979397 67.703937) (xy 108.049839 67.612136) (xy 108.056904 67.603716) (xy 108.31466 67.322424) (xy 108.322429 67.314656) (xy 108.374029 67.267374) (xy 108.603718 67.056901) (xy 108.612136 67.049839) (xy 108.811316 66.897002) (xy 108.914841 66.817564) (xy 108.923813 66.811281) (xy 109.245631 66.606261) (xy 109.255114 66.600786) (xy 109.593552 66.424606) (xy 109.603496 66.419969) (xy 109.956009 66.273953) (xy 109.966323 66.270199) (xy 110.330204 66.155468) (xy 110.340808 66.152627) (xy 110.713304 66.070047) (xy 110.724113 66.068141) (xy 111.102391 66.018339) (xy 111.113336 66.017382) (xy 111.497252 66.00062) (xy 111.502748 66.0005) (xy 111.565892 66.0005) (xy 120.990733 66.0005) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 132.807032 66.020502) (xy 132.853525 66.074158) (xy 132.863629 66.144432) (xy 132.834135 66.209012) (xy 132.798881 66.237312) (xy 132.738117 66.270197) (xy 132.651984 66.316809) (xy 132.651983 66.31681) (xy 132.467778 66.460182) (xy 132.467774 66.460186) (xy 132.309685 66.631916) (xy 132.182015 66.827331) (xy 132.088252 67.041089) (xy 132.088249 67.041096) (xy 132.03095 67.267366) (xy 132.030949 67.267372) (xy 132.030949 67.267374) (xy 132.011673 67.5) (xy 132.026751 67.681969) (xy 132.03095 67.732633) (xy 132.088249 67.958903) (xy 132.088252 67.95891) (xy 132.182015 68.172668) (xy 132.309685 68.368083) (xy 132.467774 68.539813) (xy 132.467778 68.539817) (xy 132.53365 68.591087) (xy 132.651983 68.68319) (xy 132.857273 68.794287) (xy 133.078049 68.87008) (xy 133.308288 68.9085) (xy 133.308292 68.9085) (xy 133.541708 68.9085) (xy 133.541712 68.9085) (xy 133.771951 68.87008) (xy 133.992727 68.794287) (xy 134.198017 68.68319) (xy 134.38222 68.539818) (xy 134.392008 68.529186) (xy 134.540314 68.368083) (xy 134.667984 68.172669) (xy 134.761749 67.958907) (xy 134.819051 67.732626) (xy 134.838327 67.5) (xy 134.819051 67.267374) (xy 134.766122 67.058361) (xy 134.76175 67.041096) (xy 134.761747 67.041089) (xy 134.667984 66.827331) (xy 134.540314 66.631916) (xy 134.382225 66.460186) (xy 134.382221 66.460182) (xy 134.276415 66.37783) (xy 134.198017 66.31681) (xy 134.051119 66.237313) (xy 134.000729 66.187301) (xy 133.985377 66.117984) (xy 134.009938 66.051371) (xy 134.066613 66.008611) (xy 134.111089 66.0005) (xy 138.770733 66.0005) (xy 138.838854 66.020502) (xy 138.885347 66.074158) (xy 138.895451 66.144432) (xy 138.865957 66.209012) (xy 138.848124 66.225932) (xy 138.844427 66.228809) (xy 138.844424 66.228811) (xy 138.791252 66.270197) (xy 138.666762 66.367091) (xy 138.514279 66.532729) (xy 138.514275 66.532734) (xy 138.391141 66.721206) (xy 138.300703 66.927386) (xy 138.300702 66.927387) (xy 138.245437 67.145624) (xy 138.245436 67.14563) (xy 138.245436 67.145632) (xy 138.226844 67.37) (xy 138.245119 67.590546) (xy 138.245437 67.594375) (xy 138.300702 67.812612) (xy 138.300703 67.812613) (xy 138.391141 68.018793) (xy 138.514275 68.207265) (xy 138.514279 68.20727) (xy 138.666762 68.372908) (xy 138.67273 68.377553) (xy 138.844424 68.511189) (xy 138.87768 68.529186) (xy 138.928071 68.5792) (xy 138.943423 68.648516) (xy 138.918862 68.715129) (xy 138.87768 68.750813) (xy 138.844426 68.76881) (xy 138.844424 68.768811) (xy 138.666762 68.907091) (xy 138.514279 69.072729) (xy 138.514275 69.072734) (xy 138.391141 69.261206) (xy 138.300703 69.467386) (xy 138.300702 69.467387) (xy 138.245437 69.685624) (xy 138.245436 69.68563) (xy 138.245436 69.685632) (xy 138.226844 69.91) (xy 138.243693 70.113338) (xy 138.245437 70.134375) (xy 138.300702 70.352612) (xy 138.300703 70.352613) (xy 138.300704 70.352616) (xy 138.364146 70.497251) (xy 138.391141 70.558793) (xy 138.514275 70.747265) (xy 138.514279 70.74727) (xy 138.657841 70.903217) (xy 138.689262 70.966882) (xy 138.681276 71.037428) (xy 138.636417 71.092457) (xy 138.609173 71.10661) (xy 138.494039 71.149553) (xy 138.494034 71.149555) (xy 138.377095 71.237095) (xy 138.289555 71.354034) (xy 138.289555 71.354035) (xy 138.238505 71.490906) (xy 138.232 71.551402) (xy 138.232 72.196) (xy 139.147749 72.196) (xy 139.114755 72.253147) (xy 139.08 72.382857) (xy 139.08 72.517143) (xy 139.114755 72.646853) (xy 139.147749 72.704) (xy 138.232 72.704) (xy 138.232 73.348597) (xy 138.238505 73.409093) (xy 138.289555 73.545964) (xy 138.289555 73.545965) (xy 138.377095 73.662904) (xy 138.494034 73.750444) (xy 138.609172 73.793388) (xy 138.666008 73.835935) (xy 138.690819 73.902455) (xy 138.675728 73.971829) (xy 138.657841 73.996782) (xy 138.51428 74.152729) (xy 138.514275 74.152734) (xy 138.391141 74.341206) (xy 138.300703 74.547386) (xy 138.300702 74.547387) (xy 138.245437 74.765624) (xy 138.245436 74.76563) (xy 138.245436 74.765632) (xy 138.226844 74.99) (xy 138.23771 75.121135) (xy 138.245437 75.214375) (xy 138.300702 75.432612) (xy 138.300703 75.432613) (xy 138.391141 75.638793) (xy 138.514275 75.827265) (xy 138.514279 75.82727) (xy 138.666762 75.992908) (xy 138.721331 76.035381) (xy 138.844424 76.131189) (xy 138.87768 76.149186) (xy 138.928071 76.1992) (xy 138.943423 76.268516) (xy 138.918862 76.335129) (xy 138.87768 76.370813) (xy 138.844426 76.38881) (xy 138.844424 76.388811) (xy 138.666762 76.527091) (xy 138.514279 76.692729) (xy 138.514275 76.692734) (xy 138.391141 76.881206) (xy 138.300703 77.087386) (xy 138.300702 77.087387) (xy 138.245437 77.305624) (xy 138.226844 77.53) (xy 138.245437 77.754375) (xy 138.300702 77.972612) (xy 138.300703 77.972613) (xy 138.391141 78.178793) (xy 138.514275 78.367265) (xy 138.514279 78.36727) (xy 138.666762 78.532908) (xy 138.721331 78.575381) (xy 138.844424 78.671189) (xy 138.87768 78.689186) (xy 138.928071 78.7392) (xy 138.943423 78.808516) (xy 138.918862 78.875129) (xy 138.87768 78.910813) (xy 138.844426 78.92881) (xy 138.844424 78.928811) (xy 138.666762 79.067091) (xy 138.514279 79.232729) (xy 138.514275 79.232734) (xy 138.391141 79.421206) (xy 138.300703 79.627386) (xy 138.300702 79.627387) (xy 138.245437 79.845624) (xy 138.245436 79.84563) (xy 138.245436 79.845632) (xy 138.226844 80.07) (xy 138.237616 80.2) (xy 138.245437 80.294375) (xy 138.300702 80.512612) (xy 138.300703 80.512613) (xy 138.300704 80.512616) (xy 138.39114 80.718791) (xy 138.391141 80.718793) (xy 138.514275 80.907265) (xy 138.514279 80.90727) (xy 138.666762 81.072908) (xy 138.712491 81.1085) (xy 138.844424 81.211189) (xy 138.87768 81.229186) (xy 138.928071 81.2792) (xy 138.943423 81.348516) (xy 138.918862 81.415129) (xy 138.87768 81.450813) (xy 138.844426 81.46881) (xy 138.844424 81.468811) (xy 138.666762 81.607091) (xy 138.514279 81.772729) (xy 138.514275 81.772734) (xy 138.391141 81.961206) (xy 138.300703 82.167386) (xy 138.300702 82.167387) (xy 138.245437 82.385624) (xy 138.245436 82.38563) (xy 138.245436 82.385632) (xy 138.226844 82.61) (xy 138.244339 82.821135) (xy 138.245437 82.834375) (xy 138.300702 83.052612) (xy 138.300703 83.052613) (xy 138.300704 83.052616) (xy 138.361289 83.190736) (xy 138.391141 83.258793) (xy 138.514275 83.447265) (xy 138.51428 83.44727) (xy 138.657475 83.60282) (xy 138.688896 83.666485) (xy 138.680909 83.737031) (xy 138.636051 83.79206) (xy 138.608807 83.806213) (xy 138.493797 83.84911) (xy 138.493792 83.849112) (xy 138.376738 83.936738) (xy 138.289112 84.053792) (xy 138.28911 84.053797) (xy 138.238011 84.190795) (xy 138.238009 84.190803) (xy 138.2315 84.25135) (xy 138.2315 86.048649) (xy 138.238009 86.109196) (xy 138.238011 86.109204) (xy 138.28911 86.246202) (xy 138.289112 86.246207) (xy 138.376738 86.363261) (xy 138.493791 86.450886) (xy 138.493792 86.450886) (xy 138.493796 86.450889) (xy 138.60881 86.493787) (xy 138.665642 86.536332) (xy 138.690453 86.602852) (xy 138.675362 86.672226) (xy 138.657475 86.697179) (xy 138.51428 86.852729) (xy 138.514275 86.852734) (xy 138.391141 87.041206) (xy 138.300703 87.247386) (xy 138.300702 87.247387) (xy 138.245437 87.465624) (xy 138.245436 87.46563) (xy 138.245436 87.465632) (xy 138.226844 87.69) (xy 138.244999 87.909096) (xy 138.245437 87.914375) (xy 138.300702 88.132612) (xy 138.300703 88.132613) (xy 138.300704 88.132616) (xy 138.35792 88.263056) (xy 138.391141 88.338793) (xy 138.514275 88.527265) (xy 138.514279 88.52727) (xy 138.666762 88.692908) (xy 138.721331 88.735381) (xy 138.844424 88.831189) (xy 138.87768 88.849186) (xy 138.928071 88.8992) (xy 138.943423 88.968516) (xy 138.918862 89.035129) (xy 138.87768 89.070813) (xy 138.844426 89.08881) (xy 138.844424 89.088811) (xy 138.666762 89.227091) (xy 138.514279 89.392729) (xy 138.514275 89.392734) (xy 138.391141 89.581206) (xy 138.300703 89.787386) (xy 138.300702 89.787387) (xy 138.245437 90.005624) (xy 138.245436 90.00563) (xy 138.245436 90.005632) (xy 138.226844 90.23) (xy 138.243992 90.436944) (xy 138.245437 90.454375) (xy 138.300702 90.672612) (xy 138.300703 90.672613) (xy 138.300704 90.672616) (xy 138.360141 90.808119) (xy 138.391141 90.878793) (xy 138.514275 91.067265) (xy 138.514279 91.06727) (xy 138.666762 91.232908) (xy 138.669193 91.2348) (xy 138.844424 91.371189) (xy 138.87768 91.389186) (xy 138.928071 91.4392) (xy 138.943423 91.508516) (xy 138.918862 91.575129) (xy 138.87768 91.610813) (xy 138.844426 91.62881) (xy 138.844424 91.628811) (xy 138.666762 91.767091) (xy 138.514279 91.932729) (xy 138.514275 91.932734) (xy 138.391141 92.121206) (xy 138.300703 92.327386) (xy 138.300702 92.327387) (xy 138.245437 92.545624) (xy 138.245436 92.54563) (xy 138.245436 92.545632) (xy 138.226844 92.77) (xy 138.241253 92.943893) (xy 138.245437 92.994375) (xy 138.300702 93.212612) (xy 138.300703 93.212613) (xy 138.300704 93.212616) (xy 138.354954 93.336294) (xy 138.391141 93.418793) (xy 138.514275 93.607265) (xy 138.514279 93.60727) (xy 138.666762 93.772908) (xy 138.721331 93.815381) (xy 138.844424 93.911189) (xy 138.87768 93.929186) (xy 138.928071 93.9792) (xy 138.943423 94.048516) (xy 138.918862 94.115129) (xy 138.87768 94.150813) (xy 138.844426 94.16881) (xy 138.844424 94.168811) (xy 138.666762 94.307091) (xy 138.514279 94.472729) (xy 138.514275 94.472734) (xy 138.391141 94.661206) (xy 138.300703 94.867386) (xy 138.300702 94.867387) (xy 138.245437 95.085624) (xy 138.245436 95.08563) (xy 138.245436 95.085632) (xy 138.226844 95.31) (xy 138.244339 95.521135) (xy 138.245437 95.534375) (xy 138.300702 95.752612) (xy 138.300703 95.752613) (xy 138.300704 95.752616) (xy 138.387065 95.9495) (xy 138.391141 95.958793) (xy 138.514275 96.147265) (xy 138.514279 96.14727) (xy 138.583489 96.222451) (xy 138.657475 96.30282) (xy 138.657841 96.303217) (xy 138.689262 96.366882) (xy 138.681276 96.437428) (xy 138.636417 96.492457) (xy 138.609173 96.50661) (xy 138.494039 96.549553) (xy 138.494034 96.549555) (xy 138.377095 96.637095) (xy 138.289555 96.754034) (xy 138.289555 96.754035) (xy 138.238505 96.890906) (xy 138.232 96.951402) (xy 138.232 97.596) (xy 139.147749 97.596) (xy 139.114755 97.653147) (xy 139.08 97.782857) (xy 139.08 97.917143) (xy 139.114755 98.046853) (xy 139.147749 98.104) (xy 138.232 98.104) (xy 138.232 98.748597) (xy 138.238505 98.809093) (xy 138.289555 98.945964) (xy 138.289555 98.945965) (xy 138.377095 99.062904) (xy 138.494034 99.150444) (xy 138.609172 99.193388) (xy 138.666008 99.235935) (xy 138.690819 99.302455) (xy 138.675728 99.371829) (xy 138.657841 99.396782) (xy 138.51428 99.552729) (xy 138.514275 99.552734) (xy 138.391141 99.741206) (xy 138.300703 99.947386) (xy 138.300702 99.947387) (xy 138.245437 100.165624) (xy 138.226844 100.39) (xy 138.245437 100.614375) (xy 138.300702 100.832612) (xy 138.300703 100.832613) (xy 138.391141 101.038793) (xy 138.514275 101.227265) (xy 138.514279 101.22727) (xy 138.666762 101.392908) (xy 138.721331 101.435381) (xy 138.844424 101.531189) (xy 138.87768 101.549186) (xy 138.928071 101.5992) (xy 138.943423 101.668516) (xy 138.918862 101.735129) (xy 138.87768 101.770813) (xy 138.844426 101.78881) (xy 138.844424 101.788811) (xy 138.666762 101.927091) (xy 138.514279 102.092729) (xy 138.514275 102.092734) (xy 138.391141 102.281206) (xy 138.300703 102.487386) (xy 138.300702 102.487387) (xy 138.245437 102.705624) (xy 138.245436 102.70563) (xy 138.245436 102.705632) (xy 138.226844 102.93) (xy 138.241134 103.102456) (xy 138.245437 103.154375) (xy 138.300702 103.372612) (xy 138.300703 103.372613) (xy 138.300704 103.372616) (xy 138.39114 103.578791) (xy 138.391141 103.578793) (xy 138.514275 103.767265) (xy 138.514279 103.76727) (xy 138.666762 103.932908) (xy 138.721331 103.975381) (xy 138.844424 104.071189) (xy 138.87768 104.089186) (xy 138.928071 104.1392) (xy 138.943423 104.208516) (xy 138.918862 104.275129) (xy 138.87768 104.310813) (xy 138.844426 104.32881) (xy 138.844424 104.328811) (xy 138.666762 104.467091) (xy 138.514279 104.632729) (xy 138.514275 104.632734) (xy 138.391141 104.821206) (xy 138.300703 105.027386) (xy 138.300702 105.027387) (xy 138.245437 105.245624) (xy 138.245436 105.24563) (xy 138.245436 105.245632) (xy 138.226844 105.47) (xy 138.231686 105.528438) (xy 138.245437 105.694375) (xy 138.300702 105.912612) (xy 138.300703 105.912613) (xy 138.391141 106.118793) (xy 138.514275 106.307265) (xy 138.514279 106.30727) (xy 138.666762 106.472908) (xy 138.721331 106.515381) (xy 138.844424 106.611189) (xy 138.875285 106.62789) (xy 138.87768 106.629186) (xy 138.928071 106.6792) (xy 138.943423 106.748516) (xy 138.918862 106.815129) (xy 138.87768 106.850813) (xy 138.844426 106.86881) (xy 138.844424 106.868811) (xy 138.666762 107.007091) (xy 138.514279 107.172729) (xy 138.514275 107.172734) (xy 138.391139 107.361209) (xy 138.300903 107.566928) (xy 138.255222 107.621276) (xy 138.18741 107.6423) (xy 138.118996 107.623324) (xy 138.08358 107.590375) (xy 138.056273 107.552789) (xy 137.911529 107.408043) (xy 137.911521 107.408037) (xy 137.745924 107.287721) (xy 137.745923 107.28772) (xy 137.745921 107.287719) (xy 137.563539 107.194788) (xy 137.563533 107.194786) (xy 137.368855 107.131528) (xy 137.368849 107.131527) (xy 137.368846 107.131526) (xy 137.166675 107.099501) (xy 137.137938 107.099501) (xy 137.13792 107.0995) (xy 137.130207 107.0995) (xy 137.064324 107.0995) (xy 136.998432 107.099499) (xy 136.998431 107.099499) (xy 136.990715 107.099499) (xy 136.990699 107.0995) (xy 124.190533 107.0995) (xy 124.190312 107.099514) (xy 124.161973 107.099514) (xy 124.135472 107.10371) (xy 123.959795 107.131531) (xy 123.765106 107.194786) (xy 123.58271 107.287717) (xy 123.582704 107.287721) (xy 123.417099 107.408038) (xy 123.278011 107.547124) (xy 123.215698 107.581149) (xy 123.144882 107.576083) (xy 123.088047 107.533536) (xy 123.073532 107.508648) (xy 123.00886 107.361209) (xy 122.960847 107.287719) (xy 122.885724 107.172734) (xy 122.88572 107.172729) (xy 122.733237 107.007091) (xy 122.651382 106.943381) (xy 122.555576 106.868811) (xy 122.522319 106.850813) (xy 122.471929 106.800802) (xy 122.456576 106.731485) (xy 122.481136 106.664872) (xy 122.52232 106.629186) (xy 122.524715 106.62789) (xy 122.555576 106.611189) (xy 122.73324 106.472906) (xy 122.885722 106.307268) (xy 123.00886 106.118791) (xy 123.099296 105.912616) (xy 123.154564 105.694368) (xy 123.173156 105.47) (xy 123.154564 105.245632) (xy 123.099296 105.027384) (xy 123.00886 104.821209) (xy 122.936251 104.710072) (xy 122.885724 104.632734) (xy 122.88572 104.632729) (xy 122.733237 104.467091) (xy 122.599563 104.363048) (xy 122.555576 104.328811) (xy 122.522319 104.310813) (xy 122.471929 104.260802) (xy 122.456576 104.191485) (xy 122.481136 104.124872) (xy 122.52232 104.089186) (xy 122.555576 104.071189) (xy 122.73324 103.932906) (xy 122.885722 103.767268) (xy 123.00886 103.578791) (xy 123.099296 103.372616) (xy 123.154564 103.154368) (xy 123.173156 102.93) (xy 123.154564 102.705632) (xy 123.125315 102.59013) (xy 123.099297 102.487387) (xy 123.099296 102.487386) (xy 123.099296 102.487384) (xy 123.00886 102.281209) (xy 123.00214 102.270924) (xy 122.885724 102.092734) (xy 122.88572 102.092729) (xy 122.733237 101.927091) (xy 122.651382 101.863381) (xy 122.555576 101.788811) (xy 122.522319 101.770813) (xy 122.471929 101.720802) (xy 122.456576 101.651485) (xy 122.481136 101.584872) (xy 122.52232 101.549186) (xy 122.555576 101.531189) (xy 122.73324 101.392906) (xy 122.885722 101.227268) (xy 123.00886 101.038791) (xy 123.099296 100.832616) (xy 123.154564 100.614368) (xy 123.173156 100.39) (xy 123.154564 100.165632) (xy 123.099296 99.947384) (xy 123.00886 99.741209) (xy 122.940745 99.636951) (xy 122.885724 99.552734) (xy 122.885719 99.552729) (xy 122.810993 99.471556) (xy 122.742524 99.397179) (xy 122.711103 99.333514) (xy 122.71909 99.262968) (xy 122.763948 99.207939) (xy 122.791183 99.193789) (xy 122.906204 99.150889) (xy 122.906799 99.150444) (xy 123.023261 99.063261) (xy 123.110887 98.946207) (xy 123.110887 98.946206) (xy 123.110889 98.946204) (xy 123.161989 98.809201) (xy 123.1685 98.748638) (xy 123.1685 97.009454) (xy 130.1336 97.009454) (xy 130.1336 97.190546) (xy 130.161929 97.369409) (xy 130.217889 97.541639) (xy 130.300104 97.702994) (xy 130.406547 97.849501) (xy 130.406549 97.849503) (xy 130.406551 97.849506) (xy 130.534593 97.977548) (xy 130.534596 97.97755) (xy 130.534599 97.977553) (xy 130.681106 98.083996) (xy 130.842461 98.166211) (xy 131.014691 98.222171) (xy 131.193554 98.2505) (xy 131.193557 98.2505) (xy 131.374643 98.2505) (xy 131.374646 98.2505) (xy 131.553509 98.222171) (xy 131.725739 98.166211) (xy 131.887094 98.083996) (xy 132.033601 97.977553) (xy 132.161653 97.849501) (xy 132.268096 97.702994) (xy 132.350311 97.541639) (xy 132.406271 97.369409) (xy 132.429651 97.221787) (xy 132.460063 97.157636) (xy 132.520332 97.120109) (xy 132.591321 97.121123) (xy 132.650493 97.160356) (xy 132.678548 97.221786) (xy 132.701929 97.369409) (xy 132.757889 97.541639) (xy 132.840104 97.702994) (xy 132.946547 97.849501) (xy 132.946549 97.849503) (xy 132.946551 97.849506) (xy 133.074593 97.977548) (xy 133.074596 97.97755) (xy 133.074599 97.977553) (xy 133.221106 98.083996) (xy 133.382461 98.166211) (xy 133.554691 98.222171) (xy 133.733554 98.2505) (xy 133.733557 98.2505) (xy 133.914643 98.2505) (xy 133.914646 98.2505) (xy 134.093509 98.222171) (xy 134.265739 98.166211) (xy 134.427094 98.083996) (xy 134.573601 97.977553) (xy 134.701653 97.849501) (xy 134.808096 97.702994) (xy 134.890311 97.541639) (xy 134.946271 97.369409) (xy 134.969651 97.221787) (xy 135.000063 97.157636) (xy 135.060332 97.120109) (xy 135.131321 97.121123) (xy 135.190493 97.160356) (xy 135.218548 97.221786) (xy 135.241929 97.369409) (xy 135.297889 97.541639) (xy 135.380104 97.702994) (xy 135.486547 97.849501) (xy 135.486549 97.849503) (xy 135.486551 97.849506) (xy 135.614593 97.977548) (xy 135.614596 97.97755) (xy 135.614599 97.977553) (xy 135.761106 98.083996) (xy 135.922461 98.166211) (xy 136.094691 98.222171) (xy 136.273554 98.2505) (xy 136.273557 98.2505) (xy 136.454643 98.2505) (xy 136.454646 98.2505) (xy 136.633509 98.222171) (xy 136.805739 98.166211) (xy 136.967094 98.083996) (xy 137.113601 97.977553) (xy 137.241653 97.849501) (xy 137.348096 97.702994) (xy 137.430311 97.541639) (xy 137.486271 97.369409) (xy 137.5146 97.190546) (xy 137.5146 97.009454) (xy 137.486271 96.830591) (xy 137.430311 96.658361) (xy 137.348096 96.497006) (xy 137.241653 96.350499) (xy 137.24165 96.350496) (xy 137.241648 96.350493) (xy 137.113606 96.222451) (xy 137.113603 96.222449) (xy 137.113601 96.222447) (xy 136.967094 96.116004) (xy 136.805739 96.033789) (xy 136.805736 96.033788) (xy 136.805734 96.033787) (xy 136.633512 95.97783) (xy 136.633509 95.977829) (xy 136.454646 95.9495) (xy 136.273554 95.9495) (xy 136.094691 95.977829) (xy 136.094688 95.977829) (xy 136.094687 95.97783) (xy 135.922465 96.033787) (xy 135.922459 96.03379) (xy 135.761102 96.116006) (xy 135.614596 96.222449) (xy 135.614593 96.222451) (xy 135.486551 96.350493) (xy 135.486549 96.350496) (xy 135.380106 96.497002) (xy 135.29789 96.658359) (xy 135.297887 96.658365) (xy 135.263872 96.763056) (xy 135.241929 96.830591) (xy 135.222795 96.951402) (xy 135.218549 96.97821) (xy 135.188136 97.042363) (xy 135.127868 97.07989) (xy 135.056879 97.078876) (xy 134.997707 97.039643) (xy 134.969651 96.97821) (xy 134.965407 96.951414) (xy 134.946271 96.830591) (xy 134.890311 96.658361) (xy 134.808096 96.497006) (xy 134.701653 96.350499) (xy 134.70165 96.350496) (xy 134.701648 96.350493) (xy 134.573606 96.222451) (xy 134.573603 96.222449) (xy 134.573601 96.222447) (xy 134.427094 96.116004) (xy 134.265739 96.033789) (xy 134.265736 96.033788) (xy 134.265734 96.033787) (xy 134.093512 95.97783) (xy 134.093509 95.977829) (xy 133.914646 95.9495) (xy 133.733554 95.9495) (xy 133.554691 95.977829) (xy 133.554688 95.977829) (xy 133.554687 95.97783) (xy 133.382465 96.033787) (xy 133.382459 96.03379) (xy 133.221102 96.116006) (xy 133.074596 96.222449) (xy 133.074593 96.222451) (xy 132.946551 96.350493) (xy 132.946549 96.350496) (xy 132.840106 96.497002) (xy 132.75789 96.658359) (xy 132.757887 96.658365) (xy 132.723872 96.763056) (xy 132.701929 96.830591) (xy 132.682795 96.951402) (xy 132.678549 96.97821) (xy 132.648136 97.042363) (xy 132.587868 97.07989) (xy 132.516879 97.078876) (xy 132.457707 97.039643) (xy 132.429651 96.97821) (xy 132.425407 96.951414) (xy 132.406271 96.830591) (xy 132.350311 96.658361) (xy 132.268096 96.497006) (xy 132.161653 96.350499) (xy 132.16165 96.350496) (xy 132.161648 96.350493) (xy 132.033606 96.222451) (xy 132.033603 96.222449) (xy 132.033601 96.222447) (xy 131.887094 96.116004) (xy 131.725739 96.033789) (xy 131.725736 96.033788) (xy 131.725734 96.033787) (xy 131.553512 95.97783) (xy 131.553509 95.977829) (xy 131.374646 95.9495) (xy 131.193554 95.9495) (xy 131.014691 95.977829) (xy 131.014688 95.977829) (xy 131.014687 95.97783) (xy 130.842465 96.033787) (xy 130.842459 96.03379) (xy 130.681102 96.116006) (xy 130.534596 96.222449) (xy 130.534593 96.222451) (xy 130.406551 96.350493) (xy 130.406549 96.350496) (xy 130.300106 96.497002) (xy 130.21789 96.658359) (xy 130.217887 96.658365) (xy 130.183872 96.763056) (xy 130.161929 96.830591) (xy 130.1336 97.009454) (xy 123.1685 97.009454) (xy 123.1685 96.951362) (xy 123.168499 96.95135) (xy 123.16199 96.890803) (xy 123.161988 96.890795) (xy 123.123176 96.786738) (xy 123.110889 96.753796) (xy 123.110888 96.753794) (xy 123.110887 96.753792) (xy 123.023261 96.636738) (xy 122.906207 96.549112) (xy 122.906203 96.54911) (xy 122.791192 96.506213) (xy 122.734356 96.463667) (xy 122.709546 96.397146) (xy 122.724638 96.327772) (xy 122.742525 96.30282) (xy 122.885714 96.147277) (xy 122.885724 96.147265) (xy 122.906148 96.116004) (xy 123.00886 95.958791) (xy 123.099296 95.752616) (xy 123.154564 95.534368) (xy 123.173156 95.31) (xy 123.154564 95.085632) (xy 123.099296 94.867384) (xy 123.00886 94.661209) (xy 123.00214 94.650924) (xy 122.885724 94.472734) (xy 122.88572 94.472729) (xy 122.733237 94.307091) (xy 122.651382 94.243381) (xy 122.555576 94.168811) (xy 122.522319 94.150813) (xy 122.471929 94.100802) (xy 122.456576 94.031485) (xy 122.481136 93.964872) (xy 122.52232 93.929186) (xy 122.555576 93.911189) (xy 122.73324 93.772906) (xy 122.885722 93.607268) (xy 123.00886 93.418791) (xy 123.099296 93.212616) (xy 123.154564 92.994368) (xy 123.173156 92.77) (xy 123.154564 92.545632) (xy 123.099296 92.327384) (xy 123.00886 92.121209) (xy 122.95502 92.0388) (xy 122.885724 91.932734) (xy 122.88572 91.932729) (xy 122.733237 91.767091) (xy 122.651382 91.703381) (xy 122.555576 91.628811) (xy 122.522319 91.610813) (xy 122.471929 91.560802) (xy 122.456576 91.491485) (xy 122.481136 91.424872) (xy 122.52232 91.389186) (xy 122.555576 91.371189) (xy 122.73324 91.232906) (xy 122.885722 91.067268) (xy 123.00886 90.878791) (xy 123.099296 90.672616) (xy 123.154564 90.454368) (xy 123.173156 90.23) (xy 123.154564 90.005632) (xy 123.139439 89.945906) (xy 123.099297 89.787387) (xy 123.099296 89.787386) (xy 123.099296 89.787384) (xy 123.00886 89.581209) (xy 122.969611 89.521134) (xy 122.885724 89.392734) (xy 122.88572 89.392729) (xy 122.746215 89.241189) (xy 122.73324 89.227094) (xy 122.733239 89.227093) (xy 122.733237 89.227091) (xy 122.651382 89.163381) (xy 122.555576 89.088811) (xy 122.522319 89.070813) (xy 122.471929 89.020802) (xy 122.456576 88.951485) (xy 122.481136 88.884872) (xy 122.52232 88.849186) (xy 122.555576 88.831189) (xy 122.73324 88.692906) (xy 122.885722 88.527268) (xy 123.00886 88.338791) (xy 123.099296 88.132616) (xy 123.154564 87.914368) (xy 123.173156 87.69) (xy 123.154564 87.465632) (xy 123.099296 87.247384) (xy 123.00886 87.041209) (xy 122.90794 86.886739) (xy 122.885724 86.852734) (xy 122.885714 86.852722) (xy 122.742159 86.696782) (xy 122.710737 86.633117) (xy 122.718723 86.562571) (xy 122.763582 86.507542) (xy 122.790827 86.493388) (xy 122.905965 86.450444) (xy 123.022904 86.362904) (xy 123.110444 86.245965) (xy 123.110444 86.245964) (xy 123.161494 86.109093) (xy 123.167999 86.048597) (xy 123.168 86.048585) (xy 123.168 85.404) (xy 122.252251 85.404) (xy 122.285245 85.346853) (xy 122.32 85.217143) (xy 122.32 85.082857) (xy 122.285245 84.953147) (xy 122.252251 84.896) (xy 123.168 84.896) (xy 123.168 84.251414) (xy 123.167999 84.251402) (xy 123.161494 84.190906) (xy 123.110444 84.054035) (xy 123.110444 84.054034) (xy 123.022904 83.937095) (xy 122.905966 83.849556) (xy 122.790826 83.806611) (xy 122.733991 83.764064) (xy 122.70918 83.697543) (xy 122.724272 83.628169) (xy 122.742154 83.603222) (xy 122.885722 83.447268) (xy 123.00886 83.258791) (xy 123.099296 83.052616) (xy 123.154564 82.834368) (xy 123.173156 82.61) (xy 123.154564 82.385632) (xy 123.099296 82.167384) (xy 123.00886 81.961209) (xy 123.00214 81.950924) (xy 122.885724 81.772734) (xy 122.88572 81.772729) (xy 122.733237 81.607091) (xy 122.651382 81.543381) (xy 122.555576 81.468811) (xy 122.522319 81.450813) (xy 122.471929 81.400802) (xy 122.456576 81.331485) (xy 122.481136 81.264872) (xy 122.52232 81.229186) (xy 122.555576 81.211189) (xy 122.73324 81.072906) (xy 122.885722 80.907268) (xy 123.00886 80.718791) (xy 123.099296 80.512616) (xy 123.154564 80.294368) (xy 123.173156 80.07) (xy 123.154564 79.845632) (xy 123.10833 79.663058) (xy 123.099297 79.627387) (xy 123.099296 79.627386) (xy 123.099296 79.627384) (xy 123.00886 79.421209) (xy 122.924117 79.2915) (xy 122.885724 79.232734) (xy 122.88572 79.232729) (xy 122.733237 79.067091) (xy 122.651382 79.003381) (xy 122.555576 78.928811) (xy 122.522319 78.910813) (xy 122.471929 78.860802) (xy 122.456576 78.791485) (xy 122.481136 78.724872) (xy 122.52232 78.689186) (xy 122.555576 78.671189) (xy 122.73324 78.532906) (xy 122.885722 78.367268) (xy 123.00886 78.178791) (xy 123.099296 77.972616) (xy 123.154564 77.754368) (xy 123.173156 77.53) (xy 123.154564 77.305632) (xy 123.099296 77.087384) (xy 123.00886 76.881209) (xy 122.896024 76.7085) (xy 122.885724 76.692734) (xy 122.88572 76.692729) (xy 122.733237 76.527091) (xy 122.651382 76.463381) (xy 122.555576 76.388811) (xy 122.522319 76.370813) (xy 122.471929 76.320802) (xy 122.456576 76.251485) (xy 122.481136 76.184872) (xy 122.52232 76.149186) (xy 122.555576 76.131189) (xy 122.73324 75.992906) (xy 122.885722 75.827268) (xy 123.00886 75.638791) (xy 123.099296 75.432616) (xy 123.154564 75.214368) (xy 123.173156 74.99) (xy 123.154564 74.765632) (xy 123.099296 74.547384) (xy 123.00886 74.341209) (xy 122.922157 74.2085) (xy 122.885724 74.152734) (xy 122.885714 74.152722) (xy 122.742159 73.996782) (xy 122.710737 73.933117) (xy 122.718723 73.862571) (xy 122.763582 73.807542) (xy 122.790827 73.793388) (xy 122.905965 73.750444) (xy 123.022904 73.662904) (xy 123.110444 73.545965) (xy 123.110444 73.545964) (xy 123.161494 73.409093) (xy 123.167999 73.348597) (xy 123.168 73.348585) (xy 123.168 72.704) (xy 122.252251 72.704) (xy 122.285245 72.646853) (xy 122.32 72.517143) (xy 122.32 72.382857) (xy 122.285245 72.253147) (xy 122.252251 72.196) (xy 123.168 72.196) (xy 123.168 71.551414) (xy 123.167999 71.551402) (xy 123.161494 71.490906) (xy 123.110444 71.354035) (xy 123.110444 71.354034) (xy 123.022904 71.237095) (xy 122.905966 71.149556) (xy 122.790826 71.106611) (xy 122.733991 71.064064) (xy 122.70918 70.997543) (xy 122.724272 70.928169) (xy 122.742154 70.903222) (xy 122.885722 70.747268) (xy 123.00886 70.558791) (xy 123.064714 70.431455) (xy 127.2745 70.431455) (xy 127.2745 70.628544) (xy 127.312949 70.821835) (xy 127.31295 70.821838) (xy 127.373029 70.966882) (xy 127.388368 71.003914) (xy 127.497861 71.167782) (xy 127.637218 71.307139) (xy 127.801086 71.416632) (xy 127.983165 71.492051) (xy 128.176459 71.5305) (xy 128.373541 71.5305) (xy 128.566835 71.492051) (xy 128.748914 71.416632) (xy 128.912782 71.307139) (xy 129.052139 71.167782) (xy 129.161632 71.003914) (xy 129.237051 70.821835) (xy 129.2755 70.628541) (xy 129.2755 70.53) (xy 131.861693 70.53) (xy 131.87065 70.632387) (xy 131.880885 70.74937) (xy 131.937879 70.962073) (xy 131.937881 70.962079) (xy 132.030942 71.16165) (xy 132.030944 71.161654) (xy 132.079812 71.231444) (xy 132.157251 71.342038) (xy 132.157254 71.342042) (xy 132.312957 71.497745) (xy 132.312961 71.497748) (xy 132.312962 71.497749) (xy 132.493346 71.624056) (xy 132.692924 71.71712) (xy 132.905629 71.774115) (xy 133.125 71.793307) (xy 133.344371 71.774115) (xy 133.557076 71.71712) (xy 133.756654 71.624056) (xy 133.937038 71.497749) (xy 134.092749 71.342038) (xy 134.219056 71.161654) (xy 134.31212 70.962076) (xy 134.369115 70.749371) (xy 134.388307 70.53) (xy 134.369115 70.310629) (xy 134.31212 70.097924) (xy 134.219056 69.898347) (xy 134.092749 69.717962) (xy 133.937038 69.562251) (xy 133.756654 69.435944) (xy 133.75665 69.435942) (xy 133.557079 69.342881) (xy 133.557073 69.342879) (xy 133.467178 69.318791) (xy 133.344371 69.285885) (xy 133.125 69.266693) (xy 132.905629 69.285885) (xy 132.692926 69.342879) (xy 132.69292 69.342881) (xy 132.493346 69.435944) (xy 132.312965 69.562248) (xy 132.312959 69.562253) (xy 132.157253 69.717959) (xy 132.157248 69.717965) (xy 132.030944 69.898346) (xy 131.937881 70.09792) (xy 131.937879 70.097926) (xy 131.909666 70.203219) (xy 131.880885 70.310629) (xy 131.861693 70.53) (xy 129.2755 70.53) (xy 129.2755 70.431459) (xy 129.237051 70.238165) (xy 129.161632 70.056086) (xy 129.052139 69.892218) (xy 128.912782 69.752861) (xy 128.748914 69.643368) (xy 128.566838 69.56795) (xy 128.566835 69.567949) (xy 128.373544 69.5295) (xy 128.373541 69.5295) (xy 128.176459 69.5295) (xy 128.176455 69.5295) (xy 127.983164 69.567949) (xy 127.983161 69.56795) (xy 127.801085 69.643368) (xy 127.637222 69.752858) (xy 127.637215 69.752863) (xy 127.497863 69.892215) (xy 127.497858 69.892222) (xy 127.388368 70.056085) (xy 127.31295 70.238161) (xy 127.312949 70.238164) (xy 127.2745 70.431455) (xy 123.064714 70.431455) (xy 123.099296 70.352616) (xy 123.154564 70.134368) (xy 123.173156 69.91) (xy 123.154564 69.685632) (xy 123.12332 69.562251) (xy 123.099297 69.467387) (xy 123.099296 69.467386) (xy 123.099296 69.467384) (xy 123.00886 69.261209) (xy 123.00214 69.250924) (xy 122.885724 69.072734) (xy 122.88572 69.072729) (xy 122.733237 68.907091) (xy 122.588307 68.794287) (xy 122.555576 68.768811) (xy 122.522319 68.750813) (xy 122.471929 68.700802) (xy 122.456576 68.631485) (xy 122.481136 68.564872) (xy 122.52232 68.529186) (xy 122.555576 68.511189) (xy 122.73324 68.372906) (xy 122.885722 68.207268) (xy 123.00886 68.018791) (xy 123.099296 67.812616) (xy 123.154564 67.594368) (xy 123.169887 67.409454) (xy 126.8245 67.409454) (xy 126.8245 67.590546) (xy 126.852829 67.769409) (xy 126.85283 67.769412) (xy 126.866867 67.812616) (xy 126.908789 67.941639) (xy 126.991004 68.102994) (xy 127.097447 68.249501) (xy 127.097449 68.249503) (xy 127.097451 68.249506) (xy 127.225493 68.377548) (xy 127.225496 68.37755) (xy 127.225499 68.377553) (xy 127.372006 68.483996) (xy 127.533361 68.566211) (xy 127.705591 68.622171) (xy 127.884454 68.6505) (xy 127.884457 68.6505) (xy 128.065543 68.6505) (xy 128.065546 68.6505) (xy 128.244409 68.622171) (xy 128.416639 68.566211) (xy 128.577994 68.483996) (xy 128.724501 68.377553) (xy 128.852553 68.249501) (xy 128.958996 68.102994) (xy 129.041211 67.941639) (xy 129.097171 67.769409) (xy 129.1255 67.590546) (xy 129.1255 67.409454) (xy 129.097171 67.230591) (xy 129.041211 67.058361) (xy 128.958996 66.897006) (xy 128.852553 66.750499) (xy 128.85255 66.750496) (xy 128.852548 66.750493) (xy 128.724506 66.622451) (xy 128.724503 66.622449) (xy 128.724501 66.622447) (xy 128.577994 66.516004) (xy 128.416639 66.433789) (xy 128.416636 66.433788) (xy 128.416634 66.433787) (xy 128.244412 66.37783) (xy 128.244409 66.377829) (xy 128.065546 66.3495) (xy 127.884454 66.3495) (xy 127.705591 66.377829) (xy 127.705588 66.377829) (xy 127.705587 66.37783) (xy 127.533365 66.433787) (xy 127.533359 66.43379) (xy 127.372002 66.516006) (xy 127.225496 66.622449) (xy 127.225493 66.622451) (xy 127.097451 66.750493) (xy 127.097449 66.750496) (xy 126.991006 66.897002) (xy 126.90879 67.058359) (xy 126.908787 67.058365) (xy 126.880436 67.145624) (xy 126.852829 67.230591) (xy 126.8245 67.409454) (xy 123.169887 67.409454) (xy 123.173156 67.37) (xy 123.154564 67.145632) (xy 123.132464 67.058361) (xy 123.099297 66.927387) (xy 123.099296 66.927386) (xy 123.099296 66.927384) (xy 123.00886 66.721209) (xy 122.950522 66.631916) (xy 122.885724 66.532734) (xy 122.88572 66.532729) (xy 122.733237 66.367091) (xy 122.64584 66.299067) (xy 122.555576 66.228811) (xy 122.555572 66.228809) (xy 122.551876 66.225932) (xy 122.510405 66.168306) (xy 122.506671 66.097408) (xy 122.541861 66.035746) (xy 122.604802 66.002898) (xy 122.629267 66.0005) (xy 132.738911 66.0005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 121.058854 66.020502) (xy 121.105347 66.074158) (xy 121.115451 66.144432) (xy 121.085957 66.209012) (xy 121.068124 66.225932) (xy 121.064427 66.228809) (xy 121.064424 66.228811) (xy 121.011252 66.270197) (xy 120.886762 66.367091) (xy 120.734279 66.532729) (xy 120.734275 66.532734) (xy 120.611141 66.721206) (xy 120.520703 66.927386) (xy 120.520702 66.927387) (xy 120.465437 67.145624) (xy 120.465436 67.14563) (xy 120.465436 67.145632) (xy 120.446844 67.37) (xy 120.457616 67.5) (xy 120.465437 67.594375) (xy 120.520702 67.812612) (xy 120.520703 67.812613) (xy 120.611141 68.018793) (xy 120.734275 68.207265) (xy 120.734279 68.20727) (xy 120.886762 68.372908) (xy 120.941331 68.415381) (xy 121.064424 68.511189) (xy 121.09768 68.529186) (xy 121.148071 68.5792) (xy 121.163423 68.648516) (xy 121.138862 68.715129) (xy 121.09768 68.750813) (xy 121.064426 68.76881) (xy 121.064424 68.768811) (xy 120.886762 68.907091) (xy 120.734279 69.072729) (xy 120.734275 69.072734) (xy 120.611141 69.261206) (xy 120.520703 69.467386) (xy 120.520702 69.467387) (xy 120.465437 69.685624) (xy 120.465436 69.68563) (xy 120.465436 69.685632) (xy 120.446844 69.91) (xy 120.463693 70.113338) (xy 120.465437 70.134375) (xy 120.520702 70.352612) (xy 120.520703 70.352613) (xy 120.520704 70.352616) (xy 120.584146 70.497251) (xy 120.611141 70.558793) (xy 120.734275 70.747265) (xy 120.734279 70.74727) (xy 120.877841 70.903217) (xy 120.909262 70.966882) (xy 120.901276 71.037428) (xy 120.856417 71.092457) (xy 120.829173 71.10661) (xy 120.714039 71.149553) (xy 120.714034 71.149555) (xy 120.597095 71.237095) (xy 120.509555 71.354034) (xy 120.509555 71.354035) (xy 120.458505 71.490906) (xy 120.452 71.551402) (xy 120.452 72.196) (xy 121.367749 72.196) (xy 121.334755 72.253147) (xy 121.3 72.382857) (xy 121.3 72.517143) (xy 121.334755 72.646853) (xy 121.367749 72.704) (xy 120.452 72.704) (xy 120.452 73.348597) (xy 120.458505 73.409093) (xy 120.509555 73.545964) (xy 120.509555 73.545965) (xy 120.597095 73.662904) (xy 120.714034 73.750444) (xy 120.829172 73.793388) (xy 120.886008 73.835935) (xy 120.910819 73.902455) (xy 120.895728 73.971829) (xy 120.877841 73.996782) (xy 120.73428 74.152729) (xy 120.734275 74.152734) (xy 120.611141 74.341206) (xy 120.520703 74.547386) (xy 120.520702 74.547387) (xy 120.465437 74.765624) (xy 120.465436 74.76563) (xy 120.465436 74.765632) (xy 120.446844 74.99) (xy 120.45771 75.121135) (xy 120.465437 75.214375) (xy 120.520702 75.432612) (xy 120.520703 75.432613) (xy 120.611141 75.638793) (xy 120.734275 75.827265) (xy 120.734279 75.82727) (xy 120.886762 75.992908) (xy 120.941331 76.035381) (xy 121.064424 76.131189) (xy 121.09768 76.149186) (xy 121.148071 76.1992) (xy 121.163423 76.268516) (xy 121.138862 76.335129) (xy 121.09768 76.370813) (xy 121.064426 76.38881) (xy 121.064424 76.388811) (xy 120.886762 76.527091) (xy 120.734279 76.692729) (xy 120.734275 76.692734) (xy 120.611141 76.881206) (xy 120.520703 77.087386) (xy 120.520702 77.087387) (xy 120.465437 77.305624) (xy 120.446844 77.53) (xy 120.465437 77.754375) (xy 120.520702 77.972612) (xy 120.520703 77.972613) (xy 120.611141 78.178793) (xy 120.734275 78.367265) (xy 120.734279 78.36727) (xy 120.886762 78.532908) (xy 120.941331 78.575381) (xy 121.064424 78.671189) (xy 121.09768 78.689186) (xy 121.148071 78.7392) (xy 121.163423 78.808516) (xy 121.138862 78.875129) (xy 121.09768 78.910813) (xy 121.064426 78.92881) (xy 121.064424 78.928811) (xy 120.886762 79.067091) (xy 120.734279 79.232729) (xy 120.734275 79.232734) (xy 120.611141 79.421206) (xy 120.520703 79.627386) (xy 120.520702 79.627387) (xy 120.465437 79.845624) (xy 120.465436 79.84563) (xy 120.465436 79.845632) (xy 120.446844 80.07) (xy 120.457616 80.2) (xy 120.465437 80.294375) (xy 120.520702 80.512612) (xy 120.520703 80.512613) (xy 120.520704 80.512616) (xy 120.61114 80.718791) (xy 120.611141 80.718793) (xy 120.734275 80.907265) (xy 120.734279 80.90727) (xy 120.886762 81.072908) (xy 120.932491 81.1085) (xy 121.064424 81.211189) (xy 121.09768 81.229186) (xy 121.148071 81.2792) (xy 121.163423 81.348516) (xy 121.138862 81.415129) (xy 121.09768 81.450813) (xy 121.064426 81.46881) (xy 121.064424 81.468811) (xy 120.886762 81.607091) (xy 120.734279 81.772729) (xy 120.734275 81.772734) (xy 120.611141 81.961206) (xy 120.520703 82.167386) (xy 120.520702 82.167387) (xy 120.465437 82.385624) (xy 120.465436 82.38563) (xy 120.465436 82.385632) (xy 120.446844 82.61) (xy 120.464339 82.821135) (xy 120.465437 82.834375) (xy 120.520702 83.052612) (xy 120.520703 83.052613) (xy 120.520704 83.052616) (xy 120.61114 83.258791) (xy 120.611141 83.258793) (xy 120.734275 83.447265) (xy 120.734279 83.44727) (xy 120.828582 83.549708) (xy 120.877475 83.60282) (xy 120.877841 83.603217) (xy 120.909262 83.666882) (xy 120.901276 83.737428) (xy 120.856417 83.792457) (xy 120.829173 83.80661) (xy 120.714039 83.849553) (xy 120.714034 83.849555) (xy 120.597095 83.937095) (xy 120.509555 84.054034) (xy 120.509555 84.054035) (xy 120.458505 84.190906) (xy 120.452 84.251402) (xy 120.452 84.896) (xy 121.367749 84.896) (xy 121.334755 84.953147) (xy 121.3 85.082857) (xy 121.3 85.217143) (xy 121.334755 85.346853) (xy 121.367749 85.404) (xy 120.452 85.404) (xy 120.452 86.048597) (xy 120.458505 86.109093) (xy 120.509555 86.245964) (xy 120.509555 86.245965) (xy 120.597095 86.362904) (xy 120.714034 86.450444) (xy 120.829172 86.493388) (xy 120.886008 86.535935) (xy 120.910819 86.602455) (xy 120.895728 86.671829) (xy 120.877841 86.696782) (xy 120.73428 86.852729) (xy 120.734275 86.852734) (xy 120.611141 87.041206) (xy 120.520703 87.247386) (xy 120.520702 87.247387) (xy 120.465437 87.465624) (xy 120.465436 87.46563) (xy 120.465436 87.465632) (xy 120.446844 87.69) (xy 120.462504 87.878989) (xy 120.465437 87.914375) (xy 120.520702 88.132612) (xy 120.520703 88.132613) (xy 120.520704 88.132616) (xy 120.57792 88.263056) (xy 120.611141 88.338793) (xy 120.734275 88.527265) (xy 120.734279 88.52727) (xy 120.886762 88.692908) (xy 120.941331 88.735381) (xy 121.064424 88.831189) (xy 121.09768 88.849186) (xy 121.148071 88.8992) (xy 121.163423 88.968516) (xy 121.138862 89.035129) (xy 121.09768 89.070813) (xy 121.064426 89.08881) (xy 121.064424 89.088811) (xy 120.886762 89.227091) (xy 120.734279 89.392729) (xy 120.734275 89.392734) (xy 120.611141 89.581206) (xy 120.520703 89.787386) (xy 120.520702 89.787387) (xy 120.465437 90.005624) (xy 120.465436 90.00563) (xy 120.465436 90.005632) (xy 120.446844 90.23) (xy 120.463992 90.436944) (xy 120.465437 90.454375) (xy 120.520702 90.672612) (xy 120.520703 90.672613) (xy 120.520704 90.672616) (xy 120.580141 90.808119) (xy 120.611141 90.878793) (xy 120.734275 91.067265) (xy 120.734279 91.06727) (xy 120.886762 91.232908) (xy 120.889193 91.2348) (xy 121.064424 91.371189) (xy 121.09768 91.389186) (xy 121.148071 91.4392) (xy 121.163423 91.508516) (xy 121.138862 91.575129) (xy 121.09768 91.610813) (xy 121.064426 91.62881) (xy 121.064424 91.628811) (xy 120.886762 91.767091) (xy 120.734279 91.932729) (xy 120.734275 91.932734) (xy 120.611141 92.121206) (xy 120.520703 92.327386) (xy 120.520702 92.327387) (xy 120.465437 92.545624) (xy 120.465436 92.54563) (xy 120.465436 92.545632) (xy 120.446844 92.77) (xy 120.461253 92.943893) (xy 120.465437 92.994375) (xy 120.520702 93.212612) (xy 120.520703 93.212613) (xy 120.520704 93.212616) (xy 120.574954 93.336294) (xy 120.611141 93.418793) (xy 120.734275 93.607265) (xy 120.734279 93.60727) (xy 120.886762 93.772908) (xy 120.941331 93.815381) (xy 121.064424 93.911189) (xy 121.09768 93.929186) (xy 121.148071 93.9792) (xy 121.163423 94.048516) (xy 121.138862 94.115129) (xy 121.09768 94.150813) (xy 121.064426 94.16881) (xy 121.064424 94.168811) (xy 120.886762 94.307091) (xy 120.734279 94.472729) (xy 120.734275 94.472734) (xy 120.611141 94.661206) (xy 120.520703 94.867386) (xy 120.520702 94.867387) (xy 120.465437 95.085624) (xy 120.465436 95.08563) (xy 120.465436 95.085632) (xy 120.446844 95.31) (xy 120.464339 95.521135) (xy 120.465437 95.534375) (xy 120.520702 95.752612) (xy 120.520703 95.752613) (xy 120.520704 95.752616) (xy 120.592725 95.916809) (xy 120.611141 95.958793) (xy 120.734275 96.147265) (xy 120.73428 96.14727) (xy 120.877475 96.30282) (xy 120.908896 96.366485) (xy 120.900909 96.437031) (xy 120.856051 96.49206) (xy 120.828807 96.506213) (xy 120.713797 96.54911) (xy 120.713792 96.549112) (xy 120.596738 96.636738) (xy 120.509112 96.753792) (xy 120.50911 96.753797) (xy 120.458011 96.890795) (xy 120.458009 96.890803) (xy 120.4515 96.95135) (xy 120.4515 98.748649) (xy 120.458009 98.809196) (xy 120.458011 98.809204) (xy 120.50911 98.946202) (xy 120.509112 98.946207) (xy 120.596738 99.063261) (xy 120.713791 99.150886) (xy 120.713792 99.150886) (xy 120.713796 99.150889) (xy 120.82881 99.193787) (xy 120.885642 99.236332) (xy 120.910453 99.302852) (xy 120.895362 99.372226) (xy 120.877475 99.397179) (xy 120.73428 99.552729) (xy 120.734275 99.552734) (xy 120.611141 99.741206) (xy 120.520703 99.947386) (xy 120.520702 99.947387) (xy 120.465437 100.165624) (xy 120.446844 100.39) (xy 120.465437 100.614375) (xy 120.520702 100.832612) (xy 120.520703 100.832613) (xy 120.520704 100.832616) (xy 120.61114 101.038791) (xy 120.611141 101.038793) (xy 120.734275 101.227265) (xy 120.734279 101.22727) (xy 120.886762 101.392908) (xy 120.941331 101.435381) (xy 121.064424 101.531189) (xy 121.09768 101.549186) (xy 121.148071 101.5992) (xy 121.163423 101.668516) (xy 121.138862 101.735129) (xy 121.09768 101.770813) (xy 121.064426 101.78881) (xy 121.064424 101.788811) (xy 120.886762 101.927091) (xy 120.734279 102.092729) (xy 120.734275 102.092734) (xy 120.611141 102.281206) (xy 120.520703 102.487386) (xy 120.520702 102.487387) (xy 120.465437 102.705624) (xy 120.465436 102.70563) (xy 120.465436 102.705632) (xy 120.446844 102.93) (xy 120.450932 102.979339) (xy 120.465437 103.154375) (xy 120.520702 103.372612) (xy 120.520703 103.372613) (xy 120.611141 103.578793) (xy 120.734275 103.767265) (xy 120.734279 103.76727) (xy 120.886762 103.932908) (xy 120.941331 103.975381) (xy 121.064424 104.071189) (xy 121.09768 104.089186) (xy 121.148071 104.1392) (xy 121.163423 104.208516) (xy 121.138862 104.275129) (xy 121.09768 104.310813) (xy 121.064426 104.32881) (xy 121.064424 104.328811) (xy 120.886762 104.467091) (xy 120.734279 104.632729) (xy 120.734275 104.632734) (xy 120.611141 104.821206) (xy 120.520703 105.027386) (xy 120.520702 105.027387) (xy 120.465437 105.245624) (xy 120.446844 105.47) (xy 120.465437 105.694375) (xy 120.520702 105.912612) (xy 120.520703 105.912613) (xy 120.520704 105.912616) (xy 120.564548 106.012571) (xy 120.611141 106.118793) (xy 120.734275 106.307265) (xy 120.734279 106.30727) (xy 120.886762 106.472908) (xy 120.910275 106.491209) (xy 121.064424 106.611189) (xy 121.09768 106.629186) (xy 121.148071 106.6792) (xy 121.163423 106.748516) (xy 121.138862 106.815129) (xy 121.09768 106.850813) (xy 121.064426 106.86881) (xy 121.064424 106.868811) (xy 120.886762 107.007091) (xy 120.734279 107.172729) (xy 120.734275 107.172734) (xy 120.611141 107.361206) (xy 120.520703 107.567386) (xy 120.520702 107.567387) (xy 120.465437 107.785624) (xy 120.465436 107.78563) (xy 120.465436 107.785632) (xy 120.446844 108.01) (xy 120.457857 108.142908) (xy 120.465437 108.234375) (xy 120.520702 108.452612) (xy 120.520703 108.452613) (xy 120.520704 108.452616) (xy 120.584815 108.598775) (xy 120.611141 108.658793) (xy 120.734275 108.847265) (xy 120.734279 108.84727) (xy 120.760734 108.876007) (xy 120.861221 108.985164) (xy 120.877841 109.003217) (xy 120.909262 109.066882) (xy 120.901276 109.137428) (xy 120.856417 109.192457) (xy 120.829173 109.20661) (xy 120.714039 109.249553) (xy 120.714034 109.249555) (xy 120.597095 109.337095) (xy 120.509555 109.454034) (xy 120.509555 109.454035) (xy 120.458505 109.590906) (xy 120.452 109.651402) (xy 120.452 110.296) (xy 121.367749 110.296) (xy 121.334755 110.353147) (xy 121.3 110.482857) (xy 121.3 110.617143) (xy 121.334755 110.746853) (xy 121.367749 110.804) (xy 120.452 110.804) (xy 120.452 111.448597) (xy 120.458505 111.509093) (xy 120.509555 111.645964) (xy 120.509555 111.645965) (xy 120.597095 111.762904) (xy 120.714034 111.850444) (xy 120.829172 111.893388) (xy 120.886008 111.935935) (xy 120.910819 112.002455) (xy 120.895728 112.071829) (xy 120.877841 112.096782) (xy 120.73428 112.252729) (xy 120.734275 112.252734) (xy 120.611141 112.441206) (xy 120.520703 112.647386) (xy 120.520702 112.647387) (xy 120.465437 112.865624) (xy 120.465436 112.86563) (xy 120.465436 112.865632) (xy 120.446844 113.09) (xy 120.465437 113.314375) (xy 120.520702 113.532612) (xy 120.520703 113.532613) (xy 120.611141 113.738793) (xy 120.734275 113.927265) (xy 120.734279 113.92727) (xy 120.886762 114.092908) (xy 120.941331 114.135381) (xy 121.064424 114.231189) (xy 121.09768 114.249186) (xy 121.148071 114.2992) (xy 121.163423 114.368516) (xy 121.138862 114.435129) (xy 121.09768 114.470813) (xy 121.064426 114.48881) (xy 121.064424 114.488811) (xy 120.886762 114.627091) (xy 120.734279 114.792729) (xy 120.734275 114.792734) (xy 120.611141 114.981206) (xy 120.520703 115.187386) (xy 120.520702 115.187387) (xy 120.465437 115.405624) (xy 120.446844 115.63) (xy 120.465437 115.854375) (xy 120.520702 116.072612) (xy 120.520703 116.072613) (xy 120.611141 116.278793) (xy 120.734275 116.467265) (xy 120.734279 116.46727) (xy 120.886762 116.632908) (xy 120.888304 116.634108) (xy 121.064424 116.771189) (xy 121.262426 116.878342) (xy 121.262427 116.878342) (xy 121.262428 116.878343) (xy 121.374227 116.916723) (xy 121.475365 116.951444) (xy 121.697431 116.9885) (xy 121.697435 116.9885) (xy 121.922565 116.9885) (xy 121.922569 116.9885) (xy 122.144635 116.951444) (xy 122.357574 116.878342) (xy 122.555576 116.771189) (xy 122.73324 116.632906) (xy 122.737925 116.627817) (xy 122.745099 116.620024) (xy 122.805951 116.583453) (xy 122.876916 116.585586) (xy 122.935461 116.625748) (xy 122.963 116.691186) (xy 122.9638 116.705361) (xy 122.9638 116.802353) (xy 122.975472 116.876044) (xy 122.995824 117.00454) (xy 123.059078 117.199212) (xy 123.059082 117.199224) (xy 123.152017 117.381618) (xy 123.272342 117.547227) (xy 123.417092 117.691974) (xy 123.582703 117.812295) (xy 123.765098 117.905227) (xy 123.959786 117.968482) (xy 123.959791 117.968482) (xy 123.959792 117.968483) (xy 123.959824 117.968488) (xy 124.161972 118.000501) (xy 124.264324 118.0005) (xy 136.998428 118.0005) (xy 136.998432 118.000501) (xy 137.012115 118.0005) (xy 137.012167 118.000515) (xy 137.064324 118.000514) (xy 137.064324 118.000515) (xy 137.166672 118.000513) (xy 137.166678 118.000513) (xy 137.276347 117.98314) (xy 137.368858 117.968487) (xy 137.563541 117.905227) (xy 137.745932 117.812291) (xy 137.911539 117.691968) (xy 138.056284 117.54722) (xy 138.176604 117.381611) (xy 138.269536 117.199219) (xy 138.269539 117.199212) (xy 138.332789 117.004542) (xy 138.33279 117.004541) (xy 138.33279 117.004539) (xy 138.332792 117.004534) (xy 138.364815 116.802351) (xy 138.364815 116.7) (xy 138.364815 116.634108) (xy 138.364815 116.627817) (xy 138.384817 116.559696) (xy 138.438473 116.513203) (xy 138.508747 116.503099) (xy 138.573327 116.532593) (xy 138.583509 116.542472) (xy 138.654901 116.620024) (xy 138.666762 116.632908) (xy 138.668304 116.634108) (xy 138.844424 116.771189) (xy 139.042426 116.878342) (xy 139.042427 116.878342) (xy 139.042428 116.878343) (xy 139.154227 116.916723) (xy 139.255365 116.951444) (xy 139.477431 116.9885) (xy 139.477435 116.9885) (xy 139.702565 116.9885) (xy 139.702569 116.9885) (xy 139.924635 116.951444) (xy 140.137574 116.878342) (xy 140.335576 116.771189) (xy 140.51324 116.632906) (xy 140.665722 116.467268) (xy 140.78886 116.278791) (xy 140.879296 116.072616) (xy 140.934564 115.854368) (xy 140.953156 115.63) (xy 140.934564 115.405632) (xy 140.879296 115.187384) (xy 140.78886 114.981209) (xy 140.743815 114.912262) (xy 140.665724 114.792734) (xy 140.66572 114.792729) (xy 140.513237 114.627091) (xy 140.420171 114.554655) (xy 140.335576 114.488811) (xy 140.302319 114.470813) (xy 140.251929 114.420802) (xy 140.236576 114.351485) (xy 140.261136 114.284872) (xy 140.30232 114.249186) (xy 140.335576 114.231189) (xy 140.51324 114.092906) (xy 140.665722 113.927268) (xy 140.78886 113.738791) (xy 140.879296 113.532616) (xy 140.934564 113.314368) (xy 140.953156 113.09) (xy 140.934564 112.865632) (xy 140.879296 112.647384) (xy 140.78886 112.441209) (xy 140.743815 112.372262) (xy 140.665724 112.252734) (xy 140.665714 112.252722) (xy 140.522159 112.096782) (xy 140.490737 112.033117) (xy 140.498723 111.962571) (xy 140.543582 111.907542) (xy 140.570827 111.893388) (xy 140.685965 111.850444) (xy 140.802904 111.762904) (xy 140.890444 111.645965) (xy 140.890444 111.645964) (xy 140.941494 111.509093) (xy 140.947999 111.448597) (xy 140.948 111.448585) (xy 140.948 110.804) (xy 140.032251 110.804) (xy 140.065245 110.746853) (xy 140.1 110.617143) (xy 140.1 110.482857) (xy 140.065245 110.353147) (xy 140.032251 110.296) (xy 140.948 110.296) (xy 140.948 109.651414) (xy 140.947999 109.651402) (xy 140.941494 109.590906) (xy 140.890444 109.454035) (xy 140.890444 109.454034) (xy 140.802904 109.337095) (xy 140.685966 109.249556) (xy 140.570826 109.206611) (xy 140.513991 109.164064) (xy 140.48918 109.097543) (xy 140.504272 109.028169) (xy 140.522154 109.003222) (xy 140.665722 108.847268) (xy 140.78886 108.658791) (xy 140.879296 108.452616) (xy 140.934564 108.234368) (xy 140.953156 108.01) (xy 140.934564 107.785632) (xy 140.917536 107.71839) (xy 140.879297 107.567387) (xy 140.879296 107.567386) (xy 140.879296 107.567384) (xy 140.78886 107.361209) (xy 140.740847 107.287719) (xy 140.665724 107.172734) (xy 140.66572 107.172729) (xy 140.513237 107.007091) (xy 140.395731 106.915632) (xy 140.335576 106.868811) (xy 140.302319 106.850813) (xy 140.251929 106.800802) (xy 140.236576 106.731485) (xy 140.261136 106.664872) (xy 140.30232 106.629186) (xy 140.335576 106.611189) (xy 140.51324 106.472906) (xy 140.665722 106.307268) (xy 140.78886 106.118791) (xy 140.879296 105.912616) (xy 140.934564 105.694368) (xy 140.953156 105.47) (xy 140.934564 105.245632) (xy 140.879296 105.027384) (xy 140.78886 104.821209) (xy 140.770426 104.792993) (xy 140.665724 104.632734) (xy 140.66572 104.632729) (xy 140.513237 104.467091) (xy 140.431382 104.403381) (xy 140.335576 104.328811) (xy 140.302319 104.310813) (xy 140.251929 104.260802) (xy 140.236576 104.191485) (xy 140.261136 104.124872) (xy 140.30232 104.089186) (xy 140.335576 104.071189) (xy 140.51324 103.932906) (xy 140.665722 103.767268) (xy 140.78886 103.578791) (xy 140.879296 103.372616) (xy 140.934564 103.154368) (xy 140.953156 102.93) (xy 140.934564 102.705632) (xy 140.916172 102.633004) (xy 140.879297 102.487387) (xy 140.879296 102.487386) (xy 140.879296 102.487384) (xy 140.78886 102.281209) (xy 140.709603 102.159897) (xy 140.665724 102.092734) (xy 140.66572 102.092729) (xy 140.513237 101.927091) (xy 140.431382 101.863381) (xy 140.335576 101.788811) (xy 140.302319 101.770813) (xy 140.251929 101.720802) (xy 140.236576 101.651485) (xy 140.261136 101.584872) (xy 140.30232 101.549186) (xy 140.335576 101.531189) (xy 140.51324 101.392906) (xy 140.665722 101.227268) (xy 140.78886 101.038791) (xy 140.879296 100.832616) (xy 140.934564 100.614368) (xy 140.953156 100.39) (xy 140.934564 100.165632) (xy 140.879296 99.947384) (xy 140.78886 99.741209) (xy 140.78214 99.730924) (xy 140.665724 99.552734) (xy 140.665714 99.552722) (xy 140.522159 99.396782) (xy 140.490737 99.333117) (xy 140.498723 99.262571) (xy 140.543582 99.207542) (xy 140.570827 99.193388) (xy 140.685965 99.150444) (xy 140.802904 99.062904) (xy 140.890444 98.945965) (xy 140.890444 98.945964) (xy 140.941494 98.809093) (xy 140.947999 98.748597) (xy 140.948 98.748585) (xy 140.948 98.104) (xy 140.032251 98.104) (xy 140.065245 98.046853) (xy 140.1 97.917143) (xy 140.1 97.782857) (xy 140.065245 97.653147) (xy 140.032251 97.596) (xy 140.948 97.596) (xy 140.948 96.951414) (xy 140.947999 96.951402) (xy 140.941494 96.890906) (xy 140.890444 96.754035) (xy 140.890444 96.754034) (xy 140.802904 96.637095) (xy 140.685966 96.549556) (xy 140.570826 96.506611) (xy 140.513991 96.464064) (xy 140.48918 96.397543) (xy 140.504272 96.328169) (xy 140.522154 96.303222) (xy 140.665722 96.147268) (xy 140.78886 95.958791) (xy 140.879296 95.752616) (xy 140.934564 95.534368) (xy 140.953156 95.31) (xy 140.934564 95.085632) (xy 140.879296 94.867384) (xy 140.78886 94.661209) (xy 140.78214 94.650924) (xy 140.665724 94.472734) (xy 140.66572 94.472729) (xy 140.513237 94.307091) (xy 140.431382 94.243381) (xy 140.335576 94.168811) (xy 140.302319 94.150813) (xy 140.251929 94.100802) (xy 140.236576 94.031485) (xy 140.261136 93.964872) (xy 140.30232 93.929186) (xy 140.335576 93.911189) (xy 140.51324 93.772906) (xy 140.665722 93.607268) (xy 140.78886 93.418791) (xy 140.879296 93.212616) (xy 140.934564 92.994368) (xy 140.953156 92.77) (xy 140.934564 92.545632) (xy 140.879296 92.327384) (xy 140.78886 92.121209) (xy 140.73502 92.0388) (xy 140.665724 91.932734) (xy 140.66572 91.932729) (xy 140.513237 91.767091) (xy 140.431382 91.703381) (xy 140.335576 91.628811) (xy 140.302319 91.610813) (xy 140.251929 91.560802) (xy 140.236576 91.491485) (xy 140.261136 91.424872) (xy 140.30232 91.389186) (xy 140.335576 91.371189) (xy 140.51324 91.232906) (xy 140.665722 91.067268) (xy 140.78886 90.878791) (xy 140.879296 90.672616) (xy 140.934564 90.454368) (xy 140.953156 90.23) (xy 140.934564 90.005632) (xy 140.921623 89.95453) (xy 140.907814 89.9) (xy 148.616496 89.9) (xy 148.636457 90.089927) (xy 148.658892 90.158972) (xy 148.695473 90.271556) (xy 148.695476 90.271561) (xy 148.790958 90.436941) (xy 148.790965 90.436951) (xy 148.918744 90.578864) (xy 148.918747 90.578866) (xy 149.073248 90.691118) (xy 149.247712 90.768794) (xy 149.434513 90.8085) (xy 149.625487 90.8085) (xy 149.812288 90.768794) (xy 149.986752 90.691118) (xy 150.141253 90.578866) (xy 150.141255 90.578864) (xy 150.269034 90.436951) (xy 150.269034 90.43695) (xy 150.26904 90.436944) (xy 150.296132 90.390018) (xy 150.347511 90.341028) (xy 150.417225 90.327591) (xy 150.483136 90.353977) (xy 150.524319 90.411809) (xy 150.530559 90.466191) (xy 150.516496 90.599999) (xy 150.536457 90.789927) (xy 150.542492 90.8085) (xy 150.595473 90.971556) (xy 150.595476 90.971561) (xy 150.690958 91.136941) (xy 150.690965 91.136951) (xy 150.818744 91.278864) (xy 150.818747 91.278866) (xy 150.973248 91.391118) (xy 151.147712 91.468794) (xy 151.334513 91.5085) (xy 151.525487 91.5085) (xy 151.712288 91.468794) (xy 151.886752 91.391118) (xy 152.041253 91.278866) (xy 152.16904 91.136944) (xy 152.264527 90.971556) (xy 152.323542 90.789928) (xy 152.343504 90.6) (xy 152.323542 90.410072) (xy 152.264527 90.228444) (xy 152.16904 90.063056) (xy 152.169038 90.063054) (xy 152.169034 90.063048) (xy 152.041255 89.921135) (xy 151.886752 89.808882) (xy 151.712288 89.731206) (xy 151.525487 89.6915) (xy 151.334513 89.6915) (xy 151.147711 89.731206) (xy 150.973247 89.808882) (xy 150.818744 89.921135) (xy 150.690965 90.063048) (xy 150.69096 90.063055) (xy 150.663869 90.109979) (xy 150.612485 90.158972) (xy 150.542772 90.172407) (xy 150.476861 90.14602) (xy 150.435679 90.088187) (xy 150.42944 90.033807) (xy 150.431935 90.010072) (xy 150.443504 89.9) (xy 150.423542 89.710072) (xy 150.364527 89.528444) (xy 150.334916 89.477157) (xy 150.330039 89.468709) (xy 150.313301 89.399714) (xy 150.336521 89.332622) (xy 150.38174 89.295649) (xy 150.381031 89.294421) (xy 150.38674 89.291123) (xy 150.386752 89.291118) (xy 150.541253 89.178866) (xy 150.541255 89.178864) (xy 150.669034 89.036951) (xy 150.669035 89.036949) (xy 150.66904 89.036944) (xy 150.764527 88.871556) (xy 150.823542 88.689928) (xy 150.843504 88.5) (xy 150.823542 88.310072) (xy 150.764527 88.128444) (xy 150.66904 87.963056) (xy 150.669038 87.963054) (xy 150.669034 87.963048) (xy 150.541255 87.821135) (xy 150.386752 87.708882) (xy 150.212288 87.631206) (xy 150.025487 87.5915) (xy 149.834513 87.5915) (xy 149.647711 87.631206) (xy 149.473247 87.708882) (xy 149.318744 87.821135) (xy 149.190965 87.963048) (xy 149.190958 87.963058) (xy 149.095476 88.128438) (xy 149.095473 88.128444) (xy 149.091924 88.139367) (xy 149.036457 88.310072) (xy 149.016496 88.5) (xy 149.036457 88.689927) (xy 149.059781 88.761708) (xy 149.095473 88.871556) (xy 149.095476 88.871561) (xy 149.12996 88.93129) (xy 149.146698 89.000286) (xy 149.123477 89.067378) (xy 149.078264 89.104351) (xy 149.078972 89.105577) (xy 149.073248 89.108882) (xy 148.918744 89.221135) (xy 148.790965 89.363048) (xy 148.790958 89.363058) (xy 148.695476 89.528438) (xy 148.695473 89.528445) (xy 148.636457 89.710072) (xy 148.616496 89.9) (xy 140.907814 89.9) (xy 140.879297 89.787387) (xy 140.879296 89.787386) (xy 140.879296 89.787384) (xy 140.78886 89.581209) (xy 140.717663 89.472233) (xy 140.665724 89.392734) (xy 140.66572 89.392729) (xy 140.526215 89.241189) (xy 140.51324 89.227094) (xy 140.513239 89.227093) (xy 140.513237 89.227091) (xy 140.431382 89.163381) (xy 140.335576 89.088811) (xy 140.302319 89.070813) (xy 140.251929 89.020802) (xy 140.236576 88.951485) (xy 140.261136 88.884872) (xy 140.30232 88.849186) (xy 140.335576 88.831189) (xy 140.51324 88.692906) (xy 140.665722 88.527268) (xy 140.78886 88.338791) (xy 140.879296 88.132616) (xy 140.934564 87.914368) (xy 140.953156 87.69) (xy 140.934564 87.465632) (xy 140.879296 87.247384) (xy 140.78886 87.041209) (xy 140.728867 86.949382) (xy 140.665724 86.852734) (xy 140.665719 86.852729) (xy 140.626215 86.809817) (xy 140.522524 86.697179) (xy 140.491103 86.633514) (xy 140.49909 86.562968) (xy 140.543948 86.507939) (xy 140.571183 86.493789) (xy 140.686204 86.450889) (xy 140.686799 86.450444) (xy 140.803261 86.363261) (xy 140.890887 86.246207) (xy 140.890887 86.246206) (xy 140.890889 86.246204) (xy 140.941989 86.109201) (xy 140.9485 86.048638) (xy 140.9485 84.251362) (xy 140.948499 84.25135) (xy 140.94199 84.190803) (xy 140.941988 84.190795) (xy 140.890978 84.054035) (xy 140.890889 84.053796) (xy 140.890888 84.053794) (xy 140.890887 84.053792) (xy 140.803261 83.936738) (xy 140.686207 83.849112) (xy 140.686203 83.84911) (xy 140.571192 83.806213) (xy 140.514356 83.763667) (xy 140.489546 83.697146) (xy 140.504638 83.627772) (xy 140.522525 83.60282) (xy 140.617179 83.5) (xy 145.416496 83.5) (xy 145.436457 83.689927) (xy 145.456363 83.751189) (xy 145.495473 83.871556) (xy 145.495476 83.871561) (xy 145.590958 84.036941) (xy 145.590965 84.036951) (xy 145.718744 84.178864) (xy 145.76006 84.208882) (xy 145.873248 84.291118) (xy 146.047712 84.368794) (xy 146.234513 84.4085) (xy 146.425487 84.4085) (xy 146.612288 84.368794) (xy 146.786752 84.291118) (xy 146.798524 84.282564) (xy 146.865391 84.258706) (xy 146.872587 84.2585) (xy 147.863629 84.2585) (xy 147.93175 84.278502) (xy 147.952724 84.295405) (xy 155.440835 91.783516) (xy 155.546484 91.889165) (xy 155.670716 91.972174) (xy 155.808754 92.029351) (xy 155.955294 92.0585) (xy 155.955295 92.0585) (xy 156.104705 92.0585) (xy 160.287413 92.0585) (xy 160.355534 92.078502) (xy 160.361471 92.082562) (xy 160.373248 92.091118) (xy 160.547712 92.168794) (xy 160.734513 92.2085) (xy 160.925487 92.2085) (xy 161.112288 92.168794) (xy 161.286752 92.091118) (xy 161.441253 91.978866) (xy 161.441255 91.978864) (xy 161.569034 91.836951) (xy 161.569035 91.836949) (xy 161.56904 91.836944) (xy 161.664527 91.671556) (xy 161.723542 91.489928) (xy 161.743504 91.3) (xy 161.723542 91.110072) (xy 161.664527 90.928444) (xy 161.56904 90.763056) (xy 161.569038 90.763054) (xy 161.569034 90.763048) (xy 161.441255 90.621135) (xy 161.286752 90.508882) (xy 161.112288 90.431206) (xy 160.925487 90.3915) (xy 160.734513 90.3915) (xy 160.547711 90.431206) (xy 160.373245 90.508883) (xy 160.361476 90.517435) (xy 160.294609 90.541294) (xy 160.287413 90.5415) (xy 156.396371 90.5415) (xy 156.32825 90.521498) (xy 156.307276 90.504595) (xy 154.302681 88.5) (xy 155.816496 88.5) (xy 155.836457 88.689927) (xy 155.859781 88.761708) (xy 155.895473 88.871556) (xy 155.895476 88.871561) (xy 155.990958 89.036941) (xy 155.990965 89.036951) (xy 156.118744 89.178864) (xy 156.142615 89.196207) (xy 156.273248 89.291118) (xy 156.447712 89.368794) (xy 156.634513 89.4085) (xy 156.825487 89.4085) (xy 157.012288 89.368794) (xy 157.186752 89.291118) (xy 157.341253 89.178866) (xy 157.341255 89.178864) (xy 157.469034 89.036951) (xy 157.469035 89.036949) (xy 157.46904 89.036944) (xy 157.564527 88.871556) (xy 157.587777 88.8) (xy 160.086496 88.8) (xy 160.106457 88.989927) (xy 160.123495 89.042362) (xy 160.165473 89.171556) (xy 160.179704 89.196204) (xy 160.260958 89.336941) (xy 160.260965 89.336951) (xy 160.388744 89.478864) (xy 160.415052 89.497978) (xy 160.543248 89.591118) (xy 160.717712 89.668794) (xy 160.904513 89.7085) (xy 161.095487 89.7085) (xy 161.282288 89.668794) (xy 161.456752 89.591118) (xy 161.611253 89.478866) (xy 161.611255 89.478864) (xy 161.739034 89.336951) (xy 161.739035 89.336949) (xy 161.73904 89.336944) (xy 161.834527 89.171556) (xy 161.893542 88.989928) (xy 161.913504 88.8) (xy 161.893542 88.610072) (xy 161.834527 88.428444) (xy 161.73904 88.263056) (xy 161.739038 88.263054) (xy 161.739034 88.263048) (xy 161.611255 88.121135) (xy 161.456752 88.008882) (xy 161.282288 87.931206) (xy 161.095487 87.8915) (xy 160.904513 87.8915) (xy 160.717711 87.931206) (xy 160.543247 88.008882) (xy 160.388744 88.121135) (xy 160.260965 88.263048) (xy 160.260958 88.263058) (xy 160.165476 88.428438) (xy 160.165473 88.428445) (xy 160.106457 88.610072) (xy 160.086496 88.8) (xy 157.587777 88.8) (xy 157.623542 88.689928) (xy 157.643504 88.5) (xy 157.623542 88.310072) (xy 157.564527 88.128444) (xy 157.46904 87.963056) (xy 157.469038 87.963054) (xy 157.469034 87.963048) (xy 157.341255 87.821135) (xy 157.186752 87.708882) (xy 157.012288 87.631206) (xy 156.825487 87.5915) (xy 156.634513 87.5915) (xy 156.447711 87.631206) (xy 156.273247 87.708882) (xy 156.118744 87.821135) (xy 155.990965 87.963048) (xy 155.990958 87.963058) (xy 155.895476 88.128438) (xy 155.895473 88.128444) (xy 155.891924 88.139367) (xy 155.836457 88.310072) (xy 155.816496 88.5) (xy 154.302681 88.5) (xy 148.713519 82.910838) (xy 148.713515 82.910834) (xy 148.589284 82.827826) (xy 148.451247 82.770649) (xy 148.377976 82.756074) (xy 148.377975 82.756073) (xy 148.304711 82.7415) (xy 148.304706 82.7415) (xy 146.872587 82.7415) (xy 146.804466 82.721498) (xy 146.798524 82.717435) (xy 146.786754 82.708883) (xy 146.612288 82.631206) (xy 146.425487 82.5915) (xy 146.234513 82.5915) (xy 146.047711 82.631206) (xy 145.873247 82.708882) (xy 145.718744 82.821135) (xy 145.590965 82.963048) (xy 145.590958 82.963058) (xy 145.495476 83.128438) (xy 145.495473 83.128445) (xy 145.436457 83.310072) (xy 145.416496 83.5) (xy 140.617179 83.5) (xy 140.665714 83.447277) (xy 140.665724 83.447265) (xy 140.755356 83.310072) (xy 140.78886 83.258791) (xy 140.879296 83.052616) (xy 140.934564 82.834368) (xy 140.953156 82.61) (xy 140.934564 82.385632) (xy 140.879296 82.167384) (xy 140.78886 81.961209) (xy 140.78214 81.950924) (xy 140.665724 81.772734) (xy 140.66572 81.772729) (xy 140.513237 81.607091) (xy 140.431382 81.543381) (xy 140.335576 81.468811) (xy 140.302319 81.450813) (xy 140.251929 81.400802) (xy 140.236576 81.331485) (xy 140.261136 81.264872) (xy 140.30232 81.229186) (xy 140.335576 81.211189) (xy 140.51324 81.072906) (xy 140.665722 80.907268) (xy 140.78886 80.718791) (xy 140.879296 80.512616) (xy 140.934564 80.294368) (xy 140.953156 80.07) (xy 140.934564 79.845632) (xy 140.88833 79.663058) (xy 140.879297 79.627387) (xy 140.879296 79.627386) (xy 140.879296 79.627384) (xy 140.78886 79.421209) (xy 140.704117 79.2915) (xy 140.665724 79.232734) (xy 140.66572 79.232729) (xy 140.513237 79.067091) (xy 140.431382 79.003381) (xy 140.335576 78.928811) (xy 140.302319 78.910813) (xy 140.251929 78.860802) (xy 140.236576 78.791485) (xy 140.261136 78.724872) (xy 140.30232 78.689186) (xy 140.335576 78.671189) (xy 140.51324 78.532906) (xy 140.665722 78.367268) (xy 140.78886 78.178791) (xy 140.879296 77.972616) (xy 140.934564 77.754368) (xy 140.953156 77.53) (xy 140.934564 77.305632) (xy 140.879296 77.087384) (xy 140.78886 76.881209) (xy 140.676024 76.7085) (xy 140.665724 76.692734) (xy 140.66572 76.692729) (xy 140.513237 76.527091) (xy 140.431382 76.463381) (xy 140.335576 76.388811) (xy 140.302319 76.370813) (xy 140.251929 76.320802) (xy 140.236576 76.251485) (xy 140.261136 76.184872) (xy 140.30232 76.149186) (xy 140.335576 76.131189) (xy 140.51324 75.992906) (xy 140.665722 75.827268) (xy 140.78886 75.638791) (xy 140.879296 75.432616) (xy 140.934564 75.214368) (xy 140.953156 74.99) (xy 140.934564 74.765632) (xy 140.879296 74.547384) (xy 140.78886 74.341209) (xy 140.702157 74.2085) (xy 140.665724 74.152734) (xy 140.665714 74.152722) (xy 140.522159 73.996782) (xy 140.490737 73.933117) (xy 140.498723 73.862571) (xy 140.543582 73.807542) (xy 140.570827 73.793388) (xy 140.685965 73.750444) (xy 140.802904 73.662904) (xy 140.890444 73.545965) (xy 140.890444 73.545964) (xy 140.941494 73.409093) (xy 140.947999 73.348597) (xy 140.948 73.348585) (xy 140.948 72.704) (xy 140.032251 72.704) (xy 140.065245 72.646853) (xy 140.1 72.517143) (xy 140.1 72.382857) (xy 140.065245 72.253147) (xy 140.032251 72.196) (xy 140.948 72.196) (xy 140.948 71.551414) (xy 140.947999 71.551402) (xy 140.941494 71.490906) (xy 140.890444 71.354035) (xy 140.890444 71.354034) (xy 140.802904 71.237095) (xy 140.685966 71.149556) (xy 140.570826 71.106611) (xy 140.513991 71.064064) (xy 140.48918 70.997543) (xy 140.490842 70.989903) (xy 145.8533 70.989903) (xy 145.8533 71.506097) (xy 145.88712 71.719629) (xy 145.887121 71.719632) (xy 145.934544 71.865586) (xy 145.953928 71.925241) (xy 146.038952 72.09211) (xy 146.05208 72.117874) (xy 146.065869 72.136853) (xy 146.179153 72.292775) (xy 146.179155 72.292777) (xy 146.179157 72.29278) (xy 146.332019 72.445642) (xy 146.332022 72.445644) (xy 146.332025 72.445647) (xy 146.506929 72.572722) (xy 146.699559 72.670872) (xy 146.905171 72.73768) (xy 147.118703 72.7715) (xy 147.118706 72.7715) (xy 147.334894 72.7715) (xy 147.334897 72.7715) (xy 147.548429 72.73768) (xy 147.754041 72.670872) (xy 147.946671 72.572722) (xy 148.121575 72.445647) (xy 148.274447 72.292775) (xy 148.394864 72.127035) (xy 148.451086 72.083681) (xy 148.521822 72.077606) (xy 148.584614 72.110737) (xy 148.598736 72.127035) (xy 148.719153 72.292775) (xy 148.719155 72.292777) (xy 148.719157 72.29278) (xy 148.872019 72.445642) (xy 148.872022 72.445644) (xy 148.872025 72.445647) (xy 149.046929 72.572722) (xy 149.172676 72.636793) (xy 149.22429 72.68554) (xy 149.241356 72.754455) (xy 149.218455 72.821657) (xy 149.204568 72.838154) (xy 149.145009 72.897713) (xy 149.145008 72.897715) (xy 149.057406 73.02882) (xy 148.997065 73.174497) (xy 148.997063 73.174502) (xy 148.9663 73.329155) (xy 148.9663 73.329158) (xy 148.9663 73.486842) (xy 148.997063 73.641497) (xy 149.057406 73.787179) (xy 149.145011 73.918289) (xy 149.256511 74.029789) (xy 149.387621 74.117394) (xy 149.533303 74.177737) (xy 149.687958 74.2085) (xy 149.687959 74.2085) (xy 149.845641 74.2085) (xy 149.845642 74.2085) (xy 150.000297 74.177737) (xy 150.145979 74.117394) (xy 150.277089 74.029789) (xy 150.388589 73.918289) (xy 150.476194 73.787179) (xy 150.536537 73.641497) (xy 150.5673 73.486842) (xy 150.5673 73.329158) (xy 150.536537 73.174503) (xy 150.476194 73.028821) (xy 150.388589 72.897711) (xy 150.329032 72.838154) (xy 150.295006 72.775842) (xy 150.300071 72.705027) (xy 150.342618 72.648191) (xy 150.360917 72.636796) (xy 150.486671 72.572722) (xy 150.661575 72.445647) (xy 150.814447 72.292775) (xy 150.934864 72.127035) (xy 150.991086 72.083681) (xy 151.061822 72.077606) (xy 151.124614 72.110737) (xy 151.138736 72.127035) (xy 151.259153 72.292775) (xy 151.259155 72.292777) (xy 151.259157 72.29278) (xy 151.412019 72.445642) (xy 151.412022 72.445644) (xy 151.412025 72.445647) (xy 151.586929 72.572722) (xy 151.779559 72.670872) (xy 151.985171 72.73768) (xy 152.198703 72.7715) (xy 152.198706 72.7715) (xy 152.414894 72.7715) (xy 152.414897 72.7715) (xy 152.628429 72.73768) (xy 152.834041 72.670872) (xy 153.026671 72.572722) (xy 153.201575 72.445647) (xy 153.285933 72.361288) (xy 153.348243 72.327265) (xy 153.419059 72.332329) (xy 153.475895 72.374875) (xy 153.493083 72.406352) (xy 153.531356 72.508966) (xy 153.618895 72.625904) (xy 153.735834 72.713444) (xy 153.872706 72.764494) (xy 153.933202 72.770999) (xy 153.933215 72.771) (xy 154.5928 72.771) (xy 154.5928 71.69025) (xy 154.649947 71.723245) (xy 154.779657 71.758) (xy 154.913943 71.758) (xy 155.043653 71.723245) (xy 155.1008 71.69025) (xy 155.1008 72.771) (xy 155.760385 72.771) (xy 155.760397 72.770999) (xy 155.820893 72.764494) (xy 155.957764 72.713444) (xy 155.957765 72.713444) (xy 156.074704 72.625904) (xy 156.162244 72.508965) (xy 156.162244 72.508964) (xy 156.213294 72.372093) (xy 156.219799 72.311597) (xy 156.2198 72.311585) (xy 156.2198 71.502) (xy 155.289051 71.502) (xy 155.322045 71.444853) (xy 155.3568 71.315143) (xy 155.3568 71.180857) (xy 155.322045 71.051147) (xy 155.289051 70.994) (xy 156.2198 70.994) (xy 156.2198 70.184414) (xy 156.219799 70.184402) (xy 156.213294 70.123906) (xy 156.162244 69.987035) (xy 156.162244 69.987034) (xy 156.074704 69.870095) (xy 155.957765 69.782555) (xy 155.820893 69.731505) (xy 155.760397 69.725) (xy 155.1008 69.725) (xy 155.1008 70.805749) (xy 155.043653 70.772755) (xy 154.913943 70.738) (xy 154.779657 70.738) (xy 154.649947 70.772755) (xy 154.5928 70.805749) (xy 154.5928 69.725) (xy 154.258978 69.725) (xy 154.190857 69.704998) (xy 154.144364 69.651342) (xy 154.13426 69.581068) (xy 154.163754 69.516488) (xy 154.169883 69.509905) (xy 154.234383 69.445405) (xy 154.296695 69.411379) (xy 154.323478 69.4085) (xy 161.476522 69.4085) (xy 161.544643 69.428502) (xy 161.565617 69.445405) (xy 161.859451 69.739239) (xy 161.893477 69.801551) (xy 161.888412 69.872366) (xy 161.845865 69.929202) (xy 161.779345 69.954013) (xy 161.709971 69.938922) (xy 161.696295 69.93027) (xy 161.686674 69.92328) (xy 161.686673 69.923279) (xy 161.686671 69.923278) (xy 161.494041 69.825128) (xy 161.49404 69.825127) (xy 161.494039 69.825127) (xy 161.288432 69.758321) (xy 161.288429 69.75832) (xy 161.074897 69.7245) (xy 160.858703 69.7245) (xy 160.645171 69.75832) (xy 160.645168 69.75832) (xy 160.645167 69.758321) (xy 160.43956 69.825127) (xy 160.246925 69.92328) (xy 160.072022 70.050355) (xy 160.072019 70.050357) (xy 159.919154 70.203222) (xy 159.798736 70.368964) (xy 159.742513 70.412318) (xy 159.671777 70.418393) (xy 159.608986 70.385261) (xy 159.594864 70.368964) (xy 159.474445 70.203222) (xy 159.32158 70.050357) (xy 159.321577 70.050355) (xy 159.321575 70.050353) (xy 159.146671 69.923278) (xy 158.954041 69.825128) (xy 158.95404 69.825127) (xy 158.954039 69.825127) (xy 158.748432 69.758321) (xy 158.748429 69.75832) (xy 158.534897 69.7245) (xy 158.318703 69.7245) (xy 158.105171 69.75832) (xy 158.105168 69.75832) (xy 158.105167 69.758321) (xy 157.89956 69.825127) (xy 157.706925 69.92328) (xy 157.532022 70.050355) (xy 157.532019 70.050357) (xy 157.379157 70.203219) (xy 157.379155 70.203222) (xy 157.25208 70.378125) (xy 157.153927 70.57076) (xy 157.096575 70.747271) (xy 157.08712 70.776371) (xy 157.0533 70.989903) (xy 157.0533 71.506097) (xy 157.08712 71.719629) (xy 157.087121 71.719632) (xy 157.134544 71.865586) (xy 157.153928 71.925241) (xy 157.238952 72.09211) (xy 157.25208 72.117874) (xy 157.265869 72.136853) (xy 157.379153 72.292775) (xy 157.379155 72.292777) (xy 157.379157 72.29278) (xy 157.532019 72.445642) (xy 157.532022 72.445644) (xy 157.532025 72.445647) (xy 157.706929 72.572722) (xy 157.899559 72.670872) (xy 158.105171 72.73768) (xy 158.318703 72.7715) (xy 158.318706 72.7715) (xy 158.534894 72.7715) (xy 158.534897 72.7715) (xy 158.748429 72.73768) (xy 158.954041 72.670872) (xy 159.146671 72.572722) (xy 159.321575 72.445647) (xy 159.474447 72.292775) (xy 159.594864 72.127035) (xy 159.651086 72.083681) (xy 159.721822 72.077606) (xy 159.784614 72.110737) (xy 159.798736 72.127035) (xy 159.919153 72.292775) (xy 159.919155 72.292777) (xy 159.919157 72.29278) (xy 160.072019 72.445642) (xy 160.072022 72.445644) (xy 160.072025 72.445647) (xy 160.246929 72.572722) (xy 160.372676 72.636793) (xy 160.42429 72.68554) (xy 160.441356 72.754455) (xy 160.418455 72.821657) (xy 160.404568 72.838154) (xy 160.345009 72.897713) (xy 160.345008 72.897715) (xy 160.257406 73.02882) (xy 160.197065 73.174497) (xy 160.197063 73.174502) (xy 160.1663 73.329155) (xy 160.1663 73.329158) (xy 160.1663 73.486842) (xy 160.197063 73.641497) (xy 160.257406 73.787179) (xy 160.345011 73.918289) (xy 160.456511 74.029789) (xy 160.587621 74.117394) (xy 160.733303 74.177737) (xy 160.887958 74.2085) (xy 160.887959 74.2085) (xy 161.045641 74.2085) (xy 161.045642 74.2085) (xy 161.200297 74.177737) (xy 161.345979 74.117394) (xy 161.477089 74.029789) (xy 161.588589 73.918289) (xy 161.676194 73.787179) (xy 161.736537 73.641497) (xy 161.7673 73.486842) (xy 161.7673 73.329158) (xy 161.736537 73.174503) (xy 161.676194 73.028821) (xy 161.588589 72.897711) (xy 161.529032 72.838154) (xy 161.495006 72.775842) (xy 161.500071 72.705027) (xy 161.542618 72.648191) (xy 161.560917 72.636796) (xy 161.686671 72.572722) (xy 161.861575 72.445647) (xy 162.014447 72.292775) (xy 162.020363 72.284632) (xy 162.076583 72.241277) (xy 162.147319 72.2352) (xy 162.210112 72.26833) (xy 162.245025 72.330149) (xy 162.2483 72.358691) (xy 162.2483 101.775846) (xy 162.272255 101.927094) (xy 162.279289 101.971505) (xy 162.3405 102.159893) (xy 162.402077 102.280744) (xy 162.430435 102.3364) (xy 162.546871 102.49666) (xy 162.546874 102.496663) (xy 171.834595 111.784383) (xy 171.868621 111.846695) (xy 171.8715 111.873478) (xy 171.8715 117.363355) (xy 171.851498 117.431476) (xy 171.797842 117.477969) (xy 171.727568 117.488073) (xy 171.662988 117.458579) (xy 171.6528 117.448693) (xy 171.51324 117.297094) (xy 171.513236 117.297091) (xy 171.335576 117.158811) (xy 171.137574 117.051658) (xy 171.137572 117.051657) (xy 171.137571 117.051656) (xy 170.924639 116.978557) (xy 170.92463 116.978555) (xy 170.880476 116.971187) (xy 170.702569 116.9415) (xy 170.477431 116.9415) (xy 170.329211 116.966233) (xy 170.255369 116.978555) (xy 170.25536 116.978557) (xy 170.042428 117.051656) (xy 170.042426 117.051658) (xy 169.844426 117.15881) (xy 169.844424 117.158811) (xy 169.666762 117.297091) (xy 169.514279 117.462729) (xy 169.514275 117.462734) (xy 169.391141 117.651206) (xy 169.300703 117.857386) (xy 169.300702 117.857387) (xy 169.245437 118.075624) (xy 169.245436 118.07563) (xy 169.245436 118.075632) (xy 169.226844 118.3) (xy 169.243604 118.502262) (xy 169.245437 118.524375) (xy 169.300702 118.742612) (xy 169.300703 118.742613) (xy 169.391141 118.948793) (xy 169.514275 119.137265) (xy 169.514279 119.13727) (xy 169.666762 119.302908) (xy 169.68626 119.318084) (xy 169.844424 119.441189) (xy 170.042426 119.548342) (xy 170.042427 119.548342) (xy 170.042428 119.548343) (xy 170.154227 119.586723) (xy 170.255365 119.621444) (xy 170.477431 119.6585) (xy 170.477435 119.6585) (xy 170.702565 119.6585) (xy 170.702569 119.6585) (xy 170.924635 119.621444) (xy 171.137574 119.548342) (xy 171.335576 119.441189) (xy 171.51324 119.302906) (xy 171.665722 119.137268) (xy 171.754518 119.001354) (xy 171.80852 118.955268) (xy 171.878868 118.945692) (xy 171.943225 118.975669) (xy 171.96548 119.001353) (xy 171.998607 119.052058) (xy 172.054275 119.137265) (xy 172.054279 119.13727) (xy 172.206762 119.302908) (xy 172.22626 119.318084) (xy 172.384424 119.441189) (xy 172.582426 119.548342) (xy 172.582427 119.548342) (xy 172.582428 119.548343) (xy 172.694227 119.586723) (xy 172.795365 119.621444) (xy 173.017431 119.6585) (xy 173.017435 119.6585) (xy 173.242565 119.6585) (xy 173.242569 119.6585) (xy 173.464635 119.621444) (xy 173.677574 119.548342) (xy 173.875576 119.441189) (xy 174.05324 119.302906) (xy 174.114245 119.236637) (xy 174.175096 119.200067) (xy 174.246061 119.2022) (xy 174.304606 119.242362) (xy 174.325 119.277941) (xy 174.369111 119.396204) (xy 174.369112 119.396207) (xy 174.456738 119.513261) (xy 174.573792 119.600887) (xy 174.573794 119.600888) (xy 174.573796 119.600889) (xy 174.6289 119.621442) (xy 174.710795 119.651988) (xy 174.710803 119.65199) (xy 174.77135 119.658499) (xy 174.771355 119.658499) (xy 174.771362 119.6585) (xy 174.983199 119.6585) (xy 175.040401 119.672233) (xy 175.090929 119.697978) (xy 175.090937 119.697982) (xy 175.316759 119.771356) (xy 175.551278 119.8085) (xy 176.376061 119.8085) (xy 176.376085 119.808501) (xy 176.381278 119.808501) (xy 176.618719 119.808501) (xy 176.618722 119.808501) (xy 176.853241 119.771356) (xy 177.079063 119.697982) (xy 177.290627 119.590185) (xy 177.482722 119.45062) (xy 177.65062 119.282722) (xy 177.657793 119.275549) (xy 177.657804 119.275535) (xy 185.575535 111.357804) (xy 185.575549 111.357793) (xy 185.750615 111.182727) (xy 185.75062 111.182722) (xy 185.890185 110.990627) (xy 185.997982 110.779063) (xy 186.071356 110.553241) (xy 186.100276 110.370649) (xy 186.108501 110.318722) (xy 186.108501 110.081278) (xy 186.108501 110.076821) (xy 186.1085 110.076791) (xy 186.1085 96.473939) (xy 186.108501 96.473914) (xy 186.108501 96.231281) (xy 186.108501 96.231278) (xy 186.071356 95.996759) (xy 185.997982 95.770937) (xy 185.890185 95.559373) (xy 185.840872 95.4915) (xy 185.75062 95.367278) (xy 185.750617 95.367275) (xy 185.750615 95.367272) (xy 185.579576 95.196233) (xy 185.579545 95.196204) (xy 180.583341 90.2) (xy 181.716496 90.2) (xy 181.736457 90.389927) (xy 181.766526 90.48247) (xy 181.795473 90.571556) (xy 181.811895 90.599999) (xy 181.890958 90.736941) (xy 181.890965 90.736951) (xy 182.018744 90.878864) (xy 182.018747 90.878866) (xy 182.173248 90.991118) (xy 182.347712 91.068794) (xy 182.534513 91.1085) (xy 182.725487 91.1085) (xy 182.912288 91.068794) (xy 183.086752 90.991118) (xy 183.241253 90.878866) (xy 183.36904 90.736944) (xy 183.464527 90.571556) (xy 183.523542 90.389928) (xy 183.543504 90.2) (xy 183.523542 90.010072) (xy 183.464527 89.828444) (xy 183.36904 89.663056) (xy 183.369038 89.663054) (xy 183.369034 89.663048) (xy 183.241255 89.521135) (xy 183.086752 89.408882) (xy 182.912288 89.331206) (xy 182.725487 89.2915) (xy 182.534513 89.2915) (xy 182.347711 89.331206) (xy 182.173247 89.408882) (xy 182.018744 89.521135) (xy 181.890965 89.663048) (xy 181.890958 89.663058) (xy 181.795476 89.828438) (xy 181.795473 89.828445) (xy 181.736457 90.010072) (xy 181.716496 90.2) (xy 180.583341 90.2) (xy 177.50503 87.121689) (xy 177.50501 87.121667) (xy 177.332727 86.949384) (xy 177.332724 86.949382) (xy 177.332722 86.94938) (xy 177.140627 86.809815) (xy 176.929063 86.702018) (xy 176.92906 86.702017) (xy 176.929058 86.702016) (xy 176.703245 86.628645) (xy 176.703243 86.628644) (xy 176.703241 86.628644) (xy 176.468722 86.591499) (xy 176.231278 86.591499) (xy 176.226085 86.591499) (xy 176.226061 86.5915) (xy 173.091278 86.5915) (xy 172.856759 86.628644) (xy 172.856753 86.628645) (xy 172.630941 86.702016) (xy 172.630929 86.702021) (xy 172.580401 86.727767) (xy 172.523199 86.7415) (xy 172.31135 86.7415) (xy 172.250803 86.748009) (xy 172.250795 86.748011) (xy 172.113797 86.79911) (xy 172.113792 86.799112) (xy 171.996738 86.886738) (xy 171.909112 87.003792) (xy 171.909111 87.003795) (xy 171.865 87.122058) (xy 171.822453 87.178893) (xy 171.755932 87.203703) (xy 171.686558 87.188611) (xy 171.654246 87.163363) (xy 171.59324 87.097094) (xy 171.593239 87.097093) (xy 171.593237 87.097091) (xy 171.473372 87.003796) (xy 171.415576 86.958811) (xy 171.217574 86.851658) (xy 171.217572 86.851657) (xy 171.217571 86.851656) (xy 171.004639 86.778557) (xy 171.00463 86.778555) (xy 170.960476 86.771187) (xy 170.782569 86.7415) (xy 170.557431 86.7415) (xy 170.409211 86.766233) (xy 170.335369 86.778555) (xy 170.33536 86.778557) (xy 170.122428 86.851656) (xy 170.122426 86.851658) (xy 169.941896 86.949356) (xy 169.924426 86.95881) (xy 169.924424 86.958811) (xy 169.746762 87.097091) (xy 169.594279 87.262729) (xy 169.505483 87.398643) (xy 169.451479 87.444731) (xy 169.381131 87.454306) (xy 169.316774 87.424329) (xy 169.294517 87.398643) (xy 169.20572 87.262729) (xy 169.076221 87.122058) (xy 169.05324 87.097094) (xy 169.053239 87.097093) (xy 169.053237 87.097091) (xy 168.933372 87.003796) (xy 168.875576 86.958811) (xy 168.677574 86.851658) (xy 168.677572 86.851657) (xy 168.677571 86.851656) (xy 168.464639 86.778557) (xy 168.46463 86.778555) (xy 168.420476 86.771187) (xy 168.242569 86.7415) (xy 168.017431 86.7415) (xy 167.869211 86.766233) (xy 167.795369 86.778555) (xy 167.79536 86.778557) (xy 167.582428 86.851656) (xy 167.582426 86.851658) (xy 167.401896 86.949356) (xy 167.384426 86.95881) (xy 167.384424 86.958811) (xy 167.206762 87.097091) (xy 167.054279 87.262729) (xy 167.054275 87.262734) (xy 166.931141 87.451206) (xy 166.840703 87.657386) (xy 166.840702 87.657387) (xy 166.785437 87.875624) (xy 166.785436 87.87563) (xy 166.785436 87.875632) (xy 166.766844 88.1) (xy 166.784251 88.310072) (xy 166.785437 88.324375) (xy 166.840702 88.542612) (xy 166.840703 88.542613) (xy 166.931141 88.748793) (xy 167.054275 88.937265) (xy 167.054279 88.93727) (xy 167.206762 89.102908) (xy 167.261331 89.145381) (xy 167.384424 89.241189) (xy 167.582426 89.348342) (xy 167.582427 89.348342) (xy 167.582428 89.348343) (xy 167.694227 89.386723) (xy 167.795365 89.421444) (xy 168.017431 89.4585) (xy 168.017435 89.4585) (xy 168.242565 89.4585) (xy 168.242569 89.4585) (xy 168.464635 89.421444) (xy 168.677574 89.348342) (xy 168.875576 89.241189) (xy 169.05324 89.102906) (xy 169.205722 88.937268) (xy 169.294518 88.801354) (xy 169.34852 88.755268) (xy 169.418868 88.745692) (xy 169.483225 88.775669) (xy 169.50548 88.801353) (xy 169.524973 88.831188) (xy 169.594275 88.937265) (xy 169.594279 88.93727) (xy 169.746762 89.102908) (xy 169.801331 89.145381) (xy 169.924424 89.241189) (xy 170.122426 89.348342) (xy 170.122427 89.348342) (xy 170.122428 89.348343) (xy 170.234227 89.386723) (xy 170.335365 89.421444) (xy 170.557431 89.4585) (xy 170.557435 89.4585) (xy 170.782565 89.4585) (xy 170.782569 89.4585) (xy 171.004635 89.421444) (xy 171.217574 89.348342) (xy 171.415576 89.241189) (xy 171.59324 89.102906) (xy 171.654245 89.036637) (xy 171.715096 89.000067) (xy 171.786061 89.0022) (xy 171.844606 89.042362) (xy 171.865 89.077941) (xy 171.909111 89.196204) (xy 171.909112 89.196207) (xy 171.996738 89.313261) (xy 172.113792 89.400887) (xy 172.113794 89.400888) (xy 172.113796 89.400889) (xy 172.134202 89.4085) (xy 172.250795 89.451988) (xy 172.250803 89.45199) (xy 172.31135 89.458499) (xy 172.311355 89.458499) (xy 172.311362 89.4585) (xy 172.523199 89.4585) (xy 172.580401 89.472233) (xy 172.614007 89.489356) (xy 172.630937 89.497982) (xy 172.856759 89.571356) (xy 173.091278 89.6085) (xy 175.672969 89.6085) (xy 175.74109 89.628502) (xy 175.762064 89.645405) (xy 183.054595 96.937936) (xy 183.088621 97.000248) (xy 183.0915 97.027031) (xy 183.0915 97.567759) (xy 183.071498 97.63588) (xy 183.017842 97.682373) (xy 182.94757 97.692476) (xy 182.906 97.6865) (xy 182.905997 97.6865) (xy 181.233096 97.6865) (xy 181.164975 97.666498) (xy 181.118482 97.612842) (xy 181.108378 97.542568) (xy 181.113263 97.521563) (xy 181.123542 97.489927) (xy 181.12859 97.441898) (xy 181.143504 97.3) (xy 181.123542 97.110072) (xy 181.064527 96.928444) (xy 180.96904 96.763056) (xy 180.969038 96.763054) (xy 180.969034 96.763048) (xy 180.841255 96.621135) (xy 180.686752 96.508882) (xy 180.512288 96.431206) (xy 180.325487 96.3915) (xy 180.134513 96.3915) (xy 179.947711 96.431206) (xy 179.773245 96.508883) (xy 179.761476 96.517435) (xy 179.694609 96.541294) (xy 179.687413 96.5415) (xy 176.455288 96.5415) (xy 176.382024 96.556073) (xy 176.382024 96.556074) (xy 176.345388 96.563361) (xy 176.308752 96.570649) (xy 176.308748 96.57065) (xy 176.258414 96.591499) (xy 176.258415 96.5915) (xy 176.170714 96.627827) (xy 176.140507 96.648011) (xy 176.046488 96.710832) (xy 176.046481 96.710837) (xy 175.240838 97.51648) (xy 175.240833 97.516486) (xy 175.157827 97.640714) (xy 175.130246 97.707301) (xy 175.130245 97.707302) (xy 175.100652 97.778742) (xy 175.100649 97.778752) (xy 175.0715 97.92529) (xy 175.0715 111.174707) (xy 175.098189 111.308882) (xy 175.100649 111.321247) (xy 175.157826 111.459284) (xy 175.240834 111.583515) (xy 175.240838 111.583519) (xy 175.909874 112.252555) (xy 175.940612 112.302713) (xy 175.995473 112.471556) (xy 175.995476 112.471561) (xy 176.090958 112.636941) (xy 176.090965 112.636951) (xy 176.218744 112.778864) (xy 176.218747 112.778866) (xy 176.373248 112.891118) (xy 176.547712 112.968794) (xy 176.734513 113.0085) (xy 176.925487 113.0085) (xy 177.112288 112.968794) (xy 177.286752 112.891118) (xy 177.441253 112.778866) (xy 177.56904 112.636944) (xy 177.664527 112.471556) (xy 177.723542 112.289928) (xy 177.743504 112.1) (xy 177.723542 111.910072) (xy 177.664527 111.728444) (xy 177.56904 111.563056) (xy 177.569038 111.563054) (xy 177.569034 111.563048) (xy 177.441255 111.421135) (xy 177.286752 111.308882) (xy 177.112288 111.231206) (xy 177.049227 111.217801) (xy 176.986754 111.184072) (xy 176.986331 111.18365) (xy 176.625405 110.822724) (xy 176.591379 110.760412) (xy 176.5885 110.733629) (xy 176.5885 101.020738) (xy 176.608502 100.952617) (xy 176.662158 100.906124) (xy 176.732426 100.89602) (xy 176.854 100.9135) (xy 182.905995 100.9135) (xy 182.906 100.9135) (xy 182.95203 100.908551) (xy 183.021899 100.921156) (xy 183.073861 100.969534) (xy 183.0915 101.033829) (xy 183.0915 102.564883) (xy 183.071498 102.633004) (xy 183.017842 102.679497) (xy 182.947571 102.689601) (xy 182.926 102.6865) (xy 180.574 102.6865) (xy 180.573992 102.6865) (xy 180.480104 102.696595) (xy 180.464843 102.698236) (xy 180.464841 102.698236) (xy 180.464835 102.698237) (xy 180.413332 102.709441) (xy 180.309174 102.744109) (xy 180.186215 102.82313) (xy 180.186213 102.823131) (xy 180.133417 102.86888) (xy 180.037704 102.979337) (xy 180.037703 102.979338) (xy 179.976986 103.112284) (xy 179.957302 103.17932) (xy 179.957301 103.179324) (xy 179.957301 103.179326) (xy 179.9573 103.17933) (xy 179.947355 103.248505) (xy 179.9365 103.324003) (xy 179.9365 108.876007) (xy 179.948237 108.985164) (xy 179.959441 109.036667) (xy 179.994109 109.140825) (xy 179.99411 109.140827) (xy 180.009044 109.164064) (xy 180.07313 109.263784) (xy 180.073131 109.263786) (xy 180.11888 109.316582) (xy 180.118882 109.316583) (xy 180.118884 109.316586) (xy 180.229339 109.412297) (xy 180.308416 109.448411) (xy 180.362284 109.473013) (xy 180.362286 109.473013) (xy 180.362287 109.473014) (xy 180.429326 109.492699) (xy 180.42933 109.4927) (xy 180.574 109.5135) (xy 180.574004 109.5135) (xy 182.848969 109.5135) (xy 182.91709 109.533502) (xy 182.963583 109.587158) (xy 182.973687 109.657432) (xy 182.944193 109.722012) (xy 182.938064 109.728595) (xy 175.912064 116.754595) (xy 175.849752 116.788621) (xy 175.822969 116.7915) (xy 175.551278 116.7915) (xy 175.316759 116.828644) (xy 175.316753 116.828645) (xy 175.090941 116.902016) (xy 175.090929 116.902021) (xy 175.040401 116.927767) (xy 174.983199 116.9415) (xy 174.77135 116.9415) (xy 174.710803 116.948009) (xy 174.710795 116.948011) (xy 174.565353 117.00226) (xy 174.564777 117.000717) (xy 174.505497 117.013606) (xy 174.43898 116.988788) (xy 174.396439 116.931947) (xy 174.3885 116.887928) (xy 174.3885 111.200957) (xy 174.385613 111.182727) (xy 174.357512 111.0053) (xy 174.296298 110.816903) (xy 174.206366 110.640402) (xy 174.08993 110.480142) (xy 173.949858 110.34007) (xy 164.802205 101.192417) (xy 164.768179 101.130105) (xy 164.7653 101.103322) (xy 164.7653 97.000138) (xy 164.785302 96.932017) (xy 164.838958 96.885524) (xy 164.909232 96.87542) (xy 164.96536 96.898201) (xy 165.093248 96.991118) (xy 165.267712 97.068794) (xy 165.454513 97.1085) (xy 165.645487 97.1085) (xy 165.832288 97.068794) (xy 166.006752 96.991118) (xy 166.161253 96.878866) (xy 166.164356 96.87542) (xy 166.289034 96.736951) (xy 166.289035 96.736949) (xy 166.28904 96.736944) (xy 166.384527 96.571556) (xy 166.443542 96.389928) (xy 166.463504 96.2) (xy 166.443542 96.010072) (xy 166.384527 95.828444) (xy 166.28904 95.663056) (xy 166.289038 95.663054) (xy 166.289034 95.663048) (xy 166.161255 95.521135) (xy 166.006752 95.408882) (xy 165.832288 95.331206) (xy 165.645487 95.2915) (xy 165.454513 95.2915) (xy 165.267711 95.331206) (xy 165.093247 95.408882) (xy 164.965361 95.501797) (xy 164.898493 95.525656) (xy 164.829341 95.509575) (xy 164.779861 95.458661) (xy 164.7653 95.399861) (xy 164.7653 85) (xy 181.716496 85) (xy 181.736457 85.189927) (xy 181.766526 85.28247) (xy 181.795473 85.371556) (xy 181.795476 85.371561) (xy 181.890958 85.536941) (xy 181.890965 85.536951) (xy 182.018744 85.678864) (xy 182.018747 85.678866) (xy 182.173248 85.791118) (xy 182.347712 85.868794) (xy 182.534513 85.9085) (xy 182.725487 85.9085) (xy 182.912288 85.868794) (xy 183.086752 85.791118) (xy 183.241253 85.678866) (xy 183.312834 85.599367) (xy 183.369034 85.536951) (xy 183.369035 85.536949) (xy 183.36904 85.536944) (xy 183.464527 85.371556) (xy 183.523542 85.189928) (xy 183.543504 85) (xy 183.523542 84.810072) (xy 183.464527 84.628444) (xy 183.36904 84.463056) (xy 183.369038 84.463054) (xy 183.369034 84.463048) (xy 183.241255 84.321135) (xy 183.086752 84.208882) (xy 182.912288 84.131206) (xy 182.725487 84.0915) (xy 182.534513 84.0915) (xy 182.347711 84.131206) (xy 182.173247 84.208882) (xy 182.018744 84.321135) (xy 181.890965 84.463048) (xy 181.890958 84.463058) (xy 181.795476 84.628438) (xy 181.795473 84.628445) (xy 181.736457 84.810072) (xy 181.716496 85) (xy 164.7653 85) (xy 164.7653 80.2) (xy 180.616496 80.2) (xy 180.636457 80.389927) (xy 180.666526 80.48247) (xy 180.695473 80.571556) (xy 180.695476 80.571561) (xy 180.790958 80.736941) (xy 180.790965 80.736951) (xy 180.918744 80.878864) (xy 180.918747 80.878866) (xy 181.073248 80.991118) (xy 181.247712 81.068794) (xy 181.434513 81.1085) (xy 181.625487 81.1085) (xy 181.812288 81.068794) (xy 181.986752 80.991118) (xy 182.141253 80.878866) (xy 182.26904 80.736944) (xy 182.364527 80.571556) (xy 182.423542 80.389928) (xy 182.443504 80.2) (xy 182.423542 80.010072) (xy 182.364527 79.828444) (xy 182.26904 79.663056) (xy 182.269038 79.663054) (xy 182.269034 79.663048) (xy 182.141255 79.521135) (xy 181.986752 79.408882) (xy 181.812288 79.331206) (xy 181.625487 79.2915) (xy 181.434513 79.2915) (xy 181.247711 79.331206) (xy 181.073247 79.408882) (xy 180.918744 79.521135) (xy 180.790965 79.663048) (xy 180.790958 79.663058) (xy 180.695476 79.828438) (xy 180.695473 79.828445) (xy 180.636457 80.010072) (xy 180.616496 80.2) (xy 164.7653 80.2) (xy 164.7653 75.5) (xy 167.516496 75.5) (xy 167.536457 75.689927) (xy 167.566526 75.78247) (xy 167.595473 75.871556) (xy 167.595476 75.871561) (xy 167.690958 76.036941) (xy 167.690965 76.036951) (xy 167.818744 76.178864) (xy 167.846734 76.1992) (xy 167.973248 76.291118) (xy 168.147712 76.368794) (xy 168.334513 76.4085) (xy 168.525487 76.4085) (xy 168.712288 76.368794) (xy 168.886752 76.291118) (xy 169.041253 76.178866) (xy 169.041255 76.178864) (xy 169.169034 76.036951) (xy 169.169035 76.036949) (xy 169.16904 76.036944) (xy 169.264527 75.871556) (xy 169.287777 75.8) (xy 180.616496 75.8) (xy 180.636457 75.989927) (xy 180.666526 76.08247) (xy 180.695473 76.171556) (xy 180.703161 76.184872) (xy 180.790958 76.336941) (xy 180.790965 76.336951) (xy 180.918744 76.478864) (xy 180.918747 76.478866) (xy 181.073248 76.591118) (xy 181.247712 76.668794) (xy 181.434513 76.7085) (xy 181.625487 76.7085) (xy 181.812288 76.668794) (xy 181.986752 76.591118) (xy 182.141253 76.478866) (xy 182.22234 76.38881) (xy 182.269034 76.336951) (xy 182.269035 76.336949) (xy 182.26904 76.336944) (xy 182.364527 76.171556) (xy 182.423542 75.989928) (xy 182.443504 75.8) (xy 182.423542 75.610072) (xy 182.364527 75.428444) (xy 182.26904 75.263056) (xy 182.269038 75.263054) (xy 182.269034 75.263048) (xy 182.141255 75.121135) (xy 181.986752 75.008882) (xy 181.812288 74.931206) (xy 181.625487 74.8915) (xy 181.434513 74.8915) (xy 181.247711 74.931206) (xy 181.073247 75.008882) (xy 180.918744 75.121135) (xy 180.790965 75.263048) (xy 180.790958 75.263058) (xy 180.763815 75.310072) (xy 180.695473 75.428444) (xy 180.680999 75.472986) (xy 180.636457 75.610072) (xy 180.616496 75.8) (xy 169.287777 75.8) (xy 169.323542 75.689928) (xy 169.343504 75.5) (xy 169.323542 75.310072) (xy 169.264527 75.128444) (xy 169.16904 74.963056) (xy 169.169038 74.963054) (xy 169.169034 74.963048) (xy 169.041255 74.821135) (xy 168.886752 74.708882) (xy 168.712288 74.631206) (xy 168.525487 74.5915) (xy 168.334513 74.5915) (xy 168.147711 74.631206) (xy 167.973247 74.708882) (xy 167.818744 74.821135) (xy 167.690965 74.963048) (xy 167.690958 74.963058) (xy 167.595476 75.128438) (xy 167.595473 75.128445) (xy 167.536457 75.310072) (xy 167.516496 75.5) (xy 164.7653 75.5) (xy 164.7653 72.831312) (xy 164.785302 72.763191) (xy 164.838958 72.716698) (xy 164.909232 72.706594) (xy 164.935333 72.713257) (xy 165.072703 72.764494) (xy 165.133202 72.770999) (xy 165.133215 72.771) (xy 165.7928 72.771) (xy 165.7928 71.69025) (xy 165.849947 71.723245) (xy 165.979657 71.758) (xy 166.113943 71.758) (xy 166.243653 71.723245) (xy 166.3008 71.69025) (xy 166.3008 72.771) (xy 166.960385 72.771) (xy 166.960397 72.770999) (xy 167.020893 72.764494) (xy 167.157764 72.713444) (xy 167.157765 72.713444) (xy 167.274704 72.625904) (xy 167.362244 72.508965) (xy 167.362244 72.508964) (xy 167.402885 72.4) (xy 169.11693 72.4) (xy 169.13718 72.670227) (xy 169.19748 72.934413) (xy 169.197481 72.934416) (xy 169.29648 73.186664) (xy 169.431968 73.421335) (xy 169.484092 73.486696) (xy 169.484093 73.486696) (xy 170.327301 72.643488) (xy 170.353978 72.70789) (xy 170.425112 72.814351) (xy 170.515649 72.904888) (xy 170.62211 72.976022) (xy 170.68651 73.002698) (xy 169.842455 73.846752) (xy 169.842455 73.846753) (xy 170.023469 73.970167) (xy 170.02347 73.970168) (xy 170.267602 74.087735) (xy 170.526547 74.167611) (xy 170.526555 74.167612) (xy 170.794513 74.208) (xy 171.065487 74.208) (xy 171.333444 74.167612) (xy 171.333452 74.167611) (xy 171.592397 74.087735) (xy 171.836529 73.970168) (xy 171.83653 73.970167) (xy 172.017544 73.846753) (xy 171.173489 73.002698) (xy 171.23789 72.976022) (xy 171.344351 72.904888) (xy 171.434888 72.814351) (xy 171.506022 72.70789) (xy 171.532698 72.643489) (xy 172.375906 73.486697) (xy 172.375907 73.486696) (xy 172.428025 73.421343) (xy 172.428031 73.421335) (xy 172.563519 73.186664) (xy 172.662518 72.934416) (xy 172.662519 72.934413) (xy 172.722819 72.670227) (xy 172.743069 72.4) (xy 172.722819 72.129772) (xy 172.662519 71.865586) (xy 172.662518 71.865583) (xy 172.563519 71.613335) (xy 172.428031 71.378664) (xy 172.375906 71.313302) (xy 172.375905 71.313302) (xy 171.532697 72.156509) (xy 171.506022 72.09211) (xy 171.434888 71.985649) (xy 171.344351 71.895112) (xy 171.23789 71.823978) (xy 171.173488 71.797301) (xy 171.919439 71.05135) (xy 174.1215 71.05135) (xy 174.1215 73.748649) (xy 174.128009 73.809196) (xy 174.128011 73.809204) (xy 174.17911 73.946202) (xy 174.179112 73.946207) (xy 174.266738 74.063261) (xy 174.383792 74.150887) (xy 174.383794 74.150888) (xy 174.383796 74.150889) (xy 174.428629 74.167611) (xy 174.520795 74.201988) (xy 174.520803 74.20199) (xy 174.58135 74.208499) (xy 174.581355 74.208499) (xy 174.581362 74.2085) (xy 174.581368 74.2085) (xy 177.278632 74.2085) (xy 177.278638 74.2085) (xy 177.278645 74.208499) (xy 177.278649 74.208499) (xy 177.339196 74.20199) (xy 177.339199 74.201989) (xy 177.339201 74.201989) (xy 177.476204 74.150889) (xy 177.52095 74.117393) (xy 177.593261 74.063261) (xy 177.680887 73.946207) (xy 177.680887 73.946206) (xy 177.680889 73.946204) (xy 177.731989 73.809201) (xy 177.732168 73.807542) (xy 177.738499 73.748649) (xy 177.7385 73.748632) (xy 177.7385 71.051367) (xy 177.738499 71.05135) (xy 177.73199 70.990803) (xy 177.731988 70.990795) (xy 177.680889 70.853797) (xy 177.680887 70.853792) (xy 177.593261 70.736738) (xy 177.476207 70.649112) (xy 177.476202 70.64911) (xy 177.339204 70.598011) (xy 177.339196 70.598009) (xy 177.278649 70.5915) (xy 177.278638 70.5915) (xy 174.581362 70.5915) (xy 174.58135 70.5915) (xy 174.520803 70.598009) (xy 174.520795 70.598011) (xy 174.383797 70.64911) (xy 174.383792 70.649112) (xy 174.266738 70.736738) (xy 174.179112 70.853792) (xy 174.17911 70.853797) (xy 174.128011 70.990795) (xy 174.128009 70.990803) (xy 174.1215 71.05135) (xy 171.919439 71.05135) (xy 172.017543 70.953246) (xy 172.017543 70.953244) (xy 171.836537 70.829836) (xy 171.836529 70.829831) (xy 171.592397 70.712264) (xy 171.333452 70.632388) (xy 171.333444 70.632387) (xy 171.065487 70.592) (xy 170.794513 70.592) (xy 170.526555 70.632387) (xy 170.526547 70.632388) (xy 170.267602 70.712264) (xy 170.02347 70.829831) (xy 170.023462 70.829836) (xy 169.842455 70.953244) (xy 169.842455 70.953246) (xy 170.68651 71.797301) (xy 170.62211 71.823978) (xy 170.515649 71.895112) (xy 170.425112 71.985649) (xy 170.353978 72.09211) (xy 170.327301 72.15651) (xy 169.484093 71.313302) (xy 169.484091 71.313302) (xy 169.431968 71.378664) (xy 169.29648 71.613335) (xy 169.197481 71.865583) (xy 169.19748 71.865586) (xy 169.13718 72.129772) (xy 169.11693 72.4) (xy 167.402885 72.4) (xy 167.413294 72.372093) (xy 167.419799 72.311597) (xy 167.4198 72.311585) (xy 167.4198 71.502) (xy 166.489051 71.502) (xy 166.522045 71.444853) (xy 166.5568 71.315143) (xy 166.5568 71.180857) (xy 166.522045 71.051147) (xy 166.489051 70.994) (xy 167.4198 70.994) (xy 167.4198 70.184414) (xy 167.419799 70.184402) (xy 167.413294 70.123906) (xy 167.362244 69.987035) (xy 167.362244 69.987034) (xy 167.274704 69.870095) (xy 167.157765 69.782555) (xy 167.020893 69.731505) (xy 166.960397 69.725) (xy 166.3008 69.725) (xy 166.3008 70.805749) (xy 166.243653 70.772755) (xy 166.113943 70.738) (xy 165.979657 70.738) (xy 165.849947 70.772755) (xy 165.7928 70.805749) (xy 165.7928 69.725) (xy 165.133202 69.725) (xy 165.072706 69.731505) (xy 164.935332 69.782743) (xy 164.864517 69.787807) (xy 164.802204 69.753782) (xy 164.768179 69.69147) (xy 164.7653 69.664687) (xy 164.7653 69.507757) (xy 164.763146 69.494157) (xy 164.734312 69.3121) (xy 164.673098 69.123703) (xy 164.583166 68.947202) (xy 164.46673 68.786942) (xy 164.326658 68.64687) (xy 163.598981 67.919193) (xy 162.869863 67.190074) (xy 162.86986 67.190071) (xy 162.709598 67.073634) (xy 162.645732 67.041092) (xy 162.645732 67.041091) (xy 162.533104 66.983705) (xy 162.533099 66.983703) (xy 162.533097 66.983702) (xy 162.3447 66.922488) (xy 162.149046 66.8915) (xy 153.650954 66.8915) (xy 153.4553 66.922488) (xy 153.455297 66.922488) (xy 153.455296 66.922489) (xy 153.266903 66.983702) (xy 153.266895 66.983705) (xy 153.154267 67.041091) (xy 153.154268 67.041092) (xy 153.090401 67.073634) (xy 152.930139 67.190071) (xy 152.930136 67.190074) (xy 151.752129 68.368083) (xy 151.486942 68.63327) (xy 151.437023 68.683189) (xy 151.34687 68.773341) (xy 151.230436 68.933598) (xy 151.140503 69.110101) (xy 151.140502 69.110103) (xy 151.089623 69.266693) (xy 151.079288 69.2985) (xy 151.05254 69.467387) (xy 151.0483 69.494157) (xy 151.0483 70.137308) (xy 151.028298 70.205429) (xy 150.974642 70.251922) (xy 150.904368 70.262026) (xy 150.839788 70.232532) (xy 150.820365 70.21137) (xy 150.814447 70.203225) (xy 150.814442 70.203219) (xy 150.66158 70.050357) (xy 150.661577 70.050355) (xy 150.661575 70.050353) (xy 150.486671 69.923278) (xy 150.294041 69.825128) (xy 150.29404 69.825127) (xy 150.294039 69.825127) (xy 150.088432 69.758321) (xy 150.088429 69.75832) (xy 149.874897 69.7245) (xy 149.658703 69.7245) (xy 149.445171 69.75832) (xy 149.445168 69.75832) (xy 149.445167 69.758321) (xy 149.23956 69.825127) (xy 149.046925 69.92328) (xy 148.872022 70.050355) (xy 148.872019 70.050357) (xy 148.719154 70.203222) (xy 148.598736 70.368964) (xy 148.542513 70.412318) (xy 148.471777 70.418393) (xy 148.408986 70.385261) (xy 148.394864 70.368964) (xy 148.274445 70.203222) (xy 148.12158 70.050357) (xy 148.121577 70.050355) (xy 148.121575 70.050353) (xy 147.946671 69.923278) (xy 147.754041 69.825128) (xy 147.75404 69.825127) (xy 147.754039 69.825127) (xy 147.548432 69.758321) (xy 147.548429 69.75832) (xy 147.334897 69.7245) (xy 147.118703 69.7245) (xy 146.905171 69.75832) (xy 146.905168 69.75832) (xy 146.905167 69.758321) (xy 146.69956 69.825127) (xy 146.506925 69.92328) (xy 146.332022 70.050355) (xy 146.332019 70.050357) (xy 146.179157 70.203219) (xy 146.179155 70.203222) (xy 146.05208 70.378125) (xy 145.953927 70.57076) (xy 145.896575 70.747271) (xy 145.88712 70.776371) (xy 145.8533 70.989903) (xy 140.490842 70.989903) (xy 140.504272 70.928169) (xy 140.522154 70.903222) (xy 140.665722 70.747268) (xy 140.78886 70.558791) (xy 140.879296 70.352616) (xy 140.934564 70.134368) (xy 140.953156 69.91) (xy 140.934564 69.685632) (xy 140.90332 69.562251) (xy 140.879297 69.467387) (xy 140.879296 69.467386) (xy 140.879296 69.467384) (xy 140.78886 69.261209) (xy 140.690138 69.110103) (xy 140.665724 69.072734) (xy 140.66572 69.072729) (xy 140.54957 68.946559) (xy 140.51324 68.907094) (xy 140.513239 68.907093) (xy 140.513237 68.907091) (xy 140.368307 68.794287) (xy 140.335576 68.768811) (xy 140.302319 68.750813) (xy 140.251929 68.700802) (xy 140.236576 68.631485) (xy 140.261136 68.564872) (xy 140.30232 68.529186) (xy 140.335576 68.511189) (xy 140.51324 68.372906) (xy 140.665722 68.207268) (xy 140.78886 68.018791) (xy 140.879296 67.812616) (xy 140.934564 67.594368) (xy 140.953156 67.37) (xy 140.934564 67.145632) (xy 140.90809 67.041089) (xy 140.879297 66.927387) (xy 140.879296 66.927386) (xy 140.879296 66.927384) (xy 140.78886 66.721209) (xy 140.711839 66.603319) (xy 140.665724 66.532734) (xy 140.66572 66.532729) (xy 140.513237 66.367091) (xy 140.42584 66.299067) (xy 140.335576 66.228811) (xy 140.335572 66.228809) (xy 140.331876 66.225932) (xy 140.290405 66.168306) (xy 140.286671 66.097408) (xy 140.321861 66.035746) (xy 140.384802 66.002898) (xy 140.409267 66.0005) (xy 182.434108 66.0005) (xy 182.497252 66.0005) (xy 182.502748 66.00062) (xy 182.886661 66.017382) (xy 182.89761 66.018339) (xy 183.275883 66.06814) (xy 183.286699 66.070048) (xy 183.622223 66.144432) (xy 183.659184 66.152626) (xy 183.6698 66.15547) (xy 183.710509 66.168306) (xy 184.033668 66.270197) (xy 184.043997 66.273956) (xy 184.396494 66.419965) (xy 184.406456 66.424611) (xy 184.744875 66.600781) (xy 184.754378 66.606267) (xy 185.076174 66.811274) (xy 185.085166 66.81757) (xy 185.387863 67.049839) (xy 185.396283 67.056904) (xy 185.67757 67.314656) (xy 185.685343 67.322429) (xy 185.943095 67.603716) (xy 185.95016 67.612136) (xy 186.182429 67.914833) (xy 186.188728 67.923829) (xy 186.249226 68.018791) (xy 186.393727 68.245613) (xy 186.399223 68.255133) (xy 186.575388 68.593543) (xy 186.580034 68.603505) (xy 186.726043 68.956002) (xy 186.729802 68.966331) (xy 186.844528 69.330197) (xy 186.847373 69.340815) (xy 186.92995 69.713296) (xy 186.931859 69.724121) (xy 186.981659 70.102388) (xy 186.982617 70.113338) (xy 186.99938 70.497251) (xy 186.9995 70.502747) (xy 186.9995 120.497252) (xy 186.99938 120.502748) (xy 186.982617 120.886661) (xy 186.981659 120.897611) (xy 186.931859 121.275878) (xy 186.92995 121.286703) (xy 186.847373 121.659184) (xy 186.844528 121.669802) (xy 186.729802 122.033668) (xy 186.726043 122.043997) (xy 186.580034 122.396494) (xy 186.575388 122.406456) (xy 186.399223 122.744866) (xy 186.393727 122.754386) (xy 186.188734 123.076162) (xy 186.182429 123.085166) (xy 185.95016 123.387863) (xy 185.943095 123.396283) (xy 185.685343 123.67757) (xy 185.67757 123.685343) (xy 185.396283 123.943095) (xy 185.387863 123.95016) (xy 185.085166 124.182429) (xy 185.076162 124.188734) (xy 184.754386 124.393727) (xy 184.744866 124.399223) (xy 184.406456 124.575388) (xy 184.396494 124.580034) (xy 184.043997 124.726043) (xy 184.033668 124.729802) (xy 183.669802 124.844528) (xy 183.659184 124.847373) (xy 183.286703 124.92995) (xy 183.275878 124.931859) (xy 182.897611 124.981659) (xy 182.886661 124.982617) (xy 182.502748 124.99938) (xy 182.497252 124.9995) (xy 111.502748 124.9995) (xy 111.497252 124.99938) (xy 111.113338 124.982617) (xy 111.102388 124.981659) (xy 110.724121 124.931859) (xy 110.713296 124.92995) (xy 110.340815 124.847373) (xy 110.330197 124.844528) (xy 109.966331 124.729802) (xy 109.956002 124.726043) (xy 109.603505 124.580034) (xy 109.593543 124.575388) (xy 109.255133 124.399223) (xy 109.245613 124.393727) (xy 109.244105 124.392766) (xy 108.923829 124.188728) (xy 108.914833 124.182429) (xy 108.612136 123.95016) (xy 108.603716 123.943095) (xy 108.322429 123.685343) (xy 108.314656 123.67757) (xy 108.056904 123.396283) (xy 108.049839 123.387863) (xy 107.81757 123.085166) (xy 107.811274 123.076174) (xy 107.606267 122.754378) (xy 107.600781 122.744875) (xy 107.424611 122.406456) (xy 107.419965 122.396494) (xy 107.273956 122.043997) (xy 107.270197 122.033668) (xy 107.155471 121.669802) (xy 107.152626 121.659184) (xy 107.070049 121.286703) (xy 107.06814 121.275878) (xy 107.041415 121.072886) (xy 107.018339 120.89761) (xy 107.017382 120.886661) (xy 107.00062 120.502748) (xy 107.0005 120.497252) (xy 107.0005 118.799446) (xy 147.1215 118.799446) (xy 147.1215 120.400544) (xy 147.132112 120.504425) (xy 147.187885 120.672738) (xy 147.28097 120.823652) (xy 147.280975 120.823658) (xy 147.406341 120.949024) (xy 147.406347 120.949029) (xy 147.406348 120.94903) (xy 147.557262 121.042115) (xy 147.725574 121.097887) (xy 147.829455 121.1085) (xy 149.130544 121.108499) (xy 149.234426 121.097887) (xy 149.402738 121.042115) (xy 149.553652 120.94903) (xy 149.67903 120.823652) (xy 149.768349 120.678842) (xy 149.821134 120.631365) (xy 149.891208 120.619962) (xy 149.956324 120.648254) (xy 149.964684 120.655895) (xy 150.09499 120.786201) (xy 150.094993 120.786203) (xy 150.094996 120.786206) (xy 150.267991 120.911894) (xy 150.458517 121.008972) (xy 150.661878 121.075047) (xy 150.661879 121.075047) (xy 150.661884 121.075049) (xy 150.873084 121.1085) (xy 150.873087 121.1085) (xy 151.086913 121.1085) (xy 151.086916 121.1085) (xy 151.298116 121.075049) (xy 151.501483 121.008972) (xy 151.692009 120.911894) (xy 151.865004 120.786206) (xy 152.016206 120.635004) (xy 152.141894 120.462009) (xy 152.238972 120.271483) (xy 152.305049 120.068116) (xy 152.3385 119.856916) (xy 152.3385 119.343084) (xy 152.305049 119.131884) (xy 152.238972 118.928517) (xy 152.160469 118.774446) (xy 155.8215 118.774446) (xy 155.8215 120.375544) (xy 155.832112 120.479425) (xy 155.887885 120.647738) (xy 155.98097 120.798652) (xy 155.980975 120.798658) (xy 156.106341 120.924024) (xy 156.106347 120.924029) (xy 156.106348 120.92403) (xy 156.257262 121.017115) (xy 156.425574 121.072887) (xy 156.529455 121.0835) (xy 157.830544 121.083499) (xy 157.934426 121.072887) (xy 158.102738 121.017115) (xy 158.253652 120.92403) (xy 158.37903 120.798652) (xy 158.468349 120.653842) (xy 158.521134 120.606365) (xy 158.591208 120.594962) (xy 158.656324 120.623254) (xy 158.664684 120.630895) (xy 158.79499 120.761201) (xy 158.794993 120.761203) (xy 158.794996 120.761206) (xy 158.967991 120.886894) (xy 159.158517 120.983972) (xy 159.361878 121.050047) (xy 159.361879 121.050047) (xy 159.361884 121.050049) (xy 159.573084 121.0835) (xy 159.573087 121.0835) (xy 159.786913 121.0835) (xy 159.786916 121.0835) (xy 159.998116 121.050049) (xy 160.201483 120.983972) (xy 160.392009 120.886894) (xy 160.565004 120.761206) (xy 160.716206 120.610004) (xy 160.841894 120.437009) (xy 160.938972 120.246483) (xy 161.005049 120.043116) (xy 161.0385 119.831916) (xy 161.0385 119.318084) (xy 161.005049 119.106884) (xy 160.938972 118.903517) (xy 160.841894 118.712991) (xy 160.716206 118.539996) (xy 160.716203 118.539993) (xy 160.716201 118.53999) (xy 160.565009 118.388798) (xy 160.565006 118.388796) (xy 160.565004 118.388794) (xy 160.392009 118.263106) (xy 160.201483 118.166028) (xy 160.20148 118.166027) (xy 160.201478 118.166026) (xy 159.99812 118.099952) (xy 159.998123 118.099952) (xy 159.944759 118.0915) (xy 159.786916 118.0665) (xy 159.573084 118.0665) (xy 159.361884 118.099951) (xy 159.361878 118.099952) (xy 159.158521 118.166026) (xy 159.158515 118.166029) (xy 158.967987 118.263108) (xy 158.794995 118.388794) (xy 158.664684 118.519105) (xy 158.602372 118.55313) (xy 158.531556 118.548065) (xy 158.474721 118.505518) (xy 158.468356 118.496168) (xy 158.37903 118.351348) (xy 158.379029 118.351347) (xy 158.379024 118.351341) (xy 158.253658 118.225975) (xy 158.253652 118.22597) (xy 158.196999 118.191026) (xy 158.102738 118.132885) (xy 158.018582 118.104999) (xy 157.934427 118.077113) (xy 157.93442 118.077112) (xy 157.830553 118.0665) (xy 156.529455 118.0665) (xy 156.425574 118.077112) (xy 156.257261 118.132885) (xy 156.106347 118.22597) (xy 156.106341 118.225975) (xy 155.980975 118.351341) (xy 155.98097 118.351347) (xy 155.887885 118.502262) (xy 155.832113 118.670572) (xy 155.832112 118.670579) (xy 155.8215 118.774446) (xy 152.160469 118.774446) (xy 152.141894 118.737991) (xy 152.016206 118.564996) (xy 152.016203 118.564993) (xy 152.016201 118.56499) (xy 151.865009 118.413798) (xy 151.865006 118.413796) (xy 151.865004 118.413794) (xy 151.692009 118.288106) (xy 151.501483 118.191028) (xy 151.50148 118.191027) (xy 151.501478 118.191026) (xy 151.29812 118.124952) (xy 151.298123 118.124952) (xy 151.258801 118.118724) (xy 151.086916 118.0915) (xy 150.873084 118.0915) (xy 150.661884 118.124951) (xy 150.661878 118.124952) (xy 150.458521 118.191026) (xy 150.458515 118.191029) (xy 150.267987 118.288108) (xy 150.094995 118.413794) (xy 149.964684 118.544105) (xy 149.902372 118.57813) (xy 149.831556 118.573065) (xy 149.774721 118.530518) (xy 149.768356 118.521168) (xy 149.67903 118.376348) (xy 149.679029 118.376347) (xy 149.679024 118.376341) (xy 149.553658 118.250975) (xy 149.553652 118.25097) (xy 149.513129 118.225975) (xy 149.402738 118.157885) (xy 149.303348 118.124951) (xy 149.234427 118.102113) (xy 149.23442 118.102112) (xy 149.130553 118.0915) (xy 147.829455 118.0915) (xy 147.725574 118.102112) (xy 147.557261 118.157885) (xy 147.406347 118.25097) (xy 147.406341 118.250975) (xy 147.280975 118.376341) (xy 147.28097 118.376347) (xy 147.187885 118.527262) (xy 147.132113 118.695572) (xy 147.132112 118.695579) (xy 147.1215 118.799446) (xy 107.0005 118.799446) (xy 107.0005 107.14) (xy 110.116444 107.14) (xy 110.134774 107.361209) (xy 110.135037 107.364375) (xy 110.190302 107.582612) (xy 110.190303 107.582613) (xy 110.190304 107.582616) (xy 110.207262 107.621276) (xy 110.280741 107.788793) (xy 110.403875 107.977265) (xy 110.403879 107.97727) (xy 110.556362 108.142908) (xy 110.575368 108.157701) (xy 110.734024 108.281189) (xy 110.76728 108.299186) (xy 110.817671 108.3492) (xy 110.833023 108.418516) (xy 110.808462 108.485129) (xy 110.76728 108.520813) (xy 110.734026 108.53881) (xy 110.734024 108.538811) (xy 110.556362 108.677091) (xy 110.403879 108.842729) (xy 110.403875 108.842734) (xy 110.280741 109.031206) (xy 110.190303 109.237386) (xy 110.190302 109.237387) (xy 110.135037 109.455624) (xy 110.135036 109.45563) (xy 110.135036 109.455632) (xy 110.125132 109.575159) (xy 110.116444 109.68) (xy 110.135037 109.904375) (xy 110.190302 110.122612) (xy 110.190303 110.122613) (xy 110.280741 110.328793) (xy 110.403875 110.517265) (xy 110.403879 110.51727) (xy 110.556362 110.682908) (xy 110.610931 110.725381) (xy 110.734024 110.821189) (xy 110.932026 110.928342) (xy 110.932027 110.928342) (xy 110.932028 110.928343) (xy 111.018714 110.958102) (xy 111.144965 111.001444) (xy 111.367031 111.0385) (xy 111.367035 111.0385) (xy 111.592165 111.0385) (xy 111.592169 111.0385) (xy 111.814235 111.001444) (xy 112.027174 110.928342) (xy 112.225176 110.821189) (xy 112.40284 110.682906) (xy 112.555322 110.517268) (xy 112.67846 110.328791) (xy 112.768896 110.122616) (xy 112.824164 109.904368) (xy 112.842756 109.68) (xy 112.824164 109.455632) (xy 112.775582 109.263786) (xy 112.768897 109.237387) (xy 112.768896 109.237386) (xy 112.768896 109.237384) (xy 112.67846 109.031209) (xy 112.577062 108.876007) (xy 112.555324 108.842734) (xy 112.55532 108.842729) (xy 112.402837 108.677091) (xy 112.302217 108.598775) (xy 112.225176 108.538811) (xy 112.191919 108.520813) (xy 112.141529 108.470802) (xy 112.126176 108.401485) (xy 112.150736 108.334872) (xy 112.19192 108.299186) (xy 112.225176 108.281189) (xy 112.40284 108.142906) (xy 112.555322 107.977268) (xy 112.67846 107.788791) (xy 112.768896 107.582616) (xy 112.824164 107.364368) (xy 112.842756 107.14) (xy 112.824164 106.915632) (xy 112.795085 106.800802) (xy 112.768897 106.697387) (xy 112.768896 106.697386) (xy 112.768896 106.697384) (xy 112.67846 106.491209) (xy 112.558284 106.307265) (xy 112.555324 106.302734) (xy 112.555314 106.302722) (xy 112.411759 106.146782) (xy 112.380337 106.083117) (xy 112.388323 106.012571) (xy 112.433182 105.957542) (xy 112.460427 105.943388) (xy 112.575565 105.900444) (xy 112.692504 105.812904) (xy 112.780044 105.695965) (xy 112.780044 105.695964) (xy 112.831094 105.559093) (xy 112.837599 105.498597) (xy 112.8376 105.498585) (xy 112.8376 104.854) (xy 111.910303 104.854) (xy 111.945525 104.792993) (xy 111.9796 104.665826) (xy 111.9796 104.534174) (xy 111.945525 104.407007) (xy 111.910303 104.346) (xy 112.8376 104.346) (xy 112.8376 103.701414) (xy 112.837599 103.701402) (xy 112.831094 103.640906) (xy 112.780044 103.504035) (xy 112.780044 103.504034) (xy 112.692504 103.387095) (xy 112.575565 103.299555) (xy 112.438693 103.248505) (xy 112.378197 103.242) (xy 111.7336 103.242) (xy 111.7336 104.169297) (xy 111.672593 104.134075) (xy 111.545426 104.1) (xy 111.413774 104.1) (xy 111.286607 104.134075) (xy 111.2256 104.169297) (xy 111.2256 103.242) (xy 110.581002 103.242) (xy 110.520506 103.248505) (xy 110.383635 103.299555) (xy 110.383634 103.299555) (xy 110.266695 103.387095) (xy 110.179155 103.504034) (xy 110.179155 103.504035) (xy 110.128105 103.640906) (xy 110.1216 103.701402) (xy 110.1216 104.346) (xy 111.048897 104.346) (xy 111.013675 104.407007) (xy 110.9796 104.534174) (xy 110.9796 104.665826) (xy 111.013675 104.792993) (xy 111.048897 104.854) (xy 110.1216 104.854) (xy 110.1216 105.498597) (xy 110.128105 105.559093) (xy 110.179155 105.695964) (xy 110.179155 105.695965) (xy 110.266695 105.812904) (xy 110.383634 105.900444) (xy 110.498772 105.943388) (xy 110.555608 105.985935) (xy 110.580419 106.052455) (xy 110.565328 106.121829) (xy 110.547441 106.146782) (xy 110.40388 106.302729) (xy 110.403875 106.302734) (xy 110.280741 106.491206) (xy 110.190303 106.697386) (xy 110.190302 106.697387) (xy 110.135037 106.915624) (xy 110.135036 106.91563) (xy 110.135036 106.915632) (xy 110.116444 107.14) (xy 107.0005 107.14) (xy 107.0005 97.10135) (xy 108.9815 97.10135) (xy 108.9815 98.898649) (xy 108.988009 98.959196) (xy 108.988011 98.959204) (xy 109.03911 99.096202) (xy 109.039112 99.096207) (xy 109.126738 99.213261) (xy 109.243792 99.300887) (xy 109.243794 99.300888) (xy 109.243796 99.300889) (xy 109.2989 99.321442) (xy 109.380795 99.351988) (xy 109.380803 99.35199) (xy 109.44135 99.358499) (xy 109.441355 99.358499) (xy 109.441362 99.3585) (xy 109.441368 99.3585) (xy 111.238632 99.3585) (xy 111.238638 99.3585) (xy 111.238645 99.358499) (xy 111.238649 99.358499) (xy 111.299196 99.35199) (xy 111.299199 99.351989) (xy 111.299201 99.351989) (xy 111.436204 99.300889) (xy 111.486861 99.262968) (xy 111.553261 99.213261) (xy 111.640886 99.096208) (xy 111.640885 99.096208) (xy 111.640889 99.096204) (xy 111.684999 98.977939) (xy 111.727545 98.921107) (xy 111.794066 98.896296) (xy 111.86344 98.911388) (xy 111.895753 98.936635) (xy 111.916529 98.959204) (xy 111.956762 99.002908) (xy 111.993497 99.0315) (xy 112.134424 99.141189) (xy 112.332426 99.248342) (xy 112.332427 99.248342) (xy 112.332428 99.248343) (xy 112.37503 99.262968) (xy 112.545365 99.321444) (xy 112.767431 99.3585) (xy 112.767435 99.3585) (xy 112.992565 99.3585) (xy 112.992569 99.3585) (xy 113.214635 99.321444) (xy 113.427574 99.248342) (xy 113.625576 99.141189) (xy 113.80324 99.002906) (xy 113.955722 98.837268) (xy 114.07886 98.648791) (xy 114.169296 98.442616) (xy 114.224564 98.224368) (xy 114.243156 98) (xy 114.224564 97.775632) (xy 114.208217 97.711078) (xy 114.169297 97.557387) (xy 114.169296 97.557386) (xy 114.169296 97.557384) (xy 114.07886 97.351209) (xy 114.045404 97.3) (xy 113.955724 97.162734) (xy 113.95572 97.162729) (xy 113.803237 96.997091) (xy 113.666811 96.890906) (xy 113.625576 96.858811) (xy 113.427574 96.751658) (xy 113.427572 96.751657) (xy 113.427571 96.751656) (xy 113.214639 96.678557) (xy 113.21463 96.678555) (xy 113.154372 96.6685) (xy 112.992569 96.6415) (xy 112.767431 96.6415) (xy 112.619211 96.666233) (xy 112.545369 96.678555) (xy 112.54536 96.678557) (xy 112.332428 96.751656) (xy 112.332426 96.751658) (xy 112.134426 96.85881) (xy 112.134424 96.858811) (xy 111.956762 96.997091) (xy 111.895754 97.063363) (xy 111.834901 97.099933) (xy 111.763936 97.097798) (xy 111.705391 97.057636) (xy 111.684999 97.022057) (xy 111.651415 96.932017) (xy 111.640889 96.903796) (xy 111.640888 96.903794) (xy 111.640887 96.903792) (xy 111.553261 96.786738) (xy 111.436207 96.699112) (xy 111.436202 96.69911) (xy 111.299204 96.648011) (xy 111.299196 96.648009) (xy 111.238649 96.6415) (xy 111.238638 96.6415) (xy 109.441362 96.6415) (xy 109.44135 96.6415) (xy 109.380803 96.648009) (xy 109.380795 96.648011) (xy 109.243797 96.69911) (xy 109.243792 96.699112) (xy 109.126738 96.786738) (xy 109.039112 96.903792) (xy 109.03911 96.903797) (xy 108.988011 97.040795) (xy 108.988009 97.040803) (xy 108.9815 97.10135) (xy 107.0005 97.10135) (xy 107.0005 86.7048) (xy 111.593481 86.7048) (xy 111.612728 86.949357) (xy 111.669995 87.187892) (xy 111.763873 87.414532) (xy 111.795182 87.465624) (xy 111.892045 87.623692) (xy 111.892046 87.623694) (xy 111.892048 87.623696) (xy 112.051367 87.810233) (xy 112.117703 87.866889) (xy 112.131869 87.878989) (xy 112.170678 87.93844) (xy 112.171184 88.009435) (xy 112.133228 88.069433) (xy 112.131869 88.070611) (xy 112.051367 88.139367) (xy 111.892045 88.325907) (xy 111.763874 88.535066) (xy 111.763873 88.535068) (xy 111.742525 88.586606) (xy 111.672663 88.755268) (xy 111.669995 88.761708) (xy 111.612728 89.000243) (xy 111.593481 89.2448) (xy 111.612728 89.489357) (xy 111.669995 89.727892) (xy 111.763873 89.954532) (xy 111.820607 90.047114) (xy 111.872929 90.132497) (xy 111.891467 90.20103) (xy 111.87001 90.268707) (xy 111.841006 90.299198) (xy 111.743896 90.371895) (xy 111.656355 90.488834) (xy 111.656355 90.488835) (xy 111.605305 90.625706) (xy 111.5988 90.686202) (xy 111.5988 91.5308) (xy 112.668362 91.5308) (xy 112.644282 91.572508) (xy 112.6068 91.712391) (xy 112.6068 91.857209) (xy 112.644282 91.997092) (xy 112.668362 92.0388) (xy 111.5988 92.0388) (xy 111.5988 92.883397) (xy 111.605305 92.943893) (xy 111.656355 93.080764) (xy 111.656355 93.080765) (xy 111.743895 93.197704) (xy 111.860834 93.285244) (xy 111.997706 93.336294) (xy 112.058202 93.342799) (xy 112.058215 93.3428) (xy 112.9028 93.3428) (xy 112.9028 92.273238) (xy 112.944508 92.297318) (xy 113.084391 92.3348) (xy 113.229209 92.3348) (xy 113.369092 92.297318) (xy 113.4108 92.273238) (xy 113.4108 93.3428) (xy 114.255385 93.3428) (xy 114.255397 93.342799) (xy 114.315893 93.336294) (xy 114.452764 93.285244) (xy 114.452765 93.285244) (xy 114.569704 93.197704) (xy 114.657244 93.080765) (xy 114.657244 93.080764) (xy 114.708294 92.943893) (xy 114.714799 92.883397) (xy 114.7148 92.883385) (xy 114.7148 92.0388) (xy 113.645238 92.0388) (xy 113.669318 91.997092) (xy 113.7068 91.857209) (xy 113.7068 91.712391) (xy 113.669318 91.572508) (xy 113.645238 91.5308) (xy 114.7148 91.5308) (xy 114.7148 90.686214) (xy 114.714799 90.686202) (xy 114.708294 90.625706) (xy 114.657244 90.488835) (xy 114.657244 90.488834) (xy 114.569705 90.371897) (xy 114.472593 90.299199) (xy 114.430047 90.242363) (xy 114.424983 90.171547) (xy 114.440667 90.132501) (xy 114.549727 89.954532) (xy 114.643605 89.727892) (xy 114.700872 89.489357) (xy 114.720119 89.2448) (xy 114.700872 89.000243) (xy 114.643605 88.761708) (xy 114.549727 88.535068) (xy 114.421552 88.325904) (xy 114.262233 88.139367) (xy 114.181729 88.070609) (xy 114.142921 88.01116) (xy 114.142415 87.940166) (xy 114.180371 87.880167) (xy 114.181679 87.879032) (xy 114.262233 87.810233) (xy 114.421552 87.623696) (xy 114.549727 87.414532) (xy 114.643605 87.187892) (xy 114.700872 86.949357) (xy 114.720119 86.7048) (xy 114.700872 86.460243) (xy 114.643605 86.221708) (xy 114.549727 85.995068) (xy 114.421552 85.785904) (xy 114.262233 85.599367) (xy 114.075696 85.440048) (xy 114.075694 85.440046) (xy 114.075692 85.440045) (xy 113.953056 85.364894) (xy 113.866532 85.311873) (xy 113.639892 85.217995) (xy 113.401357 85.160728) (xy 113.1568 85.141481) (xy 112.912243 85.160728) (xy 112.673707 85.217995) (xy 112.447066 85.311874) (xy 112.237907 85.440045) (xy 112.051367 85.599367) (xy 111.892045 85.785907) (xy 111.763874 85.995066) (xy 111.669995 86.221707) (xy 111.664114 86.246204) (xy 111.612728 86.460243) (xy 111.593481 86.7048) (xy 107.0005 86.7048) (xy 107.0005 70.502747) (xy 107.00062 70.497251) (xy 107.013361 70.205429) (xy 107.017382 70.113336) (xy 107.01834 70.102388) (xy 107.068141 69.724113) (xy 107.070049 69.713296) (xy 107.080826 69.664687) (xy 107.152627 69.340808) (xy 107.155471 69.330197) (xy 107.161177 69.3121) (xy 107.270199 68.966323) (xy 107.273956 68.956002) (xy 107.277603 68.947198) (xy 107.419969 68.603496) (xy 107.424611 68.593543) (xy 107.600786 68.255114) (xy 107.606261 68.245631) (xy 107.811281 67.923813) (xy 107.817564 67.914841) (xy 107.957383 67.732626) (xy 108.049839 67.612136) (xy 108.056904 67.603716) (xy 108.31466 67.322424) (xy 108.322429 67.314656) (xy 108.374029 67.267374) (xy 108.603718 67.056901) (xy 108.612136 67.049839) (xy 108.818486 66.8915) (xy 108.914841 66.817564) (xy 108.923813 66.811281) (xy 109.245631 66.606261) (xy 109.255114 66.600786) (xy 109.593552 66.424606) (xy 109.603496 66.419969) (xy 109.956009 66.273953) (xy 109.966323 66.270199) (xy 110.330204 66.155468) (xy 110.340808 66.152627) (xy 110.713304 66.070047) (xy 110.724113 66.068141) (xy 111.102391 66.018339) (xy 111.113336 66.017382) (xy 111.497252 66.00062) (xy 111.502748 66.0005) (xy 111.565892 66.0005) (xy 120.990733 66.0005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 127.357032 66.020502) (xy 127.403525 66.074158) (xy 127.413629 66.144432) (xy 127.384135 66.209012) (xy 127.348881 66.237312) (xy 127.288117 66.270197) (xy 127.201984 66.316809) (xy 127.201983 66.31681) (xy 127.017778 66.460182) (xy 127.017774 66.460186) (xy 126.859685 66.631916) (xy 126.732015 66.827331) (xy 126.638252 67.041089) (xy 126.638251 67.041092) (xy 126.58095 67.267366) (xy 126.580949 67.267372) (xy 126.580949 67.267374) (xy 126.561673 67.5) (xy 126.576751 67.681969) (xy 126.58095 67.732633) (xy 126.638249 67.958903) (xy 126.638252 67.95891) (xy 126.732015 68.172668) (xy 126.859685 68.368083) (xy 127.017774 68.539813) (xy 127.017778 68.539817) (xy 127.08365 68.591087) (xy 127.201983 68.68319) (xy 127.407273 68.794287) (xy 127.628049 68.87008) (xy 127.858288 68.9085) (xy 127.858292 68.9085) (xy 128.091708 68.9085) (xy 128.091712 68.9085) (xy 128.321951 68.87008) (xy 128.542727 68.794287) (xy 128.748017 68.68319) (xy 128.93222 68.539818) (xy 128.942008 68.529186) (xy 129.090314 68.368083) (xy 129.217984 68.172669) (xy 129.311749 67.958907) (xy 129.369051 67.732626) (xy 129.388327 67.5) (xy 129.369051 67.267374) (xy 129.33822 67.145624) (xy 129.311749 67.041092) (xy 129.311747 67.041089) (xy 129.217984 66.827331) (xy 129.090314 66.631916) (xy 128.932225 66.460186) (xy 128.932221 66.460182) (xy 128.812621 66.367094) (xy 128.748017 66.31681) (xy 128.601119 66.237313) (xy 128.550729 66.187301) (xy 128.535377 66.117984) (xy 128.559938 66.051371) (xy 128.616613 66.008611) (xy 128.661089 66.0005) (xy 132.738911 66.0005) (xy 132.807032 66.020502) (xy 132.853525 66.074158) (xy 132.863629 66.144432) (xy 132.834135 66.209012) (xy 132.798881 66.237312) (xy 132.738117 66.270197) (xy 132.651984 66.316809) (xy 132.651983 66.31681) (xy 132.467778 66.460182) (xy 132.467774 66.460186) (xy 132.309685 66.631916) (xy 132.182015 66.827331) (xy 132.088252 67.041089) (xy 132.088251 67.041092) (xy 132.03095 67.267366) (xy 132.030949 67.267372) (xy 132.030949 67.267374) (xy 132.011673 67.5) (xy 132.026751 67.681969) (xy 132.03095 67.732633) (xy 132.088249 67.958903) (xy 132.088252 67.95891) (xy 132.182015 68.172668) (xy 132.309685 68.368083) (xy 132.467774 68.539813) (xy 132.467778 68.539817) (xy 132.53365 68.591087) (xy 132.651983 68.68319) (xy 132.857273 68.794287) (xy 133.078049 68.87008) (xy 133.308288 68.9085) (xy 133.308292 68.9085) (xy 133.541708 68.9085) (xy 133.541712 68.9085) (xy 133.771951 68.87008) (xy 133.992727 68.794287) (xy 134.198017 68.68319) (xy 134.38222 68.539818) (xy 134.392008 68.529186) (xy 134.540314 68.368083) (xy 134.667984 68.172669) (xy 134.761749 67.958907) (xy 134.819051 67.732626) (xy 134.838327 67.5) (xy 134.819051 67.267374) (xy 134.78822 67.145624) (xy 134.761749 67.041092) (xy 134.761747 67.041089) (xy 134.667984 66.827331) (xy 134.540314 66.631916) (xy 134.382225 66.460186) (xy 134.382221 66.460182) (xy 134.262621 66.367094) (xy 134.198017 66.31681) (xy 134.051119 66.237313) (xy 134.000729 66.187301) (xy 133.985377 66.117984) (xy 134.009938 66.051371) (xy 134.066613 66.008611) (xy 134.111089 66.0005) (xy 138.770733 66.0005) (xy 138.838854 66.020502) (xy 138.885347 66.074158) (xy 138.895451 66.144432) (xy 138.865957 66.209012) (xy 138.848124 66.225932) (xy 138.844427 66.228809) (xy 138.844424 66.228811) (xy 138.791252 66.270197) (xy 138.666762 66.367091) (xy 138.514279 66.532729) (xy 138.514275 66.532734) (xy 138.391141 66.721206) (xy 138.300703 66.927386) (xy 138.300702 66.927387) (xy 138.245437 67.145624) (xy 138.245436 67.14563) (xy 138.245436 67.145632) (xy 138.226844 67.37) (xy 138.237616 67.5) (xy 138.245437 67.594375) (xy 138.300702 67.812612) (xy 138.300703 67.812613) (xy 138.391141 68.018793) (xy 138.514275 68.207265) (xy 138.514279 68.20727) (xy 138.666762 68.372908) (xy 138.721331 68.415381) (xy 138.844424 68.511189) (xy 138.87768 68.529186) (xy 138.928071 68.5792) (xy 138.943423 68.648516) (xy 138.918862 68.715129) (xy 138.87768 68.750813) (xy 138.844426 68.76881) (xy 138.844424 68.768811) (xy 138.666762 68.907091) (xy 138.514279 69.072729) (xy 138.514275 69.072734) (xy 138.391141 69.261206) (xy 138.300703 69.467386) (xy 138.300702 69.467387) (xy 138.245437 69.685624) (xy 138.245436 69.68563) (xy 138.245436 69.685632) (xy 138.226844 69.91) (xy 138.243693 70.113338) (xy 138.245437 70.134375) (xy 138.300702 70.352612) (xy 138.300703 70.352613) (xy 138.300704 70.352616) (xy 138.364146 70.497251) (xy 138.391141 70.558793) (xy 138.514275 70.747265) (xy 138.514279 70.74727) (xy 138.657841 70.903217) (xy 138.689262 70.966882) (xy 138.681276 71.037428) (xy 138.636417 71.092457) (xy 138.609173 71.10661) (xy 138.494039 71.149553) (xy 138.494034 71.149555) (xy 138.377095 71.237095) (xy 138.289555 71.354034) (xy 138.289555 71.354035) (xy 138.238505 71.490906) (xy 138.232 71.551402) (xy 138.232 72.196) (xy 139.147749 72.196) (xy 139.114755 72.253147) (xy 139.08 72.382857) (xy 139.08 72.517143) (xy 139.114755 72.646853) (xy 139.147749 72.704) (xy 138.232 72.704) (xy 138.232 73.348597) (xy 138.238505 73.409093) (xy 138.289555 73.545964) (xy 138.289555 73.545965) (xy 138.377095 73.662904) (xy 138.494034 73.750444) (xy 138.609172 73.793388) (xy 138.666008 73.835935) (xy 138.690819 73.902455) (xy 138.675728 73.971829) (xy 138.657841 73.996782) (xy 138.51428 74.152729) (xy 138.514275 74.152734) (xy 138.391141 74.341206) (xy 138.300703 74.547386) (xy 138.300702 74.547387) (xy 138.245437 74.765624) (xy 138.245436 74.76563) (xy 138.245436 74.765632) (xy 138.226844 74.99) (xy 138.23771 75.121135) (xy 138.245437 75.214375) (xy 138.300702 75.432612) (xy 138.300703 75.432613) (xy 138.391141 75.638793) (xy 138.514275 75.827265) (xy 138.514279 75.82727) (xy 138.666762 75.992908) (xy 138.721331 76.035381) (xy 138.844424 76.131189) (xy 138.87768 76.149186) (xy 138.928071 76.1992) (xy 138.943423 76.268516) (xy 138.918862 76.335129) (xy 138.87768 76.370813) (xy 138.844426 76.38881) (xy 138.844424 76.388811) (xy 138.666762 76.527091) (xy 138.514279 76.692729) (xy 138.514275 76.692734) (xy 138.391141 76.881206) (xy 138.300703 77.087386) (xy 138.300702 77.087387) (xy 138.245437 77.305624) (xy 138.226844 77.53) (xy 138.245437 77.754375) (xy 138.300702 77.972612) (xy 138.300703 77.972613) (xy 138.391141 78.178793) (xy 138.514275 78.367265) (xy 138.514279 78.36727) (xy 138.666762 78.532908) (xy 138.721331 78.575381) (xy 138.844424 78.671189) (xy 138.87768 78.689186) (xy 138.928071 78.7392) (xy 138.943423 78.808516) (xy 138.918862 78.875129) (xy 138.87768 78.910813) (xy 138.844426 78.92881) (xy 138.844424 78.928811) (xy 138.666762 79.067091) (xy 138.514279 79.232729) (xy 138.514275 79.232734) (xy 138.391141 79.421206) (xy 138.300703 79.627386) (xy 138.300702 79.627387) (xy 138.245437 79.845624) (xy 138.245436 79.84563) (xy 138.245436 79.845632) (xy 138.226844 80.07) (xy 138.237616 80.2) (xy 138.245437 80.294375) (xy 138.300702 80.512612) (xy 138.300703 80.512613) (xy 138.300704 80.512616) (xy 138.39114 80.718791) (xy 138.391141 80.718793) (xy 138.514275 80.907265) (xy 138.514279 80.90727) (xy 138.666762 81.072908) (xy 138.712491 81.1085) (xy 138.844424 81.211189) (xy 138.87768 81.229186) (xy 138.928071 81.2792) (xy 138.943423 81.348516) (xy 138.918862 81.415129) (xy 138.87768 81.450813) (xy 138.844426 81.46881) (xy 138.844424 81.468811) (xy 138.666762 81.607091) (xy 138.514279 81.772729) (xy 138.514275 81.772734) (xy 138.391141 81.961206) (xy 138.300703 82.167386) (xy 138.300702 82.167387) (xy 138.245437 82.385624) (xy 138.245436 82.38563) (xy 138.245436 82.385632) (xy 138.226844 82.61) (xy 138.244339 82.821135) (xy 138.245437 82.834375) (xy 138.300702 83.052612) (xy 138.300703 83.052613) (xy 138.300704 83.052616) (xy 138.39114 83.258791) (xy 138.391141 83.258793) (xy 138.514275 83.447265) (xy 138.51428 83.44727) (xy 138.657475 83.60282) (xy 138.688896 83.666485) (xy 138.680909 83.737031) (xy 138.636051 83.79206) (xy 138.608807 83.806213) (xy 138.493797 83.84911) (xy 138.493792 83.849112) (xy 138.376738 83.936738) (xy 138.289112 84.053792) (xy 138.28911 84.053797) (xy 138.238011 84.190795) (xy 138.238009 84.190803) (xy 138.2315 84.25135) (xy 138.2315 86.048649) (xy 138.238009 86.109196) (xy 138.238011 86.109204) (xy 138.28911 86.246202) (xy 138.289112 86.246207) (xy 138.376738 86.363261) (xy 138.493791 86.450886) (xy 138.493792 86.450886) (xy 138.493796 86.450889) (xy 138.60881 86.493787) (xy 138.665642 86.536332) (xy 138.690453 86.602852) (xy 138.675362 86.672226) (xy 138.657475 86.697179) (xy 138.51428 86.852729) (xy 138.514275 86.852734) (xy 138.391141 87.041206) (xy 138.300703 87.247386) (xy 138.300702 87.247387) (xy 138.245437 87.465624) (xy 138.245436 87.46563) (xy 138.245436 87.465632) (xy 138.226844 87.69) (xy 138.242504 87.878989) (xy 138.245437 87.914375) (xy 138.300702 88.132612) (xy 138.300703 88.132613) (xy 138.300704 88.132616) (xy 138.35792 88.263056) (xy 138.391141 88.338793) (xy 138.514275 88.527265) (xy 138.514279 88.52727) (xy 138.666762 88.692908) (xy 138.721331 88.735381) (xy 138.844424 88.831189) (xy 138.87768 88.849186) (xy 138.928071 88.8992) (xy 138.943423 88.968516) (xy 138.918862 89.035129) (xy 138.87768 89.070813) (xy 138.844426 89.08881) (xy 138.844424 89.088811) (xy 138.666762 89.227091) (xy 138.514279 89.392729) (xy 138.514275 89.392734) (xy 138.391141 89.581206) (xy 138.300703 89.787386) (xy 138.300702 89.787387) (xy 138.245437 90.005624) (xy 138.245436 90.00563) (xy 138.245436 90.005632) (xy 138.226844 90.23) (xy 138.243992 90.436944) (xy 138.245437 90.454375) (xy 138.300702 90.672612) (xy 138.300703 90.672613) (xy 138.300704 90.672616) (xy 138.360141 90.808119) (xy 138.391141 90.878793) (xy 138.514275 91.067265) (xy 138.514279 91.06727) (xy 138.666762 91.232908) (xy 138.669193 91.2348) (xy 138.844424 91.371189) (xy 138.87768 91.389186) (xy 138.928071 91.4392) (xy 138.943423 91.508516) (xy 138.918862 91.575129) (xy 138.87768 91.610813) (xy 138.844426 91.62881) (xy 138.844424 91.628811) (xy 138.666762 91.767091) (xy 138.514279 91.932729) (xy 138.514275 91.932734) (xy 138.391141 92.121206) (xy 138.300703 92.327386) (xy 138.300702 92.327387) (xy 138.245437 92.545624) (xy 138.245436 92.54563) (xy 138.245436 92.545632) (xy 138.226844 92.77) (xy 138.241253 92.943893) (xy 138.245437 92.994375) (xy 138.300702 93.212612) (xy 138.300703 93.212613) (xy 138.300704 93.212616) (xy 138.354954 93.336294) (xy 138.391141 93.418793) (xy 138.514275 93.607265) (xy 138.514279 93.60727) (xy 138.666762 93.772908) (xy 138.721331 93.815381) (xy 138.844424 93.911189) (xy 138.87768 93.929186) (xy 138.928071 93.9792) (xy 138.943423 94.048516) (xy 138.918862 94.115129) (xy 138.87768 94.150813) (xy 138.844426 94.16881) (xy 138.844424 94.168811) (xy 138.666762 94.307091) (xy 138.514279 94.472729) (xy 138.514275 94.472734) (xy 138.391141 94.661206) (xy 138.300703 94.867386) (xy 138.300702 94.867387) (xy 138.245437 95.085624) (xy 138.245436 95.08563) (xy 138.245436 95.085632) (xy 138.226844 95.31) (xy 138.244339 95.521135) (xy 138.245437 95.534375) (xy 138.300702 95.752612) (xy 138.300703 95.752613) (xy 138.300704 95.752616) (xy 138.372725 95.916809) (xy 138.391141 95.958793) (xy 138.514275 96.147265) (xy 138.514279 96.14727) (xy 138.591615 96.231278) (xy 138.657475 96.30282) (xy 138.657841 96.303217) (xy 138.689262 96.366882) (xy 138.681276 96.437428) (xy 138.636417 96.492457) (xy 138.609173 96.50661) (xy 138.494039 96.549553) (xy 138.494034 96.549555) (xy 138.377095 96.637095) (xy 138.289555 96.754034) (xy 138.289555 96.754035) (xy 138.238505 96.890906) (xy 138.232 96.951402) (xy 138.232 97.596) (xy 139.147749 97.596) (xy 139.114755 97.653147) (xy 139.08 97.782857) (xy 139.08 97.917143) (xy 139.114755 98.046853) (xy 139.147749 98.104) (xy 138.232 98.104) (xy 138.232 98.748597) (xy 138.238505 98.809093) (xy 138.289555 98.945964) (xy 138.289555 98.945965) (xy 138.377095 99.062904) (xy 138.494034 99.150444) (xy 138.609172 99.193388) (xy 138.666008 99.235935) (xy 138.690819 99.302455) (xy 138.675728 99.371829) (xy 138.657841 99.396782) (xy 138.51428 99.552729) (xy 138.514275 99.552734) (xy 138.391141 99.741206) (xy 138.300703 99.947386) (xy 138.300702 99.947387) (xy 138.245437 100.165624) (xy 138.226844 100.39) (xy 138.245437 100.614375) (xy 138.300702 100.832612) (xy 138.300703 100.832613) (xy 138.300704 100.832616) (xy 138.39114 101.038791) (xy 138.391141 101.038793) (xy 138.514275 101.227265) (xy 138.514279 101.22727) (xy 138.666762 101.392908) (xy 138.721331 101.435381) (xy 138.844424 101.531189) (xy 138.87768 101.549186) (xy 138.928071 101.5992) (xy 138.943423 101.668516) (xy 138.918862 101.735129) (xy 138.87768 101.770813) (xy 138.844426 101.78881) (xy 138.844424 101.788811) (xy 138.666762 101.927091) (xy 138.514279 102.092729) (xy 138.514275 102.092734) (xy 138.391141 102.281206) (xy 138.300703 102.487386) (xy 138.300702 102.487387) (xy 138.245437 102.705624) (xy 138.245436 102.70563) (xy 138.245436 102.705632) (xy 138.226844 102.93) (xy 138.230932 102.979339) (xy 138.245437 103.154375) (xy 138.300702 103.372612) (xy 138.300703 103.372613) (xy 138.391141 103.578793) (xy 138.514275 103.767265) (xy 138.514279 103.76727) (xy 138.666762 103.932908) (xy 138.721331 103.975381) (xy 138.844424 104.071189) (xy 138.87768 104.089186) (xy 138.928071 104.1392) (xy 138.943423 104.208516) (xy 138.918862 104.275129) (xy 138.87768 104.310813) (xy 138.844426 104.32881) (xy 138.844424 104.328811) (xy 138.666762 104.467091) (xy 138.514279 104.632729) (xy 138.514275 104.632734) (xy 138.391141 104.821206) (xy 138.300703 105.027386) (xy 138.300702 105.027387) (xy 138.245437 105.245624) (xy 138.226844 105.47) (xy 138.245437 105.694375) (xy 138.300702 105.912612) (xy 138.300703 105.912613) (xy 138.300704 105.912616) (xy 138.344548 106.012571) (xy 138.391141 106.118793) (xy 138.514275 106.307265) (xy 138.514279 106.30727) (xy 138.666762 106.472908) (xy 138.690275 106.491209) (xy 138.844424 106.611189) (xy 138.87768 106.629186) (xy 138.928071 106.6792) (xy 138.943423 106.748516) (xy 138.918862 106.815129) (xy 138.87768 106.850813) (xy 138.844426 106.86881) (xy 138.844424 106.868811) (xy 138.666762 107.007091) (xy 138.514279 107.172729) (xy 138.514275 107.172734) (xy 138.391139 107.361209) (xy 138.300903 107.566928) (xy 138.255222 107.621276) (xy 138.18741 107.6423) (xy 138.118996 107.623324) (xy 138.08358 107.590375) (xy 138.056273 107.552789) (xy 137.911529 107.408043) (xy 137.745921 107.287719) (xy 137.563539 107.194788) (xy 137.563533 107.194786) (xy 137.368855 107.131528) (xy 137.368849 107.131527) (xy 137.368846 107.131526) (xy 137.166675 107.099501) (xy 137.137938 107.099501) (xy 137.13792 107.0995) (xy 137.130207 107.0995) (xy 137.064324 107.0995) (xy 136.998432 107.099499) (xy 136.998431 107.099499) (xy 136.990715 107.099499) (xy 136.990699 107.0995) (xy 124.190533 107.0995) (xy 124.190312 107.099514) (xy 124.161973 107.099514) (xy 124.135472 107.10371) (xy 123.959795 107.131531) (xy 123.765106 107.194786) (xy 123.58271 107.287717) (xy 123.582704 107.287721) (xy 123.417099 107.408038) (xy 123.278011 107.547124) (xy 123.215698 107.581149) (xy 123.144882 107.576083) (xy 123.088047 107.533536) (xy 123.073532 107.508648) (xy 123.00886 107.361209) (xy 122.960847 107.287719) (xy 122.885724 107.172734) (xy 122.88572 107.172729) (xy 122.733237 107.007091) (xy 122.615731 106.915632) (xy 122.555576 106.868811) (xy 122.522319 106.850813) (xy 122.471929 106.800802) (xy 122.456576 106.731485) (xy 122.481136 106.664872) (xy 122.52232 106.629186) (xy 122.555576 106.611189) (xy 122.73324 106.472906) (xy 122.885722 106.307268) (xy 123.00886 106.118791) (xy 123.099296 105.912616) (xy 123.154564 105.694368) (xy 123.173156 105.47) (xy 123.154564 105.245632) (xy 123.099296 105.027384) (xy 123.00886 104.821209) (xy 122.990426 104.792993) (xy 122.885724 104.632734) (xy 122.88572 104.632729) (xy 122.733237 104.467091) (xy 122.651382 104.403381) (xy 122.555576 104.328811) (xy 122.522319 104.310813) (xy 122.471929 104.260802) (xy 122.456576 104.191485) (xy 122.481136 104.124872) (xy 122.52232 104.089186) (xy 122.555576 104.071189) (xy 122.73324 103.932906) (xy 122.885722 103.767268) (xy 123.00886 103.578791) (xy 123.099296 103.372616) (xy 123.154564 103.154368) (xy 123.173156 102.93) (xy 123.154564 102.705632) (xy 123.136172 102.633004) (xy 123.099297 102.487387) (xy 123.099296 102.487386) (xy 123.099296 102.487384) (xy 123.00886 102.281209) (xy 122.929603 102.159897) (xy 122.885724 102.092734) (xy 122.88572 102.092729) (xy 122.733237 101.927091) (xy 122.651382 101.863381) (xy 122.555576 101.788811) (xy 122.522319 101.770813) (xy 122.471929 101.720802) (xy 122.456576 101.651485) (xy 122.481136 101.584872) (xy 122.52232 101.549186) (xy 122.555576 101.531189) (xy 122.73324 101.392906) (xy 122.885722 101.227268) (xy 123.00886 101.038791) (xy 123.099296 100.832616) (xy 123.154564 100.614368) (xy 123.173156 100.39) (xy 123.154564 100.165632) (xy 123.099296 99.947384) (xy 123.00886 99.741209) (xy 123.00214 99.730924) (xy 122.885724 99.552734) (xy 122.885719 99.552729) (xy 122.742524 99.397179) (xy 122.711103 99.333514) (xy 122.71909 99.262968) (xy 122.763948 99.207939) (xy 122.791183 99.193789) (xy 122.906204 99.150889) (xy 122.906799 99.150444) (xy 123.023261 99.063261) (xy 123.110887 98.946207) (xy 123.110887 98.946206) (xy 123.110889 98.946204) (xy 123.161989 98.809201) (xy 123.1685 98.748638) (xy 123.1685 97.1) (xy 129.870773 97.1) (xy 129.89005 97.332633) (xy 129.947349 97.558903) (xy 129.947352 97.55891) (xy 130.041115 97.772668) (xy 130.168785 97.968083) (xy 130.326874 98.139813) (xy 130.326878 98.139817) (xy 130.39275 98.191087) (xy 130.511083 98.28319) (xy 130.716373 98.394287) (xy 130.937149 98.47008) (xy 131.167388 98.5085) (xy 131.167392 98.5085) (xy 131.400808 98.5085) (xy 131.400812 98.5085) (xy 131.631051 98.47008) (xy 131.851827 98.394287) (xy 132.057117 98.28319) (xy 132.24132 98.139818) (xy 132.399414 97.968083) (xy 132.448617 97.892771) (xy 132.50262 97.846683) (xy 132.572968 97.837108) (xy 132.637325 97.867085) (xy 132.659583 97.892772) (xy 132.708785 97.968083) (xy 132.866874 98.139813) (xy 132.866878 98.139817) (xy 132.93275 98.191087) (xy 133.051083 98.28319) (xy 133.256373 98.394287) (xy 133.477149 98.47008) (xy 133.707388 98.5085) (xy 133.707392 98.5085) (xy 133.940808 98.5085) (xy 133.940812 98.5085) (xy 134.171051 98.47008) (xy 134.391827 98.394287) (xy 134.597117 98.28319) (xy 134.78132 98.139818) (xy 134.939414 97.968083) (xy 134.988617 97.892771) (xy 135.04262 97.846683) (xy 135.112968 97.837108) (xy 135.177325 97.867085) (xy 135.199583 97.892772) (xy 135.248785 97.968083) (xy 135.406874 98.139813) (xy 135.406878 98.139817) (xy 135.47275 98.191087) (xy 135.591083 98.28319) (xy 135.796373 98.394287) (xy 136.017149 98.47008) (xy 136.247388 98.5085) (xy 136.247392 98.5085) (xy 136.480808 98.5085) (xy 136.480812 98.5085) (xy 136.711051 98.47008) (xy 136.931827 98.394287) (xy 137.137117 98.28319) (xy 137.32132 98.139818) (xy 137.479414 97.968083) (xy 137.607084 97.772669) (xy 137.700849 97.558907) (xy 137.758151 97.332626) (xy 137.777427 97.1) (xy 137.758151 96.867374) (xy 137.755982 96.85881) (xy 137.70085 96.641096) (xy 137.700847 96.641089) (xy 137.698938 96.636738) (xy 137.607084 96.427331) (xy 137.583675 96.3915) (xy 137.479414 96.231916) (xy 137.321325 96.060186) (xy 137.321321 96.060182) (xy 137.191056 95.958793) (xy 137.137117 95.91681) (xy 136.931827 95.805713) (xy 136.931824 95.805712) (xy 136.931823 95.805711) (xy 136.711055 95.729921) (xy 136.711048 95.729919) (xy 136.612511 95.713476) (xy 136.480812 95.6915) (xy 136.247388 95.6915) (xy 136.132166 95.710727) (xy 136.017151 95.729919) (xy 136.017144 95.729921) (xy 135.796376 95.805711) (xy 135.796373 95.805713) (xy 135.591085 95.916809) (xy 135.591083 95.91681) (xy 135.406878 96.060182) (xy 135.406874 96.060186) (xy 135.248785 96.231916) (xy 135.199583 96.307227) (xy 135.145579 96.353316) (xy 135.075231 96.362891) (xy 135.010874 96.332914) (xy 134.988617 96.307227) (xy 134.939414 96.231916) (xy 134.781325 96.060186) (xy 134.781321 96.060182) (xy 134.651056 95.958793) (xy 134.597117 95.91681) (xy 134.391827 95.805713) (xy 134.391824 95.805712) (xy 134.391823 95.805711) (xy 134.171055 95.729921) (xy 134.171048 95.729919) (xy 134.072511 95.713476) (xy 133.940812 95.6915) (xy 133.707388 95.6915) (xy 133.592166 95.710727) (xy 133.477151 95.729919) (xy 133.477144 95.729921) (xy 133.256376 95.805711) (xy 133.256373 95.805713) (xy 133.051085 95.916809) (xy 133.051083 95.91681) (xy 132.866878 96.060182) (xy 132.866874 96.060186) (xy 132.708785 96.231916) (xy 132.659583 96.307227) (xy 132.605579 96.353316) (xy 132.535231 96.362891) (xy 132.470874 96.332914) (xy 132.448617 96.307227) (xy 132.399414 96.231916) (xy 132.241325 96.060186) (xy 132.241321 96.060182) (xy 132.111056 95.958793) (xy 132.057117 95.91681) (xy 131.851827 95.805713) (xy 131.851824 95.805712) (xy 131.851823 95.805711) (xy 131.631055 95.729921) (xy 131.631048 95.729919) (xy 131.532511 95.713476) (xy 131.400812 95.6915) (xy 131.167388 95.6915) (xy 131.052166 95.710727) (xy 130.937151 95.729919) (xy 130.937144 95.729921) (xy 130.716376 95.805711) (xy 130.716373 95.805713) (xy 130.511085 95.916809) (xy 130.511083 95.91681) (xy 130.326878 96.060182) (xy 130.326874 96.060186) (xy 130.168785 96.231916) (xy 130.041115 96.427331) (xy 129.947352 96.641089) (xy 129.947349 96.641096) (xy 129.89005 96.867366) (xy 129.890049 96.867372) (xy 129.890049 96.867374) (xy 129.875679 97.040795) (xy 129.870773 97.1) (xy 123.1685 97.1) (xy 123.1685 96.951362) (xy 123.167057 96.937936) (xy 123.16199 96.890803) (xy 123.161988 96.890795) (xy 123.123176 96.786738) (xy 123.110889 96.753796) (xy 123.110888 96.753794) (xy 123.110887 96.753792) (xy 123.023261 96.636738) (xy 122.906207 96.549112) (xy 122.906203 96.54911) (xy 122.791192 96.506213) (xy 122.734356 96.463667) (xy 122.709546 96.397146) (xy 122.724638 96.327772) (xy 122.742525 96.30282) (xy 122.885714 96.147277) (xy 122.885724 96.147265) (xy 122.984054 95.996759) (xy 123.00886 95.958791) (xy 123.099296 95.752616) (xy 123.154564 95.534368) (xy 123.173156 95.31) (xy 123.154564 95.085632) (xy 123.099296 94.867384) (xy 123.00886 94.661209) (xy 123.00214 94.650924) (xy 122.885724 94.472734) (xy 122.88572 94.472729) (xy 122.733237 94.307091) (xy 122.651382 94.243381) (xy 122.555576 94.168811) (xy 122.522319 94.150813) (xy 122.471929 94.100802) (xy 122.456576 94.031485) (xy 122.481136 93.964872) (xy 122.52232 93.929186) (xy 122.555576 93.911189) (xy 122.73324 93.772906) (xy 122.885722 93.607268) (xy 123.00886 93.418791) (xy 123.099296 93.212616) (xy 123.154564 92.994368) (xy 123.173156 92.77) (xy 123.154564 92.545632) (xy 123.099296 92.327384) (xy 123.00886 92.121209) (xy 122.95502 92.0388) (xy 122.885724 91.932734) (xy 122.88572 91.932729) (xy 122.733237 91.767091) (xy 122.651382 91.703381) (xy 122.555576 91.628811) (xy 122.522319 91.610813) (xy 122.471929 91.560802) (xy 122.456576 91.491485) (xy 122.481136 91.424872) (xy 122.52232 91.389186) (xy 122.555576 91.371189) (xy 122.73324 91.232906) (xy 122.885722 91.067268) (xy 123.00886 90.878791) (xy 123.099296 90.672616) (xy 123.154564 90.454368) (xy 123.173156 90.23) (xy 123.154564 90.005632) (xy 123.141623 89.95453) (xy 123.099297 89.787387) (xy 123.099296 89.787386) (xy 123.099296 89.787384) (xy 123.00886 89.581209) (xy 122.937663 89.472233) (xy 122.885724 89.392734) (xy 122.88572 89.392729) (xy 122.746215 89.241189) (xy 122.73324 89.227094) (xy 122.733239 89.227093) (xy 122.733237 89.227091) (xy 122.651382 89.163381) (xy 122.555576 89.088811) (xy 122.522319 89.070813) (xy 122.471929 89.020802) (xy 122.456576 88.951485) (xy 122.481136 88.884872) (xy 122.52232 88.849186) (xy 122.555576 88.831189) (xy 122.73324 88.692906) (xy 122.885722 88.527268) (xy 123.00886 88.338791) (xy 123.099296 88.132616) (xy 123.154564 87.914368) (xy 123.173156 87.69) (xy 123.154564 87.465632) (xy 123.099296 87.247384) (xy 123.00886 87.041209) (xy 122.948867 86.949382) (xy 122.885724 86.852734) (xy 122.885714 86.852722) (xy 122.742159 86.696782) (xy 122.710737 86.633117) (xy 122.718723 86.562571) (xy 122.763582 86.507542) (xy 122.790827 86.493388) (xy 122.905965 86.450444) (xy 123.022904 86.362904) (xy 123.110444 86.245965) (xy 123.110444 86.245964) (xy 123.161494 86.109093) (xy 123.167999 86.048597) (xy 123.168 86.048585) (xy 123.168 85.404) (xy 122.252251 85.404) (xy 122.285245 85.346853) (xy 122.32 85.217143) (xy 122.32 85.082857) (xy 122.285245 84.953147) (xy 122.252251 84.896) (xy 123.168 84.896) (xy 123.168 84.251414) (xy 123.167999 84.251402) (xy 123.161494 84.190906) (xy 123.110444 84.054035) (xy 123.110444 84.054034) (xy 123.022904 83.937095) (xy 122.905966 83.849556) (xy 122.790826 83.806611) (xy 122.733991 83.764064) (xy 122.70918 83.697543) (xy 122.724272 83.628169) (xy 122.742154 83.603222) (xy 122.885722 83.447268) (xy 123.00886 83.258791) (xy 123.099296 83.052616) (xy 123.154564 82.834368) (xy 123.173156 82.61) (xy 123.154564 82.385632) (xy 123.099296 82.167384) (xy 123.00886 81.961209) (xy 123.00214 81.950924) (xy 122.885724 81.772734) (xy 122.88572 81.772729) (xy 122.733237 81.607091) (xy 122.651382 81.543381) (xy 122.555576 81.468811) (xy 122.522319 81.450813) (xy 122.471929 81.400802) (xy 122.456576 81.331485) (xy 122.481136 81.264872) (xy 122.52232 81.229186) (xy 122.555576 81.211189) (xy 122.73324 81.072906) (xy 122.885722 80.907268) (xy 123.00886 80.718791) (xy 123.099296 80.512616) (xy 123.154564 80.294368) (xy 123.173156 80.07) (xy 123.154564 79.845632) (xy 123.10833 79.663058) (xy 123.099297 79.627387) (xy 123.099296 79.627386) (xy 123.099296 79.627384) (xy 123.00886 79.421209) (xy 122.924117 79.2915) (xy 122.885724 79.232734) (xy 122.88572 79.232729) (xy 122.733237 79.067091) (xy 122.651382 79.003381) (xy 122.555576 78.928811) (xy 122.522319 78.910813) (xy 122.471929 78.860802) (xy 122.456576 78.791485) (xy 122.481136 78.724872) (xy 122.52232 78.689186) (xy 122.555576 78.671189) (xy 122.73324 78.532906) (xy 122.885722 78.367268) (xy 123.00886 78.178791) (xy 123.099296 77.972616) (xy 123.154564 77.754368) (xy 123.173156 77.53) (xy 123.154564 77.305632) (xy 123.099296 77.087384) (xy 123.00886 76.881209) (xy 122.896024 76.7085) (xy 122.885724 76.692734) (xy 122.88572 76.692729) (xy 122.733237 76.527091) (xy 122.651382 76.463381) (xy 122.555576 76.388811) (xy 122.522319 76.370813) (xy 122.471929 76.320802) (xy 122.456576 76.251485) (xy 122.481136 76.184872) (xy 122.52232 76.149186) (xy 122.555576 76.131189) (xy 122.73324 75.992906) (xy 122.885722 75.827268) (xy 123.00886 75.638791) (xy 123.099296 75.432616) (xy 123.154564 75.214368) (xy 123.173156 74.99) (xy 123.154564 74.765632) (xy 123.099296 74.547384) (xy 123.00886 74.341209) (xy 122.922157 74.2085) (xy 122.885724 74.152734) (xy 122.885714 74.152722) (xy 122.742159 73.996782) (xy 122.710737 73.933117) (xy 122.718723 73.862571) (xy 122.763582 73.807542) (xy 122.790827 73.793388) (xy 122.905965 73.750444) (xy 123.022904 73.662904) (xy 123.110444 73.545965) (xy 123.110444 73.545964) (xy 123.161494 73.409093) (xy 123.167999 73.348597) (xy 123.168 73.348585) (xy 123.168 72.704) (xy 122.252251 72.704) (xy 122.285245 72.646853) (xy 122.32 72.517143) (xy 122.32 72.382857) (xy 122.285245 72.253147) (xy 122.252251 72.196) (xy 123.168 72.196) (xy 123.168 71.551414) (xy 123.167999 71.551402) (xy 123.161494 71.490906) (xy 123.110444 71.354035) (xy 123.110444 71.354034) (xy 123.022904 71.237095) (xy 122.905966 71.149556) (xy 122.790826 71.106611) (xy 122.733991 71.064064) (xy 122.70918 70.997543) (xy 122.724272 70.928169) (xy 122.742154 70.903222) (xy 122.885722 70.747268) (xy 123.00886 70.558791) (xy 123.021489 70.53) (xy 127.011693 70.53) (xy 127.02065 70.632387) (xy 127.030885 70.74937) (xy 127.087879 70.962073) (xy 127.087881 70.962079) (xy 127.180942 71.16165) (xy 127.180944 71.161654) (xy 127.229812 71.231444) (xy 127.307251 71.342038) (xy 127.307254 71.342042) (xy 127.462957 71.497745) (xy 127.462961 71.497748) (xy 127.462962 71.497749) (xy 127.643346 71.624056) (xy 127.842924 71.71712) (xy 128.055629 71.774115) (xy 128.275 71.793307) (xy 128.494371 71.774115) (xy 128.707076 71.71712) (xy 128.906654 71.624056) (xy 129.087038 71.497749) (xy 129.242749 71.342038) (xy 129.369056 71.161654) (xy 129.46212 70.962076) (xy 129.519115 70.749371) (xy 129.538307 70.53) (xy 131.861693 70.53) (xy 131.87065 70.632387) (xy 131.880885 70.74937) (xy 131.937879 70.962073) (xy 131.937881 70.962079) (xy 132.030942 71.16165) (xy 132.030944 71.161654) (xy 132.079812 71.231444) (xy 132.157251 71.342038) (xy 132.157254 71.342042) (xy 132.312957 71.497745) (xy 132.312961 71.497748) (xy 132.312962 71.497749) (xy 132.493346 71.624056) (xy 132.692924 71.71712) (xy 132.905629 71.774115) (xy 133.125 71.793307) (xy 133.344371 71.774115) (xy 133.557076 71.71712) (xy 133.756654 71.624056) (xy 133.937038 71.497749) (xy 134.092749 71.342038) (xy 134.219056 71.161654) (xy 134.31212 70.962076) (xy 134.369115 70.749371) (xy 134.388307 70.53) (xy 134.369115 70.310629) (xy 134.31212 70.097924) (xy 134.219056 69.898347) (xy 134.092749 69.717962) (xy 133.937038 69.562251) (xy 133.756654 69.435944) (xy 133.75665 69.435942) (xy 133.557079 69.342881) (xy 133.557073 69.342879) (xy 133.44219 69.312096) (xy 133.344371 69.285885) (xy 133.125 69.266693) (xy 132.905629 69.285885) (xy 132.692926 69.342879) (xy 132.69292 69.342881) (xy 132.493346 69.435944) (xy 132.312965 69.562248) (xy 132.312959 69.562253) (xy 132.157253 69.717959) (xy 132.157248 69.717965) (xy 132.030944 69.898346) (xy 131.937881 70.09792) (xy 131.937879 70.097926) (xy 131.907482 70.21137) (xy 131.880885 70.310629) (xy 131.861693 70.53) (xy 129.538307 70.53) (xy 129.519115 70.310629) (xy 129.46212 70.097924) (xy 129.369056 69.898347) (xy 129.242749 69.717962) (xy 129.087038 69.562251) (xy 128.906654 69.435944) (xy 128.90665 69.435942) (xy 128.707079 69.342881) (xy 128.707073 69.342879) (xy 128.59219 69.312096) (xy 128.494371 69.285885) (xy 128.275 69.266693) (xy 128.055629 69.285885) (xy 127.842926 69.342879) (xy 127.84292 69.342881) (xy 127.643346 69.435944) (xy 127.462965 69.562248) (xy 127.462959 69.562253) (xy 127.307253 69.717959) (xy 127.307248 69.717965) (xy 127.180944 69.898346) (xy 127.087881 70.09792) (xy 127.087879 70.097926) (xy 127.057482 70.21137) (xy 127.030885 70.310629) (xy 127.011693 70.53) (xy 123.021489 70.53) (xy 123.099296 70.352616) (xy 123.154564 70.134368) (xy 123.173156 69.91) (xy 123.154564 69.685632) (xy 123.12332 69.562251) (xy 123.099297 69.467387) (xy 123.099296 69.467386) (xy 123.099296 69.467384) (xy 123.00886 69.261209) (xy 122.910138 69.110103) (xy 122.885724 69.072734) (xy 122.88572 69.072729) (xy 122.76957 68.946559) (xy 122.73324 68.907094) (xy 122.733239 68.907093) (xy 122.733237 68.907091) (xy 122.588307 68.794287) (xy 122.555576 68.768811) (xy 122.522319 68.750813) (xy 122.471929 68.700802) (xy 122.456576 68.631485) (xy 122.481136 68.564872) (xy 122.52232 68.529186) (xy 122.555576 68.511189) (xy 122.73324 68.372906) (xy 122.885722 68.207268) (xy 123.00886 68.018791) (xy 123.099296 67.812616) (xy 123.154564 67.594368) (xy 123.173156 67.37) (xy 123.154564 67.145632) (xy 123.12809 67.041089) (xy 123.099297 66.927387) (xy 123.099296 66.927386) (xy 123.099296 66.927384) (xy 123.00886 66.721209) (xy 122.931839 66.603319) (xy 122.885724 66.532734) (xy 122.88572 66.532729) (xy 122.733237 66.367091) (xy 122.64584 66.299067) (xy 122.555576 66.228811) (xy 122.555572 66.228809) (xy 122.551876 66.225932) (xy 122.510405 66.168306) (xy 122.506671 66.097408) (xy 122.541861 66.035746) (xy 122.604802 66.002898) (xy 122.629267 66.0005) (xy 127.288911 66.0005) ) ) ) (zone (net 56) (net_name "Net-(U2-SW)") (layer "B.Cu") (uuid "6a81851f-f9a2-483a-bffb-31d4b3847dec") (hatch edge 0.5) (priority 5) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 180.45 103.2) (xy 183.05 103.2) (xy 183.05 109) (xy 180.45 109) ) ) (filled_polygon (layer "B.Cu") (pts (xy 182.993039 103.219685) (xy 183.038794 103.272489) (xy 183.05 103.324) (xy 183.05 108.876) (xy 183.030315 108.943039) (xy 182.977511 108.988794) (xy 182.926 109) (xy 180.574 109) (xy 180.506961 108.980315) (xy 180.461206 108.927511) (xy 180.45 108.876) (xy 180.45 103.324) (xy 180.469685 103.256961) (xy 180.522489 103.211206) (xy 180.574 103.2) (xy 182.926 103.2) ) ) ) (zone (net 30) (net_name "Net-(JP1-B)") (layer "B.Cu") (uuid "b27f8d73-3656-4c7f-8b0e-e767a8bdfffb") (hatch edge 0.5) (priority 5) (connect_pads yes (clearance 0.508) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 183.03 98.2) (xy 183.03 100.4) (xy 176.73 100.4) (xy 176.73 98.2) ) ) (filled_polygon (layer "B.Cu") (pts (xy 180.107273 98.20271) (xy 180.134513 98.2085) (xy 180.325487 98.2085) (xy 180.352727 98.20271) (xy 180.378508 98.2) (xy 182.906 98.2) (xy 182.973039 98.219685) (xy 183.018794 98.272489) (xy 183.03 98.324) (xy 183.03 100.276) (xy 183.010315 100.343039) (xy 182.957511 100.388794) (xy 182.906 100.4) (xy 176.854 100.4) (xy 176.786961 100.380315) (xy 176.741206 100.327511) (xy 176.73 100.276) (xy 176.73 98.324) (xy 176.749685 98.256961) (xy 176.802489 98.211206) (xy 176.854 98.2) (xy 180.081492 98.2) ) ) ) (group "" (uuid "ebbf8fd6-b421-4263-ab59-961affacf39a") (members "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a" "4f929ae2-48f5-4477-ae85-53b87595350b" "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e" "cbfcf842-ae79-48e8-8439-be79bc4d3d3b" "cf7a1173-45eb-49f7-92cb-0fcb446fcd83" ) ) ) ================================================ FILE: boards/fanpico-0200/kicad/fanpico.kicad_pro ================================================ { "board": { "3dviewports": [], "design_settings": { "defaults": { "apply_defaults_to_fp_fields": false, "apply_defaults_to_fp_shapes": false, "apply_defaults_to_fp_text": false, "board_outline_line_width": 0.1, "copper_line_width": 0.2, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.1, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.15, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 1.2, "height": 1.2, "width": 1.2 }, "silk_line_width": 0.15, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.15, "silk_text_upright": false, "zones": { "45_degree_only": false, "min_clearance": 0.508 } }, "diff_pair_dimensions": [ { "gap": 0.0, "via_gap": 0.0, "width": 0.0 } ], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "error", "hole_clearance": "error", "hole_near_hole": "error", "holes_co_located": "warning", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "error", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "allow_blind_buried_vias": false, "allow_microvias": false, "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.5, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.2, "min_microvia_drill": 0.1, "min_resolved_spokes": 1, "min_silk_clearance": 0.0, "min_text_height": 0.7, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.2, "min_via_annular_width": 0.05, "min_via_diameter": 0.4, "solder_mask_clearance": 0.0, "solder_mask_min_width": 0.0, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, "td_onviapad": true } ], "teardrop_parameters": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [ 0.0, 0.2, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0 ], "tuning_pattern_settings": { "diff_pair_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 1.0 }, "diff_pair_skew_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 }, "single_track_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 } }, "via_dimensions": [ { "diameter": 0.0, "drill": 0.0 } ], "zones_allow_external_fillets": false, "zones_use_no_outline": true }, "ipc2581": { "dist": "", "distpn": "", "internal_id": "", "mfg": "", "mpn": "" }, "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "conflicting_netclasses": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "similar_labels": "warning", "simulation_model_issue": "ignore", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 6 }, { "bus_width": 78, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_2000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 39 }, { "bus_width": 19, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_350ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 9 }, { "bus_width": 157, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_4000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 78 }, { "bus_width": 39, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_750ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 19 } ], "meta": { "version": 3 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [ { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan1/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan2/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan3/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan4/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan5/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan6/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan7/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan8/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "FAN1_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN2_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN3_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN4_PWR" }, { "netclass": "power_350ma", "pattern": "3V3" }, { "netclass": "power_350ma", "pattern": "AUX5V" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12V_IN" }, { "netclass": "power_4000ma", "pattern": "AUX12V" }, { "netclass": "power_750ma", "pattern": "+5V" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_PWR" }, { "netclass": "power_750ma", "pattern": "VBUS" }, { "netclass": "power_750ma", "pattern": "VSYS" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_SEL" }, { "netclass": "power_4000ma", "pattern": "MAIN_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN1_PWR_IN" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/FAN1_PWR_IN" } ] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "plot": "kerbers/", "pos_files": "placement/", "specctra_dsn": "", "step": "", "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "bom_export_filename": "bom.csv", "bom_fmt_presets": [], "bom_fmt_settings": { "field_delimiter": ",", "keep_line_breaks": false, "keep_tabs": false, "name": "CSV", "ref_delimiter": ",", "ref_range_delimiter": "", "string_delimiter": "\"" }, "bom_presets": [], "bom_settings": { "exclude_dnp": false, "fields_ordered": [ { "group_by": false, "label": "Reference", "name": "Reference", "show": true }, { "group_by": true, "label": "Value", "name": "Value", "show": true }, { "group_by": false, "label": "Datasheet", "name": "Datasheet", "show": true }, { "group_by": true, "label": "Footprint", "name": "Footprint", "show": true }, { "group_by": false, "label": "Qty", "name": "${QUANTITY}", "show": true }, { "group_by": true, "label": "DNP", "name": "${DNP}", "show": true }, { "group_by": false, "label": "Exclude from Board", "name": "${EXCLUDE_FROM_BOARD}", "show": false }, { "group_by": false, "label": "Exclude from Simulation", "name": "${EXCLUDE_FROM_SIM}", "show": false }, { "group_by": false, "label": "Sim.Device", "name": "Sim.Device", "show": false }, { "group_by": false, "label": "Sim.Pins", "name": "Sim.Pins", "show": false }, { "group_by": false, "label": "Description", "name": "Description", "show": false }, { "group_by": false, "label": "JCLC Part Number", "name": "JCLC Part Number", "show": false }, { "group_by": false, "label": "Mouser Part Number", "name": "Mouser Part Number", "show": true }, { "group_by": false, "label": "Exclude from BOM", "name": "${EXCLUDE_FROM_BOM}", "show": false }, { "group_by": false, "label": "#", "name": "${ITEM_NUMBER}", "show": false }, { "group_by": false, "label": "LCSC Part Number", "name": "LCSC Part Number", "show": true }, { "group_by": false, "label": "Manufacturer", "name": "Manufacturer", "show": true }, { "group_by": false, "label": "Manufacturer Part Number", "name": "Manufacturer Part Number", "show": true }, { "group_by": false, "label": "Type", "name": "Type", "show": true }, { "group_by": false, "label": "Notes", "name": "Notes", "show": true } ], "filter_string": "", "group_symbols": true, "name": "", "sort_asc": true, "sort_field": "Reference" }, "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "operating_point_overlay_i_precision": 3, "operating_point_overlay_i_range": "~A", "operating_point_overlay_v_precision": 3, "operating_point_overlay_v_range": "~V", "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "ngspice": { "fix_include_paths": true, "fix_passive_vals": false, "meta": { "version": 0 }, "model_mode": 0, "workbook_filename": "" }, "page_layout_descr_file": "", "plot_directory": "", "spice_adjust_passive_values": false, "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", "Root" ], [ "4d4dd17e-947f-4b3c-bd12-d4039fccae25", "Fan Channels" ], [ "5ae37739-065e-4580-bde3-1038e45a286b", "Fan1" ], [ "61057e9f-bb51-4960-97cb-0865458dfe32", "Fan2" ], [ "20cc4b05-e726-4b05-ab1c-64b5db072e26", "Power Rails" ], [ "4e9d9bbb-bb4b-4f71-a57a-a915249deb73", "Sensors & Connectors" ] ], "text_variables": {} } ================================================ FILE: boards/fanpico-0200/kicad/fanpico.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") (paper "A4") (title_block (title "FanPico-0200 v1.1") (date "2025-12-05") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_0_1" (rectangle (start -2.286 0.508) (end 2.286 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.286) (xy -0.762 2.286) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 2.794) (xy -1.27 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start 2.286 -0.508) (end -2.286 -1.016) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "C_Polarized_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Graphic:Logo_Open_Hardware_Small" (exclude_from_sim no) (in_bom no) (on_board no) (property "Reference" "#SYM" (at 0 6.985 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Enable" "0" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Logo" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Logo_Open_Hardware_Small_0_1" (polyline (pts (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) ) (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "H" (at 0 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.445 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "mounting hole" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MountingHole_Pad_0_1" (circle (center 0 1.27) (radius 1.27) (stroke (width 1.27) (type default) ) (fill (type none) ) ) ) (symbol "MountingHole_Pad_1_1" (pin input line (at 0 -2.54 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Reference_Voltage:LM4040DBZ-3" (pin_names (offset 0.0254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 -3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 -5.08 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode device voltage reference shunt" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LM4040DBZ-3_0_1" (polyline (pts (xy -1.27 0) (xy 0 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 -1.27) (xy 0.635 0) (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0.635 -1.27) (xy 0.635 1.27) (xy 1.27 1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) ) (symbol "LM4040DBZ-3_1_1" (pin passive line (at 3.81 0 180) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -3.81 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin no_connect line (at -1.27 0 0) (length 2.54) hide (name "NC" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "SW" (at 1.27 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "SW_Push" (at 0 -1.524 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SW_Push_0_1" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 1.27) (xy 0 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 1.27) (xy -2.54 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 0 0) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:Pico" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U4" (at 0 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico" (at 0 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Pico_0_0" (text "Raspberry Pi Pico" (at 0 21.59 0) (effects (font (size 1.27 1.27) ) ) ) ) (symbol "Pico_0_1" (rectangle (start -15.24 26.67) (end 15.24 -26.67) (stroke (width 0) (type solid) ) (fill (type background) ) ) ) (symbol "Pico_1_1" (pin bidirectional line (at -17.78 24.13 0) (length 2.54) (name "GPIO0" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 1.27 0) (length 2.54) (name "GPIO7" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) (name "GPIO8" (effects (font (size 1.27 1.27) ) ) ) (number "11" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) (name "GPIO9" (effects (font (size 1.27 1.27) ) ) ) (number "12" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "13" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) (name "GPIO10" (effects (font (size 1.27 1.27) ) ) ) (number "14" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) (name "GPIO11" (effects (font (size 1.27 1.27) ) ) ) (number "15" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) (name "GPIO12" (effects (font (size 1.27 1.27) ) ) ) (number "16" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) (name "GPIO13" (effects (font (size 1.27 1.27) ) ) ) (number "17" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "18" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) (name "GPIO14" (effects (font (size 1.27 1.27) ) ) ) (number "19" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 21.59 0) (length 2.54) (name "GPIO1" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) (name "GPIO15" (effects (font (size 1.27 1.27) ) ) ) (number "20" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) (name "GPIO16" (effects (font (size 1.27 1.27) ) ) ) (number "21" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) (name "GPIO17" (effects (font (size 1.27 1.27) ) ) ) (number "22" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "23" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) (name "GPIO18" (effects (font (size 1.27 1.27) ) ) ) (number "24" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) (name "GPIO19" (effects (font (size 1.27 1.27) ) ) ) (number "25" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) (name "GPIO20" (effects (font (size 1.27 1.27) ) ) ) (number "26" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) (name "GPIO21" (effects (font (size 1.27 1.27) ) ) ) (number "27" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -6.35 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "28" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) (name "GPIO22" (effects (font (size 1.27 1.27) ) ) ) (number "29" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 -1.27 180) (length 2.54) (name "RUN" (effects (font (size 1.27 1.27) ) ) ) (number "30" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 1.27 180) (length 2.54) (name "GPIO26_ADC0" (effects (font (size 1.27 1.27) ) ) ) (number "31" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 3.81 180) (length 2.54) (name "GPIO27_ADC1" (effects (font (size 1.27 1.27) ) ) ) (number "32" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 6.35 180) (length 2.54) (name "AGND" (effects (font (size 1.27 1.27) ) ) ) (number "33" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 8.89 180) (length 2.54) (name "GPIO28_ADC2" (effects (font (size 1.27 1.27) ) ) ) (number "34" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 11.43 180) (length 2.54) (name "ADC_VREF" (effects (font (size 1.27 1.27) ) ) ) (number "35" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 13.97 180) (length 2.54) (name "3V3" (effects (font (size 1.27 1.27) ) ) ) (number "36" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 16.51 180) (length 2.54) (name "3V3_EN" (effects (font (size 1.27 1.27) ) ) ) (number "37" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "38" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 21.59 180) (length 2.54) (name "VSYS" (effects (font (size 1.27 1.27) ) ) ) (number "39" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 16.51 0) (length 2.54) (name "GPIO2" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 24.13 180) (length 2.54) (name "VBUS" (effects (font (size 1.27 1.27) ) ) ) (number "40" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -2.54 -29.21 90) (length 2.54) (name "SWCLK" (effects (font (size 1.27 1.27) ) ) ) (number "41" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 -29.21 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "42" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) (name "SWDIO" (effects (font (size 1.27 1.27) ) ) ) (number "43" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 13.97 0) (length 2.54) (name "GPIO3" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 11.43 0) (length 2.54) (name "GPIO4" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 8.89 0) (length 2.54) (name "GPIO5" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 3.81 0) (length 2.54) (name "GPIO6" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:SN74AHCT125PW" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U1" (at 0 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT125QDRQ1" (at 0 20.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C155176" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SN74AHCT125PW_0_0" (rectangle (start -12.7 -17.78) (end 12.7 17.78) (stroke (width 0.4064) (type solid) ) (fill (type background) ) ) (pin input line (at -17.78 0 0) (length 5.08) (name "~{1OE}" (effects (font (size 1.016 1.016) ) ) ) (number "1" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "~{3OE}" (effects (font (size 1.016 1.016) ) ) ) (number "10" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016) ) ) ) (number "11" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016) ) ) ) (number "12" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -7.62 0) (length 5.08) (name "~{4OE}" (effects (font (size 1.016 1.016) ) ) ) (number "13" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 15.24 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016) ) ) ) (number "14" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 10.16 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016) ) ) ) (number "2" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 10.16 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016) ) ) ) (number "3" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "~{2OE}" (effects (font (size 1.016 1.016) ) ) ) (number "4" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016) ) ) ) (number "5" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016) ) ) ) (number "6" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 -15.24 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016) ) ) ) (number "7" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016) ) ) ) (number "8" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016) ) ) ) (number "9" (effects (font (size 1.016 1.016) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) (symbol "sprakfun-qwiic:qwiic_Logo" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board no) (property "Reference" "G" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "qwiic_Logo" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "SparkFun Qwiic I2C" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "qwiic_Logo_0_0" (polyline (pts (xy -5.4327 -0.8446) (xy -5.2808 -0.8039) (xy -5.1544 -0.733) (xy -5.0492 -0.629) (xy -4.9612 -0.4891) (xy -4.9388 -0.4442) (xy -4.9077 -0.3735) (xy -4.8888 -0.3096) (xy -4.878 -0.2364) (xy -4.8713 -0.1381) (xy -4.8691 -0.0268) (xy -4.8861 0.154) (xy -4.9313 0.3092) (xy -5.006 0.4432) (xy -5.1118 0.5598) (xy -5.1427 0.5863) (xy -5.261 0.6623) (xy -5.3915 0.7052) (xy -5.544 0.7187) (xy -5.5765 0.7181) (xy -5.7259 0.6986) (xy -5.8545 0.6485) (xy -5.9707 0.5648) (xy -6.0239 0.5125) (xy -6.1186 0.3839) (xy -6.1815 0.2359) (xy -6.2139 0.0648) (xy -6.2171 -0.1327) (xy -6.208 -0.2303) (xy -6.1669 -0.4073) (xy -6.0959 -0.5571) (xy -5.9957 -0.6791) (xy -5.8667 -0.7722) (xy -5.7097 -0.8355) (xy -5.6837 -0.8418) (xy -5.5963 -0.8532) (xy -5.5114 -0.8538) (xy -5.4327 -0.8446) ) (stroke (width 0.01) (type default) ) (fill (type outline) ) ) (polyline (pts (xy 1.114 -2.7667) (xy 6.0472 -2.7606) (xy 6.2463 -2.7148) (xy 6.337 -2.6928) (xy 6.6505 -2.5964) (xy 6.9363 -2.4737) (xy 7.1992 -2.3218) (xy 7.4443 -2.1381) (xy 7.6763 -1.9197) (xy 7.765 -1.8236) (xy 7.9726 -1.5605) (xy 8.1416 -1.2836) (xy 8.2724 -0.992) (xy 8.3654 -0.6847) (xy 8.4209 -0.3609) (xy 8.4393 -0.0196) (xy 8.4383 0.0655) (xy 8.4145 0.3752) (xy 8.3579 0.6676) (xy 8.2664 0.9511) (xy 8.138 1.234) (xy 8.0972 1.3103) (xy 7.9176 1.5925) (xy 7.7084 1.847) (xy 7.4711 2.0726) (xy 7.2073 2.2681) (xy 6.9187 2.4323) (xy 6.6067 2.5639) (xy 6.273 2.6617) (xy 6.2589 2.6648) (xy 6.2405 2.6684) (xy 6.2191 2.6716) (xy 6.1933 2.6747) (xy 6.1617 2.6775) (xy 6.1229 2.6801) (xy 6.0753 2.6825) (xy 6.0178 2.6847) (xy 5.9488 2.6867) (xy 5.8669 2.6886) (xy 5.7707 2.6902) (xy 5.6588 2.6917) (xy 5.5298 2.693) (xy 5.3823 2.6942) (xy 5.2149 2.6953) (xy 5.0261 2.6962) (xy 4.8146 2.697) (xy 4.579 2.6977) (xy 4.3178 2.6982) (xy 4.0296 2.6987) (xy 3.7131 2.6991) (xy 3.3667 2.6994) (xy 2.9892 2.6997) (xy 2.579 2.6999) (xy 2.1348 2.7) (xy 1.6552 2.7001) (xy 1.1388 2.7001) (xy 0.5841 2.7001) (xy -0.0102 2.7001) (xy -6.1292 2.7001) (xy -6.3505 2.644) (xy -6.4841 2.607) (xy -6.7964 2.4938) (xy -7.0847 2.3484) (xy -7.3523 2.1691) (xy -7.6022 1.9541) (xy -7.8228 1.7179) (xy -8.0199 1.4516) (xy -8.1801 1.1677) (xy -8.3036 0.8654) (xy -8.3907 0.5442) (xy -8.4419 0.2033) (xy -8.4512 -0.0999) (xy -8.4229 -0.4124) (xy -8.358 -0.7268) (xy -8.2573 -1.037) (xy -8.2016 -1.1697) (xy -8.0521 -1.4517) (xy -7.87 -1.7127) (xy -7.6584 -1.9504) (xy -7.4205 -2.1625) (xy -7.1593 -2.3467) (xy -6.878 -2.5006) (xy -6.5797 -2.6219) (xy -6.2674 -2.7084) (xy -5.9444 -2.7576) (xy -5.922 -2.759) (xy -5.8567 -2.7613) (xy -5.7613 -2.7635) (xy -5.6429 -2.7656) (xy -5.5083 -2.7673) (xy -5.3644 -2.7686) (xy -4.8664 -2.772) (xy -4.8664 -2.0042) (xy -4.8664 -1.2363) (xy -4.988 -1.3553) (xy -5.0139 -1.3798) (xy -5.1784 -1.503) (xy -5.3644 -1.5917) (xy -5.5706 -1.6453) (xy -5.7956 -1.6632) (xy -6.0087 -1.6503) (xy -6.2442 -1.6015) (xy -6.468 -1.5153) (xy -6.6423 -1.4122) (xy -6.8101 -1.2696) (xy -6.9545 -1.0983) (xy -7.0706 -0.9035) (xy -7.1159 -0.8066) (xy -7.1662 -0.6802) (xy -7.2032 -0.5549) (xy -7.2309 -0.4168) (xy -7.2531 -0.2517) (xy -7.2645 -0.0773) (xy -7.2559 0.1553) (xy -7.2228 0.3848) (xy -7.1667 0.6002) (xy -7.0895 0.7905) (xy -6.9738 0.984) (xy -6.8224 1.164) (xy -6.645 1.3131) (xy -6.4435 1.4296) (xy -6.2198 1.512) (xy -6.2168 1.5128) (xy -6.0991 1.5354) (xy -5.9587 1.5479) (xy -5.8081 1.5506) (xy -5.6599 1.5435) (xy -5.5266 1.5269) (xy -5.4208 1.5009) (xy -5.3121 1.4578) (xy -5.1345 1.3582) (xy -4.9742 1.2256) (xy -4.8664 1.1205) (xy -4.8664 1.32) (xy -4.8664 1.5195) (xy -4.3428 1.5195) (xy -3.8192 1.5195) (xy -3.8192 1.5092) (xy -3.651 1.5092) (xy -3.1359 1.5147) (xy -3.0732 1.5153) (xy -2.9054 1.5158) (xy -2.7765 1.5144) (xy -2.6848 1.5109) (xy -2.6289 1.5054) (xy -2.607 1.4977) (xy -2.6049 1.4928) (xy -2.5923 1.4545) (xy -2.5697 1.3821) (xy -2.5383 1.2793) (xy -2.4992 1.1497) (xy -2.4535 0.9973) (xy -2.4024 0.8257) (xy -2.3469 0.6386) (xy -2.2883 0.4399) (xy -2.2626 0.353) (xy -2.2055 0.1609) (xy -2.152 -0.0169) (xy -2.1032 -0.1766) (xy -2.0604 -0.3147) (xy -2.0246 -0.4277) (xy -1.9968 -0.512) (xy -1.9783 -0.564) (xy -1.9702 -0.5801) (xy -1.9654 -0.5681) (xy -1.9499 -0.5201) (xy -1.9252 -0.4397) (xy -1.8924 -0.3308) (xy -1.8529 -0.1975) (xy -1.8079 -0.0439) (xy -1.7584 0.1259) (xy -1.7059 0.308) (xy -1.6754 0.4138) (xy -1.6217 0.6001) (xy -1.5705 0.7774) (xy -1.5233 0.9405) (xy -1.4815 1.0844) (xy -1.4467 1.2041) (xy -1.4202 1.2945) (xy -1.4037 1.3504) (xy -1.3525 1.5202) (xy -0.8571 1.5147) (xy -0.3617 1.5092) (xy -0.2632 1.1704) (xy -0.2457 1.1103) (xy -0.1592 0.8126) (xy -0.0832 0.5516) (xy -0.017 0.325) (xy 0.04 0.1304) (xy 0.0886 -0.0344) (xy 0.1296 -0.1717) (xy 0.1636 -0.2838) (xy 0.1915 -0.3731) (xy 0.2138 -0.4419) (xy 0.2315 -0.4925) (xy 0.2451 -0.5272) (xy 0.2555 -0.5482) (xy 0.2633 -0.558) (xy 0.2693 -0.5588) (xy 0.2742 -0.5529) (xy 0.2787 -0.5426) (xy 0.2801 -0.5389) (xy 0.2928 -0.4995) (xy 0.3157 -0.4255) (xy 0.3473 -0.3211) (xy 0.3867 -0.1902) (xy 0.4325 -0.0368) (xy 0.4835 0.1352) (xy 0.5386 0.3216) (xy 0.5966 0.5185) (xy 0.8908 1.5195) (xy 1.3899 1.5195) (xy 1.4919 1.5192) (xy 1.6201 1.518) (xy 1.7294 1.5159) (xy 1.8144 1.5132) (xy 1.8695 1.5099) (xy 1.8891 1.5062) (xy 1.8878 1.5017) (xy 1.8751 1.465) (xy 1.8498 1.3939) (xy 1.8129 1.2913) (xy 1.7656 1.1601) (xy 1.7087 1.0033) (xy 1.6435 0.8236) (xy 1.5709 0.6241) (xy 1.4919 0.4076) (xy 1.4078 0.1771) (xy 1.3194 -0.0646) (xy 0.7498 -1.6222) (xy 2.0329 -1.6222) (xy 2.0329 -0.0513) (xy 2.0329 1.5195) (xy 2.5462 1.5195) (xy 3.0595 1.5195) (xy 3.0595 -0.0513) (xy 3.0595 -1.6222) (xy 3.2649 -1.6222) (xy 3.2649 -0.0513) (xy 3.2649 1.5195) (xy 3.7782 1.5195) (xy 4.2916 1.5195) (xy 4.2916 -0.0513) (xy 4.2916 -0.0616) (xy 4.5072 -0.0616) (xy 4.51 0.109) (xy 4.5206 0.2597) (xy 4.5412 0.3904) (xy 4.5742 0.5118) (xy 4.6219 0.6344) (xy 4.6865 0.7688) (xy 4.7189 0.8272) (xy 4.8331 0.9884) (xy 4.9744 1.1395) (xy 5.1327 1.2705) (xy 5.2977 1.3713) (xy 5.3343 1.3892) (xy 5.5052 1.4608) (xy 5.6736 1.5089) (xy 5.8531 1.5366) (xy 6.0574 1.547) (xy 6.3141 1.5503) (xy 6.3197 1.1242) (xy 6.3252 0.6981) (xy 6.1657 0.6977) (xy 6.0758 0.6938) (xy 5.9577 0.6711) (xy 5.8554 0.6239) (xy 5.7556 0.5473) (xy 5.6613 0.4359) (xy 5.592 0.2991) (xy 5.5481 0.1445) (xy 5.53 -0.0204) (xy 5.5379 -0.188) (xy 5.572 -0.3512) (xy 5.6325 -0.5023) (xy 5.7197 -0.634) (xy 5.7811 -0.6969) (xy 5.8788 -0.7612) (xy 5.9969 -0.8003) (xy 6.1437 -0.8177) (xy 6.3252 -0.8264) (xy 6.3197 -1.2397) (xy 6.3141 -1.653) (xy 6.119 -1.6559) (xy 6.0236 -1.6559) (xy 5.821 -1.6423) (xy 5.6365 -1.6074) (xy 5.4566 -1.5482) (xy 5.2677 -1.4615) (xy 5.1266 -1.3784) (xy 4.9456 -1.2329) (xy 4.7938 -1.0591) (xy 4.6732 -0.8591) (xy 4.6423 -0.7948) (xy 4.5921 -0.6805) (xy 4.5558 -0.5768) (xy 4.5314 -0.4734) (xy 4.5165 -0.3599) (xy 4.5092 -0.2261) (xy 4.5072 -0.0616) (xy 4.2916 -0.0616) (xy 4.2916 -1.6222) (xy 3.7782 -1.6222) (xy 3.2649 -1.6222) (xy 3.0595 -1.6222) (xy 2.5462 -1.6222) (xy 2.0329 -1.6222) (xy 0.7498 -1.6222) (xy 0.2363 -1.6221) (xy -0.2772 -1.6221) (xy -0.5736 -0.6568) (xy -0.583 -0.626) (xy -0.6413 -0.4378) (xy -0.696 -0.2633) (xy -0.746 -0.106) (xy -0.7901 0.0304) (xy -0.8272 0.1421) (xy -0.8559 0.2255) (xy -0.8751 0.277) (xy -0.8836 0.2929) (xy -0.8838 0.2926) (xy -0.8932 0.2679) (xy -0.9134 0.208) (xy -0.9431 0.1169) (xy -0.9811 -0.0016) (xy -1.0262 -0.1436) (xy -1.0771 -0.3054) (xy -1.1326 -0.483) (xy -1.1916 -0.6725) (xy -1.4859 -1.6222) (xy -2.0006 -1.6218) (xy -2.5153 -1.6215) (xy -3.0831 -0.0561) (xy -3.651 1.5092) (xy -3.8192 1.5092) (xy -3.8192 -0.6267) (xy -3.8192 -2.7729) (xy 1.114 -2.7667) ) (stroke (width 0.01) (type default) ) (fill (type outline) ) ) ) ) ) (junction (at 243.84 144.78) (diameter 0) (color 0 0 0 0) (uuid "44461bb5-3d15-48d8-b54c-29cc384038c4") ) (junction (at 86.36 38.1) (diameter 0) (color 0 0 0 0) (uuid "4a182950-aa82-49c6-886a-395f4e45ad57") ) (junction (at 248.92 144.78) (diameter 0) (color 0 0 0 0) (uuid "4ac33c7f-819a-4e40-9db8-c7158710ea25") ) (junction (at 248.92 132.08) (diameter 0) (color 0 0 0 0) (uuid "4cf7f1ed-1475-4478-97e8-e413894f7315") ) (junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0) (uuid "5c99028e-1d30-41b1-8932-d1579c1cedd7") ) (junction (at 243.84 132.08) (diameter 0) (color 0 0 0 0) (uuid "739bf354-74df-465f-9fc4-9c9002958c57") ) (junction (at 44.45 60.96) (diameter 0) (color 0 0 0 0) (uuid "9d867883-eced-4471-9fce-19f09daf1612") ) (junction (at 193.04 45.72) (diameter 0) (color 0 0 0 0) (uuid "a6047c76-e1f7-4633-9ed1-a524d2c4adc5") ) (junction (at 256.54 144.78) (diameter 0) (color 0 0 0 0) (uuid "b842a3fa-7994-4673-966c-1ef6fc8631cc") ) (junction (at 95.25 50.8) (diameter 0) (color 0 0 0 0) (uuid "bc5afe7e-240f-4293-919a-3fa5323ca3c7") ) (junction (at 86.36 40.64) (diameter 0) (color 0 0 0 0) (uuid "c2759c0d-1090-43b6-8679-d9db23ac5c4b") ) (junction (at 86.36 43.18) (diameter 0) (color 0 0 0 0) (uuid "c312270f-3292-440f-be58-8d5cca988f64") ) (junction (at 236.22 132.08) (diameter 0) (color 0 0 0 0) (uuid "c374c009-c04c-47ed-a1c9-18363335846e") ) (junction (at 256.54 132.08) (diameter 0) (color 0 0 0 0) (uuid "c7fcec21-40e0-4284-9c5f-91ce733eca2a") ) (junction (at 236.22 144.78) (diameter 0) (color 0 0 0 0) (uuid "f7161d64-a0dc-42e0-98d7-a0e878124a80") ) (no_connect (at 134.62 63.5) (uuid "02fd8d8e-a021-4bd1-ac63-319238f33db1") ) (no_connect (at 170.18 71.12) (uuid "03053679-e179-4541-be62-57b95bb53678") ) (no_connect (at 134.62 88.9) (uuid "0a61d613-970e-4844-b272-69bc40e344c8") ) (no_connect (at 50.8 50.8) (uuid "2ba98461-3ceb-4ad6-8fbd-f283221eb2ef") ) (no_connect (at 134.62 73.66) (uuid "4a52a68a-41ff-4800-9fb1-0aa387f4c4bf") ) (no_connect (at 50.8 48.26) (uuid "55bead44-c423-4143-8ac9-b8a970bfc7e8") ) (no_connect (at 149.86 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27d9") ) (no_connect (at 152.4 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27da") ) (no_connect (at 154.94 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27db") ) (no_connect (at 134.62 83.82) (uuid "61b02870-8c9f-4913-bd53-3471501f1953") ) (no_connect (at 134.62 66.04) (uuid "6666ee9f-665d-4e3a-b0f7-a9e34c1d4033") ) (no_connect (at 170.18 91.44) (uuid "6742c70f-4b12-4312-b2dd-3dd71640d48a") ) (no_connect (at 134.62 71.12) (uuid "6f82ef90-dfba-45f4-a03b-1b77e1e990b1") ) (no_connect (at 134.62 58.42) (uuid "80cc6d8a-fb5d-4cd9-8469-10dad558af1b") ) (no_connect (at 170.18 88.9) (uuid "9af29c0a-0fcd-454f-a0d4-6a81d3d3ffe5") ) (no_connect (at 170.18 50.8) (uuid "a8b06511-83ab-4494-899d-baf6f0f7c2e2") ) (no_connect (at 134.62 55.88) (uuid "af2f1a70-e28e-4bb9-862f-c1770af62fd2") ) (no_connect (at 134.62 68.58) (uuid "d0f2671d-ce70-43ed-b6d9-5ed5dadb9ecf") ) (no_connect (at 170.18 66.04) (uuid "d97ef3ea-2198-4c53-abb6-ca8d80cec035") ) (no_connect (at 134.62 76.2) (uuid "e11be0dc-f550-4c53-9b86-922ab047cc06") ) (no_connect (at 134.62 81.28) (uuid "f3b6247f-0a1e-43a6-9da9-8e9b4ac2a684") ) (no_connect (at 134.62 78.74) (uuid "ff404892-111f-42ca-a620-68997471f6d7") ) (polyline (pts (xy 105.41 116.84) (xy 105.41 17.78) ) (stroke (width 0) (type default) ) (uuid "0225b026-bc9a-4ae3-a532-98073f921f06") ) (wire (pts (xy 266.7 144.78) (xy 270.51 144.78) ) (stroke (width 0) (type default) ) (uuid "03fc6758-c18a-4c98-ab71-1032e4304690") ) (wire (pts (xy 243.84 132.08) (xy 243.84 134.62) ) (stroke (width 0) (type default) ) (uuid "06e94543-5813-475e-bb40-4f1f9177f3d0") ) (wire (pts (xy 86.36 50.8) (xy 95.25 50.8) ) (stroke (width 0) (type default) ) (uuid "08b2730d-ea57-4b22-a063-f16a90a079f4") ) (wire (pts (xy 193.04 54.61) (xy 193.04 53.34) ) (stroke (width 0) (type default) ) (uuid "09c1cecc-df80-4774-8746-c1b946e136c9") ) (wire (pts (xy 193.04 45.72) (xy 196.85 45.72) ) (stroke (width 0) (type default) ) (uuid "0e515928-7d22-4731-8cec-a6f38fb37081") ) (wire (pts (xy 36.83 26.67) (xy 36.83 30.48) ) (stroke (width 0) (type default) ) (uuid "0e650889-b494-4580-a65c-71328da9d336") ) (wire (pts (xy 236.22 144.78) (xy 233.68 144.78) ) (stroke (width 0) (type default) ) (uuid "12215783-4ce1-4031-87f0-99f322f05186") ) (wire (pts (xy 86.36 40.64) (xy 86.36 43.18) ) (stroke (width 0) (type default) ) (uuid "1c03a828-53cd-4e4e-87c7-45e67cf2b53b") ) (wire (pts (xy 236.22 132.08) (xy 236.22 135.89) ) (stroke (width 0) (type default) ) (uuid "1c342a1c-439d-4b5a-af2d-08ad1d109144") ) (wire (pts (xy 256.54 121.92) (xy 256.54 123.19) ) (stroke (width 0) (type default) ) (uuid "1c3e2fe0-5bb0-408d-b1ba-d8b29a870098") ) (wire (pts (xy 248.92 144.78) (xy 248.92 146.05) ) (stroke (width 0) (type default) ) (uuid "1d3a1626-d1ef-4f14-b28c-9b933e72b66d") ) (wire (pts (xy 26.67 38.1) (xy 26.67 41.91) ) (stroke (width 0) (type default) ) (uuid "248e10d8-fff0-4345-8c60-7a6079f0401b") ) (wire (pts (xy 193.04 48.26) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "27b07f33-b564-431a-b04b-4744b236ecb5") ) (wire (pts (xy 86.36 38.1) (xy 86.36 40.64) ) (stroke (width 0) (type default) ) (uuid "2f2c4fe5-08cb-4222-8c26-736039cae7f8") ) (wire (pts (xy 170.18 45.72) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "355b7b31-d6c5-48f7-8526-aa8f27240965") ) (wire (pts (xy 26.67 26.67) (xy 26.67 30.48) ) (stroke (width 0) (type default) ) (uuid "38c0239e-08eb-435b-8f1b-995056a9c9c9") ) (wire (pts (xy 195.58 78.74) (xy 170.18 78.74) ) (stroke (width 0) (type default) ) (uuid "39f2ab74-3b8f-466c-909e-dcb4a40cc0b5") ) (wire (pts (xy 198.12 105.41) (xy 198.12 76.2) ) (stroke (width 0) (type default) ) (uuid "3a6446b3-5d45-4bc9-b603-48bf4dae4c6c") ) (wire (pts (xy 243.84 142.24) (xy 243.84 144.78) ) (stroke (width 0) (type default) ) (uuid "3c0044c6-c429-449b-b13a-e41678b50171") ) (wire (pts (xy 243.84 132.08) (xy 248.92 132.08) ) (stroke (width 0) (type default) ) (uuid "410a416a-c262-4325-9a55-1d9ceffdf200") ) (wire (pts (xy 256.54 121.92) (xy 264.16 121.92) ) (stroke (width 0) (type default) ) (uuid "430bb481-7cde-4cab-b54d-6d7ff845e23a") ) (polyline (pts (xy 232.41 20.32) (xy 232.41 45.72) ) (stroke (width 0) (type default) ) (uuid "4e9f99cf-d8d9-4f72-93eb-785163413a3a") ) (wire (pts (xy 259.08 144.78) (xy 256.54 144.78) ) (stroke (width 0) (type default) ) (uuid "58bf6367-6c03-4861-be94-b4e73c4df116") ) (wire (pts (xy 243.84 144.78) (xy 236.22 144.78) ) (stroke (width 0) (type default) ) (uuid "5a66cd7f-a53d-4cb6-808e-4ba88e785316") ) (wire (pts (xy 236.22 140.97) (xy 236.22 144.78) ) (stroke (width 0) (type default) ) (uuid "5c707d89-acbd-4785-a874-cdebbe604627") ) (wire (pts (xy 90.17 53.34) (xy 90.17 58.42) ) (stroke (width 0) (type default) ) (uuid "5df6e566-af55-4933-bd72-8f4e2c0f62f8") ) (wire (pts (xy 90.17 58.42) (xy 111.76 58.42) ) (stroke (width 0) (type default) ) (uuid "6399fc7b-78b4-4e8b-945e-67aee2eda7c1") ) (polyline (pts (xy 105.41 17.78) (xy 20.32 17.78) ) (stroke (width 0) (type default) ) (uuid "64d2652d-c463-460c-8179-7b15d9e1b57a") ) (wire (pts (xy 114.3 102.87) (xy 195.58 102.87) ) (stroke (width 0) (type default) ) (uuid "694a0aad-7532-4f61-91e7-9766031068a2") ) (wire (pts (xy 111.76 58.42) (xy 111.76 105.41) ) (stroke (width 0) (type default) ) (uuid "6c6ba33c-7298-44c6-ba4f-d3ac8b63d928") ) (polyline (pts (xy 215.9 154.94) (xy 276.86 154.94) ) (stroke (width 0) (type default) ) (uuid "6f4d6650-5bcb-4282-924a-5cd152ed0ec9") ) (polyline (pts (xy 275.59 45.72) (xy 232.41 45.72) ) (stroke (width 0) (type default) ) (uuid "713ff1dc-4d1d-4410-a196-3d543c6b29c7") ) (wire (pts (xy 270.51 144.78) (xy 270.51 146.05) ) (stroke (width 0) (type default) ) (uuid "71a80893-914d-481f-840f-d73513d66b7a") ) (wire (pts (xy 86.36 48.26) (xy 95.25 48.26) ) (stroke (width 0) (type default) ) (uuid "76c12fef-2ebc-4481-9d39-0e6850af7a5d") ) (wire (pts (xy 198.12 76.2) (xy 170.18 76.2) ) (stroke (width 0) (type default) ) (uuid "78f623ce-759c-42ff-b9e2-648060e9ede7") ) (wire (pts (xy 233.68 132.08) (xy 236.22 132.08) ) (stroke (width 0) (type default) ) (uuid "7fc9a529-3f88-49e9-b0e6-e4d2ef7ceeca") ) (polyline (pts (xy 232.41 20.32) (xy 275.59 20.32) ) (stroke (width 0) (type default) ) (uuid "81222d6f-a3e7-45b9-8ef8-8863d409d691") ) (wire (pts (xy 36.83 38.1) (xy 36.83 43.18) ) (stroke (width 0) (type default) ) (uuid "826a64f1-831c-4a5f-8609-cf71518b35cd") ) (polyline (pts (xy 276.86 113.03) (xy 215.9 113.03) ) (stroke (width 0) (type default) ) (uuid "86813523-31f3-4ecd-8f15-d6b26bb626c9") ) (wire (pts (xy 248.92 132.08) (xy 256.54 132.08) ) (stroke (width 0) (type default) ) (uuid "8b889b1e-faba-489d-8e68-d7f715c06289") ) (wire (pts (xy 236.22 132.08) (xy 243.84 132.08) ) (stroke (width 0) (type default) ) (uuid "9052c1c7-0610-4c6b-bba2-a2782a39836f") ) (wire (pts (xy 270.51 34.29) (xy 270.51 38.1) ) (stroke (width 0) (type default) ) (uuid "9233216e-2e08-4379-96e0-cb36b85ff99a") ) (wire (pts (xy 86.36 38.1) (xy 86.36 26.67) ) (stroke (width 0) (type default) ) (uuid "96c7973c-1ca4-496f-9433-cfb3dda02f91") ) (wire (pts (xy 256.54 132.08) (xy 256.54 134.62) ) (stroke (width 0) (type default) ) (uuid "984eacb6-8323-4ded-b67b-fb5e78dc9b4f") ) (wire (pts (xy 243.84 34.29) (xy 248.92 34.29) ) (stroke (width 0) (type default) ) (uuid "99b48839-8290-446e-94cc-89a81a4f05d0") ) (wire (pts (xy 111.76 105.41) (xy 198.12 105.41) ) (stroke (width 0) (type default) ) (uuid "9a8687d0-1981-40a6-933b-0c2ac31b64e0") ) (wire (pts (xy 248.92 144.78) (xy 243.84 144.78) ) (stroke (width 0) (type default) ) (uuid "9ed68298-3c09-4cbc-8d43-3d4e50b58202") ) (wire (pts (xy 256.54 130.81) (xy 256.54 132.08) ) (stroke (width 0) (type default) ) (uuid "a0c3c007-0ce9-4f18-937e-4f07a43e915c") ) (wire (pts (xy 256.54 144.78) (xy 256.54 142.24) ) (stroke (width 0) (type default) ) (uuid "a2ecdf12-a15c-45bf-a0e6-4e12848b4c7a") ) (wire (pts (xy 46.99 30.48) (xy 46.99 33.02) ) (stroke (width 0) (type default) ) (uuid "a80fef18-a48a-4d09-b643-a672757b1495") ) (wire (pts (xy 86.36 43.18) (xy 86.36 45.72) ) (stroke (width 0) (type default) ) (uuid "aeb321a9-5237-4c78-bac4-781a3c603cc1") ) (wire (pts (xy 95.25 48.26) (xy 95.25 50.8) ) (stroke (width 0) (type default) ) (uuid "aed10717-d10a-4eae-9e01-b7a81b2e2373") ) (wire (pts (xy 36.83 26.67) (xy 26.67 26.67) ) (stroke (width 0) (type default) ) (uuid "b83304f3-46bf-4db8-a64c-7eaf6c7ea56c") ) (wire (pts (xy 86.36 55.88) (xy 114.3 55.88) ) (stroke (width 0) (type default) ) (uuid "c3c209bd-a7f5-4e9d-9b8b-afbb38cce9f0") ) (wire (pts (xy 114.3 55.88) (xy 114.3 102.87) ) (stroke (width 0) (type default) ) (uuid "c73c2167-51b8-4477-9e87-f575bde34437") ) (wire (pts (xy 86.36 26.67) (xy 36.83 26.67) ) (stroke (width 0) (type default) ) (uuid "c8c3c69a-be61-4887-8549-c8060d004996") ) (polyline (pts (xy 276.86 154.94) (xy 276.86 113.03) ) (stroke (width 0) (type default) ) (uuid "ca5b5b51-a7f9-4111-9194-6e0a4f01fcf0") ) (wire (pts (xy 90.17 53.34) (xy 86.36 53.34) ) (stroke (width 0) (type default) ) (uuid "d130f3e6-3e5d-4159-b2b2-7cdb6f3ed471") ) (polyline (pts (xy 215.9 113.03) (xy 215.9 154.94) ) (stroke (width 0) (type default) ) (uuid "d41d8d66-fe44-4552-8178-6068db774d34") ) (polyline (pts (xy 20.32 116.84) (xy 105.41 116.84) ) (stroke (width 0) (type default) ) (uuid "d4f636a4-f5b8-49c2-a599-1577d3892675") ) (polyline (pts (xy 20.32 17.78) (xy 20.32 116.84) ) (stroke (width 0) (type default) ) (uuid "d85017d9-c128-48c8-8251-f13f61501d86") ) (wire (pts (xy 248.92 130.81) (xy 248.92 132.08) ) (stroke (width 0) (type default) ) (uuid "db7c70ec-3601-4f98-81f3-7c474fea16ba") ) (wire (pts (xy 44.45 60.96) (xy 50.8 60.96) ) (stroke (width 0) (type default) ) (uuid "e0be14a5-755d-4de2-a11b-e47244753427") ) (wire (pts (xy 50.8 30.48) (xy 46.99 30.48) ) (stroke (width 0) (type default) ) (uuid "e5962416-b5b1-4270-a17c-cc51c70b33fd") ) (wire (pts (xy 256.54 144.78) (xy 248.92 144.78) ) (stroke (width 0) (type default) ) (uuid "e5c7b78d-5fa2-422a-99f8-30d909bbcb69") ) (wire (pts (xy 36.83 43.18) (xy 38.1 43.18) ) (stroke (width 0) (type default) ) (uuid "e9823521-5882-4217-8e13-9e4963e22875") ) (polyline (pts (xy 275.59 20.32) (xy 275.59 45.72) ) (stroke (width 0) (type default) ) (uuid "eb281db5-4063-4df2-8db9-ea3803bcb333") ) (wire (pts (xy 256.54 34.29) (xy 260.35 34.29) ) (stroke (width 0) (type default) ) (uuid "f04e1ab9-fbf3-46dd-b600-c260e336711a") ) (wire (pts (xy 30.48 60.96) (xy 44.45 60.96) ) (stroke (width 0) (type default) ) (uuid "f812f4ab-364a-493a-aa6b-459b4558f569") ) (wire (pts (xy 195.58 102.87) (xy 195.58 78.74) ) (stroke (width 0) (type default) ) (uuid "fd9f8413-ecb3-458c-a230-c890a11aef10") ) (text_box "U1 Options:\n\nSN74AHCT125:\n R54 = 0 Ohm\n R55 = Do Not Fit\n\nSN74AHCT126:\n R54 = Do Not Fit\n R55 = 0 Ohm " (exclude_from_sim no) (at 41.91 83.566 0) (size 36.83 21.082) (stroke (width 0) (type default) ) (fill (type none) ) (effects (font (size 1.27 1.27) ) (justify left top) ) (uuid "49f44302-b8f2-465a-9199-082046e77077") ) (text "Reset Button" (exclude_from_sim no) (at 246.38 24.13 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "29a9d25a-b621-4edd-b244-27b12c5a58c5") ) (text "3.3V to 5V TTL level converters (Outputs)" (exclude_from_sim no) (at 49.53 21.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7b78d401-b474-456f-b3ac-691fb2d878ca") ) (text "Voltage Reference (ADC)" (exclude_from_sim no) (at 232.41 116.84 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dacb54d3-d3bb-452f-818e-51f80ddfb9e5") ) (label "PWM2A" (at 97.79 55.88 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0322dd28-65a4-4fb0-b2cf-cf9968cc8c23") ) (label "PWM2B" (at 97.79 58.42 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fe7d60c9-620b-4aeb-94b5-4bc071a2b54d") ) (global_label "GND" (shape input) (at 134.62 60.96 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "00475afc-148e-4ab8-bed4-3185ddfe90f9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 61.0394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 233.68 144.78 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "04950cea-1ba0-4eb1-a373-58a2658c01e1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 226.3079 144.8594 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 86.36 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "04c39ef5-459c-45df-8c6c-9808a60cb4df") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 86.2806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "3V3" (shape output) (at 170.18 53.34 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "125a9fd1-f4bc-41f7-815c-21c249ebe4d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.1007 53.2606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX" (shape input) (at 134.62 45.72 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "13189288-c51c-4a7a-9368-98a94b81453a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.1553 45.72 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape input) (at 170.18 81.28 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1920621a-fa42-4edc-b7c5-fba55bae481e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 81.3594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "193fcca4-6d80-4304-87f8-05b0105b2b50") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 48.3394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 170.18 60.96 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "212e6a15-d7f7-4f89-9b82-d85e733f5346") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.5521 60.8806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL" (shape input) (at 134.62 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4406f4a8-e89e-41a7-8753-ccdef3b892c2") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.1272 53.34 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TX" (shape input) (at 134.62 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "440ccfa6-b091-406c-9063-69cfe17db2ea") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 124.4659 43.1006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "DQ" (shape input) (at 134.62 91.44 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4433f1a8-6d53-4065-a633-e9bb6795f49c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.0343 91.44 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape input) (at 170.18 83.82 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "482b375b-f93b-4cf1-b41b-74e6a88b4bf7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 83.8994 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 73.66 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "56566558-85dc-401a-921f-18fece923968") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 73.5806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN1_PWM_GEN" (shape output) (at 50.8 55.88 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "60352681-50e4-4655-96c6-c890e1d93a48") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 55.8006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape input) (at 196.85 45.72 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6ee1ee3c-2acc-43eb-bd67-1345d0c68634") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.8593 45.6406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 48.26 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "89b53668-472a-4c1e-ad76-0503724d51dd") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 48.1806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 170.18 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "927e18f5-a7fb-4948-99d2-b9ca09bc99d5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 63.4206 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 243.84 34.29 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "97592fff-296c-4436-ae38-5be0d0edebc9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.6817 34.2106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 170.18 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ac9fba16-79b8-4f37-99f5-a048f55a4fa5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.3383 68.5006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 170.18 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ae83a3f6-3f75-4909-b54e-02391a5e8602") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 180.6969 55.8006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "VBUS" (shape input) (at 170.18 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b20f15bc-c7f5-42ac-9ab3-d6e4992b8509") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.4917 43.1006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 86.36 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b7635d5a-eb4a-410e-9449-f1748b5bf9b7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 86.4394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 170.18 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d29eb170-d2f6-41b6-83eb-36e080295456") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 58.3406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SDA" (shape input) (at 134.62 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcd14636-efc2-46e5-b067-4777716cc518") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.0667 50.8 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 233.68 132.08 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "de849800-a33b-44d7-89dc-cf35ac5f49ac") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.1631 132.1594 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 50.8 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fa6523e1-f03d-4fe2-b7ab-7059b01b96fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 53.2606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Device:R") (at 262.89 144.78 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "00d03321-5580-4405-8c0a-820cab392953") (property "Reference" "R49" (at 262.89 147.32 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "0" (at 262.89 142.24 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 262.89 146.558 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "UNI-ROYAL" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e629e4f8-19a9-40f2-b250-b42f630b5327") ) (pin "2" (uuid "e42d30bd-cd0a-4349-8f61-beeea3ad8561") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R49") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 44.45 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0113ec05-ff50-4170-824e-aedf99bcdf74") (property "Reference" "C1" (at 46.99 62.2362 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF 50V" (at 46.99 64.7762 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "67e55334-eb2f-410b-b257-7b4a96741fd9") ) (pin "2" (uuid "0b69a9c8-0d79-419a-beb2-f797f270c351") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 49.53 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0cda9c0d-4446-4ac2-9248-7bf1aef08fda") (property "Reference" "#PWR02" (at 49.53 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2fc7642e-e62d-47fa-a356-d55ac2eefcf5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR02") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 97.79 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "12000ee0-df48-4de5-8c39-efac9b30715d") (property "Reference" "#PWR011" (at 97.79 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 97.79 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b58279ca-1e60-49be-a910-b9ff493d04d9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR011") (unit 1) ) ) ) ) (symbol (lib_id "sprakfun-qwiic:qwiic_Logo") (at 257.81 171.45 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2028e21a-89b4-439f-a02c-03b397439e69") (property "Reference" "G1" (at 257.81 167.64 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "qwiic_Logo" (at 257.81 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "sparkfun-qwiic:qwiic_5mm" (at 257.81 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 257.81 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "G1") (unit 1) ) ) ) ) (symbol (lib_id "Switch:SW_Push") (at 265.43 34.29 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "21c2b408-da95-4394-b5b2-e408611b3d07") (property "Reference" "SW1" (at 265.43 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SW_Push" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:SW-SMD_L3.9-W3.0-P4.45" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C720477" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "XUNPU" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "TS-1088-AR02016" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27296091-6781-4efc-a66b-9e778af17046") ) (pin "2" (uuid "9d12283e-8c5a-41fb-b03b-8ecd86226e38") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "SW1") (unit 1) ) ) ) ) (symbol (lib_id "Reference_Voltage:LM4040DBZ-3") (at 256.54 138.43 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "424316b7-e2a3-4008-bbc5-a6a4ca971456") (property "Reference" "U6" (at 259.08 135.89 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LM4040DBZ-3" (at 259.08 138.43 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 261.62 138.43 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C143326" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MAXIM" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "LM4040AIM3-3.0+T" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "05784861-7629-4a85-9935-24d25e47a54f") ) (pin "2" (uuid "02fbf521-5543-40ce-b316-97d45e6714a9") ) (pin "3" (uuid "2050241c-5451-453b-a482-41e8df39d2d1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U6") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 256.54 127 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "46efb677-f647-4e2b-b34d-dc07526879da") (property "Reference" "R48" (at 259.08 125.7299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 259.08 128.2699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 254.762 127 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-07330RL" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ce51771f-1ce8-4835-b128-9d341ceaf2ff") ) (pin "2" (uuid "a421bd39-dbf7-4537-ac40-19f294144d16") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R48") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 270.51 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4bdb64de-c5e2-44a1-aa92-4e88036c30fa") (property "Reference" "#PWR016" (at 270.51 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 270.51 43.18 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "295f4690-5164-4c76-a2ae-2de4b239ab6a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR016") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:Pico") (at 152.4 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (property "Reference" "U4" (at 152.4 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico W" (at 152.4 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 152.4 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "RaspberryPi" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "Pico W / Pico 2 W" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a63b44f1-ea5e-4f13-b9b3-c183c5766b10") ) (pin "10" (uuid "ae300eb0-4d90-4667-9ac8-30dc063fea66") ) (pin "11" (uuid "7a642457-bf94-4069-aeb3-f6bdf53027ce") ) (pin "12" (uuid "2a372351-0249-4dbf-b843-d1115abe6c23") ) (pin "13" (uuid "cab1c7ac-3cbc-4b3e-8949-a302dafe62f3") ) (pin "14" (uuid "8b57cad7-714d-4a24-ac8c-022f84f02a29") ) (pin "15" (uuid "0d075e9c-23a6-4ed3-b65a-edb4381a9128") ) (pin "16" (uuid "1ea46041-4719-4ad7-8407-ca25f9b1e9c1") ) (pin "17" (uuid "049d00e8-1a76-4940-a5fb-b3e1cf5ab1cb") ) (pin "18" (uuid "62be4e75-f9e5-4e23-a56f-552f2717bd4c") ) (pin "19" (uuid "4ad44b68-5278-49b8-be99-4f5740f18cbe") ) (pin "2" (uuid "044ce540-1b40-47a5-ac8e-8567b3613fc6") ) (pin "20" (uuid "352f3812-5061-4d56-b744-146ca85be583") ) (pin "21" (uuid "abd569bb-0e47-46a3-9ef3-f24815830d31") ) (pin "22" (uuid "3c75c43b-77c8-490f-836c-24811ce20668") ) (pin "23" (uuid "59f771eb-610c-41b4-9fe9-f4aa0cd36fb7") ) (pin "24" (uuid "35f2cd52-8449-4e71-b3d3-68f55e4f212f") ) (pin "25" (uuid "03afcb68-3462-4044-a799-eed9b01289ae") ) (pin "26" (uuid "ad255c78-9d3e-40cf-aebc-08a18736f74c") ) (pin "27" (uuid "43d2ec59-1409-4fa4-9166-59df0d59b1be") ) (pin "28" (uuid "8e792de5-914f-4c01-b363-c046734dca15") ) (pin "29" (uuid "6ebd8e1c-3412-4e91-853a-f50ca94c1761") ) (pin "3" (uuid "bea30cce-6c19-462a-b123-e232df3d4b9b") ) (pin "30" (uuid "3d55c6ef-b5b6-4181-98e7-56916a947575") ) (pin "31" (uuid "f151cb85-5b35-41dc-83e5-f5f14d11f572") ) (pin "32" (uuid "12e4cbf0-c33e-4f70-b642-86eed6213bbe") ) (pin "33" (uuid "be50869c-2d23-4f53-9ed5-69165e5355dc") ) (pin "34" (uuid "445f5899-f7fa-4000-a351-c64542952a9b") ) (pin "35" (uuid "b842d565-4f7f-4475-bab3-844734dd14e5") ) (pin "36" (uuid "f646b943-6ef8-4fa1-853f-cdc8e6c9ffe4") ) (pin "37" (uuid "cd845bad-2bbd-4604-bb4c-5a28fb51bb55") ) (pin "38" (uuid "6c8d1982-af4a-4686-b8f0-562fb74f1a22") ) (pin "39" (uuid "4a2c07c3-4fd8-4ef2-a11f-a4906d131c29") ) (pin "4" (uuid "4248c574-29b7-48f6-9cb7-f1f59031b094") ) (pin "40" (uuid "72633d1b-112c-4d79-8d35-50d2f80fe8c3") ) (pin "41" (uuid "79a69a04-b150-4b88-8adb-e5c57776d907") ) (pin "42" (uuid "255d9c0f-be4d-47fb-b2eb-60c13f7a7afb") ) (pin "43" (uuid "dc51d744-d6bd-4464-b94b-bd99229acf7a") ) (pin "5" (uuid "8099da11-5e38-4b42-8055-cc1d73216c85") ) (pin "6" (uuid "10523738-2db5-4266-b7d5-83c1545c5bb4") ) (pin "7" (uuid "3a801c55-c78c-470f-8f19-6eca2b0ee295") ) (pin "8" (uuid "e46be3b6-e021-4b94-96af-b96e9cd4da10") ) (pin "9" (uuid "e67203dc-9d4c-49d5-b51e-5bfe862a3dfd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 193.04 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5ccafa89-0081-41df-a934-e7474966477b") (property "Reference" "#PWR014" (at 193.04 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 193.04 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b650d766-5cdf-46d5-9606-1261bf399530") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR014") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 95.25 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5e7d6a96-1ff0-4e48-a783-b0dd70da7419") (property "Reference" "#PWR4" (at 95.25 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 97.79 52.0699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 95.25 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 95.25 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 95.25 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bf5c9f1a-94a1-4983-8d11-aedbdc482949") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR4") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 146.05 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "625371b5-54a4-43de-8588-11187e5d8ae2") (property "Reference" "#FLG0102" (at 248.92 147.955 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 243.84 151.13 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ee5afa1-28f8-402d-9d63-1ad6ed2abfae") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0102") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 73.66 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "63465697-0038-4a5a-931e-e383d18d8993") (property "Reference" "H3" (at 76.2 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 76.2 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6bc4a5b6-72a7-456a-bc75-3be399593048") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H3") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 26.67 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "68788af4-cd69-4bb0-8b00-fc6856411aae") (property "Reference" "R54" (at 29.21 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "DNF" (at 29.21 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 28.448 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "UNI-ROYAL" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bddc6ce2-d77e-4442-bd84-7757b92010fc") ) (pin "2" (uuid "44455ee2-368e-407b-946d-efd27af571ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R54") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 36.83 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "72e0c837-1ab2-470c-91ad-f34c0c878b4f") (property "Reference" "R55" (at 39.37 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 39.37 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 38.608 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "UNI-ROYAL" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "0603WAF0000T5E" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d2863bd7-effd-458c-99a1-b213499ed11f") ) (pin "2" (uuid "d95059fd-1d70-46b5-a162-00ac98e19fca") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R55") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 26.67 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7eec01e7-b105-47f4-84b2-b4977c900d6a") (property "Reference" "#PWR015" (at 26.67 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 29.21 43.1799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d98f79b2-d39e-4cc8-866c-63f6dcdb7328") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR015") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 38.1 43.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "83bcfa7c-4c87-414d-8d5a-fb31a0e32a4c") (property "Reference" "#PWR044" (at 34.29 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 41.91 43.18 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6a93bec-bc44-4d13-8b16-e585f19fd83a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR044") (unit 1) ) ) ) ) (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 173.99 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "876ade33-6b93-4690-a10c-6369295dc457") (property "Reference" "G2" (at 276.86 167.005 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 276.86 179.705 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "G2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 193.04 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8d64b89a-1924-4f6c-af5f-09a59972040a") (property "Reference" "C4" (at 187.96 50.8 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF 50V" (at 186.69 53.34 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8b91b3d-a018-4e68-b9d7-8d613d44c9c8") ) (pin "2" (uuid "05a89441-4f43-4ef6-b14d-7822bd71c92b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 25.4 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8f0d3fed-2a42-496b-9baf-a165e10a736f") (property "Reference" "#PWR01" (at 25.4 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 25.4 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "666d8b9e-fcd5-4795-b865-21337d99152f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR01") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 97.79 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "91796faf-4963-43e3-be77-8c6bb9373a7f") (property "Reference" "H4" (at 100.33 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 100.33 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "97157546-2806-48e4-92d6-17deba114302") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H4") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 236.22 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9fda019a-5350-4524-b5e4-0e13d75d61d1") (property "Reference" "C29" (at 229.87 137.16 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF 50V" (at 228.6 139.7 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bc31c7d2-ffd7-40b0-9482-436067ae52e0") ) (pin "2" (uuid "14f05954-02bf-434f-84f9-6d3672624abb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C29") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 73.66 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a17f3f6d-73e9-42f5-922d-377a07660f6a") (property "Reference" "#PWR010" (at 73.66 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 73.66 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27edf7eb-87af-4101-bb4b-a66095a160b3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR010") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 264.16 121.92 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a71234bf-8830-4e38-bcc7-c1a326627ef3") (property "Reference" "#PWR0102" (at 260.35 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 274.32 121.92 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "91d8dfcd-2d26-499b-8f84-b53797255edc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR0102") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 46.99 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aafb7b41-4736-44f5-ab4b-339174550157") (property "Reference" "#PWR07" (at 46.99 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 34.2899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cea449ce-07e5-445d-a678-0300db9013ac") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR07") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 252.73 34.29 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "acf00741-1e6b-4573-832b-01221b598fad") (property "Reference" "R1" (at 252.73 27.94 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 252.73 30.48 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 252.73 36.068 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-071KL" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0910a185-289b-40e3-8fb6-54d7f7286aa8") ) (pin "2" (uuid "ec074aab-08bf-408a-9b96-861de416ec28") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R1") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:SN74AHCT125PW") (at 68.58 45.72 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (property "Reference" "U1" (at 68.58 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT126" (at 68.58 25.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "(AHCT125 = C36365, AHCT126 = C155177)" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C155177" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "TI" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SN74AHCT126PWR" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2f34fbfd-3312-477b-b701-121fc77d5848") ) (pin "10" (uuid "79bbdbf8-f0d4-4c38-aa4f-8a3f92f69118") ) (pin "11" (uuid "6b777928-5b7f-47dc-abcf-ceb2a8e18614") ) (pin "12" (uuid "15f9b026-10aa-473e-84f3-da690f58bb16") ) (pin "13" (uuid "1cbedb1a-9687-46f4-aca3-dc9563346a95") ) (pin "14" (uuid "50ecac09-402a-41e9-b72b-55d215a9fa3e") ) (pin "2" (uuid "6d1e4641-d185-4c2c-97a5-3be145b35f1d") ) (pin "3" (uuid "7c56ce82-f2cf-49fa-ac6e-319f6fa584b9") ) (pin "4" (uuid "0bc924c7-55c4-4c90-a881-1684ad3c9f8e") ) (pin "5" (uuid "77364b93-edb6-42bb-b30c-43183d11b107") ) (pin "6" (uuid "71f76554-7dac-453f-9642-3d6afe7a7617") ) (pin "7" (uuid "bafb999f-9f37-47b6-bfb8-9b9f66aa2220") ) (pin "8" (uuid "8303d2f6-1303-4fd4-9ad6-8b36e436d400") ) (pin "9" (uuid "8a38b771-684d-4edf-8d94-5a1e6ca17b30") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U1") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 25.4 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "cbfea856-81cc-4920-8136-231416e676cf") (property "Reference" "H1" (at 27.94 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 27.94 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ab36bf70-0043-4db6-aabd-62b615c4d6d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H1") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 130.81 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d62382f8-9ab4-4a55-ada9-6abd4e0cc693") (property "Reference" "#FLG0101" (at 248.92 128.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 248.92 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7618e572-bceb-4295-876c-15d22ba3a8a6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0101") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 44.45 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f1270d61-b904-4fb6-a21c-60838b39d33e") (property "Reference" "#PWR05" (at 44.45 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 46.99 67.3099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "509c0ba5-48a2-48f3-8fee-83eebe7171d5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR05") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 270.51 146.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fa2deb6c-69aa-4fd2-8dc6-262f17f64052") (property "Reference" "#PWR082" (at 270.51 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 270.51 151.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "60f9df87-4cdd-42a3-a9f1-65449bbcf5ce") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR082") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 30.48 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fb0c09fb-eb10-423d-a2ff-19df142b215b") (property "Reference" "#PWR03" (at 34.29 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 26.67 60.96 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b27d10aa-d70c-44e6-a702-253c6072f2d6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR03") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 49.53 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "fc6c8e15-a262-4b02-88cd-fdf30196bc30") (property "Reference" "H2" (at 52.07 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 52.07 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a6f8bf61-c9e4-4d10-a0f0-e5e25a074e51") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 243.84 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (property "Reference" "C30" (at 246.38 138.43 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 243.84 140.97 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 244.8052 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Kyocera AVX" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7ea02e0b-fb26-409a-b5cd-535f77cfb691") ) (pin "2" (uuid "f5275cea-17a0-406c-90e1-a31fc6de4104") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C30") (unit 1) ) ) ) ) (sheet (at 144.78 176.53) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "20cc4b05-e726-4b05-ab1c-64b5db072e26") (property "Sheetname" "Power Rails" (at 144.78 175.8184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "power.kicad_sch" (at 144.78 180.9246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "7") ) ) ) ) (sheet (at 144.78 187.96) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4d4dd17e-947f-4b3c-bd12-d4039fccae25") (property "Sheetname" "Fan Channels" (at 144.78 187.2484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channels.kicad_sch" (at 144.78 192.3546 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "2") ) ) ) ) (sheet (at 144.78 163.83) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4e9d9bbb-bb4b-4f71-a57a-a915249deb73") (property "Sheetname" "Sensors & Connectors" (at 144.78 163.1184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sensors.kicad_sch" (at 144.78 168.2246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "8") ) ) ) ) (sheet_instances (path "/" (page "1") ) ) ) ================================================ FILE: boards/fanpico-0200/kicad/power.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "028ff83f-3fa5-4d87-a092-2685b6e33322") (paper "A4") (title_block (title "FanPico-0200 v1.1") (date "2025-12-05") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_0_1" (rectangle (start -2.286 0.508) (end 2.286 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.286) (xy -0.762 2.286) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 2.794) (xy -1.27 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start 2.286 -0.508) (end -2.286 -1.016) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "C_Polarized_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_Small_0_1" (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858) (stroke (width 0) (type default) ) (fill (type outline) ) ) (rectangle (start -1.524 0.6858) (end 1.524 0.3048) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.524) (xy -0.762 1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 1.27) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "C_Polarized_Small_1_1" (pin passive line (at 0 2.54 270) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_Schottky" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode Schottky" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_Schottky_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_Schottky_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0.762 1.016 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "L_Small" (at 0.762 -1.016 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Inductor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "L_Small_0_1" (arc (start 0 -2.032) (mid 0.5058 -1.524) (end 0 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0 -1.016) (mid 0.5058 -0.508) (end 0 0) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0 0) (mid 0.5058 0.508) (end 0 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0 1.016) (mid 0.5058 1.524) (end 0 2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "L_Small_1_1" (pin passive line (at 0 2.54 270) (length 0.508) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 0.508) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Open" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Open" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, both open" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Open_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Open_0_1" (arc (start -0.254 1.016) (mid -1.651 1.4992) (end -3.048 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -0.508) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 3.048 1.016) (mid 1.651 1.4992) (end 0.254 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Open_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Regulator_Linear:AP1117-ADJ" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -3.81 3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AP1117-ADJ" (at 0 3.175 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 2.54 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "linear regulator ldo adjustable positive obsolete" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?223*TabPin2*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AP1117-ADJ_0_1" (rectangle (start -5.08 -5.08) (end 5.08 1.905) (stroke (width 0.254) (type default) ) (fill (type background) ) ) ) (symbol "AP1117-ADJ_1_1" (pin input line (at 0 -7.62 90) (length 2.54) (name "ADJ" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_out line (at 7.62 0 180) (length 2.54) (name "VO" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -7.62 0 0) (length 2.54) (name "VI" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Regulator_Switching:AP63200WU" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -7.62 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AP63200WU" (at 2.54 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:TSOT-23-6" (at 0 -22.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP63200-AP63201-AP63203-AP63205.pdf" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "2A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT-23-6" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "2A Buck DC/DC" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TSOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AP63200WU_0_1" (rectangle (start -7.62 5.08) (end 7.62 -5.08) (stroke (width 0.254) (type default) ) (fill (type background) ) ) ) (symbol "AP63200WU_1_1" (pin input line (at 10.16 -2.54 180) (length 2.54) (name "FB" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -2.54 0) (length 2.54) (name "EN" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -10.16 2.54 0) (length 2.54) (name "IN" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 -7.62 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 10.16 2.54 180) (length 2.54) (name "SW" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 0 180) (length 2.54) (name "BST" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) ) (junction (at 96.52 133.35) (diameter 0) (color 0 0 0 0) (uuid "01f7cfbe-9fad-4094-9428-ea8af2611bbc") ) (junction (at 127 100.33) (diameter 0) (color 0 0 0 0) (uuid "0d6e2ce9-4a83-4614-a1c6-2896d8d965ca") ) (junction (at 104.14 129.54) (diameter 0) (color 0 0 0 0) (uuid "295360cf-ee4d-440e-a32b-a0ee0c9db935") ) (junction (at 45.72 48.26) (diameter 0) (color 0 0 0 0) (uuid "4f234a38-d2fc-418d-824d-ab08b5941e55") ) (junction (at 127 48.26) (diameter 0) (color 0 0 0 0) (uuid "5f1f9616-5f7c-4791-9342-876ea4483284") ) (junction (at 67.31 152.4) (diameter 0) (color 0 0 0 0) (uuid "63654d43-f757-49f5-a7a4-b2b333a03904") ) (junction (at 165.1 100.33) (diameter 0) (color 0 0 0 0) (uuid "6c57b5d5-7086-4a24-b79d-624268d804cd") ) (junction (at 148.59 100.33) (diameter 0) (color 0 0 0 0) (uuid "6f095a89-114c-4f7e-b7c9-3e7dc213e815") ) (junction (at 175.26 48.26) (diameter 0) (color 0 0 0 0) (uuid "7b6f8627-45f6-4930-bb0d-f6da98007650") ) (junction (at 92.71 100.33) (diameter 0) (color 0 0 0 0) (uuid "80b6ead8-eb08-46d1-a087-4ae924840747") ) (junction (at 138.43 48.26) (diameter 0) (color 0 0 0 0) (uuid "8fc85d39-1cd6-4f1f-a775-2d9227e0e6d7") ) (junction (at 49.53 152.4) (diameter 0) (color 0 0 0 0) (uuid "92527673-be04-4bd1-8305-6af910966a9e") ) (junction (at 78.74 48.26) (diameter 0) (color 0 0 0 0) (uuid "9dc75d51-c612-4a77-b4fa-87a37a866213") ) (junction (at 135.89 129.54) (diameter 0) (color 0 0 0 0) (uuid "a44e3f52-9a15-406b-8e1e-7eafe1d62cef") ) (junction (at 104.14 100.33) (diameter 0) (color 0 0 0 0) (uuid "a5305bac-19bc-475a-b7b0-218d11c8a355") ) (junction (at 127 113.03) (diameter 0) (color 0 0 0 0) (uuid "a851c512-8f77-4f46-8a15-29ba207e17d9") ) (junction (at 127 59.69) (diameter 0) (color 0 0 0 0) (uuid "adbadd07-4a1d-4f3b-92c3-a11fbdf5978f") ) (junction (at 157.48 48.26) (diameter 0) (color 0 0 0 0) (uuid "afbdb748-d275-4336-a8d6-b161c87d3c6c") ) (junction (at 138.43 59.69) (diameter 0) (color 0 0 0 0) (uuid "b09f8a39-37ff-44cf-91fe-6fe77becf928") ) (junction (at 217.17 128.27) (diameter 0) (color 0 0 0 0) (uuid "b1db5784-d15c-4b56-a77a-94f715ca25cf") ) (junction (at 127 129.54) (diameter 0) (color 0 0 0 0) (uuid "c8721b86-c795-4cae-adf8-1a7a6136e421") ) (junction (at 96.52 100.33) (diameter 0) (color 0 0 0 0) (uuid "d609b045-b818-413d-8bd7-c32a13cef10a") ) (junction (at 96.52 129.54) (diameter 0) (color 0 0 0 0) (uuid "dab80573-24a5-4d12-bb65-ff635d54695c") ) (junction (at 63.5 48.26) (diameter 0) (color 0 0 0 0) (uuid "dbca6e3b-02d6-45e3-9784-fceefc9b93ff") ) (junction (at 38.1 100.33) (diameter 0) (color 0 0 0 0) (uuid "e9e06462-e4c1-4fa9-af4f-eed22865c0d6") ) (junction (at 151.13 152.4) (diameter 0) (color 0 0 0 0) (uuid "ea9d622c-abdb-422c-a911-35ec1e1138eb") ) (junction (at 168.91 152.4) (diameter 0) (color 0 0 0 0) (uuid "ebed54b1-d5a7-4f45-8b9b-5703e12747dc") ) (junction (at 113.03 48.26) (diameter 0) (color 0 0 0 0) (uuid "ec8727c3-5851-4b0b-a4bb-12be82f3f819") ) (junction (at 59.69 100.33) (diameter 0) (color 0 0 0 0) (uuid "ecb31a57-d52e-4c9e-9869-6100aff6eb9e") ) (junction (at 193.04 100.33) (diameter 0) (color 0 0 0 0) (uuid "f0cfee1e-2f27-4984-aed7-03f14161fd53") ) (junction (at 148.59 129.54) (diameter 0) (color 0 0 0 0) (uuid "f8689401-17d4-4228-8fc1-93e983e3e6cd") ) (junction (at 215.9 100.33) (diameter 0) (color 0 0 0 0) (uuid "fa77a7e6-cbd5-4f72-9c67-6c75f7f83ce1") ) (wire (pts (xy 157.48 48.26) (xy 175.26 48.26) ) (stroke (width 0) (type default) ) (uuid "00749e0d-27d0-4eaa-8df1-ec906ff5e892") ) (wire (pts (xy 135.89 121.92) (xy 135.89 129.54) ) (stroke (width 0) (type default) ) (uuid "028950f4-bef2-4cbe-9a33-a3dd6a71321d") ) (wire (pts (xy 116.84 107.95) (xy 116.84 113.03) ) (stroke (width 0) (type default) ) (uuid "061db99e-deab-4ffc-89a0-9df41413c93c") ) (wire (pts (xy 193.04 100.33) (xy 215.9 100.33) ) (stroke (width 0) (type default) ) (uuid "0807a7ca-530a-4fed-90ca-b08f9efbcec6") ) (wire (pts (xy 218.44 45.72) (xy 218.44 48.26) ) (stroke (width 0) (type default) ) (uuid "0e31a477-f6e9-470a-ab98-726aadc04b67") ) (wire (pts (xy 30.48 100.33) (xy 38.1 100.33) ) (stroke (width 0) (type default) ) (uuid "1120b36e-9100-4bbf-a444-dab16197ab10") ) (wire (pts (xy 53.34 30.48) (xy 53.34 31.75) ) (stroke (width 0) (type default) ) (uuid "11ba830d-2a71-4315-ba11-b786d3eb3b53") ) (wire (pts (xy 168.91 152.4) (xy 151.13 152.4) ) (stroke (width 0) (type default) ) (uuid "13170e57-9c1c-41a7-9858-fd30d0dd0fa2") ) (wire (pts (xy 148.59 107.95) (xy 148.59 100.33) ) (stroke (width 0) (type default) ) (uuid "2121f181-8d22-4040-b1e5-4398d7228ad2") ) (wire (pts (xy 96.52 129.54) (xy 96.52 133.35) ) (stroke (width 0) (type default) ) (uuid "21557492-85dd-41ed-9262-989cf42befd4") ) (wire (pts (xy 175.26 58.42) (xy 175.26 72.39) ) (stroke (width 0) (type default) ) (uuid "216cc256-3a95-4d75-9147-a08b9ccebe5a") ) (wire (pts (xy 59.69 116.84) (xy 59.69 120.65) ) (stroke (width 0) (type default) ) (uuid "21cb650e-84c8-4b64-95a5-56e7d525ec3d") ) (wire (pts (xy 49.53 152.4) (xy 67.31 152.4) ) (stroke (width 0) (type default) ) (uuid "2aded452-f504-4f03-a076-548465232ec2") ) (wire (pts (xy 101.6 48.26) (xy 113.03 48.26) ) (stroke (width 0) (type default) ) (uuid "2c51cca1-2ca1-47bc-b79e-68596a323990") ) (wire (pts (xy 138.43 48.26) (xy 127 48.26) ) (stroke (width 0) (type default) ) (uuid "2d34465b-09ad-482b-8012-8e1a0c4eda44") ) (wire (pts (xy 127 113.03) (xy 127 115.57) ) (stroke (width 0) (type default) ) (uuid "2f3c6d8e-581c-4b2e-bf7d-a9cdedc021a8") ) (wire (pts (xy 218.44 33.02) (xy 218.44 30.48) ) (stroke (width 0) (type default) ) (uuid "31623468-b80e-4bf2-89ef-f9be2ca3d216") ) (wire (pts (xy 35.56 31.75) (xy 35.56 33.02) ) (stroke (width 0) (type default) ) (uuid "3259a66a-4412-4350-957a-02f7bd52b2c5") ) (wire (pts (xy 193.04 100.33) (xy 193.04 110.49) ) (stroke (width 0) (type default) ) (uuid "34377ce7-06d6-48b2-9ccd-4c0b78616faf") ) (wire (pts (xy 104.14 100.33) (xy 109.22 100.33) ) (stroke (width 0) (type default) ) (uuid "36c4922a-64f4-402a-be2e-56b47c4822ab") ) (wire (pts (xy 161.29 100.33) (xy 165.1 100.33) ) (stroke (width 0) (type default) ) (uuid "3a5b4a82-7987-48f2-a345-4716621e4ca6") ) (wire (pts (xy 148.59 100.33) (xy 153.67 100.33) ) (stroke (width 0) (type default) ) (uuid "3c79c968-ef02-4cc7-8148-1cb6969386e6") ) (wire (pts (xy 49.53 166.37) (xy 49.53 163.83) ) (stroke (width 0) (type default) ) (uuid "3de98d5f-595f-4c1c-a8bc-e8320e5d4cd6") ) (wire (pts (xy 124.46 100.33) (xy 127 100.33) ) (stroke (width 0) (type default) ) (uuid "46ffb84b-cd87-4b66-b7a9-8725206f69c2") ) (wire (pts (xy 214.63 54.61) (xy 238.76 54.61) ) (stroke (width 0) (type default) ) (uuid "47534f22-8814-4e01-a066-82912131c44c") ) (wire (pts (xy 45.72 48.26) (xy 45.72 54.61) ) (stroke (width 0) (type default) ) (uuid "4af866c8-a1c2-4fb5-a320-d8e28d30da8e") ) (wire (pts (xy 96.52 133.35) (xy 96.52 134.62) ) (stroke (width 0) (type default) ) (uuid "4c819dc5-ede9-4b9e-9dd8-605261e8951f") ) (wire (pts (xy 96.52 107.95) (xy 96.52 100.33) ) (stroke (width 0) (type default) ) (uuid "5297f216-50eb-4556-be39-94fd70cc5745") ) (wire (pts (xy 81.28 53.34) (xy 78.74 53.34) ) (stroke (width 0) (type default) ) (uuid "53378958-4b85-4c89-a599-c703cfc732ef") ) (wire (pts (xy 101.6 53.34) (xy 101.6 59.69) ) (stroke (width 0) (type default) ) (uuid "54aef9be-782c-40e9-a75b-16b303cd06a1") ) (wire (pts (xy 175.26 48.26) (xy 194.31 48.26) ) (stroke (width 0) (type default) ) (uuid "566c0bd3-067d-4923-801d-cb2813ad1b2b") ) (wire (pts (xy 127 110.49) (xy 127 113.03) ) (stroke (width 0) (type default) ) (uuid "5a838764-fdbe-4c2f-8ddd-58a5aa169724") ) (wire (pts (xy 26.67 39.37) (xy 31.75 39.37) ) (stroke (width 0) (type default) ) (uuid "5b2c9423-d984-45b1-8ee6-b824866b3849") ) (wire (pts (xy 38.1 100.33) (xy 59.69 100.33) ) (stroke (width 0) (type default) ) (uuid "5bd1e68a-4a36-4fdf-a265-2e75c135e495") ) (wire (pts (xy 138.43 59.69) (xy 138.43 62.23) ) (stroke (width 0) (type default) ) (uuid "5cab0527-e95b-4be2-a509-bef6687e4048") ) (wire (pts (xy 148.59 113.03) (xy 148.59 129.54) ) (stroke (width 0) (type default) ) (uuid "5cb79303-dad1-4856-bee3-a66f14ec97e2") ) (wire (pts (xy 168.91 152.4) (xy 168.91 156.21) ) (stroke (width 0) (type default) ) (uuid "606ad181-be65-4215-91ef-9bd8d1bd38ad") ) (wire (pts (xy 120.65 48.26) (xy 127 48.26) ) (stroke (width 0) (type default) ) (uuid "626c6009-3049-45a3-a69b-ff826e346fc6") ) (wire (pts (xy 127 100.33) (xy 127 102.87) ) (stroke (width 0) (type default) ) (uuid "662c5b79-2f9c-4dff-b8ba-21b972d1581e") ) (wire (pts (xy 151.13 167.64) (xy 151.13 165.1) ) (stroke (width 0) (type default) ) (uuid "67c2175d-daf9-4462-9d89-ff28037e0bde") ) (wire (pts (xy 49.53 173.99) (xy 49.53 177.8) ) (stroke (width 0) (type default) ) (uuid "68de57ac-038c-423d-9c01-18a694f49867") ) (wire (pts (xy 53.34 31.75) (xy 35.56 31.75) ) (stroke (width 0) (type default) ) (uuid "6b609500-9049-4a43-9289-8491db0333f1") ) (wire (pts (xy 101.6 50.8) (xy 106.68 50.8) ) (stroke (width 0) (type default) ) (uuid "6eea5d0f-eafb-4de1-a779-3e8d032e5895") ) (wire (pts (xy 63.5 59.69) (xy 63.5 62.23) ) (stroke (width 0) (type default) ) (uuid "705ae79e-3eb1-4055-a2e1-70fc1d72961f") ) (wire (pts (xy 138.43 59.69) (xy 138.43 58.42) ) (stroke (width 0) (type default) ) (uuid "70f3e61c-a872-47f9-9b51-1c945007f967") ) (wire (pts (xy 38.1 100.33) (xy 38.1 105.41) ) (stroke (width 0) (type default) ) (uuid "73e68c36-7abe-41e9-84fb-435ae272b0dd") ) (wire (pts (xy 104.14 129.54) (xy 127 129.54) ) (stroke (width 0) (type default) ) (uuid "79d374d1-e055-4e2b-9817-91ba266ac8a0") ) (wire (pts (xy 116.84 113.03) (xy 127 113.03) ) (stroke (width 0) (type default) ) (uuid "7c2eae6c-553a-4662-8c97-23af07dedb7c") ) (wire (pts (xy 92.71 100.33) (xy 96.52 100.33) ) (stroke (width 0) (type default) ) (uuid "82eabb8f-719a-4b79-9930-0fb8907c6cd6") ) (wire (pts (xy 113.03 50.8) (xy 113.03 48.26) ) (stroke (width 0) (type default) ) (uuid "82fccaff-c67b-4bba-b70c-02f94a37caf9") ) (wire (pts (xy 67.31 154.94) (xy 67.31 152.4) ) (stroke (width 0) (type default) ) (uuid "83026252-dd5b-4063-b1c6-b0255100cfac") ) (wire (pts (xy 217.17 128.27) (xy 228.6 128.27) ) (stroke (width 0) (type default) ) (uuid "85cf0908-f81d-4c94-8e67-beb03d79aaf1") ) (wire (pts (xy 78.74 48.26) (xy 81.28 48.26) ) (stroke (width 0) (type default) ) (uuid "8655a344-dc07-41f1-b193-2f50d32fa3ab") ) (wire (pts (xy 67.31 152.4) (xy 90.17 152.4) ) (stroke (width 0) (type default) ) (uuid "8c263423-237a-4eda-8162-18bd6618b21b") ) (wire (pts (xy 165.1 100.33) (xy 165.1 104.14) ) (stroke (width 0) (type default) ) (uuid "8ca4aba5-7438-4fc7-929d-694f656ce194") ) (wire (pts (xy 96.52 100.33) (xy 104.14 100.33) ) (stroke (width 0) (type default) ) (uuid "8e789506-b14f-4139-9fbd-4c9e4150a674") ) (wire (pts (xy 92.71 133.35) (xy 96.52 133.35) ) (stroke (width 0) (type default) ) (uuid "8f03fe41-4544-4313-8dfa-ded50798111f") ) (wire (pts (xy 59.69 100.33) (xy 81.28 100.33) ) (stroke (width 0) (type default) ) (uuid "9187d5d6-0c6b-4fd4-bd73-e8407924cf93") ) (wire (pts (xy 135.89 129.54) (xy 148.59 129.54) ) (stroke (width 0) (type default) ) (uuid "924ad17e-87dc-466e-9ecd-708486820e3a") ) (wire (pts (xy 138.43 50.8) (xy 138.43 48.26) ) (stroke (width 0) (type default) ) (uuid "94e818d6-fd19-43e8-8797-57e8b804fd7d") ) (wire (pts (xy 215.9 100.33) (xy 215.9 101.6) ) (stroke (width 0) (type default) ) (uuid "975f12a4-518b-44d8-88c9-a118d9fbb2c4") ) (wire (pts (xy 138.43 48.26) (xy 157.48 48.26) ) (stroke (width 0) (type default) ) (uuid "9932acd6-96a6-4e84-840a-1aadf8a63bb8") ) (wire (pts (xy 193.04 128.27) (xy 217.17 128.27) ) (stroke (width 0) (type default) ) (uuid "9a2c15b4-3896-45bc-a27d-68a116687fe2") ) (wire (pts (xy 127 57.15) (xy 127 59.69) ) (stroke (width 0) (type default) ) (uuid "9aa934d8-f811-4e42-b70e-34abb1b60cab") ) (wire (pts (xy 111.76 50.8) (xy 113.03 50.8) ) (stroke (width 0) (type default) ) (uuid "9d4bab0f-6441-4bae-84db-9f463ad41eb8") ) (wire (pts (xy 157.48 48.26) (xy 157.48 50.8) ) (stroke (width 0) (type default) ) (uuid "9d9dc41f-eab6-476c-b348-46b584d3da97") ) (wire (pts (xy 35.56 48.26) (xy 45.72 48.26) ) (stroke (width 0) (type default) ) (uuid "a1172635-4187-4d92-bf5d-5d5a4ed775ca") ) (wire (pts (xy 96.52 113.03) (xy 96.52 129.54) ) (stroke (width 0) (type default) ) (uuid "a1fc5aea-ea2a-4c21-9d1f-1f6fc017bdf8") ) (wire (pts (xy 104.14 100.33) (xy 104.14 107.95) ) (stroke (width 0) (type default) ) (uuid "acb7986d-7240-4a82-ba35-d16785b62188") ) (wire (pts (xy 175.26 48.26) (xy 175.26 50.8) ) (stroke (width 0) (type default) ) (uuid "ad12167b-0700-49cc-8672-4ccfc0afe6e4") ) (wire (pts (xy 157.48 58.42) (xy 157.48 72.39) ) (stroke (width 0) (type default) ) (uuid "b2a3ca9c-6658-4997-bfb1-f8d41fa410ac") ) (wire (pts (xy 38.1 124.46) (xy 38.1 129.54) ) (stroke (width 0) (type default) ) (uuid "b44e6255-d340-4665-8ca7-eb9277642699") ) (wire (pts (xy 96.52 129.54) (xy 104.14 129.54) ) (stroke (width 0) (type default) ) (uuid "b695eb0c-10b2-4b92-86c1-39971818c939") ) (wire (pts (xy 101.6 59.69) (xy 127 59.69) ) (stroke (width 0) (type default) ) (uuid "b96d8158-0441-40d9-944d-dd36ab5db050") ) (wire (pts (xy 165.1 100.33) (xy 193.04 100.33) ) (stroke (width 0) (type default) ) (uuid "ba6eff22-dc75-426e-aa60-b634bfec783b") ) (wire (pts (xy 127 123.19) (xy 127 129.54) ) (stroke (width 0) (type default) ) (uuid "c07a7704-11a1-4240-a2f0-e08014e8da61") ) (wire (pts (xy 38.1 113.03) (xy 38.1 116.84) ) (stroke (width 0) (type default) ) (uuid "c4839c09-9305-40c5-a2c4-488248495b9e") ) (wire (pts (xy 165.1 114.3) (xy 165.1 111.76) ) (stroke (width 0) (type default) ) (uuid "c7b868c9-2bb8-4cc3-b568-6a4b13859c70") ) (wire (pts (xy 88.9 100.33) (xy 92.71 100.33) ) (stroke (width 0) (type default) ) (uuid "cb5e1a95-b86f-4dcc-ba68-746f23b5cb1e") ) (wire (pts (xy 127 48.26) (xy 127 52.07) ) (stroke (width 0) (type default) ) (uuid "cbd2caa6-cfba-42d1-bb1b-ed4db3234e5c") ) (wire (pts (xy 165.1 121.92) (xy 165.1 129.54) ) (stroke (width 0) (type default) ) (uuid "cfc6eb53-5338-45e2-b660-71655399984b") ) (wire (pts (xy 151.13 175.26) (xy 151.13 180.34) ) (stroke (width 0) (type default) ) (uuid "d058f378-5aa6-4f03-8ace-ef6560686c6d") ) (wire (pts (xy 63.5 48.26) (xy 63.5 52.07) ) (stroke (width 0) (type default) ) (uuid "d2e28887-ef35-4602-bba5-a849c6d1d1c6") ) (wire (pts (xy 218.44 30.48) (xy 53.34 30.48) ) (stroke (width 0) (type default) ) (uuid "d30660f8-2a01-432d-99eb-7f10477d10c3") ) (wire (pts (xy 127 129.54) (xy 135.89 129.54) ) (stroke (width 0) (type default) ) (uuid "d5082638-32c4-4781-a5ec-6b9ad17c7ab8") ) (wire (pts (xy 78.74 48.26) (xy 78.74 53.34) ) (stroke (width 0) (type default) ) (uuid "d7515a0b-ece1-45af-ae77-29e319a333d2") ) (wire (pts (xy 201.93 48.26) (xy 218.44 48.26) ) (stroke (width 0) (type default) ) (uuid "d8c99ce8-ad05-437e-b37e-202f4173e7d5") ) (wire (pts (xy 135.89 116.84) (xy 135.89 113.03) ) (stroke (width 0) (type default) ) (uuid "d973601e-8aaa-4ed8-92ef-b86b1e281e8f") ) (wire (pts (xy 59.69 100.33) (xy 59.69 109.22) ) (stroke (width 0) (type default) ) (uuid "dc5c0aa1-9f07-4327-80dc-b6ea9f14ed8d") ) (wire (pts (xy 193.04 118.11) (xy 193.04 128.27) ) (stroke (width 0) (type default) ) (uuid "dd721f7c-4ed8-4c2f-b871-31c9de70f438") ) (wire (pts (xy 217.17 129.54) (xy 217.17 128.27) ) (stroke (width 0) (type default) ) (uuid "e11c9d45-8be5-4f8d-8bd3-d644f6e2f30f") ) (wire (pts (xy 113.03 48.26) (xy 115.57 48.26) ) (stroke (width 0) (type default) ) (uuid "e1e3bb13-a1ca-450d-9774-9cda3b90cad3") ) (wire (pts (xy 35.56 45.72) (xy 35.56 48.26) ) (stroke (width 0) (type default) ) (uuid "e2329e69-51a4-437c-869f-7a3f0a73a622") ) (wire (pts (xy 63.5 48.26) (xy 78.74 48.26) ) (stroke (width 0) (type default) ) (uuid "e2d9dad9-6326-465c-b07c-e1a5e699bc7a") ) (wire (pts (xy 135.89 113.03) (xy 127 113.03) ) (stroke (width 0) (type default) ) (uuid "e5f0aaba-0a61-4dbe-99d1-08926f9b9517") ) (wire (pts (xy 22.86 152.4) (xy 49.53 152.4) ) (stroke (width 0) (type default) ) (uuid "e7bac6d2-644a-416a-a5d8-8a88a91ae6ec") ) (wire (pts (xy 215.9 100.33) (xy 227.33 100.33) ) (stroke (width 0) (type default) ) (uuid "e8f46775-cd2b-4558-b261-76d8bd480661") ) (wire (pts (xy 104.14 113.03) (xy 104.14 129.54) ) (stroke (width 0) (type default) ) (uuid "ec18daec-7f06-479c-8c04-4fc52233c5b4") ) (wire (pts (xy 127 152.4) (xy 151.13 152.4) ) (stroke (width 0) (type default) ) (uuid "ec817dff-e7ef-492e-8264-380fadc5bcdb") ) (wire (pts (xy 138.43 69.85) (xy 138.43 72.39) ) (stroke (width 0) (type default) ) (uuid "efc4806e-e3c8-4491-b8ba-97ed35762d86") ) (wire (pts (xy 49.53 152.4) (xy 49.53 156.21) ) (stroke (width 0) (type default) ) (uuid "f071de68-a1f6-47bb-8a7a-c6e049926ec3") ) (wire (pts (xy 91.44 58.42) (xy 91.44 62.23) ) (stroke (width 0) (type default) ) (uuid "f0c4a6fa-fc5c-4b7c-a047-a9d0960e4e4e") ) (wire (pts (xy 127 100.33) (xy 148.59 100.33) ) (stroke (width 0) (type default) ) (uuid "f29dfbc1-fb05-4709-bf72-552d658008a4") ) (wire (pts (xy 127 59.69) (xy 138.43 59.69) ) (stroke (width 0) (type default) ) (uuid "f59a36a0-7150-41c4-91ff-46e33461d3ee") ) (wire (pts (xy 214.63 39.37) (xy 214.63 54.61) ) (stroke (width 0) (type default) ) (uuid "f6a7b796-fa4f-4a8c-91a2-b5cde4cb8788") ) (wire (pts (xy 45.72 48.26) (xy 63.5 48.26) ) (stroke (width 0) (type default) ) (uuid "f848765a-dffe-41d4-bf64-7c852b3d6029") ) (wire (pts (xy 151.13 152.4) (xy 151.13 157.48) ) (stroke (width 0) (type default) ) (uuid "fb172360-4b51-4746-9422-75bd49ab684b") ) (wire (pts (xy 175.26 152.4) (xy 168.91 152.4) ) (stroke (width 0) (type default) ) (uuid "fc07276d-4a2d-4d1c-af4e-24eda2f5877b") ) (wire (pts (xy 165.1 129.54) (xy 148.59 129.54) ) (stroke (width 0) (type default) ) (uuid "fd734556-b18c-487c-b6de-67bc81064261") ) (text "Power Rails" (exclude_from_sim no) (at 16.51 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "7d750c9d-d7d6-4011-9a1b-8a5d88cec8a2") ) (label "5V_REG_OUT" (at 130.81 100.33 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d8d8238b-3b6a-4f08-97af-a0bb65fe2766") ) (label "5V_REG_IN" (at 97.79 100.33 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e252f25d-c54c-4a71-9c11-9eb30a14741f") ) (global_label "MAIN_PWR" (shape output) (at 238.76 54.61 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "135cb5ea-1dfb-427c-8335-5c83e95f5a89") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 251.1795 54.61 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "VBUS" (shape input) (at 127 152.4 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3771d436-d487-49e5-83b7-fcd97c1f5d27") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 119.6883 152.3206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "DC_IN" (shape input) (at 26.67 39.37 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "950b1707-d3be-4b85-a62a-c13239ae2497") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.2419 39.37 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "3V3" (shape input) (at 22.86 152.4 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a00767bf-f242-4dfb-832c-ee8e323f4f11") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 16.9393 152.3206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 30.48 100.33 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eec004ec-2d17-4ecf-a428-94d5b0b14a54") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.0605 100.33 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape output) (at 228.6 128.27 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f4097e6f-2c94-48b9-9f49-6b8002f84a57") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.6093 128.1906 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Open") (at 35.56 39.37 270) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0364ffa7-abcc-4897-b428-aacfe086e2a7") (property "Reference" "JP1" (at 38.1 38.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Jumper_3_Open" (at 38.1 40.6399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, both open" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "XFCN" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2937625" (at 35.56 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "96cadfad-2fa7-412a-925f-95d706f80b30") ) (pin "1" (uuid "bdaf0749-926e-414c-93fa-750bb92acdeb") ) (pin "2" (uuid "674db5a1-f36b-4102-9762-194f081e7f9a") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "JP1") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 38.1 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "06f2007e-89d3-4a7e-8912-a0b675374ed4") (property "Reference" "R10" (at 44.45 109.22 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "49.9k" (at 41.91 109.22 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 36.322 109.22 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0749K9L" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 38.1 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2e5ce241-aee2-4618-901c-8a2530429916") ) (pin "2" (uuid "046dde84-3f29-4043-b1c8-c18bbd09110e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R10") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 92.71 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0afd2e10-551d-403d-8ebb-a3569d0a20dd") (property "Reference" "#FLG02" (at 92.71 98.425 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 92.71 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 92.71 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 92.71 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 92.71 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b9a9cd4b-d07a-4f35-a4df-82c7c4694f56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG02") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 85.09 100.33 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "14a165bd-0b65-4fb0-9565-152bd6300a32") (property "Reference" "D3" (at 85.09 102.87 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "ES1D 1A 200V" (at 85.09 105.41 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-ES1D" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MDD(Microdiode Semiconductor)" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "ES1D" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 85.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ba70beda-274f-468b-b8a2-3813abb44b54") ) (pin "2" (uuid "f3d1557e-197c-4dbe-96d6-1cac9319a82d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D3") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 45.72 54.61 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "15f0de00-abbd-45f2-ab29-9238a959b5ec") (property "Reference" "#FLG3" (at 45.72 56.515 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 45.72 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 45.72 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 45.72 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 45.72 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "21949ebe-4623-41ba-9a2f-f45bd3c6020f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 63.5 62.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "19a59922-3dc1-4c6a-ac56-d3314ad92919") (property "Reference" "#PWR6" (at 63.5 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 63.5 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 63.5 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ae17340-e8d4-4781-b446-684e221c4698") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR6") (unit 1) ) ) ) ) (symbol (lib_id "Device:L_Small") (at 118.11 48.26 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1b589b07-c4df-4ad4-bb8b-1dc9f58a7aa3") (property "Reference" "L1" (at 118.11 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10uH" (at 118.11 45.72 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:IND-SMD_L7.2-W6.6_GPSR07X0" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Inductor, small symbol" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5189958" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "SHOU HAN" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CYA0630-10UH" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 118.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "21b22e38-4d35-4b56-ab46-2e2665e4292d") ) (pin "2" (uuid "93a5c664-35e1-41b1-a6b7-4a069eb85421") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "L1") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 151.13 161.29 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1fde763e-90ef-4ddc-b2e5-d750ee01b070") (property "Reference" "R7" (at 153.67 160.0199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 153.67 162.5599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 149.352 161.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 151.13 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78d336ba-1d45-453f-9418-f4cf06fef625") ) (pin "2" (uuid "55707ce6-f84d-4d75-9aa2-a9ad19f844fc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R7") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 148.59 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "27625c54-6268-4c25-bed4-fca1fa7ca75b") (property "Reference" "C8" (at 151.13 107.95 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 151.13 110.49 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Kyocera AVX" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 148.59 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "22dc2c98-8d2b-431e-b86a-f393bbea74b2") ) (pin "2" (uuid "f497ede9-bde6-4106-aea6-35c91bbc22f6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C8") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 165.1 118.11 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2fe78790-cca2-409c-b93b-37aabedf28fc") (property "Reference" "D4" (at 168.91 118.4274 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 168.91 120.9674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 165.1 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "51ddc963-3d30-483d-9bc2-4132f910f060") ) (pin "2" (uuid "0156ed4a-ea56-4722-abd1-8c53663c89b8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D4") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 168.91 156.21 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "35b8e5b7-86db-4767-83b8-139f441e0d15") (property "Reference" "#FLG06" (at 168.91 158.115 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 168.91 161.29 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 168.91 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 168.91 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 168.91 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4938ca89-1a60-4caa-8779-14f9b0939b54") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG06") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 49.53 177.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "401ebed2-9a6b-4f43-85e9-9d349e9ed2dc") (property "Reference" "#PWR030" (at 49.53 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 182.88 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 49.53 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 49.53 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 49.53 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7cd3cb58-bf4e-48e0-9688-82d0eaadfb11") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR030") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 138.43 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "41602654-a8a4-4659-b09c-68b643d60f11") (property "Reference" "R8" (at 140.97 53.3399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "422k" (at 140.97 55.8799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 136.652 54.61 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C245966" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-07422KL" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 138.43 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8e7d128-1ecc-4f43-a3bb-db6de577c82a") ) (pin "2" (uuid "db0925cb-7df4-45f0-bca2-0c35ca30285d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R8") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 138.43 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4f89dab7-2826-49b5-ae3d-37db4da5d60d") (property "Reference" "R9" (at 140.97 64.7699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "30.1k" (at 140.97 67.3099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 136.652 66.04 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C23000" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "UNI-ROYAL" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "0603WAF3012T5E" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 138.43 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "339f0790-091e-4a7d-8824-300f10f6f643") ) (pin "2" (uuid "2811f483-3372-4eb5-955b-7055d4353a77") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R9") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 165.1 107.95 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "536545a8-ec75-4173-afef-e4439b3a7241") (property "Reference" "R5" (at 167.64 106.6799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 167.64 109.2199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 163.322 107.95 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 165.1 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb5c2178-e587-4bcb-a28a-1cc92e885dee") ) (pin "2" (uuid "2590e1e1-9277-4805-91e0-0ff82117dd4b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R5") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 92.71 133.35 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "58655957-f60f-4545-8355-ae9b4994678a") (property "Reference" "#FLG01" (at 90.805 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 83.82 133.35 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 92.71 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 92.71 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 92.71 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a0d1c282-0cf5-4466-b722-e7221bb91d56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG01") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 127 106.68 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5a65fde0-58e9-41b7-bb45-7d350448b336") (property "Reference" "R3" (at 129.54 105.4099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 129.54 107.9499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 125.222 106.68 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-07330RL" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 127 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "94fbde5b-d434-4b17-9453-e8674feca3f2") ) (pin "2" (uuid "18aad770-9410-43bf-9964-de860ebb2447") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R3") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 135.89 119.38 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (property "Reference" "C7" (at 138.43 117.5638 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 138.43 120.1038 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Kyocera AVX" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "TAJA106K016RNJ" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 135.89 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2238d5cc-8204-4d20-9342-cd574c67db3a") ) (pin "2" (uuid "8d686ed2-73c8-42ff-a47d-31da8e433ade") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C7") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 127 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6138d87f-fad6-404c-9cd2-0ba7741020be") (property "Reference" "C9" (at 129.54 53.3462 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "12pF 50V" (at 129.54 55.8862 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C38523" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10C120JB8NNNC" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 127 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0f4acaaa-9f46-4e77-83f8-75d207594909") ) (pin "2" (uuid "e78037ab-7571-4692-ad5f-e2779f612cad") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C9") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 67.31 154.94 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "631d19df-47e9-46b5-9f03-a8b36e85564d") (property "Reference" "#FLG05" (at 67.31 156.845 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 67.31 160.02 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 67.31 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 67.31 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 67.31 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6a852513-0ca2-449a-8391-47d4d2773d84") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG05") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 109.22 50.8 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "64a1c4bb-f61a-4b61-9178-939a4d34c52f") (property "Reference" "C3" (at 109.22 53.848 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "0.1uF 50V" (at 109.22 56.388 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 109.22 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bc074fe7-5306-4f22-bdef-97d08cf22cb4") ) (pin "2" (uuid "49318a60-6c99-44ad-8d1a-27259af22e97") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 175.26 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "654f52f1-2b1a-4c50-8391-e5e6858d608d") (property "Reference" "#PWR17" (at 175.26 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 175.26 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 175.26 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 175.26 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 175.26 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "48e35fe3-4cd6-4a8d-801b-53586fa53aa8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR17") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 49.53 170.18 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6823870e-28cc-4ec1-9b5a-c8beb3288006") (property "Reference" "D5" (at 53.34 170.4974 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 53.34 173.0374 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 49.53 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "14af03e9-cb54-48a8-bd97-db8352bc404b") ) (pin "2" (uuid "f5956280-eabc-48e6-b057-01316bad4e23") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D5") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 96.52 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "73191297-a3db-406e-bde7-d8a9700d1092") (property "Reference" "#PWR029" (at 96.52 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 96.52 139.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 96.52 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 96.52 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 96.52 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "72785cea-756d-4fe3-a390-f369061f060c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR029") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 38.1 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "775dad30-30ff-444c-8ae4-dde2d0d8f355") (property "Reference" "#PWR18" (at 38.1 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 38.1 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 38.1 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 38.1 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 38.1 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "32bc9cb3-ab59-4eb6-bf67-29b89f04d093") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR18") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 198.12 48.26 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "77ca7b5c-b61b-4e9b-99f7-e6e552a9e49f") (property "Reference" "F3" (at 198.12 41.91 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 1A" (at 198.12 44.45 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 203.2 46.99 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7542958" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "LUTE" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "1206L100/30NR" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 198.12 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b5f77137-490d-4e7f-8cf6-0219bb607ea5") ) (pin "2" (uuid "05441244-6f99-4a29-abc3-8e6f3522dd95") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "F3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 91.44 62.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7f1e6854-ba24-4f2b-a69d-59c4cbc2e2a8") (property "Reference" "#PWR8" (at 91.44 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 91.44 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 91.44 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 91.44 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 91.44 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78a5dded-0211-4d8e-b512-6a2f6afe6e4b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR8") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 227.33 100.33 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "80fe98ae-b6bb-4c4d-a328-2228685fe207") (property "Reference" "#PWR032" (at 223.52 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 231.14 100.33 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 227.33 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 227.33 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 227.33 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c83113b7-e000-4a47-b128-d3671363e710") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR032") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 63.5 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8360a5ee-94fd-4bef-ad9d-ec793099d31c") (property "Reference" "C2" (at 67.31 53.7209 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 50V" (at 67.31 56.2609 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 64.4652 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C89632" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL31B106KBHNNNE" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cee5940c-22af-4ad6-ba66-c8a51c467656") ) (pin "2" (uuid "7ce1d76f-72e9-43c1-8013-b7b42506c245") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C2") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 38.1 120.65 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8853a3b1-5c85-4113-8308-4cbefb00b424") (property "Reference" "D2" (at 45.72 122.2375 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED 0805 (green)" (at 43.18 122.2375 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 38.1 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7a70e6de-a43d-48c7-adcd-7b3396366fa5") ) (pin "2" (uuid "6cd95807-ba76-4dbf-8738-45e2642eb4b0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D2") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 157.48 100.33 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "957eba50-6218-4e9d-a149-15ba007c2986") (property "Reference" "F2" (at 157.48 93.98 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 0.5A" (at 157.48 96.52 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 162.56 99.06 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C70072" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "530-0ZCJ0050AF2E" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "TECHFUSE" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "nSMD035-16V" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 157.48 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e4b2258e-bc50-4151-87f8-7e6b714f7d85") ) (pin "2" (uuid "702dd0c1-69e1-46a2-8bbf-7ea1ed37c4d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "F2") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 157.48 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "96db8c41-27b3-4318-adb9-627a7db7cd51") (property "Reference" "#PWR12" (at 157.48 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 157.48 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 157.48 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 157.48 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 157.48 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9b071957-67f5-4a9f-b6cf-5a30d8deed04") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR12") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 96.52 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9a6664d9-b6d9-4e81-817a-45c56239601e") (property "Reference" "C5" (at 91.44 109.22 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 25V" (at 85.09 111.76 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7194" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Kyocera AVX" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "TAJB106K025RNJ" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 96.52 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0f7544a4-ab8e-4f9b-91e3-5ba4e92e1ac4") ) (pin "2" (uuid "d281f145-6fd2-4512-9610-2764ef377070") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C5") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 138.43 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9ec79d22-ccab-49d1-8675-5141a5c9582a") (property "Reference" "#PWR9" (at 138.43 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 138.43 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 138.43 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 138.43 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 138.43 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1e0cd01c-9e69-4d7e-a80c-dabff8f50f83") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR9") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 157.48 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a3f45769-b95f-4c8d-8efb-a6e8629d79f3") (property "Reference" "C10" (at 161.29 52.4509 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "22uF 25V" (at 161.29 54.9909 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 158.4452 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C12891" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL31A226KAHNNNE" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 157.48 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cfac004e-504f-4715-82cf-0e75015c59a5") ) (pin "2" (uuid "f59ad581-2cd1-478a-a45d-433c9436fe6b") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C10") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 49.53 160.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adba1fff-18c7-4fb6-97ae-324d243206c4") (property "Reference" "R6" (at 52.07 158.7499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "4.99k" (at 52.07 161.2899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 47.752 160.02 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114621" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-074K99L" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 49.53 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ab6a180-794c-4ae0-bfa8-8c147a7fcef0") ) (pin "2" (uuid "9328c8c3-dcd3-4f00-a39f-fade45afabd1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R6") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 104.14 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b1335ea9-16da-44b9-9459-ec64501666b6") (property "Reference" "C6" (at 106.68 109.2262 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF 50V" (at 106.68 111.7662 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL10B104KB8NNNC" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 104.14 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2a91e0f5-8fd2-4fe3-9f2f-3caaf609a99b") ) (pin "2" (uuid "ff020eb8-22f7-4c53-80dd-4c5acbbe8264") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C6") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Open") (at 218.44 39.37 270) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b2a40005-487f-412a-8ac9-41fd503ee05c") (property "Reference" "JP2" (at 220.98 38.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Jumper_3_Open" (at 220.98 40.6399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, both open" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "XFCN" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2937625" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "a2bb9467-f416-4a69-9059-1c8c8e427b83") ) (pin "1" (uuid "ce8c2961-9046-4562-b649-14e912b05ccf") ) (pin "2" (uuid "6be9d597-6a4f-47e1-85a6-ae869623299c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "JP2") (unit 1) ) ) ) ) (symbol (lib_id "Regulator_Linear:AP1117-ADJ") (at 116.84 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (property "Reference" "U5" (at 116.84 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SPX1117-ADJ" (at 116.84 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 116.84 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 119.38 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C67402" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MaxLinear" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SPX1117M3-L/TR" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 116.84 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a03290dc-5bf4-4876-a5ed-0f8ec60ae61c") ) (pin "2" (uuid "a6a10f38-3a15-4ce8-b02b-272c6aa02efd") ) (pin "3" (uuid "db402ed9-a87f-4cb2-b55d-934694f81f2e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "U5") (unit 1) ) ) ) ) (symbol (lib_id "Regulator_Switching:AP63200WU") (at 91.44 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b81d687e-c0a3-4656-910f-d5aa93a6d6ea") (property "Reference" "U2" (at 91.44 40.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AP63301" (at 91.44 43.18 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:TSOT-26" (at 91.44 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "4A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT26" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2158003" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "DIODES" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "AP63301WU-7" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 91.44 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "e3420d68-88b6-4730-b8f9-ceaa2891767c") ) (pin "2" (uuid "4b3c3b8d-eb3d-4b32-9399-2025ac832188") ) (pin "1" (uuid "f516292a-9035-4fec-9df5-9edc3c957ba7") ) (pin "5" (uuid "5998fb9a-17f2-45e6-aaa2-a84e2f746424") ) (pin "6" (uuid "258b36ea-fd4f-4f13-adc0-db7f4fe77f50") ) (pin "4" (uuid "5ba88471-d08a-4abc-befa-3183ea263979") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "U2") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 215.9 101.6 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "be6a7bdf-cba9-48c9-9015-b1568cb26ba6") (property "Reference" "#FLG04" (at 215.9 103.505 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 215.9 106.68 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 215.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 215.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 215.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "70589d68-386a-47b4-abbe-9d76d68b515b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG04") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 90.17 152.4 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c3081ad6-d8e8-417c-b4c4-67183007b70e") (property "Reference" "#PWR033" (at 86.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 93.98 152.3999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 90.17 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 90.17 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ea5c4e1-6059-4cb8-87a2-8a8c96f0d1b1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR033") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 175.26 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c42ea71f-c107-439c-a1ea-b3a68372ea5d") (property "Reference" "C11" (at 179.07 52.4509 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "22uF 25V" (at 179.07 54.9909 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 176.2252 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C12891" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Samsung Electro-Mechanics" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "CL31A226KAHNNNE" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 175.26 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9910648b-6018-4220-aa08-9d9a84350954") ) (pin "2" (uuid "7e9a00a6-a51d-4abd-abe6-8accb73aaeba") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C11") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 59.69 113.03 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c5742aa7-a922-4b75-8984-e94c4654beb8") (property "Reference" "D26" (at 62.23 111.7599 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 62.23 114.2999 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5199168" (at 59.69 113.03 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "ElecSuper" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C12L01-ES" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "C502541" (at 59.69 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f3e0add8-95ec-4c81-bf8e-bc18dfc6050e") ) (pin "2" (uuid "1de195ac-8ca3-4598-a59c-e90c5872b08b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D26") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 59.69 120.65 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ce4e6fbf-4c51-4ff6-a49f-515a1eee0f39") (property "Reference" "#PWR035" (at 59.69 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 59.69 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 59.69 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 59.69 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 59.69 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "691ba2e1-8c64-41ca-ba53-c102a001ac97") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR035") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 151.13 180.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d897ff9f-88ca-49e6-a493-27aafac3931d") (property "Reference" "#PWR031" (at 151.13 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 151.13 185.42 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 151.13 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 151.13 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 151.13 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c40bebcb-0c29-498a-ba2a-a58d3b3289e0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR031") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 217.17 129.54 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d9eb3553-5d5a-4c3d-8dfa-07b487c9d117") (property "Reference" "#FLG0103" (at 217.17 131.445 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 217.17 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 217.17 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 217.17 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 217.17 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "04913c01-2419-4361-b51c-791942f7b220") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG0103") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 127 119.38 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (property "Reference" "R4" (at 129.54 118.1099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1k" (at 129.54 120.6499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 125.222 119.38 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-071KL" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 127 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1ee86bd9-870e-432d-a2ab-540290a16777") ) (pin "2" (uuid "8a0775a2-408d-4757-a8ce-641d2be1ef58") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R4") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 151.13 171.45 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (property "Reference" "D6" (at 154.94 171.7674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 154.94 174.3074 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Yongyu Photoelectric" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SZYY0805G" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "80f557a6-2d76-417e-bf0b-8bda063ba0f9") ) (pin "2" (uuid "5a420f41-f924-4d93-b20d-c5b157a32cc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D6") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_Schottky") (at 193.04 114.3 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "feba9514-0d4e-45e7-8d97-6a49db19119e") (property "Reference" "D1" (at 195.58 113.3474 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "SM5819PL 1A 40V" (at 195.58 115.8874 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C669023" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "833-SM5819PL-TP" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MCC" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SM5819PL-TP" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 193.04 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d15b37e1-a5ca-49d1-a900-aa771cca720f") ) (pin "2" (uuid "9bdf9a7a-a184-4405-9f4f-bf9545518a5b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D1") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0200/kicad/sensors.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "d585006f-9358-47f4-9303-a822a0a26736") (paper "A4") (title_block (title "FanPico-0200 v1.1") (date "2025-12-05") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x02" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x02_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 1.27) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x03" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x03_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_2_Open" (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom yes) (on_board yes) (property "Reference" "JP" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_2_Open" (at 0 -2.286 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPST" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*2Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_2_Open_0_0" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_0_1" (arc (start 1.524 1.27) (mid 0 1.778) (end -1.524 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_1_1" (pin passive line (at -5.08 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 113.03 138.43) (diameter 0) (color 0 0 0 0) (uuid "053679b3-fade-499e-ad4a-1f39d9a2dbbc") ) (junction (at 119.38 173.99) (diameter 0) (color 0 0 0 0) (uuid "0b19cde5-9aad-4b2e-9ea1-494a829b350f") ) (junction (at 129.54 100.33) (diameter 0) (color 0 0 0 0) (uuid "22dd7e4e-fce0-47b7-9fd1-d9f1cdcadd39") ) (junction (at 119.38 120.65) (diameter 0) (color 0 0 0 0) (uuid "24f59095-7835-483d-9c8c-0e72516a2305") ) (junction (at 119.38 157.48) (diameter 0) (color 0 0 0 0) (uuid "49a57395-7443-4ef6-9cad-8d2839985283") ) (junction (at 104.14 176.53) (diameter 0) (color 0 0 0 0) (uuid "4e65e1ab-84f8-43a0-bd2c-ce104c27842d") ) (junction (at 129.54 85.09) (diameter 0) (color 0 0 0 0) (uuid "6156855c-e03e-43d8-8f47-ed137494caa0") ) (junction (at 119.38 138.43) (diameter 0) (color 0 0 0 0) (uuid "74097a70-3266-4b2e-90af-60cee1a3df7f") ) (junction (at 64.77 39.37) (diameter 0) (color 0 0 0 0) (uuid "8d6d84ae-550d-4bb8-8a37-b11861e3bd19") ) (junction (at 104.14 157.48) (diameter 0) (color 0 0 0 0) (uuid "9ad0ebde-c18b-4af5-a379-456e70662ee1") ) (junction (at 115.57 97.79) (diameter 0) (color 0 0 0 0) (uuid "a097b4d9-a584-4c3a-bb1a-c38a7d05fa1b") ) (junction (at 233.68 130.81) (diameter 0) (color 0 0 0 0) (uuid "ab70b5c1-45b3-4ba6-b2fe-0ae7081f2dfd") ) (junction (at 133.35 120.65) (diameter 0) (color 0 0 0 0) (uuid "be969ced-f367-4101-8692-cfb16c3b2c23") ) (junction (at 115.57 85.09) (diameter 0) (color 0 0 0 0) (uuid "e9de87b9-3bff-4c95-8bbc-cf89668465df") ) (junction (at 64.77 59.69) (diameter 0) (color 0 0 0 0) (uuid "ec087b1e-38da-453c-b7d3-39ceb9080c5c") ) (junction (at 133.35 140.97) (diameter 0) (color 0 0 0 0) (uuid "ff328524-be85-4e37-a7f7-cfdcdb4d621b") ) (wire (pts (xy 64.77 34.29) (xy 133.35 34.29) ) (stroke (width 0) (type default) ) (uuid "00f410b0-15a8-4b41-9022-820ff4814c96") ) (wire (pts (xy 119.38 173.99) (xy 146.05 173.99) ) (stroke (width 0) (type default) ) (uuid "03955a90-7fd9-4e01-807a-398d64959ed2") ) (wire (pts (xy 133.35 44.45) (xy 64.77 44.45) ) (stroke (width 0) (type default) ) (uuid "077f93c1-3305-4f8a-9a42-aa76eb0b30d1") ) (wire (pts (xy 129.54 85.09) (xy 129.54 87.63) ) (stroke (width 0) (type default) ) (uuid "0bb0c548-dae9-4e87-8d00-61f5933e09cb") ) (wire (pts (xy 54.61 59.69) (xy 64.77 59.69) ) (stroke (width 0) (type default) ) (uuid "0e3b0446-4649-4f96-941f-62a4a86d933e") ) (wire (pts (xy 119.38 120.65) (xy 119.38 125.73) ) (stroke (width 0) (type default) ) (uuid "0e3f5bd0-6c7c-4de3-ba51-06f6b056033c") ) (wire (pts (xy 133.35 140.97) (xy 146.05 140.97) ) (stroke (width 0) (type default) ) (uuid "0eca1b8a-5d8f-4c7e-9283-0979c2cf5f01") ) (wire (pts (xy 109.22 97.79) (xy 115.57 97.79) ) (stroke (width 0) (type default) ) (uuid "119d6fd7-4b6d-4b96-a1db-7179f51c0173") ) (wire (pts (xy 129.54 100.33) (xy 143.51 100.33) ) (stroke (width 0) (type default) ) (uuid "1663b4cd-e369-4ed8-b5bd-27ed82ee6066") ) (wire (pts (xy 119.38 138.43) (xy 146.05 138.43) ) (stroke (width 0) (type default) ) (uuid "16db0d99-3db4-4925-84c8-65da70b4f50b") ) (wire (pts (xy 214.63 130.81) (xy 233.68 130.81) ) (stroke (width 0) (type default) ) (uuid "17bb8ae3-ddba-46a7-b86a-ec52a9c8acf2") ) (wire (pts (xy 233.68 140.97) (xy 233.68 146.05) ) (stroke (width 0) (type default) ) (uuid "1cca3366-56ed-4052-a7fc-76f00f9e812c") ) (wire (pts (xy 105.41 59.69) (xy 133.35 59.69) ) (stroke (width 0) (type default) ) (uuid "21e9e787-9a7d-467f-8a1d-5fc2791834e6") ) (wire (pts (xy 64.77 34.29) (xy 64.77 39.37) ) (stroke (width 0) (type default) ) (uuid "21ed8d62-3f95-43c3-8d54-5eba4cc044ac") ) (polyline (pts (xy 184.15 102.362) (xy 273.812 102.362) ) (stroke (width 0) (type default) ) (uuid "26e96cd7-6f13-447c-beab-06aa46631838") ) (wire (pts (xy 119.38 133.35) (xy 119.38 138.43) ) (stroke (width 0) (type default) ) (uuid "2ea4e539-49d6-401b-bb4a-cda99ee07bca") ) (wire (pts (xy 113.03 138.43) (xy 119.38 138.43) ) (stroke (width 0) (type default) ) (uuid "3040f551-74f6-4350-bc5c-35ed1dcb9cf1") ) (polyline (pts (xy 194.056 110.236) (xy 277.114 110.236) ) (stroke (width 0) (type default) ) (uuid "33e4e784-7fc7-4884-ade8-8a3b91af368b") ) (wire (pts (xy 214.63 128.27) (xy 217.17 128.27) ) (stroke (width 0) (type default) ) (uuid "3437e5a8-2ad5-4902-a033-6f7f14e59c91") ) (wire (pts (xy 115.57 97.79) (xy 143.51 97.79) ) (stroke (width 0) (type default) ) (uuid "345dcbf3-0d24-424c-b025-5cae83d8ee39") ) (wire (pts (xy 129.54 95.25) (xy 129.54 100.33) ) (stroke (width 0) (type default) ) (uuid "35dc8c2f-a87f-41c1-8e81-bb8ce4a0eb58") ) (wire (pts (xy 104.14 132.08) (xy 113.03 132.08) ) (stroke (width 0) (type default) ) (uuid "3ab9a561-4873-46a5-8dc4-b52de81a4b5a") ) (wire (pts (xy 115.57 85.09) (xy 115.57 87.63) ) (stroke (width 0) (type default) ) (uuid "3e3fbb6d-bde3-4b30-a608-c38c2150fed6") ) (wire (pts (xy 64.77 39.37) (xy 97.79 39.37) ) (stroke (width 0) (type default) ) (uuid "41b1de41-5ad9-4bdb-9a97-c9361c02ba95") ) (wire (pts (xy 101.6 138.43) (xy 113.03 138.43) ) (stroke (width 0) (type default) ) (uuid "45e258a2-ee98-40ff-b051-385623012e55") ) (wire (pts (xy 146.05 120.65) (xy 146.05 135.89) ) (stroke (width 0) (type default) ) (uuid "45e9946b-e7a1-4587-9843-3be82822661a") ) (wire (pts (xy 233.68 130.81) (xy 233.68 133.35) ) (stroke (width 0) (type default) ) (uuid "493703c1-7cd2-4eb1-9fd9-020b5eeecd94") ) (wire (pts (xy 54.61 39.37) (xy 64.77 39.37) ) (stroke (width 0) (type default) ) (uuid "49d6104e-9176-4f0e-aaa8-29e669a60268") ) (wire (pts (xy 64.77 64.77) (xy 64.77 62.23) ) (stroke (width 0) (type default) ) (uuid "4bff4d15-1446-4517-839c-9433d6f48458") ) (wire (pts (xy 64.77 59.69) (xy 97.79 59.69) ) (stroke (width 0) (type default) ) (uuid "4ce5bf56-c452-4e1d-bbe1-41bcfbeccefb") ) (wire (pts (xy 119.38 157.48) (xy 119.38 160.02) ) (stroke (width 0) (type default) ) (uuid "5879c51f-cf74-4098-bbc8-669412b3ca0d") ) (wire (pts (xy 146.05 157.48) (xy 146.05 168.91) ) (stroke (width 0) (type default) ) (uuid "5aeb0e5a-de6e-41d8-9af0-1831f7c24483") ) (wire (pts (xy 133.35 120.65) (xy 146.05 120.65) ) (stroke (width 0) (type default) ) (uuid "5ca8a3e6-7819-45a1-b8c4-48926ce74554") ) (wire (pts (xy 64.77 54.61) (xy 133.35 54.61) ) (stroke (width 0) (type default) ) (uuid "60db9e27-0374-439a-8f9a-939b0aadab74") ) (wire (pts (xy 104.14 167.64) (xy 104.14 176.53) ) (stroke (width 0) (type default) ) (uuid "63705459-314e-4146-9b59-47bf6b6e9969") ) (wire (pts (xy 109.22 100.33) (xy 129.54 100.33) ) (stroke (width 0) (type default) ) (uuid "6506b179-2f17-4447-86b9-658e11b167c7") ) (wire (pts (xy 64.77 44.45) (xy 64.77 41.91) ) (stroke (width 0) (type default) ) (uuid "6606d0e8-ac80-422e-aa4d-41d982eaa8cd") ) (wire (pts (xy 133.35 120.65) (xy 133.35 125.73) ) (stroke (width 0) (type default) ) (uuid "6817c1d5-4c23-476a-ab09-4a3a7e3cf241") ) (wire (pts (xy 90.17 132.08) (xy 93.98 132.08) ) (stroke (width 0) (type default) ) (uuid "709d62fb-6d09-444c-b351-e70037fa6ca3") ) (wire (pts (xy 93.98 176.53) (xy 104.14 176.53) ) (stroke (width 0) (type default) ) (uuid "770202a7-5c43-4830-83a4-96d34b531445") ) (wire (pts (xy 129.54 85.09) (xy 143.51 85.09) ) (stroke (width 0) (type default) ) (uuid "77e32df0-94f8-43ed-b6a9-92adeb031eb4") ) (wire (pts (xy 93.98 157.48) (xy 104.14 157.48) ) (stroke (width 0) (type default) ) (uuid "78c6a107-99b4-41bc-bfcd-497c4bd16704") ) (polyline (pts (xy 273.812 21.59) (xy 184.15 21.59) ) (stroke (width 0) (type default) ) (uuid "7b60be7a-8294-4a6f-9c33-957ad517142d") ) (wire (pts (xy 101.6 120.65) (xy 119.38 120.65) ) (stroke (width 0) (type default) ) (uuid "85f92166-9cb7-4f73-a4a2-eded4dcbbf1d") ) (wire (pts (xy 64.77 54.61) (xy 64.77 59.69) ) (stroke (width 0) (type default) ) (uuid "8916f103-fe47-4f1e-8585-81d31b6e452b") ) (wire (pts (xy 146.05 171.45) (xy 133.35 171.45) ) (stroke (width 0) (type default) ) (uuid "8ef599be-4de3-41a0-b547-6fa687f43f7a") ) (wire (pts (xy 115.57 85.09) (xy 129.54 85.09) ) (stroke (width 0) (type default) ) (uuid "931e3554-13ed-43a4-954f-8c71bde5a808") ) (wire (pts (xy 105.41 39.37) (xy 133.35 39.37) ) (stroke (width 0) (type default) ) (uuid "98f28219-1903-423f-8493-20aabedec9cb") ) (wire (pts (xy 113.03 132.08) (xy 113.03 138.43) ) (stroke (width 0) (type default) ) (uuid "9b5ea938-6059-454c-87ec-2f80c50770b0") ) (wire (pts (xy 64.77 41.91) (xy 54.61 41.91) ) (stroke (width 0) (type default) ) (uuid "a16a9bb7-db53-4fc6-b3c4-23725deea405") ) (wire (pts (xy 54.61 62.23) (xy 64.77 62.23) ) (stroke (width 0) (type default) ) (uuid "a435e9a5-7616-4099-96f2-ede933ae7ed2") ) (polyline (pts (xy 194.31 157.734) (xy 277.368 157.734) ) (stroke (width 0) (type default) ) (uuid "a72637bc-7482-47ed-8462-10e6fc7e31d8") ) (polyline (pts (xy 273.812 102.616) (xy 273.812 21.844) ) (stroke (width 0) (type default) ) (uuid "a83b3a5a-257b-43b9-9d28-3cbba2549a16") ) (wire (pts (xy 233.68 130.81) (xy 246.38 130.81) ) (stroke (width 0) (type default) ) (uuid "abab165c-6360-439a-95b8-369cebaea146") ) (wire (pts (xy 104.14 176.53) (xy 146.05 176.53) ) (stroke (width 0) (type default) ) (uuid "b54ec88e-4fef-437e-baa6-82af85f5d6cc") ) (wire (pts (xy 99.06 140.97) (xy 133.35 140.97) ) (stroke (width 0) (type default) ) (uuid "b6ec51f1-7b8e-40a7-b5d9-ef9ddd0f34ae") ) (wire (pts (xy 119.38 167.64) (xy 119.38 173.99) ) (stroke (width 0) (type default) ) (uuid "ba834cdd-9f1b-41ca-9dca-96c21bd39d33") ) (wire (pts (xy 115.57 95.25) (xy 115.57 97.79) ) (stroke (width 0) (type default) ) (uuid "c1cc74f1-d06f-4da3-8edd-c9440dc39ec5") ) (wire (pts (xy 133.35 171.45) (xy 133.35 140.97) ) (stroke (width 0) (type default) ) (uuid "cdec0f10-8c20-4ca7-adfe-2b980341d4e4") ) (polyline (pts (xy 194.056 157.734) (xy 194.056 110.236) ) (stroke (width 0) (type default) ) (uuid "cee9c282-a05f-4013-ab0e-d18b1d27a303") ) (wire (pts (xy 254 130.81) (xy 265.43 130.81) ) (stroke (width 0) (type default) ) (uuid "cf857b04-3c7c-4fb4-bb66-ed7b7dc6faf7") ) (polyline (pts (xy 184.15 21.59) (xy 184.15 102.362) ) (stroke (width 0) (type default) ) (uuid "d414fde8-c194-45ee-9c1b-44218d35b1eb") ) (wire (pts (xy 80.01 132.08) (xy 82.55 132.08) ) (stroke (width 0) (type default) ) (uuid "e488840b-8b2c-411d-92dd-604f67149ef5") ) (polyline (pts (xy 193.802 69.342) (xy 267.335 69.215) ) (stroke (width 0) (type default) ) (uuid "e5e95153-bf4d-4fca-b912-7260c40abef3") ) (wire (pts (xy 133.35 64.77) (xy 64.77 64.77) ) (stroke (width 0) (type default) ) (uuid "e63f4856-db36-46c6-9c02-2a6c34cdff98") ) (wire (pts (xy 104.14 157.48) (xy 104.14 160.02) ) (stroke (width 0) (type default) ) (uuid "e83a5fe9-ebaa-4dc5-aa0a-ec19aa12d80a") ) (wire (pts (xy 109.22 85.09) (xy 115.57 85.09) ) (stroke (width 0) (type default) ) (uuid "e9a65bc3-51f7-453b-bdc4-e6c7e0b5e967") ) (wire (pts (xy 119.38 157.48) (xy 146.05 157.48) ) (stroke (width 0) (type default) ) (uuid "ebf5180e-f093-4086-ae6a-30fffc6f4b42") ) (wire (pts (xy 133.35 133.35) (xy 133.35 140.97) ) (stroke (width 0) (type default) ) (uuid "f13f2e8d-e1d5-41a8-876f-d828c9b42c6c") ) (wire (pts (xy 104.14 157.48) (xy 119.38 157.48) ) (stroke (width 0) (type default) ) (uuid "f332155a-94dc-4ef6-a2e9-aafd0a8f53a2") ) (wire (pts (xy 119.38 120.65) (xy 133.35 120.65) ) (stroke (width 0) (type default) ) (uuid "f4520800-87e5-42c8-b9c1-7ba2bfb62fbe") ) (wire (pts (xy 93.98 173.99) (xy 119.38 173.99) ) (stroke (width 0) (type default) ) (uuid "fbca60dd-b89d-44d2-93de-d69dd093e7fc") ) (polyline (pts (xy 277.114 110.236) (xy 277.114 157.734) ) (stroke (width 0) (type default) ) (uuid "feca800e-838c-4ac5-88ce-b205341fa361") ) (wire (pts (xy 143.51 85.09) (xy 143.51 95.25) ) (stroke (width 0) (type default) ) (uuid "ffdc346c-7ebe-45f1-8336-dec60066f341") ) (text "Connectors / Sensors" (exclude_from_sim no) (at 19.05 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "490ff861-9b1a-489c-8371-d793232cccff") ) (text "DC Power Connector" (exclude_from_sim no) (at 226.06 113.538 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "63e848a9-e237-490d-b09d-aba8115e6505") ) (text "Display Connectors" (exclude_from_sim no) (at 233.934 24.892 0) (effects (font (size 1.27 1.27) ) ) (uuid "dd4d986e-176d-4f9c-b661-e4e440f1737b") ) (global_label "TX" (shape input) (at 109.22 100.33 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "08c18cc4-1af6-48e7-92e1-e062fa26ce7d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.0659 100.2506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 109.22 85.09 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e1334bd-23ef-489e-8565-a98a633c80d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.9364 85.0106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "RX" (shape input) (at 109.22 97.79 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5753c167-6ec3-4788-b92d-354b21327b79") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.8802 97.7106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 133.35 64.77 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "636ec398-3d70-4359-98b8-4ebd9a3143be") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.7221 64.8494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL" (shape input) (at 93.98 176.53 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6a5ff76d-4783-4c50-a9b7-235da7baee63") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.4955 176.4506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 133.35 39.37 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7988ac95-4624-454c-b52e-ec62e32b2c5c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.8669 39.2906 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 217.17 128.27 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "97418e30-d342-4cbd-9b71-5f2d1041e62f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.4536 128.3494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 133.35 59.69 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "aee7a529-6ac6-4a80-9568-e26a40779fdc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.8669 59.6106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 133.35 34.29 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c05c976b-1ed4-430c-aa71-ee5c6fb1a5ed") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.556 34.2106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "DC_IN" (shape output) (at 265.43 130.81 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d9855db4-938d-4902-9d2d-9958eeff7a74") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 273.8581 130.81 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 93.98 157.48 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcf29819-278b-4223-a495-45589e3fd725") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 87.6964 157.4006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SDA" (shape input) (at 93.98 173.99 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dfe4bd0e-4720-4c5e-8fac-872a6c53b586") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 83.2817 173.9106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "DQ" (shape input) (at 101.6 138.43 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ec8ed316-32f4-4b78-a8a3-2397480f3868") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 96.0143 138.43 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 101.6 120.65 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eeb79481-1206-4ffa-bb26-579a996a0e2d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 94.7443 120.65 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 133.35 54.61 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f07b76b4-4f46-4a6e-9724-a7602f5db188") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.556 54.5306 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 133.35 44.45 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fb13280b-75f6-4af9-8280-b5793cf708fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.7221 44.3706 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "Device:D_TVS") (at 133.35 129.54 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0c54e4ad-df7a-4f93-94d7-9edfd7e30a70") (property "Reference" "D23" (at 135.89 128.2699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 135.89 130.8099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 133.35 129.54 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 133.35 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e09aa495-9e22-4b63-8742-7340c1cea9a9") ) (pin "2" (uuid "3a63b840-6b64-44d9-8183-093974e5d7a6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D23") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 151.13 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "19772840-0f1c-4864-a3f2-b85e11be6f6a") (property "Reference" "J6" (at 153.67 171.4499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "QWIIC" (at 153.67 173.9899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C160404" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "JST" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "SM04B-SRSS-TB(LF)(SN)" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 151.13 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "441b629a-67e3-4fe8-9fac-c79b803c42aa") ) (pin "2" (uuid "29680d53-5b34-42a2-8297-b9ec21c13bd7") ) (pin "3" (uuid "1a34ebd1-77e2-4c79-85b8-85a9fdc846d9") ) (pin "4" (uuid "1e878d6f-f0ee-4030-ae5e-272ce88ac9e7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J6") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 49.53 62.23 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "2ab9bb49-234a-4ed1-af89-c2604f58121c") (property "Reference" "J17" (at 46.99 55.88 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor2" (at 45.72 67.31 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C20079" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "XH-2A" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "C33132 (Right-Angle)" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78a9b55b-caff-4420-a6ae-19a7131d97be") ) (pin "2" (uuid "30a06f66-9fee-4536-b302-01811e2778bb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J17") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 115.57 91.44 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2b949ba6-5a8f-4360-8686-0d967c367aff") (property "Reference" "D17" (at 118.11 90.1699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 118.11 92.7099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 115.57 91.44 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2e0a213b-0658-4c22-b8ff-b1fd05a8b69b") ) (pin "2" (uuid "9fb3ec61-58cf-4425-878b-fe0951abf63e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D17") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 209.55 130.81 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "32d11869-f2aa-448e-999e-866b16c452b4") (property "Reference" "J1" (at 207.01 130.8101 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "DC Power Input" (at 220.98 137.16 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1509679" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "651-1715022 " (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "JILN" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "JL301-50002U04" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 209.55 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ff076654-70d7-4ea7-acc1-ca9f2cf66b02") ) (pin "2" (uuid "bf015ec5-74f2-4db6-8dd3-6bee265faa54") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J1") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 129.54 91.44 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "48c1ca3c-b2b7-4043-b6d4-db9851ebd51f") (property "Reference" "D16" (at 132.08 90.1699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 132.08 92.7099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 129.54 91.44 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "11abef81-8587-4cf7-a1e1-2a3f7802d9fd") ) (pin "2" (uuid "0b9f47f1-92aa-4dad-92b3-b118cbee6dbd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D16") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 250.19 130.81 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4c74a725-f10f-4273-b4be-b4c0a9315c7e") (property "Reference" "F1" (at 250.19 127 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 2A (48V)" (at 250.19 134.62 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 255.27 129.54 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22399926" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "BHFUSE" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "BSMD2920-200-48V" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 250.19 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4a6afc4c-451c-4825-b5d8-4c1046f2ba13") ) (pin "2" (uuid "dc9bb051-09b8-4555-8453-fa79b6e4832a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "F1") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 80.01 132.08 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4dfbc5c6-1bde-43f9-af3a-4f9982aa6859") (property "Reference" "#PWR028" (at 83.82 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 69.85 132.08 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 80.01 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 80.01 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 80.01 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "564e1deb-f553-4924-ad61-0e3e7a4a557b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR028") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 119.38 163.83 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "543211f1-d18f-43bc-a156-ce9568f63336") (property "Reference" "D13" (at 121.92 162.5599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 121.92 165.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 119.38 163.83 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 119.38 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7c567bdc-4e1d-4583-ad01-525d257c850b") ) (pin "2" (uuid "59e4e0fb-96e6-4242-9ac6-4b6215fdd3c9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D13") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 101.6 59.69 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "5effda4f-f509-4c42-bf3f-632077643ed1") (property "Reference" "R51" (at 101.6 57.15 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 101.6 62.23 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 101.6 61.468 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "23e8f6d6-dc05-413b-bdf4-3972f7aaa452") ) (pin "2" (uuid "a8fb4119-650e-4ac6-94c5-3cf1ab9f9325") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R51") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 101.6 39.37 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6f5e15d3-8889-4380-8ba4-82af742cd899") (property "Reference" "R50" (at 101.6 36.83 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 101.6 41.91 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 101.6 41.148 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-0710KL" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb8f7dba-8ef6-4057-b135-05bf0aa71ee1") ) (pin "2" (uuid "82f32688-55a7-455e-a0b9-830a1e12ca5f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R50") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 86.36 132.08 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "7b19fa25-e005-4aa6-aa89-d93cfa6f6b28") (property "Reference" "R2" (at 86.36 129.54 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "4.7k" (at 86.36 134.62 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 86.36 133.858 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C99782" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "YAGEO" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "RC0603FR-074K7L" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 86.36 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2fe27781-cd52-4f18-893f-542f94672b0b") ) (pin "2" (uuid "0fe95778-2517-439f-8fd0-882da8d7358f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R2") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 99.06 140.97 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "7c99b2af-4aad-430d-9971-0a9de632cddd") (property "Reference" "#PWR013" (at 102.87 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 88.9 140.97 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 99.06 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 99.06 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9b123b41-c04b-45ca-8f6a-eaf749d7458b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR013") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 49.53 41.91 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "86718c7d-2943-402b-9e45-e521335cadab") (property "Reference" "J16" (at 46.99 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor1" (at 45.72 46.99 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C20079" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "XH-2A" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "C33132 (Right-Angle)" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2211dc9b-c955-4613-93c5-41b96fa1230a") ) (pin "2" (uuid "4cb7a894-bb4e-4af1-ac70-43aa5cd340b6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J16") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_2_Open") (at 99.06 132.08 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8b27d78f-77f3-4e7f-be27-7ca7183cde2c") (property "Reference" "JP12" (at 99.06 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1-Wire PullUp Enable" (at 99.06 128.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "XFCN" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PZ254V-11-02P" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C492401" (at 99.06 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d4efeb11-c9f8-44c1-a4cc-b8db7791d651") ) (pin "2" (uuid "1085d983-242a-45ab-a779-f8cab4fd929e") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "JP12") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 233.68 137.16 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "92cefb02-a7b5-4ee4-b8f8-ed72e07a4c29") (property "Reference" "D8" (at 236.22 135.8899 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "30V TVS" (at 236.22 138.4299 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7473181" (at 233.68 137.16 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "MSKSEMI" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PESD0603MS30-MS" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 233.68 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ff59d6ac-3420-497a-b688-f023c970776d") ) (pin "2" (uuid "27621e4c-8250-40ba-aa26-572ce6f5ff42") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D8") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 151.13 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "96a18ea7-3d15-46f8-bc11-da38dba4984f") (property "Reference" "J5" (at 153.67 137.1599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1-Wire" (at 153.67 139.6999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C68305" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "BOOMELE(Boom Precision Elec)" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "2.54-3P" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "C5188443" (at 151.13 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1a1c8644-f940-4704-80c2-bd4c9ebaf63b") ) (pin "2" (uuid "4dece2a4-8c96-4c0a-86d4-2ea5c7c0a4e4") ) (pin "3" (uuid "b8d8cc6a-c92f-4ff4-b3e7-30d611c3703a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J5") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 148.59 97.79 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b7bc6b02-4815-4959-b689-29dc65d07154") (property "Reference" "J19" (at 151.13 96.5199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Serial Console (TTL)" (at 151.13 99.0599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "XFCN" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "PZ254V-11-03P" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "THT" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2937625" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a56f176d-af72-4cc2-b325-9fc21ad5b38b") ) (pin "2" (uuid "54b36f68-1d5e-46f7-96f3-6996981fefd5") ) (pin "3" (uuid "8f11dd03-dd90-4689-aca7-cfad251943ed") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J19") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 233.68 146.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "bf105b52-6885-4672-83ec-63faee080d74") (property "Reference" "#PWR20" (at 233.68 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 233.68 151.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 233.68 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 233.68 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 233.68 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "684a21b5-9811-4e1d-a4cf-2f70f27d71b8") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR20") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 104.14 163.83 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ca2a012a-60f2-4f1c-b957-9a7b568e167e") (property "Reference" "D14" (at 106.68 162.5599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 106.68 165.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 104.14 163.83 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 104.14 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "88ec7d6e-3832-413e-9527-7f28ef0fd1d6") ) (pin "2" (uuid "32c481cf-b16d-4988-b7d1-4f7be1ea914a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D14") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 119.38 129.54 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f1bbb4cf-cac1-498d-9bb6-9485f1c1e67c") (property "Reference" "D7" (at 121.92 128.2699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 121.92 130.8099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 119.38 129.54 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer" "Brightking" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Manufacturer Part Number" "UDD32C03L01" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Type" "SMD" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Notes" "" (at 119.38 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7fc42085-437e-40e9-8b11-91e9a13bb5ad") ) (pin "2" (uuid "c3df9e76-e854-4746-85ba-48d26e4f00b2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D7") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0401D/README.md ================================================ # FANPICO-0401D PCB PCB Size: 82.5mm x 81.5mm ![PCB Render](board.png) ## Change Log v1.1 - Add built-in pull-up for 1-Wire bus (selectable with jumper J12) - Improved ESD protection - Change MBFAN1 tachometer input to have pull-down (instead of pull-up) - Other minor updates v1.0 - First Prototye - Based on 0804D v1.2c - Combination footprint for AUX power connector (4-Pin Floppy and DC Barrel connector) - New connectors: QWIIC, 1-Wire - Errata: - R8 resistor had incorrect value, use 0 ohm (instead of originally specified 1k ohm). ================================================ FILE: boards/fanpico-0401D/bom.csv ================================================ "Reference","Value","Datasheet","Footprint","Qty","DNP","Mouser Part Number","LCSC Part Number","Manufacturer","Manufacturer Part Number","Type","Notes" "C1,C4,C6,C11,C22,C24,C26,C29,C32","0.1uF","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","9","","","C1591","Samsung Electro-Mechanics","CL10B104KB8NNNC","SMD","" "C5","10uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder","1","","","C7194","Kyocera AVX","TAJB106K025RNJ","SMD","" "C7,C8,C30","10uF 16V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","3","","80--T491A106K016","C7171","Kyocera AVX","TAJA106K016RNJ","SMD","" "C10,C21,C23,C25","1nF","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","4","","","C1588","Samsung Electro-Mechanics","CL10B102KB8NNNC","SMD","" "D1","SM5819PL 1A 40V","~","Diode_SMD:D_SMA","1","","833-SM5819PL-TP","C669023","MCC","SM5819PL-TP","SMD","" "D2,D15,D20,D21,D22,D26","12V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","6","","","C502541 or C5199168","MDD(Microdiode Semiconductor)","GBLC12C","SMD","" "D3,D10,D25,D28,D31","ES1D 1A 200V","~","Diode_SMD:D_SMA_Handsoldering","5","","512-ES1D","C445494","MDD(Microdiode Semiconductor)","ES1D","SMD","" "D4,D5,D6,D8,D12,D32","LED 0805 (green)","~","LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder","6","","710-150080GS75000","C434432","Yongyu Photoelectric","SZYY0805G","SMD","" "D7,D13,D14,D16,D17,D18,D19,D23,D29","3.3V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","9","","","C78439","Brightking","UDD32C03L01","SMD","" "D9,D24,D27,D30","BAT54(C)","~","FanPico:D_SOT-23_ANK","4","","241-BAT54C_R1_00001","C2844172","FUXINSEMI","BAT54C","SMD","" "D11,D33,D34,D35,D36","5V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","5","","","C5180216","ElecSuper","PESD5V0S1BA-ES","SMD","" "F1","Polyfuse 2A","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","","C910843","BHFUSE","BSMD2920-200-33V","SMD","" "F2","Polyfuse 0.5A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","530-0ZCJ0050AF2E","C70072","TECHFUSE","nSMD035-16V","SMD","" "F3","Polyfuse 1.5A","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","","C70138 or C22447157","TECHFUSE","SMD150L","SMD","" "G1","qwiic_Logo","","sparkfun-qwiic:qwiic_5mm","1","","","","","","","" "H1,H2,H3,H4","MountingHole_Pad","~","MountingHole:MountingHole_3.2mm_M3_Pad_Via","4","DNP","N/A","N/A","","","","" "J1","Floppy / DC Connector","~","FanPico:TE 171826-4 Floppy 4-pin Combo","1","","","C590635 / C720558","XUNPU","DC-005-A250","THT","" "J2","I2C (OLED ALT)","~","Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical","1","DNP","","C2935975","DEALON","DM254R-11-04-85","THT","" "J3","I2C (OLED)","~","Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical","1","","","C2935975","DEALON","DM254R-11-04-85","THT","" "J4","MB Fan1 Input","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P (Red)" "J5","1-Wire","~","TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal","1","","","C68305 or C5188443","BOOMELE(Boom Precision Elec)","2.54-3P","THT","" "J6","QWIIC","~","Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal","1","","","C160404","JST","SM04B-SRSS-TB(LF)(SN)","SMD","" "J8","Fan1 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P (Black)" "J12","Fan2 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P (Black)" "J13","Fan3 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P (Black)" "J14","Fan4 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P (Black)" "J16","Sensor1","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C158012","JST","B2B-XH-A(LF)(SN)","THT","" "J17","Sensor2","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C158012","JST","B2B-XH-A(LF)(SN)","THT","" "J18","LCD (SPI)","~","Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical","1","","","C492422","XFCN","PZ254V-12-10P","THT","" "J19","Serial Console (TTL)","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","","C2937625","XFCN","PZ254V-11-03P","THT","" "JP1","Power Selector","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","","C2937625","XFCN","PZ254V-11-03P","THT","" "JP12","1-Wire PullUp Enable","~","Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical","1","","","C492401","XFCN","PZ254V-11-02P","THT","" "Q1,Q2","2N7002K","https://www.diodes.com/assets/Datasheets/2N7002K.pdf","Package_TO_SOT_SMD:SOT-23","2","","512-2N7002K","C85047","DIODES","2N7002K-7","SMD","" "R1,R4,R11","1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","3","","","C22548","YAGEO","RC0603FR-071KL","SMD","" "R2","4.7k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C99782","YAGEO","RC0603FR-074K7L","SMD","" "R3,R48","330","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C105881","YAGEO","RC0603FR-07330RL","SMD","" "R5,R7,R13,R15,R37,R40,R43,R50,R51","10k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","9","","","C98220","YAGEO","RC0603FR-0710KL","SMD","" "R6","4.99k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C114621","YAGEO","RC0603FR-074K99L","SMD","" "R9,R10,R12,R16","49.9k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","4","","","C114624","YAGEO","RC0603FR-0749K9L","SMD","" "R14,R38,R41,R44","680","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","4","","","C115415","YAGEO","RC0603JR-07680RL","SMD","" "R49,R55","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C100044 / C21189","YAGEO","RC0603FR-070RL","SMD","" "R54","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","DNP","","C100044 / C21189","YAGEO","RC0603FR-070RL","SMD","" "SW1","SW_Push","~","FanPico:SW_PUSH_6mm_SMD_2","1","","","C221880","C&K","PTS645SM43SMTR92LFS","THT","" "U1","SN74AHCT126","(AHCT125 = C36365, AHCT126 = C155177)","Package_SO:TSSOP-14_4.4x5mm_P0.65mm","1","","","C155177","TI","SN74AHCT126PWR","SMD","" "U4","Pico W","","FanPico:RPi_Pico_PicoW_SMD_TH","1","","","","Raspberry Pi","Pico W","SMD","" "U5","SPX1117-ADJ","http://www.diodes.com/datasheets/AP1117.pdf","Package_TO_SOT_SMD:SOT-223-3_TabPin2","1","","","C67402","MaxLinear","SPX1117M3-L/TR","SMD","" "U6","LM4040DBZ-3","http://www.ti.com/lit/ds/symlink/lm4040-n.pdf","Package_TO_SOT_SMD:SOT-23","1","","","C143326","MAXIM","LM4040AIM3-3.0+T","SMD","" ================================================ FILE: boards/fanpico-0401D/kicad/extra_fan_channel.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "a3e4201d-65f6-465e-922c-6bde94345467") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 146.05 74.93) (diameter 0) (color 0 0 0 0) (uuid "4934aed7-9338-49be-aee9-d617ef7b3e51") ) (junction (at 195.58 74.93) (diameter 0) (color 0 0 0 0) (uuid "4e267e78-bddd-40b5-9867-c24899e604c9") ) (junction (at 167.64 121.92) (diameter 0) (color 0 0 0 0) (uuid "8f9aa02d-452d-42e7-8563-0d0082e11af4") ) (junction (at 179.07 132.08) (diameter 0) (color 0 0 0 0) (uuid "9f2e46e1-c478-4404-884b-69466fb68e1c") ) (junction (at 179.07 121.92) (diameter 0) (color 0 0 0 0) (uuid "ac05814b-dc09-4f9a-bc3a-2cb524195c3f") ) (junction (at 166.37 74.93) (diameter 0) (color 0 0 0 0) (uuid "bc3c0dfa-b464-40ed-b333-1addf7963fde") ) (junction (at 195.58 46.99) (diameter 0) (color 0 0 0 0) (uuid "c65cf519-771a-455b-9fae-86c31004fccc") ) (wire (pts (xy 195.58 74.93) (xy 195.58 80.01) ) (stroke (width 0) (type default) ) (uuid "05338c02-d69b-4bed-8580-e522a090bd45") ) (wire (pts (xy 195.58 60.96) (xy 195.58 63.5) ) (stroke (width 0) (type default) ) (uuid "07926de5-6438-4a83-8c20-6b36a09f0ddb") ) (polyline (pts (xy 250.19 144.78) (xy 207.01 144.78) ) (stroke (width 0) (type default) ) (uuid "0b251daa-acb2-4563-8a00-282536baae82") ) (wire (pts (xy 101.6 121.92) (xy 101.6 135.89) ) (stroke (width 0) (type default) ) (uuid "1f024d5e-560e-405c-b664-e735dd50af4a") ) (wire (pts (xy 179.07 132.08) (xy 179.07 135.89) ) (stroke (width 0) (type default) ) (uuid "239ab539-0f2d-42cb-a59d-0f7a520a8dcf") ) (wire (pts (xy 195.58 74.93) (xy 212.09 74.93) ) (stroke (width 0) (type default) ) (uuid "24bcd667-a4ad-49f2-82b8-20ee15fe191d") ) (wire (pts (xy 166.37 60.96) (xy 166.37 63.5) ) (stroke (width 0) (type default) ) (uuid "29fa2cb4-25a8-4253-84f8-795855ed8080") ) (wire (pts (xy 171.45 46.99) (xy 195.58 46.99) ) (stroke (width 0) (type default) ) (uuid "3222a7b4-5960-48c5-b386-30b570b191e1") ) (polyline (pts (xy 250.19 31.75) (xy 250.19 144.78) ) (stroke (width 0) (type default) ) (uuid "4bcd8d4b-6bb8-48f7-9029-c4c42d68bceb") ) (wire (pts (xy 167.64 129.54) (xy 167.64 132.08) ) (stroke (width 0) (type default) ) (uuid "4f0cd46e-f1ad-4a55-84d1-386ed36e8a83") ) (wire (pts (xy 166.37 71.12) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "51405f88-3b2e-4de2-9aab-1d126e774505") ) (wire (pts (xy 173.99 74.93) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "5d7c9e49-c51b-4cd3-9c74-e64da3dc723c") ) (wire (pts (xy 195.58 46.99) (xy 212.09 46.99) ) (stroke (width 0) (type default) ) (uuid "64d1f619-52db-4a09-8a28-848f170f0a20") ) (polyline (pts (xy 90.17 34.29) (xy 137.16 34.29) ) (stroke (width 0) (type default) ) (uuid "650bf3ce-8e8e-4b15-8637-54cb9b7d608d") ) (polyline (pts (xy 207.01 31.75) (xy 250.19 31.75) ) (stroke (width 0) (type default) ) (uuid "66311f16-42b4-4a80-99aa-0e16a0305b15") ) (polyline (pts (xy 137.16 90.17) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "71f1d60b-385f-4b2a-8c0f-92a6f8634db3") ) (wire (pts (xy 146.05 87.63) (xy 146.05 91.44) ) (stroke (width 0) (type default) ) (uuid "81e854b4-7131-4b2b-b926-8bd1b2e4e843") ) (wire (pts (xy 66.04 135.89) (xy 101.6 135.89) ) (stroke (width 0) (type default) ) (uuid "8d0a11f6-388a-4c76-ab1d-fdcf7b784131") ) (polyline (pts (xy 90.17 34.29) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "90f6e54f-8e86-4885-a5e0-960086fd80b7") ) (wire (pts (xy 179.07 121.92) (xy 212.09 121.92) ) (stroke (width 0) (type default) ) (uuid "92a45522-f05b-4305-8b6a-18a9db6efdd7") ) (wire (pts (xy 179.07 129.54) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "ac920f33-a13d-4674-8247-5663f541b13e") ) (wire (pts (xy 146.05 74.93) (xy 132.08 74.93) ) (stroke (width 0) (type default) ) (uuid "bb43e9ed-3325-4a9f-855c-573d9e644fdb") ) (wire (pts (xy 146.05 74.93) (xy 146.05 80.01) ) (stroke (width 0) (type default) ) (uuid "c24962ac-0aa7-4b5f-8ff3-244ea83df066") ) (wire (pts (xy 167.64 121.92) (xy 179.07 121.92) ) (stroke (width 0) (type default) ) (uuid "c7dc142e-31cd-4ff7-a1c4-185343ae8f78") ) (wire (pts (xy 166.37 74.93) (xy 146.05 74.93) ) (stroke (width 0) (type default) ) (uuid "cf212b08-31ad-4e19-903d-ca6ccfb8ccdd") ) (wire (pts (xy 195.58 46.99) (xy 195.58 53.34) ) (stroke (width 0) (type default) ) (uuid "d3fb9dda-2c53-4126-a673-2a22ced20443") ) (wire (pts (xy 101.6 121.92) (xy 167.64 121.92) ) (stroke (width 0) (type default) ) (uuid "d56419c1-2488-4102-8a1c-bdb708cc35ca") ) (polyline (pts (xy 207.01 31.75) (xy 207.01 144.78) ) (stroke (width 0) (type default) ) (uuid "d781a121-7dce-4e92-b9ad-3e37759ee30c") ) (wire (pts (xy 167.64 132.08) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "e0a1d798-f495-4ded-8f8a-2525b66ec0d5") ) (wire (pts (xy 195.58 87.63) (xy 195.58 91.44) ) (stroke (width 0) (type default) ) (uuid "ea9008d9-37c4-4f12-b430-1228301c1358") ) (wire (pts (xy 181.61 74.93) (xy 195.58 74.93) ) (stroke (width 0) (type default) ) (uuid "f804c6fc-5a85-423f-8ff9-2e1589e89c38") ) (wire (pts (xy 132.08 46.99) (xy 163.83 46.99) ) (stroke (width 0) (type default) ) (uuid "f8154772-bd77-41c1-9a1e-fcfdebcdcac4") ) (wire (pts (xy 160.02 60.96) (xy 166.37 60.96) ) (stroke (width 0) (type default) ) (uuid "fa3056d1-383c-4a6e-aa50-73d503531c9d") ) (polyline (pts (xy 137.16 34.29) (xy 137.16 90.17) ) (stroke (width 0) (type default) ) (uuid "fcf37293-f178-4396-8fee-82c7d5b494ed") ) (text "MCU Inputs/Outputs" (exclude_from_sim no) (at 104.14 38.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "53707df5-9a46-46d0-ac51-34bdb4c24446") ) (text "(Extra) Fan Channel: ${SHEETNAME}" (exclude_from_sim no) (at 17.78 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "c43db354-0f28-4995-93b5-d0b6a1ecf636") ) (text "To Fan" (exclude_from_sim no) (at 226.06 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e18bc51f-9518-468f-97da-2d26eb089a20") ) (hierarchical_label "PWR_OUT" (shape output) (at 212.09 121.92 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0651f145-e5ab-45b0-a185-34b46b65decd") ) (hierarchical_label "TACHO_READ" (shape output) (at 132.08 74.93 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "17e3805c-dc66-4948-bd12-835d03937191") ) (hierarchical_label "TACHO_IN" (shape input) (at 212.09 74.93 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "44cf5094-95f1-41a4-b2b5-634803e10da1") ) (hierarchical_label "PWM_GEN" (shape input) (at 132.08 46.99 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7f09a51b-27ac-4cfb-822c-abe1268d8c50") ) (hierarchical_label "PWM_OUT" (shape output) (at 212.09 46.99 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7f310825-1f15-4d79-9bab-026cf11500fb") ) (hierarchical_label "PWR_IN" (shape input) (at 66.04 135.89 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e2014b0f-a50a-4333-81ed-31444f0ecafa") ) (symbol (lib_id "power:GND") (at 146.05 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0aebdc55-e632-4445-9db7-ba8cc31b43b3") (property "Reference" "#PWR070" (at 146.05 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 146.05 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2aa46078-df7a-4f8d-b4e9-2440f4cf4d70") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR070") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR074") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR066") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 160.02 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2beabec1-a436-4b64-a488-7d07c9d15d77") (property "Reference" "#PWR072" (at 163.83 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 156.21 60.9599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "18527cec-a364-4293-a3ef-5550922c03aa") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR072") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR076") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR068") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 146.05 83.82 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3cd107d3-c6a7-4254-9209-0b9ac70966b7") (property "Reference" "C23" (at 149.86 82.5499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1nF" (at 149.86 85.0899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 147.0152 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1588" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "62da4944-efd6-4146-9e24-7534afda4788") ) (pin "2" (uuid "08350092-d004-4d88-ad3b-41c1eb89e443") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C23") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C25") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "C21") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 167.64 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (property "Reference" "C24" (at 171.45 124.4599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 171.45 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 168.6052 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "34911415-9e26-4f43-9972-7ec508951cea") ) (pin "2" (uuid "c1dcf2f2-8ceb-454d-abe8-36c791deef4d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C24") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C26") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "C22") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 195.58 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4e25f2ae-4b68-4e63-a15d-70880675d738") (property "Reference" "#PWR022" (at 195.58 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 195.58 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 195.58 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0e08f158-50e9-41e9-aa19-92588a1ee656") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR022") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR023") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR020") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 195.58 57.15 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6535bc33-56ae-4cc2-99e7-1448e1c62b75") (property "Reference" "D35" (at 198.12 55.8799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 198.12 58.4199 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 195.58 57.15 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 195.58 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e8702433-44c2-4946-aeb2-d43a492304ca") ) (pin "2" (uuid "d04829e4-c99e-474f-a569-53c22467dde9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D35") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D36") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D34") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 195.58 83.82 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6702d47f-0b12-4453-a9e7-aa625d400c1c") (property "Reference" "D21" (at 198.12 82.5499 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 198.12 85.0899 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 195.58 83.82 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 195.58 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c5bab814-dd32-47e0-87f6-4603631d4fd9") ) (pin "2" (uuid "04566c58-479a-4b60-8194-4ad8bd081298") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D21") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D22") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D20") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 166.37 67.31 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "713f0faf-9b32-443b-b4b5-18ccafb68231") (property "Reference" "R40" (at 168.91 66.0399 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 168.91 68.5799 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 168.148 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5155727b-4990-4c37-9beb-355f58e9803a") ) (pin "2" (uuid "e648f2dc-b928-4ff8-963a-41c0dd40a454") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R40") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R43") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "R37") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 179.07 125.73 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (property "Reference" "D28" (at 181.61 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "ES1D 1A 200V" (at 179.324 128.778 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-ES1D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3bd54a97-a49e-4cfb-ae50-ba191e3888ad") ) (pin "2" (uuid "29b4a113-5f9c-475f-a3ef-d9373376c3df") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D28") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D31") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D25") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 195.58 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b26a0ffc-7745-484b-9539-c92880c70c86") (property "Reference" "#PWR042" (at 195.58 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 195.58 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 195.58 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "774df901-1392-426e-bc85-6012ac6af56b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR042") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR043") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR037") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 177.8 74.93 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b49d0204-e5c4-45fa-965e-427ea584956f") (property "Reference" "D27" (at 177.8 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "BAT54(C)" (at 177.8 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2844172" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb1f26c8-53a2-40e5-85f5-666e138dcc60") ) (pin "2" (uuid "d5e97938-d7f8-443c-8d94-c4a4e1343555") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D27") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D30") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D24") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 179.07 135.89 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f") (property "Reference" "#PWR073" (at 179.07 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 179.07 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e1a2a4db-32f0-46a2-8e44-db366ed945ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR073") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR077") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR069") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 167.64 46.99 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (property "Reference" "R41" (at 167.64 40.64 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "680" (at 167.64 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 167.64 48.768 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C115415" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3afa5a6c-ee7d-460c-ab30-cd43c75ca778") ) (pin "2" (uuid "22a5a5e7-3266-4b58-a242-890b32c355e4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R41") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R44") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "R38") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/fan_channel.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "bbdfdd6a-c898-4a7d-9724-7451df1ad22f") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Transistor_FET:2N7002K" (pin_names hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "Q" (at 5.08 1.905 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "2N7002K" (at 5.08 0 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 5.08 -3.81 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "N-Channel MOSFET" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "2N7002K_0_1" (polyline (pts (xy 0.254 0) (xy -2.54 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.254 1.905) (xy 0.254 -1.905) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.27) (xy 0.762 -2.286) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 0.508) (xy 0.762 -0.508) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 2.286) (xy 0.762 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 2.54) (xy 2.54 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) (polyline (pts (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 1.651 0) (radius 2.794) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (circle (center 2.54 -1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) (circle (center 2.54 1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "2N7002K_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "G" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 -5.08 90) (length 2.54) (name "S" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 5.08 270) (length 2.54) (name "D" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 201.93 118.11) (diameter 0) (color 0 0 0 0) (uuid "3730cfb6-02af-4f89-9a3c-2293530857a5") ) (junction (at 176.53 118.11) (diameter 0) (color 0 0 0 0) (uuid "459498db-0aef-4cf3-924b-e9347747e08f") ) (junction (at 223.52 43.18) (diameter 0) (color 0 0 0 0) (uuid "6258b30e-8264-45e7-ba5a-ea07af77586b") ) (junction (at 190.5 71.12) (diameter 0) (color 0 0 0 0) (uuid "65ffb3f5-3eaf-48d4-be07-c8535c212b4d") ) (junction (at 81.28 43.18) (diameter 0) (color 0 0 0 0) (uuid "724cd939-a587-4be1-b752-dd9854610826") ) (junction (at 81.28 71.12) (diameter 0) (color 0 0 0 0) (uuid "7dc7f7a4-8c8d-4023-a69b-6a8aa325e313") ) (junction (at 201.93 134.62) (diameter 0) (color 0 0 0 0) (uuid "ac631a6c-32b9-4823-a4d4-8075c9619e6b") ) (junction (at 223.52 71.12) (diameter 0) (color 0 0 0 0) (uuid "b6171d31-6685-4678-9c52-5b5fe50a8578") ) (junction (at 190.5 118.11) (diameter 0) (color 0 0 0 0) (uuid "d701f429-1827-425a-8d78-365a9f792c7a") ) (junction (at 200.66 71.12) (diameter 0) (color 0 0 0 0) (uuid "df362961-367a-462b-a6bf-378f561fc33b") ) (wire (pts (xy 81.28 71.12) (xy 81.28 76.2) ) (stroke (width 0) (type default) ) (uuid "08bbb17f-6c94-4d05-a90b-13e584a2969d") ) (wire (pts (xy 68.58 132.08) (xy 157.48 132.08) ) (stroke (width 0) (type default) ) (uuid "0c3a04dc-894b-4752-a730-b94557fb9a54") ) (wire (pts (xy 171.45 43.18) (xy 198.12 43.18) ) (stroke (width 0) (type default) ) (uuid "16864f88-4d74-4617-bd86-d2c4ba3c9687") ) (wire (pts (xy 201.93 134.62) (xy 201.93 138.43) ) (stroke (width 0) (type default) ) (uuid "1f1278cf-f83a-4f57-99b1-a058386ff584") ) (wire (pts (xy 190.5 134.62) (xy 201.93 134.62) ) (stroke (width 0) (type default) ) (uuid "1f89f0dc-6d0b-4177-9518-3c440f6e8bf8") ) (wire (pts (xy 81.28 83.82) (xy 81.28 88.9) ) (stroke (width 0) (type default) ) (uuid "2009100c-f061-456e-aa87-57b9dbc8d03c") ) (wire (pts (xy 214.63 71.12) (xy 223.52 71.12) ) (stroke (width 0) (type default) ) (uuid "23d619e4-1568-4e91-acb8-7ac084cd0761") ) (wire (pts (xy 205.74 43.18) (xy 223.52 43.18) ) (stroke (width 0) (type default) ) (uuid "2b90627f-facc-4b91-adc9-58e38e08b201") ) (wire (pts (xy 201.93 118.11) (xy 256.54 118.11) ) (stroke (width 0) (type default) ) (uuid "2d271f6a-395c-40ee-bebd-e6003e2dd2e6") ) (wire (pts (xy 176.53 118.11) (xy 190.5 118.11) ) (stroke (width 0) (type default) ) (uuid "2eba858d-1165-48fb-98d0-486a1dc6ae86") ) (wire (pts (xy 223.52 43.18) (xy 223.52 48.26) ) (stroke (width 0) (type default) ) (uuid "3479e5f1-9640-425d-9240-c5342a0868c8") ) (wire (pts (xy 176.53 132.08) (xy 176.53 134.62) ) (stroke (width 0) (type default) ) (uuid "35f795a8-008a-4284-8ef9-576e5f0a678f") ) (wire (pts (xy 157.48 118.11) (xy 176.53 118.11) ) (stroke (width 0) (type default) ) (uuid "4c9f3f2e-5cb5-4062-ac2e-6e2b97ee6c9d") ) (wire (pts (xy 190.5 118.11) (xy 201.93 118.11) ) (stroke (width 0) (type default) ) (uuid "55814811-4c86-43b3-8e6e-9eba67495acb") ) (polyline (pts (xy 175.26 87.63) (xy 128.27 87.63) ) (stroke (width 0) (type default) ) (uuid "583d6084-3a53-4056-af7e-142f327c101e") ) (wire (pts (xy 223.52 55.88) (xy 223.52 59.69) ) (stroke (width 0) (type default) ) (uuid "58e76441-f1c2-4d5e-8938-26125198b754") ) (wire (pts (xy 201.93 132.08) (xy 201.93 134.62) ) (stroke (width 0) (type default) ) (uuid "59177481-4df8-4399-a306-4f09f27f63aa") ) (wire (pts (xy 200.66 57.15) (xy 200.66 59.69) ) (stroke (width 0) (type default) ) (uuid "5ba02402-b6b0-45aa-9e9d-1c5ef8f9c25a") ) (wire (pts (xy 99.06 80.01) (xy 99.06 88.9) ) (stroke (width 0) (type default) ) (uuid "5e2cfdf5-a956-48d7-bdda-8ad10d82e50a") ) (wire (pts (xy 207.01 71.12) (xy 200.66 71.12) ) (stroke (width 0) (type default) ) (uuid "624a5017-2a2c-4fcd-92aa-6629e50ae26c") ) (wire (pts (xy 120.65 80.01) (xy 132.08 80.01) ) (stroke (width 0) (type default) ) (uuid "70016e19-cf52-41c3-8e60-b56e787faf5e") ) (polyline (pts (xy 128.27 31.75) (xy 128.27 87.63) ) (stroke (width 0) (type default) ) (uuid "71c9ac60-325f-4505-998b-9dadfa9d9b72") ) (wire (pts (xy 176.53 118.11) (xy 176.53 124.46) ) (stroke (width 0) (type default) ) (uuid "7d2b1994-bf43-492c-8248-d556eac6a176") ) (wire (pts (xy 68.58 43.18) (xy 81.28 43.18) ) (stroke (width 0) (type default) ) (uuid "7eca3ef6-d4a5-4635-a340-bea7b216f388") ) (polyline (pts (xy 30.48 31.75) (xy 30.48 144.78) ) (stroke (width 0) (type default) ) (uuid "82ad3b9b-a9ca-44cd-bb6b-8b2de0a90b97") ) (polyline (pts (xy 73.66 144.78) (xy 30.48 144.78) ) (stroke (width 0) (type default) ) (uuid "833ffd29-83bc-48d7-8c1e-e736a93f7cb2") ) (wire (pts (xy 190.5 132.08) (xy 190.5 134.62) ) (stroke (width 0) (type default) ) (uuid "8c0b5605-a0ac-4440-98a5-9281f264756a") ) (wire (pts (xy 194.31 57.15) (xy 200.66 57.15) ) (stroke (width 0) (type default) ) (uuid "8ecaf9af-82b3-4c40-b4bd-656ccc8c099b") ) (wire (pts (xy 223.52 71.12) (xy 256.54 71.12) ) (stroke (width 0) (type default) ) (uuid "90947ee6-e7ea-45ed-9063-fb9b16f575a5") ) (wire (pts (xy 81.28 71.12) (xy 106.68 71.12) ) (stroke (width 0) (type default) ) (uuid "92402786-f18d-4f81-adff-5f33704b20c7") ) (wire (pts (xy 68.58 71.12) (xy 81.28 71.12) ) (stroke (width 0) (type default) ) (uuid "956885f3-d972-4e0d-b0b7-7c2e8e1e1fdf") ) (polyline (pts (xy 73.66 31.75) (xy 73.66 144.78) ) (stroke (width 0) (type default) ) (uuid "976104ea-bacc-4d01-901c-daa6f0d71dad") ) (wire (pts (xy 190.5 124.46) (xy 190.5 118.11) ) (stroke (width 0) (type default) ) (uuid "a18e9c54-3811-4cd5-ab66-faad5c547c18") ) (wire (pts (xy 81.28 43.18) (xy 81.28 49.53) ) (stroke (width 0) (type default) ) (uuid "a24ea8a0-680d-43c2-b330-a2c5995af73b") ) (polyline (pts (xy 279.4 142.875) (xy 236.22 142.875) ) (stroke (width 0) (type default) ) (uuid "a258ead0-0839-44e5-9743-0459a0cc109b") ) (wire (pts (xy 223.52 71.12) (xy 223.52 76.2) ) (stroke (width 0) (type default) ) (uuid "a9171be7-9ee7-4f34-be01-d55eb3d72f44") ) (polyline (pts (xy 236.22 29.845) (xy 236.22 142.875) ) (stroke (width 0) (type default) ) (uuid "a9ee418a-940e-4c83-971a-ec0462cf4197") ) (wire (pts (xy 201.93 118.11) (xy 201.93 124.46) ) (stroke (width 0) (type default) ) (uuid "acd5d695-809b-423a-a449-a7ed5b0fd362") ) (wire (pts (xy 81.28 57.15) (xy 81.28 59.69) ) (stroke (width 0) (type default) ) (uuid "bb77db45-26d5-4645-9520-1453597ed066") ) (wire (pts (xy 157.48 118.11) (xy 157.48 132.08) ) (stroke (width 0) (type default) ) (uuid "bc12ba0f-3fe4-45c1-9abd-b4d64be56bf5") ) (polyline (pts (xy 279.4 29.845) (xy 279.4 142.875) ) (stroke (width 0) (type default) ) (uuid "bd73483a-7997-4460-9257-e60e0edc7f77") ) (wire (pts (xy 99.06 80.01) (xy 113.03 80.01) ) (stroke (width 0) (type default) ) (uuid "bdaa4825-e120-4347-85b2-a79120e5b5ab") ) (wire (pts (xy 171.45 71.12) (xy 190.5 71.12) ) (stroke (width 0) (type default) ) (uuid "d05fac83-36d8-4309-b873-148862a436c2") ) (polyline (pts (xy 128.27 31.75) (xy 175.26 31.75) ) (stroke (width 0) (type default) ) (uuid "d38e4643-1b11-4b92-97b6-229f6b39b26f") ) (wire (pts (xy 223.52 43.18) (xy 256.54 43.18) ) (stroke (width 0) (type default) ) (uuid "d45119ae-f145-4c5d-b63f-62cf69f36d58") ) (wire (pts (xy 200.66 71.12) (xy 190.5 71.12) ) (stroke (width 0) (type default) ) (uuid "d4b9ee6d-3e14-40e7-906d-b3d5768b2ea0") ) (wire (pts (xy 106.68 71.12) (xy 106.68 83.82) ) (stroke (width 0) (type default) ) (uuid "db9f7c77-a147-431a-a834-8f8e9bd07f28") ) (wire (pts (xy 200.66 67.31) (xy 200.66 71.12) ) (stroke (width 0) (type default) ) (uuid "dbdee3cc-d984-4c56-8977-b37f612659fc") ) (wire (pts (xy 190.5 71.12) (xy 190.5 76.2) ) (stroke (width 0) (type default) ) (uuid "dd96f01b-c058-4db8-a08b-d80848a5ec37") ) (wire (pts (xy 223.52 83.82) (xy 223.52 87.63) ) (stroke (width 0) (type default) ) (uuid "e074b86d-ba3b-489d-913d-161bdf130d5d") ) (polyline (pts (xy 30.48 31.75) (xy 73.66 31.75) ) (stroke (width 0) (type default) ) (uuid "e3f278d8-f449-4316-991b-510c8f4798d0") ) (wire (pts (xy 190.5 83.82) (xy 190.5 87.63) ) (stroke (width 0) (type default) ) (uuid "eb5e7856-c617-4564-b04a-b48313e49b3e") ) (wire (pts (xy 81.28 43.18) (xy 132.08 43.18) ) (stroke (width 0) (type default) ) (uuid "ed5b9217-4386-450b-8b67-2bb02e0ad578") ) (polyline (pts (xy 175.26 31.75) (xy 175.26 87.63) ) (stroke (width 0) (type default) ) (uuid "f1927ddb-ce9a-4e06-87c7-24072c583581") ) (polyline (pts (xy 236.22 29.845) (xy 279.4 29.845) ) (stroke (width 0) (type default) ) (uuid "f5c68c37-decb-4c47-b072-77ce3acb7372") ) (wire (pts (xy 176.53 142.24) (xy 176.53 147.32) ) (stroke (width 0) (type default) ) (uuid "f8a8ea9a-4c63-4039-8c5b-50f0dba34936") ) (wire (pts (xy 106.68 93.98) (xy 106.68 97.79) ) (stroke (width 0) (type default) ) (uuid "fce0ae07-9f00-4615-8747-dc563d6c9dbf") ) (text "MCU Inputs/Outputs" (exclude_from_sim no) (at 142.24 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "470e5e99-b00d-4a9f-b92b-6e3da1556615") ) (text "To Motherboard Fan connector" (exclude_from_sim no) (at 36.83 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5dcb9b55-2fc8-428e-994d-d22aed72cae7") ) (text "Fan Channel: ${SHEETNAME}" (exclude_from_sim no) (at 20.32 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "6cd836a6-fb76-413b-b3b7-901783f4e949") ) (text "To Fan" (exclude_from_sim no) (at 255.27 33.655 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea10d4a3-4e75-4c2d-a099-0d84368a6293") ) (hierarchical_label "TACHO_GEN" (shape input) (at 132.08 80.01 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "062f3b02-c59a-4d8e-8807-5ac15aead0c2") ) (hierarchical_label "PWR_OUT" (shape output) (at 256.54 118.11 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "083154c7-a8c7-4d3e-a8f6-355b60c22ce4") ) (hierarchical_label "TACHO_OUT" (shape output) (at 68.58 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0fbd8a06-85c9-4ad4-8517-a2809baef0ce") ) (hierarchical_label "PWM_READ" (shape output) (at 132.08 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "4e33f23a-ae57-406f-a628-0cc4c2bb491c") ) (hierarchical_label "PWM_OUT" (shape output) (at 256.54 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "5217a36d-d917-4ca7-9824-071920a9d494") ) (hierarchical_label "TACHO_IN" (shape input) (at 256.54 71.12 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "53c0c07d-4ddc-4995-82a7-9e821140ff87") ) (hierarchical_label "PWR_IN" (shape input) (at 68.58 132.08 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "68c5b44b-7328-48fe-ad7b-4d7fa00deefa") ) (hierarchical_label "TACHO_READ" (shape output) (at 171.45 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c7f937ee-d6b0-4d6b-8268-5f1a55f0c45f") ) (hierarchical_label "PWM_IN" (shape input) (at 68.58 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e20a006a-7931-4393-b1c3-a53f69b60dce") ) (hierarchical_label "PWM_GEN" (shape input) (at 171.45 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "edf804ff-fd14-479d-ad14-393f22c9d5b5") ) (symbol (lib_id "power:GND") (at 201.93 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb") (property "Reference" "#PWR041" (at 201.93 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 201.93 143.51 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 201.93 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 201.93 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 201.93 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6dca6464-3d8e-48a1-a08d-ffc8e85bc724") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR041") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 81.28 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2887ab3f-8268-4e79-9915-d21bd0913ae1") (property "Reference" "#PWR08" (at 81.28 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 81.28 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 81.28 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 81.28 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 81.28 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "692ee331-cca0-4177-b1b9-58d8475aad1c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR08") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 176.53 128.27 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (property "Reference" "R12" (at 179.07 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 179.07 129.5399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 174.752 128.27 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 176.53 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 176.53 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 176.53 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 176.53 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 176.53 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d0f31c53-1e10-4351-8a11-c6c8cd7bd74f") ) (pin "2" (uuid "2f131aad-d61b-4019-a0f3-e7373d09ef77") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R12") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 210.82 71.12 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2cf2e306-59d7-456f-b02b-64fb5bbcc818") (property "Reference" "D9" (at 210.82 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "BAT54(C)" (at 210.82 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2844172" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 210.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "970ff045-d21d-4b60-9619-5876a460c064") ) (pin "2" (uuid "12bf308e-e88e-408c-9458-569aca3e1f17") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D9") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 81.28 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2f6f826f-61c0-439f-989d-2ac282ca920f") (property "Reference" "#PWR06" (at 81.28 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 81.28 93.98 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 81.28 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 81.28 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 81.28 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ffd3d187-46b0-4fbe-99b6-48ae069f60e3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR06") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 223.52 52.07 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3aa61efe-1bec-444c-86b6-a0f82e6204cd") (property "Reference" "D33" (at 226.06 50.7999 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 226.06 53.3399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 223.52 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 223.52 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 223.52 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 223.52 52.07 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 223.52 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 223.52 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6827b73-0ed2-41a4-b72b-9d37dd467d7b") ) (pin "2" (uuid "bfc699b5-f7cc-40a3-a9ae-9656bba4b646") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D33") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 190.5 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "497abae2-70e4-47ca-bb15-7d9dfa60d946") (property "Reference" "#PWR038" (at 190.5 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 190.5 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c9f2bef0-650c-4d5d-9bf3-e9e94c49fa90") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR038") (unit 1) ) ) ) ) (symbol (lib_id "Transistor_FET:2N7002K") (at 104.14 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "537d375b-1ca6-4946-95db-66496543d0cb") (property "Reference" "Q1" (at 110.49 87.6299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "2N7002K" (at 110.49 90.1699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 109.22 90.805 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/2N7002K.pdf" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C85047" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-2N7002K" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5b316ca8-b56c-425b-93ad-f70f7598b8da") ) (pin "2" (uuid "73372508-1224-408d-bef1-763ba03b4eb1") ) (pin "3" (uuid "5ffbf02b-636b-4e66-bd03-269e3212d061") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "Q1") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 223.52 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "74237a7c-a16c-415c-b729-0b9df8cc8ac4") (property "Reference" "D15" (at 226.06 78.7399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 226.06 81.2799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 223.52 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 223.52 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 223.52 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 223.52 80.01 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 223.52 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 223.52 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3f451bdc-7f7f-41f7-991e-b9219209314f") ) (pin "2" (uuid "ecb161b2-5af7-45db-8870-09b54281ac43") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D15") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 190.5 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "75bd3244-7746-40bf-b41a-5ea9cec31d77") (property "Reference" "C10" (at 194.31 78.7399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1nF" (at 194.31 81.2799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 191.4652 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1588" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "451f34f6-1a38-45c2-b103-42e9fe05874d") ) (pin "2" (uuid "6ba30de3-57ca-4109-977c-c84b4db2a60b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "C10") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 223.52 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "808ff747-07ce-4588-b60c-6a291e615f2a") (property "Reference" "#PWR036" (at 223.52 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 223.52 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 223.52 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 223.52 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 223.52 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "42dd6829-da30-4e9d-b6c9-1bd3d9dca16f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR036") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 194.31 57.15 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "82946f89-b747-42ca-bf80-b90314ffa967") (property "Reference" "#PWR040" (at 198.12 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 190.5 57.1499 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2373795d-998a-45a9-b72d-e69f0d7bf039") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR040") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 176.53 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab") (property "Reference" "#PWR039" (at 176.53 153.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 176.53 152.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 176.53 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 176.53 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 176.53 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a3149451-a998-4a9d-8ec2-5b6e2ff9150b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR039") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 116.84 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "983de26c-e36c-4d87-9a48-1bbe3c867ff3") (property "Reference" "R11" (at 116.84 82.55 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 116.84 85.09 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 116.84 81.788 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a73009a2-342a-4f8d-8ef4-4aa35f7962be") ) (pin "2" (uuid "5e29a663-d0f3-49ca-a87b-09d1aca9bdc4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R11") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 176.53 138.43 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "99383412-e91e-4682-9562-162d7ddf01c0") (property "Reference" "D8" (at 171.45 138.43 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 157.48 142.24 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 176.53 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e980367b-5fce-4964-b2f7-088ac8ddc29d") ) (pin "2" (uuid "6842c7ce-8628-4a3b-8ed6-f098d97dcd1a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D8") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 106.68 97.79 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a4b3f899-3773-489e-a176-285651826a27") (property "Reference" "#PWR034" (at 106.68 104.14 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 106.68 102.87 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "25545d95-113d-4e03-870d-41e225c288e2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR034") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 200.66 63.5 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ab1976a0-4513-4f4e-8e36-2d488d6ca030") (property "Reference" "R13" (at 203.2 62.2299 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 203.2 64.7699 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 202.438 63.5 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "26a2851d-5dbb-4be5-9a93-dbc06f395b46") ) (pin "2" (uuid "9291af84-86bd-4272-93af-66e75c116629") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R13") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 201.93 128.27 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aef1c41f-3561-4727-acbe-d50cf3c63f5d") (property "Reference" "D10" (at 204.47 126.9999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "ES1D 1A 200V" (at 204.47 129.5399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-ES1D" (at 201.93 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d9fd62a4-862a-4e90-8cd2-59de2ddb5b08") ) (pin "2" (uuid "ef3c528c-c9cd-4fd2-81cf-a766c0cb888c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D10") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 190.5 128.27 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b0f52885-ea56-4d9c-874e-233e54e8d5a1") (property "Reference" "C11" (at 194.31 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 194.31 129.5399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 191.4652 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 190.5 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 190.5 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 190.5 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 190.5 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 190.5 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "02af3e73-e68b-4f22-9b8a-43c9d4721bec") ) (pin "2" (uuid "23b0a919-949c-4ad6-93e3-f299529be081") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "C11") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 81.28 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "bdc419e0-9c06-4d99-8061-21132e7c47c6") (property "Reference" "D2" (at 83.82 78.7399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 83.82 81.2799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 81.28 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 81.28 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 81.28 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 81.28 80.01 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 81.28 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 81.28 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c395bcad-3d7f-4812-9d0b-a3fbeefe786c") ) (pin "2" (uuid "58e80f68-f7eb-459f-a4a2-96f4cd87c3d7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D2") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 223.52 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d44e6dd8-cef7-43c2-8e62-1154f513ee26") (property "Reference" "#PWR018" (at 223.52 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 223.52 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 223.52 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 223.52 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 223.52 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d0b0f10f-3b15-4e76-ad78-f4cbfaa83fb7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR018") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 201.93 43.18 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e6e8ae2a-5894-4e68-8264-24e364417d34") (property "Reference" "R14" (at 201.93 36.83 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "680" (at 201.93 39.37 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 201.93 44.958 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C115415" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "25282ca1-b24f-483c-9fff-2c5ca29d68f0") ) (pin "2" (uuid "4d53013c-0afe-4027-8d38-e16456d56bc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R14") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 81.28 53.34 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ecd079d6-8a8d-4488-bfee-34b5a0fc4d9b") (property "Reference" "D11" (at 83.82 52.0699 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 83.82 54.6099 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 81.28 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 81.28 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 81.28 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 81.28 53.34 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 81.28 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 81.28 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27ecdade-b65b-48ee-97d4-1ac76af58a6b") ) (pin "2" (uuid "8c9b489c-395b-4690-a3c5-2e2187c657ff") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D11") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/fan_channels.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "21c2a7bb-e53e-404f-aa6f-d468a4437c78") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 50.8 83.82) (diameter 0) (color 0 0 0 0) (uuid "4b61f4a3-2ac1-404f-b850-665bfc3052f8") ) (wire (pts (xy 228.6 95.25) (xy 241.3 95.25) ) (stroke (width 0) (type default) ) (uuid "00bcd8b0-8b79-4470-9fae-9418c696e9b1") ) (wire (pts (xy 228.6 132.08) (xy 241.3 132.08) ) (stroke (width 0) (type default) ) (uuid "0132f4e7-fd28-433b-bb32-9f82f9dfe657") ) (wire (pts (xy 228.6 54.61) (xy 247.65 54.61) ) (stroke (width 0) (type default) ) (uuid "07eae5cc-7c44-4f25-ac0d-9719670ba862") ) (wire (pts (xy 228.6 50.8) (xy 238.76 50.8) ) (stroke (width 0) (type default) ) (uuid "1212c748-a2ce-4531-bd0b-28df23189f1a") ) (wire (pts (xy 241.3 132.08) (xy 241.3 125.73) ) (stroke (width 0) (type default) ) (uuid "13f3e094-8561-4a83-9e47-ddbb60946697") ) (wire (pts (xy 118.11 50.8) (xy 124.46 50.8) ) (stroke (width 0) (type default) ) (uuid "181de405-becb-42a2-96d2-55a8dd70da74") ) (wire (pts (xy 228.6 124.46) (xy 238.76 124.46) ) (stroke (width 0) (type default) ) (uuid "1cbeafd1-3c28-46e1-b594-64fee3bd8654") ) (wire (pts (xy 62.23 83.82) (xy 50.8 83.82) ) (stroke (width 0) (type default) ) (uuid "1db2350b-bd60-412c-a6ae-d81832c4d71e") ) (wire (pts (xy 238.76 93.98) (xy 247.65 93.98) ) (stroke (width 0) (type default) ) (uuid "21a592e4-7607-493b-9f82-0d6ca73ff7a2") ) (wire (pts (xy 243.84 96.52) (xy 243.84 86.36) ) (stroke (width 0) (type default) ) (uuid "3054643b-cc74-445f-9f58-89c37bb9865e") ) (wire (pts (xy 78.74 41.91) (xy 78.74 43.18) ) (stroke (width 0) (type default) ) (uuid "311deb31-bd7b-4131-8a83-76ec9914975a") ) (wire (pts (xy 50.8 55.88) (xy 36.83 55.88) ) (stroke (width 0) (type default) ) (uuid "32eb2f7a-bda7-48ae-ae88-12042e982fec") ) (wire (pts (xy 62.23 83.82) (xy 62.23 114.3) ) (stroke (width 0) (type default) ) (uuid "457d4923-5831-419b-a4ca-3e5e85847537") ) (wire (pts (xy 88.9 41.91) (xy 88.9 43.18) ) (stroke (width 0) (type default) ) (uuid "47cc99de-cb5c-4269-ba62-7cb2028f8fec") ) (wire (pts (xy 238.76 57.15) (xy 247.65 57.15) ) (stroke (width 0) (type default) ) (uuid "492716ee-f90f-4529-ab14-957c7f6159ed") ) (wire (pts (xy 238.76 124.46) (xy 238.76 130.81) ) (stroke (width 0) (type default) ) (uuid "4cb3934b-5b6d-4bbe-b2d2-1982e1fb63d1") ) (wire (pts (xy 57.15 63.5) (xy 57.15 58.42) ) (stroke (width 0) (type default) ) (uuid "4e302f5b-0c5c-4728-9468-10b9870dbffe") ) (wire (pts (xy 62.23 121.92) (xy 62.23 125.73) ) (stroke (width 0) (type default) ) (uuid "506f72d8-3539-4a53-b44b-93814a5767a9") ) (wire (pts (xy 214.63 109.22) (xy 209.55 109.22) ) (stroke (width 0) (type default) ) (uuid "50e1ed27-1c84-4767-8b11-82b957497406") ) (wire (pts (xy 238.76 87.63) (xy 238.76 93.98) ) (stroke (width 0) (type default) ) (uuid "52271ddf-65dd-4e7c-9cb1-2aa361c3bc53") ) (wire (pts (xy 214.63 109.22) (xy 214.63 120.65) ) (stroke (width 0) (type default) ) (uuid "5315c3cb-84b7-4249-8b12-328cc52c0fef") ) (wire (pts (xy 228.6 58.42) (xy 241.3 58.42) ) (stroke (width 0) (type default) ) (uuid "53ecca3d-7839-42a3-af7a-e0d1ecbb7ee6") ) (wire (pts (xy 228.6 87.63) (xy 238.76 87.63) ) (stroke (width 0) (type default) ) (uuid "58cde8d9-0ad1-44ef-9890-5578f39b2130") ) (wire (pts (xy 210.82 40.64) (xy 210.82 46.99) ) (stroke (width 0) (type default) ) (uuid "5c6c7dd6-3b16-4078-9829-924c131b0b18") ) (wire (pts (xy 115.57 48.26) (xy 115.57 55.88) ) (stroke (width 0) (type default) ) (uuid "5ccf2f05-bb21-418d-8bdb-21f42cb1e521") ) (wire (pts (xy 241.3 125.73) (xy 247.65 125.73) ) (stroke (width 0) (type default) ) (uuid "60659308-433c-494e-991c-835bcd7e7c39") ) (wire (pts (xy 238.76 130.81) (xy 247.65 130.81) ) (stroke (width 0) (type default) ) (uuid "63d04e82-80ff-453c-a4bc-cc90dbde29f3") ) (wire (pts (xy 243.84 123.19) (xy 247.65 123.19) ) (stroke (width 0) (type default) ) (uuid "66987d47-b8b4-47c2-8a35-18def9c545eb") ) (wire (pts (xy 228.6 128.27) (xy 247.65 128.27) ) (stroke (width 0) (type default) ) (uuid "680fe3a9-fb24-47d8-9f42-3417dfb35233") ) (wire (pts (xy 210.82 40.64) (xy 209.55 40.64) ) (stroke (width 0) (type default) ) (uuid "6a6167b1-a9b3-41c1-a677-a9a1f11dfa82") ) (wire (pts (xy 105.41 58.42) (xy 118.11 58.42) ) (stroke (width 0) (type default) ) (uuid "74229260-f547-476f-b93a-1788251596e2") ) (wire (pts (xy 214.63 35.56) (xy 209.55 35.56) ) (stroke (width 0) (type default) ) (uuid "83f6b0a8-feb8-41b3-bd39-8a4f597d5e47") ) (wire (pts (xy 36.83 50.8) (xy 60.96 50.8) ) (stroke (width 0) (type default) ) (uuid "899f7b50-d008-4317-9eaa-5dd10caa404d") ) (wire (pts (xy 105.41 48.26) (xy 115.57 48.26) ) (stroke (width 0) (type default) ) (uuid "8a55a662-598e-44e4-b2bd-93367bd36620") ) (wire (pts (xy 243.84 86.36) (xy 247.65 86.36) ) (stroke (width 0) (type default) ) (uuid "8f1e8604-5e81-471a-9eac-8ef396a859db") ) (wire (pts (xy 124.46 48.26) (xy 120.65 48.26) ) (stroke (width 0) (type default) ) (uuid "92efebda-3760-4168-98c8-4a7fb7d1f508") ) (wire (pts (xy 214.63 72.39) (xy 214.63 83.82) ) (stroke (width 0) (type default) ) (uuid "9382627e-3cf0-4d33-98c9-233a96a9fd5e") ) (wire (pts (xy 60.96 48.26) (xy 64.77 48.26) ) (stroke (width 0) (type default) ) (uuid "93f87f0d-a8a4-44f0-b00c-99008532ad52") ) (wire (pts (xy 115.57 55.88) (xy 124.46 55.88) ) (stroke (width 0) (type default) ) (uuid "9ed41c59-f1cd-489b-afc6-57c55ef81efd") ) (wire (pts (xy 194.31 58.42) (xy 196.85 58.42) ) (stroke (width 0) (type default) ) (uuid "a03526ca-4a69-44fe-b037-d7d124b7d417") ) (wire (pts (xy 214.63 72.39) (xy 209.55 72.39) ) (stroke (width 0) (type default) ) (uuid "a304b53c-89a8-44e6-8dec-80d9dcbba3a0") ) (wire (pts (xy 241.3 88.9) (xy 247.65 88.9) ) (stroke (width 0) (type default) ) (uuid "a9c190c1-86a4-4992-afc8-a74431cccd21") ) (wire (pts (xy 194.31 132.08) (xy 196.85 132.08) ) (stroke (width 0) (type default) ) (uuid "afbf65be-8669-458b-aaff-6186389819f6") ) (wire (pts (xy 50.8 55.88) (xy 50.8 83.82) ) (stroke (width 0) (type default) ) (uuid "b030afa6-4a2e-4659-a1f8-e45110f429d0") ) (wire (pts (xy 105.41 53.34) (xy 124.46 53.34) ) (stroke (width 0) (type default) ) (uuid "b5e2016a-f0bd-4b20-aba2-754426598f0b") ) (wire (pts (xy 40.64 62.23) (xy 40.64 58.42) ) (stroke (width 0) (type default) ) (uuid "b73a4998-39ef-46ac-90ad-a495c147a090") ) (wire (pts (xy 243.84 59.69) (xy 243.84 49.53) ) (stroke (width 0) (type default) ) (uuid "bb2f27f4-18c0-4030-b6e0-ca4f162344fd") ) (wire (pts (xy 50.8 101.6) (xy 50.8 151.13) ) (stroke (width 0) (type default) ) (uuid "c4d423c7-77c6-481b-97b2-bf618799bc62") ) (wire (pts (xy 228.6 91.44) (xy 247.65 91.44) ) (stroke (width 0) (type default) ) (uuid "ca39a9a0-dbc9-4c89-bca0-abb108e869ab") ) (wire (pts (xy 118.11 58.42) (xy 118.11 50.8) ) (stroke (width 0) (type default) ) (uuid "caaa2404-ba6b-43bd-94d6-471cdcc34a7b") ) (wire (pts (xy 210.82 114.3) (xy 210.82 120.65) ) (stroke (width 0) (type default) ) (uuid "cc63e37e-3cbd-4b55-84be-dc2da2264b46") ) (wire (pts (xy 57.15 58.42) (xy 64.77 58.42) ) (stroke (width 0) (type default) ) (uuid "ce07d2f0-cec7-4ce9-b5c7-7ee0c3e5499a") ) (wire (pts (xy 40.64 58.42) (xy 36.83 58.42) ) (stroke (width 0) (type default) ) (uuid "ce523f2f-75ae-44a0-bc64-a6db0fb0d741") ) (wire (pts (xy 243.84 49.53) (xy 247.65 49.53) ) (stroke (width 0) (type default) ) (uuid "d382f5c7-7db3-4443-b14e-106921947fa3") ) (wire (pts (xy 243.84 133.35) (xy 243.84 123.19) ) (stroke (width 0) (type default) ) (uuid "d6c65298-ad4e-46ea-bd24-3cc284b70958") ) (wire (pts (xy 210.82 77.47) (xy 209.55 77.47) ) (stroke (width 0) (type default) ) (uuid "d8f3468c-042a-431a-9078-9cef94a41cf8") ) (wire (pts (xy 238.76 50.8) (xy 238.76 57.15) ) (stroke (width 0) (type default) ) (uuid "ddbcf225-79a3-4b8b-84c2-447908ab6158") ) (wire (pts (xy 194.31 95.25) (xy 196.85 95.25) ) (stroke (width 0) (type default) ) (uuid "de6c98ea-aca3-4c10-a032-8370dafc995e") ) (wire (pts (xy 241.3 95.25) (xy 241.3 88.9) ) (stroke (width 0) (type default) ) (uuid "e2507488-307b-4de4-b1cf-dfb101572885") ) (wire (pts (xy 210.82 77.47) (xy 210.82 83.82) ) (stroke (width 0) (type default) ) (uuid "e5f3fba9-c47a-45b8-9de6-857957e45973") ) (wire (pts (xy 62.23 133.35) (xy 62.23 140.97) ) (stroke (width 0) (type default) ) (uuid "e7be62c7-ef9a-4a0f-9def-37afb88b3b6d") ) (wire (pts (xy 36.83 53.34) (xy 64.77 53.34) ) (stroke (width 0) (type default) ) (uuid "ea38d1dc-23bd-4289-b7bc-e36c954316f0") ) (wire (pts (xy 60.96 50.8) (xy 60.96 48.26) ) (stroke (width 0) (type default) ) (uuid "ea7e799f-efac-4f29-a1b8-13d444acb4c4") ) (wire (pts (xy 241.3 52.07) (xy 247.65 52.07) ) (stroke (width 0) (type default) ) (uuid "ead990a0-eb9a-424d-b7e7-f9d04adb7d92") ) (wire (pts (xy 82.55 41.91) (xy 82.55 43.18) ) (stroke (width 0) (type default) ) (uuid "ebc70d01-95ef-40b5-b245-ff6d3c5fd9da") ) (wire (pts (xy 92.71 41.91) (xy 92.71 43.18) ) (stroke (width 0) (type default) ) (uuid "ec27cae5-b1ca-4220-98d6-fef611e53fe5") ) (wire (pts (xy 210.82 114.3) (xy 209.55 114.3) ) (stroke (width 0) (type default) ) (uuid "eea02f8c-c157-4213-8050-6320da82d3a9") ) (wire (pts (xy 214.63 35.56) (xy 214.63 46.99) ) (stroke (width 0) (type default) ) (uuid "f9a34de8-9610-402c-b014-713bf31555aa") ) (wire (pts (xy 120.65 48.26) (xy 120.65 59.69) ) (stroke (width 0) (type default) ) (uuid "f9c54f80-f376-4ec3-ad93-ddc6f9876b8e") ) (wire (pts (xy 241.3 58.42) (xy 241.3 52.07) ) (stroke (width 0) (type default) ) (uuid "fa4c54c4-e1f5-448c-ba7c-9c1c54af9562") ) (wire (pts (xy 50.8 83.82) (xy 50.8 93.98) ) (stroke (width 0) (type default) ) (uuid "fede733a-d34d-4080-a2e4-3a437004222d") ) (text "Fan Channels" (exclude_from_sim no) (at 18.796 20.066 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "4a8a343e-0bd9-4ace-9df8-a918ed5fa45d") ) (label "FAN1_PWR_IN" (at 50.8 81.28 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ca1c0731-72fe-4a45-82fc-2ccc067c2691") ) (global_label "FAN1_PWM_GEN" (shape input) (at 92.71 41.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0261b9f7-ad9a-468e-be05-539ed2837d52") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.6306 24.9221 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 194.31 132.08 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1452443b-8fad-4d22-9155-7658866f1b12") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.8905 132.08 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape output) (at 88.9 41.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "321bb370-cf49-4c08-b806-04189d6d64d1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 88.8206 22.0798 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_TACHO_READ" (shape output) (at 209.55 114.3 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4aa1a01c-cbdf-42d3-afba-8167c577daaf") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 189.7198 114.3794 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape output) (at 209.55 40.64 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4b59b818-7be7-470b-ac10-74c1181f131b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 189.1476 40.64 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_PWR" (shape output) (at 50.8 151.13 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5414b29a-25de-41ef-9cd2-5826ecbbf149") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 50.7206 163.2193 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN4_PWM_GEN" (shape output) (at 209.55 109.22 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5793e4e9-7aa5-470c-a622-e845954092f1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 192.5621 109.2994 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN3_PWM_GEN" (shape output) (at 209.55 72.39 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5872c166-5581-44f5-a134-2ee42c3def37") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 192.5621 72.4694 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN3_TACHO_READ" (shape output) (at 209.55 77.47 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bbb9975-39da-4616-a4ec-cf4f8f4c6d2f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 189.7198 77.5494 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN1_PWM_READ" (shape output) (at 78.74 41.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "81e3ce7a-88e3-428b-a5f1-66e0ca0fc2da") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.6606 21.1726 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 194.31 95.25 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "999f5199-3f37-4f5d-abc7-42c46678765b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.8905 95.25 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN1_TACHO_GEN" (shape input) (at 82.55 41.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "bb417672-4c0d-4e3e-8627-fc5c4624e0ff") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.4706 20.3864 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 209.55 35.56 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c69fdb42-3d00-4649-a799-9ac01288b9a1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 192.5621 35.6394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 57.15 63.5 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d267bd75-6c87-4187-ba53-d11cd2342753") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 57.15 75.9195 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MAIN_PWR" (shape input) (at 194.31 58.42 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e95737bc-698e-450e-9d7d-a5fc5761d700") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.8905 58.42 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 129.54 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "085195bd-ef5f-4321-aa3d-5891d4b1a1f2") (property "Reference" "J8" (at 129.54 41.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan1 Output" (at 129.54 44.45 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 129.54 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7e31fd28-894b-49ee-9058-86c2a317b7c7") ) (pin "2" (uuid "7ff71668-23ce-4739-8200-896bc2e619fb") ) (pin "3" (uuid "26e37a9c-93f1-474f-8620-4f6f773501e5") ) (pin "4" (uuid "d5afb010-83a0-47c1-bed9-942a58043ce9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J8") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 252.73 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "094bbf69-e345-406c-a80f-9e08f85706fd") (property "Reference" "J13" (at 252.73 80.01 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan3 Output" (at 252.73 82.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 252.73 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "85dd6ce4-16c1-431a-9b36-297bf5f965d0") ) (pin "2" (uuid "9f0ed9a6-fec4-431e-9eb9-12ce63446809") ) (pin "3" (uuid "c4bfbc89-6800-4798-8ac7-47e94a6126a9") ) (pin "4" (uuid "336c0835-35df-4312-8013-633aac76c9b9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J13") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 62.23 129.54 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "10b9d57a-d30a-48a5-9949-f7161d62ce91") (property "Reference" "D12" (at 66.04 129.8574 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 66.04 132.3974 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 62.23 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "caedfb78-18b6-44fe-bc84-710e0a372d60") ) (pin "2" (uuid "92dae5d0-d5b1-4c10-9b6d-3c7b61c60cb4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "D12") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 252.73 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (property "Reference" "J14" (at 252.73 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan4 Output" (at 252.73 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 252.73 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "45e1981c-20aa-4236-9307-b7a47f504563") ) (pin "2" (uuid "cd2dbccd-c8ff-4362-a3ef-40ddf635fac9") ) (pin "3" (uuid "770e80d2-d2c8-4d17-8be1-34a26e2fb8b9") ) (pin "4" (uuid "f27c4151-f52f-4c90-89ae-5fbd8ae50b10") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J14") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 252.73 52.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "40b85d9e-00ff-491f-88e1-a7f34acc29cf") (property "Reference" "J12" (at 252.73 43.18 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan2 Output" (at 252.73 45.72 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 252.73 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9b1b3c52-549b-4cc6-9ccd-b91131f487ea") ) (pin "2" (uuid "9c8920a5-cc80-4f77-9e6a-6ada99c4ad65") ) (pin "3" (uuid "09b17076-5f69-412b-bb35-5ab549ccfa2a") ) (pin "4" (uuid "60acc878-e7b0-4257-9d3d-b1668fd9a664") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J12") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 40.64 62.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "63c85907-552d-427b-b6dc-44bd6402f24b") (property "Reference" "#PWR017" (at 40.64 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 40.64 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 40.64 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 40.64 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 40.64 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "82763472-ddb4-4883-8595-c157d9972a97") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR017") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 243.84 133.35 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7ad3c56a-fe9a-4831-b136-d7236a73b27f") (property "Reference" "#PWR027" (at 243.84 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 243.84 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 243.84 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 243.84 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3c6c7d1d-a2bb-4336-815e-3e447cdde78f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR027") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 243.84 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9370a547-cff7-4cf5-b1b1-9154c18cd2f1") (property "Reference" "#PWR026" (at 243.84 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 243.84 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 243.84 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 243.84 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 243.84 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7fcb9167-b44b-4a83-99dc-ee6b2eb6958b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR026") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 50.8 97.79 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9c0d36ad-9c61-40fa-beed-0b24d4379551") (property "Reference" "F3" (at 46.99 97.79 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 1.5A" (at 54.61 97.79 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 49.53 92.71 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 50.8 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 50.8 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C70138 or C22447157" (at 50.8 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 50.8 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 50.8 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "fb500a67-c5d0-451f-b4ce-249bb91af7a9") ) (pin "2" (uuid "f6c25cf4-3d63-481c-983e-90f1c85a8509") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "F3") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 31.75 55.88 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a43df6e2-bedb-4718-8d23-6b27bc7ec28b") (property "Reference" "J4" (at 31.75 44.45 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MB Fan1 Input" (at 31.75 46.99 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 31.75 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9df76adb-ac87-490d-a268-3e0deaaeded5") ) (pin "2" (uuid "9eb6d1b7-f6dc-4625-a89e-5af9ee3fe04c") ) (pin "3" (uuid "6c84c3f5-f3aa-40fc-a090-18dd9176f84f") ) (pin "4" (uuid "04a8d3d9-c9ca-4fb6-8787-3d4d49ac9184") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 120.65 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d790c3d5-6cf5-4e32-8ce5-0b9652f4a2d8") (property "Reference" "#PWR021" (at 120.65 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 120.65 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 120.65 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 120.65 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 120.65 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8d6fb468-25cd-4ffc-8495-0abf0af0e15e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR021") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 243.84 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "e6779268-e0bd-4b5d-83c9-6f6e8d695ccc") (property "Reference" "#PWR025" (at 243.84 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 243.84 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 243.84 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 243.84 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 243.84 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "244f1f08-d920-4e96-9307-705685b3ee35") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR025") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 62.23 118.11 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ee59b5c2-5b4f-4d46-8c91-a3f6012dcaac") (property "Reference" "R9" (at 64.77 116.8399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 64.77 119.3799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 60.452 118.11 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 62.23 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 62.23 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 62.23 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 62.23 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 62.23 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "14c4fe57-efb3-4c0c-926a-55e2e095a9d0") ) (pin "2" (uuid "a31e7c9c-c0e5-429d-a05b-9bf71c745ae3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "R9") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 62.23 140.97 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f32d2053-e9a7-43e8-a63b-d30c90c62496") (property "Reference" "#PWR09" (at 62.23 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 62.23 146.05 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 62.23 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 62.23 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 62.23 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4efb1dbf-30a9-4a68-b275-1847e67871c8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR09") (unit 1) ) ) ) ) (sheet (at 196.85 83.82) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5ae37739-065e-4580-bde3-1038e45a286b") (property "Sheetname" "Fan3" (at 196.85 83.1084 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 196.85 99.6446 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 228.6 91.44 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "53b9af5e-0d1e-4798-9730-b2f66425d0e8") ) (pin "PWM_OUT" output (at 228.6 87.63 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e9717cad-e0dc-45e2-afb0-8dcba040a896") ) (pin "PWR_OUT" output (at 228.6 95.25 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8a8c9370-87f2-4203-8b7f-4a8549fd9767") ) (pin "PWM_GEN" input (at 214.63 83.82 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "51197e01-04a3-4056-a0e6-81164ad9cc72") ) (pin "TACHO_READ" output (at 210.82 83.82 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bb11d0bc-a8c0-45a1-ac7b-23c222935227") ) (pin "PWR_IN" input (at 196.85 95.25 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "8d7ef8e7-23dc-4d68-9f71-31a41a69dddd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "5") ) ) ) ) (sheet (at 196.85 120.65) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "61057e9f-bb51-4960-97cb-0865458dfe32") (property "Sheetname" "Fan4" (at 196.85 119.9384 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 196.85 136.4746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 228.6 128.27 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "87476565-1a0d-4c16-ba90-bb7914407d9a") ) (pin "PWM_OUT" output (at 228.6 124.46 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "46f1b7fb-6428-4189-9973-637b6836e8d7") ) (pin "PWR_OUT" output (at 228.6 132.08 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9ed282dd-4c14-4f0f-bd42-1e43fd6fecbb") ) (pin "PWM_GEN" input (at 214.63 120.65 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "880b4ba4-39a0-4201-bf42-f99ce14cf754") ) (pin "TACHO_READ" output (at 210.82 120.65 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "123ba2db-1a3e-43c1-8c22-830021803414") ) (pin "PWR_IN" input (at 196.85 132.08 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "363b576f-dd0b-43f0-96c2-8f8b7a260877") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "6") ) ) ) ) (sheet (at 64.77 43.18) (size 40.64 19.05) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "cccf50bc-434f-4bd7-95d5-172f10b931f4") (property "Sheetname" "Fan1" (at 64.77 42.4684 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channel.kicad_sch" (at 64.77 62.8146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 105.41 53.34 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "70b00d24-842b-4041-8801-6a30faa0036a") ) (pin "PWM_OUT" output (at 105.41 48.26 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f2474d68-f701-47b6-9354-d7765fd17d6f") ) (pin "PWR_OUT" output (at 105.41 58.42 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fff92661-047d-4428-8f04-57a457c163ae") ) (pin "TACHO_READ" output (at 88.9 43.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "05c48375-7a48-4455-947d-490144c70f0f") ) (pin "TACHO_GEN" input (at 82.55 43.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8b34fa3f-d74e-486c-8988-5434b2132b51") ) (pin "PWM_GEN" input (at 92.71 43.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcf5ec43-9801-4dae-a1df-f86294a4aea0") ) (pin "PWM_READ" output (at 78.74 43.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f24d8819-95a7-4fb8-9eb7-c65bf6aa0161") ) (pin "PWR_IN" input (at 64.77 58.42 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "cdb9ebe0-ffb5-4b05-99af-2137b7a9feed") ) (pin "PWM_IN" input (at 64.77 48.26 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "11a7fbfa-3241-4539-9fbe-b2f1cb7188b0") ) (pin "TACHO_OUT" output (at 64.77 53.34 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "052a19fc-7198-4161-8653-ddc58b94f9c4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "3") ) ) ) ) (sheet (at 196.85 46.99) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "d911133f-dd4d-432b-a685-8d9b5b84e35e") (property "Sheetname" "Fan2" (at 196.85 46.2784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 196.85 62.8146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 228.6 54.61 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e4118d39-91b7-4f48-99e6-196cad77a5a5") ) (pin "PWM_OUT" output (at 228.6 50.8 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b8912421-0b72-477a-9242-1db5f9d78e54") ) (pin "PWR_OUT" output (at 228.6 58.42 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "647821e0-82cc-490e-a6fa-e91bb827b01c") ) (pin "PWM_GEN" input (at 214.63 46.99 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2455b316-5b74-42ff-8009-62416d156687") ) (pin "TACHO_READ" output (at 210.82 46.99 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eb61e8d3-903d-4945-af21-7f5342bd62c8") ) (pin "PWR_IN" input (at 196.85 58.42 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "55b6d03a-5fb6-493b-beec-a7f34b4b7dc4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "4") ) ) ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/fanpico.kicad_pcb ================================================ (kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") (general (thickness 1.6) (legacy_teardrops no) ) (paper "A4") (layers (0 "F.Cu" signal) (1 "In1.Cu" signal) (2 "In2.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (stackup (layer "F.SilkS" (type "Top Silk Screen") ) (layer "F.Paste" (type "Top Solder Paste") ) (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01) ) (layer "F.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 1" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "In1.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 2" (type "core") (thickness 1.24) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "In2.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 3" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "B.Cu" (type "copper") (thickness 0.035) ) (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01) ) (layer "B.Paste" (type "Bottom Solder Paste") ) (layer "B.SilkS" (type "Bottom Silk Screen") ) (copper_finish "None") (dielectric_constraints no) ) (pad_to_mask_clearance 0) (allow_soldermask_bridges_in_footprints no) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) (disableapertmacros no) (usegerberextensions yes) (usegerberattributes yes) (usegerberadvancedattributes yes) (creategerberjobfile yes) (dashed_line_dash_ratio 12.000000) (dashed_line_gap_ratio 3.000000) (svgprecision 6) (plotframeref no) (viasonmask no) (mode 1) (useauxorigin no) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (pdf_front_fp_property_popups yes) (pdf_back_fp_property_popups yes) (dxfpolygonmode yes) (dxfimperialunits yes) (dxfusepcbnewfont yes) (psnegative no) (psa4output no) (plotreference yes) (plotvalue no) (plotfptext yes) (plotinvisibletext no) (sketchpadsonfab no) (subtractmaskfromsilk yes) (outputformat 1) (mirror no) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "+5V") (net 2 "GND") (net 3 "3V3") (net 4 "MBFAN1_PWM_READ") (net 5 "FAN1_TACHO_READ") (net 6 "/Power Rails/5V_REG_IN") (net 7 "Net-(U5-ADJ)") (net 8 "/Power Rails/5V_REG_OUT") (net 9 "Net-(D32-A)") (net 10 "/Fan Channels/Fan1/TACHO_IN") (net 11 "MAIN_PWR") (net 12 "Net-(D4-A)") (net 13 "/Fan Channels/Fan2/TACHO_IN") (net 14 "Net-(D5-A)") (net 15 "/Fan Channels/Fan4/TACHO_IN") (net 16 "Net-(D6-A)") (net 17 "/Fan Channels/Fan3/TACHO_IN") (net 18 "DQ") (net 19 "SDA") (net 20 "SCL") (net 21 "TX") (net 22 "RX") (net 23 "FAN1_PWR") (net 24 "/Fan Channels/Fan1/TACHO_OUT") (net 25 "/Fan Channels/FAN1_PWR_IN") (net 26 "unconnected-(J1-Pin_1-Pad1)") (net 27 "MOSI") (net 28 "MISO") (net 29 "SCK") (net 30 "CS") (net 31 "LCD_RESET") (net 32 "unconnected-(U4-GPIO22-Pad29)") (net 33 "unconnected-(U4-GPIO26_ADC0-Pad31)") (net 34 "/Fan Channels/Fan1/PWM_OUT") (net 35 "/Fan Channels/Fan2/PWM_OUT") (net 36 "unconnected-(U4-GPIO17-Pad22)") (net 37 "AUX12V") (net 38 "Net-(D8-A)") (net 39 "RESET") (net 40 "Net-(R1-Pad2)") (net 41 "unconnected-(U4-GPIO17-Pad22)_1") (net 42 "FAN1_PWM_GEN") (net 43 "/PWM2A") (net 44 "/PWM2B") (net 45 "FAN2_PWM_GEN") (net 46 "FAN3_PWM_GEN") (net 47 "/PWM3A") (net 48 "FAN4_PWM_GEN") (net 49 "/PWM3B") (net 50 "unconnected-(U4-GPIO14-Pad19)_1") (net 51 "unconnected-(U4-GPIO14-Pad19)") (net 52 "unconnected-(U4-GPIO26_ADC0-Pad31)_1") (net 53 "unconnected-(U4-3V3_EN-Pad37)_1") (net 54 "unconnected-(U4-GPIO22-Pad29)_1") (net 55 "unconnected-(U6-NC-Pad3)") (net 56 "/PWM6B") (net 57 "MBFAN1_TACHO_GEN") (net 58 "Net-(D12-A)") (net 59 "FAN2_TACHO_READ") (net 60 "FAN3_TACHO_READ") (net 61 "FAN4_TACHO_READ") (net 62 "/Fan Channels/Fan3/PWM_OUT") (net 63 "ADC_REF") (net 64 "/Fan Channels/Fan4/PWM_OUT") (net 65 "VBUS") (net 66 "/Sensors & Connectors/AUX12_IN") (net 67 "AGND") (net 68 "TEMP1_READ") (net 69 "TEMP2_READ") (net 70 "Net-(Q1-G)") (net 71 "VSYS") (net 72 "unconnected-(U4-3V3_EN-Pad37)") (net 73 "Net-(U1-~{1OE})") (net 74 "Net-(JP12-A)") (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu") (uuid "00b018ab-882c-4b2d-8e10-e589455112c6") (at 64.2093 74.05245 180) (descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F2" (at 0 -1.82 0) (layer "F.SilkS") (uuid "2ed599af-df7f-4495-a2e0-0fdedd142358") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 0.5A" (at 0 1.82 0) (layer "F.Fab") (uuid "30a738b9-4315-4afe-8c01-baf958491ed3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "bae8d5cf-3770-4757-a23f-cd008c74b4fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "4a700991-2632-4761-a03a-ec531ab96b20") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "43f796ea-aa41-4ab1-8e89-d5d4b35814db") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C70072" (at 151.425 167.3625 0) (layer "F.Fab") (hide yes) (uuid "ea6dcc1d-09ca-4d8e-972a-6a59ee8acff9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fcdb13a-36ce-4308-a20c-b2caf7f3b47d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "530-0ZCJ0050AF2E" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6cf51a65-e0aa-4ce5-8073-3c01c1cdf617") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f843f20a-8ad0-4ec1-89a3-49ae602d7baf") ) (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3e2d1350-ff19-46cc-a322-b1dc8962272c") ) (fp_line (start 2.45 1.12) (end -2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "36ffaba3-16b6-49c0-851f-20fccdf76951") ) (fp_line (start 2.45 -1.12) (end 2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9d103dd9-df24-4882-a7d6-9de79e5b9094") ) (fp_line (start -2.45 1.12) (end -2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "04fb1a04-3770-4cd5-ab65-a9ecf9d783c9") ) (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "096c0910-3543-4bfe-8ecf-1b15690b917d") ) (fp_line (start 1.6 0.8) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b5129ea6-dd93-4320-b6ae-affdbfafa8e4") ) (fp_line (start 1.6 -0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d2350c1-cf5d-4345-ac62-ecf22354bc10") ) (fp_line (start -1.6 0.8) (end -1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dbff8703-8408-4a2c-94a8-f89da6191e9e") ) (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2d480a4-ed61-41d2-bc8b-ff90123d7801") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "7929d1c5-5aa4-4568-ab51-cc93458ce4e6") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "08619e52-025f-4468-9792-279a1404b409") ) (pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 1 "+5V") (pintype "passive") (uuid "4f368048-24c3-4f22-ad1f-294ca2458e45") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (layer "F.Cu") (uuid "01424783-9d7e-4bcd-85ec-4a6696ab5e0e") (at 64.6176 128.4732 180) (descr "Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity") (tags "THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm") (property "Reference" "J5" (at 7.5176 -2.2268 90) (layer "F.SilkS") (uuid "33576754-23d1-4de5-bb33-cbc07cad8878") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire" (at 2.54 4.37 0) (layer "F.Fab") (uuid "89d6d4b8-900e-4cd7-a4c6-87309853d5fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "351aa55d-72f1-48fd-9f19-2906f3f77128") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "42c5b224-cac2-490f-86a5-f342a5ef12b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6da75fda-a105-4820-9fd1-b6e476d5c852") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e6b3946-3aed-41d8-91b5-c5bceb6071b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e65b981a-8b32-4131-ba09-77f36ffb5fb9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C68305 or C5188443" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bbcc4ae5-3f67-4da7-964f-053d91bcaa2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/96a18ea7-3d15-46f8-bc11-da38dba4984f") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 6.7 -3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c83c8d34-680d-49a5-a51c-5e88ab6dd94e") ) (fp_line (start -1.62 3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8150d465-46eb-401a-92c6-44a3f7fa7ece") ) (fp_line (start -1.62 2.85) (end 6.7 2.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae01362d-0e4c-4cd0-8ef9-2483a532925f") ) (fp_line (start -1.62 -2.25) (end 6.7 -2.25) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4ac92cbb-08b4-4b1a-85b9-7ce26f24cc0e") ) (fp_line (start -1.62 -3.37) (end 6.7 -3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9aeda4bc-7ed9-4b63-8768-1e670be0d2d8") ) (fp_line (start -1.62 -3.37) (end -1.62 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2d95eace-643f-4ab9-a7ff-05e1629d00a1") ) (fp_line (start -1.86 3.61) (end -1.46 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fce8a3d5-b40c-4148-9156-065e78de0375") ) (fp_line (start -1.86 2.97) (end -1.86 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ce3686c-2fef-4704-893d-0ce7ad1685c9") ) (fp_line (start 7.08 3.75) (end 7.08 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a39772be-58f1-4fb1-83ac-a55b7ecee6ba") ) (fp_line (start 7.08 -3.75) (end -2 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dd320482-ae57-4acb-a26a-b2d82659d039") ) (fp_line (start -2 3.75) (end 7.08 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e3fcdf20-8066-4b71-9d39-219461c0bf2f") ) (fp_line (start -2 -3.75) (end -2 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f084aeee-e1cf-46b4-8967-205efab45f70") ) (fp_line (start 6.58 3.25) (end -1.1 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "afe96426-249e-46fb-bd99-28a262044cfa") ) (fp_line (start 6.58 -3.25) (end 6.58 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "066eead6-ed23-46fb-bbd9-0483d74deb40") ) (fp_line (start 5.915 -0.7) (end 4.38 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1412591a-699e-4952-821c-128085a2444d") ) (fp_line (start 5.781 -0.835) (end 4.246 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "976de7d7-35e6-4b66-9d3f-f4b70834f01a") ) (fp_line (start 3.375 -0.7) (end 1.84 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4404c800-f0c6-41c5-b1f2-6f8cfc260f93") ) (fp_line (start 3.241 -0.835) (end 1.706 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f69cea0a-1a76-4fc0-9e49-80b52d94547a") ) (fp_line (start 0.835 -0.7) (end -0.701 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a64adbbd-07e7-4c92-968e-e27a1e519b0f") ) (fp_line (start 0.701 -0.835) (end -0.835 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae5b4c9c-03bd-4845-802c-62f6769d7d95") ) (fp_line (start -1.1 3.25) (end -1.5 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cf83a6cc-c5cc-44a3-99e2-223843936ab7") ) (fp_line (start -1.5 2.85) (end 6.58 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59e6bd55-1fab-4b36-9cd6-febe03fbbd9a") ) (fp_line (start -1.5 2.85) (end -1.5 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4712a69-ec54-4376-84c7-5f253a04be5c") ) (fp_line (start -1.5 -2.25) (end 6.58 -2.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53cc8d19-0d7e-49c0-9528-6c6b7be82584") ) (fp_line (start -1.5 -3.25) (end 6.58 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b9665493-d93d-481e-9cd2-4c82c2f9f3eb") ) (fp_circle (center 5.08 0) (end 6.18 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "07f5c71b-7c4a-48d6-a82d-e83dfd886e54") ) (fp_circle (center 2.54 0) (end 3.64 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "623b16b6-851e-4ed3-861e-2390c41befd8") ) (fp_circle (center 0 0) (end 1.1 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "453d3185-bd67-4c43-acc3-99183f5699f4") ) (fp_text user "${REFERENCE}" (at 2.54 2 0) (layer "F.Fab") (uuid "a471ae33-e316-4c35-875c-a1af3e652c3e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 180) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "1009bf27-939f-4a32-9c99-eea18db80378") ) (pad "2" thru_hole circle (at 2.54 0 180) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 18 "DQ") (pinfunction "Pin_2") (pintype "passive") (uuid "a12e5bed-e19e-45a4-8fb7-d08347627996") ) (pad "3" thru_hole circle (at 5.08 0 180) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_3") (pintype "passive") (uuid "11abf23a-6e3d-452b-b333-8ed64f03fc01") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_TE-Connectivity.3dshapes/TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "01505f11-ae48-4d01-8ba1-2dd7ade04b75") (at 64.2 120.95 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D7" (at -0.0048 1.5636 0) (layer "F.SilkS") (uuid "1e42f0b0-6b38-450c-a77c-63968f7a1628") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "53c524f3-0be4-4232-9bcc-29cd59c8f5c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "adb3b399-a786-414d-9a19-0d3f92d5c10f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "590cf364-561b-4125-9be1-ad802d2a957a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a1f05101-e7c8-42c9-a74e-a0e6e5dc377d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8a76be17-aab6-4587-91fa-a9be730dbfb5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5bc9cedb-c6e4-499c-82f7-b02f3565408d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "22c523bb-2941-41f2-9c20-48ffcddb1d7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f1bbb4cf-cac1-498d-9bb6-9485f1c1e67c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59efb69d-5fb6-40a6-ba0c-4a84966a7e77") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07a813c7-9b6b-48b3-b899-e95750d97dc4") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87f9d48e-d27d-4826-959c-78977effea50") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "efe063d0-cdff-4c8a-aac3-2fc8d637fa95") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "42936067-22f4-4d4d-9c69-0aac924a1058") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce337114-3d4f-45d8-aaba-36a2b69a01ca") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f0409028-cd56-4d6f-b67b-42f15906ad22") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4dd2cd1c-e1ba-4670-85e2-28a1fe304bd4") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa594cd2-4c45-4fb8-a97a-0b5480a47cb8") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c4387c8-69bd-4b71-b37e-1deb25346cf0") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "617b55bf-e977-4ba4-a3d7-47c1896d3722") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8760480-c83b-4e28-9aa7-107e448c320c") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0332c80-4df3-4f87-91fa-21b434ac8026") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0110a53-f40c-4077-a103-1b6b1b626a6a") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37780151-dc8a-48ea-923b-e6f0a52b2199") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c88c9328-5ab3-4141-8e6f-4e79a4886ba4") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "74b69873-57a1-47df-b820-5be4f193db87") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "cacbd7e8-be74-4d13-a93f-2d2d29abbcd0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5f4fd14a-1565-4007-8dec-ca9021e277f0") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 18 "DQ") (pinfunction "A2") (pintype "passive") (uuid "222094cb-8c56-4019-afea-99348cd86414") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (layer "F.Cu") (uuid "069671bf-7878-4007-9563-123b12569053") (at 51.2 132.015) (descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator") (tags "connector JST SH horizontal") (property "Reference" "J6" (at -4.45 0 90) (layer "F.SilkS") (uuid "38a57dc1-48ad-4191-87b7-e4871da0e1a5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "QWIIC" (at 0 3.98 0) (layer "F.Fab") (uuid "1bac8b80-6509-4263-a74e-b6a45d04c73a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fcd67a35-333b-4b89-a64a-a74cbb708d72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f831b691-a258-48cd-b656-89feb81bd997") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db013852-9a43-4092-a476-17e13a52539d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C160404" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b62bd26-1fca-48e1-9186-cfe3e0746399") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c1d1694-a68c-4040-b32f-1486cf47ec3b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e2c68e75-fba4-47bd-96d8-8b14dfeb96ce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/19772840-0f1c-4864-a3f2-b85e11be6f6a") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -3.11 -1.785) (end -2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3225412-9439-4f15-b8c2-75deeb6bc217") ) (fp_line (start -3.11 0.715) (end -3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba95068f-8251-429c-8b4f-f804d7c4d596") ) (fp_line (start -2.06 -1.785) (end -2.06 -2.775) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7d4b46b5-8145-4f73-94f9-4df440cb51c0") ) (fp_line (start -1.94 2.685) (end 1.94 2.685) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "edbe4232-6cf0-468a-8610-6a5aa05df967") ) (fp_line (start 3.11 -1.785) (end 2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b347cf7e-5683-4961-bbdd-fa4d700f21fc") ) (fp_line (start 3.11 0.715) (end 3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ffc4347-08e4-4eb7-b6c0-d78142aa3ea1") ) (fp_line (start -3.9 -3.28) (end -3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4c5b603-e4ad-45d3-8d70-c83a62f2b8dd") ) (fp_line (start -3.9 3.28) (end 3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db6058ad-9ba9-4172-a6ef-fb916749cffb") ) (fp_line (start 3.9 -3.28) (end -3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77028bb4-3b0e-4cc1-8fc5-399c384f78ee") ) (fp_line (start 3.9 3.28) (end 3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4d1a28df-993f-4783-bf6c-8f52dd18205b") ) (fp_line (start -3 -1.675) (end -3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b5a8faea-812b-4a3f-8806-d259b66e436e") ) (fp_line (start -3 -1.675) (end 3 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1fe9f02-0dcb-4107-96b9-4a9b739bc73b") ) (fp_line (start -3 2.575) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a411a123-3e34-4ff9-a6ea-45882037e9bb") ) (fp_line (start -2 -1.675) (end -1.5 -0.967893) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28b8d8bd-877f-486c-991c-21b95aff89b3") ) (fp_line (start -1.5 -0.967893) (end -1 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2f56a9c-94c4-441b-a277-76da8aa887f1") ) (fp_line (start 3 -1.675) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ecb9d16c-c767-4401-a01f-30e292e774af") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "9cbbe8a8-1e57-4a5f-bd61-a676af391d97") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "dd1f797c-2aef-4dbe-8c8b-f65f1071b2f3") ) (pad "2" smd roundrect (at -0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "9cf63c14-749d-403f-aacd-295de5252437") ) (pad "3" smd roundrect (at 0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 19 "SDA") (pinfunction "Pin_3") (pintype "passive") (uuid "5b5b36b4-d8c3-4fc5-9e88-a828a477aa97") ) (pad "4" smd roundrect (at 1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 20 "SCL") (pinfunction "Pin_4") (pintype "passive") (uuid "a7f9b718-52f5-43ec-86dc-20c1aad15ae2") ) (pad "MP" smd roundrect (at -2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "dd631c7c-a433-46a9-9618-c2998b537852") ) (pad "MP" smd roundrect (at 2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "70ba55b7-17e1-492f-9502-6fd935e483b2") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "08801f4d-29f3-4989-9ccd-e1b6cf102dda") (at 112.8606 68.4276 90) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J16" (at 2.8 2.025 90) (layer "F.SilkS") (uuid "5ca2cdf6-2be0-4914-8df6-10cd3596f371") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor1" (at 1.25 4.6 90) (layer "F.Fab") (uuid "a77cda28-6d3d-4c48-9a2b-6259781a0de0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "326fcb41-a6ad-40a5-a424-6dee8064d9de") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f7663f93-bbae-4f99-9582-d076b474f4c6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1f8c3e17-5ed0-41de-b8df-06845669e2dc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d3424c39-2687-40e4-9e57-29a706f4fec2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C158012" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bcf6c0c9-e1a2-407e-9404-0c777c380956") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d17e7a19-2499-4587-9a4d-ef65e058f8de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "beb2a7e7-53ae-49a0-a4b8-5f83be671f36") ) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3da7d9c3-e85c-4c87-9ef2-8f780fbcbba3") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a63c2df8-8a19-4775-8ea5-46dbe1833ac7") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0b3f3fda-8194-4abd-997c-550fd4138bff") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "831814d3-05d8-4a08-870e-0ec01aa8a6f1") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "41c5ee0f-5a15-4e5b-9d2b-752b8bdcc208") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6584b987-46ca-4d41-879c-0132d2085cf0") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "692cf441-8c52-4bbc-8f59-9fdfccd6f627") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "55d36896-d1c8-42f7-97df-4a8017a327cf") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3846f93a-db84-4555-bb8c-740981e774e3") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65f0684e-46a8-4f49-ae95-635963f15d4d") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "215a6a13-8068-48b3-ae13-664040ceb214") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ee86fe3-ff12-469a-9b3b-a8d4d7b82ee0") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3882bbb8-ad54-458d-8d8b-af3a74b0ac06") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07cb77b3-2eb0-488a-bafe-a545c623b74d") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "71f125fa-b999-4890-8f50-bfb325e0edf9") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6d6a6503-c547-41c6-8681-5a03d4b144f0") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db64a1b4-cfaa-45ee-b418-2e3ff5dfba20") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "67c099db-29f5-4f27-b344-fa4e0ab26b52") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f6abd7c-75c0-4fbe-b564-a62ecea546e5") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2df327fb-84e9-4ed8-a8e9-24bf18167821") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "773f6dc6-195b-4a40-80d7-12c35d6a35ef") ) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5acfc03b-6477-4953-9c34-50d9af8aab9a") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf0ac0c4-f31d-4d63-9d00-9a465f042772") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7c991ab6-d8a2-4a99-a579-749628e82308") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6fe34533-a80c-4be8-9df9-ea5729202c9b") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c7d2766-7202-40b2-bb6b-94ac71e8347b") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0750adc2-5ee5-4bac-8629-4bbfff364103") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91935937-ea67-4fd5-8745-90e48650329a") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5adb2515-b742-4d89-9061-0454371cd5d6") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "077c6e3b-48c3-49b3-a47b-57903ef8e3a2") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be85efa8-6297-4ca7-a1f4-3b68ef1f872a") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dfd9699d-71d8-469b-b944-b3083f789edd") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f76567c-91a3-40dc-880c-214def5cbd7c") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") (uuid "98efe830-083b-496b-b22c-a27cc5f428e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.147059) (net 67 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "51ada84f-c091-4c37-be18-560cdbf62d2b") ) (pad "2" thru_hole oval (at 2.5 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 68 "TEMP1_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "16e711fe-7ca0-4336-b569-56cf1e7eb35e") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "08fac9fb-bd01-4e29-bb0a-a4ebc41404d7") (at 93.726 107.2325 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R37" (at 3.2375 -0.154 90) (layer "F.SilkS") (uuid "c40901b9-79eb-4c57-8505-fe86c1cac32c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "45fd3f07-f7c7-4aac-ab80-ee327647a66c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "af1a6f42-2b8c-41dc-9fc5-5a00a3742595") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0c67dbc4-44e4-4244-b7e6-4f3d943de24c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "03f646c1-cd64-4030-a804-6ce53c12d652") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 39.25 249.75 0) (layer "F.Fab") (hide yes) (uuid "34ec97d9-e63a-4d38-b112-6b9688cc4a77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "246792fe-86e6-42f3-b7ea-4e8950436875") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd1a4c77-885a-47f6-8652-89d7b9ff05e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ff9221ee-49e2-4bf1-aaa2-2e09d7767e10") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c20ffb8e-5360-4060-ad81-3024b4d81153") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "885aa64b-c3b7-4efe-93ac-de9b27c28f3f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "092e36f2-af73-414e-af5d-1689ecc9176e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e6dfa28-50f7-484d-8f0d-563af365c62e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "21b5b052-592f-47cc-928f-b23151b15b57") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c045ef7d-bff1-4b05-a931-7bf3f7d2c7ab") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b10f8cd7-5ae5-4832-8e45-5cf427e293b3") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9230a470-5b09-466b-b3be-e33c395c044b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c03bbd9-4c84-42ea-9bf8-12d017796df9") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d214d50b-3480-4366-9d27-28c6f7289a83") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "FAN2_TACHO_READ") (pintype "passive") (uuid "5d9f0c83-ebb5-4e88-952b-3835eb242bf6") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "78d3dab9-82a6-4754-98cd-fa0c26e980d8") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "0a9fa84d-e2ac-47ab-935a-a282f9d2d763") (at 104.3135 85.9905 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D22" (at 0 -1.85 90) (layer "F.SilkS") (uuid "644946c6-aad6-44e3-bb06-5f00be854373") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "8fdfd28d-cf44-42f6-beae-0d1b1a5da47c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bc575efd-c2c5-48c2-b900-34a042524768") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a6c55022-6065-42aa-ba75-3ad7358c7817") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d6eaa0c0-15c4-4f4b-b585-8313295def3c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3932e2b-78c6-4e12-a214-f28e1f0c8e15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1d5ebf3d-2729-4eec-8160-17df076c28f4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ebc640d3-0970-4440-85c3-77de01abf39f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/6702d47f-0b12-4453-a9e7-aa625d400c1c") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a9fd837-5c5c-4ca0-95c9-95037b95223a") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77df123c-5f8f-44f6-8d5e-e734cbfb7319") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e926672e-1cbf-4134-b573-791ac9ffaecf") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3c9e01da-1f17-4ccc-a5b2-42404d487add") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1a702c6-ad00-44f8-b854-ca302efab8b3") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bb44ed72-baaf-4632-b8e7-bbf3897f49f6") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "00974859-7ddf-4819-808f-ebcfcf6fb81e") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d822c172-7a0c-4b75-a569-ff25847adde3") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b86736a-e5e8-4341-b39b-52a74841d3ea") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "101ac440-9c93-4719-aa54-b03f1902d822") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3650e08-ce0f-4572-92e2-b1beb0942fad") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62322151-c6a0-4b55-bce8-45916f11ac95") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "715e8be3-2797-4792-8098-5d63becc8962") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad1ea364-7b66-4314-85a8-5a8f41222242") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0d6be54-2d9a-4bde-bf6c-657987838885") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7fac106e-faff-4f5e-99fa-97fb36ed9787") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "75002a42-8a64-4f01-bbbe-c3aecf58fca6") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "765f0683-806d-4e1c-8288-57e3d829fc4c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "566bdf5d-940a-47f6-8c25-b6f1e1064774") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "b69ca6ed-df16-49c6-8e65-28d223bdf011") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "0ab94fb7-fcc9-4f65-8658-0a7363079c04") (at 98.9125 66.1) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R16" (at -0.0025 1.26 0) (layer "F.SilkS") (uuid "b715503f-1c16-49e5-8116-ce8fc5ba923d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "fd64ed52-1f59-4a18-8b66-f92c0a34e8d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "efa727d3-a5a1-4cd4-8f65-3c2933a149bd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "181f7dfd-92fa-4c77-9ed8-48bdc1a11224") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1b1830c7-2ebe-4672-9d55-ef01cd3fbdd7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9239557e-3800-4afa-b64c-6ebcb422de9c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b1458244-1805-465e-8f5f-c592c205d1f8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0d5109d9-958c-4169-aca3-e7f64a4c2a43") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/7e2d2ed1-24e9-4521-935f-d30bb0ebe69a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e6c4e366-6d7c-4d88-a30e-c5bbeda428a0") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "67078ab1-486c-4fff-aeae-ba09725c8c0a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "529bfc31-4e05-4118-bf49-539eb81d7b61") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4c333693-11dc-4e8a-858a-3d875ec0fa2c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c53f97fa-f470-485d-90c7-d8aca79b852e") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ebf05df7-dccc-4bf5-93d9-2f62a12c03ff") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d15afb7-78e1-4397-9090-cc0c815fc0e6") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a2804e79-212d-4549-aecd-94e8b291e15e") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7309c29a-c495-410e-997a-b63f674b3c8c") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f4e18f7b-8a05-4c00-8657-ef1901cc6a89") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "176069e8-d65c-4f19-9f95-e83f2e76eebb") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "6e4c1419-04dd-47a0-80e9-cac7c7ff7fdb") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "/PWM6B") (pintype "passive") (uuid "54448d00-59ee-4300-898f-297116a9bc96") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "0c7c929d-fc42-48df-9f41-c33294038cd9") (at 98.9 60.35) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R11" (at 2.78 0.01 0) (layer "F.SilkS") (uuid "f38c3c24-a021-4067-b1d3-00003c3c3ca2") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "664208b6-d0e7-4763-a20b-338ed6d137e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "435d3fbe-aaf5-4fe6-9363-63cb46d06ac8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3a84d3a0-89e4-462e-8938-5226189bf336") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6b634801-091b-4f54-a279-a13faf626ec3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "da313e70-335e-4fbc-a24d-3e05b4eb0e65") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c88297e6-3d62-45a5-b53c-59ca9702988c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "56a3e170-a502-492f-8d12-1bfbcac2a419") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e36e1498-1e6d-41fa-aeb5-a7fc94120459") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78079b2b-2ef8-43c0-a1ad-24aa879b5c70") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "31ec8a9e-5699-48e4-b29b-4030e0efe371") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6cf0a5d2-f115-4dd7-86ee-d43dad126bde") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1b88668-d190-4391-8f76-a7fb6148ff3d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "49e34af3-c767-48a3-bd4f-f7b011a3f75b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "20b67d0b-6afb-49cb-97ba-130ecadd0078") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f75de732-93ce-48f5-bcef-787c142fbfdd") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1567b085-d8b9-48da-a8c6-d440636d45b5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2db24e26-d6b6-4277-8e97-cc979ccd3056") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "19c27816-03d0-482d-8e62-e473c2ad2ca4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "Net-(Q1-G)") (pintype "passive") (uuid "09f0ce9d-8b5b-4b38-a066-ab2647cee200") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "MBFAN1_TACHO_GEN") (pintype "passive") (uuid "b2330723-f805-4ff9-ad04-6fdc6f6b6dba") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "12e3318b-d723-448e-80f4-0a2add1fb722") (at 114.3189 113.3124 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J12" (at 7.25 2.25 90) (layer "F.SilkS") (uuid "54e2d1f7-27a5-4d3d-8867-1045c9bfe79e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan2 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "55e3d34e-0b38-4f35-aeec-4d965d27b868") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "15d85b6d-b7af-4aaa-9405-9a22f5994e78") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e587c264-ce82-4ac7-9990-fc20c0f136fa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3488e631-990b-470b-9701-354ade07846b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "39f73185-e65a-4b82-8887-f16845248284") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "055b8ea3-0cfe-4709-af05-77d8eb8f73f3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1bf0b098-5592-4067-91db-e16b587e4b95") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/40b85d9e-00ff-491f-88e1-a7f34acc29cf") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f3402bf1-371b-45ee-8712-21df09e0a23b") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "137cf850-8bbb-4782-85e2-192879a6f0d6") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f994aa9d-3537-4e67-bec1-172d6e9ca91e") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0fa20a70-cfcc-4d72-a1ad-3b96ddd56ec5") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcec6b05-3d36-40db-a71b-e70fd3f2e38b") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "982e59b1-ed85-4c82-885b-5b85f8908745") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "94e40bfe-a039-4e4d-b958-f263d9b86c75") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f4aded3a-cfcf-4bb1-8804-40bd013ab646") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17605dcc-9a90-48b2-9be1-b846ce6a6287") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8abfd3c0-e797-4f0b-92ab-4c4e7d2c1a59") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39cbdc82-c645-4e88-8a48-3bd59b5252f7") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "061e65be-5c0a-42ca-9cf6-db799d02bf67") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2a22a92-0dd5-4522-afcf-5134b384fb14") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "39e4ca2f-1b23-46fc-9529-3d9c2e4ef3ac") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "baef231c-c22c-4c57-b2ee-2c6f7ba4a242") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8acd90f-2b88-4c97-8aaa-588e5eb8cc7d") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06a0cb6d-ff0b-4d34-a4fd-ce4fcfaa3d33") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "759c5fa1-1d83-468d-8eb0-73397d812b61") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53078f75-d9ee-4647-8c4c-2d913f7749ff") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0fab838-c2f5-4721-a4a1-5cf4ba1bb585") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "921b218c-5710-4f1d-bfda-db3cf0178809") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "40c5c7f8-1859-427a-883b-d25da3d2454e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "3329f16c-7b2a-4092-ade3-a40979a9c40f") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "5273d335-220c-46b8-a4ac-2c1d12376780") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "f4f5f5a5-ee3f-4cef-8ad7-dbbefbe26601") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "faf27235-fa58-4307-a21d-05a06948b6fb") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 35 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "3517a563-7855-4429-a7b2-ea348e8077f9") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (uuid "1605f882-81f6-454d-be37-e69a0e3e7d42") (at 54.0004 58.674) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F1" (at 0 3.7 0) (layer "F.SilkS") (uuid "d06d8ae1-6d37-423e-ba0c-dad3bdc76d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 2A" (at 0 3.68 0) (layer "F.Fab") (uuid "6cf04bb5-7ab1-4f57-bda6-a92120bf5781") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5807a72f-485e-4df4-8ea8-af50742ecd18") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f5272040-ebe1-41e2-b947-e0747797ec2d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f7cddf4d-2377-4dcf-ac07-1c8935abc8b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C910843" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "19c4c383-6e84-4f0e-9b0b-44ecce045f27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bfd35a2a-8425-4156-89e6-b06c063bed57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "beefe38f-aaf7-4cb7-ad2c-9b732f752209") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/4c74a725-f10f-4273-b4be-b4c0a9315c7e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7a191eac-186d-452c-b9f8-7cb6a593e9d5") ) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ceb00f98-14ff-4ea5-96cd-9b0a1ccbf0f8") ) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ff1a6701-93c5-4163-91be-f71fc7dadb2c") ) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "01726b97-402a-4b65-9492-a44be08332f3") ) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8b9c1d63-84f0-476b-82ae-ea1a15c1f09c") ) (fp_line (start 4.78 2.98) (end -4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bf9394d2-5ab3-4f5e-8f24-903964c6a692") ) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e5606eb-5da8-4346-84b1-1a3062e9efdb") ) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58431367-2284-4ef6-9deb-5ec6e15ad0ad") ) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "837b3d29-e7f3-4255-9ca9-c98ec2aaf9ea") ) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6dec525-11c0-454e-9139-979a4d2df10f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "43fc35cb-04d0-40aa-b8de-36e2c30f1f51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 66 "/Sensors & Connectors/AUX12_IN") (pintype "passive") (uuid "b0ed11fd-3a56-44ac-875f-879dedf0b4bf") ) (pad "2" smd roundrect (at 3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 37 "AUX12V") (pintype "passive") (uuid "362e8581-9855-4fdb-aa07-17976cd5e53d") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "191ee32f-08dd-4925-8d49-812b84e6e2dc") (at 64.25 70.8 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R3" (at 2.65 0 90) (layer "F.SilkS") (uuid "ef8a70b4-3082-4e5f-8d00-99d795d0f51a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 90) (layer "F.Fab") (uuid "568bc312-9dce-43b0-b3b2-5608a069dd85") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "46475f62-fa74-4465-9af8-1172c115c73a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "728ba9ed-737f-4bcb-9433-ab6636e949ce") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3f36e452-f2ce-4b45-8708-2b85d2b2816e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at -3.11875 152.54375 0) (layer "F.Fab") (hide yes) (uuid "5b77bd2d-fc68-45ee-ba5f-ccb342acc2c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a9234ebc-79f8-48bb-a4ae-e104989a1f68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ecf56035-6536-4ef2-8deb-9546ec07f9c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5a65fde0-58e9-41b7-bb45-7d350448b336") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4305ed74-4ec9-4310-8b60-fa5179be5b8d") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "25f54ff6-3c9f-4f76-a47c-27691af21904") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d85a054c-deda-41a2-bec8-2adc7abb6492") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0127bebe-cfdc-4966-b811-5a4fd2c27e26") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "118b5787-4347-4242-a586-85b6f7dc706b") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5303f939-2d92-4ccd-962b-64d46249cd96") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2d8e3b55-eeae-4d18-9375-846df3bce71a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c57ae9d-48ca-4ebe-a1ba-71efdb01f898") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0d3eb58-7ed7-4452-9d69-1901cac6f560") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "603ee348-ea6e-40ca-b3e4-8bbeeb6ce78d") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d53ddc0e-afee-4094-80b4-03d8efe9cecb") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "6c975c99-7b99-49a4-a5d3-8f98e6bff47e") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "ac1f7c6f-794b-4fe6-af1f-a108657d33b3") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "1ad5c265-c931-4eb8-8d65-46519581b2c1") (at 109.2189 91.7448 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C26" (at 2.2341 0.1016 90) (layer "F.SilkS") (uuid "aee324f3-3cd8-412b-9d01-c5681a928a36") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "434a7b04-607a-4c87-bd68-a94d1287ffa0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "243a075e-5a59-493f-b080-253799842280") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "fb15b1b5-0c75-4f48-9a1a-ada1ab771fb1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b17f5904-448a-4eb0-9b93-f5fa7d2e3ddf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1b8ef986-391a-41e2-8b1e-df91adc19cc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fec72e5-f4a5-42ff-a618-17a209a69037") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3fdd24e7-8907-4b70-bab0-4446b16eaa85") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e6b4dcee-ccca-4161-bc43-5a9a0d3067f7") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "74c0470d-ad5c-4a48-b838-eaf14a9361b7") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7e75d48f-a8ae-48a8-a6c2-630688550fc1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "11f1b928-231f-4427-91d7-bba1306f29f7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b8c3249-3252-4ce8-afac-77eb1679ed1c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "92343d80-6f5b-4118-a984-f1733c3d613d") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd67e37d-6782-47dc-9d2b-bb8baaac2b83") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48739937-e75e-4a92-ba84-0383d8480fa4") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b2a9fb6-bb1d-4714-8e43-adf9cde4c946") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26f3b371-a28c-426a-b856-343375dfced9") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "2db50a2e-e32c-4726-9043-6aecab7ed92c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pintype "passive") (uuid "1c3f13d9-abc8-4423-8e37-f6522e3c1ce0") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "e38fd24b-52b4-4a09-873f-a997b0ead5bf") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "1cf64412-b01e-4eaf-ba50-ca0daa6994ec") (at 69.4117 75.3592) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D4" (at 0 1.7 0) (layer "F.SilkS") (uuid "b035c3bd-a14f-474d-a4c4-29dc73b45689") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "2160ba62-8ce7-472a-9137-3fa0506a324a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "13125aae-2694-4f4e-9db1-fed971cf9f45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e3ae5f0f-0fa1-4a19-b757-7ed761e3b1b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b4c571b2-da1b-4eef-9e53-92c6593a8661") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6ba7bad9-2259-4c39-b8a5-a9fbafb731ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69edd2c3-8506-4432-ba74-a4254fe93d70") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c74807bb-b603-40b9-a1b0-8c5f854c3b02") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/2fe78790-cca2-409c-b93b-37aabedf28fc") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b61ffbb4-250c-4452-b5dc-9f68338c69b9") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4deba6a-1958-4810-8bb2-f2e92982ad8f") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7144d40-59ed-43a5-8cc1-21cd00a6793f") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d325f46a-3fb2-44a8-b001-9626080eed20") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "932e54fd-1522-4d1a-a61c-3b912a8e9fb3") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23e2f586-c192-4eb2-83c6-4bd826a4c1d6") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "466929e7-601a-49cb-ad6e-134a86833651") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07803474-147f-4d8e-a555-e80b9f7c0d6a") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6eb38f29-0539-4735-81f4-94c70c8d6a18") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8496ed2-bd96-4f9a-81f2-3094af6d7e68") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9524f306-04ff-4f55-98c7-5143b682ab60") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9ecad3c-29c9-4749-9281-827866590857") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "dcdabc96-66d5-455e-aa5b-38c599242af8") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "9c2f6c07-4623-4d06-8769-115c0f569b18") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 12 "Net-(D4-A)") (pinfunction "A") (pintype "passive") (uuid "896aac73-0408-4fca-8525-f2d909ee6777") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "1e0fa736-c93b-4f04-ac49-f38ac4164c62") (at 102.7176 82.1944) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R44" (at 0 1.5 0) (layer "F.SilkS") (uuid "b1bbb81d-bc07-426a-92bb-889f1080a885") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "b98a0959-d9b1-4c64-a107-2cada5e8bfb4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "fff0bcb9-bf82-4c98-ab90-4d79cd0edef3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ff15a9f5-127d-41bc-b614-0cdc6b5a2331") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2e04d2c9-a3c1-4825-a637-2d74385497dd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8903a9cd-6910-4c16-90d0-356af02ddcfd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1c4b8d73-e306-4ff4-968b-84b003be43e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6f1e9060-7428-4ea5-8d27-cf78606ed724") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a47d3d9-2af4-42ff-a1e4-3cc7d22b2ae8") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "722babbf-2e64-4666-918d-7e8d74a45644") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc9aca4d-761f-463e-b545-9cd43e34809a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad1ad684-627a-4b93-b651-64bba36746a6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "efe339d4-b9ee-4217-97f6-d9f21dceccdf") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "16b067c2-a528-43e0-8700-6a8bbda815db") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7118ad21-8faa-41d6-ba53-ea308f5b9ca1") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "621916f2-8dce-4f50-8c52-1719fb22f012") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22491d73-2b7a-4158-b5b4-b55cf48104ae") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c97dbc6b-c51b-42d2-b94f-fc3a81b293bb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "77b0730f-08ef-4c54-817e-5d51d2c6efc1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 48 "FAN4_PWM_GEN") (pintype "passive") (uuid "4fd5fcd6-2c8b-4e44-b505-c9b221b1d621") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "/Fan Channels/Fan4/PWM_OUT") (pintype "passive") (uuid "38f85c68-ef1b-4c1e-8b65-bc626b8b156b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "20859ee2-cbf8-46fe-9c40-f518330ff9ec") (at 109.2189 97.7124 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D28" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "a1d7dfe0-de93-4a26-a738-9c87a691804b") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "e8247656-50ec-4519-ae32-d57fce426182") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e3514fde-9cd9-4861-8aeb-8c051861ee4b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "179e727f-73c0-4358-bbbf-776bae687750") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d78749b7-b654-4c59-af24-867e49438bf9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "9271f5b1-36dd-43e3-9dbf-99d343e185f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "4d523a7c-02fb-4429-a108-429b3f130e04") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "abf10899-b137-4f5a-b172-25724b6774db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0f320c0d-e36a-404d-8306-13050ae8fbf9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ff114979-4697-40f5-87b3-a6f4f18f6bd5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f75900d5-d4c9-4e8d-b5ec-ad0ded86ca42") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e43ed4b-f514-45fe-9606-b249702ceb87") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb3d6661-b9ad-4675-bee4-462a0a1ea4c4") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "73ef913a-67c6-48f0-8e7f-e83626bb9f7a") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1541facc-0d12-4ff2-b106-7a4022c21721") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aefad7d6-6c4a-4f5b-9e1b-e5b8484d8a21") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a01c9ce9-22e7-48a7-9c4b-ff97f32c764e") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c93e7496-947c-4198-83d1-0e1c7e0f8b18") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "51ebc552-60fe-4f50-8d51-2ce319e57767") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4efa8619-d61a-4aa4-9401-1b5a7e7838b1") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2cf4c21c-0c49-41de-aa9b-c41a863467f1") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88cb6c9d-dbfa-495d-a7fd-30b9f4294500") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d75ed9c2-8175-4ac0-b521-4027e54eddb5") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a780037-ef16-4628-bbee-05278325d268") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "711d8790-2d82-4fbf-8d8b-cba4d4655b4d") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d39d7677-0b35-4042-a46c-9a34ee0b14bb") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5205171e-13b8-4424-9c3f-be5d86752c42") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "214a77ed-e0d3-49d3-af5a-2ed7cc97d6d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "a254737c-0dce-4a1a-86af-2aec92a0c200") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "d24b3409-7c39-464d-b398-d91651cd4059") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "22c5ec8c-92fa-43bc-955a-ac62de3d0d1e") (at 99.226 95.9825) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D27" (at 0 -2.5 0) (layer "F.SilkS") (uuid "b0a1f075-8c2b-4b57-a622-3cdbff2047a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 0) (layer "F.Fab") (uuid "d9b3de35-d771-493b-8dfd-4660bbdef51a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3999cc89-04a1-4a69-9a32-086abf03af3d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e948592f-864a-4307-a168-820e8ac1f2d3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "686e335b-bbcc-48c0-82a1-785828ef6705") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4846d87a-d4a7-4c7b-aeac-c8da5ba2457d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2110bf5e-ae0c-4b9f-a849-5e2148c089d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a539b23e-5760-4cdf-8988-c43b358e2715") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "531908ca-211e-457e-89ef-aeb34b162ea6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a401dbce-8189-4d70-9efa-b672bcf49acf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c8e5e8a1-05af-4761-8cca-1c988d6986dc") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "155ccdaa-da10-4dc4-bee9-324f7663abdc") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7c392289-3b29-4b06-972c-5db0e4d02920") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8531042b-2378-4904-a2c1-59423d346b67") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bc942a77-6dae-457d-b901-a74a97b7b69a") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e596cba1-5e3a-4de4-b9ea-9a63ce0f665b") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6c8ecb6f-219c-46cf-a70a-2d5e020a5759") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce774108-3749-4fbf-ade3-8b75524f7b79") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c02c08ee-078a-4543-87c2-1d9d7eccba04") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1790509b-7779-4348-9050-3721f54ba7ad") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7014058c-24eb-43dd-bcef-398ab9ccf6f4") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "178408eb-4911-4712-ba9e-b0f7be2bc73a") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2183e36c-76c1-4d07-9ca8-bc6398b2433b") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7dce971-939b-4d87-9375-8505f139f2c8") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b43ed414-b407-4b76-a751-d404f829e31e") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "46de7f39-4205-432f-9ba7-8e0bf4b45b9f") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5efab20c-0bd3-45e2-bc23-fa8563dc724f") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c35dc1fd-05bc-42c7-83ad-f237d1138b70") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "56c80a84-6c90-47c3-972e-47b8b2b2a70f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "cda510c2-2f9e-4df8-965f-ab96f7e011bc") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "6e87a3be-7619-408e-ad46-ce499e96e244") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 60 "FAN3_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "4bdea605-9cf6-44f2-8a08-bf3c3558afa6") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "23d75056-8ad4-462d-aa30-6d8d564b8e62") (at 114.3189 102.0124 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J13" (at 7.3 2.5 90) (layer "F.SilkS") (uuid "61c1f2c5-70c4-495f-ba08-1c06971f553c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan3 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "e1438f1e-e2c4-4f8f-8403-0cc2e327787e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "dbf8dea5-e11a-40e6-a774-473f8e24f364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "cca106b8-32a6-4f72-8a84-edde177a4f3e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4108743e-b486-4cdb-886a-af61be4009a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df3e33fd-3b4c-4db9-91ba-ea3d22905760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8093b88a-93c9-466c-afd3-1c3fb02e7d01") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "faeaff28-89cd-48fe-8917-6c6a8c53ba32") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/094bbf69-e345-406c-a80f-9e08f85706fd") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4783dd49-2903-48a1-be38-d478508837c9") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c607ed1-db94-471a-96d0-1bc5fddbe527") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b85c6772-1186-48a6-b3d4-478e8c4e7042") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "283964de-de6e-4752-a590-d7e939049c83") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9928407f-d3cc-40e1-b175-6c49eb839934") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ad379c9-cc86-4877-a950-736620d3cdeb") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcc413ff-0695-423b-9f8d-1212d4cd728f") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d3c0abc0-7ab6-431d-9b93-c6d8f47d6b0d") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba840ca5-6a77-4813-97ee-4775c877757d") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e6b6ff09-896c-4af7-8df9-c42c878478ce") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d336c310-83ce-4da1-ab3a-afaaa46dea5b") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "18e663f7-b191-4fae-9988-b7a321867025") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77efd79a-82b2-4713-b6a1-45e5061c729d") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a42c087e-50c3-4814-a310-3dfe21fdb38d") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d088470e-df14-4453-98ec-661492cb69f8") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e372447-92a7-41b4-8e9d-a671aa7f1757") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eccd5871-30c5-4894-bb6c-dc2bd7ca0ecc") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66c51246-2a88-4ddd-a39e-e27174eb031f") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28b63874-7d81-4f71-93ea-9d4bbaece0c9") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c8a6782-02ae-4d4b-9d7f-20b038a13b88") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7043db9-b55a-4558-91c5-98549dee4d00") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "1d4c2f8a-82cd-46b1-82ed-7ef4422b6880") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "202f12d1-3417-4294-b73c-ad868bfe845d") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "b5897087-04f1-41bb-9760-833a668a8a00") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "619917e9-122f-4072-b775-8acbdbb01463") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "48400581-b0c0-49d8-8135-88cac14986ee") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 62 "/Fan Channels/Fan3/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "4cd2edcf-3839-432d-b736-0052d5d08272") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "24506f2d-3035-4df8-b27f-83d5d79b2e33") (at 61.6172 57.4812 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP1" (at 0.15 7.4 90) (layer "F.SilkS") (uuid "12daa085-b153-4a5d-b490-951e2b25e84a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Power Selector" (at 3 2.125 0) (layer "F.Fab") (uuid "abf077a5-6cf0-42ec-b978-b2420c4efbb9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b4b7e09e-6c2d-4e65-8f46-8581b6b89e89") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "157f895a-1265-4a2a-99fb-3994e1d28ded") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8f9c3e2e-60e6-4b06-ae54-d10a315bcc85") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8aeb5fee-4c4f-46bc-ba7b-965f0cf75514") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7c37a702-1d4c-430c-aa03-2120f1971ce6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/4ad1e273-b8c7-4692-8f20-a03965035fd5") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a1bf4bd7-a427-458f-bf74-b656b8a2fa52") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "daaf7e93-2cb0-4558-afe7-bfdde63bd36e") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53a39b16-b7ef-4e8a-b697-ca94599d4942") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1a49bea-cd9f-49a5-8e60-08c67a740ece") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07749f07-a922-4ada-afde-05b2077be7cf") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c3567790-47a4-441f-88fb-a326034ddcef") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2fbb062d-8e39-4838-bfd6-6ee17d8b963d") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39bb2a3c-ea22-4e7d-926e-43ccac7aaf5c") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7831f8a6-0599-4c1b-8db1-9cfd66605fc2") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b44c542-5909-44ce-80ee-9610a695be4d") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a120d62f-9ab6-47f0-b1d0-882c77ebbb28") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fd97d546-e7ef-4a54-974b-9ae2c089dee4") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d11d9e0f-e6f4-46ff-9c38-beadb4cada53") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "778e5378-2c03-4f81-85e2-f553246d41ff") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "196929b7-2047-40b3-b919-aa73de27b4e6") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "2269c81f-8fa9-44ea-aa47-0f1b7fc675d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 37 "AUX12V") (pinfunction "A") (pintype "passive") (uuid "dd79b27f-3818-4a49-bb59-f8d9150d7405") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "MAIN_PWR") (pinfunction "C") (pintype "passive") (uuid "66a3e8d4-3118-4cf9-8a47-8cd4e8ea8efe") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 23 "FAN1_PWR") (pinfunction "B") (pintype "passive") (uuid "cddbe82e-a72e-45ff-b68e-9cb9de6d9d39") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "252e2683-897f-443d-8427-94b15ea5dc5e") (at 54.2 69.95 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R10" (at -3.0846 -0.0472 90) (layer "F.SilkS") (uuid "2cc59295-2056-44ef-9dbe-39c1febc6e89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "bb088eb5-1d02-41b5-96bd-27ded77d70f6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48776baf-303e-4c16-9982-11a4b3ab5e2f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cc72fc2a-265c-4e5f-abb6-4b6642ca84ac") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "63082982-a10f-4fdc-bfaa-84b51cd9d2e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d428893a-cd9f-477a-ba82-4f3e103ffb66") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "992ca75c-fb25-477c-989e-b3d36eb981d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b30d4000-3aa5-45db-9ac0-7f76ded8f068") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/51baaa29-f05a-4851-bfcb-693831b4254a") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ac502ff-10d7-4e16-a448-75138bd13eec") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae72a653-0e00-4612-8227-da5bc03bf148") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e4d2c9d-6f04-40ab-9e2d-227c863f38bc") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "528b1c25-c79a-4237-966c-920c7c6d28c4") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7eaba482-a4a2-4fc9-9fcf-87399a38bc61") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b2427748-c404-458c-8871-b112f63f3001") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d3fa39f-a0c6-4719-8a94-eed2743ee224") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f48f7cd-90bc-47e8-9cf2-9bfabf8a02ea") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81c9648b-e132-451f-b29b-98f9a2708356") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "838e1baf-d997-4d41-9894-618952c2a608") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d7e5e28c-f210-4bdf-b557-1c012566f4ab") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 66 "/Sensors & Connectors/AUX12_IN") (pintype "passive") (uuid "573fb8a3-9cb2-4a7c-82bf-4473407fd68d") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 9 "Net-(D32-A)") (pintype "passive") (uuid "5f2ae570-9f5b-41cd-ab97-3b25a0d6c1ab") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "2a890243-9791-4864-b23d-70886207fb43") (at 59.35 122.7 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R2" (at -2.6 0 0) (layer "F.SilkS") (uuid "a7a167b2-6696-4727-83ad-2c3c7174d6a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "4.7k" (at 0 1.43 0) (layer "F.Fab") (uuid "7cb0700b-a490-4368-aaa3-76fc9c5741af") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e082c5dd-fe0e-46c9-947a-aed7247dcbc4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5fba0acc-3813-41ad-89a4-541e2534e55a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9887e4be-db4b-4c79-9d90-35c3da7caf61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C99782" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b71e8809-a539-45a4-a995-eb907884f49f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "56960fbd-28bc-4c87-9f2b-af7806c46f80") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "57d77aa4-1680-4535-b56c-924edafd9cc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/7b19fa25-e005-4aa6-aa89-d93cfa6f6b28") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b8b3e9f-9b4f-445b-be9e-4eca3c6b39e2") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "853caa0a-ed40-48f8-9fd6-2e2d1c9a49de") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "faa956db-5c3c-4328-9e60-1e5c653e4ab4") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2320a66d-c85a-4925-b4ae-863311e01bba") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0cba742-551c-47eb-9994-8671074eb50e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "666ef73e-19fd-4351-a2a4-8d3efb6c4c55") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14ceafbe-db92-4ba4-bda2-e03333e2ade7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb2f568d-28ba-47ff-b1b4-00b85518f303") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea26dc20-d41d-4b4d-89b1-ae36f7196c6c") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2458d72-7479-4372-ba9b-e4143651d9d9") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ff2ea4b3-973a-43e6-8327-b6b80508bea3") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "3a5fa7a7-e3f2-41aa-a887-ae50547b41f5") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 74 "Net-(JP12-A)") (pintype "passive") (uuid "8444d0d3-334e-4543-99a2-85edf7edd4e4") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "30d408b7-6af3-4a56-9ac7-f437419bd0d5") (at 99.226 107.2325) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D24" (at 0 -2.5 0) (layer "F.SilkS") (uuid "42d850b6-2b04-49ac-9ba4-d73834c7b8ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 0) (layer "F.Fab") (uuid "1dedd1b5-0a75-42a0-91ce-f071f79c5f5b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1925c98a-85a2-4046-a3cb-6674df114af4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7bd0c7f6-8fc8-4ddb-b13a-15b11fe36a1b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1de62e98-ad87-44ee-81fd-1fde0e1c053c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ea63f57c-b29c-4b9e-a1a6-6a847a42c86b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a1a7b443-7580-4d7c-ac11-e7e6e247806e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2e68b31f-fb61-403f-879f-5552fa4361cd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0d700518-3e08-478d-9765-4478ace80d4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dfd84e3a-731f-4088-8ae2-2c972891f64b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "33560a4d-ecce-4e4b-bcce-d3d965a38a64") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "66f085d5-2c36-4bb7-a77b-2e00740c6aab") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf1fa5c1-83a9-4d73-9d64-548ae7acc19f") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e51be659-7ec2-4bec-bf31-e7605426ed7a") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f61dd7f5-5315-48ba-b44c-18306da1707b") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7b7943c2-2050-43a7-b702-813b9d6d186a") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d4250261-41bc-4d71-8eac-75cbedcee45a") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9611610f-7d64-4983-b272-9153b8a06249") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8c64abb-486d-4b3e-8ac3-380996710a9f") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9de802e3-e73c-4382-8e30-87c3c28e81c4") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "430e347a-6d4b-4149-9e66-0d2c06ad1131") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea3482e5-a1e8-4636-8c8b-bcabf7a0b4f9") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f4c159c-0835-48de-b50b-627715b36ce6") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b348988-1e86-4e9b-b5ca-1b566b6680fa") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "540c34b4-e22b-4520-abe0-ff398fa640f6") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb100eac-2e87-4d0f-942b-770bd197b708") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5db6f420-7a74-4f68-a469-acb78c25e1af") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7110fbac-096e-4b34-aea9-aaf9183b0096") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "6a48edf2-c9e8-48bb-83dd-0339486ad214") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "b02b1082-8061-4a15-89ac-6276746ce9f2") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "844ca3ed-c956-4a43-983c-5fb649d7638e") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 59 "FAN2_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "b2bfeb10-3299-4bde-94d1-c576536f553b") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "37745207-6bdf-4c7b-9911-6f752cdd4766") (at 112.8356 77.0276 90) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J17" (at 2.9 2 90) (layer "F.SilkS") (uuid "c82234f8-2ff6-42f1-a8ea-90507178900f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor2" (at 1.25 4.6 90) (layer "F.Fab") (uuid "a9ffff2d-c467-446e-8954-c09542ba39a1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d904ffe6-a2be-4944-8992-553d8334830e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b97bdeff-a594-4da9-8583-f53103c60eba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "de18c346-5c8e-4478-96e0-0132b844d3cb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e80d7969-8d04-453a-89a2-9b979d1b2f3a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C158012" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a48f5ca3-6c4f-47aa-9ac8-8036c35c4e50") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b75af48a-7bb3-48a0-bbc2-369dc16552a9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2ab9bb49-234a-4ed1-af89-c2604f58121c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b115340-3531-4a17-824e-2b89413d1a0e") ) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ae54366-0b44-4b6d-9341-3033cf0b491b") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "aed87006-1dce-4e10-8efe-b52527b98770") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2e3c0128-bc6e-4ba5-899a-99e462864b2e") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ffa2f0b2-2d90-42c6-986f-720fd1e53c11") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae45bf96-9a1a-4a66-a96d-29bc55ff5a09") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e6c3464-3826-4297-b7a7-6f5b603927f3") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "934181f3-858c-4128-9cbf-7a847012bd16") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "38938011-e3f3-4138-84b3-6d300fb49444") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31cfb117-21ce-4d6f-b553-72de1f2c9771") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b58413a1-c1b7-4c76-b40f-ab115007b795") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76df799d-e19a-465e-a380-da035d2397df") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86bd54b2-e904-4a9c-b5e4-6035b6a6fb93") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e0fd62de-daa5-4d79-9465-a8862ebabe0a") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f8f003d-7ff8-46c7-95e9-eb94205a4a56") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "99cf69be-b55f-4176-92ae-bb49d025c8e9") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5590d68-3543-403c-8ae6-c429659b2bd6") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba1f3aa5-955d-4fb2-a2e7-e72f9bf631cd") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "abaccf40-d4b3-447d-8d8f-ce3cca675026") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8424e26a-875a-4363-a43c-ae20a9bdb913") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7730052c-1ecc-4aa0-aad2-8b6ffcfe7a87") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5bf9deba-f27b-4b37-a22d-1513361cbe65") ) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "535acc9e-1e93-47ac-887c-8107ff3703d0") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "602aa9b4-3c76-43bc-9611-d536358e3b83") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c1ce3828-6d60-401a-90b5-83eec43a1cd2") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7f1568d9-844d-4653-bf32-10f29613e09a") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7eaaad08-beb7-401b-a1cd-b65700a77859") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b4a66b6-6934-4cd8-94ce-c15c3e1156af") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36d5c88d-ecf7-4690-9f4f-b6e0f3f6b765") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f046addb-73dc-4327-a16c-281e81a3300b") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66738d1e-b3e5-40a8-9945-89f93aed354a") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a4ae07f-4bff-4dc9-9f78-a616a666283c") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c48407f-3040-4ab5-9629-b6af71f1bf41") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ce8e9c5-726f-4f0e-a72e-65eea4fd2ae8") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") (uuid "b4e7a464-8e6f-4dab-9eb7-1e342deb5760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.147059) (net 67 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "3767bf7f-c657-432b-a428-ff4d1125f149") ) (pad "2" thru_hole oval (at 2.5 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 69 "TEMP2_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "55d50efb-1939-4859-8918-661a9e24c234") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") (uuid "3bdb7f50-b7c6-4e3e-90d6-4ca872bacf77") (at 72.5056 68.4788 -90) (descr "module CMS SOT223 4 pins") (tags "CMS SOT") (property "Reference" "U5" (at 0 -4.5 -90) (layer "F.SilkS") (uuid "d3128d80-62cb-47db-96fe-57cbf4ff63e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SPX1117-ADJ" (at 0 4.5 -90) (layer "F.Fab") (uuid "41af32d7-2f2f-41e6-9645-51b6120c83a5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "edf8fa84-40f1-4214-81a6-19460883f853") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "231bed19-4e97-4d61-b8ad-a1ad3d9c2253") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd85633b-5677-4663-956e-a00d6474ac34") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C67402" (at 9.45 158.95 0) (layer "F.Fab") (hide yes) (uuid "cbba1c14-2a04-4889-a288-885548738342") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3779848-dfc9-4d68-8c0d-c9bd12800080") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5f79ef20-bb83-49ee-b26c-da32d7652377") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?223*TabPin2*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.85 3.41) (end 1.91 3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e9349a5-2a34-472d-8bf3-6b8b3b3fd628") ) (fp_line (start 1.91 3.41) (end 1.91 2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e7a40bfb-6a2b-460c-aa97-bf6c3ccc5379") ) (fp_line (start -1.85 -3.41) (end 1.91 -3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "33d552a9-9ad9-46aa-8d4e-c3e168f68839") ) (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "be96d1b4-4cf9-44bb-b3f7-a5b288de469f") ) (fp_poly (pts (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "be374ebc-959f-43dd-8809-e3e0f7840ba8") ) (fp_line (start -4.4 3.6) (end 4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aefbdd10-584e-482d-835f-58ee992dfb24") ) (fp_line (start 4.4 3.6) (end 4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39ab5a97-ac9a-4b18-9381-03c38024755c") ) (fp_line (start -4.4 -3.6) (end -4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "132af0fd-e7b6-4085-958b-7b4a187aa822") ) (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8a86276d-bad4-430e-ae3a-ced1132f0577") ) (fp_line (start -1.85 3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "275ac459-29a9-4eb0-afe3-41837deb46fe") ) (fp_line (start -1.85 -2.35) (end -1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d462503e-e42f-4813-b538-ebaa205278ed") ) (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58914b81-580a-4bb7-ba41-4760bb706597") ) (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac40f094-196a-4852-9bd9-42a5b0df62b3") ) (fp_line (start 1.85 -3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "10ed4870-d6b9-4d5c-9b3d-8878622d2014") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "10f0e0a7-6e84-4d34-938b-333fdf00cc15") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pinfunction "ADJ") (pintype "input") (uuid "41e15dbb-ce5c-49ce-b65b-e4ebf3a12930") ) (pad "2" smd roundrect (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "d07bf62f-8eec-4766-97fe-29e94c7f499b") ) (pad "2" smd roundrect (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "a6c2f0fe-e4f6-4674-abe3-9996dd7aa086") ) (pad "3" smd roundrect (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "VI") (pintype "power_in") (uuid "d0ddc8b4-4f44-4a66-b26f-2f55cd038225") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "3e36c75d-6613-4cb2-8e17-72b7200a7a55") (at 44.2976 86.2584) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C4" (at 0 -1.43 0) (layer "F.SilkS") (uuid "bf59faba-47e5-477c-ac7b-fc2e742726d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "0c489dff-5aeb-4f3b-9b02-e7e8005eb8be") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "24bfc401-9a4e-4580-b719-b3effc127409") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aff11abc-d66b-4aca-8b0f-b84c10c40a21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e48adce3-b937-4444-b071-5382bdb42b38") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f08ab224-c17c-453c-acd8-d320ac311a4f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62d5c98a-4b74-4125-a80f-531c99367100") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9cbe54b8-a88c-416c-b188-a3a5db794dad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/8d64b89a-1924-4f6c-af5f-09a59972040a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "27e1dbcb-ba67-411a-9bd3-d60367a92efa") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87f15b89-2b30-4e1b-a52f-ac72e2068437") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c35eb689-02fb-45ee-87d8-788fb1ccde68") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17addb2b-9b47-489c-b90a-c1242c44bcf4") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df7d5f59-1035-4e91-9fb9-187b68fb38bb") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e1e15e9d-17ba-4ea7-83cc-3a75f76d42b4") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f48aad00-ba79-488c-9377-85101c656b42") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1fdbdaea-0b7d-46f6-a633-95f8c1fabc20") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d04c36f6-d7a1-4e8a-9a20-24fd2ce60d43") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "810524be-8402-4834-8ebc-dc6fd091dc66") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "98c13d19-de7c-49ec-b82a-6b05e26feb0b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "VSYS") (pintype "passive") (uuid "2d19b504-e980-4193-9f29-f41f295bb0a4") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "c55df8e3-e12b-4eaf-a483-a43e41ae51a5") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "3ee14914-3721-424b-9d68-da00df912e61") (at 93.66 60.5025 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D11" (at 2.6275 -0.12 180) (layer "F.SilkS") (uuid "9d0961e8-5c06-49d2-8f42-7d015b41641d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "65f210ca-dc58-42a9-8565-571370cc2b47") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8cf0e86e-f069-49cd-8059-002f24cf17da") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf7f4ce5-bf1c-4d87-aa2f-6af1d93f7ba1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "18842a56-d1e1-4893-9fda-78f94975bd15") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "927f1dee-7124-433d-9fe2-d506a796312d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ce40536-7b98-4a42-a90c-821db0e4225f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a23eb5fe-cc00-4c91-a545-f54652b48a0c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ecd079d6-8a8d-4488-bfee-34b5a0fc4d9b") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb6c9ebb-5d8f-42e0-b943-a9efce382a58") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2516f0ba-848e-4153-bf04-2e5a857984b2") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "56233863-c6b5-4e85-ae10-5b632b700c12") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dcdbe4ef-124b-4b5b-ba5f-e1afa385485f") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "08d91c90-5c2b-468b-9226-6035bf59a562") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f4b92a8-caf8-4c7c-b7ea-9dd4e542281b") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "75e6bf55-e8da-40a8-b8b5-c3c41196fdb8") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "da9c87e7-53b3-46d5-b291-a362879c3a47") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7db16ffa-dbd4-454e-8d7a-48e7ae97e197") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f53281d-b05e-4a79-9ce4-5a3c847cb562") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef81f2b8-4484-4551-8058-f5c53fa3f930") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b5ad82e-364e-45e8-a212-0141f766896b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25a61bd9-9f0c-49b5-8641-5ee554ed223c") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f1c2f84-fe2d-4860-83eb-11f57926041a") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ffdba18f-8529-4599-aac4-bd71aca871ae") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1947b63d-e9c7-4ae0-9a7a-a304273f470f") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07a791ce-9380-4af1-b932-b6f23b3cb5a2") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "87da1a1d-1424-407f-b61b-6dbf6bba8a77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5ffffa2b-f5d9-4bc7-860b-17f9f6b560b2") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pinfunction "A2") (pintype "passive") (uuid "765fe374-ee97-41f6-934f-352ba4ec6909") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (uuid "429062b7-f220-49a4-b15e-502b4a2faadb") (at 74.5744 58.7756) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F3" (at 0.0508 3.6068 0) (layer "F.SilkS") (uuid "32fe5231-4279-4152-bf97-d65b32d43012") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 1.5A" (at 0 3.68 0) (layer "F.Fab") (uuid "152bdfd3-c308-41eb-93e4-2e89b3544029") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2f0e13df-16bc-4435-86af-a5777d6327c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7a937643-4f7c-4c1c-aad6-4aee71ac4cd4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c25712f5-586a-4031-b66c-2f2fa23aacd1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C70138 or C22447157" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3cc41616-78f1-41b8-9b72-f1d4d8e5e6a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c3229f09-9064-4856-85f9-607fdd633e15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0f79817d-0fc8-4a53-84d2-35eb06ca9c19") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/9c0d36ad-9c61-40fa-beed-0b24d4379551") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr smd) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "060a4dc4-9419-463d-b216-d7e4c51ad719") ) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "698dcfc7-60a7-4b68-bc40-c1f5a390d624") ) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e2cad55-d978-46aa-9c0f-2bbada763196") ) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c533b143-d007-4f8e-95ce-a8f5184f635f") ) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "59b3a225-5e95-4732-8243-1f6b33e6d625") ) (fp_line (start 4.78 2.98) (end -4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3ba79b61-f166-41eb-8ae8-4939a7943004") ) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "93d874ec-08f6-460a-942a-afe32ad941ec") ) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f6f34584-4acc-45ce-aa17-373a0aeadfde") ) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2d26c1e2-c0c6-4ebc-a065-491db40a4bec") ) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "840ff2de-96e8-4e42-9dff-990319d8ff3f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "0dd5f9ce-9fa8-4fc5-ad4a-4dc66cc284d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 23 "FAN1_PWR") (pintype "passive") (uuid "b48bb4f8-2cf5-460e-8f61-9ff6da87ac74") ) (pad "2" smd roundrect (at 3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 25 "/Fan Channels/FAN1_PWR_IN") (pintype "passive") (uuid "c98ab801-ff44-4e80-88eb-a746368241a0") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "44842254-6f58-4232-a01d-89ba77812ddb") (at 74.4347 77.5832) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R6" (at 0 1.4 0) (layer "F.SilkS") (uuid "b3257527-0e02-4b3a-bb02-2c5bb16c0fc2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "4.99k" (at 0 1.43 0) (layer "F.Fab") (uuid "127ef77e-0665-4ea3-80ac-3cf257b7a6d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e38ed339-09e3-4bb8-b988-a12274b684cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b1af7067-cbed-451d-8034-b95a60d89918") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dce66bfe-70e3-44bf-829e-89548cf68db0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114621" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d5dc9f0d-83e8-4f21-bd59-f467fd908896") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "638f7e25-4b9e-451f-96c1-2b133594b718") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4f18c5e-5786-4f42-a5e0-476c1246fa1b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/adba1fff-18c7-4fb6-97ae-324d243206c4") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "af2a1a8c-3a49-4292-b636-80a4c7abd49a") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a7eeba5a-d7f5-4308-ac71-0dd99997ccad") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc6ee7d4-3758-4227-b024-8e13b63bd1dc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a87e579-c5df-490e-a8ae-ae5dbc139481") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d71ef1a9-b75c-4655-9588-ad7286c3e98b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0be9be5c-58a2-4a8b-8af9-93a1b45c9499") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe7b9bec-4d2a-4a82-9c6a-df18b0a32c71") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69624e8f-6632-44cc-a2f0-e58b0b65f728") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d4b36ea9-24ff-4f56-8e07-a1825ada2aca") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "095c5eef-1e1f-444f-b0c7-f3e6bff360fc") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "102f4b7d-da8f-4d0a-a48d-0f3a902fec9d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "1c7eea72-480b-4439-a7f4-8f38f02e1395") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 14 "Net-(D5-A)") (pintype "passive") (uuid "80401e12-dbae-4351-ace9-7ddbba571376") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:Symbol_Barrel_Polarity" (layer "F.Cu") (uuid "48748a0e-6f77-47f9-ada4-d8e3abf8bd71") (at 48.7172 63.9064) (descr "Barrel connector polarity indicator") (tags "barrel polarity") (property "Reference" "REF**" (at 0 -2 0) (layer "F.SilkS") (hide yes) (uuid "e8a2e7ed-9338-4f8c-bdff-2ed5ea4a3fc2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Symbol_Barrel_Polarity" (at 0 2 0) (layer "F.Fab") (uuid "4958e34d-079d-46ba-83cf-95060e62a1e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:Symbol_Barrel_Polarity" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b7df6e5-b28d-498c-af31-7bc5bba348b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ab46995-fb2f-4fcc-b96f-c776f4b07e8f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "99ce951c-6a80-4fad-a02b-61f8676ca43b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_line (start -2 0.075) (end -1.1 0.075) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "64291474-4b9f-4caa-8266-5a7ccbd14351") ) (fp_line (start 0 0.075) (end 2 0.075) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "ae753ca9-b779-4ef1-b5ba-94bf8be96b74") ) (fp_arc (start 0.75 0.75) (mid -1.007627 0.128033) (end 0.675 -0.675) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "a046db34-2b00-43ea-a3f0-87fb1d148d74") ) (fp_circle (center -3 0.075) (end -3 1) (stroke (width 0.15) (type solid) ) (fill none) (layer "F.SilkS") (uuid "718a62ec-f480-4e44-b585-902e98f44350") ) (fp_circle (center 0 0.075) (end 0 0.25) (stroke (width 0.5) (type solid) ) (fill none) (layer "F.SilkS") (uuid "514edfca-eaca-412f-b1b0-32a982fccbd1") ) (fp_circle (center 3 0.075) (end 3 1) (stroke (width 0.15) (type solid) ) (fill none) (layer "F.SilkS") (uuid "e4e8806a-b9b2-4cea-ae13-c3e48d78eea2") ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "498ad573-90fa-4112-a3ba-3dace9d4ef29") (at 80.3 80.9 90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C1" (at 0.4 -1.5 90) (layer "F.SilkS") (uuid "a38b02cc-d18c-452e-8de0-f855641c8e98") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "b080beb0-0662-40ac-b451-8db67d056fdd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "39846fac-aa94-44fa-82ce-b31bc460a192") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0af22384-7c84-4f22-aa19-1c13ca5c0d3c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1dd2736e-66d3-4bce-8005-968ed854dbc1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 133 241 90) (layer "F.Fab") (hide yes) (uuid "a7026967-c8ee-4c4f-9c56-c88f8ff14cfa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cea00e85-9b5d-4002-856f-9aa27ad8ce4e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4cce322-3b07-4712-bece-1a87a548bceb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/0113ec05-ff50-4170-824e-aedf99bcdf74") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6f87bdf-d854-4db5-bc81-a707e4125849") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e39f4adb-c597-4fc8-8da8-a4efc17b5984") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f869a44-17b8-485d-82ae-807b987c9d0f") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "10be0848-1df0-4f00-9cf2-5f160ff84756") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b2decb3-d093-4273-8637-798a734ba9f3") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d76db392-37c0-4b88-b118-f397faea2ad7") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14c27969-5fa6-476e-bfaf-8f289c4c566e") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ca75005-f648-473d-a7f0-d93a2bb4a39b") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "137c0d48-26c1-40aa-89ad-15e2e20f86e9") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ae78796-26e2-4f7d-9c3f-dd4f0be573ff") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b5556c1b-6298-4853-a187-1580e23e69d6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "8016ca3b-869b-4a4f-ac76-35ef1b55b586") ) (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "3714cd02-ee32-4120-87c1-656d2bbd39b8") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "4a44812a-e26e-4357-9fe6-9b195100c285") (at 80.15 68.85) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D29" (at 0 -1.85 0) (layer "F.SilkS") (uuid "0928c3da-ea6a-4fca-94eb-892f2261bbf2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "79a628f0-6749-45df-9e46-1433bfd1ac72") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7589db3-7324-4412-8263-72bd60796783") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d54bad3e-e8dd-4924-b64a-6d50a0088fee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df8e89ca-1857-4634-9782-8d055ea5fccd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "80257e59-8042-493d-a1a2-7af7445cf05a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "25e07ab6-3c1f-4214-8442-43a7596f1d63") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eaa95630-d712-4dee-a8ba-faff74cdddba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/03d177c9-6c39-4ef8-8206-d6721c5491b6") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5d16553e-1aee-4254-8fb2-25e499fe6686") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "487a38ba-d3b3-42ff-8435-0102bd1f73d6") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e08060e-942e-4fc1-8bbe-10843603d66e") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6660e0d2-2cb0-4515-a996-3d16004105d3") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a325aff3-7060-4979-9842-9886b3e6a519") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ca6f0bb9-61d0-4646-a6f8-7da707cbd7c8") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "28365cb6-47d2-4607-bc59-f0e268972100") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27008ee1-8bf4-4601-9618-74fbf7d5ebd7") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "45708214-222d-44fe-8f84-1243c80c58ba") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "60846474-f99c-4b59-8426-a7a7e82b9340") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69cb0015-6991-4959-834b-704f028f4041") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8090e0d-2e0b-45a7-bf8e-e408d1976254") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a31f1a24-6396-4b39-8555-0914ec616376") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6e5cd48d-6374-410f-ad15-7d3173671ec0") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c54f2ea6-e562-4e1d-aea6-e1187cf2d0bd") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e36550dc-6484-420a-8ad1-27ad91da5add") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b695e4ca-df56-44d2-94bf-0108501bb331") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "a960a9cb-36b3-479c-93bc-869dcf052e2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e5ada4ef-9658-4043-82b0-49a6299a733d") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "03c82d12-f02a-451f-b648-f6e6321c664b") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "4a589d27-e4ec-410a-a7e5-b86d4b2db2ad") (at 91.66 60.5025 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D2" (at 2.6275 0.03 180) (layer "F.SilkS") (uuid "ffabc8d8-7223-4b94-94ba-db7c916de237") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "c1e8c932-dfb9-42ca-9231-1c1c3340ee36") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c1009567-8c88-4773-8f53-0a5c721c247e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "541340b4-4c48-47ca-a8f2-226f59be0111") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5c83593-ac57-4992-a786-977f566284f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4a95f1d1-3252-479a-b66b-8196fd64ce53") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "71244d4a-a394-47ea-8838-548e2f671641") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "165aa7b8-aa2d-434c-b613-06d8ed6f28db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/bdc419e0-9c06-4d99-8061-21132e7c47c6") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77fc2055-2439-4ad9-b5b6-0cd3ac22cbe2") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee082bdc-e853-4544-ac42-ead91559f7e5") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d9faa0cb-4cdf-4429-818a-d21265f1b135") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ab94fb52-697a-4d85-869b-0aa56f55042a") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6720891e-fef8-4aad-93f3-f02bb5008986") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9eddb3a-6671-4419-b265-392067e7a7b8") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d96675db-528b-426d-94ba-20f9eae010fd") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f68a462-ad78-46be-8cc3-3fa5f34cbee2") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c50234ec-b751-474d-a94f-0f8bd48f0910") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd178ad3-3ef1-4f40-9ddb-c245bd98a8ef") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e53c5f0-a182-4d7a-85c9-0a3919c44d39") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "31e9cf22-01a8-466c-b4f4-d8daf92b434b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "666813a8-9e8f-4bdc-8a48-9d0633bdd2bd") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95a5f746-ebd1-4327-ac65-555e160bd478") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a02c61d4-bed4-4266-aac3-ea893ada3414") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27f1b200-0d19-4e33-860f-009aa8fd1f30") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f62cc09-91b4-4c92-af28-bae8cbd24393") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "978fbc6b-314a-4db3-8864-709ac37ac471") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "64b7d33e-574e-4263-bcda-2ab89482f548") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "A2") (pintype "passive") (uuid "9775d9b3-7042-48b1-ad15-c16888b32871") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:SW_PUSH_6mm_SMD_2" (layer "F.Cu") (uuid "4d2fcf14-ba48-45f8-bec9-66e367853057") (at 81.99 127.2612) (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf") (tags "tact sw push 6mm") (property "Reference" "SW1" (at 3.15 2.2 0) (layer "F.SilkS") (uuid "2dbde09d-53e3-4560-a836-2a3356557da9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SW_Push" (at 3.75 6.7 0) (layer "F.Fab") (uuid "9353973c-b4ba-4efb-9e05-9824871e022d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:SW_PUSH_6mm_SMD_2" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "51c5720a-3f0c-427e-b271-df86ed69744c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cd41ab09-dad9-46ac-b063-bfbf5b90271d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "881ec641-8f55-4fd6-a500-4951d67d7055") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b1241015-9290-4399-9d89-6d0713f93381") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C221880" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "47d5737f-67ed-464d-be9e-65fbaf9f3560") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f3252aea-bcf5-46bb-bc70-97896ded2601") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/21c2b408-da95-4394-b5b2-e408611b3d07") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start -0.25 1.5) (end -0.25 3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ca1592a-6a71-4b30-bfc1-0a7463fdf78d") ) (fp_line (start 1 5.5) (end 5.5 5.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7ff9d323-6a9f-4048-9871-63a406665787") ) (fp_line (start 5.5 -1) (end 1 -1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d00328d0-1313-46a4-b517-2302583a1a5f") ) (fp_line (start 6.75 3) (end 6.75 1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7d5b54fd-cd29-4fa9-be3b-ff96a55d7dde") ) (fp_line (start -2.5 -1.25) (end -2.5 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1a64ba67-682c-48e9-8bb9-5e26eb6f2897") ) (fp_line (start -2.5 5.75) (end -2.5 -1.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "95aab764-b662-4875-b798-04071fb3b466") ) (fp_line (start -2.5 5.75) (end -2.5 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c22afb85-2196-4f16-9827-662738653b52") ) (fp_line (start -1.5 -1.5) (end -2.5 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "64cd5791-ebeb-44bb-8df3-9edac822fb65") ) (fp_line (start -1.5 -1.5) (end -1.25 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "459205c5-2c79-4ead-9172-68a8998ee17e") ) (fp_line (start -1.5 6) (end -2.5 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f572eb22-53c0-4362-b7a4-ebb92537e3d3") ) (fp_line (start -1.5 6) (end -1.25 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f7b5d571-1393-4906-bd1f-2a826ea2bde3") ) (fp_line (start -1.25 -1.5) (end 7.75 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "de1c4fd8-fa53-47c2-ab3b-f132d8f44fe1") ) (fp_line (start 7.75 -1.5) (end 8 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "260376dc-139c-44a0-98e6-3bc8de96b603") ) (fp_line (start 7.75 6) (end -1.25 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "edc5f1eb-ecb4-46bd-a60b-1e8be1d3ff5b") ) (fp_line (start 7.75 6) (end 8 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6d632c70-2f24-4d7d-8d08-c538fd18115b") ) (fp_line (start 8 -1.5) (end 9 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "af7a0974-5ff8-45f3-b2fd-16a463938842") ) (fp_line (start 9 -1.5) (end 9 -1.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6bef1d13-f8cc-46b8-b8de-a30c959e9036") ) (fp_line (start 9 -1.25) (end 9 5.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b98cc88-6556-41a0-aea8-16d2a0c2277b") ) (fp_line (start 9 6) (end 8 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5c523b9b-9e6c-4634-ab1b-79faaa1198f9") ) (fp_line (start 9 6) (end 9 5.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ff74aad-2e28-43d6-bfae-cbda89349e0a") ) (fp_line (start 0.25 -0.75) (end 3.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1bc915c2-262b-4404-9d61-c8a07acbfe22") ) (fp_line (start 0.25 5.25) (end 0.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "008affd2-bc94-4bcb-83d1-8d169275b4be") ) (fp_line (start 3.25 -0.75) (end 6.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d1e1c60-cf14-4766-88dd-9fccef13f7bf") ) (fp_line (start 6.25 -0.75) (end 6.25 5.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "efc353e9-6f6d-4ef5-91a1-868c820ff8e3") ) (fp_line (start 6.25 5.25) (end 0.25 5.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ed8c443-8459-49b2-8f39-726f2939d88e") ) (fp_circle (center 3.25 2.25) (end 1.25 2.5) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "b3429ed9-53ac-4cc8-bdf9-5c2c1de620f5") ) (fp_text user "${REFERENCE}" (at 3.25 2.25 0) (layer "F.Fab") (uuid "8ec472af-5168-4075-bda1-3e05ff595b48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -0.75 0 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 40 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "44f73dd6-d29b-4f2f-b8a6-1820cdcafc6c") ) (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 40 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "72b21112-f2a8-436b-a6cf-e52de35340c6") ) (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 40 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "f1f2742e-0ee4-47db-bafd-676778404aef") ) (pad "1" smd roundrect (at 7.25 0 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 40 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "b042e22c-d225-4ce8-b8ff-67404405163e") ) (pad "2" smd roundrect (at -0.75 4.5 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "5b9cf40d-facb-47c6-9daf-407604e33c4c") ) (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "f1ad95d2-9489-42b7-bb1f-34ac646b7128") ) (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "ce3f1a90-a0f5-491a-9981-2e1188ae7586") ) (pad "2" smd roundrect (at 7.25 4.5 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "6f837e7f-cacc-4e8e-a259-71bfa02b9529") ) (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "4eb5fad5-8048-4c21-bf6a-ede62b9ef129") (at 109.2189 103.0124 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C24" (at 2.3357 0.0916 90) (layer "F.SilkS") (uuid "9f2552ed-7543-4d2c-a31a-4f0b0aa75bb5") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "9cd021e1-6c5e-40e0-aec4-ca28d24c98f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "be5f6dea-b07a-4a86-bf9e-4441e0a217c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e8952dd8-c30d-431b-be0a-36a863d0c7ba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cfc88586-ab3b-4ef6-a6c9-ac62fe51255c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "acf1ce41-c591-41e7-9bb0-32c10055dd0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cdec19de-b601-4e4f-8f41-8da30dfca843") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a58e235f-1006-4694-8937-1dd356f55a41") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b25de442-5cb5-4f8d-869f-430b2648b615") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4573649d-c966-4ff6-89c0-6774f0cc1490") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a78e7533-b339-46f9-9812-fb39ae94319e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "37b12cbe-1aa1-4051-b075-c3741b49869a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "94b23e9c-138f-4b59-989d-e0f01d022840") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "36a5ba80-cccb-4b9f-9c2d-d6615c7f34d7") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27514cc7-9ae2-4b43-9288-1150beae1b6f") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7eb0d4a1-e135-4e0c-9006-dfffcaf515a6") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "068fc850-5587-4a6b-b69a-b00473f38471") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c076856-4b3a-4c10-81a2-f8452040a817") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "70d63b13-8cbe-44eb-a135-5d1702b2daf6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pintype "passive") (uuid "1bb2145f-8672-4542-b038-c3c557625c2d") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2e3c4b5f-1145-4d9c-8827-f69ff7c69f44") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:OSHW-Logo_7.5x8mm_SilkScreen" (layer "F.Cu") (uuid "4f1e6075-ad9c-41c8-a0e1-a448dc6ac84f") (at 64.36 84.55) (descr "Open Source Hardware Logo") (tags "Logo OSHW") (property "Reference" "REF**" (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "1f193b85-e30d-400f-b824-b47d6782076f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "OSHW-Logo_7.5x8mm_SilkScreen" (at 0.75 0 0) (layer "F.Fab") (hide yes) (uuid "d4b1e3de-f674-42b2-b949-1b115e47c085") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:OSHW-Logo_7.5x8mm_SilkScreen" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7a18f57e-5525-40f5-bb9a-e782e2171974") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d06034ed-e39b-43d1-a890-a2028afea054") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9a4fbf38-b3f4-47a9-a9e1-28464959e5b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr exclude_from_pos_files exclude_from_bom) (fp_poly (pts (xy 2.391388 1.937645) (xy 2.448865 1.955206) (xy 2.485872 1.977395) (xy 2.497927 1.994942) (xy 2.494609 2.015742) (xy 2.473079 2.048419) (xy 2.454874 2.071562) (xy 2.417344 2.113402) (xy 2.389148 2.131005) (xy 2.365111 2.129856) (xy 2.293808 2.11171) (xy 2.241442 2.112534) (xy 2.198918 2.133098) (xy 2.184642 2.145134) (xy 2.138947 2.187483) (xy 2.138947 2.740526) (xy 1.955131 2.740526) (xy 1.955131 1.938421) (xy 2.047039 1.938421) (xy 2.102219 1.940603) (xy 2.130688 1.948351) (xy 2.138943 1.963468) (xy 2.138947 1.963916) (xy 2.142845 1.979749) (xy 2.160474 1.977684) (xy 2.184901 1.966261) (xy 2.23535 1.945005) (xy 2.276316 1.932216) (xy 2.329028 1.928938) (xy 2.391388 1.937645) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c9350f75-6d51-4458-a2a2-72df0a534d60") ) (fp_poly (pts (xy 2.173167 3.191447) (xy 2.237408 3.204112) (xy 2.27398 3.222864) (xy 2.312453 3.254017) (xy 2.257717 3.323127) (xy 2.223969 3.364979) (xy 2.201053 3.385398) (xy 2.178279 3.388517) (xy 2.144956 3.378472) (xy 2.129314 3.372789) (xy 2.065542 3.364404) (xy 2.00714 3.382378) (xy 1.964264 3.422982) (xy 1.957299 3.435929) (xy 1.949713 3.470224) (xy 1.943859 3.533427) (xy 1.940011 3.62106) (xy 1.938443 3.72864) (xy 1.938421 3.743944) (xy 1.938421 4.010526) (xy 1.754605 4.010526) (xy 1.754605 3.19171) (xy 1.846513 3.19171) (xy 1.899507 3.193094) (xy 1.927115 3.199252) (xy 1.937324 3.213194) (xy 1.938421 3.226344) (xy 1.938421 3.260978) (xy 1.98245 3.226344) (xy 2.032937 3.202716) (xy 2.10076 3.191033) (xy 2.173167 3.191447) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "d04fe234-3a58-4cc5-b8fa-865d2f0f821a") ) (fp_poly (pts (xy -1.320119 3.193486) (xy -1.295112 3.200982) (xy -1.28705 3.217451) (xy -1.286711 3.224886) (xy -1.285264 3.245594) (xy -1.275302 3.248845) (xy -1.248388 3.234648) (xy -1.232402 3.224948) (xy -1.181967 3.204175) (xy -1.121728 3.193904) (xy -1.058566 3.193114) (xy -0.999363 3.200786) (xy -0.950998 3.215898) (xy -0.920354 3.237432) (xy -0.914311 3.264366) (xy -0.917361 3.27166) (xy -0.939594 3.301937) (xy -0.97407 3.339175) (xy -0.980306 3.345195) (xy -1.013167 3.372875) (xy -1.04152 3.381818) (xy -1.081173 3.375576) (xy -1.097058 3.371429) (xy -1.146491 3.361467) (xy -1.181248 3.365947) (xy -1.2106 3.381746) (xy -1.237487 3.402949) (xy -1.25729 3.429614) (xy -1.271052 3.466827) (xy -1.279816 3.519673) (xy -1.284626 3.593237) (xy -1.286526 3.692605) (xy -1.286711 3.752601) (xy -1.286711 4.010526) (xy -1.453816 4.010526) (xy -1.453816 3.19171) (xy -1.370264 3.19171) (xy -1.320119 3.193486) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "6244b82f-2644-445e-926b-d878c3aefa5d") ) (fp_poly (pts (xy 1.320131 2.198533) (xy 1.32171 2.321089) (xy 1.327481 2.414179) (xy 1.338991 2.481651) (xy 1.35779 2.527355) (xy 1.385426 2.555139) (xy 1.423448 2.568854) (xy 1.470526 2.572358) (xy 1.519832 2.568432) (xy 1.557283 2.554089) (xy 1.584428 2.525478) (xy 1.602815 2.478751) (xy 1.613993 2.410058) (xy 1.619511 2.31555) (xy 1.620921 2.198533) (xy 1.620921 1.938421) (xy 1.804736 1.938421) (xy 1.804736 2.740526) (xy 1.712828 2.740526) (xy 1.657422 2.738281) (xy 1.628891 2.730396) (xy 1.620921 2.715428) (xy 1.61612 2.702097) (xy 1.597014 2.704917) (xy 1.558504 2.723783) (xy 1.470239 2.752887) (xy 1.376623 2.750825) (xy 1.286921 2.719221) (xy 1.244204 2.694257) (xy 1.211621 2.667226) (xy 1.187817 2.633405) (xy 1.171439 2.588068) (xy 1.161131 2.526489) (xy 1.155541 2.443943) (xy 1.153312 2.335705) (xy 1.153026 2.252004) (xy 1.153026 1.938421) (xy 1.320131 1.938421) (xy 1.320131 2.198533) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "53e12d64-9ddb-45f3-b5ea-ab71d089612f") ) (fp_poly (pts (xy -1.002043 1.952226) (xy -0.960454 1.97209) (xy -0.920175 2.000784) (xy -0.88949 2.033809) (xy -0.867139 2.075931) (xy -0.851864 2.131915) (xy -0.842408 2.206528) (xy -0.837513 2.304535) (xy -0.835919 2.430702) (xy -0.835894 2.443914) (xy -0.835527 2.740526) (xy -1.019343 2.740526) (xy -1.019343 2.467081) (xy -1.019473 2.365777) (xy -1.020379 2.292353) (xy -1.022827 2.241271) (xy -1.027586 2.20699) (xy -1.035426 2.183971) (xy -1.047115 2.166673) (xy -1.063398 2.149581) (xy -1.120366 2.112857) (xy -1.182555 2.106042) (xy -1.241801 2.129261) (xy -1.262405 2.146543) (xy -1.27753 2.162791) (xy -1.28839 2.180191) (xy -1.29569 2.204212) (xy -1.300137 2.240322) (xy -1.302436 2.293988) (xy -1.303296 2.37068) (xy -1.303422 2.464043) (xy -1.303422 2.740526) (xy -1.487237 2.740526) (xy -1.487237 1.938421) (xy -1.395329 1.938421) (xy -1.340149 1.940603) (xy -1.31168 1.948351) (xy -1.303425 1.963468) (xy -1.303422 1.963916) (xy -1.299592 1.97872) (xy -1.282699 1.97704) (xy -1.249112 1.960773) (xy -1.172937 1.93684) (xy -1.0858 1.934178) (xy -1.002043 1.952226) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "dfc70a77-ad02-4160-8bcd-36f4d0eafa50") ) (fp_poly (pts (xy 2.946576 1.945419) (xy 3.043395 1.986549) (xy 3.07389 2.006571) (xy 3.112865 2.03734) (xy 3.137331 2.061533) (xy 3.141578 2.069413) (xy 3.129584 2.086899) (xy 3.098887 2.11657) (xy 3.074312 2.137279) (xy 3.007046 2.191336) (xy 2.95393 2.146642) (xy 2.912884 2.117789) (xy 2.872863 2.107829) (xy 2.827059 2.110261) (xy 2.754324 2.128345) (xy 2.704256 2.165881) (xy 2.673829 2.226562) (xy 2.660017 2.314081) (xy 2.660013 2.314136) (xy 2.661208 2.411958) (xy 2.679772 2.48373) (xy 2.716804 2.532595) (xy 2.74205 2.549143) (xy 2.809097 2.569749) (xy 2.880709 2.569762) (xy 2.943015 2.549768) (xy 2.957763 2.54) (xy 2.99475 2.515047) (xy 3.023668 2.510958) (xy 3.054856 2.52953) (xy 3.089336 2.562887) (xy 3.143912 2.619196) (xy 3.083318 2.669142) (xy 2.989698 2.725513) (xy 2.884125 2.753293) (xy 2.773798 2.751282) (xy 2.701343 2.732862) (xy 2.616656 2.68731) (xy 2.548927 2.61565) (xy 2.518157 2.565066) (xy 2.493236 2.492488) (xy 2.480766 2.400569) (xy 2.48067 2.300948) (xy 2.49287 2.205267) (xy 2.51729 2.125169) (xy 2.521136 2.116956) (xy 2.578093 2.036413) (xy 2.655209 1.977771) (xy 2.74639 1.942247) (xy 2.845543 1.931057) (xy 2.946576 1.945419) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cc7d9e57-6abc-4c20-93c5-d464e153a983") ) (fp_poly (pts (xy 0.811669 1.94831) (xy 0.896192 1.99434) (xy 0.962321 2.067006) (xy 0.993478 2.126106) (xy 1.006855 2.178305) (xy 1.015522 2.252719) (xy 1.019237 2.338442) (xy 1.017754 2.424569) (xy 1.010831 2.500193) (xy 1.002745 2.540584) (xy 0.975465 2.59584) (xy 0.92822 2.65453) (xy 0.871282 2.705852) (xy 0.814924 2.739005) (xy 0.81355 2.739531) (xy 0.743616 2.754018) (xy 0.660737 2.754377) (xy 0.581977 2.741188) (xy 0.551566 2.730617) (xy 0.473239 2.686201) (xy 0.417143 2.628007) (xy 0.380286 2.550965) (xy 0.35968 2.450001) (xy 0.355018 2.397116) (xy 0.355613 2.330663) (xy 0.534736 2.330663) (xy 0.54077 2.42763) (xy 0.558138 2.501523) (xy 0.58574 2.548736) (xy 0.605404 2.562237) (xy 0.655787 2.571651) (xy 0.715673 2.568864) (xy 0.767449 2.555316) (xy 0.781027 2.547862) (xy 0.816849 2.504451) (xy 0.840493 2.438014) (xy 0.850558 2.357161) (xy 0.845642 2.270502) (xy 0.834655 2.218349) (xy 0.803109 2.157951) (xy 0.753311 2.120197) (xy 0.693337 2.107143) (xy 0.631264 2.120849) (xy 0.583582 2.154372) (xy 0.558525 2.182031) (xy 0.5439 2.209294) (xy 0.536929 2.24619) (xy 0.534833 2.30275) (xy 0.534736 2.330663) (xy 0.355613 2.330663) (xy 0.356282 2.255994) (xy 0.379265 2.140271) (xy 0.423972 2.049941) (xy 0.490405 1.985) (xy 0.578565 1.945445) (xy 0.597495 1.940858) (xy 0.711266 1.93009) (xy 0.811669 1.94831) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "f706b715-f9f1-4a63-a1bb-45b6e47989b9") ) (fp_poly (pts (xy 0.37413 3.195104) (xy 0.44022 3.200066) (xy 0.526626 3.459079) (xy 0.613031 3.718092) (xy 0.640124 3.626184) (xy 0.656428 3.569384) (xy 0.677875 3.492625) (xy 0.701035 3.408251) (xy 0.71328 3.362993) (xy 0.759344 3.19171) (xy 0.949387 3.19171) (xy 0.892582 3.371349) (xy 0.864607 3.459704) (xy 0.830813 3.566281) (xy 0.79552 3.677454) (xy 0.764013 3.776579) (xy 0.69225 4.002171) (xy 0.537286 4.012253) (xy 0.49527 3.873528) (xy 0.469359 3.787351) (xy 0.441083 3.692347) (xy 0.416369 3.608441) (xy 0.415394 3.605102) (xy 0.396935 3.548248) (xy 0.380649 3.509456) (xy 0.369242 3.494787) (xy 0.366898 3.496483) (xy 0.358671 3.519225) (xy 0.343038 3.56794) (xy 0.321904 3.636502) (xy 0.29717 3.718785) (xy 0.283787 3.764046) (xy 0.211311 4.010526) (xy 0.057495 4.010526) (xy -0.065469 3.622006) (xy -0.100012 3.513022) (xy -0.131479 3.414048) (xy -0.158384 3.329736) (xy -0.179241 3.264734) (xy -0.192562 3.223692) (xy -0.196612 3.211701) (xy -0.193406 3.199423) (xy -0.168235 3.194046) (xy -0.115854 3.194584) (xy -0.107655 3.19499) (xy -0.010518 3.200066) (xy 0.0531 3.434013) (xy 0.076484 3.519333) (xy 0.097381 3.594335) (xy 0.113951 3.652507) (xy 0.124354 3.687337) (xy 0.126276 3.693016) (xy 0.134241 3.686486) (xy 0.150304 3.652654) (xy 0.172621 3.596127) (xy 0.199345 3.52151) (xy 0.221937 3.454107) (xy 0.308041 3.190143) (xy 0.37413 3.195104) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "ff578ff9-0807-4340-a850-f3dfe6c3fe43") ) (fp_poly (pts (xy -3.373216 1.947104) (xy -3.285795 1.985754) (xy -3.21943 2.05029) (xy -3.174024 2.140812) (xy -3.149482 2.257418) (xy -3.147723 2.275624) (xy -3.146344 2.403984) (xy -3.164216 2.516496) (xy -3.20025 2.607688) (xy -3.219545 2.637022) (xy -3.286755 2.699106) (xy -3.37235 2.739316) (xy -3.46811 2.756003) (xy -3.565813 2.747517) (xy -3.640083 2.72138) (xy -3.703953 2.677335) (xy -3.756154 2.619587) (xy -3.757057 2.618236) (xy -3.778256 2.582593) (xy -3.792033 2.546752) (xy -3.800376 2.501519) (xy -3.805273 2.437701) (xy -3.807431 2.385368) (xy -3.808329 2.33791) (xy -3.641257 2.33791) (xy -3.639624 2.385154) (xy -3.633696 2.448046) (xy -3.623239 2.488407) (xy -3.604381 2.517122) (xy -3.586719 2.533896) (xy -3.524106 2.569016) (xy -3.458592 2.57371) (xy -3.397579 2.54844) (xy -3.367072 2.520124) (xy -3.345089 2.491589) (xy -3.332231 2.464284) (xy -3.326588 2.42875) (xy -3.326249 2.375524) (xy -3.327988 2.326506) (xy -3.331729 2.256482) (xy -3.337659 2.211064) (xy -3.348347 2.18144) (xy -3.366361 2.158797) (xy -3.380637 2.145855) (xy -3.440349 2.11186) (xy -3.504766 2.110165) (xy -3.558781 2.130301) (xy -3.60486 2.172352) (xy -3.632311 2.241428) (xy -3.641257 2.33791) (xy -3.808329 2.33791) (xy -3.809401 2.281299) (xy -3.806036 2.203468) (xy -3.795955 2.14493) (xy -3.777774 2.098737) (xy -3.75011 2.057942) (xy -3.739854 2.045828) (xy -3.675722 1.985474) (xy -3.606934 1.95022) (xy -3.522811 1.93545) (xy -3.481791 1.934243) (xy -3.373216 1.947104) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "60bfde3a-39bd-4f13-88ca-19ee7b4673e6") ) (fp_poly (pts (xy -0.267369 4.010526) (xy -0.359277 4.010526) (xy -0.412623 4.008962) (xy -0.440407 4.002485) (xy -0.45041 3.988418) (xy -0.451185 3.978906) (xy -0.452872 3.959832) (xy -0.46351 3.956174) (xy -0.491465 3.967932) (xy -0.513205 3.978906) (xy -0.596668 4.004911) (xy -0.687396 4.006416) (xy -0.761158 3.987021) (xy -0.829846 3.940165) (xy -0.882206 3.871004) (xy -0.910878 3.789427) (xy -0.911608 3.784866) (xy -0.915868 3.735101) (xy -0.917986 3.663659) (xy -0.917816 3.609626) (xy -0.73528 3.609626) (xy -0.731051 3.681441) (xy -0.721432 3.740634) (xy -0.70841 3.77406) (xy -0.659144 3.81974) (xy -0.60065 3.836115) (xy -0.540329 3.822873) (xy -0.488783 3.783373) (xy -0.469262 3.756807) (xy -0.457848 3.725106) (xy -0.452502 3.678832) (xy -0.451185 3.609328) (xy -0.453542 3.540499) (xy -0.459767 3.480026) (xy -0.468592 3.439556) (xy -0.470063 3.435929) (xy -0.505653 3.392802) (xy -0.5576 3.369124) (xy -0.615722 3.365301) (xy -0.66984 3.381738) (xy -0.709774 3.41884) (xy -0.713917 3.426222) (xy -0.726884 3.471239) (xy -0.733948 3.535967) (xy -0.73528 3.609626) (xy -0.917816 3.609626) (xy -0.917729 3.58223) (xy -0.916528 3.538405) (xy -0.908355 3.429988) (xy -0.89137 3.348588) (xy -0.863113 3.288412) (xy -0.821128 3.243666) (xy -0.780368 3.2174) (xy -0.723419 3.198935) (xy -0.652589 3.192602) (xy -0.580059 3.19776) (xy -0.518014 3.213769) (xy -0.485232 3.23292) (xy -0.451185 3.263732) (xy -0.451185 2.87421) (xy -0.267369 2.87421) (xy -0.267369 4.010526) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "544dc0e6-0720-4ccd-9a4e-98e2324b387e") ) (fp_poly (pts (xy 3.558784 1.935554) (xy 3.601574 1.945949) (xy 3.683609 1.984013) (xy 3.753757 2.042149) (xy 3.802305 2.111852) (xy 3.808975 2.127502) (xy 3.818124 2.168496) (xy 3.824529 2.229138) (xy 3.82671 2.29043) (xy 3.82671 2.406316) (xy 3.584407 2.406316) (xy 3.484471 2.406693) (xy 3.414069 2.408987) (xy 3.369313 2.414938) (xy 3.346315 2.426285) (xy 3.341189 2.444771) (xy 3.350048 2.472136) (xy 3.365917 2.504155) (xy 3.410184 2.557592) (xy 3.471699 2.584215) (xy 3.546885 2.583347) (xy 3.632053 2.554371) (xy 3.705659 2.518611) (xy 3.766734 2.566904) (xy 3.82781 2.615197) (xy 3.770351 2.668285) (xy 3.693641 2.718445) (xy 3.599302 2.748688) (xy 3.497827 2.757151) (xy 3.399711 2.741974) (xy 3.383881 2.736824) (xy 3.297647 2.691791) (xy 3.233501 2.624652) (xy 3.190091 2.533405) (xy 3.166064 2.416044) (xy 3.165784 2.413529) (xy 3.163633 2.285627) (xy 3.172329 2.239997) (xy 3.342105 2.239997) (xy 3.357697 2.247013) (xy 3.400029 2.252388) (xy 3.462434 2.255457) (xy 3.501981 2.255921) (xy 3.575728 2.25563) (xy 3.62184 2.253783) (xy 3.6461 2.248912) (xy 3.654294 2.239555) (xy 3.652206 2.224245) (xy 3.650455 2.218322) (xy 3.62056 2.162668) (xy 3.573542 2.117815) (xy 3.532049 2.098105) (xy 3.476926 2.099295) (xy 3.421068 2.123875) (xy 3.374212 2.16457) (xy 3.346094 2.214108) (xy 3.342105 2.239997) (xy 3.172329 2.239997) (xy 3.185074 2.173133) (xy 3.227611 2.078727) (xy 3.288747 2.005088) (xy 3.365985 1.954893) (xy 3.45683 1.930822) (xy 3.558784 1.935554) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c2bbbb45-6b17-4ee0-9b76-a376bc3cdcb8") ) (fp_poly (pts (xy 0.018628 1.935547) (xy 0.081908 1.947548) (xy 0.147557 1.972648) (xy 0.154572 1.975848) (xy 0.204356 2.002026) (xy 0.238834 2.026353) (xy 0.249978 2.041937) (xy 0.239366 2.067353) (xy 0.213588 2.104853) (xy 0.202146 2.118852) (xy 0.154992 2.173954) (xy 0.094201 2.138086) (xy 0.036347 2.114192) (xy -0.0305 2.10142) (xy -0.094606 2.100613) (xy -0.144236 2.112615) (xy -0.156146 2.120105) (xy -0.178828 2.15445) (xy -0.181584 2.194013) (xy -0.164612 2.22492) (xy -0.154573 2.230913) (xy -0.12449 2.238357) (xy -0.071611 2.247106) (xy -0.006425 2.255467) (xy 0.0056 2.256778) (xy 0.110297 2.274888) (xy 0.186232 2.305651) (xy 0.236592 2.351907) (xy 0.264564 2.416497) (xy 0.273278 2.495387) (xy 0.26124 2.585065) (xy 0.222151 2.655486) (xy 0.155855 2.706777) (xy 0.062194 2.739067) (xy -0.041777 2.751807) (xy -0.126562 2.751654) (xy -0.195335 2.740083) (xy -0.242303 2.724109) (xy -0.30165 2.696275) (xy -0.356494 2.663973) (xy -0.375987 2.649755) (xy -0.426119 2.608835) (xy -0.305197 2.486477) (xy -0.236457 2.531967) (xy -0.167512 2.566133) (xy -0.093889 2.584004) (xy -0.023117 2.585889) (xy 0.037274 2.572101) (xy 0.079757 2.542949) (xy 0.093474 2.518352) (xy 0.091417 2.478904) (xy 0.05733 2.448737) (xy -0.008692 2.427906) (xy -0.081026 2.418279) (xy -0.192348 2.39991) (xy -0.275048 2.365254) (xy -0.330235 2.313297) (xy -0.359012 2.243023) (xy -0.362999 2.159707) (xy -0.343307 2.072681) (xy -0.298411 2.006902) (xy -0.227909 1.962068) (xy -0.131399 1.937879) (xy -0.0599 1.933137) (xy 0.018628 1.935547) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "38faa2f4-eb01-4c07-a38b-7fd0b6e5fc4e") ) (fp_poly (pts (xy 2.701193 3.196078) (xy 2.781068 3.216845) (xy 2.847962 3.259705) (xy 2.880351 3.291723) (xy 2.933445 3.367413) (xy 2.963873 3.455216) (xy 2.974327 3.56315) (xy 2.97438 3.571875) (xy 2.974473 3.659605) (xy 2.469534 3.659605) (xy 2.480298 3.705559) (xy 2.499732 3.747178) (xy 2.533745 3.790544) (xy 2.54086 3.797467) (xy 2.602003 3.834935) (xy 2.671729 3.841289) (xy 2.751987 3.816638) (xy 2.765592 3.81) (xy 2.807319 3.789819) (xy 2.835268 3.778321) (xy 2.840145 3.777258) (xy 2.857168 3.787583) (xy 2.889633 3.812845) (xy 2.906114 3.82665) (xy 2.940264 3.858361) (xy 2.951478 3.879299) (xy 2.943695 3.89856) (xy 2.939535 3.903827) (xy 2.911357 3.926878) (xy 2.864862 3.954892) (xy 2.832434 3.971246) (xy 2.740385 4.000059) (xy 2.638476 4.009395) (xy 2.541963 3.998332) (xy 2.514934 3.990412) (xy 2.431276 3.945581) (xy 2.369266 3.876598) (xy 2.328545 3.782794) (xy 2.308755 3.663498) (xy 2.306582 3.601118) (xy 2.312926 3.510298) (xy 2.473157 3.510298) (xy 2.488655 3.517012) (xy 2.530312 3.52228) (xy 2.590876 3.525389) (xy 2.631907 3.525921) (xy 2.705711 3.525408) (xy 2.752293 3.523006) (xy 2.777848 3.517422) (xy 2.788569 3.507361) (xy 2.790657 3.492763) (xy 2.776331 3.447796) (xy 2.740262 3.403353) (xy 2.692815 3.369242) (xy 2.645349 3.355288) (xy 2.580879 3.367666) (xy 2.52507 3.403452) (xy 2.486374 3.455033) (xy 2.473157 3.510298) (xy 2.312926 3.510298) (xy 2.315821 3.468866) (xy 2.344336 3.363498) (xy 2.392729 3.284178) (xy 2.461604 3.230071) (xy 2.551565 3.200343) (xy 2.6003 3.194618) (xy 2.701193 3.196078) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "235eea13-969e-4338-aec1-83b8afca912e") ) (fp_poly (pts (xy -1.802982 1.957027) (xy -1.78633 1.964866) (xy -1.728695 2.007086) (xy -1.674195 2.0687) (xy -1.633501 2.136543) (xy -1.621926 2.167734) (xy -1.611366 2.223449) (xy -1.605069 2.290781) (xy -1.604304 2.318585) (xy -1.604211 2.406316) (xy -2.10915 2.406316) (xy -2.098387 2.45227) (xy -2.071967 2.50662) (xy -2.025778 2.553591) (xy -1.970828 2.583848) (xy -1.935811 2.590131) (xy -1.888323 2.582506) (xy -1.831665 2.563383) (xy -1.812418 2.554584) (xy -1.741241 2.519036) (xy -1.680498 2.565367) (xy -1.645448 2.596703) (xy -1.626798 2.622567) (xy -1.625853 2.630158) (xy -1.642515 2.648556) (xy -1.67903 2.676515) (xy -1.712172 2.698327) (xy -1.801607 2.737537) (xy -1.901871 2.755285) (xy -2.001246 2.75067) (xy -2.080461 2.726551) (xy -2.16212 2.674884) (xy -2.220151 2.606856) (xy -2.256454 2.518843) (xy -2.272928 2.407216) (xy -2.274389 2.356138) (xy -2.268543 2.239091) (xy -2.267825 2.235686) (xy -2.100511 2.235686) (xy -2.095903 2.246662) (xy -2.076964 2.252715) (xy -2.037902 2.25531) (xy -1.972923 2.25591) (xy -1.947903 2.255921) (xy -1.871779 2.255014) (xy -1.823504 2.25172) (xy -1.79754 2.245181) (xy -1.788352 2.234537) (xy -1.788027 2.231119) (xy -1.798513 2.203956) (xy -1.824758 2.165903) (xy -1.836041 2.152579) (xy -1.877928 2.114896) (xy -1.921591 2.10008) (xy -1.945115 2.098842) (xy -2.008757 2.114329) (xy -2.062127 2.15593) (xy -2.095981 2.216353) (xy -2.096581 2.218322) (xy -2.100511 2.235686) (xy -2.267825 2.235686) (xy -2.249101 2.146928) (xy -2.214078 2.07319) (xy -2.171244 2.020848) (xy -2.092052 1.964092) (xy -1.99896 1.933762) (xy -1.899945 1.931021) (xy -1.802982 1.957027) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "dc87a65c-1eff-4a71-8b5e-0b6a7a5a94d8") ) (fp_poly (pts (xy 1.379992 3.196673) (xy 1.450427 3.21378) (xy 1.470787 3.222844) (xy 1.510253 3.246583) (xy 1.540541 3.273321) (xy 1.562952 3.307699) (xy 1.578786 3.35436) (xy 1.589343 3.417946) (xy 1.595924 3.503099) (xy 1.599828 3.614462) (xy 1.60131 3.688849) (xy 1.606765 4.010526) (xy 1.51358 4.010526) (xy 1.457047 4.008156) (xy 1.427922 4.000055) (xy 1.420394 3.986451) (xy 1.41642 3.971741) (xy 1.398652 3.974554) (xy 1.37444 3.986348) (xy 1.313828 4.004427) (xy 1.235929 4.009299) (xy 1.153995 4.00133) (xy 1.081281 3.980889) (xy 1.074759 3.978051) (xy 1.008302 3.931365) (xy 0.964491 3.866464) (xy 0.944332 3.7906) (xy 0.945872 3.763344) (xy 1.110345 3.763344) (xy 1.124837 3.800024) (xy 1.167805 3.826309) (xy 1.237129 3.840417) (xy 1.274177 3.84229) (xy 1.335919 3.837494) (xy 1.37696 3.818858) (xy 1.386973 3.81) (xy 1.4141 3.761806) (xy 1.420394 3.718092) (xy 1.420394 3.659605) (xy 1.33893 3.659605) (xy 1.244234 3.664432) (xy 1.177813 3.679613) (xy 1.135846 3.7062) (xy 1.126449 3.718052) (xy 1.110345 3.763344) (xy 0.945872 3.763344) (xy 0.948829 3.711026) (xy 0.978985 3.634995) (xy 1.020131 3.583612) (xy 1.045052 3.561397) (xy 1.069448 3.546798) (xy 1.101191 3.537897) (xy 1.148152 3.532775) (xy 1.218204 3.529515) (xy 1.24599 3.528577) (xy 1.420394 3.522879) (xy 1.420138 3.470091) (xy 1.413384 3.414603) (xy 1.388964 3.381052) (xy 1.33963 3.359618) (xy 1.338306 3.359236) (xy 1.26836 3.350808) (xy 1.199914 3.361816) (xy 1.149047 3.388585) (xy 1.128637 3.401803) (xy 1.106654 3.399974) (xy 1.072826 3.380824) (xy 1.052961 3.367308) (xy 1.014106 3.338432) (xy 0.990038 3.316786) (xy 0.986176 3.310589) (xy 1.002079 3.278519) (xy 1.049065 3.240219) (xy 1.069473 3.227297) (xy 1.128143 3.205041) (xy 1.207212 3.192432) (xy 1.295041 3.1896) (xy 1.379992 3.196673) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4e29ec1e-9285-40e5-90a9-21cac8f6d972") ) (fp_poly (pts (xy -1.839543 3.198184) (xy -1.76093 3.21916) (xy -1.701084 3.25718) (xy -1.658853 3.306978) (xy -1.645725 3.32823) (xy -1.636032 3.350492) (xy -1.629256 3.37897) (xy -1.624877 3.418871) (xy -1.622376 3.475401) (xy -1.621232 3.553767) (xy -1.620928 3.659176) (xy -1.620922 3.687142) (xy -1.620922 4.010526) (xy -1.701132 4.010526) (xy -1.752294 4.006943) (xy -1.790123 3.997866) (xy -1.799601 3.992268) (xy -1.825512 3.982606) (xy -1.851976 3.992268) (xy -1.895548 4.00433) (xy -1.95884 4.009185) (xy -2.02899 4.007078) (xy -2.09314 3.998256) (xy -2.130593 3.986937) (xy -2.203067 3.940412) (xy -2.24836 3.875846) (xy -2.268722 3.79) (xy -2.268912 3.787796) (xy -2.267125 3.749713) (xy -2.105527 3.749713) (xy -2.091399 3.79303) (xy -2.068388 3.817408) (xy -2.022196 3.835845) (xy -1.961225 3.843205) (xy -1.899051 3.839583) (xy -1.849249 3.825074) (xy -1.835297 3.815765) (xy -1.810915 3.772753) (xy -1.804737 3.723857) (xy -1.804737 3.659605) (xy -1.897182 3.659605) (xy -1.985005 3.666366) (xy -2.051582 3.68552) (xy -2.092998 3.715376) (xy -2.105527 3.749713) (xy -2.267125 3.749713) (xy -2.26451 3.694004) (xy -2.233576 3.619847) (xy -2.175419 3.563767) (xy -2.16738 3.558665) (xy -2.132837 3.542055) (xy -2.090082 3.531996) (xy -2.030314 3.527107) (xy -1.95931 3.525983) (xy -1.804737 3.525921) (xy -1.804737 3.461125) (xy -1.811294 3.41085) (xy -1.828025 3.377169) (xy -1.829984 3.375376) (xy -1.867217 3.360642) (xy -1.92342 3.354931) (xy -1.985533 3.357737) (xy -2.04049 3.368556) (xy -2.073101 3.384782) (xy -2.090772 3.39778) (xy -2.109431 3.400262) (xy -2.135181 3.389613) (xy -2.174127 3.363218) (xy -2.23237 3.318465) (xy -2.237716 3.314273) (xy -2.234977 3.29876) (xy -2.212124 3.27296) (xy -2.177391 3.244289) (xy -2.13901 3.220166) (xy -2.126952 3.21447) (xy -2.082966 3.203103) (xy -2.018513 3.194995) (xy -1.946503 3.191743) (xy -1.943136 3.191736) (xy -1.839543 3.198184) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "ab9ec879-490a-4d76-8b53-090f5967cbb8") ) (fp_poly (pts (xy -2.53664 1.952468) (xy -2.501408 1.969874) (xy -2.45796 2.000206) (xy -2.426294 2.033283) (xy -2.404606 2.074817) (xy -2.391097 2.130522) (xy -2.383962 2.206111) (xy -2.3814 2.307296) (xy -2.38125 2.350797) (xy -2.381688 2.446135) (xy -2.383504 2.514271) (xy -2.387455 2.561418) (xy -2.394298 2.59379) (xy -2.404789 2.6176) (xy -2.415704 2.633843) (xy -2.485381 2.702952) (xy -2.567434 2.744521) (xy -2.65595 2.757023) (xy -2.745019 2.738934) (xy -2.773237 2.726142) (xy -2.84079 2.690931) (xy -2.84079 3.2427) (xy -2.791488 3.217205) (xy -2.726527 3.19748) (xy -2.64668 3.192427) (xy -2.566948 3.201756) (xy -2.506735 3.222714) (xy -2.456792 3.262627) (xy -2.414119 3.319741) (xy -2.41091 3.325605) (xy -2.397378 3.353227) (xy -2.387495 3.381068) (xy -2.380691 3.414794) (xy -2.376399 3.460071) (xy -2.374049 3.522562) (xy -2.373072 3.607935) (xy -2.372895 3.70401) (xy -2.372895 4.010526) (xy -2.556711 4.010526) (xy -2.556711 3.445339) (xy -2.608125 3.402077) (xy -2.661534 3.367472) (xy -2.712112 3.36118) (xy -2.76297 3.377372) (xy -2.790075 3.393227) (xy -2.810249 3.41581) (xy -2.824597 3.44994) (xy -2.834224 3.500434) (xy -2.840237 3.572111) (xy -2.84374 3.669788) (xy -2.844974 3.734802) (xy -2.849145 4.002171) (xy -2.936875 4.007222) (xy -3.024606 4.012273) (xy -3.024606 2.353101) (xy -2.84079 2.353101) (xy -2.836104 2.4456) (xy -2.820312 2.509809) (xy -2.790817 2.549759) (xy -2.74502 2.56948) (xy -2.69875 2.573421) (xy -2.646372 2.568892) (xy -2.61161 2.551069) (xy -2.589872 2.527519) (xy -2.57276 2.502189) (xy -2.562573 2.473969) (xy -2.55804 2.434431) (xy -2.557891 2.375142) (xy -2.559416 2.325498) (xy -2.562919 2.25071) (xy -2.568133 2.201611) (xy -2.576913 2.170467) (xy -2.591114 2.149545) (xy -2.604516 2.137452) (xy -2.660513 2.111081) (xy -2.726789 2.106822) (xy -2.764844 2.115906) (xy -2.802523 2.148196) (xy -2.827481 2.211006) (xy -2.839578 2.303894) (xy -2.84079 2.353101) (xy -3.024606 2.353101) (xy -3.024606 1.938421) (xy -2.932698 1.938421) (xy -2.877517 1.940603) (xy -2.849048 1.948351) (xy -2.840794 1.963468) (xy -2.84079 1.963916) (xy -2.83696 1.97872) (xy -2.820067 1.977039) (xy -2.786481 1.960772) (xy -2.708222 1.935887) (xy -2.620173 1.933271) (xy -2.53664 1.952468) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "d346a995-0f1e-4bca-a09c-7a189fdaf7d6") ) (fp_poly (pts (xy 0.500964 -3.601424) (xy 0.576513 -3.200678) (xy 1.134041 -2.970846) (xy 1.468465 -3.198252) (xy 1.562122 -3.261569) (xy 1.646782 -3.318104) (xy 1.718495 -3.365273) (xy 1.773311 -3.400498) (xy 1.80728 -3.421195) (xy 1.81653 -3.425658) (xy 1.833195 -3.41418) (xy 1.868806 -3.382449) (xy 1.919371 -3.334517) (xy 1.9809 -3.274438) (xy 2.049399 -3.206267) (xy 2.120879 -3.134055) (xy 2.191347 -3.061858) (xy 2.256811 -2.993727) (xy 2.31328 -2.933717) (xy 2.356763 -2.885881) (xy 2.383268 -2.854273) (xy 2.389605 -2.843695) (xy 2.380486 -2.824194) (xy 2.35492 -2.781469) (xy 2.315597 -2.719702) (xy 2.265203 -2.643069) (xy 2.206427 -2.555752) (xy 2.172368 -2.505948) (xy 2.110289 -2.415007) (xy 2.055126 -2.332941) (xy 2.009554 -2.263837) (xy 1.97625 -2.211778) (xy 1.95789 -2.18085) (xy 1.955131 -2.17435) (xy 1.961385 -2.155879) (xy 1.978434 -2.112828) (xy 2.003703 -2.051251) (xy 2.034622 -1.977201) (xy 2.068618 -1.89673) (xy 2.103118 -1.815893) (xy 2.135551 -1.740742) (xy 2.163343 -1.677329) (xy 2.183923 -1.631707) (xy 2.194719 -1.609931) (xy 2.195356 -1.609074) (xy 2.212307 -1.604916) (xy 2.257451 -1.595639) (xy 2.32611 -1.582156) (xy 2.413602 -1.565379) (xy 2.51525 -1.546219) (xy 2.574556 -1.53517) (xy 2.683172 -1.51449) (xy 2.781277 -1.494811) (xy 2.863909 -1.477211) (xy 2.926104 -1.462767) (xy 2.962899 -1.452554) (xy 2.970296 -1.449314) (xy 2.97754 -1.427383) (xy 2.983385 -1.377853) (xy 2.987835 -1.306515) (xy 2.990893 -1.219161) (xy 2.992565 -1.121583) (xy 2.992853 -1.019574) (xy 2.991761 -0.918925) (xy 2.989294 -0.825428) (xy 2.985456 -0.744875) (xy 2.98025 -0.683058) (xy 2.973681 -0.64577) (xy 2.969741 -0.638007) (xy 2.946188 -0.628702) (xy 2.896282 -0.6154) (xy 2.826623 -0.599663) (xy 2.743813 -0.583054) (xy 2.714905 -0.577681) (xy 2.575531 -0.552152) (xy 2.465436 -0.531592) (xy 2.380982 -0.515185) (xy 2.31853 -0.502113) (xy 2.274444 -0.491559) (xy 2.245085 -0.482706) (xy 2.226815 -0.474737) (xy 2.215998 -0.466835) (xy 2.214485 -0.465273) (xy 2.199377 -0.440114) (xy 2.176329 -0.39115) (xy 2.147644 -0.324379) (xy 2.115622 -0.245795) (xy 2.082565 -0.161393) (xy 2.050773 -0.07717) (xy 2.022549 0.000879) (xy 2.000193 0.066759) (xy 1.986007 0.114473) (xy 1.982293 0.138027) (xy 1.982602 0.138852) (xy 1.995189 0.158104) (xy 2.023744 0.200463) (xy 2.065267 0.261521) (xy 2.116756 0.336868) (xy 2.175211 0.422096) (xy 2.191858 0.446315) (xy 2.251215 0.534123) (xy 2.303447 0.614238) (xy 2.345708 0.682062) (xy 2.375153 0.732993) (xy 2.388937 0.762431) (xy 2.389605 0.766048) (xy 2.378024 0.785057) (xy 2.346024 0.822714) (xy 2.297718 0.874973) (xy 2.23722 0.937786) (xy 2.168644 1.007106) (xy 2.096104 1.078885) (xy 2.023712 1.149077) (xy 1.955584 1.213635) (xy 1.895832 1.26851) (xy 1.848571 1.309656) (xy 1.817913 1.333026) (xy 1.809432 1.336842) (xy 1.789691 1.327855) (xy 1.749274 1.303616) (xy 1.694763 1.268209) (xy 1.652823 1.239711) (xy 1.576829 1.187418) (xy 1.486834 1.125845) (xy 1.396564 1.06437) (xy 1.348032 1.031469) (xy 1.183762 0.920359) (xy 1.045869 0.994916) (xy 0.983049 1.027578) (xy 0.929629 1.052966) (xy 0.893484 1.067446) (xy 0.884284 1.06946) (xy 0.873221 1.054584) (xy 0.851394 1.012547) (xy 0.820434 0.947227) (xy 0.78197 0.8625) (xy 0.737632 0.762245) (xy 0.689047 0.650339) (xy 0.637846 0.530659) (xy 0.585659 0.407084) (xy 0.534113 0.283491) (xy 0.48484 0.163757) (xy 0.439467 0.051759) (xy 0.399625 -0.048623) (xy 0.366942 -0.133514) (xy 0.343049 -0.199035) (xy 0.329574 -0.24131) (xy 0.327406 -0.255828) (xy 0.344583 -0.274347) (xy 0.38219 -0.30441) (xy 0.432366 -0.339768) (xy 0.436578 -0.342566) (xy 0.566264 -0.446375) (xy 0.670834 -0.567485) (xy 0.749381 -0.702024) (xy 0.800999 -0.846118) (xy 0.824782 -0.995895) (xy 0.819823 -1.147483) (xy 0.785217 -1.297008) (xy 0.720057 -1.4406) (xy 0.700886 -1.472016) (xy 0.601174 -1.598875) (xy 0.483377 -1.700745) (xy 0.351571 -1.777096) (xy 0.209833 -1.827398) (xy 0.062242 -1.851121) (xy -0.087127 -1.847735) (xy -0.234197 -1.816712) (xy -0.374889 -1.75752) (xy -0.505127 -1.669631) (xy -0.545414 -1.633958) (xy -0.647945 -1.522294) (xy -0.722659 -1.404743) (xy -0.77391 -1.27298) (xy -0.802454 -1.142493) (xy -0.8095 -0.995784) (xy -0.786004 -0.848347) (xy -0.734351 -0.705166) (xy -0.656929 -0.571223) (xy -0.556125 -0.451502) (xy -0.434324 -0.350986) (xy -0.418316 -0.340391) (xy -0.367602 -0.305694) (xy -0.32905 -0.27563) (xy -0.310619 -0.256435) (xy -0.310351 -0.255828) (xy -0.314308 -0.235064) (xy -0.329993 -0.187938) (xy -0.355778 -0.118327) (xy -0.390031 -0.030107) (xy -0.431123 0.072844) (xy -0.477424 0.18665) (xy -0.527304 0.307435) (xy -0.579133 0.431321) (xy -0.631281 0.554432) (xy -0.682118 0.672891) (xy -0.730013 0.782823) (xy -0.773338 0.880349) (xy -0.810462 0.961593) (xy -0.839756 1.022679) (xy -0.859588 1.05973) (xy -0.867574 1.06946) (xy -0.891979 1.061883) (xy -0.937642 1.04156) (xy -0.99669 1.012125) (xy -1.02916 0.994916) (xy -1.167053 0.920359) (xy -1.331323 1.031469) (xy -1.415179 1.08839) (xy -1.506987 1.15103) (xy -1.59302 1.210011) (xy -1.636113 1.239711) (xy -1.696723 1.28041) (xy -1.748045 1.312663) (xy -1.783385 1.332384) (xy -1.794863 1.336554) (xy -1.81157 1.325307) (xy -1.848546 1.293911) (xy -1.902205 1.245624) (xy -1.968962 1.183708) (xy -2.045234 1.111421) (xy -2.093473 1.065008) (xy -2.177867 0.982087) (xy -2.250803 0.90792) (xy -2.309331 0.84568) (xy -2.350503 0.798541) (xy -2.371372 0.769673) (xy -2.373374 0.763815) (xy -2.364083 0.741532) (xy -2.338409 0.696477) (xy -2.2992 0.633211) (xy -2.249303 0.556295) (xy -2.191567 0.470292) (xy -2.175149 0.446315) (xy -2.115323 0.35917) (xy -2.06165 0.28071) (xy -2.01713 0.215345) (xy -1.984765 0.167484) (xy -1.967555 0.141535) (xy -1.965893 0.138852) (xy -1.968379 0.118172) (xy -1.981577 0.072704) (xy -2.003186 0.008444) (xy -2.030904 -0.068613) (xy -2.06243 -0.152471) (xy -2.095463 -0.237134) (xy -2.127701 -0.316608) (xy -2.156843 -0.384896) (xy -2.180588 -0.436003) (xy -2.196635 -0.463933) (xy -2.197775 -0.465273) (xy -2.207588 -0.473255) (xy -2.224161 -0.481149) (xy -2.251132 -0.489771) (xy -2.292139 -0.499938) (xy -2.35082 -0.512469) (xy -2.430813 -0.528179) (xy -2.535755 -0.547887) (xy -2.669285 -0.572408) (xy -2.698196 -0.577681) (xy -2.783882 -0.594236) (xy -2.858582 -0.610431) (xy -2.915694 -0.624704) (xy -2.948617 -0.635492) (xy -2.953031 -0.638007) (xy -2.960306 -0.660304) (xy -2.966219 -0.710131) (xy -2.970766 -0.781696) (xy -2.973945 -0.869207) (xy -2.975749 -0.966872) (xy -2.976177 -1.068899) (xy -2.975223 -1.169497) (xy -2.972884 -1.262873) (xy -2.969156 -1.343235) (xy -2.964034 -1.404791) (xy -2.957516 -1.44175) (xy -2.953586 -1.449314) (xy -2.931708 -1.456944) (xy -2.881891 -1.469358) (xy -2.809097 -1.485478) (xy -2.718289 -1.504227) (xy -2.614431 -1.524529) (xy -2.557846 -1.53517) (xy -2.450486 -1.55524) (xy -2.354746 -1.57342) (xy -2.275306 -1.588801) (xy -2.216846 -1.600469) (xy -2.184045 -1.607512) (xy -2.178646 -1.609074) (xy -2.169522 -1.626678) (xy -2.150235 -1.669082) (xy -2.123355 -1.730228) (xy -2.091454 -1.804057) (xy -2.057102 -1.884511) (xy -2.022871 -1.965532) (xy -1.991331 -2.041063) (xy -1.965054 -2.105045) (xy -1.946611 -2.15142) (xy -1.938571 -2.174131) (xy -1.938422 -2.175124) (xy -1.947535 -2.193039) (xy -1.973086 -2.234267) (xy -2.012388 -2.294709) (xy -2.062757 -2.370269) (xy -2.121506 -2.456848) (xy -2.155658 -2.506579) (xy -2.21789 -2.597764) (xy -2.273164 -2.680551) (xy -2.318782 -2.750751) (xy -2.352048 -2.804176) (xy -2.370264 -2.836639) (xy -2.372895 -2.843917) (xy -2.361586 -2.860855) (xy -2.330319 -2.897022) (xy -2.28309 -2.948365) (xy -2.223892 -3.010833) (xy -2.156719 -3.080374) (xy -2.085566 -3.152935) (xy -2.014426 -3.224465) (xy -1.947293 -3.290913) (xy -1.888161 -3.348226) (xy -1.841025 -3.392353) (xy -1.809877 -3.419241) (xy -1.799457 -3.425658) (xy -1.782491 -3.416635) (xy -1.741911 -3.391285) (xy -1.681663 -3.35219) (xy -1.605693 -3.301929) (xy -1.517946 -3.243083) (xy -1.451756 -3.198252) (xy -1.117332 -2.970846) (xy -0.838567 -3.085762) (xy -0.559803 -3.200678) (xy -0.484254 -3.601424) (xy -0.408706 -4.002171) (xy 0.425415 -4.002171) (xy 0.500964 -3.601424) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "549750e8-6ce5-4845-9c14-ddd703ac65a5") ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "522a4697-55f8-42eb-93f2-c7757952a02d") (at 109.1544 120.3144 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D10" (at -3.1 2.45 90) (layer "F.SilkS") (uuid "822b55b8-641a-4b8c-a9c2-217c564c6ca8") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "0c966a1c-49c1-41aa-ae0d-156132a82c51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "feaf711a-427c-4d5c-9ba7-d9f61309ef34") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "20f153de-6d9d-4a8d-9b95-13145ce25a92") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "30c98de1-a4f7-4e7c-abea-93ac5dbda936") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 213 249.5 90) (layer "F.Fab") (hide yes) (uuid "4b641ac3-20e6-4065-a5dc-c0b31d365707") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 213 249.5 90) (layer "F.Fab") (hide yes) (uuid "c4e3eb94-33bd-4c1a-bdd0-f1e869d5267e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 213 249.5 90) (layer "F.Fab") (hide yes) (uuid "206c4cd1-3df2-4264-8725-902bf158cdfe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "13363f61-214f-4933-abc6-e1d2f26afbf3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a8711eaf-5bc6-420c-947f-d02357969c6b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dab0de90-6a04-4408-b4d4-cd8bdc7a1a64") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0905a061-07f3-43d8-9ac9-773c23c4bdb3") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b6705a88-7ec5-4f98-80b7-f4d5d4db891b") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a84248f-0a18-4cd2-805d-d60d19acf259") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "284841ee-8b1a-4318-bc09-de8f6a030c9f") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "700484a8-885c-4203-8ab5-5d5b5b98925b") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9388b598-6049-4e6a-94ec-b1c01379897e") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6eadefb4-4051-40b9-a89f-9b3dcefc8a02") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1595e320-1340-4114-ba78-dcd5f227d531") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2c413176-aa4e-4e57-9166-0486a6f77eb4") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0b4a54c1-ac93-43ac-823c-d953ad670900") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb206a80-c2ee-4d0e-9203-bb266bd1e63a") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4ba28aa-7fec-4951-9549-30d6edfe5a83") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fef985a5-338a-4204-b840-a6d08bf37429") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac6039b7-84f9-49a1-a29d-700e68c3c81d") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef993a7f-6523-4238-90cb-99d9b4156d89") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ad646cd-5917-4e1a-a78f-265bcb801199") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "dc0ac781-9af7-42d6-8fc4-4706cf165738") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "4c97a0ab-df1e-4f85-95e7-f8fff3d9e377") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "a7506625-db69-42ee-b282-ba8f190c7635") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "52be7244-11c7-4e42-90d8-1f5f084f6218") (at 40.4876 82.3468 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D6" (at 0 -1.6002 90) (layer "F.SilkS") (uuid "017bf5b7-4d3b-47d5-918d-ff8872488ce1") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "ee875959-3b29-4b8b-bf88-1c9c034e35ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b1dc99a8-37f8-493d-abaf-25c25dde3095") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ae829a25-574e-489c-baa5-c8c193c3411b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d5f1bc39-78c3-40d3-b034-987c32154823") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at -41.2375 123.0375 0) (layer "F.Fab") (hide yes) (uuid "4dc6e062-45e7-4afd-b614-b431f8425863") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "312da289-82f8-4bd3-9224-0b2b948d2557") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45adda49-59aa-4871-955c-1c1abb73d70e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "810bd8d6-1cff-4e4f-a0c4-f01f25f73489") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "838769e4-42df-4e0a-9aa6-c1845c8f393f") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7176feb7-6b13-46c3-acc7-3af4be243fe3") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a9d306cb-5cfa-4fa4-8bad-8862f1bf476b") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8ad06565-adca-4ca0-86de-321c4cafb3e4") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f6cb7dec-adfe-4617-b29d-ae28fd377a6e") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e1583e7-8a85-42e6-89af-3b23fb667b13") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "049efb2f-c7df-48cc-89cb-23bcaac24eb4") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed70ff24-7d91-4d8f-9801-ab69f377de84") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4c1ab8c-018d-448a-bf55-d3933fe8eaab") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ba4fb8a-5e4a-47c6-8ea3-88d23ba020c1") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6f1b323-0027-4b65-9b11-46fe24032cf1") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "13f27061-27b4-4eb3-820d-f9998d726013") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "3479507f-e43d-47a5-9bba-6614faf1bd9a") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 16 "Net-(D6-A)") (pinfunction "A") (pintype "passive") (uuid "547037cf-4c68-4f4d-952f-03fa9140d068") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "53e8046a-1d59-4374-919a-be5f7cc4a4f4") (at 62.25 70.2 90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C7" (at 3.1 0 180) (layer "F.SilkS") (uuid "1684a297-ab7a-42d9-a42c-bf4877d2fa65") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 90) (layer "F.Fab") (uuid "e7e05d81-0ee4-46a6-a205-3c96dc6eb3b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "38bb3930-1f6c-4de1-ae96-c7363652f73e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f0ff72c0-e914-4029-842b-fef1d3c6be7d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7b77a0d4-0496-4449-a122-ff08dcba6a6b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 139.075 161.2 90) (layer "F.Fab") (hide yes) (uuid "8b8e18b9-ca4d-4e8a-80dc-2f8f80866b57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "41415285-97ae-486f-962b-e61c2ebe9107") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a5e75a15-f32f-42a9-afcd-197a02adeda2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5829bbe1-2a29-40ac-bc2f-062878410149") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b015ca17-0c62-4378-a701-bca3b6597330") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "29b2ee46-65f8-4956-9f68-0898c30251eb") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "418068ce-3250-464f-8211-d8dcce8a7d78") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "082d3326-e69d-4ea2-8034-c00e8a650050") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e44a86eb-b4a8-4e79-8690-b59cd99d6125") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d671b762-fd59-443c-9c81-705032ce16aa") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9ec8cde-671e-42b1-99c5-2ecd0e95abe4") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b026f407-4947-4621-834e-cefea76d1c1b") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ea4b09c-cca6-46c5-8563-d58ca2773daf") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ec1d95c-1780-4cfe-8f3f-ab2ceb62ae8b") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63e25774-3c65-4fa7-a495-6c6c426ab91f") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "09e115e3-6ddd-4862-afbe-bbff409322ae") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "488cf99b-d05b-42d5-b680-af3daf947973") ) (pad "2" smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "e577927e-fe8a-44f4-8884-b64096ad5191") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "54241090-ec9f-45f6-858f-efce2fd45878") (at 104.3432 108.8644 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D20" (at 0 -1.85 90) (layer "F.SilkS") (uuid "2d0056da-e2f7-4e48-aea3-06fe82048f52") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "c4397b49-8a58-4622-a7e9-5d519af3b544") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "306324d4-8eab-4b2c-bb69-f06570a9fff8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "be3276bf-3489-4c7e-9de2-039e729cefb0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b1d3669b-efdc-47c7-84c8-a580bed7431b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5eaaed5d-6e67-44c1-ae2a-1694b95b2281") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1bd11a3e-a5d8-4963-8d9a-534e2fb2aa9f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1ffae340-29ec-4b0d-84a7-04663be5ad49") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/6702d47f-0b12-4453-a9e7-aa625d400c1c") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7b24ed74-e269-46c5-a43e-70474ff63393") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a7b0e13f-65dd-4e1a-91f7-e761cce4f74f") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c2ba21ea-2e83-44a5-9116-213ecf2a7b4a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f9dcfe1-c0f5-421e-a5e3-cf9840f9d6bd") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f6960bb9-0185-4931-ae42-80efbd9e5f14") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a2ed7052-4d27-4234-a991-f21902c7ee24") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "16246953-f6eb-480d-9bae-d90b7817816c") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "076baeed-bf8a-46b0-a2af-9a7cad4139da") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe1d8b7b-5b5c-492a-9e72-8aade9741905") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0844cb05-83ad-42d9-8b25-76bd94691c9e") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c0dc137-b890-4204-ab70-579dc32d0821") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a57f081-8917-4768-8d95-b8ff59b81351") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5356e1a4-2b1e-4199-856d-f572d29d9cb6") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "776e04aa-7272-4a3a-873c-75ddc6a3289b") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4d4df368-81d9-4b4a-a4d0-16f6a32ca2ce") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b134479c-8139-4e58-9865-59f65a075363") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "253b0e48-de25-490d-a4d1-bf27570eb631") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "d67b2241-daf7-4f21-a998-c86351257e0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e6b5062b-2494-4d0d-adc6-ccf16e45946c") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "0ffaacb6-79f2-402b-9485-f4f406c59489") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "55366e14-cec9-493d-901d-448b04d2f286") (at 114.3189 90.8124 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J14" (at 7.3 2.5 90) (layer "F.SilkS") (uuid "2f3511b7-1df8-4664-afa9-e0e4d17b1a4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan4 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "0fa1a736-1b0b-49b4-a132-736896e20ac7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5c93d659-415d-4e65-91fd-941b7ea34018") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fda30ba5-52a8-44ce-8480-74c27c36538a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7922cd61-e74b-42a9-9c1c-e92c2c03f52f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e504374-9fb4-409e-b225-5f56305df19f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "62e4e229-4efc-4555-80ac-824910490ecd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8f9cb63f-a4ca-49b8-b006-4834377e77e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30726265-5041-41ff-9f45-4d4052a2ab39") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "43c236cb-1b1b-4b4d-ad26-db683989563f") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e25f5346-4ce6-43d7-9160-64c3adf7a5a2") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ee122cd-ff4b-49a5-ad1e-754271f666e4") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "84d669d0-b57a-4f8d-bf18-899719cf8fab") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ddb07dba-4d67-4f10-9c3f-a6d2223cd723") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8c93c53-29ce-433c-a661-2d61accde02e") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75044342-ad22-4829-8aa8-efae5b0629f6") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "000608c9-5261-4210-be40-17b745e0656f") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "331a0baa-b1a7-4e34-8a65-a7543ab264cd") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9cb2d0a8-0dc1-4a39-b94a-109d2629743a") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2e9ee285-f778-417b-924e-2e6f249da333") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "24b8c65b-bf0e-4519-925e-188686da19d3") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41adf183-8a43-4bad-aa85-406ac5acdeee") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "701778c2-8be2-4958-bfee-492d61e10801") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "639622a6-4add-4adf-9522-42a4e559d35c") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69edce0d-6553-4408-a08d-3a24108392e4") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "31e20d34-82b9-4e72-a99e-b7d21e365231") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4242627e-d392-437c-968f-186d696ba5d6") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "808fa0d6-46e6-432f-88d6-b4df2be1c1b2") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd26eed3-4084-4acd-addd-2875f976c062") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "e7965833-7011-41d7-bff5-dbc5345de62c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "1e8d6e98-dd52-4af3-8c30-1fdcf53e6d43") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "ea5db54a-cba6-40f3-bfe6-a653d43edcea") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "138cb10b-cd75-46a7-89b3-c928c131408a") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "b2ab04f8-ed33-4553-bd6b-5fc61a691fd8") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 64 "/Fan Channels/Fan4/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "02b615e2-5289-4e3f-9741-b6ab85e8846b") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "559d2b3c-8937-4de3-8602-90b11787ea54") (at 104.35 91.55 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D35" (at 0.06 1.6 0) (layer "F.SilkS") (uuid "61ca305f-a682-4abc-80d7-36e118f3716c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "9cb3c11e-d467-455d-a5e3-db48dc953a76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04449df8-e0b5-4b4c-9437-f3643e1d6f2a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f30e3b64-7f5e-4a83-881d-ab9aa06c6aab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "42830bba-3faf-4848-aedc-3504a9aa666f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "86acb952-c0ee-4382-9f08-e976b95fc927") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "03022e9b-e5fe-4add-abbd-45f4f2bbeb19") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a225518d-452a-41e0-9c5a-292acbca72c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/6535bc33-56ae-4cc2-99e7-1448e1c62b75") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "959d6bc3-b390-4a0e-ab40-bff9ca0c8455") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d6e7196a-bbc6-4e0f-8017-e604d793b0a2") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5d4209d0-af0c-4243-a740-a3d6075c0b86") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "098ed546-a801-48d5-9133-89b2db56c2f4") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f7c5f2d-1bee-46b2-9f15-f96e6df4e283") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "133d71f5-2860-454c-afbb-4fa7f32ca770") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91f37b26-68eb-49b1-9846-93089c2021ea") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "42793702-6090-4e97-a13a-b2bd3aca7ee1") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ff3036d-7f7a-41d5-a21c-2d1fdff864c6") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9405a7b6-6513-47fd-a0f9-3a2857711c6a") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b9fd18d-b041-44b5-a3c4-44f46e2872b0") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "314998c4-feff-4e59-a73f-3f08d49539a6") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fd108b4f-4f93-4b35-b828-9fe2a9090875") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e8328fe-51bc-4f57-be23-a9435941722f") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3fee1dee-9533-4624-934d-b4d0571f6f2d") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25ddfe76-d961-49b6-9c6f-989bacd2349d") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3e61203-3f03-44b4-b1d5-6e1f7c35234c") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "cd7ccbc8-ae37-45a7-b72d-7fd3bc39768c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "cb067c13-7d92-4f6c-ab64-6f3dc27ed084") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "/Fan Channels/Fan3/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "c5acfefa-1e2b-4947-8fbe-65ee88471f69") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "55b5b81e-3146-454f-9ca5-4fd308725638") (at 85.9536 77.8764) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D18" (at -0.0536 1.6236 0) (layer "F.SilkS") (uuid "b4b6337c-42d4-46b8-b661-e38075272596") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "94275296-0d6f-44f7-9c25-c8ce9ce4e9d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04f10e56-8e90-4186-b235-b3fa5a2bebc5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "194558b0-2335-4889-8270-239b7d7819b7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e6bc6f15-4d2b-42bd-a955-8dba0f174e0b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d036a37d-69b9-4b1d-a3cc-329a5c9b3f96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7faf4062-c4be-44e9-a53b-dddc0e4f516c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "98074716-0df9-43b0-b1a8-f9b18a905bc8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f2644661-c140-443c-a39b-1866e1bb6e14") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "299fdaeb-f82f-4d33-bc06-9c8a5cc6e9a3") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64233465-2eba-4712-8af6-9943fe36f5ed") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1ab23bd-68e6-49f6-afcb-333d0c693bbb") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c72e7c3a-ec7a-4cf5-9051-394f49675f69") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "22c1f827-08f3-4466-8a40-a432c8637802") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "128eb797-bb23-43fd-b50b-7bc93225fe7f") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "daf31d66-4090-408b-a363-dc5787201810") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6149b7e-1ed4-4436-b161-32e68e785fc8") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "11a1706f-f88f-4002-bc99-2385d9a75a96") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "04a5cb39-5126-4851-a9ca-52700f2e489b") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59b5fc53-2da6-4b31-ac94-b612b72c0648") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ab61bf8-f20e-411a-8188-7dcdb4311b7e") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4229f32b-9872-49ee-9a35-9d3894f22045") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eff311a0-5c65-4c34-ab74-a3d7a7a17956") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "79cf67bc-6824-4d81-b2f1-c9cff6015ba1") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1a44698e-74f3-4b7e-8915-4c803c9237d4") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e2eb1df4-cf11-4c6d-acd8-a30fd1b3d569") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "13ec998c-a1ee-4b1e-8d8a-075a1428ab96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "ba9f7582-ec23-4720-8296-4b2ccbba4c74") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 20 "SCL") (pinfunction "A2") (pintype "passive") (uuid "854fde12-95a2-413f-8e28-336fe46d4780") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "55ee3126-63d3-41df-9fd0-eabf0dc0523b") (at 107.8484 64.6176 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R50" (at 0.05 1.5 90) (layer "F.SilkS") (uuid "a020c19b-4072-4e04-9edf-249f5a6fe64e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "14417dbc-0b9b-4db6-b52f-595b849f7b2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4a938327-009c-4658-9e6b-2eabdff1430f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b9dd6c3f-7f15-4689-8809-d24d17bf75c4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "48c0c763-5e5d-458d-a23d-d61aadbef440") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 14.2125 140.5125 0) (layer "F.Fab") (hide yes) (uuid "ba75d2a0-1cda-427f-8e83-6e7578667f76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0c8a712-5255-41d1-8433-73605506ed15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e9b5f4ef-b06a-43b9-bb24-b5be240aaff7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6f5e15d3-8889-4380-8ba4-82af742cd899") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e97d234c-60b6-46ad-a567-1f7f47affbe8") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "033e16e1-75c7-4d6b-a4c1-01b4331dad4c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7b74a709-fbb9-45fb-8ba7-691b8dcba6f6") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae6aaed0-2c55-4783-977d-e892fd441250") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1fb8df0c-68d5-49a1-92b1-6e6eb4e7d659") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9c647245-6993-4cf4-a897-143283e15b05") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c6ea3aa-42b5-49ef-b12c-012bd83de6f4") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8fa8ec61-91e9-4fba-ac1e-78cf7616405b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a54ad79-0805-4301-8d46-17d091a5556e") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "edb36ba1-cd4f-43f6-94ba-e5a924bcf446") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "a41c9c16-9fc4-4e13-969a-4774b43f3fa9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "TEMP1_READ") (pintype "passive") (uuid "f4167ec1-7b35-43da-bb8e-ab489e75f27f") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "ADC_REF") (pintype "passive") (uuid "96f8ae6a-606e-4838-be1e-f5860b975fa7") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "5c7f9cd1-7e82-49fd-83ae-a52e39d9d004") (at 74.6597 75.3582) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D5" (at 2.8866 0.1016 180) (layer "F.SilkS") (uuid "1ff79f9e-25f9-4973-91e1-c80766e6b55f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "ce3fae07-70bf-4d16-a43a-010ff619e303") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8a96e3fd-c735-4f5d-83bf-35524a15b8a3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9c8e344f-62d7-4120-abe9-92a32640df45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d32e2c57-9417-46d8-b0b5-b396f339b46a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a4ed5a1b-b8ff-43fd-b74a-919079bfb1ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "84b0560b-d4a1-4944-ba50-7855857bd778") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d1698e48-924a-4491-adc1-241df96543eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6823870e-28cc-4ec1-9b5a-c8beb3288006") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "587bc6dd-c4ee-4d00-8ac8-d53a2c05c18f") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69145bc2-1b87-44e4-a0df-4968387871a3") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfbd628d-1234-4249-8b9d-d4005df4acff") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ac22326-331d-476a-ad3a-6be8a45c0d1a") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2eba9347-a358-408c-86e4-c8f7560a6918") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4814abb0-ae4c-4d98-81a6-e4aa0558a77a") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b438d554-69ee-4593-9274-d1019bcbf287") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b05150df-601e-4f45-8b81-adab1d17906b") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2684067a-8647-4b1c-9b96-d3cf5ff7110b") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c53822c2-e0d3-402c-bbec-f50542f14dc9") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54407171-0431-4f75-bbf6-787fa6316ceb") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "821dd499-9e65-4d43-be64-3261ddfbabba") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "05331fd6-6e91-4335-bc12-371df4c034e5") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "ae532b07-ba13-4cbb-ba5a-f77f7587a539") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 14 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (uuid "154943d8-9f2a-4ded-9ed0-1279c683ff71") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA" (layer "F.Cu") (uuid "5d97d096-994b-4e4d-91f2-4dca3f8e21c4") (at 46.228 82.169) (descr "Diode SMA (DO-214AC)") (tags "Diode SMA (DO-214AC)") (property "Reference" "D1" (at 0 -2.5 0) (layer "F.SilkS") (uuid "bf17b7cf-5b7d-4000-9894-30e8bf4b2508") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SM5819PL 1A 40V" (at 0 2.6 0) (layer "F.Fab") (uuid "045c4a23-5d9e-4cd0-a474-004295c8060f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f6735106-363a-4715-9903-9aba609519d1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ed05362f-1a20-4d92-9c50-20270e3efbdd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Schottky diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e40988b8-63e7-40d2-8b06-08ce8b313772") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C669023" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6723223d-d25d-4e20-9760-b9ae4c1a7b0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf7cb9d5-5991-4986-9ba3-f5932b0ee97d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "833-SM5819PL-TP" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "01ee37a0-944b-497e-8bb7-91bb2956cbd7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/feba9514-0d4e-45e7-8d97-6a49db19119e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -3.51 -1.65) (end -3.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0022832a-126b-4e6a-9231-7746b713790a") ) (fp_line (start -3.51 -1.65) (end 2 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e946044-ec24-40a2-8f71-d72a1cf5cfca") ) (fp_line (start -3.51 1.65) (end 2 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b84108e3-0f28-44a4-8e3a-42e9865357b5") ) (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "880516c7-94ea-465c-847a-5fd31d4e1748") ) (fp_line (start -3.5 1.75) (end -3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76253c13-5786-403a-8f68-b9dfe3004a15") ) (fp_line (start 3.5 -1.75) (end 3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "26c61d36-cb8a-4209-af3a-2788055071cc") ) (fp_line (start 3.5 1.75) (end -3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4ba6e85-4b6e-496b-b3a6-5dd75f5b0491") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7be49bb8-93eb-4024-a2ac-00b64bdf75be") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9694713d-1ef3-4a56-98f5-eda5456125ad") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be2056cf-127b-4bd2-9c78-baea7d68ec54") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48b5172c-f727-4644-aa4f-5e0a6ac8adbf") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c5ddd44-4082-46ed-a89d-d21096c773c2") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5edc15e2-8347-4270-9f38-b0cd2324ad6f") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "97f25d4b-1bd8-4d2b-b64f-1b090701532b") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05b80ff1-ffc2-4e8b-82f8-d6eb410d7c96") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05743ece-b41c-4cb3-9ab1-8dd7c1e5a532") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "60f1b4e3-55bd-42cb-a39c-cf4998bc42db") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "1d906edd-d9fd-4680-bfe1-f09985c81aae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 71 "VSYS") (pinfunction "K") (pintype "passive") (uuid "92d5aa02-e94a-4387-b213-104468897aa9") ) (pad "2" smd roundrect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 1 "+5V") (pinfunction "A") (pintype "passive") (uuid "d36dac70-97b1-4676-b830-9e01431e2f8f") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "64b46f63-6e09-4261-974e-314eb1064777") (at 88.8492 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J4" (at 7.75 2.5 180) (layer "F.SilkS") (uuid "c8910e20-cc72-4f4e-a491-1d666dba9ebc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MB Fan1 Input" (at 4.05 4.35 0) (layer "F.Fab") (uuid "2b0b1d98-89a8-4be7-adb3-1e8acc65f6ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0c2f4b59-22d3-486f-8fb9-4f26da3093ac") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "c54ba6c4-1e69-4fe0-8e72-f95f72a4e452") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "9f3a8664-8dc5-4498-ad20-25e892e0a568") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4bb7b106-fcf6-4559-b280-ee59d446fd0c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "80eeca20-821c-4e33-ab17-de071cff290f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3aeb95a5-046b-4419-87fe-1562d0da28fe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/a43df6e2-bedb-4718-8d23-6b27bc7ec28b") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "404cfe61-5487-4895-bd6b-24c964f9233d") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f71b5508-ce2d-4e38-9433-9f9504a6fdfc") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e76cbf9-b139-4efd-a44f-fa9a4f3c460d") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2143f37e-e8f5-4670-8544-a115e369ded7") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6219dc02-c2b6-4983-aba6-51eb146d5072") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3610ed07-7a78-47f2-8b73-877603dcdb31") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3f1adb8e-91f7-4d1e-aa83-2bae9f161f50") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b373b49f-3741-4e70-b15f-b051bcbf239c") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ef6ab6ae-88cb-4a80-a1cc-6a4cb57c00f0") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45fb468d-526f-4007-a1a9-a6bb9d79c727") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ab9e57d-d152-44af-b186-162b3d9e4932") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b8da607-a608-47db-a21f-fa56af2bf41f") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a23f132-1197-423a-9388-4791d98e9b54") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2e59819a-88e1-4656-ab36-f403a069cec6") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6d205d59-f33f-4b47-a1fd-5fa1ee6edb6a") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2104fce7-e737-4c22-b972-8d20efb7c6b4") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b386845b-13fa-44c5-9446-3672c7e474ea") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "72ac3b05-1e2b-4669-ae6e-34bfa58cb804") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a944717-778b-479a-a833-e8d82ca2c8f4") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0868ed7-3ec9-4655-b113-ffb6ddaee683") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f90b6959-a195-4b40-809d-6222960179f6") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "1623b501-582a-4603-aed4-66546591e750") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "55b58d37-b9c3-461b-8528-7c5e51f46f5b") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "11c51da0-3fff-4f3a-b809-2e5251cacf3f") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 25 "/Fan Channels/FAN1_PWR_IN") (pinfunction "Pin_2") (pintype "passive") (uuid "c1e3f2dd-9083-4bdf-806e-b4cdee798f19") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (uuid "72772a46-b245-4aa8-8861-1b080674b8cb") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 4 "MBFAN1_PWM_READ") (pinfunction "Pin_4") (pintype "passive") (uuid "029a1eb0-170c-4576-a749-2182b28be414") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "676f79ca-a3a4-4673-8ea6-4ce496451db0") (at 54.229 73.7362 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D32" (at -2.7638 0.271 180) (layer "F.SilkS") (uuid "2bba2cd7-3408-42e7-9ee6-777c0adc180c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "0376e4c9-6c48-40e9-a35a-22bae2ac4bc3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b2fbd985-dc50-403e-ae4e-3baf6a64995d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b934fd86-00d9-43f6-b0b7-5748f1ab4b4b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69bed09f-03c7-4608-99dd-6835518c2209") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e067b99-4759-4580-8a90-aa5d98324bad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77bde0e7-707c-4ae1-9f0f-b5049c9b3055") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f28c477c-274d-4345-8873-fe921de1acbd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/3974644d-1afb-4244-87b2-ddd0e82a247e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "02973cab-8626-4e26-95cd-4a37c1c52e3b") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e39cb13e-0d35-4aa4-aed4-3aa9e3392639") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "be9d023c-f390-402b-bdc4-92fe2659403d") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "660e6abd-4e94-4797-bac6-b40c531d94ae") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3fe668fd-c358-4ec9-b2ed-3c9354814d37") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "908e0a59-7629-4657-ae9f-a5e29441eed5") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2d57641d-9c75-42de-b14e-011aceea3ddb") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdd6b684-87ca-46a5-be4c-abf127287d0b") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0278ef5-70ff-4c30-b434-949c484f69a0") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f930647-1165-4bef-8e68-54e4bdbf0bf4") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e51858ee-f740-45dd-bc64-9e72cb98ee7c") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b73dd07-69b3-4c53-8a0d-2dd811ae6721") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "484ea3ff-6631-4dd4-be75-428048c1ef70") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "be0e202e-a831-41a7-a017-ecfa3749240e") ) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 9 "Net-(D32-A)") (pinfunction "A") (pintype "passive") (uuid "fec2ecd9-045f-4a30-b1bd-767d91ed7c79") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:RPi_Pico_PicoW_SMD_TH" (layer "F.Cu") (uuid "69e9e663-adb6-43be-bee7-e238a2b332b0") (at 63.5 104.14 90) (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x20 2.54mm double row") (property "Reference" "U4" (at 0 0 90) (layer "F.SilkS") (uuid "1fbc06e7-0aec-4a6a-b168-285329f1ac2f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Pico" (at 0 2.159 90) (layer "F.Fab") (uuid "e91dc2a5-8bd9-4839-aada-6092ac9f93d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "62b37301-5713-4ca2-bed9-ca5ee1e0bc10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6e01c5e6-e93a-4db2-94d7-62a29efb022b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "31539d63-e2c4-44f3-8157-4a6fc501a2e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a88f99ca-d14e-43ca-a733-3d35a6a39968") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8bfca0c3-f247-4e12-935b-914381dc7bff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start 10.5 -25.5) (end 10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e2ad9ae4-3e7c-487b-906f-ff458e7a1172") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30ed34e0-d524-4457-b828-d0eae8fd1c80") ) (fp_line (start -10.5 -25.5) (end -10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75ede6be-2efd-4906-b88b-79e6b5e3e207") ) (fp_line (start 10.5 -23.1) (end 10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a270a1c-e8fe-4ce9-9aef-ad51b2d1288b") ) (fp_line (start -10.5 -23.1) (end -10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7a87a0a9-0cb0-48c6-a2b0-6d793bb3a839") ) (fp_line (start -7.493 -22.833) (end -7.493 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ab443de0-eaa6-4e5a-a8d0-238d282797ec") ) (fp_line (start -10.5 -22.833) (end -7.493 -22.833) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00c9a41b-5462-4302-a1ff-442a4ff2d57a") ) (fp_line (start 10.5 -20.5) (end 10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69fa815d-ac21-4445-8474-5f84bcdcac9b") ) (fp_line (start -10.5 -20.5) (end -10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d380968a-2cbf-4b91-a39f-d7388b7e108a") ) (fp_line (start 10.5 -18) (end 10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "983604fe-4e8c-401c-bae1-73e0e8498c9e") ) (fp_line (start -10.5 -18) (end -10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ec094f9-2982-44ab-98a1-c961086e483d") ) (fp_line (start 10.5 -15.4) (end 10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ae5e011-1a91-4dd3-8e5a-30cb4e96e7a5") ) (fp_line (start -10.5 -15.4) (end -10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a08788bf-1ccb-4c3e-b9d3-f61088cb2d0a") ) (fp_line (start 10.5 -12.9) (end 10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "98607aaf-6384-44d5-805d-aec2c9266dee") ) (fp_line (start -10.5 -12.9) (end -10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b916b151-d01e-446b-ad11-fda442c730ba") ) (fp_line (start 10.5 -10.4) (end 10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a821006d-d7fe-43e4-b5bf-4c1bbd3268f0") ) (fp_line (start -10.5 -10.4) (end -10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae223f36-e818-4b3b-af1c-9b3b1750663d") ) (fp_line (start 10.5 -7.8) (end 10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eeb35ff5-3771-452b-94a3-3ce311d375f8") ) (fp_line (start -10.5 -7.8) (end -10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0d8750a-4940-4c62-b698-880327c121ff") ) (fp_line (start 10.5 -5.3) (end 10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2bbb8caa-6196-415f-ad17-cab568829acc") ) (fp_line (start -10.5 -5.3) (end -10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ed2a1935-e554-4f4a-a069-f3ef0922724e") ) (fp_line (start 10.5 -2.7) (end 10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecadac60-9cb4-4cd4-9cf2-824340b05709") ) (fp_line (start -10.5 -2.7) (end -10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "70756116-1e66-414d-9af3-a9bb1734f5ef") ) (fp_line (start 10.5 -0.2) (end 10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b9c81345-205a-467a-9fae-7e9254dcd126") ) (fp_line (start -10.5 -0.2) (end -10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "164af4ea-656e-4c0f-8a44-1643ae796012") ) (fp_line (start 10.5 2.3) (end 10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b7b073d8-fa51-4ddd-aa68-a75f00c09210") ) (fp_line (start -10.5 2.3) (end -10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42eda101-01d4-4aa5-bfad-a6d7b083a12b") ) (fp_line (start 10.5 4.9) (end 10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c333750a-3565-4d60-bbd5-de8fb6ecfd84") ) (fp_line (start -10.5 4.9) (end -10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6350bfa0-340e-4b69-8a1b-64a0382294bf") ) (fp_line (start 10.5 7.4) (end 10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7014ad0-b5bf-4b7c-a14d-99211e0afc4c") ) (fp_line (start -10.5 7.4) (end -10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f527a18a-1619-4edd-8338-9fe903c592b3") ) (fp_line (start 10.5 10) (end 10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fca22a67-4662-4654-ab41-1e995ed201bf") ) (fp_line (start -10.5 10) (end -10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "45d50212-fd3e-4c1c-81cc-e60664d206c4") ) (fp_line (start 10.5 12.5) (end 10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6def6bae-d99e-4313-9317-e90be3d39b9e") ) (fp_line (start -10.5 12.5) (end -10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1adb9fc-babf-40f8-8c47-bef0fac1797c") ) (fp_line (start 10.5 15.1) (end 10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "871aa26a-378e-40c1-a3ad-92e99e36a274") ) (fp_line (start -10.5 15.1) (end -10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "243e068d-c9b1-4824-baba-13923e03ffa8") ) (fp_line (start 10.5 17.6) (end 10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d0959fa8-db11-4b0e-8562-cd4f865c73fb") ) (fp_line (start -10.5 17.6) (end -10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d438d4f1-2961-4c1d-aeaf-dfc49045be8e") ) (fp_line (start 10.5 20.1) (end 10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac3cb829-b801-4b54-924b-3b5a2d6ac2e3") ) (fp_line (start -10.5 20.1) (end -10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfaaee71-e632-43b3-980a-099dc06dc06e") ) (fp_line (start 10.5 22.7) (end 10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9cf8c814-2f29-4519-934b-938a7f938dfa") ) (fp_line (start -10.5 22.7) (end -10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "93f545d7-4641-478b-a946-9ab130eb1286") ) (fp_line (start 10.5 25.5) (end 7.3 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "23659a14-e37c-4d68-994e-ae20df789626") ) (fp_line (start -7.3 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "df99e5ea-fdd8-4130-9c85-7376239100e9") ) (fp_line (start 7.1 17) (end 7.1 25.5) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "512688d3-c70c-4c9e-af1d-8638669d33c9") ) (fp_line (start -7.1 17) (end 7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "874c60de-df6e-4909-bda2-bdf6c2a2e34e") ) (fp_line (start -7.1 25.5) (end -7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "68c33dad-5e3a-4a9b-8da5-5898e7ef0dfe") ) (fp_poly (pts (xy 3.7 -20.2) (xy -3.7 -20.2) (xy -3.7 -24.9) (xy 3.7 -24.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "05823517-3b40-4495-ae2f-3b7d07e78e2e") ) (fp_poly (pts (xy -1.5 -14.9) (xy -3.5 -14.9) (xy -3.5 -16.9) (xy -1.5 -16.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "5699e4d2-0ae3-4cf4-8d3f-392e92384531") ) (fp_poly (pts (xy -1.5 -12.4) (xy -3.5 -12.4) (xy -3.5 -14.4) (xy -1.5 -14.4) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "a0f31b9a-6cb2-49e5-bf91-cb5285a76657") ) (fp_poly (pts (xy -1.5 -9.9) (xy -3.5 -9.9) (xy -3.5 -11.9) (xy -1.5 -11.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "f6c3e791-3257-4e22-a090-c301752afeb1") ) (fp_poly (pts (xy 6.65 6.6) (xy 4.65 6.6) (xy 4.65 4.6) (xy 6.65 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "dd7c670a-5bdd-402c-a8cd-8e8bec8299cd") ) (fp_poly (pts (xy 4.125 6.6) (xy 2.125 6.6) (xy 2.125 4.6) (xy 4.125 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "937a3640-d90f-4dc0-b38d-91e6aefa76c2") ) (fp_poly (pts (xy 1.575 6.6) (xy -0.425 6.6) (xy -0.425 4.6) (xy 1.575 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "9e576556-5bc6-4b16-8409-e59a1cedd62e") ) (fp_line (start 11 -26) (end 11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "7a304eec-8b25-47ce-8362-7ef6981f77e9") ) (fp_line (start -11 -26) (end 11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "6ba53279-b100-4247-b90f-4c8dfceaadbe") ) (fp_line (start 11 26) (end -11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "b0fab9ba-dc74-4d6a-aeea-cfd94c64e8e5") ) (fp_line (start -11 26) (end -11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "6974da63-172c-4e70-942d-6d2dc1a8a9ea") ) (fp_line (start 10.5 -25.5) (end 10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "e57d7441-01e0-422b-a750-33d0874bf9c6") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "387319a2-707b-40b5-81bd-18bd8c76d19a") ) (fp_line (start -10.5 -24.2) (end -9.2 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "a023e6af-56e4-43a2-bfc2-2581b43d18e9") ) (fp_line (start 10.5 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "6585a4f9-2376-4b3c-b9e5-09d8fd34cdc6") ) (fp_line (start -10.5 25.5) (end -10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "28f48ca6-651d-414f-bf26-787f999e6b9f") ) (fp_text user "GND" (at -12.8 19.05 135) (layer "F.SilkS") (uuid "04cd0e4b-5310-4533-b148-57c6bd7ba3ee") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "RUN" (at 13 1.27 135) (layer "F.SilkS") (uuid "04e63bba-8155-4e64-814f-d9cf02f24480") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 -19.05 135) (layer "F.SilkS") (uuid "051508d1-6ad4-47ec-b1b8-3d6170e48590") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP7" (at -12.7 -1.3 135) (layer "F.SilkS") (uuid "07f1cb6c-291e-41e9-8f10-b6529ed47ff1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP15" (at -13.054 24.13 135) (layer "F.SilkS") (uuid "0857d82c-6abd-4e43-b088-f7987c6355a7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 19.05 135) (layer "F.SilkS") (uuid "09b72d0c-2e33-4083-a955-2afe79b52cca") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP18" (at 13.054 16.51 135) (layer "F.SilkS") (uuid "0e107bed-9f6e-4c3d-9787-bc45db42b61c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP8" (at -12.8 1.27 135) (layer "F.SilkS") (uuid "0e2f18b1-d5d8-4543-a960-a77f763f209a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP19" (at 13.054 13.97 135) (layer "F.SilkS") (uuid "0ecc0c54-4f05-4619-bf0e-181270fa12ee") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP21" (at 13.054 8.9 135) (layer "F.SilkS") (uuid "122e524a-934d-41cb-a853-19be5b9c147f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VSYS" (at 13.2 -21.59 135) (layer "F.SilkS") (uuid "13245622-ef86-4feb-bbdb-2b855a2166a8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP22" (at 13.054 3.81 135) (layer "F.SilkS") (uuid "169aa854-da52-472a-af8d-5d479a115073") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP28" (at 13.054 -9.144 135) (layer "F.SilkS") (uuid "19d4450d-dc97-491c-97b8-af3e8ca207eb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP10" (at -13.054 8.89 135) (layer "F.SilkS") (uuid "1c2281df-3929-42b3-b34d-98f3447d1e96") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 6.35 135) (layer "F.SilkS") (uuid "1dd7c85f-1d35-4ec6-bf4c-3b44a5ce5a65") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP4" (at -12.8 -11.43 135) (layer "F.SilkS") (uuid "2455f167-8bf1-4d88-9f16-7c15387d30d4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP2" (at -12.9 -16.51 135) (layer "F.SilkS") (uuid "2ad896bf-0f55-4e26-be1f-3993ecb3b00d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP1" (at -12.9 -21.6 135) (layer "F.SilkS") (uuid "2d86e878-93f4-40ba-88f0-07580a4f7b6f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3_EN" (at 13.7 -17.2 135) (layer "F.SilkS") (uuid "3f795e8f-8ceb-4a24-aa38-b4334a25aa54") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VBUS" (at 13.3 -24.2 135) (layer "F.SilkS") (uuid "41bfe7aa-e151-40b4-b80d-7d16524c31a1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP16" (at 13.054 24.13 135) (layer "F.SilkS") (uuid "6a10b507-df30-478f-a4ab-6c683afc94eb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 6.35 135) (layer "F.SilkS") (uuid "7488551e-1055-4706-8533-fbbadb543f47") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP27" (at 13.054 -3.8 135) (layer "F.SilkS") (uuid "7830dcc7-c79c-4891-afef-79ae90b7cfe8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "AGND" (at 13.054 -6.35 135) (layer "F.SilkS") (uuid "791de6c3-de38-4efd-8cd1-efb38f235c4f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP20" (at 13.054 11.43 135) (layer "F.SilkS") (uuid "892f5736-f1e5-4bc1-80b8-54f6c111fc2b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP17" (at 13.054 21.59 135) (layer "F.SilkS") (uuid "96a63f55-d6ef-42d5-8bd5-9f91afe36ec5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP26" (at 13.054 -1.27 135) (layer "F.SilkS") (uuid "9e349ae7-5513-46f1-a78b-bb2934f96b91") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -19.05 135) (layer "F.SilkS") (uuid "a2ff1c40-c352-4fe0-8edf-1e9628ead9f1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3" (at 12.9 -13.9 135) (layer "F.SilkS") (uuid "b1068996-ad4d-4b90-9329-afafe0da327a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP0" (at -12.8 -24.13 135) (layer "F.SilkS") (uuid "bf14a8ce-8abe-4a63-8991-0c096a9cbffc") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VREF" (at 13.0675 -11.7425 135) (layer "F.SilkS") (uuid "ce87e9fb-7bbd-4e0b-b5d0-5948e2d9e6f5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -6.35 135) (layer "F.SilkS") (uuid "da5fca0f-b9c9-4fd4-bb7f-9fac1b0ef779") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP13" (at -13.054 16.8325 135) (layer "F.SilkS") (uuid "db5f07a7-1475-411e-b5be-8bbdb5b6bd5c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP14" (at -13.1 21.59 135) (layer "F.SilkS") (uuid "e1464ff0-8993-42d1-9389-bee88ac705fd") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP3" (at -12.8 -13.97 135) (layer "F.SilkS") (uuid "e425db35-20da-47a2-a3aa-6c63aca9b75e") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP12" (at -13.2 14.2925 135) (layer "F.SilkS") (uuid "e513f458-4e59-442b-a9c1-578d4c4bab19") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP5" (at -12.8 -8.89 135) (layer "F.SilkS") (uuid "eb25294a-1a1e-4d61-87a3-55841c71b2f7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP6" (at -12.8 -3.81 135) (layer "F.SilkS") (uuid "ebae6901-1e24-4342-97a3-ef96a7c5af35") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP11" (at -13.2 11.7525 135) (layer "F.SilkS") (uuid "f78c2474-1b81-416a-869f-74dd0747345c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP9" (at -12.8 3.81 135) (layer "F.SilkS") (uuid "fb2ec5b8-0817-410c-a267-dba0e59693f8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2 90) (layer "Cmts.User") (uuid "a5f0598f-bcf1-41ba-a4b5-15a34223cb9a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") (uuid "303f1cb4-bb69-438d-b06c-698a079a3000") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole oval (at -2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "b01e21c2-2107-416a-a6f3-95c7c2ffaa4d") ) (pad "" np_thru_hole oval (at -2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers "F&B.Cu" "*.Mask") (uuid "a8a961ae-0b96-4dec-9578-26e99e71f064") ) (pad "" np_thru_hole oval (at 0.5841 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "6ee89589-5bf6-47f1-8813-3dfaffabb40e") ) (pad "" np_thru_hole oval (at 2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (uuid "82575cc1-5403-4bd9-9d6a-41802bf1f8e7") ) (pad "" np_thru_hole oval (at 2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (uuid "b1089335-f62f-455c-bd12-688e3e6f82c3") ) (pad "" np_thru_hole oval (at 3.1241 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "76fbeac9-28eb-48a2-b665-807f7e81d6e9") ) (pad "" np_thru_hole oval (at 5.6641 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "54ad38b7-7725-4576-9a96-95c02f91197b") ) (pad "1" thru_hole oval (at -8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 21 "TX") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "afe118a9-69d9-473d-9f39-2a49267999b5") ) (pad "1" smd rect (at -8.89 -24.13 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 21 "TX") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "acfdca3b-702a-41df-a961-6e2903b641f4") ) (pad "2" thru_hole oval (at -8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 22 "RX") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "fd506c65-617b-4da6-97c5-cc694920446e") ) (pad "2" smd rect (at -8.89 -21.59 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 22 "RX") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "a82aafa1-c732-4e43-b3ff-33b6ebc2efac") ) (pad "3" thru_hole rect (at -8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d14437f5-58cb-41b1-b836-b4a1739a3787") ) (pad "3" smd rect (at -8.89 -19.05 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "fbb36cc3-3d95-4f47-94b3-653f40d2c102") ) (pad "4" thru_hole oval (at -8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 19 "SDA") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "3e095887-6383-4974-81af-bba6dd523ebc") ) (pad "4" smd rect (at -8.89 -16.51 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 19 "SDA") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "54c46b0c-f741-4904-bd66-de12dd1a2f25") ) (pad "5" thru_hole oval (at -8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 20 "SCL") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "648eedbf-d63b-47b3-92ed-3190a2f79865") ) (pad "5" smd rect (at -8.89 -13.97 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 20 "SCL") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "9dc5a066-5f78-4b56-9a00-6cdc1d6e3761") ) (pad "6" thru_hole oval (at -8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 43 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (uuid "20e2cd93-fc23-44e6-963f-1d0a1054a0ef") ) (pad "6" smd rect (at -8.89 -11.43 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 43 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (uuid "209fd407-6b20-4d54-804e-2041a2a5e04b") ) (pad "7" thru_hole oval (at -8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 44 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (uuid "3a2c3267-bf8d-4996-8efc-31c7c6813152") ) (pad "7" smd rect (at -8.89 -8.89 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 44 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (uuid "4a51a685-3d0b-49f3-a097-23e25bc14bf1") ) (pad "8" thru_hole rect (at -8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "ad6a09fe-bfc7-4641-8149-7bc00c98f380") ) (pad "8" smd rect (at -8.89 -6.35 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "a28b9abb-2d2e-4401-b96b-af69a09b6fc5") ) (pad "9" thru_hole oval (at -8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 47 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (uuid "68f173db-5ae8-4de4-b491-e7fef0c7b0a9") ) (pad "9" smd rect (at -8.89 -3.81 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 47 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (uuid "b46e8959-5d93-4272-bd34-e7ac94991895") ) (pad "10" thru_hole oval (at -8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 49 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (uuid "fa53462e-c4d2-4227-8795-f2292c21999d") ) (pad "10" smd rect (at -8.89 -1.27 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 49 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (uuid "68ec0995-80e0-4a3c-ad31-789c5b776af5") ) (pad "11" thru_hole oval (at -8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 28 "MISO") (pinfunction "GPIO8") (pintype "bidirectional") (uuid "82962c49-1cc3-420d-816c-fbf6feab051b") ) (pad "11" smd rect (at -8.89 1.27 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 28 "MISO") (pinfunction "GPIO8") (pintype "bidirectional") (uuid "03f68ba7-ae03-4bcc-97ba-5021d6b3c767") ) (pad "12" thru_hole oval (at -8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 30 "CS") (pinfunction "GPIO9") (pintype "bidirectional") (uuid "48c72724-ec29-46d7-acb4-4fe755f238a3") ) (pad "12" smd rect (at -8.89 3.81 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 30 "CS") (pinfunction "GPIO9") (pintype "bidirectional") (uuid "72c6bb9e-4386-47c3-954c-9edd547edd53") ) (pad "13" thru_hole rect (at -8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "a1680c4b-53ff-4ddd-9d7e-c7f932e413db") ) (pad "13" smd rect (at -8.89 6.35 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "dba30600-aeb9-4f54-a3c9-6ca89766a124") ) (pad "14" thru_hole oval (at -8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 29 "SCK") (pinfunction "GPIO10") (pintype "bidirectional") (uuid "696a2f13-38b1-41fb-b700-6c81676af8f9") ) (pad "14" smd rect (at -8.89 8.89 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 29 "SCK") (pinfunction "GPIO10") (pintype "bidirectional") (uuid "68aace09-d697-4de1-abc2-571e092a1da3") ) (pad "15" thru_hole oval (at -8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 27 "MOSI") (pinfunction "GPIO11") (pintype "bidirectional") (uuid "07d711c8-b6b4-42f7-aebe-2f05bf9d7299") ) (pad "15" smd rect (at -8.89 11.43 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 27 "MOSI") (pinfunction "GPIO11") (pintype "bidirectional") (uuid "c7168aa8-99d2-4a19-9cd3-7f3974d81454") ) (pad "16" thru_hole oval (at -8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 31 "LCD_RESET") (pinfunction "GPIO12") (pintype "bidirectional") (uuid "c5758509-3174-4889-bd07-84ba5d9e83a9") ) (pad "16" smd rect (at -8.89 13.97 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 31 "LCD_RESET") (pinfunction "GPIO12") (pintype "bidirectional") (uuid "b6aa9121-061c-42fc-8ad2-1db8b2d5709b") ) (pad "17" thru_hole oval (at -8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 56 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (uuid "ce2d8d74-8841-458c-a33a-2b17344a8540") ) (pad "17" smd rect (at -8.89 16.51 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 56 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (uuid "a1aa7ad3-30a1-4c00-8fe6-82d299beed76") ) (pad "18" thru_hole rect (at -8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d689ddff-1d1d-44f4-89cf-44ac0f1ff5c5") ) (pad "18" smd rect (at -8.89 19.05 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "882a2d9a-359f-47d5-a66c-19024afd24f0") ) (pad "19" thru_hole oval (at -8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 51 "unconnected-(U4-GPIO14-Pad19)") (pinfunction "GPIO14") (pintype "bidirectional+no_connect") (uuid "22419db3-986b-4143-bce1-d5df7075f715") ) (pad "19" smd rect (at -8.89 21.59 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 50 "unconnected-(U4-GPIO14-Pad19)_1") (pinfunction "GPIO14") (pintype "bidirectional+no_connect") (uuid "c8307212-89f4-4143-a9f6-be94975f569f") ) (pad "20" thru_hole oval (at -8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 18 "DQ") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "c6df602f-f194-474f-b3d9-7c1bb4407a87") ) (pad "20" smd rect (at -8.89 24.13 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 18 "DQ") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "7563c861-8f1e-4cfc-9095-7e6cfe3d37bd") ) (pad "21" thru_hole oval (at 8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 57 "MBFAN1_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (uuid "b3bd3c6d-da3d-4dfa-9e1e-72b87e031b61") ) (pad "21" smd rect (at 8.89 24.13 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 57 "MBFAN1_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (uuid "7fe1e54d-9fe9-4139-b5d5-004b8152cf77") ) (pad "22" thru_hole oval (at 8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 41 "unconnected-(U4-GPIO17-Pad22)_1") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (uuid "c67b86ce-86c9-4c70-8638-39209349b756") ) (pad "22" smd rect (at 8.89 21.59 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 36 "unconnected-(U4-GPIO17-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (uuid "a534705a-2065-4c0e-91be-8be65211bcda") ) (pad "23" thru_hole rect (at 8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "961e01d8-f4b2-497e-a3c9-5036e4e061c9") ) (pad "23" smd rect (at 8.89 19.05 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "6e7ce9f3-b87d-4e7e-8440-7980fb948dbf") ) (pad "24" thru_hole oval (at 8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 5 "FAN1_TACHO_READ") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "2ef817e2-c1d6-4e00-bbd5-9fb4c237979e") ) (pad "24" smd rect (at 8.89 16.51 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 5 "FAN1_TACHO_READ") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "9a7235b8-5e28-4f50-8583-f6fee63ac52e") ) (pad "25" thru_hole oval (at 8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 59 "FAN2_TACHO_READ") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "dd5e4f02-b2f5-42b3-bf93-30f0704a0969") ) (pad "25" smd rect (at 8.89 13.97 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 59 "FAN2_TACHO_READ") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "217ef7cf-79c7-48ab-ad9f-42957d0e0007") ) (pad "26" thru_hole oval (at 8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 60 "FAN3_TACHO_READ") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "47dc707d-3fe2-4254-9277-c24d40f2c6d8") ) (pad "26" smd rect (at 8.89 11.43 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 60 "FAN3_TACHO_READ") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "d93fa0b7-dfc7-4110-9c72-ebaebc18c931") ) (pad "27" thru_hole oval (at 8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 61 "FAN4_TACHO_READ") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "81661d46-c1c8-40e7-bbf2-7cf9a65378ef") ) (pad "27" smd rect (at 8.89 8.89 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 61 "FAN4_TACHO_READ") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "08a425ce-4f90-4bae-bd46-c9cd087a51c3") ) (pad "28" thru_hole rect (at 8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "fd4af6e4-0a4f-4dd2-a2a6-e0b9802c5515") ) (pad "28" smd rect (at 8.89 6.35 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "41ee75e1-ae37-480c-85b0-4825297d5017") ) (pad "29" thru_hole oval (at 8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 54 "unconnected-(U4-GPIO22-Pad29)_1") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (uuid "f1616fea-fda5-4897-a142-7114af46faab") ) (pad "29" smd rect (at 8.89 3.81 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 32 "unconnected-(U4-GPIO22-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (uuid "d0ae2edd-f12c-4ed9-953a-2b63cf950a2f") ) (pad "30" thru_hole oval (at 8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "RESET") (pinfunction "RUN") (pintype "input") (uuid "4b0e631a-88a2-4429-a718-8e1ba17cc3e6") ) (pad "30" smd rect (at 8.89 1.27 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 39 "RESET") (pinfunction "RUN") (pintype "input") (uuid "d836d29f-d067-4c08-8b41-e439d55897be") ) (pad "31" thru_hole oval (at 8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 33 "unconnected-(U4-GPIO26_ADC0-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (uuid "3d4c66cf-5fa6-469a-96d6-9ec0ffaa97e9") ) (pad "31" smd rect (at 8.89 -1.27 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 52 "unconnected-(U4-GPIO26_ADC0-Pad31)_1") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (uuid "e240f1aa-e7df-4e79-9029-969bf2f6af26") ) (pad "32" thru_hole oval (at 8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 68 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "2dcd2521-e8c6-4d78-a715-475d2c8c3fe7") ) (pad "32" smd rect (at 8.89 -3.81 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 68 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "153a260b-dc59-4164-99c5-68af3efe4c82") ) (pad "33" thru_hole rect (at 8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 67 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "12fcca8a-dc35-43b3-9fdd-c8a5c0c62f27") ) (pad "33" smd rect (at 8.89 -6.35 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 67 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "41ceebbf-68bf-49a6-967b-97776410785b") ) (pad "34" thru_hole oval (at 8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 69 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "19702b34-a254-46e8-bede-0a73c146855d") ) (pad "34" smd rect (at 8.89 -8.89 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 69 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "17a27ef9-7e00-49e3-b4ce-07f3a39d16d5") ) (pad "35" thru_hole oval (at 8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 63 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "92cfc6bb-b455-4149-ad18-edbf30360a52") ) (pad "35" smd rect (at 8.89 -11.43 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 63 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "e05078a4-7898-437e-acdc-394f0adcfa46") ) (pad "36" thru_hole oval (at 8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "a312f469-8766-4067-b19d-1fc1b802a738") ) (pad "36" smd rect (at 8.89 -13.97 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "22465265-6a7f-4922-b62b-97d4bda7ee61") ) (pad "37" thru_hole oval (at 8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 72 "unconnected-(U4-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "8122b2e9-0a6f-43c1-a3db-5c10458f3c92") ) (pad "37" smd rect (at 8.89 -16.51 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 53 "unconnected-(U4-3V3_EN-Pad37)_1") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "ee7f9bf1-ce18-45d3-acec-805d8f6b94df") ) (pad "38" thru_hole rect (at 8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "c2ab961f-0543-44e1-a174-f83c65d6b72c") ) (pad "38" smd rect (at 8.89 -19.05 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "f3aa69dc-066a-4c8d-8ff7-18887420e8a0") ) (pad "39" thru_hole oval (at 8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 71 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "a4450a62-b3c8-4db5-9c5b-1ab37a7e95f6") ) (pad "39" smd rect (at 8.89 -21.59 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 71 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "c2adc975-483f-4a73-99aa-6773314f948e") ) (pad "40" thru_hole oval (at 8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 65 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "fce80962-7717-4dc5-9fd9-7abea47c3404") ) (pad "40" smd rect (at 8.89 -24.13 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 65 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "183de28f-4005-459f-bc18-30d684359bcc") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "6be87dba-b1c4-47bc-a328-c3cb6b6b5275") (at 80.3 84.3 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R55" (at 3.1 -0.1 90) (layer "F.SilkS") (uuid "4e3f2178-9587-469b-978f-4681dfc62421") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 90) (layer "F.Fab") (uuid "55252fc4-02b7-4831-845c-241af0614fa9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "83911c08-0230-488c-b6ef-7d75a400c68a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8dbd5130-33d1-42af-9108-b8b1879db0b4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bdcfce60-dbd9-4a3a-9213-0efc184b0b8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 127.8 234.8 90) (layer "F.Fab") (hide yes) (uuid "25f715c0-f78c-4dc4-8166-4a207065c57f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1dd2dd58-2279-46ae-bfa8-e341d8016991") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a73c470d-6120-4f6a-9824-eccc586dc0df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/72e0c837-1ab2-470c-91ad-f34c0c878b4f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5fbe32ee-de28-442e-a9f6-6083efc1080e") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42bf9a4d-d3ad-4775-bf11-b569dd567e64") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dbd8e0ff-fafd-4c21-b1a5-224f3c8df513") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12407aaf-7a1f-4ce4-9928-d1c901f80198") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45b9e6e8-6fa7-488f-b369-90964260e2de") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a645e51f-bacc-444a-871f-9657f511ed1a") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5d952fe8-127c-4f22-bb1f-63e30c1df7c6") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "40e08271-9d49-435d-b805-6b4136fb216b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c342ec6f-9094-4167-a022-7cc43a9e2102") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eb72ec3d-f62f-43a3-b683-f7e73a5b48ba") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "b9e5eb76-55f2-4f67-bd45-cd82db974b80") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "a47bd6e4-8f9b-4da6-b7ce-8ab30291f531") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pintype "passive") (uuid "c738f93e-854c-4b5d-b9bd-819216fa3fa5") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "6d8ebf97-573b-43c6-8e4c-dd3c59c3b475") (at 109.2189 114.3124 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C22" (at 2.2849 -0.0384 90) (layer "F.SilkS") (uuid "76bdc7ca-6fc9-4841-b553-fdf7a2633225") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "dc3db683-4d0c-4e26-9541-bba63fa93df5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e2df37de-273a-463c-9d82-c13613bd2670") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8f1d46f0-17be-4cc2-ade0-34d5d5ef43f5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5469ed1a-df2f-44df-a734-319dfc76a6de") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5d1b6916-bec0-4065-aefa-5e76c38729ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b1df5866-8313-4101-8f9f-a8543f24f36e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "346b4d4d-f0dc-4fb3-8b65-e8c9fa91e53c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "606a6370-7e77-4930-8f28-e297f3ea1041") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a6361a61-7c42-4fc4-b4fa-5c7534335124") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "10dc892f-44c1-4b97-93db-0ecc215d7715") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "213d128e-d4b3-4f1c-99d5-dabaf0cf823a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e065b21-12d1-467c-a2e7-565d2c09acb1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7ac08458-3d42-4de0-98b5-b3ff49b7b424") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f744790-2bc5-4b6a-b78e-667cba254a74") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab12aa1d-deae-4535-b596-464e17d6c1fc") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "da5f3e1e-31eb-401e-8b26-a8b307c05b92") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5513607c-8919-4143-be9e-0e7811789a93") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "52e876a4-e96e-4e6d-a7f7-66d775cd5ba2") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pintype "passive") (uuid "14c95efe-0c38-461b-b127-8a339c388e72") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "8013d69a-ed66-4562-abfd-b3ea0af476b1") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "6e81fb18-4730-4f78-bb33-e43ac2e4a44b") (at 92.38 57.52) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R9" (at 0 -1.27 0) (layer "F.SilkS") (uuid "b6028a3c-6f01-4332-a592-c9188d87ca44") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "9df381e6-a70b-4ea1-b7a2-9faf746de9ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1c3631b3-7ccb-43d3-9b4b-f056bad83c58") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ec8d1d3-1f51-468d-af9e-ba83be4c69ee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3b70a752-ffd2-4ae0-b427-83c68235125f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37bae61b-8787-405a-8e48-f2a30f60468f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "59e1206e-edb9-4401-9f54-5f7cc94a9b79") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "303c8161-d23a-49b0-a66a-688bac90ad8e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/ee59b5c2-5b4f-4d46-8c91-a3f6012dcaac") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "71ed6b46-8ab4-429e-91a9-a468f827acd8") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ccb7752-816e-4e7c-a29b-1d28aeac9f4a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f3e7a019-fd81-4f0c-a1e3-7fe60555c562") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "253bc7ec-7f0b-4409-afbe-67a97943cbfa") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "691f8736-c2a9-4ff0-a326-33886ae8fba9") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "528859ae-535a-4732-8bbc-d9c8ca9ddc78") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c73fac7-dc9e-4987-871e-e0da7fe1abe6") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0af5070-075a-492b-93b8-2700ea8d73ba") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "edc0659d-7ae1-47d9-87cd-525371c1c5c3") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b10fadf-38fe-4629-bcc5-dcda541a3088") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "83a7885e-7118-4b92-accd-8889ddca17f7") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 25 "/Fan Channels/FAN1_PWR_IN") (pintype "passive") (uuid "1fa555b7-c880-40fe-a3bd-3fae55cff29c") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 58 "Net-(D12-A)") (pintype "passive") (uuid "eee0b75c-c593-4637-9b9b-0d5cae1a9f2b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "6f9935bd-e6ff-4499-95e0-bcff7e1cbc7f") (at 48.8328 126.3904) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D13" (at -0.038 -1.5904 0) (layer "F.SilkS") (uuid "00b54620-46c9-4999-ab3a-643e0c3f97ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "798373d4-4721-4175-aba8-5d633d18aeda") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48f53bb4-078b-48a8-9d90-7bb4eeec1c50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77a09b05-92f2-48df-97f9-c5a01ea3bdba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a3ca371a-bf2d-4ca4-b603-4daef0b54837") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09ed4ecc-29dc-46ef-855a-301c16377ddc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f309e10f-0b76-40a8-bb5c-5cb7d3b7c647") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87f9c5fa-586d-4545-8820-a1cca12e4662") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/543211f1-d18f-43bc-a156-ce9568f63336") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae123d53-9f7b-451f-b30b-c1576b652f65") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a8c23c7-d622-41d7-98f0-324270f27de1") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "956a9b80-b0d4-48aa-86cf-92f00259d5db") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "357593e1-e9c5-401a-a9dd-989e1accf1fc") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f6df92e-160b-4d3b-a7c7-af6be8811c1b") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6589a076-f753-4715-9333-47f1384c1005") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e752923f-404a-4753-87ea-36bb11d7039c") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "491a8184-4b36-4045-9bf2-4136672f02c9") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea3f3e81-5b04-4035-8ef5-59cfd01e1ee8") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9abaffb8-7691-43d0-be68-d775257ef9e0") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa8024e6-490d-4505-b02a-a8a4ac0aebdf") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe569299-78c0-4217-96cf-8922cef7a20a") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a32789f-4150-4c83-8a2c-315b36e38f26") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "61742e09-1989-4dd6-9f5c-6e85b8e152ea") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b45fa20-8378-4fa6-b437-048aa1087841") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e8ba20d-1bfd-4d1e-b6f4-99f01f8689a1") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e993f6fd-3ca5-42bb-b83b-1a5431bae73c") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "c3a83298-581f-4fca-83d7-01d7e245fd95") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "0c1bd131-06e5-4723-a28e-4b987c91d0a3") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 19 "SDA") (pinfunction "A2") (pintype "passive") (uuid "ecb9f065-55ac-4bad-9db3-ab6e24688105") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "7185ec7a-5979-4090-8ed6-13e8ebfd50b5") (at 109.2708 86.4508 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D31" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "27553798-724f-4ebe-a29f-2993c8de7768") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "91739e1e-ba32-49f2-b574-279446fc6c3b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "aad79833-59ff-45ac-939b-4c040983fdb6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ba755b76-ffd9-4938-82ac-e6d379d90e4e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "274b3e64-01ee-45de-bd3d-9116d137b1c3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "2486bab4-5c37-49ce-a97e-15ee8fb1eb07") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "6045abc7-61d7-4b13-9471-8d54386fe47b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "9fe51aab-76b5-4397-af3e-0d4ddbc66501") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6851d3a9-f9d8-40f3-87ae-179f6a4f2b8a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "577eb87f-9328-4086-b477-69d87a3b25e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a765d08f-d558-49eb-b904-7b7f382f1464") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0c8546c0-410a-4407-8985-4942e4cb7d01") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0bc023af-d299-469e-9be3-539317c32b1a") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce5dbef4-7975-4b13-9b4e-d589a9a0e642") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfc00936-f874-428b-ae32-6c217c82fd03") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3106e21a-9a38-46ae-a7bd-f112b1281b3b") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3899d188-670c-4f67-9a2f-c3802699e144") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88a5202a-1e8f-4d6f-9432-86aaa8e5ae85") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b31c7a7-1d56-46f8-baa3-299a0aa78246") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c006f76-2cad-4167-9539-7d7a1410235b") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f8258e7-1627-4df0-a931-dac682ab7d44") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0650ca86-ce1f-42cc-b8b9-601cb68fa95a") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c4dc8adc-9ba4-4696-a385-dc07954f557d") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1596535-7366-4b3b-a8c5-e0ca01f78f54") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a797d2b-e666-4642-adf5-28ee8f5ff4c9") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "abe50688-a78a-4a51-8092-6d9f56b7e3b8") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c70fbc9-8730-41d6-b982-c3ebf4773b8c") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "d2a42588-8c3c-49f0-8365-bedb634a5538") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "c2fe3cef-30c3-4ca2-8219-229d360660e3") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "fc193f01-85df-4764-86f5-57858f108317") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (layer "F.Cu") (uuid "732e2973-4921-4615-b912-28493839045a") (at 84 83.75 90) (descr "TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "TSSOP SO") (property "Reference" "U1" (at 0.95 3.6 90) (layer "F.SilkS") (uuid "2925308f-6789-45ac-86a9-f49a24990c25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SN74AHCT126" (at 0 3.45 90) (layer "F.Fab") (uuid "cbb1b87a-8958-4eb4-83ec-3df7989d5b71") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a1b98204-98d2-417b-99e9-2dfa39d0c958") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "(AHCT125 = C36365, AHCT126 = C155177)" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ffe25869-1fce-4782-b884-f70f8c0c7b98") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e12fa9a-edf9-4a91-b6b0-412f0ce33b50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C155177" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "062a3637-c2ed-4b05-889a-9f878864d078") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "80fbf2b7-e1b4-40d6-a334-907ffe5e01f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "35105bcf-a7f7-4228-a74c-36363c845271") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -2.61) (end 2.2 -2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1beb279a-a5f5-452f-8033-e09b97c4bd07") ) (fp_line (start 0 -2.61) (end -2.2 -2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4bb8b346-45c2-4d1d-b208-122013d0ea1d") ) (fp_line (start 0 2.61) (end 2.2 2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1b57c5c-097d-419e-9641-d8d63311de08") ) (fp_line (start 0 2.61) (end -2.2 2.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "120cf577-0839-4326-9fd0-1c1789980768") ) (fp_poly (pts (xy -2.9 -2.41) (xy -3.14 -2.74) (xy -2.66 -2.74) (xy -2.9 -2.41) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c9847478-39dd-4a68-b9d0-3f76e3f23614") ) (fp_line (start 3.85 -2.75) (end -3.85 -2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a2785d4b-760e-4b19-94d2-7b5d76ac3205") ) (fp_line (start -3.85 -2.75) (end -3.85 2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d0523a9e-1a5c-4b4f-aef7-4bab35b7db4d") ) (fp_line (start 3.85 2.75) (end 3.85 -2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "28151d8b-146a-470b-9dc2-b29a7994639d") ) (fp_line (start -3.85 2.75) (end 3.85 2.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c3c4cd41-d032-4518-9d12-aec0f39d55c7") ) (fp_line (start 2.2 -2.5) (end 2.2 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c32ae23-7f4f-4dcf-9eba-9291f21bed85") ) (fp_line (start -1.2 -2.5) (end 2.2 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd218fcf-ca6e-4530-bf21-9dfad9a05508") ) (fp_line (start -2.2 -1.5) (end -1.2 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d904cb92-a52d-4480-bcf4-4ea546e70258") ) (fp_line (start 2.2 2.5) (end -2.2 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "99c61692-3fe7-4857-8b2f-6affcc025355") ) (fp_line (start -2.2 2.5) (end -2.2 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ffc54a40-a595-41ff-9696-fd5db6e1476d") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "5bd2e4fb-4051-4497-9635-3ee813aa1ae5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.8625 -1.95 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pinfunction "~{1OE}") (pintype "input") (uuid "b213b7ba-b1e2-4a25-9aba-c070f791490e") ) (pad "2" smd roundrect (at -2.8625 -1.3 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 43 "/PWM2A") (pinfunction "1A") (pintype "input") (uuid "c55949bd-52fd-4257-88a0-85f59806cc4a") ) (pad "3" smd roundrect (at -2.8625 -0.65 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 42 "FAN1_PWM_GEN") (pinfunction "1Y") (pintype "output") (uuid "452f18ce-f671-4419-b258-e55955f0dd3b") ) (pad "4" smd roundrect (at -2.8625 0 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pinfunction "~{2OE}") (pintype "input") (uuid "aa49762b-0fb9-4bc0-bc76-722fd1f9a977") ) (pad "5" smd roundrect (at -2.8625 0.65 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 44 "/PWM2B") (pinfunction "2A") (pintype "input") (uuid "5a487058-3b84-4e53-9e91-38573059aed4") ) (pad "6" smd roundrect (at -2.8625 1.3 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 45 "FAN2_PWM_GEN") (pinfunction "2Y") (pintype "output") (uuid "0688290d-cdbd-4758-af6d-bc0576427bb8") ) (pad "7" smd roundrect (at -2.8625 1.95 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "b3f7a424-a2b6-4ff6-ba39-008e7d2bb671") ) (pad "8" smd roundrect (at 2.8625 1.95 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "FAN3_PWM_GEN") (pinfunction "3Y") (pintype "output") (uuid "8e684bba-57cb-4f64-85cc-5240b021dedd") ) (pad "9" smd roundrect (at 2.8625 1.3 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 47 "/PWM3A") (pinfunction "3A") (pintype "input") (uuid "afc20645-ce06-45d4-88d7-16554c82a801") ) (pad "10" smd roundrect (at 2.8625 0.65 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pinfunction "~{3OE}") (pintype "input") (uuid "50d0c0ce-b2c5-46e1-a905-c46d2fa07aba") ) (pad "11" smd roundrect (at 2.8625 0 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 48 "FAN4_PWM_GEN") (pinfunction "4Y") (pintype "output") (uuid "58f3d257-e2aa-4e51-aa81-26ec101fc378") ) (pad "12" smd roundrect (at 2.8625 -0.65 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "/PWM3B") (pinfunction "4A") (pintype "input") (uuid "f6921628-2b34-408c-a977-de5af0992d9c") ) (pad "13" smd roundrect (at 2.8625 -1.3 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pinfunction "~{4OE}") (pintype "input") (uuid "d341cada-c642-4084-97a0-307420513102") ) (pad "14" smd roundrect (at 2.8625 -1.95 90) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (uuid "5ace1ac5-c9d6-44d0-b102-bf65103d5c9b") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-14_4.4x5mm_P0.65mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "756bd169-25d1-41ef-9760-28f7b6b92a6a") (at 98.9113 63.2851 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q2" (at 0.5851 -2.3613 90) (layer "F.SilkS") (uuid "cb8515ec-e153-4354-852a-146b2d709536") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "c617e065-7289-41b7-9f13-cf24906cf630") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "79979872-5975-48f5-bab8-52b4fd4149df") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/2N7002K.pdf" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "78859603-8f9c-44df-9959-085378a4ed74") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "36d0caa6-3314-4a39-95a9-edf7750f640b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "15a32413-1c66-4743-be44-881757b096c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "da5e7e1e-f81a-49d3-90bf-09692f3f4829") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-2N7002K" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ffaf501a-2ef9-4212-ab2f-690fa13542de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/c8a53563-593a-4628-bfe4-3d6f26507f00") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1615581-e488-4938-a99f-911407ec4d73") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2798147-8f4a-4cdc-9615-2edecdc4a932") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "728191c5-6627-46f0-b5c1-ab86f4632dcb") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "58c9fec7-eb84-40b3-b71a-8003049328ec") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "f7bb3303-905f-4d86-948d-06738df5d3d3") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5782a0f4-ffc9-4e4b-9fc2-753872cd0371") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f064ad34-c32c-40f8-83eb-cb26e43506fc") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "198cd4cb-bacd-497a-8500-d343b7025bea") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "647a7846-5075-48a4-8d97-b2e6e074ead9") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a82dec1-6796-479f-99fc-984902e42ff9") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92656b9e-803d-4e89-9da2-e507ff752309") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a017399d-7e61-485f-9606-48b594ea12f7") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18810c93-3b5a-4073-8183-8cf92f577ac2") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b80e8edb-0a3d-499f-ab5f-fb979af9e956") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "1b575746-4c23-4fcc-8197-d679cd8eaed7") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "G") (pintype "input") (uuid "ab26d877-178d-4ba6-9411-fb1f65eb37b8") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "/PWM6B") (pinfunction "S") (pintype "passive") (uuid "6d87fb4f-b288-42b4-a759-b90cecb220ca") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pinfunction "D") (pintype "passive") (uuid "3465749c-da40-482b-922f-6d6c67f6e004") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "77719df2-8f84-4826-86a8-648c59a1aadb") (at 53.5 82 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "U6" (at 2.5 0 180) (layer "F.SilkS") (uuid "a22651b0-b4d3-4342-8ef5-c44aaa20a1b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 2.4 90) (layer "F.Fab") (uuid "9a247972-0a5f-4786-aab0-b76158edb278") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "faff3033-a943-4c19-998c-0c58672393ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "005f5240-aa70-4fc6-b091-5ff34b6b64e2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a0e8285b-66e2-4334-9096-6f0ada25a3a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C143326" (at 141.575 16.575 0) (layer "F.Fab") (hide yes) (uuid "2245ab7c-6186-4956-bc9b-ade32859ec0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46bc0356-87a5-4acd-bcd0-fd174e47c0f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f31b5bcb-8ed8-4848-8b2e-ba8287bf78cc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/424316b7-e2a3-4008-bbc5-a6a4ca971456") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "72facb3b-a15a-4619-aff8-587c0d18c93a") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "820d69e7-d606-40da-bea3-8c938540d9d1") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "89012759-133c-4b6d-8ae6-0389526ec267") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2adb4d4-b8b4-4daf-8f44-b6175680286c") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "12d786ef-e806-4f69-9678-5aea35215a14") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1ba6171-a7c2-4622-bfce-d8a3646a5d08") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "de27cc23-d24b-42ee-83dd-c18df1acb397") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4807e1b-2eda-4c6f-9bd6-c33e7617bfb3") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09835904-73a2-44e2-89ec-619f3f8cabf3") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9d1e9e89-d516-4baf-9e72-e4133a39b961") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a7a2be7-889a-4b4c-b5f0-c4d898d7cc3a") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "853d0686-e9c1-43f0-92cd-6be51c306bad") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dde442a8-ac64-4450-92e5-feefb573c7db") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "51da2d95-06a8-40d9-91dd-364eb0ba6c49") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d013da5d-be0a-4ed2-bb20-443b7b98c3d5") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "ADC_REF") (pinfunction "K") (pintype "passive") (uuid "47b911a8-f788-40ae-97d8-7156ac83c87c") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 67 "AGND") (pinfunction "A") (pintype "passive") (uuid "97ae7115-216b-4e4e-85bd-5203eba5d2d2") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 55 "unconnected-(U6-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (uuid "a1ab9ab7-2398-42aa-8178-3abca0c8495a") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "7949befa-57c1-44ae-a457-0485919ea370") (at 40.62 121.9332 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "J19" (at 0 -2.02 90) (layer "F.SilkS") (uuid "e44bb7db-287f-4915-ab13-9a5919298af7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Serial Console (TTL)" (at 0 7.41 90) (layer "F.Fab") (uuid "94034ec7-a4cf-4e36-a4e9-512321e81fa9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "30152052-eb12-478b-a4c7-ce32043dc96d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "345e2400-b19c-49ea-98a3-3114519eb52d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5b45741f-ca31-4716-9d39-ff13d5ac2553") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "da864e04-de62-4b6f-a2ee-c86061919c6d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "182fdf8c-a68f-4b77-88b7-733ee48a637f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/b7bc6b02-4815-4959-b689-29dc65d07154") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dbb93318-f7f2-429a-bd0d-0bd1d9dc15ad") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8b48ee4-b591-4f8a-b337-5e915da44bc3") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12a3b469-c194-4a21-a0a0-46a6f5d06841") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3d5e8ead-32bc-422b-8c12-fddd43a10128") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc2cd032-a304-49bb-8836-056596bb8520") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "abbe9de6-7e79-44ed-a12e-5d02ff29bc74") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a52004bb-063a-42b2-819d-769f3647db25") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c69cecc9-4d49-4644-bef3-51ddfa06f425") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e238751-8678-48f1-8c19-0ec9571e9a16") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66b1a989-c6f0-4f19-991a-d36f77dc23a7") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a0a9e309-d396-40ea-82ac-77263a2d4178") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2771d3a-02c9-41f2-b6d7-daac53cf734d") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ece87f7f-845d-4591-814d-1e6b6aecbe08") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8caeeba3-fa09-46c5-a1f9-104a6a42d1b0") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce30a86a-fba7-405f-826c-26dc0cfa3b2a") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "c91a6b42-1363-45d2-95f1-8a3abd889ea9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "defb2df9-0e13-4d29-8920-07d5ce832397") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 22 "RX") (pinfunction "Pin_2") (pintype "passive") (uuid "5f10f831-259e-4cf5-841e-c34ff8b0438a") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 21 "TX") (pinfunction "Pin_3") (pintype "passive") (uuid "5a7d0dfd-7d8a-47c2-ba01-b974f520621d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "7a89709d-a8cb-4a64-a3a3-ed263fad27d0") (at 99.226 84.7325) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D30" (at 0 -2.5 0) (layer "F.SilkS") (uuid "39b534e7-3e68-4fb8-86fa-c6017260d04a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 0) (layer "F.Fab") (uuid "2e578801-1c30-4239-b8f4-a4fceddeebd6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3380db7e-757b-4682-bdc8-cf8912a49098") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5dab5ea5-570b-4df0-bc29-197de8591bc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d6753a56-d8f9-4f0c-a78a-f6a48fbf181c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "89035c25-67b1-4e93-af76-2d055b03b21c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ff19308d-54f3-48a2-95a9-f6548f2e7839") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "84e74640-c3e3-4e16-95a0-9f34215bb936") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5154cbcb-a2e3-4c49-a6bf-8ff0116cc84f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db850878-fed2-415a-b6b8-25cfe0273818") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc9084c8-2571-472e-9776-c29a97e92b18") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bf5a2e9e-c42a-4271-9de0-e359d211c7f1") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a4a2bdc-6a36-4cef-b544-03c24f5f590d") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1317bcf-1e83-44b9-b850-29e7d992208d") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e829a2e2-2ea2-4e3b-8063-2bf6738fb3f0") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f683e26d-7946-4e44-b5b5-d7a62066dd44") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62aed2a9-8fa5-4f49-92f5-5ad3670bd2b2") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "94aa495b-456d-4592-8162-96a058a2f9b6") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0741b792-4723-4b2f-92f6-3afdd2ab2bb1") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "937d250f-8a09-4bb9-b5a8-a5f58e5ae675") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a0c0e87-4a33-4123-b951-6c5e6724f925") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb6d1f36-d5ec-4e35-bda8-ec1c372b90e7") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f5a12ab-1ab8-477b-b536-d63ad945b25f") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed77f4fb-7deb-4246-ae54-aea873317949") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c233db6-0649-4550-ae94-228c81f8c677") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25012ac4-9f3f-4a57-98da-ba7115cfdc3b") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71c410b8-3eea-436f-be86-825a01ea8265") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "175b4e47-df53-4ddb-933e-fdf8b3137f29") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "a3bcdfa9-936d-4dfa-967d-93efe0ef837b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "726bb8f4-2278-4d9a-9537-2aef8e615059") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "a3f42448-86e2-4c64-ae12-f2ded06eac74") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 61 "FAN4_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "92ca1d5c-a2bb-4de6-b7f2-c09424a3c0a2") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "7bb94872-8dbb-49c9-ba04-f5628db9fbfd") (at 102.7176 93.4212) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R41" (at 0 1.5 0) (layer "F.SilkS") (uuid "acbb8ab6-8994-4112-a2ac-35948834a5d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "4e4762ca-30b8-4a66-8cb4-4804ed87ed7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dfa26378-de53-4546-a989-a1093e3f9c72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "638166f1-59c4-4033-a659-2973e21a3a21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "421a088a-38fa-4f26-8aea-bf597a6ad431") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "68cdcf1e-fb0b-4e85-8cee-328e66d97611") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c5dacd53-b7a4-411a-9da6-2f47d03dc350") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dc208847-38ef-4841-bff2-6b30c6e698b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "83c77dc8-c277-4a7c-be74-536e648ffa73") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "df72e173-0103-46b6-8b2e-b3a74566f7b9") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23e2fd88-2757-492b-8429-8b72ab9fbf5a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "922d65a4-5b7d-4bc4-b22c-4c554622e54c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e89b6e6a-bd88-4648-aaff-2ecf051821b0") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a6ee6bd0-f59a-4d35-8de4-9a1f44365ce3") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47a10075-c006-436f-9d48-e4250a4f6a36") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa107519-8e91-4481-8422-23603f5baf49") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8df3648-4281-4799-9375-d7c18fe87199") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c784961-48cd-46cd-9ac7-593ca3b96619") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "63123528-83b8-4aaf-b8ab-727094165736") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "FAN3_PWM_GEN") (pintype "passive") (uuid "54be31e8-fcce-4227-b583-6748aad71bb6") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "/Fan Channels/Fan3/PWM_OUT") (pintype "passive") (uuid "5b48f8c4-9b9b-4954-a08f-9e950974dc9e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "7dc9f489-4156-491b-be43-4d23744698f1") (at 53.5318 85.0307) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C30" (at -4.0132 -0.1524 0) (layer "F.SilkS") (uuid "dc994edc-db8d-4dfc-a4c4-a0942194e586") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 0) (layer "F.Fab") (uuid "cab02a7a-46e3-46ee-973a-47c0e9220626") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7636708f-6694-40dc-9163-c18279df6598") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "745ac1c0-3c10-4656-a57e-00f0005ee00c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e9b13c13-9bad-45f7-b0c5-cb9bfb17ff1b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c4231127-27db-4f5f-9b8a-5eb65c33bffe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0431980b-285d-4920-9871-55a8f089f46e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a48c6e25-6997-4f93-9c73-b7295e21e4d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1b84112-e4d3-4bb7-8e27-a0eb7f094d78") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1b5d9ccf-06fd-4d51-b913-ec533e173096") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "92b59d20-53f9-4240-a9cb-635bf4e89ebb") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f83e9977-d68a-4787-a45e-f5d14ff35f9f") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "02a6eab5-5cd9-4cca-9edb-49290fab042a") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5af7bdc-d749-4479-a3f7-73a3159e4e1a") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "156487ac-9917-430f-bc3a-658760c9e042") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3bbaf63d-2279-400f-9948-d0e4fc441f6f") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2fc39f2-efe2-485e-8a53-dedf17ecf02f") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "105e268a-d25a-4c3d-95de-4452c51df036") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7467a29b-97dc-4565-a625-2943e0e28f18") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bbba9c91-4755-4443-b30a-4fe8451f6707") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b7ad1336-47d5-406d-83ce-98929764d70b") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 63 "ADC_REF") (pintype "passive") (uuid "762571dc-b9dd-4271-ba5d-1b3239f206ee") ) (pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 67 "AGND") (pintype "passive") (uuid "87f1ad97-567a-4e5e-b36c-9bba43cc0786") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "82393777-34e1-4bbb-88d1-89e4aa816583") (at 102.7684 104.648) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R38" (at 0 1.5 0) (layer "F.SilkS") (uuid "c34738bb-f834-4b12-bad2-bb3af607a900") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "cbbaaa03-3708-436a-8c25-5e856e413e59") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a419e47d-1f7d-4455-801c-9906b5a94ad6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0974b8e6-28ca-4e9d-b091-7d5e0cee4955") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "91002ad5-5d02-4dda-918b-2a6f938c3b5b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a97936c8-ed99-4fd0-92c1-de4c48a61f37") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9cb99155-9fd7-49ef-a890-40ca7359c869") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4ff911ad-139c-4618-8490-fd50f5616ce8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9a92db51-b5d4-45eb-b30c-12277959c32d") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "af0c8703-b31f-478a-8f51-1aea6be703d8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c8be0239-5359-410d-8bc5-47c143737136") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fcec1cf4-e4f0-4c0e-9dc8-fd9d9523f513") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4a373080-1b95-44a2-a325-b3d7439226ce") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2023ce58-dc15-4003-9b0b-5413fe0e6924") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd505a9c-c232-4de4-b5a0-0a35532fbe32") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c7fe1847-aca0-4cdd-a286-d101fdea072d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48e587e2-1911-4fc8-b790-1eefc3fd0972") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0793655-758e-43a5-ad5a-d85133d19c19") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "9aaff0ea-5eb0-4835-b8a6-d4d00695f393") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 45 "FAN2_PWM_GEN") (pintype "passive") (uuid "2efcfc46-39c7-4f38-9215-d48d94e3075e") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "/Fan Channels/Fan2/PWM_OUT") (pintype "passive") (uuid "838fc6d5-66e4-48a1-9bc5-9ced861fa864") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "866fcabf-fb8f-4309-9f82-35b7b782cf70") (at 95.476 84.7325 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C25" (at 3.2175 0.116 90) (layer "F.SilkS") (uuid "ac25ad2a-20cd-40d7-80f8-bf999863086b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "37efe8b4-1f0f-4021-aac8-0b0ee83956c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9c58b655-33cb-443a-ae28-1819643f2e47") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d75c7254-55b5-4c90-b4e3-c7fc23cc9364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "879b599c-d076-4969-a57a-c17be025315b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 63.5 229 0) (layer "F.Fab") (hide yes) (uuid "2f9a9fe1-ae65-492a-b0dc-b9bdfa26000b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3d51273c-c41c-45d8-9d5d-6f001d95e919") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa28d1f8-163d-403d-ab47-544d475272de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "36753e7c-3a0a-4f91-b414-33ddbaeabc6f") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d6a7057-4f24-4858-b422-1c20b2a5e447") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "470dfdcb-654e-4b7a-9a37-9aba2a1a3b0d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cf6efa5d-0b64-434e-ab12-3adf98a3cdfb") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce13fb9f-aa98-4198-a2f7-0aa0a07904bc") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5363812c-0406-4560-b829-28e15e8b6941") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53313f79-a500-4546-a72a-8102a1aa9d85") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "540bc5af-2c4a-47af-adcd-6fca7848ccbe") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e3899ba-e121-4b3c-baec-48a3ff0194e8") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "52587534-f03a-4c8d-a29f-fee985a9ce1b") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "5ac636f1-ac0b-4344-8895-09958969b895") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "FAN4_TACHO_READ") (pintype "passive") (uuid "96893fea-effa-4834-a4cb-47d61a83dd47") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f7d820e6-7e2b-4667-a96b-4efd01e98c84") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "8c32b2f3-8ad5-4637-94bd-2e68cae5091b") (at 56.35 127.5 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D23" (at -3.5 -0.05 90) (layer "F.SilkS") (uuid "020a9888-b7c2-414f-a687-bf22c7584f78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "559f6038-bfea-43e2-8471-0996586ea018") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3f8094c6-f2a6-4314-8dd6-45650399aa4e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4388f71d-565f-4603-9494-28bcc2b3b219") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48a74277-8f1b-47ae-a30d-c03dbd6be8c1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4546215-7850-4c65-a52b-b9a6f0828108") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ebd96749-c8d0-473e-bab3-52647219bd5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9bd2f8a3-40ff-40dd-8ee7-75b21f4cb77a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/0c54e4ad-df7a-4f93-94d7-9edfd7e30a70") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d2651c4a-5ab4-4f33-91d4-c22c7a6152b3") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f8aba6e6-a334-4fb0-acd0-a839c6813b6c") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "de006f0c-27a3-4d1f-8c9a-98fd695fd694") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45fc3f77-3b2f-4504-86ca-4c6ca9338602") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e860b40c-c0b0-4ee8-ba2d-d9cf59c359a0") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce903a12-042b-49ce-9fc2-e3440db33bf4") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12d22aec-a835-4566-bc43-8c75fd992ae3") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8767cf6-e429-4654-bcdc-5b03623e6c04") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a22699ac-d664-4288-b7ae-6c8a1783314a") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5bb30308-2313-42d2-afba-050b6ea522ef") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0268b798-7dd5-4725-b51f-e1c5eebc74c2") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a9a1834-ffb7-432a-9ab6-6c7cbfc985fa") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fde3041b-3768-4022-b591-dfaf88a33d5c") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9141d6fb-807f-4d6f-81d6-af2cb1d3d653") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32eb9a9a-4792-4175-8b3d-fa329e4e3a7a") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f452ea2a-bc4c-47be-9417-a96cbd2af895") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1193d57a-d631-4e47-93de-22f18efcd15c") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "f777c1ed-a230-4637-8158-a219a93c811b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "4733772c-8e98-48f9-bc12-2acc672cdfcf") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "76fee000-2d28-42e0-b1d8-005aa6b0a71b") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "8c412f01-bba7-48e8-b847-df07ecccd1d3") (at 95.4743 118.6325 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C10" (at 0.104 -1.3716 90) (layer "F.SilkS") (uuid "1453e418-c715-4a15-aa5a-c299dccfcb75") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "f41b0ca7-d993-44b0-97f5-0b229f8dbb52") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5c90f4d2-421d-4bb2-bee6-4d2b02202ef2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1e6f7d3a-8a6a-4112-a86e-e8785556c502") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5fdad270-9e2f-42d6-92fe-2794f42b66aa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 215.6 218 90) (layer "F.Fab") (hide yes) (uuid "dc321503-d51a-4914-9d47-edadd1548f33") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "582e5dc9-beda-4346-90ef-19e8b89795d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f7501e49-8698-4924-829e-f0c8e9481dce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/75bd3244-7746-40bf-b41a-5ea9cec31d77") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5d31cc8-6c1b-46ac-9d01-665f0936e5ad") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5755d983-5dc1-4c27-91e8-821cf04b8e55") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3defcda8-e220-4cdd-8d2d-9045b63fe9cd") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aca00d8d-a74b-4c38-ba15-174e8bfc9879") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2c072bb2-bb90-44ae-b32f-efd894544d14") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "684b8833-de1d-4587-9445-43b3d4477b0f") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "899c7d99-164d-48f9-a2d3-10efc5efe27f") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9cc875b-c83f-46c6-ae37-104f8bafc15a") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58f4b3c2-540e-488b-80a7-35597bc50422") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6b4180c-2b46-4eca-a60f-3b4ff1dfe4e7") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "4a6229ba-4cab-4996-b68e-d338cf8b847b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "d43917dd-229f-4bbd-aebf-36d31a3dd5ca") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "4fcf7165-86bf-4d5d-97b5-47bbb30ee95b") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8d9ed836-03c9-469d-b64c-e961bc8ffbda") (at 60.15 71.3 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R4" (at -2.65 0.05 90) (layer "F.SilkS") (uuid "22d2407f-fc5b-4019-8297-70ac387b5a73") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 90) (layer "F.Fab") (uuid "9d3f057d-dbdf-4976-962e-096cc2899a38") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c7df3b68-18d9-4204-bc84-f512f9657270") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7ca2166d-5c98-4aa6-97ae-b3202294ffc7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9a85812e-5138-4c0d-bcc7-98b859e8584b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 140.675 168 90) (layer "F.Fab") (hide yes) (uuid "0048410d-3943-4ee0-9d5f-eb4468177521") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f483a5e8-64b5-4860-88a8-87bffa2238d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df95401f-4406-4c4c-a46d-44dddabda34e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcb2d071-6921-4528-b2d3-1a59bbc83744") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee207ce8-4fd7-4ed0-ab71-7f32868dc2b5") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f8a16386-efcf-4f86-b0ee-b1c184843f13") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b35682d1-2e89-4563-9d7d-f15598d90402") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9b4bb590-3738-4132-a021-457522342593") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7a787e10-2ef2-4cc5-8cd6-7ea1fc1fd6f6") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "03096557-8087-4897-b960-1ee6df0b726d") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1711b2b1-edf5-451c-8869-01cd1b85d4ec") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4538193e-530c-4711-9b14-f9b81e9d0dae") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5925d6a0-951a-406e-8722-e635c8676340") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "30296dfb-88db-4f4e-be47-bf5fccf1f86a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "8f3fa403-e5b0-42ad-93c3-22256c463456") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "c087bb70-35c9-47de-a3ba-15e9c975a8a7") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8dfa8eb2-f6af-4814-9c8a-167c232aaec4") (at 69.4617 78.6092) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R5" (at 2.5219 0.0292 0) (layer "F.SilkS") (uuid "2e0e4308-0826-4d0e-bc59-fa92ed08f07b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "922d04bb-fff9-43d8-90bd-a483f43ba66d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "457b0865-f322-410e-a44a-50ac8fc85083") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0edde9d5-a1a3-4c0b-ae18-a1225febfd1a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3329775b-fd36-439d-8129-6d4e267236cb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 161.925 167.5 0) (layer "F.Fab") (hide yes) (uuid "691d8d74-cef1-409e-b350-8d91305773f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "007c95af-babb-4a28-833b-a99f3fd5692f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7df98a72-b7fa-4424-ac71-f74a90101c57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/536545a8-ec75-4173-afef-e4439b3a7241") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bd9f3990-3b48-450b-b943-47da1ebfd142") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6bdcd3c3-c004-4a1a-93df-ef4c15c77cbb") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "caa4dce0-d513-4727-a854-7eec1b4ca9b6") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1fa234b-0152-4a85-b59b-aa2a77f87874") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "70c9e42b-f003-4234-a1e1-1df2d0142af2") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8346e57d-fa8b-4948-b17a-4311d4a1cb9e") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e28d2954-8589-4eb4-b201-69b32dec6535") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab3c0525-43f7-4283-9c97-cb136fc49f37") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d65ce845-6e76-4720-8ed6-da8c4577f223") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa41ca47-7075-4c65-a8fb-bf89a51d7248") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b7705320-39e9-4a9f-b1b1-47f773ead16f") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "bfa572c1-fd42-4250-a4ae-9b0ffccd1684") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 12 "Net-(D4-A)") (pintype "passive") (uuid "dabc2478-3355-41ae-b952-22b65ff3c272") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "97113dc4-8858-44c7-91cd-3b29af66f90f") (at 90.9828 77.8764 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D19" (at -0.0172 -1.6236 0) (layer "F.SilkS") (uuid "2ffb696d-abcf-4481-9806-f614d4b5ddd1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "18f286a7-6a2f-405f-9e7c-fb599ba848e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c75e4ec5-9e85-4510-9c48-e1293cd9de93") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "16baaef0-eee1-47a3-bf74-e4ce53fb16f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0cc7eb72-cf5f-4e6c-b4af-7d210abcb8f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6819c6d6-f600-4a61-975f-93f044deebd0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e4cda74-7043-4ccb-af61-a0c9e543cfc7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87129718-69de-4f8c-a65a-9852b9ca4beb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/d84170d0-1cd8-49c7-b220-bd80782529eb") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "821d7891-3f9f-4e89-bd07-f420be34800f") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1edd173e-a09c-4251-85ee-87dfaa680146") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "414f5276-6775-4f11-8466-934a015fd9ed") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62679cb7-d8d4-4823-bc19-b7ee53870c3c") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8f5dff2c-3677-41c0-8d61-784c2a1e4b3c") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1153e854-9960-428b-b01d-5a3e548aea42") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fa591738-8efd-4a68-91f1-2cc6d965a75d") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "626dd5a5-f6f8-4d04-9083-38dca5f4e7b6") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a869a1e7-2eb4-4683-bbcc-ab3c6760d1a4") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18bb1914-278d-4bfa-9825-2d69aa9743b9") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ff3862d-6b82-4596-a265-b7f8e6ea764c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef55144e-a07d-46e2-b69b-58fa12153a8a") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0e27300-fef5-4c26-97ac-0608f359371f") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "187cea72-c2cd-4b56-b309-b5db477f8b6f") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4bee53bd-4ccf-433a-b0de-afbd13bfce29") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "330ea03c-20fd-4422-9514-9fef5f516091") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1415d061-564b-464a-aa1d-3f9aba55a4fd") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "827fcbec-0310-49d8-9bde-eba5df14c480") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "d3bfbe13-847c-4a5f-8c2b-cad696915d6d") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 19 "SDA") (pinfunction "A2") (pintype "passive") (uuid "f9b58e84-b9cf-409c-9f86-be8fb2445686") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "97d8cb9c-7796-4f3e-9cd3-d41043b797fa") (at 93.6743 118.6325 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R13" (at 0 1.4 90) (layer "F.SilkS") (uuid "8cdc55fa-b0f8-4c7e-a2bd-5ae89a7cdc2b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "6238c634-984b-4c00-8b1d-850d3b602344") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "60906cf6-e5db-4a64-9d84-578621b1b95e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e6625bd1-b5bb-4f4d-8312-647336e8804f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f0108146-6947-48d4-b081-268ad389bb69") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 215.6 214.4 90) (layer "F.Fab") (hide yes) (uuid "64b0cb7a-ab3d-4fca-9049-df9c1987a6f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3c7e7190-5d04-45ed-b232-c33fb90aab44") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6fd93eda-d079-47f6-b251-da31fee0d0d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3198ab5-4bff-43f9-9e3b-4c69b57abbcc") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8d569955-61b6-44bb-a4fb-ea4d9bec5f05") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e3b729b5-3dbf-4724-b463-f3bce52f0531") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e6555d6c-3665-44db-96f6-d5330efaf755") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f749b82a-a1d2-4a38-b2f5-3faa3df890b1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "da5a9dcf-c3dc-4fb3-9d92-f9e642bdf246") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f013e68e-7294-4afd-a3d4-c938fc703003") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94c8feb0-6a3f-45cd-ae9a-619c82f32c43") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98300630-ef2a-4bb0-94ce-46192709f647") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63d729bf-69cc-4110-83bb-7f4926bd1559") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "ba2fb674-d65d-4590-bdad-845e52a13138") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "520e4fcb-e7d4-446f-908a-ec0d2e2eba30") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "3cb6f506-2f7c-42bf-81ba-e292c510325f") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "98735419-6747-4f38-ba11-a4622001b501") (at 84.05 68.9564 90) (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") (tags "Through hole socket strip THT 1x04 2.54mm single row") (property "Reference" "J3" (at 0 10 90) (layer "F.SilkS") (uuid "929754d5-c1ff-4456-b9bf-09ee7cd913f3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "I2C (OLED)" (at 0 10.39 90) (layer "F.Fab") (uuid "58d99afe-72d9-463e-a440-2fbe9ef510b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "55699227-b21e-43ae-8b15-542d5d833a42") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "3c51c197-11d3-4b44-8502-053cc90df959") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6607d200-136b-40b2-ac1d-16c3b463e600") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f5b844d9-f278-4371-bd5a-52c77fba64ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1ae84bff-27f0-4522-929f-3b94a94e42f8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/4d8b05b1-f18d-4998-9d6d-a27d459de37e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 1.33 -1.33) (end 1.33 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fec65c69-f513-4868-bdce-e9967bf0443c") ) (fp_line (start 0 -1.33) (end 1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8fee1189-59d1-4350-bb3f-70f425333ee3") ) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "55894416-8261-4b59-859f-f33070d6353f") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77e7704b-f55c-4e4f-9db1-11453ef13c3b") ) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76d98d97-b80a-4717-88a4-422979c9c498") ) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b7a3a69-21b5-4941-9778-cac3ae69aea6") ) (fp_line (start 1.75 -1.8) (end 1.75 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "419d79a5-ed6e-42cb-99d2-c63e78ff5811") ) (fp_line (start -1.8 -1.8) (end 1.75 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8ff1dc10-054b-45e9-9c36-b580ade0963a") ) (fp_line (start 1.75 9.4) (end -1.8 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bddcb3d8-b745-4270-a20f-af24bc2be137") ) (fp_line (start -1.8 9.4) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "097e99d5-e77e-4fd1-9d09-b2676048e7a3") ) (fp_line (start 0.635 -1.27) (end 1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0105f552-1dee-46da-8500-b8e913fa8091") ) (fp_line (start -1.27 -1.27) (end 0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f005f8b5-c73d-45b5-aabb-772099064d4c") ) (fp_line (start 1.27 -0.635) (end 1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a2cec961-89cc-4c12-8530-85a022fdd371") ) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "87951131-a6ec-43b4-9fef-f13b0ff27b52") ) (fp_line (start -1.27 8.89) (end -1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "72efbbf2-b9d1-41ff-996d-2ff5c525f342") ) (fp_text user "${REFERENCE}" (at 0 3.81 0) (layer "F.Fab") (uuid "2bae3382-ba76-4b35-b1da-895f7abca8f2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "e6d5126a-3ed0-4ca3-be95-63b4360d3cd8") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "3c8e61ce-e270-49d3-a06f-c4752812c199") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 20 "SCL") (pinfunction "Pin_3") (pintype "passive") (uuid "91543b0d-a96b-4bcc-8c1c-35ef4e0dc2b6") ) (pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 19 "SDA") (pinfunction "Pin_4") (pintype "passive") (uuid "d8e63ebd-7c83-4daf-8082-55c05fc0da37") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "9d70d401-de1e-4aaa-b6dd-55e1aa68b559") (at 56.5 81.75 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R48" (at 0.0508 -1.5 90) (layer "F.SilkS") (uuid "032acc7b-9906-4537-8bfb-749794973f5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 90) (layer "F.Fab") (uuid "e93a2c63-721d-42a1-962f-58ca1ca96a16") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9cd97a48-cbe3-4231-87bf-52cd3a2f828d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "88d0024a-46f6-4069-bed0-de90ce227d8d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1cbc1d4e-609b-4298-beb3-84f596beaa53") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0b142de8-9421-499d-a2f1-0d9715b73d6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3a12e277-5055-4b8a-a9f8-3792b56dbded") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "be6f4e07-51bd-4c5d-848c-9fe4dcb49448") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/46efb677-f647-4e2b-b34d-dc07526879da") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "21b196c9-e48a-4346-a6d7-b81f29d1cd83") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dd450fe8-fdeb-4e08-ba61-3832596277ce") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "908f5962-5a33-4b96-8209-337bc910503b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91615485-6c62-49a3-aae9-0d8940530575") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e278dad6-fd9d-481c-9de2-82df30599746") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6848d13b-7d2d-4035-9122-203b1e5904ba") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d052122-3d54-4d8a-810d-676a9ab19d1c") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb321521-4e58-43bb-ab25-d7acb4c3859b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ea2498a-f308-4ce4-8e8a-f33225b64f79") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a7fc641-fc99-43fb-8cc1-d13425e911c9") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "3056d890-d667-4e11-b974-0647c93ab4c4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "4bcf7545-563c-4b3d-8cfb-c4b3bd8cf9d5") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "ADC_REF") (pintype "passive") (uuid "6b002b84-1be5-4271-99ec-c83603dfbb70") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "9de94fd0-53df-45ca-b48e-13c0419fe819") (at 95.92 57.7025 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D12" (at 2.4575 0.04 180) (layer "F.SilkS") (uuid "330ce3e3-b717-4be8-934d-7589134af3e2") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "bc9d4132-271b-4a5d-a0a7-ca0f4c59aae1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08d6bd36-e4bb-4ead-ba40-9f80bc62f31d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17a06689-f4bb-4891-940a-a7d93b74a71f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "328955ba-2d23-479d-b3ce-bb10a469f36d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7929c35c-1eb6-46b4-aa8d-babd0b776580") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d8beb308-05ec-4e4b-b888-b77c3ab74492") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bd3d98cf-6266-4791-9557-879ef63e5767") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/10b9d57a-d30a-48a5-9949-f7161d62ce91") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1dcab144-27dc-48a4-beb9-5bf3390a0d21") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b4b6d5ca-d59c-44c4-be44-4f2adf388a99") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5c79c343-b1f3-40b8-afe3-0da79e83565d") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e079537a-ebcd-452f-ad5d-ad123f41ae7d") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2cf350ba-2faf-499f-a44e-a5cc6c76c1c5") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7246b855-58f4-4ed2-9e34-7eaf2a6f5c89") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6560b587-e683-49f7-849a-130379fa0dff") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b57a3de3-40e6-40cf-82f4-25d0aa58890a") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "735dac00-c523-4276-a393-e234b9ca0f03") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49691649-969b-4af0-b41e-365675e75786") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8adfa331-4a20-4dfa-9a83-dea74c702893") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c7434fd7-e964-4d18-9f72-b6493b4e8dea") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "20c396e0-5e25-4baf-8274-8d0c98aaeabe") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "e210f826-892f-4256-b520-2ee78082e151") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 58 "Net-(D12-A)") (pinfunction "A") (pintype "passive") (uuid "4e15b4ad-f89a-4c27-97f6-d4dea004851d") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (layer "F.Cu") (uuid "9e297fb5-7dd6-4bff-9d58-a869619f5ca6") (at 58.1968 67.7712 180) (descr "Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C5" (at -0.0532 -2.3788 0) (layer "F.SilkS") (uuid "c2194165-5a02-4fba-b57f-c803820eb57c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 25V" (at 0 2.35 180) (layer "F.Fab") (uuid "a3072bd3-30ef-4224-99b6-5c2aef005629") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b3bdfd75-fa5a-4897-bda3-818aa3d3ed17") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "3d83e4f4-eb67-4c82-b044-0cc660b5f0b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "591d76f6-bfb0-4058-b994-00a706ff7d9b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7194" (at 139.4 154.8 0) (layer "F.Fab") (hide yes) (uuid "f73cd722-bca6-498c-8ed2-b0a731ee0a14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c5fabb74-d08a-4a45-ab0c-4c2332d57580") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "18adbaaf-278d-4ab2-9c1d-03b80f096d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/9a6664d9-b6d9-4e81-817a-45c56239601e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.75 -1.51) (end -2.635 -1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a9de9387-872b-4b35-b326-a34851ed0e40") ) (fp_line (start -2.635 1.51) (end 1.75 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1fcff4db-7299-439d-8d86-9c92508a7af1") ) (fp_line (start -2.635 -1.51) (end -2.635 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c06c7be-1198-4eb5-9482-754a360cdc33") ) (fp_line (start 2.62 1.65) (end -2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ff920cc2-1cbd-4189-b519-a23385a47080") ) (fp_line (start 2.62 -1.65) (end 2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aecbd816-4566-400c-8fd5-e1d0e347213b") ) (fp_line (start -2.62 1.65) (end -2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "106551b8-4dd6-43ff-880e-5a87ab35fe7d") ) (fp_line (start -2.62 -1.65) (end 2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e104a21c-1622-484b-a5e3-63bfca9e7c85") ) (fp_line (start 1.75 1.4) (end 1.75 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad120ef7-1609-4878-83e1-7d4239db4f2f") ) (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2709536c-8bce-4c14-b333-e4e70188ca1f") ) (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "67cfb124-8632-4112-9278-899db0c40d26") ) (fp_line (start -1.75 1.4) (end 1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e010f72-1461-42f1-a0fd-ccde58adcfa8") ) (fp_line (start -1.75 -0.7) (end -1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d672b35-96dd-4a6d-9ae9-6de74c457abf") ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (uuid "3e6f34b2-d5bd-4488-ab10-a15bd0e2d4d0") (effects (font (size 0.88 0.88) (thickness 0.13) ) ) ) (pad "1" smd roundrect (at -1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "cd05a613-c636-4b50-b23c-836d418cb68b") ) (pad "2" smd roundrect (at 1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 2 "GND") (pintype "passive") (uuid "1176a01e-c199-4c5a-a098-b3ad1e10cb0f") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-12_Kemet-T.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "a103e322-082e-4ef6-b79f-47cebf258ece") (at 115 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H2" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "0e5ca958-c7ca-4d4e-b25b-5f2f9e2eed82") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 2.7 0) (layer "F.Fab") (uuid "74509051-6567-4868-b394-bffad0b0bbbc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "05361848-4e45-43de-bdd4-4899d5ee1fbf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e7a91f84-8899-48df-b967-870cbc0512e9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "61d0034b-2c74-4b98-8333-d3689ec79819") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f94ef482-ea59-4f16-884f-ecbebb9efc7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "25d70bbd-10f6-4520-a2a0-b017f6a51655") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d535d17d-3975-4df4-af72-ef2b6371d7b7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/fc6c8e15-a262-4b02-88cd-fdf30196bc30") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "426189c7-89c7-4e27-aae2-14905cb7d640") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "10b75572-d4da-4d1e-9111-862897b89595") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "db9f8bb8-5415-4cdc-93bc-cc5846cc39e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "95cbdfde-5322-42a3-a2c8-ec46794b4a73") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d5776231-611f-44ac-9502-c643bb774485") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "0216afd7-9711-4604-a90e-f6346b597120") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "67bf90da-9a4e-4581-96f9-bd4ae054a948") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "edcc69d0-e7ff-410a-8bf1-5096c02a7f91") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2fa7b387-72ca-4a84-82fc-584da6a54a07") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2508ffa1-f925-44e5-a092-d21880e69b86") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "7977bd5a-20d5-47ac-b0dd-ccf5c4177d36") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2710c859-65b2-4d35-943b-6f08e8f0c33f") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "a57a044f-1e0a-4f57-b98f-7a871f824575") (at 93.726 95.9825 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R40" (at 3.2775 -0.064 90) (layer "F.SilkS") (uuid "8355ad70-e585-4c78-a3d6-08863bd1a55d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "6b0a5257-580e-4e28-9092-3086cfffc956") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "17712446-1051-4b3e-860c-9e9282bd393b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "10e58eb7-268d-4166-85a8-b5d2c1d763a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "be904f75-aed7-4f40-9e7e-4cb97e3e5823") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 50.5 238.5 0) (layer "F.Fab") (hide yes) (uuid "c2c75bbb-b35f-4530-8fbe-b301d32fd6e4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5709cd31-2952-46d4-bcf6-ee9158a2a7b2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08a2a3c7-8f10-4f25-af30-8deef7b7cc43") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e4508fdb-2a67-498b-8a41-210b07a713fc") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e8aa8693-d31c-4f8b-bba6-5c68ad441929") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89d8efbb-16d4-433c-a140-d397707ca241") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aeae0fc9-009e-4772-b49a-86eebae3db69") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aff0fca9-3bfc-4fef-8a77-e194fa95fc86") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4c69dd64-b220-4ed1-a6ae-89c42074afa0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4515ae78-f0d2-45b0-a9ca-707dfa58ae50") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3db29846-f486-4574-8d28-f787ea583783") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d9f779c-bdcf-432e-80d9-5350b5c3907c") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d83c00de-0b9e-4aee-9c52-e2d383d7181a") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "cc659521-acd3-44f8-8bfb-a4d332776ec5") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 60 "FAN3_TACHO_READ") (pintype "passive") (uuid "b29e64d3-7d8d-4ac9-9374-adf33a034630") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "a5bc3e22-5d1b-4526-981e-81ebb7790fba") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a8a96833-be8e-4225-b0a4-3bcb78623204") (at 49.5808 122.7328 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D16" (at -3.556 -0.0508 0) (layer "F.SilkS") (uuid "3ff36e07-3c13-4e9b-bb66-c9f7ad09b1f7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "f885598d-153b-4ed7-a34d-12d1f23500fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9818069e-0cac-4ab7-af98-0fa493349b7f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09ffbccb-f2b0-42b3-89fd-37029075a1d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8fc03d9e-847a-40e7-b967-48cc022ce364") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2eeddeab-6b99-4a27-986f-3dbc15ac6c99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2560d06-da1a-4143-a7bf-a09ef5ba0dab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b76adbe8-06ae-4c16-837a-59d9db252811") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/48c1ca3c-b2b7-4043-b6d4-db9851ebd51f") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e44bbfc1-fd5e-4acb-93c0-26cdedfe0c69") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "91f5153b-7d9b-4d00-b011-7bde87a378bb") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "41aa58c0-3f8d-4d97-86bd-33b6e75c668a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13f04c16-b7bd-4645-aaa4-72f12ad20676") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "104f63bb-29fe-4f46-9d50-4c60ffd3bed0") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "405539c7-e2e4-4321-ac5f-9cbe097ea375") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c12cf245-d584-4b9f-a083-d1a87b9b3920") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2674a00-7343-4447-bee0-205aa1cf54ff") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0bd681c2-dedb-4393-b25b-c69b96368c47") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36e24906-ff55-4278-88cd-c3fad148990e") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db5af5e9-f928-4581-bd1e-342caed02aec") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "87e27ed2-9c35-4fa0-bb63-01a7b2dd951b") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7318020-0b97-4b41-a5a3-d9f148272cc3") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dc9b64b6-1d9f-4431-9476-7077a4eb82c4") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6381dc0e-b84b-47af-bc34-9cd872a7d909") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70978bae-de44-4e7b-97d6-f92b2ab6150e") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07a90c52-62df-44fa-a9f7-8287ec5d01dd") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "bc869778-e76a-4210-91f5-4121bb54f9eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "46225cbe-f00e-4b09-954b-a31fbf95e5c2") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 21 "TX") (pinfunction "A2") (pintype "passive") (uuid "21dc7d1c-9c14-4d70-b0f9-3bc9d6999327") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a9744741-030d-4a69-8ab9-4c4ebf873020") (at 104.35 80.3 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D36" (at 0 1.6 0) (layer "F.SilkS") (uuid "8b7361f7-e681-429e-b629-d0a508ffbb0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "09aa96b2-b3c3-40dc-a515-a49bcbc37bc2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fcab3243-3ba3-4f9d-a747-411853b2cc24") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e7b30775-e6c0-4a20-92e5-d9930a01e893") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "72b4df10-c527-47a9-916e-1b576f0fb921") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2a2e592e-7737-4bd9-9664-f1a771f54760") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bcd07745-794b-4ff4-aa27-36a939e14a6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "88f24f86-2e33-4f46-b824-1639a25da0b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/6535bc33-56ae-4cc2-99e7-1448e1c62b75") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f6f0e93-66d6-4f91-b49d-cbc259b08692") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78ae873a-68dc-44c5-b3de-6f6b0a7b0d7c") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4cdddc1f-26aa-410c-8da6-3b8f94469faa") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1eae23b7-944b-4845-bf95-e14c44871bbd") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5f534838-9bd8-4443-af6f-ca3fa70211fb") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66079d33-9e63-4dc5-8866-2913c353079d") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fb62b671-a5f9-4d67-8516-a2c92d6ff41f") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cee38e5a-f762-4b89-b6ba-0826f55d7c52") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "caf313db-bbac-485e-9872-6c39baa2f1df") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2bf8023-cded-4f75-96c4-3e0626dd149b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c423f6d-7981-4030-8cae-80e2a881978f") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57b785c1-a843-451c-b165-6cb26ac9574f") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "80ec1571-e620-4f38-a0df-595923578461") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f876a1f9-43e2-410a-b08f-68af05c464b4") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6691d3f-105e-472e-bb7b-0b83b1c85e1c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a7ca8a0-0f8c-423c-bb7a-e7824bc48e8c") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eedbfec8-828a-4283-9e48-d12a9f7ec93d") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "882faa2b-9a80-4ca8-abba-dbbe9e1e14de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "12b3bf78-56b7-4205-8135-65ff2bb156a3") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "/Fan Channels/Fan4/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "086d8abd-0bee-43fd-a36e-0fcd1f6c5bcc") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "aa6fc5c6-4250-40f0-bdcd-541dcc149c36") (at 104.2 102.85 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D34" (at -0.05 1.6 0) (layer "F.SilkS") (uuid "71c13636-b9ba-4514-87c2-55f7f0d0406e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "0fa8dc85-1655-4dd4-8ee9-40eb10022f65") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a014357e-0bb6-40eb-91a6-469a0fc82af4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c78fa798-d176-441c-9d61-76be648ac4f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ef42ca4-6f13-4b95-9ab7-de757c52f2aa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "94e8b899-59f4-4700-8cec-e7a74b76b110") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa758c85-9247-43d6-a16a-7df32265ca8e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a211d966-8a0a-4fe6-9b26-8c65ac483086") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/6535bc33-56ae-4cc2-99e7-1448e1c62b75") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3df7098-7c58-474c-b0b5-460fd9084209") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b6803eed-0e29-47fa-808a-cffe2c2aff97") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a813361-5240-4892-b37c-1aad92e4706d") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a252450-30c5-42bf-ba10-0c0ef260d7fc") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "97d937a0-00fa-4e3d-bbff-4b81175bf8d9") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bab8bc7c-6677-4375-8396-0da5abeecdc0") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ded0bae8-0789-4921-bb85-09b319590348") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b5ca611-f75d-479c-ad69-882e8c356ca0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e4f35a3-38ef-46d8-a05a-6a9df50b76f3") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "85725425-9b9f-4e58-86ac-150a66ff1e1b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e2b7b48-13b6-47e8-bdb5-ee7e607a8124") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d404c2a5-561b-4fb2-98ed-69ccfce3483e") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f9e2fb6b-fc04-41b2-ab9e-26c80afb9d0a") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f846957-745a-4e53-a0dc-a1e40c508ac4") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06ac2eff-8cd4-4ae9-b399-131a34a9e5a9") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d1269be4-a21f-47d0-bebd-482b744ae3f0") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "faae3bba-8a26-41a9-8b50-52392a31bc32") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "5c3f8611-b484-4f93-a940-4169bb014ac0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "b5cc63ad-33a3-4e5b-92c8-f2f9e8901a3a") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "7936f608-5de1-42b0-a04c-d210d5c84c72") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "ac2dd344-9bcd-43ef-97cf-410a56901723") (at 60.0612 63.8196 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D3" (at 0.0156 2.4024 0) (layer "F.SilkS") (uuid "f7b64f7c-4ffa-4729-b84f-3316837daa25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "a9c4b132-c315-428b-a428-3982f8ef9e45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f4cc4586-914a-4cdd-868d-9b65563cc5c1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d5bad705-3a33-4b71-9714-57d5f5f79382") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aab4a7f3-d1fa-4913-82e6-8c6b3ac0f254") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "ca5f989f-54ac-43df-b4f3-4d4fdb7fd85a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "0ae96428-9cf2-489e-b140-29caef249c4c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 141.7 0.4 90) (layer "F.Fab") (hide yes) (uuid "f5cead4b-4288-41a6-874a-01830d06bfdb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa9ed483-17b8-463e-b647-b3b33848213e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5e376d35-d307-47b4-9e6d-0318eabba448") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/14a165bd-0b65-4fb0-9565-152bd6300a32") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cc7f7d32-7e12-4221-9f88-342e41840cb7") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3617a72-2ff5-4406-8df0-a715a4485fbb") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5c8a7d87-4cc3-4be0-bf38-e002942c7359") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a1120d0-11e5-41c1-8477-cc7a8f162192") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c0135e34-e9a0-4912-8611-03dd8111f7b1") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f02915a-5370-4e3e-a4fb-7e88a2540aa3") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "898f9cd0-bcd2-43f6-bd91-c66a16ddedcb") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "391224cb-74a5-4be0-befc-4844ce401419") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c9f142b-5c91-4c35-ba2a-4e488b876c4c") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a1a6bbf-3e80-4812-9d3c-eafbda928226") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b534c2d1-9834-4cfc-b52f-d00e9e9b3d0b") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f84009f-8b4a-40bb-bbca-72ed2d3a5f0f") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d84973fe-c82c-4fd6-b907-921c806a9b99") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a03fdf1-6b38-43e2-a6db-1ce3a00790f2") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "acae6ad7-8c7a-4b0c-a73b-e98cbed54a36") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ad95c14-3567-4992-b34d-94440a59265d") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e3238d3-edb7-4af8-a5bd-f680d307f335") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "247c55cd-7440-42d8-ab05-f30f3764b695") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "K") (pintype "passive") (uuid "3a707722-05ec-4654-88a9-611f489c7082") ) (pad "2" smd roundrect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "MAIN_PWR") (pinfunction "A") (pintype "passive") (uuid "d2e913cd-38ef-40d8-bcac-0a5b8100d08f") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "b0cead16-6461-4e3e-9ca3-2e43f46ff1b9") (at 98.95 57.6125 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q1" (at 0.1125 2.5 -90) (layer "F.SilkS") (uuid "70d12d6f-893d-4590-bc8e-debaf4c22c6f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "db02dbfd-827b-4cba-a6a3-25ec1d2ba640") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "38db5895-9339-4266-a4fb-9550f91350d6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/2N7002K.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a1d56c2d-b118-4036-aa6a-d4e61aaf40ac") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c1a74e9e-4b99-4225-b706-4a1c49c6e6bc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 171.6625 -39.5375 0) (layer "F.Fab") (hide yes) (uuid "118dab5e-d487-459d-b8d9-41c92654ceb2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8aa9b528-66c9-48b0-bc71-ba854934e159") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-2N7002K" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3e2bdec-c104-4712-81ec-d468c5e45f15") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/537d375b-1ca6-4946-95db-66496543d0cb") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "63072283-10bb-4add-9a38-36cb34234bfb") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c65204fa-6e64-4207-a4dd-5739f83f4f53") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b056779-d81f-44bb-acb5-d4025a8ad4a8") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59d750cb-aa7f-4781-8e73-58ae2208b406") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "6d8ca895-f7bd-4a16-ac33-822b6d7803f4") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e71e08f4-19a3-4c30-a005-31866504ccc9") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "654e37c6-602d-4762-b83a-c86d36f505c9") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12deeaac-2c64-4493-9247-c3c6ad8b4868") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e02a854-e8d9-4875-86a5-221e72d0b018") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22ab35f7-bdeb-445b-b4d6-9fc086eb4f70") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "017562f6-9fcc-489c-b9a8-33bc92340c7f") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3abfe62c-7dcd-4f30-a55a-936fff9b4bcd") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "11c3ae6d-35b6-417a-b496-a33b83f60d66") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b8a04b9-2c0d-4599-aa91-8a5b993cd2f5") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "fea945ea-9126-4e25-a487-25333297bbb7") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (uuid "0fec6959-81af-4b3e-ba2e-d0d1aa399c99") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (uuid "47a2a146-5cb1-419e-8e1b-41f35ee326db") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "D") (pintype "passive") (uuid "d77454c1-f2ac-4ddb-a7af-52e2dc53784d") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "b545b689-8c4b-4bf7-b660-bb5fc415c13b") (at 109.0044 125.7144 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C11" (at 2.2736 0.2892 90) (layer "F.SilkS") (uuid "5c3ba96a-cab7-4540-8301-3cc0a0cb198a") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "bcac2ec4-b112-4899-a341-55b72d1eef9c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2eba2985-7c22-487a-9202-46bad7bf8c25") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "52417ea0-6a60-455c-b02a-76955d3ced26") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8d08e53c-1f0f-46c9-8f30-f7cbe7bd5cb5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at -23.5 225.7 90) (layer "F.Fab") (hide yes) (uuid "d94431ae-0884-46da-bd0b-57492e337170") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2f5d3702-51ab-4690-a64c-75fcf39bbe9a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "972238a9-11e7-4875-9ba7-4f10b7ad8f5e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f2524e38-13bd-4d66-95db-b218eaa0f1b4") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9e5d69f9-0b65-4944-8c29-4f462f562559") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "46a4b936-f87a-4dee-b101-7d53be97eaba") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a416bd71-ac50-4798-bfc9-a05de5fd66b9") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "24b87109-4350-448f-a13a-a965466254f7") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fd166f7c-d0bb-4b21-8c4d-605223f1aae4") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b23a6589-dfa0-4337-a207-57e8eb59179b") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81715484-ba83-4d19-ad29-7bba39a2babf") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e10ed79-b09a-461f-8c6d-4ca15df8fc4e") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "df8fb9c8-09f5-489d-8728-593f8e9b9d2f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d7b8125e-5590-483f-b6e5-68cb1a18d270") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pintype "passive") (uuid "014ea04e-0fe4-4022-babf-37076555103d") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "b03f34f4-806c-4d52-abd3-011eccca058a") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "b5dc6d29-c7d9-423d-9396-c8827e47436c") (at 62.7 61 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D26" (at -3.45 0 0) (layer "F.SilkS") (uuid "9ea20a65-8f2c-4bad-a997-b08cead9ada9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "e10200be-6a2d-4619-8bcd-da97630c6d28") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a19548c2-af6a-46fd-9402-31c2db2ebffd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ce94c1d-adbc-448b-a6ae-88698275ed33") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a3c7e9e-6c77-4e46-9dfd-73dd9d740be9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcd48309-898a-490a-a6fc-6dd886367c47") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db32b7c2-488f-49a3-8393-22d83e1e38a8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cc311c84-6629-4147-9eab-0665acae801c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/c5742aa7-a922-4b75-8984-e94c4654beb8") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "279417b0-2eab-48a5-a3b0-6abc5adb4789") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e888dfb-f43d-4c55-b3a5-44d3959bf43e") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d1d61f8-5417-47c0-a73b-c9f427b6d947") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1a9d36f1-c9df-40cf-97c3-19792c489855") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5808659b-4b15-4bda-9311-d35194cddeac") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9cd1141-b351-4c72-a905-b554070c0d86") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "353fc32e-3e6a-499e-a51b-093b88f7636c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af9a17f0-662a-4997-b8db-6c63644b3bab") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92578bbb-aa41-4c66-9b43-ba77db81aa25") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e395b369-246e-458d-a20e-35c7828a82ba") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eac61818-ba6a-49ac-9fa1-7d3b5f4ff8a8") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6610d51-5cd4-44d3-a3a1-44f20496761d") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a47dd546-8fb3-43b3-b751-e923658fa6b1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2a97469-2ee5-4555-a80b-d343e35f8a94") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6882c09e-6ad9-44e6-8866-f48055ae7a04") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7290af2e-3746-42b6-8469-9126a4dfa656") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26b994d0-0c75-4326-92f8-c0778b84d130") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "5cc30329-2d37-42c2-add4-1e8dd2d0c5f7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "822a6732-3627-4832-a8ba-dc80e6c39543") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pinfunction "A2") (pintype "passive") (uuid "54e9195d-f6ec-40ff-a018-cea8c4f6c11d") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "b6faa3d1-9cab-4cf0-bbf1-abc808bc9059") (at 42.5 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H1" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "1a2b840f-9893-427b-af08-31066505f217") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "04c51518-091a-4ab6-97cd-314197ef29e0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "71d2616b-6174-40a0-aa4c-6473738974a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "55853587-6eda-4e5b-a92e-613b9c41bd9d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "782d1531-5be9-4c87-aa21-766b13009dd1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e1f2de36-aa83-47d0-b4d1-44429f288642") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d03222a7-0f68-4491-b8b7-31dad03d225b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43de0c95-148a-439b-ad30-cb4133837167") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/cbfea856-81cc-4920-8136-231416e676cf") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "a5ab5040-27a0-4a28-8c0e-608b0de96392") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "2f527a12-c1ea-4d9a-a729-d6c216857436") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "63ad88b0-82e3-4521-bd6d-dcf177794df0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "db1acc73-38be-4bfc-a17d-880c63b75456") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d0c0d2de-106a-497c-8919-c1ba850c21de") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "165bdfa4-a6a7-41a5-b27e-9d8848d4a679") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6cbb0263-fb06-4f9c-89db-d7f97bb09168") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "4e7dd4a5-1573-4ef8-a165-fe4a40bfb521") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f075e5e5-c7b2-4f9f-aa82-b5b38f8d045b") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "73287c98-0945-4a90-91e0-be7ec23c38b7") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "afacdabf-7a36-47a7-a266-127e2ec12652") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "db351afb-903b-49e0-ad56-3db76eebab13") ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "b73189eb-ce33-4fd6-899f-a0fe6fefce38") (at 97.89 123.11) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D8" (at 0.07 -1.62 0) (layer "F.SilkS") (uuid "4158ce6a-7d33-4f2d-a9e7-84c583d333f8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "fdbb6f34-4062-4d09-bc23-79e8c3bca5a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ec784506-b96a-4613-8eb1-dc3118d49dba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e7d32da1-7350-48c5-8b24-f931bf745692") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "563f5590-42c3-4936-a91a-d04c04aa1548") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at -8.4 217.8 90) (layer "F.Fab") (hide yes) (uuid "8f7b89bb-5c41-460d-978a-1a5af0536821") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "00c25f36-d390-4f74-b0e6-cd7fd1d95123") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "719550cd-4b2a-45a9-a97f-98a36ff2d3d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/99383412-e91e-4682-9562-162d7ddf01c0") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "19b082da-d3ee-4dd3-8aeb-f0be958a717b") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1bd0774-d925-42e0-9987-026ad7d33f12") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65ba3b1e-87b7-4fd0-8ba8-6c6809355aed") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bd2d9f5a-7ef2-435c-8cee-9291a0619179") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6a72cbf6-35d3-4553-9f0e-ee01be548e17") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "72194a81-80a7-4102-9ea3-b0d68e77138b") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1526a869-5686-429f-aaa2-6bb661ff0e48") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ef0ace6-b986-4072-8924-51fac286c81c") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "623f541d-2ba3-414f-ac0f-4fe88d0d9a36") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0d87385-9ad6-4868-8503-4a68cc707ff2") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "393856ff-66b0-4eef-927e-7d63c7ff35af") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce31ebbc-5fe8-40d9-a662-63f4d042bd65") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3cd705f5-7b78-4b78-a49a-6312790f2f67") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "87db81fb-b971-4539-bfe6-9ea18aabf1f2") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 38 "Net-(D8-A)") (pinfunction "A") (pintype "passive") (uuid "14c15164-66a6-4ac4-b5e1-115a4327803f") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "ba566fd6-3c00-4758-b55e-90b7e219eb11") (at 66.8528 63.5 90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C6" (at 0.05 1.4972 90) (layer "F.SilkS") (uuid "578758e6-6c59-4f4f-8588-d0153ed77d03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "2c8445e7-0b35-4231-9575-50eb116bed66") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2b2c6572-86f6-4885-8a7d-87eb482d5e1a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9b3aa34d-1d47-45e3-b776-e9e961f01ff3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "96d28e38-b814-43b5-9ba2-9058f41d7b8b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 151.45 -7.55 0) (layer "F.Fab") (hide yes) (uuid "d26a05ed-5b41-4c21-9cee-1b64ef400e95") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c1db387c-2240-4bad-8c85-89b39f47ad3e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "764fd5d7-c208-44ec-a85a-e7c60a4b07d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b1335ea9-16da-44b9-9459-ec64501666b6") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7bd61f0d-6afb-48df-b444-3f3a6241d217") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc55524d-a608-4687-a837-d8248198675d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ab0744e-b7e1-4adf-ab19-458eb0d2a0a1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b776af14-cee4-407f-9f79-2e0aa708dd02") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a0d2d354-f059-43f6-94ac-7f75b2a75eb7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e62592d-f457-493f-8f0d-1ca7effeee72") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "594ac923-7a05-4dd2-bc6c-caa8d3fa5982") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b4c4d2c-9540-4740-ad30-ab8af5c7b471") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e262cc3-29b2-4a01-87e9-831d58150ded") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0d26b92-c7e4-4c4e-93b7-f8a367c6af16") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "f693a42a-100b-4d5d-84e7-5ed252a64b84") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "2dfdaa99-258e-46bc-8f7a-0320d22c3d40") ) (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "0b700b7e-1384-47b4-8153-18479bc1d0f2") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "bb783fbf-1ec2-49fc-a427-90e531a888cc") (at 49.6316 120.7516 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D17" (at -3.5052 0.0508 0) (layer "F.SilkS") (uuid "13790f67-a955-4358-b128-a892a5dde830") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "5490164b-2193-4d3c-bb5a-62c78d795b51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2fe58aca-4758-40ff-801e-4ec59378c162") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d6ef25a5-77b5-408c-a995-ba08a7162eeb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b4eab4d-3928-4b8d-9a87-e324cc2a2e98") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45f23e95-2274-4b6b-b728-503d5bd7cb47") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1dd41648-da1c-48ae-8106-57f753981f29") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc9934ac-0956-4124-b115-a31195634518") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2b949ba6-5a8f-4360-8686-0d967c367aff") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "63cbea0b-5f8e-420a-ab9c-69717e04acb5") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ebb98d7-e354-4c0e-8041-63ce6279ec05") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee4bb296-c68b-4b2b-adf2-e9ea06009298") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dcaa7dd8-d412-464c-a98f-344a5862c562") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9aa0ca6a-646a-4015-9b5b-62cf1fdfaf4e") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9d8dd689-f25d-4aaa-9966-acd4de55974b") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "faf23198-1399-45ad-b85b-704fea5a6916") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73d92c16-d3e0-4e7a-8d02-c96aa1e5e33f") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e1aa347c-24bd-452c-b913-39a4f2297ed3") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f4bb75e8-5f31-4a56-8230-9b2b7246fa6e") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a3643e2-1cbb-4697-b492-115f684941e9") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a247966-cb8e-4da6-b310-4d84c7d4acfd") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a6d867c-717e-450e-a0ca-487f84771af1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dacfcc79-5105-494b-8cca-5ac3e14e853a") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15856ae2-8c26-40b5-957a-3864da2f1fdb") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c3993c1-b2fc-4d30-9e8d-a754f1f44e58") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1849f2c7-5f50-4428-be5c-171b29ea9353") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "834f671d-4b0b-4944-95c4-a9de3842b7da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "4f0bdab8-999d-45a2-926e-8f9744146ece") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 22 "RX") (pinfunction "A2") (pintype "passive") (uuid "de2baa02-ce98-4f1c-be4c-2098f6677d65") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "bbfc380b-a351-4b9d-a575-294a2dc5b3c1") (at 40.4876 86.0044 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R7" (at 0.0508 1.3462 90) (layer "F.SilkS") (uuid "dfcee624-e4f7-48bd-a9ba-8d8d838778e7") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "a31b9911-2d45-4bcf-864e-eb5e83f619e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2e4ebf3a-642b-4848-af14-9748682ff3b3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ef5a9208-278a-447f-9721-e586fd90338f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "20abb526-7a00-4b96-b680-515744c1f028") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 83.2 170.375 90) (layer "F.Fab") (hide yes) (uuid "8fdb8db0-e1fa-405a-8061-61fea2efef61") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5b06e917-b1c5-4a72-801b-a24395640f4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fef17455-1056-4bb4-9aa0-fb4f4e953a78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1fde763e-90ef-4ddc-b2e5-d750ee01b070") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f54b67a-1cc8-443a-bedb-d986e30b465f") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ba9c5c3-05a6-4d34-8eb9-ddad7190e150") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ccc2ef35-7788-41d8-8fd0-17ba55ea4255") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0b6e39e-2e0e-4991-9cb3-4d9ff95be8ee") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5cc48a3e-765a-4b0a-b35c-c4acb818ca27") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bfe035d3-ae2f-45df-b39c-f6249f9c3367") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a841f2eb-6af7-4c88-94f6-4988a426b08f") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98e73aea-d618-43a9-b6ff-3f2e9e71ef7b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b39e6673-f178-474b-8f9b-4efe8ecbb495") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7568053e-f7f9-4e8a-95c1-b5dbc0d01bb9") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "829ec71f-82d6-463e-a11e-458a66f112ba") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 65 "VBUS") (pintype "passive") (uuid "02ca46a5-c7dc-43e0-b3bf-994af849a626") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 16 "Net-(D6-A)") (pintype "passive") (uuid "f1720378-df98-4d38-8cb3-c24ffd9852f9") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c06e5e7c-c9d3-4ec8-9cbe-adebe02c2230") (at 101.59 123.34 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R12" (at -3.07 0.03 0) (layer "F.SilkS") (uuid "4539f320-d4c4-4ff3-b884-574785598033") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "4c791a79-affe-4416-a3cd-d9d328c5b418") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5b7f458c-544d-44b0-8c7f-b35462f3b7d2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "10418c7c-01c6-4524-98eb-361bfbdfe882") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "11967fdf-2759-44eb-b78e-e4f8c753c403") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 209.775 231.925 0) (layer "F.Fab") (hide yes) (uuid "4e3c0c7a-eed3-44c1-b79d-dc99c13b130b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fdf30f05-7e62-4bc9-93ca-f40b77d885d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a58a14bb-c071-42b9-83fc-4d7e407a7201") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "932aa603-fe7d-4275-b187-5401e8bed0a6") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5f3b0526-dc7e-4426-b754-3b77fc333a33") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f047baec-a96a-4240-8b0c-081e5ecf0a45") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f7fab27-47b7-4b07-af31-bcd55e91d9fa") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2f52b02e-1475-4ca1-8e72-85fd8eacdf06") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c7621a11-c5a4-49fc-80cd-e9a25308f241") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1a7e8758-08d2-425d-a3d4-d1a4b8742558") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e56b6a1-18ae-441a-a95c-e423380bba5b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8746517e-55d0-4391-b9bc-06d17b502511") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c89eb05-a55f-4998-a3c3-3540e61630eb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3ee2d7e4-b510-46e5-b811-d93ad5479baa") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "MAIN_PWR") (pintype "passive") (uuid "4be4cc69-617b-4934-b5f3-161f68b73415") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "Net-(D8-A)") (pintype "passive") (uuid "b00e267d-9648-470f-b892-bd325a518eae") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c0e42a22-59ee-4a79-b22d-300f6c3f03db") (at 52.6682 86.9611) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C29" (at -3.3528 0.1016 0) (layer "F.SilkS") (uuid "2949eadd-e9ef-467c-ad12-c5948fa7e159") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "348651c6-44fa-4b28-8f5b-38f076463cc8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "31cee461-9158-4a8e-81be-dfd1138b2551") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4a60d55f-7a34-41d8-a7e7-474825d61171") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "826cfa1f-b1c5-426e-9ac9-dd6a914fa67a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4a4fa7bd-8a64-4798-9641-65ce35f0073e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3c36c342-200d-48a9-8d9b-f45f62b836d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3eec7113-bfbb-4179-820c-eb9e4b5ffff0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/9fda019a-5350-4524-b5e4-0e13d75d61d1") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a400aba0-7c90-48f8-abb6-152328f5721b") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f75fced8-4976-4157-af12-26b672bf69d9") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0ce7b13a-3b04-40f3-b1fa-6d6bec6aa1d6") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e14590c-aa03-4345-b90f-028391398ee5") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3417023a-447d-473d-aecf-4a3e0a7e375b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39ab5e21-c65e-43d8-91c6-35c5dd6a1fd5") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "83450bef-6200-4a86-bdc4-701f8bf93b8f") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a30dc52-caa1-47c0-9f4d-3d031542a81e") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8347caf5-0d02-4b0d-8e69-6df0ba51346e") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6366807e-2d93-4665-80b3-e71173aa4183") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "63b8400c-49d6-4e91-acf1-78fa96d51ddf") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "ADC_REF") (pintype "passive") (uuid "c26a001b-c9f9-4bf3-8244-0d456a618048") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 67 "AGND") (pintype "passive") (uuid "8e90f624-2cc0-464d-8e8f-8c8e00cb98a5") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "c173dca6-6ab6-465e-85ec-e09c8c8bfdd9") (at 115 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H4" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "0e046ea9-fbc0-4f13-aadc-e40cef209fb3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "93accfd9-104e-432c-bc94-d5b80b89da60") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b331dc55-c1d6-41d7-958d-adad02bccb90") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2206a410-410a-4f3b-95f6-7d0b56c9f339") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ba5739e5-177f-474a-be5f-69d1ca8f384a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cf0d1503-7e11-439a-9e7a-0ee5e3d84620") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "10547647-d169-42d8-8ddd-b00183012e64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "69173b8d-8019-45db-ac32-6d2b6afc6d5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/91796faf-4963-43e3-be77-8c6bb9373a7f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "64d678cf-e0ed-470f-8d7e-7a788e2db93e") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "0882ba49-dfa8-40e6-a0a9-8e8737329b86") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "f1efb196-b0b9-44a6-b768-e865c9b9fb3f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "e356b00c-4c5a-443e-950d-5fe0d1728787") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "1799ab67-413e-4c14-a7d6-1645026d58b4") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b8e0e5ee-10e2-4c47-ac7a-fce19f9dee94") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "a68a1d4a-b222-4844-b66c-a0e086a9667a") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "b8fb10f9-2382-43c2-88de-64115ddb07d9") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "79e4cf8c-fca5-4107-a133-62ff49817dd8") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "ead3ac4a-56e6-4c22-946a-1fda9835b32f") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "42d33b8b-a4d7-42ca-bb65-04960772bb3b") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bcb8430d-bfc6-4ef8-b8df-61baf4112822") ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c185902d-c5af-4a59-81b5-f6b7ec1ed33e") (at 104.3 114.05 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D33" (at -0.05 1.65 0) (layer "F.SilkS") (uuid "918aed5b-c096-41e8-ae39-15c4020f0820") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "c40eeb1e-9eb1-44a7-b4e6-b201b1d47e8d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b35eca82-a2f0-4767-866d-a5e73558aa1f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6eb7a5a1-3e60-4130-82bf-c575bb1b9990") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9d443a62-d4fe-4e41-abd5-362ca2be700b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6542866d-f486-48cf-8579-e8288533248e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b004fbe3-0fac-454b-a8f0-345b5187f342") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "196246a3-186a-44db-a7bb-10d069fe8878") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/3aa61efe-1bec-444c-86b6-a0f82e6204cd") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c629c6fa-d9b0-4f6b-b1f7-ade4612916a6") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c20c90f0-5de3-4af1-9381-d0dedfff5d27") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "781c2c5e-2466-4897-bf88-7bd4e43a2223") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e444a0f3-e17f-40fb-9eac-ca6d55314078") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6c29fccd-ec86-407d-8b94-ac114b491b6c") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4c426e0-bf7a-4d66-ab65-57d3f61920dc") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7b1ea091-ae01-44c4-8380-d9024960545a") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e6e2090-dffb-49d3-905f-510318f60cfd") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6d0abf88-ccc5-4943-a811-9ec132c57553") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c7bf5fd3-61cb-485b-9236-5bba083c3e79") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "554efc10-0457-4565-8175-fa2178fd887c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7ac568d3-04c7-4cf9-a601-845fbb7114b9") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8944012-66b8-483f-a0d9-4e6051a60473") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dc30e286-2541-405b-9863-10ed7d98c513") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3add86d5-3e05-431d-bdab-8d9158bbc84c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6252555a-7122-4ea7-a0c4-86ff9b6abefc") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "df0c359d-6d53-4754-b12b-4dfe0508d996") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "d74d6cbf-8377-4293-80b4-60830f28f0ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "9bb1c61c-9e08-4a08-a7fb-0b22dd77d7c6") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 34 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "ccfeb944-695d-4d36-a71e-e11ea87e5d4b") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c1d4be12-7a49-4660-bc02-ff1d5c8a5b22") (at 101.6 63.14 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R15" (at 0.03 1.35 90) (layer "F.SilkS") (uuid "7becd7f2-e76c-4bbb-8f77-9241cc11abcb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "fae82515-a59f-45fc-9aa5-1642e5f0e1fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "60f966a0-4aec-45da-b186-6101d4154f1c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1358567f-7f84-48b9-9268-99bfcedb1dfe") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "762578a9-dc04-488e-a247-0ce21ec06d24") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f20f52eb-de54-465d-a1b5-f0211f5179fe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8f329bc5-bf9f-43f1-8681-6f7fbeeb28d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02cd9d8f-ce59-4520-b4b2-f5440f636f88") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/60c2f696-7370-48df-82c6-e14515591662") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "541e0550-5cea-4e1f-be4d-7ca7d642d77a") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d3a8b35b-6295-4fff-868f-d43f5dcbfadf") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7784a59e-0277-445c-9638-1639de7121ac") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82bbffba-2e95-453d-86f4-bd7c550336e5") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e6a68ce1-e394-49ac-a545-cd8786ee177c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f4335ef-e448-4d4f-a6ea-373cf557bc8b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a0a2d51-5001-43c8-a06a-269e02e04180") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f189b8f-6206-4c7b-96cd-d8e25ddc43a9") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "45bc1cee-aa73-44f1-81be-5643270f9392") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "856ff2e4-ad7d-452f-a7d1-5830704415cf") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "23425ec4-e564-492e-b9b5-93ed6b14cc83") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2a6a3451-d6bf-4c4a-875b-401484214d5a") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pintype "passive") (uuid "d2b1f1ad-df27-467e-9c1d-b4483dbead69") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c49de291-4f40-4b4a-a42d-a9218ebf31a4") (at 107.8484 73.2536 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R51" (at 0 -1.43 90) (layer "F.SilkS") (uuid "0985ba38-38b5-4353-99f2-2d738d2087d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "870d8528-b256-4359-a9cf-a0ed45bc2b12") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "50f3a288-6a86-4588-9fa6-98d4a3fae2c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "73dca739-48ec-4980-932e-f85a0774693d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "da517184-cf9b-48c3-9314-6117bd7ea186") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 36.6125 156.2125 0) (layer "F.Fab") (hide yes) (uuid "2f3157dd-8337-4bf2-853f-cd2d8423792f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a9e4075-b0f2-4ee1-96fc-d4a8f2fe2f1d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45fc0aad-d672-4ed4-ad1c-52b006bbd6ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5effda4f-f509-4c42-bf3f-632077643ed1") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8a6a09bb-dae5-40b7-b79e-c07414b00499") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b05881f-fd8b-467f-9e47-bb931760b409") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6175ca60-6eae-402d-8ea2-48515c57efa7") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "594ff60f-eae3-4574-9fc1-53c070ce0f54") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b6e350ee-a378-494e-8889-b8052537587a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1f60cc2-0ba9-4719-820c-00482f94a805") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95ac8600-4d6f-48f8-bb6e-3bfbacbd1940") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d7d2c548-36e3-40e1-921f-b92e36f1ab52") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49ff95ad-c1fa-4f90-8913-d0255c4b34a3") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49b4523e-7bc7-49db-897f-50c75ac49acc") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "ca1276cc-13e3-4bce-9045-c5bf740a6a54") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 69 "TEMP2_READ") (pintype "passive") (uuid "5bddfc07-560c-4a11-b3eb-12674814acc8") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "ADC_REF") (pintype "passive") (uuid "fbeb655e-9d0f-49be-b27d-2fd6064032fa") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "c6561626-87e4-49aa-8e4f-de2eeb417f5d") (at 109.2189 109.0124 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D25" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "ca13f0a7-75e5-46ae-a505-9d24cb9507af") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "f340bbe0-1bf9-4954-8954-c76afd9957e7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "369be5f3-c467-46e1-b229-2abc15cfae21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "727508f0-15b4-445e-8d8e-b10150e763a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c32c0f23-46bc-45ea-8f63-60dd6b3f878e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "857bb045-3ee2-476b-9697-db3ba2936a49") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "7fa5d964-1d4e-44e1-a8d1-6c1dfc5d7c7e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "7d6f1d08-981e-4743-8979-442af3a4f03c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "010b0efb-a2c1-41de-8083-2c73817a6d8a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "512-ES1D" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "93926b3e-9aa9-4c81-9d95-22346c53903b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6ef0306c-f71f-42a9-947f-aa72d7398720") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1582231-bca2-4c1f-a557-3ae62355ca3e") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f8c0c9ff-5ee8-4187-9bea-a28978e7cd3a") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8fd42191-c30c-48f6-a9cd-48387405a91b") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cab6f74d-105a-4973-9c55-c2cedb2a69ce") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8d5d972c-b441-41e5-b1a6-05c24d250ced") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe171b23-abd9-485f-9cb2-3c504fc78596") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "50a8ddb6-68a4-4110-8473-73e2f06274ea") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "128d4b71-5c35-4e39-be03-06d3d3469aeb") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "42f85750-30ea-4bd6-bf6f-c89e99d6ba8b") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a0b292d-5266-4cbb-9bdd-9257166f34fd") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95ad0974-3231-4043-aeed-9d7e46f38b78") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a371c0e-b1b0-4311-9bdc-ded7842a9f17") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "317e0dda-303b-4418-bfdb-fb1791493ed7") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0233b531-e8b4-4530-80d1-a3284a965087") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "671df8e4-8b6b-4166-bc03-9fcd6efa19e4") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe5c1db4-adbd-4716-8775-363e71eb9f58") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "38bc100b-b0f9-4eb1-8a16-5208af0c8824") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "MAIN_PWR") (pinfunction "K") (pintype "passive") (uuid "9768bebf-64af-47ea-8a2f-ed7f256a4744") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "4a869194-c75e-46d8-abaf-2574fe8513bb") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c6755a81-7c14-4c1b-9e7c-b1323e38f892") (at 95.476 95.9825 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C23" (at 3.2475 -0.064 90) (layer "F.SilkS") (uuid "ae06b4d4-72e4-4e29-98ad-11e57e87899e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "011cab22-68aa-4c45-ab92-06552063a2e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "34627907-e0af-443b-8bcd-cb55879fc682") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "09c8529d-0fbd-470a-a2e8-a766bfd3fd4d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e7032be1-11f3-4767-9fd3-d792582983c8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 52.25 240.25 0) (layer "F.Fab") (hide yes) (uuid "1b8e6c1b-2f3a-44bf-b727-9aadf66c768d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f096a013-f58c-4dff-b2fa-a6d77ab04d74") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "694460dd-b308-42cc-b50b-222c1ed987a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "96577cf1-e32e-46e5-ba4e-5ef33ea4959f") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb17f05b-ac69-42d3-9b93-895933e5301f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "628ee0c2-abf6-4c1d-b791-ae3136b84597") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "175bdce1-a187-483d-acab-9c349af452aa") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12d54952-1234-444b-95ff-fafadfec8a06") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "652cb423-0682-4628-a9a0-266c7b856bc9") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0e3ad6fa-1685-4cfb-8a6d-aad2c696af0c") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64500ebb-cc8d-425e-9f80-ea3a02687a7e") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f142c963-3f1e-4a14-ace4-1292a78291d4") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "12f92547-cb52-46d6-91a7-85969c2c50dd") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d8be6ea3-cb8d-4299-bbe4-d1b98059eab7") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 60 "FAN3_TACHO_READ") (pintype "passive") (uuid "cef37967-c1e8-4756-b433-b834b969af83") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "98206cb8-652b-4f78-880e-b430d7a3b7d4") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c7efe77d-9d18-4131-856c-a7d232549585") (at 53.1 126.3904 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D14" (at 0.0052 1.5904 0) (layer "F.SilkS") (uuid "3f11939c-842d-4207-970d-13ad552e47a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "0b800890-4845-46db-955f-06eb2bb6289a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f0d47d01-2b4e-4a03-ad6a-3d3b838c920b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6db3b769-f4f2-4375-b0a9-71d30fc6a824") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "36927295-15b5-4ad0-9da2-06a68383e320") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e17a35b-1f23-4768-b97a-26824fe17cb7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a3418aa-4f81-431a-a4b3-5cc48d8bed1d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e1e0f99d-4916-4c16-b56e-ebef8108e5fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/ca2a012a-60f2-4f1c-b957-9a7b568e167e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9846a270-996f-48b7-8bcb-2519f061807e") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "770b7fc9-4d04-47b7-97ca-91e25bfaebfa") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4fcf5ae-9190-4505-a401-d288fb9b80c1") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1af1a439-1e38-4342-9ed4-74bb1583479b") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3ffe6935-069c-4f73-ada1-0d758a87550a") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4b10bd51-7600-49be-a242-a23e072bde16") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa50178c-8fd7-4a70-9538-f2128d2657cb") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8ade54a-5a62-4027-87b5-245376a9245c") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b87eec61-17ee-4272-8f35-a224b76254b7") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe01dc8a-1e30-4635-ad93-3d203b874f77") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c2ab407-a69c-41ac-8080-5f3bffcdee70") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ae01293-bf8b-4c94-bf46-c365514b88b3") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e9ce152-f980-4a77-832b-11048274032c") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3c0a4726-0f8c-449b-9a2a-db42259a5397") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9416439-b7cc-4e7d-a4fc-9c7922b8661b") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b14a3d5-638a-4cc5-ab01-8c5874f8943a") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb6df94a-a35d-4c30-ad4b-a3b2cd0ba7f4") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "8cd605d1-2011-40ac-86e3-4e26965a6505") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5ee189a8-234f-4885-a5f0-5947636a41c3") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 20 "SCL") (pinfunction "A2") (pintype "passive") (uuid "6097cb91-2834-4b01-9091-96b1a43a3d66") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c8ad63a6-4c52-4182-9d59-39ad3082bcd7") (at 82.296 124.9172 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R1" (at 0 1.5 0) (layer "F.SilkS") (uuid "573de23d-e526-477e-a72a-9eb8cea12e76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "b7a5b853-f019-48f1-8836-f05256e44a29") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "856a5235-4b0d-4a68-aa4a-b207a056fefd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ff97ea9b-afec-45ed-b6ff-6e4785435ac2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3496e539-78ac-43d5-b71e-51cab2cd7eb8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 127.4 124.4 0) (layer "F.Fab") (hide yes) (uuid "c82b218e-2851-4a3e-813c-3ae415367ebd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7681158-6377-4ba4-aa37-9c3d07370d99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b09b5ace-24a1-4afd-9af7-48d2f80b9820") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/acf00741-1e6b-4573-832b-01221b598fad") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a63ce18a-8399-41c1-98aa-d32c98ea5148") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c30024b3-ca8f-4cf2-bee1-a225a9401c2d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "461d8141-48a1-4d22-8eb9-72b2b026f6da") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "42c5851a-2974-4603-9190-0cfdf7e064a8") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "08021255-c0ce-4ea6-94c6-cbc608a84a26") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "44ab65a2-41f4-41c9-93dd-f7f24a1be5ea") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c195e39-7f05-43a8-8261-c6ceeae6e323") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac41e450-3655-4937-b3d0-4ec11e1a3f5d") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db6a7e2b-5ae8-4885-a38d-eeed3eda516d") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3412ffd6-d5fc-4d66-abb3-38cc371e6a9d") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "c878f580-6b89-40c2-8fee-debc35bcd782") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 39 "RESET") (pintype "passive") (uuid "e519d360-47d0-49e5-9ff4-acc897e85ecb") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 40 "Net-(R1-Pad2)") (pintype "passive") (uuid "b343a24e-83e7-4262-b2b5-25bd957fe8de") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c8e43365-c2d3-4be5-8372-a9be3f60711a") (at 104.3135 97.5868 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D21" (at 0 -1.85 90) (layer "F.SilkS") (uuid "cc3291ea-eef0-40e6-b2e4-0ff165286f5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "26c43fbb-0465-4d0b-8df4-d0130942f9bb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d185d5bc-9780-4b08-90be-c41607399315") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e01ca9d5-0a3b-46db-bc72-dde59756a82f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d7d274e3-7f33-4a7e-b871-0965d115aee6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f5d1249d-27eb-4bbb-a399-74b06917fd8f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9f7c711c-df75-478a-bf00-9f17251b0d2f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f27b79b2-af54-4015-9cfb-7dbe383eab90") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/6702d47f-0b12-4453-a9e7-aa625d400c1c") (sheetname "Fan3") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4197d86b-17de-4876-993e-ae72b22206e8") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "22b8bd72-a540-431e-89fc-1a65c600080a") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7f9dc555-5f5e-4295-8aa1-4490d88301ca") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76caab16-6066-4573-be0f-7d131a4781c8") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6546c1b1-6587-4553-a0db-e3fb5ebf8a0c") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f19b615b-d8ab-4ee4-a1d6-45a73ea4037c") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "946c1eb0-8f75-422a-ba7b-3a45527d21d9") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fb67403-1274-4a7f-8ded-e52aa1727ad2") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a10a390-7e80-4e75-9de6-0ad33ab3f594") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54960c8c-4b7b-4ce8-9e78-60ba20bf0b27") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bf5ece68-fc12-4e10-befc-fd27cc0e07a4") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b97dd0da-c659-4b32-b5d4-bc3c6fc340f5") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a5a28d47-003c-4de8-9390-c8c9b64a98d5") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9b7dc50-4f63-4143-abfa-0b9ed173bdf7") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b2bb472-459e-4b11-a922-a440fcefa88e") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb5fb3ff-8495-4045-9830-abfe2a07baa9") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e1962735-3b90-4a2b-abfa-5fa35bb09ae1") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "ca500e46-7c86-4081-b7ee-e3ea27811b14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "c7aa4267-23bb-43f9-88e7-2f80b8afef53") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "9189d364-e83f-4b2e-b203-73684c6a8d7c") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "c9b3e5ec-1d31-4947-883b-ccd69cc095fb") (at 84.05 72.5564 90) (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") (tags "Through hole socket strip THT 1x04 2.54mm single row") (property "Reference" "J2" (at 0 9.9 90) (layer "F.SilkS") (uuid "76e65cce-e2a4-4ba6-8c32-ab6183a63d4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "I2C (OLED ALT)" (at 0 10.39 90) (layer "F.Fab") (uuid "e12ed4c5-6cac-48d8-80e2-d43c98b9c0d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "487f62b7-0eeb-48ab-88eb-53248d553e2e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "835dcd9b-7df3-4d35-acf7-8f47fb7d9075") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e10f7d3b-4cdf-476a-b68e-ab3252347480") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bfa18a3a-293a-47cb-b592-8a652ef79e14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cf219643-b9b4-411e-b4e6-999b48caca96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/918d6622-f969-49f5-8a3a-f4b4a9270800") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 1.33 -1.33) (end 1.33 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b743a8e1-ce9e-488d-87c4-a6228dab070a") ) (fp_line (start 0 -1.33) (end 1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "49cf53f9-9fe6-49e3-8f0e-63c886c3934f") ) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "97cb2a43-b528-496a-bdfe-e930ea6fa24d") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "52285664-e96b-4d22-9a0a-6356d94579b0") ) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bab96a2c-8566-42ea-b11e-8cc786ac1fe3") ) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "852a1160-b9a7-44ef-8512-4ea6b1dd0f04") ) (fp_line (start 1.75 -1.8) (end 1.75 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d3f0a523-0383-465f-8a8c-930e904ffd80") ) (fp_line (start -1.8 -1.8) (end 1.75 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91c1cd00-e444-4ec0-929a-0fe8ed2558ce") ) (fp_line (start 1.75 9.4) (end -1.8 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe45763e-5ecb-4a66-b885-d5a5b209b725") ) (fp_line (start -1.8 9.4) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "143651d0-9375-44bb-8370-481d52c835d0") ) (fp_line (start 0.635 -1.27) (end 1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3b0cd7e-aba7-4141-a19c-3e36d86bef23") ) (fp_line (start -1.27 -1.27) (end 0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1bf6172d-2140-472a-aa27-7e8a9c3f2894") ) (fp_line (start 1.27 -0.635) (end 1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "432d0a04-77c3-4f76-92ce-4f5956dced99") ) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c27d8aa6-d295-44e3-bb49-96ffa19a67de") ) (fp_line (start -1.27 8.89) (end -1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d73a4088-6036-4acc-97f4-560e17790c28") ) (fp_text user "${REFERENCE}" (at 0 3.81 0) (layer "F.Fab") (uuid "80c9207f-ec1c-46a0-a254-3282cc877f99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_1") (pintype "passive") (uuid "11ae86f2-f1f0-41c2-a9c5-be19816c00fa") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "65a4530f-c54d-4f57-9b34-f3e87d9de05f") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 20 "SCL") (pinfunction "Pin_3") (pintype "passive") (uuid "20e3c8a2-864d-4849-bb34-d37e2f4a8020") ) (pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 19 "SDA") (pinfunction "Pin_4") (pintype "passive") (uuid "acd7924b-d158-4a7e-8c55-8f175e46695d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c9fcd7f4-1ee6-4857-82fd-9c21d04b714b") (at 102.8192 116.078) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R14" (at 0 1.4732 0) (layer "F.SilkS") (uuid "2df0d846-d4f1-4be9-84e4-424d2afefb5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "2cc201f1-b42f-4517-a4ba-0e554d2f8cc4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1e3fb744-e65f-45f3-bc43-35a5affcca5c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c91f2dd4-99e7-46ae-aaea-a750bdf72e8f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bbe77fc8-af02-421c-8b79-869185e0a3f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3aa4776c-2988-42e9-83e5-77eb12688f83") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9793146b-890a-4e5b-96e8-c04f5e1071cb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "805ea0fb-e423-480f-ae0e-85fc02df4c78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e6e8ae2a-5894-4e68-8264-24e364417d34") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8831ce7b-3056-48e9-8faf-82e7180e8766") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1a420dac-2461-4c0c-86f3-2ae25c243a0e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "501c4c9c-aaec-4879-8be9-53a40ef62454") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "606a608b-9540-4d17-a226-a8a45f4d6f49") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e5be8d1f-e359-42af-98c6-50b02b6135ab") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d084bab3-8ca4-4547-a690-fbd79116613c") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "275c6792-4e07-4149-ae2b-f92235153319") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a80dfc7f-d803-4607-afcd-f8e4d3418962") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bc1497cc-f325-4656-9f87-eebb4071c93e") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c28dd39f-b3ba-4031-8986-bfef9ff1dda7") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d593bf22-eb13-4b96-b7be-f050ccad3f0c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 42 "FAN1_PWM_GEN") (pintype "passive") (uuid "e2f51ac7-4069-49e5-b8f0-6ec81b8eecff") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 34 "/Fan Channels/Fan1/PWM_OUT") (pintype "passive") (uuid "6d7f0340-1a6f-4a70-adff-1ec118385a81") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "cffab4f5-85f3-407b-a649-74bb72009e9b") (at 93.726 84.7325 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R43" (at 3.2175 -0.094 90) (layer "F.SilkS") (uuid "73012483-c8b8-4c17-a6d8-97a2d51a1e9f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "cafcac04-02d9-4823-ba9e-d0733b3367ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f3735633-e251-4626-8ba2-405ce4f550d8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "edc258d9-ba02-4068-a885-6c5625e18c2a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7ebfc062-26af-4b04-a31b-d8ef1edad79d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 61.75 227.25 0) (layer "F.Fab") (hide yes) (uuid "6fd27ed8-e58b-4d02-9220-74995c18cc55") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf88b610-0ce3-466c-91e1-713811393896") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "52cd93db-a22c-4f40-8a1c-718bdd3c5147") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan4") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f9bde5c-7661-40cd-af39-cf145fb368c0") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "34b8d1f9-c00e-4926-a8f5-37e2d8dcc4d4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2f29bef5-026e-4c30-b42a-c4543fdf8565") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "404bcfb5-c4be-4090-a242-7e9169104b28") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82517be3-c909-4f2f-a438-7b58d1013cc3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c8b89b48-619c-45de-8782-1a73c4c90bb0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ef917de-dccf-4db9-bb59-ea9476f2fa96") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "44d6a17e-9cd0-482e-9e21-d5faa58565e7") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f82fe7ed-f664-4154-8494-0d5e9234b415") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94f661ef-cca3-4593-8673-951aa7133e97") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "722f8e1d-62a1-4c54-a1a6-a946b6269df1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "FAN4_TACHO_READ") (pintype "passive") (uuid "ee4ebe8d-b89a-4c9e-bea4-c4003ecd784c") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "af5e4156-de12-4c78-a091-15c0c21f82d9") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "d162cdf7-ae32-417a-828f-b8bb6c98dc12") (at 78.7 84.3 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R54" (at 3.2 0 90) (layer "F.SilkS") (uuid "e548cda6-22e0-4027-a6ca-4c544fcb244b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "DNF" (at 0 1.43 90) (layer "F.Fab") (uuid "8ced33dd-df4e-4a87-ac1c-67159babfc62") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "aecf3811-d5a3-40ec-8bbd-faee4a2503f6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e7358f0a-ff20-4119-b25c-13d81b11f7ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bc74ca3b-ba7d-4acb-bbe3-f41f518138f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "970fc097-6d17-48eb-be78-057b92f0ef7c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "N/A" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "596e6a3d-56d7-4bd4-83ec-f36ba483a4ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "N/A" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1d0e0d49-b47c-44fd-9d21-9d8f76e1f3fb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/68788af4-cd69-4bb0-8b00-fc6856411aae") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "13381e01-4f98-453a-8ca9-ef245e3378b1") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e5ed505d-42b6-47f4-9232-214464705dc8") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a08edd3-e0a9-4ec3-90d7-c953e4a9c59f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0362e5c4-0626-42f9-8828-a013b46ad015") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b184630-1430-4d7e-9920-8b47682d6a37") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfd8071c-3e5e-4631-897f-90a7aa14cd90") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "895ec607-2fbb-432a-bcc5-2b861ae68046") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5bbc68c6-a26a-43bc-82fd-5570cdf5800a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e44131b1-7c7f-4aed-a975-e67488606344") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8bee6659-ae3c-4f2b-86ea-b2538e3df616") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "1b3b5070-f9bd-4999-97e6-9d04faa5f57e") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "b9eed783-ecc6-48e2-a630-e5a25f362060") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "Net-(U1-~{1OE})") (pintype "passive") (uuid "1c51a4b4-25bc-4ede-ad82-df11d34f837f") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "d205a3ef-6fc7-4793-884a-a92f50059f45") (at 95.476 107.2325 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C21" (at 3.0675 0.106 90) (layer "F.SilkS") (uuid "8fb4a169-4c87-495d-8618-074953c9806a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "84014d92-50b4-479f-b25c-1e3dbc3d2cb2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6a21e0b3-ce70-4940-9878-e9f6affcf736") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bd0ebb77-9cc2-4339-a310-66f82fee8332") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e93760e5-9ac9-4cd3-92c9-0bd76dda65b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 41 251.5 0) (layer "F.Fab") (hide yes) (uuid "23cf130b-7054-4195-a609-50dd4357cbce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e6731a2c-8836-4f01-86f6-074cdaa590ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df6a9966-67e9-4e1b-8ca9-efb3fadd2f2f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan2") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6eab651-1463-4d35-8c5e-73a060522468") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba719c3b-b9a3-4ef2-b226-42ea07414c95") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0d566804-b8bf-4523-99b2-cc82bb5c2c9c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dbf18a9e-91c0-4a2a-90b8-120048ffa62d") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "309a2ab2-6f51-41eb-b001-fda59ee463be") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "487e4624-e291-42be-95de-231cb51499a7") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c55e883-7742-4939-aeb2-79a155ca7a2c") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0de25f04-5ccf-4c43-b873-890fe487a8e2") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3e964dd8-8780-43bb-9901-74c4f3a27c0e") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f9771d6d-ee33-4158-a19f-285afd21d51a") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "4892b5a0-6726-4a67-b848-eeb758abea6d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "FAN2_TACHO_READ") (pintype "passive") (uuid "477b47ff-2006-4681-a883-9162f811079f") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "c3936c88-b357-46d4-9ef1-604cdf7ddee1") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (layer "F.Cu") (uuid "d49843fb-dd4c-4989-905c-a51d971b0559") (at 71.2808 121.4478) (descr "Through hole straight pin header, 2x05, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x05 2.54mm double row") (property "Reference" "J18" (at 1.27 -2.33 0) (layer "F.SilkS") (uuid "2591389b-ea02-4bfd-a5b0-af1ca544375d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LCD (SPI)" (at 1.27 12.49 0) (layer "F.Fab") (uuid "87a38d84-6d75-4fa5-943a-da347851072b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ec2e46da-a3a0-4740-8630-8a5e4d2eb108") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cf5b24c6-f1b6-4fa7-99f2-ac42d345af92") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d576b3d7-fa37-438a-91f1-4ea8ef940f10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "322bc639-6b8a-4608-b474-b9be92a2b0d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b7d7011-866a-4390-87c3-3b8cefd1191d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_2x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6c8ccf28-571a-4874-954d-04889ea48734") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7803a965-bb33-4191-9ce2-38d170d7d848") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c96eb594-895d-4f8f-a551-dfd027a1c57c") ) (fp_line (start -1.33 1.27) (end -1.33 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3eb2ea56-907e-4d6b-a90d-ec6330e5df33") ) (fp_line (start -1.33 1.27) (end 1.27 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee0958f2-26ac-4033-81b6-96e4e4037c60") ) (fp_line (start -1.33 11.49) (end 3.87 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c7e53fc-418e-425c-b470-c212e11ee1fa") ) (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ccc027fa-e3f1-45e8-b90a-cd68e769962a") ) (fp_line (start 1.27 1.27) (end 1.27 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59aacf2b-f689-43b9-8fb6-a91535624e7a") ) (fp_line (start 3.87 -1.33) (end 3.87 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ce5fa605-4199-4ecc-994d-f75e90ea9cdb") ) (fp_line (start -1.8 -1.8) (end -1.8 11.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e3883d3e-0381-48a5-9d9d-7fc8b73f3d26") ) (fp_line (start -1.8 11.95) (end 4.35 11.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d46683b0-803c-45be-8db4-3c57a682b8e2") ) (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "55b4f5a4-6805-42c5-b404-5b8a870c5ad4") ) (fp_line (start 4.35 11.95) (end 4.35 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6d2fc6fa-5faf-4668-80a0-528a8f1def84") ) (fp_line (start -1.27 0) (end 0 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6ae7906-96cc-4f8d-9d6d-4bc6c7b34ee9") ) (fp_line (start -1.27 11.43) (end -1.27 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "96e4173e-ac48-41ed-95a1-4befee1c7e12") ) (fp_line (start 0 -1.27) (end 3.81 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2e334536-0a2b-4ce6-b970-81d22838d095") ) (fp_line (start 3.81 -1.27) (end 3.81 11.43) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "718ad541-ee61-4656-b1c2-7e26ba4b9795") ) (fp_line (start 3.81 11.43) (end -1.27 11.43) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e6aa46e1-5c28-4485-96d1-6a6a9c9a52af") ) (fp_text user "${REFERENCE}" (at 1.27 5.08 90) (layer "F.Fab") (uuid "bf140bab-f3f8-416e-8e56-dbfc6daff7ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 28 "MISO") (pinfunction "Pin_1") (pintype "passive") (uuid "d2335ddf-c08d-4352-a29c-2ded454ca151") ) (pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "1a87febb-0145-472c-915d-1039f8b9b483") ) (pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 29 "SCK") (pinfunction "Pin_3") (pintype "passive") (uuid "47700691-b0b2-4562-84b8-be87973f96d5") ) (pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 27 "MOSI") (pinfunction "Pin_4") (pintype "passive") (uuid "37845795-a027-4126-8d6f-5efda3879874") ) (pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 30 "CS") (pinfunction "Pin_5") (pintype "passive") (uuid "57761053-76b9-4e57-903f-cc2bf88eef1c") ) (pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (uuid "08d6a084-de51-4a16-8d52-d834519e7977") ) (pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 31 "LCD_RESET") (pinfunction "Pin_7") (pintype "passive") (uuid "2adcfa78-9eb7-42aa-a664-cf6dcb6fb71f") ) (pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_8") (pintype "passive") (uuid "67335732-3e72-49a2-92be-1b4d426989a5") ) (pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 71 "VSYS") (pinfunction "Pin_9") (pintype "passive") (uuid "bf221b3d-099b-45e2-8c4f-909a07b8d272") ) (pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (uuid "4b03e09e-a1ad-4ba7-9953-cd2e553c9869") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "d5126669-5cc9-4360-8716-aea7e95ac812") (at 80.55 70.7564 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C32" (at 0.0744 -1.4812 0) (layer "F.SilkS") (uuid "bcd67dfe-fb9a-469d-94a0-9686b83ef519") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "b385d849-d36f-40b8-87ce-58b26fe3420d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f178f1ad-c005-4941-bef0-1d33ccffe340") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "760a5e6f-8663-4a6a-82a6-ada7c7805986") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d92ec723-b4af-4330-aec1-6702bcca6683") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 228.4 158.2 0) (layer "F.Fab") (hide yes) (uuid "a4e1de0f-d0f5-4d6f-9941-0cb4745618b4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d36c2a45-f64d-4bdf-9d0d-cb509f934a64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "270f9092-1194-43da-a387-daaee4cc3bd2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/28dd9e1e-dbf3-4782-9cbc-a3a86d1241f2") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a400fc4d-a007-4b87-b632-fbb0dd600058") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3661af92-9cf0-48a8-98c3-f0cf25bee5e6") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c5d90831-4a3a-4353-8abb-31a21c49f2dd") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cb19d7ba-6c20-4491-9546-54dc82744b4d") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c7584387-79ac-42b9-9888-a8f4546fb5da") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe3f9f6b-457e-4051-a5d6-c18dd3d95d63") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "135b569c-f4bd-4a94-a54d-98eb7dea7bf5") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f5fb4ed4-fb23-4aea-b334-66ec4cf4f22b") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6bf9edb2-6ea7-4d81-9843-5c5436e32cab") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0586254-2f92-45da-905a-c3c7876503ea") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "4d9d85a1-ba1f-431b-817d-687f8790a17d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "46d9bb78-ec32-4c69-bb25-d3c55c5c5880") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f5ef74b9-44d3-4901-afa9-d2ba178fa7f5") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "d698e8ba-f846-4664-9811-56600cef7a13") (at 99.2335 118.6857) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D9" (at 0 -2.5 0) (layer "F.SilkS") (uuid "13bef752-ea5a-448e-a825-948fbf567569") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54(C)" (at 0 2.5 0) (layer "F.Fab") (uuid "ccc99916-5c46-43f6-8eed-088f7d803e59") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f343fe27-9fbe-449e-9010-88f4a2951b64") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f8af90f2-f88c-4d86-b535-afba2d450e25") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1ae6c19f-0746-4272-ba22-a0711c973269") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at -4 219.6 90) (layer "F.Fab") (hide yes) (uuid "5b17bf7b-9ef2-447a-93e7-caae241faf64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at -4 219.6 90) (layer "F.Fab") (hide yes) (uuid "dbe1a998-34cb-456f-8356-f9c9e9690a3f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at -4 219.6 90) (layer "F.Fab") (hide yes) (uuid "b8dc6402-b1c1-4060-8b89-f9377a3a0ef8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8cd415e1-f006-450b-b162-ace1b8c554a8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "241-BAT54C_R1_00001" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cd1a4622-2fb6-450e-b706-c10912ceba68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "475b8486-2738-4ed8-9b3c-24a2bd63d05c") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "605f7cd9-0e6f-45af-babf-d59edf9528cf") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c46c14c8-8a76-455b-9702-50833dc3a134") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "967c0097-cf24-4e11-9eee-ed2b4e51ef25") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "65b4f363-9162-4fd9-b40a-148a7eefb1db") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ee517d80-0fb0-4b7d-9913-56000c4de080") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "656a0891-898d-42a0-a211-7b3cd9c729ad") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "44e1995d-7850-4652-b121-8f7672217367") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aac00c7d-2459-4b72-8e71-d661f70c4c7e") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ad2a6a1-754e-40b0-bccf-342667ffca17") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7da5d305-a510-4a9a-b9c5-5b8aad2ca939") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9f25b98-6b1d-4701-9ee3-a1451e886f55") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f005ca07-e350-4cdb-bf3e-5c632dec1f96") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad621ba8-950e-46a4-89e2-920e09ccb962") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eac1a661-86f7-4ee1-9f7c-5ce42e83b2cc") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02830cd5-032c-4db6-9bf4-01f9c7d4a98f") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0e64cc2a-866b-4777-84f6-e0f285eef42c") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "565b1d67-0bc8-4b39-a4a5-191676dcefef") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "b2c19845-41a6-4731-be10-2b7d17984f01") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "1491310b-4715-4d7a-95c7-07def2e4723d") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "71e1a53f-e241-4596-9d08-3464958a4776") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "FAN1_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "ef70c5ca-dfbc-4e67-bb14-7fef824b1619") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "d7e4a5d9-b749-4b79-a680-4339999f8342") (at 104.3432 120.3452 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D15" (at 0.0052 -1.6232 90) (layer "F.SilkS") (uuid "387516f3-d080-442b-acf1-fb0387afe3e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "cc419587-1561-448b-b9a9-c05237632e57") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "11a4f1e6-cf46-4da4-bbb5-6a88141abf1a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "248a777d-19a6-4b2b-8633-75a1818126ce") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "878f4915-2ab3-48c0-b4a4-e0acda214900") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c0e47bdb-fa0a-483d-a6db-9822660ed7c8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2d3de855-e5a1-4cb4-9688-88a8e0f2d963") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "84a76f8c-4a64-4c4a-9f32-bc6c3c4e2314") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/74237a7c-a16c-415c-b729-0b9df8cc8ac4") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64307e52-ff40-4a37-8bfd-8aa77378a2ea") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "deca4b14-deed-4008-b64c-b51590766922") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a38361e3-a540-4331-b4f4-e9998c72f2af") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a4dd19d4-e9ea-4d54-b7e3-78bd5fa49177") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5eb766d1-78c7-4a42-a2cf-66d0233e9074") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9fa14804-3934-4196-8bb1-bcc5a4dac6c8") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "01a16ffd-ceac-4fdd-b0d7-e5378ca1184a") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4511ae1f-67d7-4180-8a4f-57ea731f5725") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f0646e71-fe0e-4a13-93ad-0738343a91ab") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2974552e-8262-4e68-9249-a6041fef5ac5") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38939c09-0def-4043-bd8b-71e857342e3e") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ecf88e3-5f4a-47b6-8abd-35f087449933") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ce8c2f7-9873-4592-9b76-468f09de64d8") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f839b6a-d952-4a9d-bff6-5a5424328180") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae0e6043-13f1-4d5c-9834-05a2ff70504e") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e42cfc10-4596-4f13-8268-f3760d0cdf89") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c984ed41-31b5-4f41-81f4-e9e5ac83e556") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "26baf97f-83ff-4601-9348-c10c3a9ca270") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "90728ff3-9e10-4d3a-a088-d083a5982bb7") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "72fd54f3-aab8-4651-93fd-2168a2929fea") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:TE 171826-4 Floppy 4-pin Combo" (layer "F.Cu") (uuid "dcd43ccc-598c-47af-887a-29a8f1c661e1") (at 44.5262 71.4125 -90) (descr "Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf") (tags "connector barrel jack") (property "Reference" "J1" (at 5.9004 -1.0438 0) (layer "F.SilkS") (uuid "7f0d4281-c7e1-4a9e-8c5a-8628aa43e186") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Floppy Power Connector" (at 1.29 8.5 90) (layer "F.Fab") (hide yes) (uuid "e6e76102-47e7-4e25-ac7e-5960dc6c036a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:TE 171826-4 Floppy 4-pin Combo" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ef440989-e33b-4f7a-8f6c-d772e931dd5f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c7be79cd-159c-46b8-a5dd-a5b50fb45345") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7453029e-2a38-4bac-9d06-0345500f2607") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7c6b2462-99ce-4f88-a342-5ed7c486b926") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C590635 / C381115" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "40440d22-eb05-493c-b7cf-00112934a092") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "571-1718264" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5c57f4ab-a388-4f38-a2d7-00ca5936968b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/32d11869-f2aa-448e-999e-866b16c452b4") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -4.98 6.718) (end -4.98 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "e48d9a18-6721-4111-9d9e-63a1baffe7a0") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "c34d2b54-ddbc-4f7a-8bb2-52875ea4890f") ) (fp_line (start -5.92 6.7) (end -5.3 6.7) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "b3d45e57-37a7-49ca-aa03-1c18a0c96a82") ) (fp_line (start -1.25 2) (end 1.29 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "82dc21cc-f94b-4157-bbd7-b9a8fa3a786b") ) (fp_line (start 1.29 2) (end 1.29 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f21c3da9-5fd3-4d99-9074-cd48a376a76e") ) (fp_line (start -4.98 0) (end 5.02 0) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "ac16714a-261d-4209-8e7c-ae24fb894446") ) (fp_line (start -1.25 0) (end -1.25 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eeadd06c-1a91-4f15-b10f-6073410613c9") ) (fp_line (start -4.98 -0.782) (end -4.98 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "0cb41dbf-6d98-4bfb-8c58-3612e02d0a27") ) (fp_line (start 5.02 -0.782) (end 5.02 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "9727f293-ceea-4d34-98fa-12e7bbd22ff2") ) (fp_line (start -4.98 -2.182) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "f3ed28b1-ead2-4e35-a9d3-2d57679443c2") ) (fp_line (start 5.02 -2.182) (end 5.02 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "89262f65-c22f-4f69-8319-c155224cf095") ) (fp_line (start -4.98 -6.782) (end -3.5 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "58a16df5-d599-40ac-80e5-0540422fd55b") ) (fp_line (start 5.02 -6.782) (end 5.02 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "97a75a6f-2160-4040-b01b-23eb71cb72a8") ) (fp_line (start 5.02 -6.782) (end 1.4 -6.782) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "fb0ce5f2-79b2-425d-8005-023e622d08c9") ) (fp_line (start -5.92 -8) (end -5.92 6.7) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "f7394832-df77-4a5b-b863-7545726639b6") ) (fp_line (start -5.92 -8) (end -3.5 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "6ee97146-a5a9-4707-94cf-22de5b3af291") ) (fp_line (start 1.4 -8) (end 3.57 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "18e2c278-099b-4986-86f8-9d3dca9cf12a") ) (fp_line (start 3.57 -8) (end 3.57 -7.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d08776d-3620-467b-b350-c3164ef2cc6a") ) (fp_line (start -5.3 7.1) (end 6.29 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82523967-e9ea-4a78-8e63-b6fb179210ca") ) (fp_line (start 6.29 7.1) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a0e478bc-a61f-4ef5-a585-24f45c42b92f") ) (fp_line (start 7.49 -1.5) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db33c1e8-6108-4cd8-a187-e7acf3c8aaff") ) (fp_line (start 6.29 -6.5) (end 6.29 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dddcb70f-7d5c-453d-ad0a-445a4c891f80") ) (fp_line (start 7.49 -6.5) (end 7.49 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3aee98d0-fd1f-487e-ba00-225b4828e4a7") ) (fp_line (start 7.49 -6.5) (end 6.29 -6.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f76357ff-35d5-44c2-a43e-7af70a4fb738") ) (fp_line (start -5.3 -8.4) (end -5.3 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1f00ec6a-26aa-4aa1-83b3-712186fef703") ) (fp_line (start 6.29 -8.4) (end -5.3 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "289622ba-3f96-4739-aa9a-35de0375cf0a") ) (fp_line (start -4.98 6.718) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "b0bc75a2-8313-4966-9d5b-ff79a409834e") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "d6512e26-91bc-4d4c-af3f-b70630076823") ) (fp_line (start 5.02 6.718) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "5e04be4c-2e63-412e-a967-17a999cb901c") ) (fp_line (start -5.6 6.6) (end -5.6 -6.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64759c4a-e4a6-4ad3-972a-75c1858b94fb") ) (fp_line (start 3.4 6.6) (end -5.6 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2168c31-28b9-4bec-a7e2-4d47cef803f1") ) (fp_line (start -4.98 -6.782) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "4974d3ee-d244-4b0e-960e-6a3f2eb5e6e9") ) (fp_line (start -5.6 -6.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff8de1ef-bbc5-4006-aa39-4bffcd16ccf1") ) (fp_line (start 3.4 -7.9) (end 3.4 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "501a1c3a-ebb2-487b-9761-9a11a3f279dc") ) (fp_line (start 3.4 -7.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8426ed5-b59d-4409-98cd-aad25775eb0e") ) (fp_text user "${REFERENCE}" (at 0.7 3.4 90) (layer "F.Fab") (uuid "b94cae07-497d-4dec-b7f3-fc65186dd9a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole oval (at 3.77 -4) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 26 "unconnected-(J1-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (uuid "93afd13d-4bf4-4d07-92c1-908e722f1b8e") ) (pad "2" thru_hole oval (at -1.03 -1.2 270) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "98275bc9-a5bf-4ba6-96ab-03947d2de225") ) (pad "2" thru_hole circle (at 1.27 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "28d34fab-1d4c-4157-86c4-ecc4f838e00a") ) (pad "3" thru_hole circle (at -1.23 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (uuid "d52f080e-7489-4397-8930-0ceb986bf363") ) (pad "4" thru_hole circle (at -3.73 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 66 "/Sensors & Connectors/AUX12_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "f20af0ec-4b90-45e6-ac98-f5e266e65b42") ) (pad "4" thru_hole rect (at -1.03 -7 270) (size 4.4 1.8) (drill oval 3.4 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 66 "/Sensors & Connectors/AUX12_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "81cef2fb-bfb6-408e-8f1c-742657b290c0") ) (model "${KICAD8_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Wuerth_6941xx301002.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "dd84530f-c5fe-45e5-8faf-e2719fcb14cd") (at 42.5 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H3" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "fd1596d9-5937-4db3-950d-36e83808ce45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "d5dfdb90-9c14-4b72-b7c7-e7a00255fd48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "17fe4ac1-6686-4f5c-853b-24b4984311c8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6bdf9632-473e-40d2-b866-622e8d845320") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "55add841-4bb1-4c66-b0f5-bd8732b3c49d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3574564-eb15-48bd-9bfb-d0b22e473c82") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1a3b5d16-bb26-4645-9d2f-9639028d1ace") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "N/A" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eadb9e08-8bfd-40d4-a963-5c9c6ecc7d6b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/63465697-0038-4a5a-931e-e383d18d8993") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "a053c383-6ca0-4029-be60-bcda1e5582b1") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "8905709c-aad6-41c8-82b6-6eee41e8cb52") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "6b731ae0-9629-4107-a66c-8273acabd2b3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6cd0efc8-34a3-4c8c-8a50-7d4de9c40642") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d4342f0a-1a6f-4edb-8ae7-f313579ca662") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "28a56824-c159-4d47-94c0-29b660a7f035") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bada44d3-adb8-4b9a-bb51-9b350738ceac") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "987d7c29-44df-4f2a-ad2b-029baeb3d59e") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d85ccb5c-b82f-4fde-b7d2-64ebd7a0162a") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "0d068561-aeb9-4575-b23d-c698ec86d016") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "8d90da58-f912-41fc-984c-4322cde60d92") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "3f919bc1-0280-4a7d-8aba-f3b138bc128a") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e52b82df-9c78-4427-aff0-111199235a03") (at 57.8498 85) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R49" (at 0 1.425 0) (layer "F.SilkS") (uuid "a558ba4a-8cd2-4f4e-9181-744912a66d5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 0) (layer "F.Fab") (uuid "d0336e13-7351-4075-8911-ac5bc77f0e02") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d78bd656-3a7d-4c8d-bd98-cd028adee53f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3bf7658e-7f4b-45a0-a085-3132221011f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c8759f58-fa9d-4555-ad10-b36f426311a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3c1f4622-a6f0-4e5b-afa9-21a4bfbc55c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0395f194-82e1-4390-b8e0-4ad842476dc5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e89c3b84-8920-4cac-a0be-fa079c3db12d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/00d03321-5580-4405-8c0a-820cab392953") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dba4240a-5135-49cd-acc3-74f3e902fe4c") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3f2a29df-2091-4bf6-bec3-fbf3521916b9") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2f16c37a-80e3-46bf-b4d6-83febb3b537e") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1bf00fee-8aad-49d7-8082-8be438eae6a3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc2c474c-6db9-492c-a37d-8edca3b94847") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83b4288d-aa95-4780-80bf-958c2fc5941e") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc7f43be-ee61-4940-8169-7d3875515b85") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "75d7e8b9-ffc1-4b2b-a591-1b7bef4bf766") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00ce8ab6-59b8-4549-94a5-50798301bffd") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "407599f1-06c5-4953-9dd2-bc0e027785d0") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ec8e4255-a5f1-4685-bea3-e90a69f9dcd0") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 67 "AGND") (pintype "passive") (uuid "4765703d-5f4f-40b0-aa73-4d2a181de612") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "8bb2aa47-0fb4-40c1-9aa4-eee3f743d344") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") (uuid "f9dc42c0-7be2-45dd-a527-5667d83216e4") (at 57.725 120.1 90) (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x02 2.54mm single row") (property "Reference" "JP12" (at 0 -2.33 90) (layer "F.SilkS") (uuid "b4cbd031-13d9-41cc-ad98-00fb003b938a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire PullUp Enable" (at 0 4.87 90) (layer "F.Fab") (uuid "42de5b86-5752-4aad-ba81-4d20be5ec511") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e40c1ea1-f9ec-4630-b131-348a080de665") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "643dabe2-977a-4227-b801-d4d93ca53b50") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3e1783f0-e89a-4979-b94c-d8c41c737e85") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*2Pads* TestPoint*Bridge*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/8b27d78f-77f3-4e7f-be27-7ca7183cde2c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0abbd2a4-8288-4687-8a45-1e180e97ea0f") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8c448b21-0d84-4840-b552-03ed1cb63794") ) (fp_line (start 1.33 1.27) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ffed2f60-ad9a-40d0-abf2-cd89bc7a40e1") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b7c6e261-1330-40ed-a890-0d7de6921956") ) (fp_line (start -1.33 1.27) (end -1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "135b852b-828f-4b3c-816b-bda12250556a") ) (fp_line (start -1.33 3.87) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4786611a-b98f-4456-bfe8-74362bc8f409") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba8ac277-164c-4134-b103-9c1d5dac69d0") ) (fp_line (start -1.8 -1.8) (end -1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "083b3967-afff-416c-8e35-86bb0da10842") ) (fp_line (start 1.8 4.35) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a0253874-0d94-4f39-a25e-0cf8b43d34e0") ) (fp_line (start -1.8 4.35) (end 1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "107d4b64-211e-48f7-9c93-7866eef9a1a5") ) (fp_line (start 1.27 -1.27) (end 1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53aea749-2107-4c05-bcc4-01b08c632b01") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57d75b93-2c19-4c3e-9f51-e9b42683c1fe") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8370c9a3-6202-4cb6-abf6-e4adda0fca52") ) (fp_line (start 1.27 3.81) (end -1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6949cb2d-786f-421c-8080-0e15b48a240e") ) (fp_line (start -1.27 3.81) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ade7fdf1-7d3c-4526-a7a2-327f834bb667") ) (fp_text user "${REFERENCE}" (at 0 1.27 0) (layer "F.Fab") (uuid "2cb73324-640c-4063-9ed3-8b87d4b82a96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 74 "Net-(JP12-A)") (pinfunction "A") (pintype "passive") (uuid "825f50bc-ef6c-44a2-aca2-c1f2c097c753") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 18 "DQ") (pinfunction "B") (pintype "passive") (uuid "a9dd3c12-6a54-4f76-9953-36b1ac7cb28a") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "fa36be4e-7de9-478f-a4ef-c229ac16c103") (at 66.35 70.2 90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C8" (at 0.05 1.85 90) (layer "F.SilkS") (uuid "fa1d4363-f425-40d2-8a03-5969cbd389db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 90) (layer "F.Fab") (uuid "471b0f01-233c-4955-be2a-1b914378a132") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "394d18a5-a022-4e52-8f0b-ed21706c82aa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1074f0bb-9833-4c48-9376-9c398fbe97a8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "385347d2-2954-4789-b195-590763ace92c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at -1.11875 155.74375 0) (layer "F.Fab") (hide yes) (uuid "d99e48d4-5d4b-42ff-ac40-b4ecc6528a07") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "81bb18a2-feb9-473b-98f3-17e6a71a1ab0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77a52056-e265-4fa0-a143-7752ccbd21eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/27625c54-6268-4c25-bed4-fca1fa7ca75b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87a42316-739c-45a3-ad0e-50e1ada93b3e") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30f92202-208a-472c-b21e-999021dca528") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c72b4b7c-7f61-4c1d-bbbe-27eaebebc70b") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "82cb85c2-1d36-4bca-ac89-fc5d4ef9f260") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "821500cf-0ddd-472a-8076-d32e0236ecff") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c306acfb-1858-410e-b5bb-0debdaaae433") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "52930d14-af2d-43db-b1cc-a8a0248df031") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e2693ce-44ac-47b0-bb48-b7d00b65d0ef") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb108922-0dea-489d-a9c3-32431e531024") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d53b7ab-d307-420e-96de-a2d463eec682") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f42d89a4-6d7f-4264-ae6b-25d0ed0988d1") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3ad719d-11f5-4e04-968a-ed651eacda3b") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "de4b3725-33bb-4a22-b6c8-88a6c84d8bd3") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "b2d3a484-4ef7-4fba-be23-3b5599c33e40") ) (pad "2" smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "c2a89320-cb2e-4059-9ec3-78e8fcdc173e") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "fb527929-5a76-4386-92c7-ed3f3a2f2a66") (at 114.3044 124.6624 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J8" (at 7.55 2.3 90) (layer "F.SilkS") (uuid "e3ac9ea7-53e6-46c6-9b87-8e559b9510fb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan1 Output" (at 4.05 7.1 90) (layer "F.Fab") (uuid "adff81dd-d4cd-4549-9e2f-9f232f234056") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ff7ced30-5775-4d81-bc70-e95cfd7b4f99") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a0ccf80a-8a0d-48d4-963a-a9e1b56117c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "63b51027-a24c-40f9-8f17-a16a48ff0c39") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "JCLC Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b540e176-af0a-403e-a2a5-89ae613779ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C240840" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9d6f3f5c-e5ac-43fb-a44a-575df299fc21") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "538-47053-1000 " (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4bcd2e37-2577-416c-8920-29c4054440d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/085195bd-ef5f-4321-aa3d-5891d4b1a1f2") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "891edeca-ec7d-434d-ab46-32d3ec8f8eb1") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ea864680-0700-4c30-b39e-217e1f295ddb") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "362adc02-34ff-44b5-873d-f201271b3f51") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "35b03047-c530-4f5c-af4d-d39fd0e3789f") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9c51d150-a53f-4ed8-bb6c-c11a4b9e9c29") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "72728af9-bda4-49d6-9cad-dae4aade3bf6") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c38800ab-fec8-405b-83c1-f071d8675a62") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0be34130-af05-4597-a673-82913a656625") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "094a0799-db09-405f-9ad6-b3f387475134") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b4c41369-e171-4d2e-b9b5-5b15abd9de44") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a2769a10-a96c-4cb7-a3a4-c4b33c1cfee0") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e95440da-9e27-4dce-ae7f-073ccc5ff46b") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e10747de-f164-4439-9b0d-442096c7b431") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ed92841-4f0a-476c-b6b3-27f3c4ecb7c6") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c4cdf4b-b80a-4c3d-87b2-6e04199a214d") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6226fc7-262c-4e2b-97d4-91234c32d689") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0b40e174-ce39-47f7-a62b-9e5765e2bfe9") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6938d5d-ecc5-467c-871c-4a3f6032fec3") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe7a85ca-cef7-407b-ad77-1921687b12c8") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dbee88a2-7816-4a7e-9e52-d8316d0f692f") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3026249-6c02-429a-bb8b-3288e39406c8") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "1a3a0715-2cbf-4c5d-8761-e89c9c6500f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "39330475-b7ea-4e95-8ceb-5e01e9778c0a") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "28f18796-4597-4fe4-9807-e0b226161eb8") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "MAIN_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "2b1c6a0c-f3b8-493a-9c72-64687950e053") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "b546be97-6acd-460b-8c93-cf8310bde798") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 34 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "9e0aea7a-fa90-4855-8304-a140706f5599") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:KiCad-Logo2_6mm_Copper" (layer "B.Cu") (uuid "f3b2c3c7-532f-4794-9a43-8927723d4ddc") (at 101.353487 126.812848 180) (descr "KiCad Logo") (tags "Logo KiCad") (property "Reference" "REF**" (at 0 5.08 0) (layer "B.SilkS") (hide yes) (uuid "0ede2055-f413-46af-b36a-06810d148963") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Value" "KiCad-Logo2_6mm_Copper" (at 0 -6.35 0) (layer "B.Fab") (hide yes) (uuid "87b7cab2-499e-49c2-94d1-b76f5f06261b") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Footprint" "Symbol:KiCad-Logo2_6mm_Copper" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "edc74e5a-34b6-475c-8090-0e831f4571d2") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "4bfd3cb7-2580-4865-b042-40b738de42ae") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "06543d88-0e4a-4e0f-82a4-49357a1b7332") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_poly (pts (xy 4.200322 -3.642069) (xy 4.224035 -3.656839) (xy 4.250686 -3.678419) (xy 4.250686 -3.999965) (xy 4.250601 -4.094022) (xy 4.250237 -4.168124) (xy 4.249432 -4.224896) (xy 4.248021 -4.26696) (xy 4.245841 -4.29694) (xy 4.242729 -4.317459) (xy 4.238522 -4.331141) (xy 4.233056 -4.340608) (xy 4.22918 -4.345274) (xy 4.197742 -4.365767) (xy 4.161941 -4.364931) (xy 4.130581 -4.347456) (xy 4.10393 -4.325876) (xy 4.10393 -3.678419) (xy 4.130581 -3.656839) (xy 4.156302 -3.641141) (xy 4.177308 -3.635259) (xy 4.200322 -3.642069) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "5a276de7-afcb-423e-bedc-ec0068766187") ) (fp_poly (pts (xy -2.912114 -3.657837) (xy -2.905534 -3.66541) (xy -2.900371 -3.675179) (xy -2.896456 -3.689763) (xy -2.893616 -3.711777) (xy -2.891679 -3.74384) (xy -2.890475 -3.788567) (xy -2.889831 -3.848577) (xy -2.889576 -3.926486) (xy -2.889537 -4.002148) (xy -2.889606 -4.095994) (xy -2.88993 -4.169881) (xy -2.890678 -4.226424) (xy -2.892024 -4.268241) (xy -2.894138 -4.297949) (xy -2.897192 -4.318165) (xy -2.901358 -4.331506) (xy -2.906808 -4.34059) (xy -2.912114 -4.346459) (xy -2.945118 -4.366139) (xy -2.980283 -4.364373) (xy -3.011747 -4.342909) (xy -3.018976 -4.334529) (xy -3.024626 -4.324806) (xy -3.028891 -4.311053) (xy -3.031965 -4.290581) (xy -3.034044 -4.260704) (xy -3.035322 -4.218733) (xy -3.035993 -4.161981) (xy -3.036251 -4.087759) (xy -3.036292 -4.003729) (xy -3.036292 -3.690677) (xy -3.008583 -3.662968) (xy -2.974429 -3.639655) (xy -2.941298 -3.638815) (xy -2.912114 -3.657837) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "0a3fd75f-ffc1-4a85-9762-434120136319") ) (fp_poly (pts (xy -2.726079 2.96351) (xy -2.622973 2.927762) (xy -2.526978 2.871493) (xy -2.441247 2.794712) (xy -2.36893 2.697427) (xy -2.336445 2.636108) (xy -2.308332 2.55034) (xy -2.294705 2.451323) (xy -2.296214 2.349529) (xy -2.312969 2.257286) (xy -2.358763 2.144568) (xy -2.425168 2.046793) (xy -2.508809 1.965885) (xy -2.606312 1.903768) (xy -2.7143 1.862366) (xy -2.829399 1.843603) (xy -2.948234 1.849402) (xy -3.006811 1.861794) (xy -3.120972 1.906203) (xy -3.222365 1.973967) (xy -3.308545 2.062999) (xy -3.377066 2.171209) (xy -3.382864 2.183027) (xy -3.402904 2.227372) (xy -3.415487 2.26472) (xy -3.422319 2.30412) (xy -3.425105 2.354619) (xy -3.425568 2.409567) (xy -3.424803 2.475585) (xy -3.421352 2.523311) (xy -3.413477 2.561897) (xy -3.399443 2.600494) (xy -3.38212 2.638574) (xy -3.317505 2.746672) (xy -3.237934 2.834197) (xy -3.14656 2.901159) (xy -3.046536 2.947564) (xy -2.941012 2.973419) (xy -2.833142 2.978732) (xy -2.726079 2.96351) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "f52be3f3-2a03-498d-a356-e89cbad1cfb8") ) (fp_poly (pts (xy 4.974773 -3.635355) (xy 5.05348 -3.635734) (xy 5.114571 -3.636525) (xy 5.160525 -3.637862) (xy 5.193822 -3.639875) (xy 5.216944 -3.642698) (xy 5.23237 -3.646461) (xy 5.242579 -3.651297) (xy 5.247521 -3.655014) (xy 5.273165 -3.68755) (xy 5.276267 -3.72133) (xy 5.260419 -3.752018) (xy 5.250056 -3.764281) (xy 5.238904 -3.772642) (xy 5.222743 -3.777849) (xy 5.19735 -3.780649) (xy 5.158506 -3.781788) (xy 5.101988 -3.782013) (xy 5.090888 -3.782014) (xy 4.944952 -3.782014) (xy 4.944952 -4.052948) (xy 4.944856 -4.138346) (xy 4.944419 -4.204056) (xy 4.94342 -4.252966) (xy 4.941636 -4.287965) (xy 4.938845 -4.311941) (xy 4.934825 -4.327785) (xy 4.929353 -4.338383) (xy 4.922374 -4.346459) (xy 4.889442 -4.366304) (xy 4.855062 -4.36474) (xy 4.823884 -4.342098) (xy 4.821594 -4.339292) (xy 4.814137 -4.328684) (xy 4.808455 -4.316273) (xy 4.804309 -4.299042) (xy 4.801458 -4.273976) (xy 4.799662 -4.238059) (xy 4.79868 -4.188275) (xy 4.798272 -4.121609) (xy 4.798197 -4.045781) (xy 4.798197 -3.782014) (xy 4.658835 -3.782014) (xy 4.59903 -3.78161) (xy 4.557626 -3.780032) (xy 4.530456 -3.776739) (xy 4.513354 -3.771184) (xy 4.502151 -3.762823) (xy 4.500791 -3.76137) (xy 4.484433 -3.728131) (xy 4.48588 -3.690554) (xy 4.504686 -3.657837) (xy 4.511958 -3.65149) (xy 4.521335 -3.646458) (xy 4.535317 -3.642588) (xy 4.556404 -3.639729) (xy 4.587097 -3.637727) (xy 4.629897 -3.636431) (xy 4.687303 -3.63569) (xy 4.761818 -3.63535) (xy 4.855941 -3.63526) (xy 4.875968 -3.635259) (xy 4.974773 -3.635355) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "c5b579f8-d96d-4416-a903-4018f4482372") ) (fp_poly (pts (xy 6.240531 -3.640725) (xy 6.27191 -3.662968) (xy 6.299619 -3.690677) (xy 6.299619 -4.000112) (xy 6.299546 -4.091991) (xy 6.299203 -4.164032) (xy 6.2984 -4.218972) (xy 6.296949 -4.259552) (xy 6.29466 -4.288509) (xy 6.291344 -4.308583) (xy 6.286813 -4.322513) (xy 6.280877 -4.333037) (xy 6.276222 -4.339292) (xy 6.245491 -4.363865) (xy 6.210204 -4.366533) (xy 6.177953 -4.351463) (xy 6.167296 -4.342566) (xy 6.160172 -4.330749) (xy 6.155875 -4.311718) (xy 6.153699 -4.281184) (xy 6.152936 -4.234854) (xy 6.152863 -4.199063) (xy 6.152863 -4.064237) (xy 5.656152 -4.064237) (xy 5.656152 -4.186892) (xy 5.655639 -4.242979) (xy 5.653584 -4.281525) (xy 5.649216 -4.307553) (xy 5.641764 -4.326089) (xy 5.632755 -4.339292) (xy 5.601852 -4.363796) (xy 5.566904 -4.366698) (xy 5.533446 -4.349281) (xy 5.524312 -4.340151) (xy 5.51786 -4.328047) (xy 5.513605 -4.309193) (xy 5.51106 -4.279812) (xy 5.509737 -4.236129) (xy 5.509151 -4.174367) (xy 5.509083 -4.160192) (xy 5.508599 -4.043823) (xy 5.508349 -3.947919) (xy 5.508431 -3.870369) (xy 5.508939 -3.809061) (xy 5.50997 -3.761882) (xy 5.511621 -3.726722) (xy 5.513987 -3.701468) (xy 5.517165 -3.684009) (xy 5.521252 -3.672233) (xy 5.526342 -3.664027) (xy 5.531974 -3.657837) (xy 5.563836 -3.638036) (xy 5.597065 -3.640725) (xy 5.628443 -3.662968) (xy 5.641141 -3.677318) (xy 5.649234 -3.69317) (xy 5.65375 -3.715746) (xy 5.655714 -3.75027) (xy 5.656152 -3.801968) (xy 5.656152 -3.917481) (xy 6.152863 -3.917481) (xy 6.152863 -3.798948) (xy 6.15337 -3.74434) (xy 6.155406 -3.707467) (xy 6.159743 -3.683499) (xy 6.167155 -3.667607) (xy 6.175441 -3.657837) (xy 6.207302 -3.638036) (xy 6.240531 -3.640725) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "27d26b81-f934-40ed-930f-5bc3f6a1b73f") ) (fp_poly (pts (xy 1.030017 -3.635467) (xy 1.158996 -3.639828) (xy 1.268699 -3.653053) (xy 1.360934 -3.675933) (xy 1.43751 -3.709262) (xy 1.500235 -3.75383) (xy 1.55092 -3.810428) (xy 1.591371 -3.87985) (xy 1.592167 -3.881543) (xy 1.616309 -3.943675) (xy 1.624911 -3.998701) (xy 1.617939 -4.054079) (xy 1.595362 -4.117265) (xy 1.59108 -4.126881) (xy 1.56188 -4.183158) (xy 1.529064 -4.226643) (xy 1.48671 -4.263609) (xy 1.428898 -4.300327) (xy 1.425539 -4.302244) (xy 1.375212 -4.326419) (xy 1.318329 -4.344474) (xy 1.251235 -4.357031) (xy 1.170273 -4.364714) (xy 1.07179 -4.368145) (xy 1.036994 -4.368443) (xy 0.871302 -4.369037) (xy 0.847905 -4.339292) (xy 0.840965 -4.329511) (xy 0.83555 -4.318089) (xy 0.831473 -4.302287) (xy 0.828545 -4.279367) (xy 0.826575 -4.246588) (xy 0.825933 -4.222281) (xy 0.982552 -4.222281) (xy 1.076434 -4.222281) (xy 1.131372 -4.220675) (xy 1.187768 -4.216447) (xy 1.234053 -4.210484) (xy 1.236847 -4.209982) (xy 1.319056 -4.187928) (xy 1.382822 -4.154792) (xy 1.43016 -4.109039) (xy 1.46309 -4.049131) (xy 1.468816 -4.033253) (xy 1.474429 -4.008525) (xy 1.471999 -3.984094) (xy 1.460175 -3.951592) (xy 1.453048 -3.935626) (xy 1.429708 -3.893198) (xy 1.401588 -3.863432) (xy 1.370648 -3.842703) (xy 1.308674 -3.815729) (xy 1.229359 -3.79619) (xy 1.136961 -3.784938) (xy 1.070041 -3.782462) (xy 0.982552 -3.782014) (xy 0.982552 -4.222281) (xy 0.825933 -4.222281) (xy 0.825376 -4.201213) (xy 0.824758 -4.140503) (xy 0.824533 -4.061718) (xy 0.824508 -4.000112) (xy 0.824508 -3.690677) (xy 0.852217 -3.662968) (xy 0.864514 -3.651736) (xy 0.877811 -3.644045) (xy 0.89638 -3.639232) (xy 0.924494 -3.636638) (xy 0.966425 -3.635602) (xy 1.026445 -3.635462) (xy 1.030017 -3.635467) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "2865552b-5c86-47d2-9404-0273b9bde004") ) (fp_poly (pts (xy -6.109663 -3.635258) (xy -6.070181 -3.635659) (xy -5.954492 -3.638451) (xy -5.857603 -3.646742) (xy -5.776211 -3.661424) (xy -5.707015 -3.683385) (xy -5.646712 -3.713514) (xy -5.592 -3.752702) (xy -5.572459 -3.769724) (xy -5.540042 -3.809555) (xy -5.510812 -3.863605) (xy -5.488283 -3.923515) (xy -5.475971 -3.980931) (xy -5.474692 -4.002148) (xy -5.482709 -4.060961) (xy -5.504191 -4.125205) (xy -5.535291 -4.186013) (xy -5.572158 -4.234522) (xy -5.578146 -4.240374) (xy -5.628871 -4.281513) (xy -5.684417 -4.313627) (xy -5.747988 -4.337557) (xy -5.822786 -4.354145) (xy -5.912014 -4.364233) (xy -6.018874 -4.368661) (xy -6.06782 -4.369037) (xy -6.130054 -4.368737) (xy -6.17382 -4.367484) (xy -6.203223 -4.364746) (xy -6.222371 -4.359993) (xy -6.235369 -4.352693) (xy -6.242337 -4.346459) (xy -6.248918 -4.338886) (xy -6.25408 -4.329116) (xy -6.257995 -4.314532) (xy -6.260835 -4.292518) (xy -6.262772 -4.260456) (xy -6.263976 -4.215728) (xy -6.26462 -4.155718) (xy -6.264875 -4.077809) (xy -6.264914 -4.002148) (xy -6.265162 -3.901233) (xy -6.265109 -3.820619) (xy -6.264149 -3.782014) (xy -6.118159 -3.782014) (xy -6.118159 -4.222281) (xy -6.025026 -4.222196) (xy -5.968985 -4.220588) (xy -5.910291 -4.216448) (xy -5.86132 -4.210656) (xy -5.85983 -4.210418) (xy -5.780684 -4.191282) (xy -5.719294 -4.161479) (xy -5.672597 -4.11907) (xy -5.642927 -4.073153) (xy -5.624645 -4.022218) (xy -5.626063 -3.974392) (xy -5.64728 -3.923125) (xy -5.688781 -3.870091) (xy -5.74629 -3.830792) (xy -5.821042 -3.804523) (xy -5.871 -3.795227) (xy -5.927708 -3.788699) (xy -5.987811 -3.783974) (xy -6.038931 -3.782009) (xy -6.041959 -3.782) (xy -6.118159 -3.782014) (xy -6.264149 -3.782014) (xy -6.263552 -3.758043) (xy -6.25929 -3.711247) (xy -6.251122 -3.67797) (xy -6.237848 -3.655951) (xy -6.218266 -3.642931) (xy -6.191175 -3.636649) (xy -6.155374 -3.634845) (xy -6.109663 -3.635258) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "ea107726-9c7d-423d-8902-c65a18b117b5") ) (fp_poly (pts (xy -1.288406 -3.63964) (xy -1.26484 -3.653465) (xy -1.234027 -3.676073) (xy -1.19437 -3.70853) (xy -1.144272 -3.7519) (xy -1.082135 -3.80725) (xy -1.006364 -3.875643) (xy -0.919626 -3.954276) (xy -0.739003 -4.11807) (xy -0.733359 -3.898221) (xy -0.731321 -3.822543) (xy -0.729355 -3.766186) (xy -0.727026 -3.725898) (xy -0.723898 -3.698427) (xy -0.719537 -3.680521) (xy -0.713508 -3.668929) (xy -0.705376 -3.6604) (xy -0.701064 -3.656815) (xy -0.666533 -3.637862) (xy -0.633675 -3.640633) (xy -0.60761 -3.656825) (xy -0.580959 -3.678391) (xy -0.577644 -3.993343) (xy -0.576727 -4.085971) (xy -0.57626 -4.158736) (xy -0.576405 -4.214353) (xy -0.577324 -4.255534) (xy -0.579179 -4.284995) (xy -0.582131 -4.305447) (xy -0.586342 -4.319605) (xy -0.591974 -4.330183) (xy -0.598219 -4.338666) (xy -0.611731 -4.354399) (xy -0.625175 -4.364828) (xy -0.640416 -4.368831) (xy -0.659318 -4.365286) (xy -0.683747 -4.353071) (xy -0.715565 -4.331063) (xy -0.75664 -4.298141) (xy -0.808834 -4.253183) (xy -0.874014 -4.195067) (xy -0.947848 -4.128291) (xy -1.213137 -3.88765) (xy -1.218781 -4.106781) (xy -1.220823 -4.18232) (xy -1.222794 -4.238546) (xy -1.225131 -4.278716) (xy -1.228273 -4.306088) (xy -1.232656 -4.32392) (xy -1.238716 -4.335471) (xy -1.246892 -4.343999) (xy -1.251076 -4.347474) (xy -1.288057 -4.366564) (xy -1.323 -4.363685) (xy -1.353428 -4.339292) (xy -1.360389 -4.329478) (xy -1.365815 -4.318018) (xy -1.369895 -4.30216) (xy -1.372821 -4.279155) (xy -1.374784 -4.246254) (xy -1.375975 -4.200708) (xy -1.376584 -4.139765) (xy -1.376803 -4.060678) (xy -1.376826 -4.002148) (xy -1.376752 -3.910599) (xy -1.376405 -3.838879) (xy -1.375593 -3.784237) (xy -1.374125 -3.743924) (xy -1.371811 -3.71519) (xy -1.368459 -3.695285) (xy -1.36388 -3.68146) (xy -1.357881 -3.670964) (xy -1.353428 -3.665003) (xy -1.342142 -3.650883) (xy -1.331593 -3.640221) (xy -1.320185 -3.634084) (xy -1.306322 -3.633535) (xy -1.288406 -3.63964) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "fdec0d51-96c7-4fb8-9fdc-8a498db84ef5") ) (fp_poly (pts (xy -1.938373 -3.640791) (xy -1.869857 -3.652287) (xy -1.817235 -3.670159) (xy -1.783 -3.693691) (xy -1.773671 -3.707116) (xy -1.764185 -3.73834) (xy -1.770569 -3.766587) (xy -1.790722 -3.793374) (xy -1.822037 -3.805905) (xy -1.867475 -3.804888) (xy -1.902618 -3.798098) (xy -1.980711 -3.785163) (xy -2.060518 -3.783934) (xy -2.149847 -3.794433) (xy -2.174521 -3.798882) (xy -2.257583 -3.8223) (xy -2.322565 -3.857137) (xy -2.368753 -3.902796) (xy -2.395437 -3.958686) (xy -2.400955 -3.98758) (xy -2.397343 -4.046204) (xy -2.374021 -4.098071) (xy -2.333116 -4.14217) (xy -2.276751 -4.177491) (xy -2.207052 -4.203021) (xy -2.126144 -4.217751) (xy -2.036152 -4.22067) (xy -1.939202 -4.210767) (xy -1.933728 -4.209833) (xy -1.895167 -4.202651) (xy -1.873786 -4.195713) (xy -1.864519 -4.185419) (xy -1.862298 -4.168168) (xy -1.862248 -4.159033) (xy -1.862248 -4.120681) (xy -1.930723 -4.120681) (xy -1.991192 -4.116539) (xy -2.032457 -4.103339) (xy -2.056467 -4.079922) (xy -2.065169 -4.045128) (xy -2.065275 -4.040586) (xy -2.060184 -4.010846) (xy -2.042725 -3.989611) (xy -2.010231 -3.975558) (xy -1.960035 -3.967365) (xy -1.911415 -3.964353) (xy -1.840748 -3.962625) (xy -1.78949 -3.965262) (xy -1.754531 -3.974992) (xy -1.732762 -3.994545) (xy -1.721072 -4.026648) (xy -1.716352 -4.07403) (xy -1.715492 -4.136263) (xy -1.716901 -4.205727) (xy -1.72114 -4.252978) (xy -1.728228 -4.278204) (xy -1.729603 -4.28018) (xy -1.76852 -4.3117) (xy -1.825578 -4.336662) (xy -1.897161 -4.354532) (xy -1.97965 -4.364778) (xy -2.069431 -4.366865) (xy -2.162884 -4.36026) (xy -2.217848 -4.352148) (xy -2.304058 -4.327746) (xy -2.384184 -4.287854) (xy -2.451269 -4.236079) (xy -2.461465 -4.225731) (xy -2.494594 -4.182227) (xy -2.524486 -4.12831) (xy -2.547649 -4.071784) (xy -2.56059 -4.020451) (xy -2.56215 -4.000736) (xy -2.55551 -3.959611) (xy -2.53786 -3.908444) (xy -2.512589 -3.854586) (xy -2.483081 -3.805387) (xy -2.457011 -3.772526) (xy -2.396057 -3.723644) (xy -2.317261 -3.684737) (xy -2.223449 -3.656686) (xy -2.117442 -3.640371) (xy -2.020292 -3.636384) (xy -1.938373 -3.640791) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "0e812b66-a8fc-4099-ac10-dfdaaeb97335") ) (fp_poly (pts (xy 0.242051 -3.635452) (xy 0.318409 -3.636366) (xy 0.376925 -3.638503) (xy 0.419963 -3.642367) (xy 0.449891 -3.648459) (xy 0.469076 -3.657282) (xy 0.479884 -3.669338) (xy 0.484681 -3.685131) (xy 0.485835 -3.705162) (xy 0.485841 -3.707527) (xy 0.484839 -3.730184) (xy 0.480104 -3.747695) (xy 0.469041 -3.760766) (xy 0.449056 -3.770105) (xy 0.417554 -3.776419) (xy 0.37194 -3.780414) (xy 0.309621 -3.782798) (xy 0.228001 -3.784278) (xy 0.202985 -3.784606) (xy -0.039092 -3.787659) (xy -0.042478 -3.85257) (xy -0.045863 -3.917481) (xy 0.122284 -3.917481) (xy 0.187974 -3.917723) (xy 0.23488 -3.918748) (xy 0.266791 -3.921003) (xy 0.287499 -3.924934) (xy 0.300792 -3.93099) (xy 0.310463 -3.939616) (xy 0.310525 -3.939685) (xy 0.328064 -3.973304) (xy 0.32743 -4.00964) (xy 0.309022 -4.040615) (xy 0.305379 -4.043799) (xy 0.292449 -4.052004) (xy 0.274732 -4.057713) (xy 0.248278 -4.061354) (xy 0.20914 -4.063359) (xy 0.15337 -4.064156) (xy 0.117702 -4.064237) (xy -0.044737 -4.064237) (xy -0.044737 -4.222281) (xy 0.201869 -4.222281) (xy 0.283288 -4.222423) (xy 0.345118 -4.223006) (xy 0.390345 -4.22426) (xy 0.421956 -4.226419) (xy 0.442939 -4.229715) (xy 0.456281 -4.234381) (xy 0.464969 -4.240649) (xy 0.467158 -4.242925) (xy 0.483322 -4.274472) (xy 0.484505 -4.31036) (xy 0.471244 -4.341477) (xy 0.460751 -4.351463) (xy 0.449837 -4.356961) (xy 0.432925 -4.361214) (xy 0.407341 -4.364372) (xy 0.370409 -4.366584) (xy 0.319454 -4.367998) (xy 0.251802 -4.368764) (xy 0.164777 -4.36903) (xy 0.145102 -4.369037) (xy 0.056619 -4.368979) (xy -0.012065 -4.368659) (xy -0.063728 -4.367859) (xy -0.101147 -4.366359) (xy -0.127102 -4.363941) (xy -0.14437 -4.360386) (xy -0.15573 -4.355474) (xy -0.16396 -4.348987) (xy -0.168475 -4.34433) (xy -0.175271 -4.336081) (xy -0.18058 -4.325861) (xy -0.184586 -4.310992) (xy -0.187471 -4.288794) (xy -0.189418 -4.256585) (xy -0.190611 -4.211688) (xy -0.191231 -4.15142) (xy -0.191463 -4.073103) (xy -0.191492 -4.007186) (xy -0.191421 -3.91482) (xy -0.191084 -3.842309) (xy -0.190294 -3.786929) (xy -0.188866 -3.745957) (xy -0.186613 -3.71667) (xy -0.183349 -3.696345) (xy -0.178888 -3.682258) (xy -0.173044 -3.671687) (xy -0.168095 -3.665003) (xy -0.144698 -3.635259) (xy 0.145482 -3.635259) (xy 0.242051 -3.635452) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "1287f7b6-4219-464a-b9ed-fa3f14547b64") ) (fp_poly (pts (xy -4.701086 -3.635338) (xy -4.631678 -3.63571) (xy -4.579289 -3.636577) (xy -4.541139 -3.638138) (xy -4.514451 -3.640595) (xy -4.496445 -3.644149) (xy -4.484341 -3.649002) (xy -4.475361 -3.655353) (xy -4.47211 -3.658276) (xy -4.452335 -3.689334) (xy -4.448774 -3.72502) (xy -4.461783 -3.756702) (xy -4.467798 -3.763105) (xy -4.477527 -3.769313) (xy -4.493193 -3.774102) (xy -4.5177 -3.777706) (xy -4.553953 -3.780356) (xy -4.604857 -3.782287) (xy -4.673318 -3.783731) (xy -4.735909 -3.78461) (xy -4.983626 -3.787659) (xy -4.987011 -3.85257) (xy -4.990397 -3.917481) (xy -4.82225 -3.917481) (xy -4.749251 -3.918111) (xy -4.695809 -3.920745) (xy -4.65892 -3.926501) (xy -4.63558 -3.936496) (xy -4.622786 -3.951848) (xy -4.617534 -3.973674) (xy -4.616737 -3.99393) (xy -4.619215 -4.018784) (xy -4.628569 -4.037098) (xy -4.647675 -4.049829) (xy -4.67941 -4.057933) (xy -4.726651 -4.062368) (xy -4.792275 -4.064091) (xy -4.828093 -4.064237) (xy -4.98927 -4.064237) (xy -4.98927 -4.222281) (xy -4.740914 -4.222281) (xy -4.659505 -4.222394) (xy -4.597634 -4.222904) (xy -4.55226 -4.224062) (xy -4.520346 -4.226122) (xy -4.498851 -4.229338) (xy -4.484735 -4.233964) (xy -4.47496 -4.240251) (xy -4.469981 -4.244859) (xy -4.452902 -4.271752) (xy -4.447403 -4.295659) (xy -4.455255 -4.324859) (xy -4.469981 -4.346459) (xy -4.477838 -4.353258) (xy -4.48798 -4.358538) (xy -4.503136 -4.36249) (xy -4.526033 -4.365305) (xy -4.559401 -4.367174) (xy -4.605967 -4.36829) (xy -4.668459 -4.368843) (xy -4.749606 -4.369025) (xy -4.791714 -4.369037) (xy -4.88189 -4.368957) (xy -4.952216 -4.36859) (xy -5.005421 -4.367744) (xy -5.044232 -4.366228) (xy -5.071379 -4.363851) (xy -5.08959 -4.360421) (xy -5.101592 -4.355746) (xy -5.110114 -4.349636) (xy -5.113448 -4.346459) (xy -5.120047 -4.338862) (xy -5.125219 -4.329062) (xy -5.129138 -4.314431) (xy -5.131976 -4.292344) (xy -5.133907 -4.260174) (xy -5.135104 -4.215295) (xy -5.13574 -4.155081) (xy -5.135989 -4.076905) (xy -5.136026 -4.004115) (xy -5.135992 -3.910899) (xy -5.135757 -3.837623) (xy -5.135122 -3.78165) (xy -5.133886 -3.740343) (xy -5.131848 -3.711064) (xy -5.128809 -3.691176) (xy -5.124569 -3.678042) (xy -5.118927 -3.669024) (xy -5.111683 -3.661485) (xy -5.109898 -3.659804) (xy -5.101237 -3.652364) (xy -5.091174 -3.646601) (xy -5.076917 -3.642304) (xy -5.055675 -3.639256) (xy -5.024656 -3.637243) (xy -4.981069 -3.636052) (xy -4.922123 -3.635467) (xy -4.845026 -3.635275) (xy -4.790293 -3.635259) (xy -4.701086 -3.635338) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "3df7890c-659a-48cc-9bb2-42e8dab9bc7a") ) (fp_poly (pts (xy 3.756373 -3.637226) (xy 3.775963 -3.644227) (xy 3.776718 -3.644569) (xy 3.803321 -3.66487) (xy 3.817978 -3.685753) (xy 3.820846 -3.695544) (xy 3.820704 -3.708553) (xy 3.816669 -3.727087) (xy 3.807854 -3.753449) (xy 3.793377 -3.789944) (xy 3.772353 -3.838879) (xy 3.743896 -3.902557) (xy 3.707123 -3.983285) (xy 3.686883 -4.027408) (xy 3.650333 -4.106177) (xy 3.616023 -4.178615) (xy 3.58526 -4.242072) (xy 3.559356 -4.2939) (xy 3.539618 -4.331451) (xy 3.527358 -4.352076) (xy 3.524932 -4.354925) (xy 3.493891 -4.367494) (xy 3.458829 -4.365811) (xy 3.430708 -4.350524) (xy 3.429562 -4.349281) (xy 3.418376 -4.332346) (xy 3.399612 -4.299362) (xy 3.375583 -4.254572) (xy 3.348605 -4.202224) (xy 3.338909 -4.182934) (xy 3.265722 -4.036342) (xy 3.185948 -4.195585) (xy 3.157475 -4.250607) (xy 3.131058 -4.298324) (xy 3.108856 -4.335085) (xy 3.093027 -4.357236) (xy 3.087662 -4.361933) (xy 3.045965 -4.368294) (xy 3.011557 -4.354925) (xy 3.001436 -4.340638) (xy 2.983922 -4.308884) (xy 2.960443 -4.262789) (xy 2.932428 -4.205477) (xy 2.901307 -4.140072) (xy 2.868507 -4.069699) (xy 2.835458 -3.997483) (xy 2.803589 -3.926547) (xy 2.774327 -3.860017) (xy 2.749103 -3.801018) (xy 2.729344 -3.752673) (xy 2.71648 -3.718107) (xy 2.711939 -3.700445) (xy 2.711985 -3.699805) (xy 2.723034 -3.67758) (xy 2.745118 -3.654945) (xy 2.746418 -3.65396) (xy 2.773561 -3.638617) (xy 2.798666 -3.638766) (xy 2.808076 -3.641658) (xy 2.819542 -3.64791) (xy 2.831718 -3.660206) (xy 2.846065 -3.6811) (xy 2.864044 -3.713141) (xy 2.887115 -3.75888) (xy 2.916738 -3.820869) (xy 2.943453 -3.87809) (xy 2.974188 -3.944418) (xy 3.001729 -4.004066) (xy 3.024646 -4.053917) (xy 3.041506 -4.090856) (xy 3.050881 -4.111765) (xy 3.052248 -4.115037) (xy 3.058397 -4.109689) (xy 3.07253 -4.087301) (xy 3.092765 -4.051138) (xy 3.117223 -4.004469) (xy 3.126956 -3.985214) (xy 3.159925 -3.920196) (xy 3.185351 -3.872846) (xy 3.20532 -3.840411) (xy 3.221918 -3.820138) (xy 3.237232 -3.809274) (xy 3.253348 -3.805067) (xy 3.263851 -3.804592) (xy 3.282378 -3.806234) (xy 3.298612 -3.813023) (xy 3.314743 -3.827758) (xy 3.332959 -3.853236) (xy 3.355447 -3.892253) (xy 3.384397 -3.947606) (xy 3.40037 -3.979095) (xy 3.426278 -4.029279) (xy 3.448875 -4.070896) (xy 3.466166 -4.100434) (xy 3.476158 -4.114381) (xy 3.477517 -4.114962) (xy 3.483969 -4.103985) (xy 3.498416 -4.075482) (xy 3.519411 -4.032436) (xy 3.545505 -3.97783) (xy 3.575254 -3.914646) (xy 3.589888 -3.883263) (xy 3.627958 -3.80227) (xy 3.658613 -3.739948) (xy 3.683445 -3.694263) (xy 3.704045 -3.663181) (xy 3.722006 -3.64467) (xy 3.738918 -3.636696) (xy 3.756373 -3.637226) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "40ca69ec-9c9d-4f9e-aedb-58a80458b0a0") ) (fp_poly (pts (xy -3.679995 -3.636543) (xy -3.60518 -3.641773) (xy -3.535598 -3.649942) (xy -3.475294 -3.660742) (xy -3.428312 -3.673865) (xy -3.398698 -3.689005) (xy -3.394152 -3.693461) (xy -3.378346 -3.728042) (xy -3.383139 -3.763543) (xy -3.407656 -3.793917) (xy -3.408826 -3.794788) (xy -3.423246 -3.804146) (xy -3.4383 -3.809068) (xy -3.459297 -3.809665) (xy -3.491549 -3.806053) (xy -3.540365 -3.798346) (xy -3.544292 -3.797697) (xy -3.617031 -3.788761) (xy -3.695509 -3.784353) (xy -3.774219 -3.784311) (xy -3.847653 -3.788471) (xy -3.910303 -3.796671) (xy -3.956662 -3.808749) (xy -3.959708 -3.809963) (xy -3.99334 -3.828807) (xy -4.005156 -3.847877) (xy -3.995906 -3.866631) (xy -3.966339 -3.884529) (xy -3.917203 -3.901029) (xy -3.849249 -3.915588) (xy -3.803937 -3.922598) (xy -3.709748 -3.936081) (xy -3.634836 -3.948406) (xy -3.576009 -3.960641) (xy -3.530077 -3.973853) (xy -3.493847 -3.989109) (xy -3.46413 -4.007477) (xy -3.437734 -4.030023) (xy -3.416522 -4.052163) (xy -3.391357 -4.083011) (xy -3.378973 -4.109537) (xy -3.3751 -4.142218) (xy -3.374959 -4.154187) (xy -3.377868 -4.193904) (xy -3.389494 -4.223451) (xy -3.409615 -4.249678) (xy -3.450508 -4.289768) (xy -3.496109 -4.320341) (xy -3.549805 -4.342395) (xy -3.614984 -4.356927) (xy -3.695036 -4.364933) (xy -3.793349 -4.36741) (xy -3.809581 -4.367369) (xy -3.875141 -4.36601) (xy -3.940158 -4.362922) (xy -3.997544 -4.358548) (xy -4.040214 -4.353332) (xy -4.043664 -4.352733) (xy -4.086088 -4.342683) (xy -4.122072 -4.329988) (xy -4.142442 -4.318382) (xy -4.161399 -4.287764) (xy -4.162719 -4.25211) (xy -4.146377 -4.220336) (xy -4.142721 -4.216743) (xy -4.127607 -4.206068) (xy -4.108707 -4.201468) (xy -4.079454 -4.202251) (xy -4.043943 -4.206319) (xy -4.004262 -4.209954) (xy -3.948637 -4.21302) (xy -3.883698 -4.215245) (xy -3.816077 -4.216356) (xy -3.798292 -4.216429) (xy -3.73042 -4.216156) (xy -3.680746 -4.214838) (xy -3.644902 -4.212019) (xy -3.618516 -4.207242) (xy -3.597218 -4.200049) (xy -3.584418 -4.194059) (xy -3.556292 -4.177425) (xy -3.53836 -4.16236) (xy -3.535739 -4.158089) (xy -3.541268 -4.140455) (xy -3.567552 -4.123384) (xy -3.61277 -4.10765) (xy -3.6751 -4.09403) (xy -3.693463 -4.090996) (xy -3.789382 -4.07593) (xy -3.865933 -4.063338) (xy -3.926072 -4.052303) (xy -3.972752 -4.041912) (xy -4.008929 -4.031248) (xy -4.037557 -4.019397) (xy -4.06159 -4.005443) (xy -4.083984 -3.988473) (xy -4.107694 -3.96757) (xy -4.115672 -3.960241) (xy -4.143645 -3.932891) (xy -4.158452 -3.911221) (xy -4.164244 -3.886424) (xy -4.165181 -3.855175) (xy -4.154867 -3.793897) (xy -4.124044 -3.741832) (xy -4.072887 -3.69915) (xy -4.001575 -3.666017) (xy -3.950692 -3.651156) (xy -3.895392 -3.641558) (xy -3.829145 -3.636128) (xy -3.755998 -3.634559) (xy -3.679995 -3.636543) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "8c904fc5-14a9-42f8-9e73-e45ea2b97b81") ) (fp_poly (pts (xy 0.439962 1.839501) (xy 0.588014 1.823293) (xy 0.731452 1.794282) (xy 0.87611 1.750955) (xy 1.027824 1.691799) (xy 1.192428 1.6153) (xy 1.222071 1.600483) (xy 1.290098 1.566969) (xy 1.354256 1.536792) (xy 1.408215 1.512834) (xy 1.44564 1.497976) (xy 1.451389 1.496105) (xy 1.506486 1.479598) (xy 1.259851 1.120799) (xy 1.199552 1.033107) (xy 1.144422 0.952988) (xy 1.096336 0.883164) (xy 1.057168 0.826353) (xy 1.028794 0.785277) (xy 1.013087 0.762654) (xy 1.010536 0.759072) (xy 1.000171 0.766562) (xy 0.97466 0.789082) (xy 0.938563 0.822539) (xy 0.918642 0.84145) (xy 0.805773 0.931222) (xy 0.679014 0.999439) (xy 0.569783 1.036805) (xy 0.504214 1.04854) (xy 0.422116 1.055692) (xy 0.333144 1.058126) (xy 0.246956 1.055712) (xy 0.173205 1.048317) (xy 0.143776 1.042653) (xy 0.011133 0.997018) (xy -0.108394 0.927337) (xy -0.214717 0.83374) (xy -0.307747 0.716351) (xy -0.387395 0.5753) (xy -0.453574 0.410714) (xy -0.506194 0.22272) (xy -0.537467 0.061783) (xy -0.545626 -0.009263) (xy -0.551185 -0.101046) (xy -0.554198 -0.206968) (xy -0.554719 -0.320434) (xy -0.5528 -0.434849) (xy -0.548497 -0.543617) (xy -0.541863 -0.640143) (xy -0.532951 -0.717831) (xy -0.531021 -0.729817) (xy -0.488501 -0.922892) (xy -0.430567 -1.093773) (xy -0.356867 -1.243224) (xy -0.267049 -1.372011) (xy -0.203293 -1.441639) (xy -0.088714 -1.536173) (xy 0.036942 -1.606246) (xy 0.171557 -1.651477) (xy 0.313011 -1.671484) (xy 0.459183 -1.665885) (xy 0.607955 -1.6343) (xy 0.695911 -1.603394) (xy 0.817629 -1.541506) (xy 0.94308 -1.452729) (xy 1.013353 -1.392694) (xy 1.052811 -1.357947) (xy 1.083812 -1.332454) (xy 1.101458 -1.32017) (xy 1.103648 -1.319795) (xy 1.111524 -1.332347) (xy 1.131932 -1.365516) (xy 1.163132 -1.416458) (xy 1.203386 -1.482331) (xy 1.250957 -1.560289) (xy 1.304104 -1.64749) (xy 1.333687 -1.696067) (xy 1.559648 -2.067215) (xy 1.277527 -2.206639) (xy 1.175522 -2.256719) (xy 1.092889 -2.29621) (xy 1.024578 -2.327073) (xy 0.965537 -2.351268) (xy 0.910714 -2.370758) (xy 0.85506 -2.387503) (xy 0.793523 -2.403465) (xy 0.73454 -2.417482) (xy 0.682115 -2.428329) (xy 0.627288 -2.436526) (xy 0.564572 -2.442528) (xy 0.488477 -2.44679) (xy 0.393516 -2.449767) (xy 0.329513 -2.451052) (xy 0.238192 -2.45193) (xy 0.150627 -2.451487) (xy 0.072612 -2.449852) (xy 0.009942 -2.447149) (xy -0.031587 -2.443505) (xy -0.034048 -2.443142) (xy -0.249697 -2.396487) (xy -0.452207 -2.325729) (xy -0.641505 -2.230914) (xy -0.817521 -2.112089) (xy -0.980184 -1.9693) (xy -1.129422 -1.802594) (xy -1.237504 -1.654433) (xy -1.352566 -1.460502) (xy -1.445577 -1.255699) (xy -1.516987 -1.038383) (xy -1.567244 -0.806912) (xy -1.596799 -0.559643) (xy -1.606111 -0.308559) (xy -1.598452 -0.06567) (xy -1.574387 0.15843) (xy -1.533148 0.367523) (xy -1.473973 0.565387) (xy -1.396096 0.755804) (xy -1.386797 0.775532) (xy -1.284352 0.959941) (xy -1.158528 1.135424) (xy -1.012888 1.29835) (xy -0.850999 1.445086) (xy -0.676424 1.571999) (xy -0.513756 1.665095) (xy -0.349427 1.738009) (xy -0.184749 1.790826) (xy -0.013348 1.824985) (xy 0.171153 1.841922) (xy 0.281459 1.84442) (xy 0.439962 1.839501) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "70b6c8e6-729e-436a-8649-23b724f63e83") ) (fp_poly (pts (xy 6.84227 2.043175) (xy 6.959041 2.042696) (xy 6.998729 2.042455) (xy 7.544486 2.038865) (xy 7.551351 -0.054919) (xy 7.552258 -0.338842) (xy 7.553062 -0.59664) (xy 7.553815 -0.829646) (xy 7.554569 -1.039194) (xy 7.555375 -1.226618) (xy 7.556285 -1.39325) (xy 7.557351 -1.540425) (xy 7.558624 -1.669477) (xy 7.560156 -1.781739) (xy 7.561998 -1.878544) (xy 7.564203 -1.961226) (xy 7.566822 -2.031119) (xy 7.569906 -2.089557) (xy 7.573508 -2.137872) (xy 7.577678 -2.1774) (xy 7.582469 -2.209473) (xy 7.587931 -2.235424) (xy 7.594118 -2.256589) (xy 7.60108 -2.274299) (xy 7.608869 -2.289889) (xy 7.617537 -2.304693) (xy 7.627135 -2.320044) (xy 7.637715 -2.337276) (xy 7.639884 -2.340946) (xy 7.676268 -2.403031) (xy 7.150431 -2.399434) (xy 6.624594 -2.395838) (xy 6.617729 -2.280331) (xy 6.613992 -2.224899) (xy 6.610097 -2.192851) (xy 6.604811 -2.180135) (xy 6.596903 -2.182696) (xy 6.59027 -2.190024) (xy 6.561374 -2.216714) (xy 6.514279 -2.251021) (xy 6.45562 -2.288846) (xy 6.392031 -2.32609) (xy 6.330149 -2.358653) (xy 6.282634 -2.380077) (xy 6.171316 -2.415283) (xy 6.043596 -2.440222) (xy 5.908901 -2.453941) (xy 5.776663 -2.455486) (xy 5.656308 -2.443906) (xy 5.654326 -2.443574) (xy 5.489641 -2.40225) (xy 5.335479 -2.336412) (xy 5.193328 -2.247474) (xy 5.064675 -2.136852) (xy 4.951007 -2.005961) (xy 4.85381 -1.856216) (xy 4.774572 -1.689033) (xy 4.73143 -1.56519) (xy 4.702979 -1.461581) (xy 4.68188 -1.361252) (xy 4.667488 -1.258109) (xy 4.659158 -1.146057) (xy 4.656245 -1.019001) (xy 4.657535 -0.915252) (xy 5.67065 -0.915252) (xy 5.675444 -1.089222) (xy 5.690568 -1.238895) (xy 5.716485 -1.365597) (xy 5.753663 -1.470658) (xy 5.802565 -1.555406) (xy 5.863658 -1.621169) (xy 5.934177 -1.667659) (xy 5.970871 -1.685014) (xy 6.002696 -1.695419) (xy 6.038177 -1.700179) (xy 6.085841 -1.700601) (xy 6.137189 -1.698748) (xy 6.238169 -1.689841) (xy 6.318035 -1.672398) (xy 6.343135 -1.663661) (xy 6.400448 -1.637857) (xy 6.460897 -1.605453) (xy 6.487297 -1.589233) (xy 6.555946 -1.544205) (xy 6.555946 -0.116982) (xy 6.480432 -0.071718) (xy 6.375121 -0.020572) (xy 6.267525 0.009676) (xy 6.161581 0.019205) (xy 6.061224 0.008193) (xy 5.970387 -0.023181) (xy 5.893007 -0.07474) (xy 5.868039 -0.099488) (xy 5.807856 -0.180577) (xy 5.759145 -0.278734) (xy 5.721499 -0.395643) (xy 5.694512 -0.532985) (xy 5.677775 -0.692444) (xy 5.670883 -0.8757) (xy 5.67065 -0.915252) (xy 4.657535 -0.915252) (xy 4.658073 -0.872067) (xy 4.669647 -0.646053) (xy 4.69292 -0.442192) (xy 4.728504 -0.257513) (xy 4.777013 -0.089048) (xy 4.83906 0.066174) (xy 4.861201 0.112192) (xy 4.950385 0.262261) (xy 5.058159 0.395623) (xy 5.18199 0.510123) (xy 5.319342 0.603611) (xy 5.467683 0.673932) (xy 5.556604 0.70294) (xy 5.643933 0.72016) (xy 5.749011 0.730406) (xy 5.863029 0.733682) (xy 5.977177 0.729991) (xy 6.082648 0.71934) (xy 6.167334 0.70263) (xy 6.268128 0.66986) (xy 6.365822 0.627721) (xy 6.451296 0.580481) (xy 6.496789 0.548419) (xy 6.528169 0.524578) (xy 6.550142 0.510061) (xy 6.555141 0.508) (xy 6.55669 0.521282) (xy 6.558135 0.559337) (xy 6.559443 0.619481) (xy 6.560583 0.699027) (xy 6.561521 0.795289) (xy 6.562226 0.905581) (xy 6.562667 1.027219) (xy 6.562811 1.151115) (xy 6.56273 1.309804) (xy 6.562335 1.443592) (xy 6.561395 1.55504) (xy 6.55968 1.646705) (xy 6.556957 1.721147) (xy 6.552997 1.780925) (xy 6.547569 1.828598) (xy 6.540441 1.866726) (xy 6.531384 1.897866) (xy 6.520167 1.924579) (xy 6.506558 1.949423) (xy 6.490328 1.974957) (xy 6.48824 1.978119) (xy 6.467306 2.01119) (xy 6.454667 2.033931) (xy 6.452973 2.038728) (xy 6.466216 2.040241) (xy 6.504002 2.041472) (xy 6.563416 2.042401) (xy 6.641542 2.043008) (xy 6.735465 2.043273) (xy 6.84227 2.043175) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "ac5207ed-4d18-4e59-9979-54661146b1bc") ) (fp_poly (pts (xy 3.167505 0.735771) (xy 3.235531 0.730622) (xy 3.430163 0.704727) (xy 3.602529 0.663425) (xy 3.75347 0.606147) (xy 3.883825 0.532326) (xy 3.994434 0.441392) (xy 4.086135 0.332778) (xy 4.15977 0.205915) (xy 4.213539 0.068648) (xy 4.227187 0.024863) (xy 4.239073 -0.016141) (xy 4.249334 -0.056569) (xy 4.258113 -0.09863) (xy 4.265548 -0.144531) (xy 4.27178 -0.19648) (xy 4.27695 -0.256685) (xy 4.281196 -0.327352) (xy 4.28466 -0.410689) (xy 4.287481 -0.508905) (xy 4.2898 -0.624205) (xy 4.291757 -0.758799) (xy 4.293491 -0.914893) (xy 4.295143 -1.094695) (xy 4.296324 -1.235676) (xy 4.30427 -2.203622) (xy 4.355756 -2.29677) (xy 4.380137 -2.341645) (xy 4.39828 -2.376501) (xy 4.406935 -2.395054) (xy 4.407243 -2.396311) (xy 4.394014 -2.397749) (xy 4.356326 -2.399074) (xy 4.297183 -2.400249) (xy 4.219586 -2.401237) (xy 4.126536 -2.401999) (xy 4.021035 -2.4025) (xy 3.906084 -2.402701) (xy 3.892378 -2.402703) (xy 3.377513 -2.402703) (xy 3.377513 -2.286) (xy 3.376635 -2.23326) (xy 3.374292 -2.192926) (xy 3.370921 -2.1713) (xy 3.369431 -2.169298) (xy 3.355804 -2.177683) (xy 3.327757 -2.199692) (xy 3.291303 -2.230601) (xy 3.290485 -2.231316) (xy 3.223962 -2.280843) (xy 3.139948 -2.330575) (xy 3.047937 -2.375626) (xy 2.957421 -2.41111) (xy 2.917567 -2.423236) (xy 2.838255 -2.438637) (xy 2.740935 -2.448465) (xy 2.634516 -2.45258) (xy 2.527907 -2.450841) (xy 2.430017 -2.443108) (xy 2.361513 -2.431981) (xy 2.19352 -2.382648) (xy 2.042281 -2.312342) (xy 1.908782 -2.221933) (xy 1.794006 -2.112295) (xy 1.698937 -1.984299) (xy 1.62456 -1.838818) (xy 1.592474 -1.750541) (xy 1.572365 -1.664739) (xy 1.559038 -1.561736) (xy 1.552872 -1.451034) (xy 1.553074 -1.434925) (xy 2.481648 -1.434925) (xy 2.489348 -1.517184) (xy 2.514989 -1.585546) (xy 2.562378 -1.64897) (xy 2.580579 -1.667567) (xy 2.645282 -1.717846) (xy 2.720066 -1.750056) (xy 2.809662 -1.765648) (xy 2.904012 -1.766796) (xy 2.993501 -1.759216) (xy 3.062018 -1.744389) (xy 3.091775 -1.733253) (xy 3.145408 -1.702904) (xy 3.202235 -1.660221) (xy 3.254082 -1.612317) (xy 3.292778 -1.566301) (xy 3.303054 -1.549421) (xy 3.311042 -1.525782) (xy 3.316721 -1.488168) (xy 3.320356 -1.432985) (xy 3.322211 -1.35664) (xy 3.322594 -1.283981) (xy 3.322335 -1.19927) (xy 3.321287 -1.138018) (xy 3.319045 -1.096227) (xy 3.315206 -1.069899) (xy 3.309365 -1.055035) (xy 3.301118 -1.047639) (xy 3.298567 -1.046461) (xy 3.2764 -1.042833) (xy 3.23268 -1.039866) (xy 3.173311 -1.037827) (xy 3.104196 -1.036983) (xy 3.089189 -1.036982) (xy 2.996805 -1.038457) (xy 2.925432 -1.042842) (xy 2.868719 -1.050738) (xy 2.821872 -1.06227) (xy 2.705669 -1.106215) (xy 2.614543 -1.160243) (xy 2.547705 -1.225219) (xy 2.504365 -1.302005) (xy 2.483734 -1.391467) (xy 2.481648 -1.434925) (xy 1.553074 -1.434925) (xy 1.554244 -1.342133) (xy 1.563532 -1.244536) (xy 1.570777 -1.205105) (xy 1.617039 -1.058701) (xy 1.687384 -0.923995) (xy 1.780484 -0.80228) (xy 1.895012 -0.694847) (xy 2.02964 -0.602988) (xy 2.18304 -0.527996) (xy 2.313459 -0.482458) (xy 2.400623 -0.458533) (xy 2.483996 -0.439943) (xy 2.568976 -0.426084) (xy 2.660965 -0.416351) (xy 2.765362 -0.410141) (xy 2.887568 -0.406851) (xy 2.998055 -0.405924) (xy 3.325677 -0.405027) (xy 3.319401 -0.306547) (xy 3.301579 -0.199695) (xy 3.263667 -0.107852) (xy 3.20728 -0.03331) (xy 3.134031 0.021636) (xy 3.069535 0.048448) (xy 2.977123 0.065346) (xy 2.867111 0.067773) (xy 2.744656 0.056622) (xy 2.614914 0.03279) (xy 2.483042 -0.00283) (xy 2.354198 -0.049343) (xy 2.260566 -0.091883) (xy 2.215517 -0.113728) (xy 2.181156 -0.128984) (xy 2.163681 -0.134937) (xy 2.162733 -0.134746) (xy 2.156703 -0.121412) (xy 2.141645 -0.086068) (xy 2.118977 -0.032101) (xy 2.090115 0.037104) (xy 2.056477 0.11816) (xy 2.022284 0.200882) (xy 1.885586 0.532197) (xy 1.98282 0.548167) (xy 2.024964 0.55618) (xy 2.088319 0.569639) (xy 2.167457 0.587321) (xy 2.256951 0.608004) (xy 2.351373 0.630468) (xy 2.388973 0.639597) (xy 2.551637 0.677326) (xy 2.69405 0.705612) (xy 2.821527 0.725028) (xy 2.939384 0.736146) (xy 3.052938 0.739536) (xy 3.167505 0.735771) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "803446ef-0bf4-47af-b40f-cb2199f0a7c6") ) (fp_poly (pts (xy -5.955743 2.526311) (xy -5.69122 2.526275) (xy -5.568088 2.52627) (xy -3.597189 2.52627) (xy -3.597189 2.41009) (xy -3.584789 2.268709) (xy -3.547364 2.138316) (xy -3.484577 2.018138) (xy -3.396094 1.907398) (xy -3.366157 1.877489) (xy -3.258466 1.792652) (xy -3.139725 1.730779) (xy -3.01346 1.691841) (xy -2.883197 1.67581) (xy -2.752465 1.682658) (xy -2.624788 1.712357) (xy -2.503695 1.76488) (xy -2.392712 1.840197) (xy -2.342868 1.885637) (xy -2.249983 1.997048) (xy -2.181873 2.119565) (xy -2.139129 2.251785) (xy -2.122347 2.392308) (xy -2.122124 2.406133) (xy -2.121244 2.526266) (xy -2.068443 2.526268) (xy -2.021604 2.519911) (xy -1.978817 2.504444) (xy -1.975989 2.502846) (xy -1.966325 2.497832) (xy -1.957451 2.493927) (xy -1.949335 2.489993) (xy -1.941943 2.484894) (xy -1.935245 2.477492) (xy -1.929208 2.466649) (xy -1.923801 2.451228) (xy -1.91899 2.430091) (xy -1.914745 2.402101) (xy -1.911032 2.366121) (xy -1.907821 2.321013) (xy -1.905078 2.26564) (xy -1.902772 2.198863) (xy -1.900871 2.119547) (xy -1.899342 2.026553) (xy -1.898154 1.918743) (xy -1.897274 1.794981) (xy -1.89667 1.654129) (xy -1.896311 1.49505) (xy -1.896165 1.316605) (xy -1.896198 1.117658) (xy -1.89638 0.897071) (xy -1.896677 0.653707) (xy -1.897059 0.386428) (xy -1.897492 0.094097) (xy -1.897945 -0.224424) (xy -1.897998 -0.26323) (xy -1.898404 -0.583782) (xy -1.898749 -0.878012) (xy -1.899069 -1.147056) (xy -1.8994 -1.392052) (xy -1.899779 -1.614137) (xy -1.900243 -1.814447) (xy -1.900828 -1.994119) (xy -1.90157 -2.15429) (xy -1.902506 -2.296098) (xy -1.903673 -2.420679) (xy -1.905107 -2.52917) (xy -1.906844 -2.622707) (xy -1.908922 -2.702429) (xy -1.911376 -2.769472) (xy -1.914244 -2.824973) (xy -1.917561 -2.870068) (xy -1.921364 -2.905895) (xy -1.92569 -2.933591) (xy -1.930575 -2.954293) (xy -1.936055 -2.969137) (xy -1.942168 -2.97926) (xy -1.94895 -2.9858) (xy -1.956437 -2.989893) (xy -1.964666 -2.992676) (xy -1.973673 -2.995287) (xy -1.983495 -2.998862) (xy -1.985894 -2.99995) (xy -1.993435 -3.002396) (xy -2.006056 -3.004642) (xy -2.024859 -3.006698) (xy -2.050947 -3.008572) (xy -2.085422 -3.010271) (xy -2.129385 -3.011803) (xy -2.183939 -3.013177) (xy -2.250185 -3.0144) (xy -2.329226 -3.015481) (xy -2.422163 -3.016427) (xy -2.530099 -3.017247) (xy -2.654136 -3.017947) (xy -2.795376 -3.018538) (xy -2.954921 -3.019025) (xy -3.133872 -3.019419) (xy -3.333332 -3.019725) (xy -3.554404 -3.019953) (xy -3.798188 -3.02011) (xy -4.065787 -3.020205) (xy -4.358303 -3.020245) (xy -4.676839 -3.020238) (xy -4.780021 -3.020228) (xy -5.105623 -3.020176) (xy -5.404881 -3.020091) (xy -5.678909 -3.019963) (xy -5.928824 -3.019785) (xy -6.15574 -3.019548) (xy -6.360773 -3.019242) (xy -6.545038 -3.01886) (xy -6.70965 -3.018392) (xy -6.855725 -3.01783) (xy -6.984376 -3.017165) (xy -7.096721 -3.016388) (xy -7.193874 -3.015491) (xy -7.27695 -3.014465) (xy -7.347064 -3.013301) (xy -7.405332 -3.011991) (xy -7.452869 -3.010525) (xy -7.49079 -3.008896) (xy -7.52021 -3.007093) (xy -7.542245 -3.00511) (xy -7.55801 -3.002936) (xy -7.56862 -3.000563) (xy -7.574404 -2.998391) (xy -7.584684 -2.994056) (xy -7.594122 -2.990859) (xy -7.602755 -2.987665) (xy -7.610619 -2.983338) (xy -7.617748 -2.976744) (xy -7.624179 -2.966747) (xy -7.629947 -2.952212) (xy -7.635089 -2.932003) (xy -7.63964 -2.904985) (xy -7.643635 -2.870023) (xy -7.647111 -2.825981) (xy -7.650102 -2.771724) (xy -7.652646 -2.706117) (xy -7.654777 -2.628024) (xy -7.656532 -2.53631) (xy -7.657945 -2.42984) (xy -7.658315 -2.388973) (xy -7.291884 -2.388973) (xy -5.996734 -2.388973) (xy -6.021655 -2.351217) (xy -6.046447 -2.312417) (xy -6.06744 -2.275469) (xy -6.084935 -2.237788) (xy -6.09923 -2.196788) (xy -6.110623 -2.149883) (xy -6.119413 -2.094487) (xy -6.125898 -2.028016) (xy -6.130377 -1.947883) (xy -6.13315 -1.851502) (xy -6.134513 -1.736289) (xy -6.134767 -1.599657) (xy -6.134209 -1.43902) (xy -6.133893 -1.379382) (xy -6.130325 -0.740041) (xy -5.725298 -1.291449) (xy -5.610554 -1.447876) (xy -5.511143 -1.584088) (xy -5.42599 -1.70189) (xy -5.354022 -1.803084) (xy -5.294166 -1.889477) (xy -5.245348 -1.962874) (xy -5.206495 -2.025077) (xy -5.176534 -2.077893) (xy -5.154391 -2.123125) (xy -5.138993 -2.162578) (xy -5.129266 -2.198058) (xy -5.124137 -2.231368) (xy -5.122532 -2.264313) (xy -5.123379 -2.298697) (xy -5.123595 -2.303019) (xy -5.128054 -2.389031) (xy -3.708692 -2.388973) (xy -3.814265 -2.282522) (xy -3.842913 -2.253406) (xy -3.87009 -2.225076) (xy -3.896989 -2.195968) (xy -3.924803 -2.16452) (xy -3.954725 -2.129169) (xy -3.987946 -2.088354) (xy -4.025661 -2.040511) (xy -4.06906 -1.984079) (xy -4.119338 -1.917494) (xy -4.177688 -1.839195) (xy -4.2453 -1.747619) (xy -4.323369 -1.641204) (xy -4.413088 -1.518387) (xy -4.515648 -1.377605) (xy -4.632242 -1.217297) (xy -4.727809 -1.085798) (xy -4.847749 -0.920596) (xy -4.95238 -0.776152) (xy -5.042648 -0.651094) (xy -5.119503 -0.544052) (xy -5.183891 -0.453654) (xy -5.236761 -0.378529) (xy -5.27906 -0.317304) (xy -5.311736 -0.26861) (xy -5.335738 -0.231074) (xy -5.352013 -0.203325) (xy -5.361508 -0.183992) (xy -5.365173 -0.171703) (xy -5.364071 -0.165242) (xy -5.350724 -0.148048) (xy -5.321866 -0.111655) (xy -5.27924 -0.058224) (xy -5.224585 0.010081) (xy -5.159644 0.091097) (xy -5.086158 0.18266) (xy -5.005868 0.282608) (xy -4.920515 0.388776) (xy -4.83184 0.499003) (xy -4.741586 0.611124) (xy -4.691944 0.672756) (xy -3.459373 0.672756) (xy -3.408146 0.580081) (xy -3.356919 0.487405) (xy -3.356919 -2.203622) (xy -3.408146 -2.296298) (xy -3.459373 -2.388973) (xy -2.853396 -2.388973) (xy -2.708734 -2.388931) (xy -2.589244 -2.388741) (xy -2.492642 -2.388308) (xy -2.416642 -2.387536) (xy -2.358957 -2.38633) (xy -2.317301 -2.384594) (xy -2.289389 -2.382232) (xy -2.272935 -2.37915) (xy -2.265652 -2.375251) (xy -2.265255 -2.37044) (xy -2.269458 -2.364622) (xy -2.269501 -2.364574) (xy -2.286813 -2.339532) (xy -2.309736 -2.298815) (xy -2.329981 -2.258168) (xy -2.368379 -2.176162) (xy -2.376211 0.672756) (xy -3.459373 0.672756) (xy -4.691944 0.672756) (xy -4.651493 0.722976) (xy -4.563302 0.832396) (xy -4.478754 0.937222) (xy -4.399592 1.035289) (xy -4.327556 1.124434) (xy -4.264387 1.202495) (xy -4.211827 1.267308) (xy -4.171617 1.31671) (xy -4.148 1.345513) (xy -4.05629 1.453222) (xy -3.96806 1.55042) (xy -3.886403 1.633924) (xy -3.81441 1.700552) (xy -3.763319 1.741401) (xy -3.702907 1.784865) (xy -5.092298 1.784865) (xy -5.091908 1.703334) (xy -5.095791 1.643394) (xy -5.11039 1.587823) (xy -5.132988 1.535145) (xy -5.147678 1.505385) (xy -5.163472 1.475897) (xy -5.181814 1.444724) (xy -5.204145 1.409907) (xy -5.231909 1.36949) (xy -5.266549 1.321514) (xy -5.309507 1.264022) (xy -5.362227 1.195057) (xy -5.426151 1.112661) (xy -5.502721 1.014876) (xy -5.593381 0.899745) (xy -5.699574 0.76531) (xy -5.711568 0.750141) (xy -6.130325 0.220588) (xy -6.134378 0.807078) (xy -6.135195 0.982749) (xy -6.135021 1.131468) (xy -6.133849 1.253725) (xy -6.131669 1.350011) (xy -6.128474 1.420817) (xy -6.124256 1.466631) (xy -6.122838 1.475321) (xy -6.100591 1.566865) (xy -6.071443 1.649392) (xy -6.038182 1.715747) (xy -6.0182 1.74389) (xy -5.983722 1.784865) (xy -6.637914 1.784865) (xy -6.793969 1.784731) (xy -6.924467 1.784297) (xy -7.03131 1.783511) (xy -7.116398 1.782324) (xy -7.181635 1.780683) (xy -7.228921 1.778539) (xy -7.260157 1.775841) (xy -7.277246 1.772538) (xy -7.282088 1.768579) (xy -7.281753 1.767702) (xy -7.267885 1.746769) (xy -7.244732 1.713588) (xy -7.232754 1.696807) (xy -7.220369 1.68006) (xy -7.209237 1.665085) (xy -7.199288 1.650406) (xy -7.190451 1.634551) (xy -7.182657 1.616045) (xy -7.175835 1.593415) (xy -7.169916 1.565187) (xy -7.164829 1.529887) (xy -7.160504 1.486042) (xy -7.156871 1.432178) (xy -7.15386 1.36682) (xy -7.151401 1.288496) (xy -7.149423 1.195732) (xy -7.147858 1.087053) (xy -7.146634 0.960987) (xy -7.145681 0.816058) (xy -7.14493 0.650794) (xy -7.144311 0.463721) (xy -7.143752 0.253365) (xy -7.143185 0.018252) (xy -7.142655 -0.197741) (xy -7.142155 -0.438535) (xy -7.141895 -0.668274) (xy -7.141868 -0.885493) (xy -7.142067 -1.088722) (xy -7.142486 -1.276496) (xy -7.143118 -1.447345) (xy -7.143956 -1.599803) (xy -7.144992 -1.732403) (xy -7.14622 -1.843676) (xy -7.147633 -1.932156) (xy -7.149225 -1.996375) (xy -7.150987 -2.034865) (xy -7.151321 -2.038933) (xy -7.163466 -2.132248) (xy -7.182427 -2.20719) (xy -7.211302 -2.272594) (xy -7.25319 -2.337293) (xy -7.258429 -2.344352) (xy -7.291884 -2.388973) (xy -7.658315 -2.388973) (xy -7.659054 -2.307479) (xy -7.659893 -2.16809) (xy -7.660498 -2.010539) (xy -7.660905 -1.833691) (xy -7.66115 -1.63641) (xy -7.661267 -1.41756) (xy -7.661295 -1.176007) (xy -7.661267 -0.910615) (xy -7.66122 -0.620249) (xy -7.66119 -0.303773) (xy -7.661189 -0.240946) (xy -7.661172 0.078863) (xy -7.661112 0.372339) (xy -7.661002 0.64061) (xy -7.660833 0.884802) (xy -7.660597 1.106043) (xy -7.660284 1.30546) (xy -7.659885 1.48418) (xy -7.659393 1.643329) (xy -7.658797 1.784034) (xy -7.65809 1.907424) (xy -7.657263 2.014624) (xy -7.656307 2.106762) (xy -7.655213 2.184965) (xy -7.653973 2.250359) (xy -7.652578 2.304072) (xy -7.651018 2.347231) (xy -7.649286 2.380963) (xy -7.647372 2.406395) (xy -7.645268 2.424653) (xy -7.642966 2.436866) (xy -7.640455 2.444159) (xy -7.640363 2.444341) (xy -7.635192 2.455482) (xy -7.630885 2.465569) (xy -7.626121 2.474654) (xy -7.619578 2.482788) (xy -7.609935 2.490024) (xy -7.595871 2.496414) (xy -7.576063 2.502011) (xy -7.549191 2.506867) (xy -7.513933 2.511034) (xy -7.468968 2.514564) (xy -7.412974 2.517509) (xy -7.344629 2.519923) (xy -7.262614 2.521856) (xy -7.165605 2.523362) (xy -7.052282 2.524492) (xy -6.921323 2.525298) (xy -6.771407 2.525834) (xy -6.601213 2.526151) (xy -6.409418 2.526301) (xy -6.194702 2.526337) (xy -5.955743 2.526311) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "7275c280-4279-4e68-b3fd-a3093fb02451") ) ) (gr_rect (start 104.4281 56.2272) (end 106.1531 57.8022) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a") ) (gr_rect (start 107.2031 58.8772) (end 110.6781 60.4772) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4f929ae2-48f5-4477-ae85-53b87595350b") ) (gr_rect (start 104.3281 56.1272) (end 110.7281 60.5272) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.SilkS") (uuid "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e") ) (gr_rect (start 107.2031 56.2272) (end 110.6781 57.8272) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cbfcf842-ae79-48e8-8439-be79bc4d3d3b") ) (gr_rect (start 104.4281 58.8772) (end 106.1531 60.4772) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cf7a1173-45eb-49f7-92cb-0fcb446fcd83") ) (gr_rect (start 70.8066 66.822) (end 104.8934 113.8628) (stroke (width 0.15) (type default) ) (fill none) (layer "Dwgs.User") (uuid "1e0aebf7-0a49-43de-b675-2e7af0b36a3e") ) (gr_line (start 115 135.5) (end 42.5 135.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "2c7b3573-bac5-47d3-b299-6dfb2ac5593e") ) (gr_line (start 80.4 96.9536) (end 88.7 96.9536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "306e60d7-6bad-4f84-ab78-5e252d0cdaec") ) (gr_line (start 37.5 130.5) (end 37.5 59) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "3a341901-4599-44f7-b5f7-bd505a2243f0") ) (gr_arc (start 80.4 111.3536) (mid 79.834315 111.119285) (end 79.6 110.5536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "42680025-3ddd-4ce9-812b-6c53966adcf8") ) (gr_arc (start 37.5 59) (mid 38.964466 55.464466) (end 42.5 54) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "6ff94a57-ef21-4e17-8509-208328b9cad1") ) (gr_arc (start 88.7 96.9536) (mid 89.265685 97.187915) (end 89.5 97.7536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "84186294-131c-441e-a634-b464a4262ee9") ) (gr_line (start 42.5 54) (end 115 54) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "91128ecb-2649-4d0f-96ca-569df696b34f") ) (gr_arc (start 120 130.5) (mid 118.535534 134.035534) (end 115 135.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "9f4ca102-edda-484d-9e77-9169b2b32a8f") ) (gr_line (start 89.5 97.7536) (end 89.5 110.5536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "b28dd4d8-0b33-4c9e-a730-ec162ed73550") ) (gr_arc (start 42.5 135.5) (mid 38.964466 134.035534) (end 37.5 130.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "d890b947-ae68-4d42-96d5-05f405e8578c") ) (gr_line (start 79.6 110.5536) (end 79.6 97.7536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db6d91d4-3bed-48a0-ad10-421190cd937a") ) (gr_line (start 88.7 111.3536) (end 80.4 111.3536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db736a94-38b1-4c57-9ace-a27bfb574f55") ) (gr_line (start 120 59) (end 120 130.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "e45ac9f9-41a4-4dff-bb00-c5ae46a84260") ) (gr_arc (start 79.6 97.7536) (mid 79.834315 97.187915) (end 80.4 96.9536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "edc3c0d1-6a9a-42cb-b5b2-5a42e4aa0055") ) (gr_arc (start 89.5 110.5536) (mid 89.265685 111.119285) (end 88.7 111.3536) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "ee0b9580-0014-44b0-9235-2368f5c231a1") ) (gr_arc (start 115 54) (mid 118.535534 55.464466) (end 120 59) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "fc9f96fb-a5c2-4557-81ab-8e77de99e21c") ) (gr_text "3.3V" (at 74.7268 73.7108 0) (layer "F.SilkS") (uuid "005e0d8d-b943-464e-af2c-f96930a8ff84") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 84.05 66.0564 -90) (layer "F.SilkS") (uuid "007d30f6-86c1-49e3-a5f9-b749566f6bca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "QWIIC" (at 51.15 128.09 0) (layer "F.SilkS") (uuid "0183b210-3b46-4ef9-9082-8c6e3b2c778c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MOSI" (at 77.2308 123.9728 0) (layer "F.SilkS") (uuid "0e4ef755-d9fd-48c8-9488-bc6c5c2a8ac9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "BL" (at 76.3308 129.0728 0) (layer "F.SilkS") (uuid "1336eb56-8228-44d2-93dd-7580fb59ac5f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "DC" (at 68.6308 121.4228 0) (layer "F.SilkS") (uuid "193bd39b-325a-4c18-b482-f13f84a4ca53") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "5V" (at 69.4436 73.7108 0) (layer "F.SilkS") (uuid "1a0ae3a6-83b0-4211-b4fd-9efadc0316e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "LCD (SPI)" (at 72.5308 134.1228 0) (layer "F.SilkS") (uuid "1d5d486f-d490-46c7-b170-3c9283908ef2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FanPico-0401D v1.1\nby Timo Kokkonen \n\n2024-08-15\n" (at 101 130.8 0) (layer "F.SilkS") (uuid "21b2d000-a302-44cb-bc67-350475ec7fc7") (effects (font (size 1.1 1.1) (thickness 0.15) ) ) ) (gr_text "I2C (OLED)" (at 95.75 70.8564 90) (layer "F.SilkS") (uuid "221f59e5-7968-4694-b589-cb77729039b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCL" (at 89.15 66.0564 -90) (layer "F.SilkS") (uuid "2676dea4-7bcf-4e80-a607-17f77dca3c53") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 76.9808 131.6228 0) (layer "F.SilkS") (uuid "2752f2ed-b451-453d-b473-4e5067f7a7f4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "TX" (at 45.72 124.95 90) (layer "F.SilkS") (uuid "27faad38-2e22-45fb-a99c-5be64b840c33") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 106.6044 120.8624 90) (layer "F.SilkS") (uuid "293c96f8-a9f5-4847-9ff2-69da0a5bc600") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "kokkonen.net/fanpico/" (at 91.04 103.96 90) (layer "F.SilkS") (uuid "31e38805-9300-46a1-ae3d-e0445fabc435") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 40.62 125.4332 90) (layer "F.SilkS") (uuid "3ce321c4-e665-475a-93bf-17b3c0502f24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "DQ" (at 62.0176 133.3 90) (layer "F.SilkS") (uuid "3d0d69c3-8d77-49c7-a495-9e478f323d9d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 83.95 75.3564 -90) (layer "F.SilkS") (uuid "420b1770-969f-4a00-a46e-4c51690adcc6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RX" (at 43.12 124.95 90) (layer "F.SilkS") (uuid "42125ff3-0237-4fef-b843-40aa0ddb4ce6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 117.4606 66.9776 90) (layer "F.SilkS") (uuid "4416ed46-3141-4f6f-ac61-feb10f872ed6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 56 73.9 -90) (layer "F.SilkS") (uuid "4d864871-6255-4aed-9ed6-3bed961863e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 76.9808 126.5228 0) (layer "F.SilkS") (uuid "527dbd45-2e9d-40a3-b552-180a78071de5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 118.9044 120.8624 90) (layer "F.SilkS") (uuid "52f85727-5cd9-4c74-8650-a3c0fa37a688") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCL" (at 89.05 75.3564 -90) (layer "F.SilkS") (uuid "5751fc55-595d-46bf-9868-259462c3d843") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RST" (at 68.1808 129.0728 0) (layer "F.SilkS") (uuid "5cc6ca66-4f00-47f3-aa0f-c7bb5a4eb1c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 60.8584 59.51 180) (layer "F.SilkS") (uuid "5d057e35-b67e-4817-b3c2-a0faa509c19c") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN3" (at 118.9044 97.8624 90) (layer "F.SilkS") (uuid "5e499852-b518-49d2-a1ed-8042c9891343") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 64.6176 133.7056 90) (layer "F.SilkS") (uuid "63007d28-f4f7-414b-96ab-2219d1e3c9a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 86.45 75.3564 -90) (layer "F.SilkS") (uuid "6391ca69-bd03-4296-acae-3e34074f3c4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 109.4606 66.9776 90) (layer "F.SilkS") (uuid "66dd6af7-4245-4df4-9421-4f19ff9b02b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCK" (at 68.1808 123.9728 0) (layer "F.SilkS") (uuid "6c280c69-12c9-4318-884e-366e922855fe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "5V" (at 68.6308 131.6228 0) (layer "F.SilkS") (uuid "76541060-2f2b-4887-a2bc-2422e3edb0e4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 106.6044 109.3624 90) (layer "F.SilkS") (uuid "7d929019-0653-48b0-b8c3-fe7247739f05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 106.6044 86.2624 90) (layer "F.SilkS") (uuid "7fe752dd-4bbf-4450-b28b-0b0a16fded4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 76.8808 121.4228 0) (layer "F.SilkS") (uuid "8338491e-fd34-4b0a-b60a-c02fb7a2d7a1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SDA" (at 91.55 75.3564 -90) (layer "F.SilkS") (uuid "8353de0a-06d2-4ccf-a8b6-3012880c7e68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "12V 2A" (at 44.1198 63.3984 180) (layer "F.SilkS") (uuid "83c0cc15-9f90-41c7-b850-ea2c5bb57ef1") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "1-WIRE" (at 62.15 124.3 0) (layer "F.SilkS") (uuid "8b7e8ea2-5ed1-4636-9af1-ce8a39a59665") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RESET" (at 85.14 134.0612 0) (layer "F.SilkS") (uuid "916e8d4c-532d-4061-9c96-c2e65884e105") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MBFAN1" (at 66.4464 59.51 180) (layer "F.SilkS") (uuid "9254a345-3c96-4aab-ab4c-c4747c02eb39") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "MB FAN1" (at 85.2492 55.1 180) (layer "F.SilkS") (uuid "9467ef23-52d1-4b0c-a385-f3384107a043") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR2" (at 117.4606 75.7776 90) (layer "F.SilkS") (uuid "a0c22e18-cc4b-46fd-8af9-c6618f778cf6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 86.55 66.1564 -90) (layer "F.SilkS") (uuid "a14d324c-efcf-4b64-b370-05bb3d3c125e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "CS" (at 68.6308 126.5228 0) (layer "F.SilkS") (uuid "af88dd25-87d0-45e5-88f7-bea88f57ac49") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 118.9044 86.2624 90) (layer "F.SilkS") (uuid "b37072bc-4cc6-449d-8ad2-cadefb35af34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 118.9044 109.3624 90) (layer "F.SilkS") (uuid "b7a4a365-c104-4c82-86fb-5b19560a6eb0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "+" (at 52.2224 64.6684 90) (layer "F.SilkS") (uuid "bbdc148f-0035-4e31-9441-adb2582c03e6") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "FAN3" (at 106.6044 97.8624 90) (layer "F.SilkS") (uuid "bcaf5622-a67d-42c9-bc38-f553924017a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SDA" (at 91.65 66.0564 -90) (layer "F.SilkS") (uuid "c036e583-b1a3-4250-8952-b3e83cab65c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "VDD" (at 59.5176 133.612 90) (layer "F.SilkS") (uuid "c46f0365-eca5-465a-a5a4-01b26fc3fb6d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN1" (at 85.2492 63 180) (layer "F.SilkS") (uuid "ce7d8359-3eaa-47be-b682-6f8f43d6c2a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR2" (at 109.4606 75.7776 90) (layer "F.SilkS") (uuid "d3168e5a-881c-4c53-a21f-a85a6828c456") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FanPico-0401D" (at 45.7708 110.0328 0) (layer "F.SilkS") (uuid "debf45ec-e862-4f94-8c02-30d17d9a3c5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MAIN POWER" (at 64.0556 55.308 180) (layer "F.SilkS") (uuid "df574e9b-8f32-40e3-99f8-a0619b978e00") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Serial (TTL)" (at 43.22 119.3332 0) (layer "F.SilkS") (uuid "e2a98e6b-c242-4852-88b0-912e1ae71965") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "-" (at 46.228 64.6684 90) (layer "F.SilkS") (uuid "e4fd5037-334e-4396-87ea-9c7524c412ec") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "USB" (at 38.608 82.4 270) (layer "F.SilkS") (uuid "eaece356-bd32-4b59-977f-c84615c36577") (effects (font (size 1 1) (thickness 0.15) ) ) ) (segment (start 51.9 77.5) (end 54.5 77.5) (width 1) (layer "F.Cu") (net 1) (uuid "147d0be6-8974-4668-a179-22aa5348e6f8") ) (segment (start 48.228 81.172) (end 51.9 77.5) (width 0.75) (layer "F.Cu") (net 1) (uuid "21af829b-526f-4a5f-bfce-f8aeeb479c37") ) (segment (start 80.3 83.3875) (end 80.3 81.7625) (width 0.25) (layer "F.Cu") (net 1) (uuid "2d911b0b-1588-423d-b491-7a28493cf2d0") ) (segment (start 80.3 81.7625) (end 81.2375 81.7625) (width 0.2) (layer "F.Cu") (net 1) (uuid "389c3e5a-af4b-4c9d-85a1-69cf9e2f82d2") ) (segment (start 67.84905 78.6092) (end 68.5492 78.6092) (width 0.2) (layer "F.Cu") (net 1) (uuid "4562d9fa-74f4-40bd-be17-38b5eddb1726") ) (segment (start 67.84905 78.6092) (end 63.2923 74.05245) (width 0.2) (layer "F.Cu") (net 1) (uuid "45c040a8-8879-4f7e-aaee-9a59f9da802e") ) (segment (start 82.05 80.95) (end 82.05 80.8875) (width 0.2) (layer "F.Cu") (net 1) (uuid "462aca2f-1657-4c32-8d75-63e333e2f20e") ) (segment (start 48.228 82.169) (end 48.228 81.172) (width 0.75) (layer "F.Cu") (net 1) (uuid "490c1e51-96bb-4b98-870f-432fbe461acd") ) (segment (start 54.5 77.5) (end 55.5 77.5) (width 1) (layer "F.Cu") (net 1) (uuid "4eccfdde-8e4d-4cea-b57e-f4f6dcdb0154") ) (segment (start 78.0288 82.0928) (end 79.9697 82.0928) (width 0.2) (layer "F.Cu") (net 1) (uuid "7464948b-1542-420d-8940-ce92affa9006") ) (segment (start 81.2375 81.7625) (end 82.05 80.95) (width 0.2) (layer "F.Cu") (net 1) (uuid "7d363c74-f4cc-4352-9637-fcec563198a0") ) (segment (start 55.5 77.5) (end 56.5 77.5) (width 1) (layer "F.Cu") (net 1) (uuid "8197a6d2-a915-46ca-9da2-7ec64413afaf") ) (segment (start 59.27425 77.5) (end 62.7218 74.05245) (width 0.75) (layer "F.Cu") (net 1) (uuid "98b43894-206d-42eb-b4e5-185d60caf88a") ) (segment (start 78.0288 82.0928) (end 78.0288 82.1944) (width 0.2) (layer "F.Cu") (net 1) (uuid "bc51c4b4-83f0-47f3-a049-389a0766d21b") ) (segment (start 63.2923 74.05245) (end 62.7218 74.05245) (width 0.2) (layer "F.Cu") (net 1) (uuid "cfa7b21e-4eeb-4d70-b9b8-86dcbd345bc9") ) (segment (start 79.9697 82.0928) (end 80.3 81.7625) (width 0.2) (layer "F.Cu") (net 1) (uuid "d180dcc8-0366-420f-aced-8200da440c55") ) (segment (start 80.0875 82.15) (end 80 82.0625) (width 0.25) (layer "F.Cu") (net 1) (uuid "f57d48a3-5065-4729-922f-bc34f558d3a8") ) (segment (start 56.5 77.5) (end 59.27425 77.5) (width 1) (layer "F.Cu") (net 1) (uuid "f5c77f2c-cd8e-451a-9117-b0578a68e2e4") ) (via (at 55.5 77.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "39ed16b5-6cc2-489e-bb69-dbffa8df8503") ) (via (at 54.5 77.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "8d6e3a2c-1ccf-4575-9ac9-0ed012a7ac1f") ) (via (at 56.5 77.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "e6631460-abc3-4afa-8abe-3007259a3d92") ) (via (at 78.0288 82.0928) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "ea3b8b52-b12c-403d-8113-a52815510b86") ) (segment (start 56.5 77.5) (end 54.5 77.5) (width 0.75) (layer "B.Cu") (net 1) (uuid "76e689ee-b12a-4aa6-9ab7-fdf6f272dff7") ) (segment (start 73.436 77.5) (end 78.0288 82.0928) (width 0.75) (layer "B.Cu") (net 1) (uuid "8a31b600-dcca-4781-bdfb-8b30cfd5e2ca") ) (segment (start 56.5 77.5) (end 73.436 77.5) (width 0.75) (layer "B.Cu") (net 1) (uuid "f27bd97b-b0ef-4dbc-bf2a-7224fb930837") ) (segment (start 87.2036 72.6196) (end 87.1404 72.5564) (width 0.2) (layer "F.Cu") (net 2) (uuid "6b2f81a9-033a-4172-800b-69627dcd7887") ) (via (at 96.65 103) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "088ff6fa-843d-41e3-87ef-3c49cffa7453") ) (via (at 106.55 111.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "0f619ee8-39c8-44b4-8896-abbfd01db942") ) (via (at 48.4 118.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3efea0ad-3a24-4ff5-a9ad-ad984edf2fa4") ) (via (at 65.5 66.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "40ed5afe-b501-46b0-9d52-01df41c67049") ) (via (at 111.0996 89.2556) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "431c4568-1a3d-48a2-b2fd-fae0855ee7ce") ) (via (at 72.95 87.09) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "45b414a9-005c-49e5-a633-6e02d39b5e66") ) (via (at 78.7 62.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "469d866c-d3d5-4c2d-b7c3-22af31fbe215") ) (via (at 106.6 88.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4a6f3e69-9ec7-4149-9d72-2200e4eadbb4") ) (via (at 62.6 76.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5b1c7a39-cb1a-415a-8b31-242a73bc8e17") ) (via (at 97.9932 77.6732) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "63956c78-dd22-4fef-975d-4ed0dee732e3") ) (via (at 60.6552 81.2292) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6ccf0c4a-b59f-43ee-aa0f-047204b03ed7") ) (via (at 73.6 117.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "82b1e2de-dcd0-469b-9753-c18920f89ff2") ) (via (at 87.6 86.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8805dd65-2126-496e-a923-b075236661d7") ) (via (at 110.9472 123.0376) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8c10e0a7-5d5a-4027-a1ff-f52e979d69a0") ) (via (at 65.35 62.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "928d888d-109e-41b6-b2be-b09d2876cf0b") ) (via (at 58.3 72.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "94271368-8762-4e91-a7db-fa67a51470d4") ) (via (at 111.0996 111.8616) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "b64f0036-596e-449d-af7a-1ccf8f753745") ) (via (at 59.7 59.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "ccbd3010-cc66-428d-aa9b-c19600f4d173") ) (via (at 106.55 100.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "e028e860-429d-4da2-a0d0-a24fd3428e35") ) (via (at 54.55 123.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "e421ddf1-0777-4552-8dbc-313bc73727d9") ) (via (at 111.252 100.7364) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "e96385cb-028d-4b5c-9294-73b7463d0ced") ) (via (at 51.25 89) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "f738f68f-1107-4970-8474-cc410d46bd2a") ) (segment (start 73.8208 129.0678) (end 75.438 127.4506) (width 0.5) (layer "F.Cu") (net 3) (uuid "0521ccf1-9fe9-470a-bb50-429991ed873b") ) (segment (start 98 66.1) (end 98 64.2613) (width 0.25) (layer "F.Cu") (net 3) (uuid "0533f3fb-d966-4605-8940-48e22509a4bb") ) (segment (start 56.5 78.55) (end 52.25 78.55) (width 0.5) (layer "F.Cu") (net 3) (uuid "06f56169-ec43-48ad-bd81-8cba9a08bf17") ) (segment (start 92.71 118.5807) (end 92.71 109.161) (width 0.5) (layer "F.Cu") (net 3) (uuid "09631ced-0b8f-48a3-b89e-a88e4a5b98e0") ) (segment (start 92.69 66.24) (end 93.76 66.24) (width 0.3) (layer "F.Cu") (net 3) (uuid "1a10e088-66ab-402a-99ea-79ebbfe5281f") ) (segment (start 86.59 67.31) (end 87.66 66.24) (width 0.5) (layer "F.Cu") (net 3) (uuid "1e038a68-f433-496b-8714-2d530ed66446") ) (segment (start 92.7696 84.6886) (end 92.7696 80.9156) (width 0.5) (layer "F.Cu") (net 3) (uuid "21a3e5e8-751e-4bd8-a009-e03e1d93b85f") ) (segment (start 54.44 131.4) (end 51.33 131.4) (width 0.5) (layer "F.Cu") (net 3) (uuid "2374a537-5460-4b0c-8bed-5f770d61277b") ) (segment (start 64.8 78.55) (end 56.5 78.55) (width 0.5) (layer "F.Cu") (net 3) (uuid "249aec6b-9db2-4f09-92ae-ac572d18bb56") ) (segment (start 49 84.3) (end 49 94.72) (width 0.5) (layer "F.Cu") (net 3) (uuid "28e6d21a-85a5-4cb6-aa6a-74c5bfb0de51") ) (segment (start 60.2625 122.7) (end 60.4 122.7) (width 0.25) (layer "F.Cu") (net 3) (uuid "290a0232-c6cf-4ae4-b9df-fd40666ed324") ) (segment (start 86.6096 70.7564) (end 83.95 70.7564) (width 0.5) (layer "F.Cu") (net 3) (uuid "2bf3c287-6b43-4ee7-bd42-6a960c6ab0fa") ) (segment (start 73.5222 77.5832) (end 74.4472 78.5082) (width 0.5) (layer "F.Cu") (net 3) (uuid "2c32c9ec-625d-4c51-ad19-1f63a6efe631") ) (segment (start 57.912 130.0988) (end 56.3 130.0988) (width 0.5) (layer "F.Cu") (net 3) (uuid "2d49622a-92f4-44d0-8a17-d3ffc2b869e8") ) (segment (start 86.59 68.9564) (end 86.59 67.31) (width 0.5) (layer "F.Cu") (net 3) (uuid "2e7ec227-5181-4066-8e99-1ceb11821629") ) (segment (start 94.68 79.0052) (end 94.68 67.18) (width 0.5) (layer "F.Cu") (net 3) (uuid "2e9a6f24-8cf3-4e04-a0cd-2fe1332142e5") ) (segment (start 93.76 66.24) (end 95.78 64.22) (width 0.3) (layer "F.Cu") (net 3) (uuid "2fd43939-63cc-4640-8a50-3c5134bc9345") ) (segment (start 92.71 97.911) (end 93.726 96.895) (width 0.5) (layer "F.Cu") (net 3) (uuid "345fc391-33d0-4ea1-a38a-59fbab6d4614") ) (segment (start 92.71 109.161) (end 93.726 108.145) (width 0.5) (layer "F.Cu") (net 3) (uuid "35849f8d-f16a-459e-b193-c9f514cc2cf7") ) (segment (start 81.4125 72.984254) (end 81.4125 70.7564) (width 0.5) (layer "F.Cu") (net 3) (uuid "3762d8c9-0130-4b08-8c1d-72fc8ddd6ab9") ) (segment (start 71.2192 81.3308) (end 67.5808 81.3308) (width 0.5) (layer "F.Cu") (net 3) (uuid "3a1988de-5a68-496d-9979-5ae159804e53") ) (segment (start 81.4125 68.8625) (end 81.4 68.85) (width 0.5) (layer "F.Cu") (net 3) (uuid "3b6ae019-a0cf-4470-a47f-eb78deb74159") ) (segment (start 93.6743 119.545) (end 92.71 118.5807) (width 0.5) (layer "F.Cu") (net 3) (uuid "3e0e7a4b-0f50-4c75-93b6-350665caa696") ) (segment (start 59.5376 128.4732) (end 57.912 130.0988) (width 0.5) (layer "F.Cu") (net 3) (uuid "3e5c963a-2502-4996-bf23-0ee319d74998") ) (segment (start 92.71 86.661) (end 93.726 85.645) (width 0.5) (layer "F.Cu") (net 3) (uuid "40bd82c9-5508-425a-926b-6f9ff6d9599d") ) (segment (start 73.5222 77.5832) (end 73.5222 79.0278) (width 0.5) (layer "F.Cu") (net 3) (uuid "452a635c-295e-4b12-8db2-0bb4a102a55a") ) (segment (start 92.71 107.129) (end 92.71 97.911) (width 0.5) (layer "F.Cu") (net 3) (uuid "4c06ef6d-6b40-4c58-aeb1-9e9b6bbca4f1") ) (segment (start 98 64.2613) (end 97.9613 64.2226) (width 0.25) (layer "F.Cu") (net 3) (uuid "4ded9f6a-9d32-4c55-a50c-98863afc1547") ) (segment (start 50.1 83.2) (end 49 84.3) (width 0.5) (layer "F.Cu") (net 3) (uuid "52dfdfac-aa58-42b8-afed-74e713cb0c86") ) (segment (start 56.3 128.8) (end 56.35 128.75) (width 0.5) (layer "F.Cu") (net 3) (uuid "57241243-2d20-4385-bab8-119bcaa3fe2e") ) (segment (start 56.5 78.55) (end 56.5 80.8375) (width 0.5) (layer "F.Cu") (net 3) (uuid "575f069b-5392-4c07-9686-ff4f8e9094f5") ) (segment (start 86.59 70.7368) (end 86.59 68.9564) (width 0.5) (layer "F.Cu") (net 3) (uuid "592fdef5-f92f-48fe-a27a-c675229e1e93") ) (segment (start 55.7412 130.0988) (end 54.44 131.4) (width 0.5) (layer "F.Cu") (net 3) (uuid "5c070f06-5b58-4e2e-a560-8675546732e7") ) (segment (start 91.7715 121.4478) (end 93.6743 119.545) (width 0.5) (layer "F.Cu") (net 3) (uuid "60539a0a-2e06-45d1-85a8-39b39b600ef7") ) (segment (start 49 94.72) (end 49.53 95.25) (width 0.5) (layer "F.Cu") (net 3) (uuid "6831979f-e1ca-4da0-8f11-a77b75c18818") ) (segment (start 51.33 131.4) (end 50.7 130.77) (width 0.5) (layer "F.Cu") (net 3) (uuid "7931642a-7a0e-424d-b0d7-6a56c05e15e5") ) (segment (start 60.4 122.7) (end 60.85 123.15) (width 0.25) (layer "F.Cu") (net 3) (uuid "7a15477e-69bd-438b-8692-f4ff25c345fb") ) (segment (start 93.726 85.645) (end 92.7696 84.6886) (width 0.5) (layer "F.Cu") (net 3) (uuid "7f764c08-70d5-482a-838d-3c5d70c2e46f") ) (segment (start 83.95 70.7564) (end 81.4125 70.7564) (width 0.5) (layer "F.Cu") (net 3) (uuid "8604419f-9b67-4122-a6b1-275874d381e1") ) (segment (start 75.438 127.4506) (end 75.438 121.4478) (width 0.5) (layer "F.Cu") (net 3) (uuid "86ad0213-64e8-4774-a6b6-736146c46c4c") ) (segment (start 95.78 64.22) (end 97.9587 64.22) (width 0.3) (layer "F.Cu") (net 3) (uuid "9501bad0-8903-4531-9c9b-f02167f0f129") ) (segment (start 87.66 66.24) (end 92.69 66.24) (width 0.5) (layer "F.Cu") (net 3) (uuid "972aae63-cd12-476f-8006-ac76c5c866f3") ) (segment (start 81.4125 70.7564) (end 81.4125 68.8625) (width 0.5) (layer "F.Cu") (net 3) (uuid "9cf658b3-9a15-4b5f-8e6e-93d76a559225") ) (segment (start 93.74 66.24) (end 92.69 66.24) (width 0.5) (layer "F.Cu") (net 3) (uuid "9d7d0fc0-c556-418c-ae9e-fbb65f81c304") ) (segment (start 93.726 108.145) (end 92.71 107.129) (width 0.5) (layer "F.Cu") (net 3) (uuid "a57ac1b0-43fb-4505-a436-3b0e7c7c0694") ) (segment (start 74.4472 78.5082) (end 75.888554 78.5082) (width 0.5) (layer "F.Cu") (net 3) (uuid "aa8351d2-334e-4539-8e9f-33083529a6ca") ) (segment (start 73.5222 79.0278) (end 71.2192 81.3308) (width 0.5) (layer "F.Cu") (net 3) (uuid "b0eb4ad9-e3f2-4154-aa73-ea24a7ce8b0e") ) (segment (start 73.8208 121.4478) (end 75.438 121.4478) (width 0.5) (layer "F.Cu") (net 3) (uuid "b5833b9e-e3df-436c-b7a1-520c74a80a4e") ) (segment (start 50.7 130.77) (end 50.7 130.04) (width 0.5) (layer "F.Cu") (net 3) (uuid "b742f481-8283-4959-89b4-d62b8c0b5b04") ) (segment (start 92.7696 80.9156) (end 94.68 79.0052) (width 0.5) (layer "F.Cu") (net 3) (uuid "b79401fa-1595-47ae-87b1-0d598738b5f3") ) (segment (start 75.888554 78.5082) (end 81.4125 72.984254) (width 0.5) (layer "F.Cu") (net 3) (uuid "bbc74721-f7de-43e2-9a4c-35f833237cca") ) (segment (start 60.85 127.1608) (end 59.5376 128.4732) (width 0.25) (layer "F.Cu") (net 3) (uuid "c08c0d2d-d941-4688-999c-01642312e8f8") ) (segment (start 52.25 78.55) (end 50.1 80.7) (width 0.5) (layer "F.Cu") (net 3) (uuid "c154f6de-3622-4d98-82a9-236f5ad3e65e") ) (segment (start 93.726 96.895) (end 92.71 95.879) (width 0.5) (layer "F.Cu") (net 3) (uuid "c550ad1c-a0e9-491f-a02f-4d6c2e8a31cb") ) (segment (start 94.68 67.18) (end 93.74 66.24) (width 0.5) (layer "F.Cu") (net 3) (uuid "c9231c6a-fd3c-47bb-807e-92d712368cbf") ) (segment (start 92.71 95.879) (end 92.71 86.661) (width 0.5) (layer "F.Cu") (net 3) (uuid "d696c078-d309-4a45-9de0-79d6584583e8") ) (segment (start 60.85 123.15) (end 60.85 127.1608) (width 0.25) (layer "F.Cu") (net 3) (uuid "d76782c2-f9d9-4c3a-8707-25f268cb6c29") ) (segment (start 97.9587 64.22) (end 97.9613 64.2226) (width 0.3) (layer "F.Cu") (net 3) (uuid "d962c605-bc1a-4542-a90c-d9f3e1e29873") ) (segment (start 67.5808 81.3308) (end 64.8 78.55) (width 0.5) (layer "F.Cu") (net 3) (uuid "dad047b2-13f0-4d53-a20b-0f4f2f49522a") ) (segment (start 56.3 130.0988) (end 56.3 128.8) (width 0.5) (layer "F.Cu") (net 3) (uuid "dc421814-4bd0-41ca-a335-06d77245fcee") ) (segment (start 84.05 70.8564) (end 84.05 72.5564) (width 0.5) (layer "F.Cu") (net 3) (uuid "dfaef90d-90e3-40c1-8cb9-8aca54feb02a") ) (segment (start 75.438 121.4478) (end 91.7715 121.4478) (width 0.5) (layer "F.Cu") (net 3) (uuid "e23820c0-bb93-43c8-9af7-a1952f8eda44") ) (segment (start 50.1 80.7) (end 50.1 83.2) (width 0.5) (layer "F.Cu") (net 3) (uuid "e9b49f71-88b0-479c-9262-c4e048fb0e96") ) (segment (start 56.3 130.0988) (end 55.7412 130.0988) (width 0.5) (layer "F.Cu") (net 3) (uuid "f32c523a-4f26-4810-afd7-ae09b1695b3b") ) (segment (start 59.5376 127.5424) (end 68.27 118.81) (width 0.5) (layer "B.Cu") (net 3) (uuid "10f7ea6e-7f3f-4bbe-a7e9-e9cfe0b04b98") ) (segment (start 72.53 118.81) (end 73.8208 120.1008) (width 0.5) (layer "B.Cu") (net 3) (uuid "4aae85c8-33a7-4b77-9692-c1b10b549f8b") ) (segment (start 73.8208 120.1008) (end 73.8208 121.4478) (width 0.5) (layer "B.Cu") (net 3) (uuid "b3f97871-48d8-4605-96a1-b40edc2b9d64") ) (segment (start 68.27 118.81) (end 72.53 118.81) (width 0.5) (layer "B.Cu") (net 3) (uuid "c2b37419-4bb1-4bca-a3a0-a3069146add2") ) (segment (start 59.5376 128.4732) (end 59.5376 127.5424) (width 0.5) (layer "B.Cu") (net 3) (uuid "faf65615-e3d2-4588-b95d-24dc8a1d5fac") ) (segment (start 93.66 61.7525) (end 94.0425 61.37) (width 0.25) (layer "F.Cu") (net 4) (uuid "02797635-7521-4096-9456-83fe7dfb4a56") ) (segment (start 98.9113 62.3476) (end 101.4774 62.3476) (width 0.25) (layer "F.Cu") (net 4) (uuid "1219ddeb-6eb8-44f7-8bfc-3c3ee40ea0ed") ) (segment (start 101.4774 62.3476) (end 101.65 62.175) (width 0.25) (layer "F.Cu") (net 4) (uuid "19f599a7-1c29-41fe-b40e-0fa2387e32ba") ) (segment (start 92.6625 62.75) (end 93.66 61.7525) (width 0.25) (layer "F.Cu") (net 4) (uuid "47a35851-766d-479c-be87-6c07f1d190fc") ) (segment (start 81.2292 59.6) (end 81.2292 60.5692) (width 0.25) (layer "F.Cu") (net 4) (uuid "5d55d5cc-37b6-47cc-99c4-64367fa079c1") ) (segment (start 84.157348 62.68) (end 85.453604 62.68) (width 0.25) (layer "F.Cu") (net 4) (uuid "69a32cd2-f409-4c02-b085-dc276173445a") ) (segment (start 85.453604 62.68) (end 85.523604 62.75) (width 0.25) (layer "F.Cu") (net 4) (uuid "7d7e366c-ff0a-48b5-b7b9-63b8b737e737") ) (segment (start 83.345 62.685) (end 84.152348 62.685) (width 0.25) (layer "F.Cu") (net 4) (uuid "9e2278d1-0d69-4389-975a-0fe8c332e7e0") ) (segment (start 97.9337 61.37) (end 98.9113 62.3476) (width 0.25) (layer "F.Cu") (net 4) (uuid "bcddbf60-240a-4d0d-8632-3509ab3a5e06") ) (segment (start 94.0425 61.37) (end 97.9337 61.37) (width 0.25) (layer "F.Cu") (net 4) (uuid "c454877a-3bd9-4095-aadd-3c8339689922") ) (segment (start 81.2292 60.5692) (end 83.345 62.685) (width 0.25) (layer "F.Cu") (net 4) (uuid "cc3fd4ec-080f-4059-a03a-37b8284dc6fa") ) (segment (start 85.523604 62.75) (end 92.6625 62.75) (width 0.25) (layer "F.Cu") (net 4) (uuid "e2428642-d224-41af-8ecc-07a82da1764d") ) (segment (start 84.152348 62.685) (end 84.157348 62.68) (width 0.25) (layer "F.Cu") (net 4) (uuid "f0caf307-052f-4b2a-8de2-2a76d1feb1d0") ) (segment (start 93.6743 117.72) (end 93.6743 116.3329) (width 0.2) (layer "F.Cu") (net 5) (uuid "210de4b0-e050-4999-8b36-b6b0cb46a45d") ) (segment (start 98.1335 117.7357) (end 95.5086 117.7357) (width 0.2) (layer "F.Cu") (net 5) (uuid "3a5b6fb7-704c-4d62-b67e-e573ed327b17") ) (segment (start 95.5086 117.7357) (end 95.4743 117.77) (width 0.2) (layer "F.Cu") (net 5) (uuid "90a7316f-e1a8-4264-b076-92b3961abe05") ) (segment (start 93.6743 116.3329) (end 93.726 116.2812) (width 0.2) (layer "F.Cu") (net 5) (uuid "a628be94-b351-4ef4-9eb1-2ecee5519f93") ) (segment (start 95.4743 117.77) (end 93.7243 117.77) (width 0.2) (layer "F.Cu") (net 5) (uuid "af45f9b6-c632-4d7e-a5a7-39b0ef767e94") ) (via (at 93.726 116.2812) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 5) (uuid "04dcc6e5-3c25-4655-811d-ef3d322ea5de") ) (segment (start 92.9244 115.4796) (end 92.9244 98.5632) (width 0.2) (layer "In1.Cu") (net 5) (uuid "2a57cfaf-6b43-46f6-bdde-bf5ba975e140") ) (segment (start 93.726 116.2812) (end 92.9244 115.4796) (width 0.2) (layer "In1.Cu") (net 5) (uuid "770f0474-5735-46b1-a08a-b3ddeb9bc021") ) (segment (start 92.9244 98.5632) (end 88.3856 94.0244) (width 0.2) (layer "In1.Cu") (net 5) (uuid "be9bfa7d-320d-4adc-abb5-5c4288de391f") ) (segment (start 81.2356 94.0244) (end 80.01 95.25) (width 0.2) (layer "In1.Cu") (net 5) (uuid "db8ba6ba-5c19-406c-8465-2eae04f4d1ca") ) (segment (start 88.3856 94.0244) (end 81.2356 94.0244) (width 0.2) (layer "In1.Cu") (net 5) (uuid "ee8a1020-bf5d-4cf7-9a5d-8f6bafa63a9c") ) (segment (start 66.8528 64.3625) (end 63.1041 64.3625) (width 0.5) (layer "F.Cu") (net 6) (uuid "022f285b-07f6-4d54-92de-cebf24acb9d3") ) (segment (start 59.8218 66.559) (end 62.5612 63.8196) (width 1.5) (layer "F.Cu") (net 6) (uuid "06c7d927-4ad1-4500-a405-735e48b64098") ) (segment (start 63.1041 64.3625) (end 62.5612 63.8196) (width 0.5) (layer "F.Cu") (net 6) (uuid "1b9e5e24-32c4-419a-85dd-c1539810da22") ) (segment (start 66.8528 64.3625) (end 67.5143 64.3625) (width 0.5) (layer "F.Cu") (net 6) (uuid "400f39bc-e341-49ab-b72d-0a549596d647") ) (segment (start 67.5143 64.3625) (end 68.4806 65.3288) (width 0.5) (layer "F.Cu") (net 6) (uuid "43ac7ae2-e732-46fb-bb07-e242a07b160b") ) (segment (start 68.4806 65.3288) (end 70.2056 65.3288) (width 0.5) (layer "F.Cu") (net 6) (uuid "8a6bdc39-69f6-44f3-b647-75caeee0bcd8") ) (segment (start 59.8218 67.7712) (end 59.8218 66.559) (width 1.5) (layer "F.Cu") (net 6) (uuid "de04f226-6fe3-4664-84be-4d147c3bbda4") ) (segment (start 62.25 71.6375) (end 60.725 71.6375) (width 0.25) (layer "F.Cu") (net 7) (uuid "39b2111c-5c71-4bcc-a469-0d2c3db92f20") ) (segment (start 60.725 71.6375) (end 60.15 72.2125) (width 0.25) (layer "F.Cu") (net 7) (uuid "43c7cd87-d753-4a14-b38a-9c88759ee56c") ) (segment (start 71.35 64.414903) (end 71.35 69.25) (width 0.2) (layer "F.Cu") (net 7) (uuid "5ef92361-9a84-41c3-b429-c62d79efae69") ) (segment (start 71.814903 63.95) (end 71.35 64.414903) (width 0.2) (layer "F.Cu") (net 7) (uuid "60bcb318-344c-4531-b853-bea67f5acd47") ) (segment (start 62.5 71.6375) (end 64.25 69.8875) (width 0.25) (layer "F.Cu") (net 7) (uuid "6ed17945-03c8-4597-9dc9-4ea431f5d1a9") ) (segment (start 71.35 69.25) (end 70.4 70.2) (width 0.2) (layer "F.Cu") (net 7) (uuid "72a77d49-7671-448d-b60f-cc07adee97bf") ) (segment (start 70.4 70.2) (end 64.5625 70.2) (width 0.2) (layer "F.Cu") (net 7) (uuid "869de9f1-ecb0-49ea-a4bd-42373ef37c95") ) (segment (start 64.5625 70.2) (end 64.25 69.8875) (width 0.2) (layer "F.Cu") (net 7) (uuid "b2e160f3-79c0-405b-850f-6d18ed773e27") ) (segment (start 62.25 71.6375) (end 62.5 71.6375) (width 0.25) (layer "F.Cu") (net 7) (uuid "c9008663-0772-45d6-9893-13718f758c14") ) (segment (start 73.4268 63.95) (end 71.814903 63.95) (width 0.2) (layer "F.Cu") (net 7) (uuid "d6624a35-1604-43c3-8da8-e76559a47c3d") ) (segment (start 74.8056 65.3288) (end 73.4268 63.95) (width 0.2) (layer "F.Cu") (net 7) (uuid "e8bc2c2c-f405-4b68-893c-ffcc50468904") ) (segment (start 72.5056 71.6288) (end 67.7087 71.6288) (width 0.5) (layer "F.Cu") (net 8) (uuid "0c9eaea2-755c-4dcf-a4f0-21a85d7f3f11") ) (segment (start 66.275 71.7125) (end 66.35 71.6375) (width 0.25) (layer "F.Cu") (net 8) (uuid "27eef489-ac99-4fc0-afc4-056979856eb8") ) (segment (start 66.35 72.7) (end 65.6968 73.3532) (width 0.5) (layer "F.Cu") (net 8) (uuid "2ffdeeb7-db34-4a0a-a15c-be5e4b511abe") ) (segment (start 65.6968 73.3532) (end 65.6968 74.05245) (width 0.5) (layer "F.Cu") (net 8) (uuid "3bf0fb64-4845-418a-9bff-fc9dbb2162b0") ) (segment (start 66.35 71.6375) (end 66.35 72.7) (width 0.5) (layer "F.Cu") (net 8) (uuid "5a2a5817-e2dc-4554-a445-19c554dcd207") ) (segment (start 64.25 71.7125) (end 66.275 71.7125) (width 0.25) (layer "F.Cu") (net 8) (uuid "9520b4e5-342a-4009-9205-2f06668e3947") ) (segment (start 67.7087 71.6288) (end 67.7 71.6375) (width 0.5) (layer "F.Cu") (net 8) (uuid "bcb4d321-cbeb-4bd7-b46c-9a9aa28b111a") ) (segment (start 72.3392 64.922) (end 72.3392 66.04) (width 0.5) (layer "F.Cu") (net 8) (uuid "cf8249ba-e65b-4364-99b0-a1c89e1881ee") ) (segment (start 67.7 71.6375) (end 66.35 71.6375) (width 0.5) (layer "F.Cu") (net 8) (uuid "ed453dc3-ebbb-4cf8-a980-7f44ce71725c") ) (segment (start 72.5056 65.3288) (end 72.5056 71.6288) (width 0.5) (layer "F.Cu") (net 8) (uuid "f1b6a5c9-9876-482a-b116-fb5254761b49") ) (segment (start 54.229 72.7112) (end 54.229 70.8915) (width 0.25) (layer "F.Cu") (net 9) (uuid "32f3eda8-b362-44c3-9299-2a82eae6f67f") ) (segment (start 54.229 70.8915) (end 54.2 70.8625) (width 0.25) (layer "F.Cu") (net 9) (uuid "6b923ced-6e94-4862-a478-2de3dc8dc07a") ) (segment (start 104.3432 119.0952) (end 100.743 119.0952) (width 0.2) (layer "F.Cu") (net 10) (uuid "02213bfd-adce-47c1-8940-acf50f4a0d72") ) (segment (start 114.3044 119.5824) (end 110.422 115.7) (width 0.2) (layer "F.Cu") (net 10) (uuid "7c4ec3b9-2dda-4da0-a6fc-aa66b7b65aa6") ) (segment (start 100.743 119.0952) (end 100.3335 118.6857) (width 0.2) (layer "F.Cu") (net 10) (uuid "99eeaced-f50d-4be5-87d4-93c83eaa1126") ) (segment (start 107.7384 115.7) (end 104.3432 119.0952) (width 0.2) (layer "F.Cu") (net 10) (uuid "a7591e94-9ccf-4e2a-85c8-a45288c2bc42") ) (segment (start 110.422 115.7) (end 107.7384 115.7) (width 0.2) (layer "F.Cu") (net 10) (uuid "ae903c93-d896-447b-b90f-affd19d7bbe1") ) (segment (start 109.2189 107.484431) (end 109.2189 106.5124) (width 1.5) (layer "F.Cu") (net 11) (uuid "01e55ae2-bbb4-4dd2-8ccd-c61b8434cb10") ) (segment (start 109.1544 118.784431) (end 109.1544 117.8144) (width 1.5) (layer "F.Cu") (net 11) (uuid "1882b0cb-3934-442a-974a-45e7ca07065c") ) (segment (start 113.284 122.3264) (end 113.284 122.1224) (width 0.2) (layer "F.Cu") (net 11) (uuid "23877f0f-aa24-4148-a470-408256ffd0cc") ) (segment (start 110.7789 103.0124) (end 114.3189 99.4724) (width 0.2) (layer "F.Cu") (net 11) (uuid "2c4e3d0a-57ef-4d08-8047-5de565b7962e") ) (segment (start 110.0814 91.7448) (end 110.1344 91.7448) (width 0.2) (layer "F.Cu") (net 11) (uuid "2cc875a3-ee2b-4b06-b8ae-259611c3a208") ) (segment (start 109.8669 125.7144) (end 109.896 125.7144) (width 0.2) (layer "F.Cu") (net 11) (uuid "3139405b-d8c5-457f-8e67-c36d8ea8ac12") ) (segment (start 64.1572 58.0676) (end 64.1572 57.4812) (width 1.5) (layer "F.Cu") (net 11) (uuid "31f0aca2-7315-42a0-8269-2907283f9c79") ) (segment (start 109.896 125.7144) (end 113.284 122.3264) (width 0.2) (layer "F.Cu") (net 11) (uuid "33ce0ad3-148f-4ba9-a14d-8c44e3d7c49f") ) (segment (start 114.3044 122.1224) (end 113.284 122.1224) (width 1.5) (layer "F.Cu") (net 11) (uuid "4382fd39-4a95-46da-83bc-e7b3e662b6eb") ) (segment (start 107.99 116.92) (end 108.26 116.92) (width 0.25) (layer "F.Cu") (net 11) (uuid "47bc3862-76e3-47a3-bbf9-e583eb51ffb7") ) (segment (start 110.1344 91.7448) (end 113.6068 88.2724) (width 0.2) (layer "F.Cu") (net 11) (uuid "4c4bf519-a12b-4d6a-9841-883f0fd99aaa") ) (segment (start 112.506869 110.7724) (end 109.2189 107.484431) (width 1.5) (layer "F.Cu") (net 11) (uuid "4c807fe3-48b8-4222-98be-f61454ef823e") ) (segment (start 114.3189 88.2724) (end 112.506869 88.2724) (width 1.5) (layer "F.Cu") (net 11) (uuid "4d6f42ea-f1b1-429e-a799-6587380247cd") ) (segment (start 112.492369 122.1224) (end 109.1544 118.784431) (width 1.5) (layer "F.Cu") (net 11) (uuid "5084a2e9-d346-4dc1-a9be-810db371e9f2") ) (segment (start 103.84 120.21) (end 104.7 120.21) (width 0.25) (layer "F.Cu") (net 11) (uuid "54769374-f892-4ede-8d13-a6a1ebd7236b") ) (segment (start 109.2189 83.8124) (end 109.2189 82.9067) (width 1.5) (layer "F.Cu") (net 11) (uuid "6235a9f6-19b7-41c0-b428-a0e4f04f1446") ) (segment (start 114.3189 110.7724) (end 112.506869 110.7724) (width 1.5) (layer "F.Cu") (net 11) (uuid "6275abb4-bc7e-443c-800e-d089fd89c528") ) (segment (start 113.8652 110.7724) (end 114.3189 110.7724) (width 0.2) (layer "F.Cu") (net 11) (uuid "75a1f456-4bfd-4a51-bd65-80e6dec1637c") ) (segment (start 113.284 122.1224) (end 112.492369 122.1224) (width 1.5) (layer "F.Cu") (net 11) (uuid "87d8bde6-85e3-49c6-9b60-a84827e0c7a6") ) (segment (start 108.26 116.92) (end 109.1544 117.8144) (width 0.25) (layer "F.Cu") (net 11) (uuid "8f1e54fc-56ba-46d1-8c8d-ded4f2dc72ad") ) (segment (start 109.2708 85.036331) (end 109.2708 83.9508) (width 1.5) (layer "F.Cu") (net 11) (uuid "9addc8a4-005d-4af7-b580-a26ac454bb34") ) (segment (start 112.506869 99.4724) (end 109.2189 96.184431) (width 1.5) (layer "F.Cu") (net 11) (uuid "a05c3373-3e9d-4a91-badb-36635e3c66a1") ) (segment (start 112.506869 88.2724) (end 109.2708 85.036331) (width 1.5) (layer "F.Cu") (net 11) (uuid "a49f2e19-9273-4dd2-93f7-87549e9902c6") ) (segment (start 110.0814 114.3124) (end 110.3252 114.3124) (width 0.2) (layer "F.Cu") (net 11) (uuid "b4252a2f-7bb4-42ea-ba06-a9e2d117f848") ) (segment (start 110.3252 114.3124) (end 113.8652 110.7724) (width 0.2) (layer "F.Cu") (net 11) (uuid "b8b555c7-3834-4e18-b9a1-ec4cda71afa1") ) (segment (start 114.3189 99.4724) (end 112.506869 99.4724) (width 1.5) (layer "F.Cu") (net 11) (uuid "be52b759-70ef-415c-bfd5-f812d56825cb") ) (segment (start 102.5025 121.5475) (end 103.84 120.21) (width 0.25) (layer "F.Cu") (net 11) (uuid "c247f0c2-c356-4a31-8446-c00df11c5bf4") ) (segment (start 58.4052 63.8196) (end 64.1572 58.0676) (width 1.5) (layer "F.Cu") (net 11) (uuid "ca9a3a36-1b21-4a37-a554-82274b01371c") ) (segment (start 109.2189 96.184431) (end 109.2189 95.2124) (width 1.5) (layer "F.Cu") (net 11) (uuid "d0e35190-e4c4-41ca-a26e-9b9410a78528") ) (segment (start 110.0814 103.0124) (end 110.7789 103.0124) (width 0.2) (layer "F.Cu") (net 11) (uuid "f0f7e2ef-cbec-4a9f-9d77-f3a175363904") ) (segment (start 57.5612 63.8196) (end 58.4052 63.8196) (width 1.5) (layer "F.Cu") (net 11) (uuid "f854e8dc-042d-40b9-b4df-f45b47be7ec7") ) (segment (start 102.5025 123.34) (end 102.5025 121.5475) (width 0.25) (layer "F.Cu") (net 11) (uuid "f87f289e-2c9e-41c1-8f25-29b8a843e2fc") ) (segment (start 104.7 120.21) (end 107.99 116.92) (width 0.25) (layer "F.Cu") (net 11) (uuid "f97b3d78-a205-4d9d-bd56-4fb7d08e3853") ) (segment (start 113.6068 88.2724) (end 114.3189 88.2724) (width 0.2) (layer "F.Cu") (net 11) (uuid "fb4620fa-d6e0-4476-aa2d-6f3d0647be4d") ) (segment (start 115.6024 88.2724) (end 116.97 89.64) (width 1.5) (layer "B.Cu") (net 11) (uuid "0973f18a-3649-4b89-9779-3ff7c017f4dc") ) (segment (start 114.3189 99.4724) (end 115.5589 99.4724) (width 1.5) (layer "B.Cu") (net 11) (uuid "0bd4d53b-0055-44c8-a559-5e1c7077a397") ) (segment (start 115.5476 88.2724) (end 114.3189 88.2724) (width 1.5) (layer "B.Cu") (net 11) (uuid "0f808d41-c9c7-426e-bd69-3d60f343d821") ) (segment (start 115.7624 110.7724) (end 116.99 112) (width 1.5) (layer "B.Cu") (net 11) (uuid "10719820-ed11-41a3-a4b6-fb57f682c105") ) (segment (start 115.5589 99.4724) (end 117.02 100.9335) (width 1.5) (layer "B.Cu") (net 11) (uuid "1bd54543-09d4-4190-b3e9-6a9665e2477d") ) (segment (start 92.6296 65.35) (end 107.3496 80.07) (width 1.5) (layer "B.Cu") (net 11) (uuid "1d63f2ee-3caf-4145-89ea-1be3ddf53ca7") ) (segment (start 116.97 98.06) (end 115.5576 99.4724) (width 1.5) (layer "B.Cu") (net 11) (uuid "218034d9-e4f5-4412-bf38-9f9a0422999e") ) (segment (start 115.45 80.07) (end 117.01 81.63) (width 1.5) (layer "B.Cu") (net 11) (uuid "232512ee-fe25-4c6a-97f5-d9573c87ed0f") ) (segment (start 115.3976 122.1224) (end 114.3044 122.1224) (width 1.5) (layer "B.Cu") (net 11) (uuid "2755d20c-5933-4f11-807a-7207cd2a54b8") ) (segment (start 115.5416 110.7724) (end 114.3189 110.7724) (width 1.5) (layer "B.Cu") (net 11) (uuid "2eca7951-c5e1-4f21-8e56-bc0077197432") ) (segment (start 117.01 81.63) (end 117.01 86.81) (width 1.5) (layer "B.Cu") (net 11) (uuid "3520cbc1-2347-4710-bf4c-3b633b797b83") ) (segment (start 114.3189 88.2724) (end 115.6024 88.2724) (width 1.5) (layer "B.Cu") (net 11) (uuid "4481bbc4-160d-40f3-9afb-cf277f6d81c0") ) (segment (start 115.5576 99.4724) (end 114.3189 99.4724) (width 1.5) (layer "B.Cu") (net 11) (uuid "4508ea78-71e5-4c7a-8070-53e0fdbc81dd") ) (segment (start 114.3189 110.7724) (end 115.7624 110.7724) (width 1.5) (layer "B.Cu") (net 11) (uuid "4d63d0b3-ef95-49b1-b7de-fd6c880aa8da") ) (segment (start 76.2 62.7888) (end 78.7612 65.35) (width 1.5) (layer "B.Cu") (net 11) (uuid "514eb1c8-ecc3-4ec3-b8d0-d1d023f151d3") ) (segment (start 107.3496 80.07) (end 115.45 80.07) (width 1.5) (layer "B.Cu") (net 11) (uuid "5c4ec563-832b-4bff-94e2-0ec35c9dea60") ) (segment (start 116.97 89.64) (end 116.97 98.06) (width 1.5) (layer "B.Cu") (net 11) (uuid "67653683-576d-4d74-9e99-fc379ad819f2") ) (segment (start 64.1572 57.4812) (end 64.1572 58.1672) (width 1.5) (layer "B.Cu") (net 11) (uuid "67eb6353-ab40-48df-b52b-4ba6b8b4cde7") ) (segment (start 78.7612 65.35) (end 92.6296 65.35) (width 1.5) (layer "B.Cu") (net 11) (uuid "7a18ea54-e039-4184-baf8-13a2660d720f") ) (segment (start 116.99 120.53) (end 115.3976 122.1224) (width 1.5) (layer "B.Cu") (net 11) (uuid "849356ff-8d83-481e-bf6b-ad5ab9d821c3") ) (segment (start 117.02 109.294) (end 115.5416 110.7724) (width 1.5) (layer "B.Cu") (net 11) (uuid "85da4510-837a-43cb-a3aa-a3c5281652ca") ) (segment (start 68.7788 62.7888) (end 76.2 62.7888) (width 1.5) (layer "B.Cu") (net 11) (uuid "8aca61a0-dda9-4c8f-9b0a-5a3cc095d583") ) (segment (start 117.01 86.81) (end 115.5476 88.2724) (width 1.5) (layer "B.Cu") (net 11) (uuid "9ab63698-3b64-4d41-a566-29716a7f67d1") ) (segment (start 116.99 112) (end 116.99 120.53) (width 1.5) (layer "B.Cu") (net 11) (uuid "a0fb2980-1f6c-46af-9f2a-044a2e0a6802") ) (segment (start 64.1572 58.1672) (end 68.7788 62.7888) (width 1.5) (layer "B.Cu") (net 11) (uuid "a1ef2394-8977-4b18-82c0-27096f2fc075") ) (segment (start 117.02 100.9335) (end 117.02 109.294) (width 1.5) (layer "B.Cu") (net 11) (uuid "f6aaa312-efe4-432f-8ea1-aca15781338a") ) (segment (start 70.3742 78.6092) (end 70.3742 75.4217) (width 0.25) (layer "F.Cu") (net 12) (uuid "53629f00-8e0a-4d6d-b66e-7345763b660b") ) (segment (start 70.3742 75.4217) (end 70.4367 75.3592) (width 0.25) (layer "F.Cu") (net 12) (uuid "b1645534-dde8-4cfc-b169-f2d04370399d") ) (segment (start 110.4865 104.4) (end 107.5576 104.4) (width 0.2) (layer "F.Cu") (net 13) (uuid "09d9ce62-abba-40c6-b8d8-a4b78e43b88b") ) (segment (start 100.7079 107.6144) (end 100.326 107.2325) (width 0.2) (layer "F.Cu") (net 13) (uuid "2ae07283-bab0-4f48-9ca3-56903ed14862") ) (segment (start 107.5576 104.4) (end 104.3432 107.6144) (width 0.2) (layer "F.Cu") (net 13) (uuid "2e6904a3-56ce-4231-8d70-972058d21180") ) (segment (start 114.3189 108.2324) (end 110.4865 104.4) (width 0.2) (layer "F.Cu") (net 13) (uuid "9e7a01f0-9788-410c-ba75-dcd7a2c78959") ) (segment (start 104.3432 107.6144) (end 100.7079 107.6144) (width 0.2) (layer "F.Cu") (net 13) (uuid "bf7aba78-36c0-4bcb-b4c9-64ba22976b1f") ) (segment (start 75.6847 77.2457) (end 75.3472 77.5832) (width 0.25) (layer "F.Cu") (net 14) (uuid "70e51aca-04b7-4d71-90f9-00f64c34a477") ) (segment (start 75.6847 75.3582) (end 75.6847 77.2457) (width 0.25) (layer "F.Cu") (net 14) (uuid "e52f6904-4867-4fb6-b5b6-fa7bcffeca65") ) (segment (start 114.3189 85.7324) (end 110.4432 81.8567) (width 0.2) (layer "F.Cu") (net 15) (uuid "289095cb-84fc-4bba-a062-f490c6650303") ) (segment (start 104.3135 84.7405) (end 104.0831 84.7405) (width 0.2) (layer "F.Cu") (net 15) (uuid "362a6e7b-6df6-4149-9d07-66aa8107c93a") ) (segment (start 110.4432 81.8567) (end 107.1973 81.8567) (width 0.2) (layer "F.Cu") (net 15) (uuid "67ed9bfd-96e9-47c4-8a3a-f461326a5ea8") ) (segment (start 104.0751 84.7325) (end 100.326 84.7325) (width 0.2) (layer "F.Cu") (net 15) (uuid "6db3c826-8408-4e24-82aa-9c2325ea9a93") ) (segment (start 104.0831 84.7405) (end 104.0751 84.7325) (width 0.2) (layer "F.Cu") (net 15) (uuid "82a9ebe8-e2bd-449f-9004-e49794748b8c") ) (segment (start 107.1973 81.8567) (end 104.3135 84.7405) (width 0.2) (layer "F.Cu") (net 15) (uuid "f5aee96f-b115-4b82-913d-c1d03dc7e6c8") ) (segment (start 40.4876 85.0919) (end 40.4876 83.3718) (width 0.25) (layer "F.Cu") (net 16) (uuid "0c8fd016-c0ae-4b92-b433-dc20d5463206") ) (segment (start 104.3135 96.3368) (end 100.6803 96.3368) (width 0.2) (layer "F.Cu") (net 17) (uuid "5935ee8e-62a3-4292-bf90-537ca1f43a94") ) (segment (start 114.3189 96.9324) (end 110.4865 93.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "998f18cd-2049-4f8b-83fb-b388dfa8e909") ) (segment (start 110.4865 93.1) (end 107.5503 93.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "b312cd8f-b468-4b71-9038-c53ecf4de601") ) (segment (start 100.6803 96.3368) (end 100.326 95.9825) (width 0.2) (layer "F.Cu") (net 17) (uuid "c76662d3-62ee-4f84-88ec-9a9cff604c58") ) (segment (start 107.5503 93.1) (end 104.3135 96.3368) (width 0.2) (layer "F.Cu") (net 17) (uuid "fea914a7-7c99-48d0-829b-59960eb29c79") ) (segment (start 60.815 120.65) (end 60.265 120.1) (width 0.25) (layer "F.Cu") (net 18) (uuid "4addf2f3-d2b8-4ccf-8d0e-a6f4c9854436") ) (segment (start 62.0776 128.4732) (end 61.8 128.1956) (width 0.25) (layer "F.Cu") (net 18) (uuid "6a751e6f-365b-43fa-956f-33aa0258384a") ) (segment (start 87.63 115.6716) (end 84.8868 118.4148) (width 0.2) (layer "F.Cu") (net 18) (uuid "a91aa24f-7438-4c7f-86c5-36bcd1e04e0b") ) (segment (start 87.63 113.03) (end 87.63 115.6716) (width 0.2) (layer "F.Cu") (net 18) (uuid "bc0af609-1bc7-448b-b6f4-635296123cbb") ) (segment (start 84.8868 118.4148) (end 64.5352 118.4148) (width 0.2) (layer "F.Cu") (net 18) (uuid "bd3ca050-b167-40db-b9d4-c23697333410") ) (segment (start 62.65 120.65) (end 60.815 120.65) (width 0.25) (layer "F.Cu") (net 18) (uuid "cc7ea8ba-5bfa-43e0-a8fa-e103351b40db") ) (segment (start 62.95 120) (end 62.95 120.95) (width 0.2) (layer "F.Cu") (net 18) (uuid "d62da30a-161f-452e-884d-c4d9103c0595") ) (segment (start 61.8 128.1956) (end 61.8 122.1) (width 0.25) (layer "F.Cu") (net 18) (uuid "d7f88ac2-d427-4195-ad69-cfa75e19d41e") ) (segment (start 62.95 120.95) (end 62.65 120.65) (width 0.25) (layer "F.Cu") (net 18) (uuid "dcdd4a8a-22b9-454b-9795-a64e9f97a95a") ) (segment (start 61.8 122.1) (end 62.95 120.95) (width 0.25) (layer "F.Cu") (net 18) (uuid "f69ac30a-7004-4ca5-80ef-3376d30dfa6c") ) (segment (start 64.5352 118.4148) (end 62.95 120) (width 0.2) (layer "F.Cu") (net 18) (uuid "fc6a40c3-2533-490f-8033-da54429db085") ) (segment (start 89.2048 78.4044) (end 89.7328 77.8764) (width 0.2) (layer "F.Cu") (net 19) (uuid "0bbc0196-083c-4c80-89a0-e5a38221a903") ) (segment (start 89.7328 77.8764) (end 89.7328 77.6572) (width 0.2) (layer "F.Cu") (net 19) (uuid "2e5a00ce-773f-48cf-b133-096c07502d40") ) (segment (start 51.7 127.8) (end 51.7 130.04) (width 0.2) (layer "F.Cu") (net 19) (uuid "5a6cca9b-320a-4b2b-9a1d-9e7c86099b61") ) (segment (start 51.9176 119.634) (end 51.9176 124.5556) (width 0.2) (layer "F.Cu") (net 19) (uuid "5ed690a1-f008-4eda-ab7e-b30d9db6c792") ) (segment (start 51.9176 124.5556) (end 50.0828 126.3904) (width 0.2) (layer "F.Cu") (net 19) (uuid "77bd464b-d9ce-4ade-9ae6-f390c4a3fed0") ) (segment (start 50.2904 126.3904) (end 51.7 127.8) (width 0.2) (layer "F.Cu") (net 19) (uuid "81cb71dc-1916-45c7-9e47-178b52bcfedf") ) (segment (start 89.2048 79.6036) (end 89.2048 78.4044) (width 0.2) (layer "F.Cu") (net 19) (uuid "8dced5b8-7fc2-4de1-a42e-30ea14ee4287") ) (segment (start 91.67 75.72) (end 91.67 72.5564) (width 0.2) (layer "F.Cu") (net 19) (uuid "90425da0-c7dc-4424-adb5-b43c0315c937") ) (segment (start 89.7328 77.6572) (end 91.67 75.72) (width 0.2) (layer "F.Cu") (net 19) (uuid "aa5433df-ca3e-4706-ac6f-8bfee2c639d9") ) (segment (start 91.67 72.5564) (end 91.67 68.9564) (width 0.2) (layer "F.Cu") (net 19) (uuid "dc04da95-8388-4b0b-affc-262cb62788c6") ) (segment (start 46.99 114.7064) (end 51.9176 119.634) (width 0.2) (layer "F.Cu") (net 19) (uuid "e049ff65-f335-4e85-8e36-fa016cb76707") ) (segment (start 50.0828 126.3904) (end 50.2904 126.3904) (width 0.2) (layer "F.Cu") (net 19) (uuid "e1bd8534-c440-41ad-9514-a29bc87df6d2") ) (segment (start 46.99 113.03) (end 46.99 114.7064) (width 0.2) (layer "F.Cu") (net 19) (uuid "f44fcfd3-93fb-4f94-89b3-7808cf70164a") ) (via (at 89.2048 79.6036) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 19) (uuid "2d0ad4c9-6cf2-4d6a-8018-d6a459cc03e4") ) (segment (start 53.984314 109.675) (end 50.375 109.675) (width 0.2) (layer "In1.Cu") (net 19) (uuid "04b91d80-ced3-4121-8296-99ed8b8184ac") ) (segment (start 50.375 109.675) (end 47.02 113.03) (width 0.2) (layer "In1.Cu") (net 19) (uuid "454b4fb4-4fe6-43ee-adf2-bba35874be1e") ) (segment (start 88.7762 79.175) (end 74.0378 79.175) (width 0.2) (layer "In1.Cu") (net 19) (uuid "579d2112-502f-4df6-be55-e5113f956e0a") ) (segment (start 58.39 94.8228) (end 58.39 105.269314) (width 0.2) (layer "In1.Cu") (net 19) (uuid "6865dc8a-b63d-4fe8-b724-88cbb293f1bd") ) (segment (start 58.39 105.269314) (end 53.984314 109.675) (width 0.2) (layer "In1.Cu") (net 19) (uuid "84aee4be-b1b5-4c02-97ae-9f8b21670cfd") ) (segment (start 47.02 113.03) (end 46.99 113.03) (width 0.2) (layer "In1.Cu") (net 19) (uuid "932fbf7a-bc4a-4489-8e97-1e101d551a34") ) (segment (start 89.2048 79.6036) (end 88.7762 79.175) (width 0.2) (layer "In1.Cu") (net 19) (uuid "9e3bc609-d485-46d3-8423-5dda847a4139") ) (segment (start 74.0378 79.175) (end 58.39 94.8228) (width 0.2) (layer "In1.Cu") (net 19) (uuid "e3973c5a-5c6c-4e3d-bddc-423dd41a7a46") ) (segment (start 89.13 74.86) (end 89.13 72.5564) (width 0.2) (layer "F.Cu") (net 20) (uuid "113821e1-4ed8-41c3-b849-56afb70affc4") ) (segment (start 89.7328 72.6088) (end 89.6804 72.5564) (width 0.2) (layer "F.Cu") (net 20) (uuid "2dc7c57e-79b5-4e35-a70d-3867b9a24af0") ) (segment (start 87.2036 80.5488) (end 87.2236 80.5688) (width 0.2) (layer "F.Cu") (net 20) (uuid "38a687f7-1e09-49f7-a5d2-a12e9d0a5cfc") ) (segment (start 52.3176 119.351914) (end 52.3176 124.721286) (width 0.2) (layer "F.Cu") (net 20) (uuid "6f031f23-d1f1-42d1-88c0-77d437c314ad") ) (segment (start 87.2036 77.8764) (end 87.2036 76.7864) (width 0.2) (layer "F.Cu") (net 20) (uuid "79d8c322-5225-42e3-af3b-453552caada6") ) (segment (start 52.7 128) (end 52.7 130.04) (width 0.2) (layer "F.Cu") (net 20) (uuid "7e196c7d-1774-468d-bf7e-ef4b6a2ab7e8") ) (segment (start 49.53 116.564314) (end 52.3176 119.351914) (width 0.2) (layer "F.Cu") (net 20) (uuid "7f813417-d379-440c-948d-6dc73639ed12") ) (segment (start 49.53 113.03) (end 49.53 116.564314) (width 0.2) (layer "F.Cu") (net 20) (uuid "83aed779-d9a2-4d09-8be8-0704ddd29255") ) (segment (start 89.13 72.5564) (end 89.13 68.9564) (width 0.2) (layer "F.Cu") (net 20) (uuid "86338454-3794-4b5d-a3b0-220d6dc5e64d") ) (segment (start 52.3176 124.721286) (end 51.85 125.188886) (width 0.2) (layer "F.Cu") (net 20) (uuid "b3fc2053-305b-4a6f-8311-d5b68833329c") ) (segment (start 51.85 127.15) (end 52.7 128) (width 0.2) (layer "F.Cu") (net 20) (uuid "c746e1f8-eb15-4469-adda-ed86b82559c1") ) (segment (start 87.2036 77.8764) (end 87.2036 80.5488) (width 0.2) (layer "F.Cu") (net 20) (uuid "d5b81206-0076-454e-b311-b3044a0a1699") ) (segment (start 51.85 125.188886) (end 51.85 126.3904) (width 0.2) (layer "F.Cu") (net 20) (uuid "e0f97549-626a-4fb9-8df8-32f14245b1be") ) (segment (start 51.85 126.3904) (end 51.85 127.15) (width 0.2) (layer "F.Cu") (net 20) (uuid "f86095c7-7af0-411d-b5fe-a929d29aa1f3") ) (segment (start 87.2036 76.7864) (end 89.13 74.86) (width 0.2) (layer "F.Cu") (net 20) (uuid "fb4e6377-6dba-4af7-89d5-1873df92a6da") ) (via (at 87.2236 80.5688) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 20) (uuid "f11f573e-b6e5-412d-a26d-5b8e6b096d70") ) (segment (start 87.1728 80.518) (end 74.382 80.518) (width 0.2) (layer "In1.Cu") (net 20) (uuid "3abb394b-02c2-4444-b4f8-aad25f9b12ce") ) (segment (start 50.540686 110.075) (end 49.53 111.085686) (width 0.2) (layer "In1.Cu") (net 20) (uuid "5099d43e-ed32-4b5d-bce3-d1b02a6acc3b") ) (segment (start 60.92 93.98) (end 60.92 96.05) (width 0.2) (layer "In1.Cu") (net 20) (uuid "56bb2315-94e9-4ba6-9c02-0b127f74bdf0") ) (segment (start 54.15 110.075) (end 50.540686 110.075) (width 0.2) (layer "In1.Cu") (net 20) (uuid "72f7f8ad-3b01-491b-99e3-2568d5d8f8f5") ) (segment (start 60.92 96.05) (end 58.83 98.14) (width 0.2) (layer "In1.Cu") (net 20) (uuid "7da0b6c7-99af-4273-8f21-c9859719fa85") ) (segment (start 49.53 111.085686) (end 49.53 113.03) (width 0.2) (layer "In1.Cu") (net 20) (uuid "b3fa15e2-b037-41a9-8289-bfb55723883e") ) (segment (start 74.382 80.518) (end 60.92 93.98) (width 0.2) (layer "In1.Cu") (net 20) (uuid "bdb23689-743c-4efb-8d83-62e0704ef766") ) (segment (start 87.2236 80.5688) (end 87.1728 80.518) (width 0.2) (layer "In1.Cu") (net 20) (uuid "e71da5eb-9507-4dee-85aa-266f70158e49") ) (segment (start 58.83 98.14) (end 58.83 105.395) (width 0.2) (layer "In1.Cu") (net 20) (uuid "f0050d3b-f258-4a3c-98ce-35daf0e2d5c7") ) (segment (start 58.83 105.395) (end 54.15 110.075) (width 0.2) (layer "In1.Cu") (net 20) (uuid "f353aa87-312f-4669-955b-8a12b396610e") ) (segment (start 39.37 113.03) (end 39.37 114.59) (width 0.2) (layer "F.Cu") (net 21) (uuid "212256d8-a49e-41f3-969c-a096e4cf3fd7") ) (segment (start 48.3308 122.1432) (end 48.3308 122.7328) (width 0.2) (layer "F.Cu") (net 21) (uuid "4339483c-9dba-4600-9e64-4b252ee58a9d") ) (segment (start 42.4688 116.2812) (end 48.3308 122.1432) (width 0.2) (layer "F.Cu") (net 21) (uuid "7c1292a6-44f6-460b-9eea-4d5cfd467f8b") ) (segment (start 48.3308 122.7328) (end 46.4996 122.7328) (width 0.2) (layer "F.Cu") (net 21) (uuid "9016f7e5-0377-4828-875a-96a4397f3782") ) (segment (start 46.4996 122.7328) (end 45.7 121.9332) (width 0.2) (layer "F.Cu") (net 21) (uuid "cc4e08b2-8e6e-4d8c-9ce7-54587d7b8522") ) (segment (start 41.0612 116.2812) (end 42.4688 116.2812) (width 0.2) (layer "F.Cu") (net 21) (uuid "d451f536-d0de-4d43-8c46-44170274aae3") ) (segment (start 39.37 114.59) (end 41.0612 116.2812) (width 0.2) (layer "F.Cu") (net 21) (uuid "da5be4f6-8904-466f-a8ec-b0c52693ed3c") ) (segment (start 48.8824 123.5328) (end 44.7596 123.5328) (width 0.2) (layer "F.Cu") (net 22) (uuid "1b6294d3-8b4c-4184-987c-4903920940c3") ) (segment (start 41.91 113.03) (end 41.91 114.9604) (width 0.2) (layer "F.Cu") (net 22) (uuid "1d715495-2058-4994-b4a2-ba738cf16100") ) (segment (start 49.1308 121.5008) (end 49.1308 123.2844) (width 0.2) (layer "F.Cu") (net 22) (uuid "1fe3e68f-eea4-4580-89cf-102c8e0d2693") ) (segment (start 48.3816 120.7516) (end 49.1308 121.5008) (width 0.2) (layer "F.Cu") (net 22) (uuid "2f57ade6-5acc-4279-9e32-4643560fee0f") ) (segment (start 41.91 114.9604) (end 47.7012 120.7516) (width 0.2) (layer "F.Cu") (net 22) (uuid "41f970a5-d552-4445-8418-1ac04f941a89") ) (segment (start 47.7012 120.7516) (end 48.3816 120.7516) (width 0.2) (layer "F.Cu") (net 22) (uuid "56d1cce6-ddae-4c05-a090-c66fcdffd994") ) (segment (start 44.7596 123.5328) (end 43.16 121.9332) (width 0.2) (layer "F.Cu") (net 22) (uuid "94cb1120-9cc8-44af-a2f8-c8fe70c3ff81") ) (segment (start 49.1308 123.2844) (end 48.8824 123.5328) (width 0.2) (layer "F.Cu") (net 22) (uuid "a4c01c73-06f8-4550-bbda-84dae8a01336") ) (segment (start 69.8294 57.5056) (end 66.7216 57.5056) (width 1.5) (layer "F.Cu") (net 23) (uuid "0690b471-ad88-43a3-af22-076d068063a3") ) (segment (start 71.0994 58.7756) (end 69.8294 57.5056) (width 1.5) (layer "F.Cu") (net 23) (uuid "de2b40c8-746f-4884-ae71-567ced7569f3") ) (segment (start 66.7216 57.5056) (end 66.6972 57.4812) (width 1.5) (layer "F.Cu") (net 23) (uuid "fa37de4b-9d68-4bbd-a960-c8ffcfb036f5") ) (segment (start 85.71 62.3) (end 90.205 62.3) (width 0.25) (layer "F.Cu") (net 24) (uuid "25bfa637-3da2-45a3-a5b9-748cc3ccbcd7") ) (segment (start 83.7692 59.6) (end 83.7692 60.3592) (width 0.25) (layer "F.Cu") (net 24) (uuid "2a88f718-c806-43c3-8f6b-c3aca8f84151") ) (segment (start 90.205 62.3) (end 90.7525 61.7525) (width 0.25) (layer "F.Cu") (net 24) (uuid "2d24467d-0c98-40b5-9d16-38de71abc520") ) (segment (start 83.7692 60.3592) (end 85.71 62.3) (width 0.25) (layer "F.Cu") (net 24) (uuid "5417179d-0ea0-4582-a4da-f743a883a811") ) (segment (start 98.275 56.675) (end 98.95 56.675) (width 0.25) (layer "F.Cu") (net 24) (uuid "552aa1b9-a144-4718-a8d1-c788ca8b5938") ) (segment (start 90.7525 61.7525) (end 91.66 61.7525) (width 0.25) (layer "F.Cu") (net 24) (uuid "7636b0f9-e36a-4ae8-b27a-8fa4165186a3") ) (segment (start 91.66 61.7525) (end 92.6325 60.78) (width 0.25) (layer "F.Cu") (net 24) (uuid "914ef666-95d4-485a-a571-f527beed9d14") ) (segment (start 97.18 59.59) (end 97.18 57.77) (width 0.25) (layer "F.Cu") (net 24) (uuid "96e4cb61-7dfa-4083-a9e1-35d3e713e78e") ) (segment (start 97.18 57.77) (end 98.275 56.675) (width 0.25) (layer "F.Cu") (net 24) (uuid "993924de-f28e-4887-a806-2d9d67b012dc") ) (segment (start 92.6325 60.78) (end 95.99 60.78) (width 0.25) (layer "F.Cu") (net 24) (uuid "d0a540af-b2fe-4597-9b06-52eb77401482") ) (segment (start 95.99 60.78) (end 97.18 59.59) (width 0.25) (layer "F.Cu") (net 24) (uuid "d82b8854-1042-4ba6-9e0f-1ce1c59618ad") ) (segment (start 86.3092 58.4708) (end 84.9376 57.0992) (width 1.5) (layer "F.Cu") (net 25) (uuid "0ff343ee-7006-488c-b1df-40d21695079d") ) (segment (start 86.3092 59.6) (end 86.3092 58.4708) (width 1.5) (layer "F.Cu") (net 25) (uuid "1d832ea2-f25f-4c29-b76b-098170d0a0ee") ) (segment (start 86.3092 59.6) (end 86.3092 57.8808) (width 0.2) (layer "F.Cu") (net 25) (uuid "3672c000-5a36-4875-a7be-744a068afdab") ) (segment (start 79.7258 57.0992) (end 78.0494 58.7756) (width 1.5) (layer "F.Cu") (net 25) (uuid "580bec73-337b-458e-87aa-2a16bca4b3a5") ) (segment (start 87.39 56.8) (end 90.7475 56.8) (width 0.2) (layer "F.Cu") (net 25) (uuid "59dd9de5-8c50-4cd2-8b1b-19a2e3944688") ) (segment (start 86.3092 57.8808) (end 87.39 56.8) (width 0.2) (layer "F.Cu") (net 25) (uuid "60a52229-ce88-4582-afba-e60dcd8d0e80") ) (segment (start 90.7475 56.8) (end 91.4675 57.52) (width 0.2) (layer "F.Cu") (net 25) (uuid "6b4fe000-1b59-47bd-b4a5-804bd502ddf9") ) (segment (start 84.9376 57.0992) (end 79.7258 57.0992) (width 1.5) (layer "F.Cu") (net 25) (uuid "6eacb3e4-5078-4e27-a4dd-b62caaaa3751") ) (segment (start 73.8208 123.9878) (end 75.21 122.5986) (width 0.2) (layer "In2.Cu") (net 27) (uuid "1639104c-a851-4fec-b442-0217d5c4dd11") ) (segment (start 75.21 113.31) (end 74.93 113.03) (width 0.2) (layer "In2.Cu") (net 27) (uuid "5a82b49e-c6e9-4e4e-b9ab-260fb40cdd08") ) (segment (start 75.21 122.5986) (end 75.21 113.31) (width 0.2) (layer "In2.Cu") (net 27) (uuid "e34b0f79-2a2a-49bd-b974-941f7adaf81d") ) (segment (start 71.2808 121.4478) (end 71.2808 119.5408) (width 0.2) (layer "In2.Cu") (net 28) (uuid "ace6c94a-2921-4d2f-8433-b983eefcbfba") ) (segment (start 71.2808 119.5408) (end 64.77 113.03) (width 0.2) (layer "In2.Cu") (net 28) (uuid "d6ed7d9a-655b-46aa-99dc-dee6c35bf70e") ) (segment (start 71.2808 123.9878) (end 69.9 122.607) (width 0.2) (layer "In1.Cu") (net 29) (uuid "13e66031-a42a-4b87-a7b1-a728dd49f34f") ) (segment (start 72.4 113.04) (end 72.39 113.03) (width 0.2) (layer "In1.Cu") (net 29) (uuid "1a97e0ef-2645-4c4a-b8d9-5c6df53850e4") ) (segment (start 72.4 116.15) (end 72.4 113.04) (width 0.2) (layer "In1.Cu") (net 29) (uuid "871ef82c-217d-4fa9-be09-cdc488197f30") ) (segment (start 69.9 122.607) (end 69.9 118.65) (width 0.2) (layer "In1.Cu") (net 29) (uuid "9a6e2eea-abe0-42e3-b19d-fc309eade110") ) (segment (start 69.9 118.65) (end 72.4 116.15) (width 0.2) (layer "In1.Cu") (net 29) (uuid "a0ee3ffd-e7c7-4426-b697-c7dac5c257f3") ) (segment (start 71.2808 126.5278) (end 67.31 122.557) (width 0.2) (layer "In1.Cu") (net 30) (uuid "aae9c34d-c0ef-4376-aabc-bc613bce79c7") ) (segment (start 67.31 122.557) (end 67.31 113.03) (width 0.2) (layer "In1.Cu") (net 30) (uuid "e347733c-7048-4730-8ce8-e5d67f1409d4") ) (segment (start 72.55 120.05) (end 77.47 115.13) (width 0.2) (layer "In1.Cu") (net 31) (uuid "0640dc1f-6b4b-4658-b4e5-e1009f649a50") ) (segment (start 72.55 127.7986) (end 72.55 120.05) (width 0.2) (layer "In1.Cu") (net 31) (uuid "0dbc45fe-4250-4281-9174-0e09d865b8c6") ) (segment (start 77.47 115.13) (end 77.47 113.03) (width 0.2) (layer "In1.Cu") (net 31) (uuid "45e3fbb9-cde2-4da1-95ca-72743c31bbdf") ) (segment (start 71.2808 129.0678) (end 72.55 127.7986) (width 0.2) (layer "In1.Cu") (net 31) (uuid "751b75be-b601-471b-97d0-3351888cb7be") ) (segment (start 103.05 114.05) (end 103.35 114.35) (width 0.2) (layer "F.Cu") (net 34) (uuid "03e30fc9-c4ad-4121-aeee-ff8b33bd3187") ) (segment (start 110.587686 115.3) (end 105.2 115.3) (width 0.2) (layer "F.Cu") (net 34) (uuid "3b0b9024-d15f-411f-87f3-adcbba377cd1") ) (segment (start 103.35 114.35) (end 103.35 115.6963) (width 0.2) (layer "F.Cu") (net 34) (uuid "7fb6438c-2592-4d85-9b60-e0c46473c01f") ) (segment (start 103.35 115.6963) (end 103.7317 116.078) (width 0.2) (layer "F.Cu") (net 34) (uuid "822e0e42-9479-4288-a95a-10622f424460") ) (segment (start 114.3044 117.0424) (end 112.330086 117.0424) (width 0.2) (layer "F.Cu") (net 34) (uuid "8fbb3c3b-5713-411b-9ad1-6e25a9705ff2") ) (segment (start 112.330086 117.0424) (end 110.587686 115.3) (width 0.2) (layer "F.Cu") (net 34) (uuid "ae62cef0-ffc6-4427-9ec0-812a2de7f7bd") ) (segment (start 105.2 115.3) (end 103.95 114.05) (width 0.2) (layer "F.Cu") (net 34) (uuid "f29c264a-55fe-49e3-9ca8-83eb20054977") ) (segment (start 103.95 114.05) (end 103.05 114.05) (width 0.2) (layer "F.Cu") (net 34) (uuid "f947ab7a-b51b-44be-a487-d6b460257a3d") ) (segment (start 114.3189 105.6924) (end 112.344586 105.6924) (width 0.2) (layer "F.Cu") (net 35) (uuid "2806c0ed-29dd-486d-8bf3-8d33cacc89da") ) (segment (start 102.95 103.35) (end 103.6809 104.0809) (width 0.2) (layer "F.Cu") (net 35) (uuid "437f7cd0-011c-4b20-be79-62e3e257188f") ) (segment (start 102.95 102.85) (end 102.95 103.35) (width 0.2) (layer "F.Cu") (net 35) (uuid "59315b8d-ecf0-49c4-8581-d04b16b828e3") ) (segment (start 110.652186 104) (end 104.95 104) (width 0.2) (layer "F.Cu") (net 35) (uuid "67808960-10ce-4232-bd23-8abd2ed530f3") ) (segment (start 112.344586 105.6924) (end 110.652186 104) (width 0.2) (layer "F.Cu") (net 35) (uuid "89abae47-a6d2-4046-82ce-3a74cfd76bb5") ) (segment (start 104.95 104) (end 103.8 102.85) (width 0.2) (layer "F.Cu") (net 35) (uuid "8eced3c3-7d0a-4143-a052-2173753411be") ) (segment (start 103.6809 104.0809) (end 103.6809 104.648) (width 0.2) (layer "F.Cu") (net 35) (uuid "b4fdf22c-cdb8-44a1-9c4f-063809d39386") ) (segment (start 103.8 102.85) (end 102.95 102.85) (width 0.2) (layer "F.Cu") (net 35) (uuid "ba904ad1-8d01-4c8b-b7d0-8d83bd2de39a") ) (segment (start 61.6172 57.4812) (end 58.6682 57.4812) (width 1.5) (layer "F.Cu") (net 37) (uuid "4b8daf49-8e28-4471-bc5c-6984b1d01c47") ) (segment (start 58.6682 57.4812) (end 57.4754 58.674) (width 1.5) (layer "F.Cu") (net 37) (uuid "fb910625-3977-4ae6-9e79-7781b55c5ee0") ) (segment (start 98.915 123.11) (end 100.4475 123.11) (width 0.25) (layer "F.Cu") (net 38) (uuid "88c8d9fc-698c-4235-a5c1-cd6a9662e5cf") ) (segment (start 100.4475 123.11) (end 100.6775 123.34) (width 0.25) (layer "F.Cu") (net 38) (uuid "afd3558e-cf17-42f6-86a4-3f5c156327d0") ) (segment (start 83.2085 124.9172) (end 84.7852 124.9172) (width 0.2) (layer "F.Cu") (net 39) (uuid "5fe3be12-1882-4e56-8e99-6ea0b69dda60") ) (via (at 84.7852 124.9172) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 39) (uuid "364bb67d-844e-4ca1-ba51-6f7b0d5e8cab") ) (segment (start 76.175 116.307) (end 76.175 111.25) (width 0.2) (layer "In2.Cu") (net 39) (uuid "2c8a94da-1ede-4c6d-8c67-50c7e5272c81") ) (segment (start 76.175 111.25) (end 71.8 106.875) (width 0.2) (layer "In2.Cu") (net 39) (uuid "6ec7db6c-d4b3-4f89-8a9e-32d6bf9bbcaf") ) (segment (start 64.77 104.52) (end 64.77 95.25) (width 0.2) (layer "In2.Cu") (net 39) (uuid "7a1ac09b-1fea-4f50-8cc7-89318372cb16") ) (segment (start 71.8 106.875) (end 67.125 106.875) (width 0.2) (layer "In2.Cu") (net 39) (uuid "8e503771-9a09-47b1-aafd-7641708ff44d") ) (segment (start 84.7852 124.9172) (end 76.175 116.307) (width 0.2) (layer "In2.Cu") (net 39) (uuid "8f913459-6400-435c-bff1-fbcbbd346058") ) (segment (start 67.125 106.875) (end 64.77 104.52) (width 0.2) (layer "In2.Cu") (net 39) (uuid "c99eb08d-45d1-436d-b838-0f68aaad0688") ) (segment (start 81.3835 127.1967) (end 81.448 127.2612) (width 0.2) (layer "F.Cu") (net 40) (uuid "9155645d-963d-4f4f-bf0e-a7cea5892847") ) (segment (start 81.3835 124.9172) (end 81.3835 127.1967) (width 0.2) (layer "F.Cu") (net 40) (uuid "a3cc98c9-2f7e-4aad-8492-c71670881790") ) (segment (start 82.448 127.2612) (end 88.948 127.2612) (width 0.25) (layer "F.Cu") (net 40) (uuid "e85000e8-eede-4884-acdb-a0c555449d7b") ) (segment (start 101.9067 116.078) (end 101.9067 114.7083) (width 0.2) (layer "F.Cu") (net 42) (uuid "0f5762fa-0516-4de3-bcff-7f2d259ec5f3") ) (segment (start 83.35 88.43) (end 83.35 86.6125) (width 0.2) (layer "F.Cu") (net 42) (uuid "13484d3a-9643-447d-b536-62b4955bc17e") ) (segment (start 101.9067 114.7083) (end 101.9048 114.7064) (width 0.2) (layer "F.Cu") (net 42) (uuid "3ab64c37-c4d0-445b-844f-38e62bb377a5") ) (segment (start 84.1248 89.2048) (end 83.35 88.43) (width 0.2) (layer "F.Cu") (net 42) (uuid "c0047313-01c6-46b8-be39-d7367ff07eb8") ) (via (at 101.9048 114.7064) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 42) (uuid "73628105-d2d9-4c2b-b102-5eeb4287b190") ) (via (at 84.1248 89.2048) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 42) (uuid "b650f719-2136-41d9-91ff-464b64b98326") ) (segment (start 84.1248 89.2048) (end 86.6648 89.2048) (width 0.2) (layer "In1.Cu") (net 42) (uuid "5d826906-a71a-400c-b6dd-1c0167a713b2") ) (segment (start 101.9048 104.4448) (end 101.9048 114.7064) (width 0.2) (layer "In1.Cu") (net 42) (uuid "7b00e1f1-af43-4385-be6f-3a332e275b68") ) (segment (start 86.6648 89.2048) (end 101.9048 104.4448) (width 0.2) (layer "In1.Cu") (net 42) (uuid "9cd48387-e2d2-4c59-a0d1-81ade47033fd") ) (segment (start 82.08 90.17) (end 82.75 89.5) (width 0.2) (layer "F.Cu") (net 43) (uuid "18c26ccf-244b-481e-b249-006e964d9b6b") ) (segment (start 60.67 90.17) (end 82.08 90.17) (width 0.2) (layer "F.Cu") (net 43) (uuid "2597f14d-5c05-4e71-9a35-e034b5cbb610") ) (segment (start 58.42 106.68) (end 58.42 92.42) (width 0.2) (layer "F.Cu") (net 43) (uuid "47fc4c96-1665-4553-8520-974ff62b53d8") ) (segment (start 82.75 89.5) (end 82.75 86.6625) (width 0.2) (layer "F.Cu") (net 43) (uuid "681be54f-bea4-4720-aa70-de188d51278e") ) (segment (start 82.75 86.6625) (end 82.7 86.6125) (width 0.2) (layer "F.Cu") (net 43) (uuid "74ee12d3-da44-46a3-bb48-feca2f6a21bf") ) (segment (start 58.42 92.42) (end 60.67 90.17) (width 0.2) (layer "F.Cu") (net 43) (uuid "c5f71ebe-099d-4ef6-9bbf-9d77e689ecc3") ) (segment (start 52.07 113.03) (end 58.42 106.68) (width 0.2) (layer "F.Cu") (net 43) (uuid "e6d44306-636a-42ca-afb4-7e1c453f86e2") ) (segment (start 84.25 90.57) (end 84.8248 89.9952) (width 0.2) (layer "F.Cu") (net 44) (uuid "0506e84d-dc30-45a3-98ad-9c48c8284f06") ) (segment (start 84.65 87.4) (end 84.65 86.6125) (width 0.2) (layer "F.Cu") (net 44) (uuid "0dd630ee-4207-4f4a-bb54-6f7d9a75af16") ) (segment (start 60.96 92.3036) (end 60.96 96.1644) (width 0.2) (layer "F.Cu") (net 44) (uuid "1ff0841d-0925-4f10-96dc-41ea5ce2a8ab") ) (segment (start 60.96 96.1644) (end 58.8772 98.2472) (width 0.2) (layer "F.Cu") (net 44) (uuid "26cda209-a0d4-4cda-b36d-aa970aca0477") ) (segment (start 62.6936 90.57) (end 60.96 92.3036) (width 0.2) (layer "F.Cu") (net 44) (uuid "3121b6d5-01f1-4a93-80c9-b6e02939f724") ) (segment (start 84.25 90.57) (end 62.6936 90.57) (width 0.2) (layer "F.Cu") (net 44) (uuid "44017247-c747-4c14-b21f-327fa0777b09") ) (segment (start 84.8248 89.9952) (end 84.8248 87.5748) (width 0.2) (layer "F.Cu") (net 44) (uuid "5b6fa42e-a450-46b7-b850-4bc2471909fb") ) (segment (start 54.61 111.055686) (end 54.61 113.03) (width 0.2) (layer "F.Cu") (net 44) (uuid "76c6203f-81ab-4a32-a72f-e30f3cf97f67") ) (segment (start 58.8772 106.788486) (end 54.61 111.055686) (width 0.2) (layer "F.Cu") (net 44) (uuid "8e397d72-a34f-40d6-9f85-d344643236f5") ) (segment (start 58.8772 98.2472) (end 58.8772 106.788486) (width 0.2) (layer "F.Cu") (net 44) (uuid "ba49de74-acb0-4fdf-81dc-a004e5ac101b") ) (segment (start 84.8248 87.5748) (end 84.65 87.4) (width 0.2) (layer "F.Cu") (net 44) (uuid "cd2de8b6-9bb7-468b-bb56-b62c66dc31f3") ) (segment (start 87.9348 89.2048) (end 87.73 89) (width 0.2) (layer "F.Cu") (net 45) (uuid "1201b680-b21a-4181-8a48-86451c8f34da") ) (segment (start 85.6 89) (end 85.3 88.7) (width 0.2) (layer "F.Cu") (net 45) (uuid "5e8626b7-f403-45d8-be87-601929a42960") ) (segment (start 85.3 88.7) (end 85.3 86.6125) (width 0.2) (layer "F.Cu") (net 45) (uuid "76bb7557-1248-4ea3-b1e4-8d6701d8f782") ) (segment (start 101.8559 103.1059) (end 100.7 101.95) (width 0.25) (layer "F.Cu") (net 45) (uuid "7b92a4eb-444e-415c-9591-51636fb8ed15") ) (segment (start 87.73 89) (end 85.6 89) (width 0.2) (layer "F.Cu") (net 45) (uuid "ae3271bd-4ce3-4b0e-bec1-c1b8b676f084") ) (segment (start 101.8559 104.648) (end 101.8559 103.1059) (width 0.25) (layer "F.Cu") (net 45) (uuid "d4d43c8d-aa2d-4d5b-88f4-de44de947357") ) (via (at 100.7 101.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 45) (uuid "1f9bda7a-1e18-4721-971b-aa345040dfa2") ) (via (at 87.9348 89.2048) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 45) (uuid "619a8af7-8a1a-41bc-92fb-ad42230bab83") ) (segment (start 87.9348 89.340445) (end 100.544355 101.95) (width 0.2) (layer "In1.Cu") (net 45) (uuid "0c277494-9189-4657-94b2-5c651ac3e1e2") ) (segment (start 87.9348 89.2048) (end 87.9348 89.340445) (width 0.2) (layer "In1.Cu") (net 45) (uuid "28d299a8-00ca-4dd5-9204-b9ba6b0ef9dd") ) (segment (start 100.544355 101.95) (end 100.7 101.95) (width 0.2) (layer "In1.Cu") (net 45) (uuid "b3eb16a4-9822-4d64-9aae-b38fb431b128") ) (segment (start 85.95 81.7) (end 85.95 80.8875) (width 0.2) (layer "F.Cu") (net 46) (uuid "2f00cfa2-3141-47ff-b832-7c0e4dfc599a") ) (segment (start 101.8051 93.4212) (end 101.8051 92.1023) (width 0.2) (layer "F.Cu") (net 46) (uuid "5bb55593-b8cc-4ced-a619-f1629e23d878") ) (segment (start 88.2792 83.25) (end 87.5 83.25) (width 0.2) (layer "F.Cu") (net 46) (uuid "7a9f940c-5672-4c34-ae53-2007578eba72") ) (segment (start 89.2048 84.1756) (end 88.2792 83.25) (width 0.2) (layer "F.Cu") (net 46) (uuid "db7e8cb2-8339-492d-bf13-f3c46c312b1c") ) (segment (start 87.5 83.25) (end 85.95 81.7) (width 0.2) (layer "F.Cu") (net 46) (uuid "e83bc066-019d-4d5d-84b6-d73815469c7a") ) (segment (start 101.8051 92.1023) (end 101.5492 91.8464) (width 0.2) (layer "F.Cu") (net 46) (uuid "f16f6990-27c4-43a8-835f-bf12d696ad21") ) (via (at 89.2048 84.1756) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 46) (uuid "19561ef7-6888-4619-a28b-698f116b8938") ) (via (at 101.5492 91.8464) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 46) (uuid "54db33e9-6d05-487c-84b6-60f45fe3d120") ) (segment (start 96.8756 91.8464) (end 101.5492 91.8464) (width 0.2) (layer "In1.Cu") (net 46) (uuid "35f16fe7-0a8e-47fb-a4ef-8ee49130b7a8") ) (segment (start 89.2048 84.1756) (end 96.8756 91.8464) (width 0.2) (layer "In1.Cu") (net 46) (uuid "dc410ba0-a66d-41c1-a70f-5801a7ba0a44") ) (segment (start 101.5492 91.8464) (end 101.6 91.8464) (width 0.2) (layer "In1.Cu") (net 46) (uuid "def04d5a-5db8-4608-a614-f2a18ed2a6bc") ) (segment (start 87.4152 84.1756) (end 85.3 82.0604) (width 0.2) (layer "F.Cu") (net 47) (uuid "179ee5d9-1cac-455a-9bb1-efaa985dc324") ) (segment (start 85.3 82.0604) (end 85.3 80.8875) (width 0.2) (layer "F.Cu") (net 47) (uuid "d20463c7-3e89-4148-b1a9-f1b9e64f05ab") ) (segment (start 87.884 84.1756) (end 87.4152 84.1756) (width 0.2) (layer "F.Cu") (net 47) (uuid "ffe9d648-30d9-437d-bdcb-6d2eba526be7") ) (via (at 87.884 84.1756) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (uuid "f5ba2254-2044-4eb5-bf38-b97f038893a7") ) (segment (start 63.46 109.26) (end 59.69 113.03) (width 0.2) (layer "In1.Cu") (net 47) (uuid "0cf6ac74-8fe5-4667-90d9-a3f4c3ce31f9") ) (segment (start 71.71 84) (end 63.46 92.25) (width 0.2) (layer "In1.Cu") (net 47) (uuid "12c97b2b-6e1d-4a04-9f00-c29514db93a0") ) (segment (start 87.7084 84) (end 71.71 84) (width 0.2) (layer "In1.Cu") (net 47) (uuid "20a7b9a0-7f23-4c6b-8392-0f77db39bef3") ) (segment (start 63.46 92.25) (end 63.46 109.26) (width 0.2) (layer "In1.Cu") (net 47) (uuid "28a02dcc-4b42-4878-80d2-eadc748eab2e") ) (segment (start 87.884 84.1756) (end 87.7084 84) (width 0.2) (layer "In1.Cu") (net 47) (uuid "3bcb9086-eba8-4941-9986-9d036dcfce40") ) (segment (start 84 82.7456) (end 84 80.8875) (width 0.2) (layer "F.Cu") (net 48) (uuid "3ac923d4-1aa6-449b-8f5d-5d35ae53b8d6") ) (segment (start 101.8051 82.1944) (end 100.0252 82.1944) (width 0.2) (layer "F.Cu") (net 48) (uuid "3bc70015-275c-480d-b677-e3c249c5d05d") ) (segment (start 86.0044 85.0392) (end 86.0044 85.0392) (width 0.2) (layer "F.Cu") (net 48) (uuid "864e31fc-ef85-4261-84d7-9e1c374e9688") ) (segment (start 86.0044 84.75) (end 84 82.7456) (width 0.2) (layer "F.Cu") (net 48) (uuid "a486b50f-21e6-4bb2-9b3a-f6feaa609799") ) (segment (start 86.0044 85.0392) (end 86.0044 84.9884) (width 0.2) (layer "F.Cu") (net 48) (uuid "b7eb39c5-986a-405a-b8f1-d42a8ea80955") ) (via (at 86.0044 84.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 48) (uuid "8db3854d-186e-4405-926d-dbaaf5c89bde") ) (via (at 100.0252 82.1944) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 48) (uuid "e74e6d38-63a8-4304-9523-2c62c478062b") ) (segment (start 86.0044 83.4644) (end 88.138 81.3308) (width 0.2) (layer "In2.Cu") (net 48) (uuid "38729821-50f9-462b-8fbb-c3f1ef734e4c") ) (segment (start 86.0044 84.9884) (end 86.0044 83.4644) (width 0.2) (layer "In2.Cu") (net 48) (uuid "4687257c-b788-4cba-853b-5e409dbb7b77") ) (segment (start 99.1616 81.3308) (end 100.0252 82.1944) (width 0.2) (layer "In2.Cu") (net 48) (uuid "d2fada93-674c-4c39-80df-63aca4daa79d") ) (segment (start 88.138 81.3308) (end 99.1616 81.3308) (width 0.2) (layer "In2.Cu") (net 48) (uuid "d6850541-946d-4873-864d-1bf27fa88fa3") ) (segment (start 100.0252 82.1944) (end 100.076 82.1944) (width 0.2) (layer "In2.Cu") (net 48) (uuid "fe94f306-5486-446a-8082-a7ca77a7fc05") ) (segment (start 63.5 111.76) (end 63.5 92.42) (width 0.2) (layer "F.Cu") (net 49) (uuid "03cceff5-818c-4435-9984-9885ae885f84") ) (segment (start 64.95 90.97) (end 84.63 90.97) (width 0.2) (layer "F.Cu") (net 49) (uuid "22740510-adff-47cb-bf5c-4b3b3e380289") ) (segment (start 85.6 90) (end 88.12955 90) (width 0.2) (layer "F.Cu") (net 49) (uuid "280036f0-868a-447c-9089-5152536ee63e") ) (segment (start 88.12955 90) (end 89 89.12955) (width 0.2) (layer "F.Cu") (net 49) (uuid "3ec60d2f-cc69-4685-a317-4f0959b8e296") ) (segment (start 88.33 85.53) (end 85.26 85.53) (width 0.2) (layer "F.Cu") (net 49) (uuid "4117aae9-12c9-4668-890d-fbf5b9e04ed8") ) (segment (start 84.63 90.97) (end 85.6 90) (width 0.2) (layer "F.Cu") (net 49) (uuid "4841c0f1-cd72-49bf-9619-c04b1d019730") ) (segment (start 89 89.12955) (end 89 86.2) (width 0.2) (layer "F.Cu") (net 49) (uuid "7757e333-2869-43fc-8dae-cab1b433aeba") ) (segment (start 83.35 83.62) (end 83.35 80.8875) (width 0.2) (layer "F.Cu") (net 49) (uuid "7e669bd8-76c5-405b-a741-33e729604c9e") ) (segment (start 85.26 85.53) (end 83.35 83.62) (width 0.2) (layer "F.Cu") (net 49) (uuid "a6b0f74a-a010-4d34-a2e8-ffe9efc1da1a") ) (segment (start 89 86.2) (end 88.33 85.53) (width 0.2) (layer "F.Cu") (net 49) (uuid "d0ab13ee-85d7-4de8-9859-2c9b658e23d4") ) (segment (start 63.5 92.42) (end 64.95 90.97) (width 0.2) (layer "F.Cu") (net 49) (uuid "d326799f-1812-46f8-8270-9737b0ffd2ec") ) (segment (start 62.23 113.03) (end 63.5 111.76) (width 0.2) (layer "F.Cu") (net 49) (uuid "e0261082-8e82-42c1-865f-9f999185f2fe") ) (segment (start 99.825 66.1) (end 99.825 64.2589) (width 0.25) (layer "F.Cu") (net 56) (uuid "11163507-00d8-49fc-b808-233d9878ef3d") ) (segment (start 99.825 66.1) (end 101.032 66.1) (width 0.25) (layer "F.Cu") (net 56) (uuid "53413b77-f5b9-4d0f-ba42-eda3b4f79556") ) (segment (start 101.1428 65.9892) (end 101.092 65.9892) (width 0.25) (layer "F.Cu") (net 56) (uuid "814c5c00-c4fe-4dff-84bd-2025a36c422c") ) (segment (start 99.825 64.2589) (end 99.8613 64.2226) (width 0.25) (layer "F.Cu") (net 56) (uuid "a3c04c6f-923b-4a80-a94b-81f45f15adf5") ) (segment (start 101.032 66.1) (end 101.1428 65.9892) (width 0.25) (layer "F.Cu") (net 56) (uuid "af0da1e0-5ea3-4941-992a-a83460aa852e") ) (via (at 101.1428 65.9892) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (uuid "a9968687-ff7e-4aaa-9d40-ce5e1a7b0e1f") ) (segment (start 83.82 116.84) (end 80.01 113.03) (width 0.25) (layer "In2.Cu") (net 56) (uuid "1ec4c56f-1543-4c61-bff5-5db6ff5fa701") ) (segment (start 94.3864 94.6404) (end 94.3864 112.4204) (width 0.25) (layer "In2.Cu") (net 56) (uuid "7a7889fb-9ac1-4690-acdb-bd995e45cda5") ) (segment (start 89.9668 116.84) (end 83.82 116.84) (width 0.25) (layer "In2.Cu") (net 56) (uuid "a669b2f0-bb71-4373-8283-f5de5a73b6ce") ) (segment (start 101.1428 65.9892) (end 101.1428 87.884) (width 0.25) (layer "In2.Cu") (net 56) (uuid "a9b4927c-15f0-4467-a26c-ffe2aab6b3a2") ) (segment (start 101.1428 87.884) (end 94.3864 94.6404) (width 0.25) (layer "In2.Cu") (net 56) (uuid "e2bf2862-a99f-4ce9-9ba0-d85b738db444") ) (segment (start 94.3864 112.4204) (end 89.9668 116.84) (width 0.25) (layer "In2.Cu") (net 56) (uuid "fd2d9100-4f21-4936-b610-5426d59be794") ) (segment (start 100.63 60.35) (end 101.7 59.28) (width 0.25) (layer "F.Cu") (net 57) (uuid "5cfed1d7-8252-4a4b-a2c2-9cb25e7ea157") ) (segment (start 99.8125 60.35) (end 100.63 60.35) (width 0.25) (layer "F.Cu") (net 57) (uuid "c5525210-81fb-4067-9466-00934940276b") ) (via (at 101.7 59.28) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 57) (uuid "9691bd46-b6f0-47c6-8657-b9940bb22c8b") ) (segment (start 92.48 76.97) (end 96.09 73.36) (width 0.2) (layer "In2.Cu") (net 57) (uuid "212e66a2-fd56-4cfa-8794-71f87706588c") ) (segment (start 87.51 76.97) (end 92.48 76.97) (width 0.2) (layer "In2.Cu") (net 57) (uuid "357611fe-484f-4157-a5f7-a9df2b4b483c") ) (segment (start 85.3044 92.9244) (end 85.3044 79.1756) (width 0.2) (layer "In2.Cu") (net 57) (uuid "3a7c4dd2-7852-4875-979a-014951bf3d81") ) (segment (start 96.09 73.36) (end 96.09 64.89) (width 0.2) (layer "In2.Cu") (net 57) (uuid "5731fac2-4e1f-45ad-8648-28ceadbbda21") ) (segment (start 85.3044 79.1756) (end 87.51 76.97) (width 0.2) (layer "In2.Cu") (net 57) (uuid "904cb371-8940-4ad5-ae41-e742481be7f8") ) (segment (start 87.63 95.25) (end 85.3044 92.9244) (width 0.2) (layer "In2.Cu") (net 57) (uuid "9433ee80-b016-4570-8f80-ff4fe343b360") ) (segment (start 96.09 64.89) (end 101.7 59.28) (width 0.2) (layer "In2.Cu") (net 57) (uuid "b54e04e8-2e16-4a0c-8d1b-230bb3b3ee13") ) (segment (start 94.36 57.52) (end 93.2925 57.52) (width 0.25) (layer "F.Cu") (net 58) (uuid "20249162-52b7-438a-b39c-39a43f533321") ) (segment (start 95.5675 58.7275) (end 94.36 57.52) (width 0.25) (layer "F.Cu") (net 58) (uuid "4609d9be-16c6-4964-998c-49b2e8b865e6") ) (segment (start 95.92 58.7275) (end 95.5675 58.7275) (width 0.25) (layer "F.Cu") (net 58) (uuid "7f85d48a-840f-4fab-bf59-89e2f46fa7dd") ) (segment (start 98.226 106.2825) (end 95.5635 106.2825) (width 0.2) (layer "F.Cu") (net 59) (uuid "0f072f0b-f6db-47c8-859d-cf799127b31e") ) (segment (start 93.776 106.37) (end 93.726 106.32) (width 0.2) (layer "F.Cu") (net 59) (uuid "6ed85989-fda5-45b0-b8db-532cb1c8373f") ) (segment (start 93.726 106.32) (end 93.726 105.0544) (width 0.2) (layer "F.Cu") (net 59) (uuid "6f555ff9-b233-45ff-ba83-a7164894fdc5") ) (segment (start 95.476 106.37) (end 93.776 106.37) (width 0.2) (layer "F.Cu") (net 59) (uuid "abc4ce3a-0c63-483b-8c8d-9691bff389a4") ) (segment (start 93.726 105.0544) (end 93.6244 104.9528) (width 0.2) (layer "F.Cu") (net 59) (uuid "bb58f033-2165-4158-9df8-d7577d3cd1aa") ) (via (at 93.6244 104.9528) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 59) (uuid "9dce2b6e-5057-4347-8972-9daaab0a50e1") ) (segment (start 79.0956 93.6244) (end 77.47 95.25) (width 0.2) (layer "In1.Cu") (net 59) (uuid "86c039a9-d8fd-4ddd-a468-092c2fd274cd") ) (segment (start 93.6244 98.697515) (end 88.551285 93.6244) (width 0.2) (layer "In1.Cu") (net 59) (uuid "889ecc9d-8e5f-4a47-944f-01e0d8ff5929") ) (segment (start 93.6244 104.9528) (end 93.6244 98.697515) (width 0.2) (layer "In1.Cu") (net 59) (uuid "a2325180-f80c-47cd-b3f2-988dc4543b49") ) (segment (start 88.551285 93.6244) (end 79.0956 93.6244) (width 0.2) (layer "In1.Cu") (net 59) (uuid "fac16203-b7c4-46d3-adc8-a51ec1ee3051") ) (segment (start 98.226 95.0325) (end 95.5635 95.0325) (width 0.2) (layer "F.Cu") (net 60) (uuid "2d6c49e7-1f73-4f71-be4f-ae5950b2edf8") ) (segment (start 93.726 95.07) (end 93.726 93.726) (width 0.2) (layer "F.Cu") (net 60) (uuid "5a9fd650-5ca9-4c58-97a9-5a1eb9212c86") ) (segment (start 95.476 95.12) (end 93.776 95.12) (width 0.2) (layer "F.Cu") (net 60) (uuid "e7357767-35ce-4969-98f2-b778632a277f") ) (via (at 93.726 93.726) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 60) (uuid "3b06325d-5cb3-42d2-90d6-0cbdcf90b654") ) (segment (start 93.726 93.726) (end 88.5048 88.5048) (width 0.2) (layer "In1.Cu") (net 60) (uuid "267cb07b-ac08-475c-8ea1-70a8e3726ac0") ) (segment (start 80.3036 88.5048) (end 74.93 93.8784) (width 0.2) (layer "In1.Cu") (net 60) (uuid "579015ec-b0a0-4281-92c4-0195dbb211da") ) (segment (start 74.93 93.8784) (end 74.93 95.25) (width 0.2) (layer "In1.Cu") (net 60) (uuid "7f56c689-5e88-4046-8edb-8d01c4f69d2e") ) (segment (start 88.5048 88.5048) (end 80.3036 88.5048) (width 0.2) (layer "In1.Cu") (net 60) (uuid "db074cf8-899f-4a17-8c48-7b498a4530bf") ) (segment (start 98.226 83.7825) (end 95.5635 83.7825) (width 0.2) (layer "F.Cu") (net 61) (uuid "086270cd-64e3-49f1-8450-62ebeb878d18") ) (segment (start 95.476 83.87) (end 93.776 83.87) (width 0.2) (layer "F.Cu") (net 61) (uuid "2e320154-faca-4395-84ce-35a4dfa3c28d") ) (segment (start 93.726 83.82) (end 93.726 82.3976) (width 0.2) (layer "F.Cu") (net 61) (uuid "e2df7818-4670-4111-ac4b-dc7b62b7116a") ) (via (at 93.726 82.3976) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 61) (uuid "e08d80c7-ebaa-47b9-b0a0-9f9115014df6") ) (segment (start 90.5256 87.7316) (end 80.3148 87.7316) (width 0.2) (layer "In1.Cu") (net 61) (uuid "22e8752a-bd17-49a2-b7bc-94dbc340f4e3") ) (segment (start 93.726 82.3976) (end 95.4024 82.3976) (width 0.2) (layer "In1.Cu") (net 61) (uuid "4a8ec8a6-13ad-4e0f-b7d7-414f76e92b2f") ) (segment (start 103.2256 90.2208) (end 103.2256 93.5736) (width 0.2) (layer "In1.Cu") (net 61) (uuid "86d3688f-feb4-4183-8c6c-bddefa683f50") ) (segment (start 72.7964 95.25) (end 72.39 95.25) (width 0.2) (layer "In1.Cu") (net 61) (uuid "91acfb45-1342-4e71-8891-54495fd56f7e") ) (segment (start 103.0732 93.726) (end 96.52 93.726) (width 0.2) (layer "In1.Cu") (net 61) (uuid "91ebca8d-3506-4cc2-bcc6-764601fe0b98") ) (segment (start 103.2256 93.5736) (end 103.0732 93.726) (width 0.2) (layer "In1.Cu") (net 61) (uuid "9a16bc82-ab3c-46e8-96d3-01a98f1e4592") ) (segment (start 80.3148 87.7316) (end 72.7964 95.25) (width 0.2) (layer "In1.Cu") (net 61) (uuid "9c5ea577-33f8-4140-9e20-99fe3e310ccd") ) (segment (start 95.4024 82.3976) (end 103.2256 90.2208) (width 0.2) (layer "In1.Cu") (net 61) (uuid "a43da763-75ff-4e2c-aa68-4fd9d40219e8") ) (segment (start 96.52 93.726) (end 90.5256 87.7316) (width 0.2) (layer "In1.Cu") (net 61) (uuid "f89f86f9-beea-4bc5-a317-9f2f3af27ea4") ) (segment (start 112.344586 94.3924) (end 110.652186 92.7) (width 0.2) (layer "F.Cu") (net 62) (uuid "06eb0474-43bc-488b-be83-116498251480") ) (segment (start 110.652186 92.7) (end 105.05 92.7) (width 0.2) (layer "F.Cu") (net 62) (uuid "200d8744-e1f3-4b1f-ab1f-29a6f2c7bc18") ) (segment (start 103.1 91.55) (end 103.4 91.85) (width 0.2) (layer "F.Cu") (net 62) (uuid "5424590f-be60-4179-93af-c48734656ff5") ) (segment (start 114.3189 94.3924) (end 112.344586 94.3924) (width 0.2) (layer "F.Cu") (net 62) (uuid "610724fa-e1f1-4e8f-b9d8-f2481fdd4213") ) (segment (start 105.05 92.7) (end 103.9 91.55) (width 0.2) (layer "F.Cu") (net 62) (uuid "b4fe52a6-8570-41b1-b7e3-242b2ac29ee6") ) (segment (start 103.4 91.85) (end 103.4 93.1911) (width 0.2) (layer "F.Cu") (net 62) (uuid "c2620fa6-7f89-4529-987b-e0f8f2d9c672") ) (segment (start 103.4 93.1911) (end 103.6301 93.4212) (width 0.2) (layer "F.Cu") (net 62) (uuid "d38e141e-d6dc-4fe6-8153-04a6080c4e2d") ) (segment (start 103.9 91.55) (end 103.1 91.55) (width 0.2) (layer "F.Cu") (net 62) (uuid "f07dd592-c261-4d9b-8114-2641061bb4bd") ) (segment (start 51.8057 86.9611) (end 52.75 87.9054) (width 0.2) (layer "F.Cu") (net 63) (uuid "02652604-2df3-44ac-96e4-029c4b38f058") ) (segment (start 52.55 84.575) (end 52.55 82.9375) (width 0.2) (layer "F.Cu") (net 63) (uuid "056cf522-3e0c-4602-b05d-5ce4976aac52") ) (segment (start 53.071948 82.9375) (end 54.109448 81.9) (width 0.2) (layer "F.Cu") (net 63) (uuid "0a85d41c-28a0-428e-8d41-b5e6efb56869") ) (segment (start 54.109448 81.9) (end 55.7375 81.9) (width 0.2) (layer "F.Cu") (net 63) (uuid "0d90ed38-ab6f-4282-a5e4-070e386f4ada") ) (segment (start 52.0943 85.0307) (end 52.55 84.575) (width 0.2) (layer "F.Cu") (net 63) (uuid "1e98c4d1-f9a5-4cac-9880-1ff3a213511b") ) (segment (start 52.55 82.9375) (end 53.071948 82.9375) (width 0.2) (layer "F.Cu") (net 63) (uuid "25e4df79-538f-4a24-80b5-5d380eb84e9a") ) (segment (start 51.8057 86.9611) (end 51.8057 85.3193) (width 0.2) (layer "F.Cu") (net 63) (uuid "3aa3add9-66fd-4820-895f-e6e084e7d119") ) (segment (start 107.8484 72.3411) (end 107.8484 65.5301) (width 0.2) (layer "F.Cu") (net 63) (uuid "418e74bb-1e13-4495-a00e-090b967369b2") ) (segment (start 51.75 93.25) (end 51.75 94.93) (width 0.2) (layer "F.Cu") (net 63) (uuid "4b0f01a7-d739-417b-b6a2-90568be3eb0a") ) (segment (start 52.75 92.25) (end 51.75 93.25) (width 0.2) (layer "F.Cu") (net 63) (uuid "55a1b69e-97ab-460b-b632-5273abbfe75f") ) (segment (start 51.8057 85.3193) (end 52.0943 85.0307) (width 0.2) (layer "F.Cu") (net 63) (uuid "8c9ef970-d868-46bb-a26c-6cbc612f5538") ) (segment (start 107.2915 72.3411) (end 107.8484 72.3411) (width 0.2) (layer "F.Cu") (net 63) (uuid "99f8232a-5b20-4ab2-8015-2ff348847290") ) (segment (start 105.2068 72.3392) (end 107.2915 72.3411) (width 0.2) (layer "F.Cu") (net 63) (uuid "bf6596f2-4e12-4b74-81ce-63ed3eed2b3f") ) (segment (start 51.75 94.93) (end 52.07 95.25) (width 0.2) (layer "F.Cu") (net 63) (uuid "c203756c-9ef8-445a-81fa-e13244a96072") ) (segment (start 52.75 87.9054) (end 52.75 92.25) (width 0.2) (layer "F.Cu") (net 63) (uuid "e522b9d0-6fc9-40c7-9fcb-c3dff89c8d26") ) (segment (start 55.7375 81.9) (end 56.5 82.6625) (width 0.2) (layer "F.Cu") (net 63) (uuid "ec2921f2-c578-4da9-aa42-82303b751986") ) (via (at 105.2068 72.3392) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 63) (uuid "ade01120-c8f9-4732-98a1-4fb1b4d63c96") ) (segment (start 105.2068 72.3392) (end 102.1588 74.93) (width 0.2) (layer "In1.Cu") (net 63) (uuid "2b94cf93-ab5e-4a75-a2eb-78eba84dfac9") ) (segment (start 102.1588 74.93) (end 72.39 74.93) (width 0.2) (layer "In1.Cu") (net 63) (uuid "37465f88-4570-4c11-95ed-b59d3210b832") ) (segment (start 72.39 74.93) (end 52.07 95.25) (width 0.2) (layer "In1.Cu") (net 63) (uuid "c36d38ba-e93c-4547-b17f-ed4acc3d733f") ) (segment (start 103.75 80.3) (end 103.1 80.3) (width 0.2) (layer "F.Cu") (net 64) (uuid "00dcd704-9382-42fd-9443-756c5715bdba") ) (segment (start 103.1 80.3) (end 103.4 80.6) (width 0.2) (layer "F.Cu") (net 64) (uuid "01bda701-e148-4780-94b4-6a1fbf4b1d0b") ) (segment (start 114.3189 83.1924) (end 112.4924 83.1924) (width 0.2) (layer "F.Cu") (net 64) (uuid "2f7d3308-8fde-4c7b-92d0-5c92c05e0e9f") ) (segment (start 103.4 81.9643) (end 103.6301 82.1944) (width 0.2) (layer "F.Cu") (net 64) (uuid "3b19d992-c35c-4ed8-9607-649dcb9fba7e") ) (segment (start 103.4 80.6) (end 103.4 81.9643) (width 0.2) (layer "F.Cu") (net 64) (uuid "a28ce281-cf00-4e9d-8720-4312874fa8fa") ) (segment (start 104.9067 81.4567) (end 103.75 80.3) (width 0.2) (layer "F.Cu") (net 64) (uuid "c06625bf-b1eb-4bae-afb4-6194bf57cc44") ) (segment (start 112.4924 83.1924) (end 110.7567 81.4567) (width 0.2) (layer "F.Cu") (net 64) (uuid "d804b53a-be83-4971-be2f-95cf13a97e27") ) (segment (start 110.7567 81.4567) (end 104.9067 81.4567) (width 0.2) (layer "F.Cu") (net 64) (uuid "d808debd-aa80-475f-a173-0dd844dcad6d") ) (segment (start 39.37 95.25) (end 39.37 88.0618) (width 0.2) (layer "F.Cu") (net 65) (uuid "11a10e78-5417-48d4-a011-d3eaf4b5b226") ) (segment (start 39.37 88.0618) (end 39.878 87.5538) (width 0.2) (layer "F.Cu") (net 65) (uuid "55439ed1-9897-4138-9fab-b32960f9c662") ) (segment (start 39.878 87.5538) (end 39.878 87.5265) (width 0.2) (layer "F.Cu") (net 65) (uuid "87d81790-19ea-4254-8095-0ae1fa6bdcef") ) (segment (start 39.878 87.5265) (end 40.4876 86.9169) (width 0.2) (layer "F.Cu") (net 65) (uuid "c39462db-abda-4dc2-b15a-8085ec038bd1") ) (segment (start 50.015 66.825) (end 51.5262 68.3362) (width 2) (layer "F.Cu") (net 66) (uuid "0017cf56-e48b-4e63-947a-9a1d10f748b0") ) (segment (start 51.9087 70) (end 51.5262 70.3825) (width 0.25) (layer "F.Cu") (net 66) (uuid "1bfe824d-3123-455d-8207-821b782c30e9") ) (segment (start 50.015 66.825) (end 49.9657 66.825) (width 1.75) (layer "F.Cu") (net 66) (uuid "2becb2b4-8511-4d98-8c1a-17811b1b74a8") ) (segment (start 50.5254 58.674) (end 50.5254 66.3146) (width 2) (layer "F.Cu") (net 66) (uuid "2d644a45-586a-44e9-aaa3-82a171835fba") ) (segment (start 50.5254 66.3146) (end 49.1575 67.6825) (width 2) (layer "F.Cu") (net 66) (uuid "71509c8e-c912-4e38-89e1-c261ce561e34") ) (segment (start 51.5262 68.3362) (end 51.5262 70.3825) (width 2) (layer "F.Cu") (net 66) (uuid "7c0e0662-684c-4cae-a3f6-cfa8b46708b5") ) (segment (start 49.1575 67.6825) (end 49.1082 67.6825) (width 1.75) (layer "F.Cu") (net 66) (uuid "81a8a963-8d82-423c-b25e-614c2edd9a28") ) (segment (start 53.2375 70) (end 51.9087 70) (width 0.25) (layer "F.Cu") (net 66) (uuid "a9900dbd-ac13-4ea6-a523-95a4082242dc") ) (segment (start 49.9657 66.825) (end 49.1082 67.6825) (width 1.75) (layer "F.Cu") (net 66) (uuid "dfa20d62-433b-4b67-b250-50c46828b70a") ) (segment (start 54.2 69.0375) (end 53.2375 70) (width 0.25) (layer "F.Cu") (net 66) (uuid "ffcc2a2b-562c-48b8-aa33-f049234f4b52") ) (segment (start 49.1082 67.6825) (end 50.8125 67.6825) (width 2) (layer "B.Cu") (net 66) (uuid "2ae3735f-8d21-4db4-89ae-e20368fb0fe9") ) (segment (start 51.5262 68.3962) (end 50.8125 67.6825) (width 2) (layer "B.Cu") (net 66) (uuid "48529078-53d1-4795-bd29-953bbe4b4616") ) (segment (start 51.5262 68.3962) (end 51.5262 70.3825) (width 2) (layer "B.Cu") (net 66) (uuid "90dc9f31-e0f7-4af5-b733-2ed411342996") ) (segment (start 54.45 83.95) (end 54.45 82.9375) (width 0.2) (layer "F.Cu") (net 67) (uuid "05e7333f-c472-4d09-b015-5a6ec67a17b8") ) (segment (start 57.15 95.25) (end 57.15 93.69) (width 0.2) (layer "F.Cu") (net 67) (uuid "2829d586-5605-4012-9e4a-a902580d61e2") ) (segment (start 54.3 92.3) (end 53.5307 91.5307) (width 0.2) (layer "F.Cu") (net 67) (uuid "3785c647-4e84-4e3a-ab83-86d629bb2d16") ) (segment (start 55.76 92.3) (end 54.3 92.3) (width 0.2) (layer "F.Cu") (net 67) (uuid "45521be3-6604-4014-a2d6-72386d5f8a43") ) (segment (start 53.5307 85.7193) (end 53.5307 86.9611) (width 0.2) (layer "F.Cu") (net 67) (uuid "45afda1b-fdad-49c2-ba38-f996f2bdc134") ) (segment (start 54.9693 84.4693) (end 54.45 83.95) (width 0.2) (layer "F.Cu") (net 67) (uuid "5b5ff2a6-246b-4c06-ac1a-51764ea6f28f") ) (segment (start 54.9693 85.0307) (end 54.9693 84.4693) (width 0.2) (layer "F.Cu") (net 67) (uuid "93caeded-24af-4da6-8d0e-6b147c65f0c8") ) (segment (start 57.15 93.69) (end 55.76 92.3) (width 0.2) (layer "F.Cu") (net 67) (uuid "b95e218e-df2a-4a0b-95fe-f13dcd6f05ec") ) (segment (start 54.9693 85.0307) (end 56.5817 85.0307) (width 0.2) (layer "F.Cu") (net 67) (uuid "d01dab6b-ab98-483a-b131-c6b31bd4c568") ) (segment (start 56.5817 85.0307) (end 56.9373 85.3863) (width 0.2) (layer "F.Cu") (net 67) (uuid "d118f616-5894-49e8-84e8-e3c0df53728d") ) (segment (start 53.5307 91.5307) (end 53.5307 86.9611) (width 0.2) (layer "F.Cu") (net 67) (uuid "d4a02e04-2d2c-43ee-bf76-2238c2288a89") ) (segment (start 54.9693 85.0307) (end 54.2193 85.0307) (width 0.2) (layer "F.Cu") (net 67) (uuid "e2a01e17-23d3-4533-9d9e-4f5a9ab174a1") ) (segment (start 54.2193 85.0307) (end 53.5307 85.7193) (width 0.2) (layer "F.Cu") (net 67) (uuid "e87ee3b0-a1e5-4cee-a839-8687f816b277") ) (segment (start 115.32 67.37) (end 114.2624 68.4276) (width 0.2) (layer "In2.Cu") (net 67) (uuid "056614ca-0580-401c-b762-b645c223575c") ) (segment (start 115.26 75.31) (end 115.26 69.57) (width 0.2) (layer "In2.Cu") (net 67) (uuid "0fd7fb0a-3a39-465b-8897-1003406f5c25") ) (segment (start 106.735 56.31) (end 115.32 64.895) (width 0.2) (layer "In2.Cu") (net 67) (uuid "168509b6-9440-48e1-8a44-44c1c118431c") ) (segment (start 57.27 79.35) (end 80.31 56.31) (width 0.2) (layer "In2.Cu") (net 67) (uuid "24ab5fab-48ff-4646-9d0c-d83562cf8b11") ) (segment (start 112.8356 77.0276) (end 113.5424 77.0276) (width 0.2) (layer "In2.Cu") (net 67) (uuid "45f12506-d58d-43cf-94dc-3f7da69a2e97") ) (segment (start 57.15 95.25) (end 57.27 95.13) (width 0.2) (layer "In2.Cu") (net 67) (uuid "56406698-62e5-455f-9744-af4ce31622a3") ) (segment (start 113.5424 77.0276) (end 115.26 75.31) (width 0.2) (layer "In2.Cu") (net 67) (uuid "5df8e860-5123-4f48-bf3e-609e08796465") ) (segment (start 57.27 95.13) (end 57.27 79.35) (width 0.2) (layer "In2.Cu") (net 67) (uuid "6c37294e-639d-4d0e-85d7-9331d565e310") ) (segment (start 114.2624 68.4276) (end 112.8606 68.4276) (width 0.2) (layer "In2.Cu") (net 67) (uuid "a4bf1ba4-39c3-4140-9b4c-bdcaf83314b1") ) (segment (start 80.31 56.31) (end 106.735 56.31) (width 0.2) (layer "In2.Cu") (net 67) (uuid "a5f628c2-9295-4e45-a107-36e99564148e") ) (segment (start 115.26 69.57) (end 114.1176 68.4276) (width 0.2) (layer "In2.Cu") (net 67) (uuid "d50f8f00-0722-4362-812d-3cbcc4d4398a") ) (segment (start 115.32 64.895) (end 115.32 67.37) (width 0.2) (layer "In2.Cu") (net 67) (uuid "f3911929-e706-43a7-917c-6dc0cd89ed29") ) (segment (start 114.1176 68.4276) (end 112.8606 68.4276) (width 0.2) (layer "In2.Cu") (net 67) (uuid "fc8be939-1d86-40b2-b4db-a719cad18a21") ) (segment (start 110.6381 63.7051) (end 112.8606 65.9276) (width 0.2) (layer "F.Cu") (net 68) (uuid "46d6d298-38a2-4eec-9858-1745efac2367") ) (segment (start 107.7976 62.3824) (end 107.7976 63.6543) (width 0.2) (layer "F.Cu") (net 68) (uuid "51f5681e-b564-4ecf-b2a6-cc1598637daa") ) (segment (start 107.8484 62.3316) (end 107.7976 62.3824) (width 0.2) (layer "F.Cu") (net 68) (uuid "6af42165-857c-47b3-abf9-6e97a59a4704") ) (segment (start 107.8484 63.7051) (end 110.6381 63.7051) (width 0.2) (layer "F.Cu") (net 68) (uuid "793aaabb-0315-4a8f-b0fc-f17f2f94e446") ) (segment (start 107.7976 63.6543) (end 107.8484 63.7051) (width 0.2) (layer "F.Cu") (net 68) (uuid "e689386a-934f-4500-b940-0397a8862d2b") ) (via (at 107.8484 62.3316) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 68) (uuid "fd80baeb-381e-409f-9fef-a1966d82ee94") ) (segment (start 109.5756 63.246) (end 109.5756 76.6572) (width 0.2) (layer "In1.Cu") (net 68) (uuid "3425ea9c-7aaa-4c9e-9167-4f2bae7f82b8") ) (segment (start 87.94835 80.3036) (end 87.51355 79.8688) (width 0.2) (layer "In1.Cu") (net 68) (uuid "40630b1e-8183-43b4-ac41-1af7d257076e") ) (segment (start 59.69 94.35) (end 59.69 95.25) (width 0.2) (layer "In1.Cu") (net 68) (uuid "4c27a5f8-5227-4314-9511-036d9ea4acd3") ) (segment (start 74.1712 79.8688) (end 59.69 94.35) (width 0.2) (layer "In1.Cu") (net 68) (uuid "4e745821-270f-4f9c-9370-a3f57ee88998") ) (segment (start 109.5756 76.6572) (end 105.9292 80.3036) (width 0.2) (layer "In1.Cu") (net 68) (uuid "7217edeb-727b-4b9e-8b50-700ec779e5a3") ) (segment (start 108.6612 62.3316) (end 109.5756 63.246) (width 0.2) (layer "In1.Cu") (net 68) (uuid "7bc5b165-915b-4ec7-a625-452a26c02701") ) (segment (start 105.9292 80.3036) (end 87.94835 80.3036) (width 0.2) (layer "In1.Cu") (net 68) (uuid "8bd292a0-684c-45cd-a2f7-804b6e32e7a2") ) (segment (start 107.8484 62.3316) (end 108.6612 62.3316) (width 0.2) (layer "In1.Cu") (net 68) (uuid "9b86407e-6a3b-45d0-a461-0a6ac5dc8734") ) (segment (start 87.51355 79.8688) (end 74.1712 79.8688) (width 0.2) (layer "In1.Cu") (net 68) (uuid "d6188c96-83e5-410b-8ca7-5b99d7a0fc05") ) (segment (start 107.8484 74.1661) (end 107.8484 75.3872) (width 0.2) (layer "F.Cu") (net 69) (uuid "3f368e6f-b2b4-4523-a13f-b1af97593eb5") ) (segment (start 107.8484 74.1661) (end 112.4741 74.1661) (width 0.2) (layer "F.Cu") (net 69) (uuid "7aea0273-0d45-4345-a945-64834551e1dc") ) (segment (start 112.4741 74.1661) (end 112.8356 74.5276) (width 0.2) (layer "F.Cu") (net 69) (uuid "9230ba12-fa02-4ac6-a1f6-d86d2f0c00c1") ) (segment (start 107.8484 75.3872) (end 107.7976 75.438) (width 0.2) (layer "F.Cu") (net 69) (uuid "be41670e-6c3e-40fd-8256-daa6713cec33") ) (via (at 107.7976 75.438) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 69) (uuid "0b3cb7ea-9434-45fb-937b-6713ecf94f8f") ) (segment (start 72.6948 75.438) (end 107.7976 75.438) (width 0.2) (layer "In1.Cu") (net 69) (uuid "8bcec913-c18e-4c41-8cb4-bfc0a18729b7") ) (segment (start 107.7976 75.438) (end 107.8484 75.438) (width 0.2) (layer "In1.Cu") (net 69) (uuid "b5cc1905-078b-43dd-9c2b-ea9c59921156") ) (segment (start 54.61 95.25) (end 54.61 93.5228) (width 0.2) (layer "In1.Cu") (net 69) (uuid "d2fbe826-f65b-40cb-8051-b04ca067333e") ) (segment (start 54.61 93.5228) (end 72.6948 75.438) (width 0.2) (layer "In1.Cu") (net 69) (uuid "e194e8d8-c1ca-4530-b42e-27e56f746ef4") ) (segment (start 97.9875 58.5625) (end 98 58.55) (width 0.25) (layer "F.Cu") (net 70) (uuid "95cd5577-f0a1-428c-aec5-d965a52ec44b") ) (segment (start 97.9875 60.35) (end 97.9875 58.5625) (width 0.25) (layer "F.Cu") (net 70) (uuid "ac3cc33e-a68a-4884-9775-729502b38b46") ) (segment (start 41.91 95.25) (end 41.91 92.4052) (width 0.75) (layer "F.Cu") (net 71) (uuid "20191189-e70f-4d83-87a6-263bafbdd8a3") ) (segment (start 43.4351 82.9619) (end 44.228 82.169) (width 0.75) (layer "F.Cu") (net 71) (uuid "23fef0c0-cb31-4b0c-a446-6e7e311877d4") ) (segment (start 43.4086 90.9066) (end 43.4086 86.2849) (width 0.75) (layer "F.Cu") (net 71) (uuid "6b81d2ba-6881-49a3-a5c3-556459914bf1") ) (segment (start 41.91 92.4052) (end 43.4086 90.9066) (width 0.75) (layer "F.Cu") (net 71) (uuid "90722208-496b-4fe4-a9eb-35dc2e7b8e2c") ) (segment (start 43.4086 86.2849) (end 43.4351 86.2584) (width 0.75) (layer "F.Cu") (net 71) (uuid "b405b04e-96fe-4fec-94ed-90e9471e0c59") ) (segment (start 43.4351 86.2584) (end 43.4351 82.9619) (width 0.75) (layer "F.Cu") (net 71) (uuid "bbc2ff57-141e-46a2-beb5-1a86c22d73ff") ) (segment (start 55.875 105.975) (end 51.754 101.854) (width 0.25) (layer "B.Cu") (net 71) (uuid "25da7e3a-047e-401f-be9a-bc30e4317b3e") ) (segment (start 60.727211 131.572) (end 57.3532 131.572) (width 0.25) (layer "B.Cu") (net 71) (uuid "2ea47bdc-3013-4afc-ab34-b54f19a7a575") ) (segment (start 57.3532 131.572) (end 55.875 130.0938) (width 0.25) (layer "B.Cu") (net 71) (uuid "3683e812-1522-40be-96d1-04991161335b") ) (segment (start 55.875 130.0938) (end 55.875 105.975) (width 0.25) (layer "B.Cu") (net 71) (uuid "86312925-255f-4ae3-a797-a2173b9febcf") ) (segment (start 71.2808 131.6078) (end 60.763011 131.6078) (width 0.25) (layer "B.Cu") (net 71) (uuid "afe1b4b0-6d77-4d93-973b-2fe981b95436") ) (segment (start 48.514 101.854) (end 41.91 95.25) (width 0.25) (layer "B.Cu") (net 71) (uuid "d41c3b80-20db-41c7-aed2-6d8fa1c5fb4f") ) (segment (start 60.763011 131.6078) (end 60.727211 131.572) (width 0.25) (layer "B.Cu") (net 71) (uuid "d7c3fdba-816c-4053-9ecd-4744cc0e644b") ) (segment (start 51.754 101.854) (end 48.514 101.854) (width 0.25) (layer "B.Cu") (net 71) (uuid "eef99b92-28cb-4e87-bd89-1536201360c7") ) (segment (start 82.975 79.825) (end 82.7 80.1) (width 0.25) (layer "F.Cu") (net 73) (uuid "273b5e58-1648-4d1b-95ed-fa1a20c8c357") ) (segment (start 82.05 85.7) (end 82.05 85.875001) (width 0.25) (layer "F.Cu") (net 73) (uuid "2804fe1f-3cb4-4748-986e-aeb5f2a41a14") ) (segment (start 84 85.77) (end 83.55 85.32) (width 0.25) (layer "F.Cu") (net 73) (uuid "3b4d1a76-5d42-4446-ab7b-87651376b1dd") ) (segment (start 78.7 85.2125) (end 80.3 85.2125) (width 0.25) (layer "F.Cu") (net 73) (uuid "588bc778-c910-40d6-9a3c-c6fe17f04f2e") ) (segment (start 84.65 80.150001) (end 84.324999 79.825) (width 0.25) (layer "F.Cu") (net 73) (uuid "6aa6c772-c869-481b-9eb5-2a88caf72979") ) (segment (start 82.7 80.1) (end 82.7 80.8875) (width 0.25) (layer "F.Cu") (net 73) (uuid "6b280cf5-2068-4e35-88a6-a5f0baba2c23") ) (segment (start 83.55 85.32) (end 82.43 85.32) (width 0.25) (layer "F.Cu") (net 73) (uuid "900b60dd-7460-402f-a50e-844200d023e9") ) (segment (start 80.5125 85.425) (end 80.3 85.2125) (width 0.25) (layer "F.Cu") (net 73) (uuid "9071b20b-ed6e-41b7-8c49-17e5f5e7da2d") ) (segment (start 82.7 80.8875) (end 82.7 85.225001) (width 0.25) (layer "F.Cu") (net 73) (uuid "93888abd-f71d-4054-baf7-d038152d04cc") ) (segment (start 81.5025 85.2125) (end 82.05 85.76) (width 0.25) (layer "F.Cu") (net 73) (uuid "9747fead-c0a7-4cca-b7f2-f81c39d572df") ) (segment (start 82.43 85.32) (end 82.05 85.7) (width 0.25) (layer "F.Cu") (net 73) (uuid "aa9281f7-ac9f-4fa4-bdd8-08cf551e41d8") ) (segment (start 84.65 80.8875) (end 84.65 80.150001) (width 0.25) (layer "F.Cu") (net 73) (uuid "b31c86ce-7aca-4e4b-8977-7bdbebfb3098") ) (segment (start 82.05 85.875001) (end 82.05 86.6125) (width 0.25) (layer "F.Cu") (net 73) (uuid "bb36c82c-eec5-4f77-9691-cefccfa34413") ) (segment (start 84 86.6125) (end 84 85.77) (width 0.25) (layer "F.Cu") (net 73) (uuid "bd0c0b06-d698-4180-96e5-8a310a501c59") ) (segment (start 84.324999 79.825) (end 82.975 79.825) (width 0.25) (layer "F.Cu") (net 73) (uuid "d7a8d01d-5b5f-484b-a249-8756581c19f5") ) (segment (start 82.05 85.76) (end 82.05 85.875001) (width 0.25) (layer "F.Cu") (net 73) (uuid "e0e98e24-21ad-4560-9c20-b3c9b4900634") ) (segment (start 80.3 85.2125) (end 81.5025 85.2125) (width 0.25) (layer "F.Cu") (net 73) (uuid "ec52009e-e19b-4462-863d-5e971ed7eddb") ) (segment (start 58.35 122.6125) (end 58.4375 122.7) (width 0.25) (layer "F.Cu") (net 74) (uuid "13c4ee1c-dcb2-4db1-8326-439c71827af9") ) (segment (start 58.35 120.725) (end 58.35 122.6125) (width 0.25) (layer "F.Cu") (net 74) (uuid "30b2cf14-5acb-4c85-90f0-64f5d4084b37") ) (segment (start 57.725 120.1) (end 58.35 120.725) (width 0.25) (layer "F.Cu") (net 74) (uuid "fcc3c437-0d8c-4307-af28-943000fc9f16") ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "2204b7a7-a325-4a3f-94a1-747c0a75a9cf") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 70.6148 97.0294) (xy 70.6148 105.0544) (xy 67.6148 105.0544) (xy 67.6148 97.0294) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "cc716bd0-4abf-43b4-b162-4586fc1a08aa") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 43.875 108.2986) (xy 38.025 108.2986) (xy 38.025 99.9236) (xy 43.875 99.9236) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "e98c5fb5-05de-4f33-a9fa-564d621425e6") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 54.5806 108.0552) (xy 44.9556 108.0552) (xy 44.9556 105.1052) (xy 54.5806 105.1052) ) ) ) (zone (net 2) (net_name "GND") (layers "F.Cu" "In1.Cu" "In2.Cu" "B.Cu") (uuid "c01f5cc6-0083-48e0-9be7-a9d472f38092") (hatch edge 0.508) (connect_pads (clearance 0.508) ) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 7) ) (polygon (pts (xy 120 135.5508) (xy 37.5 135.5) (xy 37.5 54) (xy 120 54) ) ) (filled_polygon (layer "F.Cu") (pts (xy 115.002748 54.50062) (xy 115.386661 54.517382) (xy 115.39761 54.518339) (xy 115.775883 54.56814) (xy 115.786699 54.570048) (xy 116.159184 54.652626) (xy 116.169802 54.655471) (xy 116.533668 54.770197) (xy 116.543997 54.773956) (xy 116.896494 54.919965) (xy 116.906456 54.924611) (xy 117.244875 55.100781) (xy 117.254378 55.106267) (xy 117.576174 55.311274) (xy 117.585166 55.31757) (xy 117.887863 55.549839) (xy 117.896283 55.556904) (xy 118.17757 55.814656) (xy 118.185343 55.822429) (xy 118.443095 56.103716) (xy 118.45016 56.112136) (xy 118.682429 56.414833) (xy 118.688728 56.423829) (xy 118.828947 56.643929) (xy 118.893727 56.745613) (xy 118.899222 56.755131) (xy 118.905159 56.766536) (xy 119.075388 57.093543) (xy 119.080034 57.103505) (xy 119.226043 57.456002) (xy 119.229802 57.466331) (xy 119.344528 57.830197) (xy 119.347373 57.840815) (xy 119.42995 58.213296) (xy 119.431859 58.224121) (xy 119.481659 58.602388) (xy 119.482617 58.613338) (xy 119.49938 58.997251) (xy 119.4995 59.002747) (xy 119.4995 130.497252) (xy 119.49938 130.502748) (xy 119.482617 130.886661) (xy 119.481659 130.897611) (xy 119.431859 131.275878) (xy 119.42995 131.286703) (xy 119.347373 131.659184) (xy 119.344528 131.669802) (xy 119.229802 132.033668) (xy 119.226043 132.043997) (xy 119.080034 132.396494) (xy 119.075388 132.406456) (xy 118.899223 132.744866) (xy 118.893727 132.754386) (xy 118.688734 133.076162) (xy 118.682429 133.085166) (xy 118.45016 133.387863) (xy 118.443095 133.396283) (xy 118.185343 133.67757) (xy 118.17757 133.685343) (xy 117.896283 133.943095) (xy 117.887863 133.95016) (xy 117.585166 134.182429) (xy 117.576162 134.188734) (xy 117.254386 134.393727) (xy 117.244866 134.399223) (xy 116.906456 134.575388) (xy 116.896494 134.580034) (xy 116.543997 134.726043) (xy 116.533668 134.729802) (xy 116.169802 134.844528) (xy 116.159184 134.847373) (xy 115.786703 134.92995) (xy 115.775878 134.931859) (xy 115.397611 134.981659) (xy 115.386661 134.982617) (xy 115.002748 134.99938) (xy 114.997252 134.9995) (xy 55.171286 134.9995) (xy 55.103165 134.979498) (xy 55.056672 134.925842) (xy 55.046568 134.855568) (xy 55.051681 134.833868) (xy 55.097887 134.694426) (xy 55.1085 134.590545) (xy 55.108499 133.189456) (xy 55.097887 133.085574) (xy 55.042115 132.917262) (xy 54.94903 132.766348) (xy 54.949029 132.766347) (xy 54.949024 132.766341) (xy 54.823658 132.640975) (xy 54.823652 132.64097) (xy 54.814119 132.63509) (xy 54.672738 132.547885) (xy 54.588582 132.519999) (xy 54.504427 132.492113) (xy 54.50442 132.492112) (xy 54.400553 132.4815) (xy 53.599455 132.4815) (xy 53.495574 132.492112) (xy 53.327261 132.547885) (xy 53.176347 132.64097) (xy 53.176341 132.640975) (xy 53.050975 132.766341) (xy 53.05097 132.766347) (xy 52.957885 132.917262) (xy 52.902113 133.085572) (xy 52.902112 133.085579) (xy 52.8915 133.189446) (xy 52.8915 134.590544) (xy 52.902112 134.694425) (xy 52.913835 134.729802) (xy 52.948319 134.833868) (xy 52.950759 134.904822) (xy 52.914451 134.965832) (xy 52.850922 134.997527) (xy 52.828714 134.9995) (xy 49.571286 134.9995) (xy 49.503165 134.979498) (xy 49.456672 134.925842) (xy 49.446568 134.855568) (xy 49.451681 134.833868) (xy 49.497887 134.694426) (xy 49.5085 134.590545) (xy 49.508499 133.189456) (xy 49.497887 133.085574) (xy 49.442115 132.917262) (xy 49.34903 132.766348) (xy 49.349029 132.766347) (xy 49.349024 132.766341) (xy 49.223658 132.640975) (xy 49.223652 132.64097) (xy 49.214119 132.63509) (xy 49.072738 132.547885) (xy 48.988582 132.519999) (xy 48.904427 132.492113) (xy 48.90442 132.492112) (xy 48.800553 132.4815) (xy 47.999455 132.4815) (xy 47.895574 132.492112) (xy 47.727261 132.547885) (xy 47.576347 132.64097) (xy 47.576341 132.640975) (xy 47.450975 132.766341) (xy 47.45097 132.766347) (xy 47.357885 132.917262) (xy 47.302113 133.085572) (xy 47.302112 133.085579) (xy 47.2915 133.189446) (xy 47.2915 134.590544) (xy 47.302112 134.694425) (xy 47.313835 134.729802) (xy 47.348319 134.833868) (xy 47.350759 134.904822) (xy 47.314451 134.965832) (xy 47.250922 134.997527) (xy 47.228714 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.222854 131.883516) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.146101 131.629752) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.067542 131.271338) (xy 38.018339 130.89761) (xy 38.017382 130.886661) (xy 38.009514 130.706456) (xy 48.892001 130.706456) (xy 48.894934 130.74375) (xy 48.941318 130.9034) (xy 49.025948 131.046501) (xy 49.025949 131.046503) (xy 49.143497 131.164051) (xy 49.2866 131.248681) (xy 49.446 131.294991) (xy 49.446 130.269) (xy 48.892001 130.269) (xy 48.892001 130.706456) (xy 38.009514 130.706456) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 129.323543) (xy 48.892 129.323543) (xy 48.892 129.761) (xy 49.446 129.761) (xy 49.446 128.735007) (xy 49.286598 128.781318) (xy 49.143498 128.865948) (xy 49.143496 128.865949) (xy 49.025949 128.983496) (xy 49.025948 128.983498) (xy 48.941318 129.126598) (xy 48.894934 129.28625) (xy 48.892 129.323543) (xy 38.0005 129.323543) (xy 38.0005 126.690916) (xy 46.5748 126.690916) (xy 46.585405 126.794718) (xy 46.585406 126.794721) (xy 46.641142 126.962925) (xy 46.734165 127.113739) (xy 46.73417 127.113745) (xy 46.859454 127.239029) (xy 46.85946 127.239034) (xy 47.010274 127.332057) (xy 47.178478 127.387793) (xy 47.178481 127.387794) (xy 47.282283 127.398399) (xy 47.282283 127.3984) (xy 47.3288 127.3984) (xy 47.8368 127.3984) (xy 47.883317 127.3984) (xy 47.883316 127.398399) (xy 47.987118 127.387794) (xy 47.987121 127.387793) (xy 48.155325 127.332057) (xy 48.306139 127.239034) (xy 48.306145 127.239029) (xy 48.431429 127.113745) (xy 48.431434 127.113739) (xy 48.524457 126.962925) (xy 48.580193 126.794721) (xy 48.580194 126.794718) (xy 48.590799 126.690916) (xy 48.5908 126.690916) (xy 48.5908 126.6444) (xy 47.8368 126.6444) (xy 47.8368 127.3984) (xy 47.3288 127.3984) (xy 47.3288 126.6444) (xy 46.5748 126.6444) (xy 46.5748 126.690916) (xy 38.0005 126.690916) (xy 38.0005 126.089883) (xy 46.5748 126.089883) (xy 46.5748 126.1364) (xy 47.3288 126.1364) (xy 47.8368 126.1364) (xy 48.5908 126.1364) (xy 48.5908 126.089883) (xy 48.580194 125.986081) (xy 48.580193 125.986078) (xy 48.524457 125.817874) (xy 48.431434 125.66706) (xy 48.431429 125.667054) (xy 48.306145 125.54177) (xy 48.306139 125.541765) (xy 48.155325 125.448742) (xy 47.987121 125.393006) (xy 47.987118 125.393005) (xy 47.883316 125.3824) (xy 47.8368 125.3824) (xy 47.8368 126.1364) (xy 47.3288 126.1364) (xy 47.3288 125.3824) (xy 47.282283 125.3824) (xy 47.178481 125.393005) (xy 47.178478 125.393006) (xy 47.010274 125.448742) (xy 46.85946 125.541765) (xy 46.859454 125.54177) (xy 46.73417 125.667054) (xy 46.734165 125.66706) (xy 46.641142 125.817874) (xy 46.585406 125.986078) (xy 46.585405 125.986081) (xy 46.5748 126.089883) (xy 38.0005 126.089883) (xy 38.0005 116.178018) (xy 38.020502 116.109897) (xy 38.074158 116.063404) (xy 38.144432 116.0533) (xy 38.202009 116.07715) (xy 38.273792 116.130887) (xy 38.273794 116.130888) (xy 38.273796 116.130889) (xy 38.332875 116.152924) (xy 38.410795 116.181988) (xy 38.410803 116.18199) (xy 38.47135 116.188499) (xy 38.471355 116.188499) (xy 38.471362 116.1885) (xy 40.055761 116.1885) (xy 40.123882 116.208502) (xy 40.144851 116.2254) (xy 40.687573 116.768122) (xy 40.687574 116.768123) (xy 40.687576 116.768124) (xy 40.737764 116.7971) (xy 40.826327 116.848232) (xy 40.826333 116.848233) (xy 40.826334 116.848234) (xy 40.861311 116.857606) (xy 40.861312 116.857606) (xy 40.981089 116.8897) (xy 40.98109 116.8897) (xy 41.14131 116.8897) (xy 42.164561 116.8897) (xy 42.232682 116.909702) (xy 42.253656 116.926605) (xy 45.686656 120.359605) (xy 45.720682 120.421917) (xy 45.715617 120.492732) (xy 45.67307 120.549568) (xy 45.60655 120.574379) (xy 45.597561 120.5747) (xy 45.587431 120.5747) (xy 45.439211 120.599433) (xy 45.365369 120.611755) (xy 45.36536 120.611757) (xy 45.152428 120.684856) (xy 45.152426 120.684858) (xy 44.995565 120.769747) (xy 44.954426 120.79201) (xy 44.954424 120.792011) (xy 44.776762 120.930291) (xy 44.624279 121.095929) (xy 44.535483 121.231843) (xy 44.481479 121.277931) (xy 44.411131 121.287506) (xy 44.346774 121.257529) (xy 44.324517 121.231843) (xy 44.23572 121.095929) (xy 44.083237 120.930291) (xy 43.997938 120.8639) (xy 43.905576 120.792011) (xy 43.707574 120.684858) (xy 43.707572 120.684857) (xy 43.707571 120.684856) (xy 43.494639 120.611757) (xy 43.49463 120.611755) (xy 43.450476 120.604387) (xy 43.272569 120.5747) (xy 43.047431 120.5747) (xy 42.899211 120.599433) (xy 42.825369 120.611755) (xy 42.82536 120.611757) (xy 42.612428 120.684856) (xy 42.612426 120.684858) (xy 42.455565 120.769747) (xy 42.414426 120.79201) (xy 42.414424 120.792011) (xy 42.236759 120.930294) (xy 42.175374 120.996975) (xy 42.114521 121.033546) (xy 42.043557 121.031411) (xy 41.985012 120.991249) (xy 41.964618 120.95567) (xy 41.920443 120.837233) (xy 41.832904 120.720295) (xy 41.715965 120.632755) (xy 41.579093 120.581705) (xy 41.518597 120.5752) (xy 40.874 120.5752) (xy 40.874 121.502497) (xy 40.812993 121.467275) (xy 40.685826 121.4332) (xy 40.554174 121.4332) (xy 40.427007 121.467275) (xy 40.366 121.502497) (xy 40.366 120.5752) (xy 39.721402 120.5752) (xy 39.660906 120.581705) (xy 39.524035 120.632755) (xy 39.524034 120.632755) (xy 39.407095 120.720295) (xy 39.319555 120.837234) (xy 39.319555 120.837235) (xy 39.268505 120.974106) (xy 39.262 121.034602) (xy 39.262 121.6792) (xy 40.189297 121.6792) (xy 40.154075 121.740207) (xy 40.12 121.867374) (xy 40.12 121.999026) (xy 40.154075 122.126193) (xy 40.189297 122.1872) (xy 39.262 122.1872) (xy 39.262 122.831797) (xy 39.268505 122.892293) (xy 39.319555 123.029164) (xy 39.319555 123.029165) (xy 39.407095 123.146104) (xy 39.524034 123.233644) (xy 39.660906 123.284694) (xy 39.721402 123.291199) (xy 39.721415 123.2912) (xy 40.366 123.2912) (xy 40.366 122.363902) (xy 40.427007 122.399125) (xy 40.554174 122.4332) (xy 40.685826 122.4332) (xy 40.812993 122.399125) (xy 40.874 122.363902) (xy 40.874 123.2912) (xy 41.518585 123.2912) (xy 41.518597 123.291199) (xy 41.579093 123.284694) (xy 41.715964 123.233644) (xy 41.715965 123.233644) (xy 41.832904 123.146104) (xy 41.920444 123.029165) (xy 41.964618 122.91073) (xy 42.007165 122.853894) (xy 42.073685 122.829083) (xy 42.143059 122.844174) (xy 42.175372 122.869422) (xy 42.196427 122.892293) (xy 42.236762 122.936108) (xy 42.244664 122.942258) (xy 42.414424 123.074389) (xy 42.612426 123.181542) (xy 42.612427 123.181542) (xy 42.612428 123.181543) (xy 42.724227 123.219923) (xy 42.825365 123.254644) (xy 43.047431 123.2917) (xy 43.047435 123.2917) (xy 43.272565 123.2917) (xy 43.272569 123.2917) (xy 43.494635 123.254644) (xy 43.514235 123.247914) (xy 43.585159 123.244714) (xy 43.644243 123.277992) (xy 44.268273 123.902021) (xy 44.268294 123.902044) (xy 44.385965 124.019715) (xy 44.385972 124.019721) (xy 44.426892 124.043346) (xy 44.426893 124.043347) (xy 44.454178 124.0591) (xy 44.524727 124.099832) (xy 44.524733 124.099833) (xy 44.524734 124.099834) (xy 44.573072 124.112786) (xy 44.573073 124.112786) (xy 44.679489 124.1413) (xy 44.67949 124.1413) (xy 48.962509 124.1413) (xy 48.96251 124.1413) (xy 48.962511 124.1413) (xy 49.068927 124.112786) (xy 49.117273 124.099832) (xy 49.256027 124.019722) (xy 49.617722 123.658027) (xy 49.697832 123.519272) (xy 49.704094 123.4959) (xy 49.720134 123.436037) (xy 49.757085 123.375415) (xy 49.820946 123.344394) (xy 49.89144 123.352822) (xy 49.946188 123.398025) (xy 49.949082 123.402502) (xy 49.982165 123.456139) (xy 49.98217 123.456145) (xy 50.107454 123.581429) (xy 50.10746 123.581434) (xy 50.258274 123.674457) (xy 50.426478 123.730193) (xy 50.426481 123.730194) (xy 50.530283 123.740799) (xy 50.530283 123.7408) (xy 50.5768 123.7408) (xy 50.5768 121.784791) (xy 50.596802 121.71667) (xy 50.613705 121.695696) (xy 50.6276 121.681801) (xy 50.6276 121.0056) (xy 49.8736 121.0056) (xy 49.8736 121.052109) (xy 49.878111 121.096267) (xy 49.865135 121.166068) (xy 49.816482 121.217773) (xy 49.747599 121.234966) (xy 49.680355 121.212189) (xy 49.643643 121.172071) (xy 49.617722 121.127173) (xy 49.617719 121.12717) (xy 49.617716 121.127166) (xy 49.427004 120.936454) (xy 49.392978 120.874142) (xy 49.390099 120.847359) (xy 49.390099 120.451083) (xy 49.8736 120.451083) (xy 49.8736 120.4976) (xy 50.6276 120.4976) (xy 50.6276 119.7436) (xy 50.581083 119.7436) (xy 50.477281 119.754205) (xy 50.477278 119.754206) (xy 50.309074 119.809942) (xy 50.15826 119.902965) (xy 50.158254 119.90297) (xy 50.03297 120.028254) (xy 50.032965 120.02826) (xy 49.939942 120.179074) (xy 49.884206 120.347278) (xy 49.884205 120.347281) (xy 49.8736 120.451083) (xy 49.390099 120.451083) (xy 49.390099 120.451055) (xy 49.379487 120.347174) (xy 49.364608 120.302271) (xy 49.323715 120.178862) (xy 49.23063 120.027948) (xy 49.230629 120.027947) (xy 49.230624 120.027941) (xy 49.105258 119.902575) (xy 49.105252 119.90257) (xy 49.071376 119.881675) (xy 48.954338 119.809485) (xy 48.820457 119.765122) (xy 48.786027 119.753713) (xy 48.78602 119.753712) (xy 48.682153 119.7431) (xy 48.081055 119.7431) (xy 47.977174 119.753712) (xy 47.85131 119.795419) (xy 47.808862 119.809485) (xy 47.80886 119.809485) (xy 47.80886 119.809486) (xy 47.776616 119.829374) (xy 47.708136 119.84811) (xy 47.640398 119.82685) (xy 47.621376 119.811227) (xy 44.18617 116.376021) (xy 44.152144 116.313709) (xy 44.157209 116.242894) (xy 44.18617 116.197831) (xy 44.196 116.188001) (xy 44.196 113.47225) (xy 44.253147 113.505245) (xy 44.382857 113.54) (xy 44.517143 113.54) (xy 44.646853 113.505245) (xy 44.704 113.47225) (xy 44.704 116.188) (xy 45.348585 116.188) (xy 45.348597 116.187999) (xy 45.409093 116.181494) (xy 45.545964 116.130444) (xy 45.545966 116.130443) (xy 45.644072 116.057001) (xy 45.710592 116.032189) (xy 45.779966 116.04728) (xy 45.795091 116.057) (xy 45.893792 116.130887) (xy 45.893794 116.130888) (xy 45.893796 116.130889) (xy 45.952875 116.152924) (xy 46.030795 116.181988) (xy 46.030803 116.18199) (xy 46.09135 116.188499) (xy 46.091355 116.188499) (xy 46.091362 116.1885) (xy 47.559361 116.1885) (xy 47.627482 116.208502) (xy 47.648456 116.225405) (xy 51.098695 119.675644) (xy 51.132721 119.737956) (xy 51.1356 119.764739) (xy 51.1356 121.699609) (xy 51.115598 121.76773) (xy 51.098695 121.788704) (xy 51.0848 121.802599) (xy 51.0848 123.7408) (xy 51.131314 123.7408) (xy 51.170291 123.736817) (xy 51.240092 123.74979) (xy 51.291799 123.798441) (xy 51.3091 123.862164) (xy 51.3091 124.251361) (xy 51.289098 124.319482) (xy 51.272195 124.340456) (xy 50.267655 125.344995) (xy 50.205343 125.379021) (xy 50.17856 125.3819) (xy 49.782255 125.3819) (xy 49.678374 125.392512) (xy 49.510061 125.448285) (xy 49.359147 125.54137) (xy 49.359141 125.541375) (xy 49.233775 125.666741) (xy 49.23377 125.666747) (xy 49.140685 125.817662) (xy 49.084913 125.985972) (xy 49.084912 125.985979) (xy 49.0743 126.089846) (xy 49.0743 126.690944) (xy 49.084912 126.794825) (xy 49.140685 126.963138) (xy 49.23377 127.114052) (xy 49.233775 127.114058) (xy 49.359141 127.239424) (xy 49.359147 127.239429) (xy 49.359148 127.23943) (xy 49.510062 127.332515) (xy 49.678374 127.388287) (xy 49.782255 127.3989) (xy 50.383344 127.398899) (xy 50.38616 127.398899) (xy 50.454281 127.418901) (xy 50.475255 127.435804) (xy 51.054595 128.015144) (xy 51.088621 128.077456) (xy 51.0915 128.104239) (xy 51.0915 128.608967) (xy 51.071498 128.677088) (xy 51.017842 128.723581) (xy 50.955612 128.734578) (xy 50.916511 128.7315) (xy 50.916502 128.7315) (xy 50.483498 128.7315) (xy 50.483489 128.7315) (xy 50.446171 128.734437) (xy 50.446167 128.734438) (xy 50.286401 128.780853) (xy 50.286398 128.780854) (xy 50.263644 128.794311) (xy 50.194827 128.811769) (xy 50.135372 128.794311) (xy 50.113403 128.781319) (xy 50.113401 128.781318) (xy 49.954 128.735007) (xy 49.954 129.069928) (xy 49.943641 129.119961) (xy 49.940855 129.126399) (xy 49.894437 129.28617) (xy 49.894437 129.286171) (xy 49.8915 129.323488) (xy 49.8915 130.706511) (xy 49.894437 130.743828) (xy 49.894437 130.743829) (xy 49.940855 130.903601) (xy 49.943635 130.910024) (xy 49.954 130.960069) (xy 49.954 131.294991) (xy 50.036108 131.271136) (xy 50.107105 131.271338) (xy 50.160357 131.303038) (xy 50.740834 131.883515) (xy 50.740835 131.883516) (xy 50.846484 131.989165) (xy 50.970716 132.072174) (xy 51.108754 132.129351) (xy 51.255294 132.1585) (xy 54.514701 132.1585) (xy 54.514705 132.1585) (xy 54.514706 132.1585) (xy 54.587976 132.143925) (xy 54.661247 132.129351) (xy 54.799284 132.072174) (xy 54.923515 131.989166) (xy 56.018476 130.894205) (xy 56.080788 130.860179) (xy 56.107571 130.8573) (xy 57.986701 130.8573) (xy 57.986705 130.8573) (xy 57.986706 130.8573) (xy 58.059976 130.842725) (xy 58.133247 130.828151) (xy 58.271284 130.770974) (xy 58.395515 130.687966) (xy 59.060228 130.023251) (xy 59.122539 129.989228) (xy 59.178734 129.989828) (xy 59.293043 130.017272) (xy 59.5376 130.036519) (xy 59.782157 130.017272) (xy 60.020692 129.960005) (xy 60.247332 129.866127) (xy 60.456496 129.737952) (xy 60.643033 129.578633) (xy 60.71179 129.498129) (xy 60.77124 129.459321) (xy 60.842234 129.458815) (xy 60.902233 129.496771) (xy 60.903367 129.498079) (xy 60.972167 129.578633) (xy 61.158704 129.737952) (xy 61.367868 129.866127) (xy 61.594508 129.960005) (xy 61.833043 130.017272) (xy 62.0776 130.036519) (xy 62.322157 130.017272) (xy 62.560692 129.960005) (xy 62.787332 129.866127) (xy 62.965299 129.757069) (xy 63.03383 129.738532) (xy 63.101506 129.759988) (xy 63.131999 129.788993) (xy 63.204697 129.886105) (xy 63.321634 129.973644) (xy 63.458506 130.024694) (xy 63.519002 130.031199) (xy 63.519015 130.0312) (xy 64.3636 130.0312) (xy 64.3636 128.961638) (xy 64.405308 128.985718) (xy 64.545191 129.0232) (xy 64.690009 129.0232) (xy 64.829892 128.985718) (xy 64.8716 128.961638) (xy 64.8716 130.0312) (xy 65.716185 130.0312) (xy 65.716197 130.031199) (xy 65.776693 130.024694) (xy 65.913564 129.973644) (xy 65.913565 129.973644) (xy 66.030504 129.886104) (xy 66.118044 129.769165) (xy 66.118044 129.769164) (xy 66.169094 129.632293) (xy 66.175599 129.571797) (xy 66.1756 129.571785) (xy 66.1756 128.7272) (xy 65.106038 128.7272) (xy 65.130118 128.685492) (xy 65.1676 128.545609) (xy 65.1676 128.400791) (xy 65.130118 128.260908) (xy 65.106038 128.2192) (xy 66.1756 128.2192) (xy 66.1756 127.374614) (xy 66.175599 127.374602) (xy 66.169094 127.314106) (xy 66.118044 127.177235) (xy 66.118044 127.177234) (xy 66.030504 127.060295) (xy 65.913565 126.972755) (xy 65.776693 126.921705) (xy 65.716197 126.9152) (xy 64.8716 126.9152) (xy 64.8716 127.984761) (xy 64.829892 127.960682) (xy 64.690009 127.9232) (xy 64.545191 127.9232) (xy 64.405308 127.960682) (xy 64.3636 127.984761) (xy 64.3636 126.9152) (xy 63.519002 126.9152) (xy 63.458506 126.921705) (xy 63.321635 126.972755) (xy 63.321634 126.972755) (xy 63.204695 127.060296) (xy 63.131998 127.157406) (xy 63.075162 127.199952) (xy 63.004346 127.205016) (xy 62.965297 127.189329) (xy 62.842464 127.114058) (xy 62.787332 127.080273) (xy 62.560692 126.986395) (xy 62.560691 126.986394) (xy 62.560687 126.986393) (xy 62.530085 126.979046) (xy 62.468516 126.943694) (xy 62.435834 126.880667) (xy 62.4335 126.856528) (xy 62.4335 122.414594) (xy 62.453502 122.346473) (xy 62.470405 122.325499) (xy 62.8005 121.995404) (xy 62.862812 121.961378) (xy 62.889595 121.958499) (xy 63.250544 121.958499) (xy 63.354426 121.947887) (xy 63.522738 121.892115) (xy 63.673652 121.79903) (xy 63.79903 121.673652) (xy 63.892115 121.522738) (xy 63.947887 121.354426) (xy 63.9585 121.250545) (xy 63.9585 121.250516) (xy 64.442 121.250516) (xy 64.452605 121.354318) (xy 64.452606 121.354321) (xy 64.508342 121.522525) (xy 64.601365 121.673339) (xy 64.60137 121.673345) (xy 64.726654 121.798629) (xy 64.72666 121.798634) (xy 64.877474 121.891657) (xy 65.045678 121.947393) (xy 65.045681 121.947394) (xy 65.149483 121.957999) (xy 65.149483 121.958) (xy 65.196 121.958) (xy 65.704 121.958) (xy 65.750517 121.958) (xy 65.750516 121.957999) (xy 65.854318 121.947394) (xy 65.854321 121.947393) (xy 66.022525 121.891657) (xy 66.173339 121.798634) (xy 66.173345 121.798629) (xy 66.298629 121.673345) (xy 66.298634 121.673339) (xy 66.391657 121.522525) (xy 66.447393 121.354321) (xy 66.447394 121.354318) (xy 66.457999 121.250516) (xy 66.458 121.250516) (xy 66.458 121.204) (xy 65.704 121.204) (xy 65.704 121.958) (xy 65.196 121.958) (xy 65.196 121.204) (xy 64.442 121.204) (xy 64.442 121.250516) (xy 63.9585 121.250516) (xy 63.958499 120.649483) (xy 64.442 120.649483) (xy 64.442 120.696) (xy 65.196 120.696) (xy 65.704 120.696) (xy 66.458 120.696) (xy 66.458 120.649483) (xy 66.447394 120.545681) (xy 66.447393 120.545678) (xy 66.391657 120.377474) (xy 66.298634 120.22666) (xy 66.298629 120.226654) (xy 66.173345 120.10137) (xy 66.173339 120.101365) (xy 66.022525 120.008342) (xy 65.854321 119.952606) (xy 65.854318 119.952605) (xy 65.750516 119.942) (xy 65.704 119.942) (xy 65.704 120.696) (xy 65.196 120.696) (xy 65.196 119.942) (xy 65.149483 119.942) (xy 65.045681 119.952605) (xy 65.045678 119.952606) (xy 64.877474 120.008342) (xy 64.72666 120.101365) (xy 64.726654 120.10137) (xy 64.60137 120.226654) (xy 64.601365 120.22666) (xy 64.508342 120.377474) (xy 64.452606 120.545678) (xy 64.452605 120.545681) (xy 64.442 120.649483) (xy 63.958499 120.649483) (xy 63.958499 120.649456) (xy 63.947887 120.545574) (xy 63.892115 120.377262) (xy 63.79903 120.226348) (xy 63.799029 120.226347) (xy 63.799024 120.226341) (xy 63.78071 120.208027) (xy 63.746684 120.145715) (xy 63.751749 120.0749) (xy 63.780706 120.029841) (xy 64.750346 119.060202) (xy 64.812656 119.026179) (xy 64.839439 119.0233) (xy 84.966909 119.0233) (xy 84.96691 119.0233) (xy 84.966911 119.0233) (xy 85.09307 118.989496) (xy 85.121673 118.981832) (xy 85.260427 118.901722) (xy 87.936744 116.225405) (xy 87.999056 116.191379) (xy 88.025839 116.1885) (xy 88.528632 116.1885) (xy 88.528638 116.1885) (xy 88.528645 116.188499) (xy 88.528649 116.188499) (xy 88.589196 116.18199) (xy 88.589199 116.181989) (xy 88.589201 116.181989) (xy 88.726204 116.130889) (xy 88.726799 116.130444) (xy 88.843261 116.043261) (xy 88.930887 115.926207) (xy 88.930887 115.926206) (xy 88.930889 115.926204) (xy 88.981397 115.790788) (xy 88.981988 115.789204) (xy 88.98199 115.789196) (xy 88.988499 115.728649) (xy 88.9885 115.728632) (xy 88.9885 113.091403) (xy 88.98893 113.080998) (xy 88.990428 113.062916) (xy 88.993156 113.03) (xy 88.98893 112.978999) (xy 88.9885 112.968595) (xy 88.9885 112.131367) (xy 88.988499 112.13135) (xy 88.98199 112.070803) (xy 88.981988 112.070795) (xy 88.947645 111.97872) (xy 88.942579 111.907905) (xy 88.976604 111.845592) (xy 89.026764 111.814854) (xy 89.048905 111.80766) (xy 89.199219 111.75882) (xy 89.38161 111.665887) (xy 89.547219 111.545566) (xy 89.691966 111.400819) (xy 89.812287 111.23521) (xy 89.90522 111.052819) (xy 89.968477 110.858134) (xy 90.0005 110.655952) (xy 90.0005 110.5536) (xy 90.0005 110.487708) (xy 90.0005 97.687708) (xy 90.0005 97.651248) (xy 89.968477 97.449066) (xy 89.90522 97.254381) (xy 89.812287 97.07199) (xy 89.789406 97.040497) (xy 89.691965 96.906379) (xy 89.54722 96.761634) (xy 89.381612 96.641314) (xy 89.317209 96.608499) (xy 89.199219 96.54838) (xy 89.09121 96.513285) (xy 89.017714 96.489405) (xy 88.959109 96.449331) (xy 88.931472 96.383934) (xy 88.938595 96.325542) (xy 88.981989 96.209201) (xy 88.98522 96.179154) (xy 88.988499 96.148649) (xy 88.9885 96.148632) (xy 88.9885 95.311403) (xy 88.98893 95.300998) (xy 88.993156 95.25) (xy 88.98893 95.198999) (xy 88.9885 95.188595) (xy 88.9885 92.551367) (xy 88.988499 92.55135) (xy 88.98199 92.490803) (xy 88.981988 92.490795) (xy 88.952924 92.412875) (xy 88.930889 92.353796) (xy 88.930888 92.353794) (xy 88.930887 92.353792) (xy 88.843261 92.236738) (xy 88.726207 92.149112) (xy 88.726202 92.14911) (xy 88.589204 92.098011) (xy 88.589196 92.098009) (xy 88.528649 92.0915) (xy 88.528638 92.0915) (xy 86.731362 92.0915) (xy 86.73135 92.0915) (xy 86.670803 92.098009) (xy 86.670795 92.098011) (xy 86.533797 92.14911) (xy 86.533792 92.149112) (xy 86.435509 92.222687) (xy 86.368989 92.247498) (xy 86.299615 92.232407) (xy 86.284491 92.222687) (xy 86.186207 92.149112) (xy 86.186202 92.14911) (xy 86.049204 92.098011) (xy 86.049196 92.098009) (xy 85.988649 92.0915) (xy 85.988638 92.0915) (xy 84.191362 92.0915) (xy 84.19135 92.0915) (xy 84.130803 92.098009) (xy 84.130795 92.098011) (xy 83.993797 92.14911) (xy 83.993792 92.149112) (xy 83.895091 92.223) (xy 83.828571 92.247811) (xy 83.759197 92.23272) (xy 83.744072 92.222999) (xy 83.645966 92.149556) (xy 83.645964 92.149555) (xy 83.509093 92.098505) (xy 83.448597 92.092) (xy 82.804 92.092) (xy 82.804 94.478) (xy 82.783998 94.546121) (xy 82.730342 94.592614) (xy 82.678 94.604) (xy 82.422 94.604) (xy 82.353879 94.583998) (xy 82.307386 94.530342) (xy 82.296 94.478) (xy 82.296 92.092) (xy 81.651402 92.092) (xy 81.590906 92.098505) (xy 81.454035 92.149555) (xy 81.355924 92.223) (xy 81.289404 92.24781) (xy 81.22003 92.232718) (xy 81.204907 92.222999) (xy 81.106207 92.149112) (xy 81.106202 92.14911) (xy 80.969204 92.098011) (xy 80.969196 92.098009) (xy 80.908649 92.0915) (xy 80.908638 92.0915) (xy 79.111362 92.0915) (xy 79.11135 92.0915) (xy 79.050803 92.098009) (xy 79.050795 92.098011) (xy 78.913797 92.14911) (xy 78.913792 92.149112) (xy 78.815509 92.222687) (xy 78.748989 92.247498) (xy 78.679615 92.232407) (xy 78.664491 92.222687) (xy 78.566207 92.149112) (xy 78.566202 92.14911) (xy 78.429204 92.098011) (xy 78.429196 92.098009) (xy 78.368649 92.0915) (xy 78.368638 92.0915) (xy 76.571362 92.0915) (xy 76.57135 92.0915) (xy 76.510803 92.098009) (xy 76.510795 92.098011) (xy 76.373797 92.14911) (xy 76.373792 92.149112) (xy 76.275509 92.222687) (xy 76.208989 92.247498) (xy 76.139615 92.232407) (xy 76.124491 92.222687) (xy 76.026207 92.149112) (xy 76.026202 92.14911) (xy 75.889204 92.098011) (xy 75.889196 92.098009) (xy 75.828649 92.0915) (xy 75.828638 92.0915) (xy 74.031362 92.0915) (xy 74.03135 92.0915) (xy 73.970803 92.098009) (xy 73.970795 92.098011) (xy 73.833797 92.14911) (xy 73.833792 92.149112) (xy 73.735509 92.222687) (xy 73.668989 92.247498) (xy 73.599615 92.232407) (xy 73.584491 92.222687) (xy 73.486207 92.149112) (xy 73.486202 92.14911) (xy 73.349204 92.098011) (xy 73.349196 92.098009) (xy 73.288649 92.0915) (xy 73.288638 92.0915) (xy 71.491362 92.0915) (xy 71.49135 92.0915) (xy 71.430803 92.098009) (xy 71.430795 92.098011) (xy 71.293797 92.14911) (xy 71.293792 92.149112) (xy 71.195091 92.223) (xy 71.128571 92.247811) (xy 71.059197 92.23272) (xy 71.044072 92.222999) (xy 70.945966 92.149556) (xy 70.945964 92.149555) (xy 70.809093 92.098505) (xy 70.748597 92.092) (xy 70.104 92.092) (xy 70.104 94.807749) (xy 70.046853 94.774755) (xy 69.917143 94.74) (xy 69.782857 94.74) (xy 69.653147 94.774755) (xy 69.596 94.807749) (xy 69.596 92.092) (xy 68.951402 92.092) (xy 68.890906 92.098505) (xy 68.754035 92.149555) (xy 68.655924 92.223) (xy 68.589404 92.24781) (xy 68.52003 92.232718) (xy 68.504907 92.222999) (xy 68.406207 92.149112) (xy 68.406202 92.14911) (xy 68.269204 92.098011) (xy 68.269196 92.098009) (xy 68.208649 92.0915) (xy 68.208638 92.0915) (xy 66.411362 92.0915) (xy 66.41135 92.0915) (xy 66.350803 92.098009) (xy 66.350795 92.098011) (xy 66.213797 92.14911) (xy 66.213792 92.149112) (xy 66.115509 92.222687) (xy 66.048989 92.247498) (xy 65.979615 92.232407) (xy 65.964491 92.222687) (xy 65.866207 92.149112) (xy 65.866202 92.14911) (xy 65.729204 92.098011) (xy 65.729196 92.098009) (xy 65.668649 92.0915) (xy 65.668638 92.0915) (xy 64.993239 92.0915) (xy 64.925118 92.071498) (xy 64.878625 92.017842) (xy 64.868521 91.947568) (xy 64.898015 91.882988) (xy 64.904144 91.876405) (xy 65.165144 91.615405) (xy 65.227456 91.581379) (xy 65.254239 91.5785) (xy 84.710109 91.5785) (xy 84.71011 91.5785) (xy 84.710111 91.5785) (xy 84.795381 91.555652) (xy 84.864873 91.537032) (xy 85.003627 91.456922) (xy 85.815145 90.645403) (xy 85.877456 90.61138) (xy 85.904239 90.6085) (xy 88.20966 90.6085) (xy 88.209661 90.6085) (xy 88.287041 90.587766) (xy 88.364423 90.567032) (xy 88.503177 90.486922) (xy 89.486921 89.503178) (xy 89.567032 89.364423) (xy 89.588337 89.28491) (xy 89.6085 89.209661) (xy 89.6085 86.119889) (xy 89.571955 85.9835) (xy 89.567032 85.965127) (xy 89.511545 85.869022) (xy 89.486923 85.826375) (xy 89.486915 85.826365) (xy 88.946996 85.286446) (xy 88.91297 85.224134) (xy 88.918035 85.153319) (xy 88.960582 85.096483) (xy 89.027102 85.071672) (xy 89.062289 85.074105) (xy 89.109309 85.0841) (xy 89.109313 85.0841) (xy 89.300287 85.0841) (xy 89.487088 85.044394) (xy 89.661552 84.966718) (xy 89.816053 84.854466) (xy 89.831217 84.837625) (xy 89.943834 84.712551) (xy 89.943835 84.712549) (xy 89.94384 84.712544) (xy 90.039327 84.547156) (xy 90.098342 84.365528) (xy 90.118304 84.1756) (xy 90.098342 83.985672) (xy 90.039327 83.804044) (xy 89.94384 83.638656) (xy 89.943838 83.638654) (xy 89.943834 83.638648) (xy 89.816055 83.496735) (xy 89.661552 83.384482) (xy 89.487088 83.306806) (xy 89.300287 83.2671) (xy 89.209039 83.2671) (xy 89.140918 83.247098) (xy 89.119948 83.230199) (xy 88.652827 82.763078) (xy 88.652825 82.763077) (xy 88.652823 82.763075) (xy 88.514077 82.68297) (xy 88.514074 82.682969) (xy 88.514073 82.682968) (xy 88.514071 82.682967) (xy 88.51407 82.682967) (xy 88.397221 82.651658) (xy 88.397221 82.651657) (xy 88.359311 82.6415) (xy 87.804238 82.6415) (xy 87.736117 82.621498) (xy 87.715143 82.604595) (xy 86.713321 81.602773) (xy 86.679295 81.540461) (xy 86.68436 81.469646) (xy 86.726907 81.41281) (xy 86.793427 81.387999) (xy 86.853664 81.39857) (xy 86.941312 81.437594) (xy 87.128113 81.4773) (xy 87.319087 81.4773) (xy 87.505888 81.437594) (xy 87.680352 81.359918) (xy 87.834853 81.247666) (xy 87.842313 81.239381) (xy 87.962634 81.105751) (xy 87.962635 81.105749) (xy 87.96264 81.105744) (xy 88.058127 80.940356) (xy 88.117142 80.758728) (xy 88.137104 80.5688) (xy 88.117142 80.378872) (xy 88.058127 80.197244) (xy 87.96264 80.031856) (xy 87.962638 80.031854) (xy 87.962634 80.031848) (xy 87.844464 79.900607) (xy 87.813746 79.8366) (xy 87.8121 79.816297) (xy 87.8121 78.866779) (xy 87.832102 78.798658) (xy 87.871954 78.759538) (xy 87.886568 78.750524) (xy 87.927252 78.72543) (xy 88.05263 78.600052) (xy 88.145715 78.449138) (xy 88.201487 78.280826) (xy 88.2121 78.176945) (xy 88.212099 77.575856) (xy 88.201487 77.471974) (xy 88.145715 77.303662) (xy 88.05263 77.152748) (xy 88.052629 77.152747) (xy 88.052624 77.152741) (xy 87.96431 77.064427) (xy 87.930284 77.002115) (xy 87.935349 76.9313) (xy 87.964306 76.886241) (xy 89.616922 75.233627) (xy 89.697032 75.094873) (xy 89.7385 74.94011) (xy 89.7385 74.77989) (xy 89.7385 73.846849) (xy 89.758502 73.778728) (xy 89.80453 73.736036) (xy 89.875576 73.697589) (xy 90.05324 73.559306) (xy 90.205722 73.393668) (xy 90.205927 73.393355) (xy 90.238473 73.343539) (xy 90.294518 73.257754) (xy 90.34852 73.211668) (xy 90.418868 73.202092) (xy 90.483225 73.232069) (xy 90.50548 73.257753) (xy 90.531534 73.297631) (xy 90.594275 73.393665) (xy 90.594279 73.39367) (xy 90.746762 73.559308) (xy 90.850319 73.63991) (xy 90.924424 73.697589) (xy 90.995469 73.736036) (xy 91.045859 73.786048) (xy 91.0615 73.846849) (xy 91.0615 75.41576) (xy 91.041498 75.483881) (xy 91.024595 75.504855) (xy 89.698454 76.830995) (xy 89.636142 76.865021) (xy 89.60936 76.8679) (xy 89.432255 76.8679) (xy 89.328374 76.878512) (xy 89.160061 76.934285) (xy 89.009147 77.02737) (xy 89.009141 77.027375) (xy 88.883775 77.152741) (xy 88.88377 77.152747) (xy 88.790685 77.303662) (xy 88.734913 77.471972) (xy 88.734912 77.471979) (xy 88.7243 77.575846) (xy 88.7243 77.985888) (xy 88.707419 78.048888) (xy 88.63777 78.169522) (xy 88.637765 78.169534) (xy 88.625127 78.216698) (xy 88.625128 78.216699) (xy 88.5963 78.324288) (xy 88.5963 78.873309) (xy 88.576298 78.94143) (xy 88.563937 78.957619) (xy 88.465761 79.066654) (xy 88.465758 79.066658) (xy 88.373503 79.226449) (xy 88.370273 79.232044) (xy 88.357303 79.27196) (xy 88.311257 79.413672) (xy 88.291296 79.6036) (xy 88.311257 79.793527) (xy 88.325253 79.8366) (xy 88.370273 79.975156) (xy 88.370276 79.975161) (xy 88.465758 80.140541) (xy 88.465765 80.140551) (xy 88.593544 80.282464) (xy 88.593547 80.282466) (xy 88.748048 80.394718) (xy 88.922512 80.472394) (xy 89.109313 80.5121) (xy 89.300287 80.5121) (xy 89.487088 80.472394) (xy 89.661552 80.394718) (xy 89.816053 80.282466) (xy 89.818171 80.280114) (xy 89.943834 80.140551) (xy 89.943835 80.140549) (xy 89.94384 80.140544) (xy 90.039327 79.975156) (xy 90.098342 79.793528) (xy 90.118304 79.6036) (xy 90.098342 79.413672) (xy 90.039327 79.232044) (xy 89.947053 79.072222) (xy 89.930316 79.003228) (xy 89.953536 78.936136) (xy 90.009343 78.892249) (xy 90.043368 78.883875) (xy 90.137226 78.874287) (xy 90.305538 78.818515) (xy 90.456452 78.72543) (xy 90.58183 78.600052) (xy 90.674915 78.449138) (xy 90.730687 78.280826) (xy 90.7413 78.176945) (xy 90.7413 78.176916) (xy 91.2248 78.176916) (xy 91.235405 78.280718) (xy 91.235406 78.280721) (xy 91.291142 78.448925) (xy 91.384165 78.599739) (xy 91.38417 78.599745) (xy 91.509454 78.725029) (xy 91.50946 78.725034) (xy 91.660274 78.818057) (xy 91.828478 78.873793) (xy 91.828481 78.873794) (xy 91.932283 78.884399) (xy 91.932283 78.8844) (xy 91.9788 78.8844) (xy 92.4868 78.8844) (xy 92.533317 78.8844) (xy 92.533316 78.884399) (xy 92.637118 78.873794) (xy 92.637121 78.873793) (xy 92.805325 78.818057) (xy 92.956139 78.725034) (xy 92.956145 78.725029) (xy 93.081429 78.599745) (xy 93.081434 78.599739) (xy 93.174457 78.448925) (xy 93.230193 78.280721) (xy 93.230194 78.280718) (xy 93.240799 78.176916) (xy 93.2408 78.176916) (xy 93.2408 78.1304) (xy 92.4868 78.1304) (xy 92.4868 78.8844) (xy 91.9788 78.8844) (xy 91.9788 78.1304) (xy 91.2248 78.1304) (xy 91.2248 78.176916) (xy 90.7413 78.176916) (xy 90.741299 77.575856) (xy 90.74121 77.574984) (xy 90.741245 77.574794) (xy 90.741136 77.572644) (xy 90.74165 77.572617) (xy 90.754185 77.505184) (xy 90.77746 77.473087) (xy 91.086835 77.163712) (xy 91.149145 77.129688) (xy 91.21996 77.134753) (xy 91.276796 77.1773) (xy 91.301607 77.24382) (xy 91.29191 77.296398) (xy 91.293451 77.296909) (xy 91.235406 77.472078) (xy 91.235405 77.472081) (xy 91.2248 77.575883) (xy 91.2248 77.6224) (xy 91.9788 77.6224) (xy 92.4868 77.6224) (xy 93.2408 77.6224) (xy 93.2408 77.575883) (xy 93.230194 77.472081) (xy 93.230193 77.472078) (xy 93.174457 77.303874) (xy 93.081434 77.15306) (xy 93.081429 77.153054) (xy 92.956145 77.02777) (xy 92.956139 77.027765) (xy 92.805325 76.934742) (xy 92.637121 76.879006) (xy 92.637118 76.879005) (xy 92.533316 76.8684) (xy 92.4868 76.8684) (xy 92.4868 77.6224) (xy 91.9788 77.6224) (xy 91.9788 76.8684) (xy 91.932283 76.8684) (xy 91.828481 76.879005) (xy 91.828478 76.879006) (xy 91.653309 76.937051) (xy 91.652698 76.935207) (xy 91.592256 76.944382) (xy 91.527446 76.915396) (xy 91.488596 76.855973) (xy 91.488039 76.784978) (xy 91.520112 76.730435) (xy 92.156922 76.093627) (xy 92.237032 75.954872) (xy 92.248714 75.911273) (xy 92.2785 75.800111) (xy 92.2785 73.846849) (xy 92.298502 73.778728) (xy 92.34453 73.736036) (xy 92.415576 73.697589) (xy 92.59324 73.559306) (xy 92.745722 73.393668) (xy 92.745927 73.393355) (xy 92.778473 73.343539) (xy 92.86886 73.205191) (xy 92.959296 72.999016) (xy 93.014564 72.780768) (xy 93.033156 72.5564) (xy 93.014564 72.332032) (xy 93.012125 72.322402) (xy 92.959297 72.113787) (xy 92.959296 72.113786) (xy 92.959296 72.113784) (xy 92.86886 71.907609) (xy 92.86214 71.897324) (xy 92.745724 71.719134) (xy 92.74572 71.719129) (xy 92.597959 71.55862) (xy 92.59324 71.553494) (xy 92.593239 71.553493) (xy 92.593237 71.553491) (xy 92.499273 71.480356) (xy 92.415576 71.415211) (xy 92.415569 71.415207) (xy 92.34453 71.376762) (xy 92.29414 71.326749) (xy 92.2785 71.265949) (xy 92.2785 70.246849) (xy 92.298502 70.178728) (xy 92.34453 70.136036) (xy 92.415576 70.097589) (xy 92.59324 69.959306) (xy 92.745722 69.793668) (xy 92.86886 69.605191) (xy 92.959296 69.399016) (xy 93.014564 69.180768) (xy 93.033156 68.9564) (xy 93.014564 68.732032) (xy 92.968336 68.549483) (xy 92.959297 68.513787) (xy 92.959296 68.513786) (xy 92.959296 68.513784) (xy 92.86886 68.307609) (xy 92.86214 68.297324) (xy 92.745724 68.119134) (xy 92.74572 68.119129) (xy 92.615482 67.977655) (xy 92.59324 67.953494) (xy 92.593239 67.953493) (xy 92.593237 67.953491) (xy 92.473679 67.860435) (xy 92.415576 67.815211) (xy 92.217574 67.708058) (xy 92.217572 67.708057) (xy 92.217571 67.708056) (xy 92.004639 67.634957) (xy 92.00463 67.634955) (xy 91.960476 67.627587) (xy 91.782569 67.5979) (xy 91.557431 67.5979) (xy 91.409211 67.622633) (xy 91.335369 67.634955) (xy 91.33536 67.634957) (xy 91.122428 67.708056) (xy 91.122426 67.708058) (xy 90.950274 67.801222) (xy 90.924426 67.81521) (xy 90.924424 67.815211) (xy 90.746762 67.953491) (xy 90.594279 68.119129) (xy 90.505483 68.255043) (xy 90.451479 68.301131) (xy 90.381131 68.310706) (xy 90.316774 68.280729) (xy 90.294517 68.255043) (xy 90.20572 68.119129) (xy 90.075482 67.977655) (xy 90.05324 67.953494) (xy 90.053239 67.953493) (xy 90.053237 67.953491) (xy 89.933679 67.860435) (xy 89.875576 67.815211) (xy 89.677574 67.708058) (xy 89.677572 67.708057) (xy 89.677571 67.708056) (xy 89.464639 67.634957) (xy 89.46463 67.634955) (xy 89.420476 67.627587) (xy 89.242569 67.5979) (xy 89.017431 67.5979) (xy 88.869211 67.622633) (xy 88.795369 67.634955) (xy 88.79536 67.634957) (xy 88.582428 67.708056) (xy 88.582426 67.708058) (xy 88.410274 67.801222) (xy 88.384426 67.81521) (xy 88.384424 67.815211) (xy 88.206762 67.953491) (xy 88.054279 68.119129) (xy 87.965483 68.255043) (xy 87.911479 68.301131) (xy 87.841131 68.310706) (xy 87.776774 68.280729) (xy 87.754517 68.255043) (xy 87.66572 68.119129) (xy 87.588954 68.035741) (xy 87.51324 67.953494) (xy 87.456292 67.909169) (xy 87.397109 67.863104) (xy 87.355638 67.805479) (xy 87.3485 67.763673) (xy 87.3485 67.676371) (xy 87.368502 67.60825) (xy 87.385405 67.587276) (xy 87.937276 67.035405) (xy 87.999588 67.001379) (xy 88.026371 66.9985) (xy 92.615294 66.9985) (xy 93.373629 66.9985) (xy 93.44175 67.018502) (xy 93.462724 67.035405) (xy 93.884595 67.457276) (xy 93.918621 67.519588) (xy 93.9215 67.546371) (xy 93.9215 78.638829) (xy 93.901498 78.70695) (xy 93.884595 78.727924) (xy 92.180438 80.43208) (xy 92.180433 80.432086) (xy 92.100111 80.552298) (xy 92.097426 80.556316) (xy 92.040249 80.694353) (xy 92.032462 80.7335) (xy 92.032462 80.733501) (xy 92.0111 80.840891) (xy 92.0111 84.763309) (xy 92.02433 84.829817) (xy 92.040249 84.909847) (xy 92.04025 84.90985) (xy 92.044139 84.919238) (xy 92.097426 85.047884) (xy 92.180434 85.172115) (xy 92.180438 85.172119) (xy 92.564224 85.555905) (xy 92.59825 85.618217) (xy 92.593185 85.689032) (xy 92.564224 85.734095) (xy 92.120838 86.17748) (xy 92.120833 86.177486) (xy 92.037827 86.301714) (xy 91.991938 86.4125) (xy 91.980649 86.439753) (xy 91.975464 86.465819) (xy 91.973801 86.47418) (xy 91.9515 86.58629) (xy 91.9515 95.953707) (xy 91.968192 96.037622) (xy 91.980649 96.100247) (xy 92.037826 96.238284) (xy 92.120834 96.362515) (xy 92.120838 96.362519) (xy 92.564224 96.805905) (xy 92.59825 96.868217) (xy 92.593185 96.939032) (xy 92.564224 96.984095) (xy 92.120838 97.42748) (xy 92.120833 97.427486) (xy 92.037826 97.551715) (xy 92.013463 97.610533) (xy 91.990564 97.665819) (xy 91.984622 97.680164) (xy 91.984619 97.680171) (xy 91.980649 97.689752) (xy 91.980649 97.689753) (xy 91.9515 97.83629) (xy 91.9515 107.203707) (xy 91.971613 107.304819) (xy 91.980649 107.350247) (xy 92.037826 107.488284) (xy 92.120834 107.612515) (xy 92.120838 107.612519) (xy 92.564224 108.055905) (xy 92.59825 108.118217) (xy 92.593185 108.189032) (xy 92.564224 108.234095) (xy 92.120838 108.67748) (xy 92.120833 108.677486) (xy 92.037827 108.801714) (xy 92.00774 108.874351) (xy 92.007739 108.874352) (xy 91.980652 108.939742) (xy 91.980649 108.939752) (xy 91.9515 109.08629) (xy 91.9515 109.086294) (xy 91.9515 118.655406) (xy 91.963553 118.715999) (xy 91.980649 118.801947) (xy 92.037826 118.939984) (xy 92.120834 119.064215) (xy 92.120838 119.064219) (xy 92.512524 119.455905) (xy 92.54655 119.518217) (xy 92.541485 119.589032) (xy 92.512524 119.634095) (xy 91.494224 120.652395) (xy 91.431912 120.686421) (xy 91.405129 120.6893) (xy 75.016172 120.6893) (xy 74.948051 120.669298) (xy 74.91069 120.632217) (xy 74.897322 120.611757) (xy 74.896522 120.610532) (xy 74.74404 120.444894) (xy 74.744039 120.444893) (xy 74.744037 120.444891) (xy 74.657146 120.377261) (xy 74.566376 120.306611) (xy 74.368374 120.199458) (xy 74.368372 120.199457) (xy 74.368371 120.199456) (xy 74.155439 120.126357) (xy 74.15543 120.126355) (xy 74.110951 120.118933) (xy 73.933369 120.0893) (xy 73.708231 120.0893) (xy 73.560011 120.114033) (xy 73.486169 120.126355) (xy 73.48616 120.126357) (xy 73.273228 120.199456) (xy 73.273226 120.199458) (xy 73.223538 120.226348) (xy 73.075226 120.30661) (xy 73.075224 120.306611) (xy 72.897562 120.444891) (xy 72.836554 120.511163) (xy 72.775701 120.547733) (xy 72.704736 120.545598) (xy 72.646191 120.505436) (xy 72.625799 120.469857) (xy 72.593686 120.383762) (xy 72.581689 120.351596) (xy 72.581688 120.351594) (xy 72.581687 120.351592) (xy 72.494061 120.234538) (xy 72.377007 120.146912) (xy 72.377002 120.14691) (xy 72.240004 120.095811) (xy 72.239996 120.095809) (xy 72.179449 120.0893) (xy 72.179438 120.0893) (xy 70.382162 120.0893) (xy 70.38215 120.0893) (xy 70.321603 120.095809) (xy 70.321595 120.095811) (xy 70.184597 120.14691) (xy 70.184592 120.146912) (xy 70.067538 120.234538) (xy 69.979912 120.351592) (xy 69.97991 120.351597) (xy 69.928811 120.488595) (xy 69.928809 120.488603) (xy 69.9223 120.54915) (xy 69.9223 122.346449) (xy 69.928809 122.406996) (xy 69.928811 122.407004) (xy 69.97991 122.544002) (xy 69.979912 122.544007) (xy 70.067538 122.661061) (xy 70.184591 122.748686) (xy 70.184592 122.748686) (xy 70.184596 122.748689) (xy 70.29961 122.791587) (xy 70.356442 122.834132) (xy 70.381253 122.900652) (xy 70.366162 122.970026) (xy 70.348275 122.994979) (xy 70.20508 123.150529) (xy 70.205075 123.150534) (xy 70.081941 123.339006) (xy 69.991503 123.545186) (xy 69.991502 123.545187) (xy 69.936237 123.763424) (xy 69.936236 123.76343) (xy 69.936236 123.763432) (xy 69.917644 123.9878) (xy 69.93507 124.1981) (xy 69.936237 124.212175) (xy 69.991502 124.430412) (xy 69.991503 124.430413) (xy 69.991504 124.430416) (xy 70.079039 124.629978) (xy 70.081941 124.636593) (xy 70.205075 124.825065) (xy 70.205078 124.825068) (xy 70.357562 124.990708) (xy 70.412131 125.033181) (xy 70.535224 125.128989) (xy 70.56848 125.146986) (xy 70.618871 125.197) (xy 70.634223 125.266316) (xy 70.609662 125.332929) (xy 70.56848 125.368613) (xy 70.535226 125.38661) (xy 70.535224 125.386611) (xy 70.357562 125.524891) (xy 70.205079 125.690529) (xy 70.205075 125.690534) (xy 70.081941 125.879006) (xy 69.991503 126.085186) (xy 69.991502 126.085187) (xy 69.936237 126.303424) (xy 69.936236 126.30343) (xy 69.936236 126.303432) (xy 69.917644 126.5278) (xy 69.933636 126.720793) (xy 69.936237 126.752175) (xy 69.991502 126.970412) (xy 69.991503 126.970413) (xy 69.991504 126.970416) (xy 70.054508 127.114052) (xy 70.081941 127.176593) (xy 70.205075 127.365065) (xy 70.205079 127.36507) (xy 70.357562 127.530708) (xy 70.387878 127.554304) (xy 70.535224 127.668989) (xy 70.567955 127.686702) (xy 70.56848 127.686986) (xy 70.618871 127.737) (xy 70.634223 127.806316) (xy 70.609662 127.872929) (xy 70.56848 127.908613) (xy 70.535226 127.92661) (xy 70.535224 127.926611) (xy 70.357562 128.064891) (xy 70.205079 128.230529) (xy 70.205075 128.230534) (xy 70.081941 128.419006) (xy 69.991503 128.625186) (xy 69.991502 128.625187) (xy 69.936237 128.843424) (xy 69.936236 128.84343) (xy 69.936236 128.843432) (xy 69.917644 129.0678) (xy 69.926499 129.174667) (xy 69.936237 129.292175) (xy 69.991502 129.510412) (xy 69.991503 129.510413) (xy 70.081941 129.716593) (xy 70.205075 129.905065) (xy 70.205079 129.90507) (xy 70.357562 130.070708) (xy 70.412131 130.113181) (xy 70.535224 130.208989) (xy 70.56848 130.226986) (xy 70.618871 130.277) (xy 70.634223 130.346316) (xy 70.609662 130.412929) (xy 70.56848 130.448613) (xy 70.535226 130.46661) (xy 70.535224 130.466611) (xy 70.357562 130.604891) (xy 70.205079 130.770529) (xy 70.205075 130.770534) (xy 70.081941 130.959006) (xy 69.991503 131.165186) (xy 69.991502 131.165187) (xy 69.936237 131.383424) (xy 69.936236 131.38343) (xy 69.936236 131.383432) (xy 69.917644 131.6078) (xy 69.933636 131.800793) (xy 69.936237 131.832175) (xy 69.991502 132.050412) (xy 69.991503 132.050413) (xy 69.991504 132.050416) (xy 70.08194 132.256591) (xy 70.081941 132.256593) (xy 70.205075 132.445065) (xy 70.205079 132.44507) (xy 70.357562 132.610708) (xy 70.388888 132.63509) (xy 70.535224 132.748989) (xy 70.733226 132.856142) (xy 70.733227 132.856142) (xy 70.733228 132.856143) (xy 70.845027 132.894523) (xy 70.946165 132.929244) (xy 71.168231 132.9663) (xy 71.168235 132.9663) (xy 71.393365 132.9663) (xy 71.393369 132.9663) (xy 71.615435 132.929244) (xy 71.828374 132.856142) (xy 72.026376 132.748989) (xy 72.20404 132.610706) (xy 72.356522 132.445068) (xy 72.445616 132.308698) (xy 72.499619 132.26261) (xy 72.569967 132.253035) (xy 72.634324 132.283012) (xy 72.656582 132.308698) (xy 72.745474 132.444758) (xy 72.897897 132.610334) (xy 73.075498 132.748567) (xy 73.075499 132.748568) (xy 73.273428 132.855682) (xy 73.27343 132.855683) (xy 73.486283 132.928755) (xy 73.486292 132.928757) (xy 73.5668 132.942191) (xy 73.5668 132.038502) (xy 73.627807 132.073725) (xy 73.754974 132.1078) (xy 73.886626 132.1078) (xy 74.013793 132.073725) (xy 74.0748 132.038502) (xy 74.0748 132.94219) (xy 74.155307 132.928757) (xy 74.155316 132.928755) (xy 74.368169 132.855683) (xy 74.368171 132.855682) (xy 74.5661 132.748568) (xy 74.566101 132.748567) (xy 74.743702 132.610334) (xy 74.896125 132.444758) (xy 74.983692 132.310726) (xy 79.732 132.310726) (xy 79.746583 132.458794) (xy 79.746585 132.458806) (xy 79.804219 132.648799) (xy 79.804225 132.648814) (xy 79.897824 132.823924) (xy 80.023788 132.977411) (xy 80.177275 133.103375) (xy 80.352385 133.196974) (xy 80.3524 133.19698) (xy 80.542393 133.254614) (xy 80.542405 133.254616) (xy 80.690473 133.269199) (xy 80.690491 133.2692) (xy 80.986 133.2692) (xy 80.986 132.0152) (xy 79.732 132.0152) (xy 79.732 132.310726) (xy 74.983692 132.310726) (xy 75.019219 132.256348) (xy 75.10962 132.050256) (xy 75.109623 132.050249) (xy 75.157344 131.8618) (xy 74.251503 131.8618) (xy 74.286725 131.800793) (xy 74.316736 131.688791) (xy 81.44 131.688791) (xy 81.44 131.833609) (xy 81.477482 131.973492) (xy 81.494 132.002102) (xy 81.494 133.2692) (xy 81.78951 133.2692) (xy 81.789518 133.269199) (xy 81.841132 133.264115) (xy 81.863371 133.263896) (xy 81.989999 133.273862) (xy 82.226632 133.255239) (xy 82.457437 133.199828) (xy 82.676738 133.108991) (xy 82.86389 132.994302) (xy 82.863891 132.994301) (xy 82.155772 132.286182) (xy 82.202292 132.273718) (xy 82.327708 132.20131) (xy 82.43011 132.098908) (xy 82.502518 131.973492) (xy 82.514983 131.926972) (xy 83.223102 132.635091) (xy 83.223102 132.63509) (xy 83.337791 132.447938) (xy 83.428628 132.228637) (xy 83.484039 131.997832) (xy 83.502662 131.7612) (xy 86.977337 131.7612) (xy 86.99596 131.997832) (xy 87.051371 132.228637) (xy 87.142208 132.447938) (xy 87.256896 132.63509) (xy 87.256897 132.63509) (xy 87.965016 131.926971) (xy 87.977482 131.973492) (xy 88.04989 132.098908) (xy 88.152292 132.20131) (xy 88.277708 132.273718) (xy 88.324225 132.286182) (xy 87.616107 132.994301) (xy 87.616108 132.994302) (xy 87.803261 133.108991) (xy 88.022562 133.199828) (xy 88.253367 133.255239) (xy 88.489999 133.273862) (xy 88.616626 133.263896) (xy 88.638865 133.264115) (xy 88.69048 133.269199) (xy 88.69049 133.2692) (xy 88.986 133.2692) (xy 89.494 133.2692) (xy 89.789509 133.2692) (xy 89.789526 133.269199) (xy 89.937594 133.254616) (xy 89.937606 133.254614) (xy 90.127599 133.19698) (xy 90.127614 133.196974) (xy 90.302724 133.103375) (xy 90.456211 132.977411) (xy 90.582175 132.823924) (xy 90.675774 132.648814) (xy 90.67578 132.648799) (xy 90.733414 132.458806) (xy 90.733416 132.458794) (xy 90.747999 132.310726) (xy 90.748 132.310708) (xy 90.748 132.0152) (xy 89.494 132.0152) (xy 89.494 133.2692) (xy 88.986 133.2692) (xy 88.986 132.002102) (xy 89.002518 131.973492) (xy 89.04 131.833609) (xy 89.04 131.688791) (xy 89.002518 131.548908) (xy 88.986 131.520297) (xy 88.986 131.5072) (xy 89.494 131.5072) (xy 90.748 131.5072) (xy 90.748 131.211691) (xy 90.747999 131.211673) (xy 90.733416 131.063605) (xy 90.733414 131.063593) (xy 90.67578 130.8736) (xy 90.675774 130.873585) (xy 90.582175 130.698475) (xy 90.456211 130.544988) (xy 90.302724 130.419024) (xy 90.127614 130.325425) (xy 90.127599 130.325419) (xy 89.937606 130.267785) (xy 89.937594 130.267783) (xy 89.789526 130.2532) (xy 89.494 130.2532) (xy 89.494 131.5072) (xy 88.986 131.5072) (xy 88.986 130.2532) (xy 88.69049 130.2532) (xy 88.638862 130.258284) (xy 88.616629 130.258502) (xy 88.49 130.248537) (xy 88.253367 130.26716) (xy 88.022562 130.322571) (xy 87.803266 130.413406) (xy 87.616108 130.528097) (xy 87.616108 130.528098) (xy 88.324227 131.236217) (xy 88.277708 131.248682) (xy 88.152292 131.32109) (xy 88.04989 131.423492) (xy 87.977482 131.548908) (xy 87.965017 131.595427) (xy 87.256898 130.887308) (xy 87.256897 130.887308) (xy 87.142206 131.074466) (xy 87.051371 131.293762) (xy 86.99596 131.524567) (xy 86.977337 131.7612) (xy 83.502662 131.7612) (xy 83.484039 131.524567) (xy 83.428628 131.293762) (xy 83.337791 131.074461) (xy 83.223102 130.887308) (xy 83.223101 130.887307) (xy 82.514982 131.595426) (xy 82.502518 131.548908) (xy 82.43011 131.423492) (xy 82.327708 131.32109) (xy 82.202292 131.248682) (xy 82.155772 131.236216) (xy 82.86389 130.528097) (xy 82.86389 130.528096) (xy 82.676738 130.413408) (xy 82.457437 130.322571) (xy 82.226632 130.26716) (xy 81.989998 130.248537) (xy 81.863368 130.258502) (xy 81.841136 130.258283) (xy 81.789529 130.253201) (xy 81.789508 130.2532) (xy 81.494 130.2532) (xy 81.494 131.520297) (xy 81.477482 131.548908) (xy 81.44 131.688791) (xy 74.316736 131.688791) (xy 74.3208 131.673626) (xy 74.3208 131.541974) (xy 74.286725 131.414807) (xy 74.251503 131.3538) (xy 75.157344 131.3538) (xy 75.157344 131.353799) (xy 75.121353 131.211673) (xy 79.732 131.211673) (xy 79.732 131.5072) (xy 80.986 131.5072) (xy 80.986 130.2532) (xy 80.690473 130.2532) (xy 80.542405 130.267783) (xy 80.542393 130.267785) (xy 80.3524 130.325419) (xy 80.352385 130.325425) (xy 80.177275 130.419024) (xy 80.023788 130.544988) (xy 79.897824 130.698475) (xy 79.804225 130.873585) (xy 79.804219 130.8736) (xy 79.746585 131.063593) (xy 79.746583 131.063605) (xy 79.732 131.211673) (xy 75.121353 131.211673) (xy 75.109623 131.16535) (xy 75.10962 131.165343) (xy 75.019219 130.959251) (xy 74.896125 130.770841) (xy 74.743702 130.605265) (xy 74.566101 130.467032) (xy 74.5661 130.467031) (xy 74.532591 130.448897) (xy 74.482201 130.398883) (xy 74.46685 130.329566) (xy 74.491412 130.262953) (xy 74.53259 130.227272) (xy 74.566376 130.208989) (xy 74.74404 130.070706) (xy 74.896522 129.905068) (xy 75.01966 129.716591) (xy 75.110096 129.510416) (xy 75.165364 129.292168) (xy 75.183956 129.0678) (xy 75.16655 128.85775) (xy 75.180859 128.788213) (xy 75.203022 128.758256) (xy 75.91114 128.050139) (xy 75.911145 128.050135) (xy 75.921514 128.039765) (xy 75.921516 128.039765) (xy 76.027165 127.934116) (xy 76.110174 127.809884) (xy 76.147451 127.719889) (xy 76.167351 127.671847) (xy 76.1965 127.525305) (xy 76.1965 127.375895) (xy 76.1965 126.711646) (xy 79.7315 126.711646) (xy 79.7315 127.810734) (xy 79.731501 127.810754) (xy 79.74609 127.958894) (xy 79.746091 127.9589) (xy 79.746092 127.958901) (xy 79.803759 128.149004) (xy 79.897405 128.324204) (xy 80.023432 128.477768) (xy 80.176996 128.603795) (xy 80.352196 128.697441) (xy 80.542299 128.755108) (xy 80.542303 128.755108) (xy 80.542305 128.755109) (xy 80.57423 128.758253) (xy 80.690453 128.7697) (xy 81.789546 128.769699) (xy 81.841143 128.764616) (xy 81.863367 128.764398) (xy 81.99 128.774365) (xy 82.226711 128.755735) (xy 82.457594 128.700305) (xy 82.676963 128.60944) (xy 82.879416 128.485376) (xy 83.059969 128.331169) (xy 83.214176 128.150616) (xy 83.334134 127.954862) (xy 83.38678 127.907234) (xy 83.441565 127.8947) (xy 87.038435 127.8947) (xy 87.106556 127.914702) (xy 87.145865 127.954862) (xy 87.265824 128.150616) (xy 87.265825 128.150617) (xy 87.265826 128.150619) (xy 87.42003 128.331169) (xy 87.591675 128.477767) (xy 87.600584 128.485376) (xy 87.803037 128.60944) (xy 88.022406 128.700305) (xy 88.253289 128.755735) (xy 88.49 128.774365) (xy 88.573604 128.767784) (xy 88.61662 128.764399) (xy 88.638851 128.764616) (xy 88.690453 128.7697) (xy 89.789546 128.769699) (xy 89.852256 128.763523) (xy 89.937694 128.755109) (xy 89.937695 128.755108) (xy 89.937701 128.755108) (xy 90.127804 128.697441) (xy 90.303004 128.603795) (xy 90.456568 128.477768) (xy 90.582595 128.324204) (xy 90.676241 128.149004) (xy 90.733908 127.958901) (xy 90.73635 127.934113) (xy 90.740231 127.8947) (xy 90.7485 127.810747) (xy 90.748499 126.711654) (xy 90.740231 126.6277) (xy 90.733909 126.563505) (xy 90.733908 126.563503) (xy 90.733908 126.563499) (xy 90.676241 126.373396) (xy 90.582595 126.198196) (xy 90.456568 126.044632) (xy 90.404114 126.001584) (xy 107.0964 126.001584) (xy 107.10683 126.103673) (xy 107.106831 126.103676) (xy 107.161648 126.269107) (xy 107.253137 126.417433) (xy 107.253142 126.417439) (xy 107.37636 126.540657) (xy 107.376366 126.540662) (xy 107.524692 126.632151) (xy 107.690123 126.686968) (xy 107.690126 126.686969) (xy 107.792215 126.697399) (xy 107.792215 126.6974) (xy 107.8879 126.6974) (xy 107.8879 125.9684) (xy 107.0964 125.9684) (xy 107.0964 126.001584) (xy 90.404114 126.001584) (xy 90.303004 125.918605) (xy 90.127804 125.824959) (xy 89.937701 125.767292) (xy 89.9377 125.767291) (xy 89.937694 125.76729) (xy 89.808903 125.754606) (xy 89.789547 125.7527) (xy 89.789545 125.7527) (xy 88.690454 125.7527) (xy 88.690436 125.752701) (xy 88.638861 125.757781) (xy 88.616627 125.758) (xy 88.49 125.748035) (xy 88.253289 125.766665) (xy 88.022407 125.822094) (xy 87.803038 125.912959) (xy 87.600582 126.037025) (xy 87.60058 126.037026) (xy 87.42003 126.19123) (xy 87.265826 126.37178) (xy 87.265825 126.371782) (xy 87.265824 126.371784) (xy 87.145865 126.567537) (xy 87.09322 126.615166) (xy 87.038435 126.6277) (xy 83.441565 126.6277) (xy 83.373444 126.607698) (xy 83.334134 126.567537) (xy 83.214176 126.371784) (xy 83.126663 126.26932) (xy 83.059971 126.191233) (xy 83.059967 126.19123) (xy 82.979506 126.122509) (xy 82.940698 126.063059) (xy 82.940192 125.992065) (xy 82.978148 125.932066) (xy 83.042516 125.902113) (xy 83.061328 125.900699) (xy 83.508212 125.900699) (xy 83.610381 125.890262) (xy 83.77592 125.835409) (xy 83.924346 125.743858) (xy 84.038886 125.629317) (xy 84.101196 125.595294) (xy 84.172012 125.600358) (xy 84.202041 125.616478) (xy 84.271222 125.666741) (xy 84.328448 125.708318) (xy 84.502912 125.785994) (xy 84.689713 125.8257) (xy 84.880687 125.8257) (xy 85.067488 125.785994) (xy 85.241952 125.708318) (xy 85.396453 125.596066) (xy 85.397148 125.595294) (xy 85.524234 125.454151) (xy 85.524235 125.454149) (xy 85.52424 125.454144) (xy 85.619727 125.288756) (xy 85.678742 125.107128) (xy 85.698704 124.9172) (xy 85.678742 124.727272) (xy 85.619727 124.545644) (xy 85.52424 124.380256) (xy 85.524238 124.380254) (xy 85.524234 124.380248) (xy 85.396455 124.238335) (xy 85.241952 124.126082) (xy 85.067488 124.048406) (xy 84.880687 124.0087) (xy 84.689713 124.0087) (xy 84.502911 124.048406) (xy 84.328448 124.126082) (xy 84.20204 124.217922) (xy 84.135172 124.24178) (xy 84.066021 124.225699) (xy 84.038885 124.20508) (xy 83.924352 124.090547) (xy 83.924346 124.090542) (xy 83.856033 124.048406) (xy 83.77592 123.998991) (xy 83.610381 123.944138) (xy 83.610379 123.944137) (xy 83.610377 123.944137) (xy 83.508221 123.9337) (xy 82.908787 123.9337) (xy 82.806619 123.944137) (xy 82.641079 123.998991) (xy 82.492653 124.090542) (xy 82.492647 124.090547) (xy 82.385095 124.1981) (xy 82.322783 124.232126) (xy 82.251968 124.227061) (xy 82.206905 124.1981) (xy 82.099352 124.090547) (xy 82.099346 124.090542) (xy 82.031033 124.048406) (xy 81.95092 123.998991) (xy 81.785381 123.944138) (xy 81.785379 123.944137) (xy 81.785377 123.944137) (xy 81.683221 123.9337) (xy 81.083787 123.9337) (xy 80.981619 123.944137) (xy 80.816079 123.998991) (xy 80.667653 124.090542) (xy 80.667647 124.090547) (xy 80.544347 124.213847) (xy 80.544342 124.213853) (xy 80.452791 124.36228) (xy 80.397937 124.527822) (xy 80.3875 124.629978) (xy 80.3875 125.204412) (xy 80.397937 125.30658) (xy 80.444893 125.448285) (xy 80.452791 125.47212) (xy 80.529242 125.596066) (xy 80.534387 125.604406) (xy 80.553124 125.672885) (xy 80.531865 125.740624) (xy 80.477358 125.786116) (xy 80.463722 125.791127) (xy 80.352201 125.824956) (xy 80.352196 125.824958) (xy 80.176995 125.918605) (xy 80.023432 126.044632) (xy 79.897405 126.198195) (xy 79.803759 126.373395) (xy 79.74609 126.563505) (xy 79.7315 126.711646) (xy 76.1965 126.711646) (xy 76.1965 123.610516) (xy 95.782 123.610516) (xy 95.792605 123.714318) (xy 95.792606 123.714321) (xy 95.848342 123.882525) (xy 95.941365 124.033339) (xy 95.94137 124.033345) (xy 96.066654 124.158629) (xy 96.06666 124.158634) (xy 96.217474 124.251657) (xy 96.385678 124.307393) (xy 96.385681 124.307394) (xy 96.489483 124.317999) (xy 96.489483 124.318) (xy 96.611 124.318) (xy 96.611 123.364) (xy 95.782 123.364) (xy 95.782 123.610516) (xy 76.1965 123.610516) (xy 76.1965 122.609483) (xy 95.782 122.609483) (xy 95.782 122.856) (xy 96.611 122.856) (xy 96.611 121.902) (xy 96.489483 121.902) (xy 96.385681 121.912605) (xy 96.385678 121.912606) (xy 96.217474 121.968342) (xy 96.06666 122.061365) (xy 96.066654 122.06137) (xy 95.94137 122.186654) (xy 95.941365 122.18666) (xy 95.848342 122.337474) (xy 95.792606 122.505678) (xy 95.792605 122.505681) (xy 95.782 122.609483) (xy 76.1965 122.609483) (xy 76.1965 122.3323) (xy 76.216502 122.264179) (xy 76.270158 122.217686) (xy 76.3225 122.2063) (xy 91.846201 122.2063) (xy 91.846205 122.2063) (xy 91.846206 122.2063) (xy 91.919476 122.191725) (xy 91.992747 122.177151) (xy 92.130784 122.119974) (xy 92.255015 122.036966) (xy 93.714076 120.577903) (xy 93.776388 120.543879) (xy 93.803171 120.540999) (xy 93.961512 120.540999) (xy 94.063681 120.530562) (xy 94.22922 120.475709) (xy 94.377646 120.384158) (xy 94.420499 120.341305) (xy 94.485559 120.276246) (xy 94.547871 120.24222) (xy 94.618686 120.247285) (xy 94.663749 120.276246) (xy 94.77126 120.383757) (xy 94.771266 120.383762) (xy 94.919592 120.475251) (xy 95.085023 120.530068) (xy 95.085026 120.530069) (xy 95.187115 120.540499) (xy 95.187115 120.5405) (xy 95.2203 120.5405) (xy 95.7283 120.5405) (xy 95.761485 120.5405) (xy 95.761484 120.540499) (xy 95.863573 120.530069) (xy 95.863576 120.530068) (xy 96.029007 120.475251) (xy 96.177333 120.383762) (xy 96.177339 120.383757) (xy 96.300557 120.260539) (xy 96.300562 120.260533) (xy 96.392051 120.112207) (xy 96.446868 119.946776) (xy 96.446869 119.946773) (xy 96.457299 119.844684) (xy 96.4573 119.844684) (xy 96.4573 119.749) (xy 95.7283 119.749) (xy 95.7283 120.5405) (xy 95.2203 120.5405) (xy 95.2203 119.367) (xy 95.240302 119.298879) (xy 95.293958 119.252386) (xy 95.3463 119.241) (xy 96.4573 119.241) (xy 96.4573 119.145315) (xy 96.446869 119.043226) (xy 96.446868 119.043223) (xy 96.392051 118.877792) (xy 96.300562 118.729466) (xy 96.300557 118.72946) (xy 96.293045 118.721948) (xy 96.259019 118.659636) (xy 96.264084 118.588821) (xy 96.293047 118.543756) (xy 96.300958 118.535846) (xy 96.38225 118.404051) (xy 96.435035 118.356575) (xy 96.48949 118.3442) (xy 97.041315 118.3442) (xy 97.109436 118.364202) (xy 97.142183 118.394691) (xy 97.220238 118.498961) (xy 97.334948 118.584832) (xy 97.377495 118.641668) (xy 97.382559 118.712484) (xy 97.348534 118.774796) (xy 97.334948 118.786568) (xy 97.220238 118.872438) (xy 97.132612 118.989492) (xy 97.132611 118.989496) (xy 97.081511 119.126495) (xy 97.081509 119.126503) (xy 97.075 119.18705) (xy 97.075 120.084349) (xy 97.081509 120.144896) (xy 97.081511 120.144904) (xy 97.13261 120.281902) (xy 97.132612 120.281907) (xy 97.220238 120.398961) (xy 97.337292 120.486587) (xy 97.337294 120.486588) (xy 97.337296 120.486589) (xy 97.387826 120.505436) (xy 97.474295 120.537688) (xy 97.474303 120.53769) (xy 97.53485 120.544199) (xy 97.534855 120.544199) (xy 97.534862 120.5442) (xy 97.534868 120.5442) (xy 98.732132 120.5442) (xy 98.732138 120.5442) (xy 98.732145 120.544199) (xy 98.732149 120.544199) (xy 98.792696 120.53769) (xy 98.792699 120.537689) (xy 98.792701 120.537689) (xy 98.929704 120.486589) (xy 98.94424 120.475708) (xy 99.046761 120.398961) (xy 99.134387 120.281907) (xy 99.134387 120.281906) (xy 99.134389 120.281904) (xy 99.18474 120.14691) (xy 99.185488 120.144904) (xy 99.18549 120.144896) (xy 99.191999 120.084349) (xy 99.192 120.084332) (xy 99.192 119.522639) (xy 99.212002 119.454518) (xy 99.265658 119.408025) (xy 99.335932 119.397921) (xy 99.400512 119.427415) (xy 99.418868 119.44713) (xy 99.420238 119.448961) (xy 99.537292 119.536587) (xy 99.537294 119.536588) (xy 99.537296 119.536589) (xy 99.559847 119.545) (xy 99.674295 119.587688) (xy 99.674303 119.58769) (xy 99.73485 119.594199) (xy 99.734855 119.594199) (xy 99.734862 119.5942) (xy 100.356532 119.5942) (xy 100.419531 119.61108) (xy 100.508128 119.662232) (xy 100.662889 119.7037) (xy 100.82311 119.7037) (xy 103.146203 119.7037) (xy 103.214324 119.723702) (xy 103.260817 119.777358) (xy 103.270921 119.847632) (xy 103.241427 119.912212) (xy 103.235299 119.918795) (xy 102.098667 121.055429) (xy 102.010427 121.143669) (xy 102.010426 121.143671) (xy 101.941101 121.247423) (xy 101.893346 121.362712) (xy 101.869 121.485103) (xy 101.869 122.392227) (xy 101.848998 122.460348) (xy 101.809149 122.499466) (xy 101.786656 122.51334) (xy 101.679095 122.620901) (xy 101.616783 122.654926) (xy 101.545967 122.64986) (xy 101.500905 122.6209) (xy 101.393352 122.513347) (xy 101.393346 122.513342) (xy 101.291801 122.450708) (xy 101.24492 122.421791) (xy 101.079381 122.366938) (xy 101.079379 122.366937) (xy 101.079377 122.366937) (xy 100.977221 122.3565) (xy 100.377787 122.3565) (xy 100.275619 122.366937) (xy 100.110068 122.421795) (xy 100.108506 122.422524) (xy 100.107332 122.422702) (xy 100.103114 122.4241) (xy 100.102875 122.423378) (xy 100.038314 122.433181) (xy 99.973503 122.404197) (xy 99.93566 122.347959) (xy 99.932116 122.337265) (xy 99.932115 122.337264) (xy 99.932115 122.337262) (xy 99.83903 122.186348) (xy 99.839027 122.186345) (xy 99.839024 122.186341) (xy 99.713658 122.060975) (xy 99.713652 122.06097) (xy 99.675773 122.037606) (xy 99.562738 121.967885) (xy 99.42363 121.92179) (xy 99.394427 121.912113) (xy 99.39442 121.912112) (xy 99.290553 121.9015) (xy 98.539455 121.9015) (xy 98.435574 121.912112) (xy 98.267261 121.967885) (xy 98.116347 122.06097) (xy 98.116341 122.060975) (xy 97.990971 122.186345) (xy 97.988511 122.189457) (xy 97.986281 122.191035) (xy 97.98578 122.191537) (xy 97.985694 122.191451) (xy 97.930568 122.230483) (xy 97.859643 122.233671) (xy 97.798254 122.198008) (xy 97.790837 122.189446) (xy 97.788632 122.186657) (xy 97.663345 122.06137) (xy 97.663339 122.061365) (xy 97.512525 121.968342) (xy 97.344321 121.912606) (xy 97.344318 121.912605) (xy 97.240516 121.902) (xy 97.119 121.902) (xy 97.119 124.318) (xy 97.240517 124.318) (xy 97.240516 124.317999) (xy 97.344318 124.307394) (xy 97.344321 124.307393) (xy 97.512525 124.251657) (xy 97.663339 124.158634) (xy 97.663345 124.158629) (xy 97.788624 124.03335) (xy 97.790832 124.030558) (xy 97.792837 124.029137) (xy 97.793825 124.02815) (xy 97.793993 124.028318) (xy 97.848768 123.989522) (xy 97.919693 123.986323) (xy 97.981088 124.021976) (xy 97.988515 124.030547) (xy 97.990974 124.033657) (xy 98.116341 124.159024) (xy 98.116347 124.159029) (xy 98.116348 124.15903) (xy 98.267262 124.252115) (xy 98.435574 124.307887) (xy 98.539455 124.3185) (xy 99.290544 124.318499) (xy 99.394426 124.307887) (xy 99.562738 124.252115) (xy 99.713652 124.15903) (xy 99.744743 124.127937) (xy 99.807051 124.093913) (xy 99.877867 124.098976) (xy 99.922933 124.127938) (xy 99.961647 124.166652) (xy 99.961653 124.166657) (xy 99.961654 124.166658) (xy 100.11008 124.258209) (xy 100.275619 124.313062) (xy 100.377787 124.3235) (xy 100.977212 124.323499) (xy 101.079381 124.313062) (xy 101.24492 124.258209) (xy 101.393346 124.166658) (xy 101.433922 124.126082) (xy 101.500905 124.0591) (xy 101.563217 124.025074) (xy 101.634032 124.030139) (xy 101.679095 124.0591) (xy 101.786647 124.166652) (xy 101.786653 124.166657) (xy 101.786654 124.166658) (xy 101.93508 124.258209) (xy 102.100619 124.313062) (xy 102.202787 124.3235) (xy 102.802212 124.323499) (xy 102.904381 124.313062) (xy 103.06992 124.258209) (xy 103.218346 124.166658) (xy 103.341658 124.043346) (xy 103.433209 123.89492) (xy 103.488062 123.729381) (xy 103.4985 123.627213) (xy 103.498499 123.052788) (xy 103.488062 122.950619) (xy 103.433209 122.78508) (xy 103.341658 122.636654) (xy 103.218346 122.513342) (xy 103.218343 122.51334) (xy 103.195851 122.499466) (xy 103.148374 122.446679) (xy 103.136 122.392227) (xy 103.136 122.147189) (xy 103.156002 122.079068) (xy 103.209658 122.032575) (xy 103.279932 122.022471) (xy 103.344512 122.051965) (xy 103.381605 122.107557) (xy 103.401542 122.167724) (xy 103.494565 122.318539) (xy 103.49457 122.318545) (xy 103.619854 122.443829) (xy 103.61986 122.443834) (xy 103.770674 122.536857) (xy 103.938878 122.592593) (xy 103.938881 122.592594) (xy 104.042683 122.603199) (xy 104.042683 122.6032) (xy 104.0892 122.6032) (xy 104.5972 122.6032) (xy 104.643717 122.6032) (xy 104.643716 122.603199) (xy 104.747518 122.592594) (xy 104.747521 122.592593) (xy 104.915725 122.536857) (xy 105.066539 122.443834) (xy 105.066545 122.443829) (xy 105.191829 122.318545) (xy 105.191834 122.318539) (xy 105.284857 122.167725) (xy 105.340593 121.999521) (xy 105.340594 121.999518) (xy 105.351199 121.895716) (xy 105.3512 121.895716) (xy 105.3512 121.8492) (xy 104.5972 121.8492) (xy 104.5972 122.6032) (xy 104.0892 122.6032) (xy 104.0892 121.4672) (xy 104.109202 121.399079) (xy 104.162858 121.352586) (xy 104.2152 121.3412) (xy 105.3512 121.3412) (xy 105.3512 121.294683) (xy 105.340594 121.190881) (xy 105.340593 121.190878) (xy 105.284857 121.022674) (xy 105.191834 120.87186) (xy 105.191829 120.871854) (xy 105.152034 120.832059) (xy 105.118008 120.769747) (xy 105.123073 120.698932) (xy 105.152032 120.653871) (xy 107.530807 118.275096) (xy 107.593117 118.241072) (xy 107.663932 118.246137) (xy 107.720768 118.288684) (xy 107.745579 118.355204) (xy 107.7459 118.364193) (xy 107.7459 119.364944) (xy 107.756512 119.468825) (xy 107.812285 119.637138) (xy 107.90537 119.788052) (xy 107.905375 119.788058) (xy 108.030741 119.913424) (xy 108.030747 119.913429) (xy 108.030748 119.91343) (xy 108.181662 120.006515) (xy 108.349974 120.062287) (xy 108.453855 120.0729) (xy 108.610889 120.072899) (xy 108.67901 120.092901) (xy 108.699985 120.109804) (xy 108.931486 120.341305) (xy 108.965512 120.403617) (xy 108.960447 120.474432) (xy 108.9179 120.531268) (xy 108.85138 120.556079) (xy 108.842391 120.5564) (xy 108.453883 120.5564) (xy 108.350081 120.567005) (xy 108.350078 120.567006) (xy 108.181874 120.622742) (xy 108.03106 120.715765) (xy 108.031054 120.71577) (xy 107.90577 120.841054) (xy 107.905765 120.84106) (xy 107.812742 120.991874) (xy 107.757006 121.160078) (xy 107.757005 121.160081) (xy 107.7464 121.263883) (xy 107.7464 122.5604) (xy 110.5624 122.5604) (xy 110.5624 122.276409) (xy 110.582402 122.208288) (xy 110.636058 122.161795) (xy 110.706332 122.151691) (xy 110.770912 122.181185) (xy 110.777495 122.187314) (xy 111.58092 122.990739) (xy 111.614946 123.053051) (xy 111.609881 123.123866) (xy 111.580921 123.168929) (xy 111.168422 123.581429) (xy 110.777494 123.972355) (xy 110.715183 124.00638) (xy 110.644368 124.001316) (xy 110.587532 123.958769) (xy 110.562721 123.892249) (xy 110.5624 123.88326) (xy 110.5624 123.0684) (xy 107.7464 123.0684) (xy 107.7464 124.364916) (xy 107.757005 124.468718) (xy 107.757006 124.468725) (xy 107.792969 124.577255) (xy 107.795409 124.64821) (xy 107.7591 124.70922) (xy 107.696824 124.740289) (xy 107.696846 124.740392) (xy 107.696448 124.740476) (xy 107.695571 124.740915) (xy 107.692174 124.741391) (xy 107.690123 124.741831) (xy 107.524692 124.796648) (xy 107.376366 124.888137) (xy 107.37636 124.888142) (xy 107.253142 125.01136) (xy 107.253137 125.011366) (xy 107.161648 125.159692) (xy 107.106831 125.325123) (xy 107.10683 125.325126) (xy 107.0964 125.427215) (xy 107.0964 125.4604) (xy 108.2699 125.4604) (xy 108.338021 125.480402) (xy 108.384514 125.534058) (xy 108.3959 125.5864) (xy 108.3959 126.6974) (xy 108.491585 126.6974) (xy 108.491584 126.697399) (xy 108.593673 126.686969) (xy 108.593676 126.686968) (xy 108.759107 126.632151) (xy 108.907433 126.540662) (xy 108.914947 126.533148) (xy 108.977258 126.499121) (xy 109.048074 126.504183) (xy 109.093142 126.533146) (xy 109.101054 126.541058) (xy 109.24948 126.632609) (xy 109.415019 126.687462) (xy 109.517187 126.6979) (xy 110.216612 126.697899) (xy 110.318781 126.687462) (xy 110.48432 126.632609) (xy 110.632746 126.541058) (xy 110.756058 126.417746) (xy 110.847609 126.26932) (xy 110.902462 126.103781) (xy 110.9129 126.001613) (xy 110.912899 125.610237) (xy 110.932901 125.542118) (xy 110.949799 125.521148) (xy 112.566306 123.904642) (xy 112.628617 123.870617) (xy 112.699433 123.875682) (xy 112.756268 123.918229) (xy 112.781079 123.984749) (xy 112.7814 123.993738) (xy 112.7814 124.4084) (xy 113.862149 124.4084) (xy 113.829155 124.465547) (xy 113.7944 124.595257) (xy 113.7944 124.729543) (xy 113.829155 124.859253) (xy 113.862149 124.9164) (xy 112.7814 124.9164) (xy 112.7814 125.575997) (xy 112.787905 125.636493) (xy 112.838955 125.773364) (xy 112.838955 125.773365) (xy 112.926495 125.890304) (xy 113.043434 125.977844) (xy 113.180306 126.028894) (xy 113.240802 126.035399) (xy 113.240815 126.0354) (xy 114.0504 126.0354) (xy 114.0504 125.10465) (xy 114.107547 125.137645) (xy 114.237257 125.1724) (xy 114.371543 125.1724) (xy 114.501253 125.137645) (xy 114.5584 125.10465) (xy 114.5584 126.0354) (xy 115.367985 126.0354) (xy 115.367997 126.035399) (xy 115.428493 126.028894) (xy 115.565364 125.977844) (xy 115.565365 125.977844) (xy 115.682304 125.890304) (xy 115.769844 125.773365) (xy 115.769844 125.773364) (xy 115.820894 125.636493) (xy 115.827399 125.575997) (xy 115.8274 125.575985) (xy 115.8274 124.9164) (xy 114.746651 124.9164) (xy 114.779645 124.859253) (xy 114.8144 124.729543) (xy 114.8144 124.595257) (xy 114.779645 124.465547) (xy 114.746651 124.4084) (xy 115.8274 124.4084) (xy 115.8274 123.748814) (xy 115.827399 123.748802) (xy 115.820894 123.688306) (xy 115.769844 123.551435) (xy 115.769844 123.551434) (xy 115.682304 123.434495) (xy 115.565366 123.346956) (xy 115.462752 123.308683) (xy 115.405917 123.266136) (xy 115.381106 123.199615) (xy 115.396198 123.130241) (xy 115.417687 123.101534) (xy 115.502047 123.017175) (xy 115.629122 122.842271) (xy 115.727272 122.649641) (xy 115.79408 122.444029) (xy 115.8279 122.230497) (xy 115.8279 122.014303) (xy 115.79408 121.800771) (xy 115.727272 121.595159) (xy 115.629122 121.402529) (xy 115.502047 121.227625) (xy 115.502044 121.227622) (xy 115.502042 121.227619) (xy 115.34918 121.074757) (xy 115.349177 121.074755) (xy 115.349175 121.074753) (xy 115.183435 120.954336) (xy 115.140081 120.898114) (xy 115.134006 120.827378) (xy 115.167137 120.764586) (xy 115.183435 120.750464) (xy 115.231194 120.715765) (xy 115.349175 120.630047) (xy 115.502047 120.477175) (xy 115.629122 120.302271) (xy 115.727272 120.109641) (xy 115.79408 119.904029) (xy 115.8279 119.690497) (xy 115.8279 119.474303) (xy 115.79408 119.260771) (xy 115.727272 119.055159) (xy 115.629122 118.862529) (xy 115.502047 118.687625) (xy 115.502044 118.687622) (xy 115.502042 118.687619) (xy 115.34918 118.534757) (xy 115.349177 118.534755) (xy 115.349175 118.534753) (xy 115.183435 118.414336) (xy 115.140081 118.358114) (xy 115.134006 118.287378) (xy 115.167137 118.224586) (xy 115.183435 118.210464) (xy 115.230178 118.176503) (xy 115.349175 118.090047) (xy 115.502047 117.937175) (xy 115.629122 117.762271) (xy 115.727272 117.569641) (xy 115.79408 117.364029) (xy 115.8279 117.150497) (xy 115.8279 116.934303) (xy 115.79408 116.720771) (xy 115.727272 116.515159) (xy 115.629122 116.322529) (xy 115.502047 116.147625) (xy 115.502044 116.147622) (xy 115.502042 116.147619) (xy 115.34918 115.994757) (xy 115.349177 115.994755) (xy 115.349175 115.994753) (xy 115.174271 115.867678) (xy 114.981641 115.769528) (xy 114.98164 115.769527) (xy 114.981639 115.769527) (xy 114.776032 115.702721) (xy 114.776029 115.70272) (xy 114.562497 115.6689) (xy 114.046303 115.6689) (xy 113.832771 115.70272) (xy 113.832768 115.70272) (xy 113.832767 115.702721) (xy 113.62716 115.769527) (xy 113.434525 115.86768) (xy 113.259622 115.994755) (xy 113.259619 115.994757) (xy 113.106757 116.147619) (xy 113.106755 116.147622) (xy 112.97968 116.322525) (xy 112.979678 116.322529) (xy 112.970123 116.341283) (xy 112.957986 116.365103) (xy 112.909238 116.416718) (xy 112.845719 116.4339) (xy 112.634325 116.4339) (xy 112.566204 116.413898) (xy 112.54523 116.396995) (xy 111.105476 114.957241) (xy 111.07145 114.894929) (xy 111.074966 114.828516) (xy 111.116962 114.701781) (xy 111.1274 114.599613) (xy 111.127399 114.422938) (xy 111.147401 114.354818) (xy 111.164299 114.333848) (xy 112.580806 112.917342) (xy 112.643117 112.883317) (xy 112.713933 112.888382) (xy 112.770768 112.930929) (xy 112.795579 112.997449) (xy 112.7959 113.006438) (xy 112.7959 113.0584) (xy 113.876649 113.0584) (xy 113.843655 113.115547) (xy 113.8089 113.245257) (xy 113.8089 113.379543) (xy 113.843655 113.509253) (xy 113.876649 113.5664) (xy 112.7959 113.5664) (xy 112.7959 114.225997) (xy 112.802405 114.286493) (xy 112.853455 114.423364) (xy 112.853455 114.423365) (xy 112.940995 114.540304) (xy 113.057934 114.627844) (xy 113.194806 114.678894) (xy 113.255302 114.685399) (xy 113.255315 114.6854) (xy 114.0649 114.6854) (xy 114.0649 113.75465) (xy 114.122047 113.787645) (xy 114.251757 113.8224) (xy 114.386043 113.8224) (xy 114.515753 113.787645) (xy 114.5729 113.75465) (xy 114.5729 114.6854) (xy 115.382485 114.6854) (xy 115.382497 114.685399) (xy 115.442993 114.678894) (xy 115.579864 114.627844) (xy 115.579865 114.627844) (xy 115.696804 114.540304) (xy 115.784344 114.423365) (xy 115.784344 114.423364) (xy 115.835394 114.286493) (xy 115.841899 114.225997) (xy 115.8419 114.225985) (xy 115.8419 113.5664) (xy 114.761151 113.5664) (xy 114.794145 113.509253) (xy 114.8289 113.379543) (xy 114.8289 113.245257) (xy 114.794145 113.115547) (xy 114.761151 113.0584) (xy 115.8419 113.0584) (xy 115.8419 112.398814) (xy 115.841899 112.398802) (xy 115.835394 112.338306) (xy 115.784344 112.201435) (xy 115.784344 112.201434) (xy 115.696804 112.084495) (xy 115.579866 111.996956) (xy 115.477252 111.958683) (xy 115.420417 111.916136) (xy 115.395606 111.849615) (xy 115.410698 111.780241) (xy 115.432187 111.751534) (xy 115.516547 111.667175) (xy 115.643622 111.492271) (xy 115.741772 111.299641) (xy 115.80858 111.094029) (xy 115.8424 110.880497) (xy 115.8424 110.664303) (xy 115.80858 110.450771) (xy 115.741772 110.245159) (xy 115.643622 110.052529) (xy 115.516547 109.877625) (xy 115.516544 109.877622) (xy 115.516542 109.877619) (xy 115.36368 109.724757) (xy 115.363677 109.724755) (xy 115.363675 109.724753) (xy 115.197935 109.604336) (xy 115.154581 109.548114) (xy 115.148506 109.477378) (xy 115.181637 109.414586) (xy 115.197935 109.400464) (xy 115.210887 109.391054) (xy 115.363675 109.280047) (xy 115.516547 109.127175) (xy 115.643622 108.952271) (xy 115.741772 108.759641) (xy 115.80858 108.554029) (xy 115.8424 108.340497) (xy 115.8424 108.124303) (xy 115.80858 107.910771) (xy 115.741772 107.705159) (xy 115.643622 107.512529) (xy 115.516547 107.337625) (xy 115.516544 107.337622) (xy 115.516542 107.337619) (xy 115.36368 107.184757) (xy 115.363677 107.184755) (xy 115.363675 107.184753) (xy 115.197935 107.064336) (xy 115.154581 107.008114) (xy 115.148506 106.937378) (xy 115.181637 106.874586) (xy 115.197935 106.860464) (xy 115.200627 106.858507) (xy 115.363675 106.740047) (xy 115.516547 106.587175) (xy 115.643622 106.412271) (xy 115.741772 106.219641) (xy 115.80858 106.014029) (xy 115.8424 105.800497) (xy 115.8424 105.584303) (xy 115.80858 105.370771) (xy 115.741772 105.165159) (xy 115.643622 104.972529) (xy 115.516547 104.797625) (xy 115.516544 104.797622) (xy 115.516542 104.797619) (xy 115.36368 104.644757) (xy 115.363677 104.644755) (xy 115.363675 104.644753) (xy 115.188771 104.517678) (xy 114.996141 104.419528) (xy 114.99614 104.419527) (xy 114.996139 104.419527) (xy 114.790532 104.352721) (xy 114.790529 104.35272) (xy 114.576997 104.3189) (xy 114.060803 104.3189) (xy 113.847271 104.35272) (xy 113.847268 104.35272) (xy 113.847267 104.352721) (xy 113.64166 104.419527) (xy 113.449025 104.51768) (xy 113.274122 104.644755) (xy 113.274119 104.644757) (xy 113.121257 104.797619) (xy 113.121255 104.797622) (xy 112.99418 104.972525) (xy 112.972486 105.015103) (xy 112.923738 105.066718) (xy 112.860219 105.0839) (xy 112.648824 105.0839) (xy 112.580703 105.063898) (xy 112.559729 105.046995) (xy 111.171387 103.658652) (xy 111.137361 103.59634) (xy 111.142426 103.525524) (xy 111.171387 103.480462) (xy 111.873447 102.778402) (xy 112.580806 102.071042) (xy 112.643117 102.037018) (xy 112.713932 102.042082) (xy 112.770768 102.084629) (xy 112.795579 102.151149) (xy 112.7959 102.160138) (xy 112.7959 102.925997) (xy 112.802405 102.986493) (xy 112.853455 103.123364) (xy 112.853455 103.123365) (xy 112.940995 103.240304) (xy 113.057934 103.327844) (xy 113.194806 103.378894) (xy 113.255302 103.385399) (xy 113.255315 103.3854) (xy 114.0649 103.3854) (xy 114.0649 102.45465) (xy 114.122047 102.487645) (xy 114.251757 102.5224) (xy 114.386043 102.5224) (xy 114.515753 102.487645) (xy 114.5729 102.45465) (xy 114.5729 103.3854) (xy 115.382485 103.3854) (xy 115.382497 103.385399) (xy 115.442993 103.378894) (xy 115.579864 103.327844) (xy 115.579865 103.327844) (xy 115.696804 103.240304) (xy 115.784344 103.123365) (xy 115.784344 103.123364) (xy 115.835394 102.986493) (xy 115.841899 102.925997) (xy 115.8419 102.925985) (xy 115.8419 102.2664) (xy 114.761151 102.2664) (xy 114.794145 102.209253) (xy 114.8289 102.079543) (xy 114.8289 101.945257) (xy 114.794145 101.815547) (xy 114.761151 101.7584) (xy 115.8419 101.7584) (xy 115.8419 101.098814) (xy 115.841899 101.098802) (xy 115.835394 101.038306) (xy 115.784344 100.901435) (xy 115.784344 100.901434) (xy 115.696804 100.784495) (xy 115.579866 100.696956) (xy 115.477252 100.658683) (xy 115.420417 100.616136) (xy 115.395606 100.549615) (xy 115.410698 100.480241) (xy 115.432187 100.451534) (xy 115.516547 100.367175) (xy 115.643622 100.192271) (xy 115.741772 99.999641) (xy 115.80858 99.794029) (xy 115.8424 99.580497) (xy 115.8424 99.364303) (xy 115.80858 99.150771) (xy 115.741772 98.945159) (xy 115.643622 98.752529) (xy 115.516547 98.577625) (xy 115.516544 98.577622) (xy 115.516542 98.577619) (xy 115.36368 98.424757) (xy 115.363677 98.424755) (xy 115.363675 98.424753) (xy 115.197935 98.304336) (xy 115.154581 98.248114) (xy 115.148506 98.177378) (xy 115.181637 98.114586) (xy 115.197935 98.100464) (xy 115.200627 98.098507) (xy 115.363675 97.980047) (xy 115.516547 97.827175) (xy 115.643622 97.652271) (xy 115.741772 97.459641) (xy 115.80858 97.254029) (xy 115.8424 97.040497) (xy 115.8424 96.824303) (xy 115.80858 96.610771) (xy 115.741772 96.405159) (xy 115.643622 96.212529) (xy 115.516547 96.037625) (xy 115.516544 96.037622) (xy 115.516542 96.037619) (xy 115.36368 95.884757) (xy 115.363677 95.884755) (xy 115.363675 95.884753) (xy 115.197935 95.764336) (xy 115.154581 95.708114) (xy 115.148506 95.637378) (xy 115.181637 95.574586) (xy 115.197935 95.560464) (xy 115.22376 95.541701) (xy 115.363675 95.440047) (xy 115.516547 95.287175) (xy 115.643622 95.112271) (xy 115.741772 94.919641) (xy 115.80858 94.714029) (xy 115.8424 94.500497) (xy 115.8424 94.284303) (xy 115.80858 94.070771) (xy 115.741772 93.865159) (xy 115.643622 93.672529) (xy 115.516547 93.497625) (xy 115.516544 93.497622) (xy 115.516542 93.497619) (xy 115.36368 93.344757) (xy 115.363677 93.344755) (xy 115.363675 93.344753) (xy 115.188771 93.217678) (xy 114.996141 93.119528) (xy 114.99614 93.119527) (xy 114.996139 93.119527) (xy 114.790532 93.052721) (xy 114.790529 93.05272) (xy 114.576997 93.0189) (xy 114.060803 93.0189) (xy 113.847271 93.05272) (xy 113.847268 93.05272) (xy 113.847267 93.052721) (xy 113.64166 93.119527) (xy 113.449025 93.21768) (xy 113.274122 93.344755) (xy 113.274119 93.344757) (xy 113.121257 93.497619) (xy 113.121255 93.497622) (xy 112.99418 93.672525) (xy 112.994178 93.672529) (xy 112.975891 93.708421) (xy 112.972486 93.715103) (xy 112.923738 93.766718) (xy 112.860219 93.7839) (xy 112.648824 93.7839) (xy 112.580703 93.763898) (xy 112.559729 93.746995) (xy 111.129594 92.316859) (xy 111.095568 92.254547) (xy 111.099083 92.188133) (xy 111.116962 92.134181) (xy 111.1274 92.032013) (xy 111.127399 91.664537) (xy 111.147401 91.596418) (xy 111.164299 91.575448) (xy 112.580806 90.158942) (xy 112.643117 90.124917) (xy 112.713933 90.129982) (xy 112.770768 90.172529) (xy 112.795579 90.239049) (xy 112.7959 90.248038) (xy 112.7959 90.5584) (xy 113.876649 90.5584) (xy 113.843655 90.615547) (xy 113.8089 90.745257) (xy 113.8089 90.879543) (xy 113.843655 91.009253) (xy 113.876649 91.0664) (xy 112.7959 91.0664) (xy 112.7959 91.725997) (xy 112.802405 91.786493) (xy 112.853455 91.923364) (xy 112.853455 91.923365) (xy 112.940995 92.040304) (xy 113.057934 92.127844) (xy 113.194806 92.178894) (xy 113.255302 92.185399) (xy 113.255315 92.1854) (xy 114.0649 92.1854) (xy 114.0649 91.25465) (xy 114.122047 91.287645) (xy 114.251757 91.3224) (xy 114.386043 91.3224) (xy 114.515753 91.287645) (xy 114.5729 91.25465) (xy 114.5729 92.1854) (xy 115.382485 92.1854) (xy 115.382497 92.185399) (xy 115.442993 92.178894) (xy 115.579864 92.127844) (xy 115.579865 92.127844) (xy 115.696804 92.040304) (xy 115.784344 91.923365) (xy 115.784344 91.923364) (xy 115.835394 91.786493) (xy 115.841899 91.725997) (xy 115.8419 91.725985) (xy 115.8419 91.0664) (xy 114.761151 91.0664) (xy 114.794145 91.009253) (xy 114.8289 90.879543) (xy 114.8289 90.745257) (xy 114.794145 90.615547) (xy 114.761151 90.5584) (xy 115.8419 90.5584) (xy 115.8419 89.898814) (xy 115.841899 89.898802) (xy 115.835394 89.838306) (xy 115.784344 89.701435) (xy 115.784344 89.701434) (xy 115.696804 89.584495) (xy 115.579866 89.496956) (xy 115.477252 89.458683) (xy 115.420417 89.416136) (xy 115.395606 89.349615) (xy 115.410698 89.280241) (xy 115.432187 89.251534) (xy 115.516547 89.167175) (xy 115.643622 88.992271) (xy 115.741772 88.799641) (xy 115.80858 88.594029) (xy 115.8424 88.380497) (xy 115.8424 88.164303) (xy 115.80858 87.950771) (xy 115.741772 87.745159) (xy 115.643622 87.552529) (xy 115.516547 87.377625) (xy 115.516544 87.377622) (xy 115.516542 87.377619) (xy 115.36368 87.224757) (xy 115.363677 87.224755) (xy 115.363675 87.224753) (xy 115.197935 87.104336) (xy 115.154581 87.048114) (xy 115.148506 86.977378) (xy 115.181637 86.914586) (xy 115.197935 86.900464) (xy 115.201957 86.897542) (xy 115.363675 86.780047) (xy 115.516547 86.627175) (xy 115.643622 86.452271) (xy 115.741772 86.259641) (xy 115.80858 86.054029) (xy 115.8424 85.840497) (xy 115.8424 85.624303) (xy 115.80858 85.410771) (xy 115.741772 85.205159) (xy 115.643622 85.012529) (xy 115.516547 84.837625) (xy 115.516544 84.837622) (xy 115.516542 84.837619) (xy 115.36368 84.684757) (xy 115.363677 84.684755) (xy 115.363675 84.684753) (xy 115.197935 84.564336) (xy 115.154581 84.508114) (xy 115.148506 84.437378) (xy 115.181637 84.374586) (xy 115.197935 84.360464) (xy 115.200627 84.358507) (xy 115.363675 84.240047) (xy 115.516547 84.087175) (xy 115.643622 83.912271) (xy 115.741772 83.719641) (xy 115.80858 83.514029) (xy 115.8424 83.300497) (xy 115.8424 83.084303) (xy 115.80858 82.870771) (xy 115.741772 82.665159) (xy 115.643622 82.472529) (xy 115.516547 82.297625) (xy 115.516544 82.297622) (xy 115.516542 82.297619) (xy 115.36368 82.144757) (xy 115.363677 82.144755) (xy 115.363675 82.144753) (xy 115.188771 82.017678) (xy 114.996141 81.919528) (xy 114.99614 81.919527) (xy 114.996139 81.919527) (xy 114.790532 81.852721) (xy 114.790529 81.85272) (xy 114.576997 81.8189) (xy 114.060803 81.8189) (xy 113.847271 81.85272) (xy 113.847268 81.85272) (xy 113.847267 81.852721) (xy 113.64166 81.919527) (xy 113.449025 82.01768) (xy 113.274122 82.144755) (xy 113.274119 82.144757) (xy 113.121257 82.297619) (xy 113.121255 82.297622) (xy 112.99418 82.472525) (xy 112.994178 82.472529) (xy 112.979109 82.502105) (xy 112.972486 82.515103) (xy 112.923738 82.566718) (xy 112.860219 82.5839) (xy 112.796639 82.5839) (xy 112.728518 82.563898) (xy 112.707544 82.546995) (xy 111.130333 80.969783) (xy 111.130323 80.969775) (xy 110.991577 80.88967) (xy 110.991574 80.889669) (xy 110.991573 80.889668) (xy 110.991571 80.889667) (xy 110.99157 80.889667) (xy 110.907093 80.867032) (xy 110.836811 80.8482) (xy 110.83681 80.8482) (xy 106.722223 80.8482) (xy 106.654102 80.828198) (xy 106.607609 80.774542) (xy 106.596876 80.709393) (xy 106.607999 80.600516) (xy 106.608 80.600516) (xy 106.608 80.554) (xy 105.472 80.554) (xy 105.403879 80.533998) (xy 105.357386 80.480342) (xy 105.346 80.428) (xy 105.346 80.046) (xy 105.854 80.046) (xy 106.608 80.046) (xy 106.608 79.999483) (xy 106.597394 79.895681) (xy 106.597393 79.895678) (xy 106.541657 79.727474) (xy 106.448634 79.57666) (xy 106.448629 79.576654) (xy 106.323345 79.45137) (xy 106.323339 79.451365) (xy 106.172525 79.358342) (xy 106.004321 79.302606) (xy 106.004318 79.302605) (xy 105.900516 79.292) (xy 105.854 79.292) (xy 105.854 80.046) (xy 105.346 80.046) (xy 105.346 79.292) (xy 105.299483 79.292) (xy 105.195681 79.302605) (xy 105.195678 79.302606) (xy 105.027474 79.358342) (xy 104.87666 79.451365) (xy 104.876654 79.45137) (xy 104.75137 79.576654) (xy 104.751365 79.57666) (xy 104.658342 79.727474) (xy 104.602606 79.895678) (xy 104.602605 79.895681) (xy 104.592812 79.991532) (xy 104.56599 80.057267) (xy 104.507886 80.098065) (xy 104.436949 80.100974) (xy 104.37837 80.06782) (xy 104.123633 79.813083) (xy 104.123629 79.81308) (xy 104.123627 79.813078) (xy 104.099517 79.799158) (xy 104.050524 79.747774) (xy 104.042913 79.729669) (xy 104.042117 79.727267) (xy 104.042114 79.727261) (xy 104.036696 79.718476) (xy 103.94903 79.576348) (xy 103.949029 79.576347) (xy 103.949024 79.576341) (xy 103.823658 79.450975) (xy 103.823652 79.45097) (xy 103.773915 79.420292) (xy 103.672738 79.357885) (xy 103.583455 79.3283) (xy 103.504427 79.302113) (xy 103.50442 79.302112) (xy 103.400553 79.2915) (xy 102.799455 79.2915) (xy 102.695574 79.302112) (xy 102.527261 79.357885) (xy 102.376347 79.45097) (xy 102.376341 79.450975) (xy 102.250975 79.576341) (xy 102.25097 79.576347) (xy 102.157885 79.727262) (xy 102.102113 79.895572) (xy 102.102112 79.895579) (xy 102.0915 79.999446) (xy 102.0915 80.600544) (xy 102.102112 80.704425) (xy 102.157885 80.872738) (xy 102.24993 81.021966) (xy 102.268667 81.090446) (xy 102.247408 81.158184) (xy 102.1929 81.203676) (xy 102.129884 81.213461) (xy 102.104814 81.2109) (xy 101.505387 81.2109) (xy 101.403219 81.221337) (xy 101.237679 81.276191) (xy 101.089253 81.367742) (xy 101.089247 81.367747) (xy 100.965947 81.491047) (xy 100.96594 81.491056) (xy 100.944357 81.526048) (xy 100.891571 81.573526) (xy 100.837117 81.5859) (xy 100.75591 81.5859) (xy 100.687789 81.565898) (xy 100.662274 81.54421) (xy 100.636455 81.515535) (xy 100.481952 81.403282) (xy 100.307488 81.325606) (xy 100.120687 81.2859) (xy 99.929713 81.2859) (xy 99.742911 81.325606) (xy 99.568447 81.403282) (xy 99.413944 81.515535) (xy 99.286165 81.657448) (xy 99.286158 81.657458) (xy 99.19295 81.8189) (xy 99.190673 81.822844) (xy 99.189796 81.825544) (xy 99.131657 82.004472) (xy 99.111696 82.1944) (xy 99.131657 82.384327) (xy 99.157935 82.4652) (xy 99.190673 82.565956) (xy 99.190676 82.565961) (xy 99.286158 82.731341) (xy 99.286165 82.731351) (xy 99.413944 82.873264) (xy 99.447641 82.897746) (xy 99.568448 82.985518) (xy 99.742912 83.063194) (xy 99.929713 83.1029) (xy 100.120687 83.1029) (xy 100.307488 83.063194) (xy 100.481952 82.985518) (xy 100.636453 82.873266) (xy 100.638703 82.870767) (xy 100.662274 82.84459) (xy 100.72272 82.80735) (xy 100.75591 82.8029) (xy 100.837117 82.8029) (xy 100.905238 82.822902) (xy 100.944357 82.862752) (xy 100.96594 82.897743) (xy 100.965947 82.897752) (xy 101.089247 83.021052) (xy 101.089253 83.021057) (xy 101.089254 83.021058) (xy 101.23768 83.112609) (xy 101.403219 83.167462) (xy 101.505387 83.1779) (xy 102.104812 83.177899) (xy 102.206981 83.167462) (xy 102.37252 83.112609) (xy 102.520946 83.021058) (xy 102.568584 82.97342) (xy 102.628505 82.9135) (xy 102.690817 82.879474) (xy 102.761632 82.884539) (xy 102.806695 82.9135) (xy 102.914247 83.021052) (xy 102.914253 83.021057) (xy 102.914254 83.021058) (xy 103.06268 83.112609) (xy 103.228219 83.167462) (xy 103.330387 83.1779) (xy 103.929812 83.177899) (xy 104.031981 83.167462) (xy 104.19752 83.112609) (xy 104.345946 83.021058) (xy 104.469258 82.897746) (xy 104.560809 82.74932) (xy 104.615662 82.583781) (xy 104.6261 82.481613) (xy 104.626099 82.175683) (xy 104.646101 82.107565) (xy 104.699756 82.061072) (xy 104.77003 82.050967) (xy 104.7847 82.053976) (xy 104.826589 82.0652) (xy 104.82659 82.0652) (xy 104.98681 82.0652) (xy 105.824061 82.0652) (xy 105.892182 82.085202) (xy 105.938675 82.138858) (xy 105.948779 82.209132) (xy 105.919285 82.273712) (xy 105.913159 82.280292) (xy 105.673565 82.519886) (xy 104.498353 83.695096) (xy 104.436041 83.729121) (xy 104.409258 83.732) (xy 104.012955 83.732) (xy 103.909074 83.742612) (xy 103.740761 83.798385) (xy 103.589847 83.89147) (xy 103.589841 83.891475) (xy 103.464475 84.016841) (xy 103.46447 84.016847) (xy 103.435296 84.064147) (xy 103.38251 84.111625) (xy 103.328055 84.124) (xy 101.418185 84.124) (xy 101.350064 84.103998) (xy 101.317317 84.073509) (xy 101.239261 83.969238) (xy 101.122207 83.881612) (xy 101.122202 83.88161) (xy 100.985204 83.830511) (xy 100.985196 83.830509) (xy 100.924649 83.824) (xy 100.924638 83.824) (xy 99.727362 83.824) (xy 99.72735 83.824) (xy 99.666803 83.830509) (xy 99.666795 83.830511) (xy 99.529797 83.88161) (xy 99.529792 83.881612) (xy 99.412736 83.96924) (xy 99.411364 83.971074) (xy 99.40953 83.972446) (xy 99.406366 83.975611) (xy 99.40591 83.975155) (xy 99.354526 84.013618) (xy 99.28371 84.018679) (xy 99.2214 83.984651) (xy 99.187378 83.922337) (xy 99.1845 83.89556) (xy 99.1845 83.333867) (xy 99.184499 83.33385) (xy 99.17799 83.273303) (xy 99.177988 83.273295) (xy 99.136593 83.162314) (xy 99.126889 83.136296) (xy 99.126888 83.136294) (xy 99.126887 83.136292) (xy 99.039261 83.019238) (xy 98.922207 82.931612) (xy 98.922202 82.93161) (xy 98.785204 82.880511) (xy 98.785196 82.880509) (xy 98.724649 82.874) (xy 98.724638 82.874) (xy 97.527362 82.874) (xy 97.52735 82.874) (xy 97.466803 82.880509) (xy 97.466795 82.880511) (xy 97.329797 82.93161) (xy 97.329792 82.931612) (xy 97.212738 83.019238) (xy 97.134683 83.123509) (xy 97.077847 83.166056) (xy 97.033815 83.174) (xy 96.416062 83.174) (xy 96.347941 83.153998) (xy 96.308821 83.114146) (xy 96.302658 83.104154) (xy 96.302657 83.104153) (xy 96.302652 83.104147) (xy 96.179352 82.980847) (xy 96.179346 82.980842) (xy 96.175492 82.978465) (xy 96.03092 82.889291) (xy 95.865381 82.834438) (xy 95.865379 82.834437) (xy 95.865377 82.834437) (xy 95.763221 82.824) (xy 95.188787 82.824) (xy 95.086619 82.834437) (xy 94.921079 82.889291) (xy 94.772653 82.980842) (xy 94.772647 82.980847) (xy 94.690095 83.0634) (xy 94.627783 83.097426) (xy 94.556968 83.092361) (xy 94.511905 83.0634) (xy 94.503394 83.054889) (xy 94.469368 82.992577) (xy 94.474433 82.921762) (xy 94.483363 82.902806) (xy 94.560527 82.769156) (xy 94.619542 82.587528) (xy 94.639504 82.3976) (xy 94.619542 82.207672) (xy 94.560527 82.026044) (xy 94.46504 81.860656) (xy 94.465038 81.860654) (xy 94.465034 81.860648) (xy 94.337255 81.718735) (xy 94.182752 81.606482) (xy 94.008288 81.528806) (xy 93.821487 81.4891) (xy 93.6541 81.4891) (xy 93.585979 81.469098) (xy 93.539486 81.415442) (xy 93.5281 81.3631) (xy 93.5281 81.281971) (xy 93.548102 81.21385) (xy 93.565005 81.192876) (xy 94.386712 80.371169) (xy 95.269166 79.488715) (xy 95.352174 79.364484) (xy 95.409351 79.226446) (xy 95.42046 79.1706) (xy 95.4385 79.079906) (xy 95.4385 72.3392) (xy 104.293296 72.3392) (xy 104.313257 72.529127) (xy 104.340958 72.61438) (xy 104.372273 72.710756) (xy 104.372276 72.710761) (xy 104.467758 72.876141) (xy 104.467765 72.876151) (xy 104.595544 73.018064) (xy 104.649069 73.056952) (xy 104.750048 73.130318) (xy 104.924512 73.207994) (xy 105.111313 73.2477) (xy 105.302287 73.2477) (xy 105.489088 73.207994) (xy 105.663552 73.130318) (xy 105.812191 73.022325) (xy 105.818048 73.01807) (xy 105.818048 73.018068) (xy 105.818053 73.018066) (xy 105.843274 72.990053) (xy 105.903719 72.952815) (xy 105.937023 72.948365) (xy 106.885096 72.949229) (xy 106.953195 72.969293) (xy 106.992217 73.00908) (xy 107.000387 73.022325) (xy 107.021739 73.056943) (xy 107.1293 73.164504) (xy 107.163326 73.226816) (xy 107.158261 73.297631) (xy 107.129301 73.342694) (xy 107.021742 73.450253) (xy 106.930191 73.59868) (xy 106.875337 73.764222) (xy 106.8649 73.866378) (xy 106.8649 74.465812) (xy 106.875337 74.56798) (xy 106.899808 74.641828) (xy 106.930191 74.73352) (xy 107.006776 74.857683) (xy 107.006974 74.858003) (xy 107.025711 74.926482) (xy 107.008853 74.987149) (xy 106.963072 75.066444) (xy 106.96307 75.066449) (xy 106.904057 75.248071) (xy 106.884096 75.438) (xy 106.904057 75.627927) (xy 106.911569 75.651045) (xy 106.963073 75.809556) (xy 106.963076 75.809561) (xy 107.058558 75.974941) (xy 107.058565 75.974951) (xy 107.186344 76.116864) (xy 107.20709 76.131937) (xy 107.340848 76.229118) (xy 107.515312 76.306794) (xy 107.702113 76.3465) (xy 107.893087 76.3465) (xy 108.079888 76.306794) (xy 108.254352 76.229118) (xy 108.408853 76.116866) (xy 108.408855 76.116864) (xy 108.536634 75.974951) (xy 108.536635 75.974949) (xy 108.53664 75.974944) (xy 108.632127 75.809556) (xy 108.691142 75.627928) (xy 108.711104 75.438) (xy 108.691142 75.248072) (xy 108.632127 75.066444) (xy 108.63153 75.06541) (xy 108.628653 75.060426) (xy 108.611913 74.991432) (xy 108.635131 74.924339) (xy 108.648667 74.908336) (xy 108.675058 74.881946) (xy 108.689407 74.858683) (xy 108.704353 74.834453) (xy 108.757139 74.786975) (xy 108.811593 74.7746) (xy 111.2459 74.7746) (xy 111.314021 74.794602) (xy 111.360514 74.848258) (xy 111.365731 74.86166) (xy 111.372323 74.881946) (xy 111.410741 75.000189) (xy 111.426628 75.049083) (xy 111.523706 75.239609) (xy 111.523708 75.239612) (xy 111.529854 75.248071) (xy 111.649394 75.412604) (xy 111.649396 75.412606) (xy 111.649398 75.412609) (xy 111.779704 75.542915) (xy 111.81373 75.605227) (xy 111.808665 75.676042) (xy 111.766118 75.732878) (xy 111.756756 75.739251) (xy 111.611947 75.82857) (xy 111.611941 75.828575) (xy 111.486575 75.953941) (xy 111.48657 75.953947) (xy 111.393485 76.104862) (xy 111.337713 76.273172) (xy 111.337712 76.273179) (xy 111.3271 76.377046) (xy 111.3271 77.678144) (xy 111.337712 77.782025) (xy 111.393485 77.950338) (xy 111.48657 78.101252) (xy 111.486575 78.101258) (xy 111.611941 78.226624) (xy 111.611947 78.226629) (xy 111.611948 78.22663) (xy 111.762862 78.319715) (xy 111.931174 78.375487) (xy 112.035055 78.3861) (xy 113.636144 78.386099) (xy 113.740026 78.375487) (xy 113.908338 78.319715) (xy 114.059252 78.22663) (xy 114.18463 78.101252) (xy 114.277715 77.950338) (xy 114.333487 77.782026) (xy 114.3441 77.678145) (xy 114.344099 76.377056) (xy 114.334373 76.281852) (xy 114.333487 76.273174) (xy 114.332494 76.270176) (xy 114.277715 76.104862) (xy 114.18463 75.953948) (xy 114.184629 75.953947) (xy 114.184624 75.953941) (xy 114.059258 75.828575) (xy 114.059252 75.82857) (xy 114.028434 75.809561) (xy 113.914442 75.73925) (xy 113.866965 75.686465) (xy 113.855562 75.61639) (xy 113.883855 75.551274) (xy 113.891484 75.542925) (xy 114.021806 75.412604) (xy 114.147494 75.239609) (xy 114.244572 75.049083) (xy 114.310649 74.845716) (xy 114.3441 74.634516) (xy 114.3441 74.420684) (xy 114.310649 74.209484) (xy 114.244572 74.006117) (xy 114.147494 73.815591) (xy 114.021806 73.642596) (xy 114.021803 73.642593) (xy 114.021801 73.64259) (xy 113.870609 73.491398) (xy 113.870606 73.491396) (xy 113.870604 73.491394) (xy 113.713025 73.376906) (xy 113.697612 73.365708) (xy 113.697611 73.365707) (xy 113.697609 73.365706) (xy 113.507083 73.268628) (xy 113.50708 73.268627) (xy 113.507078 73.268626) (xy 113.30372 73.202552) (xy 113.303723 73.202552) (xy 113.228431 73.190627) (xy 113.092516 73.1691) (xy 112.578684 73.1691) (xy 112.370382 73.202092) (xy 112.367478 73.202552) (xy 112.164121 73.268626) (xy 112.164115 73.268629) (xy 111.973587 73.365708) (xy 111.800593 73.491396) (xy 111.80059 73.491398) (xy 111.771294 73.520695) (xy 111.708982 73.554721) (xy 111.682199 73.5576) (xy 108.811593 73.5576) (xy 108.743472 73.537598) (xy 108.704353 73.497747) (xy 108.675061 73.450259) (xy 108.675058 73.450254) (xy 108.675055 73.450251) (xy 108.675052 73.450247) (xy 108.5675 73.342695) (xy 108.533474 73.280383) (xy 108.538539 73.209568) (xy 108.5675 73.164505) (xy 108.675052 73.056952) (xy 108.675058 73.056946) (xy 108.766609 72.90852) (xy 108.821462 72.742981) (xy 108.8319 72.640813) (xy 108.831899 72.041388) (xy 108.829918 72.022) (xy 108.821462 71.939219) (xy 108.812703 71.912787) (xy 108.766609 71.77368) (xy 108.675058 71.625254) (xy 108.551746 71.501942) (xy 108.543173 71.496654) (xy 108.516751 71.480356) (xy 108.469274 71.427569) (xy 108.4569 71.373116) (xy 108.4569 66.498082) (xy 108.476902 66.429961) (xy 108.516752 66.390842) (xy 108.551746 66.369258) (xy 108.675058 66.245946) (xy 108.766609 66.09752) (xy 108.821462 65.931981) (xy 108.8319 65.829813) (xy 108.831899 65.230388) (xy 108.830387 65.215591) (xy 108.821462 65.128219) (xy 108.818047 65.117914) (xy 108.766609 64.96268) (xy 108.675058 64.814254) (xy 108.675057 64.814253) (xy 108.675052 64.814247) (xy 108.5675 64.706695) (xy 108.533474 64.644383) (xy 108.538539 64.573568) (xy 108.5675 64.528505) (xy 108.675052 64.420952) (xy 108.675058 64.420946) (xy 108.68804 64.399898) (xy 108.704353 64.373453) (xy 108.757139 64.325975) (xy 108.811593 64.3136) (xy 110.333861 64.3136) (xy 110.401982 64.333602) (xy 110.422956 64.350505) (xy 111.403636 65.331185) (xy 111.437662 65.393497) (xy 111.434375 65.459215) (xy 111.385551 65.609482) (xy 111.384258 65.617645) (xy 111.3521 65.820684) (xy 111.3521 66.034516) (xy 111.379272 66.206072) (xy 111.385552 66.245721) (xy 111.447912 66.437646) (xy 111.451628 66.449083) (xy 111.548706 66.639609) (xy 111.674394 66.812604) (xy 111.674396 66.812606) (xy 111.674398 66.812609) (xy 111.804704 66.942915) (xy 111.83873 67.005227) (xy 111.833665 67.076042) (xy 111.791118 67.132878) (xy 111.781756 67.139251) (xy 111.636947 67.22857) (xy 111.636941 67.228575) (xy 111.511575 67.353941) (xy 111.51157 67.353947) (xy 111.418485 67.504862) (xy 111.362713 67.673172) (xy 111.362712 67.673179) (xy 111.3521 67.777046) (xy 111.3521 69.078144) (xy 111.362712 69.182025) (xy 111.418485 69.350338) (xy 111.51157 69.501252) (xy 111.511575 69.501258) (xy 111.636941 69.626624) (xy 111.636947 69.626629) (xy 111.636948 69.62663) (xy 111.787862 69.719715) (xy 111.956174 69.775487) (xy 112.060055 69.7861) (xy 113.661144 69.786099) (xy 113.765026 69.775487) (xy 113.933338 69.719715) (xy 114.084252 69.62663) (xy 114.20963 69.501252) (xy 114.302715 69.350338) (xy 114.358487 69.182026) (xy 114.3691 69.078145) (xy 114.369099 67.777056) (xy 114.362411 67.711591) (xy 114.358487 67.673174) (xy 114.342976 67.626365) (xy 114.302715 67.504862) (xy 114.20963 67.353948) (xy 114.209629 67.353947) (xy 114.209624 67.353941) (xy 114.084258 67.228575) (xy 114.084252 67.22857) (xy 114.014554 67.18558) (xy 113.939442 67.13925) (xy 113.891965 67.086465) (xy 113.880562 67.01639) (xy 113.908855 66.951274) (xy 113.916484 66.942925) (xy 114.046806 66.812604) (xy 114.172494 66.639609) (xy 114.269572 66.449083) (xy 114.335649 66.245716) (xy 114.3691 66.034516) (xy 114.3691 65.820684) (xy 114.335649 65.609484) (xy 114.269572 65.406117) (xy 114.172494 65.215591) (xy 114.046806 65.042596) (xy 114.046803 65.042593) (xy 114.046801 65.04259) (xy 113.895609 64.891398) (xy 113.895606 64.891396) (xy 113.895604 64.891394) (xy 113.722609 64.765706) (xy 113.532083 64.668628) (xy 113.53208 64.668627) (xy 113.532078 64.668626) (xy 113.32872 64.602552) (xy 113.328723 64.602552) (xy 113.262182 64.592013) (xy 113.117516 64.5691) (xy 112.603684 64.5691) (xy 112.529915 64.580783) (xy 112.459013 64.592013) (xy 112.388602 64.582913) (xy 112.350208 64.556659) (xy 111.011733 63.218183) (xy 111.011723 63.218175) (xy 110.872977 63.13807) (xy 110.872974 63.138069) (xy 110.872973 63.138068) (xy 110.872971 63.138067) (xy 110.87297 63.138067) (xy 110.770635 63.110647) (xy 110.770635 63.110646) (xy 110.718211 63.0966) (xy 108.811593 63.0966) (xy 108.743472 63.076598) (xy 108.704353 63.036747) (xy 108.675061 62.989259) (xy 108.675058 62.989254) (xy 108.675055 62.989251) (xy 108.675052 62.989247) (xy 108.643693 62.957888) (xy 108.609667 62.895576) (xy 108.614732 62.824761) (xy 108.623669 62.805793) (xy 108.628224 62.797904) (xy 108.682927 62.703156) (xy 108.741942 62.521528) (xy 108.761904 62.3316) (xy 108.741942 62.141672) (xy 108.682927 61.960044) (xy 108.58744 61.794656) (xy 108.587438 61.794654) (xy 108.587434 61.794648) (xy 108.459655 61.652735) (xy 108.305152 61.540482) (xy 108.130688 61.462806) (xy 107.943887 61.4231) (xy 107.752913 61.4231) (xy 107.566111 61.462806) (xy 107.391647 61.540482) (xy 107.237144 61.652735) (xy 107.109365 61.794648) (xy 107.109358 61.794658) (xy 107.013876 61.960038) (xy 107.013873 61.960044) (xy 107.001737 61.997394) (xy 106.954857 62.141672) (xy 106.934896 62.3316) (xy 106.954857 62.521527) (xy 106.970793 62.57057) (xy 107.013873 62.703156) (xy 107.013876 62.703161) (xy 107.07313 62.805793) (xy 107.089868 62.874789) (xy 107.066647 62.94188) (xy 107.053108 62.957887) (xy 107.021742 62.989253) (xy 106.930191 63.13768) (xy 106.875337 63.303222) (xy 106.8649 63.405378) (xy 106.8649 64.004812) (xy 106.875337 64.10698) (xy 106.930191 64.27252) (xy 107.021742 64.420946) (xy 107.021747 64.420952) (xy 107.1293 64.528505) (xy 107.163326 64.590817) (xy 107.158261 64.661632) (xy 107.1293 64.706695) (xy 107.021747 64.814247) (xy 107.021742 64.814253) (xy 106.930191 64.96268) (xy 106.875337 65.128222) (xy 106.8649 65.230378) (xy 106.8649 65.829812) (xy 106.875337 65.93198) (xy 106.930191 66.09752) (xy 107.021742 66.245946) (xy 107.021747 66.245952) (xy 107.145047 66.369252) (xy 107.145051 66.369255) (xy 107.145054 66.369258) (xy 107.180046 66.390841) (xy 107.227525 66.443626) (xy 107.2399 66.498082) (xy 107.2399 71.373116) (xy 107.219898 71.441237) (xy 107.180049 71.480356) (xy 107.145056 71.50194) (xy 107.145052 71.501943) (xy 107.021743 71.625252) (xy 107.02174 71.625256) (xy 106.992675 71.672377) (xy 106.939888 71.719854) (xy 106.88532 71.732228) (xy 105.937994 71.731365) (xy 105.869892 71.711301) (xy 105.844473 71.689676) (xy 105.818053 71.660334) (xy 105.663552 71.548082) (xy 105.489088 71.470406) (xy 105.302287 71.4307) (xy 105.111313 71.4307) (xy 104.924511 71.470406) (xy 104.750047 71.548082) (xy 104.595544 71.660335) (xy 104.467765 71.802248) (xy 104.467758 71.802258) (xy 104.388684 71.939219) (xy 104.372273 71.967644) (xy 104.364707 71.990931) (xy 104.313257 72.149272) (xy 104.293296 72.3392) (xy 95.4385 72.3392) (xy 95.4385 67.105294) (xy 95.409351 66.958754) (xy 95.352174 66.820716) (xy 95.33733 66.7985) (xy 95.33733 66.798499) (xy 95.303364 66.747666) (xy 95.269166 66.696485) (xy 94.841065 66.268384) (xy 94.807039 66.206072) (xy 94.812104 66.135257) (xy 94.841065 66.090194) (xy 96.015854 64.915405) (xy 96.078166 64.881379) (xy 96.104949 64.8785) (xy 97.050841 64.8785) (xy 97.118962 64.898502) (xy 97.165455 64.952158) (xy 97.171838 64.969347) (xy 97.202155 65.073702) (xy 97.257067 65.166552) (xy 97.274526 65.235368) (xy 97.252009 65.302699) (xy 97.237709 65.319786) (xy 97.160842 65.396653) (xy 97.069291 65.54508) (xy 97.014437 65.710622) (xy 97.004 65.812778) (xy 97.004 66.387212) (xy 97.014437 66.48938) (xy 97.069291 66.65492) (xy 97.160842 66.803346) (xy 97.160847 66.803352) (xy 97.284147 66.926652) (xy 97.284153 66.926657) (xy 97.284154 66.926658) (xy 97.43258 67.018209) (xy 97.598119 67.073062) (xy 97.700287 67.0835) (xy 98.299712 67.083499) (xy 98.401881 67.073062) (xy 98.56742 67.018209) (xy 98.715846 66.926658) (xy 98.750635 66.891869) (xy 98.823405 66.8191) (xy 98.885717 66.785074) (xy 98.956532 66.790139) (xy 99.001595 66.8191) (xy 99.109147 66.926652) (xy 99.109153 66.926657) (xy 99.109154 66.926658) (xy 99.25758 67.018209) (xy 99.423119 67.073062) (xy 99.525287 67.0835) (xy 100.124712 67.083499) (xy 100.226881 67.073062) (xy 100.39242 67.018209) (xy 100.540846 66.926658) (xy 100.625603 66.8419) (xy 100.687913 66.807877) (xy 100.758729 66.812941) (xy 100.765926 66.815882) (xy 100.860512 66.857994) (xy 101.047313 66.8977) (xy 101.238287 66.8977) (xy 101.425088 66.857994) (xy 101.599552 66.780318) (xy 101.754053 66.668066) (xy 101.779676 66.639609) (xy 101.881834 66.526151) (xy 101.881835 66.526149) (xy 101.88184 66.526144) (xy 101.977327 66.360756) (xy 102.036342 66.179128) (xy 102.056304 65.9892) (xy 102.036342 65.799272) (xy 101.977327 65.617644) (xy 101.88184 65.452256) (xy 101.881838 65.452254) (xy 101.881834 65.452248) (xy 101.754055 65.310335) (xy 101.754056 65.310335) (xy 101.706709 65.275936) (xy 101.663355 65.219713) (xy 101.65728 65.148977) (xy 101.690412 65.086185) (xy 101.752232 65.051274) (xy 101.78077 65.048) (xy 101.887185 65.048) (xy 101.887184 65.047999) (xy 101.989273 65.037569) (xy 101.989276 65.037568) (xy 102.154707 64.982751) (xy 102.303033 64.891262) (xy 102.303039 64.891257) (xy 102.426257 64.768039) (xy 102.426262 64.768033) (xy 102.517751 64.619707) (xy 102.572568 64.454276) (xy 102.572569 64.454273) (xy 102.582999 64.352184) (xy 102.583 64.352184) (xy 102.583 64.3065) (xy 101.472 64.3065) (xy 101.403879 64.286498) (xy 101.357386 64.232842) (xy 101.346 64.1805) (xy 101.346 63.9245) (xy 101.366002 63.856379) (xy 101.419658 63.809886) (xy 101.472 63.7985) (xy 102.583 63.7985) (xy 102.583 63.752815) (xy 102.572569 63.650726) (xy 102.572568 63.650723) (xy 102.517751 63.485292) (xy 102.426262 63.336966) (xy 102.426257 63.33696) (xy 102.318746 63.229449) (xy 102.28472 63.167137) (xy 102.289785 63.096322) (xy 102.318746 63.051259) (xy 102.426652 62.943352) (xy 102.426658 62.943346) (xy 102.518209 62.79492) (xy 102.573062 62.629381) (xy 102.5835 62.527213) (xy 102.583499 61.927788) (xy 102.581426 61.9075) (xy 102.573062 61.825619) (xy 102.547352 61.74803) (xy 102.518209 61.66008) (xy 102.426658 61.511654) (xy 102.426657 61.511653) (xy 102.426652 61.511647) (xy 102.303352 61.388347) (xy 102.303346 61.388342) (xy 102.242287 61.35068) (xy 102.15492 61.296791) (xy 101.989381 61.241938) (xy 101.989379 61.241937) (xy 101.989377 61.241937) (xy 101.887221 61.2315) (xy 101.312787 61.2315) (xy 101.210619 61.241937) (xy 101.045079 61.296791) (xy 100.896653 61.388342) (xy 100.896647 61.388347) (xy 100.773347 61.511647) (xy 100.773338 61.511659) (xy 100.685388 61.654247) (xy 100.632602 61.701725) (xy 100.578148 61.7141) (xy 99.828267 61.7141) (xy 99.760146 61.694098) (xy 99.713653 61.640442) (xy 99.70727 61.623253) (xy 99.692769 61.573339) (xy 99.670445 61.496499) (xy 99.670444 61.496497) (xy 99.669908 61.494652) (xy 99.670111 61.423656) (xy 99.708665 61.364039) (xy 99.77333 61.334731) (xy 99.790905 61.333499) (xy 100.112212 61.333499) (xy 100.214381 61.323062) (xy 100.37992 61.268209) (xy 100.528346 61.176658) (xy 100.651658 61.053346) (xy 100.666248 61.02969) (xy 100.719031 60.982213) (xy 100.748904 60.972259) (xy 100.814785 60.959155) (xy 100.930075 60.9114) (xy 101.033833 60.842071) (xy 101.650501 60.225404) (xy 101.712813 60.191379) (xy 101.739596 60.1885) (xy 101.795487 60.1885) (xy 101.982288 60.148794) (xy 102.156752 60.071118) (xy 102.311253 59.958866) (xy 102.43904 59.816944) (xy 102.534527 59.651556) (xy 102.593542 59.469928) (xy 102.613504 59.28) (xy 102.593542 59.090072) (xy 102.534527 58.908444) (xy 102.43904 58.743056) (xy 102.439038 58.743054) (xy 102.439034 58.743048) (xy 102.311255 58.601135) (xy 102.156752 58.488882) (xy 101.982288 58.411206) (xy 101.795487 58.3715) (xy 101.604513 58.3715) (xy 101.417711 58.411206) (xy 101.243247 58.488882) (xy 101.088744 58.601135) (xy 100.960965 58.743048) (xy 100.960961 58.743054) (xy 100.96096 58.743056) (xy 100.938424 58.782089) (xy 100.928166 58.799857) (xy 100.876783 58.84885) (xy 100.807069 58.862285) (xy 100.741158 58.835898) (xy 100.729952 58.825951) (xy 100.708001 58.804) (xy 99.092001 58.804) (xy 99.092001 59.203956) (xy 99.094934 59.24125) (xy 99.13825 59.390342) (xy 99.138047 59.461338) (xy 99.101515 59.517826) (xy 99.101843 59.518154) (xy 99.100318 59.519678) (xy 99.099493 59.520955) (xy 99.096906 59.52309) (xy 98.989095 59.630901) (xy 98.926783 59.664926) (xy 98.855967 59.65986) (xy 98.810905 59.6309) (xy 98.762091 59.582086) (xy 98.728065 59.519774) (xy 98.73313 59.448959) (xy 98.742731 59.428855) (xy 98.759145 59.401101) (xy 98.805562 59.241331) (xy 98.808499 59.204011) (xy 98.8085 59.204011) (xy 98.8085 58.047) (xy 98.828502 57.978879) (xy 98.882158 57.932386) (xy 98.9345 57.921) (xy 98.966 57.921) (xy 99.034121 57.941002) (xy 99.080614 57.994658) (xy 99.092 58.047) (xy 99.092 58.296) (xy 99.646 58.296) (xy 100.154 58.296) (xy 100.707999 58.296) (xy 100.707999 57.896043) (xy 100.705065 57.858749) (xy 100.658681 57.699099) (xy 100.574051 57.555998) (xy 100.57405 57.555996) (xy 100.456503 57.438449) (xy 100.456501 57.438448) (xy 100.313401 57.353818) (xy 100.154 57.307507) (xy 100.154 58.296) (xy 99.646 58.296) (xy 99.646 57.667342) (xy 99.663547 57.603202) (xy 99.709145 57.526101) (xy 99.755562 57.366331) (xy 99.758499 57.329011) (xy 99.7585 57.329011) (xy 99.7585 56.020989) (xy 99.758499 56.020988) (xy 99.756048 55.989852) (xy 99.755562 55.983669) (xy 99.709145 55.823899) (xy 99.709143 55.823897) (xy 99.709143 55.823894) (xy 99.624455 55.680696) (xy 99.62445 55.680689) (xy 99.50681 55.563049) (xy 99.506803 55.563044) (xy 99.363605 55.478356) (xy 99.203829 55.431937) (xy 99.166511 55.429) (xy 99.166502 55.429) (xy 98.733498 55.429) (xy 98.733489 55.429) (xy 98.696171 55.431937) (xy 98.69617 55.431937) (xy 98.536394 55.478356) (xy 98.393196 55.563044) (xy 98.393189 55.563049) (xy 98.275549 55.680689) (xy 98.275544 55.680696) (xy 98.190856 55.823894) (xy 98.142642 55.989852) (xy 98.140683 55.989282) (xy 98.113046 56.044189) (xy 98.069238 56.074533) (xy 97.974929 56.113597) (xy 97.974925 56.113599) (xy 97.871171 56.182926) (xy 97.871164 56.182931) (xy 97.159501 56.894595) (xy 97.097189 56.928621) (xy 97.070406 56.9315) (xy 94.691079 56.9315) (xy 94.674843 56.940365) (xy 94.604027 56.935297) (xy 94.599847 56.933652) (xy 94.54479 56.910846) (xy 94.422396 56.8865) (xy 94.422394 56.8865) (xy 94.245062 56.8865) (xy 94.176941 56.866498) (xy 94.137821 56.826646) (xy 94.131658 56.816654) (xy 94.131657 56.816653) (xy 94.131652 56.816647) (xy 94.008352 56.693347) (xy 94.008346 56.693342) (xy 93.85992 56.601791) (xy 93.694381 56.546938) (xy 93.694379 56.546937) (xy 93.694377 56.546937) (xy 93.592221 56.5365) (xy 92.992787 56.5365) (xy 92.890619 56.546937) (xy 92.725079 56.601791) (xy 92.576653 56.693342) (xy 92.576647 56.693347) (xy 92.469095 56.8009) (xy 92.406783 56.834926) (xy 92.335968 56.829861) (xy 92.290905 56.8009) (xy 92.183352 56.693347) (xy 92.183346 56.693342) (xy 92.03492 56.601791) (xy 91.869381 56.546938) (xy 91.869379 56.546937) (xy 91.869377 56.546937) (xy 91.767221 56.5365) (xy 91.767213 56.5365) (xy 91.396739 56.5365) (xy 91.328618 56.516498) (xy 91.307648 56.499599) (xy 91.121127 56.313078) (xy 91.121125 56.313077) (xy 91.121123 56.313075) (xy 91.101911 56.301983) (xy 94.712 56.301983) (xy 94.712 56.4235) (xy 95.666 56.4235) (xy 96.174 56.4235) (xy 97.128 56.4235) (xy 97.128 56.301983) (xy 97.117394 56.198181) (xy 97.117393 56.198178) (xy 97.061657 56.029974) (xy 96.968634 55.87916) (xy 96.968629 55.879154) (xy 96.843345 55.75387) (xy 96.843339 55.753865) (xy 96.692525 55.660842) (xy 96.524321 55.605106) (xy 96.524318 55.605105) (xy 96.420516 55.5945) (xy 96.174 55.5945) (xy 96.174 56.4235) (xy 95.666 56.4235) (xy 95.666 55.5945) (xy 95.419483 55.5945) (xy 95.315681 55.605105) (xy 95.315678 55.605106) (xy 95.147474 55.660842) (xy 94.99666 55.753865) (xy 94.996654 55.75387) (xy 94.87137 55.879154) (xy 94.871365 55.87916) (xy 94.778342 56.029974) (xy 94.722606 56.198178) (xy 94.722605 56.198181) (xy 94.712 56.301983) (xy 91.101911 56.301983) (xy 90.982377 56.23297) (xy 90.982374 56.232969) (xy 90.982373 56.232968) (xy 90.982371 56.232967) (xy 90.98237 56.232967) (xy 90.904991 56.212234) (xy 90.904987 56.212233) (xy 90.827611 56.1915) (xy 87.309889 56.1915) (xy 87.309888 56.1915) (xy 87.232508 56.212233) (xy 87.232508 56.212234) (xy 87.155545 56.232856) (xy 87.155127 56.232968) (xy 87.155122 56.23297) (xy 87.08575 56.273023) (xy 87.016373 56.313077) (xy 86.959726 56.369724) (xy 86.903079 56.426372) (xy 86.903077 56.426374) (xy 86.562913 56.766536) (xy 86.500601 56.800561) (xy 86.429785 56.795496) (xy 86.384724 56.766536) (xy 85.757458 56.13927) (xy 85.597198 56.022834) (xy 85.597195 56.022832) (xy 85.593597 56.020998) (xy 85.593597 56.020999) (xy 85.587132 56.017705) (xy 85.420697 55.932902) (xy 85.2323 55.871688) (xy 85.036646 55.8407) (xy 79.626754 55.8407) (xy 79.605558 55.844057) (xy 79.54809 55.853158) (xy 79.477679 55.844057) (xy 79.439286 55.817804) (xy 79.323057 55.701575) (xy 79.323051 55.70157) (xy 79.257021 55.660842) (xy 79.172138 55.608485) (xy 79.003825 55.552713) (xy 79.003823 55.552712) (xy 79.003821 55.552712) (xy 78.899952 55.5421) (xy 78.899944 55.5421) (xy 77.198856 55.5421) (xy 77.198848 55.5421) (xy 77.094978 55.552712) (xy 76.926662 55.608485) (xy 76.92666 55.608486) (xy 76.775748 55.70157) (xy 76.775742 55.701575) (xy 76.650375 55.826942) (xy 76.65037 55.826948) (xy 76.557286 55.97786) (xy 76.557285 55.977862) (xy 76.501512 56.146178) (xy 76.4909 56.250047) (xy 76.4909 61.301152) (xy 76.490899 61.301152) (xy 76.501512 61.405021) (xy 76.501512 61.405023) (xy 76.501513 61.405025) (xy 76.557285 61.573338) (xy 76.620875 61.676432) (xy 76.65037 61.724251) (xy 76.650375 61.724257) (xy 76.775742 61.849624) (xy 76.775748 61.849629) (xy 76.775749 61.84963) (xy 76.926662 61.942715) (xy 77.094975 61.998487) (xy 77.123306 62.001381) (xy 77.198848 62.0091) (xy 77.198856 62.0091) (xy 78.899952 62.0091) (xy 78.969198 62.002024) (xy 79.003825 61.998487) (xy 79.172138 61.942715) (xy 79.323051 61.84963) (xy 79.44843 61.724251) (xy 79.541515 61.573338) (xy 79.597287 61.405025) (xy 79.60307 61.348421) (xy 79.6079 61.301152) (xy 79.6079 59.894529) (xy 79.627902 59.826408) (xy 79.681558 59.779915) (xy 79.751832 59.769811) (xy 79.816412 59.799305) (xy 79.854796 59.859031) (xy 79.858346 59.874808) (xy 79.88952 60.071629) (xy 79.889521 60.071632) (xy 79.921757 60.170845) (xy 79.956328 60.277241) (xy 80.054478 60.469871) (xy 80.181553 60.644775) (xy 80.181555 60.644777) (xy 80.181557 60.64478) (xy 80.334419 60.797642) (xy 80.334422 60.797644) (xy 80.334425 60.797647) (xy 80.509329 60.924722) (xy 80.701959 61.022872) (xy 80.799115 61.054439) (xy 80.849273 61.085177) (xy 82.941167 63.177071) (xy 83.044925 63.2464) (xy 83.160215 63.294155) (xy 83.282606 63.3185) (xy 83.282607 63.3185) (xy 84.214741 63.3185) (xy 84.214742 63.3185) (xy 84.227709 63.31592) (xy 84.252289 63.3135) (xy 85.203535 63.3135) (xy 85.251753 63.32309) (xy 85.338819 63.359155) (xy 85.46121 63.3835) (xy 85.461211 63.3835) (xy 92.724893 63.3835) (xy 92.724894 63.3835) (xy 92.847285 63.359155) (xy 92.962575 63.3114) (xy 93.066333 63.242071) (xy 93.510499 62.797903) (xy 93.572812 62.763879) (xy 93.599595 62.760999) (xy 93.960544 62.760999) (xy 94.064426 62.750387) (xy 94.232738 62.694615) (xy 94.383652 62.60153) (xy 94.50903 62.476152) (xy 94.602115 62.325238) (xy 94.657887 62.156926) (xy 94.660162 62.13465) (xy 94.661998 62.116692) (xy 94.68882 62.050958) (xy 94.746924 62.01016) (xy 94.787345 62.0035) (xy 97.619106 62.0035) (xy 97.687227 62.023502) (xy 97.708201 62.040405) (xy 98.065895 62.398099) (xy 98.099921 62.460411) (xy 98.1028 62.487194) (xy 98.1028 62.8506) (xy 98.082798 62.918721) (xy 98.029142 62.965214) (xy 97.9768 62.9766) (xy 97.744789 62.9766) (xy 97.707471 62.979537) (xy 97.70747 62.979537) (xy 97.547694 63.025956) (xy 97.404496 63.110644) (xy 97.404489 63.110649) (xy 97.286849 63.228289) (xy 97.286844 63.228296) (xy 97.202156 63.371495) (xy 97.202155 63.371499) (xy 97.175549 63.463081) (xy 97.173349 63.470652) (xy 97.135136 63.530488) (xy 97.07064 63.560166) (xy 97.052352 63.5615) (xy 95.715139 63.5615) (xy 95.587922 63.586806) (xy 95.587919 63.586807) (xy 95.468083 63.636445) (xy 95.373118 63.699899) (xy 95.373117 63.6999) (xy 95.36023 63.70851) (xy 95.360226 63.708513) (xy 93.624145 65.444595) (xy 93.561833 65.478621) (xy 93.53505 65.4815) (xy 87.58529 65.4815) (xy 87.506723 65.497129) (xy 87.438753 65.510649) (xy 87.43875 65.51065) (xy 87.300716 65.567826) (xy 87.176486 65.650833) (xy 87.17648 65.650838) (xy 86.000838 66.82648) (xy 86.000833 66.826486) (xy 85.917826 66.950716) (xy 85.86065 67.088749) (xy 85.860649 67.088752) (xy 85.848671 67.14897) (xy 85.8315 67.235291) (xy 85.8315 67.763673) (xy 85.811498 67.831794) (xy 85.782891 67.863104) (xy 85.666765 67.953489) (xy 85.666753 67.9535) (xy 85.605374 68.020175) (xy 85.544521 68.056746) (xy 85.473557 68.054611) (xy 85.415012 68.014449) (xy 85.394618 67.97887) (xy 85.350443 67.860433) (xy 85.262904 67.743495) (xy 85.145965 67.655955) (xy 85.009093 67.604905) (xy 84.948597 67.5984) (xy 84.304 67.5984) (xy 84.304 68.525697) (xy 84.242993 68.490475) (xy 84.115826 68.4564) (xy 83.984174 68.4564) (xy 83.857007 68.490475) (xy 83.796 68.525697) (xy 83.796 67.5984) (xy 83.151402 67.5984) (xy 83.090906 67.604905) (xy 82.954035 67.655955) (xy 82.954034 67.655955) (xy 82.837095 67.743495) (xy 82.749555 67.860434) (xy 82.749555 67.860435) (xy 82.698505 67.997306) (xy 82.692 68.057802) (xy 82.692 68.7024) (xy 83.619297 68.7024) (xy 83.584075 68.763407) (xy 83.55 68.890574) (xy 83.55 69.022226) (xy 83.584075 69.149393) (xy 83.619297 69.2104) (xy 82.692 69.2104) (xy 82.692 69.855003) (xy 82.692369 69.858425) (xy 82.679767 69.928294) (xy 82.631392 69.980258) (xy 82.567092 69.9979) (xy 82.298695 69.9979) (xy 82.230574 69.977898) (xy 82.2096 69.960995) (xy 82.207905 69.9593) (xy 82.173879 69.896988) (xy 82.171 69.870205) (xy 82.171 69.703872) (xy 82.191002 69.635751) (xy 82.207906 69.614776) (xy 82.249025 69.573657) (xy 82.24903 69.573652) (xy 82.342115 69.422738) (xy 82.397887 69.254426) (xy 82.4085 69.150545) (xy 82.408499 68.549456) (xy 82.40039 68.470081) (xy 82.397887 68.445574) (xy 82.356825 68.321655) (xy 82.342115 68.277262) (xy 82.24903 68.126348) (xy 82.249029 68.126347) (xy 82.249024 68.126341) (xy 82.123658 68.000975) (xy 82.123652 68.00097) (xy 82.117712 67.997306) (xy 81.972738 67.907885) (xy 81.888582 67.879999) (xy 81.804427 67.852113) (xy 81.80442 67.852112) (xy 81.700553 67.8415) (xy 81.099455 67.8415) (xy 80.995574 67.852112) (xy 80.827261 67.907885) (xy 80.676347 68.00097) (xy 80.676341 68.000975) (xy 80.550975 68.126341) (xy 80.55097 68.126347) (xy 80.457885 68.277262) (xy 80.402113 68.445572) (xy 80.402112 68.445579) (xy 80.3915 68.549446) (xy 80.3915 69.150544) (xy 80.402112 69.254425) (xy 80.450023 69.399012) (xy 80.457885 69.422738) (xy 80.55097 69.573652) (xy 80.617096 69.639778) (xy 80.65112 69.702088) (xy 80.654 69.728872) (xy 80.654 69.828784) (xy 80.633998 69.896905) (xy 80.580342 69.943398) (xy 80.510068 69.953502) (xy 80.460407 69.932159) (xy 80.459279 69.93399) (xy 80.304707 69.838648) (xy 80.139276 69.783831) (xy 80.139273 69.78383) (xy 80.037184 69.7734) (xy 79.850704 69.7734) (xy 79.782583 69.753398) (xy 79.73609 69.699742) (xy 79.725986 69.629468) (xy 79.746872 69.580874) (xy 79.744782 69.579585) (xy 79.841657 69.422525) (xy 79.897393 69.254321) (xy 79.897394 69.254318) (xy 79.907999 69.150516) (xy 79.908 69.150516) (xy 79.908 69.104) (xy 77.892 69.104) (xy 77.892 69.150516) (xy 77.902605 69.254318) (xy 77.902606 69.254321) (xy 77.958342 69.422525) (xy 78.051365 69.573339) (xy 78.05137 69.573345) (xy 78.176654 69.698629) (xy 78.17666 69.698634) (xy 78.327474 69.791657) (xy 78.495678 69.847393) (xy 78.495681 69.847394) (xy 78.599483 69.857999) (xy 78.599483 69.858) (xy 78.693483 69.858) (xy 78.761604 69.878002) (xy 78.808097 69.931658) (xy 78.818201 70.001932) (xy 78.800724 70.050147) (xy 78.707248 70.201692) (xy 78.652431 70.367123) (xy 78.65243 70.367126) (xy 78.642 70.469215) (xy 78.642 70.5024) (xy 79.8155 70.5024) (xy 79.883621 70.522402) (xy 79.930114 70.576058) (xy 79.9415 70.6284) (xy 79.9415 71.7394) (xy 80.037185 71.7394) (xy 80.037184 71.739399) (xy 80.139273 71.728969) (xy 80.139276 71.728968) (xy 80.304707 71.674151) (xy 80.459279 71.57881) (xy 80.460548 71.580868) (xy 80.515669 71.55862) (xy 80.58542 71.571859) (xy 80.636941 71.620707) (xy 80.654 71.684015) (xy 80.654 72.617883) (xy 80.633998 72.686004) (xy 80.617095 72.706978) (xy 76.533295 76.790778) (xy 76.470983 76.824804) (xy 76.400168 76.819739) (xy 76.343332 76.777192) (xy 76.318521 76.710672) (xy 76.3182 76.701683) (xy 76.3182 76.579419) (xy 76.338202 76.511298) (xy 76.378052 76.472179) (xy 76.483352 76.40723) (xy 76.60873 76.281852) (xy 76.701815 76.130938) (xy 76.757587 75.962626) (xy 76.7682 75.858745) (xy 76.768199 74.857656) (xy 76.757587 74.753774) (xy 76.701815 74.585462) (xy 76.60873 74.434548) (xy 76.608727 74.434545) (xy 76.608724 74.434541) (xy 76.483358 74.309175) (xy 76.483352 74.30917) (xy 76.332438 74.216085) (xy 76.241118 74.185825) (xy 76.164127 74.160313) (xy 76.16412 74.160312) (xy 76.060253 74.1497) (xy 75.309155 74.1497) (xy 75.205274 74.160312) (xy 75.036961 74.216085) (xy 74.886047 74.30917) (xy 74.886041 74.309175) (xy 74.760671 74.434545) (xy 74.758211 74.437657) (xy 74.755981 74.439235) (xy 74.75548 74.439737) (xy 74.755394 74.439651) (xy 74.700268 74.478683) (xy 74.629343 74.481871) (xy 74.567954 74.446208) (xy 74.560537 74.437646) (xy 74.558332 74.434857) (xy 74.433045 74.30957) (xy 74.433039 74.309565) (xy 74.282225 74.216542) (xy 74.114021 74.160806) (xy 74.114018 74.160805) (xy 74.010216 74.1502) (xy 73.8887 74.1502) (xy 73.8887 75.4862) (xy 73.868698 75.554321) (xy 73.815042 75.600814) (xy 73.7627 75.6122) (xy 72.5517 75.6122) (xy 72.5517 75.858716) (xy 72.562305 75.962518) (xy 72.562306 75.962521) (xy 72.618042 76.130725) (xy 72.711065 76.281539) (xy 72.71107 76.281545) (xy 72.836354 76.406829) (xy 72.836363 76.406836) (xy 72.930973 76.465192) (xy 72.978452 76.517978) (xy 72.989855 76.588052) (xy 72.961563 76.653168) (xy 72.930975 76.679673) (xy 72.806356 76.75654) (xy 72.806347 76.756547) (xy 72.683047 76.879847) (xy 72.683042 76.879853) (xy 72.591491 77.02828) (xy 72.536637 77.193822) (xy 72.5262 77.295978) (xy 72.5262 77.870412) (xy 72.536637 77.97258) (xy 72.579274 78.101252) (xy 72.591491 78.13812) (xy 72.683042 78.286546) (xy 72.726796 78.3303) (xy 72.76082 78.39261) (xy 72.7637 78.419394) (xy 72.7637 78.661429) (xy 72.743698 78.72955) (xy 72.726795 78.750524) (xy 70.941924 80.535395) (xy 70.879612 80.569421) (xy 70.852829 80.5723) (xy 67.947171 80.5723) (xy 67.87905 80.552298) (xy 67.858076 80.535395) (xy 65.283519 77.960838) (xy 65.283515 77.960834) (xy 65.159284 77.877826) (xy 65.021247 77.820649) (xy 64.939794 77.804447) (xy 64.939792 77.804446) (xy 64.874709 77.7915) (xy 64.874706 77.7915) (xy 60.536397 77.7915) (xy 60.468276 77.771498) (xy 60.421783 77.717842) (xy 60.411679 77.647568) (xy 60.441173 77.582988) (xy 60.447302 77.576405) (xy 61.424007 76.599701) (xy 62.550853 75.472855) (xy 62.613165 75.438829) (xy 62.639948 75.43595) (xy 63.234852 75.43595) (xy 63.304098 75.428874) (xy 63.338725 75.425337) (xy 63.507038 75.369565) (xy 63.571814 75.329609) (xy 63.640291 75.310872) (xy 63.70803 75.33213) (xy 63.727056 75.347755) (xy 67.475416 79.096116) (xy 67.475421 79.09612) (xy 67.475423 79.096122) (xy 67.475424 79.096123) (xy 67.475426 79.096124) (xy 67.534668 79.130327) (xy 67.604935 79.170896) (xy 67.649175 79.213867) (xy 67.71004 79.312544) (xy 67.710047 79.312552) (xy 67.833347 79.435852) (xy 67.833353 79.435857) (xy 67.833354 79.435858) (xy 67.98178 79.527409) (xy 68.147319 79.582262) (xy 68.249487 79.5927) (xy 68.848912 79.592699) (xy 68.951081 79.582262) (xy 69.11662 79.527409) (xy 69.265046 79.435858) (xy 69.318746 79.382158) (xy 69.372605 79.3283) (xy 69.434917 79.294274) (xy 69.505732 79.299339) (xy 69.550795 79.3283) (xy 69.658347 79.435852) (xy 69.658353 79.435857) (xy 69.658354 79.435858) (xy 69.80678 79.527409) (xy 69.972319 79.582262) (xy 70.074487 79.5927) (xy 70.673912 79.592699) (xy 70.776081 79.582262) (xy 70.94162 79.527409) (xy 71.090046 79.435858) (xy 71.213358 79.312546) (xy 71.304909 79.16412) (xy 71.359762 78.998581) (xy 71.3702 78.896413) (xy 71.370199 78.321988) (xy 71.366578 78.286546) (xy 71.359762 78.219819) (xy 71.345555 78.176944) (xy 71.304909 78.05428) (xy 71.213358 77.905854) (xy 71.090046 77.782542) (xy 71.089211 77.782027) (xy 71.067551 77.768666) (xy 71.020074 77.715879) (xy 71.0077 77.661427) (xy 71.0077 76.617369) (xy 71.027702 76.549248) (xy 71.080459 76.50317) (xy 71.08443 76.501317) (xy 71.084438 76.501315) (xy 71.235352 76.40823) (xy 71.36073 76.282852) (xy 71.453815 76.131938) (xy 71.509587 75.963626) (xy 71.5202 75.859745) (xy 71.520199 74.858656) (xy 71.5201 74.857683) (xy 72.5517 74.857683) (xy 72.5517 75.1042) (xy 73.3807 75.1042) (xy 73.3807 74.1502) (xy 73.259183 74.1502) (xy 73.155381 74.160805) (xy 73.155378 74.160806) (xy 72.987174 74.216542) (xy 72.83636 74.309565) (xy 72.836354 74.30957) (xy 72.71107 74.434854) (xy 72.711065 74.43486) (xy 72.618042 74.585674) (xy 72.562306 74.753878) (xy 72.562305 74.753881) (xy 72.5517 74.857683) (xy 71.5201 74.857683) (xy 71.512876 74.786975) (xy 71.509587 74.754774) (xy 71.472161 74.641828) (xy 71.453815 74.586462) (xy 71.36073 74.435548) (xy 71.360727 74.435545) (xy 71.360724 74.435541) (xy 71.235358 74.310175) (xy 71.235352 74.31017) (xy 71.189488 74.281881) (xy 71.084438 74.217085) (xy 70.9901 74.185825) (xy 70.916127 74.161313) (xy 70.91612 74.161312) (xy 70.812253 74.1507) (xy 70.061155 74.1507) (xy 69.957274 74.161312) (xy 69.788961 74.217085) (xy 69.638047 74.31017) (xy 69.638041 74.310175) (xy 69.512671 74.435545) (xy 69.510211 74.438657) (xy 69.507981 74.440235) (xy 69.50748 74.440737) (xy 69.507394 74.440651) (xy 69.452268 74.479683) (xy 69.381343 74.482871) (xy 69.319954 74.447208) (xy 69.312537 74.438646) (xy 69.310332 74.435857) (xy 69.185045 74.31057) (xy 69.185039 74.310565) (xy 69.034225 74.217542) (xy 68.866021 74.161806) (xy 68.866018 74.161805) (xy 68.762216 74.1512) (xy 68.6407 74.1512) (xy 68.6407 76.5672) (xy 68.762217 76.5672) (xy 68.762216 76.567199) (xy 68.866018 76.556594) (xy 68.866021 76.556593) (xy 69.034225 76.500857) (xy 69.185039 76.407834) (xy 69.185045 76.407829) (xy 69.310324 76.28255) (xy 69.312532 76.279758) (xy 69.314537 76.278337) (xy 69.315525 76.27735) (xy 69.315693 76.277518) (xy 69.370468 76.238722) (xy 69.441393 76.235523) (xy 69.502788 76.271176) (xy 69.510215 76.279747) (xy 69.512674 76.282857) (xy 69.638041 76.408224) (xy 69.638045 76.408227) (xy 69.638048 76.40823) (xy 69.66886 76.427235) (xy 69.680846 76.434628) (xy 69.728325 76.487413) (xy 69.7407 76.541869) (xy 69.7407 77.661427) (xy 69.720698 77.729548) (xy 69.680849 77.768666) (xy 69.658356 77.78254) (xy 69.550795 77.890101) (xy 69.488483 77.924126) (xy 69.417667 77.91906) (xy 69.372605 77.8901) (xy 69.265052 77.782547) (xy 69.265046 77.782542) (xy 69.182698 77.731749) (xy 69.11662 77.690991) (xy 68.951081 77.636138) (xy 68.951079 77.636137) (xy 68.951077 77.636137) (xy 68.848921 77.6257) (xy 68.249487 77.6257) (xy 68.147319 77.636137) (xy 68.024611 77.676798) (xy 67.98178 77.690991) (xy 67.981778 77.690991) (xy 67.981772 77.690994) (xy 67.948816 77.711322) (xy 67.880337 77.730059) (xy 67.812598 77.708799) (xy 67.793575 77.693176) (xy 65.960115 75.859716) (xy 67.3037 75.859716) (xy 67.314305 75.963518) (xy 67.314306 75.963521) (xy 67.370042 76.131725) (xy 67.463065 76.282539) (xy 67.46307 76.282545) (xy 67.588354 76.407829) (xy 67.58836 76.407834) (xy 67.739174 76.500857) (xy 67.907378 76.556593) (xy 67.907381 76.556594) (xy 68.011183 76.567199) (xy 68.011183 76.5672) (xy 68.1327 76.5672) (xy 68.1327 75.6132) (xy 67.3037 75.6132) (xy 67.3037 75.859716) (xy 65.960115 75.859716) (xy 65.751444 75.651045) (xy 65.717418 75.588733) (xy 65.722483 75.517918) (xy 65.76503 75.461082) (xy 65.83155 75.436271) (xy 65.840539 75.43595) (xy 66.209852 75.43595) (xy 66.279098 75.428874) (xy 66.313725 75.425337) (xy 66.482038 75.369565) (xy 66.632951 75.27648) (xy 66.75833 75.151101) (xy 66.851415 75.000188) (xy 66.898304 74.858683) (xy 67.3037 74.858683) (xy 67.3037 75.1052) (xy 68.1327 75.1052) (xy 68.1327 74.1512) (xy 68.011183 74.1512) (xy 67.907381 74.161805) (xy 67.907378 74.161806) (xy 67.739174 74.217542) (xy 67.58836 74.310565) (xy 67.588354 74.31057) (xy 67.46307 74.435854) (xy 67.463065 74.43586) (xy 67.370042 74.586674) (xy 67.314306 74.754878) (xy 67.314305 74.754881) (xy 67.3037 74.858683) (xy 66.898304 74.858683) (xy 66.907187 74.831875) (xy 66.912498 74.77989) (xy 66.9178 74.728002) (xy 66.9178 73.376898) (xy 66.912695 73.326942) (xy 66.907926 73.280263) (xy 66.9209 73.210465) (xy 66.935883 73.187513) (xy 66.939154 73.183526) (xy 66.939165 73.183516) (xy 66.941342 73.180258) (xy 66.970046 73.1373) (xy 66.970046 73.137299) (xy 66.973253 73.1325) (xy 67.022174 73.059284) (xy 67.067576 72.949673) (xy 67.079351 72.921247) (xy 67.079352 72.921237) (xy 67.08115 72.915316) (xy 67.083711 72.916093) (xy 67.111175 72.863481) (xy 67.135771 72.843655) (xy 67.248652 72.77403) (xy 67.37403 72.648652) (xy 67.467115 72.497738) (xy 67.472209 72.482366) (xy 67.512624 72.423995) (xy 67.57818 72.39674) (xy 67.591813 72.396) (xy 67.774706 72.396) (xy 67.796191 72.391726) (xy 67.806273 72.389721) (xy 67.830855 72.3873) (xy 70.036687 72.3873) (xy 70.104808 72.407302) (xy 70.151301 72.460958) (xy 70.157261 72.476722) (xy 70.169359 72.516604) (xy 70.263005 72.691804) (xy 70.389032 72.845368) (xy 70.542596 72.971395) (xy 70.717796 73.065041) (xy 70.907899 73.122708) (xy 70.907903 73.122708) (xy 70.907905 73.122709) (xy 70.948102 73.126667) (xy 71.056053 73.1373) (xy 73.955146 73.137299) (xy 74.02603 73.130318) (xy 74.103294 73.122709) (xy 74.103295 73.122708) (xy 74.103301 73.122708) (xy 74.293404 73.065041) (xy 74.468604 72.971395) (xy 74.622168 72.845368) (xy 74.748195 72.691804) (xy 74.841841 72.516604) (xy 74.899508 72.326501) (xy 74.899825 72.32329) (xy 74.905805 72.262561) (xy 74.9141 72.178347) (xy 74.914099 71.079254) (xy 74.910586 71.043584) (xy 78.642 71.043584) (xy 78.65243 71.145673) (xy 78.652431 71.145676) (xy 78.707248 71.311107) (xy 78.798737 71.459433) (xy 78.798742 71.459439) (xy 78.92196 71.582657) (xy 78.921966 71.582662) (xy 79.070292 71.674151) (xy 79.235723 71.728968) (xy 79.235726 71.728969) (xy 79.337815 71.739399) (xy 79.337815 71.7394) (xy 79.4335 71.7394) (xy 79.4335 71.0104) (xy 78.642 71.0104) (xy 78.642 71.043584) (xy 74.910586 71.043584) (xy 74.905964 70.996654) (xy 74.899509 70.931105) (xy 74.899508 70.931103) (xy 74.899508 70.931099) (xy 74.841841 70.740996) (xy 74.748195 70.565796) (xy 74.622168 70.412232) (xy 74.468604 70.286205) (xy 74.293404 70.192559) (xy 74.103301 70.134892) (xy 74.1033 70.134891) (xy 74.103294 70.13489) (xy 73.955153 70.1203) (xy 73.955147 70.1203) (xy 73.3901 70.1203) (xy 73.321979 70.100298) (xy 73.275486 70.046642) (xy 73.2641 69.9943) (xy 73.2641 68.549483) (xy 77.892 68.549483) (xy 77.892 68.596) (xy 78.646 68.596) (xy 79.154 68.596) (xy 79.908 68.596) (xy 79.908 68.549483) (xy 79.897394 68.445681) (xy 79.897393 68.445678) (xy 79.841657 68.277474) (xy 79.748634 68.12666) (xy 79.748629 68.126654) (xy 79.623345 68.00137) (xy 79.623339 68.001365) (xy 79.472525 67.908342) (xy 79.304321 67.852606) (xy 79.304318 67.852605) (xy 79.200516 67.842) (xy 79.154 67.842) (xy 79.154 68.596) (xy 78.646 68.596) (xy 78.646 67.842) (xy 78.599483 67.842) (xy 78.495681 67.852605) (xy 78.495678 67.852606) (xy 78.327474 67.908342) (xy 78.17666 68.001365) (xy 78.176654 68.00137) (xy 78.05137 68.126654) (xy 78.051365 68.12666) (xy 77.958342 68.277474) (xy 77.902606 68.445678) (xy 77.902605 68.445681) (xy 77.892 68.549483) (xy 73.2641 68.549483) (xy 73.2641 66.827185) (xy 73.284102 66.759064) (xy 73.332896 66.714918) (xy 73.364439 66.698847) (xy 73.50877 66.58197) (xy 73.55768 66.521572) (xy 73.616094 66.48122) (xy 73.687051 66.478854) (xy 73.748023 66.515227) (xy 73.75352 66.521572) (xy 73.802429 66.58197) (xy 73.946753 66.698842) (xy 73.946758 66.698845) (xy 73.946761 66.698847) (xy 74.112238 66.783162) (xy 74.291629 66.83123) (xy 74.368757 66.8373) (xy 75.242442 66.837299) (xy 75.319571 66.83123) (xy 75.498962 66.783162) (xy 75.664439 66.698847) (xy 75.664443 66.698843) (xy 75.664446 66.698842) (xy 75.80877 66.58197) (xy 75.925642 66.437646) (xy 75.925643 66.437643) (xy 75.925647 66.437639) (xy 76.009962 66.272162) (xy 76.05803 66.092771) (xy 76.0641 66.015643) (xy 76.064099 64.641958) (xy 76.05803 64.564829) (xy 76.009962 64.385438) (xy 75.925647 64.219961) (xy 75.925645 64.219958) (xy 75.925642 64.219953) (xy 75.80877 64.075629) (xy 75.664446 63.958757) (xy 75.664437 63.958752) (xy 75.49896 63.874437) (xy 75.372866 63.84065) (xy 75.319571 63.82637) (xy 75.242443 63.8203) (xy 75.242439 63.8203) (xy 74.368758 63.8203) (xy 74.29163 63.826369) (xy 74.261011 63.834573) (xy 74.190034 63.832881) (xy 74.13931 63.801961) (xy 73.800427 63.463078) (xy 73.800424 63.463076) (xy 73.800423 63.463075) (xy 73.661677 63.38297) (xy 73.661674 63.382969) (xy 73.661673 63.382968) (xy 73.661671 63.382967) (xy 73.66167 63.382967) (xy 73.5728 63.359155) (xy 73.572793 63.359153) (xy 73.506911 63.3415) (xy 71.734792 63.3415) (xy 71.66891 63.359153) (xy 71.668903 63.359155) (xy 71.580032 63.382967) (xy 71.580025 63.38297) (xy 71.441278 63.463076) (xy 71.441272 63.463081) (xy 71.050444 63.853908) (xy 70.988132 63.887933) (xy 70.917316 63.882868) (xy 70.90415 63.877081) (xy 70.898961 63.874437) (xy 70.74387 63.832881) (xy 70.719571 63.82637) (xy 70.642443 63.8203) (xy 70.642439 63.8203) (xy 69.768758 63.8203) (xy 69.69163 63.826369) (xy 69.512239 63.874437) (xy 69.346762 63.958752) (xy 69.346753 63.958757) (xy 69.202429 64.075629) (xy 69.085557 64.219953) (xy 69.085552 64.219962) (xy 69.001237 64.385439) (xy 68.976728 64.476911) (xy 68.939777 64.537534) (xy 68.875916 64.568555) (xy 68.855021 64.5703) (xy 68.846971 64.5703) (xy 68.77885 64.550298) (xy 68.757876 64.533395) (xy 67.997819 63.773338) (xy 67.997815 63.773334) (xy 67.873584 63.690326) (xy 67.735547 63.633149) (xy 67.735544 63.633148) (xy 67.729829 63.630781) (xy 67.7305 63.629159) (xy 67.686307 63.600189) (xy 67.684651 63.601847) (xy 67.679458 63.596654) (xy 67.671546 63.588742) (xy 67.637521 63.526434) (xy 67.642583 63.455618) (xy 67.671548 63.410547) (xy 67.679062 63.403033) (xy 67.770551 63.254707) (xy 67.825368 63.089276) (xy 67.825369 63.089273) (xy 67.835799 62.987184) (xy 67.8358 62.987184) (xy 67.8358 62.8915) (xy 65.8698 62.8915) (xy 65.8698 62.987184) (xy 65.88023 63.089273) (xy 65.880231 63.089276) (xy 65.935048 63.254707) (xy 66.03039 63.409279) (xy 66.028336 63.410545) (xy 66.050582 63.465699) (xy 66.037326 63.535447) (xy 65.988466 63.586956) (xy 65.925184 63.604) (xy 64.945699 63.604) (xy 64.877578 63.583998) (xy 64.831085 63.530342) (xy 64.819699 63.478) (xy 64.819699 63.119055) (xy 64.809087 63.015174) (xy 64.797796 62.9811) (xy 64.753315 62.846862) (xy 64.66023 62.695948) (xy 64.660229 62.695947) (xy 64.660224 62.695941) (xy 64.534858 62.570575) (xy 64.534852 62.57057) (xy 64.464559 62.527213) (xy 64.383938 62.477485) (xy 64.299782 62.449599) (xy 64.215627 62.421713) (xy 64.21562 62.421712) (xy 64.111753 62.4111) (xy 64.111745 62.4111) (xy 61.897677 62.4111) (xy 61.829556 62.391098) (xy 61.783063 62.337442) (xy 61.775928 62.287815) (xy 65.8698 62.287815) (xy 65.8698 62.3835) (xy 66.5988 62.3835) (xy 67.1068 62.3835) (xy 67.8358 62.3835) (xy 67.8358 62.287815) (xy 67.825369 62.185726) (xy 67.825368 62.185723) (xy 67.770551 62.020292) (xy 67.679062 61.871966) (xy 67.679057 61.87196) (xy 67.555839 61.748742) (xy 67.555833 61.748737) (xy 67.407507 61.657248) (xy 67.242076 61.602431) (xy 67.242073 61.60243) (xy 67.139984 61.592) (xy 67.1068 61.592) (xy 67.1068 62.3835) (xy 66.5988 62.3835) (xy 66.5988 61.592) (xy 66.565615 61.592) (xy 66.463526 61.60243) (xy 66.463523 61.602431) (xy 66.298092 61.657248) (xy 66.149766 61.748737) (xy 66.14976 61.748742) (xy 66.026542 61.87196) (xy 66.026537 61.871966) (xy 65.935048 62.020292) (xy 65.880231 62.185723) (xy 65.88023 62.185726) (xy 65.8698 62.287815) (xy 61.775928 62.287815) (xy 61.772959 62.267168) (xy 61.802453 62.202588) (xy 61.808567 62.196019) (xy 62.116024 61.888562) (xy 62.138958 61.870428) (xy 62.173652 61.84903) (xy 62.29903 61.723652) (xy 62.320428 61.688958) (xy 62.338566 61.66602) (xy 62.732454 61.272132) (xy 62.794764 61.238108) (xy 62.865579 61.243173) (xy 62.922415 61.28572) (xy 62.946894 61.348421) (xy 62.952605 61.404318) (xy 62.952606 61.404321) (xy 63.008342 61.572525) (xy 63.101365 61.723339) (xy 63.10137 61.723345) (xy 63.226654 61.848629) (xy 63.22666 61.848634) (xy 63.377474 61.941657) (xy 63.545678 61.997393) (xy 63.545681 61.997394) (xy 63.649483 62.007999) (xy 63.649483 62.008) (xy 63.696 62.008) (xy 64.204 62.008) (xy 64.250517 62.008) (xy 64.250516 62.007999) (xy 64.354318 61.997394) (xy 64.354321 61.997393) (xy 64.522525 61.941657) (xy 64.673339 61.848634) (xy 64.673345 61.848629) (xy 64.798629 61.723345) (xy 64.798634 61.723339) (xy 64.891657 61.572525) (xy 64.947393 61.404321) (xy 64.947394 61.404318) (xy 64.957999 61.300516) (xy 64.958 61.300516) (xy 64.958 61.254) (xy 64.204 61.254) (xy 64.204 62.008) (xy 63.696 62.008) (xy 63.696 60.872) (xy 63.716002 60.803879) (xy 63.769658 60.757386) (xy 63.822 60.746) (xy 64.958 60.746) (xy 64.958 60.699483) (xy 64.947394 60.595681) (xy 64.947393 60.595678) (xy 64.891657 60.427474) (xy 64.798634 60.27666) (xy 64.798629 60.276654) (xy 64.673345 60.15137) (xy 64.673339 60.151365) (xy 64.522525 60.058342) (xy 64.354321 60.002606) (xy 64.354318 60.002605) (xy 64.298422 59.996894) (xy 64.232687 59.970071) (xy 64.191889 59.911968) (xy 64.188981 59.841031) (xy 64.222132 59.782454) (xy 65.11713 58.887458) (xy 65.233566 58.727198) (xy 65.262279 58.670845) (xy 65.323498 58.550697) (xy 65.384712 58.3623) (xy 65.38536 58.358203) (xy 65.415772 58.294052) (xy 65.47604 58.256525) (xy 65.547029 58.257538) (xy 65.606201 58.29677) (xy 65.615293 58.309001) (xy 65.621478 58.318468) (xy 65.621479 58.31847) (xy 65.6987 58.402353) (xy 65.770501 58.480349) (xy 65.773962 58.484108) (xy 65.798876 58.503499) (xy 65.951624 58.622389) (xy 66.149626 58.729542) (xy 66.149627 58.729542) (xy 66.149628 58.729543) (xy 66.237479 58.759702) (xy 66.362565 58.802644) (xy 66.584631 58.8397) (xy 66.584635 58.8397) (xy 66.809765 58.8397) (xy 66.809769 58.8397) (xy 67.031835 58.802644) (xy 67.107684 58.776605) (xy 67.124224 58.770927) (xy 67.165136 58.7641) (xy 69.255922 58.7641) (xy 69.324043 58.784102) (xy 69.345017 58.801005) (xy 69.503995 58.959983) (xy 69.538021 59.022295) (xy 69.5409 59.049078) (xy 69.5409 61.301152) (xy 69.540899 61.301152) (xy 69.551512 61.405021) (xy 69.551512 61.405023) (xy 69.551513 61.405025) (xy 69.607285 61.573338) (xy 69.670875 61.676432) (xy 69.70037 61.724251) (xy 69.700375 61.724257) (xy 69.825742 61.849624) (xy 69.825748 61.849629) (xy 69.825749 61.84963) (xy 69.976662 61.942715) (xy 70.144975 61.998487) (xy 70.173306 62.001381) (xy 70.248848 62.0091) (xy 70.248856 62.0091) (xy 71.949952 62.0091) (xy 72.019198 62.002024) (xy 72.053825 61.998487) (xy 72.222138 61.942715) (xy 72.373051 61.84963) (xy 72.49843 61.724251) (xy 72.591515 61.573338) (xy 72.647287 61.405025) (xy 72.65307 61.348421) (xy 72.6579 61.301152) (xy 72.6579 56.250047) (xy 72.64994 56.172145) (xy 72.647287 56.146175) (xy 72.591515 55.977862) (xy 72.49843 55.826949) (xy 72.498429 55.826948) (xy 72.498424 55.826942) (xy 72.373057 55.701575) (xy 72.373051 55.70157) (xy 72.307021 55.660842) (xy 72.222138 55.608485) (xy 72.053825 55.552713) (xy 72.053823 55.552712) (xy 72.053821 55.552712) (xy 71.949952 55.5421) (xy 71.949944 55.5421) (xy 70.248856 55.5421) (xy 70.248848 55.5421) (xy 70.144978 55.552712) (xy 69.976662 55.608485) (xy 69.97666 55.608486) (xy 69.825748 55.70157) (xy 69.825742 55.701575) (xy 69.700375 55.826942) (xy 69.70037 55.826948) (xy 69.607286 55.97786) (xy 69.607285 55.977862) (xy 69.551514 56.146171) (xy 69.551237 56.14747) (xy 69.550844 56.148194) (xy 69.54935 56.152705) (xy 69.548545 56.152438) (xy 69.517421 56.209896) (xy 69.455223 56.24413) (xy 69.428027 56.2471) (xy 67.302998 56.2471) (xy 67.250093 56.233701) (xy 67.249545 56.234951) (xy 67.244771 56.232856) (xy 67.031839 56.159757) (xy 67.03183 56.159755) (xy 66.962547 56.148194) (xy 66.809769 56.1227) (xy 66.584631 56.1227) (xy 66.443976 56.146171) (xy 66.362569 56.159755) (xy 66.36256 56.159757) (xy 66.149628 56.232856) (xy 66.149626 56.232858) (xy 65.951626 56.34001) (xy 65.951624 56.340011) (xy 65.773962 56.478291) (xy 65.621479 56.643929) (xy 65.532683 56.779843) (xy 65.478679 56.825931) (xy 65.408331 56.835506) (xy 65.343974 56.805529) (xy 65.321717 56.779843) (xy 65.23292 56.643929) (xy 65.080437 56.478291) (xy 64.960567 56.384992) (xy 64.902776 56.340011) (xy 64.704774 56.232858) (xy 64.704772 56.232857) (xy 64.704771 56.232856) (xy 64.491839 56.159757) (xy 64.49183 56.159755) (xy 64.422547 56.148194) (xy 64.269769 56.1227) (xy 64.044631 56.1227) (xy 63.903976 56.146171) (xy 63.822569 56.159755) (xy 63.82256 56.159757) (xy 63.609628 56.232856) (xy 63.609626 56.232858) (xy 63.411626 56.34001) (xy 63.411624 56.340011) (xy 63.233962 56.478291) (xy 63.172954 56.544563) (xy 63.112101 56.581133) (xy 63.041136 56.578998) (xy 62.982591 56.538836) (xy 62.962199 56.503257) (xy 62.918089 56.384997) (xy 62.918087 56.384992) (xy 62.830461 56.267938) (xy 62.713407 56.180312) (xy 62.713402 56.18031) (xy 62.576404 56.129211) (xy 62.576396 56.129209) (xy 62.515849 56.1227) (xy 62.515838 56.1227) (xy 60.718562 56.1227) (xy 60.71855 56.1227) (xy 60.658003 56.129209) (xy 60.657995 56.129211) (xy 60.520997 56.18031) (xy 60.520996 56.18031) (xy 60.506049 56.1915) (xy 60.497942 56.197568) (xy 60.431424 56.222379) (xy 60.422434 56.2227) (xy 59.155268 56.2227) (xy 59.087147 56.202698) (xy 59.040654 56.149042) (xy 59.029921 56.109506) (xy 59.023287 56.044578) (xy 59.023287 56.044575) (xy 58.967515 55.876262) (xy 58.87443 55.725349) (xy 58.874429 55.725348) (xy 58.874424 55.725342) (xy 58.749057 55.599975) (xy 58.749051 55.59997) (xy 58.689185 55.563044) (xy 58.598138 55.506885) (xy 58.429825 55.451113) (xy 58.429823 55.451112) (xy 58.429821 55.451112) (xy 58.325952 55.4405) (xy 58.325944 55.4405) (xy 56.624856 55.4405) (xy 56.624848 55.4405) (xy 56.520978 55.451112) (xy 56.352662 55.506885) (xy 56.35266 55.506886) (xy 56.201748 55.59997) (xy 56.201742 55.599975) (xy 56.076375 55.725342) (xy 56.07637 55.725348) (xy 55.983286 55.87626) (xy 55.983285 55.876262) (xy 55.927512 56.044578) (xy 55.9169 56.148447) (xy 55.9169 61.199552) (xy 55.916899 61.199552) (xy 55.927512 61.303421) (xy 55.927512 61.303423) (xy 55.927513 61.303425) (xy 55.983285 61.471738) (xy 56.007905 61.511653) (xy 56.07637 61.622651) (xy 56.076375 61.622657) (xy 56.201742 61.748024) (xy 56.201748 61.748029) (xy 56.201749 61.74803) (xy 56.352662 61.841115) (xy 56.520975 61.896887) (xy 56.549306 61.899781) (xy 56.624848 61.9075) (xy 58.233321 61.9075) (xy 58.301442 61.927502) (xy 58.347935 61.981158) (xy 58.358039 62.051432) (xy 58.328545 62.116012) (xy 58.322429 62.122581) (xy 58.177843 62.267168) (xy 58.070815 62.374196) (xy 58.008503 62.408221) (xy 57.98172 62.4111) (xy 56.010655 62.4111) (xy 55.906774 62.421712) (xy 55.738461 62.477485) (xy 55.587547 62.57057) (xy 55.587541 62.570575) (xy 55.462175 62.695941) (xy 55.46217 62.695947) (xy 55.369085 62.846862) (xy 55.313313 63.015172) (xy 55.313312 63.015179) (xy 55.3027 63.119046) (xy 55.3027 64.520144) (xy 55.313312 64.624025) (xy 55.369085 64.792338) (xy 55.46217 64.943252) (xy 55.462175 64.943258) (xy 55.587541 65.068624) (xy 55.587547 65.068629) (xy 55.587548 65.06863) (xy 55.738462 65.161715) (xy 55.906774 65.217487) (xy 56.010655 65.2281) (xy 59.068721 65.228099) (xy 59.136842 65.248101) (xy 59.183335 65.301757) (xy 59.193439 65.372031) (xy 59.163945 65.436611) (xy 59.157817 65.443194) (xy 59.001942 65.59907) (xy 59.001941 65.59907) (xy 58.861874 65.739136) (xy 58.861871 65.739139) (xy 58.745436 65.899398) (xy 58.655503 66.075901) (xy 58.655502 66.075903) (xy 58.599724 66.247571) (xy 58.594288 66.2643) (xy 58.565887 66.443626) (xy 58.5633 66.459957) (xy 58.5633 68.746752) (xy 58.563299 68.746752) (xy 58.573912 68.850621) (xy 58.573912 68.850623) (xy 58.573913 68.850625) (xy 58.629685 69.018938) (xy 58.710151 69.149393) (xy 58.72277 69.169851) (xy 58.722775 69.169857) (xy 58.848142 69.295224) (xy 58.848148 69.295229) (xy 58.848149 69.29523) (xy 58.999062 69.388315) (xy 59.167375 69.444087) (xy 59.252218 69.452755) (xy 59.317951 69.479577) (xy 59.35875 69.53768) (xy 59.361659 69.608617) (xy 59.32851 69.667193) (xy 59.323737 69.671966) (xy 59.232248 69.820292) (xy 59.177431 69.985723) (xy 59.17743 69.985726) (xy 59.167 70.087815) (xy 59.167 70.1335) (xy 61.133 70.1335) (xy 61.133 70.087815) (xy 61.122588 69.985907) (xy 61.135562 69.916106) (xy 61.184214 69.8644) (xy 61.253097 69.847206) (xy 61.320341 69.869982) (xy 61.33703 69.884005) (xy 61.351654 69.898629) (xy 61.35166 69.898634) (xy 61.502474 69.991657) (xy 61.670678 70.047393) (xy 61.670681 70.047394) (xy 61.774483 70.057999) (xy 61.774483 70.058) (xy 61.996 70.058) (xy 61.996 68.5085) (xy 62.504 68.5085) (xy 63.433 68.5085) (xy 63.433 68.174483) (xy 65.167 68.174483) (xy 65.167 68.5085) (xy 66.096 68.5085) (xy 66.604 68.5085) (xy 67.533 68.5085) (xy 67.533 68.174483) (xy 67.522394 68.070681) (xy 67.522393 68.070678) (xy 67.466657 67.902474) (xy 67.373634 67.75166) (xy 67.373629 67.751654) (xy 67.248345 67.62637) (xy 67.248339 67.626365) (xy 67.097525 67.533342) (xy 66.929321 67.477606) (xy 66.929318 67.477605) (xy 66.825516 67.467) (xy 66.604 67.467) (xy 66.604 68.5085) (xy 66.096 68.5085) (xy 66.096 67.467) (xy 65.874483 67.467) (xy 65.770681 67.477605) (xy 65.770678 67.477606) (xy 65.602474 67.533342) (xy 65.45166 67.626365) (xy 65.451654 67.62637) (xy 65.32637 67.751654) (xy 65.326365 67.75166) (xy 65.233342 67.902474) (xy 65.177606 68.070678) (xy 65.177605 68.070681) (xy 65.167 68.174483) (xy 63.433 68.174483) (xy 63.422394 68.070681) (xy 63.422393 68.070678) (xy 63.366657 67.902474) (xy 63.273634 67.75166) (xy 63.273629 67.751654) (xy 63.148345 67.62637) (xy 63.148339 67.626365) (xy 62.997525 67.533342) (xy 62.829321 67.477606) (xy 62.829318 67.477605) (xy 62.725516 67.467) (xy 62.504 67.467) (xy 62.504 68.5085) (xy 61.996 68.5085) (xy 61.996 67.467) (xy 61.774483 67.467) (xy 61.670681 67.477605) (xy 61.670678 67.477606) (xy 61.502474 67.533342) (xy 61.35166 67.626365) (xy 61.351654 67.62637) (xy 61.295395 67.68263) (xy 61.233083 67.716656) (xy 61.162268 67.711591) (xy 61.105432 67.669044) (xy 61.080621 67.602524) (xy 61.0803 67.593535) (xy 61.0803 67.132477) (xy 61.100302 67.064356) (xy 61.1172 67.043387) (xy 62.895583 65.265003) (xy 62.957895 65.230978) (xy 62.984678 65.228099) (xy 64.111744 65.228099) (xy 64.215626 65.217487) (xy 64.383938 65.161715) (xy 64.404589 65.148977) (xy 64.419535 65.139759) (xy 64.485681 65.121) (xy 65.966605 65.121) (xy 66.034726 65.141002) (xy 66.0557 65.157905) (xy 66.149447 65.251652) (xy 66.149453 65.251657) (xy 66.149454 65.251658) (xy 66.29788 65.343209) (xy 66.463419 65.398062) (xy 66.565587 65.4085) (xy 67.140012 65.408499) (xy 67.242181 65.398062) (xy 67.344921 65.364017) (xy 67.415874 65.361578) (xy 67.473647 65.394528) (xy 67.997085 65.917966) (xy 67.997088 65.917968) (xy 67.997093 65.917972) (xy 68.018059 65.931981) (xy 68.121311 66.000971) (xy 68.121313 66.000972) (xy 68.121316 66.000974) (xy 68.259354 66.058151) (xy 68.405894 66.0873) (xy 68.405895 66.0873) (xy 68.555305 66.0873) (xy 68.855021 66.0873) (xy 68.923142 66.107302) (xy 68.969635 66.160958) (xy 68.976726 66.180685) (xy 68.980796 66.195871) (xy 69.001237 66.27216) (xy 69.085552 66.437637) (xy 69.085557 66.437646) (xy 69.202429 66.58197) (xy 69.346753 66.698842) (xy 69.346758 66.698845) (xy 69.346761 66.698847) (xy 69.512238 66.783162) (xy 69.691629 66.83123) (xy 69.768757 66.8373) (xy 70.6155 66.837299) (xy 70.683621 66.857301) (xy 70.730114 66.910957) (xy 70.7415 66.963299) (xy 70.7415 68.945761) (xy 70.721498 69.013882) (xy 70.704595 69.034856) (xy 70.184856 69.554595) (xy 70.122544 69.588621) (xy 70.095761 69.5915) (xy 67.647908 69.5915) (xy 67.579787 69.571498) (xy 67.533294 69.517842) (xy 67.52256 69.452694) (xy 67.533 69.350507) (xy 67.533 69.0165) (xy 65.166999 69.0165) (xy 65.133347 69.050152) (xy 65.071035 69.084178) (xy 65.00022 69.079113) (xy 64.959212 69.052758) (xy 64.959104 69.052895) (xy 64.957709 69.051792) (xy 64.955157 69.050152) (xy 64.953352 69.048347) (xy 64.953346 69.048342) (xy 64.919152 69.027251) (xy 64.80492 68.956791) (xy 64.639381 68.901938) (xy 64.639379 68.901937) (xy 64.639377 68.901937) (xy 64.537221 68.8915) (xy 63.962787 68.8915) (xy 63.860619 68.901937) (xy 63.695079 68.956791) (xy 63.62835 68.997951) (xy 63.584937 69.024729) (xy 63.580848 69.027251) (xy 63.512369 69.045988) (xy 63.44463 69.024729) (xy 63.43461 69.0165) (xy 62.504 69.0165) (xy 62.504 70.058) (xy 62.725517 70.058) (xy 62.725516 70.057999) (xy 62.829318 70.047394) (xy 62.82933 70.047392) (xy 62.870375 70.033791) (xy 62.941329 70.03135) (xy 63.00234 70.067658) (xy 63.034035 70.131186) (xy 63.026353 70.201766) (xy 62.999103 70.24249) (xy 62.926251 70.315342) (xy 62.863939 70.349368) (xy 62.824349 70.351594) (xy 62.725553 70.3415) (xy 61.774455 70.3415) (xy 61.670574 70.352112) (xy 61.502261 70.407885) (xy 61.351347 70.50097) (xy 61.351341 70.500975) (xy 61.247722 70.604595) (xy 61.18541 70.638621) (xy 61.158627 70.6415) (xy 59.167 70.6415) (xy 59.167 70.687184) (xy 59.17743 70.789273) (xy 59.177431 70.789276) (xy 59.232248 70.954707) (xy 59.323737 71.103033) (xy 59.323742 71.103039) (xy 59.431254 71.210551) (xy 59.46528 71.272863) (xy 59.460215 71.343678) (xy 59.431254 71.388741) (xy 59.323347 71.496647) (xy 59.323342 71.496653) (xy 59.231791 71.64508) (xy 59.176937 71.810622) (xy 59.1665 71.912778) (xy 59.1665 72.512212) (xy 59.176937 72.61438) (xy 59.231791 72.77992) (xy 59.323342 72.928346) (xy 59.323347 72.928352) (xy 59.446647 73.051652) (xy 59.446653 73.051657) (xy 59.446654 73.051658) (xy 59.59508 73.143209) (xy 59.760619 73.198062) (xy 59.862787 73.2085) (xy 60.437212 73.208499) (xy 60.539381 73.198062) (xy 60.70492 73.143209) (xy 60.853346 73.051658) (xy 60.976658 72.928346) (xy 61.068209 72.77992) (xy 61.075891 72.756735) (xy 61.116301 72.698366) (xy 61.181857 72.671108) (xy 61.251743 72.68362) (xy 61.28459 72.707273) (xy 61.351341 72.774024) (xy 61.351347 72.774029) (xy 61.351348 72.77403) (xy 61.502262 72.867115) (xy 61.526584 72.875174) (xy 61.584954 72.915584) (xy 61.612212 72.98114) (xy 61.599701 73.051025) (xy 61.594193 73.060924) (xy 61.567188 73.104705) (xy 61.567185 73.104712) (xy 61.511412 73.273028) (xy 61.5008 73.376897) (xy 61.5008 73.971802) (xy 61.480798 74.039923) (xy 61.463895 74.060897) (xy 59.070197 76.454595) (xy 59.007885 76.488621) (xy 58.981102 76.4915) (xy 51.800668 76.4915) (xy 51.60583 76.530256) (xy 51.605825 76.530258) (xy 51.422296 76.606279) (xy 51.257123 76.716644) (xy 51.257116 76.716649) (xy 51.116649 76.857116) (xy 51.116644 76.857123) (xy 51.017253 77.005873) (xy 51.006279 77.022296) (xy 50.988828 77.064427) (xy 50.929626 77.207352) (xy 50.902312 77.248228) (xy 47.541745 80.608795) (xy 47.541738 80.608804) (xy 47.477793 80.704503) (xy 47.423316 80.75003) (xy 47.37303 80.7605) (xy 47.177455 80.7605) (xy 47.073574 80.771112) (xy 46.905261 80.826885) (xy 46.754347 80.91997) (xy 46.754341 80.919975) (xy 46.628975 81.045341) (xy 46.62897 81.045347) (xy 46.535885 81.196262) (xy 46.480113 81.364572) (xy 46.480112 81.364579) (xy 46.4695 81.468446) (xy 46.4695 82.869544) (xy 46.480112 82.973425) (xy 46.535885 83.141738) (xy 46.62897 83.292652) (xy 46.628975 83.292658) (xy 46.754341 83.418024) (xy 46.754347 83.418029) (xy 46.754348 83.41803) (xy 46.905262 83.511115) (xy 47.073574 83.566887) (xy 47.177455 83.5775) (xy 48.345628 83.577499) (xy 48.413749 83.597501) (xy 48.460242 83.651157) (xy 48.470346 83.721431) (xy 48.440853 83.786011) (xy 48.434725 83.792593) (xy 48.410836 83.816481) (xy 48.410835 83.816483) (xy 48.327826 83.940716) (xy 48.270651 84.078747) (xy 48.270649 84.078752) (xy 48.262502 84.119712) (xy 48.2415 84.22529) (xy 48.2415 92.025559) (xy 48.221498 92.09368) (xy 48.167842 92.140173) (xy 48.097568 92.150277) (xy 48.071467 92.143614) (xy 47.949204 92.098011) (xy 47.949196 92.098009) (xy 47.888649 92.0915) (xy 47.888638 92.0915) (xy 46.091362 92.0915) (xy 46.09135 92.0915) (xy 46.030803 92.098009) (xy 46.030795 92.098011) (xy 45.893797 92.14911) (xy 45.893792 92.149112) (xy 45.795091 92.223) (xy 45.728571 92.247811) (xy 45.659197 92.23272) (xy 45.644072 92.222999) (xy 45.545966 92.149556) (xy 45.545964 92.149555) (xy 45.409093 92.098505) (xy 45.348597 92.092) (xy 44.704 92.092) (xy 44.704 94.807749) (xy 44.646853 94.774755) (xy 44.517143 94.74) (xy 44.382857 94.74) (xy 44.253147 94.774755) (xy 44.196 94.807749) (xy 44.196 92.092) (xy 43.776848 92.092) (xy 43.708727 92.071998) (xy 43.662234 92.018342) (xy 43.65213 91.948068) (xy 43.681624 91.883488) (xy 43.687745 91.876911) (xy 44.094859 91.469799) (xy 44.179164 91.343628) (xy 44.191548 91.325094) (xy 44.258148 91.164307) (xy 44.2921 90.993617) (xy 44.2921 87.247219) (xy 44.312102 87.179098) (xy 44.365758 87.132605) (xy 44.436032 87.122501) (xy 44.484247 87.139978) (xy 44.542892 87.176151) (xy 44.708323 87.230968) (xy 44.708326 87.230969) (xy 44.810415 87.241399) (xy 44.810415 87.2414) (xy 44.9061 87.2414) (xy 45.4141 87.2414) (xy 45.509785 87.2414) (xy 45.509784 87.241399) (xy 45.611873 87.230969) (xy 45.611876 87.230968) (xy 45.777307 87.176151) (xy 45.925633 87.084662) (xy 45.925639 87.084657) (xy 46.048857 86.961439) (xy 46.048862 86.961433) (xy 46.140351 86.813107) (xy 46.195168 86.647676) (xy 46.195169 86.647673) (xy 46.205599 86.545584) (xy 46.2056 86.545584) (xy 46.2056 86.5124) (xy 45.4141 86.5124) (xy 45.4141 87.2414) (xy 44.9061 87.2414) (xy 44.9061 86.0044) (xy 45.4141 86.0044) (xy 46.2056 86.0044) (xy 46.2056 85.971215) (xy 46.195169 85.869126) (xy 46.195168 85.869123) (xy 46.140351 85.703692) (xy 46.048862 85.555366) (xy 46.048857 85.55536) (xy 45.925639 85.432142) (xy 45.925633 85.432137) (xy 45.777307 85.340648) (xy 45.611876 85.285831) (xy 45.611873 85.28583) (xy 45.509784 85.2754) (xy 45.4141 85.2754) (xy 45.4141 86.0044) (xy 44.9061 86.0044) (xy 44.9061 85.2754) (xy 44.810415 85.2754) (xy 44.708326 85.28583) (xy 44.708323 85.285831) (xy 44.54289 85.340649) (xy 44.510746 85.360476) (xy 44.442266 85.379213) (xy 44.374528 85.357953) (xy 44.329037 85.303446) (xy 44.3186 85.253235) (xy 44.3186 83.703499) (xy 44.338602 83.635378) (xy 44.392258 83.588885) (xy 44.4446 83.577499) (xy 45.278544 83.577499) (xy 45.382426 83.566887) (xy 45.550738 83.511115) (xy 45.701652 83.41803) (xy 45.82703 83.292652) (xy 45.920115 83.141738) (xy 45.975887 82.973426) (xy 45.9865 82.869545) (xy 45.986499 81.468456) (xy 45.983269 81.436842) (xy 45.975887 81.364574) (xy 45.974344 81.359917) (xy 45.920115 81.196262) (xy 45.82703 81.045348) (xy 45.827029 81.045347) (xy 45.827024 81.045341) (xy 45.701658 80.919975) (xy 45.701652 80.91997) (xy 45.626056 80.873342) (xy 45.550738 80.826885) (xy 45.414651 80.781791) (xy 45.382427 80.771113) (xy 45.38242 80.771112) (xy 45.278553 80.7605) (xy 43.177455 80.7605) (xy 43.073574 80.771112) (xy 42.905261 80.826885) (xy 42.754347 80.91997) (xy 42.754341 80.919975) (xy 42.628975 81.045341) (xy 42.62897 81.045347) (xy 42.535885 81.196262) (xy 42.480113 81.364572) (xy 42.480112 81.364579) (xy 42.4695 81.468446) (xy 42.4695 82.869544) (xy 42.480112 82.973425) (xy 42.510252 83.064381) (xy 42.53408 83.136292) (xy 42.535886 83.14174) (xy 42.538988 83.148392) (xy 42.536453 83.149573) (xy 42.5516 83.202949) (xy 42.5516 85.510147) (xy 42.532841 85.576293) (xy 42.524677 85.589529) (xy 42.454391 85.70348) (xy 42.399537 85.869022) (xy 42.3891 85.971178) (xy 42.3891 86.545612) (xy 42.399537 86.64778) (xy 42.454392 86.813323) (xy 42.50634 86.897542) (xy 42.5251 86.963689) (xy 42.5251 90.488451) (xy 42.505098 90.556572) (xy 42.488195 90.577546) (xy 41.223745 91.841995) (xy 41.22374 91.842001) (xy 41.127051 91.986705) (xy 41.127048 91.986712) (xy 41.11562 92.0143) (xy 41.071071 92.06958) (xy 41.012682 92.091357) (xy 40.950803 92.098009) (xy 40.950795 92.098011) (xy 40.813797 92.14911) (xy 40.813792 92.149112) (xy 40.715509 92.222687) (xy 40.648989 92.247498) (xy 40.579615 92.232407) (xy 40.564491 92.222687) (xy 40.466207 92.149112) (xy 40.466202 92.14911) (xy 40.329204 92.098011) (xy 40.329196 92.098009) (xy 40.268649 92.0915) (xy 40.268638 92.0915) (xy 40.1045 92.0915) (xy 40.036379 92.071498) (xy 39.989886 92.017842) (xy 39.9785 91.9655) (xy 39.9785 88.366039) (xy 39.998502 88.297918) (xy 40.0154 88.276948) (xy 40.342546 87.949803) (xy 40.404858 87.915778) (xy 40.431641 87.912899) (xy 40.774812 87.912899) (xy 40.876981 87.902462) (xy 41.04252 87.847609) (xy 41.190946 87.756058) (xy 41.314258 87.632746) (xy 41.405809 87.48432) (xy 41.460662 87.318781) (xy 41.4711 87.216613) (xy 41.471099 86.617188) (xy 41.466454 86.571722) (xy 41.460662 86.515019) (xy 41.450436 86.484158) (xy 41.405809 86.34948) (xy 41.314258 86.201054) (xy 41.314257 86.201053) (xy 41.314252 86.201047) (xy 41.2067 86.093495) (xy 41.172674 86.031183) (xy 41.177739 85.960368) (xy 41.2067 85.915305) (xy 41.314252 85.807752) (xy 41.314258 85.807746) (xy 41.405809 85.65932) (xy 41.460662 85.493781) (xy 41.4711 85.391613) (xy 41.471099 84.792188) (xy 41.46188 84.701947) (xy 41.460662 84.690019) (xy 41.452826 84.666371) (xy 41.405809 84.52448) (xy 41.37129 84.468516) (xy 41.352553 84.40004) (xy 41.373812 84.332301) (xy 41.406122 84.301171) (xy 41.405497 84.30038) (xy 41.411244 84.295834) (xy 41.411252 84.29583) (xy 41.53663 84.170452) (xy 41.629715 84.019538) (xy 41.685487 83.851226) (xy 41.6961 83.747345) (xy 41.696099 82.996256) (xy 41.685487 82.892374) (xy 41.629715 82.724062) (xy 41.53663 82.573148) (xy 41.536629 82.573147) (xy 41.536624 82.573141) (xy 41.411257 82.447774) (xy 41.408147 82.445315) (xy 41.406567 82.443084) (xy 41.406063 82.44258) (xy 41.406149 82.442493) (xy 41.367118 82.387375) (xy 41.363926 82.31645) (xy 41.399586 82.255059) (xy 41.408158 82.247632) (xy 41.41095 82.245424) (xy 41.536229 82.120145) (xy 41.536234 82.120139) (xy 41.629257 81.969325) (xy 41.684993 81.801121) (xy 41.684994 81.801118) (xy 41.695599 81.697316) (xy 41.6956 81.697316) (xy 41.6956 81.5758) (xy 39.2796 81.5758) (xy 39.2796 81.697316) (xy 39.290205 81.801118) (xy 39.290206 81.801121) (xy 39.345942 81.969325) (xy 39.438965 82.120139) (xy 39.43897 82.120145) (xy 39.564257 82.245432) (xy 39.567046 82.247637) (xy 39.568463 82.249638) (xy 39.56945 82.250625) (xy 39.569281 82.250793) (xy 39.608079 82.305575) (xy 39.611274 82.3765) (xy 39.575617 82.437893) (xy 39.567057 82.445311) (xy 39.563945 82.447771) (xy 39.438575 82.573141) (xy 39.43857 82.573147) (xy 39.345485 82.724062) (xy 39.289713 82.892372) (xy 39.289712 82.892379) (xy 39.2791 82.996246) (xy 39.2791 83.747344) (xy 39.289712 83.851225) (xy 39.345485 84.019538) (xy 39.43857 84.170452) (xy 39.438575 84.170458) (xy 39.563941 84.295824) (xy 39.563945 84.295827) (xy 39.563948 84.29583) (xy 39.56395 84.295831) (xy 39.569703 84.30038) (xy 39.568688 84.301662) (xy 39.610291 84.347914) (xy 39.621695 84.417989) (xy 39.603909 84.468516) (xy 39.569391 84.524479) (xy 39.514537 84.690022) (xy 39.5041 84.792178) (xy 39.5041 85.391612) (xy 39.514537 85.49378) (xy 39.569391 85.65932) (xy 39.660942 85.807746) (xy 39.660947 85.807752) (xy 39.7685 85.915305) (xy 39.802526 85.977617) (xy 39.797461 86.048432) (xy 39.7685 86.093495) (xy 39.660947 86.201047) (xy 39.660942 86.201053) (xy 39.569391 86.34948) (xy 39.514537 86.515022) (xy 39.5041 86.617178) (xy 39.5041 86.987659) (xy 39.484098 87.05578) (xy 39.467196 87.076754) (xy 39.391076 87.152874) (xy 39.362077 87.203101) (xy 39.342055 87.229194) (xy 38.88308 87.68817) (xy 38.883075 87.688176) (xy 38.80297 87.826922) (xy 38.802968 87.826927) (xy 38.786893 87.886921) (xy 38.766282 87.963845) (xy 38.7615 87.98169) (xy 38.7615 91.9655) (xy 38.741498 92.033621) (xy 38.687842 92.080114) (xy 38.6355 92.0915) (xy 38.47135 92.0915) (xy 38.410803 92.098009) (xy 38.410795 92.098011) (xy 38.273797 92.14911) (xy 38.273792 92.149113) (xy 38.202009 92.202849) (xy 38.135488 92.22766) (xy 38.066114 92.212568) (xy 38.015912 92.162366) (xy 38.0005 92.101981) (xy 38.0005 80.946283) (xy 39.2796 80.946283) (xy 39.2796 81.0678) (xy 40.2336 81.0678) (xy 40.7416 81.0678) (xy 41.6956 81.0678) (xy 41.6956 80.946283) (xy 41.684994 80.842481) (xy 41.684993 80.842478) (xy 41.629257 80.674274) (xy 41.536234 80.52346) (xy 41.536229 80.523454) (xy 41.410945 80.39817) (xy 41.410939 80.398165) (xy 41.260125 80.305142) (xy 41.091921 80.249406) (xy 41.091918 80.249405) (xy 40.988116 80.2388) (xy 40.7416 80.2388) (xy 40.7416 81.0678) (xy 40.2336 81.0678) (xy 40.2336 80.2388) (xy 39.987083 80.2388) (xy 39.883281 80.249405) (xy 39.883278 80.249406) (xy 39.715074 80.305142) (xy 39.56426 80.398165) (xy 39.564254 80.39817) (xy 39.43897 80.523454) (xy 39.438965 80.52346) (xy 39.345942 80.674274) (xy 39.290206 80.842478) (xy 39.290205 80.842481) (xy 39.2796 80.946283) (xy 38.0005 80.946283) (xy 38.0005 75.071649) (xy 46.0177 75.071649) (xy 46.0177 75.293351) (xy 46.051199 75.504855) (xy 46.052383 75.512329) (xy 46.12089 75.723171) (xy 46.120892 75.723176) (xy 46.221543 75.920715) (xy 46.221545 75.920718) (xy 46.351858 76.100078) (xy 46.508621 76.256841) (xy 46.544006 76.28255) (xy 46.687985 76.387157) (xy 46.885524 76.487808) (xy 47.096376 76.556318) (xy 47.315349 76.591) (xy 47.315352 76.591) (xy 49.737048 76.591) (xy 49.737051 76.591) (xy 49.956024 76.556318) (xy 50.166876 76.487808) (xy 50.364415 76.387157) (xy 50.543776 76.256843) (xy 50.700543 76.100076) (xy 50.830857 75.920715) (xy 50.931508 75.723176) (xy 51.000018 75.512324) (xy 51.0347 75.293351) (xy 51.0347 75.136716) (xy 53.021 75.136716) (xy 53.031605 75.240518) (xy 53.031606 75.240521) (xy 53.087342 75.408725) (xy 53.180365 75.559539) (xy 53.18037 75.559545) (xy 53.305654 75.684829) (xy 53.30566 75.684834) (xy 53.456474 75.777857) (xy 53.624678 75.833593) (xy 53.624681 75.833594) (xy 53.728483 75.844199) (xy 53.728483 75.8442) (xy 53.975 75.8442) (xy 54.483 75.8442) (xy 54.729517 75.8442) (xy 54.729516 75.844199) (xy 54.833318 75.833594) (xy 54.833321 75.833593) (xy 55.001525 75.777857) (xy 55.152339 75.684834) (xy 55.152345 75.684829) (xy 55.277629 75.559545) (xy 55.277634 75.559539) (xy 55.370657 75.408725) (xy 55.426393 75.240521) (xy 55.426394 75.240518) (xy 55.436999 75.136716) (xy 55.437 75.136716) (xy 55.437 75.0152) (xy 54.483 75.0152) (xy 54.483 75.8442) (xy 53.975 75.8442) (xy 53.975 75.0152) (xy 53.021 75.0152) (xy 53.021 75.136716) (xy 51.0347 75.136716) (xy 51.0347 75.071649) (xy 51.000018 74.852676) (xy 50.931508 74.641824) (xy 50.830857 74.444285) (xy 50.700543 74.264924) (xy 50.700541 74.264921) (xy 50.543778 74.108158) (xy 50.364418 73.977845) (xy 50.364417 73.977844) (xy 50.364415 73.977843) (xy 50.166876 73.877192) (xy 50.166873 73.877191) (xy 50.166871 73.87719) (xy 49.956023 73.808681) (xy 49.956024 73.808681) (xy 49.900388 73.799869) (xy 49.836236 73.769456) (xy 49.831006 73.764516) (xy 49.192323 73.125833) (xy 49.281894 73.101833) (xy 49.384506 73.04259) (xy 49.46829 72.958806) (xy 49.527533 72.856194) (xy 49.551533 72.766623) (xy 50.249338 73.464429) (xy 50.249339 73.464429) (xy 50.32868 73.34299) (xy 50.408364 73.161328) (xy 50.454045 73.106979) (xy 50.521857 73.085955) (xy 50.537221 73.086663) (xy 50.577552 73.090999) (xy 50.577553 73.090999) (xy 50.577562 73.091) (xy 50.577568 73.091) (xy 52.474832 73.091) (xy 52.474838 73.091) (xy 52.474845 73.090999) (xy 52.474849 73.090999) (xy 52.535396 73.08449) (xy 52.535399 73.084489) (xy 52.535401 73.084489) (xy 52.672404 73.033389) (xy 52.696041 73.015695) (xy 52.775117 72.956499) (xy 52.789461 72.945761) (xy 52.79363 72.940191) (xy 52.85046 72.897644) (xy 52.921276 72.892575) (xy 52.98359 72.926596) (xy 53.017619 72.988906) (xy 53.0205 73.015695) (xy 53.0205 73.086743) (xy 53.031112 73.190625) (xy 53.086885 73.358938) (xy 53.17997 73.509852) (xy 53.179975 73.509858) (xy 53.305345 73.635228) (xy 53.30845 73.637683) (xy 53.310027 73.63991) (xy 53.310537 73.64042) (xy 53.310449 73.640507) (xy 53.349481 73.695622) (xy 53.352673 73.766547) (xy 53.317014 73.827939) (xy 53.308454 73.835357) (xy 53.305654 73.83757) (xy 53.18037 73.962854) (xy 53.180365 73.96286) (xy 53.087342 74.113674) (xy 53.031606 74.281878) (xy 53.031605 74.281881) (xy 53.021 74.385683) (xy 53.021 74.5072) (xy 55.437 74.5072) (xy 55.437 74.385683) (xy 55.426394 74.281881) (xy 55.426393 74.281878) (xy 55.370657 74.113674) (xy 55.277634 73.96286) (xy 55.277629 73.962854) (xy 55.152344 73.837569) (xy 55.149551 73.835361) (xy 55.148131 73.833356) (xy 55.14715 73.832375) (xy 55.147317 73.832207) (xy 55.108519 73.777422) (xy 55.105325 73.706498) (xy 55.140983 73.645105) (xy 55.149554 73.637678) (xy 55.152639 73.635237) (xy 55.152652 73.63523) (xy 55.27803 73.509852) (xy 55.371115 73.358938) (xy 55.426887 73.190626) (xy 55.4375 73.086745) (xy 55.437499 72.335656) (xy 55.426887 72.231774) (xy 55.371115 72.063462) (xy 55.27803 71.912548) (xy 55.278029 71.912547) (xy 55.278024 71.912541) (xy 55.152658 71.787175) (xy 55.152652 71.78717) (xy 55.116462 71.764848) (xy 55.075315 71.739467) (xy 55.027838 71.686683) (xy 55.016435 71.616608) (xy 55.034221 71.566083) (xy 55.118209 71.42992) (xy 55.173062 71.264381) (xy 55.1835 71.162213) (xy 55.183499 70.562788) (xy 55.173062 70.460619) (xy 55.118209 70.29508) (xy 55.026658 70.146654) (xy 55.026657 70.146653) (xy 55.026652 70.146647) (xy 54.9191 70.039095) (xy 54.885074 69.976783) (xy 54.890139 69.905968) (xy 54.9191 69.860905) (xy 55.026652 69.753352) (xy 55.026658 69.753346) (xy 55.118209 69.60492) (xy 55.173062 69.439381) (xy 55.1835 69.337213) (xy 55.183499 69.144204) (xy 55.203501 69.076086) (xy 55.257156 69.029593) (xy 55.32743 69.019488) (xy 55.392011 69.048981) (xy 55.416739 69.078058) (xy 55.473164 69.169537) (xy 55.473171 69.169545) (xy 55.598454 69.294828) (xy 55.59846 69.294833) (xy 55.749274 69.387857) (xy 55.917478 69.443593) (xy 55.917482 69.443594) (xy 56.021284 69.454199) (xy 56.3178 69.454199) (xy 56.8258 69.454199) (xy 57.122307 69.454199) (xy 57.226118 69.443594) (xy 57.394325 69.387857) (xy 57.545139 69.294833) (xy 57.545145 69.294828) (xy 57.670428 69.169545) (xy 57.670433 69.169539) (xy 57.763457 69.018725) (xy 57.819193 68.850521) (xy 57.819194 68.850518) (xy 57.829799 68.746715) (xy 57.8298 68.746715) (xy 57.8298 68.0252) (xy 56.8258 68.0252) (xy 56.8258 69.454199) (xy 56.3178 69.454199) (xy 56.3178 68.0252) (xy 55.313801 68.0252) (xy 55.313801 68.342895) (xy 55.293799 68.411016) (xy 55.240143 68.457509) (xy 55.169869 68.467613) (xy 55.105289 68.438119) (xy 55.080561 68.409043) (xy 55.026659 68.321655) (xy 55.026652 68.321647) (xy 54.903352 68.198347) (xy 54.903346 68.198342) (xy 54.787132 68.12666) (xy 54.75492 68.106791) (xy 54.589381 68.051938) (xy 54.589379 68.051937) (xy 54.589377 68.051937) (xy 54.487221 68.0415) (xy 53.912787 68.0415) (xy 53.810619 68.051937) (xy 53.645079 68.106791) (xy 53.496653 68.198342) (xy 53.496647 68.198347) (xy 53.373347 68.321647) (xy 53.373342 68.321653) (xy 53.28179 68.470081) (xy 53.280305 68.474565) (xy 53.23989 68.532936) (xy 53.174333 68.56019) (xy 53.104448 68.547676) (xy 53.052423 68.499365) (xy 53.034701 68.43493) (xy 53.034701 68.217482) (xy 53.033285 68.208539) (xy 52.997557 67.982959) (xy 52.924182 67.757137) (xy 52.903556 67.716656) (xy 52.899175 67.708057) (xy 52.899175 67.708058) (xy 52.816385 67.545573) (xy 52.67682 67.353478) (xy 52.676817 67.353475) (xy 52.676815 67.353472) (xy 52.505776 67.182433) (xy 52.505745 67.182404) (xy 52.119025 66.795684) (xy 55.3138 66.795684) (xy 55.3138 67.5172) (xy 56.3178 67.5172) (xy 56.8258 67.5172) (xy 57.829799 67.5172) (xy 57.829799 66.795692) (xy 57.819194 66.691881) (xy 57.763457 66.523674) (xy 57.670433 66.37286) (xy 57.670428 66.372854) (xy 57.545145 66.247571) (xy 57.545139 66.247566) (xy 57.394325 66.154542) (xy 57.226121 66.098806) (xy 57.226118 66.098805) (xy 57.122315 66.0882) (xy 56.8258 66.0882) (xy 56.8258 67.5172) (xy 56.3178 67.5172) (xy 56.3178 66.0882) (xy 56.021292 66.0882) (xy 55.917481 66.098805) (xy 55.749274 66.154542) (xy 55.59846 66.247566) (xy 55.598454 66.247571) (xy 55.473171 66.372854) (xy 55.473166 66.37286) (xy 55.380142 66.523674) (xy 55.324406 66.691878) (xy 55.324405 66.691881) (xy 55.3138 66.795684) (xy 52.119025 66.795684) (xy 52.04139 66.718049) (xy 52.007364 66.655737) (xy 52.006036 66.60925) (xy 52.033901 66.433322) (xy 52.033901 66.195878) (xy 52.033901 66.191421) (xy 52.0339 66.191391) (xy 52.0339 61.442622) (xy 52.040295 61.40299) (xy 52.047641 61.380821) (xy 52.073287 61.303425) (xy 52.076885 61.268208) (xy 52.0839 61.199552) (xy 52.0839 56.148447) (xy 52.073287 56.044578) (xy 52.073287 56.044575) (xy 52.017515 55.876262) (xy 51.92443 55.725349) (xy 51.924429 55.725348) (xy 51.924424 55.725342) (xy 51.799057 55.599975) (xy 51.799051 55.59997) (xy 51.739185 55.563044) (xy 51.648138 55.506885) (xy 51.479825 55.451113) (xy 51.479823 55.451112) (xy 51.479821 55.451112) (xy 51.375952 55.4405) (xy 51.375944 55.4405) (xy 49.674856 55.4405) (xy 49.674848 55.4405) (xy 49.570978 55.451112) (xy 49.402662 55.506885) (xy 49.40266 55.506886) (xy 49.251748 55.59997) (xy 49.251742 55.599975) (xy 49.126375 55.725342) (xy 49.12637 55.725348) (xy 49.033286 55.87626) (xy 49.033285 55.876262) (xy 48.977512 56.044578) (xy 48.9669 56.148447) (xy 48.9669 61.199552) (xy 48.966899 61.199552) (xy 48.977512 61.303421) (xy 48.977512 61.303423) (xy 48.977513 61.303425) (xy 48.994037 61.353293) (xy 49.010505 61.40299) (xy 49.0169 61.442622) (xy 49.0169 65.637568) (xy 48.996898 65.705689) (xy 48.979995 65.726663) (xy 48.006884 66.699773) (xy 48.006881 66.699776) (xy 47.867317 66.891869) (xy 47.759519 67.103435) (xy 47.759516 67.103441) (xy 47.686145 67.329254) (xy 47.686144 67.329257) (xy 47.686144 67.329259) (xy 47.648999 67.563778) (xy 47.648999 67.801222) (xy 47.686144 68.035741) (xy 47.686145 68.035745) (xy 47.757399 68.255043) (xy 47.759518 68.261563) (xy 47.865763 68.470081) (xy 47.867317 68.47313) (xy 48.006881 68.665223) (xy 48.174773 68.833115) (xy 48.174776 68.833117) (xy 48.174779 68.83312) (xy 48.274517 68.905584) (xy 48.317871 68.961806) (xy 48.326214 69.015326) (xy 48.324695 69.039785) (xy 49.024077 69.739166) (xy 48.934506 69.763167) (xy 48.831894 69.82241) (xy 48.74811 69.906194) (xy 48.688867 70.008806) (xy 48.664866 70.098375) (xy 47.967059 69.400568) (xy 47.967058 69.400569) (xy 47.887723 69.522) (xy 47.887719 69.522008) (xy 47.795651 69.731903) (xy 47.739388 69.95408) (xy 47.72046 70.1825) (xy 47.739388 70.410919) (xy 47.795651 70.633096) (xy 47.887719 70.84299) (xy 47.967059 70.964429) (xy 48.664866 70.266622) (xy 48.688867 70.356194) (xy 48.74811 70.458806) (xy 48.831894 70.54259) (xy 48.934506 70.601833) (xy 49.024074 70.625833) (xy 48.324695 71.325212) (xy 48.334789 71.333069) (xy 48.376259 71.390695) (xy 48.379991 71.461593) (xy 48.3448 71.523254) (xy 48.334789 71.531929) (xy 48.324696 71.539784) (xy 48.324696 71.539786) (xy 49.024077 72.239166) (xy 48.934506 72.263167) (xy 48.831894 72.32241) (xy 48.74811 72.406194) (xy 48.688867 72.508806) (xy 48.664866 72.598376) (xy 47.967059 71.900568) (xy 47.967058 71.900569) (xy 47.887723 72.022) (xy 47.887719 72.022008) (xy 47.795651 72.231903) (xy 47.739388 72.45408) (xy 47.72046 72.6825) (xy 47.739388 72.910919) (xy 47.795651 73.133096) (xy 47.887717 73.342987) (xy 47.887721 73.342993) (xy 48.013075 73.534864) (xy 48.038665 73.562662) (xy 48.070086 73.626327) (xy 48.0621 73.696873) (xy 48.017241 73.751902) (xy 47.949752 73.773943) (xy 47.945964 73.774) (xy 47.315349 73.774) (xy 47.096376 73.808682) (xy 47.09637 73.808683) (xy 46.885528 73.87719) (xy 46.885522 73.877193) (xy 46.687981 73.977845) (xy 46.508621 74.108158) (xy 46.351858 74.264921) (xy 46.221545 74.444281) (xy 46.120893 74.641822) (xy 46.12089 74.641828) (xy 46.052383 74.85267) (xy 46.052382 74.852675) (xy 46.052382 74.852676) (xy 46.0177 75.071649) (xy 38.0005 75.071649) (xy 38.0005 69.171691) (xy 44.3182 69.171691) (xy 44.3182 70.1285) (xy 45.3262 70.1285) (xy 45.3262 70.6365) (xy 44.3182 70.6365) (xy 44.3182 71.593308) (xy 44.35287 71.81221) (xy 44.421355 72.022983) (xy 44.421356 72.022985) (xy 44.521972 72.220456) (xy 44.652239 72.399753) (xy 44.808946 72.55646) (xy 44.988243 72.686727) (xy 45.185714 72.787343) (xy 45.185716 72.787344) (xy 45.396489 72.855829) (xy 45.4722 72.86782) (xy 45.4722 71.794186) (xy 45.480594 71.80258) (xy 45.571806 71.855241) (xy 45.673539 71.8825) (xy 45.778861 71.8825) (xy 45.880594 71.855241) (xy 45.971806 71.80258) (xy 45.9802 71.794186) (xy 45.9802 72.86782) (xy 46.055909 72.855829) (xy 46.055911 72.855829) (xy 46.266683 72.787344) (xy 46.266685 72.787343) (xy 46.464156 72.686727) (xy 46.643453 72.55646) (xy 46.80016 72.399753) (xy 46.930427 72.220456) (xy 47.031043 72.022985) (xy 47.031044 72.022983) (xy 47.099529 71.81221) (xy 47.1342 71.593308) (xy 47.1342 70.6365) (xy 46.1262 70.6365) (xy 46.1262 70.1285) (xy 47.1342 70.1285) (xy 47.1342 69.171691) (xy 47.099529 68.952789) (xy 47.031044 68.742016) (xy 47.031043 68.742014) (xy 46.930427 68.544543) (xy 46.80016 68.365246) (xy 46.643453 68.208539) (xy 46.464156 68.078272) (xy 46.266685 67.977656) (xy 46.266683 67.977655) (xy 46.055909 67.909169) (xy 45.9802 67.897178) (xy 45.9802 68.970814) (xy 45.971806 68.96242) (xy 45.880594 68.909759) (xy 45.778861 68.8825) (xy 45.673539 68.8825) (xy 45.571806 68.909759) (xy 45.480594 68.96242) (xy 45.4722 68.970814) (xy 45.4722 67.897178) (xy 45.39649 67.909169) (xy 45.185716 67.977655) (xy 45.185714 67.977656) (xy 44.988243 68.078272) (xy 44.808946 68.208539) (xy 44.652239 68.365246) (xy 44.521972 68.544543) (xy 44.421356 68.742014) (xy 44.421355 68.742016) (xy 44.35287 68.952789) (xy 44.3182 69.171691) (xy 38.0005 69.171691) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.012308 58.729542) (xy 38.017382 58.613336) (xy 38.01834 58.602388) (xy 38.032733 58.493062) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.078296 58.1761) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.162792 57.806978) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.285347 57.428502) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.930287 56.267938) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.31466 55.822424) (xy 39.322429 55.814656) (xy 39.388766 55.75387) (xy 39.603718 55.556901) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 114.934108 54.5005) (xy 114.997252 54.5005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.804 116.188) (xy 83.448585 116.188) (xy 83.448597 116.187999) (xy 83.509093 116.181494) (xy 83.645964 116.130444) (xy 83.645966 116.130443) (xy 83.744072 116.057001) (xy 83.810592 116.032189) (xy 83.879966 116.04728) (xy 83.895091 116.057) (xy 83.993792 116.130887) (xy 83.993794 116.130888) (xy 83.993796 116.130889) (xy 84.052875 116.152924) (xy 84.130795 116.181988) (xy 84.130803 116.18199) (xy 84.19135 116.188499) (xy 84.191355 116.188499) (xy 84.191362 116.1885) (xy 84.191368 116.1885) (xy 85.94836 116.1885) (xy 86.016481 116.208502) (xy 86.062974 116.262158) (xy 86.073078 116.332432) (xy 86.043584 116.397012) (xy 86.037455 116.403595) (xy 84.671656 117.769395) (xy 84.609344 117.80342) (xy 84.582561 117.8063) (xy 64.455089 117.8063) (xy 64.387162 117.824501) (xy 64.300329 117.847767) (xy 64.300322 117.84777) (xy 64.161575 117.927876) (xy 64.161565 117.927884) (xy 62.463083 119.626366) (xy 62.463075 119.626376) (xy 62.382969 119.765122) (xy 62.382968 119.765127) (xy 62.368996 119.817273) (xy 62.343233 119.913424) (xy 62.340637 119.923111) (xy 62.303685 119.983734) (xy 62.239825 120.014755) (xy 62.21893 120.0165) (xy 61.737228 120.0165) (xy 61.669107 119.996498) (xy 61.622614 119.942842) (xy 61.611659 119.900907) (xy 61.609564 119.875631) (xy 61.609563 119.875628) (xy 61.554297 119.657387) (xy 61.554296 119.657386) (xy 61.554296 119.657384) (xy 61.46386 119.451209) (xy 61.408844 119.367) (xy 61.340724 119.262734) (xy 61.34072 119.262729) (xy 61.206605 119.117044) (xy 61.18824 119.097094) (xy 61.188239 119.097093) (xy 61.188237 119.097091) (xy 61.097129 119.026179) (xy 61.010576 118.958811) (xy 60.812574 118.851658) (xy 60.812572 118.851657) (xy 60.812571 118.851656) (xy 60.599639 118.778557) (xy 60.59963 118.778555) (xy 60.555476 118.771187) (xy 60.377569 118.7415) (xy 60.152431 118.7415) (xy 60.004211 118.766233) (xy 59.930369 118.778555) (xy 59.93036 118.778557) (xy 59.717428 118.851656) (xy 59.717426 118.851658) (xy 59.519426 118.95881) (xy 59.519424 118.958811) (xy 59.341762 119.097091) (xy 59.280754 119.163363) (xy 59.219901 119.199933) (xy 59.148936 119.197798) (xy 59.090391 119.157636) (xy 59.069999 119.122057) (xy 59.036378 119.031918) (xy 59.025889 119.003796) (xy 59.025888 119.003794) (xy 59.025887 119.003792) (xy 58.938261 118.886738) (xy 58.821207 118.799112) (xy 58.821202 118.79911) (xy 58.684204 118.748011) (xy 58.684196 118.748009) (xy 58.623649 118.7415) (xy 58.623638 118.7415) (xy 56.826362 118.7415) (xy 56.82635 118.7415) (xy 56.765803 118.748009) (xy 56.765795 118.748011) (xy 56.628797 118.79911) (xy 56.628792 118.799112) (xy 56.511738 118.886738) (xy 56.424112 119.003792) (xy 56.42411 119.003797) (xy 56.373011 119.140795) (xy 56.373009 119.140803) (xy 56.3665 119.20135) (xy 56.3665 120.998649) (xy 56.373009 121.059196) (xy 56.373011 121.059204) (xy 56.42411 121.196202) (xy 56.424112 121.196207) (xy 56.511738 121.313261) (xy 56.628792 121.400887) (xy 56.628794 121.400888) (xy 56.628796 121.400889) (xy 56.681881 121.420689) (xy 56.765795 121.451988) (xy 56.765803 121.45199) (xy 56.82635 121.458499) (xy 56.826355 121.458499) (xy 56.826362 121.4585) (xy 57.5905 121.4585) (xy 57.658621 121.478502) (xy 57.705114 121.532158) (xy 57.7165 121.5845) (xy 57.7165 121.826305) (xy 57.696498 121.894426) (xy 57.679595 121.9154) (xy 57.598342 121.996653) (xy 57.506791 122.14508) (xy 57.451937 122.310622) (xy 57.4415 122.412778) (xy 57.4415 122.987212) (xy 57.451937 123.08938) (xy 57.506791 123.25492) (xy 57.598342 123.403346) (xy 57.598347 123.403352) (xy 57.721647 123.526652) (xy 57.721653 123.526657) (xy 57.721654 123.526658) (xy 57.87008 123.618209) (xy 58.035619 123.673062) (xy 58.137787 123.6835) (xy 58.737212 123.683499) (xy 58.839381 123.673062) (xy 59.00492 123.618209) (xy 59.153346 123.526658) (xy 59.184104 123.4959) (xy 59.260905 123.4191) (xy 59.323217 123.385074) (xy 59.394032 123.390139) (xy 59.439095 123.4191) (xy 59.546647 123.526652) (xy 59.546653 123.526657) (xy 59.546654 123.526658) (xy 59.69508 123.618209) (xy 59.860619 123.673062) (xy 59.962787 123.6835) (xy 60.0905 123.683499) (xy 60.15862 123.703501) (xy 60.205113 123.757156) (xy 60.2165 123.809499) (xy 60.2165 126.846204) (xy 60.196498 126.914325) (xy 60.179594 126.935301) (xy 60.156453 126.958441) (xy 60.09414 126.992465) (xy 60.025512 126.987555) (xy 60.025393 126.987923) (xy 60.023909 126.98744) (xy 60.023324 126.987399) (xy 60.021158 126.986546) (xy 60.020695 126.986396) (xy 60.020692 126.986395) (xy 59.782157 126.929128) (xy 59.5376 126.909881) (xy 59.293043 126.929128) (xy 59.054507 126.986395) (xy 58.978277 127.017971) (xy 58.876097 127.060296) (xy 58.827866 127.080274) (xy 58.618707 127.208445) (xy 58.432167 127.367767) (xy 58.272845 127.554307) (xy 58.158135 127.7415) (xy 58.144673 127.763468) (xy 58.139423 127.776142) (xy 58.050795 127.990107) (xy 57.993528 128.228643) (xy 57.974281 128.4732) (xy 57.993528 128.717759) (xy 58.020969 128.832064) (xy 58.017421 128.902972) (xy 57.987546 128.950571) (xy 57.634724 129.303395) (xy 57.572412 129.33742) (xy 57.545628 129.3403) (xy 57.460784 129.3403) (xy 57.392663 129.320298) (xy 57.34617 129.266642) (xy 57.336066 129.196368) (xy 57.34118 129.174667) (xy 57.347885 129.154432) (xy 57.347884 129.154432) (xy 57.347887 129.154426) (xy 57.3585 129.050545) (xy 57.358499 128.449456) (xy 57.347887 128.345574) (xy 57.292115 128.177262) (xy 57.19903 128.026348) (xy 57.199029 128.026347) (xy 57.199024 128.026341) (xy 57.073658 127.900975) (xy 57.073652 127.90097) (xy 57.063487 127.8947) (xy 56.922738 127.807885) (xy 56.826942 127.776142) (xy 56.754427 127.752113) (xy 56.75442 127.752112) (xy 56.650553 127.7415) (xy 56.049455 127.7415) (xy 55.945574 127.752112) (xy 55.777261 127.807885) (xy 55.626347 127.90097) (xy 55.626341 127.900975) (xy 55.500975 128.026341) (xy 55.50097 128.026347) (xy 55.407885 128.177262) (xy 55.352113 128.345572) (xy 55.352112 128.345579) (xy 55.3415 128.449446) (xy 55.3415 129.050544) (xy 55.352113 129.154426) (xy 55.401179 129.302501) (xy 55.403619 129.373455) (xy 55.36731 129.434465) (xy 55.351576 129.446898) (xy 55.257686 129.509633) (xy 55.25768 129.509638) (xy 54.162724 130.604595) (xy 54.100412 130.638621) (xy 54.073629 130.6415) (xy 53.6345 130.6415) (xy 53.566379 130.621498) (xy 53.519886 130.567842) (xy 53.5085 130.5155) (xy 53.5085 129.323489) (xy 53.508499 129.323488) (xy 53.505562 129.286171) (xy 53.505562 129.28617) (xy 53.499889 129.266642) (xy 53.459145 129.126399) (xy 53.459143 129.126397) (xy 53.459143 129.126394) (xy 53.374455 128.983196) (xy 53.37445 128.983189) (xy 53.345405 128.954144) (xy 53.311379 128.891832) (xy 53.3085 128.865049) (xy 53.3085 127.91989) (xy 53.303432 127.900975) (xy 53.267032 127.765128) (xy 53.246055 127.728794) (xy 53.211528 127.668992) (xy 53.186924 127.626376) (xy 53.186919 127.62637) (xy 52.97945 127.418901) (xy 52.760155 127.199606) (xy 52.726132 127.137296) (xy 52.731196 127.066481) (xy 52.742006 127.044376) (xy 52.792115 126.963138) (xy 52.847887 126.794826) (xy 52.8585 126.690945) (xy 52.8585 126.690916) (xy 53.342 126.690916) (xy 53.352605 126.794718) (xy 53.352606 126.794721) (xy 53.408342 126.962925) (xy 53.501365 127.113739) (xy 53.50137 127.113745) (xy 53.626654 127.239029) (xy 53.62666 127.239034) (xy 53.777474 127.332057) (xy 53.945678 127.387793) (xy 53.945681 127.387794) (xy 54.049483 127.398399) (xy 54.049483 127.3984) (xy 54.096 127.3984) (xy 54.096 126.6444) (xy 54.604 126.6444) (xy 54.604 127.3984) (xy 54.650517 127.3984) (xy 54.650516 127.398399) (xy 54.754318 127.387794) (xy 54.754321 127.387793) (xy 54.922525 127.332057) (xy 55.073339 127.239034) (xy 55.073345 127.239029) (xy 55.198629 127.113745) (xy 55.198636 127.113736) (xy 55.286058 126.972002) (xy 55.338843 126.924523) (xy 55.408918 126.91312) (xy 55.474034 126.941412) (xy 55.496754 126.967632) (xy 55.496815 126.967584) (xy 55.497883 126.968935) (xy 55.500539 126.972) (xy 55.501363 126.973336) (xy 55.50137 126.973345) (xy 55.626654 127.098629) (xy 55.62666 127.098634) (xy 55.777474 127.191657) (xy 55.945678 127.247393) (xy 55.945681 127.247394) (xy 56.049483 127.257999) (xy 56.049483 127.258) (xy 56.096 127.258) (xy 56.604 127.258) (xy 56.650517 127.258) (xy 56.650516 127.257999) (xy 56.754318 127.247394) (xy 56.754321 127.247393) (xy 56.922525 127.191657) (xy 57.073339 127.098634) (xy 57.073345 127.098629) (xy 57.198629 126.973345) (xy 57.198634 126.973339) (xy 57.291657 126.822525) (xy 57.347393 126.654321) (xy 57.347394 126.654318) (xy 57.357999 126.550516) (xy 57.358 126.550516) (xy 57.358 126.504) (xy 56.604 126.504) (xy 56.604 127.258) (xy 56.096 127.258) (xy 56.096 126.504) (xy 55.401 126.504) (xy 55.401 126.5184) (xy 55.380998 126.586521) (xy 55.327342 126.633014) (xy 55.275 126.6444) (xy 54.604 126.6444) (xy 54.096 126.6444) (xy 53.342 126.6444) (xy 53.342 126.690916) (xy 52.8585 126.690916) (xy 52.858499 126.089883) (xy 53.342 126.089883) (xy 53.342 126.1364) (xy 54.096 126.1364) (xy 54.096 125.3824) (xy 54.604 125.3824) (xy 54.604 126.1364) (xy 55.299 126.1364) (xy 55.299 126.122) (xy 55.319002 126.053879) (xy 55.372658 126.007386) (xy 55.425 125.996) (xy 56.096 125.996) (xy 56.604 125.996) (xy 57.358 125.996) (xy 57.358 125.949483) (xy 57.347394 125.845681) (xy 57.347393 125.845678) (xy 57.291657 125.677474) (xy 57.198634 125.52666) (xy 57.198629 125.526654) (xy 57.073345 125.40137) (xy 57.073339 125.401365) (xy 56.922525 125.308342) (xy 56.754321 125.252606) (xy 56.754318 125.252605) (xy 56.650516 125.242) (xy 56.604 125.242) (xy 56.604 125.996) (xy 56.096 125.996) (xy 56.096 125.242) (xy 56.049483 125.242) (xy 55.945681 125.252605) (xy 55.945678 125.252606) (xy 55.777474 125.308342) (xy 55.62666 125.401365) (xy 55.626654 125.40137) (xy 55.50137 125.526654) (xy 55.501365 125.52666) (xy 55.413941 125.668398) (xy 55.361155 125.715876) (xy 55.29108 125.727279) (xy 55.225964 125.698987) (xy 55.203246 125.672767) (xy 55.203185 125.672816) (xy 55.202104 125.671449) (xy 55.199458 125.668395) (xy 55.198637 125.667064) (xy 55.198629 125.667054) (xy 55.073345 125.54177) (xy 55.073339 125.541765) (xy 54.922525 125.448742) (xy 54.754321 125.393006) (xy 54.754318 125.393005) (xy 54.650516 125.3824) (xy 54.604 125.3824) (xy 54.096 125.3824) (xy 54.049483 125.3824) (xy 53.945681 125.393005) (xy 53.945678 125.393006) (xy 53.777474 125.448742) (xy 53.62666 125.541765) (xy 53.626654 125.54177) (xy 53.50137 125.667054) (xy 53.501365 125.66706) (xy 53.408342 125.817874) (xy 53.352606 125.986078) (xy 53.352605 125.986081) (xy 53.342 126.089883) (xy 52.858499 126.089883) (xy 52.858499 126.089856) (xy 52.852271 126.028894) (xy 52.847887 125.985974) (xy 52.830024 125.932066) (xy 52.792115 125.817662) (xy 52.69903 125.666748) (xy 52.699029 125.666747) (xy 52.699024 125.666741) (xy 52.573658 125.541375) (xy 52.567897 125.53682) (xy 52.569149 125.535235) (xy 52.528456 125.489985) (xy 52.517058 125.419909) (xy 52.545356 125.354796) (xy 52.552968 125.346466) (xy 52.804521 125.094914) (xy 52.884632 124.956159) (xy 52.919757 124.825068) (xy 52.9261 124.801397) (xy 52.9261 119.271803) (xy 52.884632 119.117042) (xy 52.862744 119.079131) (xy 52.819247 119.003792) (xy 52.804524 118.97829) (xy 52.804516 118.97828) (xy 50.22983 116.403595) (xy 50.195805 116.341283) (xy 50.200869 116.270468) (xy 50.243416 116.213632) (xy 50.309936 116.188821) (xy 50.318925 116.1885) (xy 50.428632 116.1885) (xy 50.428638 116.1885) (xy 50.428645 116.188499) (xy 50.428649 116.188499) (xy 50.489196 116.18199) (xy 50.489199 116.181989) (xy 50.489201 116.181989) (xy 50.626204 116.130889) (xy 50.724492 116.057311) (xy 50.791011 116.032501) (xy 50.860385 116.047592) (xy 50.875502 116.057306) (xy 50.945754 116.109897) (xy 50.973796 116.130889) (xy 51.110795 116.181988) (xy 51.110803 116.18199) (xy 51.17135 116.188499) (xy 51.171355 116.188499) (xy 51.171362 116.1885) (xy 51.171368 116.1885) (xy 52.968632 116.1885) (xy 52.968638 116.1885) (xy 52.968645 116.188499) (xy 52.968649 116.188499) (xy 53.029196 116.18199) (xy 53.029199 116.181989) (xy 53.029201 116.181989) (xy 53.166204 116.130889) (xy 53.264492 116.057311) (xy 53.331011 116.032501) (xy 53.400385 116.047592) (xy 53.415502 116.057306) (xy 53.485754 116.109897) (xy 53.513796 116.130889) (xy 53.650795 116.181988) (xy 53.650803 116.18199) (xy 53.71135 116.188499) (xy 53.711355 116.188499) (xy 53.711362 116.1885) (xy 53.711368 116.1885) (xy 55.508632 116.1885) (xy 55.508638 116.1885) (xy 55.508645 116.188499) (xy 55.508649 116.188499) (xy 55.569196 116.18199) (xy 55.569199 116.181989) (xy 55.569201 116.181989) (xy 55.706204 116.130889) (xy 55.804907 116.057) (xy 55.871426 116.032189) (xy 55.9408 116.04728) (xy 55.955925 116.057) (xy 56.054034 116.130444) (xy 56.190906 116.181494) (xy 56.251402 116.187999) (xy 56.251415 116.188) (xy 56.896 116.188) (xy 56.896 113.47225) (xy 56.953147 113.505245) (xy 57.082857 113.54) (xy 57.217143 113.54) (xy 57.346853 113.505245) (xy 57.404 113.47225) (xy 57.404 116.188) (xy 58.048585 116.188) (xy 58.048597 116.187999) (xy 58.109093 116.181494) (xy 58.245964 116.130444) (xy 58.245966 116.130443) (xy 58.344072 116.057001) (xy 58.410592 116.032189) (xy 58.479966 116.04728) (xy 58.495091 116.057) (xy 58.593792 116.130887) (xy 58.593794 116.130888) (xy 58.593796 116.130889) (xy 58.652875 116.152924) (xy 58.730795 116.181988) (xy 58.730803 116.18199) (xy 58.79135 116.188499) (xy 58.791355 116.188499) (xy 58.791362 116.1885) (xy 58.791368 116.1885) (xy 60.588632 116.1885) (xy 60.588638 116.1885) (xy 60.588645 116.188499) (xy 60.588649 116.188499) (xy 60.649196 116.18199) (xy 60.649199 116.181989) (xy 60.649201 116.181989) (xy 60.786204 116.130889) (xy 60.884492 116.057311) (xy 60.951011 116.032501) (xy 61.020385 116.047592) (xy 61.035502 116.057306) (xy 61.105754 116.109897) (xy 61.133796 116.130889) (xy 61.270795 116.181988) (xy 61.270803 116.18199) (xy 61.33135 116.188499) (xy 61.331355 116.188499) (xy 61.331362 116.1885) (xy 61.331368 116.1885) (xy 63.128632 116.1885) (xy 63.128638 116.1885) (xy 63.128645 116.188499) (xy 63.128649 116.188499) (xy 63.189196 116.18199) (xy 63.189199 116.181989) (xy 63.189201 116.181989) (xy 63.326204 116.130889) (xy 63.424492 116.057311) (xy 63.491011 116.032501) (xy 63.560385 116.047592) (xy 63.575502 116.057306) (xy 63.645754 116.109897) (xy 63.673796 116.130889) (xy 63.810795 116.181988) (xy 63.810803 116.18199) (xy 63.87135 116.188499) (xy 63.871355 116.188499) (xy 63.871362 116.1885) (xy 63.871368 116.1885) (xy 65.668632 116.1885) (xy 65.668638 116.1885) (xy 65.668645 116.188499) (xy 65.668649 116.188499) (xy 65.729196 116.18199) (xy 65.729199 116.181989) (xy 65.729201 116.181989) (xy 65.866204 116.130889) (xy 65.964492 116.057311) (xy 66.031011 116.032501) (xy 66.100385 116.047592) (xy 66.115502 116.057306) (xy 66.185754 116.109897) (xy 66.213796 116.130889) (xy 66.350795 116.181988) (xy 66.350803 116.18199) (xy 66.41135 116.188499) (xy 66.411355 116.188499) (xy 66.411362 116.1885) (xy 66.411368 116.1885) (xy 68.208632 116.1885) (xy 68.208638 116.1885) (xy 68.208645 116.188499) (xy 68.208649 116.188499) (xy 68.269196 116.18199) (xy 68.269199 116.181989) (xy 68.269201 116.181989) (xy 68.406204 116.130889) (xy 68.504907 116.057) (xy 68.571426 116.032189) (xy 68.6408 116.04728) (xy 68.655925 116.057) (xy 68.754034 116.130444) (xy 68.890906 116.181494) (xy 68.951402 116.187999) (xy 68.951415 116.188) (xy 69.596 116.188) (xy 69.596 113.47225) (xy 69.653147 113.505245) (xy 69.782857 113.54) (xy 69.917143 113.54) (xy 70.046853 113.505245) (xy 70.104 113.47225) (xy 70.104 116.188) (xy 70.748585 116.188) (xy 70.748597 116.187999) (xy 70.809093 116.181494) (xy 70.945964 116.130444) (xy 70.945966 116.130443) (xy 71.044072 116.057001) (xy 71.110592 116.032189) (xy 71.179966 116.04728) (xy 71.195091 116.057) (xy 71.293792 116.130887) (xy 71.293794 116.130888) (xy 71.293796 116.130889) (xy 71.352875 116.152924) (xy 71.430795 116.181988) (xy 71.430803 116.18199) (xy 71.49135 116.188499) (xy 71.491355 116.188499) (xy 71.491362 116.1885) (xy 71.491368 116.1885) (xy 73.288632 116.1885) (xy 73.288638 116.1885) (xy 73.288645 116.188499) (xy 73.288649 116.188499) (xy 73.349196 116.18199) (xy 73.349199 116.181989) (xy 73.349201 116.181989) (xy 73.486204 116.130889) (xy 73.584492 116.057311) (xy 73.651011 116.032501) (xy 73.720385 116.047592) (xy 73.735502 116.057306) (xy 73.805754 116.109897) (xy 73.833796 116.130889) (xy 73.970795 116.181988) (xy 73.970803 116.18199) (xy 74.03135 116.188499) (xy 74.031355 116.188499) (xy 74.031362 116.1885) (xy 74.031368 116.1885) (xy 75.828632 116.1885) (xy 75.828638 116.1885) (xy 75.828645 116.188499) (xy 75.828649 116.188499) (xy 75.889196 116.18199) (xy 75.889199 116.181989) (xy 75.889201 116.181989) (xy 76.026204 116.130889) (xy 76.124492 116.057311) (xy 76.191011 116.032501) (xy 76.260385 116.047592) (xy 76.275502 116.057306) (xy 76.345754 116.109897) (xy 76.373796 116.130889) (xy 76.510795 116.181988) (xy 76.510803 116.18199) (xy 76.57135 116.188499) (xy 76.571355 116.188499) (xy 76.571362 116.1885) (xy 76.571368 116.1885) (xy 78.368632 116.1885) (xy 78.368638 116.1885) (xy 78.368645 116.188499) (xy 78.368649 116.188499) (xy 78.429196 116.18199) (xy 78.429199 116.181989) (xy 78.429201 116.181989) (xy 78.566204 116.130889) (xy 78.664492 116.057311) (xy 78.731011 116.032501) (xy 78.800385 116.047592) (xy 78.815502 116.057306) (xy 78.885754 116.109897) (xy 78.913796 116.130889) (xy 79.050795 116.181988) (xy 79.050803 116.18199) (xy 79.11135 116.188499) (xy 79.111355 116.188499) (xy 79.111362 116.1885) (xy 79.111368 116.1885) (xy 80.908632 116.1885) (xy 80.908638 116.1885) (xy 80.908645 116.188499) (xy 80.908649 116.188499) (xy 80.969196 116.18199) (xy 80.969199 116.181989) (xy 80.969201 116.181989) (xy 81.106204 116.130889) (xy 81.204907 116.057) (xy 81.271426 116.032189) (xy 81.3408 116.04728) (xy 81.355925 116.057) (xy 81.454034 116.130444) (xy 81.590906 116.181494) (xy 81.651402 116.187999) (xy 81.651415 116.188) (xy 82.296 116.188) (xy 82.296 113.47225) (xy 82.353147 113.505245) (xy 82.482857 113.54) (xy 82.617143 113.54) (xy 82.746853 113.505245) (xy 82.804 113.47225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 107.728432 105.193881) (xy 107.785268 105.236428) (xy 107.810079 105.302948) (xy 107.8104 105.311937) (xy 107.8104 108.062944) (xy 107.821012 108.166825) (xy 107.876785 108.335138) (xy 107.96987 108.486052) (xy 107.969875 108.486058) (xy 108.095241 108.611424) (xy 108.095247 108.611429) (xy 108.095248 108.61143) (xy 108.246162 108.704515) (xy 108.414474 108.760287) (xy 108.518355 108.7709) (xy 108.673389 108.770899) (xy 108.74151 108.790901) (xy 108.762485 108.807804) (xy 108.993986 109.039305) (xy 109.028012 109.101617) (xy 109.022947 109.172432) (xy 108.9804 109.229268) (xy 108.91388 109.254079) (xy 108.904891 109.2544) (xy 108.518383 109.2544) (xy 108.414581 109.265005) (xy 108.414578 109.265006) (xy 108.246374 109.320742) (xy 108.09556 109.413765) (xy 108.095554 109.41377) (xy 107.97027 109.539054) (xy 107.970265 109.53906) (xy 107.877242 109.689874) (xy 107.821506 109.858078) (xy 107.821505 109.858081) (xy 107.8109 109.961883) (xy 107.8109 111.2584) (xy 110.6269 111.2584) (xy 110.6269 110.976409) (xy 110.646902 110.908288) (xy 110.700558 110.861795) (xy 110.770832 110.851691) (xy 110.835412 110.881185) (xy 110.841995 110.887314) (xy 111.546939 111.592258) (xy 111.687011 111.73233) (xy 111.774842 111.796143) (xy 111.818195 111.852366) (xy 111.82427 111.923102) (xy 111.791138 111.985894) (xy 111.789875 111.987174) (xy 110.841995 112.935054) (xy 110.779683 112.96908) (xy 110.708868 112.964015) (xy 110.652032 112.921468) (xy 110.627221 112.854948) (xy 110.6269 112.845959) (xy 110.6269 111.7664) (xy 107.8109 111.7664) (xy 107.8109 113.062916) (xy 107.821505 113.166718) (xy 107.821506 113.166725) (xy 107.841783 113.227916) (xy 107.844223 113.29887) (xy 107.807914 113.35988) (xy 107.761814 113.387151) (xy 107.739196 113.394646) (xy 107.590866 113.486137) (xy 107.59086 113.486142) (xy 107.467642 113.60936) (xy 107.467637 113.609366) (xy 107.376148 113.757692) (xy 107.321331 113.923123) (xy 107.32133 113.923126) (xy 107.3109 114.025215) (xy 107.3109 114.0584) (xy 108.4844 114.0584) (xy 108.552521 114.078402) (xy 108.599014 114.132058) (xy 108.6104 114.1844) (xy 108.6104 114.4404) (xy 108.590398 114.508521) (xy 108.536742 114.555014) (xy 108.4844 114.5664) (xy 107.310899 114.5664) (xy 107.310526 114.566772) (xy 107.290898 114.633621) (xy 107.237242 114.680114) (xy 107.1849 114.6915) (xy 106.643291 114.6915) (xy 106.57517 114.671498) (xy 106.528677 114.617842) (xy 106.518573 114.547568) (xy 106.523687 114.525867) (xy 106.547392 114.45433) (xy 106.547394 114.454318) (xy 106.557999 114.350516) (xy 106.558 114.350516) (xy 106.558 114.304) (xy 105.422 114.304) (xy 105.353879 114.283998) (xy 105.307386 114.230342) (xy 105.296 114.178) (xy 105.296 113.796) (xy 105.804 113.796) (xy 106.558 113.796) (xy 106.558 113.749483) (xy 106.547394 113.645681) (xy 106.547393 113.645678) (xy 106.491657 113.477474) (xy 106.398634 113.32666) (xy 106.398629 113.326654) (xy 106.273345 113.20137) (xy 106.273339 113.201365) (xy 106.122525 113.108342) (xy 105.954321 113.052606) (xy 105.954318 113.052605) (xy 105.850516 113.042) (xy 105.804 113.042) (xy 105.804 113.796) (xy 105.296 113.796) (xy 105.296 113.042) (xy 105.249483 113.042) (xy 105.145681 113.052605) (xy 105.145678 113.052606) (xy 104.977474 113.108342) (xy 104.82666 113.201365) (xy 104.826654 113.20137) (xy 104.70137 113.326654) (xy 104.701365 113.32666) (xy 104.60834 113.477478) (xy 104.580427 113.561716) (xy 104.540013 113.620087) (xy 104.474457 113.647343) (xy 104.404572 113.63483) (xy 104.371728 113.611178) (xy 104.323633 113.563083) (xy 104.323623 113.563075) (xy 104.184877 113.48297) (xy 104.184874 113.482969) (xy 104.184873 113.482968) (xy 104.184871 113.482967) (xy 104.18487 113.482967) (xy 104.107491 113.462234) (xy 104.030108 113.441499) (xy 104.02411 113.44071) (xy 103.959183 113.411987) (xy 103.933318 113.381937) (xy 103.89903 113.326348) (xy 103.899029 113.326347) (xy 103.899024 113.326341) (xy 103.773658 113.200975) (xy 103.773652 113.20097) (xy 103.718121 113.166718) (xy 103.622738 113.107885) (xy 103.538582 113.079999) (xy 103.454427 113.052113) (xy 103.45442 113.052112) (xy 103.350553 113.0415) (xy 102.749455 113.0415) (xy 102.645574 113.052112) (xy 102.477261 113.107885) (xy 102.326347 113.20097) (xy 102.326341 113.200975) (xy 102.200975 113.326341) (xy 102.20097 113.326347) (xy 102.129944 113.441499) (xy 102.107885 113.477262) (xy 102.052113 113.645574) (xy 102.048114 113.684709) (xy 102.021294 113.750441) (xy 101.96319 113.79124) (xy 101.922768 113.7979) (xy 101.809313 113.7979) (xy 101.622511 113.837606) (xy 101.448047 113.915282) (xy 101.293544 114.027535) (xy 101.165765 114.169448) (xy 101.165758 114.169458) (xy 101.070276 114.334838) (xy 101.070273 114.334845) (xy 101.011257 114.516472) (xy 100.991296 114.7064) (xy 101.011257 114.896327) (xy 101.03105 114.957241) (xy 101.070273 115.077956) (xy 101.070276 115.077961) (xy 101.12953 115.180593) (xy 101.146268 115.249589) (xy 101.123047 115.31668) (xy 101.109507 115.332688) (xy 101.067543 115.374651) (xy 101.067542 115.374653) (xy 100.975991 115.52308) (xy 100.921137 115.688622) (xy 100.9107 115.790778) (xy 100.9107 116.365212) (xy 100.921137 116.46738) (xy 100.975991 116.63292) (xy 101.067542 116.781346) (xy 101.067547 116.781352) (xy 101.190847 116.904652) (xy 101.190853 116.904657) (xy 101.190854 116.904658) (xy 101.33928 116.996209) (xy 101.504819 117.051062) (xy 101.606987 117.0615) (xy 102.206412 117.061499) (xy 102.308581 117.051062) (xy 102.47412 116.996209) (xy 102.622546 116.904658) (xy 102.669598 116.857606) (xy 102.730105 116.7971) (xy 102.792417 116.763074) (xy 102.863232 116.768139) (xy 102.908295 116.7971) (xy 103.015847 116.904652) (xy 103.015853 116.904657) (xy 103.015854 116.904658) (xy 103.16428 116.996209) (xy 103.329819 117.051062) (xy 103.431987 117.0615) (xy 104.031412 117.061499) (xy 104.133581 117.051062) (xy 104.29912 116.996209) (xy 104.447546 116.904658) (xy 104.570858 116.781346) (xy 104.662409 116.63292) (xy 104.717262 116.467381) (xy 104.7277 116.365213) (xy 104.727699 115.94819) (xy 104.747701 115.880071) (xy 104.801356 115.833577) (xy 104.87163 115.823473) (xy 104.916699 115.839072) (xy 104.965127 115.867032) (xy 105.042508 115.887766) (xy 105.119889 115.9085) (xy 105.11989 115.9085) (xy 105.28011 115.9085) (xy 106.365161 115.9085) (xy 106.433282 115.928502) (xy 106.479775 115.982158) (xy 106.489879 116.052432) (xy 106.460385 116.117012) (xy 106.45427 116.12358) (xy 105.008211 117.569639) (xy 104.528054 118.049796) (xy 104.465742 118.083821) (xy 104.438959 118.0867) (xy 104.042655 118.0867) (xy 103.938774 118.097312) (xy 103.770461 118.153085) (xy 103.619547 118.24617) (xy 103.619541 118.246175) (xy 103.494175 118.371541) (xy 103.494168 118.371549) (xy 103.46006 118.426848) (xy 103.407274 118.474325) (xy 103.35282 118.4867) (xy 101.518 118.4867) (xy 101.449879 118.466698) (xy 101.403386 118.413042) (xy 101.392 118.3607) (xy 101.392 118.237067) (xy 101.391999 118.23705) (xy 101.38549 118.176503) (xy 101.385488 118.176495) (xy 101.351995 118.0867) (xy 101.334389 118.039496) (xy 101.334388 118.039494) (xy 101.334387 118.039492) (xy 101.246761 117.922438) (xy 101.129707 117.834812) (xy 101.129702 117.83481) (xy 100.992704 117.783711) (xy 100.992696 117.783709) (xy 100.932149 117.7772) (xy 100.932138 117.7772) (xy 99.734862 117.7772) (xy 99.73485 117.7772) (xy 99.674303 117.783709) (xy 99.674295 117.783711) (xy 99.537297 117.83481) (xy 99.537292 117.834812) (xy 99.420236 117.92244) (xy 99.418864 117.924274) (xy 99.41703 117.925646) (xy 99.413866 117.928811) (xy 99.41341 117.928355) (xy 99.362026 117.966818) (xy 99.29121 117.971879) (xy 99.2289 117.937851) (xy 99.194878 117.875537) (xy 99.192 117.84876) (xy 99.192 117.287067) (xy 99.191999 117.28705) (xy 99.18549 117.226503) (xy 99.185488 117.226495) (xy 99.145489 117.119256) (xy 99.134389 117.089496) (xy 99.134388 117.089494) (xy 99.134387 117.089492) (xy 99.046761 116.972438) (xy 98.929707 116.884812) (xy 98.929702 116.88481) (xy 98.792704 116.833711) (xy 98.792696 116.833709) (xy 98.732149 116.8272) (xy 98.732138 116.8272) (xy 97.534862 116.8272) (xy 97.53485 116.8272) (xy 97.474303 116.833709) (xy 97.474295 116.833711) (xy 97.337297 116.88481) (xy 97.337292 116.884812) (xy 97.220238 116.972438) (xy 97.142183 117.076709) (xy 97.085347 117.119256) (xy 97.041315 117.1272) (xy 96.447177 117.1272) (xy 96.379056 117.107198) (xy 96.339937 117.067347) (xy 96.300961 117.004159) (xy 96.300958 117.004154) (xy 96.300955 117.004151) (xy 96.300952 117.004147) (xy 96.177652 116.880847) (xy 96.177646 116.880842) (xy 96.139975 116.857606) (xy 96.02922 116.789291) (xy 95.863681 116.734438) (xy 95.863679 116.734437) (xy 95.863677 116.734437) (xy 95.761521 116.724) (xy 95.187087 116.724) (xy 95.084919 116.734437) (xy 94.919379 116.789291) (xy 94.770953 116.880842) (xy 94.663394 116.988401) (xy 94.601082 117.022426) (xy 94.530266 117.01736) (xy 94.485199 116.988395) (xy 94.477968 116.981164) (xy 94.443948 116.91885) (xy 94.449017 116.848034) (xy 94.461933 116.823975) (xy 94.461738 116.823863) (xy 94.493922 116.768119) (xy 94.560527 116.652756) (xy 94.619542 116.471128) (xy 94.639504 116.2812) (xy 94.619542 116.091272) (xy 94.560527 115.909644) (xy 94.46504 115.744256) (xy 94.465038 115.744254) (xy 94.465034 115.744248) (xy 94.337255 115.602335) (xy 94.182752 115.490082) (xy 94.008288 115.412406) (xy 93.821487 115.3727) (xy 93.630513 115.3727) (xy 93.630509 115.3727) (xy 93.620694 115.374786) (xy 93.549904 115.369383) (xy 93.493272 115.326565) (xy 93.468779 115.259927) (xy 93.4685 115.251539) (xy 93.4685 110.414916) (xy 103.3352 110.414916) (xy 103.345805 110.518718) (xy 103.345806 110.518721) (xy 103.401542 110.686925) (xy 103.494565 110.837739) (xy 103.49457 110.837745) (xy 103.619854 110.963029) (xy 103.61986 110.963034) (xy 103.770674 111.056057) (xy 103.938878 111.111793) (xy 103.938881 111.111794) (xy 104.042683 111.122399) (xy 104.042683 111.1224) (xy 104.0892 111.1224) (xy 104.5972 111.1224) (xy 104.643717 111.1224) (xy 104.643716 111.122399) (xy 104.747518 111.111794) (xy 104.747521 111.111793) (xy 104.915725 111.056057) (xy 105.066539 110.963034) (xy 105.066545 110.963029) (xy 105.191829 110.837745) (xy 105.191834 110.837739) (xy 105.284857 110.686925) (xy 105.340593 110.518721) (xy 105.340594 110.518718) (xy 105.351199 110.414916) (xy 105.3512 110.414916) (xy 105.3512 110.3684) (xy 104.5972 110.3684) (xy 104.5972 111.1224) (xy 104.0892 111.1224) (xy 104.0892 110.3684) (xy 103.3352 110.3684) (xy 103.3352 110.414916) (xy 93.4685 110.414916) (xy 93.4685 109.813883) (xy 103.3352 109.813883) (xy 103.3352 109.8604) (xy 104.0892 109.8604) (xy 104.5972 109.8604) (xy 105.3512 109.8604) (xy 105.3512 109.813883) (xy 105.340594 109.710081) (xy 105.340593 109.710078) (xy 105.284857 109.541874) (xy 105.191834 109.39106) (xy 105.191829 109.391054) (xy 105.066545 109.26577) (xy 105.066539 109.265765) (xy 104.915725 109.172742) (xy 104.747521 109.117006) (xy 104.747518 109.117005) (xy 104.643716 109.1064) (xy 104.5972 109.1064) (xy 104.5972 109.8604) (xy 104.0892 109.8604) (xy 104.0892 109.1064) (xy 104.042683 109.1064) (xy 103.938881 109.117005) (xy 103.938878 109.117006) (xy 103.770674 109.172742) (xy 103.61986 109.265765) (xy 103.619854 109.26577) (xy 103.49457 109.391054) (xy 103.494565 109.39106) (xy 103.401542 109.541874) (xy 103.345806 109.710078) (xy 103.345805 109.710081) (xy 103.3352 109.813883) (xy 93.4685 109.813883) (xy 93.4685 109.527371) (xy 93.488502 109.45925) (xy 93.505405 109.438276) (xy 93.765777 109.177904) (xy 93.828089 109.143878) (xy 93.854872 109.140999) (xy 94.013212 109.140999) (xy 94.115381 109.130562) (xy 94.28092 109.075709) (xy 94.429346 108.984158) (xy 94.467743 108.945761) (xy 94.512259 108.901246) (xy 94.574571 108.86722) (xy 94.645386 108.872285) (xy 94.690449 108.901246) (xy 94.77296 108.983757) (xy 94.772966 108.983762) (xy 94.921292 109.075251) (xy 95.086723 109.130068) (xy 95.086726 109.130069) (xy 95.188815 109.140499) (xy 95.188815 109.1405) (xy 95.222 109.1405) (xy 95.73 109.1405) (xy 95.763185 109.1405) (xy 95.763184 109.140499) (xy 95.865273 109.130069) (xy 95.865276 109.130068) (xy 96.030707 109.075251) (xy 96.179033 108.983762) (xy 96.179039 108.983757) (xy 96.302257 108.860539) (xy 96.302262 108.860533) (xy 96.393751 108.712207) (xy 96.448568 108.546776) (xy 96.448569 108.546773) (xy 96.458999 108.444684) (xy 96.459 108.444684) (xy 96.459 108.349) (xy 95.73 108.349) (xy 95.73 109.1405) (xy 95.222 109.1405) (xy 95.222 107.967) (xy 95.242002 107.898879) (xy 95.295658 107.852386) (xy 95.348 107.841) (xy 96.459 107.841) (xy 96.459 107.745315) (xy 96.448569 107.643226) (xy 96.448568 107.643223) (xy 96.393751 107.477792) (xy 96.302262 107.329466) (xy 96.302257 107.32946) (xy 96.294745 107.321948) (xy 96.260719 107.259636) (xy 96.265784 107.188821) (xy 96.294747 107.143756) (xy 96.302658 107.135846) (xy 96.394209 106.98742) (xy 96.39516 106.984549) (xy 96.397542 106.977364) (xy 96.437957 106.918994) (xy 96.503514 106.891739) (xy 96.517145 106.891) (xy 97.033815 106.891) (xy 97.101936 106.911002) (xy 97.134683 106.941491) (xy 97.212738 107.045761) (xy 97.327448 107.131632) (xy 97.369995 107.188468) (xy 97.375059 107.259284) (xy 97.341034 107.321596) (xy 97.327448 107.333368) (xy 97.212738 107.419238) (xy 97.125112 107.536292) (xy 97.12511 107.536297) (xy 97.074011 107.673295) (xy 97.074009 107.673303) (xy 97.0675 107.73385) (xy 97.0675 108.631149) (xy 97.074009 108.691696) (xy 97.074011 108.691704) (xy 97.12511 108.828702) (xy 97.125112 108.828707) (xy 97.212738 108.945761) (xy 97.329792 109.033387) (xy 97.329794 109.033388) (xy 97.329796 109.033389) (xy 97.388875 109.055424) (xy 97.466795 109.084488) (xy 97.466803 109.08449) (xy 97.52735 109.090999) (xy 97.527355 109.090999) (xy 97.527362 109.091) (xy 97.527368 109.091) (xy 98.724632 109.091) (xy 98.724638 109.091) (xy 98.724645 109.090999) (xy 98.724649 109.090999) (xy 98.785196 109.08449) (xy 98.785199 109.084489) (xy 98.785201 109.084489) (xy 98.922204 109.033389) (xy 98.938888 109.0209) (xy 99.039261 108.945761) (xy 99.126887 108.828707) (xy 99.126887 108.828706) (xy 99.126889 108.828704) (xy 99.177989 108.691701) (xy 99.179518 108.677486) (xy 99.184499 108.631149) (xy 99.1845 108.631132) (xy 99.1845 108.069439) (xy 99.204502 108.001318) (xy 99.258158 107.954825) (xy 99.328432 107.944721) (xy 99.393012 107.974215) (xy 99.411368 107.99393) (xy 99.412738 107.995761) (xy 99.529792 108.083387) (xy 99.529794 108.083388) (xy 99.529796 108.083389) (xy 99.588875 108.105424) (xy 99.666795 108.134488) (xy 99.666803 108.13449) (xy 99.72735 108.140999) (xy 99.727355 108.140999) (xy 99.727362 108.141) (xy 100.369236 108.141) (xy 100.432235 108.15788) (xy 100.473027 108.181432) (xy 100.550408 108.202166) (xy 100.627789 108.2229) (xy 100.62779 108.2229) (xy 100.78801 108.2229) (xy 103.35282 108.2229) (xy 103.420941 108.242902) (xy 103.46006 108.282752) (xy 103.494168 108.33805) (xy 103.494175 108.338058) (xy 103.619541 108.463424) (xy 103.619547 108.463429) (xy 103.619548 108.46343) (xy 103.770462 108.556515) (xy 103.938774 108.612287) (xy 104.042655 108.6229) (xy 104.643744 108.622899) (xy 104.747626 108.612287) (xy 104.915938 108.556515) (xy 105.066852 108.46343) (xy 105.19223 108.338052) (xy 105.285315 108.187138) (xy 105.341087 108.018826) (xy 105.3517 107.914945) (xy 105.351699 107.518637) (xy 105.371701 107.450518) (xy 105.388599 107.429548) (xy 107.595307 105.22284) (xy 107.657617 105.188816) ) ) (filled_polygon (layer "F.Cu") (pts (xy 44.704 96.608) (xy 45.348585 96.608) (xy 45.348597 96.607999) (xy 45.409093 96.601494) (xy 45.545964 96.550444) (xy 45.545966 96.550443) (xy 45.644072 96.477001) (xy 45.710592 96.452189) (xy 45.779966 96.46728) (xy 45.795091 96.477) (xy 45.893792 96.550887) (xy 45.893794 96.550888) (xy 45.893796 96.550889) (xy 45.952875 96.572924) (xy 46.030795 96.601988) (xy 46.030803 96.60199) (xy 46.09135 96.608499) (xy 46.091355 96.608499) (xy 46.091362 96.6085) (xy 46.091368 96.6085) (xy 47.888632 96.6085) (xy 47.888638 96.6085) (xy 47.888645 96.608499) (xy 47.888649 96.608499) (xy 47.949196 96.60199) (xy 47.949199 96.601989) (xy 47.949201 96.601989) (xy 48.086204 96.550889) (xy 48.184492 96.477311) (xy 48.251011 96.452501) (xy 48.320385 96.467592) (xy 48.335502 96.477306) (xy 48.405754 96.529897) (xy 48.433796 96.550889) (xy 48.570795 96.601988) (xy 48.570803 96.60199) (xy 48.63135 96.608499) (xy 48.631355 96.608499) (xy 48.631362 96.6085) (xy 48.631368 96.6085) (xy 50.428632 96.6085) (xy 50.428638 96.6085) (xy 50.428645 96.608499) (xy 50.428649 96.608499) (xy 50.489196 96.60199) (xy 50.489199 96.601989) (xy 50.489201 96.601989) (xy 50.626204 96.550889) (xy 50.724492 96.477311) (xy 50.791011 96.452501) (xy 50.860385 96.467592) (xy 50.875502 96.477306) (xy 50.945754 96.529897) (xy 50.973796 96.550889) (xy 51.110795 96.601988) (xy 51.110803 96.60199) (xy 51.17135 96.608499) (xy 51.171355 96.608499) (xy 51.171362 96.6085) (xy 51.171368 96.6085) (xy 52.968632 96.6085) (xy 52.968638 96.6085) (xy 52.968645 96.608499) (xy 52.968649 96.608499) (xy 53.029196 96.60199) (xy 53.029199 96.601989) (xy 53.029201 96.601989) (xy 53.166204 96.550889) (xy 53.264492 96.477311) (xy 53.331011 96.452501) (xy 53.400385 96.467592) (xy 53.415502 96.477306) (xy 53.485754 96.529897) (xy 53.513796 96.550889) (xy 53.650795 96.601988) (xy 53.650803 96.60199) (xy 53.71135 96.608499) (xy 53.711355 96.608499) (xy 53.711362 96.6085) (xy 53.711368 96.6085) (xy 55.508632 96.6085) (xy 55.508638 96.6085) (xy 55.508645 96.608499) (xy 55.508649 96.608499) (xy 55.569196 96.60199) (xy 55.569199 96.601989) (xy 55.569201 96.601989) (xy 55.706204 96.550889) (xy 55.804492 96.477311) (xy 55.871011 96.452501) (xy 55.940385 96.467592) (xy 55.955502 96.477306) (xy 56.025754 96.529897) (xy 56.053796 96.550889) (xy 56.190795 96.601988) (xy 56.190803 96.60199) (xy 56.25135 96.608499) (xy 56.251355 96.608499) (xy 56.251362 96.6085) (xy 57.6855 96.6085) (xy 57.753621 96.628502) (xy 57.800114 96.682158) (xy 57.8115 96.7345) (xy 57.8115 106.375761) (xy 57.791498 106.443882) (xy 57.774595 106.464856) (xy 52.604856 111.634595) (xy 52.542544 111.668621) (xy 52.515761 111.6715) (xy 51.17135 111.6715) (xy 51.110803 111.678009) (xy 51.110795 111.678011) (xy 50.973797 111.72911) (xy 50.973792 111.729112) (xy 50.875509 111.802687) (xy 50.808989 111.827498) (xy 50.739615 111.812407) (xy 50.724491 111.802687) (xy 50.626207 111.729112) (xy 50.626202 111.72911) (xy 50.489204 111.678011) (xy 50.489196 111.678009) (xy 50.428649 111.6715) (xy 50.428638 111.6715) (xy 48.631362 111.6715) (xy 48.63135 111.6715) (xy 48.570803 111.678009) (xy 48.570795 111.678011) (xy 48.433797 111.72911) (xy 48.433792 111.729112) (xy 48.335509 111.802687) (xy 48.268989 111.827498) (xy 48.199615 111.812407) (xy 48.184491 111.802687) (xy 48.086207 111.729112) (xy 48.086202 111.72911) (xy 47.949204 111.678011) (xy 47.949196 111.678009) (xy 47.888649 111.6715) (xy 47.888638 111.6715) (xy 46.091362 111.6715) (xy 46.09135 111.6715) (xy 46.030803 111.678009) (xy 46.030795 111.678011) (xy 45.893797 111.72911) (xy 45.893792 111.729112) (xy 45.795091 111.803) (xy 45.728571 111.827811) (xy 45.659197 111.81272) (xy 45.644072 111.802999) (xy 45.545966 111.729556) (xy 45.545964 111.729555) (xy 45.409093 111.678505) (xy 45.348597 111.672) (xy 44.704 111.672) (xy 44.704 112.587749) (xy 44.646853 112.554755) (xy 44.517143 112.52) (xy 44.382857 112.52) (xy 44.253147 112.554755) (xy 44.196 112.587749) (xy 44.196 111.672) (xy 43.551402 111.672) (xy 43.490906 111.678505) (xy 43.354035 111.729555) (xy 43.255924 111.803) (xy 43.189404 111.82781) (xy 43.12003 111.812718) (xy 43.104907 111.802999) (xy 43.006207 111.729112) (xy 43.006202 111.72911) (xy 42.869204 111.678011) (xy 42.869196 111.678009) (xy 42.808649 111.6715) (xy 42.808638 111.6715) (xy 41.011362 111.6715) (xy 41.01135 111.6715) (xy 40.950803 111.678009) (xy 40.950795 111.678011) (xy 40.813797 111.72911) (xy 40.813792 111.729112) (xy 40.715509 111.802687) (xy 40.648989 111.827498) (xy 40.579615 111.812407) (xy 40.564491 111.802687) (xy 40.466207 111.729112) (xy 40.466202 111.72911) (xy 40.329204 111.678011) (xy 40.329196 111.678009) (xy 40.268649 111.6715) (xy 40.268638 111.6715) (xy 38.471362 111.6715) (xy 38.47135 111.6715) (xy 38.410803 111.678009) (xy 38.410795 111.678011) (xy 38.273797 111.72911) (xy 38.273792 111.729113) (xy 38.202009 111.782849) (xy 38.135488 111.80766) (xy 38.066114 111.792568) (xy 38.015912 111.742366) (xy 38.0005 111.681981) (xy 38.0005 108.4246) (xy 38.020502 108.356479) (xy 38.074158 108.309986) (xy 38.1265 108.2986) (xy 43.875 108.2986) (xy 43.875 108.0552) (xy 44.9556 108.0552) (xy 54.5806 108.0552) (xy 54.5806 105.1052) (xy 44.9556 105.1052) (xy 44.9556 108.0552) (xy 43.875 108.0552) (xy 43.875 99.9236) (xy 38.1265 99.9236) (xy 38.058379 99.903598) (xy 38.011886 99.849942) (xy 38.0005 99.7976) (xy 38.0005 96.598018) (xy 38.020502 96.529897) (xy 38.074158 96.483404) (xy 38.144432 96.4733) (xy 38.202009 96.49715) (xy 38.273792 96.550887) (xy 38.273794 96.550888) (xy 38.273796 96.550889) (xy 38.332875 96.572924) (xy 38.410795 96.601988) (xy 38.410803 96.60199) (xy 38.47135 96.608499) (xy 38.471355 96.608499) (xy 38.471362 96.6085) (xy 38.471368 96.6085) (xy 40.268632 96.6085) (xy 40.268638 96.6085) (xy 40.268645 96.608499) (xy 40.268649 96.608499) (xy 40.329196 96.60199) (xy 40.329199 96.601989) (xy 40.329201 96.601989) (xy 40.466204 96.550889) (xy 40.564492 96.477311) (xy 40.631011 96.452501) (xy 40.700385 96.467592) (xy 40.715502 96.477306) (xy 40.785754 96.529897) (xy 40.813796 96.550889) (xy 40.950795 96.601988) (xy 40.950803 96.60199) (xy 41.01135 96.608499) (xy 41.011355 96.608499) (xy 41.011362 96.6085) (xy 41.011368 96.6085) (xy 42.808632 96.6085) (xy 42.808638 96.6085) (xy 42.808645 96.608499) (xy 42.808649 96.608499) (xy 42.869196 96.60199) (xy 42.869199 96.601989) (xy 42.869201 96.601989) (xy 43.006204 96.550889) (xy 43.104907 96.477) (xy 43.171426 96.452189) (xy 43.2408 96.46728) (xy 43.255925 96.477) (xy 43.354034 96.550444) (xy 43.490906 96.601494) (xy 43.551402 96.607999) (xy 43.551415 96.608) (xy 44.196 96.608) (xy 44.196 95.69225) (xy 44.253147 95.725245) (xy 44.382857 95.76) (xy 44.517143 95.76) (xy 44.646853 95.725245) (xy 44.704 95.69225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 62.833621 96.628502) (xy 62.880114 96.682158) (xy 62.8915 96.7345) (xy 62.8915 111.455761) (xy 62.871498 111.523882) (xy 62.854595 111.544856) (xy 62.764856 111.634595) (xy 62.702544 111.668621) (xy 62.675761 111.6715) (xy 61.33135 111.6715) (xy 61.270803 111.678009) (xy 61.270795 111.678011) (xy 61.133797 111.72911) (xy 61.133792 111.729112) (xy 61.035509 111.802687) (xy 60.968989 111.827498) (xy 60.899615 111.812407) (xy 60.884491 111.802687) (xy 60.786207 111.729112) (xy 60.786202 111.72911) (xy 60.649204 111.678011) (xy 60.649196 111.678009) (xy 60.588649 111.6715) (xy 60.588638 111.6715) (xy 58.791362 111.6715) (xy 58.79135 111.6715) (xy 58.730803 111.678009) (xy 58.730795 111.678011) (xy 58.593797 111.72911) (xy 58.593792 111.729112) (xy 58.495091 111.803) (xy 58.428571 111.827811) (xy 58.359197 111.81272) (xy 58.344072 111.802999) (xy 58.245966 111.729556) (xy 58.245964 111.729555) (xy 58.109093 111.678505) (xy 58.048597 111.672) (xy 57.404 111.672) (xy 57.404 112.587749) (xy 57.346853 112.554755) (xy 57.217143 112.52) (xy 57.082857 112.52) (xy 56.953147 112.554755) (xy 56.896 112.587749) (xy 56.896 111.672) (xy 56.251402 111.672) (xy 56.190906 111.678505) (xy 56.054035 111.729555) (xy 55.955924 111.803) (xy 55.889404 111.82781) (xy 55.82003 111.812718) (xy 55.804907 111.802999) (xy 55.706207 111.729112) (xy 55.706202 111.72911) (xy 55.569204 111.678011) (xy 55.569196 111.678009) (xy 55.508649 111.6715) (xy 55.508638 111.6715) (xy 55.3445 111.6715) (xy 55.276379 111.651498) (xy 55.229886 111.597842) (xy 55.2185 111.5455) (xy 55.2185 111.359925) (xy 55.238502 111.291804) (xy 55.255405 111.27083) (xy 59.364115 107.16212) (xy 59.364121 107.162114) (xy 59.444232 107.023359) (xy 59.479697 106.891) (xy 59.4857 106.868597) (xy 59.4857 98.551439) (xy 59.505702 98.483318) (xy 59.522605 98.462344) (xy 61.339544 96.645405) (xy 61.401856 96.611379) (xy 61.428639 96.6085) (xy 62.117431 96.6085) (xy 62.342569 96.6085) (xy 62.7655 96.6085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.104 96.608) (xy 70.748585 96.608) (xy 70.748597 96.607999) (xy 70.809093 96.601494) (xy 70.945964 96.550444) (xy 70.945966 96.550443) (xy 71.044072 96.477001) (xy 71.110592 96.452189) (xy 71.179966 96.46728) (xy 71.195091 96.477) (xy 71.293792 96.550887) (xy 71.293794 96.550888) (xy 71.293796 96.550889) (xy 71.352875 96.572924) (xy 71.430795 96.601988) (xy 71.430803 96.60199) (xy 71.49135 96.608499) (xy 71.491355 96.608499) (xy 71.491362 96.6085) (xy 71.491368 96.6085) (xy 73.288632 96.6085) (xy 73.288638 96.6085) (xy 73.288645 96.608499) (xy 73.288649 96.608499) (xy 73.349196 96.60199) (xy 73.349199 96.601989) (xy 73.349201 96.601989) (xy 73.486204 96.550889) (xy 73.584492 96.477311) (xy 73.651011 96.452501) (xy 73.720385 96.467592) (xy 73.735502 96.477306) (xy 73.805754 96.529897) (xy 73.833796 96.550889) (xy 73.970795 96.601988) (xy 73.970803 96.60199) (xy 74.03135 96.608499) (xy 74.031355 96.608499) (xy 74.031362 96.6085) (xy 74.031368 96.6085) (xy 75.828632 96.6085) (xy 75.828638 96.6085) (xy 75.828645 96.608499) (xy 75.828649 96.608499) (xy 75.889196 96.60199) (xy 75.889199 96.601989) (xy 75.889201 96.601989) (xy 76.026204 96.550889) (xy 76.124492 96.477311) (xy 76.191011 96.452501) (xy 76.260385 96.467592) (xy 76.275502 96.477306) (xy 76.345754 96.529897) (xy 76.373796 96.550889) (xy 76.510795 96.601988) (xy 76.510803 96.60199) (xy 76.57135 96.608499) (xy 76.571355 96.608499) (xy 76.571362 96.6085) (xy 76.571368 96.6085) (xy 78.368632 96.6085) (xy 78.368638 96.6085) (xy 78.368645 96.608499) (xy 78.368649 96.608499) (xy 78.429196 96.60199) (xy 78.429199 96.601989) (xy 78.429201 96.601989) (xy 78.566204 96.550889) (xy 78.664492 96.477311) (xy 78.731011 96.452501) (xy 78.800385 96.467592) (xy 78.815502 96.477306) (xy 78.885754 96.529897) (xy 78.913796 96.550889) (xy 79.050795 96.601988) (xy 79.050803 96.60199) (xy 79.11135 96.608499) (xy 79.111355 96.608499) (xy 79.111362 96.6085) (xy 79.401724 96.6085) (xy 79.469845 96.628502) (xy 79.516338 96.682158) (xy 79.526442 96.752432) (xy 79.496948 96.817012) (xy 79.490819 96.823595) (xy 79.408035 96.906378) (xy 79.408034 96.906379) (xy 79.287714 97.071987) (xy 79.194781 97.254379) (xy 79.194778 97.254385) (xy 79.131524 97.449061) (xy 79.131523 97.449064) (xy 79.131523 97.449066) (xy 79.0995 97.651248) (xy 79.0995 97.687708) (xy 79.0995 110.487708) (xy 79.0995 110.5536) (xy 79.0995 110.655952) (xy 79.128293 110.837739) (xy 79.131524 110.858138) (xy 79.139012 110.881185) (xy 79.19478 111.052819) (xy 79.284239 111.228391) (xy 79.287714 111.235212) (xy 79.408034 111.40082) (xy 79.463619 111.456405) (xy 79.497645 111.518717) (xy 79.49258 111.589532) (xy 79.450033 111.646368) (xy 79.383513 111.671179) (xy 79.374524 111.6715) (xy 79.11135 111.6715) (xy 79.050803 111.678009) (xy 79.050795 111.678011) (xy 78.913797 111.72911) (xy 78.913792 111.729112) (xy 78.815509 111.802687) (xy 78.748989 111.827498) (xy 78.679615 111.812407) (xy 78.664491 111.802687) (xy 78.566207 111.729112) (xy 78.566202 111.72911) (xy 78.429204 111.678011) (xy 78.429196 111.678009) (xy 78.368649 111.6715) (xy 78.368638 111.6715) (xy 76.571362 111.6715) (xy 76.57135 111.6715) (xy 76.510803 111.678009) (xy 76.510795 111.678011) (xy 76.373797 111.72911) (xy 76.373792 111.729112) (xy 76.275509 111.802687) (xy 76.208989 111.827498) (xy 76.139615 111.812407) (xy 76.124491 111.802687) (xy 76.026207 111.729112) (xy 76.026202 111.72911) (xy 75.889204 111.678011) (xy 75.889196 111.678009) (xy 75.828649 111.6715) (xy 75.828638 111.6715) (xy 74.031362 111.6715) (xy 74.03135 111.6715) (xy 73.970803 111.678009) (xy 73.970795 111.678011) (xy 73.833797 111.72911) (xy 73.833792 111.729112) (xy 73.735509 111.802687) (xy 73.668989 111.827498) (xy 73.599615 111.812407) (xy 73.584491 111.802687) (xy 73.486207 111.729112) (xy 73.486202 111.72911) (xy 73.349204 111.678011) (xy 73.349196 111.678009) (xy 73.288649 111.6715) (xy 73.288638 111.6715) (xy 71.491362 111.6715) (xy 71.49135 111.6715) (xy 71.430803 111.678009) (xy 71.430795 111.678011) (xy 71.293797 111.72911) (xy 71.293792 111.729112) (xy 71.195091 111.803) (xy 71.128571 111.827811) (xy 71.059197 111.81272) (xy 71.044072 111.802999) (xy 70.945966 111.729556) (xy 70.945964 111.729555) (xy 70.809093 111.678505) (xy 70.748597 111.672) (xy 70.104 111.672) (xy 70.104 112.587749) (xy 70.046853 112.554755) (xy 69.917143 112.52) (xy 69.782857 112.52) (xy 69.653147 112.554755) (xy 69.596 112.587749) (xy 69.596 111.672) (xy 68.951402 111.672) (xy 68.890906 111.678505) (xy 68.754035 111.729555) (xy 68.655924 111.803) (xy 68.589404 111.82781) (xy 68.52003 111.812718) (xy 68.504907 111.802999) (xy 68.406207 111.729112) (xy 68.406202 111.72911) (xy 68.269204 111.678011) (xy 68.269196 111.678009) (xy 68.208649 111.6715) (xy 68.208638 111.6715) (xy 66.411362 111.6715) (xy 66.41135 111.6715) (xy 66.350803 111.678009) (xy 66.350795 111.678011) (xy 66.213797 111.72911) (xy 66.213792 111.729112) (xy 66.115509 111.802687) (xy 66.048989 111.827498) (xy 65.979615 111.812407) (xy 65.964491 111.802687) (xy 65.866207 111.729112) (xy 65.866202 111.72911) (xy 65.729204 111.678011) (xy 65.729196 111.678009) (xy 65.668649 111.6715) (xy 65.668638 111.6715) (xy 64.2345 111.6715) (xy 64.166379 111.651498) (xy 64.119886 111.597842) (xy 64.1085 111.5455) (xy 64.1085 105.0544) (xy 67.6148 105.0544) (xy 70.6148 105.0544) (xy 70.6148 97.0294) (xy 67.6148 97.0294) (xy 67.6148 105.0544) (xy 64.1085 105.0544) (xy 64.1085 96.7345) (xy 64.128502 96.666379) (xy 64.182158 96.619886) (xy 64.2345 96.6085) (xy 65.668632 96.6085) (xy 65.668638 96.6085) (xy 65.668645 96.608499) (xy 65.668649 96.608499) (xy 65.729196 96.60199) (xy 65.729199 96.601989) (xy 65.729201 96.601989) (xy 65.866204 96.550889) (xy 65.964492 96.477311) (xy 66.031011 96.452501) (xy 66.100385 96.467592) (xy 66.115502 96.477306) (xy 66.185754 96.529897) (xy 66.213796 96.550889) (xy 66.350795 96.601988) (xy 66.350803 96.60199) (xy 66.41135 96.608499) (xy 66.411355 96.608499) (xy 66.411362 96.6085) (xy 66.411368 96.6085) (xy 68.208632 96.6085) (xy 68.208638 96.6085) (xy 68.208645 96.608499) (xy 68.208649 96.608499) (xy 68.269196 96.60199) (xy 68.269199 96.601989) (xy 68.269201 96.601989) (xy 68.406204 96.550889) (xy 68.504907 96.477) (xy 68.571426 96.452189) (xy 68.6408 96.46728) (xy 68.655925 96.477) (xy 68.754034 96.550444) (xy 68.890906 96.601494) (xy 68.951402 96.607999) (xy 68.951415 96.608) (xy 69.596 96.608) (xy 69.596 95.69225) (xy 69.653147 95.725245) (xy 69.782857 95.76) (xy 69.917143 95.76) (xy 70.046853 95.725245) (xy 70.104 95.69225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.746121 111.874102) (xy 82.792614 111.927758) (xy 82.804 111.9801) (xy 82.804 112.587749) (xy 82.746853 112.554755) (xy 82.617143 112.52) (xy 82.482857 112.52) (xy 82.353147 112.554755) (xy 82.296 112.587749) (xy 82.296 111.9801) (xy 82.316002 111.911979) (xy 82.369658 111.865486) (xy 82.422 111.8541) (xy 82.678 111.8541) ) ) (filled_polygon (layer "F.Cu") (pts (xy 107.728433 93.886582) (xy 107.785268 93.929129) (xy 107.810079 93.995649) (xy 107.8104 94.004638) (xy 107.8104 96.762944) (xy 107.821012 96.866825) (xy 107.876785 97.035138) (xy 107.96987 97.186052) (xy 107.969875 97.186058) (xy 108.095241 97.311424) (xy 108.095247 97.311429) (xy 108.095248 97.31143) (xy 108.246162 97.404515) (xy 108.414474 97.460287) (xy 108.518355 97.4709) (xy 108.673389 97.470899) (xy 108.74151 97.490901) (xy 108.762485 97.507804) (xy 108.993986 97.739305) (xy 109.028012 97.801617) (xy 109.022947 97.872432) (xy 108.9804 97.929268) (xy 108.91388 97.954079) (xy 108.904891 97.9544) (xy 108.518383 97.9544) (xy 108.414581 97.965005) (xy 108.414578 97.965006) (xy 108.246374 98.020742) (xy 108.09556 98.113765) (xy 108.095554 98.11377) (xy 107.97027 98.239054) (xy 107.970265 98.23906) (xy 107.877242 98.389874) (xy 107.821506 98.558078) (xy 107.821505 98.558081) (xy 107.8109 98.661883) (xy 107.8109 99.9584) (xy 110.6269 99.9584) (xy 110.6269 99.676409) (xy 110.646902 99.608288) (xy 110.700558 99.561795) (xy 110.770832 99.551691) (xy 110.835412 99.581185) (xy 110.841995 99.587314) (xy 111.546939 100.292258) (xy 111.687011 100.43233) (xy 111.847271 100.548766) (xy 112.023772 100.638698) (xy 112.03071 100.640952) (xy 112.089316 100.681025) (xy 112.116953 100.746422) (xy 112.104846 100.816379) (xy 112.080869 100.84988) (xy 110.854459 102.07629) (xy 110.792147 102.110316) (xy 110.721332 102.105251) (xy 110.699222 102.094439) (xy 110.698819 102.09419) (xy 110.676145 102.086677) (xy 110.617774 102.046263) (xy 110.590519 101.980706) (xy 110.596174 101.92744) (xy 110.616293 101.866721) (xy 110.616294 101.866718) (xy 110.626899 101.762916) (xy 110.6269 101.762916) (xy 110.6269 100.4664) (xy 107.8109 100.4664) (xy 107.8109 101.762916) (xy 107.821505 101.866718) (xy 107.821506 101.866725) (xy 107.841783 101.927916) (xy 107.844223 101.99887) (xy 107.807914 102.05988) (xy 107.761814 102.087151) (xy 107.739196 102.094646) (xy 107.590866 102.186137) (xy 107.59086 102.186142) (xy 107.467642 102.30936) (xy 107.467637 102.309366) (xy 107.376148 102.457692) (xy 107.321331 102.623123) (xy 107.32133 102.623126) (xy 107.3109 102.725215) (xy 107.3109 102.7584) (xy 108.4844 102.7584) (xy 108.552521 102.778402) (xy 108.599014 102.832058) (xy 108.6104 102.8844) (xy 108.6104 103.1404) (xy 108.590398 103.208521) (xy 108.536742 103.255014) (xy 108.4844 103.2664) (xy 107.310899 103.2664) (xy 107.310526 103.266772) (xy 107.290898 103.333621) (xy 107.237242 103.380114) (xy 107.1849 103.3915) (xy 106.572908 103.3915) (xy 106.504787 103.371498) (xy 106.458294 103.317842) (xy 106.44756 103.252694) (xy 106.458 103.150507) (xy 106.458 103.104) (xy 105.322 103.104) (xy 105.253879 103.083998) (xy 105.207386 103.030342) (xy 105.196 102.978) (xy 105.196 102.596) (xy 105.704 102.596) (xy 106.458 102.596) (xy 106.458 102.549483) (xy 106.447394 102.445681) (xy 106.447393 102.445678) (xy 106.391657 102.277474) (xy 106.298634 102.12666) (xy 106.298629 102.126654) (xy 106.173345 102.00137) (xy 106.173339 102.001365) (xy 106.022525 101.908342) (xy 105.854321 101.852606) (xy 105.854318 101.852605) (xy 105.750516 101.842) (xy 105.704 101.842) (xy 105.704 102.596) (xy 105.196 102.596) (xy 105.196 101.842) (xy 105.149483 101.842) (xy 105.045681 101.852605) (xy 105.045678 101.852606) (xy 104.877474 101.908342) (xy 104.72666 102.001365) (xy 104.726654 102.00137) (xy 104.60137 102.126654) (xy 104.601365 102.12666) (xy 104.50834 102.277478) (xy 104.467982 102.399271) (xy 104.427568 102.457643) (xy 104.362012 102.484898) (xy 104.292127 102.472384) (xy 104.259283 102.448733) (xy 104.173633 102.363083) (xy 104.173623 102.363075) (xy 104.034877 102.28297) (xy 104.034875 102.282969) (xy 104.034873 102.282968) (xy 103.916415 102.251227) (xy 103.855794 102.214276) (xy 103.841787 102.195668) (xy 103.840779 102.194034) (xy 103.79903 102.126348) (xy 103.799029 102.126347) (xy 103.799024 102.126341) (xy 103.673658 102.000975) (xy 103.673652 102.00097) (xy 103.616837 101.965926) (xy 103.522738 101.907885) (xy 103.398502 101.866718) (xy 103.354427 101.852113) (xy 103.35442 101.852112) (xy 103.250553 101.8415) (xy 102.649455 101.8415) (xy 102.545574 101.852112) (xy 102.377261 101.907885) (xy 102.226347 102.00097) (xy 102.226341 102.000975) (xy 102.100975 102.126341) (xy 102.100968 102.126349) (xy 102.05922 102.194034) (xy 102.006434 102.241512) (xy 101.936359 102.252914) (xy 101.871244 102.224621) (xy 101.862885 102.216981) (xy 101.647122 102.001218) (xy 101.613096 101.938906) (xy 101.610907 101.925293) (xy 101.609125 101.908342) (xy 101.593542 101.760072) (xy 101.534527 101.578444) (xy 101.43904 101.413056) (xy 101.439038 101.413054) (xy 101.439034 101.413048) (xy 101.311255 101.271135) (xy 101.156752 101.158882) (xy 100.982288 101.081206) (xy 100.795487 101.0415) (xy 100.604513 101.0415) (xy 100.417711 101.081206) (xy 100.243247 101.158882) (xy 100.088744 101.271135) (xy 99.960965 101.413048) (xy 99.960958 101.413058) (xy 99.889311 101.537155) (xy 99.865473 101.578444) (xy 99.850999 101.622986) (xy 99.806457 101.760072) (xy 99.786496 101.95) (xy 99.806457 102.139927) (xy 99.821344 102.185742) (xy 99.865473 102.321556) (xy 99.865476 102.321561) (xy 99.960958 102.486941) (xy 99.960965 102.486951) (xy 100.088744 102.628864) (xy 100.088747 102.628866) (xy 100.243248 102.741118) (xy 100.417712 102.818794) (xy 100.604513 102.8585) (xy 100.660406 102.8585) (xy 100.728527 102.878502) (xy 100.749501 102.895405) (xy 101.185495 103.331399) (xy 101.219521 103.393711) (xy 101.2224 103.420494) (xy 101.2224 103.700227) (xy 101.202398 103.768348) (xy 101.162549 103.807466) (xy 101.140056 103.82134) (xy 101.016743 103.944652) (xy 101.016742 103.944653) (xy 100.925191 104.09308) (xy 100.870337 104.258622) (xy 100.8599 104.360778) (xy 100.8599 104.935212) (xy 100.870337 105.03738) (xy 100.925191 105.20292) (xy 101.016742 105.351346) (xy 101.016747 105.351352) (xy 101.140047 105.474652) (xy 101.140053 105.474657) (xy 101.140054 105.474658) (xy 101.28848 105.566209) (xy 101.454019 105.621062) (xy 101.556187 105.6315) (xy 102.155612 105.631499) (xy 102.257781 105.621062) (xy 102.42332 105.566209) (xy 102.571746 105.474658) (xy 102.614794 105.43161) (xy 102.679305 105.3671) (xy 102.741617 105.333074) (xy 102.812432 105.338139) (xy 102.857495 105.3671) (xy 102.965047 105.474652) (xy 102.965053 105.474657) (xy 102.965054 105.474658) (xy 103.11348 105.566209) (xy 103.279019 105.621062) (xy 103.381187 105.6315) (xy 103.980612 105.631499) (xy 104.082781 105.621062) (xy 104.24832 105.566209) (xy 104.396746 105.474658) (xy 104.520058 105.351346) (xy 104.611609 105.20292) (xy 104.666462 105.037381) (xy 104.6769 104.935213) (xy 104.676899 104.720993) (xy 104.696901 104.652874) (xy 104.750556 104.606381) (xy 104.82083 104.596276) (xy 104.8355 104.599285) (xy 104.869889 104.6085) (xy 104.86989 104.6085) (xy 105.030111 104.6085) (xy 106.184362 104.6085) (xy 106.252483 104.628502) (xy 106.298976 104.682158) (xy 106.30908 104.752432) (xy 106.279586 104.817012) (xy 106.273473 104.823578) (xy 104.77305 106.324) (xy 104.528054 106.568996) (xy 104.465742 106.603021) (xy 104.438959 106.6059) (xy 104.042655 106.6059) (xy 103.938774 106.616512) (xy 103.770461 106.672285) (xy 103.619547 106.76537) (xy 103.619541 106.765375) (xy 103.494175 106.890741) (xy 103.494168 106.890749) (xy 103.46006 106.946048) (xy 103.407274 106.993525) (xy 103.35282 107.0059) (xy 101.5105 107.0059) (xy 101.442379 106.985898) (xy 101.395886 106.932242) (xy 101.3845 106.8799) (xy 101.3845 106.783867) (xy 101.384499 106.78385) (xy 101.37799 106.723303) (xy 101.377988 106.723295) (xy 101.333127 106.603021) (xy 101.326889 106.586296) (xy 101.326888 106.586294) (xy 101.326887 106.586292) (xy 101.239261 106.469238) (xy 101.122207 106.381612) (xy 101.122202 106.38161) (xy 100.985204 106.330511) (xy 100.985196 106.330509) (xy 100.924649 106.324) (xy 100.924638 106.324) (xy 99.727362 106.324) (xy 99.72735 106.324) (xy 99.666803 106.330509) (xy 99.666795 106.330511) (xy 99.529797 106.38161) (xy 99.529792 106.381612) (xy 99.412736 106.46924) (xy 99.411364 106.471074) (xy 99.40953 106.472446) (xy 99.406366 106.475611) (xy 99.40591 106.475155) (xy 99.354526 106.513618) (xy 99.28371 106.518679) (xy 99.2214 106.484651) (xy 99.187378 106.422337) (xy 99.1845 106.39556) (xy 99.1845 105.833867) (xy 99.184499 105.83385) (xy 99.17799 105.773303) (xy 99.177988 105.773295) (xy 99.137989 105.666056) (xy 99.126889 105.636296) (xy 99.126888 105.636294) (xy 99.126887 105.636292) (xy 99.039261 105.519238) (xy 98.922207 105.431612) (xy 98.922202 105.43161) (xy 98.785204 105.380511) (xy 98.785196 105.380509) (xy 98.724649 105.374) (xy 98.724638 105.374) (xy 97.527362 105.374) (xy 97.52735 105.374) (xy 97.466803 105.380509) (xy 97.466795 105.380511) (xy 97.329797 105.43161) (xy 97.329792 105.431612) (xy 97.212738 105.519238) (xy 97.134683 105.623509) (xy 97.077847 105.666056) (xy 97.033815 105.674) (xy 96.416062 105.674) (xy 96.347941 105.653998) (xy 96.308821 105.614146) (xy 96.302658 105.604154) (xy 96.302657 105.604153) (xy 96.302652 105.604147) (xy 96.179352 105.480847) (xy 96.179346 105.480842) (xy 96.169319 105.474657) (xy 96.03092 105.389291) (xy 95.865381 105.334438) (xy 95.865379 105.334437) (xy 95.865377 105.334437) (xy 95.763221 105.324) (xy 95.188787 105.324) (xy 95.086619 105.334437) (xy 94.921079 105.389291) (xy 94.772653 105.480842) (xy 94.772647 105.480847) (xy 94.690095 105.5634) (xy 94.627783 105.597426) (xy 94.556968 105.592361) (xy 94.511905 105.5634) (xy 94.459187 105.510682) (xy 94.425161 105.44837) (xy 94.430226 105.377555) (xy 94.439158 105.358594) (xy 94.458927 105.324356) (xy 94.517942 105.142728) (xy 94.537904 104.9528) (xy 94.517942 104.762872) (xy 94.458927 104.581244) (xy 94.36344 104.415856) (xy 94.363438 104.415854) (xy 94.363434 104.415848) (xy 94.235655 104.273935) (xy 94.081152 104.161682) (xy 93.906688 104.084006) (xy 93.719887 104.0443) (xy 93.5945 104.0443) (xy 93.526379 104.024298) (xy 93.479886 103.970642) (xy 93.4685 103.9183) (xy 93.4685 99.137316) (xy 103.3055 99.137316) (xy 103.316105 99.241118) (xy 103.316106 99.241121) (xy 103.371842 99.409325) (xy 103.464865 99.560139) (xy 103.46487 99.560145) (xy 103.590154 99.685429) (xy 103.59016 99.685434) (xy 103.740974 99.778457) (xy 103.909178 99.834193) (xy 103.909181 99.834194) (xy 104.012983 99.844799) (xy 104.012983 99.8448) (xy 104.0595 99.8448) (xy 104.5675 99.8448) (xy 104.614017 99.8448) (xy 104.614016 99.844799) (xy 104.717818 99.834194) (xy 104.717821 99.834193) (xy 104.886025 99.778457) (xy 105.036839 99.685434) (xy 105.036845 99.685429) (xy 105.162129 99.560145) (xy 105.162134 99.560139) (xy 105.255157 99.409325) (xy 105.310893 99.241121) (xy 105.310894 99.241118) (xy 105.321499 99.137316) (xy 105.3215 99.137316) (xy 105.3215 99.0908) (xy 104.5675 99.0908) (xy 104.5675 99.8448) (xy 104.0595 99.8448) (xy 104.0595 99.0908) (xy 103.3055 99.0908) (xy 103.3055 99.137316) (xy 93.4685 99.137316) (xy 93.4685 98.536283) (xy 103.3055 98.536283) (xy 103.3055 98.5828) (xy 104.0595 98.5828) (xy 104.5675 98.5828) (xy 105.3215 98.5828) (xy 105.3215 98.536283) (xy 105.310894 98.432481) (xy 105.310893 98.432478) (xy 105.255157 98.264274) (xy 105.162134 98.11346) (xy 105.162129 98.113454) (xy 105.036845 97.98817) (xy 105.036839 97.988165) (xy 104.886025 97.895142) (xy 104.717821 97.839406) (xy 104.717818 97.839405) (xy 104.614016 97.8288) (xy 104.5675 97.8288) (xy 104.5675 98.5828) (xy 104.0595 98.5828) (xy 104.0595 97.8288) (xy 104.012983 97.8288) (xy 103.909181 97.839405) (xy 103.909178 97.839406) (xy 103.740974 97.895142) (xy 103.59016 97.988165) (xy 103.590154 97.98817) (xy 103.46487 98.113454) (xy 103.464865 98.11346) (xy 103.371842 98.264274) (xy 103.316106 98.432478) (xy 103.316105 98.432481) (xy 103.3055 98.536283) (xy 93.4685 98.536283) (xy 93.4685 98.277371) (xy 93.488502 98.20925) (xy 93.505405 98.188276) (xy 93.765777 97.927904) (xy 93.828089 97.893878) (xy 93.854872 97.890999) (xy 94.013212 97.890999) (xy 94.115381 97.880562) (xy 94.28092 97.825709) (xy 94.429346 97.734158) (xy 94.467743 97.695761) (xy 94.512259 97.651246) (xy 94.574571 97.61722) (xy 94.645386 97.622285) (xy 94.690449 97.651246) (xy 94.77296 97.733757) (xy 94.772966 97.733762) (xy 94.921292 97.825251) (xy 95.086723 97.880068) (xy 95.086726 97.880069) (xy 95.188815 97.890499) (xy 95.188815 97.8905) (xy 95.222 97.8905) (xy 95.73 97.8905) (xy 95.763185 97.8905) (xy 95.763184 97.890499) (xy 95.865273 97.880069) (xy 95.865276 97.880068) (xy 96.030707 97.825251) (xy 96.179033 97.733762) (xy 96.179039 97.733757) (xy 96.302257 97.610539) (xy 96.302262 97.610533) (xy 96.393751 97.462207) (xy 96.448568 97.296776) (xy 96.448569 97.296773) (xy 96.458999 97.194684) (xy 96.459 97.194684) (xy 96.459 97.099) (xy 95.73 97.099) (xy 95.73 97.8905) (xy 95.222 97.8905) (xy 95.222 96.717) (xy 95.242002 96.648879) (xy 95.295658 96.602386) (xy 95.348 96.591) (xy 96.459 96.591) (xy 96.459 96.495315) (xy 96.448569 96.393226) (xy 96.448568 96.393223) (xy 96.393751 96.227792) (xy 96.302262 96.079466) (xy 96.302257 96.07946) (xy 96.294745 96.071948) (xy 96.260719 96.009636) (xy 96.265784 95.938821) (xy 96.294747 95.893756) (xy 96.302658 95.885846) (xy 96.394209 95.73742) (xy 96.39516 95.734549) (xy 96.397542 95.727364) (xy 96.437957 95.668994) (xy 96.503514 95.641739) (xy 96.517145 95.641) (xy 97.033815 95.641) (xy 97.101936 95.661002) (xy 97.134683 95.691491) (xy 97.212738 95.795761) (xy 97.327448 95.881632) (xy 97.369995 95.938468) (xy 97.375059 96.009284) (xy 97.341034 96.071596) (xy 97.327448 96.083368) (xy 97.212738 96.169238) (xy 97.125112 96.286292) (xy 97.12511 96.286297) (xy 97.074011 96.423295) (xy 97.074009 96.423303) (xy 97.0675 96.48385) (xy 97.0675 97.381149) (xy 97.074009 97.441696) (xy 97.074011 97.441704) (xy 97.12511 97.578702) (xy 97.125112 97.578707) (xy 97.212738 97.695761) (xy 97.329792 97.783387) (xy 97.329794 97.783388) (xy 97.329796 97.783389) (xy 97.378667 97.801617) (xy 97.466795 97.834488) (xy 97.466803 97.83449) (xy 97.52735 97.840999) (xy 97.527355 97.840999) (xy 97.527362 97.841) (xy 97.527368 97.841) (xy 98.724632 97.841) (xy 98.724638 97.841) (xy 98.724645 97.840999) (xy 98.724649 97.840999) (xy 98.785196 97.83449) (xy 98.785199 97.834489) (xy 98.785201 97.834489) (xy 98.922204 97.783389) (xy 98.922441 97.783212) (xy 99.039261 97.695761) (xy 99.126887 97.578707) (xy 99.126887 97.578706) (xy 99.126889 97.578704) (xy 99.175244 97.449061) (xy 99.177988 97.441704) (xy 99.17799 97.441696) (xy 99.184499 97.381149) (xy 99.1845 97.381132) (xy 99.1845 96.819439) (xy 99.204502 96.751318) (xy 99.258158 96.704825) (xy 99.328432 96.694721) (xy 99.393012 96.724215) (xy 99.411368 96.74393) (xy 99.412738 96.745761) (xy 99.529792 96.833387) (xy 99.529794 96.833388) (xy 99.529796 96.833389) (xy 99.588875 96.855424) (xy 99.666795 96.884488) (xy 99.666803 96.88449) (xy 99.72735 96.890999) (xy 99.727355 96.890999) (xy 99.727362 96.891) (xy 100.389441 96.891) (xy 100.436562 96.903649) (xy 100.437796 96.900671) (xy 100.445423 96.90383) (xy 100.445425 96.90383) (xy 100.445428 96.903832) (xy 100.600189 96.9453) (xy 100.60019 96.9453) (xy 100.76041 96.9453) (xy 103.32312 96.9453) (xy 103.391241 96.965302) (xy 103.43036 97.005152) (xy 103.464468 97.06045) (xy 103.464475 97.060458) (xy 103.589841 97.185824) (xy 103.589847 97.185829) (xy 103.589848 97.18583) (xy 103.740762 97.278915) (xy 103.909074 97.334687) (xy 104.012955 97.3453) (xy 104.614044 97.345299) (xy 104.717926 97.334687) (xy 104.886238 97.278915) (xy 105.037152 97.18583) (xy 105.16253 97.060452) (xy 105.255615 96.909538) (xy 105.311387 96.741226) (xy 105.322 96.637345) (xy 105.321999 96.241037) (xy 105.342001 96.172918) (xy 105.358899 96.151948) (xy 107.595307 93.915541) (xy 107.657617 93.881517) ) ) (filled_polygon (layer "F.Cu") (pts (xy 107.804421 82.485202) (xy 107.850914 82.538858) (xy 107.8623 82.5912) (xy 107.8623 85.501344) (xy 107.872912 85.605225) (xy 107.928685 85.773538) (xy 108.02177 85.924452) (xy 108.021775 85.924458) (xy 108.147141 86.049824) (xy 108.147147 86.049829) (xy 108.147148 86.04983) (xy 108.298062 86.142915) (xy 108.466374 86.198687) (xy 108.570255 86.2093) (xy 108.611788 86.209299) (xy 108.679908 86.2293) (xy 108.700885 86.246204) (xy 108.932386 86.477705) (xy 108.966412 86.540017) (xy 108.961347 86.610832) (xy 108.9188 86.667668) (xy 108.85228 86.692479) (xy 108.843291 86.6928) (xy 108.570283 86.6928) (xy 108.466481 86.703405) (xy 108.466478 86.703406) (xy 108.298274 86.759142) (xy 108.14746 86.852165) (xy 108.147454 86.85217) (xy 108.02217 86.977454) (xy 108.022165 86.97746) (xy 107.929142 87.128274) (xy 107.873406 87.296478) (xy 107.873405 87.296481) (xy 107.8628 87.400283) (xy 107.8628 88.6968) (xy 110.6788 88.6968) (xy 110.6788 88.528309) (xy 110.698802 88.460188) (xy 110.752458 88.413695) (xy 110.822732 88.403591) (xy 110.887312 88.433085) (xy 110.893895 88.439214) (xy 111.64757 89.192889) (xy 111.681596 89.255201) (xy 111.676531 89.326016) (xy 111.647571 89.371079) (xy 110.893893 90.124756) (xy 110.831583 90.15878) (xy 110.760768 90.153716) (xy 110.703932 90.111169) (xy 110.679121 90.044649) (xy 110.6788 90.03566) (xy 110.6788 89.2048) (xy 107.8628 89.2048) (xy 107.8628 90.501316) (xy 107.873405 90.605118) (xy 107.873408 90.605131) (xy 107.886756 90.645416) (xy 107.889195 90.716371) (xy 107.852886 90.77738) (xy 107.806784 90.80465) (xy 107.739196 90.827046) (xy 107.590866 90.918537) (xy 107.59086 90.918542) (xy 107.467642 91.04176) (xy 107.467637 91.041766) (xy 107.376148 91.190092) (xy 107.321331 91.355523) (xy 107.32133 91.355526) (xy 107.3109 91.457615) (xy 107.3109 91.4908) (xy 108.4844 91.4908) (xy 108.552521 91.510802) (xy 108.599014 91.564458) (xy 108.6104 91.6168) (xy 108.6104 91.8728) (xy 108.590398 91.940921) (xy 108.536742 91.987414) (xy 108.4844 91.9988) (xy 107.310899 91.9988) (xy 107.297058 92.01264) (xy 107.290898 92.033621) (xy 107.237242 92.080114) (xy 107.1849 92.0915) (xy 106.722908 92.0915) (xy 106.654787 92.071498) (xy 106.608294 92.017842) (xy 106.59756 91.952694) (xy 106.608 91.850507) (xy 106.608 91.804) (xy 105.472 91.804) (xy 105.403879 91.783998) (xy 105.357386 91.730342) (xy 105.346 91.678) (xy 105.346 91.296) (xy 105.854 91.296) (xy 106.608 91.296) (xy 106.608 91.249483) (xy 106.597394 91.145681) (xy 106.597393 91.145678) (xy 106.541657 90.977474) (xy 106.448634 90.82666) (xy 106.448629 90.826654) (xy 106.323345 90.70137) (xy 106.323339 90.701365) (xy 106.172525 90.608342) (xy 106.004321 90.552606) (xy 106.004318 90.552605) (xy 105.900516 90.542) (xy 105.854 90.542) (xy 105.854 91.296) (xy 105.346 91.296) (xy 105.346 90.542) (xy 105.299483 90.542) (xy 105.195681 90.552605) (xy 105.195678 90.552606) (xy 105.027474 90.608342) (xy 104.87666 90.701365) (xy 104.876654 90.70137) (xy 104.75137 90.826654) (xy 104.751365 90.82666) (xy 104.65834 90.977478) (xy 104.605537 91.136827) (xy 104.565123 91.195199) (xy 104.499567 91.222454) (xy 104.429682 91.20994) (xy 104.39684 91.186291) (xy 104.273627 91.063078) (xy 104.273626 91.063077) (xy 104.273623 91.063075) (xy 104.134877 90.98297) (xy 104.134875 90.982969) (xy 104.134873 90.982968) (xy 104.076314 90.967277) (xy 104.015693 90.930326) (xy 104.001689 90.911722) (xy 103.94903 90.826348) (xy 103.949029 90.826347) (xy 103.949024 90.826341) (xy 103.823658 90.700975) (xy 103.823652 90.70097) (xy 103.733567 90.645405) (xy 103.672738 90.607885) (xy 103.581179 90.577546) (xy 103.504427 90.552113) (xy 103.50442 90.552112) (xy 103.400553 90.5415) (xy 102.799455 90.5415) (xy 102.695574 90.552112) (xy 102.527261 90.607885) (xy 102.376347 90.70097) (xy 102.376341 90.700975) (xy 102.250975 90.826341) (xy 102.25097 90.826347) (xy 102.250539 90.827046) (xy 102.164044 90.967278) (xy 102.157883 90.977266) (xy 102.154783 90.983914) (xy 102.152257 90.982736) (xy 102.119122 91.030549) (xy 102.053552 91.057774) (xy 101.98873 91.047614) (xy 101.831488 90.977606) (xy 101.644687 90.9379) (xy 101.453713 90.9379) (xy 101.266911 90.977606) (xy 101.092447 91.055282) (xy 100.937944 91.167535) (xy 100.810165 91.309448) (xy 100.810158 91.309458) (xy 100.714676 91.474838) (xy 100.714673 91.474844) (xy 100.700199 91.519386) (xy 100.655657 91.656472) (xy 100.635696 91.8464) (xy 100.655657 92.036327) (xy 100.67699 92.101981) (xy 100.714673 92.217956) (xy 100.717585 92.222999) (xy 100.810158 92.383341) (xy 100.810165 92.383351) (xy 100.937944 92.525264) (xy 100.937946 92.525265) (xy 100.946358 92.531378) (xy 100.98971 92.587602) (xy 100.995782 92.658338) (xy 100.968321 92.710377) (xy 100.970495 92.712096) (xy 100.965942 92.717853) (xy 100.874391 92.86628) (xy 100.819537 93.031822) (xy 100.8091 93.133978) (xy 100.8091 93.708412) (xy 100.819537 93.81058) (xy 100.874391 93.97612) (xy 100.965942 94.124546) (xy 100.965947 94.124552) (xy 101.089247 94.247852) (xy 101.089253 94.247857) (xy 101.089254 94.247858) (xy 101.23768 94.339409) (xy 101.403219 94.394262) (xy 101.505387 94.4047) (xy 102.104812 94.404699) (xy 102.206981 94.394262) (xy 102.37252 94.339409) (xy 102.520946 94.247858) (xy 102.542933 94.225871) (xy 102.628505 94.1403) (xy 102.690817 94.106274) (xy 102.761632 94.111339) (xy 102.806695 94.1403) (xy 102.914247 94.247852) (xy 102.914253 94.247857) (xy 102.914254 94.247858) (xy 103.06268 94.339409) (xy 103.228219 94.394262) (xy 103.330387 94.4047) (xy 103.929812 94.404699) (xy 104.031981 94.394262) (xy 104.19752 94.339409) (xy 104.345946 94.247858) (xy 104.469258 94.124546) (xy 104.560809 93.97612) (xy 104.615662 93.810581) (xy 104.6261 93.708413) (xy 104.626099 93.376132) (xy 104.646101 93.308014) (xy 104.699756 93.261521) (xy 104.77003 93.251416) (xy 104.807313 93.264319) (xy 104.807499 93.263871) (xy 104.815034 93.266992) (xy 104.815096 93.267013) (xy 104.815128 93.267032) (xy 104.969889 93.3085) (xy 104.96989 93.3085) (xy 105.130111 93.3085) (xy 106.177061 93.3085) (xy 106.245182 93.328502) (xy 106.291675 93.382158) (xy 106.301779 93.452432) (xy 106.272285 93.517012) (xy 106.26617 93.523579) (xy 104.870111 94.919639) (xy 104.498354 95.291396) (xy 104.436042 95.325421) (xy 104.409259 95.3283) (xy 104.012955 95.3283) (xy 103.909074 95.338912) (xy 103.740761 95.394685) (xy 103.589847 95.48777) (xy 103.589841 95.487775) (xy 103.464475 95.613141) (xy 103.464468 95.613149) (xy 103.43036 95.668448) (xy 103.377574 95.715925) (xy 103.32312 95.7283) (xy 101.5105 95.7283) (xy 101.442379 95.708298) (xy 101.395886 95.654642) (xy 101.3845 95.6023) (xy 101.3845 95.533867) (xy 101.384499 95.53385) (xy 101.37799 95.473303) (xy 101.377988 95.473295) (xy 101.327865 95.338913) (xy 101.326889 95.336296) (xy 101.326888 95.336294) (xy 101.326887 95.336292) (xy 101.239261 95.219238) (xy 101.122207 95.131612) (xy 101.122202 95.13161) (xy 100.985204 95.080511) (xy 100.985196 95.080509) (xy 100.924649 95.074) (xy 100.924638 95.074) (xy 99.727362 95.074) (xy 99.72735 95.074) (xy 99.666803 95.080509) (xy 99.666795 95.080511) (xy 99.529797 95.13161) (xy 99.529792 95.131612) (xy 99.412736 95.21924) (xy 99.411364 95.221074) (xy 99.40953 95.222446) (xy 99.406366 95.225611) (xy 99.40591 95.225155) (xy 99.354526 95.263618) (xy 99.28371 95.268679) (xy 99.2214 95.234651) (xy 99.187378 95.172337) (xy 99.1845 95.14556) (xy 99.1845 94.583867) (xy 99.184499 94.58385) (xy 99.17799 94.523303) (xy 99.177988 94.523295) (xy 99.133753 94.404699) (xy 99.126889 94.386296) (xy 99.126888 94.386294) (xy 99.126887 94.386292) (xy 99.039261 94.269238) (xy 98.922207 94.181612) (xy 98.922202 94.18161) (xy 98.785204 94.130511) (xy 98.785196 94.130509) (xy 98.724649 94.124) (xy 98.724638 94.124) (xy 97.527362 94.124) (xy 97.52735 94.124) (xy 97.466803 94.130509) (xy 97.466795 94.130511) (xy 97.329797 94.18161) (xy 97.329792 94.181612) (xy 97.212738 94.269238) (xy 97.134683 94.373509) (xy 97.077847 94.416056) (xy 97.033815 94.424) (xy 96.416062 94.424) (xy 96.347941 94.403998) (xy 96.308821 94.364146) (xy 96.302658 94.354154) (xy 96.302657 94.354153) (xy 96.302652 94.354147) (xy 96.179352 94.230847) (xy 96.179346 94.230842) (xy 96.099532 94.181612) (xy 96.03092 94.139291) (xy 95.865381 94.084438) (xy 95.865379 94.084437) (xy 95.865377 94.084437) (xy 95.763221 94.074) (xy 95.188787 94.074) (xy 95.086619 94.084437) (xy 94.921079 94.139291) (xy 94.772653 94.230842) (xy 94.77265 94.230844) (xy 94.76403 94.239465) (xy 94.701717 94.273487) (xy 94.630901 94.26842) (xy 94.574067 94.225871) (xy 94.549259 94.15935) (xy 94.558975 94.103995) (xy 94.558486 94.103836) (xy 94.559612 94.10037) (xy 94.559833 94.099112) (xy 94.560519 94.097568) (xy 94.560527 94.097556) (xy 94.619542 93.915928) (xy 94.639504 93.726) (xy 94.619542 93.536072) (xy 94.560527 93.354444) (xy 94.46504 93.189056) (xy 94.465038 93.189054) (xy 94.465034 93.189048) (xy 94.337255 93.047135) (xy 94.182752 92.934882) (xy 94.008288 92.857206) (xy 93.821487 92.8175) (xy 93.630513 92.8175) (xy 93.630509 92.8175) (xy 93.620694 92.819586) (xy 93.549904 92.814183) (xy 93.493272 92.771365) (xy 93.468779 92.704727) (xy 93.4685 92.696339) (xy 93.4685 87.541016) (xy 103.3055 87.541016) (xy 103.316105 87.644818) (xy 103.316106 87.644821) (xy 103.371842 87.813025) (xy 103.464865 87.963839) (xy 103.46487 87.963845) (xy 103.590154 88.089129) (xy 103.59016 88.089134) (xy 103.740974 88.182157) (xy 103.909178 88.237893) (xy 103.909181 88.237894) (xy 104.012983 88.248499) (xy 104.012983 88.2485) (xy 104.0595 88.2485) (xy 104.5675 88.2485) (xy 104.614017 88.2485) (xy 104.614016 88.248499) (xy 104.717818 88.237894) (xy 104.717821 88.237893) (xy 104.886025 88.182157) (xy 105.036839 88.089134) (xy 105.036845 88.089129) (xy 105.162129 87.963845) (xy 105.162134 87.963839) (xy 105.255157 87.813025) (xy 105.310893 87.644821) (xy 105.310894 87.644818) (xy 105.321499 87.541016) (xy 105.3215 87.541016) (xy 105.3215 87.4945) (xy 104.5675 87.4945) (xy 104.5675 88.2485) (xy 104.0595 88.2485) (xy 104.0595 87.4945) (xy 103.3055 87.4945) (xy 103.3055 87.541016) (xy 93.4685 87.541016) (xy 93.4685 87.027371) (xy 93.488502 86.95925) (xy 93.504029 86.939983) (xy 103.3055 86.939983) (xy 103.3055 86.9865) (xy 104.0595 86.9865) (xy 104.5675 86.9865) (xy 105.3215 86.9865) (xy 105.3215 86.939983) (xy 105.310894 86.836181) (xy 105.310893 86.836178) (xy 105.255157 86.667974) (xy 105.162134 86.51716) (xy 105.162129 86.517154) (xy 105.036845 86.39187) (xy 105.036839 86.391865) (xy 104.886025 86.298842) (xy 104.717821 86.243106) (xy 104.717818 86.243105) (xy 104.614016 86.2325) (xy 104.5675 86.2325) (xy 104.5675 86.9865) (xy 104.0595 86.9865) (xy 104.0595 86.2325) (xy 104.012983 86.2325) (xy 103.909181 86.243105) (xy 103.909178 86.243106) (xy 103.740974 86.298842) (xy 103.59016 86.391865) (xy 103.590154 86.39187) (xy 103.46487 86.517154) (xy 103.464865 86.51716) (xy 103.371842 86.667974) (xy 103.316106 86.836178) (xy 103.316105 86.836181) (xy 103.3055 86.939983) (xy 93.504029 86.939983) (xy 93.505405 86.938276) (xy 93.765777 86.677904) (xy 93.828089 86.643878) (xy 93.854872 86.640999) (xy 94.013212 86.640999) (xy 94.115381 86.630562) (xy 94.28092 86.575709) (xy 94.429346 86.484158) (xy 94.467743 86.445761) (xy 94.512259 86.401246) (xy 94.574571 86.36722) (xy 94.645386 86.372285) (xy 94.690449 86.401246) (xy 94.77296 86.483757) (xy 94.772966 86.483762) (xy 94.921292 86.575251) (xy 95.086723 86.630068) (xy 95.086726 86.630069) (xy 95.188815 86.640499) (xy 95.188815 86.6405) (xy 95.222 86.6405) (xy 95.73 86.6405) (xy 95.763185 86.6405) (xy 95.763184 86.640499) (xy 95.865273 86.630069) (xy 95.865276 86.630068) (xy 96.030707 86.575251) (xy 96.179033 86.483762) (xy 96.179039 86.483757) (xy 96.302257 86.360539) (xy 96.302262 86.360533) (xy 96.393751 86.212207) (xy 96.448568 86.046776) (xy 96.448569 86.046773) (xy 96.458999 85.944684) (xy 96.459 85.944684) (xy 96.459 85.849) (xy 95.73 85.849) (xy 95.73 86.6405) (xy 95.222 86.6405) (xy 95.222 85.467) (xy 95.242002 85.398879) (xy 95.295658 85.352386) (xy 95.348 85.341) (xy 96.459 85.341) (xy 96.459 85.245315) (xy 96.448569 85.143226) (xy 96.448568 85.143223) (xy 96.393751 84.977792) (xy 96.302262 84.829466) (xy 96.302257 84.82946) (xy 96.294745 84.821948) (xy 96.260719 84.759636) (xy 96.265784 84.688821) (xy 96.294747 84.643756) (xy 96.302658 84.635846) (xy 96.394209 84.48742) (xy 96.39516 84.484549) (xy 96.397542 84.477364) (xy 96.437957 84.418994) (xy 96.503514 84.391739) (xy 96.517145 84.391) (xy 97.033815 84.391) (xy 97.101936 84.411002) (xy 97.134683 84.441491) (xy 97.212738 84.545761) (xy 97.327448 84.631632) (xy 97.369995 84.688468) (xy 97.375059 84.759284) (xy 97.341034 84.821596) (xy 97.327448 84.833368) (xy 97.212738 84.919238) (xy 97.125112 85.036292) (xy 97.12511 85.036297) (xy 97.074011 85.173295) (xy 97.074009 85.173303) (xy 97.0675 85.23385) (xy 97.0675 86.131149) (xy 97.074009 86.191696) (xy 97.074011 86.191704) (xy 97.12511 86.328702) (xy 97.125112 86.328707) (xy 97.212738 86.445761) (xy 97.329792 86.533387) (xy 97.329794 86.533388) (xy 97.329796 86.533389) (xy 97.388875 86.555424) (xy 97.466795 86.584488) (xy 97.466803 86.58449) (xy 97.52735 86.590999) (xy 97.527355 86.590999) (xy 97.527362 86.591) (xy 97.527368 86.591) (xy 98.724632 86.591) (xy 98.724638 86.591) (xy 98.724645 86.590999) (xy 98.724649 86.590999) (xy 98.785196 86.58449) (xy 98.785199 86.584489) (xy 98.785201 86.584489) (xy 98.922204 86.533389) (xy 98.938888 86.5209) (xy 99.039261 86.445761) (xy 99.126887 86.328707) (xy 99.126887 86.328706) (xy 99.126889 86.328704) (xy 99.173556 86.203587) (xy 99.177988 86.191704) (xy 99.17799 86.191696) (xy 99.184499 86.131149) (xy 99.1845 86.131132) (xy 99.1845 85.569439) (xy 99.204502 85.501318) (xy 99.258158 85.454825) (xy 99.328432 85.444721) (xy 99.393012 85.474215) (xy 99.411368 85.49393) (xy 99.412738 85.495761) (xy 99.529792 85.583387) (xy 99.529794 85.583388) (xy 99.529796 85.583389) (xy 99.58834 85.605225) (xy 99.666795 85.634488) (xy 99.666803 85.63449) (xy 99.72735 85.640999) (xy 99.727355 85.640999) (xy 99.727362 85.641) (xy 99.727368 85.641) (xy 100.924632 85.641) (xy 100.924638 85.641) (xy 100.924645 85.640999) (xy 100.924649 85.640999) (xy 100.985196 85.63449) (xy 100.985199 85.634489) (xy 100.985201 85.634489) (xy 101.122204 85.583389) (xy 101.239261 85.495761) (xy 101.286886 85.432142) (xy 101.317317 85.391491) (xy 101.374153 85.348944) (xy 101.418185 85.341) (xy 103.318186 85.341) (xy 103.386307 85.361002) (xy 103.425427 85.400853) (xy 103.46447 85.464152) (xy 103.464475 85.464158) (xy 103.589841 85.589524) (xy 103.589847 85.589529) (xy 103.589848 85.58953) (xy 103.740762 85.682615) (xy 103.909074 85.738387) (xy 104.012955 85.749) (xy 104.614044 85.748999) (xy 104.717926 85.738387) (xy 104.886238 85.682615) (xy 105.037152 85.58953) (xy 105.16253 85.464152) (xy 105.255615 85.313238) (xy 105.311387 85.144926) (xy 105.322 85.041045) (xy 105.321999 84.644737) (xy 105.342001 84.576618) (xy 105.358899 84.555648) (xy 107.412443 82.502105) (xy 107.474755 82.468079) (xy 107.501538 82.4652) (xy 107.7363 82.4652) ) ) (filled_polygon (layer "F.Cu") (pts (xy 55.683621 79.328502) (xy 55.730114 79.382158) (xy 55.7415 79.4345) (xy 55.7415 80.001305) (xy 55.721498 80.069426) (xy 55.704595 80.0904) (xy 55.673347 80.121647) (xy 55.673342 80.121653) (xy 55.581791 80.27008) (xy 55.526937 80.435622) (xy 55.5165 80.537778) (xy 55.5165 81.137218) (xy 55.516501 81.137219) (xy 55.518082 81.152693) (xy 55.505108 81.222494) (xy 55.456456 81.2742) (xy 55.392735 81.2915) (xy 54.4345 81.2915) (xy 54.366379 81.271498) (xy 54.319886 81.217842) (xy 54.3085 81.1655) (xy 54.3085 80.408489) (xy 54.308499 80.408488) (xy 54.305562 80.371171) (xy 54.305562 80.37117) (xy 54.305562 80.371169) (xy 54.259145 80.211399) (xy 54.259143 80.211397) (xy 54.259143 80.211394) (xy 54.174455 80.068196) (xy 54.17445 80.068189) (xy 54.05681 79.950549) (xy 54.056803 79.950544) (xy 53.913605 79.865856) (xy 53.753829 79.819437) (xy 53.716511 79.8165) (xy 53.716502 79.8165) (xy 53.283498 79.8165) (xy 53.283489 79.8165) (xy 53.246171 79.819437) (xy 53.24617 79.819437) (xy 53.086394 79.865856) (xy 52.943196 79.950544) (xy 52.943189 79.950549) (xy 52.825549 80.068189) (xy 52.825544 80.068196) (xy 52.740856 80.211394) (xy 52.694437 80.37117) (xy 52.694437 80.371171) (xy 52.6915 80.408488) (xy 52.6915 81.5655) (xy 52.671498 81.633621) (xy 52.617842 81.680114) (xy 52.5655 81.6915) (xy 52.333489 81.6915) (xy 52.296171 81.694437) (xy 52.29617 81.694437) (xy 52.136394 81.740856) (xy 51.993196 81.825544) (xy 51.993189 81.825549) (xy 51.875549 81.943189) (xy 51.875544 81.943196) (xy 51.790856 82.086394) (xy 51.744437 82.24617) (xy 51.744437 82.246171) (xy 51.7415 82.283488) (xy 51.7415 83.591511) (xy 51.744437 83.628827) (xy 51.761061 83.686049) (xy 51.760857 83.757045) (xy 51.722302 83.816661) (xy 51.657636 83.845968) (xy 51.640064 83.8472) (xy 51.506255 83.8472) (xy 51.402374 83.857812) (xy 51.234061 83.913585) (xy 51.083147 84.00667) (xy 51.083141 84.006675) (xy 50.957775 84.132041) (xy 50.95777 84.132047) (xy 50.864685 84.282962) (xy 50.808913 84.451272) (xy 50.808912 84.451279) (xy 50.7983 84.555146) (xy 50.7983 85.506244) (xy 50.808912 85.610125) (xy 50.864685 85.778438) (xy 50.95777 85.929352) (xy 50.957775 85.929358) (xy 51.012261 85.983844) (xy 51.046287 86.046156) (xy 51.041222 86.116971) (xy 51.012261 86.162034) (xy 50.916547 86.257747) (xy 50.916542 86.257753) (xy 50.824991 86.40618) (xy 50.770137 86.571722) (xy 50.7597 86.673878) (xy 50.7597 87.248312) (xy 50.770137 87.35048) (xy 50.824991 87.51602) (xy 50.916542 87.664446) (xy 50.916547 87.664452) (xy 51.039847 87.787752) (xy 51.039853 87.787757) (xy 51.039854 87.787758) (xy 51.18828 87.879309) (xy 51.353819 87.934162) (xy 51.455987 87.9446) (xy 51.87646 87.944599) (xy 51.94458 87.964601) (xy 51.965555 87.981504) (xy 52.104595 88.120544) (xy 52.138621 88.182856) (xy 52.1415 88.209639) (xy 52.1415 91.945761) (xy 52.121498 92.013882) (xy 52.104595 92.034856) (xy 52.084856 92.054595) (xy 52.022544 92.088621) (xy 51.995761 92.0915) (xy 51.17135 92.0915) (xy 51.110803 92.098009) (xy 51.110795 92.098011) (xy 50.973797 92.14911) (xy 50.973792 92.149112) (xy 50.875509 92.222687) (xy 50.808989 92.247498) (xy 50.739615 92.232407) (xy 50.724491 92.222687) (xy 50.626207 92.149112) (xy 50.626202 92.14911) (xy 50.489204 92.098011) (xy 50.489196 92.098009) (xy 50.428649 92.0915) (xy 50.428638 92.0915) (xy 49.8845 92.0915) (xy 49.816379 92.071498) (xy 49.769886 92.017842) (xy 49.7585 91.9655) (xy 49.7585 84.666371) (xy 49.778502 84.59825) (xy 49.795405 84.577276) (xy 50.241431 84.13125) (xy 50.689166 83.683515) (xy 50.772174 83.559284) (xy 50.829351 83.421247) (xy 50.8585 83.274705) (xy 50.8585 83.125295) (xy 50.8585 81.066371) (xy 50.878502 80.99825) (xy 50.895405 80.977276) (xy 52.527276 79.345405) (xy 52.589588 79.311379) (xy 52.616371 79.3085) (xy 55.6155 79.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.634708 71.534902) (xy 82.681201 71.588558) (xy 82.691864 71.654376) (xy 82.6915 71.657751) (xy 82.6915 73.455049) (xy 82.698009 73.515596) (xy 82.698011 73.515604) (xy 82.74911 73.652602) (xy 82.749112 73.652607) (xy 82.836738 73.769661) (xy 82.953792 73.857287) (xy 82.953794 73.857288) (xy 82.953796 73.857289) (xy 83.0076 73.877357) (xy 83.090795 73.908388) (xy 83.090803 73.90839) (xy 83.15135 73.914899) (xy 83.151355 73.914899) (xy 83.151362 73.9149) (xy 83.151368 73.9149) (xy 84.948632 73.9149) (xy 84.948638 73.9149) (xy 84.948645 73.914899) (xy 84.948649 73.914899) (xy 85.009196 73.90839) (xy 85.009199 73.908389) (xy 85.009201 73.908389) (xy 85.146204 73.857289) (xy 85.172546 73.83757) (xy 85.263261 73.769661) (xy 85.350886 73.652608) (xy 85.350885 73.652608) (xy 85.350889 73.652604) (xy 85.395196 73.533813) (xy 85.437741 73.476981) (xy 85.504262 73.45217) (xy 85.573636 73.467262) (xy 85.605952 73.492512) (xy 85.667097 73.558934) (xy 85.844698 73.697167) (xy 85.844699 73.697168) (xy 86.042628 73.804282) (xy 86.04263 73.804283) (xy 86.255483 73.877355) (xy 86.255492 73.877357) (xy 86.336 73.890791) (xy 86.336 72.987102) (xy 86.397007 73.022325) (xy 86.524174 73.0564) (xy 86.655826 73.0564) (xy 86.782993 73.022325) (xy 86.844 72.987102) (xy 86.844 73.89079) (xy 86.924507 73.877357) (xy 86.924516 73.877355) (xy 87.137369 73.804283) (xy 87.137371 73.804282) (xy 87.3353 73.697168) (xy 87.335301 73.697167) (xy 87.512902 73.558934) (xy 87.665327 73.393355) (xy 87.754217 73.257299) (xy 87.80822 73.21121) (xy 87.878568 73.201635) (xy 87.942925 73.231612) (xy 87.965183 73.257298) (xy 88.054279 73.39367) (xy 88.206762 73.559308) (xy 88.310319 73.63991) (xy 88.384424 73.697589) (xy 88.455469 73.736036) (xy 88.505859 73.786048) (xy 88.5215 73.846849) (xy 88.5215 74.55576) (xy 88.501498 74.623881) (xy 88.484595 74.644855) (xy 86.716683 76.412766) (xy 86.716675 76.412776) (xy 86.63657 76.551522) (xy 86.636568 76.551527) (xy 86.620311 76.6122) (xy 86.613668 76.636994) (xy 86.5951 76.70629) (xy 86.5951 76.88602) (xy 86.575098 76.954141) (xy 86.535248 76.99326) (xy 86.479949 77.027368) (xy 86.479941 77.027375) (xy 86.354575 77.152741) (xy 86.35457 77.152747) (xy 86.261485 77.303662) (xy 86.205713 77.471972) (xy 86.205712 77.471979) (xy 86.1951 77.575846) (xy 86.1951 78.176944) (xy 86.205712 78.280825) (xy 86.261485 78.449138) (xy 86.35457 78.600052) (xy 86.354575 78.600058) (xy 86.479941 78.725424) (xy 86.479945 78.725427) (xy 86.479948 78.72543) (xy 86.486628 78.72955) (xy 86.535246 78.759538) (xy 86.582725 78.812323) (xy 86.5951 78.866779) (xy 86.5951 79.645768) (xy 86.575098 79.713889) (xy 86.521442 79.760382) (xy 86.451168 79.770486) (xy 86.392396 79.745731) (xy 86.356878 79.718477) (xy 86.208848 79.657161) (xy 86.131402 79.646965) (xy 86.089885 79.6415) (xy 86.089882 79.6415) (xy 85.810116 79.6415) (xy 85.810107 79.641501) (xy 85.703046 79.655595) (xy 85.69115 79.657162) (xy 85.673214 79.664591) (xy 85.602624 79.672177) (xy 85.576786 79.664591) (xy 85.558848 79.657161) (xy 85.481402 79.646965) (xy 85.439885 79.6415) (xy 85.439882 79.6415) (xy 85.160117 79.6415) (xy 85.1601 79.641502) (xy 85.113279 79.647665) (xy 85.04313 79.636724) (xy 85.007741 79.611838) (xy 84.728834 79.332931) (xy 84.728832 79.332929) (xy 84.625074 79.2636) (xy 84.509784 79.215845) (xy 84.436085 79.201185) (xy 84.387395 79.1915) (xy 84.387393 79.1915) (xy 82.912606 79.1915) (xy 82.912603 79.1915) (xy 82.790215 79.215845) (xy 82.790214 79.215845) (xy 82.779408 79.220321) (xy 82.774936 79.222174) (xy 82.681292 79.260962) (xy 82.674923 79.2636) (xy 82.571167 79.332927) (xy 82.571161 79.332932) (xy 82.298073 79.606021) (xy 82.235761 79.640047) (xy 82.192533 79.641848) (xy 82.189889 79.6415) (xy 81.910116 79.6415) (xy 81.910107 79.641501) (xy 81.803046 79.655595) (xy 81.79115 79.657162) (xy 81.643121 79.718477) (xy 81.516013 79.816013) (xy 81.508962 79.825202) (xy 81.451623 79.867069) (xy 81.380752 79.87129) (xy 81.31885 79.836525) (xy 81.285569 79.773812) (xy 81.283 79.748497) (xy 81.283 79.687815) (xy 81.272569 79.585726) (xy 81.272568 79.585723) (xy 81.217751 79.420292) (xy 81.126262 79.271966) (xy 81.126257 79.27196) (xy 81.003039 79.148742) (xy 81.003033 79.148737) (xy 80.854707 79.057248) (xy 80.689276 79.002431) (xy 80.689273 79.00243) (xy 80.587184 78.992) (xy 80.554 78.992) (xy 80.554 80.1655) (xy 80.533998 80.233621) (xy 80.480342 80.280114) (xy 80.428 80.2915) (xy 79.317 80.2915) (xy 79.317 80.387184) (xy 79.32743 80.489273) (xy 79.327431 80.489276) (xy 79.382248 80.654707) (xy 79.473737 80.803033) (xy 79.473742 80.803039) (xy 79.481254 80.810551) (xy 79.51528 80.872863) (xy 79.510215 80.943678) (xy 79.481254 80.988741) (xy 79.473347 80.996647) (xy 79.473342 80.996653) (xy 79.381791 81.14508) (xy 79.326937 81.310622) (xy 79.320758 81.371107) (xy 79.293936 81.436842) (xy 79.235833 81.47764) (xy 79.195411 81.4843) (xy 78.75951 81.4843) (xy 78.691389 81.464298) (xy 78.665874 81.44261) (xy 78.640055 81.413935) (xy 78.485552 81.301682) (xy 78.311088 81.224006) (xy 78.124287 81.1843) (xy 77.933313 81.1843) (xy 77.746511 81.224006) (xy 77.572047 81.301682) (xy 77.417544 81.413935) (xy 77.289765 81.555848) (xy 77.289758 81.555858) (xy 77.194276 81.721238) (xy 77.194273 81.721245) (xy 77.135257 81.902872) (xy 77.115296 82.0928) (xy 77.135257 82.282727) (xy 77.158638 82.354685) (xy 77.194273 82.464356) (xy 77.211129 82.493551) (xy 77.289758 82.629741) (xy 77.289765 82.629751) (xy 77.417544 82.771664) (xy 77.417543 82.771664) (xy 77.572045 82.883916) (xy 77.572044 82.883916) (xy 77.572047 82.883917) (xy 77.572048 82.883918) (xy 77.647244 82.917397) (xy 77.701339 82.963375) (xy 77.721989 83.031302) (xy 77.721343 83.045308) (xy 77.717 83.087822) (xy 77.717 83.1335) (xy 78.828 83.1335) (xy 78.896121 83.153502) (xy 78.942614 83.207158) (xy 78.954 83.2595) (xy 78.954 83.5155) (xy 78.933998 83.583621) (xy 78.880342 83.630114) (xy 78.828 83.6415) (xy 77.717 83.6415) (xy 77.717 83.687184) (xy 77.72743 83.789273) (xy 77.727431 83.789276) (xy 77.782248 83.954707) (xy 77.873737 84.103033) (xy 77.873742 84.103039) (xy 77.981254 84.210551) (xy 78.01528 84.272863) (xy 78.010215 84.343678) (xy 77.981254 84.388741) (xy 77.873347 84.496647) (xy 77.873342 84.496653) (xy 77.781791 84.64508) (xy 77.726937 84.810622) (xy 77.7165 84.912778) (xy 77.7165 85.512212) (xy 77.726937 85.61438) (xy 77.781791 85.77992) (xy 77.873342 85.928346) (xy 77.873347 85.928352) (xy 77.996647 86.051652) (xy 77.996653 86.051657) (xy 77.996654 86.051658) (xy 78.14508 86.143209) (xy 78.310619 86.198062) (xy 78.412787 86.2085) (xy 78.987212 86.208499) (xy 79.089381 86.198062) (xy 79.25492 86.143209) (xy 79.403346 86.051658) (xy 79.410903 86.0441) (xy 79.473212 86.010075) (xy 79.544028 86.015137) (xy 79.589096 86.0441) (xy 79.596654 86.051658) (xy 79.74508 86.143209) (xy 79.910619 86.198062) (xy 80.012787 86.2085) (xy 80.587212 86.208499) (xy 80.689381 86.198062) (xy 80.85492 86.143209) (xy 81.003346 86.051658) (xy 81.126406 85.928597) (xy 81.188716 85.894574) (xy 81.259532 85.899638) (xy 81.316368 85.942185) (xy 81.341179 86.008705) (xy 81.3415 86.017694) (xy 81.3415 87.289883) (xy 81.341501 87.289892) (xy 81.349478 87.35048) (xy 81.357162 87.40885) (xy 81.418374 87.556629) (xy 81.418477 87.556878) (xy 81.4415 87.586881) (xy 81.516013 87.683987) (xy 81.643124 87.781524) (xy 81.79115 87.842838) (xy 81.910115 87.8585) (xy 82.0155 87.858499) (xy 82.08362 87.8785) (xy 82.130113 87.932156) (xy 82.1415 87.984499) (xy 82.1415 89.195761) (xy 82.121498 89.263882) (xy 82.104595 89.284856) (xy 81.864856 89.524595) (xy 81.802544 89.558621) (xy 81.775761 89.5615) (xy 60.589889 89.5615) (xy 60.575211 89.565432) (xy 60.520432 89.58011) (xy 60.520432 89.580111) (xy 60.435128 89.602968) (xy 60.435126 89.602968) (xy 60.435122 89.60297) (xy 60.296376 89.683075) (xy 60.296366 89.683083) (xy 57.927238 92.052212) (xy 57.925269 92.050243) (xy 57.878924 92.084076) (xy 57.836314 92.0915) (xy 56.464239 92.0915) (xy 56.396118 92.071498) (xy 56.375148 92.054599) (xy 56.133627 91.813078) (xy 56.133625 91.813077) (xy 56.133623 91.813075) (xy 55.994877 91.73297) (xy 55.994874 91.732969) (xy 55.994873 91.732968) (xy 55.994871 91.732967) (xy 55.99487 91.732967) (xy 55.853546 91.6951) (xy 55.853546 91.695099) (xy 55.853544 91.695099) (xy 55.840114 91.6915) (xy 55.840111 91.6915) (xy 54.604239 91.6915) (xy 54.536118 91.671498) (xy 54.515144 91.654595) (xy 54.176105 91.315556) (xy 54.142079 91.253244) (xy 54.1392 91.226461) (xy 54.1392 87.955133) (xy 54.159202 87.887012) (xy 54.19905 87.847894) (xy 54.296546 87.787758) (xy 54.419858 87.664446) (xy 54.511409 87.51602) (xy 54.566262 87.350481) (xy 54.5767 87.248313) (xy 54.576699 86.673888) (xy 54.56775 86.58629) (xy 54.566262 86.571719) (xy 54.511409 86.40618) (xy 54.511406 86.406176) (xy 54.511406 86.406174) (xy 54.508308 86.39953) (xy 54.509494 86.398976) (xy 54.492774 86.337864) (xy 54.514035 86.270125) (xy 54.568543 86.224635) (xy 54.618748 86.214199) (xy 55.557344 86.214199) (xy 55.661226 86.203587) (xy 55.829538 86.147815) (xy 55.980452 86.05473) (xy 56.10583 85.929352) (xy 56.117433 85.910539) (xy 56.170215 85.863062) (xy 56.24029 85.851656) (xy 56.290819 85.869443) (xy 56.36988 85.918209) (xy 56.535419 85.973062) (xy 56.637587 85.9835) (xy 56.798426 85.983499) (xy 56.83104 85.987793) (xy 56.83858 85.989813) (xy 56.85719 85.9948) (xy 57.01741 85.9948) (xy 57.04356 85.987793) (xy 57.076173 85.983499) (xy 57.237012 85.983499) (xy 57.339181 85.973062) (xy 57.50472 85.918209) (xy 57.653146 85.826658) (xy 57.706266 85.773538) (xy 57.761059 85.718746) (xy 57.823371 85.68472) (xy 57.894186 85.689785) (xy 57.939249 85.718746) (xy 58.04676 85.826257) (xy 58.046766 85.826262) (xy 58.195092 85.917751) (xy 58.360523 85.972568) (xy 58.360526 85.972569) (xy 58.462615 85.982999) (xy 58.462615 85.983) (xy 58.5083 85.983) (xy 59.0163 85.983) (xy 59.061985 85.983) (xy 59.061984 85.982999) (xy 59.164073 85.972569) (xy 59.164076 85.972568) (xy 59.329507 85.917751) (xy 59.477833 85.826262) (xy 59.477839 85.826257) (xy 59.601057 85.703039) (xy 59.601062 85.703033) (xy 59.692551 85.554707) (xy 59.747368 85.389276) (xy 59.747369 85.389273) (xy 59.757799 85.287184) (xy 59.7578 85.287184) (xy 59.7578 85.254) (xy 59.0163 85.254) (xy 59.0163 85.983) (xy 58.5083 85.983) (xy 58.5083 84.746) (xy 59.0163 84.746) (xy 59.7578 84.746) (xy 59.7578 84.712815) (xy 59.747369 84.610726) (xy 59.747368 84.610723) (xy 59.692551 84.445292) (xy 59.601062 84.296966) (xy 59.601057 84.29696) (xy 59.477839 84.173742) (xy 59.477833 84.173737) (xy 59.329507 84.082248) (xy 59.164076 84.027431) (xy 59.164073 84.02743) (xy 59.061984 84.017) (xy 59.0163 84.017) (xy 59.0163 84.746) (xy 58.5083 84.746) (xy 58.5083 84.017) (xy 58.462615 84.017) (xy 58.360526 84.02743) (xy 58.360523 84.027431) (xy 58.195092 84.082248) (xy 58.046766 84.173737) (xy 58.04676 84.173742) (xy 57.939249 84.281254) (xy 57.876937 84.31528) (xy 57.806122 84.310215) (xy 57.761059 84.281254) (xy 57.653152 84.173347) (xy 57.653146 84.173342) (xy 57.610233 84.146873) (xy 57.50472 84.081791) (xy 57.339181 84.026938) (xy 57.339179 84.026937) (xy 57.339177 84.026937) (xy 57.237021 84.0165) (xy 56.637587 84.0165) (xy 56.535419 84.026937) (xy 56.369877 84.081792) (xy 56.260274 84.149396) (xy 56.191795 84.168133) (xy 56.124056 84.146873) (xy 56.105033 84.13125) (xy 55.980458 84.006675) (xy 55.980452 84.00667) (xy 55.944849 83.98471) (xy 55.829538 83.913585) (xy 55.733042 83.88161) (xy 55.661227 83.857813) (xy 55.66122 83.857812) (xy 55.557353 83.8472) (xy 55.557345 83.8472) (xy 55.359936 83.8472) (xy 55.291815 83.827198) (xy 55.245322 83.773542) (xy 55.235218 83.703268) (xy 55.238939 83.686047) (xy 55.255562 83.628831) (xy 55.258499 83.591511) (xy 55.2585 83.591511) (xy 55.2585 82.6345) (xy 55.278502 82.566379) (xy 55.332158 82.519886) (xy 55.3845 82.5085) (xy 55.3905 82.5085) (xy 55.458621 82.528502) (xy 55.505114 82.582158) (xy 55.5165 82.6345) (xy 55.5165 82.962212) (xy 55.526937 83.06438) (xy 55.581791 83.22992) (xy 55.673342 83.378346) (xy 55.673347 83.378352) (xy 55.796647 83.501652) (xy 55.796653 83.501657) (xy 55.796654 83.501658) (xy 55.94508 83.593209) (xy 56.110619 83.648062) (xy 56.212787 83.6585) (xy 56.787212 83.658499) (xy 56.889381 83.648062) (xy 57.05492 83.593209) (xy 57.203346 83.501658) (xy 57.326658 83.378346) (xy 57.418209 83.22992) (xy 57.473062 83.064381) (xy 57.4835 82.962213) (xy 57.483499 82.362788) (xy 57.480959 82.337928) (xy 57.473062 82.260619) (xy 57.468759 82.247632) (xy 57.418209 82.09508) (xy 57.326658 81.946654) (xy 57.326657 81.946653) (xy 57.326652 81.946647) (xy 57.2191 81.839095) (xy 57.185074 81.776783) (xy 57.190139 81.705968) (xy 57.2191 81.660905) (xy 57.326652 81.553352) (xy 57.326658 81.553346) (xy 57.418209 81.40492) (xy 57.473062 81.239381) (xy 57.4835 81.137213) (xy 57.483499 80.537788) (xy 57.473062 80.435619) (xy 57.418209 80.27008) (xy 57.326658 80.121654) (xy 57.326657 80.121653) (xy 57.326652 80.121647) (xy 57.295405 80.0904) (xy 57.261379 80.028088) (xy 57.2585 80.001305) (xy 57.2585 79.4345) (xy 57.278502 79.366379) (xy 57.332158 79.319886) (xy 57.3845 79.3085) (xy 64.433629 79.3085) (xy 64.50175 79.328502) (xy 64.522724 79.345405) (xy 67.097285 81.919966) (xy 67.221515 82.002974) (xy 67.359553 82.060151) (xy 67.359554 82.060151) (xy 67.359558 82.060153) (xy 67.420443 82.072262) (xy 67.43282 82.074724) (xy 67.432822 82.074725) (xy 67.457135 82.079561) (xy 67.506094 82.0893) (xy 67.506095 82.0893) (xy 67.506099 82.0893) (xy 71.293901 82.0893) (xy 71.293905 82.0893) (xy 71.293906 82.0893) (xy 71.367176 82.074725) (xy 71.440447 82.060151) (xy 71.578484 82.002974) (xy 71.702715 81.919966) (xy 73.934866 79.687815) (xy 79.317 79.687815) (xy 79.317 79.7835) (xy 80.046 79.7835) (xy 80.046 78.992) (xy 80.012815 78.992) (xy 79.910726 79.00243) (xy 79.910723 79.002431) (xy 79.745292 79.057248) (xy 79.596966 79.148737) (xy 79.59696 79.148742) (xy 79.473742 79.27196) (xy 79.473737 79.271966) (xy 79.382248 79.420292) (xy 79.327431 79.585723) (xy 79.32743 79.585726) (xy 79.317 79.687815) (xy 73.934866 79.687815) (xy 74.111366 79.511315) (xy 74.194374 79.387084) (xy 74.21443 79.338663) (xy 74.258978 79.283383) (xy 74.326342 79.260962) (xy 74.355412 79.263302) (xy 74.372494 79.2667) (xy 74.372495 79.2667) (xy 74.372499 79.2667) (xy 75.963255 79.2667) (xy 75.963259 79.2667) (xy 75.96326 79.2667) (xy 76.03653 79.252125) (xy 76.109801 79.237551) (xy 76.247838 79.180374) (xy 76.372069 79.097366) (xy 77.292519 78.176916) (xy 83.6956 78.176916) (xy 83.706205 78.280718) (xy 83.706206 78.280721) (xy 83.761942 78.448925) (xy 83.854965 78.599739) (xy 83.85497 78.599745) (xy 83.980254 78.725029) (xy 83.98026 78.725034) (xy 84.131074 78.818057) (xy 84.299278 78.873793) (xy 84.299281 78.873794) (xy 84.403083 78.884399) (xy 84.403083 78.8844) (xy 84.4496 78.8844) (xy 84.9576 78.8844) (xy 85.004117 78.8844) (xy 85.004116 78.884399) (xy 85.107918 78.873794) (xy 85.107921 78.873793) (xy 85.276125 78.818057) (xy 85.426939 78.725034) (xy 85.426945 78.725029) (xy 85.552229 78.599745) (xy 85.552234 78.599739) (xy 85.645257 78.448925) (xy 85.700993 78.280721) (xy 85.700994 78.280718) (xy 85.711599 78.176916) (xy 85.7116 78.176916) (xy 85.7116 78.1304) (xy 84.9576 78.1304) (xy 84.9576 78.8844) (xy 84.4496 78.8844) (xy 84.4496 78.1304) (xy 83.6956 78.1304) (xy 83.6956 78.176916) (xy 77.292519 78.176916) (xy 77.893552 77.575883) (xy 83.6956 77.575883) (xy 83.6956 77.6224) (xy 84.4496 77.6224) (xy 84.9576 77.6224) (xy 85.7116 77.6224) (xy 85.7116 77.575883) (xy 85.700994 77.472081) (xy 85.700993 77.472078) (xy 85.645257 77.303874) (xy 85.552234 77.15306) (xy 85.552229 77.153054) (xy 85.426945 77.02777) (xy 85.426939 77.027765) (xy 85.276125 76.934742) (xy 85.107921 76.879006) (xy 85.107918 76.879005) (xy 85.004116 76.8684) (xy 84.9576 76.8684) (xy 84.9576 77.6224) (xy 84.4496 77.6224) (xy 84.4496 76.8684) (xy 84.403083 76.8684) (xy 84.299281 76.879005) (xy 84.299278 76.879006) (xy 84.131074 76.934742) (xy 83.98026 77.027765) (xy 83.980254 77.02777) (xy 83.85497 77.153054) (xy 83.854965 77.15306) (xy 83.761942 77.303874) (xy 83.706206 77.472078) (xy 83.706205 77.472081) (xy 83.6956 77.575883) (xy 77.893552 77.575883) (xy 82.001665 73.46777) (xy 82.074384 73.358938) (xy 82.084674 73.343538) (xy 82.12947 73.235391) (xy 82.141851 73.205501) (xy 82.170935 73.059285) (xy 82.171 73.05896) (xy 82.171 71.642594) (xy 82.191002 71.574473) (xy 82.207926 71.553477) (xy 82.209626 71.551778) (xy 82.271948 71.517772) (xy 82.298695 71.5149) (xy 82.566587 71.5149) ) ) (filled_polygon (layer "F.Cu") (pts (xy 88.093882 86.158502) (xy 88.114856 86.175405) (xy 88.354595 86.415144) (xy 88.388621 86.477456) (xy 88.3915 86.504239) (xy 88.3915 88.219635) (xy 88.371498 88.287756) (xy 88.317842 88.334249) (xy 88.247568 88.344353) (xy 88.223567 88.337432) (xy 88.223368 88.338046) (xy 88.217093 88.336007) (xy 88.030287 88.2963) (xy 87.839313 88.2963) (xy 87.652511 88.336006) (xy 87.552336 88.380607) (xy 87.501087 88.3915) (xy 86.0345 88.3915) (xy 85.966379 88.371498) (xy 85.919886 88.317842) (xy 85.9085 88.2655) (xy 85.9085 87.916377) (xy 85.928502 87.848256) (xy 85.982158 87.801763) (xy 86.052432 87.791659) (xy 86.117012 87.821153) (xy 86.117578 87.821646) (xy 86.15 87.850079) (xy 86.208718 87.84235) (xy 86.208719 87.842349) (xy 86.356621 87.781087) (xy 86.356629 87.781082) (xy 86.48363 87.68363) (xy 86.581082 87.556629) (xy 86.581087 87.556621) (xy 86.64235 87.408718) (xy 86.657999 87.289849) (xy 86.658 87.28984) (xy 86.658 86.8125) (xy 86.134499 86.8125) (xy 86.066378 86.792498) (xy 86.019885 86.738842) (xy 86.008499 86.6865) (xy 86.008499 86.5385) (xy 86.028501 86.470379) (xy 86.082157 86.423886) (xy 86.134499 86.4125) (xy 86.657999 86.4125) (xy 86.657999 86.2645) (xy 86.678001 86.196379) (xy 86.731657 86.149886) (xy 86.783999 86.1385) (xy 88.025761 86.1385) ) ) (filled_polygon (layer "F.Cu") (pts (xy 90.413621 57.428502) (xy 90.460114 57.482158) (xy 90.4715 57.5345) (xy 90.4715 57.807212) (xy 90.481937 57.90938) (xy 90.536791 58.07492) (xy 90.628342 58.223346) (xy 90.628347 58.223352) (xy 90.751647 58.346652) (xy 90.751653 58.346657) (xy 90.751654 58.346658) (xy 90.769214 58.357489) (xy 90.816691 58.410274) (xy 90.828094 58.480349) (xy 90.810307 58.530875) (xy 90.718343 58.679972) (xy 90.662606 58.848178) (xy 90.662605 58.848181) (xy 90.652 58.951983) (xy 90.652 58.9985) (xy 93.788 58.9985) (xy 93.856121 59.018502) (xy 93.902614 59.072158) (xy 93.914 59.1245) (xy 93.914 59.3805) (xy 93.893998 59.448621) (xy 93.840342 59.495114) (xy 93.788 59.5065) (xy 91.914 59.5065) (xy 91.914 60.2605) (xy 91.951905 60.2605) (xy 92.020026 60.280502) (xy 92.066519 60.334158) (xy 92.076623 60.404432) (xy 92.047129 60.469012) (xy 92.041013 60.475581) (xy 91.920917 60.595678) (xy 91.809499 60.707096) (xy 91.747187 60.741121) (xy 91.720404 60.744) (xy 91.359455 60.744) (xy 91.255574 60.754612) (xy 91.087261 60.810385) (xy 90.936347 60.90347) (xy 90.936341 60.903475) (xy 90.810975 61.028841) (xy 90.810968 61.02885) (xy 90.792282 61.059146) (xy 90.739496 61.106625) (xy 90.696074 61.116492) (xy 90.696262 61.118394) (xy 90.690103 61.119) (xy 90.617068 61.133528) (xy 90.567715 61.143345) (xy 90.567713 61.143345) (xy 90.567712 61.143346) (xy 90.452423 61.191101) (xy 90.348671 61.260426) (xy 90.348664 61.260431) (xy 89.979501 61.629595) (xy 89.917189 61.663621) (xy 89.890406 61.6665) (xy 86.024595 61.6665) (xy 85.956474 61.646498) (xy 85.935504 61.6296) (xy 85.409658 61.103753) (xy 85.375635 61.041444) (xy 85.380699 60.970629) (xy 85.423246 60.913793) (xy 85.489766 60.888982) (xy 85.55914 60.904073) (xy 85.572816 60.912724) (xy 85.589329 60.924722) (xy 85.781959 61.022872) (xy 85.987571 61.08968) (xy 86.201103 61.1235) (xy 86.201106 61.1235) (xy 86.417294 61.1235) (xy 86.417297 61.1235) (xy 86.630829 61.08968) (xy 86.836441 61.022872) (xy 87.029071 60.924722) (xy 87.203975 60.797647) (xy 87.288333 60.713288) (xy 87.350643 60.679265) (xy 87.421459 60.684329) (xy 87.478295 60.726875) (xy 87.495483 60.758352) (xy 87.533756 60.860966) (xy 87.621295 60.977904) (xy 87.738234 61.065444) (xy 87.875106 61.116494) (xy 87.935602 61.122999) (xy 87.935615 61.123) (xy 88.5952 61.123) (xy 88.5952 60.04225) (xy 88.652347 60.075245) (xy 88.782057 60.11) (xy 88.916343 60.11) (xy 89.046053 60.075245) (xy 89.1032 60.04225) (xy 89.1032 61.123) (xy 89.762785 61.123) (xy 89.762797 61.122999) (xy 89.823293 61.116494) (xy 89.960164 61.065444) (xy 89.960165 61.065444) (xy 90.077104 60.977904) (xy 90.164644 60.860965) (xy 90.164644 60.860964) (xy 90.215694 60.724093) (xy 90.222199 60.663597) (xy 90.2222 60.663585) (xy 90.2222 59.854) (xy 89.291451 59.854) (xy 89.324445 59.796853) (xy 89.3592 59.667143) (xy 89.3592 59.553016) (xy 90.652 59.553016) (xy 90.662605 59.656818) (xy 90.662606 59.656821) (xy 90.718342 59.825025) (xy 90.811365 59.975839) (xy 90.81137 59.975845) (xy 90.936654 60.101129) (xy 90.93666 60.101134) (xy 91.087474 60.194157) (xy 91.255678 60.249893) (xy 91.255681 60.249894) (xy 91.359483 60.260499) (xy 91.359483 60.2605) (xy 91.406 60.2605) (xy 91.406 59.5065) (xy 90.652 59.5065) (xy 90.652 59.553016) (xy 89.3592 59.553016) (xy 89.3592 59.532857) (xy 89.324445 59.403147) (xy 89.291451 59.346) (xy 90.2222 59.346) (xy 90.2222 58.536414) (xy 90.222199 58.536402) (xy 90.215694 58.475906) (xy 90.164644 58.339035) (xy 90.164644 58.339034) (xy 90.077104 58.222095) (xy 89.960165 58.134555) (xy 89.823293 58.083505) (xy 89.762797 58.077) (xy 89.1032 58.077) (xy 89.1032 59.157749) (xy 89.046053 59.124755) (xy 88.916343 59.09) (xy 88.782057 59.09) (xy 88.652347 59.124755) (xy 88.5952 59.157749) (xy 88.5952 58.077) (xy 87.935602 58.077) (xy 87.875106 58.083505) (xy 87.738235 58.134555) (xy 87.706218 58.158523) (xy 87.639698 58.183333) (xy 87.570324 58.168241) (xy 87.520122 58.118039) (xy 87.510879 58.096595) (xy 87.475498 57.987703) (xy 87.385566 57.811202) (xy 87.385562 57.811197) (xy 87.385561 57.811194) (xy 87.382978 57.806978) (xy 87.384583 57.805994) (xy 87.36343 57.746697) (xy 87.379515 57.677546) (xy 87.400126 57.650421) (xy 87.605144 57.445404) (xy 87.667456 57.411379) (xy 87.694239 57.4085) (xy 90.3455 57.4085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 60.490555 58.759702) (xy 60.497935 58.764826) (xy 60.508184 58.772498) (xy 60.520996 58.782089) (xy 60.657995 58.833188) (xy 60.658003 58.83319) (xy 60.71855 58.839699) (xy 60.718555 58.839699) (xy 60.718562 58.8397) (xy 61.301122 58.8397) (xy 61.369243 58.859702) (xy 61.415736 58.913358) (xy 61.42584 58.983632) (xy 61.396346 59.048212) (xy 61.390217 59.054795) (xy 59.248995 61.196016) (xy 59.186683 61.230042) (xy 59.115867 61.224977) (xy 59.059032 61.18243) (xy 59.034221 61.11591) (xy 59.0339 61.106921) (xy 59.0339 58.947478) (xy 59.053902 58.879357) (xy 59.070805 58.858383) (xy 59.152583 58.776605) (xy 59.214895 58.742579) (xy 59.241678 58.7397) (xy 60.422434 58.7397) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 115.002748 54.50062) (xy 115.386661 54.517382) (xy 115.39761 54.518339) (xy 115.775883 54.56814) (xy 115.786699 54.570048) (xy 116.159184 54.652626) (xy 116.169802 54.655471) (xy 116.533668 54.770197) (xy 116.543997 54.773956) (xy 116.896494 54.919965) (xy 116.906456 54.924611) (xy 117.244875 55.100781) (xy 117.254378 55.106267) (xy 117.576174 55.311274) (xy 117.585166 55.31757) (xy 117.887863 55.549839) (xy 117.896283 55.556904) (xy 118.17757 55.814656) (xy 118.185343 55.822429) (xy 118.443095 56.103716) (xy 118.45016 56.112136) (xy 118.682429 56.414833) (xy 118.688728 56.423829) (xy 118.893727 56.745613) (xy 118.899223 56.755133) (xy 119.075388 57.093543) (xy 119.080034 57.103505) (xy 119.226043 57.456002) (xy 119.229802 57.466331) (xy 119.344528 57.830197) (xy 119.347373 57.840815) (xy 119.42995 58.213296) (xy 119.431859 58.224121) (xy 119.481659 58.602388) (xy 119.482617 58.613338) (xy 119.49938 58.997251) (xy 119.4995 59.002747) (xy 119.4995 130.497252) (xy 119.49938 130.502748) (xy 119.482617 130.886661) (xy 119.481659 130.897611) (xy 119.431859 131.275878) (xy 119.42995 131.286703) (xy 119.347373 131.659184) (xy 119.344528 131.669802) (xy 119.229802 132.033668) (xy 119.226043 132.043997) (xy 119.080034 132.396494) (xy 119.075388 132.406456) (xy 118.899223 132.744866) (xy 118.893727 132.754386) (xy 118.688734 133.076162) (xy 118.682429 133.085166) (xy 118.45016 133.387863) (xy 118.443095 133.396283) (xy 118.185343 133.67757) (xy 118.17757 133.685343) (xy 117.896283 133.943095) (xy 117.887863 133.95016) (xy 117.585166 134.182429) (xy 117.576162 134.188734) (xy 117.254386 134.393727) (xy 117.244866 134.399223) (xy 116.906456 134.575388) (xy 116.896494 134.580034) (xy 116.543997 134.726043) (xy 116.533668 134.729802) (xy 116.169802 134.844528) (xy 116.159184 134.847373) (xy 115.786703 134.92995) (xy 115.775878 134.931859) (xy 115.397611 134.981659) (xy 115.386661 134.982617) (xy 115.002748 134.99938) (xy 114.997252 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.216007 131.8618) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.146101 131.629752) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.041623 131.074466) (xy 38.018339 130.89761) (xy 38.017382 130.886661) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 128.4732) (xy 57.974281 128.4732) (xy 57.993528 128.717757) (xy 58.050795 128.956292) (xy 58.144673 129.182932) (xy 58.144674 129.182933) (xy 58.272845 129.392092) (xy 58.272846 129.392094) (xy 58.272848 129.392096) (xy 58.432167 129.578633) (xy 58.618704 129.737952) (xy 58.827868 129.866127) (xy 59.054508 129.960005) (xy 59.293043 130.017272) (xy 59.5376 130.036519) (xy 59.782157 130.017272) (xy 60.020692 129.960005) (xy 60.247332 129.866127) (xy 60.456496 129.737952) (xy 60.643033 129.578633) (xy 60.71179 129.498129) (xy 60.77124 129.459321) (xy 60.842234 129.458815) (xy 60.902233 129.496771) (xy 60.903367 129.498079) (xy 60.972167 129.578633) (xy 61.158704 129.737952) (xy 61.367868 129.866127) (xy 61.594508 129.960005) (xy 61.833043 130.017272) (xy 62.0776 130.036519) (xy 62.322157 130.017272) (xy 62.560692 129.960005) (xy 62.787332 129.866127) (xy 62.965299 129.757069) (xy 63.03383 129.738532) (xy 63.101506 129.759988) (xy 63.131999 129.788993) (xy 63.204697 129.886105) (xy 63.321634 129.973644) (xy 63.458506 130.024694) (xy 63.519002 130.031199) (xy 63.519015 130.0312) (xy 64.3636 130.0312) (xy 64.3636 128.961638) (xy 64.405308 128.985718) (xy 64.545191 129.0232) (xy 64.690009 129.0232) (xy 64.829892 128.985718) (xy 64.8716 128.961638) (xy 64.8716 130.0312) (xy 65.716185 130.0312) (xy 65.716197 130.031199) (xy 65.776693 130.024694) (xy 65.913564 129.973644) (xy 65.913565 129.973644) (xy 66.030504 129.886104) (xy 66.118044 129.769165) (xy 66.118044 129.769164) (xy 66.169094 129.632293) (xy 66.175599 129.571797) (xy 66.1756 129.571785) (xy 66.1756 128.7272) (xy 65.106038 128.7272) (xy 65.130118 128.685492) (xy 65.1676 128.545609) (xy 65.1676 128.400791) (xy 65.130118 128.260908) (xy 65.106038 128.2192) (xy 66.1756 128.2192) (xy 66.1756 127.374614) (xy 66.175599 127.374602) (xy 66.169094 127.314106) (xy 66.118044 127.177235) (xy 66.118044 127.177234) (xy 66.030504 127.060295) (xy 65.913565 126.972755) (xy 65.776693 126.921705) (xy 65.716197 126.9152) (xy 64.8716 126.9152) (xy 64.8716 127.984761) (xy 64.829892 127.960682) (xy 64.690009 127.9232) (xy 64.545191 127.9232) (xy 64.405308 127.960682) (xy 64.3636 127.984761) (xy 64.3636 126.9152) (xy 63.519002 126.9152) (xy 63.458506 126.921705) (xy 63.321635 126.972755) (xy 63.321634 126.972755) (xy 63.204695 127.060296) (xy 63.131998 127.157406) (xy 63.075162 127.199952) (xy 63.004346 127.205016) (xy 62.965297 127.189329) (xy 62.879914 127.137007) (xy 62.787332 127.080273) (xy 62.560692 126.986395) (xy 62.322157 126.929128) (xy 62.0776 126.909881) (xy 61.833043 126.929128) (xy 61.594507 126.986395) (xy 61.494548 127.0278) (xy 61.416097 127.060296) (xy 61.367866 127.080274) (xy 61.158707 127.208445) (xy 60.972167 127.367767) (xy 60.903411 127.448269) (xy 60.84396 127.487078) (xy 60.772965 127.487584) (xy 60.712967 127.449628) (xy 60.711789 127.448269) (xy 60.699689 127.434103) (xy 60.643033 127.367767) (xy 60.456496 127.208448) (xy 60.456494 127.208446) (xy 60.456492 127.208445) (xy 60.333856 127.133294) (xy 60.247332 127.080273) (xy 60.020692 126.986395) (xy 59.782157 126.929128) (xy 59.5376 126.909881) (xy 59.293043 126.929128) (xy 59.054507 126.986395) (xy 58.954548 127.0278) (xy 58.876097 127.060296) (xy 58.827866 127.080274) (xy 58.618707 127.208445) (xy 58.432167 127.367767) (xy 58.272845 127.554307) (xy 58.144674 127.763466) (xy 58.050795 127.990107) (xy 58.01226 128.150617) (xy 57.993528 128.228643) (xy 57.974281 128.4732) (xy 38.0005 128.4732) (xy 38.0005 121.034602) (xy 39.262 121.034602) (xy 39.262 121.6792) (xy 40.189297 121.6792) (xy 40.154075 121.740207) (xy 40.12 121.867374) (xy 40.12 121.999026) (xy 40.154075 122.126193) (xy 40.189297 122.1872) (xy 39.262 122.1872) (xy 39.262 122.831797) (xy 39.268505 122.892293) (xy 39.319555 123.029164) (xy 39.319555 123.029165) (xy 39.407095 123.146104) (xy 39.524034 123.233644) (xy 39.660906 123.284694) (xy 39.721402 123.291199) (xy 39.721415 123.2912) (xy 40.366 123.2912) (xy 40.366 122.363902) (xy 40.427007 122.399125) (xy 40.554174 122.4332) (xy 40.685826 122.4332) (xy 40.812993 122.399125) (xy 40.874 122.363902) (xy 40.874 123.2912) (xy 41.518585 123.2912) (xy 41.518597 123.291199) (xy 41.579093 123.284694) (xy 41.715964 123.233644) (xy 41.715965 123.233644) (xy 41.832904 123.146104) (xy 41.920444 123.029165) (xy 41.964618 122.91073) (xy 42.007165 122.853894) (xy 42.073685 122.829083) (xy 42.143059 122.844174) (xy 42.175372 122.869422) (xy 42.231716 122.930627) (xy 42.236762 122.936108) (xy 42.291331 122.978581) (xy 42.414424 123.074389) (xy 42.612426 123.181542) (xy 42.612427 123.181542) (xy 42.612428 123.181543) (xy 42.724227 123.219923) (xy 42.825365 123.254644) (xy 43.047431 123.2917) (xy 43.047435 123.2917) (xy 43.272565 123.2917) (xy 43.272569 123.2917) (xy 43.494635 123.254644) (xy 43.707574 123.181542) (xy 43.905576 123.074389) (xy 44.08324 122.936106) (xy 44.235722 122.770468) (xy 44.324518 122.634554) (xy 44.37852 122.588468) (xy 44.448868 122.578892) (xy 44.513225 122.608869) (xy 44.53548 122.634553) (xy 44.537152 122.637111) (xy 44.624275 122.770465) (xy 44.624279 122.77047) (xy 44.715374 122.869424) (xy 44.771712 122.930623) (xy 44.776762 122.936108) (xy 44.831331 122.978581) (xy 44.954424 123.074389) (xy 45.152426 123.181542) (xy 45.152427 123.181542) (xy 45.152428 123.181543) (xy 45.264227 123.219923) (xy 45.365365 123.254644) (xy 45.587431 123.2917) (xy 45.587435 123.2917) (xy 45.812565 123.2917) (xy 45.812569 123.2917) (xy 46.034635 123.254644) (xy 46.247574 123.181542) (xy 46.445576 123.074389) (xy 46.62324 122.936106) (xy 46.775722 122.770468) (xy 46.89886 122.581991) (xy 46.989296 122.375816) (xy 47.044564 122.157568) (xy 47.063156 121.9332) (xy 47.044564 121.708832) (xy 46.989296 121.490584) (xy 46.89886 121.284409) (xy 46.89214 121.274124) (xy 46.775724 121.095934) (xy 46.77572 121.095929) (xy 46.623237 120.930291) (xy 46.503679 120.837235) (xy 46.445576 120.792011) (xy 46.247574 120.684858) (xy 46.247572 120.684857) (xy 46.247571 120.684856) (xy 46.034639 120.611757) (xy 46.03463 120.611755) (xy 45.990476 120.604387) (xy 45.812569 120.5747) (xy 45.587431 120.5747) (xy 45.439211 120.599433) (xy 45.365369 120.611755) (xy 45.36536 120.611757) (xy 45.152428 120.684856) (xy 45.152426 120.684858) (xy 45.018894 120.757122) (xy 44.954426 120.79201) (xy 44.954424 120.792011) (xy 44.776762 120.930291) (xy 44.624279 121.095929) (xy 44.535483 121.231843) (xy 44.481479 121.277931) (xy 44.411131 121.287506) (xy 44.346774 121.257529) (xy 44.324517 121.231843) (xy 44.23572 121.095929) (xy 44.083237 120.930291) (xy 43.963679 120.837235) (xy 43.905576 120.792011) (xy 43.707574 120.684858) (xy 43.707572 120.684857) (xy 43.707571 120.684856) (xy 43.494639 120.611757) (xy 43.49463 120.611755) (xy 43.450476 120.604387) (xy 43.272569 120.5747) (xy 43.047431 120.5747) (xy 42.899211 120.599433) (xy 42.825369 120.611755) (xy 42.82536 120.611757) (xy 42.612428 120.684856) (xy 42.612426 120.684858) (xy 42.478894 120.757122) (xy 42.414426 120.79201) (xy 42.414424 120.792011) (xy 42.236759 120.930294) (xy 42.175374 120.996975) (xy 42.114521 121.033546) (xy 42.043557 121.031411) (xy 41.985012 120.991249) (xy 41.964618 120.95567) (xy 41.920443 120.837233) (xy 41.832904 120.720295) (xy 41.715965 120.632755) (xy 41.579093 120.581705) (xy 41.518597 120.5752) (xy 40.874 120.5752) (xy 40.874 121.502497) (xy 40.812993 121.467275) (xy 40.685826 121.4332) (xy 40.554174 121.4332) (xy 40.427007 121.467275) (xy 40.366 121.502497) (xy 40.366 120.5752) (xy 39.721402 120.5752) (xy 39.660906 120.581705) (xy 39.524035 120.632755) (xy 39.524034 120.632755) (xy 39.407095 120.720295) (xy 39.319555 120.837234) (xy 39.319555 120.837235) (xy 39.268505 120.974106) (xy 39.262 121.034602) (xy 38.0005 121.034602) (xy 38.0005 119.20135) (xy 56.3665 119.20135) (xy 56.3665 120.998649) (xy 56.373009 121.059196) (xy 56.373011 121.059204) (xy 56.42411 121.196202) (xy 56.424112 121.196207) (xy 56.511738 121.313261) (xy 56.628792 121.400887) (xy 56.628794 121.400888) (xy 56.628796 121.400889) (xy 56.6839 121.421442) (xy 56.765795 121.451988) (xy 56.765803 121.45199) (xy 56.82635 121.458499) (xy 56.826355 121.458499) (xy 56.826362 121.4585) (xy 56.826368 121.4585) (xy 58.623632 121.4585) (xy 58.623638 121.4585) (xy 58.623645 121.458499) (xy 58.623649 121.458499) (xy 58.684196 121.45199) (xy 58.684199 121.451989) (xy 58.684201 121.451989) (xy 58.821204 121.400889) (xy 58.891399 121.348342) (xy 58.938261 121.313261) (xy 59.025886 121.196208) (xy 59.025885 121.196208) (xy 59.025889 121.196204) (xy 59.069999 121.077939) (xy 59.112545 121.021107) (xy 59.179066 120.996296) (xy 59.24844 121.011388) (xy 59.280753 121.036635) (xy 59.301529 121.059204) (xy 59.341762 121.102908) (xy 59.396331 121.145381) (xy 59.519424 121.241189) (xy 59.717426 121.348342) (xy 59.717427 121.348342) (xy 59.717428 121.348343) (xy 59.829227 121.386723) (xy 59.930365 121.421444) (xy 60.152431 121.4585) (xy 60.152435 121.4585) (xy 60.377565 121.4585) (xy 60.377569 121.4585) (xy 60.599635 121.421444) (xy 60.812574 121.348342) (xy 61.010576 121.241189) (xy 61.18824 121.102906) (xy 61.340722 120.937268) (xy 61.46386 120.748791) (xy 61.554296 120.542616) (xy 61.609564 120.324368) (xy 61.628156 120.1) (xy 61.609564 119.875632) (xy 61.594242 119.815127) (xy 61.554297 119.657387) (xy 61.554296 119.657386) (xy 61.554296 119.657384) (xy 61.46386 119.451209) (xy 61.4465 119.424637) (xy 61.340724 119.262734) (xy 61.34072 119.262729) (xy 61.188237 119.097091) (xy 61.068367 119.003792) (xy 61.010576 118.958811) (xy 60.812574 118.851658) (xy 60.812572 118.851657) (xy 60.812571 118.851656) (xy 60.599639 118.778557) (xy 60.59963 118.778555) (xy 60.555476 118.771187) (xy 60.377569 118.7415) (xy 60.152431 118.7415) (xy 60.004211 118.766233) (xy 59.930369 118.778555) (xy 59.93036 118.778557) (xy 59.717428 118.851656) (xy 59.717426 118.851658) (xy 59.519426 118.95881) (xy 59.519424 118.958811) (xy 59.341762 119.097091) (xy 59.280754 119.163363) (xy 59.219901 119.199933) (xy 59.148936 119.197798) (xy 59.090391 119.157636) (xy 59.069999 119.122057) (xy 59.045047 119.055159) (xy 59.025889 119.003796) (xy 59.025888 119.003794) (xy 59.025887 119.003792) (xy 58.938261 118.886738) (xy 58.821207 118.799112) (xy 58.821202 118.79911) (xy 58.684204 118.748011) (xy 58.684196 118.748009) (xy 58.623649 118.7415) (xy 58.623638 118.7415) (xy 56.826362 118.7415) (xy 56.82635 118.7415) (xy 56.765803 118.748009) (xy 56.765795 118.748011) (xy 56.628797 118.79911) (xy 56.628792 118.799112) (xy 56.511738 118.886738) (xy 56.424112 119.003792) (xy 56.42411 119.003797) (xy 56.373011 119.140795) (xy 56.373009 119.140803) (xy 56.3665 119.20135) (xy 38.0005 119.20135) (xy 38.0005 113.840833) (xy 38.020502 113.772712) (xy 38.074158 113.726219) (xy 38.144432 113.716115) (xy 38.209012 113.745609) (xy 38.231983 113.771918) (xy 38.294275 113.867265) (xy 38.294279 113.86727) (xy 38.446762 114.032908) (xy 38.482108 114.060419) (xy 38.624424 114.171189) (xy 38.822426 114.278342) (xy 38.822427 114.278342) (xy 38.822428 114.278343) (xy 38.929318 114.315038) (xy 39.035365 114.351444) (xy 39.257431 114.3885) (xy 39.257435 114.3885) (xy 39.482565 114.3885) (xy 39.482569 114.3885) (xy 39.704635 114.351444) (xy 39.917574 114.278342) (xy 40.115576 114.171189) (xy 40.29324 114.032906) (xy 40.445722 113.867268) (xy 40.534518 113.731354) (xy 40.58852 113.685268) (xy 40.658868 113.675692) (xy 40.723225 113.705669) (xy 40.74548 113.731353) (xy 40.771983 113.771918) (xy 40.834275 113.867265) (xy 40.834279 113.86727) (xy 40.986762 114.032908) (xy 41.022108 114.060419) (xy 41.164424 114.171189) (xy 41.362426 114.278342) (xy 41.362427 114.278342) (xy 41.362428 114.278343) (xy 41.469318 114.315038) (xy 41.575365 114.351444) (xy 41.797431 114.3885) (xy 41.797435 114.3885) (xy 42.022565 114.3885) (xy 42.022569 114.3885) (xy 42.244635 114.351444) (xy 42.457574 114.278342) (xy 42.655576 114.171189) (xy 42.83324 114.032906) (xy 42.894626 113.966222) (xy 42.955476 113.929654) (xy 43.026441 113.931787) (xy 43.084986 113.971949) (xy 43.10538 114.007529) (xy 43.149553 114.125961) (xy 43.149555 114.125965) (xy 43.237095 114.242904) (xy 43.354034 114.330444) (xy 43.490906 114.381494) (xy 43.551402 114.387999) (xy 43.551415 114.388) (xy 44.196 114.388) (xy 44.196 113.47225) (xy 44.253147 113.505245) (xy 44.382857 113.54) (xy 44.517143 113.54) (xy 44.646853 113.505245) (xy 44.704 113.47225) (xy 44.704 114.388) (xy 45.348585 114.388) (xy 45.348597 114.387999) (xy 45.409093 114.381494) (xy 45.545964 114.330444) (xy 45.545965 114.330444) (xy 45.662904 114.242904) (xy 45.750444 114.125965) (xy 45.794618 114.00753) (xy 45.837165 113.950694) (xy 45.903685 113.925883) (xy 45.973059 113.940974) (xy 46.005372 113.966222) (xy 46.033165 113.996412) (xy 46.066762 114.032908) (xy 46.102108 114.060419) (xy 46.244424 114.171189) (xy 46.442426 114.278342) (xy 46.442427 114.278342) (xy 46.442428 114.278343) (xy 46.549318 114.315038) (xy 46.655365 114.351444) (xy 46.877431 114.3885) (xy 46.877435 114.3885) (xy 47.102565 114.3885) (xy 47.102569 114.3885) (xy 47.324635 114.351444) (xy 47.537574 114.278342) (xy 47.735576 114.171189) (xy 47.91324 114.032906) (xy 48.065722 113.867268) (xy 48.154518 113.731354) (xy 48.20852 113.685268) (xy 48.278868 113.675692) (xy 48.343225 113.705669) (xy 48.36548 113.731353) (xy 48.391983 113.771918) (xy 48.454275 113.867265) (xy 48.454279 113.86727) (xy 48.606762 114.032908) (xy 48.642108 114.060419) (xy 48.784424 114.171189) (xy 48.982426 114.278342) (xy 48.982427 114.278342) (xy 48.982428 114.278343) (xy 49.089318 114.315038) (xy 49.195365 114.351444) (xy 49.417431 114.3885) (xy 49.417435 114.3885) (xy 49.642565 114.3885) (xy 49.642569 114.3885) (xy 49.864635 114.351444) (xy 50.077574 114.278342) (xy 50.275576 114.171189) (xy 50.45324 114.032906) (xy 50.605722 113.867268) (xy 50.694518 113.731354) (xy 50.74852 113.685268) (xy 50.818868 113.675692) (xy 50.883225 113.705669) (xy 50.90548 113.731353) (xy 50.931983 113.771918) (xy 50.994275 113.867265) (xy 50.994279 113.86727) (xy 51.146762 114.032908) (xy 51.182108 114.060419) (xy 51.324424 114.171189) (xy 51.522426 114.278342) (xy 51.522427 114.278342) (xy 51.522428 114.278343) (xy 51.629318 114.315038) (xy 51.735365 114.351444) (xy 51.957431 114.3885) (xy 51.957435 114.3885) (xy 52.182565 114.3885) (xy 52.182569 114.3885) (xy 52.404635 114.351444) (xy 52.617574 114.278342) (xy 52.815576 114.171189) (xy 52.99324 114.032906) (xy 53.145722 113.867268) (xy 53.234518 113.731354) (xy 53.28852 113.685268) (xy 53.358868 113.675692) (xy 53.423225 113.705669) (xy 53.44548 113.731353) (xy 53.471983 113.771918) (xy 53.534275 113.867265) (xy 53.534279 113.86727) (xy 53.686762 114.032908) (xy 53.722108 114.060419) (xy 53.864424 114.171189) (xy 54.062426 114.278342) (xy 54.062427 114.278342) (xy 54.062428 114.278343) (xy 54.169318 114.315038) (xy 54.275365 114.351444) (xy 54.497431 114.3885) (xy 54.497435 114.3885) (xy 54.722565 114.3885) (xy 54.722569 114.3885) (xy 54.944635 114.351444) (xy 55.157574 114.278342) (xy 55.355576 114.171189) (xy 55.53324 114.032906) (xy 55.594626 113.966222) (xy 55.655476 113.929654) (xy 55.726441 113.931787) (xy 55.784986 113.971949) (xy 55.80538 114.007529) (xy 55.849553 114.125961) (xy 55.849555 114.125965) (xy 55.937095 114.242904) (xy 56.054034 114.330444) (xy 56.190906 114.381494) (xy 56.251402 114.387999) (xy 56.251415 114.388) (xy 56.896 114.388) (xy 56.896 113.47225) (xy 56.953147 113.505245) (xy 57.082857 113.54) (xy 57.217143 113.54) (xy 57.346853 113.505245) (xy 57.404 113.47225) (xy 57.404 114.388) (xy 58.048585 114.388) (xy 58.048597 114.387999) (xy 58.109093 114.381494) (xy 58.245964 114.330444) (xy 58.245965 114.330444) (xy 58.362904 114.242904) (xy 58.450444 114.125965) (xy 58.494618 114.00753) (xy 58.537165 113.950694) (xy 58.603685 113.925883) (xy 58.673059 113.940974) (xy 58.705372 113.966222) (xy 58.733165 113.996412) (xy 58.766762 114.032908) (xy 58.802108 114.060419) (xy 58.944424 114.171189) (xy 59.142426 114.278342) (xy 59.142427 114.278342) (xy 59.142428 114.278343) (xy 59.249318 114.315038) (xy 59.355365 114.351444) (xy 59.577431 114.3885) (xy 59.577435 114.3885) (xy 59.802565 114.3885) (xy 59.802569 114.3885) (xy 60.024635 114.351444) (xy 60.237574 114.278342) (xy 60.435576 114.171189) (xy 60.61324 114.032906) (xy 60.765722 113.867268) (xy 60.854518 113.731354) (xy 60.90852 113.685268) (xy 60.978868 113.675692) (xy 61.043225 113.705669) (xy 61.06548 113.731353) (xy 61.091983 113.771918) (xy 61.154275 113.867265) (xy 61.154279 113.86727) (xy 61.306762 114.032908) (xy 61.342108 114.060419) (xy 61.484424 114.171189) (xy 61.682426 114.278342) (xy 61.682427 114.278342) (xy 61.682428 114.278343) (xy 61.789318 114.315038) (xy 61.895365 114.351444) (xy 62.117431 114.3885) (xy 62.117435 114.3885) (xy 62.342565 114.3885) (xy 62.342569 114.3885) (xy 62.564635 114.351444) (xy 62.777574 114.278342) (xy 62.975576 114.171189) (xy 63.15324 114.032906) (xy 63.305722 113.867268) (xy 63.394518 113.731354) (xy 63.44852 113.685268) (xy 63.518868 113.675692) (xy 63.583225 113.705669) (xy 63.60548 113.731353) (xy 63.631983 113.771918) (xy 63.694275 113.867265) (xy 63.694279 113.86727) (xy 63.846762 114.032908) (xy 63.882108 114.060419) (xy 64.024424 114.171189) (xy 64.222426 114.278342) (xy 64.222427 114.278342) (xy 64.222428 114.278343) (xy 64.329318 114.315038) (xy 64.435365 114.351444) (xy 64.657431 114.3885) (xy 64.657435 114.3885) (xy 64.882565 114.3885) (xy 64.882569 114.3885) (xy 65.104635 114.351444) (xy 65.317574 114.278342) (xy 65.515576 114.171189) (xy 65.69324 114.032906) (xy 65.845722 113.867268) (xy 65.934518 113.731354) (xy 65.98852 113.685268) (xy 66.058868 113.675692) (xy 66.123225 113.705669) (xy 66.14548 113.731353) (xy 66.171983 113.771918) (xy 66.234275 113.867265) (xy 66.234279 113.86727) (xy 66.386762 114.032908) (xy 66.422108 114.060419) (xy 66.564424 114.171189) (xy 66.635469 114.209636) (xy 66.685859 114.259648) (xy 66.7015 114.320449) (xy 66.7015 122.637111) (xy 66.717316 122.696141) (xy 66.717317 122.696141) (xy 66.717317 122.696142) (xy 66.728924 122.739458) (xy 66.742968 122.791872) (xy 66.74297 122.791877) (xy 66.823075 122.930623) (xy 66.823083 122.930633) (xy 69.938076 126.045625) (xy 69.972102 126.107937) (xy 69.971126 126.16565) (xy 69.936236 126.303428) (xy 69.917644 126.5278) (xy 69.933636 126.720793) (xy 69.936237 126.752175) (xy 69.991502 126.970412) (xy 69.991503 126.970413) (xy 69.991504 126.970416) (xy 70.08194 127.176591) (xy 70.081941 127.176593) (xy 70.205075 127.365065) (xy 70.205079 127.36507) (xy 70.357562 127.530708) (xy 70.387878 127.554304) (xy 70.535224 127.668989) (xy 70.567953 127.686701) (xy 70.56848 127.686986) (xy 70.618871 127.737) (xy 70.634223 127.806316) (xy 70.609662 127.872929) (xy 70.56848 127.908614) (xy 70.535226 127.92661) (xy 70.535224 127.926611) (xy 70.357562 128.064891) (xy 70.205079 128.230529) (xy 70.205075 128.230534) (xy 70.081941 128.419006) (xy 69.991503 128.625186) (xy 69.991502 128.625187) (xy 69.936237 128.843424) (xy 69.936236 128.84343) (xy 69.936236 128.843432) (xy 69.917644 129.0678) (xy 69.927184 129.182933) (xy 69.936237 129.292175) (xy 69.991502 129.510412) (xy 69.991503 129.510413) (xy 70.081941 129.716593) (xy 70.205075 129.905065) (xy 70.205079 129.90507) (xy 70.357562 130.070708) (xy 70.412131 130.113181) (xy 70.535224 130.208989) (xy 70.56848 130.226986) (xy 70.618871 130.277) (xy 70.634223 130.346316) (xy 70.609662 130.412929) (xy 70.56848 130.448613) (xy 70.535226 130.46661) (xy 70.535224 130.466611) (xy 70.357562 130.604891) (xy 70.205079 130.770529) (xy 70.205075 130.770534) (xy 70.081941 130.959006) (xy 69.991503 131.165186) (xy 69.991502 131.165187) (xy 69.936237 131.383424) (xy 69.936236 131.38343) (xy 69.936236 131.383432) (xy 69.917644 131.6078) (xy 69.933636 131.800793) (xy 69.936237 131.832175) (xy 69.991502 132.050412) (xy 69.991503 132.050413) (xy 69.991504 132.050416) (xy 70.08194 132.256591) (xy 70.081941 132.256593) (xy 70.205075 132.445065) (xy 70.205079 132.44507) (xy 70.357562 132.610708) (xy 70.388888 132.63509) (xy 70.535224 132.748989) (xy 70.733226 132.856142) (xy 70.733227 132.856142) (xy 70.733228 132.856143) (xy 70.845027 132.894523) (xy 70.946165 132.929244) (xy 71.168231 132.9663) (xy 71.168235 132.9663) (xy 71.393365 132.9663) (xy 71.393369 132.9663) (xy 71.615435 132.929244) (xy 71.828374 132.856142) (xy 72.026376 132.748989) (xy 72.20404 132.610706) (xy 72.356522 132.445068) (xy 72.445616 132.308698) (xy 72.499619 132.26261) (xy 72.569967 132.253035) (xy 72.634324 132.283012) (xy 72.656582 132.308698) (xy 72.745474 132.444758) (xy 72.897897 132.610334) (xy 73.075498 132.748567) (xy 73.075499 132.748568) (xy 73.273428 132.855682) (xy 73.27343 132.855683) (xy 73.486283 132.928755) (xy 73.486292 132.928757) (xy 73.5668 132.942191) (xy 73.5668 132.038502) (xy 73.627807 132.073725) (xy 73.754974 132.1078) (xy 73.886626 132.1078) (xy 74.013793 132.073725) (xy 74.0748 132.038502) (xy 74.0748 132.94219) (xy 74.155307 132.928757) (xy 74.155316 132.928755) (xy 74.368169 132.855683) (xy 74.368171 132.855682) (xy 74.5661 132.748568) (xy 74.566101 132.748567) (xy 74.743702 132.610334) (xy 74.896125 132.444758) (xy 75.019219 132.256348) (xy 75.10962 132.050256) (xy 75.109623 132.050249) (xy 75.157344 131.8618) (xy 74.251503 131.8618) (xy 74.286725 131.800793) (xy 74.297334 131.7612) (xy 80.477337 131.7612) (xy 80.49596 131.997832) (xy 80.551371 132.228637) (xy 80.642208 132.447938) (xy 80.756896 132.63509) (xy 80.756897 132.63509) (xy 81.465016 131.926971) (xy 81.477482 131.973492) (xy 81.54989 132.098908) (xy 81.652292 132.20131) (xy 81.777708 132.273718) (xy 81.824226 132.286182) (xy 81.116107 132.994301) (xy 81.116108 132.994302) (xy 81.303261 133.108991) (xy 81.522562 133.199828) (xy 81.753367 133.255239) (xy 81.99 133.273862) (xy 82.226632 133.255239) (xy 82.457437 133.199828) (xy 82.676738 133.108991) (xy 82.86389 132.994302) (xy 82.863891 132.994302) (xy 82.155772 132.286182) (xy 82.202292 132.273718) (xy 82.327708 132.20131) (xy 82.43011 132.098908) (xy 82.502518 131.973492) (xy 82.514983 131.926972) (xy 83.223102 132.635091) (xy 83.223102 132.63509) (xy 83.337791 132.447938) (xy 83.428628 132.228637) (xy 83.484039 131.997832) (xy 83.502662 131.7612) (xy 86.977337 131.7612) (xy 86.99596 131.997832) (xy 87.051371 132.228637) (xy 87.142208 132.447938) (xy 87.256896 132.63509) (xy 87.256897 132.63509) (xy 87.965016 131.926971) (xy 87.977482 131.973492) (xy 88.04989 132.098908) (xy 88.152292 132.20131) (xy 88.277708 132.273718) (xy 88.324226 132.286182) (xy 87.616107 132.994301) (xy 87.616108 132.994302) (xy 87.803261 133.108991) (xy 88.022562 133.199828) (xy 88.253367 133.255239) (xy 88.49 133.273862) (xy 88.726632 133.255239) (xy 88.957437 133.199828) (xy 89.176738 133.108991) (xy 89.36389 132.994302) (xy 89.363891 132.994302) (xy 88.655772 132.286182) (xy 88.702292 132.273718) (xy 88.827708 132.20131) (xy 88.93011 132.098908) (xy 89.002518 131.973492) (xy 89.014983 131.926972) (xy 89.723102 132.635091) (xy 89.723102 132.63509) (xy 89.837791 132.447938) (xy 89.928628 132.228637) (xy 89.984039 131.997832) (xy 90.002662 131.7612) (xy 89.984039 131.524567) (xy 89.928628 131.293762) (xy 89.837791 131.074461) (xy 89.723102 130.887308) (xy 89.723101 130.887307) (xy 89.014982 131.595426) (xy 89.002518 131.548908) (xy 88.93011 131.423492) (xy 88.827708 131.32109) (xy 88.702292 131.248682) (xy 88.655771 131.236216) (xy 89.36389 130.528097) (xy 89.36389 130.528096) (xy 89.176738 130.413408) (xy 88.957437 130.322571) (xy 88.726632 130.26716) (xy 88.49 130.248537) (xy 88.253367 130.26716) (xy 88.022562 130.322571) (xy 87.803266 130.413406) (xy 87.616108 130.528097) (xy 87.616108 130.528098) (xy 88.324227 131.236217) (xy 88.277708 131.248682) (xy 88.152292 131.32109) (xy 88.04989 131.423492) (xy 87.977482 131.548908) (xy 87.965017 131.595427) (xy 87.256898 130.887308) (xy 87.256897 130.887308) (xy 87.142206 131.074466) (xy 87.051371 131.293762) (xy 86.99596 131.524567) (xy 86.977337 131.7612) (xy 83.502662 131.7612) (xy 83.484039 131.524567) (xy 83.428628 131.293762) (xy 83.337791 131.074461) (xy 83.223102 130.887308) (xy 83.223101 130.887307) (xy 82.514982 131.595426) (xy 82.502518 131.548908) (xy 82.43011 131.423492) (xy 82.327708 131.32109) (xy 82.202292 131.248682) (xy 82.155771 131.236216) (xy 82.86389 130.528097) (xy 82.86389 130.528096) (xy 82.676738 130.413408) (xy 82.457437 130.322571) (xy 82.226632 130.26716) (xy 81.99 130.248537) (xy 81.753367 130.26716) (xy 81.522562 130.322571) (xy 81.303266 130.413406) (xy 81.116108 130.528097) (xy 81.116108 130.528098) (xy 81.824227 131.236217) (xy 81.777708 131.248682) (xy 81.652292 131.32109) (xy 81.54989 131.423492) (xy 81.477482 131.548908) (xy 81.465017 131.595427) (xy 80.756898 130.887308) (xy 80.756897 130.887308) (xy 80.642206 131.074466) (xy 80.551371 131.293762) (xy 80.49596 131.524567) (xy 80.477337 131.7612) (xy 74.297334 131.7612) (xy 74.3208 131.673626) (xy 74.3208 131.541974) (xy 74.286725 131.414807) (xy 74.251503 131.3538) (xy 75.157344 131.3538) (xy 75.157344 131.353799) (xy 75.109623 131.16535) (xy 75.10962 131.165343) (xy 75.019219 130.959251) (xy 74.896125 130.770841) (xy 74.743702 130.605265) (xy 74.566101 130.467032) (xy 74.5661 130.467031) (xy 74.532591 130.448897) (xy 74.482201 130.398883) (xy 74.46685 130.329566) (xy 74.491412 130.262953) (xy 74.53259 130.227272) (xy 74.566376 130.208989) (xy 74.74404 130.070706) (xy 74.896522 129.905068) (xy 75.01966 129.716591) (xy 75.110096 129.510416) (xy 75.165364 129.292168) (xy 75.183956 129.0678) (xy 75.165364 128.843432) (xy 75.133539 128.717757) (xy 75.110097 128.625187) (xy 75.110096 128.625186) (xy 75.110096 128.625184) (xy 75.01966 128.419009) (xy 75.007758 128.400791) (xy 74.896524 128.230534) (xy 74.89652 128.230529) (xy 74.744037 128.064891) (xy 74.647955 127.990107) (xy 74.566376 127.926611) (xy 74.532592 127.908328) (xy 74.482202 127.858316) (xy 74.46685 127.788999) (xy 74.49141 127.722386) (xy 74.532593 127.686701) (xy 74.5661 127.668567) (xy 74.566101 127.668567) (xy 74.743702 127.530334) (xy 74.896125 127.364758) (xy 74.963783 127.2612) (xy 80.476835 127.2612) (xy 80.495465 127.497911) (xy 80.51106 127.562868) (xy 80.550894 127.728792) (xy 80.632833 127.92661) (xy 80.64176 127.948163) (xy 80.713293 128.064894) (xy 80.765825 128.150617) (xy 80.765826 128.150619) (xy 80.92003 128.331169) (xy 81.10058 128.485373) (xy 81.100584 128.485376) (xy 81.303037 128.60944) (xy 81.522406 128.700305) (xy 81.753289 128.755735) (xy 81.99 128.774365) (xy 82.226711 128.755735) (xy 82.457594 128.700305) (xy 82.676963 128.60944) (xy 82.879416 128.485376) (xy 83.059969 128.331169) (xy 83.214176 128.150616) (xy 83.33824 127.948163) (xy 83.429105 127.728794) (xy 83.484535 127.497911) (xy 83.503165 127.2612) (xy 86.976835 127.2612) (xy 86.995465 127.497911) (xy 87.01106 127.562868) (xy 87.050894 127.728792) (xy 87.132833 127.92661) (xy 87.14176 127.948163) (xy 87.213293 128.064894) (xy 87.265825 128.150617) (xy 87.265826 128.150619) (xy 87.42003 128.331169) (xy 87.60058 128.485373) (xy 87.600584 128.485376) (xy 87.803037 128.60944) (xy 88.022406 128.700305) (xy 88.253289 128.755735) (xy 88.49 128.774365) (xy 88.726711 128.755735) (xy 88.957594 128.700305) (xy 89.176963 128.60944) (xy 89.379416 128.485376) (xy 89.559969 128.331169) (xy 89.714176 128.150616) (xy 89.83824 127.948163) (xy 89.929105 127.728794) (xy 89.984535 127.497911) (xy 90.003165 127.2612) (xy 89.984535 127.024489) (xy 89.929105 126.793606) (xy 89.83824 126.574237) (xy 89.714176 126.371784) (xy 89.682595 126.334807) (xy 89.559969 126.19123) (xy 89.379419 126.037026) (xy 89.379417 126.037025) (xy 89.379416 126.037024) (xy 89.176963 125.91296) (xy 89.122267 125.890304) (xy 88.957592 125.822094) (xy 88.799651 125.784176) (xy 88.726711 125.766665) (xy 88.49 125.748035) (xy 88.253289 125.766665) (xy 88.022407 125.822094) (xy 87.803038 125.912959) (xy 87.600582 126.037025) (xy 87.60058 126.037026) (xy 87.42003 126.19123) (xy 87.265826 126.37178) (xy 87.265825 126.371782) (xy 87.141759 126.574238) (xy 87.050894 126.793607) (xy 87.002851 126.993725) (xy 86.995465 127.024489) (xy 86.976835 127.2612) (xy 83.503165 127.2612) (xy 83.484535 127.024489) (xy 83.429105 126.793606) (xy 83.33824 126.574237) (xy 83.214176 126.371784) (xy 83.182595 126.334807) (xy 83.059969 126.19123) (xy 82.879419 126.037026) (xy 82.879417 126.037025) (xy 82.879416 126.037024) (xy 82.676963 125.91296) (xy 82.622267 125.890304) (xy 82.457592 125.822094) (xy 82.299651 125.784176) (xy 82.226711 125.766665) (xy 81.99 125.748035) (xy 81.753289 125.766665) (xy 81.522407 125.822094) (xy 81.303038 125.912959) (xy 81.100582 126.037025) (xy 81.10058 126.037026) (xy 80.92003 126.19123) (xy 80.765826 126.37178) (xy 80.765825 126.371782) (xy 80.641759 126.574238) (xy 80.550894 126.793607) (xy 80.502851 126.993725) (xy 80.495465 127.024489) (xy 80.476835 127.2612) (xy 74.963783 127.2612) (xy 75.019219 127.176348) (xy 75.109622 126.970254) (xy 75.109623 126.970249) (xy 75.157344 126.7818) (xy 74.251503 126.7818) (xy 74.286725 126.720793) (xy 74.3208 126.593626) (xy 74.3208 126.461974) (xy 74.286725 126.334807) (xy 74.251503 126.2738) (xy 75.157344 126.2738) (xy 75.157344 126.273799) (xy 75.109623 126.08535) (xy 75.10962 126.085343) (xy 75.019219 125.879251) (xy 74.896125 125.690841) (xy 74.743702 125.525265) (xy 74.566101 125.387032) (xy 74.5661 125.387031) (xy 74.532591 125.368897) (xy 74.482201 125.318883) (xy 74.46685 125.249566) (xy 74.491412 125.182953) (xy 74.53259 125.147272) (xy 74.566376 125.128989) (xy 74.74404 124.990706) (xy 74.811708 124.9172) (xy 83.871696 124.9172) (xy 83.891657 125.107127) (xy 83.912866 125.1724) (xy 83.950673 125.288756) (xy 83.950676 125.288761) (xy 84.046158 125.454141) (xy 84.046165 125.454151) (xy 84.173944 125.596064) (xy 84.173947 125.596066) (xy 84.328448 125.708318) (xy 84.502912 125.785994) (xy 84.689713 125.8257) (xy 84.880687 125.8257) (xy 85.067488 125.785994) (xy 85.241952 125.708318) (xy 85.396453 125.596066) (xy 85.414534 125.575985) (xy 85.524234 125.454151) (xy 85.524235 125.454149) (xy 85.52424 125.454144) (xy 85.619727 125.288756) (xy 85.678742 125.107128) (xy 85.698704 124.9172) (xy 85.678742 124.727272) (xy 85.619727 124.545644) (xy 85.52424 124.380256) (xy 85.524238 124.380254) (xy 85.524234 124.380248) (xy 85.396455 124.238335) (xy 85.241952 124.126082) (xy 85.067488 124.048406) (xy 84.880687 124.0087) (xy 84.689713 124.0087) (xy 84.502911 124.048406) (xy 84.328447 124.126082) (xy 84.173944 124.238335) (xy 84.046165 124.380248) (xy 84.046158 124.380258) (xy 83.950676 124.545638) (xy 83.950673 124.545645) (xy 83.891657 124.727272) (xy 83.871696 124.9172) (xy 74.811708 124.9172) (xy 74.896522 124.825068) (xy 75.01966 124.636591) (xy 75.110096 124.430416) (xy 75.165364 124.212168) (xy 75.183956 123.9878) (xy 75.165364 123.763432) (xy 75.161659 123.748802) (xy 75.110097 123.545187) (xy 75.110096 123.545186) (xy 75.110096 123.545184) (xy 75.01966 123.339009) (xy 74.964542 123.254644) (xy 74.896524 123.150534) (xy 74.89652 123.150529) (xy 74.744037 122.984891) (xy 74.648755 122.91073) (xy 74.566376 122.846611) (xy 74.558356 122.842271) (xy 74.53312 122.828614) (xy 74.482729 122.778602) (xy 74.467376 122.709285) (xy 74.491936 122.642672) (xy 74.53312 122.606986) (xy 74.566376 122.588989) (xy 74.74404 122.450706) (xy 74.896522 122.285068) (xy 75.01966 122.096591) (xy 75.110096 121.890416) (xy 75.165364 121.672168) (xy 75.183956 121.4478) (xy 75.165364 121.223432) (xy 75.110096 121.005184) (xy 75.01966 120.799009) (xy 74.945082 120.684858) (xy 74.896524 120.610534) (xy 74.89652 120.610529) (xy 74.744037 120.444891) (xy 74.624867 120.352137) (xy 74.566376 120.306611) (xy 74.368374 120.199458) (xy 74.368372 120.199457) (xy 74.368371 120.199456) (xy 74.155439 120.126357) (xy 74.15543 120.126355) (xy 74.111276 120.118987) (xy 73.933369 120.0893) (xy 73.708231 120.0893) (xy 73.700368 120.090612) (xy 73.691696 120.092059) (xy 73.621212 120.08354) (xy 73.566523 120.038267) (xy 73.544992 119.970614) (xy 73.563455 119.902061) (xy 73.581861 119.878687) (xy 73.956993 119.503555) (xy 111.3439 119.503555) (xy 111.3439 119.661244) (xy 111.34691 119.676376) (xy 111.374663 119.815897) (xy 111.435006 119.961579) (xy 111.522611 120.092689) (xy 111.634111 120.204189) (xy 111.765221 120.291794) (xy 111.910903 120.352137) (xy 112.065558 120.3829) (xy 112.065559 120.3829) (xy 112.223241 120.3829) (xy 112.223242 120.3829) (xy 112.377897 120.352137) (xy 112.523579 120.291794) (xy 112.654689 120.204189) (xy 112.714248 120.144629) (xy 112.776556 120.110607) (xy 112.847372 120.115671) (xy 112.904208 120.158217) (xy 112.915604 120.17652) (xy 112.979678 120.302271) (xy 113.106753 120.477175) (xy 113.106755 120.477177) (xy 113.106757 120.47718) (xy 113.259622 120.630045) (xy 113.425364 120.750464) (xy 113.468718 120.806687) (xy 113.474793 120.877423) (xy 113.441661 120.940214) (xy 113.425364 120.954336) (xy 113.259622 121.074754) (xy 113.106757 121.227619) (xy 113.106755 121.227622) (xy 112.97968 121.402525) (xy 112.881527 121.59516) (xy 112.814721 121.800767) (xy 112.81472 121.800771) (xy 112.7809 122.014303) (xy 112.7809 122.230497) (xy 112.81472 122.444029) (xy 112.814721 122.444032) (xy 112.879263 122.642672) (xy 112.881528 122.649641) (xy 112.979477 122.841877) (xy 112.97968 122.842274) (xy 112.999406 122.869424) (xy 113.106753 123.017175) (xy 113.106755 123.017177) (xy 113.106757 123.01718) (xy 113.191109 123.101532) (xy 113.225135 123.163844) (xy 113.22007 123.234659) (xy 113.177523 123.291495) (xy 113.146047 123.308682) (xy 113.043439 123.346953) (xy 113.043434 123.346955) (xy 112.926495 123.434495) (xy 112.838955 123.551434) (xy 112.838955 123.551435) (xy 112.787905 123.688306) (xy 112.7814 123.748802) (xy 112.7814 124.4084) (xy 113.862149 124.4084) (xy 113.829155 124.465547) (xy 113.7944 124.595257) (xy 113.7944 124.729543) (xy 113.829155 124.859253) (xy 113.862149 124.9164) (xy 112.7814 124.9164) (xy 112.7814 125.575997) (xy 112.787905 125.636493) (xy 112.838955 125.773364) (xy 112.838955 125.773365) (xy 112.926495 125.890304) (xy 113.043434 125.977844) (xy 113.180306 126.028894) (xy 113.240802 126.035399) (xy 113.240815 126.0354) (xy 114.0504 126.0354) (xy 114.0504 125.10465) (xy 114.107547 125.137645) (xy 114.237257 125.1724) (xy 114.371543 125.1724) (xy 114.501253 125.137645) (xy 114.5584 125.10465) (xy 114.5584 126.0354) (xy 115.367985 126.0354) (xy 115.367997 126.035399) (xy 115.428493 126.028894) (xy 115.565364 125.977844) (xy 115.565365 125.977844) (xy 115.682304 125.890304) (xy 115.769844 125.773365) (xy 115.769844 125.773364) (xy 115.820894 125.636493) (xy 115.827399 125.575997) (xy 115.8274 125.575985) (xy 115.8274 124.9164) (xy 114.746651 124.9164) (xy 114.779645 124.859253) (xy 114.8144 124.729543) (xy 114.8144 124.595257) (xy 114.779645 124.465547) (xy 114.746651 124.4084) (xy 115.8274 124.4084) (xy 115.8274 123.748814) (xy 115.827399 123.748802) (xy 115.820894 123.688306) (xy 115.769844 123.551435) (xy 115.769844 123.551434) (xy 115.682304 123.434495) (xy 115.565366 123.346956) (xy 115.462752 123.308683) (xy 115.405917 123.266136) (xy 115.381106 123.199615) (xy 115.396198 123.130241) (xy 115.417687 123.101534) (xy 115.502047 123.017175) (xy 115.629122 122.842271) (xy 115.727272 122.649641) (xy 115.79408 122.444029) (xy 115.8279 122.230497) (xy 115.8279 122.014303) (xy 115.79408 121.800771) (xy 115.727272 121.595159) (xy 115.629122 121.402529) (xy 115.502047 121.227625) (xy 115.502044 121.227622) (xy 115.502042 121.227619) (xy 115.34918 121.074757) (xy 115.349177 121.074755) (xy 115.349176 121.074754) (xy 115.349175 121.074753) (xy 115.183435 120.954336) (xy 115.140081 120.898114) (xy 115.134006 120.827378) (xy 115.167137 120.764586) (xy 115.183435 120.750464) (xy 115.224959 120.720295) (xy 115.349175 120.630047) (xy 115.502047 120.477175) (xy 115.629122 120.302271) (xy 115.727272 120.109641) (xy 115.79408 119.904029) (xy 115.8279 119.690497) (xy 115.8279 119.474303) (xy 115.79408 119.260771) (xy 115.727272 119.055159) (xy 115.629122 118.862529) (xy 115.502047 118.687625) (xy 115.502044 118.687622) (xy 115.502042 118.687619) (xy 115.34918 118.534757) (xy 115.349177 118.534755) (xy 115.349176 118.534754) (xy 115.349175 118.534753) (xy 115.183435 118.414336) (xy 115.140081 118.358114) (xy 115.134006 118.287378) (xy 115.167137 118.224586) (xy 115.183435 118.210464) (xy 115.186127 118.208507) (xy 115.349175 118.090047) (xy 115.502047 117.937175) (xy 115.629122 117.762271) (xy 115.727272 117.569641) (xy 115.79408 117.364029) (xy 115.8279 117.150497) (xy 115.8279 116.934303) (xy 115.79408 116.720771) (xy 115.727272 116.515159) (xy 115.629122 116.322529) (xy 115.502047 116.147625) (xy 115.502044 116.147622) (xy 115.502042 116.147619) (xy 115.34918 115.994757) (xy 115.349177 115.994755) (xy 115.349175 115.994753) (xy 115.174271 115.867678) (xy 114.981641 115.769528) (xy 114.98164 115.769527) (xy 114.981639 115.769527) (xy 114.776032 115.702721) (xy 114.776029 115.70272) (xy 114.562497 115.6689) (xy 114.046303 115.6689) (xy 113.832771 115.70272) (xy 113.832768 115.70272) (xy 113.832767 115.702721) (xy 113.62716 115.769527) (xy 113.434525 115.86768) (xy 113.259622 115.994755) (xy 113.259619 115.994757) (xy 113.106757 116.147619) (xy 113.106755 116.147622) (xy 112.97968 116.322525) (xy 112.881527 116.51516) (xy 112.836818 116.652761) (xy 112.81472 116.720771) (xy 112.7809 116.934303) (xy 112.7809 117.150497) (xy 112.81472 117.364029) (xy 112.881528 117.569641) (xy 112.979678 117.762271) (xy 113.106753 117.937175) (xy 113.106755 117.937177) (xy 113.106757 117.93718) (xy 113.259622 118.090045) (xy 113.425364 118.210464) (xy 113.468718 118.266687) (xy 113.474793 118.337423) (xy 113.441661 118.400214) (xy 113.425364 118.414336) (xy 113.259622 118.534754) (xy 113.106757 118.687619) (xy 113.106755 118.687622) (xy 112.979679 118.862525) (xy 112.915607 118.988275) (xy 112.866858 119.03989) (xy 112.797943 119.056956) (xy 112.730742 119.034055) (xy 112.714245 119.020167) (xy 112.654691 118.960613) (xy 112.654689 118.960611) (xy 112.523579 118.873006) (xy 112.377897 118.812663) (xy 112.223244 118.7819) (xy 112.223242 118.7819) (xy 112.065558 118.7819) (xy 112.065555 118.7819) (xy 111.910902 118.812663) (xy 111.910897 118.812665) (xy 111.76522 118.873006) (xy 111.634115 118.960608) (xy 111.634108 118.960613) (xy 111.522613 119.072108) (xy 111.522608 119.072115) (xy 111.435006 119.20322) (xy 111.374665 119.348897) (xy 111.374663 119.348902) (xy 111.3439 119.503555) (xy 73.956993 119.503555) (xy 77.956922 115.503627) (xy 78.037032 115.364872) (xy 78.047387 115.326225) (xy 78.061534 115.273432) (xy 78.070016 115.241771) (xy 78.0785 115.210111) (xy 78.0785 114.320449) (xy 78.098502 114.252328) (xy 78.14453 114.209636) (xy 78.215576 114.171189) (xy 78.39324 114.032906) (xy 78.545722 113.867268) (xy 78.634518 113.731354) (xy 78.68852 113.685268) (xy 78.758868 113.675692) (xy 78.823225 113.705669) (xy 78.84548 113.731353) (xy 78.871983 113.771918) (xy 78.934275 113.867265) (xy 78.934279 113.86727) (xy 79.086762 114.032908) (xy 79.122108 114.060419) (xy 79.264424 114.171189) (xy 79.462426 114.278342) (xy 79.462427 114.278342) (xy 79.462428 114.278343) (xy 79.569318 114.315038) (xy 79.675365 114.351444) (xy 79.897431 114.3885) (xy 79.897435 114.3885) (xy 80.122565 114.3885) (xy 80.122569 114.3885) (xy 80.344635 114.351444) (xy 80.557574 114.278342) (xy 80.755576 114.171189) (xy 80.93324 114.032906) (xy 80.994626 113.966222) (xy 81.055476 113.929654) (xy 81.126441 113.931787) (xy 81.184986 113.971949) (xy 81.20538 114.007529) (xy 81.249553 114.125961) (xy 81.249555 114.125965) (xy 81.337095 114.242904) (xy 81.454034 114.330444) (xy 81.590906 114.381494) (xy 81.651402 114.387999) (xy 81.651415 114.388) (xy 82.296 114.388) (xy 82.296 113.47225) (xy 82.353147 113.505245) (xy 82.482857 113.54) (xy 82.617143 113.54) (xy 82.746853 113.505245) (xy 82.804 113.47225) (xy 82.804 114.388) (xy 83.448585 114.388) (xy 83.448597 114.387999) (xy 83.509093 114.381494) (xy 83.645964 114.330444) (xy 83.645965 114.330444) (xy 83.762904 114.242904) (xy 83.850444 114.125965) (xy 83.894618 114.00753) (xy 83.937165 113.950694) (xy 84.003685 113.925883) (xy 84.073059 113.940974) (xy 84.105372 113.966222) (xy 84.133165 113.996412) (xy 84.166762 114.032908) (xy 84.202108 114.060419) (xy 84.344424 114.171189) (xy 84.542426 114.278342) (xy 84.542427 114.278342) (xy 84.542428 114.278343) (xy 84.649318 114.315038) (xy 84.755365 114.351444) (xy 84.977431 114.3885) (xy 84.977435 114.3885) (xy 85.202565 114.3885) (xy 85.202569 114.3885) (xy 85.424635 114.351444) (xy 85.637574 114.278342) (xy 85.835576 114.171189) (xy 86.01324 114.032906) (xy 86.165722 113.867268) (xy 86.254518 113.731354) (xy 86.30852 113.685268) (xy 86.378868 113.675692) (xy 86.443225 113.705669) (xy 86.46548 113.731353) (xy 86.491983 113.771918) (xy 86.554275 113.867265) (xy 86.554279 113.86727) (xy 86.706762 114.032908) (xy 86.742108 114.060419) (xy 86.884424 114.171189) (xy 87.082426 114.278342) (xy 87.082427 114.278342) (xy 87.082428 114.278343) (xy 87.189318 114.315038) (xy 87.295365 114.351444) (xy 87.517431 114.3885) (xy 87.517435 114.3885) (xy 87.742565 114.3885) (xy 87.742569 114.3885) (xy 87.964635 114.351444) (xy 88.177574 114.278342) (xy 88.375576 114.171189) (xy 88.55324 114.032906) (xy 88.705722 113.867268) (xy 88.82886 113.678791) (xy 88.919296 113.472616) (xy 88.974564 113.254368) (xy 88.993156 113.03) (xy 88.974564 112.805632) (xy 88.972125 112.796002) (xy 88.919297 112.587387) (xy 88.919296 112.587386) (xy 88.919296 112.587384) (xy 88.82886 112.381209) (xy 88.82214 112.370924) (xy 88.705724 112.192734) (xy 88.705714 112.192722) (xy 88.588539 112.065438) (xy 88.557117 112.001774) (xy 88.565103 111.931228) (xy 88.609962 111.876198) (xy 88.67745 111.854157) (xy 88.681239 111.8541) (xy 88.802349 111.8541) (xy 88.802352 111.8541) (xy 89.004534 111.822077) (xy 89.199219 111.75882) (xy 89.38161 111.665887) (xy 89.547219 111.545566) (xy 89.691966 111.400819) (xy 89.812287 111.23521) (xy 89.90522 111.052819) (xy 89.968477 110.858134) (xy 90.0005 110.655952) (xy 90.0005 110.5536) (xy 90.0005 110.487708) (xy 90.0005 97.687708) (xy 90.0005 97.651248) (xy 89.968477 97.449066) (xy 89.90522 97.254381) (xy 89.812287 97.07199) (xy 89.789406 97.040497) (xy 89.691965 96.906379) (xy 89.54722 96.761634) (xy 89.381612 96.641314) (xy 89.317209 96.608499) (xy 89.199219 96.54838) (xy 89.199216 96.548379) (xy 89.199214 96.548378) (xy 89.004538 96.485124) (xy 89.004536 96.485123) (xy 89.004534 96.485123) (xy 88.802352 96.4531) (xy 88.802349 96.4531) (xy 88.656199 96.4531) (xy 88.588078 96.433098) (xy 88.541585 96.379442) (xy 88.531481 96.309168) (xy 88.560975 96.244588) (xy 88.563499 96.241762) (xy 88.705714 96.087277) (xy 88.705724 96.087265) (xy 88.768017 95.991918) (xy 88.82886 95.898791) (xy 88.919296 95.692616) (xy 88.920218 95.688973) (xy 88.956327 95.627848) (xy 89.019753 95.595947) (xy 89.090358 95.603401) (xy 89.131458 95.630807) (xy 92.278995 98.778344) (xy 92.313021 98.840656) (xy 92.3159 98.867439) (xy 92.3159 115.55971) (xy 92.320048 115.575189) (xy 92.320049 115.575194) (xy 92.357367 115.71447) (xy 92.35737 115.714477) (xy 92.437475 115.853223) (xy 92.437477 115.853225) (xy 92.437478 115.853227) (xy 92.775592 116.191341) (xy 92.809616 116.253652) (xy 92.812496 116.280435) (xy 92.812496 116.281199) (xy 92.832457 116.471127) (xy 92.846765 116.51516) (xy 92.891473 116.652756) (xy 92.891476 116.652761) (xy 92.986958 116.818141) (xy 92.986965 116.818151) (xy 93.114744 116.960064) (xy 93.114747 116.960066) (xy 93.269248 117.072318) (xy 93.443712 117.149994) (xy 93.630513 117.1897) (xy 93.821487 117.1897) (xy 94.008288 117.149994) (xy 94.182752 117.072318) (xy 94.337253 116.960066) (xy 94.337255 116.960064) (xy 94.465034 116.818151) (xy 94.465035 116.818149) (xy 94.46504 116.818144) (xy 94.560527 116.652756) (xy 94.619542 116.471128) (xy 94.639504 116.2812) (xy 94.619542 116.091272) (xy 94.560527 115.909644) (xy 94.46504 115.744256) (xy 94.465038 115.744254) (xy 94.465034 115.744248) (xy 94.337255 115.602335) (xy 94.182752 115.490082) (xy 94.008288 115.412406) (xy 93.821487 115.3727) (xy 93.730239 115.3727) (xy 93.662118 115.352698) (xy 93.641144 115.335795) (xy 93.569805 115.264456) (xy 93.535779 115.202144) (xy 93.5329 115.175361) (xy 93.5329 105.9873) (xy 93.552902 105.919179) (xy 93.606558 105.872686) (xy 93.6589 105.8613) (xy 93.719887 105.8613) (xy 93.906688 105.821594) (xy 94.081152 105.743918) (xy 94.235653 105.631666) (xy 94.237265 105.629876) (xy 94.363434 105.489751) (xy 94.363435 105.489749) (xy 94.36344 105.489744) (xy 94.458927 105.324356) (xy 94.517942 105.142728) (xy 94.537904 104.9528) (xy 94.517942 104.762872) (xy 94.458927 104.581244) (xy 94.36344 104.415856) (xy 94.265263 104.306819) (xy 94.234546 104.242812) (xy 94.2329 104.222509) (xy 94.2329 98.617405) (xy 94.22224 98.577622) (xy 94.196911 98.48309) (xy 94.191432 98.462642) (xy 94.146811 98.385357) (xy 94.140759 98.374874) (xy 94.140758 98.374873) (xy 94.111321 98.323887) (xy 94.111318 98.323884) (xy 94.111315 98.32388) (xy 93.993639 98.206204) (xy 93.993616 98.206183) (xy 88.924918 93.137483) (xy 88.924908 93.137475) (xy 88.786162 93.05737) (xy 88.78616 93.057369) (xy 88.786158 93.057368) (xy 88.705959 93.035879) (xy 88.705958 93.035878) (xy 88.631396 93.0159) (xy 79.015489 93.0159) (xy 78.898922 93.047134) (xy 78.898921 93.047133) (xy 78.860726 93.057368) (xy 78.721976 93.137475) (xy 78.72197 93.13748) (xy 77.954242 93.905207) (xy 77.89193 93.939232) (xy 77.824238 93.935285) (xy 77.804641 93.928558) (xy 77.80464 93.928557) (xy 77.804635 93.928556) (xy 77.804631 93.928555) (xy 77.80463 93.928555) (xy 77.745469 93.918683) (xy 77.582569 93.8915) (xy 77.357431 93.8915) (xy 77.211047 93.915927) (xy 77.135369 93.928555) (xy 77.13536 93.928557) (xy 76.922428 94.001656) (xy 76.922426 94.001658) (xy 76.724432 94.108807) (xy 76.724426 94.10881) (xy 76.724424 94.108811) (xy 76.546762 94.247091) (xy 76.394279 94.412729) (xy 76.305483 94.548643) (xy 76.251479 94.594731) (xy 76.181131 94.604306) (xy 76.116774 94.574329) (xy 76.094517 94.548643) (xy 76.00572 94.412729) (xy 75.937488 94.338611) (xy 75.85324 94.247094) (xy 75.853234 94.247089) (xy 75.853233 94.247088) (xy 75.723256 94.145921) (xy 75.681785 94.088296) (xy 75.678052 94.017398) (xy 75.71155 93.957397) (xy 80.518744 89.150205) (xy 80.581056 89.116179) (xy 80.607839 89.1133) (xy 83.088228 89.1133) (xy 83.156349 89.133302) (xy 83.202842 89.186958) (xy 83.213538 89.22613) (xy 83.231257 89.394727) (xy 83.248282 89.447122) (xy 83.290273 89.576356) (xy 83.290276 89.576361) (xy 83.385758 89.741741) (xy 83.385765 89.741751) (xy 83.513544 89.883664) (xy 83.513547 89.883666) (xy 83.668048 89.995918) (xy 83.842512 90.073594) (xy 84.029313 90.1133) (xy 84.220287 90.1133) (xy 84.407088 90.073594) (xy 84.581552 89.995918) (xy 84.736053 89.883666) (xy 84.736055 89.883664) (xy 84.761874 89.85499) (xy 84.82232 89.81775) (xy 84.85551 89.8133) (xy 86.360561 89.8133) (xy 86.428682 89.833302) (xy 86.449656 89.850205) (xy 101.259395 104.659944) (xy 101.293421 104.722256) (xy 101.2963 104.749039) (xy 101.2963 113.976109) (xy 101.276298 114.04423) (xy 101.263937 114.060419) (xy 101.165761 114.169454) (xy 101.165758 114.169458) (xy 101.070276 114.334838) (xy 101.070273 114.334845) (xy 101.011257 114.516472) (xy 100.991296 114.7064) (xy 101.011257 114.896327) (xy 101.041326 114.98887) (xy 101.070273 115.077956) (xy 101.070276 115.077961) (xy 101.165758 115.243341) (xy 101.165765 115.243351) (xy 101.293544 115.385264) (xy 101.293547 115.385266) (xy 101.448048 115.497518) (xy 101.622512 115.575194) (xy 101.809313 115.6149) (xy 102.000287 115.6149) (xy 102.187088 115.575194) (xy 102.361552 115.497518) (xy 102.516053 115.385266) (xy 102.516055 115.385264) (xy 102.643834 115.243351) (xy 102.643835 115.243349) (xy 102.64384 115.243344) (xy 102.739327 115.077956) (xy 102.798342 114.896328) (xy 102.818304 114.7064) (xy 102.798342 114.516472) (xy 102.739327 114.334844) (xy 102.64384 114.169456) (xy 102.545663 114.060419) (xy 102.514946 113.996412) (xy 102.5133 113.976109) (xy 102.5133 108.153555) (xy 111.3584 108.153555) (xy 111.3584 108.153558) (xy 111.3584 108.311242) (xy 111.389163 108.465897) (xy 111.449506 108.611579) (xy 111.537111 108.742689) (xy 111.648611 108.854189) (xy 111.779721 108.941794) (xy 111.925403 109.002137) (xy 112.080058 109.0329) (xy 112.080059 109.0329) (xy 112.237741 109.0329) (xy 112.237742 109.0329) (xy 112.392397 109.002137) (xy 112.538079 108.941794) (xy 112.669189 108.854189) (xy 112.728748 108.794629) (xy 112.791056 108.760607) (xy 112.861872 108.765671) (xy 112.918708 108.808217) (xy 112.930104 108.82652) (xy 112.994178 108.952271) (xy 113.121253 109.127175) (xy 113.121255 109.127177) (xy 113.121257 109.12718) (xy 113.274122 109.280045) (xy 113.439864 109.400464) (xy 113.483218 109.456687) (xy 113.489293 109.527423) (xy 113.456161 109.590214) (xy 113.439864 109.604336) (xy 113.274122 109.724754) (xy 113.121257 109.877619) (xy 113.121255 109.877622) (xy 112.99418 110.052525) (xy 112.896027 110.24516) (xy 112.829221 110.450767) (xy 112.82922 110.450771) (xy 112.7954 110.664303) (xy 112.7954 110.880497) (xy 112.82922 111.094029) (xy 112.829221 111.094032) (xy 112.875093 111.235212) (xy 112.896028 111.299641) (xy 112.994178 111.492271) (xy 113.121253 111.667175) (xy 113.121255 111.667177) (xy 113.121257 111.66718) (xy 113.205609 111.751532) (xy 113.239635 111.813844) (xy 113.23457 111.884659) (xy 113.192023 111.941495) (xy 113.160547 111.958682) (xy 113.057939 111.996953) (xy 113.057934 111.996955) (xy 112.940995 112.084495) (xy 112.853455 112.201434) (xy 112.853455 112.201435) (xy 112.802405 112.338306) (xy 112.7959 112.398802) (xy 112.7959 113.0584) (xy 113.876649 113.0584) (xy 113.843655 113.115547) (xy 113.8089 113.245257) (xy 113.8089 113.379543) (xy 113.843655 113.509253) (xy 113.876649 113.5664) (xy 112.7959 113.5664) (xy 112.7959 114.225997) (xy 112.802405 114.286493) (xy 112.853455 114.423364) (xy 112.853455 114.423365) (xy 112.940995 114.540304) (xy 113.057934 114.627844) (xy 113.194806 114.678894) (xy 113.255302 114.685399) (xy 113.255315 114.6854) (xy 114.0649 114.6854) (xy 114.0649 113.75465) (xy 114.122047 113.787645) (xy 114.251757 113.8224) (xy 114.386043 113.8224) (xy 114.515753 113.787645) (xy 114.5729 113.75465) (xy 114.5729 114.6854) (xy 115.382485 114.6854) (xy 115.382497 114.685399) (xy 115.442993 114.678894) (xy 115.579864 114.627844) (xy 115.579865 114.627844) (xy 115.696804 114.540304) (xy 115.784344 114.423365) (xy 115.784344 114.423364) (xy 115.835394 114.286493) (xy 115.841899 114.225997) (xy 115.8419 114.225985) (xy 115.8419 113.5664) (xy 114.761151 113.5664) (xy 114.794145 113.509253) (xy 114.8289 113.379543) (xy 114.8289 113.245257) (xy 114.794145 113.115547) (xy 114.761151 113.0584) (xy 115.8419 113.0584) (xy 115.8419 112.398814) (xy 115.841899 112.398802) (xy 115.835394 112.338306) (xy 115.784344 112.201435) (xy 115.784344 112.201434) (xy 115.696804 112.084495) (xy 115.579866 111.996956) (xy 115.477252 111.958683) (xy 115.420417 111.916136) (xy 115.395606 111.849615) (xy 115.410698 111.780241) (xy 115.432187 111.751534) (xy 115.516547 111.667175) (xy 115.643622 111.492271) (xy 115.741772 111.299641) (xy 115.80858 111.094029) (xy 115.8424 110.880497) (xy 115.8424 110.664303) (xy 115.80858 110.450771) (xy 115.741772 110.245159) (xy 115.643622 110.052529) (xy 115.516547 109.877625) (xy 115.516544 109.877622) (xy 115.516542 109.877619) (xy 115.36368 109.724757) (xy 115.363677 109.724755) (xy 115.363676 109.724754) (xy 115.363675 109.724753) (xy 115.197935 109.604336) (xy 115.154581 109.548114) (xy 115.148506 109.477378) (xy 115.181637 109.414586) (xy 115.197935 109.400464) (xy 115.200627 109.398507) (xy 115.363675 109.280047) (xy 115.516547 109.127175) (xy 115.643622 108.952271) (xy 115.741772 108.759641) (xy 115.80858 108.554029) (xy 115.8424 108.340497) (xy 115.8424 108.124303) (xy 115.80858 107.910771) (xy 115.741772 107.705159) (xy 115.643622 107.512529) (xy 115.516547 107.337625) (xy 115.516544 107.337622) (xy 115.516542 107.337619) (xy 115.36368 107.184757) (xy 115.363677 107.184755) (xy 115.363676 107.184754) (xy 115.363675 107.184753) (xy 115.197935 107.064336) (xy 115.154581 107.008114) (xy 115.148506 106.937378) (xy 115.181637 106.874586) (xy 115.197935 106.860464) (xy 115.20293 106.856835) (xy 115.363675 106.740047) (xy 115.516547 106.587175) (xy 115.643622 106.412271) (xy 115.741772 106.219641) (xy 115.80858 106.014029) (xy 115.8424 105.800497) (xy 115.8424 105.584303) (xy 115.80858 105.370771) (xy 115.741772 105.165159) (xy 115.643622 104.972529) (xy 115.516547 104.797625) (xy 115.516544 104.797622) (xy 115.516542 104.797619) (xy 115.36368 104.644757) (xy 115.363677 104.644755) (xy 115.363675 104.644753) (xy 115.188771 104.517678) (xy 114.996141 104.419528) (xy 114.99614 104.419527) (xy 114.996139 104.419527) (xy 114.790532 104.352721) (xy 114.790529 104.35272) (xy 114.576997 104.3189) (xy 114.060803 104.3189) (xy 113.847271 104.35272) (xy 113.847268 104.35272) (xy 113.847267 104.352721) (xy 113.64166 104.419527) (xy 113.449025 104.51768) (xy 113.274122 104.644755) (xy 113.274119 104.644757) (xy 113.121257 104.797619) (xy 113.121255 104.797622) (xy 112.99418 104.972525) (xy 112.896027 105.16516) (xy 112.829221 105.370767) (xy 112.82922 105.370771) (xy 112.7954 105.584303) (xy 112.7954 105.800497) (xy 112.82922 106.014029) (xy 112.829221 106.014032) (xy 112.854257 106.091086) (xy 112.896028 106.219641) (xy 112.994178 106.412271) (xy 113.121253 106.587175) (xy 113.121255 106.587177) (xy 113.121257 106.58718) (xy 113.274122 106.740045) (xy 113.439864 106.860464) (xy 113.483218 106.916687) (xy 113.489293 106.987423) (xy 113.456161 107.050214) (xy 113.439864 107.064336) (xy 113.274122 107.184754) (xy 113.121257 107.337619) (xy 113.121255 107.337622) (xy 112.994179 107.512525) (xy 112.930107 107.638275) (xy 112.881358 107.68989) (xy 112.812443 107.706956) (xy 112.745242 107.684055) (xy 112.728745 107.670167) (xy 112.669191 107.610613) (xy 112.669189 107.610611) (xy 112.538079 107.523006) (xy 112.392397 107.462663) (xy 112.237744 107.4319) (xy 112.237742 107.4319) (xy 112.080058 107.4319) (xy 112.080055 107.4319) (xy 111.925402 107.462663) (xy 111.925397 107.462665) (xy 111.77972 107.523006) (xy 111.648615 107.610608) (xy 111.648608 107.610613) (xy 111.537113 107.722108) (xy 111.537108 107.722115) (xy 111.449506 107.85322) (xy 111.389165 107.998897) (xy 111.389163 107.998902) (xy 111.3584 108.153555) (xy 102.5133 108.153555) (xy 102.5133 104.36469) (xy 102.501031 104.3189) (xy 102.471832 104.209928) (xy 102.443977 104.161682) (xy 102.443977 104.161681) (xy 102.391726 104.071179) (xy 102.391723 104.071176) (xy 102.391722 104.071173) (xy 102.391719 104.07117) (xy 102.391716 104.071166) (xy 101.205997 102.885447) (xy 101.171971 102.823135) (xy 101.177036 102.75232) (xy 101.219583 102.695484) (xy 101.220996 102.694441) (xy 101.311253 102.628866) (xy 101.402936 102.527042) (xy 101.439034 102.486951) (xy 101.439035 102.486949) (xy 101.43904 102.486944) (xy 101.534527 102.321556) (xy 101.593542 102.139928) (xy 101.613504 101.95) (xy 101.593542 101.760072) (xy 101.534527 101.578444) (xy 101.43904 101.413056) (xy 101.439038 101.413054) (xy 101.439034 101.413048) (xy 101.311255 101.271135) (xy 101.156752 101.158882) (xy 100.982288 101.081206) (xy 100.795487 101.0415) (xy 100.604513 101.0415) (xy 100.604509 101.0415) (xy 100.582268 101.046227) (xy 100.511478 101.040824) (xy 100.466979 101.012075) (xy 96.308459 96.853555) (xy 111.3584 96.853555) (xy 111.3584 97.011244) (xy 111.378233 97.110951) (xy 111.389163 97.165897) (xy 111.449506 97.311579) (xy 111.537111 97.442689) (xy 111.648611 97.554189) (xy 111.779721 97.641794) (xy 111.925403 97.702137) (xy 112.080058 97.7329) (xy 112.080059 97.7329) (xy 112.237741 97.7329) (xy 112.237742 97.7329) (xy 112.392397 97.702137) (xy 112.538079 97.641794) (xy 112.669189 97.554189) (xy 112.728748 97.494629) (xy 112.791056 97.460607) (xy 112.861872 97.465671) (xy 112.918708 97.508217) (xy 112.930104 97.52652) (xy 112.993658 97.651251) (xy 112.99418 97.652274) (xy 113.019924 97.687708) (xy 113.121253 97.827175) (xy 113.121255 97.827177) (xy 113.121257 97.82718) (xy 113.274122 97.980045) (xy 113.439864 98.100464) (xy 113.483218 98.156687) (xy 113.489293 98.227423) (xy 113.456161 98.290214) (xy 113.439864 98.304336) (xy 113.274122 98.424754) (xy 113.121257 98.577619) (xy 113.121255 98.577622) (xy 112.99418 98.752525) (xy 112.896027 98.94516) (xy 112.852574 99.078894) (xy 112.82922 99.150771) (xy 112.7954 99.364303) (xy 112.7954 99.580497) (xy 112.82922 99.794029) (xy 112.829221 99.794032) (xy 112.844136 99.839937) (xy 112.896028 99.999641) (xy 112.994178 100.192271) (xy 113.121253 100.367175) (xy 113.121255 100.367177) (xy 113.121257 100.36718) (xy 113.205609 100.451532) (xy 113.239635 100.513844) (xy 113.23457 100.584659) (xy 113.192023 100.641495) (xy 113.160547 100.658682) (xy 113.057939 100.696953) (xy 113.057934 100.696955) (xy 112.940995 100.784495) (xy 112.853455 100.901434) (xy 112.853455 100.901435) (xy 112.802405 101.038306) (xy 112.7959 101.098802) (xy 112.7959 101.7584) (xy 113.876649 101.7584) (xy 113.843655 101.815547) (xy 113.8089 101.945257) (xy 113.8089 102.079543) (xy 113.843655 102.209253) (xy 113.876649 102.2664) (xy 112.7959 102.2664) (xy 112.7959 102.925997) (xy 112.802405 102.986493) (xy 112.853455 103.123364) (xy 112.853455 103.123365) (xy 112.940995 103.240304) (xy 113.057934 103.327844) (xy 113.194806 103.378894) (xy 113.255302 103.385399) (xy 113.255315 103.3854) (xy 114.0649 103.3854) (xy 114.0649 102.45465) (xy 114.122047 102.487645) (xy 114.251757 102.5224) (xy 114.386043 102.5224) (xy 114.515753 102.487645) (xy 114.5729 102.45465) (xy 114.5729 103.3854) (xy 115.382485 103.3854) (xy 115.382497 103.385399) (xy 115.442993 103.378894) (xy 115.579864 103.327844) (xy 115.579865 103.327844) (xy 115.696804 103.240304) (xy 115.784344 103.123365) (xy 115.784344 103.123364) (xy 115.835394 102.986493) (xy 115.841899 102.925997) (xy 115.8419 102.925985) (xy 115.8419 102.2664) (xy 114.761151 102.2664) (xy 114.794145 102.209253) (xy 114.8289 102.079543) (xy 114.8289 101.945257) (xy 114.794145 101.815547) (xy 114.761151 101.7584) (xy 115.8419 101.7584) (xy 115.8419 101.098814) (xy 115.841899 101.098802) (xy 115.835394 101.038306) (xy 115.784344 100.901435) (xy 115.784344 100.901434) (xy 115.696804 100.784495) (xy 115.579866 100.696956) (xy 115.477252 100.658683) (xy 115.420417 100.616136) (xy 115.395606 100.549615) (xy 115.410698 100.480241) (xy 115.432187 100.451534) (xy 115.516547 100.367175) (xy 115.643622 100.192271) (xy 115.741772 99.999641) (xy 115.80858 99.794029) (xy 115.8424 99.580497) (xy 115.8424 99.364303) (xy 115.80858 99.150771) (xy 115.741772 98.945159) (xy 115.643622 98.752529) (xy 115.516547 98.577625) (xy 115.516544 98.577622) (xy 115.516542 98.577619) (xy 115.36368 98.424757) (xy 115.363677 98.424755) (xy 115.363676 98.424754) (xy 115.363675 98.424753) (xy 115.197935 98.304336) (xy 115.154581 98.248114) (xy 115.148506 98.177378) (xy 115.181637 98.114586) (xy 115.197935 98.100464) (xy 115.200627 98.098507) (xy 115.363675 97.980047) (xy 115.516547 97.827175) (xy 115.643622 97.652271) (xy 115.741772 97.459641) (xy 115.80858 97.254029) (xy 115.8424 97.040497) (xy 115.8424 96.824303) (xy 115.80858 96.610771) (xy 115.741772 96.405159) (xy 115.643622 96.212529) (xy 115.516547 96.037625) (xy 115.516544 96.037622) (xy 115.516542 96.037619) (xy 115.36368 95.884757) (xy 115.363677 95.884755) (xy 115.363676 95.884754) (xy 115.363675 95.884753) (xy 115.197935 95.764336) (xy 115.154581 95.708114) (xy 115.148506 95.637378) (xy 115.181637 95.574586) (xy 115.197935 95.560464) (xy 115.200627 95.558507) (xy 115.363675 95.440047) (xy 115.516547 95.287175) (xy 115.643622 95.112271) (xy 115.741772 94.919641) (xy 115.80858 94.714029) (xy 115.8424 94.500497) (xy 115.8424 94.284303) (xy 115.80858 94.070771) (xy 115.741772 93.865159) (xy 115.643622 93.672529) (xy 115.516547 93.497625) (xy 115.516544 93.497622) (xy 115.516542 93.497619) (xy 115.36368 93.344757) (xy 115.363677 93.344755) (xy 115.363675 93.344753) (xy 115.188771 93.217678) (xy 114.996141 93.119528) (xy 114.99614 93.119527) (xy 114.996139 93.119527) (xy 114.790532 93.052721) (xy 114.790529 93.05272) (xy 114.576997 93.0189) (xy 114.060803 93.0189) (xy 113.847271 93.05272) (xy 113.847268 93.05272) (xy 113.847267 93.052721) (xy 113.64166 93.119527) (xy 113.449025 93.21768) (xy 113.274122 93.344755) (xy 113.274119 93.344757) (xy 113.121257 93.497619) (xy 113.121255 93.497622) (xy 112.99418 93.672525) (xy 112.896027 93.86516) (xy 112.838068 94.043539) (xy 112.82922 94.070771) (xy 112.7954 94.284303) (xy 112.7954 94.500497) (xy 112.82922 94.714029) (xy 112.829221 94.714032) (xy 112.870767 94.841898) (xy 112.896028 94.919641) (xy 112.994178 95.112271) (xy 113.121253 95.287175) (xy 113.121255 95.287177) (xy 113.121257 95.28718) (xy 113.274122 95.440045) (xy 113.439864 95.560464) (xy 113.483218 95.616687) (xy 113.489293 95.687423) (xy 113.456161 95.750214) (xy 113.439864 95.764336) (xy 113.274122 95.884754) (xy 113.121257 96.037619) (xy 113.121255 96.037622) (xy 112.994179 96.212525) (xy 112.930107 96.338275) (xy 112.881358 96.38989) (xy 112.812443 96.406956) (xy 112.745242 96.384055) (xy 112.728745 96.370167) (xy 112.669191 96.310613) (xy 112.669189 96.310611) (xy 112.538079 96.223006) (xy 112.392397 96.162663) (xy 112.383906 96.160974) (xy 112.237744 96.1319) (xy 112.237742 96.1319) (xy 112.080058 96.1319) (xy 112.080055 96.1319) (xy 111.925402 96.162663) (xy 111.925397 96.162665) (xy 111.77972 96.223006) (xy 111.648615 96.310608) (xy 111.648608 96.310613) (xy 111.537113 96.422108) (xy 111.537108 96.422115) (xy 111.449506 96.55322) (xy 111.389165 96.698897) (xy 111.389163 96.698902) (xy 111.3584 96.853555) (xy 96.308459 96.853555) (xy 94.165016 94.710112) (xy 94.13099 94.6478) (xy 94.136055 94.576985) (xy 94.178602 94.520149) (xy 94.18005 94.519081) (xy 94.19519 94.508081) (xy 94.337253 94.404866) (xy 94.337255 94.404864) (xy 94.465034 94.262951) (xy 94.465035 94.262949) (xy 94.46504 94.262944) (xy 94.560527 94.097556) (xy 94.619542 93.915928) (xy 94.639504 93.726) (xy 94.619542 93.536072) (xy 94.560527 93.354444) (xy 94.46504 93.189056) (xy 94.465038 93.189054) (xy 94.465034 93.189048) (xy 94.337255 93.047135) (xy 94.182752 92.934882) (xy 94.008288 92.857206) (xy 93.821487 92.8175) (xy 93.730239 92.8175) (xy 93.662118 92.797498) (xy 93.641144 92.780595) (xy 89.415744 88.555195) (xy 89.381718 88.492883) (xy 89.386783 88.422068) (xy 89.42933 88.365232) (xy 89.49585 88.340421) (xy 89.504839 88.3401) (xy 90.221361 88.3401) (xy 90.289482 88.360102) (xy 90.310456 88.377005) (xy 96.146366 94.212916) (xy 96.14637 94.212919) (xy 96.146373 94.212922) (xy 96.146376 94.212923) (xy 96.146379 94.212926) (xy 96.20556 94.247094) (xy 96.205561 94.247094) (xy 96.285128 94.293032) (xy 96.439889 94.3345) (xy 96.43989 94.3345) (xy 96.439891 94.3345) (xy 103.15331 94.3345) (xy 103.153311 94.3345) (xy 103.232181 94.313367) (xy 103.308073 94.293032) (xy 103.446827 94.212922) (xy 103.712521 93.947228) (xy 103.792632 93.808473) (xy 103.8341 93.65371) (xy 103.8341 93.49349) (xy 103.8341 90.140689) (xy 103.792632 89.985928) (xy 103.712521 89.847172) (xy 103.599228 89.733879) (xy 99.705842 85.840493) (xy 99.518904 85.653555) (xy 111.3584 85.653555) (xy 111.3584 85.653558) (xy 111.3584 85.811242) (xy 111.389163 85.965897) (xy 111.449506 86.111579) (xy 111.537111 86.242689) (xy 111.648611 86.354189) (xy 111.779721 86.441794) (xy 111.925403 86.502137) (xy 112.080058 86.5329) (xy 112.080059 86.5329) (xy 112.237741 86.5329) (xy 112.237742 86.5329) (xy 112.392397 86.502137) (xy 112.538079 86.441794) (xy 112.669189 86.354189) (xy 112.728748 86.294629) (xy 112.791056 86.260607) (xy 112.861872 86.265671) (xy 112.918708 86.308217) (xy 112.930104 86.32652) (xy 112.994178 86.452271) (xy 113.121253 86.627175) (xy 113.121255 86.627177) (xy 113.121257 86.62718) (xy 113.274122 86.780045) (xy 113.439864 86.900464) (xy 113.483218 86.956687) (xy 113.489293 87.027423) (xy 113.456161 87.090214) (xy 113.439864 87.104336) (xy 113.274122 87.224754) (xy 113.121257 87.377619) (xy 113.121255 87.377622) (xy 112.99418 87.552525) (xy 112.896027 87.74516) (xy 112.829221 87.950767) (xy 112.82922 87.950771) (xy 112.7954 88.164303) (xy 112.7954 88.380497) (xy 112.82922 88.594029) (xy 112.896028 88.799641) (xy 112.994178 88.992271) (xy 113.121253 89.167175) (xy 113.121255 89.167177) (xy 113.121257 89.16718) (xy 113.205609 89.251532) (xy 113.239635 89.313844) (xy 113.23457 89.384659) (xy 113.192023 89.441495) (xy 113.160547 89.458682) (xy 113.057939 89.496953) (xy 113.057934 89.496955) (xy 112.940995 89.584495) (xy 112.853455 89.701434) (xy 112.853455 89.701435) (xy 112.802405 89.838306) (xy 112.7959 89.898802) (xy 112.7959 90.5584) (xy 113.876649 90.5584) (xy 113.843655 90.615547) (xy 113.8089 90.745257) (xy 113.8089 90.879543) (xy 113.843655 91.009253) (xy 113.876649 91.0664) (xy 112.7959 91.0664) (xy 112.7959 91.725997) (xy 112.802405 91.786493) (xy 112.853455 91.923364) (xy 112.853455 91.923365) (xy 112.940995 92.040304) (xy 113.057934 92.127844) (xy 113.194806 92.178894) (xy 113.255302 92.185399) (xy 113.255315 92.1854) (xy 114.0649 92.1854) (xy 114.0649 91.25465) (xy 114.122047 91.287645) (xy 114.251757 91.3224) (xy 114.386043 91.3224) (xy 114.515753 91.287645) (xy 114.5729 91.25465) (xy 114.5729 92.1854) (xy 115.382485 92.1854) (xy 115.382497 92.185399) (xy 115.442993 92.178894) (xy 115.579864 92.127844) (xy 115.579865 92.127844) (xy 115.696804 92.040304) (xy 115.784344 91.923365) (xy 115.784344 91.923364) (xy 115.835394 91.786493) (xy 115.841899 91.725997) (xy 115.8419 91.725985) (xy 115.8419 91.0664) (xy 114.761151 91.0664) (xy 114.794145 91.009253) (xy 114.8289 90.879543) (xy 114.8289 90.745257) (xy 114.794145 90.615547) (xy 114.761151 90.5584) (xy 115.8419 90.5584) (xy 115.8419 89.898814) (xy 115.841899 89.898802) (xy 115.835394 89.838306) (xy 115.784344 89.701435) (xy 115.784344 89.701434) (xy 115.696804 89.584495) (xy 115.579866 89.496956) (xy 115.477252 89.458683) (xy 115.420417 89.416136) (xy 115.395606 89.349615) (xy 115.410698 89.280241) (xy 115.432187 89.251534) (xy 115.516547 89.167175) (xy 115.643622 88.992271) (xy 115.741772 88.799641) (xy 115.80858 88.594029) (xy 115.8424 88.380497) (xy 115.8424 88.164303) (xy 115.80858 87.950771) (xy 115.741772 87.745159) (xy 115.643622 87.552529) (xy 115.516547 87.377625) (xy 115.516544 87.377622) (xy 115.516542 87.377619) (xy 115.36368 87.224757) (xy 115.363677 87.224755) (xy 115.363676 87.224754) (xy 115.363675 87.224753) (xy 115.197935 87.104336) (xy 115.154581 87.048114) (xy 115.148506 86.977378) (xy 115.181637 86.914586) (xy 115.197935 86.900464) (xy 115.200627 86.898507) (xy 115.363675 86.780047) (xy 115.516547 86.627175) (xy 115.643622 86.452271) (xy 115.741772 86.259641) (xy 115.80858 86.054029) (xy 115.8424 85.840497) (xy 115.8424 85.624303) (xy 115.80858 85.410771) (xy 115.741772 85.205159) (xy 115.643622 85.012529) (xy 115.516547 84.837625) (xy 115.516544 84.837622) (xy 115.516542 84.837619) (xy 115.36368 84.684757) (xy 115.363677 84.684755) (xy 115.363676 84.684754) (xy 115.363675 84.684753) (xy 115.197935 84.564336) (xy 115.154581 84.508114) (xy 115.148506 84.437378) (xy 115.181637 84.374586) (xy 115.197935 84.360464) (xy 115.200627 84.358507) (xy 115.363675 84.240047) (xy 115.516547 84.087175) (xy 115.643622 83.912271) (xy 115.741772 83.719641) (xy 115.80858 83.514029) (xy 115.8424 83.300497) (xy 115.8424 83.084303) (xy 115.80858 82.870771) (xy 115.741772 82.665159) (xy 115.643622 82.472529) (xy 115.516547 82.297625) (xy 115.516544 82.297622) (xy 115.516542 82.297619) (xy 115.36368 82.144757) (xy 115.363677 82.144755) (xy 115.363675 82.144753) (xy 115.188771 82.017678) (xy 114.996141 81.919528) (xy 114.99614 81.919527) (xy 114.996139 81.919527) (xy 114.790532 81.852721) (xy 114.790529 81.85272) (xy 114.576997 81.8189) (xy 114.060803 81.8189) (xy 113.847271 81.85272) (xy 113.847268 81.85272) (xy 113.847267 81.852721) (xy 113.64166 81.919527) (xy 113.449025 82.01768) (xy 113.274122 82.144755) (xy 113.274119 82.144757) (xy 113.121257 82.297619) (xy 113.121255 82.297622) (xy 112.99418 82.472525) (xy 112.896027 82.66516) (xy 112.862237 82.769156) (xy 112.82922 82.870771) (xy 112.7954 83.084303) (xy 112.7954 83.300497) (xy 112.82922 83.514029) (xy 112.829221 83.514032) (xy 112.869711 83.638648) (xy 112.896028 83.719641) (xy 112.994178 83.912271) (xy 113.121253 84.087175) (xy 113.121255 84.087177) (xy 113.121257 84.08718) (xy 113.274122 84.240045) (xy 113.439864 84.360464) (xy 113.483218 84.416687) (xy 113.489293 84.487423) (xy 113.456161 84.550214) (xy 113.439864 84.564336) (xy 113.274122 84.684754) (xy 113.121257 84.837619) (xy 113.121255 84.837622) (xy 112.994179 85.012525) (xy 112.930107 85.138275) (xy 112.881358 85.18989) (xy 112.812443 85.206956) (xy 112.745242 85.184055) (xy 112.728745 85.170167) (xy 112.669191 85.110613) (xy 112.669189 85.110611) (xy 112.538079 85.023006) (xy 112.392397 84.962663) (xy 112.237744 84.9319) (xy 112.237742 84.9319) (xy 112.080058 84.9319) (xy 112.080055 84.9319) (xy 111.925402 84.962663) (xy 111.925397 84.962665) (xy 111.77972 85.023006) (xy 111.648615 85.110608) (xy 111.648608 85.110613) (xy 111.537113 85.222108) (xy 111.537108 85.222115) (xy 111.449506 85.35322) (xy 111.389165 85.498897) (xy 111.389163 85.498902) (xy 111.3584 85.653555) (xy 99.518904 85.653555) (xy 96.05975 82.1944) (xy 99.111696 82.1944) (xy 99.131657 82.384327) (xy 99.160315 82.472525) (xy 99.190673 82.565956) (xy 99.190676 82.565961) (xy 99.286158 82.731341) (xy 99.286165 82.731351) (xy 99.413944 82.873264) (xy 99.413947 82.873266) (xy 99.568448 82.985518) (xy 99.742912 83.063194) (xy 99.929713 83.1029) (xy 100.120687 83.1029) (xy 100.307488 83.063194) (xy 100.481952 82.985518) (xy 100.636453 82.873266) (xy 100.727936 82.771664) (xy 100.764234 82.731351) (xy 100.764235 82.731349) (xy 100.76424 82.731344) (xy 100.859727 82.565956) (xy 100.918742 82.384328) (xy 100.938704 82.1944) (xy 100.918742 82.004472) (xy 100.859727 81.822844) (xy 100.76424 81.657456) (xy 100.764238 81.657454) (xy 100.764234 81.657448) (xy 100.636455 81.515535) (xy 100.481952 81.403282) (xy 100.307488 81.325606) (xy 100.120687 81.2859) (xy 99.929713 81.2859) (xy 99.742911 81.325606) (xy 99.568447 81.403282) (xy 99.413944 81.515535) (xy 99.286165 81.657448) (xy 99.286158 81.657458) (xy 99.221703 81.769098) (xy 99.190673 81.822844) (xy 99.188163 81.83057) (xy 99.131657 82.004472) (xy 99.111696 82.1944) (xy 96.05975 82.1944) (xy 95.776033 81.910683) (xy 95.776023 81.910675) (xy 95.637277 81.83057) (xy 95.637274 81.830569) (xy 95.637273 81.830568) (xy 95.637271 81.830567) (xy 95.63727 81.830567) (xy 95.559891 81.809834) (xy 95.482511 81.7891) (xy 95.482509 81.7891) (xy 94.45671 81.7891) (xy 94.388589 81.769098) (xy 94.363074 81.74741) (xy 94.337255 81.718735) (xy 94.182752 81.606482) (xy 94.008288 81.528806) (xy 93.821487 81.4891) (xy 93.630513 81.4891) (xy 93.443711 81.528806) (xy 93.269247 81.606482) (xy 93.114744 81.718735) (xy 92.986965 81.860648) (xy 92.986958 81.860658) (xy 92.891476 82.026038) (xy 92.891473 82.026045) (xy 92.832457 82.207672) (xy 92.812496 82.3976) (xy 92.832457 82.587527) (xy 92.846174 82.629741) (xy 92.891473 82.769156) (xy 92.891476 82.769161) (xy 92.986958 82.934541) (xy 92.986965 82.934551) (xy 93.114744 83.076464) (xy 93.125538 83.084306) (xy 93.269248 83.188718) (xy 93.443712 83.266394) (xy 93.630513 83.3061) (xy 93.821487 83.3061) (xy 94.008288 83.266394) (xy 94.182752 83.188718) (xy 94.337253 83.076466) (xy 94.337255 83.076464) (xy 94.363074 83.04779) (xy 94.42352 83.01055) (xy 94.45671 83.0061) (xy 95.098161 83.0061) (xy 95.166282 83.026102) (xy 95.187256 83.043005) (xy 102.580195 90.435944) (xy 102.614221 90.498256) (xy 102.6171 90.525039) (xy 102.6171 91.408819) (xy 102.597098 91.47694) (xy 102.543442 91.523433) (xy 102.473168 91.533537) (xy 102.408588 91.504043) (xy 102.381981 91.471819) (xy 102.288241 91.309458) (xy 102.288234 91.309448) (xy 102.160455 91.167535) (xy 102.005952 91.055282) (xy 101.831488 90.977606) (xy 101.644687 90.9379) (xy 101.453713 90.9379) (xy 101.266911 90.977606) (xy 101.092447 91.055282) (xy 100.937944 91.167535) (xy 100.912126 91.19621) (xy 100.85168 91.23345) (xy 100.81849 91.2379) (xy 97.179839 91.2379) (xy 97.111718 91.217898) (xy 97.090744 91.200995) (xy 90.155209 84.26546) (xy 90.121183 84.203148) (xy 90.118304 84.176365) (xy 90.118304 84.175601) (xy 90.098342 83.985672) (xy 90.074492 83.912271) (xy 90.039327 83.804044) (xy 89.94384 83.638656) (xy 89.943838 83.638654) (xy 89.943834 83.638648) (xy 89.816055 83.496735) (xy 89.661552 83.384482) (xy 89.487088 83.306806) (xy 89.300287 83.2671) (xy 89.109313 83.2671) (xy 88.922511 83.306806) (xy 88.748047 83.384482) (xy 88.618461 83.478632) (xy 88.551593 83.502491) (xy 88.482441 83.48641) (xy 88.470339 83.478632) (xy 88.340752 83.384482) (xy 88.166288 83.306806) (xy 87.979487 83.2671) (xy 87.788513 83.2671) (xy 87.601709 83.306806) (xy 87.43595 83.380607) (xy 87.384702 83.3915) (xy 72.673239 83.3915) (xy 72.605118 83.371498) (xy 72.558625 83.317842) (xy 72.548521 83.247568) (xy 72.578015 83.182988) (xy 72.584144 83.176405) (xy 74.597144 81.163405) (xy 74.659456 81.129379) (xy 74.686239 81.1265) (xy 77.425378 81.1265) (xy 77.493499 81.146502) (xy 77.539992 81.200158) (xy 77.550096 81.270432) (xy 77.520602 81.335012) (xy 77.49944 81.354434) (xy 77.484613 81.365206) (xy 77.417544 81.413935) (xy 77.289765 81.555848) (xy 77.289758 81.555858) (xy 77.194276 81.721238) (xy 77.194273 81.721245) (xy 77.135257 81.902872) (xy 77.115296 82.0928) (xy 77.135257 82.282727) (xy 77.140096 82.297619) (xy 77.194273 82.464356) (xy 77.194276 82.464361) (xy 77.289758 82.629741) (xy 77.289765 82.629751) (xy 77.417544 82.771664) (xy 77.417547 82.771666) (xy 77.572048 82.883918) (xy 77.746512 82.961594) (xy 77.933313 83.0013) (xy 78.124287 83.0013) (xy 78.311088 82.961594) (xy 78.485552 82.883918) (xy 78.640053 82.771666) (xy 78.676362 82.731341) (xy 78.767834 82.629751) (xy 78.767835 82.629749) (xy 78.76784 82.629744) (xy 78.863327 82.464356) (xy 78.922342 82.282728) (xy 78.942304 82.0928) (xy 78.922342 81.902872) (xy 78.863327 81.721244) (xy 78.76784 81.555856) (xy 78.767838 81.555854) (xy 78.767834 81.555848) (xy 78.640055 81.413935) (xy 78.588074 81.376169) (xy 78.55816 81.354435) (xy 78.514807 81.298214) (xy 78.508732 81.227478) (xy 78.541863 81.164686) (xy 78.603683 81.129775) (xy 78.632222 81.1265) (xy 86.44715 81.1265) (xy 86.515271 81.146502) (xy 86.540785 81.168188) (xy 86.612347 81.247666) (xy 86.766848 81.359918) (xy 86.941312 81.437594) (xy 87.128113 81.4773) (xy 87.319087 81.4773) (xy 87.505888 81.437594) (xy 87.680352 81.359918) (xy 87.834853 81.247666) (xy 87.834855 81.247664) (xy 87.962634 81.105751) (xy 87.962635 81.105749) (xy 87.96264 81.105744) (xy 88.038068 80.9751) (xy 88.089451 80.926106) (xy 88.147187 80.9121) (xy 106.00931 80.9121) (xy 106.009311 80.9121) (xy 106.086691 80.891366) (xy 106.164073 80.870632) (xy 106.302827 80.790522) (xy 110.062521 77.030828) (xy 110.142632 76.892073) (xy 110.1841 76.73731) (xy 110.1841 76.57709) (xy 110.1841 74.420684) (xy 111.3271 74.420684) (xy 111.3271 74.634516) (xy 111.346838 74.759134) (xy 111.360552 74.845721) (xy 111.378532 74.901058) (xy 111.426628 75.049083) (xy 111.523706 75.239609) (xy 111.649394 75.412604) (xy 111.649396 75.412606) (xy 111.649398 75.412609) (xy 111.779704 75.542915) (xy 111.81373 75.605227) (xy 111.808665 75.676042) (xy 111.766118 75.732878) (xy 111.756756 75.739251) (xy 111.611947 75.82857) (xy 111.611941 75.828575) (xy 111.486575 75.953941) (xy 111.48657 75.953947) (xy 111.393485 76.104862) (xy 111.337713 76.273172) (xy 111.337712 76.273179) (xy 111.3271 76.377046) (xy 111.3271 77.678144) (xy 111.337712 77.782025) (xy 111.393485 77.950338) (xy 111.48657 78.101252) (xy 111.486575 78.101258) (xy 111.611941 78.226624) (xy 111.611947 78.226629) (xy 111.611948 78.22663) (xy 111.762862 78.319715) (xy 111.931174 78.375487) (xy 112.035055 78.3861) (xy 113.636144 78.386099) (xy 113.740026 78.375487) (xy 113.908338 78.319715) (xy 114.059252 78.22663) (xy 114.18463 78.101252) (xy 114.277715 77.950338) (xy 114.333487 77.782026) (xy 114.3441 77.678145) (xy 114.344099 76.377056) (xy 114.333487 76.273174) (xy 114.277715 76.104862) (xy 114.18463 75.953948) (xy 114.184629 75.953947) (xy 114.184624 75.953941) (xy 114.059258 75.828575) (xy 114.059252 75.82857) (xy 114.028434 75.809561) (xy 113.914442 75.73925) (xy 113.866965 75.686465) (xy 113.855562 75.61639) (xy 113.883855 75.551274) (xy 113.891484 75.542925) (xy 114.021806 75.412604) (xy 114.147494 75.239609) (xy 114.244572 75.049083) (xy 114.310649 74.845716) (xy 114.3441 74.634516) (xy 114.3441 74.420684) (xy 114.310649 74.209484) (xy 114.244572 74.006117) (xy 114.147494 73.815591) (xy 114.021806 73.642596) (xy 114.021803 73.642593) (xy 114.021801 73.64259) (xy 113.870609 73.491398) (xy 113.870606 73.491396) (xy 113.870604 73.491394) (xy 113.697609 73.365706) (xy 113.507083 73.268628) (xy 113.50708 73.268627) (xy 113.507078 73.268626) (xy 113.30372 73.202552) (xy 113.303723 73.202552) (xy 113.264401 73.196324) (xy 113.092516 73.1691) (xy 112.578684 73.1691) (xy 112.370382 73.202092) (xy 112.367478 73.202552) (xy 112.164121 73.268626) (xy 112.164115 73.268629) (xy 111.973587 73.365708) (xy 111.800593 73.491396) (xy 111.80059 73.491398) (xy 111.649398 73.64259) (xy 111.649396 73.642593) (xy 111.523708 73.815587) (xy 111.426629 74.006115) (xy 111.426626 74.006121) (xy 111.360552 74.209478) (xy 111.360551 74.209483) (xy 111.360551 74.209484) (xy 111.3271 74.420684) (xy 110.1841 74.420684) (xy 110.1841 65.820684) (xy 111.3521 65.820684) (xy 111.3521 66.034516) (xy 111.385551 66.245716) (xy 111.385552 66.245721) (xy 111.439314 66.411185) (xy 111.451628 66.449083) (xy 111.548706 66.639609) (xy 111.674394 66.812604) (xy 111.674396 66.812606) (xy 111.674398 66.812609) (xy 111.804704 66.942915) (xy 111.83873 67.005227) (xy 111.833665 67.076042) (xy 111.791118 67.132878) (xy 111.781756 67.139251) (xy 111.636947 67.22857) (xy 111.636941 67.228575) (xy 111.511575 67.353941) (xy 111.51157 67.353947) (xy 111.418485 67.504862) (xy 111.362713 67.673172) (xy 111.362712 67.673179) (xy 111.3521 67.777046) (xy 111.3521 69.078144) (xy 111.362712 69.182025) (xy 111.418485 69.350338) (xy 111.51157 69.501252) (xy 111.511575 69.501258) (xy 111.636941 69.626624) (xy 111.636947 69.626629) (xy 111.636948 69.62663) (xy 111.787862 69.719715) (xy 111.956174 69.775487) (xy 112.060055 69.7861) (xy 113.661144 69.786099) (xy 113.765026 69.775487) (xy 113.933338 69.719715) (xy 114.084252 69.62663) (xy 114.20963 69.501252) (xy 114.302715 69.350338) (xy 114.358487 69.182026) (xy 114.3691 69.078145) (xy 114.369099 67.777056) (xy 114.364456 67.73161) (xy 114.358487 67.673174) (xy 114.320457 67.558406) (xy 114.302715 67.504862) (xy 114.20963 67.353948) (xy 114.209629 67.353947) (xy 114.209624 67.353941) (xy 114.084258 67.228575) (xy 114.084252 67.22857) (xy 113.939442 67.13925) (xy 113.891965 67.086465) (xy 113.880562 67.01639) (xy 113.908855 66.951274) (xy 113.916484 66.942925) (xy 114.046806 66.812604) (xy 114.172494 66.639609) (xy 114.269572 66.449083) (xy 114.335649 66.245716) (xy 114.3691 66.034516) (xy 114.3691 65.820684) (xy 114.335649 65.609484) (xy 114.269572 65.406117) (xy 114.172494 65.215591) (xy 114.046806 65.042596) (xy 114.046803 65.042593) (xy 114.046801 65.04259) (xy 113.895609 64.891398) (xy 113.895606 64.891396) (xy 113.895604 64.891394) (xy 113.722609 64.765706) (xy 113.532083 64.668628) (xy 113.53208 64.668627) (xy 113.532078 64.668626) (xy 113.32872 64.602552) (xy 113.328723 64.602552) (xy 113.289401 64.596324) (xy 113.117516 64.5691) (xy 112.603684 64.5691) (xy 112.392484 64.602551) (xy 112.392478 64.602552) (xy 112.189121 64.668626) (xy 112.189115 64.668629) (xy 111.998587 64.765708) (xy 111.825593 64.891396) (xy 111.82559 64.891398) (xy 111.674398 65.04259) (xy 111.674396 65.042593) (xy 111.548708 65.215587) (xy 111.451629 65.406115) (xy 111.451626 65.406121) (xy 111.385552 65.609478) (xy 111.385551 65.609483) (xy 111.385551 65.609484) (xy 111.3521 65.820684) (xy 110.1841 65.820684) (xy 110.1841 63.165889) (xy 110.142632 63.011128) (xy 110.142632 63.011127) (xy 110.062522 62.872373) (xy 110.06252 62.872371) (xy 110.062516 62.872366) (xy 109.034833 61.844683) (xy 109.034823 61.844675) (xy 108.896077 61.76457) (xy 108.896074 61.764569) (xy 108.896073 61.764568) (xy 108.896071 61.764567) (xy 108.89607 61.764567) (xy 108.818691 61.743834) (xy 108.741311 61.7231) (xy 108.741309 61.7231) (xy 108.57911 61.7231) (xy 108.510989 61.703098) (xy 108.485474 61.68141) (xy 108.459655 61.652735) (xy 108.305152 61.540482) (xy 108.130688 61.462806) (xy 107.943887 61.4231) (xy 107.752913 61.4231) (xy 107.566111 61.462806) (xy 107.391647 61.540482) (xy 107.237144 61.652735) (xy 107.109365 61.794648) (xy 107.109358 61.794658) (xy 107.013876 61.960038) (xy 107.013873 61.960045) (xy 106.954857 62.141672) (xy 106.934896 62.3316) (xy 106.954857 62.521527) (xy 106.984926 62.61407) (xy 107.013873 62.703156) (xy 107.013876 62.703161) (xy 107.109358 62.868541) (xy 107.109365 62.868551) (xy 107.237144 63.010464) (xy 107.237147 63.010466) (xy 107.391648 63.122718) (xy 107.566112 63.200394) (xy 107.752913 63.2401) (xy 107.943887 63.2401) (xy 108.130688 63.200394) (xy 108.305152 63.122718) (xy 108.384097 63.065361) (xy 108.450965 63.041502) (xy 108.520116 63.057583) (xy 108.547253 63.078202) (xy 108.930195 63.461144) (xy 108.964221 63.523456) (xy 108.9671 63.550239) (xy 108.9671 76.352961) (xy 108.947098 76.421082) (xy 108.930195 76.442056) (xy 105.714056 79.658195) (xy 105.651744 79.692221) (xy 105.624961 79.6951) (xy 90.241372 79.6951) (xy 90.173251 79.675098) (xy 90.126758 79.621442) (xy 90.116062 79.58227) (xy 90.098342 79.413672) (xy 90.039327 79.232044) (xy 89.94384 79.066656) (xy 89.943838 79.066654) (xy 89.943834 79.066648) (xy 89.816055 78.924735) (xy 89.661552 78.812482) (xy 89.487088 78.734806) (xy 89.300287 78.6951) (xy 89.195751 78.6951) (xy 89.132751 78.678219) (xy 89.011077 78.60797) (xy 89.011074 78.607969) (xy 89.011073 78.607968) (xy 89.011071 78.607967) (xy 89.01107 78.607967) (xy 88.933691 78.587234) (xy 88.933687 78.587233) (xy 88.856311 78.5665) (xy 73.957689 78.5665) (xy 73.957688 78.5665) (xy 73.880308 78.587233) (xy 73.880308 78.587234) (xy 73.802931 78.607967) (xy 73.802927 78.607968) (xy 73.802922 78.60797) (xy 73.664176 78.688075) (xy 73.664166 78.688083) (xy 58.413154 93.939095) (xy 58.350842 93.973121) (xy 58.280027 93.968056) (xy 58.248552 93.950868) (xy 58.246204 93.949111) (xy 58.246201 93.94911) (xy 58.2462 93.949109) (xy 58.246201 93.949109) (xy 58.109204 93.898011) (xy 58.109196 93.898009) (xy 58.048649 93.8915) (xy 58.048638 93.8915) (xy 56.251362 93.8915) (xy 56.25135 93.8915) (xy 56.190803 93.898009) (xy 56.190795 93.898011) (xy 56.053797 93.94911) (xy 56.053792 93.949112) (xy 55.936738 94.036738) (xy 55.849112 94.153792) (xy 55.849111 94.153795) (xy 55.805 94.272058) (xy 55.762453 94.328893) (xy 55.695932 94.353703) (xy 55.626558 94.338611) (xy 55.594246 94.313363) (xy 55.53324 94.247094) (xy 55.533239 94.247093) (xy 55.533237 94.247091) (xy 55.413684 94.154039) (xy 55.355576 94.108811) (xy 55.355569 94.108807) (xy 55.28453 94.070362) (xy 55.23414 94.020349) (xy 55.2185 93.959549) (xy 55.2185 93.827039) (xy 55.238502 93.758918) (xy 55.255405 93.737944) (xy 72.909944 76.083405) (xy 72.972256 76.049379) (xy 72.999039 76.0465) (xy 107.06689 76.0465) (xy 107.135011 76.066502) (xy 107.160526 76.08819) (xy 107.186344 76.116864) (xy 107.186347 76.116866) (xy 107.340848 76.229118) (xy 107.515312 76.306794) (xy 107.702113 76.3465) (xy 107.893087 76.3465) (xy 108.079888 76.306794) (xy 108.254352 76.229118) (xy 108.408853 76.116866) (xy 108.408855 76.116864) (xy 108.536634 75.974951) (xy 108.536635 75.974949) (xy 108.53664 75.974944) (xy 108.632127 75.809556) (xy 108.691142 75.627928) (xy 108.711104 75.438) (xy 108.691142 75.248072) (xy 108.632127 75.066444) (xy 108.53664 74.901056) (xy 108.536638 74.901054) (xy 108.536634 74.901048) (xy 108.408855 74.759135) (xy 108.254352 74.646882) (xy 108.079888 74.569206) (xy 107.893087 74.5295) (xy 107.702113 74.5295) (xy 107.515311 74.569206) (xy 107.340847 74.646882) (xy 107.186344 74.759135) (xy 107.160526 74.78781) (xy 107.10008 74.82505) (xy 107.06689 74.8295) (xy 103.559373 74.8295) (xy 103.491252 74.809498) (xy 103.444759 74.755842) (xy 103.434655 74.685568) (xy 103.464149 74.620988) (xy 103.477769 74.607496) (xy 105.042239 73.277696) (xy 105.107097 73.248818) (xy 105.123843 73.2477) (xy 105.302287 73.2477) (xy 105.489088 73.207994) (xy 105.663552 73.130318) (xy 105.818053 73.018066) (xy 105.835206 72.999016) (xy 105.945834 72.876151) (xy 105.945835 72.876149) (xy 105.94584 72.876144) (xy 106.041327 72.710756) (xy 106.100342 72.529128) (xy 106.120304 72.3392) (xy 106.100342 72.149272) (xy 106.041327 71.967644) (xy 105.94584 71.802256) (xy 105.945838 71.802254) (xy 105.945834 71.802248) (xy 105.818055 71.660335) (xy 105.663552 71.548082) (xy 105.489088 71.470406) (xy 105.302287 71.4307) (xy 105.111313 71.4307) (xy 104.924511 71.470406) (xy 104.750047 71.548082) (xy 104.595544 71.660335) (xy 104.467765 71.802248) (xy 104.467758 71.802258) (xy 104.372276 71.967638) (xy 104.372273 71.967644) (xy 104.352078 72.029794) (xy 104.313259 72.149267) (xy 104.313258 72.149269) (xy 104.313258 72.149272) (xy 104.307525 72.203814) (xy 104.301123 72.264722) (xy 104.274109 72.330379) (xy 104.257417 72.347554) (xy 101.970419 74.291504) (xy 101.905561 74.320382) (xy 101.888815 74.3215) (xy 72.309889 74.3215) (xy 72.226955 74.343722) (xy 72.15513 74.362967) (xy 72.155123 74.36297) (xy 72.016376 74.443075) (xy 72.016366 74.443083) (xy 52.554242 93.905207) (xy 52.49193 93.939233) (xy 52.424236 93.935285) (xy 52.404635 93.928556) (xy 52.40463 93.928555) (xy 52.345469 93.918683) (xy 52.182569 93.8915) (xy 51.957431 93.8915) (xy 51.811047 93.915927) (xy 51.735369 93.928555) (xy 51.73536 93.928557) (xy 51.522428 94.001656) (xy 51.522426 94.001658) (xy 51.324432 94.108807) (xy 51.324426 94.10881) (xy 51.324424 94.108811) (xy 51.146762 94.247091) (xy 50.994279 94.412729) (xy 50.905483 94.548643) (xy 50.851479 94.594731) (xy 50.781131 94.604306) (xy 50.716774 94.574329) (xy 50.694517 94.548643) (xy 50.60572 94.412729) (xy 50.476221 94.272058) (xy 50.45324 94.247094) (xy 50.453239 94.247093) (xy 50.453237 94.247091) (xy 50.333684 94.154039) (xy 50.275576 94.108811) (xy 50.077574 94.001658) (xy 50.077572 94.001657) (xy 50.077571 94.001656) (xy 49.864639 93.928557) (xy 49.86463 93.928555) (xy 49.805469 93.918683) (xy 49.642569 93.8915) (xy 49.417431 93.8915) (xy 49.271047 93.915927) (xy 49.195369 93.928555) (xy 49.19536 93.928557) (xy 48.982428 94.001656) (xy 48.982426 94.001658) (xy 48.784432 94.108807) (xy 48.784426 94.10881) (xy 48.784424 94.108811) (xy 48.606762 94.247091) (xy 48.454279 94.412729) (xy 48.365483 94.548643) (xy 48.311479 94.594731) (xy 48.241131 94.604306) (xy 48.176774 94.574329) (xy 48.154517 94.548643) (xy 48.06572 94.412729) (xy 47.936221 94.272058) (xy 47.91324 94.247094) (xy 47.913239 94.247093) (xy 47.913237 94.247091) (xy 47.793684 94.154039) (xy 47.735576 94.108811) (xy 47.537574 94.001658) (xy 47.537572 94.001657) (xy 47.537571 94.001656) (xy 47.324639 93.928557) (xy 47.32463 93.928555) (xy 47.265469 93.918683) (xy 47.102569 93.8915) (xy 46.877431 93.8915) (xy 46.731047 93.915927) (xy 46.655369 93.928555) (xy 46.65536 93.928557) (xy 46.442428 94.001656) (xy 46.442426 94.001658) (xy 46.244432 94.108807) (xy 46.244426 94.10881) (xy 46.244424 94.108811) (xy 46.066759 94.247094) (xy 46.005374 94.313775) (xy 45.944521 94.350346) (xy 45.873557 94.348211) (xy 45.815012 94.308049) (xy 45.794618 94.27247) (xy 45.750443 94.154033) (xy 45.662904 94.037095) (xy 45.545965 93.949555) (xy 45.409093 93.898505) (xy 45.348597 93.892) (xy 44.704 93.892) (xy 44.704 94.807749) (xy 44.646853 94.774755) (xy 44.517143 94.74) (xy 44.382857 94.74) (xy 44.253147 94.774755) (xy 44.196 94.807749) (xy 44.196 93.892) (xy 43.551402 93.892) (xy 43.490906 93.898505) (xy 43.354035 93.949555) (xy 43.354034 93.949555) (xy 43.237095 94.037095) (xy 43.149555 94.154034) (xy 43.149553 94.154039) (xy 43.10538 94.27247) (xy 43.062833 94.329306) (xy 42.996313 94.354116) (xy 42.926939 94.339024) (xy 42.894626 94.313777) (xy 42.83324 94.247094) (xy 42.833239 94.247093) (xy 42.833237 94.247091) (xy 42.713684 94.154039) (xy 42.655576 94.108811) (xy 42.457574 94.001658) (xy 42.457572 94.001657) (xy 42.457571 94.001656) (xy 42.244639 93.928557) (xy 42.24463 93.928555) (xy 42.185469 93.918683) (xy 42.022569 93.8915) (xy 41.797431 93.8915) (xy 41.651047 93.915927) (xy 41.575369 93.928555) (xy 41.57536 93.928557) (xy 41.362428 94.001656) (xy 41.362426 94.001658) (xy 41.164432 94.108807) (xy 41.164426 94.10881) (xy 41.164424 94.108811) (xy 40.986762 94.247091) (xy 40.834279 94.412729) (xy 40.745483 94.548643) (xy 40.691479 94.594731) (xy 40.621131 94.604306) (xy 40.556774 94.574329) (xy 40.534517 94.548643) (xy 40.44572 94.412729) (xy 40.316221 94.272058) (xy 40.29324 94.247094) (xy 40.293239 94.247093) (xy 40.293237 94.247091) (xy 40.173684 94.154039) (xy 40.115576 94.108811) (xy 39.917574 94.001658) (xy 39.917572 94.001657) (xy 39.917571 94.001656) (xy 39.704639 93.928557) (xy 39.70463 93.928555) (xy 39.645469 93.918683) (xy 39.482569 93.8915) (xy 39.257431 93.8915) (xy 39.111047 93.915927) (xy 39.035369 93.928555) (xy 39.03536 93.928557) (xy 38.822428 94.001656) (xy 38.822426 94.001658) (xy 38.624432 94.108807) (xy 38.624426 94.10881) (xy 38.624424 94.108811) (xy 38.446762 94.247091) (xy 38.294279 94.412729) (xy 38.294275 94.412734) (xy 38.231983 94.508081) (xy 38.177979 94.55417) (xy 38.107632 94.563745) (xy 38.043274 94.533768) (xy 38.005341 94.473755) (xy 38.0005 94.439166) (xy 38.0005 77.5) (xy 53.586496 77.5) (xy 53.606457 77.689927) (xy 53.636381 77.78202) (xy 53.665473 77.871556) (xy 53.665476 77.871561) (xy 53.760958 78.036941) (xy 53.760965 78.036951) (xy 53.888744 78.178864) (xy 53.888747 78.178866) (xy 54.043248 78.291118) (xy 54.217712 78.368794) (xy 54.404513 78.4085) (xy 54.595487 78.4085) (xy 54.782288 78.368794) (xy 54.948755 78.294678) (xy 55.019118 78.285245) (xy 55.05124 78.294676) (xy 55.217712 78.368794) (xy 55.404513 78.4085) (xy 55.595487 78.4085) (xy 55.782288 78.368794) (xy 55.948755 78.294678) (xy 56.019118 78.285245) (xy 56.05124 78.294676) (xy 56.217712 78.368794) (xy 56.404513 78.4085) (xy 56.595487 78.4085) (xy 56.782288 78.368794) (xy 56.956752 78.291118) (xy 57.111253 78.178866) (xy 57.111255 78.178864) (xy 57.239034 78.036951) (xy 57.239035 78.036949) (xy 57.23904 78.036944) (xy 57.334527 77.871556) (xy 57.393542 77.689928) (xy 57.413504 77.5) (xy 57.393542 77.310072) (xy 57.334527 77.128444) (xy 57.23904 76.963056) (xy 57.239038 76.963054) (xy 57.239034 76.963048) (xy 57.111255 76.821135) (xy 56.956752 76.708882) (xy 56.782288 76.631206) (xy 56.595487 76.5915) (xy 56.404513 76.5915) (xy 56.217711 76.631206) (xy 56.112231 76.678168) (xy 56.051248 76.70532) (xy 55.980882 76.714754) (xy 55.948752 76.70532) (xy 55.782288 76.631206) (xy 55.595487 76.5915) (xy 55.404513 76.5915) (xy 55.217711 76.631206) (xy 55.112231 76.678168) (xy 55.051248 76.70532) (xy 54.980882 76.714754) (xy 54.948752 76.70532) (xy 54.782288 76.631206) (xy 54.595487 76.5915) (xy 54.404513 76.5915) (xy 54.217711 76.631206) (xy 54.043247 76.708882) (xy 53.888744 76.821135) (xy 53.760965 76.963048) (xy 53.760958 76.963058) (xy 53.665476 77.128438) (xy 53.665473 77.128445) (xy 53.606457 77.310072) (xy 53.586496 77.5) (xy 38.0005 77.5) (xy 38.0005 75.071649) (xy 46.0177 75.071649) (xy 46.0177 75.293351) (xy 46.052382 75.512324) (xy 46.052383 75.512329) (xy 46.12089 75.723171) (xy 46.120892 75.723176) (xy 46.221543 75.920715) (xy 46.221545 75.920718) (xy 46.351858 76.100078) (xy 46.508621 76.256841) (xy 46.531108 76.273179) (xy 46.687985 76.387157) (xy 46.885524 76.487808) (xy 47.096376 76.556318) (xy 47.315349 76.591) (xy 47.315352 76.591) (xy 49.737048 76.591) (xy 49.737051 76.591) (xy 49.956024 76.556318) (xy 50.166876 76.487808) (xy 50.364415 76.387157) (xy 50.543776 76.256843) (xy 50.700543 76.100076) (xy 50.830857 75.920715) (xy 50.931508 75.723176) (xy 51.000018 75.512324) (xy 51.0347 75.293351) (xy 51.0347 75.071649) (xy 51.000018 74.852676) (xy 50.931508 74.641824) (xy 50.830857 74.444285) (xy 50.700543 74.264924) (xy 50.700541 74.264921) (xy 50.543778 74.108158) (xy 50.364418 73.977845) (xy 50.364417 73.977844) (xy 50.364415 73.977843) (xy 50.166876 73.877192) (xy 50.166873 73.877191) (xy 50.166871 73.87719) (xy 49.956023 73.808681) (xy 49.956024 73.808681) (xy 49.900388 73.799869) (xy 49.836236 73.769456) (xy 49.831006 73.764516) (xy 49.192323 73.125833) (xy 49.281894 73.101833) (xy 49.384506 73.04259) (xy 49.46829 72.958806) (xy 49.527533 72.856194) (xy 49.551533 72.766623) (xy 50.249338 73.464429) (xy 50.249339 73.464429) (xy 50.32868 73.34299) (xy 50.408364 73.161328) (xy 50.454045 73.106979) (xy 50.521857 73.085955) (xy 50.537221 73.086663) (xy 50.577552 73.090999) (xy 50.577553 73.090999) (xy 50.577562 73.091) (xy 50.577568 73.091) (xy 52.474832 73.091) (xy 52.474838 73.091) (xy 52.474845 73.090999) (xy 52.474849 73.090999) (xy 52.535396 73.08449) (xy 52.535399 73.084489) (xy 52.535401 73.084489) (xy 52.672404 73.033389) (xy 52.789461 72.945761) (xy 52.877087 72.828707) (xy 52.877087 72.828706) (xy 52.877089 72.828704) (xy 52.928189 72.691701) (xy 52.929179 72.6825) (xy 52.934699 72.631149) (xy 52.9347 72.631132) (xy 52.9347 71.65775) (xy 82.6915 71.65775) (xy 82.6915 73.455049) (xy 82.698009 73.515596) (xy 82.698011 73.515604) (xy 82.74911 73.652602) (xy 82.749112 73.652607) (xy 82.836738 73.769661) (xy 82.953792 73.857287) (xy 82.953794 73.857288) (xy 82.953796 73.857289) (xy 83.0076 73.877357) (xy 83.090795 73.908388) (xy 83.090803 73.90839) (xy 83.15135 73.914899) (xy 83.151355 73.914899) (xy 83.151362 73.9149) (xy 83.151368 73.9149) (xy 84.948632 73.9149) (xy 84.948638 73.9149) (xy 84.948645 73.914899) (xy 84.948649 73.914899) (xy 85.009196 73.90839) (xy 85.009199 73.908389) (xy 85.009201 73.908389) (xy 85.146204 73.857289) (xy 85.216399 73.804742) (xy 85.263261 73.769661) (xy 85.350886 73.652608) (xy 85.350885 73.652608) (xy 85.350889 73.652604) (xy 85.395196 73.533813) (xy 85.437741 73.476981) (xy 85.504262 73.45217) (xy 85.573636 73.467262) (xy 85.605952 73.492512) (xy 85.667097 73.558934) (xy 85.844698 73.697167) (xy 85.844699 73.697168) (xy 86.042628 73.804282) (xy 86.04263 73.804283) (xy 86.255483 73.877355) (xy 86.255492 73.877357) (xy 86.336 73.890791) (xy 86.336 72.987102) (xy 86.397007 73.022325) (xy 86.524174 73.0564) (xy 86.655826 73.0564) (xy 86.782993 73.022325) (xy 86.844 72.987102) (xy 86.844 73.89079) (xy 86.924507 73.877357) (xy 86.924516 73.877355) (xy 87.137369 73.804283) (xy 87.137371 73.804282) (xy 87.3353 73.697168) (xy 87.335301 73.697167) (xy 87.512902 73.558934) (xy 87.665327 73.393355) (xy 87.754217 73.257299) (xy 87.80822 73.21121) (xy 87.878568 73.201635) (xy 87.942925 73.231612) (xy 87.965183 73.257298) (xy 88.054279 73.39367) (xy 88.206762 73.559308) (xy 88.261331 73.601781) (xy 88.384424 73.697589) (xy 88.582426 73.804742) (xy 88.582427 73.804742) (xy 88.582428 73.804743) (xy 88.694227 73.843123) (xy 88.795365 73.877844) (xy 89.017431 73.9149) (xy 89.017435 73.9149) (xy 89.242565 73.9149) (xy 89.242569 73.9149) (xy 89.464635 73.877844) (xy 89.677574 73.804742) (xy 89.875576 73.697589) (xy 90.05324 73.559306) (xy 90.205722 73.393668) (xy 90.205927 73.393355) (xy 90.22399 73.365706) (xy 90.294518 73.257754) (xy 90.34852 73.211668) (xy 90.418868 73.202092) (xy 90.483225 73.232069) (xy 90.50548 73.257753) (xy 90.51851 73.277696) (xy 90.594275 73.393665) (xy 90.594279 73.39367) (xy 90.746762 73.559308) (xy 90.801331 73.601781) (xy 90.924424 73.697589) (xy 91.122426 73.804742) (xy 91.122427 73.804742) (xy 91.122428 73.804743) (xy 91.234227 73.843123) (xy 91.335365 73.877844) (xy 91.557431 73.9149) (xy 91.557435 73.9149) (xy 91.782565 73.9149) (xy 91.782569 73.9149) (xy 92.004635 73.877844) (xy 92.217574 73.804742) (xy 92.415576 73.697589) (xy 92.59324 73.559306) (xy 92.745722 73.393668) (xy 92.745927 73.393355) (xy 92.76399 73.365706) (xy 92.86886 73.205191) (xy 92.959296 72.999016) (xy 93.014564 72.780768) (xy 93.033156 72.5564) (xy 93.014564 72.332032) (xy 92.959296 72.113784) (xy 92.86886 71.907609) (xy 92.86214 71.897324) (xy 92.745724 71.719134) (xy 92.74572 71.719129) (xy 92.62957 71.592959) (xy 92.59324 71.553494) (xy 92.593239 71.553493) (xy 92.593237 71.553491) (xy 92.511382 71.489781) (xy 92.415576 71.415211) (xy 92.217574 71.308058) (xy 92.217572 71.308057) (xy 92.217571 71.308056) (xy 92.004639 71.234957) (xy 92.00463 71.234955) (xy 91.927029 71.222006) (xy 91.782569 71.1979) (xy 91.557431 71.1979) (xy 91.412971 71.222006) (xy 91.335369 71.234955) (xy 91.33536 71.234957) (xy 91.122428 71.308056) (xy 91.122426 71.308058) (xy 90.924426 71.41521) (xy 90.924424 71.415211) (xy 90.746762 71.553491) (xy 90.594279 71.719129) (xy 90.505483 71.855043) (xy 90.451479 71.901131) (xy 90.381131 71.910706) (xy 90.316774 71.880729) (xy 90.294517 71.855043) (xy 90.20572 71.719129) (xy 90.08957 71.592959) (xy 90.05324 71.553494) (xy 90.053239 71.553493) (xy 90.053237 71.553491) (xy 89.971382 71.489781) (xy 89.875576 71.415211) (xy 89.677574 71.308058) (xy 89.677572 71.308057) (xy 89.677571 71.308056) (xy 89.464639 71.234957) (xy 89.46463 71.234955) (xy 89.387029 71.222006) (xy 89.242569 71.1979) (xy 89.017431 71.1979) (xy 88.872971 71.222006) (xy 88.795369 71.234955) (xy 88.79536 71.234957) (xy 88.582428 71.308056) (xy 88.582426 71.308058) (xy 88.384426 71.41521) (xy 88.384424 71.415211) (xy 88.206762 71.553491) (xy 88.054279 71.719129) (xy 87.965183 71.855501) (xy 87.911179 71.901589) (xy 87.840831 71.911164) (xy 87.776474 71.881186) (xy 87.754217 71.8555) (xy 87.665327 71.719444) (xy 87.512902 71.553865) (xy 87.335301 71.415632) (xy 87.3353 71.415631) (xy 87.137371 71.308517) (xy 87.137369 71.308516) (xy 86.924512 71.235443) (xy 86.924501 71.23544) (xy 86.844 71.222006) (xy 86.844 72.125697) (xy 86.782993 72.090475) (xy 86.655826 72.0564) (xy 86.524174 72.0564) (xy 86.397007 72.090475) (xy 86.336 72.125697) (xy 86.336 71.222007) (xy 86.335999 71.222006) (xy 86.255498 71.23544) (xy 86.255487 71.235443) (xy 86.04263 71.308516) (xy 86.042628 71.308517) (xy 85.844699 71.415631) (xy 85.844698 71.415632) (xy 85.667096 71.553865) (xy 85.605951 71.620288) (xy 85.545098 71.656859) (xy 85.474134 71.654724) (xy 85.415588 71.614563) (xy 85.395195 71.578983) (xy 85.350889 71.460196) (xy 85.350887 71.460192) (xy 85.263261 71.343138) (xy 85.146207 71.255512) (xy 85.146202 71.25551) (xy 85.009204 71.204411) (xy 85.009196 71.204409) (xy 84.948649 71.1979) (xy 84.948638 71.1979) (xy 83.151362 71.1979) (xy 83.15135 71.1979) (xy 83.090803 71.204409) (xy 83.090795 71.204411) (xy 82.953797 71.25551) (xy 82.953792 71.255512) (xy 82.836738 71.343138) (xy 82.749112 71.460192) (xy 82.74911 71.460197) (xy 82.698011 71.597195) (xy 82.698009 71.597203) (xy 82.6915 71.65775) (xy 52.9347 71.65775) (xy 52.9347 68.133867) (xy 52.934699 68.13385) (xy 52.92819 68.073303) (xy 52.928188 68.073295) (xy 52.922409 68.057802) (xy 82.692 68.057802) (xy 82.692 68.7024) (xy 83.619297 68.7024) (xy 83.584075 68.763407) (xy 83.55 68.890574) (xy 83.55 69.022226) (xy 83.584075 69.149393) (xy 83.619297 69.2104) (xy 82.692 69.2104) (xy 82.692 69.854997) (xy 82.698505 69.915493) (xy 82.749555 70.052364) (xy 82.749555 70.052365) (xy 82.837095 70.169304) (xy 82.954034 70.256844) (xy 83.090906 70.307894) (xy 83.151402 70.314399) (xy 83.151415 70.3144) (xy 83.796 70.3144) (xy 83.796 69.387102) (xy 83.857007 69.422325) (xy 83.984174 69.4564) (xy 84.115826 69.4564) (xy 84.242993 69.422325) (xy 84.304 69.387102) (xy 84.304 70.3144) (xy 84.948585 70.3144) (xy 84.948597 70.314399) (xy 85.009093 70.307894) (xy 85.145964 70.256844) (xy 85.145965 70.256844) (xy 85.262904 70.169304) (xy 85.350444 70.052365) (xy 85.394618 69.93393) (xy 85.437165 69.877094) (xy 85.503685 69.852283) (xy 85.573059 69.867374) (xy 85.605372 69.892622) (xy 85.626427 69.915493) (xy 85.666762 69.959308) (xy 85.721331 70.001781) (xy 85.844424 70.097589) (xy 86.042426 70.204742) (xy 86.042427 70.204742) (xy 86.042428 70.204743) (xy 86.105895 70.226531) (xy 86.255365 70.277844) (xy 86.477431 70.3149) (xy 86.477435 70.3149) (xy 86.702565 70.3149) (xy 86.702569 70.3149) (xy 86.924635 70.277844) (xy 87.137574 70.204742) (xy 87.335576 70.097589) (xy 87.51324 69.959306) (xy 87.665722 69.793668) (xy 87.754518 69.657754) (xy 87.80852 69.611668) (xy 87.878868 69.602092) (xy 87.943225 69.632069) (xy 87.96548 69.657753) (xy 87.998607 69.708458) (xy 88.054275 69.793665) (xy 88.054279 69.79367) (xy 88.206762 69.959308) (xy 88.261331 70.001781) (xy 88.384424 70.097589) (xy 88.582426 70.204742) (xy 88.582427 70.204742) (xy 88.582428 70.204743) (xy 88.645895 70.226531) (xy 88.795365 70.277844) (xy 89.017431 70.3149) (xy 89.017435 70.3149) (xy 89.242565 70.3149) (xy 89.242569 70.3149) (xy 89.464635 70.277844) (xy 89.677574 70.204742) (xy 89.875576 70.097589) (xy 90.05324 69.959306) (xy 90.205722 69.793668) (xy 90.294518 69.657754) (xy 90.34852 69.611668) (xy 90.418868 69.602092) (xy 90.483225 69.632069) (xy 90.50548 69.657753) (xy 90.538607 69.708458) (xy 90.594275 69.793665) (xy 90.594279 69.79367) (xy 90.746762 69.959308) (xy 90.801331 70.001781) (xy 90.924424 70.097589) (xy 91.122426 70.204742) (xy 91.122427 70.204742) (xy 91.122428 70.204743) (xy 91.185895 70.226531) (xy 91.335365 70.277844) (xy 91.557431 70.3149) (xy 91.557435 70.3149) (xy 91.782565 70.3149) (xy 91.782569 70.3149) (xy 92.004635 70.277844) (xy 92.217574 70.204742) (xy 92.415576 70.097589) (xy 92.59324 69.959306) (xy 92.745722 69.793668) (xy 92.86886 69.605191) (xy 92.959296 69.399016) (xy 93.014564 69.180768) (xy 93.033156 68.9564) (xy 93.014564 68.732032) (xy 92.993637 68.649393) (xy 92.959297 68.513787) (xy 92.959296 68.513786) (xy 92.959296 68.513784) (xy 92.86886 68.307609) (xy 92.86214 68.297324) (xy 92.745724 68.119134) (xy 92.74572 68.119129) (xy 92.593237 67.953491) (xy 92.473679 67.860435) (xy 92.415576 67.815211) (xy 92.217574 67.708058) (xy 92.217572 67.708057) (xy 92.217571 67.708056) (xy 92.004639 67.634957) (xy 92.00463 67.634955) (xy 91.960476 67.627587) (xy 91.782569 67.5979) (xy 91.557431 67.5979) (xy 91.409211 67.622633) (xy 91.335369 67.634955) (xy 91.33536 67.634957) (xy 91.122428 67.708056) (xy 91.122426 67.708058) (xy 90.994929 67.777056) (xy 90.924426 67.81521) (xy 90.924424 67.815211) (xy 90.746762 67.953491) (xy 90.594279 68.119129) (xy 90.505483 68.255043) (xy 90.451479 68.301131) (xy 90.381131 68.310706) (xy 90.316774 68.280729) (xy 90.294517 68.255043) (xy 90.20572 68.119129) (xy 90.053237 67.953491) (xy 89.933679 67.860435) (xy 89.875576 67.815211) (xy 89.677574 67.708058) (xy 89.677572 67.708057) (xy 89.677571 67.708056) (xy 89.464639 67.634957) (xy 89.46463 67.634955) (xy 89.420476 67.627587) (xy 89.242569 67.5979) (xy 89.017431 67.5979) (xy 88.869211 67.622633) (xy 88.795369 67.634955) (xy 88.79536 67.634957) (xy 88.582428 67.708056) (xy 88.582426 67.708058) (xy 88.454929 67.777056) (xy 88.384426 67.81521) (xy 88.384424 67.815211) (xy 88.206762 67.953491) (xy 88.054279 68.119129) (xy 87.965483 68.255043) (xy 87.911479 68.301131) (xy 87.841131 68.310706) (xy 87.776774 68.280729) (xy 87.754517 68.255043) (xy 87.66572 68.119129) (xy 87.513237 67.953491) (xy 87.393679 67.860435) (xy 87.335576 67.815211) (xy 87.137574 67.708058) (xy 87.137572 67.708057) (xy 87.137571 67.708056) (xy 86.924639 67.634957) (xy 86.92463 67.634955) (xy 86.880476 67.627587) (xy 86.702569 67.5979) (xy 86.477431 67.5979) (xy 86.329211 67.622633) (xy 86.255369 67.634955) (xy 86.25536 67.634957) (xy 86.042428 67.708056) (xy 86.042426 67.708058) (xy 85.914929 67.777056) (xy 85.844426 67.81521) (xy 85.844424 67.815211) (xy 85.666759 67.953494) (xy 85.605374 68.020175) (xy 85.544521 68.056746) (xy 85.473557 68.054611) (xy 85.415012 68.014449) (xy 85.394618 67.97887) (xy 85.350443 67.860433) (xy 85.262904 67.743495) (xy 85.145965 67.655955) (xy 85.009093 67.604905) (xy 84.948597 67.5984) (xy 84.304 67.5984) (xy 84.304 68.525697) (xy 84.242993 68.490475) (xy 84.115826 68.4564) (xy 83.984174 68.4564) (xy 83.857007 68.490475) (xy 83.796 68.525697) (xy 83.796 67.5984) (xy 83.151402 67.5984) (xy 83.090906 67.604905) (xy 82.954035 67.655955) (xy 82.954034 67.655955) (xy 82.837095 67.743495) (xy 82.749555 67.860434) (xy 82.749555 67.860435) (xy 82.698505 67.997306) (xy 82.692 68.057802) (xy 52.922409 68.057802) (xy 52.892515 67.977655) (xy 52.877089 67.936296) (xy 52.877088 67.936294) (xy 52.877087 67.936292) (xy 52.789461 67.819238) (xy 52.672407 67.731612) (xy 52.672402 67.73161) (xy 52.535404 67.680511) (xy 52.535396 67.680509) (xy 52.474849 67.674) (xy 52.474838 67.674) (xy 50.611729 67.674) (xy 50.543608 67.653998) (xy 50.497115 67.600342) (xy 50.486159 67.558406) (xy 50.481722 67.504862) (xy 50.477508 67.454003) (xy 50.421223 67.231739) (xy 50.329122 67.02177) (xy 50.203718 66.829824) (xy 50.048431 66.661137) (xy 49.867496 66.52031) (xy 49.867495 66.520309) (xy 49.735881 66.449084) (xy 49.66585 66.411185) (xy 49.665848 66.411184) (xy 49.665847 66.411183) (xy 49.448997 66.336739) (xy 49.448988 66.336737) (xy 49.404021 66.329233) (xy 49.22284 66.299) (xy 48.99356 66.299) (xy 48.842612 66.324188) (xy 48.767411 66.336737) (xy 48.767402 66.336739) (xy 48.550552 66.411183) (xy 48.55055 66.411185) (xy 48.348904 66.520309) (xy 48.348903 66.52031) (xy 48.167966 66.661139) (xy 48.012679 66.829827) (xy 47.88728 67.021767) (xy 47.887273 67.021779) (xy 47.795178 67.231735) (xy 47.795175 67.231742) (xy 47.738893 67.453995) (xy 47.738892 67.454001) (xy 47.738892 67.454003) (xy 47.719958 67.6825) (xy 47.734702 67.860435) (xy 47.738893 67.911004) (xy 47.795175 68.133257) (xy 47.795178 68.133264) (xy 47.887273 68.34322) (xy 47.887275 68.343224) (xy 47.887278 68.34323) (xy 47.901662 68.365246) (xy 47.983477 68.490475) (xy 48.012682 68.535176) (xy 48.167969 68.703863) (xy 48.291321 68.799871) (xy 48.334379 68.833385) (xy 48.37585 68.891011) (xy 48.379584 68.961909) (xy 48.344394 69.023571) (xy 48.33438 69.032248) (xy 48.324696 69.039785) (xy 48.324696 69.039786) (xy 49.024077 69.739166) (xy 48.934506 69.763167) (xy 48.831894 69.82241) (xy 48.74811 69.906194) (xy 48.688867 70.008806) (xy 48.664866 70.098375) (xy 47.967059 69.400568) (xy 47.967058 69.400569) (xy 47.887723 69.522) (xy 47.887719 69.522008) (xy 47.795651 69.731903) (xy 47.739388 69.95408) (xy 47.72046 70.1825) (xy 47.739388 70.410919) (xy 47.795651 70.633096) (xy 47.887719 70.84299) (xy 47.967059 70.964429) (xy 48.664866 70.266622) (xy 48.688867 70.356194) (xy 48.74811 70.458806) (xy 48.831894 70.54259) (xy 48.934506 70.601833) (xy 49.024074 70.625833) (xy 48.324695 71.325212) (xy 48.334789 71.333069) (xy 48.376259 71.390695) (xy 48.379991 71.461593) (xy 48.3448 71.523254) (xy 48.334789 71.531929) (xy 48.324696 71.539784) (xy 48.324696 71.539786) (xy 49.024077 72.239166) (xy 48.934506 72.263167) (xy 48.831894 72.32241) (xy 48.74811 72.406194) (xy 48.688867 72.508806) (xy 48.664866 72.598376) (xy 47.967059 71.900568) (xy 47.967058 71.900569) (xy 47.887723 72.022) (xy 47.887719 72.022008) (xy 47.795651 72.231903) (xy 47.739388 72.45408) (xy 47.72046 72.6825) (xy 47.739388 72.910919) (xy 47.795651 73.133096) (xy 47.887717 73.342987) (xy 47.887721 73.342993) (xy 48.013075 73.534864) (xy 48.038665 73.562662) (xy 48.070086 73.626327) (xy 48.0621 73.696873) (xy 48.017241 73.751902) (xy 47.949752 73.773943) (xy 47.945964 73.774) (xy 47.315349 73.774) (xy 47.096376 73.808682) (xy 47.09637 73.808683) (xy 46.885528 73.87719) (xy 46.885522 73.877193) (xy 46.687981 73.977845) (xy 46.508621 74.108158) (xy 46.351858 74.264921) (xy 46.221545 74.444281) (xy 46.120893 74.641822) (xy 46.12089 74.641828) (xy 46.052383 74.85267) (xy 46.052382 74.852675) (xy 46.052382 74.852676) (xy 46.0177 75.071649) (xy 38.0005 75.071649) (xy 38.0005 69.171691) (xy 44.3182 69.171691) (xy 44.3182 70.1285) (xy 45.3262 70.1285) (xy 45.3262 70.6365) (xy 44.3182 70.6365) (xy 44.3182 71.593308) (xy 44.35287 71.81221) (xy 44.421355 72.022983) (xy 44.421356 72.022985) (xy 44.521972 72.220456) (xy 44.652239 72.399753) (xy 44.808946 72.55646) (xy 44.988243 72.686727) (xy 45.185714 72.787343) (xy 45.185716 72.787344) (xy 45.396489 72.855829) (xy 45.4722 72.86782) (xy 45.4722 71.794186) (xy 45.480594 71.80258) (xy 45.571806 71.855241) (xy 45.673539 71.8825) (xy 45.778861 71.8825) (xy 45.880594 71.855241) (xy 45.971806 71.80258) (xy 45.9802 71.794186) (xy 45.9802 72.86782) (xy 46.055909 72.855829) (xy 46.055911 72.855829) (xy 46.266683 72.787344) (xy 46.266685 72.787343) (xy 46.464156 72.686727) (xy 46.643453 72.55646) (xy 46.80016 72.399753) (xy 46.930427 72.220456) (xy 47.031043 72.022985) (xy 47.031044 72.022983) (xy 47.099529 71.81221) (xy 47.1342 71.593308) (xy 47.1342 70.6365) (xy 46.1262 70.6365) (xy 46.1262 70.1285) (xy 47.1342 70.1285) (xy 47.1342 69.171691) (xy 47.099529 68.952789) (xy 47.031044 68.742016) (xy 47.031043 68.742014) (xy 46.930427 68.544543) (xy 46.80016 68.365246) (xy 46.643453 68.208539) (xy 46.464156 68.078272) (xy 46.266685 67.977656) (xy 46.266683 67.977655) (xy 46.055909 67.909169) (xy 45.9802 67.897178) (xy 45.9802 68.970814) (xy 45.971806 68.96242) (xy 45.880594 68.909759) (xy 45.778861 68.8825) (xy 45.673539 68.8825) (xy 45.571806 68.909759) (xy 45.480594 68.96242) (xy 45.4722 68.970814) (xy 45.4722 67.897178) (xy 45.39649 67.909169) (xy 45.185716 67.977655) (xy 45.185714 67.977656) (xy 44.988243 68.078272) (xy 44.808946 68.208539) (xy 44.652239 68.365246) (xy 44.521972 68.544543) (xy 44.421356 68.742014) (xy 44.421355 68.742016) (xy 44.35287 68.952789) (xy 44.3182 69.171691) (xy 38.0005 69.171691) (xy 38.0005 65.9892) (xy 100.229296 65.9892) (xy 100.249257 66.179127) (xy 100.279326 66.27167) (xy 100.308273 66.360756) (xy 100.308276 66.360761) (xy 100.403758 66.526141) (xy 100.403765 66.526151) (xy 100.531544 66.668064) (xy 100.531547 66.668066) (xy 100.686048 66.780318) (xy 100.860512 66.857994) (xy 101.047313 66.8977) (xy 101.238287 66.8977) (xy 101.425088 66.857994) (xy 101.599552 66.780318) (xy 101.754053 66.668066) (xy 101.88184 66.526144) (xy 101.977327 66.360756) (xy 102.036342 66.179128) (xy 102.056304 65.9892) (xy 102.036342 65.799272) (xy 101.977327 65.617644) (xy 101.88184 65.452256) (xy 101.881838 65.452254) (xy 101.881834 65.452248) (xy 101.754055 65.310335) (xy 101.599552 65.198082) (xy 101.425088 65.120406) (xy 101.238287 65.0807) (xy 101.047313 65.0807) (xy 100.860511 65.120406) (xy 100.686047 65.198082) (xy 100.531544 65.310335) (xy 100.403765 65.452248) (xy 100.403758 65.452258) (xy 100.308276 65.617638) (xy 100.308273 65.617645) (xy 100.249257 65.799272) (xy 100.229296 65.9892) (xy 38.0005 65.9892) (xy 38.0005 59.341903) (xy 79.8557 59.341903) (xy 79.8557 59.858097) (xy 79.88952 60.071629) (xy 79.956328 60.277241) (xy 80.054478 60.469871) (xy 80.181553 60.644775) (xy 80.181555 60.644777) (xy 80.181557 60.64478) (xy 80.334419 60.797642) (xy 80.334422 60.797644) (xy 80.334425 60.797647) (xy 80.509329 60.924722) (xy 80.701959 61.022872) (xy 80.907571 61.08968) (xy 81.121103 61.1235) (xy 81.121106 61.1235) (xy 81.337294 61.1235) (xy 81.337297 61.1235) (xy 81.550829 61.08968) (xy 81.756441 61.022872) (xy 81.949071 60.924722) (xy 82.123975 60.797647) (xy 82.276847 60.644775) (xy 82.397264 60.479035) (xy 82.453486 60.435681) (xy 82.524222 60.429606) (xy 82.587014 60.462737) (xy 82.601136 60.479035) (xy 82.721553 60.644775) (xy 82.721555 60.644777) (xy 82.721557 60.64478) (xy 82.874419 60.797642) (xy 82.874422 60.797644) (xy 82.874425 60.797647) (xy 83.049329 60.924722) (xy 83.175076 60.988793) (xy 83.22669 61.03754) (xy 83.243756 61.106455) (xy 83.220855 61.173657) (xy 83.206968 61.190154) (xy 83.147409 61.249713) (xy 83.147408 61.249715) (xy 83.059806 61.38082) (xy 82.999465 61.526497) (xy 82.999463 61.526502) (xy 82.9687 61.681155) (xy 82.9687 61.838844) (xy 82.992809 61.960044) (xy 82.999463 61.993497) (xy 83.059806 62.139179) (xy 83.147411 62.270289) (xy 83.258911 62.381789) (xy 83.390021 62.469394) (xy 83.535703 62.529737) (xy 83.690358 62.5605) (xy 83.690359 62.5605) (xy 83.848041 62.5605) (xy 83.848042 62.5605) (xy 84.002697 62.529737) (xy 84.148379 62.469394) (xy 84.279489 62.381789) (xy 84.390989 62.270289) (xy 84.478594 62.139179) (xy 84.538937 61.993497) (xy 84.5697 61.838842) (xy 84.5697 61.681158) (xy 84.538937 61.526503) (xy 84.478594 61.380821) (xy 84.390989 61.249711) (xy 84.331432 61.190154) (xy 84.297406 61.127842) (xy 84.302471 61.057027) (xy 84.345018 61.000191) (xy 84.363317 60.988796) (xy 84.489071 60.924722) (xy 84.663975 60.797647) (xy 84.816847 60.644775) (xy 84.937264 60.479035) (xy 84.993486 60.435681) (xy 85.064222 60.429606) (xy 85.127014 60.462737) (xy 85.141136 60.479035) (xy 85.261553 60.644775) (xy 85.261555 60.644777) (xy 85.261557 60.64478) (xy 85.414419 60.797642) (xy 85.414422 60.797644) (xy 85.414425 60.797647) (xy 85.589329 60.924722) (xy 85.781959 61.022872) (xy 85.987571 61.08968) (xy 86.201103 61.1235) (xy 86.201106 61.1235) (xy 86.417294 61.1235) (xy 86.417297 61.1235) (xy 86.630829 61.08968) (xy 86.836441 61.022872) (xy 87.029071 60.924722) (xy 87.203975 60.797647) (xy 87.288333 60.713288) (xy 87.350643 60.679265) (xy 87.421459 60.684329) (xy 87.478295 60.726875) (xy 87.495483 60.758352) (xy 87.533756 60.860966) (xy 87.621295 60.977904) (xy 87.738234 61.065444) (xy 87.875106 61.116494) (xy 87.935602 61.122999) (xy 87.935615 61.123) (xy 88.5952 61.123) (xy 88.5952 60.04225) (xy 88.652347 60.075245) (xy 88.782057 60.11) (xy 88.916343 60.11) (xy 89.046053 60.075245) (xy 89.1032 60.04225) (xy 89.1032 61.123) (xy 89.762785 61.123) (xy 89.762797 61.122999) (xy 89.823293 61.116494) (xy 89.960164 61.065444) (xy 89.960165 61.065444) (xy 90.077104 60.977904) (xy 90.164644 60.860965) (xy 90.164644 60.860964) (xy 90.215694 60.724093) (xy 90.222199 60.663597) (xy 90.2222 60.663585) (xy 90.2222 59.854) (xy 89.291451 59.854) (xy 89.324445 59.796853) (xy 89.3592 59.667143) (xy 89.3592 59.532857) (xy 89.324445 59.403147) (xy 89.291451 59.346) (xy 90.2222 59.346) (xy 90.2222 59.28) (xy 100.786496 59.28) (xy 100.806457 59.469927) (xy 100.826905 59.532857) (xy 100.865473 59.651556) (xy 100.865476 59.651561) (xy 100.960958 59.816941) (xy 100.960965 59.816951) (xy 101.088744 59.958864) (xy 101.088747 59.958866) (xy 101.243248 60.071118) (xy 101.417712 60.148794) (xy 101.604513 60.1885) (xy 101.795487 60.1885) (xy 101.982288 60.148794) (xy 102.156752 60.071118) (xy 102.311253 59.958866) (xy 102.401986 59.858097) (xy 102.439034 59.816951) (xy 102.439035 59.816949) (xy 102.43904 59.816944) (xy 102.534527 59.651556) (xy 102.593542 59.469928) (xy 102.613504 59.28) (xy 102.593542 59.090072) (xy 102.534527 58.908444) (xy 102.43904 58.743056) (xy 102.439038 58.743054) (xy 102.439034 58.743048) (xy 102.311255 58.601135) (xy 102.156752 58.488882) (xy 101.982288 58.411206) (xy 101.795487 58.3715) (xy 101.604513 58.3715) (xy 101.417711 58.411206) (xy 101.243247 58.488882) (xy 101.088744 58.601135) (xy 100.960965 58.743048) (xy 100.960958 58.743058) (xy 100.905162 58.8397) (xy 100.865473 58.908444) (xy 100.857134 58.934108) (xy 100.806457 59.090072) (xy 100.786496 59.28) (xy 90.2222 59.28) (xy 90.2222 58.536414) (xy 90.222199 58.536402) (xy 90.215694 58.475906) (xy 90.164644 58.339035) (xy 90.164644 58.339034) (xy 90.077104 58.222095) (xy 89.960165 58.134555) (xy 89.823293 58.083505) (xy 89.762797 58.077) (xy 89.1032 58.077) (xy 89.1032 59.157749) (xy 89.046053 59.124755) (xy 88.916343 59.09) (xy 88.782057 59.09) (xy 88.652347 59.124755) (xy 88.5952 59.157749) (xy 88.5952 58.077) (xy 87.935602 58.077) (xy 87.875106 58.083505) (xy 87.738235 58.134555) (xy 87.738234 58.134555) (xy 87.621295 58.222095) (xy 87.533755 58.339034) (xy 87.533753 58.339039) (xy 87.495482 58.441647) (xy 87.452935 58.498483) (xy 87.386415 58.523293) (xy 87.317041 58.508201) (xy 87.288332 58.486709) (xy 87.20398 58.402357) (xy 87.203977 58.402355) (xy 87.203975 58.402353) (xy 87.029071 58.275278) (xy 86.836441 58.177128) (xy 86.83644 58.177127) (xy 86.836439 58.177127) (xy 86.630832 58.110321) (xy 86.630829 58.11032) (xy 86.417297 58.0765) (xy 86.201103 58.0765) (xy 85.987571 58.11032) (xy 85.987568 58.11032) (xy 85.987567 58.110321) (xy 85.78196 58.177127) (xy 85.589325 58.27528) (xy 85.414422 58.402355) (xy 85.414419 58.402357) (xy 85.261554 58.555222) (xy 85.141136 58.720964) (xy 85.084913 58.764318) (xy 85.014177 58.770393) (xy 84.951386 58.737261) (xy 84.937264 58.720964) (xy 84.816845 58.555222) (xy 84.66398 58.402357) (xy 84.663977 58.402355) (xy 84.663975 58.402353) (xy 84.489071 58.275278) (xy 84.296441 58.177128) (xy 84.29644 58.177127) (xy 84.296439 58.177127) (xy 84.090832 58.110321) (xy 84.090829 58.11032) (xy 83.877297 58.0765) (xy 83.661103 58.0765) (xy 83.447571 58.11032) (xy 83.447568 58.11032) (xy 83.447567 58.110321) (xy 83.24196 58.177127) (xy 83.049325 58.27528) (xy 82.874422 58.402355) (xy 82.874419 58.402357) (xy 82.721554 58.555222) (xy 82.601136 58.720964) (xy 82.544913 58.764318) (xy 82.474177 58.770393) (xy 82.411386 58.737261) (xy 82.397264 58.720964) (xy 82.276845 58.555222) (xy 82.12398 58.402357) (xy 82.123977 58.402355) (xy 82.123975 58.402353) (xy 81.949071 58.275278) (xy 81.756441 58.177128) (xy 81.75644 58.177127) (xy 81.756439 58.177127) (xy 81.550832 58.110321) (xy 81.550829 58.11032) (xy 81.337297 58.0765) (xy 81.121103 58.0765) (xy 80.907571 58.11032) (xy 80.907568 58.11032) (xy 80.907567 58.110321) (xy 80.70196 58.177127) (xy 80.509325 58.27528) (xy 80.334422 58.402355) (xy 80.334419 58.402357) (xy 80.181557 58.555219) (xy 80.181555 58.555222) (xy 80.05448 58.730125) (xy 79.956327 58.92276) (xy 79.901964 59.090072) (xy 79.88952 59.128371) (xy 79.8557 59.341903) (xy 38.0005 59.341903) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.012308 58.729542) (xy 38.017382 58.613336) (xy 38.01834 58.602388) (xy 38.021629 58.577404) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.078068 58.177128) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.194764 57.705575) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.356455 57.256832) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.710155 56.58255) (xy 60.2587 56.58255) (xy 60.2587 58.379849) (xy 60.265209 58.440396) (xy 60.265211 58.440404) (xy 60.31631 58.577402) (xy 60.316312 58.577407) (xy 60.403938 58.694461) (xy 60.520992 58.782087) (xy 60.520994 58.782088) (xy 60.520996 58.782089) (xy 60.5761 58.802642) (xy 60.657995 58.833188) (xy 60.658003 58.83319) (xy 60.71855 58.839699) (xy 60.718555 58.839699) (xy 60.718562 58.8397) (xy 60.718568 58.8397) (xy 62.515832 58.8397) (xy 62.515838 58.8397) (xy 62.515845 58.839699) (xy 62.515849 58.839699) (xy 62.576396 58.83319) (xy 62.576399 58.833189) (xy 62.576401 58.833189) (xy 62.713404 58.782089) (xy 62.783599 58.729542) (xy 62.830461 58.694461) (xy 62.918086 58.577408) (xy 62.918085 58.577408) (xy 62.918089 58.577404) (xy 62.962199 58.459139) (xy 63.004745 58.402307) (xy 63.071266 58.377496) (xy 63.14064 58.392588) (xy 63.172953 58.417835) (xy 63.210979 58.459142) (xy 63.233962 58.484108) (xy 63.237304 58.486709) (xy 63.411624 58.622389) (xy 63.609626 58.729542) (xy 63.609627 58.729542) (xy 63.609628 58.729543) (xy 63.710925 58.764318) (xy 63.822565 58.802644) (xy 64.044631 58.8397) (xy 64.044635 58.8397) (xy 64.269765 58.8397) (xy 64.269769 58.8397) (xy 64.491835 58.802644) (xy 64.704774 58.729542) (xy 64.902776 58.622389) (xy 65.08044 58.484106) (xy 65.232922 58.318468) (xy 65.321718 58.182554) (xy 65.37572 58.136468) (xy 65.446068 58.126892) (xy 65.510425 58.156869) (xy 65.53268 58.182553) (xy 65.559838 58.224121) (xy 65.621475 58.318465) (xy 65.621479 58.31847) (xy 65.773962 58.484108) (xy 65.777304 58.486709) (xy 65.951624 58.622389) (xy 66.149626 58.729542) (xy 66.149627 58.729542) (xy 66.149628 58.729543) (xy 66.250925 58.764318) (xy 66.362565 58.802644) (xy 66.584631 58.8397) (xy 66.584635 58.8397) (xy 66.809765 58.8397) (xy 66.809769 58.8397) (xy 67.031835 58.802644) (xy 67.244774 58.729542) (xy 67.442776 58.622389) (xy 67.62044 58.484106) (xy 67.772922 58.318468) (xy 67.89606 58.129991) (xy 67.986496 57.923816) (xy 68.041764 57.705568) (xy 68.060356 57.4812) (xy 68.041764 57.256832) (xy 67.986496 57.038584) (xy 67.89606 56.832409) (xy 67.8787 56.805837) (xy 67.772924 56.643934) (xy 67.77292 56.643929) (xy 67.620437 56.478291) (xy 67.500567 56.384992) (xy 67.442776 56.340011) (xy 67.244774 56.232858) (xy 67.244772 56.232857) (xy 67.244771 56.232856) (xy 67.031839 56.159757) (xy 67.03183 56.159755) (xy 66.987676 56.152387) (xy 66.809769 56.1227) (xy 66.584631 56.1227) (xy 66.436411 56.147433) (xy 66.362569 56.159755) (xy 66.36256 56.159757) (xy 66.149628 56.232856) (xy 66.149626 56.232858) (xy 65.951626 56.34001) (xy 65.951624 56.340011) (xy 65.773962 56.478291) (xy 65.621479 56.643929) (xy 65.532683 56.779843) (xy 65.478679 56.825931) (xy 65.408331 56.835506) (xy 65.343974 56.805529) (xy 65.321717 56.779843) (xy 65.23292 56.643929) (xy 65.080437 56.478291) (xy 64.960567 56.384992) (xy 64.902776 56.340011) (xy 64.704774 56.232858) (xy 64.704772 56.232857) (xy 64.704771 56.232856) (xy 64.491839 56.159757) (xy 64.49183 56.159755) (xy 64.447676 56.152387) (xy 64.269769 56.1227) (xy 64.044631 56.1227) (xy 63.896411 56.147433) (xy 63.822569 56.159755) (xy 63.82256 56.159757) (xy 63.609628 56.232856) (xy 63.609626 56.232858) (xy 63.411626 56.34001) (xy 63.411624 56.340011) (xy 63.233962 56.478291) (xy 63.172954 56.544563) (xy 63.112101 56.581133) (xy 63.041136 56.578998) (xy 62.982591 56.538836) (xy 62.962199 56.503257) (xy 62.918089 56.384997) (xy 62.918087 56.384992) (xy 62.830461 56.267938) (xy 62.713407 56.180312) (xy 62.713402 56.18031) (xy 62.576404 56.129211) (xy 62.576396 56.129209) (xy 62.515849 56.1227) (xy 62.515838 56.1227) (xy 60.718562 56.1227) (xy 60.71855 56.1227) (xy 60.658003 56.129209) (xy 60.657995 56.129211) (xy 60.520997 56.18031) (xy 60.520992 56.180312) (xy 60.403938 56.267938) (xy 60.316312 56.384992) (xy 60.31631 56.384997) (xy 60.265211 56.521995) (xy 60.265209 56.522003) (xy 60.2587 56.58255) (xy 38.710155 56.58255) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.957205 56.232858) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.314656 55.822429) (xy 39.322429 55.814656) (xy 39.603716 55.556904) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 114.934108 54.5005) (xy 114.997252 54.5005) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 70.104 114.388) (xy 70.748585 114.388) (xy 70.748597 114.387999) (xy 70.809093 114.381494) (xy 70.945964 114.330444) (xy 70.945965 114.330444) (xy 71.062904 114.242904) (xy 71.150444 114.125965) (xy 71.194618 114.00753) (xy 71.237165 113.950694) (xy 71.303685 113.925883) (xy 71.373059 113.940974) (xy 71.405372 113.966222) (xy 71.433165 113.996412) (xy 71.466762 114.032908) (xy 71.502108 114.060419) (xy 71.644424 114.171189) (xy 71.725469 114.215048) (xy 71.775859 114.265059) (xy 71.7915 114.325861) (xy 71.7915 115.84576) (xy 71.771498 115.913881) (xy 71.754595 115.934855) (xy 69.413083 118.276366) (xy 69.413075 118.276376) (xy 69.332967 118.415127) (xy 69.332968 118.415128) (xy 69.2915 118.569889) (xy 69.2915 122.52689) (xy 69.2915 122.68711) (xy 69.332968 122.841873) (xy 69.332969 122.841875) (xy 69.33297 122.841877) (xy 69.413075 122.980623) (xy 69.413077 122.980625) (xy 69.413078 122.980627) (xy 69.938077 123.505626) (xy 69.972101 123.567937) (xy 69.971126 123.62565) (xy 69.936236 123.763428) (xy 69.917644 123.987803) (xy 69.917837 123.990135) (xy 69.917644 123.991072) (xy 69.917644 123.993011) (xy 69.917245 123.993011) (xy 69.903521 124.059674) (xy 69.853883 124.110433) (xy 69.784681 124.126299) (xy 69.717888 124.102232) (xy 69.703171 124.089622) (xy 67.955405 122.341856) (xy 67.921379 122.279544) (xy 67.9185 122.252761) (xy 67.9185 114.320449) (xy 67.938502 114.252328) (xy 67.98453 114.209636) (xy 68.055576 114.171189) (xy 68.23324 114.032906) (xy 68.294626 113.966222) (xy 68.355476 113.929654) (xy 68.426441 113.931787) (xy 68.484986 113.971949) (xy 68.50538 114.007529) (xy 68.549553 114.125961) (xy 68.549555 114.125965) (xy 68.637095 114.242904) (xy 68.754034 114.330444) (xy 68.890906 114.381494) (xy 68.951402 114.387999) (xy 68.951415 114.388) (xy 69.596 114.388) (xy 69.596 113.47225) (xy 69.653147 113.505245) (xy 69.782857 113.54) (xy 69.917143 113.54) (xy 70.046853 113.505245) (xy 70.104 113.47225) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 76.283225 113.705669) (xy 76.30548 113.731353) (xy 76.331983 113.771918) (xy 76.394275 113.867265) (xy 76.394279 113.86727) (xy 76.546762 114.032908) (xy 76.582108 114.060419) (xy 76.724424 114.171189) (xy 76.795469 114.209636) (xy 76.845859 114.259648) (xy 76.8615 114.320449) (xy 76.8615 114.82576) (xy 76.841498 114.893881) (xy 76.824595 114.914855) (xy 72.063083 119.676366) (xy 72.063075 119.676376) (xy 71.982967 119.815127) (xy 71.982968 119.815128) (xy 71.941499 119.969891) (xy 71.940422 119.978078) (xy 71.937282 119.977664) (xy 71.921498 120.031421) (xy 71.867842 120.077914) (xy 71.8155 120.0893) (xy 70.6345 120.0893) (xy 70.566379 120.069298) (xy 70.519886 120.015642) (xy 70.5085 119.9633) (xy 70.5085 118.954239) (xy 70.528502 118.886118) (xy 70.545405 118.865144) (xy 72.886916 116.523633) (xy 72.886922 116.523627) (xy 72.967032 116.384873) (xy 73.0085 116.23011) (xy 73.0085 116.06989) (xy 73.0085 114.315038) (xy 73.028502 114.246917) (xy 73.074532 114.204224) (xy 73.135567 114.171194) (xy 73.13557 114.171192) (xy 73.135576 114.171189) (xy 73.31324 114.032906) (xy 73.465722 113.867268) (xy 73.554518 113.731354) (xy 73.60852 113.685268) (xy 73.678868 113.675692) (xy 73.743225 113.705669) (xy 73.76548 113.731353) (xy 73.791983 113.771918) (xy 73.854275 113.867265) (xy 73.854279 113.86727) (xy 74.006762 114.032908) (xy 74.042108 114.060419) (xy 74.184424 114.171189) (xy 74.382426 114.278342) (xy 74.382427 114.278342) (xy 74.382428 114.278343) (xy 74.489318 114.315038) (xy 74.595365 114.351444) (xy 74.817431 114.3885) (xy 74.817435 114.3885) (xy 75.042565 114.3885) (xy 75.042569 114.3885) (xy 75.264635 114.351444) (xy 75.477574 114.278342) (xy 75.675576 114.171189) (xy 75.85324 114.032906) (xy 76.005722 113.867268) (xy 76.094518 113.731354) (xy 76.14852 113.685268) (xy 76.218868 113.675692) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 44.704 96.608) (xy 45.348585 96.608) (xy 45.348597 96.607999) (xy 45.409093 96.601494) (xy 45.545964 96.550444) (xy 45.545965 96.550444) (xy 45.662904 96.462904) (xy 45.750444 96.345965) (xy 45.794618 96.22753) (xy 45.837165 96.170694) (xy 45.903685 96.145883) (xy 45.973059 96.160974) (xy 46.005372 96.186222) (xy 46.02959 96.212529) (xy 46.066762 96.252908) (xy 46.121331 96.295381) (xy 46.244424 96.391189) (xy 46.442426 96.498342) (xy 46.442427 96.498342) (xy 46.442428 96.498343) (xy 46.52609 96.527064) (xy 46.655365 96.571444) (xy 46.877431 96.6085) (xy 46.877435 96.6085) (xy 47.102565 96.6085) (xy 47.102569 96.6085) (xy 47.324635 96.571444) (xy 47.537574 96.498342) (xy 47.735576 96.391189) (xy 47.91324 96.252906) (xy 48.065722 96.087268) (xy 48.154518 95.951354) (xy 48.20852 95.905268) (xy 48.278868 95.895692) (xy 48.343225 95.925669) (xy 48.36548 95.951353) (xy 48.391983 95.991918) (xy 48.454275 96.087265) (xy 48.454279 96.08727) (xy 48.606762 96.252908) (xy 48.661331 96.295381) (xy 48.784424 96.391189) (xy 48.982426 96.498342) (xy 48.982427 96.498342) (xy 48.982428 96.498343) (xy 49.06609 96.527064) (xy 49.195365 96.571444) (xy 49.417431 96.6085) (xy 49.417435 96.6085) (xy 49.642565 96.6085) (xy 49.642569 96.6085) (xy 49.864635 96.571444) (xy 50.077574 96.498342) (xy 50.275576 96.391189) (xy 50.45324 96.252906) (xy 50.605722 96.087268) (xy 50.694518 95.951354) (xy 50.74852 95.905268) (xy 50.818868 95.895692) (xy 50.883225 95.925669) (xy 50.90548 95.951353) (xy 50.931983 95.991918) (xy 50.994275 96.087265) (xy 50.994279 96.08727) (xy 51.146762 96.252908) (xy 51.201331 96.295381) (xy 51.324424 96.391189) (xy 51.522426 96.498342) (xy 51.522427 96.498342) (xy 51.522428 96.498343) (xy 51.60609 96.527064) (xy 51.735365 96.571444) (xy 51.957431 96.6085) (xy 51.957435 96.6085) (xy 52.182565 96.6085) (xy 52.182569 96.6085) (xy 52.404635 96.571444) (xy 52.617574 96.498342) (xy 52.815576 96.391189) (xy 52.99324 96.252906) (xy 53.145722 96.087268) (xy 53.234518 95.951354) (xy 53.28852 95.905268) (xy 53.358868 95.895692) (xy 53.423225 95.925669) (xy 53.44548 95.951353) (xy 53.471983 95.991918) (xy 53.534275 96.087265) (xy 53.534279 96.08727) (xy 53.686762 96.252908) (xy 53.741331 96.295381) (xy 53.864424 96.391189) (xy 54.062426 96.498342) (xy 54.062427 96.498342) (xy 54.062428 96.498343) (xy 54.14609 96.527064) (xy 54.275365 96.571444) (xy 54.497431 96.6085) (xy 54.497435 96.6085) (xy 54.722565 96.6085) (xy 54.722569 96.6085) (xy 54.944635 96.571444) (xy 55.157574 96.498342) (xy 55.355576 96.391189) (xy 55.53324 96.252906) (xy 55.594245 96.186637) (xy 55.655096 96.150067) (xy 55.726061 96.1522) (xy 55.784606 96.192362) (xy 55.805 96.227941) (xy 55.849111 96.346204) (xy 55.849112 96.346207) (xy 55.936738 96.463261) (xy 56.053792 96.550887) (xy 56.053794 96.550888) (xy 56.053796 96.550889) (xy 56.09498 96.56625) (xy 56.190795 96.601988) (xy 56.190803 96.60199) (xy 56.25135 96.608499) (xy 56.251355 96.608499) (xy 56.251362 96.6085) (xy 57.6555 96.6085) (xy 57.723621 96.628502) (xy 57.770114 96.682158) (xy 57.7815 96.7345) (xy 57.7815 104.965075) (xy 57.761498 105.033196) (xy 57.744595 105.05417) (xy 53.76917 109.029595) (xy 53.706858 109.063621) (xy 53.680075 109.0665) (xy 50.294889 109.0665) (xy 50.211955 109.088722) (xy 50.14013 109.107967) (xy 50.140123 109.10797) (xy 50.001376 109.188075) (xy 50.001366 109.188083) (xy 47.496576 111.692873) (xy 47.434264 111.726899) (xy 47.366571 111.722952) (xy 47.340903 111.714141) (xy 47.324635 111.708556) (xy 47.324631 111.708555) (xy 47.32463 111.708555) (xy 47.280476 111.701187) (xy 47.102569 111.6715) (xy 46.877431 111.6715) (xy 46.750859 111.692621) (xy 46.655369 111.708555) (xy 46.65536 111.708557) (xy 46.442428 111.781656) (xy 46.442426 111.781658) (xy 46.244432 111.888807) (xy 46.244426 111.88881) (xy 46.244424 111.888811) (xy 46.066759 112.027094) (xy 46.005374 112.093775) (xy 45.944521 112.130346) (xy 45.873557 112.128211) (xy 45.815012 112.088049) (xy 45.794618 112.05247) (xy 45.750443 111.934033) (xy 45.662904 111.817095) (xy 45.545965 111.729555) (xy 45.409093 111.678505) (xy 45.348597 111.672) (xy 44.704 111.672) (xy 44.704 112.587749) (xy 44.646853 112.554755) (xy 44.517143 112.52) (xy 44.382857 112.52) (xy 44.253147 112.554755) (xy 44.196 112.587749) (xy 44.196 111.672) (xy 43.551402 111.672) (xy 43.490906 111.678505) (xy 43.354035 111.729555) (xy 43.354034 111.729555) (xy 43.237095 111.817095) (xy 43.149555 111.934034) (xy 43.149553 111.934039) (xy 43.10538 112.05247) (xy 43.062833 112.109306) (xy 42.996313 112.134116) (xy 42.926939 112.119024) (xy 42.894626 112.093777) (xy 42.83324 112.027094) (xy 42.833239 112.027093) (xy 42.833237 112.027091) (xy 42.751382 111.963381) (xy 42.655576 111.888811) (xy 42.457574 111.781658) (xy 42.457572 111.781657) (xy 42.457571 111.781656) (xy 42.244639 111.708557) (xy 42.24463 111.708555) (xy 42.200476 111.701187) (xy 42.022569 111.6715) (xy 41.797431 111.6715) (xy 41.670859 111.692621) (xy 41.575369 111.708555) (xy 41.57536 111.708557) (xy 41.362428 111.781656) (xy 41.362426 111.781658) (xy 41.164432 111.888807) (xy 41.164426 111.88881) (xy 41.164424 111.888811) (xy 40.986762 112.027091) (xy 40.834279 112.192729) (xy 40.745483 112.328643) (xy 40.691479 112.374731) (xy 40.621131 112.384306) (xy 40.556774 112.354329) (xy 40.534517 112.328643) (xy 40.44572 112.192729) (xy 40.293237 112.027091) (xy 40.211382 111.963381) (xy 40.115576 111.888811) (xy 39.917574 111.781658) (xy 39.917572 111.781657) (xy 39.917571 111.781656) (xy 39.704639 111.708557) (xy 39.70463 111.708555) (xy 39.660476 111.701187) (xy 39.482569 111.6715) (xy 39.257431 111.6715) (xy 39.130859 111.692621) (xy 39.035369 111.708555) (xy 39.03536 111.708557) (xy 38.822428 111.781656) (xy 38.822426 111.781658) (xy 38.624432 111.888807) (xy 38.624426 111.88881) (xy 38.624424 111.888811) (xy 38.446762 112.027091) (xy 38.294279 112.192729) (xy 38.294275 112.192734) (xy 38.231983 112.288081) (xy 38.177979 112.33417) (xy 38.107632 112.343745) (xy 38.043274 112.313768) (xy 38.005341 112.253755) (xy 38.0005 112.219166) (xy 38.0005 106.774454) (xy 38.3495 106.774454) (xy 38.3495 106.955546) (xy 38.377829 107.134409) (xy 38.433789 107.306639) (xy 38.516004 107.467994) (xy 38.622447 107.614501) (xy 38.622449 107.614503) (xy 38.622451 107.614506) (xy 38.750493 107.742548) (xy 38.750496 107.74255) (xy 38.750499 107.742553) (xy 38.897006 107.848996) (xy 39.058361 107.931211) (xy 39.230591 107.987171) (xy 39.409454 108.0155) (xy 39.409457 108.0155) (xy 39.590543 108.0155) (xy 39.590546 108.0155) (xy 39.769409 107.987171) (xy 39.941639 107.931211) (xy 40.102994 107.848996) (xy 40.249501 107.742553) (xy 40.377553 107.614501) (xy 40.483996 107.467994) (xy 40.566211 107.306639) (xy 40.622171 107.134409) (xy 40.6505 106.955546) (xy 40.6505 106.774454) (xy 40.622171 106.595591) (xy 40.580213 106.466455) (xy 41.5295 106.466455) (xy 41.5295 106.663544) (xy 41.567949 106.856835) (xy 41.56795 106.856838) (xy 41.59274 106.916687) (xy 41.643368 107.038914) (xy 41.752861 107.202782) (xy 41.892218 107.342139) (xy 42.056086 107.451632) (xy 42.238165 107.527051) (xy 42.431459 107.5655) (xy 42.628541 107.5655) (xy 42.821835 107.527051) (xy 43.003914 107.451632) (xy 43.167782 107.342139) (xy 43.307139 107.202782) (xy 43.416632 107.038914) (xy 43.492051 106.856835) (xy 43.5305 106.663541) (xy 43.5305 106.466459) (xy 43.492051 106.273165) (xy 43.416632 106.091086) (xy 43.307139 105.927218) (xy 43.167782 105.787861) (xy 43.003914 105.678368) (xy 42.886843 105.629876) (xy 42.821838 105.60295) (xy 42.821835 105.602949) (xy 42.628544 105.5645) (xy 42.628541 105.5645) (xy 42.431459 105.5645) (xy 42.431455 105.5645) (xy 42.238164 105.602949) (xy 42.238161 105.60295) (xy 42.056085 105.678368) (xy 41.892222 105.787858) (xy 41.892215 105.787863) (xy 41.752863 105.927215) (xy 41.752858 105.927222) (xy 41.643368 106.091085) (xy 41.56795 106.273161) (xy 41.567949 106.273164) (xy 41.5295 106.466455) (xy 40.580213 106.466455) (xy 40.566211 106.423361) (xy 40.483996 106.262006) (xy 40.377553 106.115499) (xy 40.37755 106.115496) (xy 40.377548 106.115493) (xy 40.249506 105.987451) (xy 40.249503 105.987449) (xy 40.249501 105.987447) (xy 40.102994 105.881004) (xy 39.941639 105.798789) (xy 39.941636 105.798788) (xy 39.941634 105.798787) (xy 39.769412 105.74283) (xy 39.769409 105.742829) (xy 39.590546 105.7145) (xy 39.409454 105.7145) (xy 39.230591 105.742829) (xy 39.230588 105.742829) (xy 39.230587 105.74283) (xy 39.058365 105.798787) (xy 39.058359 105.79879) (xy 38.897002 105.881006) (xy 38.750496 105.987449) (xy 38.750493 105.987451) (xy 38.622451 106.115493) (xy 38.622449 106.115496) (xy 38.516006 106.262002) (xy 38.43379 106.423359) (xy 38.433787 106.423365) (xy 38.380563 106.587175) (xy 38.377829 106.595591) (xy 38.3495 106.774454) (xy 38.0005 106.774454) (xy 38.0005 102.103792) (xy 38.020502 102.035671) (xy 38.074158 101.989178) (xy 38.144432 101.979074) (xy 38.209012 102.008568) (xy 38.241886 102.053176) (xy 38.257016 102.087668) (xy 38.257017 102.087671) (xy 38.384685 102.283083) (xy 38.542774 102.454813) (xy 38.542778 102.454817) (xy 38.584051 102.486941) (xy 38.726983 102.59819) (xy 38.932273 102.709287) (xy 39.153049 102.78508) (xy 39.383288 102.8235) (xy 39.383292 102.8235) (xy 39.616708 102.8235) (xy 39.616712 102.8235) (xy 39.846951 102.78508) (xy 40.067727 102.709287) (xy 40.273017 102.59819) (xy 40.45722 102.454818) (xy 40.488811 102.420502) (xy 40.615314 102.283083) (xy 40.742984 102.087669) (xy 40.836749 101.873907) (xy 40.87699 101.715) (xy 41.266693 101.715) (xy 41.280595 101.87391) (xy 41.285885 101.93437) (xy 41.342879 102.147073) (xy 41.342881 102.147079) (xy 41.42336 102.319668) (xy 41.435944 102.346654) (xy 41.559003 102.5224) (xy 41.562251 102.527038) (xy 41.562254 102.527042) (xy 41.717957 102.682745) (xy 41.717961 102.682748) (xy 41.717962 102.682749) (xy 41.898346 102.809056) (xy 42.097924 102.90212) (xy 42.310629 102.959115) (xy 42.53 102.978307) (xy 42.749371 102.959115) (xy 42.962076 102.90212) (xy 43.161654 102.809056) (xy 43.342038 102.682749) (xy 43.497749 102.527038) (xy 43.624056 102.346654) (xy 43.71712 102.147076) (xy 43.774115 101.934371) (xy 43.793307 101.715) (xy 43.774115 101.495629) (xy 43.71712 101.282924) (xy 43.624056 101.083347) (xy 43.497749 100.902962) (xy 43.342038 100.747251) (xy 43.161654 100.620944) (xy 43.06155 100.574265) (xy 42.962079 100.527881) (xy 42.962073 100.527879) (xy 42.872178 100.503791) (xy 42.749371 100.470885) (xy 42.53 100.451693) (xy 42.310629 100.470885) (xy 42.097926 100.527879) (xy 42.09792 100.527881) (xy 41.898346 100.620944) (xy 41.717965 100.747248) (xy 41.717959 100.747253) (xy 41.562253 100.902959) (xy 41.562248 100.902965) (xy 41.435944 101.083346) (xy 41.342881 101.28292) (xy 41.342879 101.282926) (xy 41.34224 101.285312) (xy 41.285885 101.495629) (xy 41.266693 101.715) (xy 40.87699 101.715) (xy 40.894051 101.647626) (xy 40.913327 101.415) (xy 40.894051 101.182374) (xy 40.888102 101.158882) (xy 40.83675 100.956096) (xy 40.836747 100.956089) (xy 40.823265 100.925354) (xy 40.742984 100.742331) (xy 40.713339 100.696956) (xy 40.615314 100.546916) (xy 40.457225 100.375186) (xy 40.457221 100.375182) (xy 40.365118 100.303496) (xy 40.273017 100.23181) (xy 40.067727 100.120713) (xy 40.067724 100.120712) (xy 40.067723 100.120711) (xy 39.846955 100.044921) (xy 39.846948 100.044919) (xy 39.748411 100.028476) (xy 39.616712 100.0065) (xy 39.383288 100.0065) (xy 39.268066 100.025727) (xy 39.153051 100.044919) (xy 39.153044 100.044921) (xy 38.932276 100.120711) (xy 38.932273 100.120713) (xy 38.726985 100.231809) (xy 38.726983 100.23181) (xy 38.542778 100.375182) (xy 38.542774 100.375186) (xy 38.384685 100.546916) (xy 38.257015 100.742331) (xy 38.241887 100.776821) (xy 38.196206 100.831169) (xy 38.128394 100.852193) (xy 38.05998 100.833217) (xy 38.012686 100.780266) (xy 38.0005 100.726207) (xy 38.0005 96.060833) (xy 38.020502 95.992712) (xy 38.074158 95.946219) (xy 38.144432 95.936115) (xy 38.209012 95.965609) (xy 38.231983 95.991918) (xy 38.294275 96.087265) (xy 38.294279 96.08727) (xy 38.446762 96.252908) (xy 38.501331 96.295381) (xy 38.624424 96.391189) (xy 38.822426 96.498342) (xy 38.822427 96.498342) (xy 38.822428 96.498343) (xy 38.90609 96.527064) (xy 39.035365 96.571444) (xy 39.257431 96.6085) (xy 39.257435 96.6085) (xy 39.482565 96.6085) (xy 39.482569 96.6085) (xy 39.704635 96.571444) (xy 39.917574 96.498342) (xy 40.115576 96.391189) (xy 40.29324 96.252906) (xy 40.445722 96.087268) (xy 40.534518 95.951354) (xy 40.58852 95.905268) (xy 40.658868 95.895692) (xy 40.723225 95.925669) (xy 40.74548 95.951353) (xy 40.771983 95.991918) (xy 40.834275 96.087265) (xy 40.834279 96.08727) (xy 40.986762 96.252908) (xy 41.041331 96.295381) (xy 41.164424 96.391189) (xy 41.362426 96.498342) (xy 41.362427 96.498342) (xy 41.362428 96.498343) (xy 41.44609 96.527064) (xy 41.575365 96.571444) (xy 41.797431 96.6085) (xy 41.797435 96.6085) (xy 42.022565 96.6085) (xy 42.022569 96.6085) (xy 42.244635 96.571444) (xy 42.457574 96.498342) (xy 42.655576 96.391189) (xy 42.83324 96.252906) (xy 42.894626 96.186222) (xy 42.955476 96.149654) (xy 43.026441 96.151787) (xy 43.084986 96.191949) (xy 43.10538 96.227529) (xy 43.149553 96.345961) (xy 43.149555 96.345965) (xy 43.237095 96.462904) (xy 43.354034 96.550444) (xy 43.490906 96.601494) (xy 43.551402 96.607999) (xy 43.551415 96.608) (xy 44.196 96.608) (xy 44.196 95.69225) (xy 44.253147 95.725245) (xy 44.382857 95.76) (xy 44.517143 95.76) (xy 44.646853 95.725245) (xy 44.704 95.69225) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 61.521876 96.412839) (xy 61.537806 96.420077) (xy 61.658001 96.485124) (xy 61.682426 96.498342) (xy 61.682428 96.498343) (xy 61.76609 96.527064) (xy 61.895365 96.571444) (xy 62.117431 96.6085) (xy 62.117435 96.6085) (xy 62.342565 96.6085) (xy 62.342569 96.6085) (xy 62.564635 96.571444) (xy 62.684588 96.530263) (xy 62.755512 96.527064) (xy 62.816908 96.562716) (xy 62.849282 96.625901) (xy 62.8515 96.649437) (xy 62.8515 108.95576) (xy 62.831498 109.023881) (xy 62.814595 109.044855) (xy 60.174243 111.685207) (xy 60.111931 111.719233) (xy 60.044237 111.715285) (xy 60.024643 111.708558) (xy 60.024636 111.708556) (xy 60.024635 111.708556) (xy 60.024632 111.708555) (xy 60.02463 111.708555) (xy 59.980476 111.701187) (xy 59.802569 111.6715) (xy 59.577431 111.6715) (xy 59.450859 111.692621) (xy 59.355369 111.708555) (xy 59.35536 111.708557) (xy 59.142428 111.781656) (xy 59.142426 111.781658) (xy 58.944432 111.888807) (xy 58.944426 111.88881) (xy 58.944424 111.888811) (xy 58.766759 112.027094) (xy 58.705374 112.093775) (xy 58.644521 112.130346) (xy 58.573557 112.128211) (xy 58.515012 112.088049) (xy 58.494618 112.05247) (xy 58.450443 111.934033) (xy 58.362904 111.817095) (xy 58.245965 111.729555) (xy 58.109093 111.678505) (xy 58.048597 111.672) (xy 57.404 111.672) (xy 57.404 112.587749) (xy 57.346853 112.554755) (xy 57.217143 112.52) (xy 57.082857 112.52) (xy 56.953147 112.554755) (xy 56.896 112.587749) (xy 56.896 111.672) (xy 56.251402 111.672) (xy 56.190906 111.678505) (xy 56.054035 111.729555) (xy 56.054034 111.729555) (xy 55.937095 111.817095) (xy 55.849555 111.934034) (xy 55.849553 111.934039) (xy 55.80538 112.05247) (xy 55.762833 112.109306) (xy 55.696313 112.134116) (xy 55.626939 112.119024) (xy 55.594626 112.093777) (xy 55.53324 112.027094) (xy 55.533239 112.027093) (xy 55.533237 112.027091) (xy 55.451382 111.963381) (xy 55.355576 111.888811) (xy 55.157574 111.781658) (xy 55.157572 111.781657) (xy 55.157571 111.781656) (xy 54.944639 111.708557) (xy 54.94463 111.708555) (xy 54.900476 111.701187) (xy 54.722569 111.6715) (xy 54.497431 111.6715) (xy 54.370859 111.692621) (xy 54.275369 111.708555) (xy 54.27536 111.708557) (xy 54.062428 111.781656) (xy 54.062426 111.781658) (xy 53.864432 111.888807) (xy 53.864426 111.88881) (xy 53.864424 111.888811) (xy 53.686762 112.027091) (xy 53.534279 112.192729) (xy 53.445483 112.328643) (xy 53.391479 112.374731) (xy 53.321131 112.384306) (xy 53.256774 112.354329) (xy 53.234517 112.328643) (xy 53.14572 112.192729) (xy 52.993237 112.027091) (xy 52.911382 111.963381) (xy 52.815576 111.888811) (xy 52.617574 111.781658) (xy 52.617572 111.781657) (xy 52.617571 111.781656) (xy 52.404639 111.708557) (xy 52.40463 111.708555) (xy 52.360476 111.701187) (xy 52.182569 111.6715) (xy 51.957431 111.6715) (xy 51.830859 111.692621) (xy 51.735369 111.708555) (xy 51.73536 111.708557) (xy 51.522428 111.781656) (xy 51.522426 111.781658) (xy 51.324432 111.888807) (xy 51.324426 111.88881) (xy 51.324424 111.888811) (xy 51.146762 112.027091) (xy 50.994279 112.192729) (xy 50.905483 112.328643) (xy 50.851479 112.374731) (xy 50.781131 112.384306) (xy 50.716774 112.354329) (xy 50.694517 112.328643) (xy 50.60572 112.192729) (xy 50.453237 112.027091) (xy 50.371382 111.963381) (xy 50.275576 111.888811) (xy 50.267904 111.884659) (xy 50.20453 111.850362) (xy 50.15414 111.800349) (xy 50.1385 111.739549) (xy 50.1385 111.389925) (xy 50.158502 111.321804) (xy 50.175405 111.30083) (xy 50.75583 110.720405) (xy 50.818142 110.686379) (xy 50.844925 110.6835) (xy 54.230109 110.6835) (xy 54.23011 110.6835) (xy 54.230111 110.6835) (xy 54.3695 110.646151) (xy 54.384873 110.642032) (xy 54.523627 110.561922) (xy 59.316921 105.768628) (xy 59.348172 105.7145) (xy 59.397032 105.629872) (xy 59.4385 105.475111) (xy 59.4385 98.444239) (xy 59.458502 98.376118) (xy 59.475405 98.355144) (xy 61.388749 96.4418) (xy 61.451061 96.407774) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 70.104 96.608) (xy 70.748585 96.608) (xy 70.748597 96.607999) (xy 70.809093 96.601494) (xy 70.945964 96.550444) (xy 70.945965 96.550444) (xy 71.062904 96.462904) (xy 71.150444 96.345965) (xy 71.194618 96.22753) (xy 71.237165 96.170694) (xy 71.303685 96.145883) (xy 71.373059 96.160974) (xy 71.405372 96.186222) (xy 71.42959 96.212529) (xy 71.466762 96.252908) (xy 71.521331 96.295381) (xy 71.644424 96.391189) (xy 71.842426 96.498342) (xy 71.842427 96.498342) (xy 71.842428 96.498343) (xy 71.92609 96.527064) (xy 72.055365 96.571444) (xy 72.277431 96.6085) (xy 72.277435 96.6085) (xy 72.502565 96.6085) (xy 72.502569 96.6085) (xy 72.724635 96.571444) (xy 72.937574 96.498342) (xy 73.135576 96.391189) (xy 73.31324 96.252906) (xy 73.465722 96.087268) (xy 73.554518 95.951354) (xy 73.60852 95.905268) (xy 73.678868 95.895692) (xy 73.743225 95.925669) (xy 73.76548 95.951353) (xy 73.791983 95.991918) (xy 73.854275 96.087265) (xy 73.854279 96.08727) (xy 74.006762 96.252908) (xy 74.061331 96.295381) (xy 74.184424 96.391189) (xy 74.382426 96.498342) (xy 74.382427 96.498342) (xy 74.382428 96.498343) (xy 74.46609 96.527064) (xy 74.595365 96.571444) (xy 74.817431 96.6085) (xy 74.817435 96.6085) (xy 75.042565 96.6085) (xy 75.042569 96.6085) (xy 75.264635 96.571444) (xy 75.477574 96.498342) (xy 75.675576 96.391189) (xy 75.85324 96.252906) (xy 76.005722 96.087268) (xy 76.094518 95.951354) (xy 76.14852 95.905268) (xy 76.218868 95.895692) (xy 76.283225 95.925669) (xy 76.30548 95.951353) (xy 76.331983 95.991918) (xy 76.394275 96.087265) (xy 76.394279 96.08727) (xy 76.546762 96.252908) (xy 76.601331 96.295381) (xy 76.724424 96.391189) (xy 76.922426 96.498342) (xy 76.922427 96.498342) (xy 76.922428 96.498343) (xy 77.00609 96.527064) (xy 77.135365 96.571444) (xy 77.357431 96.6085) (xy 77.357435 96.6085) (xy 77.582565 96.6085) (xy 77.582569 96.6085) (xy 77.804635 96.571444) (xy 78.017574 96.498342) (xy 78.215576 96.391189) (xy 78.39324 96.252906) (xy 78.545722 96.087268) (xy 78.634518 95.951354) (xy 78.68852 95.905268) (xy 78.758868 95.895692) (xy 78.823225 95.925669) (xy 78.84548 95.951353) (xy 78.871983 95.991918) (xy 78.934275 96.087265) (xy 78.934279 96.08727) (xy 79.086762 96.252908) (xy 79.141331 96.295381) (xy 79.264424 96.391189) (xy 79.462426 96.498342) (xy 79.462432 96.498344) (xy 79.540702 96.525214) (xy 79.598638 96.56625) (xy 79.62519 96.632095) (xy 79.611929 96.701842) (xy 79.573855 96.746321) (xy 79.552782 96.761632) (xy 79.552778 96.761635) (xy 79.408034 96.906379) (xy 79.287714 97.071987) (xy 79.194781 97.254379) (xy 79.194778 97.254385) (xy 79.131524 97.449061) (xy 79.131523 97.449064) (xy 79.131523 97.449066) (xy 79.0995 97.651248) (xy 79.0995 97.687708) (xy 79.0995 110.487708) (xy 79.0995 110.5536) (xy 79.0995 110.655952) (xy 79.131523 110.858134) (xy 79.19478 111.052819) (xy 79.194781 111.05282) (xy 79.287714 111.235212) (xy 79.408034 111.40082) (xy 79.552774 111.54556) (xy 79.556236 111.548517) (xy 79.595044 111.607969) (xy 79.59555 111.678964) (xy 79.557592 111.738962) (xy 79.515317 111.7635) (xy 79.462432 111.781656) (xy 79.462426 111.781658) (xy 79.264432 111.888807) (xy 79.264426 111.88881) (xy 79.264424 111.888811) (xy 79.086762 112.027091) (xy 78.934279 112.192729) (xy 78.845483 112.328643) (xy 78.791479 112.374731) (xy 78.721131 112.384306) (xy 78.656774 112.354329) (xy 78.634517 112.328643) (xy 78.54572 112.192729) (xy 78.393237 112.027091) (xy 78.311382 111.963381) (xy 78.215576 111.888811) (xy 78.017574 111.781658) (xy 78.017572 111.781657) (xy 78.017571 111.781656) (xy 77.804639 111.708557) (xy 77.80463 111.708555) (xy 77.760476 111.701187) (xy 77.582569 111.6715) (xy 77.357431 111.6715) (xy 77.230859 111.692621) (xy 77.135369 111.708555) (xy 77.13536 111.708557) (xy 76.922428 111.781656) (xy 76.922426 111.781658) (xy 76.724432 111.888807) (xy 76.724426 111.88881) (xy 76.724424 111.888811) (xy 76.546762 112.027091) (xy 76.394279 112.192729) (xy 76.305483 112.328643) (xy 76.251479 112.374731) (xy 76.181131 112.384306) (xy 76.116774 112.354329) (xy 76.094517 112.328643) (xy 76.00572 112.192729) (xy 75.853237 112.027091) (xy 75.771382 111.963381) (xy 75.675576 111.888811) (xy 75.477574 111.781658) (xy 75.477572 111.781657) (xy 75.477571 111.781656) (xy 75.264639 111.708557) (xy 75.26463 111.708555) (xy 75.220476 111.701187) (xy 75.042569 111.6715) (xy 74.817431 111.6715) (xy 74.690859 111.692621) (xy 74.595369 111.708555) (xy 74.59536 111.708557) (xy 74.382428 111.781656) (xy 74.382426 111.781658) (xy 74.184432 111.888807) (xy 74.184426 111.88881) (xy 74.184424 111.888811) (xy 74.006762 112.027091) (xy 73.854279 112.192729) (xy 73.765483 112.328643) (xy 73.711479 112.374731) (xy 73.641131 112.384306) (xy 73.576774 112.354329) (xy 73.554517 112.328643) (xy 73.46572 112.192729) (xy 73.313237 112.027091) (xy 73.231382 111.963381) (xy 73.135576 111.888811) (xy 72.937574 111.781658) (xy 72.937572 111.781657) (xy 72.937571 111.781656) (xy 72.724639 111.708557) (xy 72.72463 111.708555) (xy 72.680476 111.701187) (xy 72.502569 111.6715) (xy 72.277431 111.6715) (xy 72.150859 111.692621) (xy 72.055369 111.708555) (xy 72.05536 111.708557) (xy 71.842428 111.781656) (xy 71.842426 111.781658) (xy 71.644432 111.888807) (xy 71.644426 111.88881) (xy 71.644424 111.888811) (xy 71.466759 112.027094) (xy 71.405374 112.093775) (xy 71.344521 112.130346) (xy 71.273557 112.128211) (xy 71.215012 112.088049) (xy 71.194618 112.05247) (xy 71.150443 111.934033) (xy 71.062904 111.817095) (xy 70.945965 111.729555) (xy 70.809093 111.678505) (xy 70.748597 111.672) (xy 70.104 111.672) (xy 70.104 112.587749) (xy 70.046853 112.554755) (xy 69.917143 112.52) (xy 69.782857 112.52) (xy 69.653147 112.554755) (xy 69.596 112.587749) (xy 69.596 111.672) (xy 68.951402 111.672) (xy 68.890906 111.678505) (xy 68.754035 111.729555) (xy 68.754034 111.729555) (xy 68.637095 111.817095) (xy 68.549555 111.934034) (xy 68.549553 111.934039) (xy 68.50538 112.05247) (xy 68.462833 112.109306) (xy 68.396313 112.134116) (xy 68.326939 112.119024) (xy 68.294626 112.093777) (xy 68.23324 112.027094) (xy 68.233239 112.027093) (xy 68.233237 112.027091) (xy 68.151382 111.963381) (xy 68.055576 111.888811) (xy 67.857574 111.781658) (xy 67.857572 111.781657) (xy 67.857571 111.781656) (xy 67.644639 111.708557) (xy 67.64463 111.708555) (xy 67.600476 111.701187) (xy 67.422569 111.6715) (xy 67.197431 111.6715) (xy 67.070859 111.692621) (xy 66.975369 111.708555) (xy 66.97536 111.708557) (xy 66.762428 111.781656) (xy 66.762426 111.781658) (xy 66.564432 111.888807) (xy 66.564426 111.88881) (xy 66.564424 111.888811) (xy 66.386762 112.027091) (xy 66.234279 112.192729) (xy 66.145483 112.328643) (xy 66.091479 112.374731) (xy 66.021131 112.384306) (xy 65.956774 112.354329) (xy 65.934517 112.328643) (xy 65.84572 112.192729) (xy 65.693237 112.027091) (xy 65.611382 111.963381) (xy 65.515576 111.888811) (xy 65.317574 111.781658) (xy 65.317572 111.781657) (xy 65.317571 111.781656) (xy 65.104639 111.708557) (xy 65.10463 111.708555) (xy 65.060476 111.701187) (xy 64.882569 111.6715) (xy 64.657431 111.6715) (xy 64.530859 111.692621) (xy 64.435369 111.708555) (xy 64.43536 111.708557) (xy 64.222428 111.781656) (xy 64.222426 111.781658) (xy 64.024432 111.888807) (xy 64.024426 111.88881) (xy 64.024424 111.888811) (xy 63.846762 112.027091) (xy 63.694279 112.192729) (xy 63.605483 112.328643) (xy 63.551479 112.374731) (xy 63.481131 112.384306) (xy 63.416774 112.354329) (xy 63.394517 112.328643) (xy 63.30572 112.192729) (xy 63.153237 112.027091) (xy 63.071382 111.963381) (xy 62.975576 111.888811) (xy 62.777574 111.781658) (xy 62.777572 111.781657) (xy 62.777571 111.781656) (xy 62.564639 111.708557) (xy 62.56463 111.708555) (xy 62.520476 111.701187) (xy 62.342569 111.6715) (xy 62.213238 111.6715) (xy 62.145117 111.651498) (xy 62.098624 111.597842) (xy 62.08852 111.527568) (xy 62.118014 111.462988) (xy 62.124127 111.45642) (xy 63.946921 109.633628) (xy 64.027032 109.494873) (xy 64.0685 109.34011) (xy 64.0685 109.17989) (xy 64.0685 98.385354) (xy 67.9495 98.385354) (xy 67.9495 98.566446) (xy 67.977829 98.745309) (xy 67.97783 98.745312) (xy 68.008808 98.840656) (xy 68.033789 98.917539) (xy 68.116004 99.078894) (xy 68.222447 99.225401) (xy 68.222449 99.225403) (xy 68.222451 99.225406) (xy 68.350493 99.353448) (xy 68.350496 99.35345) (xy 68.350499 99.353453) (xy 68.497006 99.459896) (xy 68.658361 99.542111) (xy 68.830591 99.598071) (xy 68.978211 99.621451) (xy 69.042363 99.651864) (xy 69.07989 99.712132) (xy 69.078876 99.783121) (xy 69.039643 99.842293) (xy 68.978211 99.870348) (xy 68.830591 99.893729) (xy 68.830588 99.893729) (xy 68.830587 99.89373) (xy 68.658365 99.949687) (xy 68.658359 99.94969) (xy 68.497002 100.031906) (xy 68.350496 100.138349) (xy 68.350493 100.138351) (xy 68.222451 100.266393) (xy 68.222449 100.266396) (xy 68.116006 100.412902) (xy 68.03379 100.574259) (xy 68.033787 100.574265) (xy 67.978225 100.745272) (xy 67.977829 100.746491) (xy 67.9495 100.925354) (xy 67.9495 101.106446) (xy 67.977829 101.285309) (xy 68.033789 101.457539) (xy 68.116004 101.618894) (xy 68.222447 101.765401) (xy 68.222449 101.765403) (xy 68.222451 101.765406) (xy 68.350493 101.893448) (xy 68.350496 101.89345) (xy 68.350499 101.893453) (xy 68.497006 101.999896) (xy 68.658361 102.082111) (xy 68.830591 102.138071) (xy 68.978211 102.161451) (xy 69.042363 102.191864) (xy 69.07989 102.252132) (xy 69.078876 102.323121) (xy 69.039643 102.382293) (xy 68.978211 102.410348) (xy 68.830591 102.433729) (xy 68.830588 102.433729) (xy 68.830587 102.43373) (xy 68.658365 102.489687) (xy 68.658359 102.48969) (xy 68.497002 102.571906) (xy 68.350496 102.678349) (xy 68.350493 102.678351) (xy 68.222451 102.806393) (xy 68.222449 102.806396) (xy 68.116006 102.952902) (xy 68.03379 103.114259) (xy 68.033787 103.114265) (xy 67.97783 103.286487) (xy 67.977829 103.286491) (xy 67.9495 103.465354) (xy 67.9495 103.646446) (xy 67.977829 103.825309) (xy 68.033789 103.997539) (xy 68.071308 104.071173) (xy 68.116006 104.158897) (xy 68.142321 104.195116) (xy 68.222447 104.305401) (xy 68.222449 104.305403) (xy 68.222451 104.305406) (xy 68.350493 104.433448) (xy 68.350496 104.43345) (xy 68.350499 104.433453) (xy 68.497006 104.539896) (xy 68.658361 104.622111) (xy 68.830591 104.678071) (xy 69.009454 104.7064) (xy 69.009457 104.7064) (xy 69.190543 104.7064) (xy 69.190546 104.7064) (xy 69.369409 104.678071) (xy 69.541639 104.622111) (xy 69.702994 104.539896) (xy 69.849501 104.433453) (xy 69.977553 104.305401) (xy 70.083996 104.158894) (xy 70.166211 103.997539) (xy 70.222171 103.825309) (xy 70.2505 103.646446) (xy 70.2505 103.465354) (xy 70.222171 103.286491) (xy 70.166211 103.114261) (xy 70.083996 102.952906) (xy 69.977553 102.806399) (xy 69.97755 102.806396) (xy 69.977548 102.806393) (xy 69.849506 102.678351) (xy 69.849503 102.678349) (xy 69.849501 102.678347) (xy 69.702994 102.571904) (xy 69.541639 102.489689) (xy 69.541636 102.489688) (xy 69.541634 102.489687) (xy 69.369412 102.43373) (xy 69.369409 102.433729) (xy 69.221787 102.410348) (xy 69.157636 102.379937) (xy 69.120109 102.319668) (xy 69.121123 102.248679) (xy 69.160356 102.189507) (xy 69.221786 102.161451) (xy 69.369409 102.138071) (xy 69.541639 102.082111) (xy 69.702994 101.999896) (xy 69.849501 101.893453) (xy 69.977553 101.765401) (xy 70.083996 101.618894) (xy 70.166211 101.457539) (xy 70.222171 101.285309) (xy 70.2505 101.106446) (xy 70.2505 100.925354) (xy 70.222171 100.746491) (xy 70.166211 100.574261) (xy 70.083996 100.412906) (xy 69.977553 100.266399) (xy 69.97755 100.266396) (xy 69.977548 100.266393) (xy 69.849506 100.138351) (xy 69.849503 100.138349) (xy 69.849501 100.138347) (xy 69.739216 100.058221) (xy 69.702997 100.031906) (xy 69.702996 100.031905) (xy 69.702994 100.031904) (xy 69.541639 99.949689) (xy 69.541636 99.949688) (xy 69.541634 99.949687) (xy 69.369412 99.89373) (xy 69.369409 99.893729) (xy 69.221787 99.870348) (xy 69.157636 99.839937) (xy 69.120109 99.779668) (xy 69.121123 99.708679) (xy 69.160356 99.649507) (xy 69.221786 99.621451) (xy 69.369409 99.598071) (xy 69.541639 99.542111) (xy 69.702994 99.459896) (xy 69.849501 99.353453) (xy 69.977553 99.225401) (xy 70.083996 99.078894) (xy 70.166211 98.917539) (xy 70.222171 98.745309) (xy 70.2505 98.566446) (xy 70.2505 98.385354) (xy 70.222171 98.206491) (xy 70.166211 98.034261) (xy 70.083996 97.872906) (xy 69.977553 97.726399) (xy 69.97755 97.726396) (xy 69.977548 97.726393) (xy 69.849506 97.598351) (xy 69.849503 97.598349) (xy 69.849501 97.598347) (xy 69.702994 97.491904) (xy 69.541639 97.409689) (xy 69.541636 97.409688) (xy 69.541634 97.409687) (xy 69.369412 97.35373) (xy 69.369409 97.353729) (xy 69.190546 97.3254) (xy 69.009454 97.3254) (xy 68.830591 97.353729) (xy 68.830588 97.353729) (xy 68.830587 97.35373) (xy 68.658365 97.409687) (xy 68.658359 97.40969) (xy 68.497002 97.491906) (xy 68.350496 97.598349) (xy 68.350493 97.598351) (xy 68.222451 97.726393) (xy 68.222449 97.726396) (xy 68.116006 97.872902) (xy 68.03379 98.034259) (xy 68.033787 98.034265) (xy 68.010115 98.107122) (xy 67.977829 98.206491) (xy 67.9495 98.385354) (xy 64.0685 98.385354) (xy 64.0685 96.621973) (xy 64.088502 96.553852) (xy 64.142158 96.507359) (xy 64.212432 96.497255) (xy 64.235411 96.502799) (xy 64.435365 96.571444) (xy 64.657431 96.6085) (xy 64.657435 96.6085) (xy 64.882565 96.6085) (xy 64.882569 96.6085) (xy 65.104635 96.571444) (xy 65.317574 96.498342) (xy 65.515576 96.391189) (xy 65.69324 96.252906) (xy 65.845722 96.087268) (xy 65.934518 95.951354) (xy 65.98852 95.905268) (xy 66.058868 95.895692) (xy 66.123225 95.925669) (xy 66.14548 95.951353) (xy 66.171983 95.991918) (xy 66.234275 96.087265) (xy 66.234279 96.08727) (xy 66.386762 96.252908) (xy 66.441331 96.295381) (xy 66.564424 96.391189) (xy 66.762426 96.498342) (xy 66.762427 96.498342) (xy 66.762428 96.498343) (xy 66.84609 96.527064) (xy 66.975365 96.571444) (xy 67.197431 96.6085) (xy 67.197435 96.6085) (xy 67.422565 96.6085) (xy 67.422569 96.6085) (xy 67.644635 96.571444) (xy 67.857574 96.498342) (xy 68.055576 96.391189) (xy 68.23324 96.252906) (xy 68.294626 96.186222) (xy 68.355476 96.149654) (xy 68.426441 96.151787) (xy 68.484986 96.191949) (xy 68.50538 96.227529) (xy 68.549553 96.345961) (xy 68.549555 96.345965) (xy 68.637095 96.462904) (xy 68.754034 96.550444) (xy 68.890906 96.601494) (xy 68.951402 96.607999) (xy 68.951415 96.608) (xy 69.596 96.608) (xy 69.596 95.69225) (xy 69.653147 95.725245) (xy 69.782857 95.76) (xy 69.917143 95.76) (xy 70.046853 95.725245) (xy 70.104 95.69225) ) ) (filled_polygon (layer "In1.Cu") (pts (xy 85.033952 84.628502) (xy 85.080445 84.682158) (xy 85.090444 84.743397) (xy 85.090896 84.743397) (xy 85.090896 84.746168) (xy 85.091141 84.747669) (xy 85.090896 84.749999) (xy 85.110857 84.939927) (xy 85.134446 85.012525) (xy 85.169873 85.121556) (xy 85.169876 85.121561) (xy 85.265358 85.286941) (xy 85.265365 85.286951) (xy 85.393144 85.428864) (xy 85.393147 85.428866) (xy 85.547648 85.541118) (xy 85.722112 85.618794) (xy 85.908913 85.6585) (xy 86.099887 85.6585) (xy 86.286688 85.618794) (xy 86.461152 85.541118) (xy 86.615653 85.428866) (xy 86.631946 85.410771) (xy 86.743434 85.286951) (xy 86.743435 85.286949) (xy 86.74344 85.286944) (xy 86.838927 85.121556) (xy 86.897942 84.939928) (xy 86.915728 84.7707) (xy 86.942741 84.705044) (xy 87.000962 84.664414) (xy 87.071907 84.661711) (xy 87.133052 84.697793) (xy 87.142977 84.709815) (xy 87.14496 84.712545) (xy 87.272744 84.854464) (xy 87.272747 84.854466) (xy 87.427248 84.966718) (xy 87.601712 85.044394) (xy 87.788513 85.0841) (xy 87.979487 85.0841) (xy 88.166288 85.044394) (xy 88.340752 84.966718) (xy 88.470339 84.872566) (xy 88.537207 84.848709) (xy 88.606358 84.864789) (xy 88.618459 84.872565) (xy 88.748048 84.966718) (xy 88.922512 85.044394) (xy 89.109313 85.0841) (xy 89.200561 85.0841) (xy 89.268682 85.104102) (xy 89.289656 85.121005) (xy 96.388678 92.220027) (xy 96.388679 92.220028) (xy 96.501972 92.333321) (xy 96.640728 92.413432) (xy 96.795489 92.4549) (xy 96.95571 92.4549) (xy 100.81849 92.4549) (xy 100.886611 92.474902) (xy 100.912126 92.49659) (xy 100.937944 92.525264) (xy 100.937947 92.525266) (xy 101.092448 92.637518) (xy 101.266912 92.715194) (xy 101.453713 92.7549) (xy 101.644687 92.7549) (xy 101.831488 92.715194) (xy 102.005952 92.637518) (xy 102.160453 92.525266) (xy 102.261149 92.413432) (xy 102.288234 92.383351) (xy 102.288235 92.383349) (xy 102.28824 92.383344) (xy 102.381981 92.220979) (xy 102.433364 92.171987) (xy 102.503077 92.158551) (xy 102.568988 92.184937) (xy 102.61017 92.24277) (xy 102.6171 92.28398) (xy 102.6171 92.9915) (xy 102.597098 93.059621) (xy 102.543442 93.106114) (xy 102.4911 93.1175) (xy 96.824239 93.1175) (xy 96.756118 93.097498) (xy 96.735144 93.080595) (xy 90.899233 87.244683) (xy 90.899223 87.244675) (xy 90.760477 87.16457) (xy 90.760474 87.164569) (xy 90.760473 87.164568) (xy 90.760471 87.164567) (xy 90.76047 87.164567) (xy 90.683091 87.143834) (xy 90.683087 87.143833) (xy 90.605711 87.1231) (xy 80.234689 87.1231) (xy 80.234688 87.1231) (xy 80.157308 87.143833) (xy 80.157308 87.143834) (xy 80.079931 87.164567) (xy 80.079927 87.164568) (xy 80.079922 87.16457) (xy 79.941175 87.244676) (xy 79.941165 87.244684) (xy 73.164029 94.02182) (xy 73.101717 94.055846) (xy 73.030902 94.050781) (xy 73.014966 94.043539) (xy 72.937579 94.00166) (xy 72.937571 94.001656) (xy 72.724639 93.928557) (xy 72.72463 93.928555) (xy 72.665469 93.918683) (xy 72.502569 93.8915) (xy 72.277431 93.8915) (xy 72.131047 93.915927) (xy 72.055369 93.928555) (xy 72.05536 93.928557) (xy 71.842428 94.001656) (xy 71.842426 94.001658) (xy 71.644432 94.108807) (xy 71.644426 94.10881) (xy 71.644424 94.108811) (xy 71.466759 94.247094) (xy 71.405374 94.313775) (xy 71.344521 94.350346) (xy 71.273557 94.348211) (xy 71.215012 94.308049) (xy 71.194618 94.27247) (xy 71.150443 94.154033) (xy 71.062904 94.037095) (xy 70.945965 93.949555) (xy 70.809093 93.898505) (xy 70.748597 93.892) (xy 70.104 93.892) (xy 70.104 94.807749) (xy 70.046853 94.774755) (xy 69.917143 94.74) (xy 69.782857 94.74) (xy 69.653147 94.774755) (xy 69.596 94.807749) (xy 69.596 93.892) (xy 68.951402 93.892) (xy 68.890906 93.898505) (xy 68.754035 93.949555) (xy 68.754034 93.949555) (xy 68.637095 94.037095) (xy 68.549555 94.154034) (xy 68.549553 94.154039) (xy 68.50538 94.27247) (xy 68.462833 94.329306) (xy 68.396313 94.354116) (xy 68.326939 94.339024) (xy 68.294626 94.313777) (xy 68.23324 94.247094) (xy 68.233239 94.247093) (xy 68.233237 94.247091) (xy 68.113684 94.154039) (xy 68.055576 94.108811) (xy 67.857574 94.001658) (xy 67.857572 94.001657) (xy 67.857571 94.001656) (xy 67.644639 93.928557) (xy 67.64463 93.928555) (xy 67.585469 93.918683) (xy 67.422569 93.8915) (xy 67.197431 93.8915) (xy 67.051047 93.915927) (xy 66.975369 93.928555) (xy 66.97536 93.928557) (xy 66.762428 94.001656) (xy 66.762426 94.001658) (xy 66.564432 94.108807) (xy 66.564426 94.10881) (xy 66.564424 94.108811) (xy 66.386762 94.247091) (xy 66.234279 94.412729) (xy 66.145483 94.548643) (xy 66.091479 94.594731) (xy 66.021131 94.604306) (xy 65.956774 94.574329) (xy 65.934517 94.548643) (xy 65.84572 94.412729) (xy 65.716221 94.272058) (xy 65.69324 94.247094) (xy 65.693239 94.247093) (xy 65.693237 94.247091) (xy 65.573684 94.154039) (xy 65.515576 94.108811) (xy 65.317574 94.001658) (xy 65.317572 94.001657) (xy 65.317571 94.001656) (xy 65.104639 93.928557) (xy 65.10463 93.928555) (xy 65.045469 93.918683) (xy 64.882569 93.8915) (xy 64.657431 93.8915) (xy 64.511047 93.915927) (xy 64.435369 93.928555) (xy 64.43536 93.928557) (xy 64.235412 93.997199) (xy 64.164487 94.000399) (xy 64.103092 93.964747) (xy 64.070718 93.901561) (xy 64.0685 93.878026) (xy 64.0685 92.554239) (xy 64.088502 92.486118) (xy 64.105405 92.465144) (xy 71.925144 84.645405) (xy 71.987456 84.611379) (xy 72.014239 84.6085) (xy 84.965831 84.6085) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 115.002748 54.50062) (xy 115.386661 54.517382) (xy 115.39761 54.518339) (xy 115.775883 54.56814) (xy 115.786699 54.570048) (xy 116.159184 54.652626) (xy 116.169802 54.655471) (xy 116.533668 54.770197) (xy 116.543997 54.773956) (xy 116.896494 54.919965) (xy 116.906456 54.924611) (xy 117.244875 55.100781) (xy 117.254378 55.106267) (xy 117.576174 55.311274) (xy 117.585166 55.31757) (xy 117.887863 55.549839) (xy 117.896283 55.556904) (xy 118.17757 55.814656) (xy 118.185343 55.822429) (xy 118.443095 56.103716) (xy 118.45016 56.112136) (xy 118.682429 56.414833) (xy 118.688728 56.423829) (xy 118.893727 56.745613) (xy 118.899223 56.755133) (xy 119.075388 57.093543) (xy 119.080034 57.103505) (xy 119.226043 57.456002) (xy 119.229802 57.466331) (xy 119.344528 57.830197) (xy 119.347373 57.840815) (xy 119.42995 58.213296) (xy 119.431859 58.224121) (xy 119.481659 58.602388) (xy 119.482617 58.613338) (xy 119.49938 58.997251) (xy 119.4995 59.002747) (xy 119.4995 130.497252) (xy 119.49938 130.502748) (xy 119.482617 130.886661) (xy 119.481659 130.897611) (xy 119.431859 131.275878) (xy 119.42995 131.286703) (xy 119.347373 131.659184) (xy 119.344528 131.669802) (xy 119.229802 132.033668) (xy 119.226043 132.043997) (xy 119.080034 132.396494) (xy 119.075388 132.406456) (xy 118.899223 132.744866) (xy 118.893727 132.754386) (xy 118.688734 133.076162) (xy 118.682429 133.085166) (xy 118.45016 133.387863) (xy 118.443095 133.396283) (xy 118.185343 133.67757) (xy 118.17757 133.685343) (xy 117.896283 133.943095) (xy 117.887863 133.95016) (xy 117.585166 134.182429) (xy 117.576162 134.188734) (xy 117.254386 134.393727) (xy 117.244866 134.399223) (xy 116.906456 134.575388) (xy 116.896494 134.580034) (xy 116.543997 134.726043) (xy 116.533668 134.729802) (xy 116.169802 134.844528) (xy 116.159184 134.847373) (xy 115.786703 134.92995) (xy 115.775878 134.931859) (xy 115.397611 134.981659) (xy 115.386661 134.982617) (xy 115.002748 134.99938) (xy 114.997252 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.216007 131.8618) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.146101 131.629752) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.041623 131.074466) (xy 38.018339 130.89761) (xy 38.017382 130.886661) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 128.4732) (xy 57.974281 128.4732) (xy 57.993528 128.717757) (xy 58.050795 128.956292) (xy 58.144673 129.182932) (xy 58.144674 129.182933) (xy 58.272845 129.392092) (xy 58.272846 129.392094) (xy 58.272848 129.392096) (xy 58.432167 129.578633) (xy 58.618704 129.737952) (xy 58.827868 129.866127) (xy 59.054508 129.960005) (xy 59.293043 130.017272) (xy 59.5376 130.036519) (xy 59.782157 130.017272) (xy 60.020692 129.960005) (xy 60.247332 129.866127) (xy 60.456496 129.737952) (xy 60.643033 129.578633) (xy 60.71179 129.498129) (xy 60.77124 129.459321) (xy 60.842234 129.458815) (xy 60.902233 129.496771) (xy 60.903367 129.498079) (xy 60.972167 129.578633) (xy 61.158704 129.737952) (xy 61.367868 129.866127) (xy 61.594508 129.960005) (xy 61.833043 130.017272) (xy 62.0776 130.036519) (xy 62.322157 130.017272) (xy 62.560692 129.960005) (xy 62.787332 129.866127) (xy 62.965299 129.757069) (xy 63.03383 129.738532) (xy 63.101506 129.759988) (xy 63.131999 129.788993) (xy 63.204697 129.886105) (xy 63.321634 129.973644) (xy 63.458506 130.024694) (xy 63.519002 130.031199) (xy 63.519015 130.0312) (xy 64.3636 130.0312) (xy 64.3636 128.961638) (xy 64.405308 128.985718) (xy 64.545191 129.0232) (xy 64.690009 129.0232) (xy 64.829892 128.985718) (xy 64.8716 128.961638) (xy 64.8716 130.0312) (xy 65.716185 130.0312) (xy 65.716197 130.031199) (xy 65.776693 130.024694) (xy 65.913564 129.973644) (xy 65.913565 129.973644) (xy 66.030504 129.886104) (xy 66.118044 129.769165) (xy 66.118044 129.769164) (xy 66.169094 129.632293) (xy 66.175599 129.571797) (xy 66.1756 129.571785) (xy 66.1756 128.7272) (xy 65.106038 128.7272) (xy 65.130118 128.685492) (xy 65.1676 128.545609) (xy 65.1676 128.400791) (xy 65.130118 128.260908) (xy 65.106038 128.2192) (xy 66.1756 128.2192) (xy 66.1756 127.374614) (xy 66.175599 127.374602) (xy 66.169094 127.314106) (xy 66.118044 127.177235) (xy 66.118044 127.177234) (xy 66.030504 127.060295) (xy 65.913565 126.972755) (xy 65.776693 126.921705) (xy 65.716197 126.9152) (xy 64.8716 126.9152) (xy 64.8716 127.984761) (xy 64.829892 127.960682) (xy 64.690009 127.9232) (xy 64.545191 127.9232) (xy 64.405308 127.960682) (xy 64.3636 127.984761) (xy 64.3636 126.9152) (xy 63.519002 126.9152) (xy 63.458506 126.921705) (xy 63.321635 126.972755) (xy 63.321634 126.972755) (xy 63.204695 127.060296) (xy 63.131998 127.157406) (xy 63.075162 127.199952) (xy 63.004346 127.205016) (xy 62.965297 127.189329) (xy 62.879914 127.137007) (xy 62.787332 127.080273) (xy 62.560692 126.986395) (xy 62.322157 126.929128) (xy 62.0776 126.909881) (xy 61.833043 126.929128) (xy 61.594507 126.986395) (xy 61.494548 127.0278) (xy 61.416097 127.060296) (xy 61.367866 127.080274) (xy 61.158707 127.208445) (xy 60.972167 127.367767) (xy 60.903411 127.448269) (xy 60.84396 127.487078) (xy 60.772965 127.487584) (xy 60.712967 127.449628) (xy 60.711789 127.448269) (xy 60.699689 127.434103) (xy 60.643033 127.367767) (xy 60.456496 127.208448) (xy 60.456494 127.208446) (xy 60.456492 127.208445) (xy 60.333856 127.133294) (xy 60.247332 127.080273) (xy 60.020692 126.986395) (xy 59.782157 126.929128) (xy 59.5376 126.909881) (xy 59.293043 126.929128) (xy 59.054507 126.986395) (xy 58.954548 127.0278) (xy 58.876097 127.060296) (xy 58.827866 127.080274) (xy 58.618707 127.208445) (xy 58.432167 127.367767) (xy 58.272845 127.554307) (xy 58.144674 127.763466) (xy 58.050795 127.990107) (xy 58.01226 128.150617) (xy 57.993528 128.228643) (xy 57.974281 128.4732) (xy 38.0005 128.4732) (xy 38.0005 121.034602) (xy 39.262 121.034602) (xy 39.262 121.6792) (xy 40.189297 121.6792) (xy 40.154075 121.740207) (xy 40.12 121.867374) (xy 40.12 121.999026) (xy 40.154075 122.126193) (xy 40.189297 122.1872) (xy 39.262 122.1872) (xy 39.262 122.831797) (xy 39.268505 122.892293) (xy 39.319555 123.029164) (xy 39.319555 123.029165) (xy 39.407095 123.146104) (xy 39.524034 123.233644) (xy 39.660906 123.284694) (xy 39.721402 123.291199) (xy 39.721415 123.2912) (xy 40.366 123.2912) (xy 40.366 122.363902) (xy 40.427007 122.399125) (xy 40.554174 122.4332) (xy 40.685826 122.4332) (xy 40.812993 122.399125) (xy 40.874 122.363902) (xy 40.874 123.2912) (xy 41.518585 123.2912) (xy 41.518597 123.291199) (xy 41.579093 123.284694) (xy 41.715964 123.233644) (xy 41.715965 123.233644) (xy 41.832904 123.146104) (xy 41.920444 123.029165) (xy 41.964618 122.91073) (xy 42.007165 122.853894) (xy 42.073685 122.829083) (xy 42.143059 122.844174) (xy 42.175372 122.869422) (xy 42.196427 122.892293) (xy 42.236762 122.936108) (xy 42.28034 122.970026) (xy 42.414424 123.074389) (xy 42.612426 123.181542) (xy 42.612427 123.181542) (xy 42.612428 123.181543) (xy 42.724227 123.219923) (xy 42.825365 123.254644) (xy 43.047431 123.2917) (xy 43.047435 123.2917) (xy 43.272565 123.2917) (xy 43.272569 123.2917) (xy 43.494635 123.254644) (xy 43.707574 123.181542) (xy 43.905576 123.074389) (xy 44.08324 122.936106) (xy 44.235722 122.770468) (xy 44.324518 122.634554) (xy 44.37852 122.588468) (xy 44.448868 122.578892) (xy 44.513225 122.608869) (xy 44.53548 122.634553) (xy 44.545337 122.649639) (xy 44.624275 122.770465) (xy 44.624279 122.77047) (xy 44.772349 122.931314) (xy 44.77676 122.936106) (xy 44.954424 123.074389) (xy 45.152426 123.181542) (xy 45.152427 123.181542) (xy 45.152428 123.181543) (xy 45.264227 123.219923) (xy 45.365365 123.254644) (xy 45.587431 123.2917) (xy 45.587435 123.2917) (xy 45.812565 123.2917) (xy 45.812569 123.2917) (xy 46.034635 123.254644) (xy 46.247574 123.181542) (xy 46.445576 123.074389) (xy 46.62324 122.936106) (xy 46.775722 122.770468) (xy 46.89886 122.581991) (xy 46.989296 122.375816) (xy 47.044564 122.157568) (xy 47.063156 121.9332) (xy 47.044564 121.708832) (xy 46.989296 121.490584) (xy 46.89886 121.284409) (xy 46.89214 121.274124) (xy 46.775724 121.095934) (xy 46.77572 121.095929) (xy 46.623237 120.930291) (xy 46.503679 120.837235) (xy 46.445576 120.792011) (xy 46.247574 120.684858) (xy 46.247572 120.684857) (xy 46.247571 120.684856) (xy 46.034639 120.611757) (xy 46.03463 120.611755) (xy 45.990476 120.604387) (xy 45.812569 120.5747) (xy 45.587431 120.5747) (xy 45.439211 120.599433) (xy 45.365369 120.611755) (xy 45.36536 120.611757) (xy 45.152428 120.684856) (xy 45.152426 120.684858) (xy 45.018894 120.757122) (xy 44.954426 120.79201) (xy 44.954424 120.792011) (xy 44.776762 120.930291) (xy 44.624279 121.095929) (xy 44.535483 121.231843) (xy 44.481479 121.277931) (xy 44.411131 121.287506) (xy 44.346774 121.257529) (xy 44.324517 121.231843) (xy 44.23572 121.095929) (xy 44.083237 120.930291) (xy 43.963679 120.837235) (xy 43.905576 120.792011) (xy 43.707574 120.684858) (xy 43.707572 120.684857) (xy 43.707571 120.684856) (xy 43.494639 120.611757) (xy 43.49463 120.611755) (xy 43.450476 120.604387) (xy 43.272569 120.5747) (xy 43.047431 120.5747) (xy 42.899211 120.599433) (xy 42.825369 120.611755) (xy 42.82536 120.611757) (xy 42.612428 120.684856) (xy 42.612426 120.684858) (xy 42.478894 120.757122) (xy 42.414426 120.79201) (xy 42.414424 120.792011) (xy 42.236759 120.930294) (xy 42.175374 120.996975) (xy 42.114521 121.033546) (xy 42.043557 121.031411) (xy 41.985012 120.991249) (xy 41.964618 120.95567) (xy 41.920443 120.837233) (xy 41.832904 120.720295) (xy 41.715965 120.632755) (xy 41.579093 120.581705) (xy 41.518597 120.5752) (xy 40.874 120.5752) (xy 40.874 121.502497) (xy 40.812993 121.467275) (xy 40.685826 121.4332) (xy 40.554174 121.4332) (xy 40.427007 121.467275) (xy 40.366 121.502497) (xy 40.366 120.5752) (xy 39.721402 120.5752) (xy 39.660906 120.581705) (xy 39.524035 120.632755) (xy 39.524034 120.632755) (xy 39.407095 120.720295) (xy 39.319555 120.837234) (xy 39.319555 120.837235) (xy 39.268505 120.974106) (xy 39.262 121.034602) (xy 38.0005 121.034602) (xy 38.0005 119.20135) (xy 56.3665 119.20135) (xy 56.3665 120.998649) (xy 56.373009 121.059196) (xy 56.373011 121.059204) (xy 56.42411 121.196202) (xy 56.424112 121.196207) (xy 56.511738 121.313261) (xy 56.628792 121.400887) (xy 56.628794 121.400888) (xy 56.628796 121.400889) (xy 56.6839 121.421442) (xy 56.765795 121.451988) (xy 56.765803 121.45199) (xy 56.82635 121.458499) (xy 56.826355 121.458499) (xy 56.826362 121.4585) (xy 56.826368 121.4585) (xy 58.623632 121.4585) (xy 58.623638 121.4585) (xy 58.623645 121.458499) (xy 58.623649 121.458499) (xy 58.684196 121.45199) (xy 58.684199 121.451989) (xy 58.684201 121.451989) (xy 58.821204 121.400889) (xy 58.891399 121.348342) (xy 58.938261 121.313261) (xy 59.025886 121.196208) (xy 59.025885 121.196208) (xy 59.025889 121.196204) (xy 59.069999 121.077939) (xy 59.112545 121.021107) (xy 59.179066 120.996296) (xy 59.24844 121.011388) (xy 59.280753 121.036635) (xy 59.301529 121.059204) (xy 59.341762 121.102908) (xy 59.396331 121.145381) (xy 59.519424 121.241189) (xy 59.717426 121.348342) (xy 59.717427 121.348342) (xy 59.717428 121.348343) (xy 59.829227 121.386723) (xy 59.930365 121.421444) (xy 60.152431 121.4585) (xy 60.152435 121.4585) (xy 60.377565 121.4585) (xy 60.377569 121.4585) (xy 60.599635 121.421444) (xy 60.812574 121.348342) (xy 61.010576 121.241189) (xy 61.18824 121.102906) (xy 61.340722 120.937268) (xy 61.46386 120.748791) (xy 61.554296 120.542616) (xy 61.609564 120.324368) (xy 61.628156 120.1) (xy 61.609564 119.875632) (xy 61.594437 119.815897) (xy 61.554297 119.657387) (xy 61.554296 119.657386) (xy 61.554296 119.657384) (xy 61.46386 119.451209) (xy 61.4465 119.424637) (xy 61.340724 119.262734) (xy 61.34072 119.262729) (xy 61.188237 119.097091) (xy 61.068367 119.003792) (xy 61.010576 118.958811) (xy 60.812574 118.851658) (xy 60.812572 118.851657) (xy 60.812571 118.851656) (xy 60.599639 118.778557) (xy 60.59963 118.778555) (xy 60.555476 118.771187) (xy 60.377569 118.7415) (xy 60.152431 118.7415) (xy 60.004211 118.766233) (xy 59.930369 118.778555) (xy 59.93036 118.778557) (xy 59.717428 118.851656) (xy 59.717426 118.851658) (xy 59.519426 118.95881) (xy 59.519424 118.958811) (xy 59.341762 119.097091) (xy 59.280754 119.163363) (xy 59.219901 119.199933) (xy 59.148936 119.197798) (xy 59.090391 119.157636) (xy 59.069999 119.122057) (xy 59.045047 119.055159) (xy 59.025889 119.003796) (xy 59.025888 119.003794) (xy 59.025887 119.003792) (xy 58.938261 118.886738) (xy 58.821207 118.799112) (xy 58.821202 118.79911) (xy 58.684204 118.748011) (xy 58.684196 118.748009) (xy 58.623649 118.7415) (xy 58.623638 118.7415) (xy 56.826362 118.7415) (xy 56.82635 118.7415) (xy 56.765803 118.748009) (xy 56.765795 118.748011) (xy 56.628797 118.79911) (xy 56.628792 118.799112) (xy 56.511738 118.886738) (xy 56.424112 119.003792) (xy 56.42411 119.003797) (xy 56.373011 119.140795) (xy 56.373009 119.140803) (xy 56.3665 119.20135) (xy 38.0005 119.20135) (xy 38.0005 113.840833) (xy 38.020502 113.772712) (xy 38.074158 113.726219) (xy 38.144432 113.716115) (xy 38.209012 113.745609) (xy 38.231983 113.771918) (xy 38.294275 113.867265) (xy 38.294279 113.86727) (xy 38.446762 114.032908) (xy 38.501331 114.075381) (xy 38.624424 114.171189) (xy 38.822426 114.278342) (xy 38.822427 114.278342) (xy 38.822428 114.278343) (xy 38.85041 114.287949) (xy 39.035365 114.351444) (xy 39.257431 114.3885) (xy 39.257435 114.3885) (xy 39.482565 114.3885) (xy 39.482569 114.3885) (xy 39.704635 114.351444) (xy 39.917574 114.278342) (xy 40.115576 114.171189) (xy 40.29324 114.032906) (xy 40.445722 113.867268) (xy 40.534518 113.731354) (xy 40.58852 113.685268) (xy 40.658868 113.675692) (xy 40.723225 113.705669) (xy 40.74548 113.731353) (xy 40.771983 113.771918) (xy 40.834275 113.867265) (xy 40.834279 113.86727) (xy 40.986762 114.032908) (xy 41.041331 114.075381) (xy 41.164424 114.171189) (xy 41.362426 114.278342) (xy 41.362427 114.278342) (xy 41.362428 114.278343) (xy 41.39041 114.287949) (xy 41.575365 114.351444) (xy 41.797431 114.3885) (xy 41.797435 114.3885) (xy 42.022565 114.3885) (xy 42.022569 114.3885) (xy 42.244635 114.351444) (xy 42.457574 114.278342) (xy 42.655576 114.171189) (xy 42.83324 114.032906) (xy 42.894626 113.966222) (xy 42.955476 113.929654) (xy 43.026441 113.931787) (xy 43.084986 113.971949) (xy 43.10538 114.007529) (xy 43.149553 114.125961) (xy 43.149555 114.125965) (xy 43.237095 114.242904) (xy 43.354034 114.330444) (xy 43.490906 114.381494) (xy 43.551402 114.387999) (xy 43.551415 114.388) (xy 44.196 114.388) (xy 44.196 113.47225) (xy 44.253147 113.505245) (xy 44.382857 113.54) (xy 44.517143 113.54) (xy 44.646853 113.505245) (xy 44.704 113.47225) (xy 44.704 114.388) (xy 45.348585 114.388) (xy 45.348597 114.387999) (xy 45.409093 114.381494) (xy 45.545964 114.330444) (xy 45.545965 114.330444) (xy 45.662904 114.242904) (xy 45.750444 114.125965) (xy 45.794618 114.00753) (xy 45.837165 113.950694) (xy 45.903685 113.925883) (xy 45.973059 113.940974) (xy 46.005372 113.966222) (xy 46.010645 113.971949) (xy 46.066762 114.032908) (xy 46.121331 114.075381) (xy 46.244424 114.171189) (xy 46.442426 114.278342) (xy 46.442427 114.278342) (xy 46.442428 114.278343) (xy 46.47041 114.287949) (xy 46.655365 114.351444) (xy 46.877431 114.3885) (xy 46.877435 114.3885) (xy 47.102565 114.3885) (xy 47.102569 114.3885) (xy 47.324635 114.351444) (xy 47.537574 114.278342) (xy 47.735576 114.171189) (xy 47.91324 114.032906) (xy 48.065722 113.867268) (xy 48.154518 113.731354) (xy 48.20852 113.685268) (xy 48.278868 113.675692) (xy 48.343225 113.705669) (xy 48.36548 113.731353) (xy 48.391983 113.771918) (xy 48.454275 113.867265) (xy 48.454279 113.86727) (xy 48.606762 114.032908) (xy 48.661331 114.075381) (xy 48.784424 114.171189) (xy 48.982426 114.278342) (xy 48.982427 114.278342) (xy 48.982428 114.278343) (xy 49.01041 114.287949) (xy 49.195365 114.351444) (xy 49.417431 114.3885) (xy 49.417435 114.3885) (xy 49.642565 114.3885) (xy 49.642569 114.3885) (xy 49.864635 114.351444) (xy 50.077574 114.278342) (xy 50.275576 114.171189) (xy 50.45324 114.032906) (xy 50.605722 113.867268) (xy 50.694518 113.731354) (xy 50.74852 113.685268) (xy 50.818868 113.675692) (xy 50.883225 113.705669) (xy 50.90548 113.731353) (xy 50.931983 113.771918) (xy 50.994275 113.867265) (xy 50.994279 113.86727) (xy 51.146762 114.032908) (xy 51.201331 114.075381) (xy 51.324424 114.171189) (xy 51.522426 114.278342) (xy 51.522427 114.278342) (xy 51.522428 114.278343) (xy 51.55041 114.287949) (xy 51.735365 114.351444) (xy 51.957431 114.3885) (xy 51.957435 114.3885) (xy 52.182565 114.3885) (xy 52.182569 114.3885) (xy 52.404635 114.351444) (xy 52.617574 114.278342) (xy 52.815576 114.171189) (xy 52.99324 114.032906) (xy 53.145722 113.867268) (xy 53.234518 113.731354) (xy 53.28852 113.685268) (xy 53.358868 113.675692) (xy 53.423225 113.705669) (xy 53.44548 113.731353) (xy 53.471983 113.771918) (xy 53.534275 113.867265) (xy 53.534279 113.86727) (xy 53.686762 114.032908) (xy 53.741331 114.075381) (xy 53.864424 114.171189) (xy 54.062426 114.278342) (xy 54.062427 114.278342) (xy 54.062428 114.278343) (xy 54.09041 114.287949) (xy 54.275365 114.351444) (xy 54.497431 114.3885) (xy 54.497435 114.3885) (xy 54.722565 114.3885) (xy 54.722569 114.3885) (xy 54.944635 114.351444) (xy 55.157574 114.278342) (xy 55.355576 114.171189) (xy 55.53324 114.032906) (xy 55.594626 113.966222) (xy 55.655476 113.929654) (xy 55.726441 113.931787) (xy 55.784986 113.971949) (xy 55.80538 114.007529) (xy 55.849553 114.125961) (xy 55.849555 114.125965) (xy 55.937095 114.242904) (xy 56.054034 114.330444) (xy 56.190906 114.381494) (xy 56.251402 114.387999) (xy 56.251415 114.388) (xy 56.896 114.388) (xy 56.896 113.47225) (xy 56.953147 113.505245) (xy 57.082857 113.54) (xy 57.217143 113.54) (xy 57.346853 113.505245) (xy 57.404 113.47225) (xy 57.404 114.388) (xy 58.048585 114.388) (xy 58.048597 114.387999) (xy 58.109093 114.381494) (xy 58.245964 114.330444) (xy 58.245965 114.330444) (xy 58.362904 114.242904) (xy 58.450444 114.125965) (xy 58.494618 114.00753) (xy 58.537165 113.950694) (xy 58.603685 113.925883) (xy 58.673059 113.940974) (xy 58.705372 113.966222) (xy 58.710645 113.971949) (xy 58.766762 114.032908) (xy 58.821331 114.075381) (xy 58.944424 114.171189) (xy 59.142426 114.278342) (xy 59.142427 114.278342) (xy 59.142428 114.278343) (xy 59.17041 114.287949) (xy 59.355365 114.351444) (xy 59.577431 114.3885) (xy 59.577435 114.3885) (xy 59.802565 114.3885) (xy 59.802569 114.3885) (xy 60.024635 114.351444) (xy 60.237574 114.278342) (xy 60.435576 114.171189) (xy 60.61324 114.032906) (xy 60.765722 113.867268) (xy 60.854518 113.731354) (xy 60.90852 113.685268) (xy 60.978868 113.675692) (xy 61.043225 113.705669) (xy 61.06548 113.731353) (xy 61.091983 113.771918) (xy 61.154275 113.867265) (xy 61.154279 113.86727) (xy 61.306762 114.032908) (xy 61.361331 114.075381) (xy 61.484424 114.171189) (xy 61.682426 114.278342) (xy 61.682427 114.278342) (xy 61.682428 114.278343) (xy 61.71041 114.287949) (xy 61.895365 114.351444) (xy 62.117431 114.3885) (xy 62.117435 114.3885) (xy 62.342565 114.3885) (xy 62.342569 114.3885) (xy 62.564635 114.351444) (xy 62.777574 114.278342) (xy 62.975576 114.171189) (xy 63.15324 114.032906) (xy 63.305722 113.867268) (xy 63.394518 113.731354) (xy 63.44852 113.685268) (xy 63.518868 113.675692) (xy 63.583225 113.705669) (xy 63.60548 113.731353) (xy 63.631983 113.771918) (xy 63.694275 113.867265) (xy 63.694279 113.86727) (xy 63.846762 114.032908) (xy 63.901331 114.075381) (xy 64.024424 114.171189) (xy 64.222426 114.278342) (xy 64.222427 114.278342) (xy 64.222428 114.278343) (xy 64.25041 114.287949) (xy 64.435365 114.351444) (xy 64.657431 114.3885) (xy 64.657435 114.3885) (xy 64.882565 114.3885) (xy 64.882569 114.3885) (xy 65.104635 114.351444) (xy 65.124232 114.344715) (xy 65.195155 114.341512) (xy 65.254243 114.374792) (xy 70.635395 119.755944) (xy 70.669421 119.818256) (xy 70.6723 119.845039) (xy 70.6723 119.9633) (xy 70.652298 120.031421) (xy 70.598642 120.077914) (xy 70.5463 120.0893) (xy 70.38215 120.0893) (xy 70.321603 120.095809) (xy 70.321595 120.095811) (xy 70.184597 120.14691) (xy 70.184592 120.146912) (xy 70.067538 120.234538) (xy 69.979912 120.351592) (xy 69.97991 120.351597) (xy 69.928811 120.488595) (xy 69.928809 120.488603) (xy 69.9223 120.54915) (xy 69.9223 122.346449) (xy 69.928809 122.406996) (xy 69.928811 122.407004) (xy 69.97991 122.544002) (xy 69.979912 122.544007) (xy 70.067538 122.661061) (xy 70.184591 122.748686) (xy 70.184592 122.748686) (xy 70.184596 122.748689) (xy 70.29961 122.791587) (xy 70.356442 122.834132) (xy 70.381253 122.900652) (xy 70.366162 122.970026) (xy 70.348275 122.994979) (xy 70.20508 123.150529) (xy 70.205075 123.150534) (xy 70.081941 123.339006) (xy 69.991503 123.545186) (xy 69.991502 123.545187) (xy 69.936237 123.763424) (xy 69.936236 123.76343) (xy 69.936236 123.763432) (xy 69.917644 123.9878) (xy 69.934163 124.187155) (xy 69.936237 124.212175) (xy 69.991502 124.430412) (xy 69.991503 124.430413) (xy 69.991504 124.430416) (xy 70.080581 124.633492) (xy 70.081941 124.636593) (xy 70.205075 124.825065) (xy 70.205079 124.82507) (xy 70.357562 124.990708) (xy 70.412131 125.033181) (xy 70.535224 125.128989) (xy 70.56848 125.146986) (xy 70.618871 125.197) (xy 70.634223 125.266316) (xy 70.609662 125.332929) (xy 70.56848 125.368613) (xy 70.535226 125.38661) (xy 70.535224 125.386611) (xy 70.357562 125.524891) (xy 70.205079 125.690529) (xy 70.205075 125.690534) (xy 70.081941 125.879006) (xy 69.991503 126.085186) (xy 69.991502 126.085187) (xy 69.936237 126.303424) (xy 69.936236 126.30343) (xy 69.936236 126.303432) (xy 69.917644 126.5278) (xy 69.933636 126.720793) (xy 69.936237 126.752175) (xy 69.991502 126.970412) (xy 69.991503 126.970413) (xy 69.991504 126.970416) (xy 70.08194 127.176591) (xy 70.081941 127.176593) (xy 70.205075 127.365065) (xy 70.205079 127.36507) (xy 70.357562 127.530708) (xy 70.387878 127.554304) (xy 70.535224 127.668989) (xy 70.567953 127.686701) (xy 70.56848 127.686986) (xy 70.618871 127.737) (xy 70.634223 127.806316) (xy 70.609662 127.872929) (xy 70.56848 127.908613) (xy 70.535226 127.92661) (xy 70.535224 127.926611) (xy 70.357562 128.064891) (xy 70.205079 128.230529) (xy 70.205075 128.230534) (xy 70.081941 128.419006) (xy 69.991503 128.625186) (xy 69.991502 128.625187) (xy 69.936237 128.843424) (xy 69.936236 128.84343) (xy 69.936236 128.843432) (xy 69.917644 129.0678) (xy 69.927184 129.182933) (xy 69.936237 129.292175) (xy 69.991502 129.510412) (xy 69.991503 129.510413) (xy 70.081941 129.716593) (xy 70.205075 129.905065) (xy 70.205079 129.90507) (xy 70.357562 130.070708) (xy 70.412131 130.113181) (xy 70.535224 130.208989) (xy 70.56848 130.226986) (xy 70.618871 130.277) (xy 70.634223 130.346316) (xy 70.609662 130.412929) (xy 70.56848 130.448613) (xy 70.535226 130.46661) (xy 70.535224 130.466611) (xy 70.357562 130.604891) (xy 70.205079 130.770529) (xy 70.205075 130.770534) (xy 70.081941 130.959006) (xy 69.991503 131.165186) (xy 69.991502 131.165187) (xy 69.936237 131.383424) (xy 69.936236 131.38343) (xy 69.936236 131.383432) (xy 69.917644 131.6078) (xy 69.933636 131.800793) (xy 69.936237 131.832175) (xy 69.991502 132.050412) (xy 69.991503 132.050413) (xy 69.991504 132.050416) (xy 70.08194 132.256591) (xy 70.081941 132.256593) (xy 70.205075 132.445065) (xy 70.205079 132.44507) (xy 70.357562 132.610708) (xy 70.388888 132.63509) (xy 70.535224 132.748989) (xy 70.733226 132.856142) (xy 70.733227 132.856142) (xy 70.733228 132.856143) (xy 70.845027 132.894523) (xy 70.946165 132.929244) (xy 71.168231 132.9663) (xy 71.168235 132.9663) (xy 71.393365 132.9663) (xy 71.393369 132.9663) (xy 71.615435 132.929244) (xy 71.828374 132.856142) (xy 72.026376 132.748989) (xy 72.20404 132.610706) (xy 72.356522 132.445068) (xy 72.445616 132.308698) (xy 72.499619 132.26261) (xy 72.569967 132.253035) (xy 72.634324 132.283012) (xy 72.656582 132.308698) (xy 72.745474 132.444758) (xy 72.897897 132.610334) (xy 73.075498 132.748567) (xy 73.075499 132.748568) (xy 73.273428 132.855682) (xy 73.27343 132.855683) (xy 73.486283 132.928755) (xy 73.486292 132.928757) (xy 73.5668 132.942191) (xy 73.5668 132.038502) (xy 73.627807 132.073725) (xy 73.754974 132.1078) (xy 73.886626 132.1078) (xy 74.013793 132.073725) (xy 74.0748 132.038502) (xy 74.0748 132.94219) (xy 74.155307 132.928757) (xy 74.155316 132.928755) (xy 74.368169 132.855683) (xy 74.368171 132.855682) (xy 74.5661 132.748568) (xy 74.566101 132.748567) (xy 74.743702 132.610334) (xy 74.896125 132.444758) (xy 75.019219 132.256348) (xy 75.10962 132.050256) (xy 75.109623 132.050249) (xy 75.157344 131.8618) (xy 74.251503 131.8618) (xy 74.286725 131.800793) (xy 74.297334 131.7612) (xy 80.477337 131.7612) (xy 80.49596 131.997832) (xy 80.551371 132.228637) (xy 80.642208 132.447938) (xy 80.756896 132.63509) (xy 80.756897 132.63509) (xy 81.465016 131.926971) (xy 81.477482 131.973492) (xy 81.54989 132.098908) (xy 81.652292 132.20131) (xy 81.777708 132.273718) (xy 81.824226 132.286182) (xy 81.116107 132.994301) (xy 81.116108 132.994302) (xy 81.303261 133.108991) (xy 81.522562 133.199828) (xy 81.753367 133.255239) (xy 81.99 133.273862) (xy 82.226632 133.255239) (xy 82.457437 133.199828) (xy 82.676738 133.108991) (xy 82.86389 132.994302) (xy 82.863891 132.994302) (xy 82.155772 132.286182) (xy 82.202292 132.273718) (xy 82.327708 132.20131) (xy 82.43011 132.098908) (xy 82.502518 131.973492) (xy 82.514983 131.926972) (xy 83.223102 132.635091) (xy 83.223102 132.63509) (xy 83.337791 132.447938) (xy 83.428628 132.228637) (xy 83.484039 131.997832) (xy 83.502662 131.7612) (xy 86.977337 131.7612) (xy 86.99596 131.997832) (xy 87.051371 132.228637) (xy 87.142208 132.447938) (xy 87.256896 132.63509) (xy 87.256897 132.63509) (xy 87.965016 131.926971) (xy 87.977482 131.973492) (xy 88.04989 132.098908) (xy 88.152292 132.20131) (xy 88.277708 132.273718) (xy 88.324226 132.286182) (xy 87.616107 132.994301) (xy 87.616108 132.994302) (xy 87.803261 133.108991) (xy 88.022562 133.199828) (xy 88.253367 133.255239) (xy 88.49 133.273862) (xy 88.726632 133.255239) (xy 88.957437 133.199828) (xy 89.176738 133.108991) (xy 89.36389 132.994302) (xy 89.363891 132.994302) (xy 88.655772 132.286182) (xy 88.702292 132.273718) (xy 88.827708 132.20131) (xy 88.93011 132.098908) (xy 89.002518 131.973492) (xy 89.014983 131.926972) (xy 89.723102 132.635091) (xy 89.723102 132.63509) (xy 89.837791 132.447938) (xy 89.928628 132.228637) (xy 89.984039 131.997832) (xy 90.002662 131.7612) (xy 89.984039 131.524567) (xy 89.928628 131.293762) (xy 89.837791 131.074461) (xy 89.723102 130.887308) (xy 89.723101 130.887307) (xy 89.014982 131.595426) (xy 89.002518 131.548908) (xy 88.93011 131.423492) (xy 88.827708 131.32109) (xy 88.702292 131.248682) (xy 88.655771 131.236216) (xy 89.36389 130.528097) (xy 89.36389 130.528096) (xy 89.176738 130.413408) (xy 88.957437 130.322571) (xy 88.726632 130.26716) (xy 88.49 130.248537) (xy 88.253367 130.26716) (xy 88.022562 130.322571) (xy 87.803266 130.413406) (xy 87.616108 130.528097) (xy 87.616108 130.528098) (xy 88.324227 131.236217) (xy 88.277708 131.248682) (xy 88.152292 131.32109) (xy 88.04989 131.423492) (xy 87.977482 131.548908) (xy 87.965017 131.595427) (xy 87.256898 130.887308) (xy 87.256897 130.887308) (xy 87.142206 131.074466) (xy 87.051371 131.293762) (xy 86.99596 131.524567) (xy 86.977337 131.7612) (xy 83.502662 131.7612) (xy 83.484039 131.524567) (xy 83.428628 131.293762) (xy 83.337791 131.074461) (xy 83.223102 130.887308) (xy 83.223101 130.887307) (xy 82.514982 131.595426) (xy 82.502518 131.548908) (xy 82.43011 131.423492) (xy 82.327708 131.32109) (xy 82.202292 131.248682) (xy 82.155771 131.236216) (xy 82.86389 130.528097) (xy 82.86389 130.528096) (xy 82.676738 130.413408) (xy 82.457437 130.322571) (xy 82.226632 130.26716) (xy 81.99 130.248537) (xy 81.753367 130.26716) (xy 81.522562 130.322571) (xy 81.303266 130.413406) (xy 81.116108 130.528097) (xy 81.116108 130.528098) (xy 81.824227 131.236217) (xy 81.777708 131.248682) (xy 81.652292 131.32109) (xy 81.54989 131.423492) (xy 81.477482 131.548908) (xy 81.465017 131.595427) (xy 80.756898 130.887308) (xy 80.756897 130.887308) (xy 80.642206 131.074466) (xy 80.551371 131.293762) (xy 80.49596 131.524567) (xy 80.477337 131.7612) (xy 74.297334 131.7612) (xy 74.3208 131.673626) (xy 74.3208 131.541974) (xy 74.286725 131.414807) (xy 74.251503 131.3538) (xy 75.157344 131.3538) (xy 75.157344 131.353799) (xy 75.109623 131.16535) (xy 75.10962 131.165343) (xy 75.019219 130.959251) (xy 74.896125 130.770841) (xy 74.743702 130.605265) (xy 74.566101 130.467032) (xy 74.5661 130.467031) (xy 74.532591 130.448897) (xy 74.482201 130.398883) (xy 74.46685 130.329566) (xy 74.491412 130.262953) (xy 74.53259 130.227272) (xy 74.566376 130.208989) (xy 74.74404 130.070706) (xy 74.896522 129.905068) (xy 75.01966 129.716591) (xy 75.110096 129.510416) (xy 75.165364 129.292168) (xy 75.183956 129.0678) (xy 75.165364 128.843432) (xy 75.133539 128.717757) (xy 75.110097 128.625187) (xy 75.110096 128.625186) (xy 75.110096 128.625184) (xy 75.01966 128.419009) (xy 75.007758 128.400791) (xy 74.896524 128.230534) (xy 74.89652 128.230529) (xy 74.744037 128.064891) (xy 74.647955 127.990107) (xy 74.566376 127.926611) (xy 74.532592 127.908328) (xy 74.482202 127.858316) (xy 74.46685 127.788999) (xy 74.49141 127.722386) (xy 74.532593 127.686701) (xy 74.5661 127.668567) (xy 74.566101 127.668567) (xy 74.743702 127.530334) (xy 74.896125 127.364758) (xy 74.963783 127.2612) (xy 80.476835 127.2612) (xy 80.495465 127.497911) (xy 80.51106 127.562868) (xy 80.550894 127.728792) (xy 80.632833 127.92661) (xy 80.64176 127.948163) (xy 80.713293 128.064894) (xy 80.765825 128.150617) (xy 80.765826 128.150619) (xy 80.92003 128.331169) (xy 81.10058 128.485373) (xy 81.100584 128.485376) (xy 81.303037 128.60944) (xy 81.522406 128.700305) (xy 81.753289 128.755735) (xy 81.99 128.774365) (xy 82.226711 128.755735) (xy 82.457594 128.700305) (xy 82.676963 128.60944) (xy 82.879416 128.485376) (xy 83.059969 128.331169) (xy 83.214176 128.150616) (xy 83.33824 127.948163) (xy 83.429105 127.728794) (xy 83.484535 127.497911) (xy 83.503165 127.2612) (xy 86.976835 127.2612) (xy 86.995465 127.497911) (xy 87.01106 127.562868) (xy 87.050894 127.728792) (xy 87.132833 127.92661) (xy 87.14176 127.948163) (xy 87.213293 128.064894) (xy 87.265825 128.150617) (xy 87.265826 128.150619) (xy 87.42003 128.331169) (xy 87.60058 128.485373) (xy 87.600584 128.485376) (xy 87.803037 128.60944) (xy 88.022406 128.700305) (xy 88.253289 128.755735) (xy 88.49 128.774365) (xy 88.726711 128.755735) (xy 88.957594 128.700305) (xy 89.176963 128.60944) (xy 89.379416 128.485376) (xy 89.559969 128.331169) (xy 89.714176 128.150616) (xy 89.83824 127.948163) (xy 89.929105 127.728794) (xy 89.984535 127.497911) (xy 90.003165 127.2612) (xy 89.984535 127.024489) (xy 89.929105 126.793606) (xy 89.83824 126.574237) (xy 89.714176 126.371784) (xy 89.682595 126.334807) (xy 89.559969 126.19123) (xy 89.379419 126.037026) (xy 89.379417 126.037025) (xy 89.379416 126.037024) (xy 89.176963 125.91296) (xy 89.122267 125.890304) (xy 88.957592 125.822094) (xy 88.799651 125.784176) (xy 88.726711 125.766665) (xy 88.49 125.748035) (xy 88.253289 125.766665) (xy 88.022407 125.822094) (xy 87.803038 125.912959) (xy 87.600582 126.037025) (xy 87.60058 126.037026) (xy 87.42003 126.19123) (xy 87.265826 126.37178) (xy 87.265825 126.371782) (xy 87.141759 126.574238) (xy 87.050894 126.793607) (xy 87.002851 126.993725) (xy 86.995465 127.024489) (xy 86.976835 127.2612) (xy 83.503165 127.2612) (xy 83.484535 127.024489) (xy 83.429105 126.793606) (xy 83.33824 126.574237) (xy 83.214176 126.371784) (xy 83.182595 126.334807) (xy 83.059969 126.19123) (xy 82.879419 126.037026) (xy 82.879417 126.037025) (xy 82.879416 126.037024) (xy 82.676963 125.91296) (xy 82.622267 125.890304) (xy 82.457592 125.822094) (xy 82.299651 125.784176) (xy 82.226711 125.766665) (xy 81.99 125.748035) (xy 81.753289 125.766665) (xy 81.522407 125.822094) (xy 81.303038 125.912959) (xy 81.100582 126.037025) (xy 81.10058 126.037026) (xy 80.92003 126.19123) (xy 80.765826 126.37178) (xy 80.765825 126.371782) (xy 80.641759 126.574238) (xy 80.550894 126.793607) (xy 80.502851 126.993725) (xy 80.495465 127.024489) (xy 80.476835 127.2612) (xy 74.963783 127.2612) (xy 75.019219 127.176348) (xy 75.109622 126.970254) (xy 75.109623 126.970249) (xy 75.157344 126.7818) (xy 74.251503 126.7818) (xy 74.286725 126.720793) (xy 74.3208 126.593626) (xy 74.3208 126.461974) (xy 74.286725 126.334807) (xy 74.251503 126.2738) (xy 75.157344 126.2738) (xy 75.157344 126.273799) (xy 75.109623 126.08535) (xy 75.10962 126.085343) (xy 75.019219 125.879251) (xy 74.896125 125.690841) (xy 74.743702 125.525265) (xy 74.566101 125.387032) (xy 74.5661 125.387031) (xy 74.532591 125.368897) (xy 74.482201 125.318883) (xy 74.46685 125.249566) (xy 74.491412 125.182953) (xy 74.53259 125.147272) (xy 74.566376 125.128989) (xy 74.74404 124.990706) (xy 74.896522 124.825068) (xy 75.01966 124.636591) (xy 75.110096 124.430416) (xy 75.165364 124.212168) (xy 75.183956 123.9878) (xy 75.165364 123.763432) (xy 75.130473 123.625651) (xy 75.13314 123.554706) (xy 75.16352 123.505627) (xy 75.696921 122.972228) (xy 75.717776 122.936106) (xy 75.777032 122.833472) (xy 75.8185 122.678711) (xy 75.8185 117.115239) (xy 75.838502 117.047118) (xy 75.892158 117.000625) (xy 75.962432 116.990521) (xy 76.027012 117.020015) (xy 76.033595 117.026144) (xy 83.834791 124.82734) (xy 83.868817 124.889652) (xy 83.871696 124.916435) (xy 83.871696 124.917199) (xy 83.891657 125.107127) (xy 83.904701 125.14727) (xy 83.950673 125.288756) (xy 83.950676 125.288761) (xy 84.046158 125.454141) (xy 84.046165 125.454151) (xy 84.173944 125.596064) (xy 84.173947 125.596066) (xy 84.328448 125.708318) (xy 84.502912 125.785994) (xy 84.689713 125.8257) (xy 84.880687 125.8257) (xy 85.067488 125.785994) (xy 85.241952 125.708318) (xy 85.396453 125.596066) (xy 85.414534 125.575985) (xy 85.524234 125.454151) (xy 85.524235 125.454149) (xy 85.52424 125.454144) (xy 85.619727 125.288756) (xy 85.678742 125.107128) (xy 85.698704 124.9172) (xy 85.678742 124.727272) (xy 85.619727 124.545644) (xy 85.52424 124.380256) (xy 85.524238 124.380254) (xy 85.524234 124.380248) (xy 85.396455 124.238335) (xy 85.241952 124.126082) (xy 85.067488 124.048406) (xy 84.880687 124.0087) (xy 84.789439 124.0087) (xy 84.721318 123.988698) (xy 84.700344 123.971795) (xy 80.232104 119.503555) (xy 111.3439 119.503555) (xy 111.3439 119.661244) (xy 111.370078 119.792849) (xy 111.374663 119.815897) (xy 111.435006 119.961579) (xy 111.522611 120.092689) (xy 111.634111 120.204189) (xy 111.765221 120.291794) (xy 111.910903 120.352137) (xy 112.065558 120.3829) (xy 112.065559 120.3829) (xy 112.223241 120.3829) (xy 112.223242 120.3829) (xy 112.377897 120.352137) (xy 112.523579 120.291794) (xy 112.654689 120.204189) (xy 112.714248 120.144629) (xy 112.776556 120.110607) (xy 112.847372 120.115671) (xy 112.904208 120.158217) (xy 112.915604 120.17652) (xy 112.979678 120.302271) (xy 113.106753 120.477175) (xy 113.106755 120.477177) (xy 113.106757 120.47718) (xy 113.259622 120.630045) (xy 113.425364 120.750464) (xy 113.468718 120.806687) (xy 113.474793 120.877423) (xy 113.441661 120.940214) (xy 113.425364 120.954336) (xy 113.259622 121.074754) (xy 113.106757 121.227619) (xy 113.106755 121.227622) (xy 112.97968 121.402525) (xy 112.881527 121.59516) (xy 112.814721 121.800767) (xy 112.81472 121.800771) (xy 112.7809 122.014303) (xy 112.7809 122.230497) (xy 112.81472 122.444029) (xy 112.814721 122.444032) (xy 112.876626 122.634556) (xy 112.881528 122.649641) (xy 112.975193 122.833469) (xy 112.97968 122.842274) (xy 112.993117 122.860768) (xy 113.106753 123.017175) (xy 113.106755 123.017177) (xy 113.106757 123.01718) (xy 113.191109 123.101532) (xy 113.225135 123.163844) (xy 113.22007 123.234659) (xy 113.177523 123.291495) (xy 113.146047 123.308682) (xy 113.043439 123.346953) (xy 113.043434 123.346955) (xy 112.926495 123.434495) (xy 112.838955 123.551434) (xy 112.838955 123.551435) (xy 112.787905 123.688306) (xy 112.7814 123.748802) (xy 112.7814 124.4084) (xy 113.862149 124.4084) (xy 113.829155 124.465547) (xy 113.7944 124.595257) (xy 113.7944 124.729543) (xy 113.829155 124.859253) (xy 113.862149 124.9164) (xy 112.7814 124.9164) (xy 112.7814 125.575997) (xy 112.787905 125.636493) (xy 112.838955 125.773364) (xy 112.838955 125.773365) (xy 112.926495 125.890304) (xy 113.043434 125.977844) (xy 113.180306 126.028894) (xy 113.240802 126.035399) (xy 113.240815 126.0354) (xy 114.0504 126.0354) (xy 114.0504 125.10465) (xy 114.107547 125.137645) (xy 114.237257 125.1724) (xy 114.371543 125.1724) (xy 114.501253 125.137645) (xy 114.5584 125.10465) (xy 114.5584 126.0354) (xy 115.367985 126.0354) (xy 115.367997 126.035399) (xy 115.428493 126.028894) (xy 115.565364 125.977844) (xy 115.565365 125.977844) (xy 115.682304 125.890304) (xy 115.769844 125.773365) (xy 115.769844 125.773364) (xy 115.820894 125.636493) (xy 115.827399 125.575997) (xy 115.8274 125.575985) (xy 115.8274 124.9164) (xy 114.746651 124.9164) (xy 114.779645 124.859253) (xy 114.8144 124.729543) (xy 114.8144 124.595257) (xy 114.779645 124.465547) (xy 114.746651 124.4084) (xy 115.8274 124.4084) (xy 115.8274 123.748814) (xy 115.827399 123.748802) (xy 115.820894 123.688306) (xy 115.769844 123.551435) (xy 115.769844 123.551434) (xy 115.682304 123.434495) (xy 115.565366 123.346956) (xy 115.462752 123.308683) (xy 115.405917 123.266136) (xy 115.381106 123.199615) (xy 115.396198 123.130241) (xy 115.417687 123.101534) (xy 115.502047 123.017175) (xy 115.629122 122.842271) (xy 115.727272 122.649641) (xy 115.79408 122.444029) (xy 115.8279 122.230497) (xy 115.8279 122.014303) (xy 115.79408 121.800771) (xy 115.727272 121.595159) (xy 115.629122 121.402529) (xy 115.502047 121.227625) (xy 115.502044 121.227622) (xy 115.502042 121.227619) (xy 115.34918 121.074757) (xy 115.349177 121.074755) (xy 115.349176 121.074754) (xy 115.349175 121.074753) (xy 115.183435 120.954336) (xy 115.140081 120.898114) (xy 115.134006 120.827378) (xy 115.167137 120.764586) (xy 115.183435 120.750464) (xy 115.224959 120.720295) (xy 115.349175 120.630047) (xy 115.502047 120.477175) (xy 115.629122 120.302271) (xy 115.727272 120.109641) (xy 115.79408 119.904029) (xy 115.8279 119.690497) (xy 115.8279 119.474303) (xy 115.79408 119.260771) (xy 115.727272 119.055159) (xy 115.629122 118.862529) (xy 115.502047 118.687625) (xy 115.502044 118.687622) (xy 115.502042 118.687619) (xy 115.34918 118.534757) (xy 115.349177 118.534755) (xy 115.349176 118.534754) (xy 115.349175 118.534753) (xy 115.183435 118.414336) (xy 115.140081 118.358114) (xy 115.134006 118.287378) (xy 115.167137 118.224586) (xy 115.183435 118.210464) (xy 115.186127 118.208507) (xy 115.349175 118.090047) (xy 115.502047 117.937175) (xy 115.629122 117.762271) (xy 115.727272 117.569641) (xy 115.79408 117.364029) (xy 115.8279 117.150497) (xy 115.8279 116.934303) (xy 115.79408 116.720771) (xy 115.727272 116.515159) (xy 115.629122 116.322529) (xy 115.502047 116.147625) (xy 115.502044 116.147622) (xy 115.502042 116.147619) (xy 115.34918 115.994757) (xy 115.349177 115.994755) (xy 115.349175 115.994753) (xy 115.174271 115.867678) (xy 114.981641 115.769528) (xy 114.98164 115.769527) (xy 114.981639 115.769527) (xy 114.776032 115.702721) (xy 114.776029 115.70272) (xy 114.562497 115.6689) (xy 114.046303 115.6689) (xy 113.832771 115.70272) (xy 113.832768 115.70272) (xy 113.832767 115.702721) (xy 113.62716 115.769527) (xy 113.434525 115.86768) (xy 113.259622 115.994755) (xy 113.259619 115.994757) (xy 113.106757 116.147619) (xy 113.106755 116.147622) (xy 112.97968 116.322525) (xy 112.881527 116.51516) (xy 112.836818 116.652761) (xy 112.81472 116.720771) (xy 112.7809 116.934303) (xy 112.7809 117.150497) (xy 112.81472 117.364029) (xy 112.814721 117.364032) (xy 112.850289 117.4735) (xy 112.881528 117.569641) (xy 112.979678 117.762271) (xy 113.106753 117.937175) (xy 113.106755 117.937177) (xy 113.106757 117.93718) (xy 113.259622 118.090045) (xy 113.425364 118.210464) (xy 113.468718 118.266687) (xy 113.474793 118.337423) (xy 113.441661 118.400214) (xy 113.425364 118.414336) (xy 113.259622 118.534754) (xy 113.106757 118.687619) (xy 113.106755 118.687622) (xy 112.979679 118.862525) (xy 112.915607 118.988275) (xy 112.866858 119.03989) (xy 112.797943 119.056956) (xy 112.730742 119.034055) (xy 112.714245 119.020167) (xy 112.654691 118.960613) (xy 112.654689 118.960611) (xy 112.523579 118.873006) (xy 112.377897 118.812663) (xy 112.223244 118.7819) (xy 112.223242 118.7819) (xy 112.065558 118.7819) (xy 112.065555 118.7819) (xy 111.910902 118.812663) (xy 111.910897 118.812665) (xy 111.76522 118.873006) (xy 111.634115 118.960608) (xy 111.634108 118.960613) (xy 111.522613 119.072108) (xy 111.522608 119.072115) (xy 111.435006 119.20322) (xy 111.374665 119.348897) (xy 111.374663 119.348902) (xy 111.3439 119.503555) (xy 80.232104 119.503555) (xy 76.820405 116.091856) (xy 76.786379 116.029544) (xy 76.7835 116.002761) (xy 76.7835 114.407122) (xy 76.803502 114.339001) (xy 76.857158 114.292508) (xy 76.927432 114.282404) (xy 76.950406 114.287947) (xy 77.135365 114.351444) (xy 77.357431 114.3885) (xy 77.357435 114.3885) (xy 77.582565 114.3885) (xy 77.582569 114.3885) (xy 77.804635 114.351444) (xy 78.017574 114.278342) (xy 78.215576 114.171189) (xy 78.39324 114.032906) (xy 78.545722 113.867268) (xy 78.634518 113.731354) (xy 78.68852 113.685268) (xy 78.758868 113.675692) (xy 78.823225 113.705669) (xy 78.84548 113.731353) (xy 78.871983 113.771918) (xy 78.934275 113.867265) (xy 78.934279 113.86727) (xy 79.086762 114.032908) (xy 79.141331 114.075381) (xy 79.264424 114.171189) (xy 79.462426 114.278342) (xy 79.462427 114.278342) (xy 79.462428 114.278343) (xy 79.49041 114.287949) (xy 79.675365 114.351444) (xy 79.897431 114.3885) (xy 79.897435 114.3885) (xy 80.122565 114.3885) (xy 80.122569 114.3885) (xy 80.344635 114.351444) (xy 80.344651 114.351438) (xy 80.347751 114.350654) (xy 80.349072 114.350703) (xy 80.349777 114.350586) (xy 80.349801 114.35073) (xy 80.418698 114.353311) (xy 80.467795 114.383699) (xy 83.416161 117.332067) (xy 83.416166 117.332071) (xy 83.416167 117.332072) (xy 83.519925 117.401401) (xy 83.601447 117.435168) (xy 83.635215 117.449155) (xy 83.757606 117.4735) (xy 83.757607 117.4735) (xy 90.029193 117.4735) (xy 90.029194 117.4735) (xy 90.151585 117.449155) (xy 90.266875 117.4014) (xy 90.370633 117.332071) (xy 91.421504 116.2812) (xy 92.812496 116.2812) (xy 92.832457 116.471127) (xy 92.846765 116.51516) (xy 92.891473 116.652756) (xy 92.891476 116.652761) (xy 92.986958 116.818141) (xy 92.986965 116.818151) (xy 93.114744 116.960064) (xy 93.170571 117.000625) (xy 93.269248 117.072318) (xy 93.443712 117.149994) (xy 93.630513 117.1897) (xy 93.821487 117.1897) (xy 94.008288 117.149994) (xy 94.182752 117.072318) (xy 94.337253 116.960066) (xy 94.337255 116.960064) (xy 94.465034 116.818151) (xy 94.465035 116.818149) (xy 94.46504 116.818144) (xy 94.560527 116.652756) (xy 94.619542 116.471128) (xy 94.639504 116.2812) (xy 94.619542 116.091272) (xy 94.560527 115.909644) (xy 94.46504 115.744256) (xy 94.465038 115.744254) (xy 94.465034 115.744248) (xy 94.337255 115.602335) (xy 94.182752 115.490082) (xy 94.008288 115.412406) (xy 93.821487 115.3727) (xy 93.630513 115.3727) (xy 93.443711 115.412406) (xy 93.269247 115.490082) (xy 93.114744 115.602335) (xy 92.986965 115.744248) (xy 92.986958 115.744258) (xy 92.891476 115.909638) (xy 92.891473 115.909645) (xy 92.832457 116.091272) (xy 92.812496 116.2812) (xy 91.421504 116.2812) (xy 92.996304 114.7064) (xy 100.991296 114.7064) (xy 101.011257 114.896327) (xy 101.041326 114.98887) (xy 101.070273 115.077956) (xy 101.070276 115.077961) (xy 101.165758 115.243341) (xy 101.165765 115.243351) (xy 101.293544 115.385264) (xy 101.293547 115.385266) (xy 101.448048 115.497518) (xy 101.622512 115.575194) (xy 101.809313 115.6149) (xy 102.000287 115.6149) (xy 102.187088 115.575194) (xy 102.361552 115.497518) (xy 102.516053 115.385266) (xy 102.516055 115.385264) (xy 102.643834 115.243351) (xy 102.643835 115.243349) (xy 102.64384 115.243344) (xy 102.739327 115.077956) (xy 102.798342 114.896328) (xy 102.818304 114.7064) (xy 102.798342 114.516472) (xy 102.739327 114.334844) (xy 102.64384 114.169456) (xy 102.643838 114.169454) (xy 102.643834 114.169448) (xy 102.516055 114.027535) (xy 102.361552 113.915282) (xy 102.187088 113.837606) (xy 102.000287 113.7979) (xy 101.809313 113.7979) (xy 101.622511 113.837606) (xy 101.448047 113.915282) (xy 101.293544 114.027535) (xy 101.165765 114.169448) (xy 101.165758 114.169458) (xy 101.072813 114.330444) (xy 101.070273 114.334844) (xy 101.059531 114.367905) (xy 101.011257 114.516472) (xy 100.991296 114.7064) (xy 92.996304 114.7064) (xy 94.878471 112.824233) (xy 94.9478 112.720475) (xy 94.995555 112.605185) (xy 95.0199 112.482794) (xy 95.0199 112.358006) (xy 95.0199 108.153555) (xy 111.3584 108.153555) (xy 111.3584 108.153558) (xy 111.3584 108.311242) (xy 111.389163 108.465897) (xy 111.449506 108.611579) (xy 111.537111 108.742689) (xy 111.648611 108.854189) (xy 111.779721 108.941794) (xy 111.925403 109.002137) (xy 112.080058 109.0329) (xy 112.080059 109.0329) (xy 112.237741 109.0329) (xy 112.237742 109.0329) (xy 112.392397 109.002137) (xy 112.538079 108.941794) (xy 112.669189 108.854189) (xy 112.728748 108.794629) (xy 112.791056 108.760607) (xy 112.861872 108.765671) (xy 112.918708 108.808217) (xy 112.930104 108.82652) (xy 112.994178 108.952271) (xy 113.121253 109.127175) (xy 113.121255 109.127177) (xy 113.121257 109.12718) (xy 113.274122 109.280045) (xy 113.439864 109.400464) (xy 113.483218 109.456687) (xy 113.489293 109.527423) (xy 113.456161 109.590214) (xy 113.439864 109.604336) (xy 113.274122 109.724754) (xy 113.121257 109.877619) (xy 113.121255 109.877622) (xy 112.99418 110.052525) (xy 112.896027 110.24516) (xy 112.829221 110.450767) (xy 112.82922 110.450771) (xy 112.7954 110.664303) (xy 112.7954 110.880497) (xy 112.82922 111.094029) (xy 112.829221 111.094032) (xy 112.875093 111.235212) (xy 112.896028 111.299641) (xy 112.994178 111.492271) (xy 113.121253 111.667175) (xy 113.121255 111.667177) (xy 113.121257 111.66718) (xy 113.205609 111.751532) (xy 113.239635 111.813844) (xy 113.23457 111.884659) (xy 113.192023 111.941495) (xy 113.160547 111.958682) (xy 113.057939 111.996953) (xy 113.057934 111.996955) (xy 112.940995 112.084495) (xy 112.853455 112.201434) (xy 112.853455 112.201435) (xy 112.802405 112.338306) (xy 112.7959 112.398802) (xy 112.7959 113.0584) (xy 113.876649 113.0584) (xy 113.843655 113.115547) (xy 113.8089 113.245257) (xy 113.8089 113.379543) (xy 113.843655 113.509253) (xy 113.876649 113.5664) (xy 112.7959 113.5664) (xy 112.7959 114.225997) (xy 112.802405 114.286493) (xy 112.853455 114.423364) (xy 112.853455 114.423365) (xy 112.940995 114.540304) (xy 113.057934 114.627844) (xy 113.194806 114.678894) (xy 113.255302 114.685399) (xy 113.255315 114.6854) (xy 114.0649 114.6854) (xy 114.0649 113.75465) (xy 114.122047 113.787645) (xy 114.251757 113.8224) (xy 114.386043 113.8224) (xy 114.515753 113.787645) (xy 114.5729 113.75465) (xy 114.5729 114.6854) (xy 115.382485 114.6854) (xy 115.382497 114.685399) (xy 115.442993 114.678894) (xy 115.579864 114.627844) (xy 115.579865 114.627844) (xy 115.696804 114.540304) (xy 115.784344 114.423365) (xy 115.784344 114.423364) (xy 115.835394 114.286493) (xy 115.841899 114.225997) (xy 115.8419 114.225985) (xy 115.8419 113.5664) (xy 114.761151 113.5664) (xy 114.794145 113.509253) (xy 114.8289 113.379543) (xy 114.8289 113.245257) (xy 114.794145 113.115547) (xy 114.761151 113.0584) (xy 115.8419 113.0584) (xy 115.8419 112.398814) (xy 115.841899 112.398802) (xy 115.835394 112.338306) (xy 115.784344 112.201435) (xy 115.784344 112.201434) (xy 115.696804 112.084495) (xy 115.579866 111.996956) (xy 115.477252 111.958683) (xy 115.420417 111.916136) (xy 115.395606 111.849615) (xy 115.410698 111.780241) (xy 115.432187 111.751534) (xy 115.516547 111.667175) (xy 115.643622 111.492271) (xy 115.741772 111.299641) (xy 115.80858 111.094029) (xy 115.8424 110.880497) (xy 115.8424 110.664303) (xy 115.80858 110.450771) (xy 115.741772 110.245159) (xy 115.643622 110.052529) (xy 115.516547 109.877625) (xy 115.516544 109.877622) (xy 115.516542 109.877619) (xy 115.36368 109.724757) (xy 115.363677 109.724755) (xy 115.363676 109.724754) (xy 115.363675 109.724753) (xy 115.197935 109.604336) (xy 115.154581 109.548114) (xy 115.148506 109.477378) (xy 115.181637 109.414586) (xy 115.197935 109.400464) (xy 115.200627 109.398507) (xy 115.363675 109.280047) (xy 115.516547 109.127175) (xy 115.643622 108.952271) (xy 115.741772 108.759641) (xy 115.80858 108.554029) (xy 115.8424 108.340497) (xy 115.8424 108.124303) (xy 115.80858 107.910771) (xy 115.741772 107.705159) (xy 115.643622 107.512529) (xy 115.516547 107.337625) (xy 115.516544 107.337622) (xy 115.516542 107.337619) (xy 115.36368 107.184757) (xy 115.363677 107.184755) (xy 115.363676 107.184754) (xy 115.363675 107.184753) (xy 115.197935 107.064336) (xy 115.154581 107.008114) (xy 115.148506 106.937378) (xy 115.181637 106.874586) (xy 115.197935 106.860464) (xy 115.20293 106.856835) (xy 115.363675 106.740047) (xy 115.516547 106.587175) (xy 115.643622 106.412271) (xy 115.741772 106.219641) (xy 115.80858 106.014029) (xy 115.8424 105.800497) (xy 115.8424 105.584303) (xy 115.80858 105.370771) (xy 115.741772 105.165159) (xy 115.643622 104.972529) (xy 115.516547 104.797625) (xy 115.516544 104.797622) (xy 115.516542 104.797619) (xy 115.36368 104.644757) (xy 115.363677 104.644755) (xy 115.363675 104.644753) (xy 115.188771 104.517678) (xy 114.996141 104.419528) (xy 114.99614 104.419527) (xy 114.996139 104.419527) (xy 114.790532 104.352721) (xy 114.790529 104.35272) (xy 114.576997 104.3189) (xy 114.060803 104.3189) (xy 113.847271 104.35272) (xy 113.847268 104.35272) (xy 113.847267 104.352721) (xy 113.64166 104.419527) (xy 113.449025 104.51768) (xy 113.274122 104.644755) (xy 113.274119 104.644757) (xy 113.121257 104.797619) (xy 113.121255 104.797622) (xy 112.99418 104.972525) (xy 112.896027 105.16516) (xy 112.829221 105.370767) (xy 112.82922 105.370771) (xy 112.7954 105.584303) (xy 112.7954 105.800497) (xy 112.82922 106.014029) (xy 112.829221 106.014032) (xy 112.854257 106.091086) (xy 112.896028 106.219641) (xy 112.994178 106.412271) (xy 113.121253 106.587175) (xy 113.121255 106.587177) (xy 113.121257 106.58718) (xy 113.274122 106.740045) (xy 113.439864 106.860464) (xy 113.483218 106.916687) (xy 113.489293 106.987423) (xy 113.456161 107.050214) (xy 113.439864 107.064336) (xy 113.274122 107.184754) (xy 113.121257 107.337619) (xy 113.121255 107.337622) (xy 112.994179 107.512525) (xy 112.930107 107.638275) (xy 112.881358 107.68989) (xy 112.812443 107.706956) (xy 112.745242 107.684055) (xy 112.728745 107.670167) (xy 112.669191 107.610613) (xy 112.669189 107.610611) (xy 112.538079 107.523006) (xy 112.392397 107.462663) (xy 112.237744 107.4319) (xy 112.237742 107.4319) (xy 112.080058 107.4319) (xy 112.080055 107.4319) (xy 111.925402 107.462663) (xy 111.925397 107.462665) (xy 111.77972 107.523006) (xy 111.648615 107.610608) (xy 111.648608 107.610613) (xy 111.537113 107.722108) (xy 111.537108 107.722115) (xy 111.449506 107.85322) (xy 111.389165 107.998897) (xy 111.389163 107.998902) (xy 111.3584 108.153555) (xy 95.0199 108.153555) (xy 95.0199 101.95) (xy 99.786496 101.95) (xy 99.806457 102.139927) (xy 99.813451 102.161451) (xy 99.865473 102.321556) (xy 99.865476 102.321561) (xy 99.960958 102.486941) (xy 99.960965 102.486951) (xy 100.088744 102.628864) (xy 100.088747 102.628866) (xy 100.243248 102.741118) (xy 100.417712 102.818794) (xy 100.604513 102.8585) (xy 100.795487 102.8585) (xy 100.982288 102.818794) (xy 101.156752 102.741118) (xy 101.311253 102.628866) (xy 101.402936 102.527042) (xy 101.439034 102.486951) (xy 101.439035 102.486949) (xy 101.43904 102.486944) (xy 101.534527 102.321556) (xy 101.593542 102.139928) (xy 101.613504 101.95) (xy 101.593542 101.760072) (xy 101.534527 101.578444) (xy 101.43904 101.413056) (xy 101.439038 101.413054) (xy 101.439034 101.413048) (xy 101.311255 101.271135) (xy 101.156752 101.158882) (xy 100.982288 101.081206) (xy 100.795487 101.0415) (xy 100.604513 101.0415) (xy 100.417711 101.081206) (xy 100.243247 101.158882) (xy 100.088744 101.271135) (xy 99.960965 101.413048) (xy 99.960958 101.413058) (xy 99.889311 101.537155) (xy 99.865473 101.578444) (xy 99.85233 101.618894) (xy 99.806457 101.760072) (xy 99.786496 101.95) (xy 95.0199 101.95) (xy 95.0199 96.853555) (xy 111.3584 96.853555) (xy 111.3584 97.011244) (xy 111.389163 97.165897) (xy 111.449506 97.311579) (xy 111.537111 97.442689) (xy 111.648611 97.554189) (xy 111.779721 97.641794) (xy 111.925403 97.702137) (xy 112.080058 97.7329) (xy 112.080059 97.7329) (xy 112.237741 97.7329) (xy 112.237742 97.7329) (xy 112.392397 97.702137) (xy 112.538079 97.641794) (xy 112.669189 97.554189) (xy 112.728748 97.494629) (xy 112.791056 97.460607) (xy 112.861872 97.465671) (xy 112.918708 97.508217) (xy 112.930104 97.52652) (xy 112.993658 97.651251) (xy 112.99418 97.652274) (xy 113.019924 97.687708) (xy 113.121253 97.827175) (xy 113.121255 97.827177) (xy 113.121257 97.82718) (xy 113.274122 97.980045) (xy 113.439864 98.100464) (xy 113.483218 98.156687) (xy 113.489293 98.227423) (xy 113.456161 98.290214) (xy 113.439864 98.304336) (xy 113.274122 98.424754) (xy 113.121257 98.577619) (xy 113.121255 98.577622) (xy 112.99418 98.752525) (xy 112.896027 98.94516) (xy 112.852574 99.078894) (xy 112.82922 99.150771) (xy 112.7954 99.364303) (xy 112.7954 99.580497) (xy 112.82922 99.794029) (xy 112.829221 99.794032) (xy 112.844136 99.839937) (xy 112.896028 99.999641) (xy 112.994178 100.192271) (xy 113.121253 100.367175) (xy 113.121255 100.367177) (xy 113.121257 100.36718) (xy 113.205609 100.451532) (xy 113.239635 100.513844) (xy 113.23457 100.584659) (xy 113.192023 100.641495) (xy 113.160547 100.658682) (xy 113.057939 100.696953) (xy 113.057934 100.696955) (xy 112.940995 100.784495) (xy 112.853455 100.901434) (xy 112.853455 100.901435) (xy 112.802405 101.038306) (xy 112.7959 101.098802) (xy 112.7959 101.7584) (xy 113.876649 101.7584) (xy 113.843655 101.815547) (xy 113.8089 101.945257) (xy 113.8089 102.079543) (xy 113.843655 102.209253) (xy 113.876649 102.2664) (xy 112.7959 102.2664) (xy 112.7959 102.925997) (xy 112.802405 102.986493) (xy 112.853455 103.123364) (xy 112.853455 103.123365) (xy 112.940995 103.240304) (xy 113.057934 103.327844) (xy 113.194806 103.378894) (xy 113.255302 103.385399) (xy 113.255315 103.3854) (xy 114.0649 103.3854) (xy 114.0649 102.45465) (xy 114.122047 102.487645) (xy 114.251757 102.5224) (xy 114.386043 102.5224) (xy 114.515753 102.487645) (xy 114.5729 102.45465) (xy 114.5729 103.3854) (xy 115.382485 103.3854) (xy 115.382497 103.385399) (xy 115.442993 103.378894) (xy 115.579864 103.327844) (xy 115.579865 103.327844) (xy 115.696804 103.240304) (xy 115.784344 103.123365) (xy 115.784344 103.123364) (xy 115.835394 102.986493) (xy 115.841899 102.925997) (xy 115.8419 102.925985) (xy 115.8419 102.2664) (xy 114.761151 102.2664) (xy 114.794145 102.209253) (xy 114.8289 102.079543) (xy 114.8289 101.945257) (xy 114.794145 101.815547) (xy 114.761151 101.7584) (xy 115.8419 101.7584) (xy 115.8419 101.098814) (xy 115.841899 101.098802) (xy 115.835394 101.038306) (xy 115.784344 100.901435) (xy 115.784344 100.901434) (xy 115.696804 100.784495) (xy 115.579866 100.696956) (xy 115.477252 100.658683) (xy 115.420417 100.616136) (xy 115.395606 100.549615) (xy 115.410698 100.480241) (xy 115.432187 100.451534) (xy 115.516547 100.367175) (xy 115.643622 100.192271) (xy 115.741772 99.999641) (xy 115.80858 99.794029) (xy 115.8424 99.580497) (xy 115.8424 99.364303) (xy 115.80858 99.150771) (xy 115.741772 98.945159) (xy 115.643622 98.752529) (xy 115.516547 98.577625) (xy 115.516544 98.577622) (xy 115.516542 98.577619) (xy 115.36368 98.424757) (xy 115.363677 98.424755) (xy 115.363676 98.424754) (xy 115.363675 98.424753) (xy 115.197935 98.304336) (xy 115.154581 98.248114) (xy 115.148506 98.177378) (xy 115.181637 98.114586) (xy 115.197935 98.100464) (xy 115.200627 98.098507) (xy 115.363675 97.980047) (xy 115.516547 97.827175) (xy 115.643622 97.652271) (xy 115.741772 97.459641) (xy 115.80858 97.254029) (xy 115.8424 97.040497) (xy 115.8424 96.824303) (xy 115.80858 96.610771) (xy 115.741772 96.405159) (xy 115.643622 96.212529) (xy 115.516547 96.037625) (xy 115.516544 96.037622) (xy 115.516542 96.037619) (xy 115.36368 95.884757) (xy 115.363677 95.884755) (xy 115.363676 95.884754) (xy 115.363675 95.884753) (xy 115.197935 95.764336) (xy 115.154581 95.708114) (xy 115.148506 95.637378) (xy 115.181637 95.574586) (xy 115.197935 95.560464) (xy 115.200627 95.558507) (xy 115.363675 95.440047) (xy 115.516547 95.287175) (xy 115.643622 95.112271) (xy 115.741772 94.919641) (xy 115.80858 94.714029) (xy 115.8424 94.500497) (xy 115.8424 94.284303) (xy 115.80858 94.070771) (xy 115.741772 93.865159) (xy 115.643622 93.672529) (xy 115.516547 93.497625) (xy 115.516544 93.497622) (xy 115.516542 93.497619) (xy 115.36368 93.344757) (xy 115.363677 93.344755) (xy 115.363675 93.344753) (xy 115.188771 93.217678) (xy 114.996141 93.119528) (xy 114.99614 93.119527) (xy 114.996139 93.119527) (xy 114.790532 93.052721) (xy 114.790529 93.05272) (xy 114.576997 93.0189) (xy 114.060803 93.0189) (xy 113.847271 93.05272) (xy 113.847268 93.05272) (xy 113.847267 93.052721) (xy 113.64166 93.119527) (xy 113.449025 93.21768) (xy 113.274122 93.344755) (xy 113.274119 93.344757) (xy 113.121257 93.497619) (xy 113.121255 93.497622) (xy 112.99418 93.672525) (xy 112.896027 93.86516) (xy 112.840162 94.037095) (xy 112.82922 94.070771) (xy 112.7954 94.284303) (xy 112.7954 94.500497) (xy 112.82922 94.714029) (xy 112.829221 94.714032) (xy 112.870767 94.841898) (xy 112.896028 94.919641) (xy 112.994178 95.112271) (xy 113.121253 95.287175) (xy 113.121255 95.287177) (xy 113.121257 95.28718) (xy 113.274122 95.440045) (xy 113.439864 95.560464) (xy 113.483218 95.616687) (xy 113.489293 95.687423) (xy 113.456161 95.750214) (xy 113.439864 95.764336) (xy 113.274122 95.884754) (xy 113.121257 96.037619) (xy 113.121255 96.037622) (xy 112.994179 96.212525) (xy 112.930107 96.338275) (xy 112.881358 96.38989) (xy 112.812443 96.406956) (xy 112.745242 96.384055) (xy 112.728745 96.370167) (xy 112.669191 96.310613) (xy 112.669189 96.310611) (xy 112.538079 96.223006) (xy 112.392397 96.162663) (xy 112.383906 96.160974) (xy 112.237744 96.1319) (xy 112.237742 96.1319) (xy 112.080058 96.1319) (xy 112.080055 96.1319) (xy 111.925402 96.162663) (xy 111.925397 96.162665) (xy 111.77972 96.223006) (xy 111.648615 96.310608) (xy 111.648608 96.310613) (xy 111.537113 96.422108) (xy 111.537108 96.422115) (xy 111.449506 96.55322) (xy 111.389165 96.698897) (xy 111.389163 96.698902) (xy 111.3584 96.853555) (xy 95.0199 96.853555) (xy 95.0199 94.954994) (xy 95.039902 94.886873) (xy 95.056805 94.865899) (xy 98.076304 91.8464) (xy 100.635696 91.8464) (xy 100.655657 92.036327) (xy 100.685394 92.127844) (xy 100.714673 92.217956) (xy 100.714676 92.217961) (xy 100.810158 92.383341) (xy 100.810165 92.383351) (xy 100.937944 92.525264) (xy 100.937947 92.525266) (xy 101.092448 92.637518) (xy 101.266912 92.715194) (xy 101.453713 92.7549) (xy 101.644687 92.7549) (xy 101.831488 92.715194) (xy 102.005952 92.637518) (xy 102.160453 92.525266) (xy 102.28824 92.383344) (xy 102.383727 92.217956) (xy 102.442742 92.036328) (xy 102.462704 91.8464) (xy 102.442742 91.656472) (xy 102.383727 91.474844) (xy 102.28824 91.309456) (xy 102.288238 91.309454) (xy 102.288234 91.309448) (xy 102.160455 91.167535) (xy 102.005952 91.055282) (xy 101.831488 90.977606) (xy 101.644687 90.9379) (xy 101.453713 90.9379) (xy 101.266911 90.977606) (xy 101.092447 91.055282) (xy 100.937944 91.167535) (xy 100.810165 91.309448) (xy 100.810158 91.309458) (xy 100.714676 91.474838) (xy 100.714673 91.474845) (xy 100.655657 91.656472) (xy 100.635696 91.8464) (xy 98.076304 91.8464) (xy 98.266232 91.656472) (xy 101.634872 88.287833) (xy 101.704201 88.184075) (xy 101.751955 88.068784) (xy 101.7763 87.946393) (xy 101.7763 87.821606) (xy 101.7763 85.653555) (xy 111.3584 85.653555) (xy 111.3584 85.653558) (xy 111.3584 85.811242) (xy 111.389163 85.965897) (xy 111.449506 86.111579) (xy 111.537111 86.242689) (xy 111.648611 86.354189) (xy 111.779721 86.441794) (xy 111.925403 86.502137) (xy 112.080058 86.5329) (xy 112.080059 86.5329) (xy 112.237741 86.5329) (xy 112.237742 86.5329) (xy 112.392397 86.502137) (xy 112.538079 86.441794) (xy 112.669189 86.354189) (xy 112.728748 86.294629) (xy 112.791056 86.260607) (xy 112.861872 86.265671) (xy 112.918708 86.308217) (xy 112.930104 86.32652) (xy 112.994178 86.452271) (xy 113.121253 86.627175) (xy 113.121255 86.627177) (xy 113.121257 86.62718) (xy 113.274122 86.780045) (xy 113.439864 86.900464) (xy 113.483218 86.956687) (xy 113.489293 87.027423) (xy 113.456161 87.090214) (xy 113.439864 87.104336) (xy 113.274122 87.224754) (xy 113.121257 87.377619) (xy 113.121255 87.377622) (xy 112.99418 87.552525) (xy 112.896027 87.74516) (xy 112.830642 87.946395) (xy 112.82922 87.950771) (xy 112.7954 88.164303) (xy 112.7954 88.380497) (xy 112.82922 88.594029) (xy 112.829221 88.594032) (xy 112.896027 88.799639) (xy 112.99418 88.992274) (xy 113.025597 89.035515) (xy 113.121253 89.167175) (xy 113.121255 89.167177) (xy 113.121257 89.16718) (xy 113.205609 89.251532) (xy 113.239635 89.313844) (xy 113.23457 89.384659) (xy 113.192023 89.441495) (xy 113.160547 89.458682) (xy 113.057939 89.496953) (xy 113.057934 89.496955) (xy 112.940995 89.584495) (xy 112.853455 89.701434) (xy 112.853455 89.701435) (xy 112.802405 89.838306) (xy 112.7959 89.898802) (xy 112.7959 90.5584) (xy 113.876649 90.5584) (xy 113.843655 90.615547) (xy 113.8089 90.745257) (xy 113.8089 90.879543) (xy 113.843655 91.009253) (xy 113.876649 91.0664) (xy 112.7959 91.0664) (xy 112.7959 91.725997) (xy 112.802405 91.786493) (xy 112.853455 91.923364) (xy 112.853455 91.923365) (xy 112.940995 92.040304) (xy 113.057934 92.127844) (xy 113.194806 92.178894) (xy 113.255302 92.185399) (xy 113.255315 92.1854) (xy 114.0649 92.1854) (xy 114.0649 91.25465) (xy 114.122047 91.287645) (xy 114.251757 91.3224) (xy 114.386043 91.3224) (xy 114.515753 91.287645) (xy 114.5729 91.25465) (xy 114.5729 92.1854) (xy 115.382485 92.1854) (xy 115.382497 92.185399) (xy 115.442993 92.178894) (xy 115.579864 92.127844) (xy 115.579865 92.127844) (xy 115.696804 92.040304) (xy 115.784344 91.923365) (xy 115.784344 91.923364) (xy 115.835394 91.786493) (xy 115.841899 91.725997) (xy 115.8419 91.725985) (xy 115.8419 91.0664) (xy 114.761151 91.0664) (xy 114.794145 91.009253) (xy 114.8289 90.879543) (xy 114.8289 90.745257) (xy 114.794145 90.615547) (xy 114.761151 90.5584) (xy 115.8419 90.5584) (xy 115.8419 89.898814) (xy 115.841899 89.898802) (xy 115.835394 89.838306) (xy 115.784344 89.701435) (xy 115.784344 89.701434) (xy 115.696804 89.584495) (xy 115.579866 89.496956) (xy 115.477252 89.458683) (xy 115.420417 89.416136) (xy 115.395606 89.349615) (xy 115.410698 89.280241) (xy 115.432187 89.251534) (xy 115.516547 89.167175) (xy 115.643622 88.992271) (xy 115.741772 88.799641) (xy 115.80858 88.594029) (xy 115.8424 88.380497) (xy 115.8424 88.164303) (xy 115.80858 87.950771) (xy 115.741772 87.745159) (xy 115.643622 87.552529) (xy 115.516547 87.377625) (xy 115.516544 87.377622) (xy 115.516542 87.377619) (xy 115.36368 87.224757) (xy 115.363677 87.224755) (xy 115.363676 87.224754) (xy 115.363675 87.224753) (xy 115.197935 87.104336) (xy 115.154581 87.048114) (xy 115.148506 86.977378) (xy 115.181637 86.914586) (xy 115.197935 86.900464) (xy 115.200627 86.898507) (xy 115.363675 86.780047) (xy 115.516547 86.627175) (xy 115.643622 86.452271) (xy 115.741772 86.259641) (xy 115.80858 86.054029) (xy 115.8424 85.840497) (xy 115.8424 85.624303) (xy 115.80858 85.410771) (xy 115.741772 85.205159) (xy 115.643622 85.012529) (xy 115.516547 84.837625) (xy 115.516544 84.837622) (xy 115.516542 84.837619) (xy 115.36368 84.684757) (xy 115.363677 84.684755) (xy 115.363676 84.684754) (xy 115.363675 84.684753) (xy 115.197935 84.564336) (xy 115.154581 84.508114) (xy 115.148506 84.437378) (xy 115.181637 84.374586) (xy 115.197935 84.360464) (xy 115.200627 84.358507) (xy 115.363675 84.240047) (xy 115.516547 84.087175) (xy 115.643622 83.912271) (xy 115.741772 83.719641) (xy 115.80858 83.514029) (xy 115.8424 83.300497) (xy 115.8424 83.084303) (xy 115.80858 82.870771) (xy 115.741772 82.665159) (xy 115.643622 82.472529) (xy 115.516547 82.297625) (xy 115.516544 82.297622) (xy 115.516542 82.297619) (xy 115.36368 82.144757) (xy 115.363677 82.144755) (xy 115.363675 82.144753) (xy 115.188771 82.017678) (xy 114.996141 81.919528) (xy 114.99614 81.919527) (xy 114.996139 81.919527) (xy 114.790532 81.852721) (xy 114.790529 81.85272) (xy 114.576997 81.8189) (xy 114.060803 81.8189) (xy 113.847271 81.85272) (xy 113.847268 81.85272) (xy 113.847267 81.852721) (xy 113.64166 81.919527) (xy 113.449025 82.01768) (xy 113.274122 82.144755) (xy 113.274119 82.144757) (xy 113.121257 82.297619) (xy 113.121255 82.297622) (xy 112.99418 82.472525) (xy 112.896027 82.66516) (xy 112.862237 82.769156) (xy 112.82922 82.870771) (xy 112.7954 83.084303) (xy 112.7954 83.300497) (xy 112.82922 83.514029) (xy 112.829221 83.514032) (xy 112.89499 83.716448) (xy 112.896028 83.719641) (xy 112.994178 83.912271) (xy 113.121253 84.087175) (xy 113.121255 84.087177) (xy 113.121257 84.08718) (xy 113.274122 84.240045) (xy 113.439864 84.360464) (xy 113.483218 84.416687) (xy 113.489293 84.487423) (xy 113.456161 84.550214) (xy 113.439864 84.564336) (xy 113.274122 84.684754) (xy 113.121257 84.837619) (xy 113.121255 84.837622) (xy 112.994179 85.012525) (xy 112.930107 85.138275) (xy 112.881358 85.18989) (xy 112.812443 85.206956) (xy 112.745242 85.184055) (xy 112.728745 85.170167) (xy 112.669191 85.110613) (xy 112.669189 85.110611) (xy 112.538079 85.023006) (xy 112.392397 84.962663) (xy 112.237744 84.9319) (xy 112.237742 84.9319) (xy 112.080058 84.9319) (xy 112.080055 84.9319) (xy 111.925402 84.962663) (xy 111.925397 84.962665) (xy 111.77972 85.023006) (xy 111.648615 85.110608) (xy 111.648608 85.110613) (xy 111.537113 85.222108) (xy 111.537108 85.222115) (xy 111.449506 85.35322) (xy 111.389165 85.498897) (xy 111.389163 85.498902) (xy 111.3584 85.653555) (xy 101.7763 85.653555) (xy 101.7763 75.438) (xy 106.884096 75.438) (xy 106.904057 75.627927) (xy 106.919691 75.676042) (xy 106.963073 75.809556) (xy 106.963076 75.809561) (xy 107.058558 75.974941) (xy 107.058565 75.974951) (xy 107.186344 76.116864) (xy 107.186347 76.116866) (xy 107.340848 76.229118) (xy 107.515312 76.306794) (xy 107.702113 76.3465) (xy 107.893087 76.3465) (xy 108.079888 76.306794) (xy 108.254352 76.229118) (xy 108.408853 76.116866) (xy 108.408855 76.116864) (xy 108.536634 75.974951) (xy 108.536635 75.974949) (xy 108.53664 75.974944) (xy 108.632127 75.809556) (xy 108.691142 75.627928) (xy 108.711104 75.438) (xy 108.691142 75.248072) (xy 108.632127 75.066444) (xy 108.53664 74.901056) (xy 108.536638 74.901054) (xy 108.536634 74.901048) (xy 108.408855 74.759135) (xy 108.254352 74.646882) (xy 108.079888 74.569206) (xy 107.893087 74.5295) (xy 107.702113 74.5295) (xy 107.515311 74.569206) (xy 107.340847 74.646882) (xy 107.186344 74.759135) (xy 107.058565 74.901048) (xy 107.058558 74.901058) (xy 106.963076 75.066438) (xy 106.963073 75.066445) (xy 106.904057 75.248072) (xy 106.884096 75.438) (xy 101.7763 75.438) (xy 101.7763 72.3392) (xy 104.293296 72.3392) (xy 104.313257 72.529127) (xy 104.343326 72.62167) (xy 104.372273 72.710756) (xy 104.372276 72.710761) (xy 104.467758 72.876141) (xy 104.467765 72.876151) (xy 104.595544 73.018064) (xy 104.648309 73.0564) (xy 104.750048 73.130318) (xy 104.924512 73.207994) (xy 105.111313 73.2477) (xy 105.302287 73.2477) (xy 105.489088 73.207994) (xy 105.663552 73.130318) (xy 105.818053 73.018066) (xy 105.835206 72.999016) (xy 105.945834 72.876151) (xy 105.945835 72.876149) (xy 105.94584 72.876144) (xy 106.041327 72.710756) (xy 106.100342 72.529128) (xy 106.120304 72.3392) (xy 106.100342 72.149272) (xy 106.041327 71.967644) (xy 105.94584 71.802256) (xy 105.945838 71.802254) (xy 105.945834 71.802248) (xy 105.818055 71.660335) (xy 105.663552 71.548082) (xy 105.489088 71.470406) (xy 105.302287 71.4307) (xy 105.111313 71.4307) (xy 104.924511 71.470406) (xy 104.750047 71.548082) (xy 104.595544 71.660335) (xy 104.467765 71.802248) (xy 104.467758 71.802258) (xy 104.372276 71.967638) (xy 104.372273 71.967645) (xy 104.313257 72.149272) (xy 104.293296 72.3392) (xy 101.7763 72.3392) (xy 101.7763 66.691724) (xy 101.796302 66.623603) (xy 101.808658 66.60742) (xy 101.88184 66.526144) (xy 101.977327 66.360756) (xy 102.036342 66.179128) (xy 102.056304 65.9892) (xy 102.036342 65.799272) (xy 101.977327 65.617644) (xy 101.88184 65.452256) (xy 101.881838 65.452254) (xy 101.881834 65.452248) (xy 101.754055 65.310335) (xy 101.599552 65.198082) (xy 101.425088 65.120406) (xy 101.238287 65.0807) (xy 101.047313 65.0807) (xy 100.860511 65.120406) (xy 100.686047 65.198082) (xy 100.531544 65.310335) (xy 100.403765 65.452248) (xy 100.403758 65.452258) (xy 100.308276 65.617638) (xy 100.308273 65.617645) (xy 100.249257 65.799272) (xy 100.229296 65.9892) (xy 100.249257 66.179127) (xy 100.279326 66.27167) (xy 100.308273 66.360756) (xy 100.308276 66.360761) (xy 100.400391 66.52031) (xy 100.40376 66.526144) (xy 100.476937 66.607415) (xy 100.507653 66.67142) (xy 100.5093 66.691724) (xy 100.5093 81.221435) (xy 100.489298 81.289556) (xy 100.435642 81.336049) (xy 100.365368 81.346153) (xy 100.332052 81.336542) (xy 100.30749 81.325606) (xy 100.120687 81.2859) (xy 100.029439 81.2859) (xy 99.961318 81.265898) (xy 99.940348 81.248999) (xy 99.535227 80.843878) (xy 99.535225 80.843877) (xy 99.535223 80.843875) (xy 99.396477 80.76377) (xy 99.396474 80.763769) (xy 99.396473 80.763768) (xy 99.396471 80.763767) (xy 99.39647 80.763767) (xy 99.306279 80.739601) (xy 99.241711 80.7223) (xy 99.241709 80.7223) (xy 89.510184 80.7223) (xy 89.442063 80.702298) (xy 89.39557 80.648642) (xy 89.385466 80.578368) (xy 89.41496 80.513788) (xy 89.474686 80.475404) (xy 89.483988 80.473053) (xy 89.484763 80.472888) (xy 89.487088 80.472394) (xy 89.661552 80.394718) (xy 89.816053 80.282466) (xy 89.816055 80.282464) (xy 89.943834 80.140551) (xy 89.943835 80.140549) (xy 89.94384 80.140544) (xy 90.039327 79.975156) (xy 90.098342 79.793528) (xy 90.118304 79.6036) (xy 90.098342 79.413672) (xy 90.039327 79.232044) (xy 89.94384 79.066656) (xy 89.943838 79.066654) (xy 89.943834 79.066648) (xy 89.816055 78.924735) (xy 89.661552 78.812482) (xy 89.487088 78.734806) (xy 89.300287 78.6951) (xy 89.109313 78.6951) (xy 88.922511 78.734806) (xy 88.748047 78.812482) (xy 88.593544 78.924735) (xy 88.465765 79.066648) (xy 88.465758 79.066658) (xy 88.370276 79.232038) (xy 88.370273 79.232045) (xy 88.311257 79.413672) (xy 88.291296 79.6036) (xy 88.311257 79.793527) (xy 88.341326 79.88607) (xy 88.370273 79.975156) (xy 88.370276 79.975161) (xy 88.465758 80.140541) (xy 88.465765 80.140551) (xy 88.593544 80.282464) (xy 88.593547 80.282466) (xy 88.748048 80.394718) (xy 88.922512 80.472394) (xy 88.925612 80.473053) (xy 88.927234 80.473928) (xy 88.928792 80.474435) (xy 88.928699 80.474719) (xy 88.988086 80.506781) (xy 89.022408 80.568931) (xy 89.01768 80.63977) (xy 88.975405 80.696807) (xy 88.909003 80.721935) (xy 88.899416 80.7223) (xy 88.260908 80.7223) (xy 88.192787 80.702298) (xy 88.146294 80.648642) (xy 88.135598 80.583132) (xy 88.136098 80.578368) (xy 88.137104 80.5688) (xy 88.117142 80.378872) (xy 88.058127 80.197244) (xy 87.96264 80.031856) (xy 87.962638 80.031854) (xy 87.962634 80.031848) (xy 87.834855 79.889935) (xy 87.680352 79.777682) (xy 87.505888 79.700006) (xy 87.319087 79.6603) (xy 87.128113 79.6603) (xy 86.941311 79.700006) (xy 86.766847 79.777682) (xy 86.612344 79.889935) (xy 86.484565 80.031848) (xy 86.484558 80.031858) (xy 86.389076 80.197238) (xy 86.389073 80.197245) (xy 86.330057 80.378872) (xy 86.310096 80.5688) (xy 86.330057 80.758727) (xy 86.331696 80.76377) (xy 86.389073 80.940356) (xy 86.389076 80.940361) (xy 86.484558 81.105741) (xy 86.484565 81.105751) (xy 86.612344 81.247664) (xy 86.612347 81.247666) (xy 86.766848 81.359918) (xy 86.932523 81.43368) (xy 86.986618 81.47966) (xy 87.007268 81.547587) (xy 86.987916 81.615895) (xy 86.970369 81.637882) (xy 86.127995 82.480256) (xy 86.065683 82.514282) (xy 85.994868 82.509217) (xy 85.938032 82.46667) (xy 85.913221 82.40015) (xy 85.9129 82.391161) (xy 85.9129 79.479839) (xy 85.932902 79.411718) (xy 85.949805 79.390744) (xy 87.725144 77.615405) (xy 87.787456 77.581379) (xy 87.814239 77.5785) (xy 92.56011 77.5785) (xy 92.560111 77.5785) (xy 92.637491 77.557766) (xy 92.714873 77.537032) (xy 92.853627 77.456922) (xy 96.576922 73.733627) (xy 96.657032 73.594873) (xy 96.6985 73.44011) (xy 96.6985 73.27989) (xy 96.6985 65.194239) (xy 96.718502 65.126118) (xy 96.735405 65.105144) (xy 99.508949 62.3316) (xy 106.934896 62.3316) (xy 106.954857 62.521527) (xy 106.984926 62.61407) (xy 107.013873 62.703156) (xy 107.013876 62.703161) (xy 107.109358 62.868541) (xy 107.109365 62.868551) (xy 107.237144 63.010464) (xy 107.237147 63.010466) (xy 107.391648 63.122718) (xy 107.566112 63.200394) (xy 107.752913 63.2401) (xy 107.943887 63.2401) (xy 108.130688 63.200394) (xy 108.305152 63.122718) (xy 108.459653 63.010466) (xy 108.58744 62.868544) (xy 108.682927 62.703156) (xy 108.741942 62.521528) (xy 108.761904 62.3316) (xy 108.741942 62.141672) (xy 108.682927 61.960044) (xy 108.58744 61.794656) (xy 108.587438 61.794654) (xy 108.587434 61.794648) (xy 108.459655 61.652735) (xy 108.305152 61.540482) (xy 108.130688 61.462806) (xy 107.943887 61.4231) (xy 107.752913 61.4231) (xy 107.566111 61.462806) (xy 107.391647 61.540482) (xy 107.237144 61.652735) (xy 107.109365 61.794648) (xy 107.109358 61.794658) (xy 107.013876 61.960038) (xy 107.013873 61.960045) (xy 106.954857 62.141672) (xy 106.934896 62.3316) (xy 99.508949 62.3316) (xy 101.615144 60.225405) (xy 101.677456 60.191379) (xy 101.704239 60.1885) (xy 101.795487 60.1885) (xy 101.982288 60.148794) (xy 102.156752 60.071118) (xy 102.311253 59.958866) (xy 102.401986 59.858097) (xy 102.439034 59.816951) (xy 102.439035 59.816949) (xy 102.43904 59.816944) (xy 102.534527 59.651556) (xy 102.593542 59.469928) (xy 102.613504 59.28) (xy 102.593542 59.090072) (xy 102.534527 58.908444) (xy 102.43904 58.743056) (xy 102.439038 58.743054) (xy 102.439034 58.743048) (xy 102.311255 58.601135) (xy 102.156752 58.488882) (xy 101.982288 58.411206) (xy 101.795487 58.3715) (xy 101.604513 58.3715) (xy 101.417711 58.411206) (xy 101.243247 58.488882) (xy 101.088744 58.601135) (xy 100.960965 58.743048) (xy 100.960958 58.743058) (xy 100.905162 58.8397) (xy 100.865473 58.908444) (xy 100.857134 58.934108) (xy 100.806457 59.090072) (xy 100.786496 59.28) (xy 100.786496 59.280764) (xy 100.786371 59.281189) (xy 100.785806 59.286566) (xy 100.784822 59.286462) (xy 100.766494 59.348885) (xy 100.749591 59.369859) (xy 95.603083 64.516366) (xy 95.603075 64.516376) (xy 95.52297 64.655122) (xy 95.522968 64.655127) (xy 95.502234 64.732508) (xy 95.502234 64.732509) (xy 95.502233 64.732508) (xy 95.4815 64.809888) (xy 95.4815 73.055761) (xy 95.461498 73.123882) (xy 95.444595 73.144856) (xy 92.264856 76.324595) (xy 92.202544 76.358621) (xy 92.175761 76.3615) (xy 87.429889 76.3615) (xy 87.334147 76.387154) (xy 87.275127 76.402968) (xy 87.275122 76.40297) (xy 87.247186 76.4191) (xy 87.136375 76.483076) (xy 87.136365 76.483084) (xy 84.817483 78.801966) (xy 84.817475 78.801976) (xy 84.737367 78.940727) (xy 84.737368 78.940728) (xy 84.6959 79.09549) (xy 84.6959 88.27057) (xy 84.675898 88.338691) (xy 84.622242 88.385184) (xy 84.551968 88.395288) (xy 84.518651 88.385677) (xy 84.407088 88.336006) (xy 84.220287 88.2963) (xy 84.029313 88.2963) (xy 83.842511 88.336006) (xy 83.668047 88.413682) (xy 83.513544 88.525935) (xy 83.385765 88.667848) (xy 83.385758 88.667858) (xy 83.290276 88.833238) (xy 83.290273 88.833245) (xy 83.231257 89.014872) (xy 83.211296 89.2048) (xy 83.231257 89.394727) (xy 83.248282 89.447122) (xy 83.290273 89.576356) (xy 83.290276 89.576361) (xy 83.385758 89.741741) (xy 83.385765 89.741751) (xy 83.513544 89.883664) (xy 83.513547 89.883666) (xy 83.668048 89.995918) (xy 83.842512 90.073594) (xy 84.029313 90.1133) (xy 84.220287 90.1133) (xy 84.407088 90.073594) (xy 84.518652 90.023922) (xy 84.589017 90.014488) (xy 84.653315 90.044594) (xy 84.691128 90.104682) (xy 84.6959 90.139029) (xy 84.6959 93.004511) (xy 84.699756 93.0189) (xy 84.699757 93.018904) (xy 84.737367 93.15927) (xy 84.73737 93.159277) (xy 84.817475 93.298023) (xy 84.817477 93.298025) (xy 84.817478 93.298027) (xy 85.195857 93.676406) (xy 85.229881 93.738717) (xy 85.224817 93.809532) (xy 85.18227 93.866368) (xy 85.11575 93.891179) (xy 85.106761 93.8915) (xy 84.977431 93.8915) (xy 84.831047 93.915927) (xy 84.755369 93.928555) (xy 84.75536 93.928557) (xy 84.542428 94.001656) (xy 84.542426 94.001658) (xy 84.365222 94.097556) (xy 84.344426 94.10881) (xy 84.344424 94.108811) (xy 84.166759 94.247094) (xy 84.105374 94.313775) (xy 84.044521 94.350346) (xy 83.973557 94.348211) (xy 83.915012 94.308049) (xy 83.894618 94.27247) (xy 83.850443 94.154033) (xy 83.762904 94.037095) (xy 83.645965 93.949555) (xy 83.509093 93.898505) (xy 83.448597 93.892) (xy 82.804 93.892) (xy 82.804 94.807749) (xy 82.746853 94.774755) (xy 82.617143 94.74) (xy 82.482857 94.74) (xy 82.353147 94.774755) (xy 82.296 94.807749) (xy 82.296 93.892) (xy 81.651402 93.892) (xy 81.590906 93.898505) (xy 81.454035 93.949555) (xy 81.454034 93.949555) (xy 81.337095 94.037095) (xy 81.249555 94.154034) (xy 81.249553 94.154039) (xy 81.20538 94.27247) (xy 81.162833 94.329306) (xy 81.096313 94.354116) (xy 81.026939 94.339024) (xy 80.994626 94.313777) (xy 80.93324 94.247094) (xy 80.933239 94.247093) (xy 80.933237 94.247091) (xy 80.813684 94.154039) (xy 80.755576 94.108811) (xy 80.557574 94.001658) (xy 80.557572 94.001657) (xy 80.557571 94.001656) (xy 80.344639 93.928557) (xy 80.34463 93.928555) (xy 80.300476 93.921187) (xy 80.122569 93.8915) (xy 79.897431 93.8915) (xy 79.751047 93.915927) (xy 79.675369 93.928555) (xy 79.67536 93.928557) (xy 79.462428 94.001656) (xy 79.462426 94.001658) (xy 79.285222 94.097556) (xy 79.264426 94.10881) (xy 79.264424 94.108811) (xy 79.086762 94.247091) (xy 78.934279 94.412729) (xy 78.845483 94.548643) (xy 78.791479 94.594731) (xy 78.721131 94.604306) (xy 78.656774 94.574329) (xy 78.634517 94.548643) (xy 78.54572 94.412729) (xy 78.41622 94.272057) (xy 78.39324 94.247094) (xy 78.393239 94.247093) (xy 78.393237 94.247091) (xy 78.273684 94.154039) (xy 78.215576 94.108811) (xy 78.017574 94.001658) (xy 78.017572 94.001657) (xy 78.017571 94.001656) (xy 77.804639 93.928557) (xy 77.80463 93.928555) (xy 77.760476 93.921187) (xy 77.582569 93.8915) (xy 77.357431 93.8915) (xy 77.211047 93.915927) (xy 77.135369 93.928555) (xy 77.13536 93.928557) (xy 76.922428 94.001656) (xy 76.922426 94.001658) (xy 76.745222 94.097556) (xy 76.724426 94.10881) (xy 76.724424 94.108811) (xy 76.546762 94.247091) (xy 76.394279 94.412729) (xy 76.305483 94.548643) (xy 76.251479 94.594731) (xy 76.181131 94.604306) (xy 76.116774 94.574329) (xy 76.094517 94.548643) (xy 76.00572 94.412729) (xy 75.87622 94.272057) (xy 75.85324 94.247094) (xy 75.853239 94.247093) (xy 75.853237 94.247091) (xy 75.733684 94.154039) (xy 75.675576 94.108811) (xy 75.477574 94.001658) (xy 75.477572 94.001657) (xy 75.477571 94.001656) (xy 75.264639 93.928557) (xy 75.26463 93.928555) (xy 75.220476 93.921187) (xy 75.042569 93.8915) (xy 74.817431 93.8915) (xy 74.671047 93.915927) (xy 74.595369 93.928555) (xy 74.59536 93.928557) (xy 74.382428 94.001656) (xy 74.382426 94.001658) (xy 74.205222 94.097556) (xy 74.184426 94.10881) (xy 74.184424 94.108811) (xy 74.006762 94.247091) (xy 73.854279 94.412729) (xy 73.765483 94.548643) (xy 73.711479 94.594731) (xy 73.641131 94.604306) (xy 73.576774 94.574329) (xy 73.554517 94.548643) (xy 73.46572 94.412729) (xy 73.33622 94.272057) (xy 73.31324 94.247094) (xy 73.313239 94.247093) (xy 73.313237 94.247091) (xy 73.193684 94.154039) (xy 73.135576 94.108811) (xy 72.937574 94.001658) (xy 72.937572 94.001657) (xy 72.937571 94.001656) (xy 72.724639 93.928557) (xy 72.72463 93.928555) (xy 72.680476 93.921187) (xy 72.502569 93.8915) (xy 72.277431 93.8915) (xy 72.131047 93.915927) (xy 72.055369 93.928555) (xy 72.05536 93.928557) (xy 71.842428 94.001656) (xy 71.842426 94.001658) (xy 71.665222 94.097556) (xy 71.644426 94.10881) (xy 71.644424 94.108811) (xy 71.466759 94.247094) (xy 71.405374 94.313775) (xy 71.344521 94.350346) (xy 71.273557 94.348211) (xy 71.215012 94.308049) (xy 71.194618 94.27247) (xy 71.150443 94.154033) (xy 71.062904 94.037095) (xy 70.945965 93.949555) (xy 70.809093 93.898505) (xy 70.748597 93.892) (xy 70.104 93.892) (xy 70.104 94.807749) (xy 70.046853 94.774755) (xy 69.917143 94.74) (xy 69.782857 94.74) (xy 69.653147 94.774755) (xy 69.596 94.807749) (xy 69.596 93.892) (xy 68.951402 93.892) (xy 68.890906 93.898505) (xy 68.754035 93.949555) (xy 68.754034 93.949555) (xy 68.637095 94.037095) (xy 68.549555 94.154034) (xy 68.549553 94.154039) (xy 68.50538 94.27247) (xy 68.462833 94.329306) (xy 68.396313 94.354116) (xy 68.326939 94.339024) (xy 68.294626 94.313777) (xy 68.23324 94.247094) (xy 68.233239 94.247093) (xy 68.233237 94.247091) (xy 68.113684 94.154039) (xy 68.055576 94.108811) (xy 67.857574 94.001658) (xy 67.857572 94.001657) (xy 67.857571 94.001656) (xy 67.644639 93.928557) (xy 67.64463 93.928555) (xy 67.600476 93.921187) (xy 67.422569 93.8915) (xy 67.197431 93.8915) (xy 67.051047 93.915927) (xy 66.975369 93.928555) (xy 66.97536 93.928557) (xy 66.762428 94.001656) (xy 66.762426 94.001658) (xy 66.585222 94.097556) (xy 66.564426 94.10881) (xy 66.564424 94.108811) (xy 66.386762 94.247091) (xy 66.234279 94.412729) (xy 66.145483 94.548643) (xy 66.091479 94.594731) (xy 66.021131 94.604306) (xy 65.956774 94.574329) (xy 65.934517 94.548643) (xy 65.84572 94.412729) (xy 65.71622 94.272057) (xy 65.69324 94.247094) (xy 65.693239 94.247093) (xy 65.693237 94.247091) (xy 65.573684 94.154039) (xy 65.515576 94.108811) (xy 65.317574 94.001658) (xy 65.317572 94.001657) (xy 65.317571 94.001656) (xy 65.104639 93.928557) (xy 65.10463 93.928555) (xy 65.060476 93.921187) (xy 64.882569 93.8915) (xy 64.657431 93.8915) (xy 64.511047 93.915927) (xy 64.435369 93.928555) (xy 64.43536 93.928557) (xy 64.222428 94.001656) (xy 64.222426 94.001658) (xy 64.045222 94.097556) (xy 64.024426 94.10881) (xy 64.024424 94.108811) (xy 63.846762 94.247091) (xy 63.694279 94.412729) (xy 63.605483 94.548643) (xy 63.551479 94.594731) (xy 63.481131 94.604306) (xy 63.416774 94.574329) (xy 63.394517 94.548643) (xy 63.30572 94.412729) (xy 63.17622 94.272057) (xy 63.15324 94.247094) (xy 63.153239 94.247093) (xy 63.153237 94.247091) (xy 63.033684 94.154039) (xy 62.975576 94.108811) (xy 62.777574 94.001658) (xy 62.777572 94.001657) (xy 62.777571 94.001656) (xy 62.564639 93.928557) (xy 62.56463 93.928555) (xy 62.520476 93.921187) (xy 62.342569 93.8915) (xy 62.117431 93.8915) (xy 61.971047 93.915927) (xy 61.895369 93.928555) (xy 61.89536 93.928557) (xy 61.682428 94.001656) (xy 61.682426 94.001658) (xy 61.505222 94.097556) (xy 61.484426 94.10881) (xy 61.484424 94.108811) (xy 61.306762 94.247091) (xy 61.154279 94.412729) (xy 61.065483 94.548643) (xy 61.011479 94.594731) (xy 60.941131 94.604306) (xy 60.876774 94.574329) (xy 60.854517 94.548643) (xy 60.76572 94.412729) (xy 60.63622 94.272057) (xy 60.61324 94.247094) (xy 60.613239 94.247093) (xy 60.613237 94.247091) (xy 60.493684 94.154039) (xy 60.435576 94.108811) (xy 60.237574 94.001658) (xy 60.237572 94.001657) (xy 60.237571 94.001656) (xy 60.024639 93.928557) (xy 60.02463 93.928555) (xy 59.980476 93.921187) (xy 59.802569 93.8915) (xy 59.577431 93.8915) (xy 59.431047 93.915927) (xy 59.355369 93.928555) (xy 59.35536 93.928557) (xy 59.142428 94.001656) (xy 59.142426 94.001658) (xy 58.965222 94.097556) (xy 58.944426 94.10881) (xy 58.944424 94.108811) (xy 58.766762 94.247091) (xy 58.705754 94.313363) (xy 58.644901 94.349933) (xy 58.573936 94.347798) (xy 58.515391 94.307636) (xy 58.494999 94.272057) (xy 58.470265 94.205744) (xy 58.450889 94.153796) (xy 58.450888 94.153794) (xy 58.450887 94.153792) (xy 58.363261 94.036738) (xy 58.246207 93.949112) (xy 58.246202 93.94911) (xy 58.109204 93.898011) (xy 58.109196 93.898009) (xy 58.048649 93.8915) (xy 58.048638 93.8915) (xy 58.0045 93.8915) (xy 57.936379 93.871498) (xy 57.889886 93.817842) (xy 57.8785 93.7655) (xy 57.8785 82.0928) (xy 77.115296 82.0928) (xy 77.135257 82.282727) (xy 77.140096 82.297619) (xy 77.194273 82.464356) (xy 77.194276 82.464361) (xy 77.289758 82.629741) (xy 77.289765 82.629751) (xy 77.417544 82.771664) (xy 77.417547 82.771666) (xy 77.572048 82.883918) (xy 77.746512 82.961594) (xy 77.933313 83.0013) (xy 78.124287 83.0013) (xy 78.311088 82.961594) (xy 78.485552 82.883918) (xy 78.640053 82.771666) (xy 78.676362 82.731341) (xy 78.767834 82.629751) (xy 78.767835 82.629749) (xy 78.76784 82.629744) (xy 78.863327 82.464356) (xy 78.922342 82.282728) (xy 78.942304 82.0928) (xy 78.922342 81.902872) (xy 78.863327 81.721244) (xy 78.76784 81.555856) (xy 78.767838 81.555854) (xy 78.767834 81.555848) (xy 78.640055 81.413935) (xy 78.485552 81.301682) (xy 78.311088 81.224006) (xy 78.124287 81.1843) (xy 77.933313 81.1843) (xy 77.746511 81.224006) (xy 77.572047 81.301682) (xy 77.417544 81.413935) (xy 77.289765 81.555848) (xy 77.289758 81.555858) (xy 77.194276 81.721238) (xy 77.194273 81.721245) (xy 77.135257 81.902872) (xy 77.115296 82.0928) (xy 57.8785 82.0928) (xy 57.8785 79.654239) (xy 57.898502 79.586118) (xy 57.915405 79.565144) (xy 65.822799 71.65775) (xy 82.6915 71.65775) (xy 82.6915 73.455049) (xy 82.698009 73.515596) (xy 82.698011 73.515604) (xy 82.74911 73.652602) (xy 82.749112 73.652607) (xy 82.836738 73.769661) (xy 82.953792 73.857287) (xy 82.953794 73.857288) (xy 82.953796 73.857289) (xy 83.0076 73.877357) (xy 83.090795 73.908388) (xy 83.090803 73.90839) (xy 83.15135 73.914899) (xy 83.151355 73.914899) (xy 83.151362 73.9149) (xy 83.151368 73.9149) (xy 84.948632 73.9149) (xy 84.948638 73.9149) (xy 84.948645 73.914899) (xy 84.948649 73.914899) (xy 85.009196 73.90839) (xy 85.009199 73.908389) (xy 85.009201 73.908389) (xy 85.146204 73.857289) (xy 85.216399 73.804742) (xy 85.263261 73.769661) (xy 85.350886 73.652608) (xy 85.350885 73.652608) (xy 85.350889 73.652604) (xy 85.395196 73.533813) (xy 85.437741 73.476981) (xy 85.504262 73.45217) (xy 85.573636 73.467262) (xy 85.605952 73.492512) (xy 85.667097 73.558934) (xy 85.844698 73.697167) (xy 85.844699 73.697168) (xy 86.042628 73.804282) (xy 86.04263 73.804283) (xy 86.255483 73.877355) (xy 86.255492 73.877357) (xy 86.336 73.890791) (xy 86.336 72.987102) (xy 86.397007 73.022325) (xy 86.524174 73.0564) (xy 86.655826 73.0564) (xy 86.782993 73.022325) (xy 86.844 72.987102) (xy 86.844 73.89079) (xy 86.924507 73.877357) (xy 86.924516 73.877355) (xy 87.137369 73.804283) (xy 87.137371 73.804282) (xy 87.3353 73.697168) (xy 87.335301 73.697167) (xy 87.512902 73.558934) (xy 87.665327 73.393355) (xy 87.754217 73.257299) (xy 87.80822 73.21121) (xy 87.878568 73.201635) (xy 87.942925 73.231612) (xy 87.965183 73.257298) (xy 88.054279 73.39367) (xy 88.206762 73.559308) (xy 88.252452 73.59487) (xy 88.384424 73.697589) (xy 88.582426 73.804742) (xy 88.582427 73.804742) (xy 88.582428 73.804743) (xy 88.694227 73.843123) (xy 88.795365 73.877844) (xy 89.017431 73.9149) (xy 89.017435 73.9149) (xy 89.242565 73.9149) (xy 89.242569 73.9149) (xy 89.464635 73.877844) (xy 89.677574 73.804742) (xy 89.875576 73.697589) (xy 90.05324 73.559306) (xy 90.205722 73.393668) (xy 90.205927 73.393355) (xy 90.22399 73.365706) (xy 90.294518 73.257754) (xy 90.34852 73.211668) (xy 90.418868 73.202092) (xy 90.483225 73.232069) (xy 90.50548 73.257753) (xy 90.538607 73.308458) (xy 90.594275 73.393665) (xy 90.594279 73.39367) (xy 90.746762 73.559308) (xy 90.792452 73.59487) (xy 90.924424 73.697589) (xy 91.122426 73.804742) (xy 91.122427 73.804742) (xy 91.122428 73.804743) (xy 91.234227 73.843123) (xy 91.335365 73.877844) (xy 91.557431 73.9149) (xy 91.557435 73.9149) (xy 91.782565 73.9149) (xy 91.782569 73.9149) (xy 92.004635 73.877844) (xy 92.217574 73.804742) (xy 92.415576 73.697589) (xy 92.59324 73.559306) (xy 92.745722 73.393668) (xy 92.745927 73.393355) (xy 92.76399 73.365706) (xy 92.86886 73.205191) (xy 92.959296 72.999016) (xy 93.014564 72.780768) (xy 93.033156 72.5564) (xy 93.014564 72.332032) (xy 92.959296 72.113784) (xy 92.86886 71.907609) (xy 92.86214 71.897324) (xy 92.745724 71.719134) (xy 92.74572 71.719129) (xy 92.62957 71.592959) (xy 92.59324 71.553494) (xy 92.593239 71.553493) (xy 92.593237 71.553491) (xy 92.511382 71.489781) (xy 92.415576 71.415211) (xy 92.217574 71.308058) (xy 92.217572 71.308057) (xy 92.217571 71.308056) (xy 92.004639 71.234957) (xy 92.00463 71.234955) (xy 91.927029 71.222006) (xy 91.782569 71.1979) (xy 91.557431 71.1979) (xy 91.412971 71.222006) (xy 91.335369 71.234955) (xy 91.33536 71.234957) (xy 91.122428 71.308056) (xy 91.122426 71.308058) (xy 90.924426 71.41521) (xy 90.924424 71.415211) (xy 90.746762 71.553491) (xy 90.594279 71.719129) (xy 90.505483 71.855043) (xy 90.451479 71.901131) (xy 90.381131 71.910706) (xy 90.316774 71.880729) (xy 90.294517 71.855043) (xy 90.20572 71.719129) (xy 90.08957 71.592959) (xy 90.05324 71.553494) (xy 90.053239 71.553493) (xy 90.053237 71.553491) (xy 89.971382 71.489781) (xy 89.875576 71.415211) (xy 89.677574 71.308058) (xy 89.677572 71.308057) (xy 89.677571 71.308056) (xy 89.464639 71.234957) (xy 89.46463 71.234955) (xy 89.387029 71.222006) (xy 89.242569 71.1979) (xy 89.017431 71.1979) (xy 88.872971 71.222006) (xy 88.795369 71.234955) (xy 88.79536 71.234957) (xy 88.582428 71.308056) (xy 88.582426 71.308058) (xy 88.384426 71.41521) (xy 88.384424 71.415211) (xy 88.206762 71.553491) (xy 88.054279 71.719129) (xy 87.965183 71.855501) (xy 87.911179 71.901589) (xy 87.840831 71.911164) (xy 87.776474 71.881186) (xy 87.754217 71.8555) (xy 87.665327 71.719444) (xy 87.512902 71.553865) (xy 87.335301 71.415632) (xy 87.3353 71.415631) (xy 87.137371 71.308517) (xy 87.137369 71.308516) (xy 86.924512 71.235443) (xy 86.924501 71.23544) (xy 86.844 71.222006) (xy 86.844 72.125697) (xy 86.782993 72.090475) (xy 86.655826 72.0564) (xy 86.524174 72.0564) (xy 86.397007 72.090475) (xy 86.336 72.125697) (xy 86.336 71.222007) (xy 86.335999 71.222006) (xy 86.255498 71.23544) (xy 86.255487 71.235443) (xy 86.04263 71.308516) (xy 86.042628 71.308517) (xy 85.844699 71.415631) (xy 85.844698 71.415632) (xy 85.667096 71.553865) (xy 85.605951 71.620288) (xy 85.545098 71.656859) (xy 85.474134 71.654724) (xy 85.415588 71.614563) (xy 85.395195 71.578983) (xy 85.350889 71.460196) (xy 85.350887 71.460192) (xy 85.263261 71.343138) (xy 85.146207 71.255512) (xy 85.146202 71.25551) (xy 85.009204 71.204411) (xy 85.009196 71.204409) (xy 84.948649 71.1979) (xy 84.948638 71.1979) (xy 83.151362 71.1979) (xy 83.15135 71.1979) (xy 83.090803 71.204409) (xy 83.090795 71.204411) (xy 82.953797 71.25551) (xy 82.953792 71.255512) (xy 82.836738 71.343138) (xy 82.749112 71.460192) (xy 82.74911 71.460197) (xy 82.698011 71.597195) (xy 82.698009 71.597203) (xy 82.6915 71.65775) (xy 65.822799 71.65775) (xy 69.422747 68.057802) (xy 82.692 68.057802) (xy 82.692 68.7024) (xy 83.619297 68.7024) (xy 83.584075 68.763407) (xy 83.55 68.890574) (xy 83.55 69.022226) (xy 83.584075 69.149393) (xy 83.619297 69.2104) (xy 82.692 69.2104) (xy 82.692 69.854997) (xy 82.698505 69.915493) (xy 82.749555 70.052364) (xy 82.749555 70.052365) (xy 82.837095 70.169304) (xy 82.954034 70.256844) (xy 83.090906 70.307894) (xy 83.151402 70.314399) (xy 83.151415 70.3144) (xy 83.796 70.3144) (xy 83.796 69.387102) (xy 83.857007 69.422325) (xy 83.984174 69.4564) (xy 84.115826 69.4564) (xy 84.242993 69.422325) (xy 84.304 69.387102) (xy 84.304 70.3144) (xy 84.948585 70.3144) (xy 84.948597 70.314399) (xy 85.009093 70.307894) (xy 85.145964 70.256844) (xy 85.145965 70.256844) (xy 85.262904 70.169304) (xy 85.350444 70.052365) (xy 85.394618 69.93393) (xy 85.437165 69.877094) (xy 85.503685 69.852283) (xy 85.573059 69.867374) (xy 85.605372 69.892622) (xy 85.626427 69.915493) (xy 85.666762 69.959308) (xy 85.721331 70.001781) (xy 85.844424 70.097589) (xy 86.042426 70.204742) (xy 86.042427 70.204742) (xy 86.042428 70.204743) (xy 86.105895 70.226531) (xy 86.255365 70.277844) (xy 86.477431 70.3149) (xy 86.477435 70.3149) (xy 86.702565 70.3149) (xy 86.702569 70.3149) (xy 86.924635 70.277844) (xy 87.137574 70.204742) (xy 87.335576 70.097589) (xy 87.51324 69.959306) (xy 87.665722 69.793668) (xy 87.754518 69.657754) (xy 87.80852 69.611668) (xy 87.878868 69.602092) (xy 87.943225 69.632069) (xy 87.96548 69.657753) (xy 87.998607 69.708458) (xy 88.054275 69.793665) (xy 88.054279 69.79367) (xy 88.206762 69.959308) (xy 88.261331 70.001781) (xy 88.384424 70.097589) (xy 88.582426 70.204742) (xy 88.582427 70.204742) (xy 88.582428 70.204743) (xy 88.645895 70.226531) (xy 88.795365 70.277844) (xy 89.017431 70.3149) (xy 89.017435 70.3149) (xy 89.242565 70.3149) (xy 89.242569 70.3149) (xy 89.464635 70.277844) (xy 89.677574 70.204742) (xy 89.875576 70.097589) (xy 90.05324 69.959306) (xy 90.205722 69.793668) (xy 90.294518 69.657754) (xy 90.34852 69.611668) (xy 90.418868 69.602092) (xy 90.483225 69.632069) (xy 90.50548 69.657753) (xy 90.538607 69.708458) (xy 90.594275 69.793665) (xy 90.594279 69.79367) (xy 90.746762 69.959308) (xy 90.801331 70.001781) (xy 90.924424 70.097589) (xy 91.122426 70.204742) (xy 91.122427 70.204742) (xy 91.122428 70.204743) (xy 91.185895 70.226531) (xy 91.335365 70.277844) (xy 91.557431 70.3149) (xy 91.557435 70.3149) (xy 91.782565 70.3149) (xy 91.782569 70.3149) (xy 92.004635 70.277844) (xy 92.217574 70.204742) (xy 92.415576 70.097589) (xy 92.59324 69.959306) (xy 92.745722 69.793668) (xy 92.86886 69.605191) (xy 92.959296 69.399016) (xy 93.014564 69.180768) (xy 93.033156 68.9564) (xy 93.014564 68.732032) (xy 92.993637 68.649393) (xy 92.959297 68.513787) (xy 92.959296 68.513786) (xy 92.959296 68.513784) (xy 92.86886 68.307609) (xy 92.86214 68.297324) (xy 92.745724 68.119134) (xy 92.74572 68.119129) (xy 92.593237 67.953491) (xy 92.473679 67.860435) (xy 92.415576 67.815211) (xy 92.217574 67.708058) (xy 92.217572 67.708057) (xy 92.217571 67.708056) (xy 92.004639 67.634957) (xy 92.00463 67.634955) (xy 91.960476 67.627587) (xy 91.782569 67.5979) (xy 91.557431 67.5979) (xy 91.409211 67.622633) (xy 91.335369 67.634955) (xy 91.33536 67.634957) (xy 91.122428 67.708056) (xy 91.122426 67.708058) (xy 90.924426 67.81521) (xy 90.924424 67.815211) (xy 90.746762 67.953491) (xy 90.594279 68.119129) (xy 90.505483 68.255043) (xy 90.451479 68.301131) (xy 90.381131 68.310706) (xy 90.316774 68.280729) (xy 90.294517 68.255043) (xy 90.20572 68.119129) (xy 90.053237 67.953491) (xy 89.933679 67.860435) (xy 89.875576 67.815211) (xy 89.677574 67.708058) (xy 89.677572 67.708057) (xy 89.677571 67.708056) (xy 89.464639 67.634957) (xy 89.46463 67.634955) (xy 89.420476 67.627587) (xy 89.242569 67.5979) (xy 89.017431 67.5979) (xy 88.869211 67.622633) (xy 88.795369 67.634955) (xy 88.79536 67.634957) (xy 88.582428 67.708056) (xy 88.582426 67.708058) (xy 88.384426 67.81521) (xy 88.384424 67.815211) (xy 88.206762 67.953491) (xy 88.054279 68.119129) (xy 87.965483 68.255043) (xy 87.911479 68.301131) (xy 87.841131 68.310706) (xy 87.776774 68.280729) (xy 87.754517 68.255043) (xy 87.66572 68.119129) (xy 87.513237 67.953491) (xy 87.393679 67.860435) (xy 87.335576 67.815211) (xy 87.137574 67.708058) (xy 87.137572 67.708057) (xy 87.137571 67.708056) (xy 86.924639 67.634957) (xy 86.92463 67.634955) (xy 86.880476 67.627587) (xy 86.702569 67.5979) (xy 86.477431 67.5979) (xy 86.329211 67.622633) (xy 86.255369 67.634955) (xy 86.25536 67.634957) (xy 86.042428 67.708056) (xy 86.042426 67.708058) (xy 85.844426 67.81521) (xy 85.844424 67.815211) (xy 85.666759 67.953494) (xy 85.605374 68.020175) (xy 85.544521 68.056746) (xy 85.473557 68.054611) (xy 85.415012 68.014449) (xy 85.394618 67.97887) (xy 85.350443 67.860433) (xy 85.262904 67.743495) (xy 85.145965 67.655955) (xy 85.009093 67.604905) (xy 84.948597 67.5984) (xy 84.304 67.5984) (xy 84.304 68.525697) (xy 84.242993 68.490475) (xy 84.115826 68.4564) (xy 83.984174 68.4564) (xy 83.857007 68.490475) (xy 83.796 68.525697) (xy 83.796 67.5984) (xy 83.151402 67.5984) (xy 83.090906 67.604905) (xy 82.954035 67.655955) (xy 82.954034 67.655955) (xy 82.837095 67.743495) (xy 82.749555 67.860434) (xy 82.749555 67.860435) (xy 82.698505 67.997306) (xy 82.692 68.057802) (xy 69.422747 68.057802) (xy 78.138646 59.341903) (xy 79.8557 59.341903) (xy 79.8557 59.858097) (xy 79.88952 60.071629) (xy 79.956328 60.277241) (xy 80.054478 60.469871) (xy 80.181553 60.644775) (xy 80.181555 60.644777) (xy 80.181557 60.64478) (xy 80.334419 60.797642) (xy 80.334422 60.797644) (xy 80.334425 60.797647) (xy 80.509329 60.924722) (xy 80.701959 61.022872) (xy 80.907571 61.08968) (xy 81.121103 61.1235) (xy 81.121106 61.1235) (xy 81.337294 61.1235) (xy 81.337297 61.1235) (xy 81.550829 61.08968) (xy 81.756441 61.022872) (xy 81.949071 60.924722) (xy 82.123975 60.797647) (xy 82.276847 60.644775) (xy 82.397264 60.479035) (xy 82.453486 60.435681) (xy 82.524222 60.429606) (xy 82.587014 60.462737) (xy 82.601136 60.479035) (xy 82.721553 60.644775) (xy 82.721555 60.644777) (xy 82.721557 60.64478) (xy 82.874419 60.797642) (xy 82.874422 60.797644) (xy 82.874425 60.797647) (xy 83.049329 60.924722) (xy 83.175076 60.988793) (xy 83.22669 61.03754) (xy 83.243756 61.106455) (xy 83.220855 61.173657) (xy 83.206968 61.190154) (xy 83.147409 61.249713) (xy 83.147408 61.249715) (xy 83.059806 61.38082) (xy 82.999465 61.526497) (xy 82.999463 61.526502) (xy 82.9687 61.681155) (xy 82.9687 61.838844) (xy 82.992809 61.960044) (xy 82.999463 61.993497) (xy 83.059806 62.139179) (xy 83.147411 62.270289) (xy 83.258911 62.381789) (xy 83.390021 62.469394) (xy 83.535703 62.529737) (xy 83.690358 62.5605) (xy 83.690359 62.5605) (xy 83.848041 62.5605) (xy 83.848042 62.5605) (xy 84.002697 62.529737) (xy 84.148379 62.469394) (xy 84.279489 62.381789) (xy 84.390989 62.270289) (xy 84.478594 62.139179) (xy 84.538937 61.993497) (xy 84.5697 61.838842) (xy 84.5697 61.681158) (xy 84.538937 61.526503) (xy 84.478594 61.380821) (xy 84.390989 61.249711) (xy 84.331432 61.190154) (xy 84.297406 61.127842) (xy 84.302471 61.057027) (xy 84.345018 61.000191) (xy 84.363317 60.988796) (xy 84.489071 60.924722) (xy 84.663975 60.797647) (xy 84.816847 60.644775) (xy 84.937264 60.479035) (xy 84.993486 60.435681) (xy 85.064222 60.429606) (xy 85.127014 60.462737) (xy 85.141136 60.479035) (xy 85.261553 60.644775) (xy 85.261555 60.644777) (xy 85.261557 60.64478) (xy 85.414419 60.797642) (xy 85.414422 60.797644) (xy 85.414425 60.797647) (xy 85.589329 60.924722) (xy 85.781959 61.022872) (xy 85.987571 61.08968) (xy 86.201103 61.1235) (xy 86.201106 61.1235) (xy 86.417294 61.1235) (xy 86.417297 61.1235) (xy 86.630829 61.08968) (xy 86.836441 61.022872) (xy 87.029071 60.924722) (xy 87.203975 60.797647) (xy 87.288333 60.713288) (xy 87.350643 60.679265) (xy 87.421459 60.684329) (xy 87.478295 60.726875) (xy 87.495483 60.758352) (xy 87.533756 60.860966) (xy 87.621295 60.977904) (xy 87.738234 61.065444) (xy 87.875106 61.116494) (xy 87.935602 61.122999) (xy 87.935615 61.123) (xy 88.5952 61.123) (xy 88.5952 60.04225) (xy 88.652347 60.075245) (xy 88.782057 60.11) (xy 88.916343 60.11) (xy 89.046053 60.075245) (xy 89.1032 60.04225) (xy 89.1032 61.123) (xy 89.762785 61.123) (xy 89.762797 61.122999) (xy 89.823293 61.116494) (xy 89.960164 61.065444) (xy 89.960165 61.065444) (xy 90.077104 60.977904) (xy 90.164644 60.860965) (xy 90.164644 60.860964) (xy 90.215694 60.724093) (xy 90.222199 60.663597) (xy 90.2222 60.663585) (xy 90.2222 59.854) (xy 89.291451 59.854) (xy 89.324445 59.796853) (xy 89.3592 59.667143) (xy 89.3592 59.532857) (xy 89.324445 59.403147) (xy 89.291451 59.346) (xy 90.2222 59.346) (xy 90.2222 58.536414) (xy 90.222199 58.536402) (xy 90.215694 58.475906) (xy 90.164644 58.339035) (xy 90.164644 58.339034) (xy 90.077104 58.222095) (xy 89.960165 58.134555) (xy 89.823293 58.083505) (xy 89.762797 58.077) (xy 89.1032 58.077) (xy 89.1032 59.157749) (xy 89.046053 59.124755) (xy 88.916343 59.09) (xy 88.782057 59.09) (xy 88.652347 59.124755) (xy 88.5952 59.157749) (xy 88.5952 58.077) (xy 87.935602 58.077) (xy 87.875106 58.083505) (xy 87.738235 58.134555) (xy 87.738234 58.134555) (xy 87.621295 58.222095) (xy 87.533755 58.339034) (xy 87.533753 58.339039) (xy 87.495482 58.441647) (xy 87.452935 58.498483) (xy 87.386415 58.523293) (xy 87.317041 58.508201) (xy 87.288332 58.486709) (xy 87.20398 58.402357) (xy 87.203977 58.402355) (xy 87.203975 58.402353) (xy 87.029071 58.275278) (xy 86.836441 58.177128) (xy 86.83644 58.177127) (xy 86.836439 58.177127) (xy 86.630832 58.110321) (xy 86.630829 58.11032) (xy 86.417297 58.0765) (xy 86.201103 58.0765) (xy 85.987571 58.11032) (xy 85.987568 58.11032) (xy 85.987567 58.110321) (xy 85.78196 58.177127) (xy 85.589325 58.27528) (xy 85.414422 58.402355) (xy 85.414419 58.402357) (xy 85.261554 58.555222) (xy 85.141136 58.720964) (xy 85.084913 58.764318) (xy 85.014177 58.770393) (xy 84.951386 58.737261) (xy 84.937264 58.720964) (xy 84.816845 58.555222) (xy 84.66398 58.402357) (xy 84.663977 58.402355) (xy 84.663975 58.402353) (xy 84.489071 58.275278) (xy 84.296441 58.177128) (xy 84.29644 58.177127) (xy 84.296439 58.177127) (xy 84.090832 58.110321) (xy 84.090829 58.11032) (xy 83.877297 58.0765) (xy 83.661103 58.0765) (xy 83.447571 58.11032) (xy 83.447568 58.11032) (xy 83.447567 58.110321) (xy 83.24196 58.177127) (xy 83.049325 58.27528) (xy 82.874422 58.402355) (xy 82.874419 58.402357) (xy 82.721554 58.555222) (xy 82.601136 58.720964) (xy 82.544913 58.764318) (xy 82.474177 58.770393) (xy 82.411386 58.737261) (xy 82.397264 58.720964) (xy 82.276845 58.555222) (xy 82.12398 58.402357) (xy 82.123977 58.402355) (xy 82.123975 58.402353) (xy 81.949071 58.275278) (xy 81.756441 58.177128) (xy 81.75644 58.177127) (xy 81.756439 58.177127) (xy 81.550832 58.110321) (xy 81.550829 58.11032) (xy 81.337297 58.0765) (xy 81.121103 58.0765) (xy 80.907571 58.11032) (xy 80.907568 58.11032) (xy 80.907567 58.110321) (xy 80.70196 58.177127) (xy 80.509325 58.27528) (xy 80.334422 58.402355) (xy 80.334419 58.402357) (xy 80.181557 58.555219) (xy 80.181555 58.555222) (xy 80.05448 58.730125) (xy 79.956327 58.92276) (xy 79.901964 59.090072) (xy 79.88952 59.128371) (xy 79.8557 59.341903) (xy 78.138646 59.341903) (xy 80.525144 56.955405) (xy 80.587456 56.921379) (xy 80.614239 56.9185) (xy 106.430761 56.9185) (xy 106.498882 56.938502) (xy 106.519856 56.955405) (xy 114.674595 65.110144) (xy 114.708621 65.172456) (xy 114.7115 65.199239) (xy 114.7115 67.065759) (xy 114.691498 67.13388) (xy 114.674595 67.154855) (xy 114.423738 67.405711) (xy 114.361426 67.439736) (xy 114.29061 67.434671) (xy 114.233775 67.392124) (xy 114.227402 67.382761) (xy 114.209631 67.35395) (xy 114.20963 67.353948) (xy 114.209627 67.353945) (xy 114.209624 67.353941) (xy 114.084258 67.228575) (xy 114.084252 67.22857) (xy 113.939442 67.13925) (xy 113.891965 67.086465) (xy 113.880562 67.01639) (xy 113.908855 66.951274) (xy 113.916484 66.942925) (xy 114.046806 66.812604) (xy 114.172494 66.639609) (xy 114.269572 66.449083) (xy 114.335649 66.245716) (xy 114.3691 66.034516) (xy 114.3691 65.820684) (xy 114.335649 65.609484) (xy 114.269572 65.406117) (xy 114.172494 65.215591) (xy 114.046806 65.042596) (xy 114.046803 65.042593) (xy 114.046801 65.04259) (xy 113.895609 64.891398) (xy 113.895606 64.891396) (xy 113.895604 64.891394) (xy 113.722609 64.765706) (xy 113.532083 64.668628) (xy 113.53208 64.668627) (xy 113.532078 64.668626) (xy 113.32872 64.602552) (xy 113.328723 64.602552) (xy 113.289401 64.596324) (xy 113.117516 64.5691) (xy 112.603684 64.5691) (xy 112.392484 64.602551) (xy 112.392478 64.602552) (xy 112.189121 64.668626) (xy 112.189115 64.668629) (xy 111.998587 64.765708) (xy 111.825593 64.891396) (xy 111.82559 64.891398) (xy 111.674398 65.04259) (xy 111.674396 65.042593) (xy 111.548708 65.215587) (xy 111.451629 65.406115) (xy 111.451626 65.406121) (xy 111.385552 65.609478) (xy 111.385551 65.609483) (xy 111.385551 65.609484) (xy 111.3521 65.820684) (xy 111.3521 66.034516) (xy 111.385551 66.245716) (xy 111.385552 66.245721) (xy 111.439314 66.411185) (xy 111.451628 66.449083) (xy 111.548706 66.639609) (xy 111.674394 66.812604) (xy 111.674396 66.812606) (xy 111.674398 66.812609) (xy 111.804704 66.942915) (xy 111.83873 67.005227) (xy 111.833665 67.076042) (xy 111.791118 67.132878) (xy 111.781756 67.139251) (xy 111.636947 67.22857) (xy 111.636941 67.228575) (xy 111.511575 67.353941) (xy 111.51157 67.353947) (xy 111.418485 67.504862) (xy 111.362713 67.673172) (xy 111.362712 67.673179) (xy 111.3521 67.777046) (xy 111.3521 69.078144) (xy 111.362712 69.182025) (xy 111.418485 69.350338) (xy 111.51157 69.501252) (xy 111.511575 69.501258) (xy 111.636941 69.626624) (xy 111.636947 69.626629) (xy 111.636948 69.62663) (xy 111.787862 69.719715) (xy 111.956174 69.775487) (xy 112.060055 69.7861) (xy 113.661144 69.786099) (xy 113.765026 69.775487) (xy 113.933338 69.719715) (xy 114.084252 69.62663) (xy 114.10879 69.602092) (xy 114.181072 69.529811) (xy 114.243384 69.495785) (xy 114.314199 69.50085) (xy 114.359262 69.529811) (xy 114.614595 69.785144) (xy 114.648621 69.847456) (xy 114.6515 69.874239) (xy 114.6515 75.005759) (xy 114.631498 75.07388) (xy 114.614595 75.094855) (xy 114.375151 75.334298) (xy 114.312839 75.368323) (xy 114.242023 75.363258) (xy 114.185188 75.320711) (xy 114.160377 75.25419) (xy 114.173789 75.188001) (xy 114.244572 75.049083) (xy 114.310649 74.845716) (xy 114.3441 74.634516) (xy 114.3441 74.420684) (xy 114.310649 74.209484) (xy 114.244572 74.006117) (xy 114.147494 73.815591) (xy 114.021806 73.642596) (xy 114.021803 73.642593) (xy 114.021801 73.64259) (xy 113.870609 73.491398) (xy 113.870606 73.491396) (xy 113.870604 73.491394) (xy 113.697609 73.365706) (xy 113.507083 73.268628) (xy 113.50708 73.268627) (xy 113.507078 73.268626) (xy 113.30372 73.202552) (xy 113.303723 73.202552) (xy 113.264401 73.196324) (xy 113.092516 73.1691) (xy 112.578684 73.1691) (xy 112.370382 73.202092) (xy 112.367478 73.202552) (xy 112.164121 73.268626) (xy 112.164115 73.268629) (xy 111.973587 73.365708) (xy 111.800593 73.491396) (xy 111.80059 73.491398) (xy 111.649398 73.64259) (xy 111.649396 73.642593) (xy 111.523708 73.815587) (xy 111.426629 74.006115) (xy 111.426626 74.006121) (xy 111.360552 74.209478) (xy 111.360551 74.209483) (xy 111.360551 74.209484) (xy 111.3271 74.420684) (xy 111.3271 74.634516) (xy 111.329059 74.646882) (xy 111.360552 74.845721) (xy 111.378532 74.901058) (xy 111.426628 75.049083) (xy 111.523706 75.239609) (xy 111.649394 75.412604) (xy 111.649396 75.412606) (xy 111.649398 75.412609) (xy 111.779704 75.542915) (xy 111.81373 75.605227) (xy 111.808665 75.676042) (xy 111.766118 75.732878) (xy 111.756756 75.739251) (xy 111.611947 75.82857) (xy 111.611941 75.828575) (xy 111.486575 75.953941) (xy 111.48657 75.953947) (xy 111.393485 76.104862) (xy 111.337713 76.273172) (xy 111.337712 76.273179) (xy 111.3271 76.377046) (xy 111.3271 77.678144) (xy 111.337712 77.782025) (xy 111.393485 77.950338) (xy 111.48657 78.101252) (xy 111.486575 78.101258) (xy 111.611941 78.226624) (xy 111.611947 78.226629) (xy 111.611948 78.22663) (xy 111.762862 78.319715) (xy 111.931174 78.375487) (xy 112.035055 78.3861) (xy 113.636144 78.386099) (xy 113.740026 78.375487) (xy 113.908338 78.319715) (xy 114.059252 78.22663) (xy 114.18463 78.101252) (xy 114.277715 77.950338) (xy 114.333487 77.782026) (xy 114.3441 77.678145) (xy 114.344099 77.138637) (xy 114.364101 77.070517) (xy 114.380995 77.049552) (xy 115.746921 75.683628) (xy 115.827032 75.544873) (xy 115.8685 75.39011) (xy 115.8685 75.22989) (xy 115.8685 69.489889) (xy 115.827032 69.335128) (xy 115.778212 69.250569) (xy 115.766244 69.229839) (xy 115.746924 69.196376) (xy 115.746916 69.196366) (xy 115.139644 68.589094) (xy 115.105618 68.526782) (xy 115.110683 68.455967) (xy 115.13964 68.410908) (xy 115.806921 67.743628) (xy 115.887032 67.604873) (xy 115.907766 67.527491) (xy 115.9285 67.450111) (xy 115.9285 64.814889) (xy 115.887032 64.660128) (xy 115.806921 64.521372) (xy 115.693628 64.408079) (xy 111.434342 60.148793) (xy 107.108633 55.823083) (xy 107.108623 55.823075) (xy 106.969877 55.74297) (xy 106.969874 55.742969) (xy 106.969873 55.742968) (xy 106.969871 55.742967) (xy 106.96987 55.742967) (xy 106.892491 55.722234) (xy 106.815111 55.7015) (xy 80.229889 55.7015) (xy 80.146955 55.723722) (xy 80.07513 55.742967) (xy 80.075123 55.74297) (xy 79.97452 55.801054) (xy 79.944523 55.818373) (xy 79.940447 55.820726) (xy 79.936373 55.823078) (xy 79.936365 55.823084) (xy 56.783083 78.976366) (xy 56.783075 78.976376) (xy 56.702967 79.115127) (xy 56.702968 79.115128) (xy 56.6615 79.26989) (xy 56.6615 93.7655) (xy 56.641498 93.833621) (xy 56.587842 93.880114) (xy 56.5355 93.8915) (xy 56.25135 93.8915) (xy 56.190803 93.898009) (xy 56.190795 93.898011) (xy 56.053797 93.94911) (xy 56.053792 93.949112) (xy 55.936738 94.036738) (xy 55.849112 94.153792) (xy 55.849111 94.153795) (xy 55.805 94.272058) (xy 55.762453 94.328893) (xy 55.695932 94.353703) (xy 55.626558 94.338611) (xy 55.594246 94.313363) (xy 55.53324 94.247094) (xy 55.533239 94.247093) (xy 55.533237 94.247091) (xy 55.413684 94.154039) (xy 55.355576 94.108811) (xy 55.157574 94.001658) (xy 55.157572 94.001657) (xy 55.157571 94.001656) (xy 54.944639 93.928557) (xy 54.94463 93.928555) (xy 54.900476 93.921187) (xy 54.722569 93.8915) (xy 54.497431 93.8915) (xy 54.351047 93.915927) (xy 54.275369 93.928555) (xy 54.27536 93.928557) (xy 54.062428 94.001656) (xy 54.062426 94.001658) (xy 53.885222 94.097556) (xy 53.864426 94.10881) (xy 53.864424 94.108811) (xy 53.686762 94.247091) (xy 53.534279 94.412729) (xy 53.445483 94.548643) (xy 53.391479 94.594731) (xy 53.321131 94.604306) (xy 53.256774 94.574329) (xy 53.234517 94.548643) (xy 53.14572 94.412729) (xy 53.01622 94.272057) (xy 52.99324 94.247094) (xy 52.993239 94.247093) (xy 52.993237 94.247091) (xy 52.873684 94.154039) (xy 52.815576 94.108811) (xy 52.617574 94.001658) (xy 52.617572 94.001657) (xy 52.617571 94.001656) (xy 52.404639 93.928557) (xy 52.40463 93.928555) (xy 52.360476 93.921187) (xy 52.182569 93.8915) (xy 51.957431 93.8915) (xy 51.811047 93.915927) (xy 51.735369 93.928555) (xy 51.73536 93.928557) (xy 51.522428 94.001656) (xy 51.522426 94.001658) (xy 51.345222 94.097556) (xy 51.324426 94.10881) (xy 51.324424 94.108811) (xy 51.146762 94.247091) (xy 50.994279 94.412729) (xy 50.905483 94.548643) (xy 50.851479 94.594731) (xy 50.781131 94.604306) (xy 50.716774 94.574329) (xy 50.694517 94.548643) (xy 50.60572 94.412729) (xy 50.47622 94.272057) (xy 50.45324 94.247094) (xy 50.453239 94.247093) (xy 50.453237 94.247091) (xy 50.333684 94.154039) (xy 50.275576 94.108811) (xy 50.077574 94.001658) (xy 50.077572 94.001657) (xy 50.077571 94.001656) (xy 49.864639 93.928557) (xy 49.86463 93.928555) (xy 49.820476 93.921187) (xy 49.642569 93.8915) (xy 49.417431 93.8915) (xy 49.271047 93.915927) (xy 49.195369 93.928555) (xy 49.19536 93.928557) (xy 48.982428 94.001656) (xy 48.982426 94.001658) (xy 48.805222 94.097556) (xy 48.784426 94.10881) (xy 48.784424 94.108811) (xy 48.606762 94.247091) (xy 48.454279 94.412729) (xy 48.365483 94.548643) (xy 48.311479 94.594731) (xy 48.241131 94.604306) (xy 48.176774 94.574329) (xy 48.154517 94.548643) (xy 48.06572 94.412729) (xy 47.93622 94.272057) (xy 47.91324 94.247094) (xy 47.913239 94.247093) (xy 47.913237 94.247091) (xy 47.793684 94.154039) (xy 47.735576 94.108811) (xy 47.537574 94.001658) (xy 47.537572 94.001657) (xy 47.537571 94.001656) (xy 47.324639 93.928557) (xy 47.32463 93.928555) (xy 47.280476 93.921187) (xy 47.102569 93.8915) (xy 46.877431 93.8915) (xy 46.731047 93.915927) (xy 46.655369 93.928555) (xy 46.65536 93.928557) (xy 46.442428 94.001656) (xy 46.442426 94.001658) (xy 46.265222 94.097556) (xy 46.244426 94.10881) (xy 46.244424 94.108811) (xy 46.066759 94.247094) (xy 46.005374 94.313775) (xy 45.944521 94.350346) (xy 45.873557 94.348211) (xy 45.815012 94.308049) (xy 45.794618 94.27247) (xy 45.750443 94.154033) (xy 45.662904 94.037095) (xy 45.545965 93.949555) (xy 45.409093 93.898505) (xy 45.348597 93.892) (xy 44.704 93.892) (xy 44.704 94.807749) (xy 44.646853 94.774755) (xy 44.517143 94.74) (xy 44.382857 94.74) (xy 44.253147 94.774755) (xy 44.196 94.807749) (xy 44.196 93.892) (xy 43.551402 93.892) (xy 43.490906 93.898505) (xy 43.354035 93.949555) (xy 43.354034 93.949555) (xy 43.237095 94.037095) (xy 43.149555 94.154034) (xy 43.149553 94.154039) (xy 43.10538 94.27247) (xy 43.062833 94.329306) (xy 42.996313 94.354116) (xy 42.926939 94.339024) (xy 42.894626 94.313777) (xy 42.83324 94.247094) (xy 42.833239 94.247093) (xy 42.833237 94.247091) (xy 42.713684 94.154039) (xy 42.655576 94.108811) (xy 42.457574 94.001658) (xy 42.457572 94.001657) (xy 42.457571 94.001656) (xy 42.244639 93.928557) (xy 42.24463 93.928555) (xy 42.200476 93.921187) (xy 42.022569 93.8915) (xy 41.797431 93.8915) (xy 41.651047 93.915927) (xy 41.575369 93.928555) (xy 41.57536 93.928557) (xy 41.362428 94.001656) (xy 41.362426 94.001658) (xy 41.185222 94.097556) (xy 41.164426 94.10881) (xy 41.164424 94.108811) (xy 40.986762 94.247091) (xy 40.834279 94.412729) (xy 40.745483 94.548643) (xy 40.691479 94.594731) (xy 40.621131 94.604306) (xy 40.556774 94.574329) (xy 40.534517 94.548643) (xy 40.44572 94.412729) (xy 40.31622 94.272057) (xy 40.29324 94.247094) (xy 40.293239 94.247093) (xy 40.293237 94.247091) (xy 40.173684 94.154039) (xy 40.115576 94.108811) (xy 39.917574 94.001658) (xy 39.917572 94.001657) (xy 39.917571 94.001656) (xy 39.704639 93.928557) (xy 39.70463 93.928555) (xy 39.660476 93.921187) (xy 39.482569 93.8915) (xy 39.257431 93.8915) (xy 39.111047 93.915927) (xy 39.035369 93.928555) (xy 39.03536 93.928557) (xy 38.822428 94.001656) (xy 38.822426 94.001658) (xy 38.645222 94.097556) (xy 38.624426 94.10881) (xy 38.624424 94.108811) (xy 38.446762 94.247091) (xy 38.294279 94.412729) (xy 38.294275 94.412734) (xy 38.231983 94.508081) (xy 38.177979 94.55417) (xy 38.107632 94.563745) (xy 38.043274 94.533768) (xy 38.005341 94.473755) (xy 38.0005 94.439166) (xy 38.0005 77.5) (xy 53.586496 77.5) (xy 53.606457 77.689927) (xy 53.636381 77.78202) (xy 53.665473 77.871556) (xy 53.665476 77.871561) (xy 53.760958 78.036941) (xy 53.760965 78.036951) (xy 53.888744 78.178864) (xy 53.888747 78.178866) (xy 54.043248 78.291118) (xy 54.217712 78.368794) (xy 54.404513 78.4085) (xy 54.595487 78.4085) (xy 54.782288 78.368794) (xy 54.948755 78.294678) (xy 55.019118 78.285245) (xy 55.05124 78.294676) (xy 55.217712 78.368794) (xy 55.404513 78.4085) (xy 55.595487 78.4085) (xy 55.782288 78.368794) (xy 55.948755 78.294678) (xy 56.019118 78.285245) (xy 56.05124 78.294676) (xy 56.217712 78.368794) (xy 56.404513 78.4085) (xy 56.595487 78.4085) (xy 56.782288 78.368794) (xy 56.956752 78.291118) (xy 57.111253 78.178866) (xy 57.111255 78.178864) (xy 57.239034 78.036951) (xy 57.239035 78.036949) (xy 57.23904 78.036944) (xy 57.334527 77.871556) (xy 57.393542 77.689928) (xy 57.413504 77.5) (xy 57.393542 77.310072) (xy 57.334527 77.128444) (xy 57.23904 76.963056) (xy 57.239038 76.963054) (xy 57.239034 76.963048) (xy 57.111255 76.821135) (xy 56.956752 76.708882) (xy 56.782288 76.631206) (xy 56.595487 76.5915) (xy 56.404513 76.5915) (xy 56.217711 76.631206) (xy 56.112231 76.678168) (xy 56.051248 76.70532) (xy 55.980882 76.714754) (xy 55.948752 76.70532) (xy 55.782288 76.631206) (xy 55.595487 76.5915) (xy 55.404513 76.5915) (xy 55.217711 76.631206) (xy 55.112231 76.678168) (xy 55.051248 76.70532) (xy 54.980882 76.714754) (xy 54.948752 76.70532) (xy 54.782288 76.631206) (xy 54.595487 76.5915) (xy 54.404513 76.5915) (xy 54.217711 76.631206) (xy 54.043247 76.708882) (xy 53.888744 76.821135) (xy 53.760965 76.963048) (xy 53.760958 76.963058) (xy 53.665476 77.128438) (xy 53.665473 77.128445) (xy 53.606457 77.310072) (xy 53.586496 77.5) (xy 38.0005 77.5) (xy 38.0005 75.071649) (xy 46.0177 75.071649) (xy 46.0177 75.293351) (xy 46.052382 75.512324) (xy 46.052383 75.512329) (xy 46.12089 75.723171) (xy 46.120892 75.723176) (xy 46.221543 75.920715) (xy 46.221545 75.920718) (xy 46.351858 76.100078) (xy 46.508621 76.256841) (xy 46.531108 76.273179) (xy 46.687985 76.387157) (xy 46.885524 76.487808) (xy 47.096376 76.556318) (xy 47.315349 76.591) (xy 47.315352 76.591) (xy 49.737048 76.591) (xy 49.737051 76.591) (xy 49.956024 76.556318) (xy 50.166876 76.487808) (xy 50.364415 76.387157) (xy 50.543776 76.256843) (xy 50.700543 76.100076) (xy 50.830857 75.920715) (xy 50.931508 75.723176) (xy 51.000018 75.512324) (xy 51.0347 75.293351) (xy 51.0347 75.071649) (xy 51.000018 74.852676) (xy 50.931508 74.641824) (xy 50.830857 74.444285) (xy 50.700543 74.264924) (xy 50.700541 74.264921) (xy 50.543778 74.108158) (xy 50.364418 73.977845) (xy 50.364417 73.977844) (xy 50.364415 73.977843) (xy 50.166876 73.877192) (xy 50.166873 73.877191) (xy 50.166871 73.87719) (xy 49.956023 73.808681) (xy 49.956024 73.808681) (xy 49.900388 73.799869) (xy 49.836236 73.769456) (xy 49.831006 73.764516) (xy 49.192323 73.125833) (xy 49.281894 73.101833) (xy 49.384506 73.04259) (xy 49.46829 72.958806) (xy 49.527533 72.856194) (xy 49.551533 72.766623) (xy 50.249338 73.464429) (xy 50.249339 73.464429) (xy 50.32868 73.34299) (xy 50.408364 73.161328) (xy 50.454045 73.106979) (xy 50.521857 73.085955) (xy 50.537221 73.086663) (xy 50.577552 73.090999) (xy 50.577553 73.090999) (xy 50.577562 73.091) (xy 50.577568 73.091) (xy 52.474832 73.091) (xy 52.474838 73.091) (xy 52.474845 73.090999) (xy 52.474849 73.090999) (xy 52.535396 73.08449) (xy 52.535399 73.084489) (xy 52.535401 73.084489) (xy 52.672404 73.033389) (xy 52.789461 72.945761) (xy 52.877087 72.828707) (xy 52.877087 72.828706) (xy 52.877089 72.828704) (xy 52.928189 72.691701) (xy 52.929179 72.6825) (xy 52.934699 72.631149) (xy 52.9347 72.631132) (xy 52.9347 68.133867) (xy 52.934699 68.13385) (xy 52.92819 68.073303) (xy 52.928188 68.073295) (xy 52.892515 67.977655) (xy 52.877089 67.936296) (xy 52.877088 67.936294) (xy 52.877087 67.936292) (xy 52.789461 67.819238) (xy 52.672407 67.731612) (xy 52.672402 67.73161) (xy 52.535404 67.680511) (xy 52.535396 67.680509) (xy 52.474849 67.674) (xy 52.474838 67.674) (xy 50.611729 67.674) (xy 50.543608 67.653998) (xy 50.497115 67.600342) (xy 50.486159 67.558406) (xy 50.483597 67.527491) (xy 50.477508 67.454003) (xy 50.473895 67.439736) (xy 50.421224 67.231742) (xy 50.421221 67.231735) (xy 50.387498 67.154855) (xy 50.329122 67.02177) (xy 50.203718 66.829824) (xy 50.048431 66.661137) (xy 49.867496 66.52031) (xy 49.867495 66.520309) (xy 49.735881 66.449084) (xy 49.66585 66.411185) (xy 49.665848 66.411184) (xy 49.665847 66.411183) (xy 49.448997 66.336739) (xy 49.448988 66.336737) (xy 49.404021 66.329233) (xy 49.22284 66.299) (xy 48.99356 66.299) (xy 48.842612 66.324188) (xy 48.767411 66.336737) (xy 48.767402 66.336739) (xy 48.550552 66.411183) (xy 48.55055 66.411185) (xy 48.348904 66.520309) (xy 48.348903 66.52031) (xy 48.167966 66.661139) (xy 48.012679 66.829827) (xy 47.88728 67.021767) (xy 47.887273 67.021779) (xy 47.795178 67.231735) (xy 47.795175 67.231742) (xy 47.738893 67.453995) (xy 47.738892 67.454001) (xy 47.738892 67.454003) (xy 47.719958 67.6825) (xy 47.734702 67.860435) (xy 47.738893 67.911004) (xy 47.795175 68.133257) (xy 47.795178 68.133264) (xy 47.887273 68.34322) (xy 47.887275 68.343224) (xy 47.887278 68.34323) (xy 47.901662 68.365246) (xy 47.983477 68.490475) (xy 48.012682 68.535176) (xy 48.167969 68.703863) (xy 48.291321 68.799871) (xy 48.334379 68.833385) (xy 48.37585 68.891011) (xy 48.379584 68.961909) (xy 48.344394 69.023571) (xy 48.33438 69.032248) (xy 48.324696 69.039785) (xy 48.324696 69.039786) (xy 49.024077 69.739166) (xy 48.934506 69.763167) (xy 48.831894 69.82241) (xy 48.74811 69.906194) (xy 48.688867 70.008806) (xy 48.664866 70.098375) (xy 47.967059 69.400568) (xy 47.967058 69.400569) (xy 47.887723 69.522) (xy 47.887719 69.522008) (xy 47.795651 69.731903) (xy 47.739388 69.95408) (xy 47.72046 70.1825) (xy 47.739388 70.410919) (xy 47.795651 70.633096) (xy 47.887719 70.84299) (xy 47.967059 70.964429) (xy 48.664866 70.266622) (xy 48.688867 70.356194) (xy 48.74811 70.458806) (xy 48.831894 70.54259) (xy 48.934506 70.601833) (xy 49.024074 70.625833) (xy 48.324695 71.325212) (xy 48.334789 71.333069) (xy 48.376259 71.390695) (xy 48.379991 71.461593) (xy 48.3448 71.523254) (xy 48.334789 71.531929) (xy 48.324696 71.539784) (xy 48.324696 71.539786) (xy 49.024077 72.239166) (xy 48.934506 72.263167) (xy 48.831894 72.32241) (xy 48.74811 72.406194) (xy 48.688867 72.508806) (xy 48.664866 72.598376) (xy 47.967059 71.900568) (xy 47.967058 71.900569) (xy 47.887723 72.022) (xy 47.887719 72.022008) (xy 47.795651 72.231903) (xy 47.739388 72.45408) (xy 47.72046 72.6825) (xy 47.739388 72.910919) (xy 47.795651 73.133096) (xy 47.887717 73.342987) (xy 47.887721 73.342993) (xy 48.013075 73.534864) (xy 48.038665 73.562662) (xy 48.070086 73.626327) (xy 48.0621 73.696873) (xy 48.017241 73.751902) (xy 47.949752 73.773943) (xy 47.945964 73.774) (xy 47.315349 73.774) (xy 47.096376 73.808682) (xy 47.09637 73.808683) (xy 46.885528 73.87719) (xy 46.885522 73.877193) (xy 46.687981 73.977845) (xy 46.508621 74.108158) (xy 46.351858 74.264921) (xy 46.221545 74.444281) (xy 46.120893 74.641822) (xy 46.12089 74.641828) (xy 46.052383 74.85267) (xy 46.052382 74.852675) (xy 46.052382 74.852676) (xy 46.0177 75.071649) (xy 38.0005 75.071649) (xy 38.0005 69.171691) (xy 44.3182 69.171691) (xy 44.3182 70.1285) (xy 45.3262 70.1285) (xy 45.3262 70.6365) (xy 44.3182 70.6365) (xy 44.3182 71.593308) (xy 44.35287 71.81221) (xy 44.421355 72.022983) (xy 44.421356 72.022985) (xy 44.521972 72.220456) (xy 44.652239 72.399753) (xy 44.808946 72.55646) (xy 44.988243 72.686727) (xy 45.185714 72.787343) (xy 45.185716 72.787344) (xy 45.396489 72.855829) (xy 45.4722 72.86782) (xy 45.4722 71.794186) (xy 45.480594 71.80258) (xy 45.571806 71.855241) (xy 45.673539 71.8825) (xy 45.778861 71.8825) (xy 45.880594 71.855241) (xy 45.971806 71.80258) (xy 45.9802 71.794186) (xy 45.9802 72.86782) (xy 46.055909 72.855829) (xy 46.055911 72.855829) (xy 46.266683 72.787344) (xy 46.266685 72.787343) (xy 46.464156 72.686727) (xy 46.643453 72.55646) (xy 46.80016 72.399753) (xy 46.930427 72.220456) (xy 47.031043 72.022985) (xy 47.031044 72.022983) (xy 47.099529 71.81221) (xy 47.1342 71.593308) (xy 47.1342 70.6365) (xy 46.1262 70.6365) (xy 46.1262 70.1285) (xy 47.1342 70.1285) (xy 47.1342 69.171691) (xy 47.099529 68.952789) (xy 47.031044 68.742016) (xy 47.031043 68.742014) (xy 46.930427 68.544543) (xy 46.80016 68.365246) (xy 46.643453 68.208539) (xy 46.464156 68.078272) (xy 46.266685 67.977656) (xy 46.266683 67.977655) (xy 46.055909 67.909169) (xy 45.9802 67.897178) (xy 45.9802 68.970814) (xy 45.971806 68.96242) (xy 45.880594 68.909759) (xy 45.778861 68.8825) (xy 45.673539 68.8825) (xy 45.571806 68.909759) (xy 45.480594 68.96242) (xy 45.4722 68.970814) (xy 45.4722 67.897178) (xy 45.39649 67.909169) (xy 45.185716 67.977655) (xy 45.185714 67.977656) (xy 44.988243 68.078272) (xy 44.808946 68.208539) (xy 44.652239 68.365246) (xy 44.521972 68.544543) (xy 44.421356 68.742014) (xy 44.421355 68.742016) (xy 44.35287 68.952789) (xy 44.3182 69.171691) (xy 38.0005 69.171691) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.012308 58.729542) (xy 38.017382 58.613336) (xy 38.01834 58.602388) (xy 38.021629 58.577404) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.078068 58.177128) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.194764 57.705575) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.356455 57.256832) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.710155 56.58255) (xy 60.2587 56.58255) (xy 60.2587 58.379849) (xy 60.265209 58.440396) (xy 60.265211 58.440404) (xy 60.31631 58.577402) (xy 60.316312 58.577407) (xy 60.403938 58.694461) (xy 60.520992 58.782087) (xy 60.520994 58.782088) (xy 60.520996 58.782089) (xy 60.5761 58.802642) (xy 60.657995 58.833188) (xy 60.658003 58.83319) (xy 60.71855 58.839699) (xy 60.718555 58.839699) (xy 60.718562 58.8397) (xy 60.718568 58.8397) (xy 62.515832 58.8397) (xy 62.515838 58.8397) (xy 62.515845 58.839699) (xy 62.515849 58.839699) (xy 62.576396 58.83319) (xy 62.576399 58.833189) (xy 62.576401 58.833189) (xy 62.713404 58.782089) (xy 62.783599 58.729542) (xy 62.830461 58.694461) (xy 62.918086 58.577408) (xy 62.918085 58.577408) (xy 62.918089 58.577404) (xy 62.962199 58.459139) (xy 63.004745 58.402307) (xy 63.071266 58.377496) (xy 63.14064 58.392588) (xy 63.172953 58.417835) (xy 63.210979 58.459142) (xy 63.233962 58.484108) (xy 63.237304 58.486709) (xy 63.411624 58.622389) (xy 63.609626 58.729542) (xy 63.609627 58.729542) (xy 63.609628 58.729543) (xy 63.710925 58.764318) (xy 63.822565 58.802644) (xy 64.044631 58.8397) (xy 64.044635 58.8397) (xy 64.269765 58.8397) (xy 64.269769 58.8397) (xy 64.491835 58.802644) (xy 64.704774 58.729542) (xy 64.902776 58.622389) (xy 65.08044 58.484106) (xy 65.232922 58.318468) (xy 65.321718 58.182554) (xy 65.37572 58.136468) (xy 65.446068 58.126892) (xy 65.510425 58.156869) (xy 65.53268 58.182553) (xy 65.559838 58.224121) (xy 65.621475 58.318465) (xy 65.621479 58.31847) (xy 65.773962 58.484108) (xy 65.777304 58.486709) (xy 65.951624 58.622389) (xy 66.149626 58.729542) (xy 66.149627 58.729542) (xy 66.149628 58.729543) (xy 66.250925 58.764318) (xy 66.362565 58.802644) (xy 66.584631 58.8397) (xy 66.584635 58.8397) (xy 66.809765 58.8397) (xy 66.809769 58.8397) (xy 67.031835 58.802644) (xy 67.244774 58.729542) (xy 67.442776 58.622389) (xy 67.62044 58.484106) (xy 67.772922 58.318468) (xy 67.89606 58.129991) (xy 67.986496 57.923816) (xy 68.041764 57.705568) (xy 68.060356 57.4812) (xy 68.041764 57.256832) (xy 67.986496 57.038584) (xy 67.89606 56.832409) (xy 67.8787 56.805837) (xy 67.772924 56.643934) (xy 67.77292 56.643929) (xy 67.620437 56.478291) (xy 67.500567 56.384992) (xy 67.442776 56.340011) (xy 67.244774 56.232858) (xy 67.244772 56.232857) (xy 67.244771 56.232856) (xy 67.031839 56.159757) (xy 67.03183 56.159755) (xy 66.987676 56.152387) (xy 66.809769 56.1227) (xy 66.584631 56.1227) (xy 66.436411 56.147433) (xy 66.362569 56.159755) (xy 66.36256 56.159757) (xy 66.149628 56.232856) (xy 66.149626 56.232858) (xy 65.951626 56.34001) (xy 65.951624 56.340011) (xy 65.773962 56.478291) (xy 65.621479 56.643929) (xy 65.532683 56.779843) (xy 65.478679 56.825931) (xy 65.408331 56.835506) (xy 65.343974 56.805529) (xy 65.321717 56.779843) (xy 65.23292 56.643929) (xy 65.080437 56.478291) (xy 64.960567 56.384992) (xy 64.902776 56.340011) (xy 64.704774 56.232858) (xy 64.704772 56.232857) (xy 64.704771 56.232856) (xy 64.491839 56.159757) (xy 64.49183 56.159755) (xy 64.447676 56.152387) (xy 64.269769 56.1227) (xy 64.044631 56.1227) (xy 63.896411 56.147433) (xy 63.822569 56.159755) (xy 63.82256 56.159757) (xy 63.609628 56.232856) (xy 63.609626 56.232858) (xy 63.411626 56.34001) (xy 63.411624 56.340011) (xy 63.233962 56.478291) (xy 63.172954 56.544563) (xy 63.112101 56.581133) (xy 63.041136 56.578998) (xy 62.982591 56.538836) (xy 62.962199 56.503257) (xy 62.918089 56.384997) (xy 62.918087 56.384992) (xy 62.830461 56.267938) (xy 62.713407 56.180312) (xy 62.713402 56.18031) (xy 62.576404 56.129211) (xy 62.576396 56.129209) (xy 62.515849 56.1227) (xy 62.515838 56.1227) (xy 60.718562 56.1227) (xy 60.71855 56.1227) (xy 60.658003 56.129209) (xy 60.657995 56.129211) (xy 60.520997 56.18031) (xy 60.520992 56.180312) (xy 60.403938 56.267938) (xy 60.316312 56.384992) (xy 60.31631 56.384997) (xy 60.265211 56.521995) (xy 60.265209 56.522003) (xy 60.2587 56.58255) (xy 38.710155 56.58255) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.957205 56.232858) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.314057 55.823083) (xy 39.31466 55.822424) (xy 39.322429 55.814656) (xy 39.603716 55.556904) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 114.934108 54.5005) (xy 114.997252 54.5005) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 70.104 114.388) (xy 70.748585 114.388) (xy 70.748597 114.387999) (xy 70.809093 114.381494) (xy 70.945964 114.330444) (xy 70.945965 114.330444) (xy 71.062904 114.242904) (xy 71.150444 114.125965) (xy 71.194618 114.00753) (xy 71.237165 113.950694) (xy 71.303685 113.925883) (xy 71.373059 113.940974) (xy 71.405372 113.966222) (xy 71.410645 113.971949) (xy 71.466762 114.032908) (xy 71.521331 114.075381) (xy 71.644424 114.171189) (xy 71.842426 114.278342) (xy 71.842427 114.278342) (xy 71.842428 114.278343) (xy 71.87041 114.287949) (xy 72.055365 114.351444) (xy 72.277431 114.3885) (xy 72.277435 114.3885) (xy 72.502565 114.3885) (xy 72.502569 114.3885) (xy 72.724635 114.351444) (xy 72.937574 114.278342) (xy 73.135576 114.171189) (xy 73.31324 114.032906) (xy 73.465722 113.867268) (xy 73.554518 113.731354) (xy 73.60852 113.685268) (xy 73.678868 113.675692) (xy 73.743225 113.705669) (xy 73.76548 113.731353) (xy 73.791983 113.771918) (xy 73.854275 113.867265) (xy 73.854279 113.86727) (xy 74.006762 114.032908) (xy 74.061331 114.075381) (xy 74.184424 114.171189) (xy 74.382426 114.278342) (xy 74.382427 114.278342) (xy 74.382428 114.278343) (xy 74.406169 114.286493) (xy 74.516413 114.324339) (xy 74.574347 114.365376) (xy 74.600899 114.43122) (xy 74.6015 114.443512) (xy 74.6015 120.114164) (xy 74.581498 120.182285) (xy 74.527842 120.228778) (xy 74.457568 120.238882) (xy 74.415531 120.224978) (xy 74.414254 120.224287) (xy 74.368374 120.199458) (xy 74.368372 120.199457) (xy 74.368371 120.199456) (xy 74.155439 120.126357) (xy 74.15543 120.126355) (xy 74.111276 120.118987) (xy 73.933369 120.0893) (xy 73.708231 120.0893) (xy 73.560011 120.114033) (xy 73.486169 120.126355) (xy 73.48616 120.126357) (xy 73.273228 120.199456) (xy 73.273226 120.199458) (xy 73.075226 120.30661) (xy 73.075224 120.306611) (xy 72.897562 120.444891) (xy 72.836554 120.511163) (xy 72.775701 120.547733) (xy 72.704736 120.545598) (xy 72.646191 120.505436) (xy 72.625799 120.469857) (xy 72.593365 120.3829) (xy 72.581689 120.351596) (xy 72.581688 120.351594) (xy 72.581687 120.351592) (xy 72.494061 120.234538) (xy 72.377007 120.146912) (xy 72.377002 120.14691) (xy 72.240004 120.095811) (xy 72.239996 120.095809) (xy 72.179449 120.0893) (xy 72.179438 120.0893) (xy 72.0153 120.0893) (xy 71.947179 120.069298) (xy 71.900686 120.015642) (xy 71.8893 119.9633) (xy 71.8893 119.46069) (xy 71.886759 119.451206) (xy 71.847832 119.305928) (xy 71.821761 119.260771) (xy 71.821759 119.260767) (xy 71.767724 119.167176) (xy 71.767716 119.167166) (xy 67.204144 114.603595) (xy 67.170118 114.541283) (xy 67.175183 114.470468) (xy 67.21773 114.413632) (xy 67.28425 114.388821) (xy 67.293239 114.3885) (xy 67.422565 114.3885) (xy 67.422569 114.3885) (xy 67.644635 114.351444) (xy 67.857574 114.278342) (xy 68.055576 114.171189) (xy 68.23324 114.032906) (xy 68.294626 113.966222) (xy 68.355476 113.929654) (xy 68.426441 113.931787) (xy 68.484986 113.971949) (xy 68.50538 114.007529) (xy 68.549553 114.125961) (xy 68.549555 114.125965) (xy 68.637095 114.242904) (xy 68.754034 114.330444) (xy 68.890906 114.381494) (xy 68.951402 114.387999) (xy 68.951415 114.388) (xy 69.596 114.388) (xy 69.596 113.47225) (xy 69.653147 113.505245) (xy 69.782857 113.54) (xy 69.917143 113.54) (xy 70.046853 113.505245) (xy 70.104 113.47225) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 92.814355 81.959302) (xy 92.860848 82.012958) (xy 92.870952 82.083232) (xy 92.866068 82.104229) (xy 92.852902 82.144753) (xy 92.832457 82.207672) (xy 92.812496 82.3976) (xy 92.832457 82.587527) (xy 92.846174 82.629741) (xy 92.891473 82.769156) (xy 92.891476 82.769161) (xy 92.986958 82.934541) (xy 92.986965 82.934551) (xy 93.114744 83.076464) (xy 93.125538 83.084306) (xy 93.269248 83.188718) (xy 93.443712 83.266394) (xy 93.630513 83.3061) (xy 93.821487 83.3061) (xy 94.008288 83.266394) (xy 94.182752 83.188718) (xy 94.337253 83.076466) (xy 94.46504 82.934544) (xy 94.560527 82.769156) (xy 94.619542 82.587528) (xy 94.639504 82.3976) (xy 94.619542 82.207672) (xy 94.585932 82.104234) (xy 94.583905 82.03327) (xy 94.620567 81.972471) (xy 94.684279 81.941146) (xy 94.705766 81.9393) (xy 98.857361 81.9393) (xy 98.925482 81.959302) (xy 98.946456 81.976205) (xy 99.074791 82.10454) (xy 99.108817 82.166852) (xy 99.111696 82.193635) (xy 99.111696 82.194399) (xy 99.131657 82.384327) (xy 99.158413 82.46667) (xy 99.190673 82.565956) (xy 99.190676 82.565961) (xy 99.286158 82.731341) (xy 99.286165 82.731351) (xy 99.413944 82.873264) (xy 99.413947 82.873266) (xy 99.568448 82.985518) (xy 99.742912 83.063194) (xy 99.929713 83.1029) (xy 100.120687 83.1029) (xy 100.307488 83.063194) (xy 100.332051 83.052257) (xy 100.402415 83.042822) (xy 100.466713 83.072928) (xy 100.504528 83.133016) (xy 100.5093 83.167364) (xy 100.5093 87.569405) (xy 100.489298 87.637526) (xy 100.472395 87.6585) (xy 94.755671 93.375223) (xy 94.693359 93.409249) (xy 94.622544 93.404184) (xy 94.565708 93.361637) (xy 94.557463 93.349137) (xy 94.46504 93.189056) (xy 94.465038 93.189054) (xy 94.465034 93.189048) (xy 94.337255 93.047135) (xy 94.182752 92.934882) (xy 94.008288 92.857206) (xy 93.821487 92.8175) (xy 93.630513 92.8175) (xy 93.443711 92.857206) (xy 93.269247 92.934882) (xy 93.114744 93.047135) (xy 92.986965 93.189048) (xy 92.986958 93.189058) (xy 92.894542 93.349128) (xy 92.891473 93.354444) (xy 92.876999 93.398986) (xy 92.832457 93.536072) (xy 92.812496 93.726) (xy 92.832457 93.915927) (xy 92.84324 93.949112) (xy 92.891473 94.097556) (xy 92.891476 94.097561) (xy 92.986958 94.262941) (xy 92.986965 94.262951) (xy 93.114744 94.404864) (xy 93.125576 94.412734) (xy 93.269248 94.517118) (xy 93.443712 94.594794) (xy 93.600664 94.628155) (xy 93.630517 94.634501) (xy 93.637075 94.63519) (xy 93.63684 94.637418) (xy 93.695021 94.654502) (xy 93.741514 94.708158) (xy 93.7529 94.7605) (xy 93.7529 103.9183) (xy 93.732898 103.986421) (xy 93.679242 104.032914) (xy 93.6269 104.0443) (xy 93.528913 104.0443) (xy 93.342111 104.084006) (xy 93.167647 104.161682) (xy 93.013144 104.273935) (xy 92.885365 104.415848) (xy 92.885358 104.415858) (xy 92.789876 104.581238) (xy 92.789873 104.581245) (xy 92.730857 104.762872) (xy 92.710896 104.9528) (xy 92.730857 105.142727) (xy 92.760926 105.23527) (xy 92.789873 105.324356) (xy 92.789876 105.324361) (xy 92.885358 105.489741) (xy 92.885365 105.489751) (xy 93.013144 105.631664) (xy 93.013147 105.631666) (xy 93.167648 105.743918) (xy 93.342112 105.821594) (xy 93.528913 105.8613) (xy 93.6269 105.8613) (xy 93.695021 105.881302) (xy 93.741514 105.934958) (xy 93.7529 105.9873) (xy 93.7529 112.105806) (xy 93.732898 112.173927) (xy 93.715995 112.194901) (xy 89.741301 116.169595) (xy 89.678989 116.203621) (xy 89.652206 116.2065) (xy 84.134595 116.2065) (xy 84.066474 116.186498) (xy 84.0455 116.169595) (xy 82.332905 114.457) (xy 82.298879 114.394688) (xy 82.296 114.367905) (xy 82.296 113.47225) (xy 82.353147 113.505245) (xy 82.482857 113.54) (xy 82.617143 113.54) (xy 82.746853 113.505245) (xy 82.804 113.47225) (xy 82.804 114.388) (xy 83.448585 114.388) (xy 83.448597 114.387999) (xy 83.509093 114.381494) (xy 83.645964 114.330444) (xy 83.645965 114.330444) (xy 83.762904 114.242904) (xy 83.850444 114.125965) (xy 83.894618 114.00753) (xy 83.937165 113.950694) (xy 84.003685 113.925883) (xy 84.073059 113.940974) (xy 84.105372 113.966222) (xy 84.110645 113.971949) (xy 84.166762 114.032908) (xy 84.221331 114.075381) (xy 84.344424 114.171189) (xy 84.542426 114.278342) (xy 84.542427 114.278342) (xy 84.542428 114.278343) (xy 84.57041 114.287949) (xy 84.755365 114.351444) (xy 84.977431 114.3885) (xy 84.977435 114.3885) (xy 85.202565 114.3885) (xy 85.202569 114.3885) (xy 85.424635 114.351444) (xy 85.637574 114.278342) (xy 85.835576 114.171189) (xy 86.01324 114.032906) (xy 86.165722 113.867268) (xy 86.254518 113.731354) (xy 86.30852 113.685268) (xy 86.378868 113.675692) (xy 86.443225 113.705669) (xy 86.46548 113.731353) (xy 86.491983 113.771918) (xy 86.554275 113.867265) (xy 86.554279 113.86727) (xy 86.706762 114.032908) (xy 86.761331 114.075381) (xy 86.884424 114.171189) (xy 87.082426 114.278342) (xy 87.082427 114.278342) (xy 87.082428 114.278343) (xy 87.11041 114.287949) (xy 87.295365 114.351444) (xy 87.517431 114.3885) (xy 87.517435 114.3885) (xy 87.742565 114.3885) (xy 87.742569 114.3885) (xy 87.964635 114.351444) (xy 88.177574 114.278342) (xy 88.375576 114.171189) (xy 88.55324 114.032906) (xy 88.705722 113.867268) (xy 88.82886 113.678791) (xy 88.919296 113.472616) (xy 88.974564 113.254368) (xy 88.993156 113.03) (xy 88.974564 112.805632) (xy 88.972125 112.796002) (xy 88.919297 112.587387) (xy 88.919296 112.587386) (xy 88.919296 112.587384) (xy 88.82886 112.381209) (xy 88.813701 112.358006) (xy 88.705724 112.192734) (xy 88.705714 112.192722) (xy 88.588539 112.065438) (xy 88.557117 112.001774) (xy 88.565103 111.931228) (xy 88.609962 111.876198) (xy 88.67745 111.854157) (xy 88.681239 111.8541) (xy 88.802349 111.8541) (xy 88.802352 111.8541) (xy 89.004534 111.822077) (xy 89.199219 111.75882) (xy 89.38161 111.665887) (xy 89.547219 111.545566) (xy 89.691966 111.400819) (xy 89.812287 111.23521) (xy 89.90522 111.052819) (xy 89.968477 110.858134) (xy 90.0005 110.655952) (xy 90.0005 110.5536) (xy 90.0005 110.487708) (xy 90.0005 97.687708) (xy 90.0005 97.651248) (xy 89.968477 97.449066) (xy 89.90522 97.254381) (xy 89.812287 97.07199) (xy 89.789406 97.040497) (xy 89.691965 96.906379) (xy 89.54722 96.761634) (xy 89.381612 96.641314) (xy 89.317209 96.608499) (xy 89.199219 96.54838) (xy 89.199216 96.548379) (xy 89.199214 96.548378) (xy 89.004538 96.485124) (xy 89.004536 96.485123) (xy 89.004534 96.485123) (xy 88.802352 96.4531) (xy 88.802349 96.4531) (xy 88.656199 96.4531) (xy 88.588078 96.433098) (xy 88.541585 96.379442) (xy 88.531481 96.309168) (xy 88.560975 96.244588) (xy 88.563499 96.241762) (xy 88.705714 96.087277) (xy 88.705724 96.087265) (xy 88.768017 95.991918) (xy 88.82886 95.898791) (xy 88.919296 95.692616) (xy 88.974564 95.474368) (xy 88.993156 95.25) (xy 88.974564 95.025632) (xy 88.952082 94.936853) (xy 88.919297 94.807387) (xy 88.919296 94.807386) (xy 88.919296 94.807384) (xy 88.82886 94.601209) (xy 88.8115 94.574637) (xy 88.705724 94.412734) (xy 88.70572 94.412729) (xy 88.57622 94.272057) (xy 88.55324 94.247094) (xy 88.553239 94.247093) (xy 88.553237 94.247091) (xy 88.433684 94.154039) (xy 88.375576 94.108811) (xy 88.177574 94.001658) (xy 88.177572 94.001657) (xy 88.177571 94.001656) (xy 87.964639 93.928557) (xy 87.96463 93.928555) (xy 87.920476 93.921187) (xy 87.742569 93.8915) (xy 87.517431 93.8915) (xy 87.390407 93.912696) (xy 87.295368 93.928555) (xy 87.295359 93.928557) (xy 87.275759 93.935286) (xy 87.204835 93.938485) (xy 87.145756 93.905207) (xy 85.949805 92.709256) (xy 85.915779 92.646944) (xy 85.9129 92.620161) (xy 85.9129 89.2048) (xy 87.021296 89.2048) (xy 87.041257 89.394727) (xy 87.058282 89.447122) (xy 87.100273 89.576356) (xy 87.100276 89.576361) (xy 87.195758 89.741741) (xy 87.195765 89.741751) (xy 87.323544 89.883664) (xy 87.323547 89.883666) (xy 87.478048 89.995918) (xy 87.652512 90.073594) (xy 87.839313 90.1133) (xy 88.030287 90.1133) (xy 88.217088 90.073594) (xy 88.391552 89.995918) (xy 88.546053 89.883666) (xy 88.546055 89.883664) (xy 88.673834 89.741751) (xy 88.673835 89.741749) (xy 88.67384 89.741744) (xy 88.769327 89.576356) (xy 88.828342 89.394728) (xy 88.848304 89.2048) (xy 88.828342 89.014872) (xy 88.769327 88.833244) (xy 88.67384 88.667856) (xy 88.673838 88.667854) (xy 88.673834 88.667848) (xy 88.546055 88.525935) (xy 88.391552 88.413682) (xy 88.217088 88.336006) (xy 88.030287 88.2963) (xy 87.839313 88.2963) (xy 87.652511 88.336006) (xy 87.478047 88.413682) (xy 87.323544 88.525935) (xy 87.195765 88.667848) (xy 87.195758 88.667858) (xy 87.100276 88.833238) (xy 87.100273 88.833245) (xy 87.041257 89.014872) (xy 87.021296 89.2048) (xy 85.9129 89.2048) (xy 85.9129 85.7845) (xy 85.932902 85.716379) (xy 85.986558 85.669886) (xy 86.0389 85.6585) (xy 86.099887 85.6585) (xy 86.286688 85.618794) (xy 86.461152 85.541118) (xy 86.615653 85.428866) (xy 86.631946 85.410771) (xy 86.743434 85.286951) (xy 86.743435 85.286949) (xy 86.74344 85.286944) (xy 86.838927 85.121556) (xy 86.897942 84.939928) (xy 86.915728 84.7707) (xy 86.942741 84.705044) (xy 87.000962 84.664414) (xy 87.071907 84.661711) (xy 87.133052 84.697793) (xy 87.142977 84.709815) (xy 87.14496 84.712545) (xy 87.272744 84.854464) (xy 87.272747 84.854466) (xy 87.427248 84.966718) (xy 87.601712 85.044394) (xy 87.788513 85.0841) (xy 87.979487 85.0841) (xy 88.166288 85.044394) (xy 88.340752 84.966718) (xy 88.470339 84.872566) (xy 88.537207 84.848709) (xy 88.606358 84.864789) (xy 88.618459 84.872565) (xy 88.748048 84.966718) (xy 88.922512 85.044394) (xy 89.109313 85.0841) (xy 89.300287 85.0841) (xy 89.487088 85.044394) (xy 89.661552 84.966718) (xy 89.816053 84.854466) (xy 89.831217 84.837625) (xy 89.943834 84.712551) (xy 89.943835 84.712549) (xy 89.94384 84.712544) (xy 90.039327 84.547156) (xy 90.098342 84.365528) (xy 90.118304 84.1756) (xy 90.098342 83.985672) (xy 90.039327 83.804044) (xy 89.94384 83.638656) (xy 89.943838 83.638654) (xy 89.943834 83.638648) (xy 89.816055 83.496735) (xy 89.661552 83.384482) (xy 89.487088 83.306806) (xy 89.300287 83.2671) (xy 89.109313 83.2671) (xy 88.922511 83.306806) (xy 88.748047 83.384482) (xy 88.618461 83.478632) (xy 88.551593 83.502491) (xy 88.482441 83.48641) (xy 88.470339 83.478632) (xy 88.340752 83.384482) (xy 88.166288 83.306806) (xy 87.979487 83.2671) (xy 87.788513 83.2671) (xy 87.601711 83.306806) (xy 87.427247 83.384482) (xy 87.272744 83.496735) (xy 87.144965 83.638648) (xy 87.144958 83.638658) (xy 87.049476 83.804038) (xy 87.049473 83.804045) (xy 86.990457 83.985672) (xy 86.972671 84.154899) (xy 86.945658 84.220556) (xy 86.887436 84.261185) (xy 86.816491 84.263888) (xy 86.755347 84.227806) (xy 86.74542 84.215782) (xy 86.743439 84.213055) (xy 86.645263 84.104019) (xy 86.614546 84.040012) (xy 86.6129 84.019709) (xy 86.6129 83.768638) (xy 86.632902 83.700517) (xy 86.649805 83.679543) (xy 88.353143 81.976205) (xy 88.415455 81.942179) (xy 88.442238 81.9393) (xy 92.746234 81.9393) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 44.704 96.608) (xy 45.348585 96.608) (xy 45.348597 96.607999) (xy 45.409093 96.601494) (xy 45.545964 96.550444) (xy 45.545965 96.550444) (xy 45.662904 96.462904) (xy 45.750444 96.345965) (xy 45.794618 96.22753) (xy 45.837165 96.170694) (xy 45.903685 96.145883) (xy 45.973059 96.160974) (xy 46.005372 96.186222) (xy 46.02959 96.212529) (xy 46.066762 96.252908) (xy 46.121331 96.295381) (xy 46.244424 96.391189) (xy 46.442426 96.498342) (xy 46.442427 96.498342) (xy 46.442428 96.498343) (xy 46.542519 96.532704) (xy 46.655365 96.571444) (xy 46.877431 96.6085) (xy 46.877435 96.6085) (xy 47.102565 96.6085) (xy 47.102569 96.6085) (xy 47.324635 96.571444) (xy 47.537574 96.498342) (xy 47.735576 96.391189) (xy 47.91324 96.252906) (xy 48.065722 96.087268) (xy 48.154518 95.951354) (xy 48.20852 95.905268) (xy 48.278868 95.895692) (xy 48.343225 95.925669) (xy 48.36548 95.951353) (xy 48.391983 95.991918) (xy 48.454275 96.087265) (xy 48.454279 96.08727) (xy 48.606762 96.252908) (xy 48.661331 96.295381) (xy 48.784424 96.391189) (xy 48.982426 96.498342) (xy 48.982427 96.498342) (xy 48.982428 96.498343) (xy 49.082519 96.532704) (xy 49.195365 96.571444) (xy 49.417431 96.6085) (xy 49.417435 96.6085) (xy 49.642565 96.6085) (xy 49.642569 96.6085) (xy 49.864635 96.571444) (xy 50.077574 96.498342) (xy 50.275576 96.391189) (xy 50.45324 96.252906) (xy 50.605722 96.087268) (xy 50.694518 95.951354) (xy 50.74852 95.905268) (xy 50.818868 95.895692) (xy 50.883225 95.925669) (xy 50.90548 95.951353) (xy 50.931983 95.991918) (xy 50.994275 96.087265) (xy 50.994279 96.08727) (xy 51.146762 96.252908) (xy 51.201331 96.295381) (xy 51.324424 96.391189) (xy 51.522426 96.498342) (xy 51.522427 96.498342) (xy 51.522428 96.498343) (xy 51.622519 96.532704) (xy 51.735365 96.571444) (xy 51.957431 96.6085) (xy 51.957435 96.6085) (xy 52.182565 96.6085) (xy 52.182569 96.6085) (xy 52.404635 96.571444) (xy 52.617574 96.498342) (xy 52.815576 96.391189) (xy 52.99324 96.252906) (xy 53.145722 96.087268) (xy 53.234518 95.951354) (xy 53.28852 95.905268) (xy 53.358868 95.895692) (xy 53.423225 95.925669) (xy 53.44548 95.951353) (xy 53.471983 95.991918) (xy 53.534275 96.087265) (xy 53.534279 96.08727) (xy 53.686762 96.252908) (xy 53.741331 96.295381) (xy 53.864424 96.391189) (xy 54.062426 96.498342) (xy 54.062427 96.498342) (xy 54.062428 96.498343) (xy 54.162519 96.532704) (xy 54.275365 96.571444) (xy 54.497431 96.6085) (xy 54.497435 96.6085) (xy 54.722565 96.6085) (xy 54.722569 96.6085) (xy 54.944635 96.571444) (xy 55.157574 96.498342) (xy 55.355576 96.391189) (xy 55.53324 96.252906) (xy 55.594245 96.186637) (xy 55.655096 96.150067) (xy 55.726061 96.1522) (xy 55.784606 96.192362) (xy 55.805 96.227941) (xy 55.849111 96.346204) (xy 55.849112 96.346207) (xy 55.936738 96.463261) (xy 56.053792 96.550887) (xy 56.053794 96.550888) (xy 56.053796 96.550889) (xy 56.09498 96.56625) (xy 56.190795 96.601988) (xy 56.190803 96.60199) (xy 56.25135 96.608499) (xy 56.251355 96.608499) (xy 56.251362 96.6085) (xy 56.251368 96.6085) (xy 58.048632 96.6085) (xy 58.048638 96.6085) (xy 58.048645 96.608499) (xy 58.048649 96.608499) (xy 58.109196 96.60199) (xy 58.109199 96.601989) (xy 58.109201 96.601989) (xy 58.246204 96.550889) (xy 58.246799 96.550444) (xy 58.363261 96.463261) (xy 58.450886 96.346208) (xy 58.450885 96.346208) (xy 58.450889 96.346204) (xy 58.494999 96.227939) (xy 58.537545 96.171107) (xy 58.604066 96.146296) (xy 58.67344 96.161388) (xy 58.705753 96.186635) (xy 58.72959 96.212529) (xy 58.766762 96.252908) (xy 58.821331 96.295381) (xy 58.944424 96.391189) (xy 59.142426 96.498342) (xy 59.142427 96.498342) (xy 59.142428 96.498343) (xy 59.242519 96.532704) (xy 59.355365 96.571444) (xy 59.577431 96.6085) (xy 59.577435 96.6085) (xy 59.802565 96.6085) (xy 59.802569 96.6085) (xy 60.024635 96.571444) (xy 60.237574 96.498342) (xy 60.435576 96.391189) (xy 60.61324 96.252906) (xy 60.765722 96.087268) (xy 60.854518 95.951354) (xy 60.90852 95.905268) (xy 60.978868 95.895692) (xy 61.043225 95.925669) (xy 61.06548 95.951353) (xy 61.091983 95.991918) (xy 61.154275 96.087265) (xy 61.154279 96.08727) (xy 61.306762 96.252908) (xy 61.361331 96.295381) (xy 61.484424 96.391189) (xy 61.682426 96.498342) (xy 61.682427 96.498342) (xy 61.682428 96.498343) (xy 61.782519 96.532704) (xy 61.895365 96.571444) (xy 62.117431 96.6085) (xy 62.117435 96.6085) (xy 62.342565 96.6085) (xy 62.342569 96.6085) (xy 62.564635 96.571444) (xy 62.777574 96.498342) (xy 62.975576 96.391189) (xy 63.15324 96.252906) (xy 63.305722 96.087268) (xy 63.394518 95.951354) (xy 63.44852 95.905268) (xy 63.518868 95.895692) (xy 63.583225 95.925669) (xy 63.60548 95.951353) (xy 63.631983 95.991918) (xy 63.694275 96.087265) (xy 63.694279 96.08727) (xy 63.846762 96.252908) (xy 63.920901 96.310613) (xy 64.024424 96.391189) (xy 64.095469 96.429636) (xy 64.145859 96.479648) (xy 64.1615 96.540449) (xy 64.1615 104.43989) (xy 64.1615 104.60011) (xy 64.202968 104.754873) (xy 64.202969 104.754875) (xy 64.20297 104.754877) (xy 64.283075 104.893623) (xy 64.283083 104.893633) (xy 66.751366 107.361916) (xy 66.751371 107.36192) (xy 66.751373 107.361922) (xy 66.890127 107.442032) (xy 66.967124 107.462663) (xy 67.044889 107.4835) (xy 67.04489 107.4835) (xy 67.20511 107.4835) (xy 71.495761 107.4835) (xy 71.563882 107.503502) (xy 71.584856 107.520405) (xy 75.529595 111.465144) (xy 75.563621 111.527456) (xy 75.5665 111.554239) (xy 75.5665 111.635712) (xy 75.546498 111.703833) (xy 75.492842 111.750326) (xy 75.422568 111.76043) (xy 75.399588 111.754885) (xy 75.264639 111.708557) (xy 75.26463 111.708555) (xy 75.220476 111.701187) (xy 75.042569 111.6715) (xy 74.817431 111.6715) (xy 74.690859 111.692621) (xy 74.595369 111.708555) (xy 74.59536 111.708557) (xy 74.382428 111.781656) (xy 74.382426 111.781658) (xy 74.243502 111.85684) (xy 74.184426 111.88881) (xy 74.184424 111.888811) (xy 74.006762 112.027091) (xy 73.854279 112.192729) (xy 73.765483 112.328643) (xy 73.711479 112.374731) (xy 73.641131 112.384306) (xy 73.576774 112.354329) (xy 73.554517 112.328643) (xy 73.46572 112.192729) (xy 73.313237 112.027091) (xy 73.231382 111.963381) (xy 73.135576 111.888811) (xy 72.937574 111.781658) (xy 72.937572 111.781657) (xy 72.937571 111.781656) (xy 72.724639 111.708557) (xy 72.72463 111.708555) (xy 72.680476 111.701187) (xy 72.502569 111.6715) (xy 72.277431 111.6715) (xy 72.150859 111.692621) (xy 72.055369 111.708555) (xy 72.05536 111.708557) (xy 71.842428 111.781656) (xy 71.842426 111.781658) (xy 71.703502 111.85684) (xy 71.644426 111.88881) (xy 71.644424 111.888811) (xy 71.466759 112.027094) (xy 71.405374 112.093775) (xy 71.344521 112.130346) (xy 71.273557 112.128211) (xy 71.215012 112.088049) (xy 71.194618 112.05247) (xy 71.150443 111.934033) (xy 71.062904 111.817095) (xy 70.945965 111.729555) (xy 70.809093 111.678505) (xy 70.748597 111.672) (xy 70.104 111.672) (xy 70.104 112.587749) (xy 70.046853 112.554755) (xy 69.917143 112.52) (xy 69.782857 112.52) (xy 69.653147 112.554755) (xy 69.596 112.587749) (xy 69.596 111.672) (xy 68.951402 111.672) (xy 68.890906 111.678505) (xy 68.754035 111.729555) (xy 68.754034 111.729555) (xy 68.637095 111.817095) (xy 68.549555 111.934034) (xy 68.549553 111.934039) (xy 68.50538 112.05247) (xy 68.462833 112.109306) (xy 68.396313 112.134116) (xy 68.326939 112.119024) (xy 68.294626 112.093777) (xy 68.23324 112.027094) (xy 68.233239 112.027093) (xy 68.233237 112.027091) (xy 68.151382 111.963381) (xy 68.055576 111.888811) (xy 67.857574 111.781658) (xy 67.857572 111.781657) (xy 67.857571 111.781656) (xy 67.644639 111.708557) (xy 67.64463 111.708555) (xy 67.600476 111.701187) (xy 67.422569 111.6715) (xy 67.197431 111.6715) (xy 67.070859 111.692621) (xy 66.975369 111.708555) (xy 66.97536 111.708557) (xy 66.762428 111.781656) (xy 66.762426 111.781658) (xy 66.623502 111.85684) (xy 66.564426 111.88881) (xy 66.564424 111.888811) (xy 66.386762 112.027091) (xy 66.234279 112.192729) (xy 66.145483 112.328643) (xy 66.091479 112.374731) (xy 66.021131 112.384306) (xy 65.956774 112.354329) (xy 65.934517 112.328643) (xy 65.84572 112.192729) (xy 65.693237 112.027091) (xy 65.611382 111.963381) (xy 65.515576 111.888811) (xy 65.317574 111.781658) (xy 65.317572 111.781657) (xy 65.317571 111.781656) (xy 65.104639 111.708557) (xy 65.10463 111.708555) (xy 65.060476 111.701187) (xy 64.882569 111.6715) (xy 64.657431 111.6715) (xy 64.530859 111.692621) (xy 64.435369 111.708555) (xy 64.43536 111.708557) (xy 64.222428 111.781656) (xy 64.222426 111.781658) (xy 64.083502 111.85684) (xy 64.024426 111.88881) (xy 64.024424 111.888811) (xy 63.846762 112.027091) (xy 63.694279 112.192729) (xy 63.605483 112.328643) (xy 63.551479 112.374731) (xy 63.481131 112.384306) (xy 63.416774 112.354329) (xy 63.394517 112.328643) (xy 63.30572 112.192729) (xy 63.153237 112.027091) (xy 63.071382 111.963381) (xy 62.975576 111.888811) (xy 62.777574 111.781658) (xy 62.777572 111.781657) (xy 62.777571 111.781656) (xy 62.564639 111.708557) (xy 62.56463 111.708555) (xy 62.520476 111.701187) (xy 62.342569 111.6715) (xy 62.117431 111.6715) (xy 61.990859 111.692621) (xy 61.895369 111.708555) (xy 61.89536 111.708557) (xy 61.682428 111.781656) (xy 61.682426 111.781658) (xy 61.543502 111.85684) (xy 61.484426 111.88881) (xy 61.484424 111.888811) (xy 61.306762 112.027091) (xy 61.154279 112.192729) (xy 61.065483 112.328643) (xy 61.011479 112.374731) (xy 60.941131 112.384306) (xy 60.876774 112.354329) (xy 60.854517 112.328643) (xy 60.76572 112.192729) (xy 60.613237 112.027091) (xy 60.531382 111.963381) (xy 60.435576 111.888811) (xy 60.237574 111.781658) (xy 60.237572 111.781657) (xy 60.237571 111.781656) (xy 60.024639 111.708557) (xy 60.02463 111.708555) (xy 59.980476 111.701187) (xy 59.802569 111.6715) (xy 59.577431 111.6715) (xy 59.450859 111.692621) (xy 59.355369 111.708555) (xy 59.35536 111.708557) (xy 59.142428 111.781656) (xy 59.142426 111.781658) (xy 59.003502 111.85684) (xy 58.944426 111.88881) (xy 58.944424 111.888811) (xy 58.766759 112.027094) (xy 58.705374 112.093775) (xy 58.644521 112.130346) (xy 58.573557 112.128211) (xy 58.515012 112.088049) (xy 58.494618 112.05247) (xy 58.450443 111.934033) (xy 58.362904 111.817095) (xy 58.245965 111.729555) (xy 58.109093 111.678505) (xy 58.048597 111.672) (xy 57.404 111.672) (xy 57.404 112.587749) (xy 57.346853 112.554755) (xy 57.217143 112.52) (xy 57.082857 112.52) (xy 56.953147 112.554755) (xy 56.896 112.587749) (xy 56.896 111.672) (xy 56.251402 111.672) (xy 56.190906 111.678505) (xy 56.054035 111.729555) (xy 56.054034 111.729555) (xy 55.937095 111.817095) (xy 55.849555 111.934034) (xy 55.849553 111.934039) (xy 55.80538 112.05247) (xy 55.762833 112.109306) (xy 55.696313 112.134116) (xy 55.626939 112.119024) (xy 55.594626 112.093777) (xy 55.53324 112.027094) (xy 55.533239 112.027093) (xy 55.533237 112.027091) (xy 55.451382 111.963381) (xy 55.355576 111.888811) (xy 55.157574 111.781658) (xy 55.157572 111.781657) (xy 55.157571 111.781656) (xy 54.944639 111.708557) (xy 54.94463 111.708555) (xy 54.900476 111.701187) (xy 54.722569 111.6715) (xy 54.497431 111.6715) (xy 54.370859 111.692621) (xy 54.275369 111.708555) (xy 54.27536 111.708557) (xy 54.062428 111.781656) (xy 54.062426 111.781658) (xy 53.923502 111.85684) (xy 53.864426 111.88881) (xy 53.864424 111.888811) (xy 53.686762 112.027091) (xy 53.534279 112.192729) (xy 53.445483 112.328643) (xy 53.391479 112.374731) (xy 53.321131 112.384306) (xy 53.256774 112.354329) (xy 53.234517 112.328643) (xy 53.14572 112.192729) (xy 52.993237 112.027091) (xy 52.911382 111.963381) (xy 52.815576 111.888811) (xy 52.617574 111.781658) (xy 52.617572 111.781657) (xy 52.617571 111.781656) (xy 52.404639 111.708557) (xy 52.40463 111.708555) (xy 52.360476 111.701187) (xy 52.182569 111.6715) (xy 51.957431 111.6715) (xy 51.830859 111.692621) (xy 51.735369 111.708555) (xy 51.73536 111.708557) (xy 51.522428 111.781656) (xy 51.522426 111.781658) (xy 51.383502 111.85684) (xy 51.324426 111.88881) (xy 51.324424 111.888811) (xy 51.146762 112.027091) (xy 50.994279 112.192729) (xy 50.905483 112.328643) (xy 50.851479 112.374731) (xy 50.781131 112.384306) (xy 50.716774 112.354329) (xy 50.694517 112.328643) (xy 50.60572 112.192729) (xy 50.453237 112.027091) (xy 50.371382 111.963381) (xy 50.275576 111.888811) (xy 50.077574 111.781658) (xy 50.077572 111.781657) (xy 50.077571 111.781656) (xy 49.864639 111.708557) (xy 49.86463 111.708555) (xy 49.820476 111.701187) (xy 49.642569 111.6715) (xy 49.417431 111.6715) (xy 49.290859 111.692621) (xy 49.195369 111.708555) (xy 49.19536 111.708557) (xy 48.982428 111.781656) (xy 48.982426 111.781658) (xy 48.843502 111.85684) (xy 48.784426 111.88881) (xy 48.784424 111.888811) (xy 48.606762 112.027091) (xy 48.454279 112.192729) (xy 48.365483 112.328643) (xy 48.311479 112.374731) (xy 48.241131 112.384306) (xy 48.176774 112.354329) (xy 48.154517 112.328643) (xy 48.06572 112.192729) (xy 47.913237 112.027091) (xy 47.831382 111.963381) (xy 47.735576 111.888811) (xy 47.537574 111.781658) (xy 47.537572 111.781657) (xy 47.537571 111.781656) (xy 47.324639 111.708557) (xy 47.32463 111.708555) (xy 47.280476 111.701187) (xy 47.102569 111.6715) (xy 46.877431 111.6715) (xy 46.750859 111.692621) (xy 46.655369 111.708555) (xy 46.65536 111.708557) (xy 46.442428 111.781656) (xy 46.442426 111.781658) (xy 46.303502 111.85684) (xy 46.244426 111.88881) (xy 46.244424 111.888811) (xy 46.066759 112.027094) (xy 46.005374 112.093775) (xy 45.944521 112.130346) (xy 45.873557 112.128211) (xy 45.815012 112.088049) (xy 45.794618 112.05247) (xy 45.750443 111.934033) (xy 45.662904 111.817095) (xy 45.545965 111.729555) (xy 45.409093 111.678505) (xy 45.348597 111.672) (xy 44.704 111.672) (xy 44.704 112.587749) (xy 44.646853 112.554755) (xy 44.517143 112.52) (xy 44.382857 112.52) (xy 44.253147 112.554755) (xy 44.196 112.587749) (xy 44.196 111.672) (xy 43.551402 111.672) (xy 43.490906 111.678505) (xy 43.354035 111.729555) (xy 43.354034 111.729555) (xy 43.237095 111.817095) (xy 43.149555 111.934034) (xy 43.149553 111.934039) (xy 43.10538 112.05247) (xy 43.062833 112.109306) (xy 42.996313 112.134116) (xy 42.926939 112.119024) (xy 42.894626 112.093777) (xy 42.83324 112.027094) (xy 42.833239 112.027093) (xy 42.833237 112.027091) (xy 42.751382 111.963381) (xy 42.655576 111.888811) (xy 42.457574 111.781658) (xy 42.457572 111.781657) (xy 42.457571 111.781656) (xy 42.244639 111.708557) (xy 42.24463 111.708555) (xy 42.200476 111.701187) (xy 42.022569 111.6715) (xy 41.797431 111.6715) (xy 41.670859 111.692621) (xy 41.575369 111.708555) (xy 41.57536 111.708557) (xy 41.362428 111.781656) (xy 41.362426 111.781658) (xy 41.223502 111.85684) (xy 41.164426 111.88881) (xy 41.164424 111.888811) (xy 40.986762 112.027091) (xy 40.834279 112.192729) (xy 40.745483 112.328643) (xy 40.691479 112.374731) (xy 40.621131 112.384306) (xy 40.556774 112.354329) (xy 40.534517 112.328643) (xy 40.44572 112.192729) (xy 40.293237 112.027091) (xy 40.211382 111.963381) (xy 40.115576 111.888811) (xy 39.917574 111.781658) (xy 39.917572 111.781657) (xy 39.917571 111.781656) (xy 39.704639 111.708557) (xy 39.70463 111.708555) (xy 39.660476 111.701187) (xy 39.482569 111.6715) (xy 39.257431 111.6715) (xy 39.130859 111.692621) (xy 39.035369 111.708555) (xy 39.03536 111.708557) (xy 38.822428 111.781656) (xy 38.822426 111.781658) (xy 38.683502 111.85684) (xy 38.624426 111.88881) (xy 38.624424 111.888811) (xy 38.446762 112.027091) (xy 38.294279 112.192729) (xy 38.294275 112.192734) (xy 38.231983 112.288081) (xy 38.177979 112.33417) (xy 38.107632 112.343745) (xy 38.043274 112.313768) (xy 38.005341 112.253755) (xy 38.0005 112.219166) (xy 38.0005 106.774454) (xy 38.3495 106.774454) (xy 38.3495 106.955546) (xy 38.377829 107.134409) (xy 38.433789 107.306639) (xy 38.516004 107.467994) (xy 38.622447 107.614501) (xy 38.622449 107.614503) (xy 38.622451 107.614506) (xy 38.750493 107.742548) (xy 38.750496 107.74255) (xy 38.750499 107.742553) (xy 38.897006 107.848996) (xy 39.058361 107.931211) (xy 39.230591 107.987171) (xy 39.409454 108.0155) (xy 39.409457 108.0155) (xy 39.590543 108.0155) (xy 39.590546 108.0155) (xy 39.769409 107.987171) (xy 39.941639 107.931211) (xy 40.102994 107.848996) (xy 40.249501 107.742553) (xy 40.377553 107.614501) (xy 40.483996 107.467994) (xy 40.566211 107.306639) (xy 40.622171 107.134409) (xy 40.6505 106.955546) (xy 40.6505 106.774454) (xy 40.622171 106.595591) (xy 40.580213 106.466455) (xy 41.5295 106.466455) (xy 41.5295 106.663544) (xy 41.567949 106.856835) (xy 41.56795 106.856838) (xy 41.59274 106.916687) (xy 41.643368 107.038914) (xy 41.752861 107.202782) (xy 41.892218 107.342139) (xy 42.056086 107.451632) (xy 42.238165 107.527051) (xy 42.431459 107.5655) (xy 42.628541 107.5655) (xy 42.821835 107.527051) (xy 43.003914 107.451632) (xy 43.167782 107.342139) (xy 43.307139 107.202782) (xy 43.416632 107.038914) (xy 43.492051 106.856835) (xy 43.5305 106.663541) (xy 43.5305 106.466459) (xy 43.492051 106.273165) (xy 43.416632 106.091086) (xy 43.307139 105.927218) (xy 43.167782 105.787861) (xy 43.003914 105.678368) (xy 42.89116 105.631664) (xy 42.821838 105.60295) (xy 42.821835 105.602949) (xy 42.628544 105.5645) (xy 42.628541 105.5645) (xy 42.431459 105.5645) (xy 42.431455 105.5645) (xy 42.238164 105.602949) (xy 42.238161 105.60295) (xy 42.056085 105.678368) (xy 41.892222 105.787858) (xy 41.892215 105.787863) (xy 41.752863 105.927215) (xy 41.752858 105.927222) (xy 41.643368 106.091085) (xy 41.56795 106.273161) (xy 41.567949 106.273164) (xy 41.5295 106.466455) (xy 40.580213 106.466455) (xy 40.566211 106.423361) (xy 40.483996 106.262006) (xy 40.377553 106.115499) (xy 40.37755 106.115496) (xy 40.377548 106.115493) (xy 40.249506 105.987451) (xy 40.249503 105.987449) (xy 40.249501 105.987447) (xy 40.102994 105.881004) (xy 39.941639 105.798789) (xy 39.941636 105.798788) (xy 39.941634 105.798787) (xy 39.769412 105.74283) (xy 39.769409 105.742829) (xy 39.590546 105.7145) (xy 39.409454 105.7145) (xy 39.230591 105.742829) (xy 39.230588 105.742829) (xy 39.230587 105.74283) (xy 39.058365 105.798787) (xy 39.058359 105.79879) (xy 38.897002 105.881006) (xy 38.750496 105.987449) (xy 38.750493 105.987451) (xy 38.622451 106.115493) (xy 38.622449 106.115496) (xy 38.516006 106.262002) (xy 38.43379 106.423359) (xy 38.433787 106.423365) (xy 38.380563 106.587175) (xy 38.377829 106.595591) (xy 38.3495 106.774454) (xy 38.0005 106.774454) (xy 38.0005 102.103792) (xy 38.020502 102.035671) (xy 38.074158 101.989178) (xy 38.144432 101.979074) (xy 38.209012 102.008568) (xy 38.241886 102.053176) (xy 38.257016 102.087668) (xy 38.257017 102.087671) (xy 38.384685 102.283083) (xy 38.542774 102.454813) (xy 38.542778 102.454817) (xy 38.584051 102.486941) (xy 38.726983 102.59819) (xy 38.932273 102.709287) (xy 39.153049 102.78508) (xy 39.383288 102.8235) (xy 39.383292 102.8235) (xy 39.616708 102.8235) (xy 39.616712 102.8235) (xy 39.846951 102.78508) (xy 40.067727 102.709287) (xy 40.273017 102.59819) (xy 40.45722 102.454818) (xy 40.488811 102.420502) (xy 40.615314 102.283083) (xy 40.742984 102.087669) (xy 40.836749 101.873907) (xy 40.87699 101.715) (xy 41.266693 101.715) (xy 41.280595 101.87391) (xy 41.285885 101.93437) (xy 41.342879 102.147073) (xy 41.342881 102.147079) (xy 41.42336 102.319668) (xy 41.435944 102.346654) (xy 41.559003 102.5224) (xy 41.562251 102.527038) (xy 41.562254 102.527042) (xy 41.717957 102.682745) (xy 41.717961 102.682748) (xy 41.717962 102.682749) (xy 41.898346 102.809056) (xy 42.097924 102.90212) (xy 42.310629 102.959115) (xy 42.53 102.978307) (xy 42.749371 102.959115) (xy 42.962076 102.90212) (xy 43.161654 102.809056) (xy 43.342038 102.682749) (xy 43.497749 102.527038) (xy 43.624056 102.346654) (xy 43.71712 102.147076) (xy 43.774115 101.934371) (xy 43.793307 101.715) (xy 43.774115 101.495629) (xy 43.71712 101.282924) (xy 43.624056 101.083347) (xy 43.497749 100.902962) (xy 43.342038 100.747251) (xy 43.161654 100.620944) (xy 43.06155 100.574265) (xy 42.962079 100.527881) (xy 42.962073 100.527879) (xy 42.872178 100.503791) (xy 42.749371 100.470885) (xy 42.53 100.451693) (xy 42.310629 100.470885) (xy 42.097926 100.527879) (xy 42.09792 100.527881) (xy 41.898346 100.620944) (xy 41.717965 100.747248) (xy 41.717959 100.747253) (xy 41.562253 100.902959) (xy 41.562248 100.902965) (xy 41.435944 101.083346) (xy 41.342881 101.28292) (xy 41.342879 101.282926) (xy 41.34224 101.285312) (xy 41.285885 101.495629) (xy 41.266693 101.715) (xy 40.87699 101.715) (xy 40.894051 101.647626) (xy 40.913327 101.415) (xy 40.894051 101.182374) (xy 40.888102 101.158882) (xy 40.83675 100.956096) (xy 40.836747 100.956089) (xy 40.823265 100.925354) (xy 40.742984 100.742331) (xy 40.713339 100.696956) (xy 40.615314 100.546916) (xy 40.457225 100.375186) (xy 40.457221 100.375182) (xy 40.365118 100.303496) (xy 40.273017 100.23181) (xy 40.067727 100.120713) (xy 40.067724 100.120712) (xy 40.067723 100.120711) (xy 39.846955 100.044921) (xy 39.846948 100.044919) (xy 39.748411 100.028476) (xy 39.616712 100.0065) (xy 39.383288 100.0065) (xy 39.268066 100.025727) (xy 39.153051 100.044919) (xy 39.153044 100.044921) (xy 38.932276 100.120711) (xy 38.932273 100.120713) (xy 38.726985 100.231809) (xy 38.726983 100.23181) (xy 38.542778 100.375182) (xy 38.542774 100.375186) (xy 38.384685 100.546916) (xy 38.257015 100.742331) (xy 38.241887 100.776821) (xy 38.196206 100.831169) (xy 38.128394 100.852193) (xy 38.05998 100.833217) (xy 38.012686 100.780266) (xy 38.0005 100.726207) (xy 38.0005 96.060833) (xy 38.020502 95.992712) (xy 38.074158 95.946219) (xy 38.144432 95.936115) (xy 38.209012 95.965609) (xy 38.231983 95.991918) (xy 38.294275 96.087265) (xy 38.294279 96.08727) (xy 38.446762 96.252908) (xy 38.501331 96.295381) (xy 38.624424 96.391189) (xy 38.822426 96.498342) (xy 38.822427 96.498342) (xy 38.822428 96.498343) (xy 38.922519 96.532704) (xy 39.035365 96.571444) (xy 39.257431 96.6085) (xy 39.257435 96.6085) (xy 39.482565 96.6085) (xy 39.482569 96.6085) (xy 39.704635 96.571444) (xy 39.917574 96.498342) (xy 40.115576 96.391189) (xy 40.29324 96.252906) (xy 40.445722 96.087268) (xy 40.534518 95.951354) (xy 40.58852 95.905268) (xy 40.658868 95.895692) (xy 40.723225 95.925669) (xy 40.74548 95.951353) (xy 40.771983 95.991918) (xy 40.834275 96.087265) (xy 40.834279 96.08727) (xy 40.986762 96.252908) (xy 41.041331 96.295381) (xy 41.164424 96.391189) (xy 41.362426 96.498342) (xy 41.362427 96.498342) (xy 41.362428 96.498343) (xy 41.462519 96.532704) (xy 41.575365 96.571444) (xy 41.797431 96.6085) (xy 41.797435 96.6085) (xy 42.022565 96.6085) (xy 42.022569 96.6085) (xy 42.244635 96.571444) (xy 42.457574 96.498342) (xy 42.655576 96.391189) (xy 42.83324 96.252906) (xy 42.894626 96.186222) (xy 42.955476 96.149654) (xy 43.026441 96.151787) (xy 43.084986 96.191949) (xy 43.10538 96.227529) (xy 43.149553 96.345961) (xy 43.149555 96.345965) (xy 43.237095 96.462904) (xy 43.354034 96.550444) (xy 43.490906 96.601494) (xy 43.551402 96.607999) (xy 43.551415 96.608) (xy 44.196 96.608) (xy 44.196 95.69225) (xy 44.253147 95.725245) (xy 44.382857 95.76) (xy 44.517143 95.76) (xy 44.646853 95.725245) (xy 44.704 95.69225) ) ) (filled_polygon (layer "In2.Cu") (pts (xy 70.104 96.608) (xy 70.748585 96.608) (xy 70.748597 96.607999) (xy 70.809093 96.601494) (xy 70.945964 96.550444) (xy 70.945965 96.550444) (xy 71.062904 96.462904) (xy 71.150444 96.345965) (xy 71.194618 96.22753) (xy 71.237165 96.170694) (xy 71.303685 96.145883) (xy 71.373059 96.160974) (xy 71.405372 96.186222) (xy 71.42959 96.212529) (xy 71.466762 96.252908) (xy 71.521331 96.295381) (xy 71.644424 96.391189) (xy 71.842426 96.498342) (xy 71.842427 96.498342) (xy 71.842428 96.498343) (xy 71.942519 96.532704) (xy 72.055365 96.571444) (xy 72.277431 96.6085) (xy 72.277435 96.6085) (xy 72.502565 96.6085) (xy 72.502569 96.6085) (xy 72.724635 96.571444) (xy 72.937574 96.498342) (xy 73.135576 96.391189) (xy 73.31324 96.252906) (xy 73.465722 96.087268) (xy 73.554518 95.951354) (xy 73.60852 95.905268) (xy 73.678868 95.895692) (xy 73.743225 95.925669) (xy 73.76548 95.951353) (xy 73.791983 95.991918) (xy 73.854275 96.087265) (xy 73.854279 96.08727) (xy 74.006762 96.252908) (xy 74.061331 96.295381) (xy 74.184424 96.391189) (xy 74.382426 96.498342) (xy 74.382427 96.498342) (xy 74.382428 96.498343) (xy 74.482519 96.532704) (xy 74.595365 96.571444) (xy 74.817431 96.6085) (xy 74.817435 96.6085) (xy 75.042565 96.6085) (xy 75.042569 96.6085) (xy 75.264635 96.571444) (xy 75.477574 96.498342) (xy 75.675576 96.391189) (xy 75.85324 96.252906) (xy 76.005722 96.087268) (xy 76.094518 95.951354) (xy 76.14852 95.905268) (xy 76.218868 95.895692) (xy 76.283225 95.925669) (xy 76.30548 95.951353) (xy 76.331983 95.991918) (xy 76.394275 96.087265) (xy 76.394279 96.08727) (xy 76.546762 96.252908) (xy 76.601331 96.295381) (xy 76.724424 96.391189) (xy 76.922426 96.498342) (xy 76.922427 96.498342) (xy 76.922428 96.498343) (xy 77.022519 96.532704) (xy 77.135365 96.571444) (xy 77.357431 96.6085) (xy 77.357435 96.6085) (xy 77.582565 96.6085) (xy 77.582569 96.6085) (xy 77.804635 96.571444) (xy 78.017574 96.498342) (xy 78.215576 96.391189) (xy 78.39324 96.252906) (xy 78.545722 96.087268) (xy 78.634518 95.951354) (xy 78.68852 95.905268) (xy 78.758868 95.895692) (xy 78.823225 95.925669) (xy 78.84548 95.951353) (xy 78.871983 95.991918) (xy 78.934275 96.087265) (xy 78.934279 96.08727) (xy 79.086762 96.252908) (xy 79.141331 96.295381) (xy 79.264424 96.391189) (xy 79.462426 96.498342) (xy 79.462432 96.498344) (xy 79.540702 96.525214) (xy 79.598638 96.56625) (xy 79.62519 96.632095) (xy 79.611929 96.701842) (xy 79.573855 96.746321) (xy 79.552782 96.761632) (xy 79.552778 96.761635) (xy 79.408034 96.906379) (xy 79.287714 97.071987) (xy 79.194781 97.254379) (xy 79.194778 97.254385) (xy 79.131524 97.449061) (xy 79.131523 97.449064) (xy 79.131523 97.449066) (xy 79.0995 97.651248) (xy 79.0995 97.687708) (xy 79.0995 110.487708) (xy 79.0995 110.5536) (xy 79.0995 110.655952) (xy 79.128404 110.838441) (xy 79.131524 110.858138) (xy 79.182531 111.015122) (xy 79.19478 111.052819) (xy 79.203272 111.069485) (xy 79.287714 111.235212) (xy 79.408034 111.40082) (xy 79.552774 111.54556) (xy 79.556236 111.548517) (xy 79.595044 111.607969) (xy 79.59555 111.678964) (xy 79.557592 111.738962) (xy 79.515317 111.7635) (xy 79.462432 111.781656) (xy 79.462426 111.781658) (xy 79.323502 111.85684) (xy 79.264426 111.88881) (xy 79.264424 111.888811) (xy 79.086762 112.027091) (xy 78.934279 112.192729) (xy 78.845483 112.328643) (xy 78.791479 112.374731) (xy 78.721131 112.384306) (xy 78.656774 112.354329) (xy 78.634517 112.328643) (xy 78.54572 112.192729) (xy 78.393237 112.027091) (xy 78.311382 111.963381) (xy 78.215576 111.888811) (xy 78.017574 111.781658) (xy 78.017572 111.781657) (xy 78.017571 111.781656) (xy 77.804639 111.708557) (xy 77.80463 111.708555) (xy 77.760476 111.701187) (xy 77.582569 111.6715) (xy 77.357431 111.6715) (xy 77.230859 111.692621) (xy 77.135369 111.708555) (xy 77.13536 111.708557) (xy 76.950412 111.77205) (xy 76.879487 111.77525) (xy 76.818092 111.739598) (xy 76.785718 111.676412) (xy 76.7835 111.652877) (xy 76.7835 111.16989) (xy 76.763173 111.094029) (xy 76.756597 111.069485) (xy 76.752131 111.052819) (xy 76.742034 111.015134) (xy 76.742033 111.015133) (xy 76.742032 111.015127) (xy 76.664303 110.880497) (xy 76.661923 110.876375) (xy 76.661915 110.876365) (xy 72.173633 106.388083) (xy 72.173623 106.388075) (xy 72.034877 106.30797) (xy 72.034874 106.307969) (xy 72.034873 106.307968) (xy 72.034871 106.307967) (xy 72.03487 106.307967) (xy 71.957491 106.287234) (xy 71.880111 106.2665) (xy 71.880109 106.2665) (xy 67.429239 106.2665) (xy 67.361118 106.246498) (xy 67.340144 106.229595) (xy 65.415405 104.304856) (xy 65.381379 104.242544) (xy 65.3785 104.215761) (xy 65.3785 98.385354) (xy 67.9495 98.385354) (xy 67.9495 98.566446) (xy 67.977829 98.745309) (xy 68.033789 98.917539) (xy 68.116004 99.078894) (xy 68.222447 99.225401) (xy 68.222449 99.225403) (xy 68.222451 99.225406) (xy 68.350493 99.353448) (xy 68.350496 99.35345) (xy 68.350499 99.353453) (xy 68.497006 99.459896) (xy 68.658361 99.542111) (xy 68.830591 99.598071) (xy 68.978211 99.621451) (xy 69.042363 99.651864) (xy 69.07989 99.712132) (xy 69.078876 99.783121) (xy 69.039643 99.842293) (xy 68.978211 99.870348) (xy 68.830591 99.893729) (xy 68.830588 99.893729) (xy 68.830587 99.89373) (xy 68.658365 99.949687) (xy 68.658359 99.94969) (xy 68.497002 100.031906) (xy 68.350496 100.138349) (xy 68.350493 100.138351) (xy 68.222451 100.266393) (xy 68.222449 100.266396) (xy 68.116006 100.412902) (xy 68.03379 100.574259) (xy 68.033787 100.574265) (xy 67.978225 100.745272) (xy 67.977829 100.746491) (xy 67.9495 100.925354) (xy 67.9495 101.106446) (xy 67.977829 101.285309) (xy 68.033789 101.457539) (xy 68.116004 101.618894) (xy 68.222447 101.765401) (xy 68.222449 101.765403) (xy 68.222451 101.765406) (xy 68.350493 101.893448) (xy 68.350496 101.89345) (xy 68.350499 101.893453) (xy 68.497006 101.999896) (xy 68.658361 102.082111) (xy 68.830591 102.138071) (xy 68.978211 102.161451) (xy 69.042363 102.191864) (xy 69.07989 102.252132) (xy 69.078876 102.323121) (xy 69.039643 102.382293) (xy 68.978211 102.410348) (xy 68.830591 102.433729) (xy 68.830588 102.433729) (xy 68.830587 102.43373) (xy 68.658365 102.489687) (xy 68.658359 102.48969) (xy 68.497002 102.571906) (xy 68.350496 102.678349) (xy 68.350493 102.678351) (xy 68.222451 102.806393) (xy 68.222449 102.806396) (xy 68.116006 102.952902) (xy 68.03379 103.114259) (xy 68.033787 103.114265) (xy 67.97783 103.286487) (xy 67.977829 103.286491) (xy 67.9495 103.465354) (xy 67.9495 103.646446) (xy 67.977829 103.825309) (xy 67.97783 103.825312) (xy 68.030176 103.986421) (xy 68.033789 103.997539) (xy 68.116004 104.158894) (xy 68.116006 104.158897) (xy 68.142321 104.195116) (xy 68.222447 104.305401) (xy 68.222449 104.305403) (xy 68.222451 104.305406) (xy 68.350493 104.433448) (xy 68.350496 104.43345) (xy 68.350499 104.433453) (xy 68.497006 104.539896) (xy 68.658361 104.622111) (xy 68.830591 104.678071) (xy 69.009454 104.7064) (xy 69.009457 104.7064) (xy 69.190543 104.7064) (xy 69.190546 104.7064) (xy 69.369409 104.678071) (xy 69.541639 104.622111) (xy 69.702994 104.539896) (xy 69.849501 104.433453) (xy 69.977553 104.305401) (xy 70.083996 104.158894) (xy 70.166211 103.997539) (xy 70.222171 103.825309) (xy 70.2505 103.646446) (xy 70.2505 103.465354) (xy 70.222171 103.286491) (xy 70.166211 103.114261) (xy 70.083996 102.952906) (xy 69.977553 102.806399) (xy 69.97755 102.806396) (xy 69.977548 102.806393) (xy 69.849506 102.678351) (xy 69.849503 102.678349) (xy 69.849501 102.678347) (xy 69.702994 102.571904) (xy 69.541639 102.489689) (xy 69.541636 102.489688) (xy 69.541634 102.489687) (xy 69.369412 102.43373) (xy 69.369409 102.433729) (xy 69.221787 102.410348) (xy 69.157636 102.379937) (xy 69.120109 102.319668) (xy 69.121123 102.248679) (xy 69.160356 102.189507) (xy 69.221786 102.161451) (xy 69.369409 102.138071) (xy 69.541639 102.082111) (xy 69.702994 101.999896) (xy 69.849501 101.893453) (xy 69.977553 101.765401) (xy 70.083996 101.618894) (xy 70.166211 101.457539) (xy 70.222171 101.285309) (xy 70.2505 101.106446) (xy 70.2505 100.925354) (xy 70.222171 100.746491) (xy 70.166211 100.574261) (xy 70.083996 100.412906) (xy 69.977553 100.266399) (xy 69.97755 100.266396) (xy 69.977548 100.266393) (xy 69.849506 100.138351) (xy 69.849503 100.138349) (xy 69.849501 100.138347) (xy 69.739216 100.058221) (xy 69.702997 100.031906) (xy 69.702996 100.031905) (xy 69.702994 100.031904) (xy 69.541639 99.949689) (xy 69.541636 99.949688) (xy 69.541634 99.949687) (xy 69.369412 99.89373) (xy 69.369409 99.893729) (xy 69.221787 99.870348) (xy 69.157636 99.839937) (xy 69.120109 99.779668) (xy 69.121123 99.708679) (xy 69.160356 99.649507) (xy 69.221786 99.621451) (xy 69.369409 99.598071) (xy 69.541639 99.542111) (xy 69.702994 99.459896) (xy 69.849501 99.353453) (xy 69.977553 99.225401) (xy 70.083996 99.078894) (xy 70.166211 98.917539) (xy 70.222171 98.745309) (xy 70.2505 98.566446) (xy 70.2505 98.385354) (xy 70.222171 98.206491) (xy 70.166211 98.034261) (xy 70.083996 97.872906) (xy 69.977553 97.726399) (xy 69.97755 97.726396) (xy 69.977548 97.726393) (xy 69.849506 97.598351) (xy 69.849503 97.598349) (xy 69.849501 97.598347) (xy 69.702994 97.491904) (xy 69.541639 97.409689) (xy 69.541636 97.409688) (xy 69.541634 97.409687) (xy 69.369412 97.35373) (xy 69.369409 97.353729) (xy 69.190546 97.3254) (xy 69.009454 97.3254) (xy 68.830591 97.353729) (xy 68.830588 97.353729) (xy 68.830587 97.35373) (xy 68.658365 97.409687) (xy 68.658359 97.40969) (xy 68.497002 97.491906) (xy 68.350496 97.598349) (xy 68.350493 97.598351) (xy 68.222451 97.726393) (xy 68.222449 97.726396) (xy 68.116006 97.872902) (xy 68.03379 98.034259) (xy 68.033787 98.034265) (xy 68.010115 98.107122) (xy 67.977829 98.206491) (xy 67.9495 98.385354) (xy 65.3785 98.385354) (xy 65.3785 96.540449) (xy 65.398502 96.472328) (xy 65.44453 96.429636) (xy 65.515576 96.391189) (xy 65.69324 96.252906) (xy 65.845722 96.087268) (xy 65.934518 95.951354) (xy 65.98852 95.905268) (xy 66.058868 95.895692) (xy 66.123225 95.925669) (xy 66.14548 95.951353) (xy 66.171983 95.991918) (xy 66.234275 96.087265) (xy 66.234279 96.08727) (xy 66.386762 96.252908) (xy 66.441331 96.295381) (xy 66.564424 96.391189) (xy 66.762426 96.498342) (xy 66.762427 96.498342) (xy 66.762428 96.498343) (xy 66.862519 96.532704) (xy 66.975365 96.571444) (xy 67.197431 96.6085) (xy 67.197435 96.6085) (xy 67.422565 96.6085) (xy 67.422569 96.6085) (xy 67.644635 96.571444) (xy 67.857574 96.498342) (xy 68.055576 96.391189) (xy 68.23324 96.252906) (xy 68.294626 96.186222) (xy 68.355476 96.149654) (xy 68.426441 96.151787) (xy 68.484986 96.191949) (xy 68.50538 96.227529) (xy 68.549553 96.345961) (xy 68.549555 96.345965) (xy 68.637095 96.462904) (xy 68.754034 96.550444) (xy 68.890906 96.601494) (xy 68.951402 96.607999) (xy 68.951415 96.608) (xy 69.596 96.608) (xy 69.596 95.69225) (xy 69.653147 95.725245) (xy 69.782857 95.76) (xy 69.917143 95.76) (xy 70.046853 95.725245) (xy 70.104 95.69225) ) ) (filled_polygon (layer "B.Cu") (pts (xy 115.002748 54.50062) (xy 115.386661 54.517382) (xy 115.39761 54.518339) (xy 115.775883 54.56814) (xy 115.786699 54.570048) (xy 116.159184 54.652626) (xy 116.169802 54.655471) (xy 116.533668 54.770197) (xy 116.543997 54.773956) (xy 116.896494 54.919965) (xy 116.906456 54.924611) (xy 117.244875 55.100781) (xy 117.254378 55.106267) (xy 117.576174 55.311274) (xy 117.585166 55.31757) (xy 117.887863 55.549839) (xy 117.896283 55.556904) (xy 118.17757 55.814656) (xy 118.185343 55.822429) (xy 118.443095 56.103716) (xy 118.45016 56.112136) (xy 118.682429 56.414833) (xy 118.688728 56.423829) (xy 118.893727 56.745613) (xy 118.899223 56.755133) (xy 119.075388 57.093543) (xy 119.080034 57.103505) (xy 119.226043 57.456002) (xy 119.229802 57.466331) (xy 119.344528 57.830197) (xy 119.347373 57.840815) (xy 119.42995 58.213296) (xy 119.431859 58.224121) (xy 119.481659 58.602388) (xy 119.482617 58.613338) (xy 119.49938 58.997251) (xy 119.4995 59.002747) (xy 119.4995 130.497252) (xy 119.49938 130.502748) (xy 119.482617 130.886661) (xy 119.481659 130.897611) (xy 119.431859 131.275878) (xy 119.42995 131.286703) (xy 119.347373 131.659184) (xy 119.344528 131.669802) (xy 119.229802 132.033668) (xy 119.226043 132.043997) (xy 119.080034 132.396494) (xy 119.075388 132.406456) (xy 118.899223 132.744866) (xy 118.893727 132.754386) (xy 118.688734 133.076162) (xy 118.682429 133.085166) (xy 118.45016 133.387863) (xy 118.443095 133.396283) (xy 118.185343 133.67757) (xy 118.17757 133.685343) (xy 117.896283 133.943095) (xy 117.887863 133.95016) (xy 117.585166 134.182429) (xy 117.576162 134.188734) (xy 117.254386 134.393727) (xy 117.244866 134.399223) (xy 116.906456 134.575388) (xy 116.896494 134.580034) (xy 116.543997 134.726043) (xy 116.533668 134.729802) (xy 116.169802 134.844528) (xy 116.159184 134.847373) (xy 115.786703 134.92995) (xy 115.775878 134.931859) (xy 115.397611 134.981659) (xy 115.386661 134.982617) (xy 115.002748 134.99938) (xy 114.997252 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.216007 131.8618) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.152055 131.656607) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.06629 131.261829) (xy 38.018339 130.89761) (xy 38.017382 130.886661) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 121.034602) (xy 39.262 121.034602) (xy 39.262 121.6792) (xy 40.189297 121.6792) (xy 40.154075 121.740207) (xy 40.12 121.867374) (xy 40.12 121.999026) (xy 40.154075 122.126193) (xy 40.189297 122.1872) (xy 39.262 122.1872) (xy 39.262 122.831797) (xy 39.268505 122.892293) (xy 39.319555 123.029164) (xy 39.319555 123.029165) (xy 39.407095 123.146104) (xy 39.524034 123.233644) (xy 39.660906 123.284694) (xy 39.721402 123.291199) (xy 39.721415 123.2912) (xy 40.366 123.2912) (xy 40.366 122.363902) (xy 40.427007 122.399125) (xy 40.554174 122.4332) (xy 40.685826 122.4332) (xy 40.812993 122.399125) (xy 40.874 122.363902) (xy 40.874 123.2912) (xy 41.518585 123.2912) (xy 41.518597 123.291199) (xy 41.579093 123.284694) (xy 41.715964 123.233644) (xy 41.715965 123.233644) (xy 41.832904 123.146104) (xy 41.920444 123.029165) (xy 41.964618 122.91073) (xy 42.007165 122.853894) (xy 42.073685 122.829083) (xy 42.143059 122.844174) (xy 42.175372 122.869422) (xy 42.196427 122.892293) (xy 42.236762 122.936108) (xy 42.244664 122.942258) (xy 42.414424 123.074389) (xy 42.612426 123.181542) (xy 42.612427 123.181542) (xy 42.612428 123.181543) (xy 42.724227 123.219923) (xy 42.825365 123.254644) (xy 43.047431 123.2917) (xy 43.047435 123.2917) (xy 43.272565 123.2917) (xy 43.272569 123.2917) (xy 43.494635 123.254644) (xy 43.707574 123.181542) (xy 43.905576 123.074389) (xy 44.08324 122.936106) (xy 44.235722 122.770468) (xy 44.324518 122.634554) (xy 44.37852 122.588468) (xy 44.448868 122.578892) (xy 44.513225 122.608869) (xy 44.53548 122.634553) (xy 44.540785 122.642672) (xy 44.624275 122.770465) (xy 44.624279 122.77047) (xy 44.776762 122.936108) (xy 44.784664 122.942258) (xy 44.954424 123.074389) (xy 45.152426 123.181542) (xy 45.152427 123.181542) (xy 45.152428 123.181543) (xy 45.264227 123.219923) (xy 45.365365 123.254644) (xy 45.587431 123.2917) (xy 45.587435 123.2917) (xy 45.812565 123.2917) (xy 45.812569 123.2917) (xy 46.034635 123.254644) (xy 46.247574 123.181542) (xy 46.445576 123.074389) (xy 46.62324 122.936106) (xy 46.775722 122.770468) (xy 46.89886 122.581991) (xy 46.989296 122.375816) (xy 47.044564 122.157568) (xy 47.063156 121.9332) (xy 47.044564 121.708832) (xy 46.989296 121.490584) (xy 46.89886 121.284409) (xy 46.89214 121.274124) (xy 46.775724 121.095934) (xy 46.77572 121.095929) (xy 46.623237 120.930291) (xy 46.503679 120.837235) (xy 46.445576 120.792011) (xy 46.247574 120.684858) (xy 46.247572 120.684857) (xy 46.247571 120.684856) (xy 46.034639 120.611757) (xy 46.03463 120.611755) (xy 45.990476 120.604387) (xy 45.812569 120.5747) (xy 45.587431 120.5747) (xy 45.439211 120.599433) (xy 45.365369 120.611755) (xy 45.36536 120.611757) (xy 45.152428 120.684856) (xy 45.152426 120.684858) (xy 45.018894 120.757122) (xy 44.954426 120.79201) (xy 44.954424 120.792011) (xy 44.776762 120.930291) (xy 44.624279 121.095929) (xy 44.535483 121.231843) (xy 44.481479 121.277931) (xy 44.411131 121.287506) (xy 44.346774 121.257529) (xy 44.324517 121.231843) (xy 44.23572 121.095929) (xy 44.083237 120.930291) (xy 43.963679 120.837235) (xy 43.905576 120.792011) (xy 43.707574 120.684858) (xy 43.707572 120.684857) (xy 43.707571 120.684856) (xy 43.494639 120.611757) (xy 43.49463 120.611755) (xy 43.450476 120.604387) (xy 43.272569 120.5747) (xy 43.047431 120.5747) (xy 42.899211 120.599433) (xy 42.825369 120.611755) (xy 42.82536 120.611757) (xy 42.612428 120.684856) (xy 42.612426 120.684858) (xy 42.478894 120.757122) (xy 42.414426 120.79201) (xy 42.414424 120.792011) (xy 42.236759 120.930294) (xy 42.175374 120.996975) (xy 42.114521 121.033546) (xy 42.043557 121.031411) (xy 41.985012 120.991249) (xy 41.964618 120.95567) (xy 41.920443 120.837233) (xy 41.832904 120.720295) (xy 41.715965 120.632755) (xy 41.579093 120.581705) (xy 41.518597 120.5752) (xy 40.874 120.5752) (xy 40.874 121.502497) (xy 40.812993 121.467275) (xy 40.685826 121.4332) (xy 40.554174 121.4332) (xy 40.427007 121.467275) (xy 40.366 121.502497) (xy 40.366 120.5752) (xy 39.721402 120.5752) (xy 39.660906 120.581705) (xy 39.524035 120.632755) (xy 39.524034 120.632755) (xy 39.407095 120.720295) (xy 39.319555 120.837234) (xy 39.319555 120.837235) (xy 39.268505 120.974106) (xy 39.262 121.034602) (xy 38.0005 121.034602) (xy 38.0005 113.840833) (xy 38.020502 113.772712) (xy 38.074158 113.726219) (xy 38.144432 113.716115) (xy 38.209012 113.745609) (xy 38.231983 113.771918) (xy 38.294275 113.867265) (xy 38.294279 113.86727) (xy 38.446762 114.032908) (xy 38.501331 114.075381) (xy 38.624424 114.171189) (xy 38.822426 114.278342) (xy 38.822427 114.278342) (xy 38.822428 114.278343) (xy 38.934227 114.316723) (xy 39.035365 114.351444) (xy 39.257431 114.3885) (xy 39.257435 114.3885) (xy 39.482565 114.3885) (xy 39.482569 114.3885) (xy 39.704635 114.351444) (xy 39.917574 114.278342) (xy 40.115576 114.171189) (xy 40.29324 114.032906) (xy 40.445722 113.867268) (xy 40.534518 113.731354) (xy 40.58852 113.685268) (xy 40.658868 113.675692) (xy 40.723225 113.705669) (xy 40.74548 113.731353) (xy 40.771983 113.771918) (xy 40.834275 113.867265) (xy 40.834279 113.86727) (xy 40.986762 114.032908) (xy 41.041331 114.075381) (xy 41.164424 114.171189) (xy 41.362426 114.278342) (xy 41.362427 114.278342) (xy 41.362428 114.278343) (xy 41.474227 114.316723) (xy 41.575365 114.351444) (xy 41.797431 114.3885) (xy 41.797435 114.3885) (xy 42.022565 114.3885) (xy 42.022569 114.3885) (xy 42.244635 114.351444) (xy 42.457574 114.278342) (xy 42.655576 114.171189) (xy 42.83324 114.032906) (xy 42.894626 113.966222) (xy 42.955476 113.929654) (xy 43.026441 113.931787) (xy 43.084986 113.971949) (xy 43.10538 114.007529) (xy 43.149553 114.125961) (xy 43.149555 114.125965) (xy 43.237095 114.242904) (xy 43.354034 114.330444) (xy 43.490906 114.381494) (xy 43.551402 114.387999) (xy 43.551415 114.388) (xy 44.196 114.388) (xy 44.196 113.47225) (xy 44.253147 113.505245) (xy 44.382857 113.54) (xy 44.517143 113.54) (xy 44.646853 113.505245) (xy 44.704 113.47225) (xy 44.704 114.388) (xy 45.348585 114.388) (xy 45.348597 114.387999) (xy 45.409093 114.381494) (xy 45.545964 114.330444) (xy 45.545965 114.330444) (xy 45.662904 114.242904) (xy 45.750444 114.125965) (xy 45.794618 114.00753) (xy 45.837165 113.950694) (xy 45.903685 113.925883) (xy 45.973059 113.940974) (xy 46.005372 113.966222) (xy 46.010645 113.971949) (xy 46.066762 114.032908) (xy 46.121331 114.075381) (xy 46.244424 114.171189) (xy 46.442426 114.278342) (xy 46.442427 114.278342) (xy 46.442428 114.278343) (xy 46.554227 114.316723) (xy 46.655365 114.351444) (xy 46.877431 114.3885) (xy 46.877435 114.3885) (xy 47.102565 114.3885) (xy 47.102569 114.3885) (xy 47.324635 114.351444) (xy 47.537574 114.278342) (xy 47.735576 114.171189) (xy 47.91324 114.032906) (xy 48.065722 113.867268) (xy 48.154518 113.731354) (xy 48.20852 113.685268) (xy 48.278868 113.675692) (xy 48.343225 113.705669) (xy 48.36548 113.731353) (xy 48.391983 113.771918) (xy 48.454275 113.867265) (xy 48.454279 113.86727) (xy 48.606762 114.032908) (xy 48.661331 114.075381) (xy 48.784424 114.171189) (xy 48.982426 114.278342) (xy 48.982427 114.278342) (xy 48.982428 114.278343) (xy 49.094227 114.316723) (xy 49.195365 114.351444) (xy 49.417431 114.3885) (xy 49.417435 114.3885) (xy 49.642565 114.3885) (xy 49.642569 114.3885) (xy 49.864635 114.351444) (xy 50.077574 114.278342) (xy 50.275576 114.171189) (xy 50.45324 114.032906) (xy 50.605722 113.867268) (xy 50.694518 113.731354) (xy 50.74852 113.685268) (xy 50.818868 113.675692) (xy 50.883225 113.705669) (xy 50.90548 113.731353) (xy 50.931983 113.771918) (xy 50.994275 113.867265) (xy 50.994279 113.86727) (xy 51.146762 114.032908) (xy 51.201331 114.075381) (xy 51.324424 114.171189) (xy 51.522426 114.278342) (xy 51.522427 114.278342) (xy 51.522428 114.278343) (xy 51.634227 114.316723) (xy 51.735365 114.351444) (xy 51.957431 114.3885) (xy 51.957435 114.3885) (xy 52.182565 114.3885) (xy 52.182569 114.3885) (xy 52.404635 114.351444) (xy 52.617574 114.278342) (xy 52.815576 114.171189) (xy 52.99324 114.032906) (xy 53.145722 113.867268) (xy 53.234518 113.731354) (xy 53.28852 113.685268) (xy 53.358868 113.675692) (xy 53.423225 113.705669) (xy 53.44548 113.731353) (xy 53.471983 113.771918) (xy 53.534275 113.867265) (xy 53.534279 113.86727) (xy 53.686762 114.032908) (xy 53.741331 114.075381) (xy 53.864424 114.171189) (xy 54.062426 114.278342) (xy 54.062427 114.278342) (xy 54.062428 114.278343) (xy 54.174227 114.316723) (xy 54.275365 114.351444) (xy 54.497431 114.3885) (xy 54.497435 114.3885) (xy 54.722565 114.3885) (xy 54.722569 114.3885) (xy 54.944635 114.351444) (xy 55.074588 114.30683) (xy 55.145512 114.303631) (xy 55.206908 114.339283) (xy 55.239282 114.402468) (xy 55.2415 114.426004) (xy 55.2415 130.156196) (xy 55.245602 130.176816) (xy 55.265845 130.278585) (xy 55.3136 130.393875) (xy 55.382929 130.497633) (xy 56.861129 131.975833) (xy 56.949367 132.064071) (xy 57.053125 132.1334) (xy 57.168415 132.181155) (xy 57.290806 132.2055) (xy 60.525508 132.2055) (xy 60.573728 132.215092) (xy 60.578226 132.216955) (xy 60.700617 132.2413) (xy 60.825405 132.2413) (xy 70.003762 132.2413) (xy 70.071883 132.261302) (xy 70.109245 132.298385) (xy 70.205075 132.445065) (xy 70.205079 132.44507) (xy 70.357562 132.610708) (xy 70.388888 132.63509) (xy 70.535224 132.748989) (xy 70.733226 132.856142) (xy 70.733227 132.856142) (xy 70.733228 132.856143) (xy 70.845027 132.894523) (xy 70.946165 132.929244) (xy 71.168231 132.9663) (xy 71.168235 132.9663) (xy 71.393365 132.9663) (xy 71.393369 132.9663) (xy 71.615435 132.929244) (xy 71.828374 132.856142) (xy 72.026376 132.748989) (xy 72.20404 132.610706) (xy 72.356522 132.445068) (xy 72.445616 132.308698) (xy 72.499619 132.26261) (xy 72.569967 132.253035) (xy 72.634324 132.283012) (xy 72.656582 132.308698) (xy 72.745474 132.444758) (xy 72.897897 132.610334) (xy 73.075498 132.748567) (xy 73.075499 132.748568) (xy 73.273428 132.855682) (xy 73.27343 132.855683) (xy 73.486283 132.928755) (xy 73.486292 132.928757) (xy 73.5668 132.942191) (xy 73.5668 132.038502) (xy 73.627807 132.073725) (xy 73.754974 132.1078) (xy 73.886626 132.1078) (xy 74.013793 132.073725) (xy 74.0748 132.038502) (xy 74.0748 132.94219) (xy 74.155307 132.928757) (xy 74.155316 132.928755) (xy 74.368169 132.855683) (xy 74.368171 132.855682) (xy 74.5661 132.748568) (xy 74.566101 132.748567) (xy 74.743702 132.610334) (xy 74.896125 132.444758) (xy 75.019219 132.256348) (xy 75.10962 132.050256) (xy 75.109623 132.050249) (xy 75.157344 131.8618) (xy 74.251503 131.8618) (xy 74.286725 131.800793) (xy 74.297334 131.7612) (xy 80.477337 131.7612) (xy 80.49596 131.997832) (xy 80.551371 132.228637) (xy 80.642208 132.447938) (xy 80.756896 132.63509) (xy 80.756897 132.63509) (xy 81.465016 131.926971) (xy 81.477482 131.973492) (xy 81.54989 132.098908) (xy 81.652292 132.20131) (xy 81.777708 132.273718) (xy 81.824226 132.286182) (xy 81.116107 132.994301) (xy 81.116108 132.994302) (xy 81.303261 133.108991) (xy 81.522562 133.199828) (xy 81.753367 133.255239) (xy 81.99 133.273862) (xy 82.226632 133.255239) (xy 82.457437 133.199828) (xy 82.676738 133.108991) (xy 82.86389 132.994302) (xy 82.863891 132.994302) (xy 82.155772 132.286182) (xy 82.202292 132.273718) (xy 82.327708 132.20131) (xy 82.43011 132.098908) (xy 82.502518 131.973492) (xy 82.514982 131.926972) (xy 83.223102 132.635091) (xy 83.223102 132.63509) (xy 83.337791 132.447938) (xy 83.428628 132.228637) (xy 83.484039 131.997832) (xy 83.502662 131.7612) (xy 86.977337 131.7612) (xy 86.99596 131.997832) (xy 87.051371 132.228637) (xy 87.142208 132.447938) (xy 87.256896 132.63509) (xy 87.256897 132.63509) (xy 87.965016 131.926971) (xy 87.977482 131.973492) (xy 88.04989 132.098908) (xy 88.152292 132.20131) (xy 88.277708 132.273718) (xy 88.324226 132.286182) (xy 87.616107 132.994301) (xy 87.616108 132.994302) (xy 87.803261 133.108991) (xy 88.022562 133.199828) (xy 88.253367 133.255239) (xy 88.49 133.273862) (xy 88.726632 133.255239) (xy 88.957437 133.199828) (xy 89.176738 133.108991) (xy 89.36389 132.994302) (xy 89.363891 132.994302) (xy 88.655772 132.286182) (xy 88.702292 132.273718) (xy 88.827708 132.20131) (xy 88.93011 132.098908) (xy 89.002518 131.973492) (xy 89.014983 131.926972) (xy 89.723102 132.635091) (xy 89.723102 132.63509) (xy 89.837791 132.447938) (xy 89.928628 132.228637) (xy 89.984039 131.997832) (xy 90.002662 131.7612) (xy 89.984039 131.524567) (xy 89.928628 131.293762) (xy 89.837791 131.074461) (xy 89.723102 130.887308) (xy 89.723101 130.887307) (xy 89.014982 131.595426) (xy 89.002518 131.548908) (xy 88.93011 131.423492) (xy 88.827708 131.32109) (xy 88.702292 131.248682) (xy 88.655771 131.236216) (xy 89.36389 130.528097) (xy 89.36389 130.528096) (xy 89.176738 130.413408) (xy 88.957437 130.322571) (xy 88.726632 130.26716) (xy 88.49 130.248537) (xy 88.253367 130.26716) (xy 88.022562 130.322571) (xy 87.803266 130.413406) (xy 87.616108 130.528097) (xy 87.616108 130.528098) (xy 88.324227 131.236217) (xy 88.277708 131.248682) (xy 88.152292 131.32109) (xy 88.04989 131.423492) (xy 87.977482 131.548908) (xy 87.965017 131.595427) (xy 87.256898 130.887308) (xy 87.256897 130.887308) (xy 87.142206 131.074466) (xy 87.051371 131.293762) (xy 86.99596 131.524567) (xy 86.977337 131.7612) (xy 83.502662 131.7612) (xy 83.484039 131.524567) (xy 83.428628 131.293762) (xy 83.337791 131.074461) (xy 83.223102 130.887308) (xy 83.223101 130.887307) (xy 82.514982 131.595425) (xy 82.502518 131.548908) (xy 82.43011 131.423492) (xy 82.327708 131.32109) (xy 82.202292 131.248682) (xy 82.155771 131.236216) (xy 82.86389 130.528097) (xy 82.86389 130.528096) (xy 82.676738 130.413408) (xy 82.457437 130.322571) (xy 82.226632 130.26716) (xy 81.99 130.248537) (xy 81.753367 130.26716) (xy 81.522562 130.322571) (xy 81.303266 130.413406) (xy 81.116108 130.528097) (xy 81.116108 130.528098) (xy 81.824227 131.236217) (xy 81.777708 131.248682) (xy 81.652292 131.32109) (xy 81.54989 131.423492) (xy 81.477482 131.548908) (xy 81.465017 131.595427) (xy 80.756898 130.887308) (xy 80.756897 130.887308) (xy 80.642206 131.074466) (xy 80.551371 131.293762) (xy 80.49596 131.524567) (xy 80.477337 131.7612) (xy 74.297334 131.7612) (xy 74.3208 131.673626) (xy 74.3208 131.541974) (xy 74.286725 131.414807) (xy 74.251503 131.3538) (xy 75.157344 131.3538) (xy 75.157344 131.353799) (xy 75.109623 131.16535) (xy 75.10962 131.165343) (xy 75.019219 130.959251) (xy 74.896125 130.770841) (xy 74.743702 130.605265) (xy 74.566101 130.467032) (xy 74.5661 130.467031) (xy 74.532591 130.448897) (xy 74.482201 130.398883) (xy 74.46685 130.329566) (xy 74.491412 130.262953) (xy 74.53259 130.227272) (xy 74.566376 130.208989) (xy 74.74404 130.070706) (xy 74.896522 129.905068) (xy 75.01966 129.716591) (xy 75.110096 129.510416) (xy 75.165364 129.292168) (xy 75.174325 129.184031) (xy 93.159698 129.184031) (xy 93.170296 129.324839) (xy 93.170298 129.324844) (xy 93.218489 129.457558) (xy 93.218492 129.457563) (xy 93.218493 129.457566) (xy 93.287919 129.554507) (xy 93.300708 129.572364) (xy 93.30071 129.572367) (xy 93.41085 129.660728) (xy 93.484178 129.691984) (xy 93.540748 129.716097) (xy 93.680766 129.734367) (xy 94.206603 129.73077) (xy 94.206602 129.730769) (xy 94.290476 129.730196) (xy 94.290478 129.730195) (xy 94.732439 129.727174) (xy 94.80408 129.721706) (xy 94.881812 129.699175) (xy 94.952804 129.699422) (xy 94.954793 129.700032) (xy 94.994188 129.712491) (xy 95.053104 129.752103) (xy 95.081253 129.817281) (xy 95.069696 129.88733) (xy 95.022101 129.940011) (xy 94.982719 129.955801) (xy 94.938354 129.965355) (xy 94.813107 130.030568) (xy 94.781738 130.052803) (xy 94.781732 130.052808) (xy 94.714942 130.10918) (xy 94.687228 130.136895) (xy 94.687223 130.1369) (xy 94.610851 130.234119) (xy 94.554595 130.363633) (xy 94.554594 130.363638) (xy 94.535368 130.503511) (xy 94.535368 130.813422) (xy 94.535441 130.905385) (xy 94.535446 130.907192) (xy 94.535447 130.907192) (xy 94.535447 130.907308) (xy 94.535766 130.9743) (xy 94.535791 130.979478) (xy 94.535837 130.984328) (xy 94.536642 131.039425) (xy 94.536723 131.042613) (xy 94.536918 131.050348) (xy 94.538237 131.087236) (xy 94.53837 131.090952) (xy 94.53965 131.113258) (xy 94.541939 131.142219) (xy 94.547258 131.18585) (xy 94.54726 131.185862) (xy 94.550576 131.205936) (xy 94.569071 131.281812) (xy 94.573602 131.295742) (xy 94.607176 131.372148) (xy 94.61506 131.390091) (xy 94.615061 131.390094) (xy 94.617239 131.393954) (xy 94.620996 131.400615) (xy 94.630227 131.414807) (xy 94.656656 131.45544) (xy 94.656658 131.455443) (xy 94.66131 131.461695) (xy 94.69774 131.499412) (xy 94.753455 131.557096) (xy 94.753459 131.557099) (xy 94.753458 131.557099) (xy 94.78418 131.581665) (xy 94.805955 131.598155) (xy 94.805956 131.598156) (xy 94.906315 131.651074) (xy 94.930863 131.664018) (xy 95.068905 131.693737) (xy 95.06891 131.693737) (xy 95.068914 131.693738) (xy 95.096249 131.695804) (xy 95.104192 131.696405) (xy 95.104194 131.696404) (xy 95.104196 131.696405) (xy 95.1261 131.695435) (xy 95.227907 131.690929) (xy 95.22791 131.690928) (xy 95.227911 131.690928) (xy 95.265862 131.679166) (xy 95.362783 131.649128) (xy 95.395034 131.634058) (xy 95.39506 131.634041) (xy 95.395721 131.633679) (xy 95.395952 131.633628) (xy 95.398722 131.632334) (xy 95.399012 131.632955) (xy 95.465063 131.618439) (xy 95.515935 131.63312) (xy 95.570907 131.662627) (xy 95.570909 131.662628) (xy 95.708728 131.693366) (xy 95.743676 131.696268) (xy 95.752179 131.696903) (xy 95.893036 131.687) (xy 96.025998 131.639462) (xy 96.03331 131.635656) (xy 96.059452 131.622047) (xy 96.065516 131.618766) (xy 96.067242 131.617831) (xy 96.136672 131.603003) (xy 96.192243 131.620728) (xy 96.196429 131.623251) (xy 96.215052 131.633954) (xy 96.346989 131.684266) (xy 96.487608 131.697116) (xy 96.521988 131.695552) (xy 96.540761 131.694357) (xy 96.678613 131.663771) (xy 96.762683 131.618765) (xy 96.832177 131.60425) (xy 96.888043 131.622454) (xy 96.891091 131.624324) (xy 96.896756 131.6278) (xy 97.027549 131.681017) (xy 97.167849 131.696974) (xy 97.20365 131.696138) (xy 97.312377 131.682003) (xy 97.443934 131.630706) (xy 97.4625 131.620359) (xy 97.531738 131.604673) (xy 97.586582 131.621163) (xy 97.633946 131.648365) (xy 97.63396 131.648372) (xy 97.652291 131.655794) (xy 97.664995 131.660938) (xy 97.664998 131.660939) (xy 97.664996 131.660939) (xy 97.728993 131.681085) (xy 97.743805 131.685748) (xy 97.884456 131.698246) (xy 97.919518 131.696563) (xy 98.00642 131.684639) (xy 98.010203 131.68412) (xy 98.010203 131.684119) (xy 98.01021 131.684119) (xy 98.043706 131.671459) (xy 98.114494 131.666087) (xy 98.12401 131.668505) (xy 98.187631 131.687351) (xy 98.229328 131.693712) (xy 98.357949 131.697184) (xy 98.495305 131.664443) (xy 98.529713 131.651074) (xy 98.547699 131.643695) (xy 98.550671 131.641895) (xy 98.600459 131.611732) (xy 98.66847 131.57053) (xy 98.673263 131.565416) (xy 98.711542 131.524567) (xy 98.765024 131.467496) (xy 98.775145 131.453209) (xy 98.806071 131.403902) (xy 98.823585 131.372148) (xy 98.831583 131.357066) (xy 98.855062 131.310971) (xy 98.85887 131.30334) (xy 98.886885 131.246028) (xy 98.88926 131.241104) (xy 98.920381 131.175699) (xy 98.92214 131.171963) (xy 98.936556 131.141034) (xy 98.95503 131.101398) (xy 98.956475 131.098268) (xy 98.989409 131.026303) (xy 98.989437 131.02624) (xy 98.989503 131.026097) (xy 98.99099 131.022816) (xy 98.993803 131.016556) (xy 99.003862 130.994164) (xy 99.050023 130.940223) (xy 99.118019 130.919801) (xy 99.186262 130.939383) (xy 99.233085 130.992751) (xy 99.241355 131.016556) (xy 99.247275 131.04137) (xy 99.247284 131.041398) (xy 99.269859 131.104579) (xy 99.284464 131.141037) (xy 99.288737 131.150632) (xy 99.302167 131.17852) (xy 99.331369 131.234801) (xy 99.331381 131.234822) (xy 99.377728 131.30833) (xy 99.377742 131.30835) (xy 99.379728 131.310981) (xy 99.410549 131.351822) (xy 99.483478 131.43013) (xy 99.525832 131.467096) (xy 99.525841 131.467103) (xy 99.525846 131.467107) (xy 99.588784 131.514135) (xy 99.646618 131.550867) (xy 99.667589 131.563501) (xy 99.670915 131.565399) (xy 99.670945 131.565416) (xy 99.703441 131.582466) (xy 99.753768 131.606641) (xy 99.821412 131.63347) (xy 99.840274 131.639457) (xy 99.878287 131.651523) (xy 99.87831 131.651529) (xy 99.93976 131.66697) (xy 99.939766 131.666971) (xy 99.939774 131.666973) (xy 100.001037 131.678438) (xy 100.006841 131.679525) (xy 100.006866 131.67953) (xy 100.023886 131.681925) (xy 100.053268 131.68606) (xy 100.13423 131.693743) (xy 100.165161 131.695748) (xy 100.263644 131.699179) (xy 100.275146 131.699428) (xy 100.277255 131.699474) (xy 100.311905 131.699771) (xy 100.311906 131.699771) (xy 100.312016 131.699771) (xy 100.312053 131.699772) (xy 100.314634 131.699788) (xy 100.314648 131.699788) (xy 100.314801 131.699789) (xy 100.3148 131.699789) (xy 100.480326 131.700382) (xy 100.526071 131.698524) (xy 100.663832 131.667526) (xy 100.663839 131.667521) (xy 100.669471 131.665416) (xy 100.740282 131.660283) (xy 100.757585 131.665349) (xy 100.777196 131.672653) (xy 100.777204 131.672655) (xy 100.794079 131.676899) (xy 100.794089 131.676901) (xy 100.794108 131.676906) (xy 100.857042 131.688656) (xy 100.857051 131.688657) (xy 100.857056 131.688658) (xy 100.867614 131.689961) (xy 100.882626 131.691814) (xy 100.915147 131.694792) (xy 100.952079 131.697004) (xy 100.952122 131.697005) (xy 100.952124 131.697006) (xy 100.954435 131.697107) (xy 100.968695 131.697732) (xy 100.987218 131.698246) (xy 101.019571 131.699144) (xy 101.019594 131.699144) (xy 101.01965 131.699146) (xy 101.028163 131.699313) (xy 101.095815 131.700079) (xy 101.1001 131.70011) (xy 101.100177 131.70011) (xy 101.100282 131.700111) (xy 101.187001 131.700376) (xy 101.187002 131.700376) (xy 101.188132 131.700377) (xy 101.188526 131.700378) (xy 101.208201 131.700385) (xy 101.208224 131.700385) (xy 101.208684 131.700385) (xy 101.208725 131.700385) (xy 101.228657 131.700371) (xy 101.297349 131.700327) (xy 101.298369 131.700323) (xy 101.299284 131.700321) (xy 101.367968 131.700001) (xy 101.37358 131.699945) (xy 101.425243 131.699145) (xy 101.425276 131.699144) (xy 101.425281 131.699144) (xy 101.42759 131.699079) (xy 101.437983 131.698791) (xy 101.475402 131.697291) (xy 101.50273 131.695472) (xy 101.528685 131.693054) (xy 101.585141 131.684639) (xy 101.602409 131.681084) (xy 101.602622 131.681017) (xy 101.62605 131.673626) (xy 101.700178 131.65024) (xy 101.771159 131.648821) (xy 101.786376 131.654025) (xy 101.846947 131.679167) (xy 101.862188 131.68317) (xy 101.948443 131.698182) (xy 102.089479 131.691294) (xy 102.108381 131.687749) (xy 102.110974 131.687256) (xy 102.110978 131.687254) (xy 102.110985 131.687253) (xy 102.244682 131.641895) (xy 102.244685 131.641894) (xy 102.244686 131.641893) (xy 102.244693 131.641891) (xy 102.269122 131.629676) (xy 102.269137 131.629666) (xy 102.269921 131.629275) (xy 102.339795 131.616698) (xy 102.384068 131.630008) (xy 102.403708 131.640146) (xy 102.409427 131.643054) (xy 102.543121 131.688484) (xy 102.543124 131.688485) (xy 102.68412 131.696161) (xy 102.719063 131.693282) (xy 102.743389 131.690699) (xy 102.879628 131.653582) (xy 102.893711 131.645155) (xy 102.962432 131.627344) (xy 102.999049 131.634016) (xy 103.053481 131.652571) (xy 103.093763 131.662627) (xy 103.125055 131.670439) (xy 103.125058 131.670439) (xy 103.125064 131.670441) (xy 103.186736 131.681926) (xy 103.269225 131.692172) (xy 103.321087 131.695986) (xy 103.410868 131.698073) (xy 103.459473 131.696923) (xy 103.552926 131.690318) (xy 103.592075 131.686052) (xy 103.647039 131.67794) (xy 103.71255 131.663895) (xy 103.79876 131.639493) (xy 103.888632 131.60475) (xy 103.888644 131.604743) (xy 103.891313 131.603568) (xy 103.891707 131.604462) (xy 103.957701 131.592675) (xy 104.008541 131.609707) (xy 104.033054 131.624324) (xy 104.05176 131.634958) (xy 104.183934 131.684648) (xy 104.324611 131.696834) (xy 104.350419 131.695537) (xy 104.359722 131.695071) (xy 104.360001 131.695056) (xy 104.360875 131.695012) (xy 104.499568 131.668498) (xy 104.523835 131.656412) (xy 104.578846 131.629015) (xy 104.64874 131.61655) (xy 104.682888 131.625249) (xy 104.706291 131.634861) (xy 104.706313 131.634869) (xy 104.751677 131.649127) (xy 104.79046 131.661317) (xy 104.855639 131.675849) (xy 104.855642 131.675849) (xy 104.855649 131.675851) (xy 104.89341 131.681926) (xy 104.916873 131.685701) (xy 104.996925 131.693707) (xy 105.035464 131.696117) (xy 105.133777 131.698594) (xy 105.148146 131.698756) (xy 105.164378 131.698715) (xy 105.173814 131.698606) (xy 105.239374 131.697247) (xy 105.253227 131.696774) (xy 105.318244 131.693686) (xy 105.333051 131.69277) (xy 105.390437 131.688396) (xy 105.413944 131.686065) (xy 105.456614 131.680849) (xy 105.482398 131.677037) (xy 105.485848 131.676438) (xy 105.516673 131.670117) (xy 105.559097 131.660067) (xy 105.584865 131.652492) (xy 105.655858 131.652473) (xy 105.665647 131.655786) (xy 105.71064 131.67311) (xy 105.710644 131.673111) (xy 105.725197 131.676906) (xy 105.725796 131.677062) (xy 105.725803 131.677063) (xy 105.725806 131.677064) (xy 105.793343 131.689961) (xy 105.793345 131.689962) (xy 105.797311 131.690449) (xy 105.816251 131.692778) (xy 105.847021 131.695529) (xy 105.850511 131.695841) (xy 105.850513 131.695841) (xy 105.850523 131.695842) (xy 105.883891 131.697711) (xy 105.891846 131.698028) (xy 105.900427 131.698372) (xy 105.900459 131.698372) (xy 105.900465 131.698373) (xy 105.947031 131.699489) (xy 105.954866 131.699618) (xy 106.017358 131.700171) (xy 106.020783 131.70019) (xy 106.10193 131.700372) (xy 106.102945 131.700373) (xy 106.145053 131.700385) (xy 106.145071 131.700385) (xy 106.145605 131.700385) (xy 106.145661 131.700385) (xy 106.171425 131.700362) (xy 106.235977 131.700305) (xy 106.237536 131.700299) (xy 106.238083 131.700298) (xy 106.308409 131.699931) (xy 106.313947 131.699872) (xy 106.338496 131.699481) (xy 106.36711 131.699027) (xy 106.367138 131.699026) (xy 106.367152 131.699026) (xy 106.379146 131.698697) (xy 106.379158 131.698696) (xy 106.379177 131.698696) (xy 106.389648 131.698286) (xy 106.417957 131.697181) (xy 106.442946 131.6956) (xy 106.470093 131.693223) (xy 106.520837 131.68624) (xy 106.532098 131.684119) (xy 106.53905 131.68281) (xy 106.599812 131.665416) (xy 106.63127 131.656411) (xy 106.643272 131.651736) (xy 106.725292 131.607275) (xy 106.79471 131.592397) (xy 106.83925 131.604165) (xy 106.855232 131.61173) (xy 106.855235 131.611732) (xy 106.916699 131.634869) (xy 106.918809 131.635663) (xy 106.989214 131.656606) (xy 106.989219 131.656607) (xy 106.989217 131.656607) (xy 107.042832 131.668497) (xy 107.064012 131.673194) (xy 107.118023 131.682211) (xy 107.207251 131.692299) (xy 107.244034 131.695136) (xy 107.344837 131.699313) (xy 107.350893 131.699564) (xy 107.351814 131.699586) (xy 107.368378 131.699994) (xy 107.417324 131.70037) (xy 107.423806 131.700379) (xy 107.48604 131.700079) (xy 107.486093 131.700078) (xy 107.486116 131.700078) (xy 107.494303 131.699941) (xy 107.498379 131.699873) (xy 107.542145 131.69862) (xy 107.575382 131.696598) (xy 107.575402 131.696596) (xy 107.575404 131.696596) (xy 107.604777 131.693861) (xy 107.60478 131.69386) (xy 107.604785 131.69386) (xy 107.649693 131.68624) (xy 107.681614 131.680824) (xy 107.681617 131.680823) (xy 107.681624 131.680822) (xy 107.700772 131.676069) (xy 107.700779 131.676066) (xy 107.700787 131.676064) (xy 107.829748 131.624926) (xy 107.829748 131.624925) (xy 107.829758 131.624922) (xy 107.829761 131.624919) (xy 107.829766 131.624918) (xy 107.837879 131.620361) (xy 107.842756 131.617622) (xy 107.934573 131.551963) (xy 107.941541 131.545729) (xy 107.987195 131.499412) (xy 107.993776 131.491839) (xy 108.06085 131.393954) (xy 108.066012 131.384184) (xy 108.108337 131.276393) (xy 108.112252 131.261809) (xy 108.122955 131.207701) (xy 108.125719 131.193727) (xy 108.12572 131.193721) (xy 108.12856 131.171707) (xy 108.131878 131.136634) (xy 108.133815 131.104572) (xy 108.134571 131.087256) (xy 108.135354 131.058166) (xy 108.135773 131.042613) (xy 108.135796 131.04139) (xy 108.135933 131.03414) (xy 108.136577 130.97413) (xy 108.136604 130.970263) (xy 108.136606 130.970008) (xy 108.136859 130.892456) (xy 108.136862 130.890853) (xy 108.136901 130.815508) (xy 108.136901 130.815263) (xy 108.137147 130.715278) (xy 108.137149 130.71386) (xy 108.137124 130.676441) (xy 108.137096 130.633126) (xy 108.136936 130.620577) (xy 108.135976 130.581972) (xy 108.135975 130.581965) (xy 108.135884 130.578303) (xy 108.135883 130.578277) (xy 108.135378 130.557982) (xy 108.133402 130.523863) (xy 108.129987 130.486373) (xy 108.143728 130.416722) (xy 108.192945 130.365554) (xy 108.254816 130.348949) (xy 108.298786 130.348721) (xy 108.340565 130.348506) (xy 108.340596 130.348506) (xy 108.34136 130.348502) (xy 108.391494 130.348154) (xy 108.453794 130.347724) (xy 108.454995 130.347714) (xy 108.552148 130.346817) (xy 108.553764 130.346799) (xy 108.63684 130.345773) (xy 108.639044 130.345742) (xy 108.709158 130.344578) (xy 108.712205 130.344518) (xy 108.770473 130.343208) (xy 108.774801 130.343093) (xy 108.822338 130.341627) (xy 108.828609 130.341395) (xy 108.86653 130.339766) (xy 108.875994 130.339273) (xy 108.905414 130.33747) (xy 108.920171 130.336354) (xy 108.942206 130.334371) (xy 108.966563 130.331597) (xy 108.982328 130.329423) (xy 109.024667 130.321783) (xy 109.035277 130.31941) (xy 109.104385 130.298815) (xy 109.110169 130.296643) (xy 109.110173 130.296641) (xy 109.110198 130.296632) (xy 109.115108 130.294674) (xy 109.119304 130.293002) (xy 109.123826 130.291301) (xy 109.127523 130.289992) (xy 109.136156 130.286798) (xy 109.206197 130.254787) (xy 109.214061 130.25046) (xy 109.31618 130.176825) (xy 109.316186 130.176819) (xy 109.316191 130.176816) (xy 109.323307 130.170233) (xy 109.335083 130.156196) (xy 109.4073 130.070109) (xy 109.413731 130.060112) (xy 109.459605 129.970845) (xy 109.465373 129.95631) (xy 109.485923 129.892914) (xy 109.491065 129.872705) (xy 109.496489 129.847008) (xy 109.499871 129.830986) (xy 109.500634 129.826456) (xy 109.504424 129.803958) (xy 109.508275 129.776697) (xy 109.51227 129.741735) (xy 109.514015 129.723667) (xy 109.517491 129.679625) (xy 109.518312 129.667369) (xy 109.521303 129.613112) (xy 109.5217 129.604662) (xy 109.522952 129.572367) (xy 109.524243 129.539091) (xy 109.5243 129.537355) (xy 109.52444 129.533109) (xy 109.526571 129.455016) (xy 109.526669 129.450792) (xy 109.528424 129.359078) (xy 109.528473 129.356039) (xy 109.528476 129.355858) (xy 109.529241 129.298155) (xy 109.529886 129.249569) (xy 109.529911 129.247382) (xy 109.530281 129.206515) (xy 109.53102 129.125029) (xy 109.531032 129.123448) (xy 109.531871 128.984059) (xy 109.531876 128.982929) (xy 109.532481 128.825378) (xy 109.532484 128.82458) (xy 109.532891 128.647732) (xy 109.532892 128.647183) (xy 109.533137 128.449902) (xy 109.533137 128.449535) (xy 109.533254 128.230685) (xy 109.533254 128.230468) (xy 109.533282 127.988915) (xy 109.533282 127.9888) (xy 109.533254 127.723408) (xy 109.533254 127.723379) (xy 109.533207 127.433013) (xy 109.533177 127.116572) (xy 109.533176 127.053786) (xy 109.533176 127.053766) (xy 109.533159 126.733957) (xy 109.533159 126.733879) (xy 109.533099 126.440403) (xy 109.533099 126.440296) (xy 109.532989 126.172025) (xy 109.532989 126.171879) (xy 109.53282 125.927687) (xy 109.53282 125.927493) (xy 109.532584 125.706252) (xy 109.532583 125.705991) (xy 109.53227 125.506574) (xy 109.53227 125.50623) (xy 109.531871 125.32751) (xy 109.53187 125.327065) (xy 109.531683 125.266599) (xy 109.531379 125.168019) (xy 109.531376 125.167405) (xy 109.531375 125.167322) (xy 109.53078 125.026751) (xy 109.530775 125.025882) (xy 109.530775 125.025879) (xy 109.530717 125.015644) (xy 109.530068 124.902453) (xy 109.530062 124.901424) (xy 109.529235 124.794224) (xy 109.529222 124.792844) (xy 109.529201 124.790832) (xy 109.528268 124.700838) (xy 109.528244 124.698939) (xy 109.528244 124.69894) (xy 109.528243 124.698833) (xy 109.527149 124.62063) (xy 109.527147 124.620483) (xy 109.527111 124.618222) (xy 109.525872 124.552888) (xy 109.52579 124.549241) (xy 109.525788 124.549191) (xy 109.525785 124.549027) (xy 109.52439 124.495314) (xy 109.524227 124.490047) (xy 109.522667 124.446888) (xy 109.522323 124.439029) (xy 109.520591 124.405297) (xy 109.519811 124.392973) (xy 109.517897 124.367541) (xy 109.51595 124.347095) (xy 109.514326 124.333) (xy 109.513846 124.328834) (xy 109.511419 124.312835) (xy 109.508283 124.292155) (xy 109.505981 124.279942) (xy 109.486708 124.207186) (xy 109.484197 124.199893) (xy 109.484192 124.199881) (xy 109.48373 124.198674) (xy 109.483715 124.198492) (xy 109.483496 124.197855) (xy 109.483659 124.197798) (xy 109.483116 124.19106) (xy 109.46319 124.148127) (xy 109.461617 124.144597) (xy 109.461222 124.143671) (xy 109.443568 124.106486) (xy 109.438804 124.097401) (xy 109.38362 124.013207) (xy 109.377077 124.005073) (xy 109.359212 123.9878) (xy 109.284266 123.915335) (xy 109.284262 123.915332) (xy 109.274621 123.908098) (xy 109.177906 123.850766) (xy 109.177902 123.850764) (xy 109.163851 123.84438) (xy 109.16383 123.844371) (xy 109.090359 123.817475) (xy 109.090341 123.817469) (xy 109.07054 123.811874) (xy 109.070527 123.811871) (xy 109.021777 123.800605) (xy 109.005148 123.7976) (xy 108.994882 123.795745) (xy 108.963534 123.791065) (xy 108.958776 123.790502) (xy 108.928271 123.786897) (xy 108.907985 123.784902) (xy 108.863046 123.781374) (xy 108.849692 123.780499) (xy 108.793708 123.777555) (xy 108.784718 123.77716) (xy 108.716507 123.77475) (xy 108.711515 123.774603) (xy 108.710333 123.774569) (xy 108.684955 123.77397) (xy 108.628414 123.772638) (xy 108.628346 123.772636) (xy 108.628318 123.772636) (xy 108.624149 123.772554) (xy 108.624147 123.772553) (xy 108.624098 123.772553) (xy 108.526983 123.771045) (xy 108.524421 123.771013) (xy 108.524262 123.771012) (xy 108.45963 123.770367) (xy 108.41087 123.769881) (xy 108.409135 123.769867) (xy 108.40896 123.769866) (xy 108.278001 123.76906) (xy 108.277944 123.769059) (xy 108.276664 123.769052) (xy 108.160991 123.768639) (xy 108.126748 123.768517) (xy 108.126665 123.768516) (xy 108.125884 123.768514) (xy 108.125884 123.768515) (xy 107.985009 123.768252) (xy 107.955666 123.768198) (xy 107.955661 123.768197) (xy 107.955106 123.768197) (xy 107.955067 123.768196) (xy 107.770555 123.768052) (xy 107.763311 123.768047) (xy 107.763262 123.768047) (xy 107.762992 123.768047) (xy 107.548276 123.768011) (xy 107.548133 123.768011) (xy 107.309174 123.768037) (xy 107.309159 123.768037) (xy 107.044636 123.768073) (xy 107.044624 123.768073) (xy 106.921554 123.768078) (xy 105.155662 123.768078) (xy 105.087541 123.748076) (xy 105.056994 123.719515) (xy 105.056636 123.71981) (xy 105.054645 123.717388) (xy 104.975074 123.629863) (xy 104.975073 123.629862) (xy 104.897912 123.560435) (xy 104.897902 123.560427) (xy 104.806533 123.493469) (xy 104.718263 123.441345) (xy 104.718261 123.441344) (xy 104.718259 123.441343) (xy 104.653226 123.411171) (xy 104.618227 123.394934) (xy 104.523428 123.361684) (xy 104.523425 123.361683) (xy 104.523416 123.361681) (xy 104.523414 123.36168) (xy 104.443525 123.342106) (xy 104.417899 123.335827) (xy 104.417895 123.335826) (xy 104.41789 123.335825) (xy 104.417884 123.335824) (xy 104.417873 123.335822) (xy 104.320027 123.321559) (xy 104.319998 123.321556) (xy 104.212144 123.316244) (xy 104.212135 123.316244) (xy 104.113646 123.320777) (xy 104.006578 123.336) (xy 104.006574 123.336001) (xy 103.909731 123.359442) (xy 103.909711 123.359448) (xy 103.806601 123.395197) (xy 103.714275 123.437759) (xy 103.714255 123.43777) (xy 103.672783 123.46208) (xy 103.618263 123.494038) (xy 103.61826 123.494039) (xy 103.618255 123.494043) (xy 103.61825 123.494046) (xy 103.534562 123.5551) (xy 103.534538 123.55512) (xy 103.44882 123.631889) (xy 103.448817 123.631892) (xy 103.37861 123.708808) (xy 103.358047 123.73647) (xy 103.301353 123.779206) (xy 103.286988 123.78366) (xy 103.198813 123.805321) (xy 103.156056 123.820777) (xy 103.156047 123.820782) (xy 103.156045 123.820782) (xy 103.153726 123.82162) (xy 103.102123 123.844327) (xy 103.084745 123.852359) (xy 103.076672 123.856272) (xy 103.00841 123.896048) (xy 103.001018 123.901147) (xy 102.910968 123.980058) (xy 102.904271 123.987458) (xy 102.904263 123.987468) (xy 102.835719 124.083122) (xy 102.835715 124.08313) (xy 102.829681 124.093968) (xy 102.829678 124.093973) (xy 102.7934 124.17464) (xy 102.793396 124.174649) (xy 102.78799 124.19007) (xy 102.787982 124.190095) (xy 102.771723 124.246528) (xy 102.766904 124.267702) (xy 102.759839 124.305005) (xy 102.755596 124.33298) (xy 102.752468 124.357548) (xy 102.748759 124.393483) (xy 102.747328 124.409908) (xy 102.744117 124.455008) (xy 102.743444 124.466164) (xy 102.7407 124.521558) (xy 102.740372 124.529355) (xy 102.738069 124.596059) (xy 102.737907 124.601574) (xy 102.737068 124.636591) (xy 102.736007 124.680877) (xy 102.736007 124.680899) (xy 102.735927 124.684796) (xy 102.734396 124.777933) (xy 102.734358 124.780732) (xy 102.733406 124.86708) (xy 102.712654 124.934976) (xy 102.658489 124.980874) (xy 102.588108 124.990202) (xy 102.527942 124.963466) (xy 102.509389 124.948386) (xy 102.50937 124.948372) (xy 102.334798 124.821461) (xy 102.308523 124.804463) (xy 102.287453 124.790832) (xy 102.124816 124.697754) (xy 102.124802 124.697746) (xy 102.124795 124.697742) (xy 102.124789 124.697739) (xy 102.077534 124.673812) (xy 102.077523 124.673806) (xy 101.913205 124.600898) (xy 101.913197 124.600894) (xy 101.861284 124.581118) (xy 101.861276 124.581115) (xy 101.861267 124.581112) (xy 101.750685 124.545645) (xy 101.69659 124.528295) (xy 101.639579 124.513522) (xy 101.468175 124.479362) (xy 101.432133 124.474132) (xy 101.414233 124.471534) (xy 101.414221 124.471532) (xy 101.414215 124.471532) (xy 101.414206 124.471531) (xy 101.229753 124.454598) (xy 101.194072 124.452558) (xy 101.099155 124.450409) (xy 101.083767 124.450061) (xy 101.083761 124.450061) (xy 101.08376 124.450061) (xy 101.055927 124.450177) (xy 100.897442 124.455096) (xy 100.857113 124.457924) (xy 100.709057 124.474132) (xy 100.709045 124.474134) (xy 100.662689 124.481344) (xy 100.662673 124.481346) (xy 100.519276 124.510349) (xy 100.51926 124.510352) (xy 100.484624 124.519023) (xy 100.473267 124.521867) (xy 100.473262 124.521868) (xy 100.473252 124.521871) (xy 100.328611 124.565193) (xy 100.289025 124.578814) (xy 100.289019 124.578816) (xy 100.289017 124.578817) (xy 100.137303 124.637973) (xy 100.137297 124.637975) (xy 100.137283 124.637981) (xy 100.107158 124.650837) (xy 99.942501 124.727361) (xy 99.929262 124.733745) (xy 99.901249 124.747746) (xy 99.900604 124.748066) (xy 99.839477 124.778181) (xy 99.837421 124.779171) (xy 99.784877 124.803885) (xy 99.782381 124.805026) (xy 99.746623 124.820903) (xy 99.742013 124.822841) (xy 99.741045 124.823225) (xy 99.73069 124.826826) (xy 99.698198 124.83656) (xy 99.698184 124.836566) (xy 99.583129 124.886915) (xy 99.472499 124.974655) (xy 99.472498 124.974655) (xy 99.472497 124.974657) (xy 99.460865 124.990708) (xy 99.389636 125.088996) (xy 99.340698 125.221445) (xy 99.340697 125.221446) (xy 99.329308 125.362188) (xy 99.329308 125.36219) (xy 99.356314 125.500789) (xy 99.367691 125.523432) (xy 99.380402 125.593281) (xy 99.353332 125.658915) (xy 99.295075 125.699494) (xy 99.226736 125.702767) (xy 99.215402 125.700148) (xy 99.214607 125.699962) (xy 99.123585 125.678307) (xy 99.123022 125.678171) (xy 99.086885 125.669398) (xy 99.086888 125.669398) (xy 99.086848 125.669389) (xy 99.085855 125.669153) (xy 99.081734 125.668175) (xy 98.918963 125.630421) (xy 98.902883 125.62696) (xy 98.812436 125.608995) (xy 98.760448 125.59867) (xy 98.737509 125.594647) (xy 98.737482 125.594642) (xy 98.737477 125.594642) (xy 98.610032 125.57523) (xy 98.580671 125.571613) (xy 98.462794 125.560493) (xy 98.429582 125.558432) (xy 98.316021 125.555042) (xy 98.283513 125.555092) (xy 98.168956 125.558856) (xy 98.146862 125.560055) (xy 98.14685 125.560055) (xy 98.146848 125.560056) (xy 98.141075 125.560493) (xy 98.078801 125.565206) (xy 98.049568 125.568255) (xy 97.854957 125.594147) (xy 97.802519 125.603891) (xy 97.802479 125.6039) (xy 97.630138 125.645196) (xy 97.630114 125.645202) (xy 97.567004 125.664651) (xy 97.566997 125.664653) (xy 97.41606 125.72193) (xy 97.416057 125.721931) (xy 97.344527 125.755517) (xy 97.214154 125.829348) (xy 97.140388 125.879996) (xy 97.140384 125.879999) (xy 97.029773 125.970935) (xy 96.962875 126.036962) (xy 96.903802 126.106931) (xy 96.844573 126.146078) (xy 96.773582 126.146988) (xy 96.713369 126.109374) (xy 96.709561 126.104883) (xy 96.698604 126.091325) (xy 96.647339 126.036528) (xy 96.523508 125.922028) (xy 96.512107 125.912959) (xy 96.463258 125.874102) (xy 96.46325 125.874096) (xy 96.325886 125.7806) (xy 96.256257 125.74072) (xy 96.256251 125.740717) (xy 96.256248 125.740715) (xy 96.107907 125.670394) (xy 96.107905 125.670393) (xy 96.107887 125.670385) (xy 96.04662 125.645985) (xy 96.046607 125.645981) (xy 95.9577 125.616977) (xy 95.957679 125.616971) (xy 95.897205 125.601205) (xy 95.80986 125.583982) (xy 95.759916 125.57664) (xy 95.759857 125.576633) (xy 95.654814 125.56639) (xy 95.619354 125.564155) (xy 95.505357 125.56088) (xy 95.50535 125.56088) (xy 95.496829 125.560895) (xy 95.473682 125.560937) (xy 95.439524 125.562041) (xy 95.370793 125.544249) (xy 95.322592 125.492123) (xy 95.309457 125.435737) (xy 95.309645 125.37224) (xy 95.310548 125.265207) (xy 95.310561 125.264278) (xy 95.312109 125.181511) (xy 95.312166 125.17943) (xy 95.314113 125.126229) (xy 95.331688 125.06651) (xy 95.339388 125.053542) (xy 95.352027 125.030801) (xy 95.38773 124.95157) (xy 95.389424 124.946773) (xy 95.410445 124.867993) (xy 95.416862 124.726934) (xy 95.384984 124.589375) (xy 95.317175 124.465517) (xy 95.218464 124.364547) (xy 95.218463 124.364546) (xy 95.16378 124.33298) (xy 95.096172 124.293953) (xy 95.04138 124.279942) (xy 94.959375 124.258972) (xy 94.959371 124.258971) (xy 94.959369 124.258971) (xy 94.946126 124.257458) (xy 94.946122 124.257457) (xy 94.946116 124.257457) (xy 94.904147 124.254381) (xy 94.866372 124.253151) (xy 94.857661 124.25294) (xy 94.798123 124.252009) (xy 94.794013 124.251962) (xy 94.716032 124.251356) (xy 94.713238 124.251341) (xy 94.619612 124.251076) (xy 94.619612 124.251077) (xy 94.617552 124.251075) (xy 94.617548 124.251075) (xy 94.617546 124.251075) (xy 94.616889 124.251075) (xy 94.51087 124.251172) (xy 94.510741 124.251173) (xy 94.50909 124.251177) (xy 94.509018 124.251177) (xy 94.467746 124.251346) (xy 94.392319 124.251656) (xy 94.392206 124.251656) (xy 94.391309 124.251661) (xy 94.391298 124.251662) (xy 94.35161 124.251903) (xy 94.351609 124.251902) (xy 94.351522 124.251903) (xy 94.351401 124.251903) (xy 94.351347 124.251904) (xy 94.277293 124.252391) (xy 93.805596 124.255493) (xy 93.805591 124.255493) (xy 93.80559 124.255494) (xy 93.7951 124.256589) (xy 93.705175 124.265984) (xy 93.571968 124.312835) (xy 93.456341 124.393886) (xy 93.36687 124.503127) (xy 93.348239 124.545638) (xy 93.315374 124.62063) (xy 93.310189 124.63246) (xy 93.310188 124.632462) (xy 93.290504 124.772271) (xy 93.290503 124.772282) (xy 93.283639 126.86586) (xy 93.283639 126.866067) (xy 93.283639 126.866111) (xy 93.283442 126.927899) (xy 93.282732 127.149833) (xy 93.282732 127.150034) (xy 93.282732 127.150073) (xy 93.282567 127.203012) (xy 93.281928 127.407797) (xy 93.281928 127.407812) (xy 93.281175 127.640583) (xy 93.281175 127.640628) (xy 93.280532 127.819458) (xy 93.280422 127.849943) (xy 93.279636 128.03309) (xy 93.279621 128.036487) (xy 93.27962 128.036634) (xy 93.278713 128.202656) (xy 93.278712 128.202882) (xy 93.277656 128.348503) (xy 93.277653 128.348832) (xy 93.276398 128.476084) (xy 93.276392 128.476561) (xy 93.2749 128.585845) (xy 93.274889 128.586521) (xy 93.27313 128.679008) (xy 93.273108 128.679972) (xy 93.271059 128.756791) (xy 93.271016 128.758148) (xy 93.268712 128.81965) (xy 93.268625 128.821574) (xy 93.266411 128.86352) (xy 93.249296 128.920583) (xy 93.229876 128.953721) (xy 93.187481 129.045588) (xy 93.187478 129.045595) (xy 93.159698 129.184031) (xy 75.174325 129.184031) (xy 75.183956 129.0678) (xy 75.165364 128.843432) (xy 75.143607 128.757516) (xy 75.110097 128.625187) (xy 75.110096 128.625186) (xy 75.110096 128.625184) (xy 75.01966 128.419009) (xy 75.007758 128.400791) (xy 74.896524 128.230534) (xy 74.89652 128.230529) (xy 74.744037 128.064891) (xy 74.646283 127.988806) (xy 74.566376 127.926611) (xy 74.532592 127.908328) (xy 74.482202 127.858316) (xy 74.46685 127.788999) (xy 74.49141 127.722386) (xy 74.532593 127.686701) (xy 74.5661 127.668567) (xy 74.566101 127.668567) (xy 74.743702 127.530334) (xy 74.896125 127.364758) (xy 74.963783 127.2612) (xy 80.476835 127.2612) (xy 80.495465 127.497911) (xy 80.51106 127.562868) (xy 80.550894 127.728792) (xy 80.640118 127.944198) (xy 80.64176 127.948163) (xy 80.713293 128.064894) (xy 80.765825 128.150617) (xy 80.765826 128.150619) (xy 80.92003 128.331169) (xy 81.10058 128.485373) (xy 81.100584 128.485376) (xy 81.303037 128.60944) (xy 81.522406 128.700305) (xy 81.753289 128.755735) (xy 81.99 128.774365) (xy 82.226711 128.755735) (xy 82.457594 128.700305) (xy 82.676963 128.60944) (xy 82.879416 128.485376) (xy 83.059969 128.331169) (xy 83.214176 128.150616) (xy 83.33824 127.948163) (xy 83.429105 127.728794) (xy 83.484535 127.497911) (xy 83.503165 127.2612) (xy 86.976835 127.2612) (xy 86.995465 127.497911) (xy 87.01106 127.562868) (xy 87.050894 127.728792) (xy 87.140118 127.944198) (xy 87.14176 127.948163) (xy 87.213293 128.064894) (xy 87.265825 128.150617) (xy 87.265826 128.150619) (xy 87.42003 128.331169) (xy 87.60058 128.485373) (xy 87.600584 128.485376) (xy 87.803037 128.60944) (xy 88.022406 128.700305) (xy 88.253289 128.755735) (xy 88.49 128.774365) (xy 88.726711 128.755735) (xy 88.957594 128.700305) (xy 89.176963 128.60944) (xy 89.379416 128.485376) (xy 89.559969 128.331169) (xy 89.714176 128.150616) (xy 89.83824 127.948163) (xy 89.929105 127.728794) (xy 89.984535 127.497911) (xy 90.003165 127.2612) (xy 89.984535 127.024489) (xy 89.929105 126.793606) (xy 89.83824 126.574237) (xy 89.714176 126.371784) (xy 89.714173 126.37178) (xy 89.559969 126.19123) (xy 89.379419 126.037026) (xy 89.379417 126.037025) (xy 89.379416 126.037024) (xy 89.176963 125.91296) (xy 89.122267 125.890304) (xy 88.957592 125.822094) (xy 88.784771 125.780604) (xy 88.726711 125.766665) (xy 88.49 125.748035) (xy 88.253289 125.766665) (xy 88.022407 125.822094) (xy 87.803038 125.912959) (xy 87.600582 126.037025) (xy 87.60058 126.037026) (xy 87.42003 126.19123) (xy 87.265826 126.37178) (xy 87.265825 126.371782) (xy 87.141759 126.574238) (xy 87.050894 126.793607) (xy 87.003164 126.992419) (xy 86.995465 127.024489) (xy 86.976835 127.2612) (xy 83.503165 127.2612) (xy 83.484535 127.024489) (xy 83.429105 126.793606) (xy 83.33824 126.574237) (xy 83.214176 126.371784) (xy 83.214173 126.37178) (xy 83.059969 126.19123) (xy 82.879419 126.037026) (xy 82.879417 126.037025) (xy 82.879416 126.037024) (xy 82.676963 125.91296) (xy 82.622267 125.890304) (xy 82.457592 125.822094) (xy 82.284771 125.780604) (xy 82.226711 125.766665) (xy 81.99 125.748035) (xy 81.753289 125.766665) (xy 81.522407 125.822094) (xy 81.303038 125.912959) (xy 81.100582 126.037025) (xy 81.10058 126.037026) (xy 80.92003 126.19123) (xy 80.765826 126.37178) (xy 80.765825 126.371782) (xy 80.641759 126.574238) (xy 80.550894 126.793607) (xy 80.503164 126.992419) (xy 80.495465 127.024489) (xy 80.476835 127.2612) (xy 74.963783 127.2612) (xy 75.019219 127.176348) (xy 75.109622 126.970254) (xy 75.109623 126.970249) (xy 75.157344 126.7818) (xy 74.251503 126.7818) (xy 74.286725 126.720793) (xy 74.3208 126.593626) (xy 74.3208 126.461974) (xy 74.286725 126.334807) (xy 74.251503 126.2738) (xy 75.157344 126.2738) (xy 75.157344 126.273799) (xy 75.109623 126.08535) (xy 75.10962 126.085343) (xy 75.019219 125.879251) (xy 74.896125 125.690841) (xy 74.743702 125.525265) (xy 74.566101 125.387032) (xy 74.5661 125.387031) (xy 74.532591 125.368897) (xy 74.482201 125.318883) (xy 74.46685 125.249566) (xy 74.491412 125.182953) (xy 74.53259 125.147272) (xy 74.566376 125.128989) (xy 74.74404 124.990706) (xy 74.811708 124.9172) (xy 83.871696 124.9172) (xy 83.891657 125.107127) (xy 83.915854 125.181595) (xy 83.950673 125.288756) (xy 83.950676 125.288761) (xy 84.046158 125.454141) (xy 84.046165 125.454151) (xy 84.173944 125.596064) (xy 84.20272 125.616971) (xy 84.328448 125.708318) (xy 84.502912 125.785994) (xy 84.689713 125.8257) (xy 84.880687 125.8257) (xy 85.067488 125.785994) (xy 85.241952 125.708318) (xy 85.396453 125.596066) (xy 85.407333 125.583983) (xy 85.524234 125.454151) (xy 85.524235 125.454149) (xy 85.52424 125.454144) (xy 85.619727 125.288756) (xy 85.678742 125.107128) (xy 85.698704 124.9172) (xy 85.678742 124.727272) (xy 85.619727 124.545644) (xy 85.52424 124.380256) (xy 85.524238 124.380254) (xy 85.524234 124.380248) (xy 85.396455 124.238335) (xy 85.241952 124.126082) (xy 85.067488 124.048406) (xy 84.880687 124.0087) (xy 84.689713 124.0087) (xy 84.502911 124.048406) (xy 84.328447 124.126082) (xy 84.173944 124.238335) (xy 84.046165 124.380248) (xy 84.046158 124.380258) (xy 83.960077 124.529355) (xy 83.950673 124.545644) (xy 83.944321 124.565193) (xy 83.891657 124.727272) (xy 83.871696 124.9172) (xy 74.811708 124.9172) (xy 74.896522 124.825068) (xy 75.01966 124.636591) (xy 75.110096 124.430416) (xy 75.165364 124.212168) (xy 75.183956 123.9878) (xy 75.165364 123.763432) (xy 75.151531 123.708808) (xy 75.110097 123.545187) (xy 75.110096 123.545186) (xy 75.110096 123.545184) (xy 75.01966 123.339009) (xy 75.003757 123.314668) (xy 74.896524 123.150534) (xy 74.89652 123.150529) (xy 74.744037 122.984891) (xy 74.635807 122.900652) (xy 74.566376 122.846611) (xy 74.558356 122.842271) (xy 74.53312 122.828614) (xy 74.482729 122.778602) (xy 74.467376 122.709285) (xy 74.491936 122.642672) (xy 74.53312 122.606986) (xy 74.566376 122.588989) (xy 74.74404 122.450706) (xy 74.896522 122.285068) (xy 75.01966 122.096591) (xy 75.110096 121.890416) (xy 75.165364 121.672168) (xy 75.183956 121.4478) (xy 75.165364 121.223432) (xy 75.1121 121.013096) (xy 75.110097 121.005187) (xy 75.110096 121.005186) (xy 75.110096 121.005184) (xy 75.01966 120.799009) (xy 74.945082 120.684858) (xy 74.896524 120.610534) (xy 74.89652 120.610529) (xy 74.830591 120.538912) (xy 74.74404 120.444894) (xy 74.739514 120.441371) (xy 74.627909 120.354504) (xy 74.586438 120.296879) (xy 74.5793 120.255073) (xy 74.5793 120.026098) (xy 74.5793 120.026094) (xy 74.564725 119.952824) (xy 74.550151 119.879553) (xy 74.492974 119.741516) (xy 74.409966 119.617285) (xy 73.013515 118.220834) (xy 72.889284 118.137826) (xy 72.751249 118.08065) (xy 72.751247 118.080649) (xy 72.651962 118.0609) (xy 72.604706 118.0515) (xy 68.195294 118.0515) (xy 68.195293 118.0515) (xy 68.171666 118.0562) (xy 68.148038 118.0609) (xy 68.048753 118.080649) (xy 68.04875 118.08065) (xy 67.910716 118.137826) (xy 67.786486 118.220833) (xy 67.78648 118.220838) (xy 59.014898 126.992419) (xy 58.974022 127.019732) (xy 58.82787 127.080271) (xy 58.827868 127.080272) (xy 58.618707 127.208445) (xy 58.432167 127.367767) (xy 58.272845 127.554307) (xy 58.156103 127.744815) (xy 58.144673 127.763468) (xy 58.123549 127.814465) (xy 58.050795 127.990107) (xy 58.01226 128.150617) (xy 57.993528 128.228643) (xy 57.974281 128.4732) (xy 57.993528 128.717757) (xy 58.050795 128.956292) (xy 58.144673 129.182932) (xy 58.185508 129.249569) (xy 58.272845 129.392092) (xy 58.272846 129.392094) (xy 58.272848 129.392096) (xy 58.432167 129.578633) (xy 58.618704 129.737952) (xy 58.618706 129.737953) (xy 58.618707 129.737954) (xy 58.649902 129.75707) (xy 58.827868 129.866127) (xy 59.054508 129.960005) (xy 59.293043 130.017272) (xy 59.5376 130.036519) (xy 59.782157 130.017272) (xy 60.020692 129.960005) (xy 60.247332 129.866127) (xy 60.456496 129.737952) (xy 60.643033 129.578633) (xy 60.71179 129.498129) (xy 60.77124 129.459321) (xy 60.842234 129.458815) (xy 60.902233 129.496771) (xy 60.903367 129.498079) (xy 60.972167 129.578633) (xy 61.158704 129.737952) (xy 61.158706 129.737953) (xy 61.158707 129.737954) (xy 61.189902 129.75707) (xy 61.367868 129.866127) (xy 61.594508 129.960005) (xy 61.833043 130.017272) (xy 62.0776 130.036519) (xy 62.322157 130.017272) (xy 62.560692 129.960005) (xy 62.787332 129.866127) (xy 62.965299 129.757069) (xy 63.03383 129.738532) (xy 63.101506 129.759988) (xy 63.131999 129.788993) (xy 63.204697 129.886105) (xy 63.321634 129.973644) (xy 63.458506 130.024694) (xy 63.519002 130.031199) (xy 63.519015 130.0312) (xy 64.3636 130.0312) (xy 64.3636 128.961638) (xy 64.405308 128.985718) (xy 64.545191 129.0232) (xy 64.690009 129.0232) (xy 64.829892 128.985718) (xy 64.8716 128.961638) (xy 64.8716 130.0312) (xy 65.716185 130.0312) (xy 65.716197 130.031199) (xy 65.776693 130.024694) (xy 65.913564 129.973644) (xy 65.913565 129.973644) (xy 66.030504 129.886104) (xy 66.118044 129.769165) (xy 66.118044 129.769164) (xy 66.169094 129.632293) (xy 66.175599 129.571797) (xy 66.1756 129.571785) (xy 66.1756 128.7272) (xy 65.106038 128.7272) (xy 65.130118 128.685492) (xy 65.1676 128.545609) (xy 65.1676 128.400791) (xy 65.130118 128.260908) (xy 65.106038 128.2192) (xy 66.1756 128.2192) (xy 66.1756 127.374614) (xy 66.175599 127.374602) (xy 66.169094 127.314106) (xy 66.118044 127.177235) (xy 66.118044 127.177234) (xy 66.030504 127.060295) (xy 65.913565 126.972755) (xy 65.776693 126.921705) (xy 65.716197 126.9152) (xy 64.8716 126.9152) (xy 64.8716 127.984761) (xy 64.829892 127.960682) (xy 64.690009 127.9232) (xy 64.545191 127.9232) (xy 64.405308 127.960682) (xy 64.3636 127.984761) (xy 64.3636 126.9152) (xy 63.519002 126.9152) (xy 63.458506 126.921705) (xy 63.321635 126.972755) (xy 63.321634 126.972755) (xy 63.204695 127.060296) (xy 63.131998 127.157406) (xy 63.075162 127.199952) (xy 63.004346 127.205016) (xy 62.965297 127.189329) (xy 62.846567 127.116572) (xy 62.787332 127.080273) (xy 62.560692 126.986395) (xy 62.322157 126.929128) (xy 62.0776 126.909881) (xy 61.833043 126.929128) (xy 61.594507 126.986395) (xy 61.448709 127.046787) (xy 61.378119 127.054376) (xy 61.314632 127.022597) (xy 61.278405 126.961539) (xy 61.280939 126.890587) (xy 61.311394 126.841285) (xy 68.547276 119.605405) (xy 68.609588 119.571379) (xy 68.636371 119.5685) (xy 72.163629 119.5685) (xy 72.23175 119.588502) (xy 72.252724 119.605405) (xy 72.906127 120.258808) (xy 72.940153 120.32112) (xy 72.935088 120.391935) (xy 72.899965 120.439825) (xy 72.901388 120.441371) (xy 72.897554 120.444899) (xy 72.836555 120.511162) (xy 72.775702 120.547733) (xy 72.704737 120.545598) (xy 72.646192 120.505436) (xy 72.625799 120.469857) (xy 72.593365 120.3829) (xy 72.581689 120.351596) (xy 72.581688 120.351594) (xy 72.581687 120.351592) (xy 72.494061 120.234538) (xy 72.377007 120.146912) (xy 72.377002 120.14691) (xy 72.240004 120.095811) (xy 72.239996 120.095809) (xy 72.179449 120.0893) (xy 72.179438 120.0893) (xy 70.382162 120.0893) (xy 70.38215 120.0893) (xy 70.321603 120.095809) (xy 70.321595 120.095811) (xy 70.184597 120.14691) (xy 70.184592 120.146912) (xy 70.067538 120.234538) (xy 69.979912 120.351592) (xy 69.97991 120.351597) (xy 69.928811 120.488595) (xy 69.928809 120.488603) (xy 69.9223 120.54915) (xy 69.9223 122.346449) (xy 69.928809 122.406996) (xy 69.928811 122.407004) (xy 69.97991 122.544002) (xy 69.979912 122.544007) (xy 70.067538 122.661061) (xy 70.184591 122.748686) (xy 70.184592 122.748686) (xy 70.184596 122.748689) (xy 70.29961 122.791587) (xy 70.356442 122.834132) (xy 70.381253 122.900652) (xy 70.366162 122.970026) (xy 70.348275 122.994979) (xy 70.20508 123.150529) (xy 70.205075 123.150534) (xy 70.081941 123.339006) (xy 69.991503 123.545186) (xy 69.991502 123.545187) (xy 69.936237 123.763424) (xy 69.936236 123.76343) (xy 69.936236 123.763432) (xy 69.917644 123.9878) (xy 69.935823 124.207187) (xy 69.936237 124.212175) (xy 69.991502 124.430412) (xy 69.991503 124.430413) (xy 69.991504 124.430416) (xy 70.074875 124.620484) (xy 70.081941 124.636593) (xy 70.205075 124.825065) (xy 70.205079 124.82507) (xy 70.357562 124.990708) (xy 70.40275 125.025879) (xy 70.535224 125.128989) (xy 70.56848 125.146986) (xy 70.618871 125.197) (xy 70.634223 125.266316) (xy 70.609662 125.332929) (xy 70.56848 125.368613) (xy 70.535226 125.38661) (xy 70.535224 125.386611) (xy 70.357562 125.524891) (xy 70.205079 125.690529) (xy 70.205075 125.690534) (xy 70.081941 125.879006) (xy 69.991503 126.085186) (xy 69.991502 126.085187) (xy 69.936237 126.303424) (xy 69.936236 126.30343) (xy 69.936236 126.303432) (xy 69.917644 126.5278) (xy 69.933636 126.720793) (xy 69.936237 126.752175) (xy 69.991502 126.970412) (xy 69.991503 126.970413) (xy 69.991504 126.970416) (xy 70.08194 127.176591) (xy 70.081941 127.176593) (xy 70.205075 127.365065) (xy 70.205079 127.36507) (xy 70.357562 127.530708) (xy 70.381949 127.549689) (xy 70.535224 127.668989) (xy 70.567953 127.686701) (xy 70.56848 127.686986) (xy 70.618871 127.737) (xy 70.634223 127.806316) (xy 70.609662 127.872929) (xy 70.56848 127.908613) (xy 70.535226 127.92661) (xy 70.535224 127.926611) (xy 70.357562 128.064891) (xy 70.205079 128.230529) (xy 70.205075 128.230534) (xy 70.081941 128.419006) (xy 69.991503 128.625186) (xy 69.991502 128.625187) (xy 69.936237 128.843424) (xy 69.936236 128.84343) (xy 69.936236 128.843432) (xy 69.917644 129.0678) (xy 69.931779 129.238384) (xy 69.936237 129.292175) (xy 69.991502 129.510412) (xy 69.991503 129.510413) (xy 69.991504 129.510416) (xy 70.08173 129.716112) (xy 70.081941 129.716593) (xy 70.205075 129.905065) (xy 70.205079 129.90507) (xy 70.320366 130.030303) (xy 70.35701 130.070109) (xy 70.357562 130.070708) (xy 70.396435 130.100964) (xy 70.535224 130.208989) (xy 70.56848 130.226986) (xy 70.618871 130.277) (xy 70.634223 130.346316) (xy 70.609662 130.412929) (xy 70.56848 130.448613) (xy 70.535226 130.46661) (xy 70.535224 130.466611) (xy 70.357562 130.604891) (xy 70.205079 130.770529) (xy 70.205075 130.770534) (xy 70.109245 130.917215) (xy 70.055242 130.963304) (xy 70.003762 130.9743) (xy 60.964714 130.9743) (xy 60.916494 130.964708) (xy 60.912002 130.962847) (xy 60.911996 130.962845) (xy 60.789607 130.9385) (xy 60.789605 130.9385) (xy 57.667794 130.9385) (xy 57.599673 130.918498) (xy 57.578699 130.901595) (xy 56.545405 129.868301) (xy 56.511379 129.805989) (xy 56.5085 129.779206) (xy 56.5085 121.537495) (xy 56.528502 121.469374) (xy 56.582158 121.422881) (xy 56.652432 121.412777) (xy 56.678529 121.419438) (xy 56.765799 121.451989) (xy 56.765801 121.451989) (xy 56.765803 121.45199) (xy 56.82635 121.458499) (xy 56.826355 121.458499) (xy 56.826362 121.4585) (xy 56.826368 121.4585) (xy 58.623632 121.4585) (xy 58.623638 121.4585) (xy 58.623645 121.458499) (xy 58.623649 121.458499) (xy 58.684196 121.45199) (xy 58.684199 121.451989) (xy 58.684201 121.451989) (xy 58.821204 121.400889) (xy 58.891399 121.348342) (xy 58.938261 121.313261) (xy 59.025886 121.196208) (xy 59.025885 121.196208) (xy 59.025889 121.196204) (xy 59.069999 121.077939) (xy 59.112545 121.021107) (xy 59.179066 120.996296) (xy 59.24844 121.011388) (xy 59.280753 121.036635) (xy 59.315843 121.074753) (xy 59.341762 121.102908) (xy 59.396331 121.145381) (xy 59.519424 121.241189) (xy 59.717426 121.348342) (xy 59.717427 121.348342) (xy 59.717428 121.348343) (xy 59.829227 121.386723) (xy 59.930365 121.421444) (xy 60.152431 121.4585) (xy 60.152435 121.4585) (xy 60.377565 121.4585) (xy 60.377569 121.4585) (xy 60.599635 121.421444) (xy 60.812574 121.348342) (xy 61.010576 121.241189) (xy 61.18824 121.102906) (xy 61.340722 120.937268) (xy 61.46386 120.748791) (xy 61.554296 120.542616) (xy 61.609564 120.324368) (xy 61.628156 120.1) (xy 61.609564 119.875632) (xy 61.575601 119.741516) (xy 61.554297 119.657387) (xy 61.554296 119.657386) (xy 61.554296 119.657384) (xy 61.46386 119.451209) (xy 61.4465 119.424637) (xy 61.340724 119.262734) (xy 61.34072 119.262729) (xy 61.188237 119.097091) (xy 61.068367 119.003792) (xy 61.010576 118.958811) (xy 60.812574 118.851658) (xy 60.812572 118.851657) (xy 60.812571 118.851656) (xy 60.599639 118.778557) (xy 60.59963 118.778555) (xy 60.555476 118.771187) (xy 60.377569 118.7415) (xy 60.152431 118.7415) (xy 60.004211 118.766233) (xy 59.930369 118.778555) (xy 59.93036 118.778557) (xy 59.717428 118.851656) (xy 59.717426 118.851658) (xy 59.519426 118.95881) (xy 59.519424 118.958811) (xy 59.341762 119.097091) (xy 59.280754 119.163363) (xy 59.219901 119.199933) (xy 59.148936 119.197798) (xy 59.090391 119.157636) (xy 59.069999 119.122057) (xy 59.045047 119.055159) (xy 59.025889 119.003796) (xy 59.025888 119.003794) (xy 59.025887 119.003792) (xy 58.938261 118.886738) (xy 58.821207 118.799112) (xy 58.821202 118.79911) (xy 58.684204 118.748011) (xy 58.684196 118.748009) (xy 58.623649 118.7415) (xy 58.623638 118.7415) (xy 56.826362 118.7415) (xy 56.82635 118.7415) (xy 56.765803 118.748009) (xy 56.7658 118.74801) (xy 56.678532 118.78056) (xy 56.607717 118.785625) (xy 56.545405 118.751599) (xy 56.511379 118.689287) (xy 56.5085 118.662504) (xy 56.5085 116.2812) (xy 92.812496 116.2812) (xy 92.832457 116.471127) (xy 92.862526 116.56367) (xy 92.891473 116.652756) (xy 92.891476 116.652761) (xy 92.986958 116.818141) (xy 92.986965 116.818151) (xy 93.114744 116.960064) (xy 93.114747 116.960066) (xy 93.269248 117.072318) (xy 93.443712 117.149994) (xy 93.630513 117.1897) (xy 93.821487 117.1897) (xy 94.008288 117.149994) (xy 94.182752 117.072318) (xy 94.337253 116.960066) (xy 94.337255 116.960064) (xy 94.465034 116.818151) (xy 94.465035 116.818149) (xy 94.46504 116.818144) (xy 94.560527 116.652756) (xy 94.619542 116.471128) (xy 94.639504 116.2812) (xy 94.619542 116.091272) (xy 94.560527 115.909644) (xy 94.46504 115.744256) (xy 94.465038 115.744254) (xy 94.465034 115.744248) (xy 94.337255 115.602335) (xy 94.182752 115.490082) (xy 94.008288 115.412406) (xy 93.821487 115.3727) (xy 93.630513 115.3727) (xy 93.443711 115.412406) (xy 93.269247 115.490082) (xy 93.114744 115.602335) (xy 92.986965 115.744248) (xy 92.986958 115.744258) (xy 92.891476 115.909638) (xy 92.891473 115.909645) (xy 92.832457 116.091272) (xy 92.812496 116.2812) (xy 56.5085 116.2812) (xy 56.5085 114.7064) (xy 100.991296 114.7064) (xy 101.011257 114.896327) (xy 101.041326 114.98887) (xy 101.070273 115.077956) (xy 101.070276 115.077961) (xy 101.165758 115.243341) (xy 101.165765 115.243351) (xy 101.293544 115.385264) (xy 101.293547 115.385266) (xy 101.448048 115.497518) (xy 101.622512 115.575194) (xy 101.809313 115.6149) (xy 102.000287 115.6149) (xy 102.187088 115.575194) (xy 102.361552 115.497518) (xy 102.516053 115.385266) (xy 102.516055 115.385264) (xy 102.643834 115.243351) (xy 102.643835 115.243349) (xy 102.64384 115.243344) (xy 102.739327 115.077956) (xy 102.798342 114.896328) (xy 102.818304 114.7064) (xy 102.798342 114.516472) (xy 102.739327 114.334844) (xy 102.64384 114.169456) (xy 102.643838 114.169454) (xy 102.643834 114.169448) (xy 102.516055 114.027535) (xy 102.361552 113.915282) (xy 102.187088 113.837606) (xy 102.000287 113.7979) (xy 101.809313 113.7979) (xy 101.622511 113.837606) (xy 101.448047 113.915282) (xy 101.293544 114.027535) (xy 101.165765 114.169448) (xy 101.165758 114.169458) (xy 101.070276 114.334838) (xy 101.070273 114.334845) (xy 101.011257 114.516472) (xy 100.991296 114.7064) (xy 56.5085 114.7064) (xy 56.5085 114.514) (xy 56.528502 114.445879) (xy 56.582158 114.399386) (xy 56.6345 114.388) (xy 56.896 114.388) (xy 56.896 113.47225) (xy 56.953147 113.505245) (xy 57.082857 113.54) (xy 57.217143 113.54) (xy 57.346853 113.505245) (xy 57.404 113.47225) (xy 57.404 114.388) (xy 58.048585 114.388) (xy 58.048597 114.387999) (xy 58.109093 114.381494) (xy 58.245964 114.330444) (xy 58.245965 114.330444) (xy 58.362904 114.242904) (xy 58.450444 114.125965) (xy 58.494618 114.00753) (xy 58.537165 113.950694) (xy 58.603685 113.925883) (xy 58.673059 113.940974) (xy 58.705372 113.966222) (xy 58.710645 113.971949) (xy 58.766762 114.032908) (xy 58.821331 114.075381) (xy 58.944424 114.171189) (xy 59.142426 114.278342) (xy 59.142427 114.278342) (xy 59.142428 114.278343) (xy 59.254227 114.316723) (xy 59.355365 114.351444) (xy 59.577431 114.3885) (xy 59.577435 114.3885) (xy 59.802565 114.3885) (xy 59.802569 114.3885) (xy 60.024635 114.351444) (xy 60.237574 114.278342) (xy 60.435576 114.171189) (xy 60.61324 114.032906) (xy 60.765722 113.867268) (xy 60.854518 113.731354) (xy 60.90852 113.685268) (xy 60.978868 113.675692) (xy 61.043225 113.705669) (xy 61.06548 113.731353) (xy 61.091983 113.771918) (xy 61.154275 113.867265) (xy 61.154279 113.86727) (xy 61.306762 114.032908) (xy 61.361331 114.075381) (xy 61.484424 114.171189) (xy 61.682426 114.278342) (xy 61.682427 114.278342) (xy 61.682428 114.278343) (xy 61.794227 114.316723) (xy 61.895365 114.351444) (xy 62.117431 114.3885) (xy 62.117435 114.3885) (xy 62.342565 114.3885) (xy 62.342569 114.3885) (xy 62.564635 114.351444) (xy 62.777574 114.278342) (xy 62.975576 114.171189) (xy 63.15324 114.032906) (xy 63.305722 113.867268) (xy 63.394518 113.731354) (xy 63.44852 113.685268) (xy 63.518868 113.675692) (xy 63.583225 113.705669) (xy 63.60548 113.731353) (xy 63.631983 113.771918) (xy 63.694275 113.867265) (xy 63.694279 113.86727) (xy 63.846762 114.032908) (xy 63.901331 114.075381) (xy 64.024424 114.171189) (xy 64.222426 114.278342) (xy 64.222427 114.278342) (xy 64.222428 114.278343) (xy 64.334227 114.316723) (xy 64.435365 114.351444) (xy 64.657431 114.3885) (xy 64.657435 114.3885) (xy 64.882565 114.3885) (xy 64.882569 114.3885) (xy 65.104635 114.351444) (xy 65.317574 114.278342) (xy 65.515576 114.171189) (xy 65.69324 114.032906) (xy 65.845722 113.867268) (xy 65.934518 113.731354) (xy 65.98852 113.685268) (xy 66.058868 113.675692) (xy 66.123225 113.705669) (xy 66.14548 113.731353) (xy 66.171983 113.771918) (xy 66.234275 113.867265) (xy 66.234279 113.86727) (xy 66.386762 114.032908) (xy 66.441331 114.075381) (xy 66.564424 114.171189) (xy 66.762426 114.278342) (xy 66.762427 114.278342) (xy 66.762428 114.278343) (xy 66.874227 114.316723) (xy 66.975365 114.351444) (xy 67.197431 114.3885) (xy 67.197435 114.3885) (xy 67.422565 114.3885) (xy 67.422569 114.3885) (xy 67.644635 114.351444) (xy 67.857574 114.278342) (xy 68.055576 114.171189) (xy 68.23324 114.032906) (xy 68.294626 113.966222) (xy 68.355476 113.929654) (xy 68.426441 113.931787) (xy 68.484986 113.971949) (xy 68.50538 114.007529) (xy 68.549553 114.125961) (xy 68.549555 114.125965) (xy 68.637095 114.242904) (xy 68.754034 114.330444) (xy 68.890906 114.381494) (xy 68.951402 114.387999) (xy 68.951415 114.388) (xy 69.596 114.388) (xy 69.596 113.47225) (xy 69.653147 113.505245) (xy 69.782857 113.54) (xy 69.917143 113.54) (xy 70.046853 113.505245) (xy 70.104 113.47225) (xy 70.104 114.388) (xy 70.748585 114.388) (xy 70.748597 114.387999) (xy 70.809093 114.381494) (xy 70.945964 114.330444) (xy 70.945965 114.330444) (xy 71.062904 114.242904) (xy 71.150444 114.125965) (xy 71.194618 114.00753) (xy 71.237165 113.950694) (xy 71.303685 113.925883) (xy 71.373059 113.940974) (xy 71.405372 113.966222) (xy 71.410645 113.971949) (xy 71.466762 114.032908) (xy 71.521331 114.075381) (xy 71.644424 114.171189) (xy 71.842426 114.278342) (xy 71.842427 114.278342) (xy 71.842428 114.278343) (xy 71.954227 114.316723) (xy 72.055365 114.351444) (xy 72.277431 114.3885) (xy 72.277435 114.3885) (xy 72.502565 114.3885) (xy 72.502569 114.3885) (xy 72.724635 114.351444) (xy 72.937574 114.278342) (xy 73.135576 114.171189) (xy 73.31324 114.032906) (xy 73.465722 113.867268) (xy 73.554518 113.731354) (xy 73.60852 113.685268) (xy 73.678868 113.675692) (xy 73.743225 113.705669) (xy 73.76548 113.731353) (xy 73.791983 113.771918) (xy 73.854275 113.867265) (xy 73.854279 113.86727) (xy 74.006762 114.032908) (xy 74.061331 114.075381) (xy 74.184424 114.171189) (xy 74.382426 114.278342) (xy 74.382427 114.278342) (xy 74.382428 114.278343) (xy 74.494227 114.316723) (xy 74.595365 114.351444) (xy 74.817431 114.3885) (xy 74.817435 114.3885) (xy 75.042565 114.3885) (xy 75.042569 114.3885) (xy 75.264635 114.351444) (xy 75.477574 114.278342) (xy 75.675576 114.171189) (xy 75.85324 114.032906) (xy 76.005722 113.867268) (xy 76.094518 113.731354) (xy 76.14852 113.685268) (xy 76.218868 113.675692) (xy 76.283225 113.705669) (xy 76.30548 113.731353) (xy 76.331983 113.771918) (xy 76.394275 113.867265) (xy 76.394279 113.86727) (xy 76.546762 114.032908) (xy 76.601331 114.075381) (xy 76.724424 114.171189) (xy 76.922426 114.278342) (xy 76.922427 114.278342) (xy 76.922428 114.278343) (xy 77.034227 114.316723) (xy 77.135365 114.351444) (xy 77.357431 114.3885) (xy 77.357435 114.3885) (xy 77.582565 114.3885) (xy 77.582569 114.3885) (xy 77.804635 114.351444) (xy 78.017574 114.278342) (xy 78.215576 114.171189) (xy 78.39324 114.032906) (xy 78.545722 113.867268) (xy 78.634518 113.731354) (xy 78.68852 113.685268) (xy 78.758868 113.675692) (xy 78.823225 113.705669) (xy 78.84548 113.731353) (xy 78.871983 113.771918) (xy 78.934275 113.867265) (xy 78.934279 113.86727) (xy 79.086762 114.032908) (xy 79.141331 114.075381) (xy 79.264424 114.171189) (xy 79.462426 114.278342) (xy 79.462427 114.278342) (xy 79.462428 114.278343) (xy 79.574227 114.316723) (xy 79.675365 114.351444) (xy 79.897431 114.3885) (xy 79.897435 114.3885) (xy 80.122565 114.3885) (xy 80.122569 114.3885) (xy 80.344635 114.351444) (xy 80.557574 114.278342) (xy 80.755576 114.171189) (xy 80.93324 114.032906) (xy 80.994626 113.966222) (xy 81.055476 113.929654) (xy 81.126441 113.931787) (xy 81.184986 113.971949) (xy 81.20538 114.007529) (xy 81.249553 114.125961) (xy 81.249555 114.125965) (xy 81.337095 114.242904) (xy 81.454034 114.330444) (xy 81.590906 114.381494) (xy 81.651402 114.387999) (xy 81.651415 114.388) (xy 82.296 114.388) (xy 82.296 113.47225) (xy 82.353147 113.505245) (xy 82.482857 113.54) (xy 82.617143 113.54) (xy 82.746853 113.505245) (xy 82.804 113.47225) (xy 82.804 114.388) (xy 83.448585 114.388) (xy 83.448597 114.387999) (xy 83.509093 114.381494) (xy 83.645964 114.330444) (xy 83.645965 114.330444) (xy 83.762904 114.242904) (xy 83.850444 114.125965) (xy 83.894618 114.00753) (xy 83.937165 113.950694) (xy 84.003685 113.925883) (xy 84.073059 113.940974) (xy 84.105372 113.966222) (xy 84.110645 113.971949) (xy 84.166762 114.032908) (xy 84.221331 114.075381) (xy 84.344424 114.171189) (xy 84.542426 114.278342) (xy 84.542427 114.278342) (xy 84.542428 114.278343) (xy 84.654227 114.316723) (xy 84.755365 114.351444) (xy 84.977431 114.3885) (xy 84.977435 114.3885) (xy 85.202565 114.3885) (xy 85.202569 114.3885) (xy 85.424635 114.351444) (xy 85.637574 114.278342) (xy 85.835576 114.171189) (xy 86.01324 114.032906) (xy 86.165722 113.867268) (xy 86.254518 113.731354) (xy 86.30852 113.685268) (xy 86.378868 113.675692) (xy 86.443225 113.705669) (xy 86.46548 113.731353) (xy 86.491983 113.771918) (xy 86.554275 113.867265) (xy 86.554279 113.86727) (xy 86.706762 114.032908) (xy 86.761331 114.075381) (xy 86.884424 114.171189) (xy 87.082426 114.278342) (xy 87.082427 114.278342) (xy 87.082428 114.278343) (xy 87.194227 114.316723) (xy 87.295365 114.351444) (xy 87.517431 114.3885) (xy 87.517435 114.3885) (xy 87.742565 114.3885) (xy 87.742569 114.3885) (xy 87.964635 114.351444) (xy 88.177574 114.278342) (xy 88.375576 114.171189) (xy 88.55324 114.032906) (xy 88.705722 113.867268) (xy 88.82886 113.678791) (xy 88.919296 113.472616) (xy 88.974564 113.254368) (xy 88.993156 113.03) (xy 88.974564 112.805632) (xy 88.972125 112.796002) (xy 88.919297 112.587387) (xy 88.919296 112.587386) (xy 88.919296 112.587384) (xy 88.82886 112.381209) (xy 88.82214 112.370924) (xy 88.705724 112.192734) (xy 88.705714 112.192722) (xy 88.588539 112.065438) (xy 88.557117 112.001774) (xy 88.565103 111.931228) (xy 88.609962 111.876198) (xy 88.67745 111.854157) (xy 88.681239 111.8541) (xy 88.802349 111.8541) (xy 88.802352 111.8541) (xy 89.004534 111.822077) (xy 89.199219 111.75882) (xy 89.38161 111.665887) (xy 89.547219 111.545566) (xy 89.691966 111.400819) (xy 89.812287 111.23521) (xy 89.90522 111.052819) (xy 89.968477 110.858134) (xy 90.0005 110.655952) (xy 90.0005 110.5536) (xy 90.0005 110.487708) (xy 90.0005 104.9528) (xy 92.710896 104.9528) (xy 92.730857 105.142727) (xy 92.757874 105.225874) (xy 92.789873 105.324356) (xy 92.789876 105.324361) (xy 92.885358 105.489741) (xy 92.885365 105.489751) (xy 93.013144 105.631664) (xy 93.013147 105.631666) (xy 93.167648 105.743918) (xy 93.342112 105.821594) (xy 93.528913 105.8613) (xy 93.719887 105.8613) (xy 93.906688 105.821594) (xy 94.081152 105.743918) (xy 94.235653 105.631666) (xy 94.266639 105.597253) (xy 94.363434 105.489751) (xy 94.363435 105.489749) (xy 94.36344 105.489744) (xy 94.458927 105.324356) (xy 94.517942 105.142728) (xy 94.537904 104.9528) (xy 94.517942 104.762872) (xy 94.458927 104.581244) (xy 94.36344 104.415856) (xy 94.363438 104.415854) (xy 94.363434 104.415848) (xy 94.235655 104.273935) (xy 94.081152 104.161682) (xy 93.906688 104.084006) (xy 93.719887 104.0443) (xy 93.528913 104.0443) (xy 93.342111 104.084006) (xy 93.167647 104.161682) (xy 93.013144 104.273935) (xy 92.885365 104.415848) (xy 92.885358 104.415858) (xy 92.789876 104.581238) (xy 92.789873 104.581244) (xy 92.78517 104.595718) (xy 92.730857 104.762872) (xy 92.710896 104.9528) (xy 90.0005 104.9528) (xy 90.0005 101.95) (xy 99.786496 101.95) (xy 99.806457 102.139927) (xy 99.82158 102.186468) (xy 99.865473 102.321556) (xy 99.865476 102.321561) (xy 99.960958 102.486941) (xy 99.960965 102.486951) (xy 100.088744 102.628864) (xy 100.088747 102.628866) (xy 100.243248 102.741118) (xy 100.417712 102.818794) (xy 100.604513 102.8585) (xy 100.795487 102.8585) (xy 100.982288 102.818794) (xy 101.156752 102.741118) (xy 101.311253 102.628866) (xy 101.402936 102.527042) (xy 101.439034 102.486951) (xy 101.439035 102.486949) (xy 101.43904 102.486944) (xy 101.534527 102.321556) (xy 101.593542 102.139928) (xy 101.613504 101.95) (xy 101.593542 101.760072) (xy 101.534527 101.578444) (xy 101.43904 101.413056) (xy 101.439038 101.413054) (xy 101.439034 101.413048) (xy 101.311255 101.271135) (xy 101.156752 101.158882) (xy 100.982288 101.081206) (xy 100.795487 101.0415) (xy 100.604513 101.0415) (xy 100.417711 101.081206) (xy 100.243247 101.158882) (xy 100.088744 101.271135) (xy 99.960965 101.413048) (xy 99.960958 101.413058) (xy 99.889311 101.537155) (xy 99.865473 101.578444) (xy 99.850999 101.622986) (xy 99.806457 101.760072) (xy 99.786496 101.95) (xy 90.0005 101.95) (xy 90.0005 97.687708) (xy 90.0005 97.651248) (xy 89.968477 97.449066) (xy 89.90522 97.254381) (xy 89.812287 97.07199) (xy 89.768153 97.011244) (xy 89.691965 96.906379) (xy 89.54722 96.761634) (xy 89.381612 96.641314) (xy 89.363519 96.632095) (xy 89.199219 96.54838) (xy 89.199216 96.548379) (xy 89.199214 96.548378) (xy 89.004538 96.485124) (xy 89.004536 96.485123) (xy 89.004534 96.485123) (xy 88.802352 96.4531) (xy 88.802349 96.4531) (xy 88.656199 96.4531) (xy 88.588078 96.433098) (xy 88.541585 96.379442) (xy 88.531481 96.309168) (xy 88.560975 96.244588) (xy 88.563499 96.241762) (xy 88.705714 96.087277) (xy 88.705724 96.087265) (xy 88.768017 95.991918) (xy 88.82886 95.898791) (xy 88.919296 95.692616) (xy 88.974564 95.474368) (xy 88.993156 95.25) (xy 88.974564 95.025632) (xy 88.952082 94.936853) (xy 88.919297 94.807387) (xy 88.919296 94.807386) (xy 88.919296 94.807384) (xy 88.82886 94.601209) (xy 88.8115 94.574637) (xy 88.705724 94.412734) (xy 88.70572 94.412729) (xy 88.57622 94.272057) (xy 88.55324 94.247094) (xy 88.553239 94.247093) (xy 88.553237 94.247091) (xy 88.433684 94.154039) (xy 88.375576 94.108811) (xy 88.177574 94.001658) (xy 88.177572 94.001657) (xy 88.177571 94.001656) (xy 87.964639 93.928557) (xy 87.96463 93.928555) (xy 87.920476 93.921187) (xy 87.742569 93.8915) (xy 87.517431 93.8915) (xy 87.371047 93.915927) (xy 87.295369 93.928555) (xy 87.29536 93.928557) (xy 87.082428 94.001656) (xy 87.082426 94.001658) (xy 86.905222 94.097556) (xy 86.884426 94.10881) (xy 86.884424 94.108811) (xy 86.706762 94.247091) (xy 86.554279 94.412729) (xy 86.465483 94.548643) (xy 86.411479 94.594731) (xy 86.341131 94.604306) (xy 86.276774 94.574329) (xy 86.254517 94.548643) (xy 86.16572 94.412729) (xy 86.03622 94.272057) (xy 86.01324 94.247094) (xy 86.013239 94.247093) (xy 86.013237 94.247091) (xy 85.893684 94.154039) (xy 85.835576 94.108811) (xy 85.637574 94.001658) (xy 85.637572 94.001657) (xy 85.637571 94.001656) (xy 85.424639 93.928557) (xy 85.42463 93.928555) (xy 85.380476 93.921187) (xy 85.202569 93.8915) (xy 84.977431 93.8915) (xy 84.831047 93.915927) (xy 84.755369 93.928555) (xy 84.75536 93.928557) (xy 84.542428 94.001656) (xy 84.542426 94.001658) (xy 84.365222 94.097556) (xy 84.344426 94.10881) (xy 84.344424 94.108811) (xy 84.166759 94.247094) (xy 84.105374 94.313775) (xy 84.044521 94.350346) (xy 83.973557 94.348211) (xy 83.915012 94.308049) (xy 83.894618 94.27247) (xy 83.850443 94.154033) (xy 83.762904 94.037095) (xy 83.645965 93.949555) (xy 83.509093 93.898505) (xy 83.448597 93.892) (xy 82.804 93.892) (xy 82.804 94.807749) (xy 82.746853 94.774755) (xy 82.617143 94.74) (xy 82.482857 94.74) (xy 82.353147 94.774755) (xy 82.296 94.807749) (xy 82.296 93.892) (xy 81.651402 93.892) (xy 81.590906 93.898505) (xy 81.454035 93.949555) (xy 81.454034 93.949555) (xy 81.337095 94.037095) (xy 81.249555 94.154034) (xy 81.249553 94.154039) (xy 81.20538 94.27247) (xy 81.162833 94.329306) (xy 81.096313 94.354116) (xy 81.026939 94.339024) (xy 80.994626 94.313777) (xy 80.93324 94.247094) (xy 80.933239 94.247093) (xy 80.933237 94.247091) (xy 80.813684 94.154039) (xy 80.755576 94.108811) (xy 80.557574 94.001658) (xy 80.557572 94.001657) (xy 80.557571 94.001656) (xy 80.344639 93.928557) (xy 80.34463 93.928555) (xy 80.300476 93.921187) (xy 80.122569 93.8915) (xy 79.897431 93.8915) (xy 79.751047 93.915927) (xy 79.675369 93.928555) (xy 79.67536 93.928557) (xy 79.462428 94.001656) (xy 79.462426 94.001658) (xy 79.285222 94.097556) (xy 79.264426 94.10881) (xy 79.264424 94.108811) (xy 79.086762 94.247091) (xy 78.934279 94.412729) (xy 78.845483 94.548643) (xy 78.791479 94.594731) (xy 78.721131 94.604306) (xy 78.656774 94.574329) (xy 78.634517 94.548643) (xy 78.54572 94.412729) (xy 78.41622 94.272057) (xy 78.39324 94.247094) (xy 78.393239 94.247093) (xy 78.393237 94.247091) (xy 78.273684 94.154039) (xy 78.215576 94.108811) (xy 78.017574 94.001658) (xy 78.017572 94.001657) (xy 78.017571 94.001656) (xy 77.804639 93.928557) (xy 77.80463 93.928555) (xy 77.760476 93.921187) (xy 77.582569 93.8915) (xy 77.357431 93.8915) (xy 77.211047 93.915927) (xy 77.135369 93.928555) (xy 77.13536 93.928557) (xy 76.922428 94.001656) (xy 76.922426 94.001658) (xy 76.745222 94.097556) (xy 76.724426 94.10881) (xy 76.724424 94.108811) (xy 76.546762 94.247091) (xy 76.394279 94.412729) (xy 76.305483 94.548643) (xy 76.251479 94.594731) (xy 76.181131 94.604306) (xy 76.116774 94.574329) (xy 76.094517 94.548643) (xy 76.00572 94.412729) (xy 75.87622 94.272057) (xy 75.85324 94.247094) (xy 75.853239 94.247093) (xy 75.853237 94.247091) (xy 75.733684 94.154039) (xy 75.675576 94.108811) (xy 75.477574 94.001658) (xy 75.477572 94.001657) (xy 75.477571 94.001656) (xy 75.264639 93.928557) (xy 75.26463 93.928555) (xy 75.220476 93.921187) (xy 75.042569 93.8915) (xy 74.817431 93.8915) (xy 74.671047 93.915927) (xy 74.595369 93.928555) (xy 74.59536 93.928557) (xy 74.382428 94.001656) (xy 74.382426 94.001658) (xy 74.205222 94.097556) (xy 74.184426 94.10881) (xy 74.184424 94.108811) (xy 74.006762 94.247091) (xy 73.854279 94.412729) (xy 73.765483 94.548643) (xy 73.711479 94.594731) (xy 73.641131 94.604306) (xy 73.576774 94.574329) (xy 73.554517 94.548643) (xy 73.46572 94.412729) (xy 73.33622 94.272057) (xy 73.31324 94.247094) (xy 73.313239 94.247093) (xy 73.313237 94.247091) (xy 73.193684 94.154039) (xy 73.135576 94.108811) (xy 72.937574 94.001658) (xy 72.937572 94.001657) (xy 72.937571 94.001656) (xy 72.724639 93.928557) (xy 72.72463 93.928555) (xy 72.680476 93.921187) (xy 72.502569 93.8915) (xy 72.277431 93.8915) (xy 72.131047 93.915927) (xy 72.055369 93.928555) (xy 72.05536 93.928557) (xy 71.842428 94.001656) (xy 71.842426 94.001658) (xy 71.665222 94.097556) (xy 71.644426 94.10881) (xy 71.644424 94.108811) (xy 71.466759 94.247094) (xy 71.405374 94.313775) (xy 71.344521 94.350346) (xy 71.273557 94.348211) (xy 71.215012 94.308049) (xy 71.194618 94.27247) (xy 71.150443 94.154033) (xy 71.062904 94.037095) (xy 70.945965 93.949555) (xy 70.809093 93.898505) (xy 70.748597 93.892) (xy 70.104 93.892) (xy 70.104 94.807749) (xy 70.046853 94.774755) (xy 69.917143 94.74) (xy 69.782857 94.74) (xy 69.653147 94.774755) (xy 69.596 94.807749) (xy 69.596 93.892) (xy 68.951402 93.892) (xy 68.890906 93.898505) (xy 68.754035 93.949555) (xy 68.754034 93.949555) (xy 68.637095 94.037095) (xy 68.549555 94.154034) (xy 68.549553 94.154039) (xy 68.50538 94.27247) (xy 68.462833 94.329306) (xy 68.396313 94.354116) (xy 68.326939 94.339024) (xy 68.294626 94.313777) (xy 68.23324 94.247094) (xy 68.233239 94.247093) (xy 68.233237 94.247091) (xy 68.113684 94.154039) (xy 68.055576 94.108811) (xy 67.857574 94.001658) (xy 67.857572 94.001657) (xy 67.857571 94.001656) (xy 67.644639 93.928557) (xy 67.64463 93.928555) (xy 67.600476 93.921187) (xy 67.422569 93.8915) (xy 67.197431 93.8915) (xy 67.051047 93.915927) (xy 66.975369 93.928555) (xy 66.97536 93.928557) (xy 66.762428 94.001656) (xy 66.762426 94.001658) (xy 66.585222 94.097556) (xy 66.564426 94.10881) (xy 66.564424 94.108811) (xy 66.386762 94.247091) (xy 66.234279 94.412729) (xy 66.145483 94.548643) (xy 66.091479 94.594731) (xy 66.021131 94.604306) (xy 65.956774 94.574329) (xy 65.934517 94.548643) (xy 65.84572 94.412729) (xy 65.71622 94.272057) (xy 65.69324 94.247094) (xy 65.693239 94.247093) (xy 65.693237 94.247091) (xy 65.573684 94.154039) (xy 65.515576 94.108811) (xy 65.317574 94.001658) (xy 65.317572 94.001657) (xy 65.317571 94.001656) (xy 65.104639 93.928557) (xy 65.10463 93.928555) (xy 65.060476 93.921187) (xy 64.882569 93.8915) (xy 64.657431 93.8915) (xy 64.511047 93.915927) (xy 64.435369 93.928555) (xy 64.43536 93.928557) (xy 64.222428 94.001656) (xy 64.222426 94.001658) (xy 64.045222 94.097556) (xy 64.024426 94.10881) (xy 64.024424 94.108811) (xy 63.846762 94.247091) (xy 63.694279 94.412729) (xy 63.605483 94.548643) (xy 63.551479 94.594731) (xy 63.481131 94.604306) (xy 63.416774 94.574329) (xy 63.394517 94.548643) (xy 63.30572 94.412729) (xy 63.17622 94.272057) (xy 63.15324 94.247094) (xy 63.153239 94.247093) (xy 63.153237 94.247091) (xy 63.033684 94.154039) (xy 62.975576 94.108811) (xy 62.777574 94.001658) (xy 62.777572 94.001657) (xy 62.777571 94.001656) (xy 62.564639 93.928557) (xy 62.56463 93.928555) (xy 62.520476 93.921187) (xy 62.342569 93.8915) (xy 62.117431 93.8915) (xy 61.971047 93.915927) (xy 61.895369 93.928555) (xy 61.89536 93.928557) (xy 61.682428 94.001656) (xy 61.682426 94.001658) (xy 61.505222 94.097556) (xy 61.484426 94.10881) (xy 61.484424 94.108811) (xy 61.306762 94.247091) (xy 61.154279 94.412729) (xy 61.065483 94.548643) (xy 61.011479 94.594731) (xy 60.941131 94.604306) (xy 60.876774 94.574329) (xy 60.854517 94.548643) (xy 60.76572 94.412729) (xy 60.63622 94.272057) (xy 60.61324 94.247094) (xy 60.613239 94.247093) (xy 60.613237 94.247091) (xy 60.493684 94.154039) (xy 60.435576 94.108811) (xy 60.237574 94.001658) (xy 60.237572 94.001657) (xy 60.237571 94.001656) (xy 60.024639 93.928557) (xy 60.02463 93.928555) (xy 59.980476 93.921187) (xy 59.802569 93.8915) (xy 59.577431 93.8915) (xy 59.431047 93.915927) (xy 59.355369 93.928555) (xy 59.35536 93.928557) (xy 59.142428 94.001656) (xy 59.142426 94.001658) (xy 58.965222 94.097556) (xy 58.944426 94.10881) (xy 58.944424 94.108811) (xy 58.766762 94.247091) (xy 58.705754 94.313363) (xy 58.644901 94.349933) (xy 58.573936 94.347798) (xy 58.515391 94.307636) (xy 58.494999 94.272057) (xy 58.470265 94.205744) (xy 58.450889 94.153796) (xy 58.450888 94.153794) (xy 58.450887 94.153792) (xy 58.363261 94.036738) (xy 58.246207 93.949112) (xy 58.246202 93.94911) (xy 58.109204 93.898011) (xy 58.109196 93.898009) (xy 58.048649 93.8915) (xy 58.048638 93.8915) (xy 56.251362 93.8915) (xy 56.25135 93.8915) (xy 56.190803 93.898009) (xy 56.190795 93.898011) (xy 56.053797 93.94911) (xy 56.053792 93.949112) (xy 55.936738 94.036738) (xy 55.849112 94.153792) (xy 55.849111 94.153795) (xy 55.805 94.272058) (xy 55.762453 94.328893) (xy 55.695932 94.353703) (xy 55.626558 94.338611) (xy 55.594246 94.313363) (xy 55.53324 94.247094) (xy 55.533239 94.247093) (xy 55.533237 94.247091) (xy 55.413684 94.154039) (xy 55.355576 94.108811) (xy 55.157574 94.001658) (xy 55.157572 94.001657) (xy 55.157571 94.001656) (xy 54.944639 93.928557) (xy 54.94463 93.928555) (xy 54.900476 93.921187) (xy 54.722569 93.8915) (xy 54.497431 93.8915) (xy 54.351047 93.915927) (xy 54.275369 93.928555) (xy 54.27536 93.928557) (xy 54.062428 94.001656) (xy 54.062426 94.001658) (xy 53.885222 94.097556) (xy 53.864426 94.10881) (xy 53.864424 94.108811) (xy 53.686762 94.247091) (xy 53.534279 94.412729) (xy 53.445483 94.548643) (xy 53.391479 94.594731) (xy 53.321131 94.604306) (xy 53.256774 94.574329) (xy 53.234517 94.548643) (xy 53.14572 94.412729) (xy 53.01622 94.272057) (xy 52.99324 94.247094) (xy 52.993239 94.247093) (xy 52.993237 94.247091) (xy 52.873684 94.154039) (xy 52.815576 94.108811) (xy 52.617574 94.001658) (xy 52.617572 94.001657) (xy 52.617571 94.001656) (xy 52.404639 93.928557) (xy 52.40463 93.928555) (xy 52.360476 93.921187) (xy 52.182569 93.8915) (xy 51.957431 93.8915) (xy 51.811047 93.915927) (xy 51.735369 93.928555) (xy 51.73536 93.928557) (xy 51.522428 94.001656) (xy 51.522426 94.001658) (xy 51.345222 94.097556) (xy 51.324426 94.10881) (xy 51.324424 94.108811) (xy 51.146762 94.247091) (xy 50.994279 94.412729) (xy 50.905483 94.548643) (xy 50.851479 94.594731) (xy 50.781131 94.604306) (xy 50.716774 94.574329) (xy 50.694517 94.548643) (xy 50.60572 94.412729) (xy 50.47622 94.272057) (xy 50.45324 94.247094) (xy 50.453239 94.247093) (xy 50.453237 94.247091) (xy 50.333684 94.154039) (xy 50.275576 94.108811) (xy 50.077574 94.001658) (xy 50.077572 94.001657) (xy 50.077571 94.001656) (xy 49.864639 93.928557) (xy 49.86463 93.928555) (xy 49.820476 93.921187) (xy 49.642569 93.8915) (xy 49.417431 93.8915) (xy 49.271047 93.915927) (xy 49.195369 93.928555) (xy 49.19536 93.928557) (xy 48.982428 94.001656) (xy 48.982426 94.001658) (xy 48.805222 94.097556) (xy 48.784426 94.10881) (xy 48.784424 94.108811) (xy 48.606762 94.247091) (xy 48.454279 94.412729) (xy 48.365483 94.548643) (xy 48.311479 94.594731) (xy 48.241131 94.604306) (xy 48.176774 94.574329) (xy 48.154517 94.548643) (xy 48.06572 94.412729) (xy 47.93622 94.272057) (xy 47.91324 94.247094) (xy 47.913239 94.247093) (xy 47.913237 94.247091) (xy 47.793684 94.154039) (xy 47.735576 94.108811) (xy 47.537574 94.001658) (xy 47.537572 94.001657) (xy 47.537571 94.001656) (xy 47.324639 93.928557) (xy 47.32463 93.928555) (xy 47.280476 93.921187) (xy 47.102569 93.8915) (xy 46.877431 93.8915) (xy 46.731047 93.915927) (xy 46.655369 93.928555) (xy 46.65536 93.928557) (xy 46.442428 94.001656) (xy 46.442426 94.001658) (xy 46.265222 94.097556) (xy 46.244426 94.10881) (xy 46.244424 94.108811) (xy 46.066759 94.247094) (xy 46.005374 94.313775) (xy 45.944521 94.350346) (xy 45.873557 94.348211) (xy 45.815012 94.308049) (xy 45.794618 94.27247) (xy 45.750443 94.154033) (xy 45.662904 94.037095) (xy 45.545965 93.949555) (xy 45.409093 93.898505) (xy 45.348597 93.892) (xy 44.704 93.892) (xy 44.704 94.807749) (xy 44.646853 94.774755) (xy 44.517143 94.74) (xy 44.382857 94.74) (xy 44.253147 94.774755) (xy 44.196 94.807749) (xy 44.196 93.892) (xy 43.551402 93.892) (xy 43.490906 93.898505) (xy 43.354035 93.949555) (xy 43.354034 93.949555) (xy 43.237095 94.037095) (xy 43.149555 94.154034) (xy 43.149553 94.154039) (xy 43.10538 94.27247) (xy 43.062833 94.329306) (xy 42.996313 94.354116) (xy 42.926939 94.339024) (xy 42.894626 94.313777) (xy 42.83324 94.247094) (xy 42.833239 94.247093) (xy 42.833237 94.247091) (xy 42.713684 94.154039) (xy 42.655576 94.108811) (xy 42.457574 94.001658) (xy 42.457572 94.001657) (xy 42.457571 94.001656) (xy 42.244639 93.928557) (xy 42.24463 93.928555) (xy 42.200476 93.921187) (xy 42.022569 93.8915) (xy 41.797431 93.8915) (xy 41.651047 93.915927) (xy 41.575369 93.928555) (xy 41.57536 93.928557) (xy 41.362428 94.001656) (xy 41.362426 94.001658) (xy 41.185222 94.097556) (xy 41.164426 94.10881) (xy 41.164424 94.108811) (xy 40.986762 94.247091) (xy 40.834279 94.412729) (xy 40.745483 94.548643) (xy 40.691479 94.594731) (xy 40.621131 94.604306) (xy 40.556774 94.574329) (xy 40.534517 94.548643) (xy 40.44572 94.412729) (xy 40.31622 94.272057) (xy 40.29324 94.247094) (xy 40.293239 94.247093) (xy 40.293237 94.247091) (xy 40.173684 94.154039) (xy 40.115576 94.108811) (xy 39.917574 94.001658) (xy 39.917572 94.001657) (xy 39.917571 94.001656) (xy 39.704639 93.928557) (xy 39.70463 93.928555) (xy 39.660476 93.921187) (xy 39.482569 93.8915) (xy 39.257431 93.8915) (xy 39.111047 93.915927) (xy 39.035369 93.928555) (xy 39.03536 93.928557) (xy 38.822428 94.001656) (xy 38.822426 94.001658) (xy 38.645222 94.097556) (xy 38.624426 94.10881) (xy 38.624424 94.108811) (xy 38.446762 94.247091) (xy 38.294279 94.412729) (xy 38.294275 94.412734) (xy 38.231983 94.508081) (xy 38.177979 94.55417) (xy 38.107632 94.563745) (xy 38.043274 94.533768) (xy 38.005341 94.473755) (xy 38.0005 94.439166) (xy 38.0005 93.726) (xy 92.812496 93.726) (xy 92.832457 93.915927) (xy 92.84324 93.949112) (xy 92.891473 94.097556) (xy 92.891476 94.097561) (xy 92.986958 94.262941) (xy 92.986965 94.262951) (xy 93.114744 94.404864) (xy 93.125576 94.412734) (xy 93.269248 94.517118) (xy 93.443712 94.594794) (xy 93.630513 94.6345) (xy 93.821487 94.6345) (xy 94.008288 94.594794) (xy 94.182752 94.517118) (xy 94.337253 94.404866) (xy 94.337255 94.404864) (xy 94.465034 94.262951) (xy 94.465035 94.262949) (xy 94.46504 94.262944) (xy 94.560527 94.097556) (xy 94.619542 93.915928) (xy 94.639504 93.726) (xy 94.619542 93.536072) (xy 94.560527 93.354444) (xy 94.46504 93.189056) (xy 94.465038 93.189054) (xy 94.465034 93.189048) (xy 94.337255 93.047135) (xy 94.182752 92.934882) (xy 94.008288 92.857206) (xy 93.821487 92.8175) (xy 93.630513 92.8175) (xy 93.443711 92.857206) (xy 93.269247 92.934882) (xy 93.114744 93.047135) (xy 92.986965 93.189048) (xy 92.986958 93.189058) (xy 92.891476 93.354438) (xy 92.891473 93.354445) (xy 92.832457 93.536072) (xy 92.812496 93.726) (xy 38.0005 93.726) (xy 38.0005 91.8464) (xy 100.635696 91.8464) (xy 100.655657 92.036327) (xy 100.685394 92.127844) (xy 100.714673 92.217956) (xy 100.714676 92.217961) (xy 100.810158 92.383341) (xy 100.810165 92.383351) (xy 100.937944 92.525264) (xy 100.937947 92.525266) (xy 101.092448 92.637518) (xy 101.266912 92.715194) (xy 101.453713 92.7549) (xy 101.644687 92.7549) (xy 101.831488 92.715194) (xy 102.005952 92.637518) (xy 102.160453 92.525266) (xy 102.28824 92.383344) (xy 102.383727 92.217956) (xy 102.442742 92.036328) (xy 102.462704 91.8464) (xy 102.442742 91.656472) (xy 102.383727 91.474844) (xy 102.28824 91.309456) (xy 102.288238 91.309454) (xy 102.288234 91.309448) (xy 102.160455 91.167535) (xy 102.005952 91.055282) (xy 101.831488 90.977606) (xy 101.644687 90.9379) (xy 101.453713 90.9379) (xy 101.266911 90.977606) (xy 101.092447 91.055282) (xy 100.937944 91.167535) (xy 100.810165 91.309448) (xy 100.810158 91.309458) (xy 100.714676 91.474838) (xy 100.714673 91.474845) (xy 100.655657 91.656472) (xy 100.635696 91.8464) (xy 38.0005 91.8464) (xy 38.0005 89.2048) (xy 83.211296 89.2048) (xy 83.231257 89.394727) (xy 83.248282 89.447122) (xy 83.290273 89.576356) (xy 83.290276 89.576361) (xy 83.385758 89.741741) (xy 83.385765 89.741751) (xy 83.513544 89.883664) (xy 83.513547 89.883666) (xy 83.668048 89.995918) (xy 83.842512 90.073594) (xy 84.029313 90.1133) (xy 84.220287 90.1133) (xy 84.407088 90.073594) (xy 84.581552 89.995918) (xy 84.736053 89.883666) (xy 84.736055 89.883664) (xy 84.863834 89.741751) (xy 84.863835 89.741749) (xy 84.86384 89.741744) (xy 84.959327 89.576356) (xy 85.018342 89.394728) (xy 85.038304 89.2048) (xy 87.021296 89.2048) (xy 87.041257 89.394727) (xy 87.058282 89.447122) (xy 87.100273 89.576356) (xy 87.100276 89.576361) (xy 87.195758 89.741741) (xy 87.195765 89.741751) (xy 87.323544 89.883664) (xy 87.323547 89.883666) (xy 87.478048 89.995918) (xy 87.652512 90.073594) (xy 87.839313 90.1133) (xy 88.030287 90.1133) (xy 88.217088 90.073594) (xy 88.391552 89.995918) (xy 88.546053 89.883666) (xy 88.546055 89.883664) (xy 88.673834 89.741751) (xy 88.673835 89.741749) (xy 88.67384 89.741744) (xy 88.769327 89.576356) (xy 88.828342 89.394728) (xy 88.848304 89.2048) (xy 88.828342 89.014872) (xy 88.769327 88.833244) (xy 88.67384 88.667856) (xy 88.673838 88.667854) (xy 88.673834 88.667848) (xy 88.546055 88.525935) (xy 88.391552 88.413682) (xy 88.217088 88.336006) (xy 88.030287 88.2963) (xy 87.839313 88.2963) (xy 87.652511 88.336006) (xy 87.478047 88.413682) (xy 87.323544 88.525935) (xy 87.195765 88.667848) (xy 87.195758 88.667858) (xy 87.100276 88.833238) (xy 87.100273 88.833245) (xy 87.041257 89.014872) (xy 87.021296 89.2048) (xy 85.038304 89.2048) (xy 85.018342 89.014872) (xy 84.959327 88.833244) (xy 84.86384 88.667856) (xy 84.863838 88.667854) (xy 84.863834 88.667848) (xy 84.736055 88.525935) (xy 84.581552 88.413682) (xy 84.407088 88.336006) (xy 84.220287 88.2963) (xy 84.029313 88.2963) (xy 83.842511 88.336006) (xy 83.668047 88.413682) (xy 83.513544 88.525935) (xy 83.385765 88.667848) (xy 83.385758 88.667858) (xy 83.290276 88.833238) (xy 83.290273 88.833245) (xy 83.231257 89.014872) (xy 83.211296 89.2048) (xy 38.0005 89.2048) (xy 38.0005 84.75) (xy 85.090896 84.75) (xy 85.110857 84.939927) (xy 85.134446 85.012525) (xy 85.169873 85.121556) (xy 85.169876 85.121561) (xy 85.265358 85.286941) (xy 85.265365 85.286951) (xy 85.393144 85.428864) (xy 85.393147 85.428866) (xy 85.547648 85.541118) (xy 85.722112 85.618794) (xy 85.908913 85.6585) (xy 86.099887 85.6585) (xy 86.286688 85.618794) (xy 86.461152 85.541118) (xy 86.615653 85.428866) (xy 86.74344 85.286944) (xy 86.838927 85.121556) (xy 86.897942 84.939928) (xy 86.915728 84.7707) (xy 86.942741 84.705044) (xy 87.000962 84.664414) (xy 87.071907 84.661711) (xy 87.133052 84.697793) (xy 87.142977 84.709815) (xy 87.14496 84.712545) (xy 87.272744 84.854464) (xy 87.272747 84.854466) (xy 87.427248 84.966718) (xy 87.601712 85.044394) (xy 87.788513 85.0841) (xy 87.979487 85.0841) (xy 88.166288 85.044394) (xy 88.340752 84.966718) (xy 88.470339 84.872566) (xy 88.537207 84.848709) (xy 88.606358 84.864789) (xy 88.618459 84.872565) (xy 88.748048 84.966718) (xy 88.922512 85.044394) (xy 89.109313 85.0841) (xy 89.300287 85.0841) (xy 89.487088 85.044394) (xy 89.661552 84.966718) (xy 89.816053 84.854466) (xy 89.831217 84.837625) (xy 89.943834 84.712551) (xy 89.943835 84.712549) (xy 89.94384 84.712544) (xy 90.039327 84.547156) (xy 90.098342 84.365528) (xy 90.118304 84.1756) (xy 90.098342 83.985672) (xy 90.039327 83.804044) (xy 89.94384 83.638656) (xy 89.943838 83.638654) (xy 89.943834 83.638648) (xy 89.816055 83.496735) (xy 89.661552 83.384482) (xy 89.487088 83.306806) (xy 89.300287 83.2671) (xy 89.109313 83.2671) (xy 88.922511 83.306806) (xy 88.748047 83.384482) (xy 88.618461 83.478632) (xy 88.551593 83.502491) (xy 88.482441 83.48641) (xy 88.470339 83.478632) (xy 88.340752 83.384482) (xy 88.166288 83.306806) (xy 87.979487 83.2671) (xy 87.788513 83.2671) (xy 87.601711 83.306806) (xy 87.427247 83.384482) (xy 87.272744 83.496735) (xy 87.144965 83.638648) (xy 87.144958 83.638658) (xy 87.049476 83.804038) (xy 87.049473 83.804045) (xy 86.990457 83.985672) (xy 86.972671 84.154899) (xy 86.945658 84.220556) (xy 86.887436 84.261185) (xy 86.816491 84.263888) (xy 86.755347 84.227806) (xy 86.74542 84.215782) (xy 86.743441 84.213058) (xy 86.74344 84.213056) (xy 86.709715 84.1756) (xy 86.615655 84.071135) (xy 86.461152 83.958882) (xy 86.286688 83.881206) (xy 86.099887 83.8415) (xy 85.908913 83.8415) (xy 85.722111 83.881206) (xy 85.547647 83.958882) (xy 85.393144 84.071135) (xy 85.265365 84.213048) (xy 85.265358 84.213058) (xy 85.169876 84.378438) (xy 85.169873 84.378445) (xy 85.110857 84.560072) (xy 85.090896 84.75) (xy 38.0005 84.75) (xy 38.0005 77.5) (xy 53.586496 77.5) (xy 53.606457 77.689927) (xy 53.636381 77.78202) (xy 53.665473 77.871556) (xy 53.665476 77.871561) (xy 53.760958 78.036941) (xy 53.760965 78.036951) (xy 53.888744 78.178864) (xy 53.888747 78.178866) (xy 54.043248 78.291118) (xy 54.217712 78.368794) (xy 54.404513 78.4085) (xy 54.595487 78.4085) (xy 54.70015 78.386253) (xy 54.726347 78.3835) (xy 55.273653 78.3835) (xy 55.299849 78.386252) (xy 55.404513 78.4085) (xy 55.595487 78.4085) (xy 55.70015 78.386253) (xy 55.726347 78.3835) (xy 56.273653 78.3835) (xy 56.299849 78.386252) (xy 56.404513 78.4085) (xy 56.595487 78.4085) (xy 56.70015 78.386253) (xy 56.726347 78.3835) (xy 73.017852 78.3835) (xy 73.085973 78.403502) (xy 73.106947 78.420405) (xy 77.241793 82.555251) (xy 77.261815 82.581342) (xy 77.28976 82.629744) (xy 77.289762 82.629747) (xy 77.289765 82.629751) (xy 77.417544 82.771664) (xy 77.417547 82.771666) (xy 77.572048 82.883918) (xy 77.746512 82.961594) (xy 77.933313 83.0013) (xy 78.124287 83.0013) (xy 78.311088 82.961594) (xy 78.485552 82.883918) (xy 78.640053 82.771666) (xy 78.708995 82.695098) (xy 78.767834 82.629751) (xy 78.767835 82.629749) (xy 78.76784 82.629744) (xy 78.863327 82.464356) (xy 78.885018 82.3976) (xy 92.812496 82.3976) (xy 92.832457 82.587527) (xy 92.846174 82.629741) (xy 92.891473 82.769156) (xy 92.891476 82.769161) (xy 92.986958 82.934541) (xy 92.986965 82.934551) (xy 93.114744 83.076464) (xy 93.125538 83.084306) (xy 93.269248 83.188718) (xy 93.443712 83.266394) (xy 93.630513 83.3061) (xy 93.821487 83.3061) (xy 94.008288 83.266394) (xy 94.182752 83.188718) (xy 94.337253 83.076466) (xy 94.46504 82.934544) (xy 94.560527 82.769156) (xy 94.619542 82.587528) (xy 94.639504 82.3976) (xy 94.619542 82.207672) (xy 94.61523 82.1944) (xy 99.111696 82.1944) (xy 99.131657 82.384327) (xy 99.160315 82.472525) (xy 99.190673 82.565956) (xy 99.190676 82.565961) (xy 99.286158 82.731341) (xy 99.286165 82.731351) (xy 99.413944 82.873264) (xy 99.413947 82.873266) (xy 99.568448 82.985518) (xy 99.742912 83.063194) (xy 99.929713 83.1029) (xy 100.120687 83.1029) (xy 100.307488 83.063194) (xy 100.481952 82.985518) (xy 100.636453 82.873266) (xy 100.727936 82.771664) (xy 100.764234 82.731351) (xy 100.764235 82.731349) (xy 100.76424 82.731344) (xy 100.859727 82.565956) (xy 100.918742 82.384328) (xy 100.938704 82.1944) (xy 100.918742 82.004472) (xy 100.859727 81.822844) (xy 100.76424 81.657456) (xy 100.764238 81.657454) (xy 100.764234 81.657448) (xy 100.636455 81.515535) (xy 100.481952 81.403282) (xy 100.307488 81.325606) (xy 100.120687 81.2859) (xy 99.929713 81.2859) (xy 99.742911 81.325606) (xy 99.568447 81.403282) (xy 99.413944 81.515535) (xy 99.286165 81.657448) (xy 99.286158 81.657458) (xy 99.190676 81.822838) (xy 99.190673 81.822845) (xy 99.131657 82.004472) (xy 99.111696 82.1944) (xy 94.61523 82.1944) (xy 94.560527 82.026044) (xy 94.46504 81.860656) (xy 94.465038 81.860654) (xy 94.465034 81.860648) (xy 94.337255 81.718735) (xy 94.182752 81.606482) (xy 94.008288 81.528806) (xy 93.821487 81.4891) (xy 93.630513 81.4891) (xy 93.443711 81.528806) (xy 93.269247 81.606482) (xy 93.114744 81.718735) (xy 92.986965 81.860648) (xy 92.986958 81.860658) (xy 92.891476 82.026038) (xy 92.891473 82.026045) (xy 92.832457 82.207672) (xy 92.812496 82.3976) (xy 78.885018 82.3976) (xy 78.922342 82.282728) (xy 78.942304 82.0928) (xy 78.922342 81.902872) (xy 78.863327 81.721244) (xy 78.76784 81.555856) (xy 78.767838 81.555854) (xy 78.767834 81.555848) (xy 78.640055 81.413935) (xy 78.499378 81.311727) (xy 78.484344 81.298886) (xy 77.754258 80.5688) (xy 86.310096 80.5688) (xy 86.330057 80.758727) (xy 86.360126 80.85127) (xy 86.389073 80.940356) (xy 86.389076 80.940361) (xy 86.484558 81.105741) (xy 86.484565 81.105751) (xy 86.612344 81.247664) (xy 86.664971 81.2859) (xy 86.766848 81.359918) (xy 86.941312 81.437594) (xy 87.128113 81.4773) (xy 87.319087 81.4773) (xy 87.505888 81.437594) (xy 87.680352 81.359918) (xy 87.834853 81.247666) (xy 87.84509 81.236297) (xy 87.962634 81.105751) (xy 87.962635 81.105749) (xy 87.96264 81.105744) (xy 88.058127 80.940356) (xy 88.117142 80.758728) (xy 88.137104 80.5688) (xy 88.117142 80.378872) (xy 88.058127 80.197244) (xy 87.96264 80.031856) (xy 87.962638 80.031854) (xy 87.962634 80.031848) (xy 87.834855 79.889935) (xy 87.680352 79.777682) (xy 87.505888 79.700006) (xy 87.319087 79.6603) (xy 87.128113 79.6603) (xy 86.941311 79.700006) (xy 86.766847 79.777682) (xy 86.612344 79.889935) (xy 86.484565 80.031848) (xy 86.484558 80.031858) (xy 86.389076 80.197238) (xy 86.389073 80.197245) (xy 86.330057 80.378872) (xy 86.310096 80.5688) (xy 77.754258 80.5688) (xy 76.789058 79.6036) (xy 88.291296 79.6036) (xy 88.311257 79.793527) (xy 88.341326 79.88607) (xy 88.370273 79.975156) (xy 88.370276 79.975161) (xy 88.465758 80.140541) (xy 88.465765 80.140551) (xy 88.593544 80.282464) (xy 88.593547 80.282466) (xy 88.748048 80.394718) (xy 88.922512 80.472394) (xy 89.109313 80.5121) (xy 89.300287 80.5121) (xy 89.487088 80.472394) (xy 89.661552 80.394718) (xy 89.816053 80.282466) (xy 89.816055 80.282464) (xy 89.943834 80.140551) (xy 89.943835 80.140549) (xy 89.94384 80.140544) (xy 90.039327 79.975156) (xy 90.098342 79.793528) (xy 90.118304 79.6036) (xy 90.098342 79.413672) (xy 90.039327 79.232044) (xy 89.94384 79.066656) (xy 89.943838 79.066654) (xy 89.943834 79.066648) (xy 89.816055 78.924735) (xy 89.661552 78.812482) (xy 89.487088 78.734806) (xy 89.300287 78.6951) (xy 89.109313 78.6951) (xy 88.922511 78.734806) (xy 88.748047 78.812482) (xy 88.593544 78.924735) (xy 88.465765 79.066648) (xy 88.465758 79.066658) (xy 88.370276 79.232038) (xy 88.370273 79.232045) (xy 88.311257 79.413672) (xy 88.291296 79.6036) (xy 76.789058 79.6036) (xy 73.999204 76.813745) (xy 73.999198 76.81374) (xy 73.951183 76.781657) (xy 73.854495 76.717052) (xy 73.693708 76.650452) (xy 73.52302 76.6165) (xy 73.523017 76.6165) (xy 56.726347 76.6165) (xy 56.70015 76.613747) (xy 56.595487 76.5915) (xy 56.404513 76.5915) (xy 56.29985 76.613747) (xy 56.273653 76.6165) (xy 55.726347 76.6165) (xy 55.70015 76.613747) (xy 55.595487 76.5915) (xy 55.404513 76.5915) (xy 55.29985 76.613747) (xy 55.273653 76.6165) (xy 54.726347 76.6165) (xy 54.70015 76.613747) (xy 54.595487 76.5915) (xy 54.404513 76.5915) (xy 54.217711 76.631206) (xy 54.043247 76.708882) (xy 53.888744 76.821135) (xy 53.760965 76.963048) (xy 53.760958 76.963058) (xy 53.665476 77.128438) (xy 53.665473 77.128445) (xy 53.606457 77.310072) (xy 53.586496 77.5) (xy 38.0005 77.5) (xy 38.0005 75.071649) (xy 46.0177 75.071649) (xy 46.0177 75.293351) (xy 46.052382 75.512324) (xy 46.052383 75.512329) (xy 46.12089 75.723171) (xy 46.120892 75.723176) (xy 46.221543 75.920715) (xy 46.221545 75.920718) (xy 46.351858 76.100078) (xy 46.508621 76.256841) (xy 46.531108 76.273179) (xy 46.687985 76.387157) (xy 46.885524 76.487808) (xy 47.096376 76.556318) (xy 47.315349 76.591) (xy 47.315352 76.591) (xy 49.737048 76.591) (xy 49.737051 76.591) (xy 49.956024 76.556318) (xy 50.166876 76.487808) (xy 50.364415 76.387157) (xy 50.543776 76.256843) (xy 50.700543 76.100076) (xy 50.830857 75.920715) (xy 50.931508 75.723176) (xy 51.000018 75.512324) (xy 51.0347 75.293351) (xy 51.0347 75.071649) (xy 51.000018 74.852676) (xy 50.931508 74.641824) (xy 50.830857 74.444285) (xy 50.700543 74.264924) (xy 50.700541 74.264921) (xy 50.543778 74.108158) (xy 50.364418 73.977845) (xy 50.364417 73.977844) (xy 50.364415 73.977843) (xy 50.166876 73.877192) (xy 50.166873 73.877191) (xy 50.166871 73.87719) (xy 49.956023 73.808681) (xy 49.956024 73.808681) (xy 49.900388 73.799869) (xy 49.836236 73.769456) (xy 49.831006 73.764516) (xy 49.192323 73.125833) (xy 49.281894 73.101833) (xy 49.384506 73.04259) (xy 49.46829 72.958806) (xy 49.527533 72.856194) (xy 49.551533 72.766623) (xy 50.249338 73.464429) (xy 50.249339 73.464429) (xy 50.32868 73.34299) (xy 50.408364 73.161328) (xy 50.454045 73.106979) (xy 50.521857 73.085955) (xy 50.537221 73.086663) (xy 50.577552 73.090999) (xy 50.577553 73.090999) (xy 50.577562 73.091) (xy 50.577568 73.091) (xy 52.474832 73.091) (xy 52.474838 73.091) (xy 52.474845 73.090999) (xy 52.474849 73.090999) (xy 52.535396 73.08449) (xy 52.535399 73.084489) (xy 52.535401 73.084489) (xy 52.672404 73.033389) (xy 52.789461 72.945761) (xy 52.877087 72.828707) (xy 52.877087 72.828706) (xy 52.877089 72.828704) (xy 52.928189 72.691701) (xy 52.929179 72.6825) (xy 52.934699 72.631149) (xy 52.9347 72.631132) (xy 52.9347 71.65775) (xy 82.6915 71.65775) (xy 82.6915 73.455049) (xy 82.698009 73.515596) (xy 82.698011 73.515604) (xy 82.74911 73.652602) (xy 82.749112 73.652607) (xy 82.836738 73.769661) (xy 82.953792 73.857287) (xy 82.953794 73.857288) (xy 82.953796 73.857289) (xy 83.0076 73.877357) (xy 83.090795 73.908388) (xy 83.090803 73.90839) (xy 83.15135 73.914899) (xy 83.151355 73.914899) (xy 83.151362 73.9149) (xy 83.151368 73.9149) (xy 84.948632 73.9149) (xy 84.948638 73.9149) (xy 84.948645 73.914899) (xy 84.948649 73.914899) (xy 85.009196 73.90839) (xy 85.009199 73.908389) (xy 85.009201 73.908389) (xy 85.146204 73.857289) (xy 85.216399 73.804742) (xy 85.263261 73.769661) (xy 85.350886 73.652608) (xy 85.350885 73.652608) (xy 85.350889 73.652604) (xy 85.395196 73.533813) (xy 85.437741 73.476981) (xy 85.504262 73.45217) (xy 85.573636 73.467262) (xy 85.605952 73.492512) (xy 85.667097 73.558934) (xy 85.844698 73.697167) (xy 85.844699 73.697168) (xy 86.042628 73.804282) (xy 86.04263 73.804283) (xy 86.255483 73.877355) (xy 86.255492 73.877357) (xy 86.336 73.890791) (xy 86.336 72.987102) (xy 86.397007 73.022325) (xy 86.524174 73.0564) (xy 86.655826 73.0564) (xy 86.782993 73.022325) (xy 86.844 72.987102) (xy 86.844 73.89079) (xy 86.924507 73.877357) (xy 86.924516 73.877355) (xy 87.137369 73.804283) (xy 87.137371 73.804282) (xy 87.3353 73.697168) (xy 87.335301 73.697167) (xy 87.512902 73.558934) (xy 87.665327 73.393355) (xy 87.754217 73.257299) (xy 87.80822 73.21121) (xy 87.878568 73.201635) (xy 87.942925 73.231612) (xy 87.965183 73.257298) (xy 88.054279 73.39367) (xy 88.206762 73.559308) (xy 88.261331 73.601781) (xy 88.384424 73.697589) (xy 88.582426 73.804742) (xy 88.582427 73.804742) (xy 88.582428 73.804743) (xy 88.694227 73.843123) (xy 88.795365 73.877844) (xy 89.017431 73.9149) (xy 89.017435 73.9149) (xy 89.242565 73.9149) (xy 89.242569 73.9149) (xy 89.464635 73.877844) (xy 89.677574 73.804742) (xy 89.875576 73.697589) (xy 90.05324 73.559306) (xy 90.205722 73.393668) (xy 90.205927 73.393355) (xy 90.22399 73.365706) (xy 90.294518 73.257754) (xy 90.34852 73.211668) (xy 90.418868 73.202092) (xy 90.483225 73.232069) (xy 90.50548 73.257753) (xy 90.538607 73.308458) (xy 90.594275 73.393665) (xy 90.594279 73.39367) (xy 90.746762 73.559308) (xy 90.801331 73.601781) (xy 90.924424 73.697589) (xy 91.122426 73.804742) (xy 91.122427 73.804742) (xy 91.122428 73.804743) (xy 91.234227 73.843123) (xy 91.335365 73.877844) (xy 91.557431 73.9149) (xy 91.557435 73.9149) (xy 91.782565 73.9149) (xy 91.782569 73.9149) (xy 92.004635 73.877844) (xy 92.217574 73.804742) (xy 92.415576 73.697589) (xy 92.59324 73.559306) (xy 92.745722 73.393668) (xy 92.745927 73.393355) (xy 92.76399 73.365706) (xy 92.86886 73.205191) (xy 92.959296 72.999016) (xy 93.014564 72.780768) (xy 93.033156 72.5564) (xy 93.014564 72.332032) (xy 92.959296 72.113784) (xy 92.86886 71.907609) (xy 92.86214 71.897324) (xy 92.745724 71.719134) (xy 92.74572 71.719129) (xy 92.62957 71.592959) (xy 92.59324 71.553494) (xy 92.593239 71.553493) (xy 92.593237 71.553491) (xy 92.511382 71.489781) (xy 92.415576 71.415211) (xy 92.217574 71.308058) (xy 92.217572 71.308057) (xy 92.217571 71.308056) (xy 92.004639 71.234957) (xy 92.00463 71.234955) (xy 91.927029 71.222006) (xy 91.782569 71.1979) (xy 91.557431 71.1979) (xy 91.412971 71.222006) (xy 91.335369 71.234955) (xy 91.33536 71.234957) (xy 91.122428 71.308056) (xy 91.122426 71.308058) (xy 90.924426 71.41521) (xy 90.924424 71.415211) (xy 90.746762 71.553491) (xy 90.594279 71.719129) (xy 90.505483 71.855043) (xy 90.451479 71.901131) (xy 90.381131 71.910706) (xy 90.316774 71.880729) (xy 90.294517 71.855043) (xy 90.20572 71.719129) (xy 90.08957 71.592959) (xy 90.05324 71.553494) (xy 90.053239 71.553493) (xy 90.053237 71.553491) (xy 89.971382 71.489781) (xy 89.875576 71.415211) (xy 89.677574 71.308058) (xy 89.677572 71.308057) (xy 89.677571 71.308056) (xy 89.464639 71.234957) (xy 89.46463 71.234955) (xy 89.387029 71.222006) (xy 89.242569 71.1979) (xy 89.017431 71.1979) (xy 88.872971 71.222006) (xy 88.795369 71.234955) (xy 88.79536 71.234957) (xy 88.582428 71.308056) (xy 88.582426 71.308058) (xy 88.384426 71.41521) (xy 88.384424 71.415211) (xy 88.206762 71.553491) (xy 88.054279 71.719129) (xy 87.965183 71.855501) (xy 87.911179 71.901589) (xy 87.840831 71.911164) (xy 87.776474 71.881186) (xy 87.754217 71.8555) (xy 87.665327 71.719444) (xy 87.512902 71.553865) (xy 87.335301 71.415632) (xy 87.3353 71.415631) (xy 87.137371 71.308517) (xy 87.137369 71.308516) (xy 86.924512 71.235443) (xy 86.924501 71.23544) (xy 86.844 71.222006) (xy 86.844 72.125697) (xy 86.782993 72.090475) (xy 86.655826 72.0564) (xy 86.524174 72.0564) (xy 86.397007 72.090475) (xy 86.336 72.125697) (xy 86.336 71.222007) (xy 86.335999 71.222006) (xy 86.255498 71.23544) (xy 86.255487 71.235443) (xy 86.04263 71.308516) (xy 86.042628 71.308517) (xy 85.844699 71.415631) (xy 85.844698 71.415632) (xy 85.667096 71.553865) (xy 85.605951 71.620288) (xy 85.545098 71.656859) (xy 85.474134 71.654724) (xy 85.415588 71.614563) (xy 85.395195 71.578983) (xy 85.350889 71.460196) (xy 85.350887 71.460192) (xy 85.263261 71.343138) (xy 85.146207 71.255512) (xy 85.146202 71.25551) (xy 85.009204 71.204411) (xy 85.009196 71.204409) (xy 84.948649 71.1979) (xy 84.948638 71.1979) (xy 83.151362 71.1979) (xy 83.15135 71.1979) (xy 83.090803 71.204409) (xy 83.090795 71.204411) (xy 82.953797 71.25551) (xy 82.953792 71.255512) (xy 82.836738 71.343138) (xy 82.749112 71.460192) (xy 82.74911 71.460197) (xy 82.698011 71.597195) (xy 82.698009 71.597203) (xy 82.6915 71.65775) (xy 52.9347 71.65775) (xy 52.9347 70.949147) (xy 52.940867 70.910211) (xy 52.997556 70.735741) (xy 53.0347 70.501222) (xy 53.0347 68.277478) (xy 52.999907 68.057802) (xy 82.692 68.057802) (xy 82.692 68.7024) (xy 83.619297 68.7024) (xy 83.584075 68.763407) (xy 83.55 68.890574) (xy 83.55 69.022226) (xy 83.584075 69.149393) (xy 83.619297 69.2104) (xy 82.692 69.2104) (xy 82.692 69.854997) (xy 82.698505 69.915493) (xy 82.749555 70.052364) (xy 82.749555 70.052365) (xy 82.837095 70.169304) (xy 82.954034 70.256844) (xy 83.090906 70.307894) (xy 83.151402 70.314399) (xy 83.151415 70.3144) (xy 83.796 70.3144) (xy 83.796 69.387102) (xy 83.857007 69.422325) (xy 83.984174 69.4564) (xy 84.115826 69.4564) (xy 84.242993 69.422325) (xy 84.304 69.387102) (xy 84.304 70.3144) (xy 84.948585 70.3144) (xy 84.948597 70.314399) (xy 85.009093 70.307894) (xy 85.145964 70.256844) (xy 85.145965 70.256844) (xy 85.262904 70.169304) (xy 85.350444 70.052365) (xy 85.394618 69.93393) (xy 85.437165 69.877094) (xy 85.503685 69.852283) (xy 85.573059 69.867374) (xy 85.605372 69.892622) (xy 85.626427 69.915493) (xy 85.666762 69.959308) (xy 85.721331 70.001781) (xy 85.844424 70.097589) (xy 86.042426 70.204742) (xy 86.042427 70.204742) (xy 86.042428 70.204743) (xy 86.105895 70.226531) (xy 86.255365 70.277844) (xy 86.477431 70.3149) (xy 86.477435 70.3149) (xy 86.702565 70.3149) (xy 86.702569 70.3149) (xy 86.924635 70.277844) (xy 87.137574 70.204742) (xy 87.335576 70.097589) (xy 87.51324 69.959306) (xy 87.665722 69.793668) (xy 87.754518 69.657754) (xy 87.80852 69.611668) (xy 87.878868 69.602092) (xy 87.943225 69.632069) (xy 87.96548 69.657753) (xy 87.998607 69.708458) (xy 88.054275 69.793665) (xy 88.054279 69.79367) (xy 88.206762 69.959308) (xy 88.261331 70.001781) (xy 88.384424 70.097589) (xy 88.582426 70.204742) (xy 88.582427 70.204742) (xy 88.582428 70.204743) (xy 88.645895 70.226531) (xy 88.795365 70.277844) (xy 89.017431 70.3149) (xy 89.017435 70.3149) (xy 89.242565 70.3149) (xy 89.242569 70.3149) (xy 89.464635 70.277844) (xy 89.677574 70.204742) (xy 89.875576 70.097589) (xy 90.05324 69.959306) (xy 90.205722 69.793668) (xy 90.294518 69.657754) (xy 90.34852 69.611668) (xy 90.418868 69.602092) (xy 90.483225 69.632069) (xy 90.50548 69.657753) (xy 90.538607 69.708458) (xy 90.594275 69.793665) (xy 90.594279 69.79367) (xy 90.746762 69.959308) (xy 90.801331 70.001781) (xy 90.924424 70.097589) (xy 91.122426 70.204742) (xy 91.122427 70.204742) (xy 91.122428 70.204743) (xy 91.185895 70.226531) (xy 91.335365 70.277844) (xy 91.557431 70.3149) (xy 91.557435 70.3149) (xy 91.782565 70.3149) (xy 91.782569 70.3149) (xy 92.004635 70.277844) (xy 92.217574 70.204742) (xy 92.415576 70.097589) (xy 92.59324 69.959306) (xy 92.745722 69.793668) (xy 92.86886 69.605191) (xy 92.959296 69.399016) (xy 93.014564 69.180768) (xy 93.033156 68.9564) (xy 93.014564 68.732032) (xy 92.959296 68.513784) (xy 92.86886 68.307609) (xy 92.86214 68.297324) (xy 92.745724 68.119134) (xy 92.74572 68.119129) (xy 92.593237 67.953491) (xy 92.473679 67.860435) (xy 92.415576 67.815211) (xy 92.217574 67.708058) (xy 92.217572 67.708057) (xy 92.217571 67.708056) (xy 92.004639 67.634957) (xy 92.00463 67.634955) (xy 91.960476 67.627587) (xy 91.782569 67.5979) (xy 91.557431 67.5979) (xy 91.409211 67.622633) (xy 91.335369 67.634955) (xy 91.33536 67.634957) (xy 91.122428 67.708056) (xy 91.122426 67.708058) (xy 90.950274 67.801222) (xy 90.924426 67.81521) (xy 90.924424 67.815211) (xy 90.746762 67.953491) (xy 90.594279 68.119129) (xy 90.505483 68.255043) (xy 90.451479 68.301131) (xy 90.381131 68.310706) (xy 90.316774 68.280729) (xy 90.294517 68.255043) (xy 90.20572 68.119129) (xy 90.053237 67.953491) (xy 89.933679 67.860435) (xy 89.875576 67.815211) (xy 89.677574 67.708058) (xy 89.677572 67.708057) (xy 89.677571 67.708056) (xy 89.464639 67.634957) (xy 89.46463 67.634955) (xy 89.420476 67.627587) (xy 89.242569 67.5979) (xy 89.017431 67.5979) (xy 88.869211 67.622633) (xy 88.795369 67.634955) (xy 88.79536 67.634957) (xy 88.582428 67.708056) (xy 88.582426 67.708058) (xy 88.410274 67.801222) (xy 88.384426 67.81521) (xy 88.384424 67.815211) (xy 88.206762 67.953491) (xy 88.054279 68.119129) (xy 87.965483 68.255043) (xy 87.911479 68.301131) (xy 87.841131 68.310706) (xy 87.776774 68.280729) (xy 87.754517 68.255043) (xy 87.66572 68.119129) (xy 87.513237 67.953491) (xy 87.393679 67.860435) (xy 87.335576 67.815211) (xy 87.137574 67.708058) (xy 87.137572 67.708057) (xy 87.137571 67.708056) (xy 86.924639 67.634957) (xy 86.92463 67.634955) (xy 86.880476 67.627587) (xy 86.702569 67.5979) (xy 86.477431 67.5979) (xy 86.329211 67.622633) (xy 86.255369 67.634955) (xy 86.25536 67.634957) (xy 86.042428 67.708056) (xy 86.042426 67.708058) (xy 85.870274 67.801222) (xy 85.844426 67.81521) (xy 85.844424 67.815211) (xy 85.666759 67.953494) (xy 85.605374 68.020175) (xy 85.544521 68.056746) (xy 85.473557 68.054611) (xy 85.415012 68.014449) (xy 85.394618 67.97887) (xy 85.350443 67.860433) (xy 85.262904 67.743495) (xy 85.145965 67.655955) (xy 85.009093 67.604905) (xy 84.948597 67.5984) (xy 84.304 67.5984) (xy 84.304 68.525697) (xy 84.242993 68.490475) (xy 84.115826 68.4564) (xy 83.984174 68.4564) (xy 83.857007 68.490475) (xy 83.796 68.525697) (xy 83.796 67.5984) (xy 83.151402 67.5984) (xy 83.090906 67.604905) (xy 82.954035 67.655955) (xy 82.954034 67.655955) (xy 82.837095 67.743495) (xy 82.749555 67.860434) (xy 82.749555 67.860435) (xy 82.698505 67.997306) (xy 82.692 68.057802) (xy 52.999907 68.057802) (xy 52.997556 68.042959) (xy 52.924182 67.817137) (xy 52.816385 67.605573) (xy 52.67682 67.413478) (xy 52.508922 67.24558) (xy 52.508921 67.245579) (xy 51.963122 66.69978) (xy 51.96312 66.699778) (xy 51.795222 66.53188) (xy 51.603127 66.392315) (xy 51.391563 66.284518) (xy 51.39156 66.284517) (xy 51.391558 66.284516) (xy 51.165745 66.211145) (xy 51.165743 66.211144) (xy 51.165741 66.211144) (xy 50.931222 66.173999) (xy 50.693778 66.173999) (xy 50.688585 66.173999) (xy 50.688561 66.174) (xy 48.989478 66.174) (xy 48.754959 66.211144) (xy 48.754953 66.211145) (xy 48.529141 66.284516) (xy 48.529135 66.284519) (xy 48.317569 66.392317) (xy 48.125475 66.531882) (xy 48.125472 66.531884) (xy 47.957584 66.699772) (xy 47.957582 66.699775) (xy 47.818017 66.891869) (xy 47.710219 67.103435) (xy 47.710216 67.103441) (xy 47.636845 67.329253) (xy 47.636844 67.329258) (xy 47.636844 67.329259) (xy 47.5997 67.563778) (xy 47.5997 67.801222) (xy 47.627837 67.97887) (xy 47.636845 68.035746) (xy 47.710216 68.261558) (xy 47.710218 68.261563) (xy 47.818015 68.473127) (xy 47.95758 68.665222) (xy 47.957582 68.665224) (xy 47.957584 68.665227) (xy 48.125472 68.833115) (xy 48.125475 68.833117) (xy 48.125478 68.83312) (xy 48.272391 68.939858) (xy 48.315744 68.996079) (xy 48.322162 69.037252) (xy 49.024077 69.739166) (xy 48.934506 69.763167) (xy 48.831894 69.82241) (xy 48.74811 69.906194) (xy 48.688867 70.008806) (xy 48.664866 70.098375) (xy 47.967059 69.400568) (xy 47.967058 69.400569) (xy 47.887723 69.522) (xy 47.887719 69.522008) (xy 47.795651 69.731903) (xy 47.739388 69.95408) (xy 47.72046 70.1825) (xy 47.739388 70.410919) (xy 47.795651 70.633096) (xy 47.887719 70.84299) (xy 47.967059 70.964429) (xy 48.664866 70.266622) (xy 48.688867 70.356194) (xy 48.74811 70.458806) (xy 48.831894 70.54259) (xy 48.934506 70.601833) (xy 49.024074 70.625833) (xy 48.324695 71.325212) (xy 48.334789 71.333069) (xy 48.376259 71.390695) (xy 48.379991 71.461593) (xy 48.3448 71.523254) (xy 48.334789 71.531929) (xy 48.324696 71.539784) (xy 48.324696 71.539786) (xy 49.024077 72.239166) (xy 48.934506 72.263167) (xy 48.831894 72.32241) (xy 48.74811 72.406194) (xy 48.688867 72.508806) (xy 48.664866 72.598376) (xy 47.967059 71.900568) (xy 47.967058 71.900569) (xy 47.887723 72.022) (xy 47.887719 72.022008) (xy 47.795651 72.231903) (xy 47.739388 72.45408) (xy 47.72046 72.6825) (xy 47.739388 72.910919) (xy 47.795651 73.133096) (xy 47.887717 73.342987) (xy 47.887721 73.342993) (xy 48.013075 73.534864) (xy 48.038665 73.562662) (xy 48.070086 73.626327) (xy 48.0621 73.696873) (xy 48.017241 73.751902) (xy 47.949752 73.773943) (xy 47.945964 73.774) (xy 47.315349 73.774) (xy 47.096376 73.808682) (xy 47.09637 73.808683) (xy 46.885528 73.87719) (xy 46.885522 73.877193) (xy 46.687981 73.977845) (xy 46.508621 74.108158) (xy 46.351858 74.264921) (xy 46.221545 74.444281) (xy 46.120893 74.641822) (xy 46.12089 74.641828) (xy 46.052383 74.85267) (xy 46.052382 74.852675) (xy 46.052382 74.852676) (xy 46.0177 75.071649) (xy 38.0005 75.071649) (xy 38.0005 69.171691) (xy 44.3182 69.171691) (xy 44.3182 70.1285) (xy 45.3262 70.1285) (xy 45.3262 70.6365) (xy 44.3182 70.6365) (xy 44.3182 71.593308) (xy 44.35287 71.81221) (xy 44.421355 72.022983) (xy 44.421356 72.022985) (xy 44.521972 72.220456) (xy 44.652239 72.399753) (xy 44.808946 72.55646) (xy 44.988243 72.686727) (xy 45.185714 72.787343) (xy 45.185716 72.787344) (xy 45.396489 72.855829) (xy 45.4722 72.86782) (xy 45.4722 71.794186) (xy 45.480594 71.80258) (xy 45.571806 71.855241) (xy 45.673539 71.8825) (xy 45.778861 71.8825) (xy 45.880594 71.855241) (xy 45.971806 71.80258) (xy 45.9802 71.794186) (xy 45.9802 72.86782) (xy 46.055909 72.855829) (xy 46.055911 72.855829) (xy 46.266683 72.787344) (xy 46.266685 72.787343) (xy 46.464156 72.686727) (xy 46.643453 72.55646) (xy 46.80016 72.399753) (xy 46.930427 72.220456) (xy 47.031043 72.022985) (xy 47.031044 72.022983) (xy 47.099529 71.81221) (xy 47.1342 71.593308) (xy 47.1342 70.6365) (xy 46.1262 70.6365) (xy 46.1262 70.1285) (xy 47.1342 70.1285) (xy 47.1342 69.171691) (xy 47.099529 68.952789) (xy 47.031044 68.742016) (xy 47.031043 68.742014) (xy 46.930427 68.544543) (xy 46.80016 68.365246) (xy 46.643453 68.208539) (xy 46.464156 68.078272) (xy 46.266685 67.977656) (xy 46.266683 67.977655) (xy 46.055909 67.909169) (xy 45.9802 67.897178) (xy 45.9802 68.970814) (xy 45.971806 68.96242) (xy 45.880594 68.909759) (xy 45.778861 68.8825) (xy 45.673539 68.8825) (xy 45.571806 68.909759) (xy 45.480594 68.96242) (xy 45.4722 68.970814) (xy 45.4722 67.897178) (xy 45.39649 67.909169) (xy 45.185716 67.977655) (xy 45.185714 67.977656) (xy 44.988243 68.078272) (xy 44.808946 68.208539) (xy 44.652239 68.365246) (xy 44.521972 68.544543) (xy 44.421356 68.742014) (xy 44.421355 68.742016) (xy 44.35287 68.952789) (xy 44.3182 69.171691) (xy 38.0005 69.171691) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.012308 58.729542) (xy 38.017382 58.613336) (xy 38.01834 58.602388) (xy 38.021629 58.577404) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.078068 58.177128) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.194764 57.705575) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.356455 57.256832) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.710155 56.58255) (xy 60.2587 56.58255) (xy 60.2587 58.379849) (xy 60.265209 58.440396) (xy 60.265211 58.440404) (xy 60.31631 58.577402) (xy 60.316312 58.577407) (xy 60.403938 58.694461) (xy 60.520992 58.782087) (xy 60.520994 58.782088) (xy 60.520996 58.782089) (xy 60.5761 58.802642) (xy 60.657995 58.833188) (xy 60.658003 58.83319) (xy 60.71855 58.839699) (xy 60.718555 58.839699) (xy 60.718562 58.8397) (xy 60.718568 58.8397) (xy 62.515832 58.8397) (xy 62.515838 58.8397) (xy 62.515845 58.839699) (xy 62.515849 58.839699) (xy 62.576396 58.83319) (xy 62.576399 58.833189) (xy 62.576401 58.833189) (xy 62.713404 58.782089) (xy 62.729028 58.770393) (xy 62.837675 58.689061) (xy 62.838799 58.690562) (xy 62.891324 58.661874) (xy 62.962141 58.666932) (xy 63.018981 58.709473) (xy 63.030392 58.7278) (xy 63.031578 58.730129) (xy 63.031579 58.730129) (xy 63.052094 58.770393) (xy 63.080836 58.826801) (xy 63.197271 58.98706) (xy 63.197274 58.987063) (xy 67.81887 63.608658) (xy 67.958942 63.74873) (xy 68.119202 63.865166) (xy 68.295703 63.955098) (xy 68.4841 64.016312) (xy 68.679754 64.0473) (xy 68.877846 64.0473) (xy 75.626522 64.0473) (xy 75.694643 64.067302) (xy 75.715617 64.084205) (xy 77.941335 66.309924) (xy 77.941338 66.309926) (xy 77.941342 66.30993) (xy 78.101602 66.426367) (xy 78.278104 66.516299) (xy 78.405287 66.557622) (xy 78.4665 66.577512) (xy 78.662154 66.6085) (xy 92.056122 66.6085) (xy 92.124243 66.628502) (xy 92.145217 66.645405) (xy 106.529736 81.029925) (xy 106.529739 81.029928) (xy 106.529742 81.02993) (xy 106.690003 81.146367) (xy 106.866504 81.236299) (xy 106.992694 81.2773) (xy 107.0549 81.297512) (xy 107.250554 81.3285) (xy 114.876522 81.3285) (xy 114.944643 81.348502) (xy 114.965617 81.365405) (xy 115.714595 82.114383) (xy 115.748621 82.176695) (xy 115.7515 82.203478) (xy 115.7515 82.233222) (xy 115.731498 82.301343) (xy 115.677842 82.347836) (xy 115.607568 82.35794) (xy 115.542988 82.328446) (xy 115.523565 82.307284) (xy 115.516547 82.297625) (xy 115.516542 82.297619) (xy 115.36368 82.144757) (xy 115.363677 82.144755) (xy 115.363675 82.144753) (xy 115.188771 82.017678) (xy 114.996141 81.919528) (xy 114.99614 81.919527) (xy 114.996139 81.919527) (xy 114.790532 81.852721) (xy 114.790529 81.85272) (xy 114.576997 81.8189) (xy 114.060803 81.8189) (xy 113.847271 81.85272) (xy 113.847268 81.85272) (xy 113.847267 81.852721) (xy 113.64166 81.919527) (xy 113.449025 82.01768) (xy 113.274122 82.144755) (xy 113.274119 82.144757) (xy 113.121257 82.297619) (xy 113.121255 82.297622) (xy 112.99418 82.472525) (xy 112.896027 82.66516) (xy 112.862237 82.769156) (xy 112.82922 82.870771) (xy 112.7954 83.084303) (xy 112.7954 83.300497) (xy 112.82922 83.514029) (xy 112.829221 83.514032) (xy 112.869711 83.638648) (xy 112.896028 83.719641) (xy 112.994178 83.912271) (xy 113.121253 84.087175) (xy 113.121255 84.087177) (xy 113.121257 84.08718) (xy 113.274122 84.240045) (xy 113.439864 84.360464) (xy 113.483218 84.416687) (xy 113.489293 84.487423) (xy 113.456161 84.550214) (xy 113.439864 84.564336) (xy 113.274122 84.684754) (xy 113.121257 84.837619) (xy 113.121255 84.837622) (xy 112.994179 85.012525) (xy 112.930107 85.138275) (xy 112.881358 85.18989) (xy 112.812443 85.206956) (xy 112.745242 85.184055) (xy 112.728745 85.170167) (xy 112.669191 85.110613) (xy 112.669189 85.110611) (xy 112.538079 85.023006) (xy 112.392397 84.962663) (xy 112.237744 84.9319) (xy 112.237742 84.9319) (xy 112.080058 84.9319) (xy 112.080055 84.9319) (xy 111.925402 84.962663) (xy 111.925397 84.962665) (xy 111.77972 85.023006) (xy 111.648615 85.110608) (xy 111.648608 85.110613) (xy 111.537113 85.222108) (xy 111.537108 85.222115) (xy 111.449506 85.35322) (xy 111.389165 85.498897) (xy 111.389163 85.498902) (xy 111.3584 85.653555) (xy 111.3584 85.653558) (xy 111.3584 85.811242) (xy 111.389163 85.965897) (xy 111.449506 86.111579) (xy 111.537111 86.242689) (xy 111.648611 86.354189) (xy 111.779721 86.441794) (xy 111.925403 86.502137) (xy 112.080058 86.5329) (xy 112.080059 86.5329) (xy 112.237741 86.5329) (xy 112.237742 86.5329) (xy 112.392397 86.502137) (xy 112.538079 86.441794) (xy 112.669189 86.354189) (xy 112.728748 86.294629) (xy 112.791056 86.260607) (xy 112.861872 86.265671) (xy 112.918708 86.308217) (xy 112.930104 86.32652) (xy 112.994178 86.452271) (xy 113.121253 86.627175) (xy 113.121255 86.627177) (xy 113.121257 86.62718) (xy 113.274122 86.780045) (xy 113.439864 86.900464) (xy 113.483218 86.956687) (xy 113.489293 87.027423) (xy 113.456161 87.090214) (xy 113.439864 87.104336) (xy 113.274122 87.224754) (xy 113.121257 87.377619) (xy 113.121255 87.377622) (xy 112.99418 87.552525) (xy 112.896027 87.74516) (xy 112.829221 87.950767) (xy 112.82922 87.950771) (xy 112.7954 88.164303) (xy 112.7954 88.380497) (xy 112.82922 88.594029) (xy 112.896028 88.799641) (xy 112.98813 88.980402) (xy 112.99418 88.992274) (xy 113.025597 89.035515) (xy 113.121253 89.167175) (xy 113.121255 89.167177) (xy 113.121257 89.16718) (xy 113.205609 89.251532) (xy 113.239635 89.313844) (xy 113.23457 89.384659) (xy 113.192023 89.441495) (xy 113.160547 89.458682) (xy 113.057939 89.496953) (xy 113.057934 89.496955) (xy 112.940995 89.584495) (xy 112.853455 89.701434) (xy 112.853455 89.701435) (xy 112.802405 89.838306) (xy 112.7959 89.898802) (xy 112.7959 90.5584) (xy 113.876649 90.5584) (xy 113.843655 90.615547) (xy 113.8089 90.745257) (xy 113.8089 90.879543) (xy 113.843655 91.009253) (xy 113.876649 91.0664) (xy 112.7959 91.0664) (xy 112.7959 91.725997) (xy 112.802405 91.786493) (xy 112.853455 91.923364) (xy 112.853455 91.923365) (xy 112.940995 92.040304) (xy 113.057934 92.127844) (xy 113.194806 92.178894) (xy 113.255302 92.185399) (xy 113.255315 92.1854) (xy 114.0649 92.1854) (xy 114.0649 91.25465) (xy 114.122047 91.287645) (xy 114.251757 91.3224) (xy 114.386043 91.3224) (xy 114.515753 91.287645) (xy 114.5729 91.25465) (xy 114.5729 92.1854) (xy 115.382485 92.1854) (xy 115.382497 92.185399) (xy 115.442996 92.178894) (xy 115.541467 92.142166) (xy 115.612283 92.1371) (xy 115.674595 92.171125) (xy 115.70862 92.233437) (xy 115.7115 92.260221) (xy 115.7115 93.388387) (xy 115.691498 93.456508) (xy 115.637842 93.503001) (xy 115.567568 93.513105) (xy 115.502988 93.483611) (xy 115.496405 93.477482) (xy 115.36368 93.344757) (xy 115.363677 93.344755) (xy 115.363675 93.344753) (xy 115.188771 93.217678) (xy 114.996141 93.119528) (xy 114.99614 93.119527) (xy 114.996139 93.119527) (xy 114.790532 93.052721) (xy 114.790529 93.05272) (xy 114.576997 93.0189) (xy 114.060803 93.0189) (xy 113.847271 93.05272) (xy 113.847268 93.05272) (xy 113.847267 93.052721) (xy 113.64166 93.119527) (xy 113.449025 93.21768) (xy 113.274122 93.344755) (xy 113.274119 93.344757) (xy 113.121257 93.497619) (xy 113.121255 93.497622) (xy 112.99418 93.672525) (xy 112.896027 93.86516) (xy 112.840162 94.037095) (xy 112.82922 94.070771) (xy 112.7954 94.284303) (xy 112.7954 94.500497) (xy 112.82922 94.714029) (xy 112.829221 94.714032) (xy 112.870767 94.841898) (xy 112.896028 94.919641) (xy 112.994178 95.112271) (xy 113.121253 95.287175) (xy 113.121255 95.287177) (xy 113.121257 95.28718) (xy 113.274122 95.440045) (xy 113.439864 95.560464) (xy 113.483218 95.616687) (xy 113.489293 95.687423) (xy 113.456161 95.750214) (xy 113.439864 95.764336) (xy 113.274122 95.884754) (xy 113.121257 96.037619) (xy 113.121255 96.037622) (xy 112.994179 96.212525) (xy 112.930107 96.338275) (xy 112.881358 96.38989) (xy 112.812443 96.406956) (xy 112.745242 96.384055) (xy 112.728745 96.370167) (xy 112.669191 96.310613) (xy 112.669189 96.310611) (xy 112.538079 96.223006) (xy 112.392397 96.162663) (xy 112.383906 96.160974) (xy 112.237744 96.1319) (xy 112.237742 96.1319) (xy 112.080058 96.1319) (xy 112.080055 96.1319) (xy 111.925402 96.162663) (xy 111.925397 96.162665) (xy 111.77972 96.223006) (xy 111.648615 96.310608) (xy 111.648608 96.310613) (xy 111.537113 96.422108) (xy 111.537108 96.422115) (xy 111.449506 96.55322) (xy 111.389165 96.698897) (xy 111.389163 96.698902) (xy 111.3584 96.853555) (xy 111.3584 97.011244) (xy 111.377213 97.105819) (xy 111.389163 97.165897) (xy 111.449506 97.311579) (xy 111.537111 97.442689) (xy 111.648611 97.554189) (xy 111.779721 97.641794) (xy 111.925403 97.702137) (xy 112.080058 97.7329) (xy 112.080059 97.7329) (xy 112.237741 97.7329) (xy 112.237742 97.7329) (xy 112.392397 97.702137) (xy 112.538079 97.641794) (xy 112.669189 97.554189) (xy 112.728748 97.494629) (xy 112.791056 97.460607) (xy 112.861872 97.465671) (xy 112.918708 97.508217) (xy 112.930104 97.52652) (xy 112.993658 97.651251) (xy 112.99418 97.652274) (xy 113.019924 97.687708) (xy 113.121253 97.827175) (xy 113.121255 97.827177) (xy 113.121257 97.82718) (xy 113.274122 97.980045) (xy 113.439864 98.100464) (xy 113.483218 98.156687) (xy 113.489293 98.227423) (xy 113.456161 98.290214) (xy 113.439864 98.304336) (xy 113.274122 98.424754) (xy 113.121257 98.577619) (xy 113.121255 98.577622) (xy 112.99418 98.752525) (xy 112.896027 98.94516) (xy 112.829936 99.148568) (xy 112.82922 99.150771) (xy 112.7954 99.364303) (xy 112.7954 99.580497) (xy 112.82922 99.794029) (xy 112.829221 99.794032) (xy 112.845889 99.845332) (xy 112.896028 99.999641) (xy 112.994178 100.192271) (xy 113.121253 100.367175) (xy 113.121255 100.367177) (xy 113.121257 100.36718) (xy 113.205609 100.451532) (xy 113.239635 100.513844) (xy 113.23457 100.584659) (xy 113.192023 100.641495) (xy 113.160547 100.658682) (xy 113.057939 100.696953) (xy 113.057934 100.696955) (xy 112.940995 100.784495) (xy 112.853455 100.901434) (xy 112.853455 100.901435) (xy 112.802405 101.038306) (xy 112.7959 101.098802) (xy 112.7959 101.7584) (xy 113.876649 101.7584) (xy 113.843655 101.815547) (xy 113.8089 101.945257) (xy 113.8089 102.079543) (xy 113.843655 102.209253) (xy 113.876649 102.2664) (xy 112.7959 102.2664) (xy 112.7959 102.925997) (xy 112.802405 102.986493) (xy 112.853455 103.123364) (xy 112.853455 103.123365) (xy 112.940995 103.240304) (xy 113.057934 103.327844) (xy 113.194806 103.378894) (xy 113.255302 103.385399) (xy 113.255315 103.3854) (xy 114.0649 103.3854) (xy 114.0649 102.45465) (xy 114.122047 102.487645) (xy 114.251757 102.5224) (xy 114.386043 102.5224) (xy 114.515753 102.487645) (xy 114.5729 102.45465) (xy 114.5729 103.3854) (xy 115.382485 103.3854) (xy 115.382497 103.385399) (xy 115.442993 103.378894) (xy 115.588306 103.324696) (xy 115.589297 103.327354) (xy 115.644476 103.315345) (xy 115.710999 103.340149) (xy 115.753551 103.396981) (xy 115.7615 103.441025) (xy 115.7615 104.746986) (xy 115.741498 104.815107) (xy 115.687842 104.8616) (xy 115.617568 104.871704) (xy 115.552988 104.84221) (xy 115.533564 104.821047) (xy 115.516545 104.797622) (xy 115.36368 104.644757) (xy 115.363677 104.644755) (xy 115.363675 104.644753) (xy 115.188771 104.517678) (xy 114.996141 104.419528) (xy 114.99614 104.419527) (xy 114.996139 104.419527) (xy 114.790532 104.352721) (xy 114.790529 104.35272) (xy 114.576997 104.3189) (xy 114.060803 104.3189) (xy 113.847271 104.35272) (xy 113.847268 104.35272) (xy 113.847267 104.352721) (xy 113.64166 104.419527) (xy 113.449025 104.51768) (xy 113.274122 104.644755) (xy 113.274119 104.644757) (xy 113.121257 104.797619) (xy 113.121255 104.797622) (xy 112.99418 104.972525) (xy 112.896027 105.16516) (xy 112.829221 105.370767) (xy 112.82922 105.370771) (xy 112.7954 105.584303) (xy 112.7954 105.800497) (xy 112.82922 106.014029) (xy 112.829221 106.014032) (xy 112.867851 106.132924) (xy 112.896028 106.219641) (xy 112.994178 106.412271) (xy 113.121253 106.587175) (xy 113.121255 106.587177) (xy 113.121257 106.58718) (xy 113.274122 106.740045) (xy 113.439864 106.860464) (xy 113.483218 106.916687) (xy 113.489293 106.987423) (xy 113.456161 107.050214) (xy 113.439864 107.064336) (xy 113.274122 107.184754) (xy 113.121257 107.337619) (xy 113.121255 107.337622) (xy 112.994179 107.512525) (xy 112.930107 107.638275) (xy 112.881358 107.68989) (xy 112.812443 107.706956) (xy 112.745242 107.684055) (xy 112.728745 107.670167) (xy 112.669191 107.610613) (xy 112.669189 107.610611) (xy 112.538079 107.523006) (xy 112.392397 107.462663) (xy 112.37181 107.458568) (xy 112.237744 107.4319) (xy 112.237742 107.4319) (xy 112.080058 107.4319) (xy 112.080055 107.4319) (xy 111.925402 107.462663) (xy 111.925397 107.462665) (xy 111.77972 107.523006) (xy 111.648615 107.610608) (xy 111.648608 107.610613) (xy 111.537113 107.722108) (xy 111.537108 107.722115) (xy 111.449506 107.85322) (xy 111.389165 107.998897) (xy 111.389163 107.998902) (xy 111.3584 108.153555) (xy 111.3584 108.153558) (xy 111.3584 108.311242) (xy 111.389163 108.465897) (xy 111.449506 108.611579) (xy 111.537111 108.742689) (xy 111.648611 108.854189) (xy 111.779721 108.941794) (xy 111.925403 109.002137) (xy 112.080058 109.0329) (xy 112.080059 109.0329) (xy 112.237741 109.0329) (xy 112.237742 109.0329) (xy 112.392397 109.002137) (xy 112.538079 108.941794) (xy 112.669189 108.854189) (xy 112.728748 108.794629) (xy 112.791056 108.760607) (xy 112.861872 108.765671) (xy 112.918708 108.808217) (xy 112.930104 108.82652) (xy 112.994178 108.952271) (xy 113.121253 109.127175) (xy 113.121255 109.127177) (xy 113.121257 109.12718) (xy 113.274122 109.280045) (xy 113.439864 109.400464) (xy 113.483218 109.456687) (xy 113.489293 109.527423) (xy 113.456161 109.590214) (xy 113.439864 109.604336) (xy 113.274122 109.724754) (xy 113.121257 109.877619) (xy 113.121255 109.877622) (xy 112.99418 110.052525) (xy 112.896027 110.24516) (xy 112.829221 110.450767) (xy 112.82922 110.450771) (xy 112.7954 110.664303) (xy 112.7954 110.880497) (xy 112.82922 111.094029) (xy 112.829221 111.094032) (xy 112.89215 111.287708) (xy 112.896028 111.299641) (xy 112.994178 111.492271) (xy 113.121253 111.667175) (xy 113.121255 111.667177) (xy 113.121257 111.66718) (xy 113.205609 111.751532) (xy 113.239635 111.813844) (xy 113.23457 111.884659) (xy 113.192023 111.941495) (xy 113.160547 111.958682) (xy 113.057939 111.996953) (xy 113.057934 111.996955) (xy 112.940995 112.084495) (xy 112.853455 112.201434) (xy 112.853455 112.201435) (xy 112.802405 112.338306) (xy 112.7959 112.398802) (xy 112.7959 113.0584) (xy 113.876649 113.0584) (xy 113.843655 113.115547) (xy 113.8089 113.245257) (xy 113.8089 113.379543) (xy 113.843655 113.509253) (xy 113.876649 113.5664) (xy 112.7959 113.5664) (xy 112.7959 114.225997) (xy 112.802405 114.286493) (xy 112.853455 114.423364) (xy 112.853455 114.423365) (xy 112.940995 114.540304) (xy 113.057934 114.627844) (xy 113.194806 114.678894) (xy 113.255302 114.685399) (xy 113.255315 114.6854) (xy 114.0649 114.6854) (xy 114.0649 113.75465) (xy 114.122047 113.787645) (xy 114.251757 113.8224) (xy 114.386043 113.8224) (xy 114.515753 113.787645) (xy 114.5729 113.75465) (xy 114.5729 114.6854) (xy 115.382485 114.6854) (xy 115.382497 114.685399) (xy 115.442992 114.678894) (xy 115.561467 114.634706) (xy 115.632283 114.629641) (xy 115.694595 114.663667) (xy 115.728621 114.725979) (xy 115.7315 114.752762) (xy 115.7315 116.075652) (xy 115.711498 116.143773) (xy 115.657842 116.190266) (xy 115.587568 116.20037) (xy 115.522988 116.170876) (xy 115.503565 116.149715) (xy 115.502047 116.147625) (xy 115.502044 116.147622) (xy 115.502042 116.147619) (xy 115.34918 115.994757) (xy 115.349177 115.994755) (xy 115.349175 115.994753) (xy 115.174271 115.867678) (xy 114.981641 115.769528) (xy 114.98164 115.769527) (xy 114.981639 115.769527) (xy 114.776032 115.702721) (xy 114.776029 115.70272) (xy 114.562497 115.6689) (xy 114.046303 115.6689) (xy 113.832771 115.70272) (xy 113.832768 115.70272) (xy 113.832767 115.702721) (xy 113.62716 115.769527) (xy 113.434525 115.86768) (xy 113.259622 115.994755) (xy 113.259619 115.994757) (xy 113.106757 116.147619) (xy 113.106755 116.147622) (xy 112.97968 116.322525) (xy 112.881527 116.51516) (xy 112.836818 116.652761) (xy 112.81472 116.720771) (xy 112.7809 116.934303) (xy 112.7809 117.150497) (xy 112.81472 117.364029) (xy 112.814721 117.364032) (xy 112.877299 117.556628) (xy 112.881528 117.569641) (xy 112.979678 117.762271) (xy 113.106753 117.937175) (xy 113.106755 117.937177) (xy 113.106757 117.93718) (xy 113.259622 118.090045) (xy 113.425364 118.210464) (xy 113.468718 118.266687) (xy 113.474793 118.337423) (xy 113.441661 118.400214) (xy 113.425364 118.414336) (xy 113.259622 118.534754) (xy 113.106757 118.687619) (xy 113.106755 118.687622) (xy 112.979679 118.862525) (xy 112.915607 118.988275) (xy 112.866858 119.03989) (xy 112.797943 119.056956) (xy 112.730742 119.034055) (xy 112.714245 119.020167) (xy 112.654691 118.960613) (xy 112.654689 118.960611) (xy 112.523579 118.873006) (xy 112.377897 118.812663) (xy 112.223244 118.7819) (xy 112.223242 118.7819) (xy 112.065558 118.7819) (xy 112.065555 118.7819) (xy 111.910902 118.812663) (xy 111.910897 118.812665) (xy 111.76522 118.873006) (xy 111.634115 118.960608) (xy 111.634108 118.960613) (xy 111.522613 119.072108) (xy 111.522608 119.072115) (xy 111.435006 119.20322) (xy 111.374665 119.348897) (xy 111.374663 119.348902) (xy 111.3439 119.503555) (xy 111.3439 119.661244) (xy 111.374663 119.815897) (xy 111.435006 119.961579) (xy 111.522611 120.092689) (xy 111.634111 120.204189) (xy 111.765221 120.291794) (xy 111.910903 120.352137) (xy 112.065558 120.3829) (xy 112.065559 120.3829) (xy 112.223241 120.3829) (xy 112.223242 120.3829) (xy 112.377897 120.352137) (xy 112.523579 120.291794) (xy 112.654689 120.204189) (xy 112.714248 120.144629) (xy 112.776556 120.110607) (xy 112.847372 120.115671) (xy 112.904208 120.158217) (xy 112.915604 120.17652) (xy 112.974339 120.291793) (xy 112.97968 120.302274) (xy 112.995732 120.324368) (xy 113.106753 120.477175) (xy 113.106755 120.477177) (xy 113.106757 120.47718) (xy 113.259622 120.630045) (xy 113.425364 120.750464) (xy 113.468718 120.806687) (xy 113.474793 120.877423) (xy 113.441661 120.940214) (xy 113.425364 120.954336) (xy 113.259622 121.074754) (xy 113.106757 121.227619) (xy 113.106755 121.227622) (xy 112.97968 121.402525) (xy 112.881527 121.59516) (xy 112.814721 121.800767) (xy 112.81472 121.800771) (xy 112.7809 122.014303) (xy 112.7809 122.230497) (xy 112.81472 122.444029) (xy 112.814721 122.444032) (xy 112.879263 122.642672) (xy 112.881528 122.649641) (xy 112.974341 122.831797) (xy 112.97968 122.842274) (xy 112.993117 122.860768) (xy 113.106753 123.017175) (xy 113.106755 123.017177) (xy 113.106757 123.01718) (xy 113.191109 123.101532) (xy 113.225135 123.163844) (xy 113.22007 123.234659) (xy 113.177523 123.291495) (xy 113.146047 123.308682) (xy 113.043439 123.346953) (xy 113.043434 123.346955) (xy 112.926495 123.434495) (xy 112.838955 123.551434) (xy 112.838955 123.551435) (xy 112.787905 123.688306) (xy 112.7814 123.748802) (xy 112.7814 124.4084) (xy 113.862149 124.4084) (xy 113.829155 124.465547) (xy 113.7944 124.595257) (xy 113.7944 124.729543) (xy 113.829155 124.859253) (xy 113.862149 124.9164) (xy 112.7814 124.9164) (xy 112.7814 125.575997) (xy 112.787905 125.636493) (xy 112.838955 125.773364) (xy 112.838955 125.773365) (xy 112.926495 125.890304) (xy 113.043434 125.977844) (xy 113.180306 126.028894) (xy 113.240802 126.035399) (xy 113.240815 126.0354) (xy 114.0504 126.0354) (xy 114.0504 125.10465) (xy 114.107547 125.137645) (xy 114.237257 125.1724) (xy 114.371543 125.1724) (xy 114.501253 125.137645) (xy 114.5584 125.10465) (xy 114.5584 126.0354) (xy 115.367985 126.0354) (xy 115.367997 126.035399) (xy 115.428493 126.028894) (xy 115.565364 125.977844) (xy 115.565365 125.977844) (xy 115.682304 125.890304) (xy 115.769844 125.773365) (xy 115.769844 125.773364) (xy 115.820894 125.636493) (xy 115.827399 125.575997) (xy 115.8274 125.575985) (xy 115.8274 124.9164) (xy 114.746651 124.9164) (xy 114.779645 124.859253) (xy 114.8144 124.729543) (xy 114.8144 124.595257) (xy 114.779645 124.465547) (xy 114.746651 124.4084) (xy 115.8274 124.4084) (xy 115.8274 123.748814) (xy 115.827399 123.748802) (xy 115.820894 123.688306) (xy 115.769844 123.551435) (xy 115.769844 123.551434) (xy 115.738834 123.51001) (xy 115.714023 123.44349) (xy 115.729114 123.374116) (xy 115.779317 123.323913) (xy 115.800758 123.314671) (xy 115.880697 123.288698) (xy 116.057198 123.198766) (xy 116.217458 123.08233) (xy 116.35753 122.942258) (xy 117.94993 121.349858) (xy 118.066367 121.189597) (xy 118.156299 121.013096) (xy 118.20627 120.8593) (xy 118.217512 120.8247) (xy 118.2485 120.629046) (xy 118.2485 111.900954) (xy 118.217512 111.7053) (xy 118.197622 111.644087) (xy 118.156299 111.516904) (xy 118.066367 111.340403) (xy 118.028081 111.287708) (xy 117.94993 111.180142) (xy 117.949927 111.180139) (xy 117.949925 111.180136) (xy 117.806712 111.036923) (xy 117.806681 111.036894) (xy 117.520882 110.751095) (xy 117.486856 110.688783) (xy 117.491921 110.617968) (xy 117.520879 110.572907) (xy 117.97993 110.113858) (xy 118.096366 109.953598) (xy 118.135076 109.877625) (xy 118.186298 109.777097) (xy 118.247512 109.5887) (xy 118.2785 109.393046) (xy 118.2785 100.834454) (xy 118.247512 100.6388) (xy 118.186298 100.450403) (xy 118.096366 100.273902) (xy 117.97993 100.113642) (xy 117.839858 99.97357) (xy 117.427133 99.560845) (xy 117.393107 99.498533) (xy 117.398172 99.427718) (xy 117.427131 99.382656) (xy 117.92993 98.879858) (xy 118.046366 98.719598) (xy 118.052006 98.708529) (xy 118.052007 98.708526) (xy 118.136298 98.543097) (xy 118.197512 98.3547) (xy 118.2285 98.159046) (xy 118.2285 89.540954) (xy 118.197512 89.3453) (xy 118.136298 89.156903) (xy 118.046366 88.980402) (xy 117.92993 88.820142) (xy 117.789858 88.68007) (xy 117.443883 88.334095) (xy 117.409857 88.271783) (xy 117.414922 88.200968) (xy 117.443881 88.155906) (xy 117.96993 87.629858) (xy 118.086366 87.469598) (xy 118.095056 87.452542) (xy 118.176298 87.293097) (xy 118.237512 87.1047) (xy 118.2685 86.909046) (xy 118.2685 81.530954) (xy 118.237512 81.3353) (xy 118.176298 81.146903) (xy 118.086366 80.970402) (xy 117.96993 80.810142) (xy 117.829858 80.67007) (xy 117.134942 79.975154) (xy 116.269863 79.110074) (xy 116.26986 79.110071) (xy 116.109601 78.993636) (xy 116.1096 78.993635) (xy 116.109598 78.993634) (xy 115.933097 78.903702) (xy 115.7447 78.842488) (xy 115.549046 78.8115) (xy 115.549043 78.8115) (xy 107.923078 78.8115) (xy 107.854957 78.791498) (xy 107.833983 78.774595) (xy 104.497389 75.438) (xy 106.884096 75.438) (xy 106.904057 75.627927) (xy 106.919691 75.676042) (xy 106.963073 75.809556) (xy 106.963076 75.809561) (xy 107.058558 75.974941) (xy 107.058565 75.974951) (xy 107.186344 76.116864) (xy 107.186347 76.116866) (xy 107.340848 76.229118) (xy 107.515312 76.306794) (xy 107.702113 76.3465) (xy 107.893087 76.3465) (xy 108.079888 76.306794) (xy 108.254352 76.229118) (xy 108.408853 76.116866) (xy 108.408855 76.116864) (xy 108.536634 75.974951) (xy 108.536635 75.974949) (xy 108.53664 75.974944) (xy 108.632127 75.809556) (xy 108.691142 75.627928) (xy 108.711104 75.438) (xy 108.691142 75.248072) (xy 108.632127 75.066444) (xy 108.53664 74.901056) (xy 108.536638 74.901054) (xy 108.536634 74.901048) (xy 108.408855 74.759135) (xy 108.254352 74.646882) (xy 108.079888 74.569206) (xy 107.893087 74.5295) (xy 107.702113 74.5295) (xy 107.515311 74.569206) (xy 107.340847 74.646882) (xy 107.186344 74.759135) (xy 107.058565 74.901048) (xy 107.058558 74.901058) (xy 106.963076 75.066438) (xy 106.963073 75.066445) (xy 106.904057 75.248072) (xy 106.884096 75.438) (xy 104.497389 75.438) (xy 103.480073 74.420684) (xy 111.3271 74.420684) (xy 111.3271 74.634516) (xy 111.329059 74.646882) (xy 111.360552 74.845721) (xy 111.378532 74.901058) (xy 111.426628 75.049083) (xy 111.523706 75.239609) (xy 111.649394 75.412604) (xy 111.649396 75.412606) (xy 111.649398 75.412609) (xy 111.779704 75.542915) (xy 111.81373 75.605227) (xy 111.808665 75.676042) (xy 111.766118 75.732878) (xy 111.756756 75.739251) (xy 111.611947 75.82857) (xy 111.611941 75.828575) (xy 111.486575 75.953941) (xy 111.48657 75.953947) (xy 111.393485 76.104862) (xy 111.337713 76.273172) (xy 111.337712 76.273179) (xy 111.3271 76.377046) (xy 111.3271 77.678144) (xy 111.337712 77.782025) (xy 111.393485 77.950338) (xy 111.48657 78.101252) (xy 111.486575 78.101258) (xy 111.611941 78.226624) (xy 111.611947 78.226629) (xy 111.611948 78.22663) (xy 111.762862 78.319715) (xy 111.931174 78.375487) (xy 112.035055 78.3861) (xy 113.636144 78.386099) (xy 113.740026 78.375487) (xy 113.908338 78.319715) (xy 114.059252 78.22663) (xy 114.18463 78.101252) (xy 114.277715 77.950338) (xy 114.333487 77.782026) (xy 114.3441 77.678145) (xy 114.344099 76.377056) (xy 114.333487 76.273174) (xy 114.277715 76.104862) (xy 114.18463 75.953948) (xy 114.184629 75.953947) (xy 114.184624 75.953941) (xy 114.059258 75.828575) (xy 114.059252 75.82857) (xy 114.028434 75.809561) (xy 113.914442 75.73925) (xy 113.866965 75.686465) (xy 113.855562 75.61639) (xy 113.883855 75.551274) (xy 113.891484 75.542925) (xy 114.021806 75.412604) (xy 114.147494 75.239609) (xy 114.244572 75.049083) (xy 114.310649 74.845716) (xy 114.3441 74.634516) (xy 114.3441 74.420684) (xy 114.310649 74.209484) (xy 114.244572 74.006117) (xy 114.147494 73.815591) (xy 114.021806 73.642596) (xy 114.021803 73.642593) (xy 114.021801 73.64259) (xy 113.870609 73.491398) (xy 113.870606 73.491396) (xy 113.870604 73.491394) (xy 113.697609 73.365706) (xy 113.507083 73.268628) (xy 113.50708 73.268627) (xy 113.507078 73.268626) (xy 113.30372 73.202552) (xy 113.303723 73.202552) (xy 113.264401 73.196324) (xy 113.092516 73.1691) (xy 112.578684 73.1691) (xy 112.370382 73.202092) (xy 112.367478 73.202552) (xy 112.164121 73.268626) (xy 112.164115 73.268629) (xy 111.973587 73.365708) (xy 111.800593 73.491396) (xy 111.80059 73.491398) (xy 111.649398 73.64259) (xy 111.649396 73.642593) (xy 111.523708 73.815587) (xy 111.426629 74.006115) (xy 111.426626 74.006121) (xy 111.360552 74.209478) (xy 111.360551 74.209483) (xy 111.360551 74.209484) (xy 111.3271 74.420684) (xy 103.480073 74.420684) (xy 101.398589 72.3392) (xy 104.293296 72.3392) (xy 104.313257 72.529127) (xy 104.343326 72.62167) (xy 104.372273 72.710756) (xy 104.372276 72.710761) (xy 104.467758 72.876141) (xy 104.467765 72.876151) (xy 104.595544 73.018064) (xy 104.595547 73.018066) (xy 104.750048 73.130318) (xy 104.924512 73.207994) (xy 105.111313 73.2477) (xy 105.302287 73.2477) (xy 105.489088 73.207994) (xy 105.663552 73.130318) (xy 105.818053 73.018066) (xy 105.835206 72.999016) (xy 105.945834 72.876151) (xy 105.945835 72.876149) (xy 105.94584 72.876144) (xy 106.041327 72.710756) (xy 106.100342 72.529128) (xy 106.120304 72.3392) (xy 106.100342 72.149272) (xy 106.041327 71.967644) (xy 105.94584 71.802256) (xy 105.945838 71.802254) (xy 105.945834 71.802248) (xy 105.818055 71.660335) (xy 105.663552 71.548082) (xy 105.489088 71.470406) (xy 105.302287 71.4307) (xy 105.111313 71.4307) (xy 104.924511 71.470406) (xy 104.750047 71.548082) (xy 104.595544 71.660335) (xy 104.467765 71.802248) (xy 104.467758 71.802258) (xy 104.372276 71.967638) (xy 104.372273 71.967645) (xy 104.313257 72.149272) (xy 104.293296 72.3392) (xy 101.398589 72.3392) (xy 95.048589 65.9892) (xy 100.229296 65.9892) (xy 100.249257 66.179127) (xy 100.279326 66.27167) (xy 100.308273 66.360756) (xy 100.308276 66.360761) (xy 100.403758 66.526141) (xy 100.403765 66.526151) (xy 100.531544 66.668064) (xy 100.575195 66.699778) (xy 100.686048 66.780318) (xy 100.860512 66.857994) (xy 101.047313 66.8977) (xy 101.238287 66.8977) (xy 101.425088 66.857994) (xy 101.599552 66.780318) (xy 101.754053 66.668066) (xy 101.789677 66.628502) (xy 101.881834 66.526151) (xy 101.881835 66.526149) (xy 101.88184 66.526144) (xy 101.977327 66.360756) (xy 102.036342 66.179128) (xy 102.056304 65.9892) (xy 102.038592 65.820684) (xy 111.3521 65.820684) (xy 111.3521 66.034516) (xy 111.385551 66.245716) (xy 111.385552 66.245721) (xy 111.451626 66.449078) (xy 111.451628 66.449083) (xy 111.548706 66.639609) (xy 111.674394 66.812604) (xy 111.674396 66.812606) (xy 111.674398 66.812609) (xy 111.804704 66.942915) (xy 111.83873 67.005227) (xy 111.833665 67.076042) (xy 111.791118 67.132878) (xy 111.781756 67.139251) (xy 111.636947 67.22857) (xy 111.636941 67.228575) (xy 111.511575 67.353941) (xy 111.51157 67.353947) (xy 111.418485 67.504862) (xy 111.362713 67.673172) (xy 111.362712 67.673179) (xy 111.3521 67.777046) (xy 111.3521 69.078144) (xy 111.362712 69.182025) (xy 111.418485 69.350338) (xy 111.51157 69.501252) (xy 111.511575 69.501258) (xy 111.636941 69.626624) (xy 111.636947 69.626629) (xy 111.636948 69.62663) (xy 111.787862 69.719715) (xy 111.956174 69.775487) (xy 112.060055 69.7861) (xy 113.661144 69.786099) (xy 113.765026 69.775487) (xy 113.933338 69.719715) (xy 114.084252 69.62663) (xy 114.20963 69.501252) (xy 114.302715 69.350338) (xy 114.358487 69.182026) (xy 114.3691 69.078145) (xy 114.369099 67.777056) (xy 114.358487 67.673174) (xy 114.302715 67.504862) (xy 114.20963 67.353948) (xy 114.209629 67.353947) (xy 114.209624 67.353941) (xy 114.084258 67.228575) (xy 114.084252 67.22857) (xy 113.939442 67.13925) (xy 113.891965 67.086465) (xy 113.880562 67.01639) (xy 113.908855 66.951274) (xy 113.916484 66.942925) (xy 114.046806 66.812604) (xy 114.172494 66.639609) (xy 114.269572 66.449083) (xy 114.335649 66.245716) (xy 114.3691 66.034516) (xy 114.3691 65.820684) (xy 114.335649 65.609484) (xy 114.269572 65.406117) (xy 114.172494 65.215591) (xy 114.046806 65.042596) (xy 114.046803 65.042593) (xy 114.046801 65.04259) (xy 113.895609 64.891398) (xy 113.895606 64.891396) (xy 113.895604 64.891394) (xy 113.722609 64.765706) (xy 113.532083 64.668628) (xy 113.53208 64.668627) (xy 113.532078 64.668626) (xy 113.32872 64.602552) (xy 113.328723 64.602552) (xy 113.289401 64.596324) (xy 113.117516 64.5691) (xy 112.603684 64.5691) (xy 112.392484 64.602551) (xy 112.392478 64.602552) (xy 112.189121 64.668626) (xy 112.189115 64.668629) (xy 111.998587 64.765708) (xy 111.825593 64.891396) (xy 111.82559 64.891398) (xy 111.674398 65.04259) (xy 111.674396 65.042593) (xy 111.548708 65.215587) (xy 111.451629 65.406115) (xy 111.451626 65.406121) (xy 111.385552 65.609478) (xy 111.385551 65.609483) (xy 111.385551 65.609484) (xy 111.3521 65.820684) (xy 102.038592 65.820684) (xy 102.036342 65.799272) (xy 101.977327 65.617644) (xy 101.88184 65.452256) (xy 101.881838 65.452254) (xy 101.881834 65.452248) (xy 101.754055 65.310335) (xy 101.599552 65.198082) (xy 101.425088 65.120406) (xy 101.238287 65.0807) (xy 101.047313 65.0807) (xy 100.860511 65.120406) (xy 100.686047 65.198082) (xy 100.531544 65.310335) (xy 100.403765 65.452248) (xy 100.403758 65.452258) (xy 100.308276 65.617638) (xy 100.308273 65.617645) (xy 100.249257 65.799272) (xy 100.229296 65.9892) (xy 95.048589 65.9892) (xy 93.449463 64.390074) (xy 93.44946 64.390071) (xy 93.289201 64.273636) (xy 93.2892 64.273635) (xy 93.289198 64.273634) (xy 93.112697 64.183702) (xy 92.9243 64.122488) (xy 92.728646 64.0915) (xy 92.728643 64.0915) (xy 79.334678 64.0915) (xy 79.266557 64.071498) (xy 79.245583 64.054595) (xy 77.019863 61.828874) (xy 77.01986 61.828871) (xy 76.859601 61.712436) (xy 76.8596 61.712435) (xy 76.859598 61.712434) (xy 76.683097 61.622502) (xy 76.4947 61.561288) (xy 76.299046 61.5303) (xy 76.299043 61.5303) (xy 69.352278 61.5303) (xy 69.284157 61.510298) (xy 69.263183 61.493395) (xy 67.111691 59.341903) (xy 79.8557 59.341903) (xy 79.8557 59.858097) (xy 79.88952 60.071629) (xy 79.956328 60.277241) (xy 80.054478 60.469871) (xy 80.181553 60.644775) (xy 80.181555 60.644777) (xy 80.181557 60.64478) (xy 80.334419 60.797642) (xy 80.334422 60.797644) (xy 80.334425 60.797647) (xy 80.509329 60.924722) (xy 80.701959 61.022872) (xy 80.907571 61.08968) (xy 81.121103 61.1235) (xy 81.121106 61.1235) (xy 81.337294 61.1235) (xy 81.337297 61.1235) (xy 81.550829 61.08968) (xy 81.756441 61.022872) (xy 81.949071 60.924722) (xy 82.123975 60.797647) (xy 82.276847 60.644775) (xy 82.397264 60.479035) (xy 82.453486 60.435681) (xy 82.524222 60.429606) (xy 82.587014 60.462737) (xy 82.601136 60.479035) (xy 82.721553 60.644775) (xy 82.721555 60.644777) (xy 82.721557 60.64478) (xy 82.874419 60.797642) (xy 82.874422 60.797644) (xy 82.874425 60.797647) (xy 83.049329 60.924722) (xy 83.175076 60.988793) (xy 83.22669 61.03754) (xy 83.243756 61.106455) (xy 83.220855 61.173657) (xy 83.206968 61.190154) (xy 83.147409 61.249713) (xy 83.147408 61.249715) (xy 83.059806 61.38082) (xy 82.999465 61.526497) (xy 82.999463 61.526502) (xy 82.9687 61.681155) (xy 82.9687 61.838844) (xy 82.992809 61.960044) (xy 82.999463 61.993497) (xy 83.059806 62.139179) (xy 83.147411 62.270289) (xy 83.258911 62.381789) (xy 83.390021 62.469394) (xy 83.535703 62.529737) (xy 83.690358 62.5605) (xy 83.690359 62.5605) (xy 83.848041 62.5605) (xy 83.848042 62.5605) (xy 84.002697 62.529737) (xy 84.148379 62.469394) (xy 84.279489 62.381789) (xy 84.329678 62.3316) (xy 106.934896 62.3316) (xy 106.954857 62.521527) (xy 106.984926 62.61407) (xy 107.013873 62.703156) (xy 107.013876 62.703161) (xy 107.109358 62.868541) (xy 107.109365 62.868551) (xy 107.237144 63.010464) (xy 107.237147 63.010466) (xy 107.391648 63.122718) (xy 107.566112 63.200394) (xy 107.752913 63.2401) (xy 107.943887 63.2401) (xy 108.130688 63.200394) (xy 108.305152 63.122718) (xy 108.459653 63.010466) (xy 108.58744 62.868544) (xy 108.682927 62.703156) (xy 108.741942 62.521528) (xy 108.761904 62.3316) (xy 108.741942 62.141672) (xy 108.682927 61.960044) (xy 108.58744 61.794656) (xy 108.587438 61.794654) (xy 108.587434 61.794648) (xy 108.459655 61.652735) (xy 108.305152 61.540482) (xy 108.130688 61.462806) (xy 107.943887 61.4231) (xy 107.752913 61.4231) (xy 107.566111 61.462806) (xy 107.391647 61.540482) (xy 107.237144 61.652735) (xy 107.109365 61.794648) (xy 107.109358 61.794658) (xy 107.013876 61.960038) (xy 107.013873 61.960045) (xy 106.954857 62.141672) (xy 106.934896 62.3316) (xy 84.329678 62.3316) (xy 84.390989 62.270289) (xy 84.478594 62.139179) (xy 84.538937 61.993497) (xy 84.5697 61.838842) (xy 84.5697 61.681158) (xy 84.538937 61.526503) (xy 84.478594 61.380821) (xy 84.390989 61.249711) (xy 84.331432 61.190154) (xy 84.297406 61.127842) (xy 84.302471 61.057027) (xy 84.345018 61.000191) (xy 84.363317 60.988796) (xy 84.489071 60.924722) (xy 84.663975 60.797647) (xy 84.816847 60.644775) (xy 84.937264 60.479035) (xy 84.993486 60.435681) (xy 85.064222 60.429606) (xy 85.127014 60.462737) (xy 85.141136 60.479035) (xy 85.261553 60.644775) (xy 85.261555 60.644777) (xy 85.261557 60.64478) (xy 85.414419 60.797642) (xy 85.414422 60.797644) (xy 85.414425 60.797647) (xy 85.589329 60.924722) (xy 85.781959 61.022872) (xy 85.987571 61.08968) (xy 86.201103 61.1235) (xy 86.201106 61.1235) (xy 86.417294 61.1235) (xy 86.417297 61.1235) (xy 86.630829 61.08968) (xy 86.836441 61.022872) (xy 87.029071 60.924722) (xy 87.203975 60.797647) (xy 87.288333 60.713288) (xy 87.350643 60.679265) (xy 87.421459 60.684329) (xy 87.478295 60.726875) (xy 87.495483 60.758352) (xy 87.533756 60.860966) (xy 87.621295 60.977904) (xy 87.738234 61.065444) (xy 87.875106 61.116494) (xy 87.935602 61.122999) (xy 87.935615 61.123) (xy 88.5952 61.123) (xy 88.5952 60.04225) (xy 88.652347 60.075245) (xy 88.782057 60.11) (xy 88.916343 60.11) (xy 89.046053 60.075245) (xy 89.1032 60.04225) (xy 89.1032 61.123) (xy 89.762785 61.123) (xy 89.762797 61.122999) (xy 89.823293 61.116494) (xy 89.960164 61.065444) (xy 89.960165 61.065444) (xy 90.077104 60.977904) (xy 90.164644 60.860965) (xy 90.164644 60.860964) (xy 90.215694 60.724093) (xy 90.222199 60.663597) (xy 90.2222 60.663585) (xy 90.2222 59.854) (xy 89.291451 59.854) (xy 89.324445 59.796853) (xy 89.3592 59.667143) (xy 89.3592 59.532857) (xy 89.324445 59.403147) (xy 89.291451 59.346) (xy 90.2222 59.346) (xy 90.2222 59.28) (xy 100.786496 59.28) (xy 100.806457 59.469927) (xy 100.826905 59.532857) (xy 100.865473 59.651556) (xy 100.865476 59.651561) (xy 100.960958 59.816941) (xy 100.960965 59.816951) (xy 101.088744 59.958864) (xy 101.088747 59.958866) (xy 101.243248 60.071118) (xy 101.417712 60.148794) (xy 101.604513 60.1885) (xy 101.795487 60.1885) (xy 101.982288 60.148794) (xy 102.156752 60.071118) (xy 102.311253 59.958866) (xy 102.401986 59.858097) (xy 102.439034 59.816951) (xy 102.439035 59.816949) (xy 102.43904 59.816944) (xy 102.534527 59.651556) (xy 102.593542 59.469928) (xy 102.613504 59.28) (xy 102.593542 59.090072) (xy 102.534527 58.908444) (xy 102.43904 58.743056) (xy 102.439038 58.743054) (xy 102.439034 58.743048) (xy 102.311255 58.601135) (xy 102.156752 58.488882) (xy 101.982288 58.411206) (xy 101.795487 58.3715) (xy 101.604513 58.3715) (xy 101.417711 58.411206) (xy 101.243247 58.488882) (xy 101.088744 58.601135) (xy 100.960965 58.743048) (xy 100.960958 58.743058) (xy 100.865476 58.908438) (xy 100.865473 58.908444) (xy 100.857134 58.934108) (xy 100.806457 59.090072) (xy 100.786496 59.28) (xy 90.2222 59.28) (xy 90.2222 58.536414) (xy 90.222199 58.536402) (xy 90.215694 58.475906) (xy 90.164644 58.339035) (xy 90.164644 58.339034) (xy 90.077104 58.222095) (xy 89.960165 58.134555) (xy 89.823293 58.083505) (xy 89.762797 58.077) (xy 89.1032 58.077) (xy 89.1032 59.157749) (xy 89.046053 59.124755) (xy 88.916343 59.09) (xy 88.782057 59.09) (xy 88.652347 59.124755) (xy 88.5952 59.157749) (xy 88.5952 58.077) (xy 87.935602 58.077) (xy 87.875106 58.083505) (xy 87.738235 58.134555) (xy 87.738234 58.134555) (xy 87.621295 58.222095) (xy 87.533755 58.339034) (xy 87.533753 58.339039) (xy 87.495482 58.441647) (xy 87.452935 58.498483) (xy 87.386415 58.523293) (xy 87.317041 58.508201) (xy 87.288332 58.486709) (xy 87.20398 58.402357) (xy 87.203977 58.402355) (xy 87.203975 58.402353) (xy 87.029071 58.275278) (xy 86.836441 58.177128) (xy 86.83644 58.177127) (xy 86.836439 58.177127) (xy 86.630832 58.110321) (xy 86.630829 58.11032) (xy 86.417297 58.0765) (xy 86.201103 58.0765) (xy 85.987571 58.11032) (xy 85.987568 58.11032) (xy 85.987567 58.110321) (xy 85.78196 58.177127) (xy 85.589325 58.27528) (xy 85.414422 58.402355) (xy 85.414419 58.402357) (xy 85.261554 58.555222) (xy 85.141136 58.720964) (xy 85.084913 58.764318) (xy 85.014177 58.770393) (xy 84.951386 58.737261) (xy 84.937264 58.720964) (xy 84.816845 58.555222) (xy 84.66398 58.402357) (xy 84.663977 58.402355) (xy 84.663975 58.402353) (xy 84.489071 58.275278) (xy 84.296441 58.177128) (xy 84.29644 58.177127) (xy 84.296439 58.177127) (xy 84.090832 58.110321) (xy 84.090829 58.11032) (xy 83.877297 58.0765) (xy 83.661103 58.0765) (xy 83.447571 58.11032) (xy 83.447568 58.11032) (xy 83.447567 58.110321) (xy 83.24196 58.177127) (xy 83.049325 58.27528) (xy 82.874422 58.402355) (xy 82.874419 58.402357) (xy 82.721554 58.555222) (xy 82.601136 58.720964) (xy 82.544913 58.764318) (xy 82.474177 58.770393) (xy 82.411386 58.737261) (xy 82.397264 58.720964) (xy 82.276845 58.555222) (xy 82.12398 58.402357) (xy 82.123977 58.402355) (xy 82.123975 58.402353) (xy 81.949071 58.275278) (xy 81.756441 58.177128) (xy 81.75644 58.177127) (xy 81.756439 58.177127) (xy 81.550832 58.110321) (xy 81.550829 58.11032) (xy 81.337297 58.0765) (xy 81.121103 58.0765) (xy 80.907571 58.11032) (xy 80.907568 58.11032) (xy 80.907567 58.110321) (xy 80.70196 58.177127) (xy 80.509325 58.27528) (xy 80.334422 58.402355) (xy 80.334419 58.402357) (xy 80.181557 58.555219) (xy 80.181555 58.555222) (xy 80.05448 58.730125) (xy 79.956327 58.92276) (xy 79.901964 59.090072) (xy 79.88952 59.128371) (xy 79.8557 59.341903) (xy 67.111691 59.341903) (xy 66.811216 59.041428) (xy 66.77719 58.979116) (xy 66.782255 58.908301) (xy 66.824802 58.851465) (xy 66.879569 58.828052) (xy 67.031835 58.802644) (xy 67.244774 58.729542) (xy 67.442776 58.622389) (xy 67.62044 58.484106) (xy 67.772922 58.318468) (xy 67.89606 58.129991) (xy 67.986496 57.923816) (xy 68.041764 57.705568) (xy 68.060356 57.4812) (xy 68.041764 57.256832) (xy 67.986496 57.038584) (xy 67.89606 56.832409) (xy 67.8787 56.805837) (xy 67.772924 56.643934) (xy 67.77292 56.643929) (xy 67.620437 56.478291) (xy 67.500567 56.384992) (xy 67.442776 56.340011) (xy 67.244774 56.232858) (xy 67.244772 56.232857) (xy 67.244771 56.232856) (xy 67.031839 56.159757) (xy 67.03183 56.159755) (xy 66.987676 56.152387) (xy 66.809769 56.1227) (xy 66.584631 56.1227) (xy 66.436411 56.147433) (xy 66.362569 56.159755) (xy 66.36256 56.159757) (xy 66.149628 56.232856) (xy 66.149626 56.232858) (xy 65.951626 56.34001) (xy 65.951624 56.340011) (xy 65.773962 56.478291) (xy 65.621479 56.643929) (xy 65.532683 56.779843) (xy 65.478679 56.825931) (xy 65.408331 56.835506) (xy 65.343974 56.805529) (xy 65.321717 56.779843) (xy 65.23292 56.643929) (xy 65.080437 56.478291) (xy 64.960567 56.384992) (xy 64.902776 56.340011) (xy 64.704774 56.232858) (xy 64.704772 56.232857) (xy 64.704771 56.232856) (xy 64.491839 56.159757) (xy 64.49183 56.159755) (xy 64.447676 56.152387) (xy 64.269769 56.1227) (xy 64.044631 56.1227) (xy 63.896411 56.147433) (xy 63.822569 56.159755) (xy 63.82256 56.159757) (xy 63.609628 56.232856) (xy 63.609626 56.232858) (xy 63.411626 56.34001) (xy 63.411624 56.340011) (xy 63.233962 56.478291) (xy 63.172954 56.544563) (xy 63.112101 56.581133) (xy 63.041136 56.578998) (xy 62.982591 56.538836) (xy 62.962199 56.503257) (xy 62.918089 56.384997) (xy 62.918087 56.384992) (xy 62.830461 56.267938) (xy 62.713407 56.180312) (xy 62.713402 56.18031) (xy 62.576404 56.129211) (xy 62.576396 56.129209) (xy 62.515849 56.1227) (xy 62.515838 56.1227) (xy 60.718562 56.1227) (xy 60.71855 56.1227) (xy 60.658003 56.129209) (xy 60.657995 56.129211) (xy 60.520997 56.18031) (xy 60.520992 56.180312) (xy 60.403938 56.267938) (xy 60.316312 56.384992) (xy 60.31631 56.384997) (xy 60.265211 56.521995) (xy 60.265209 56.522003) (xy 60.2587 56.58255) (xy 38.710155 56.58255) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.957205 56.232858) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.314656 55.822429) (xy 39.322429 55.814656) (xy 39.603716 55.556904) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 114.934108 54.5005) (xy 114.997252 54.5005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 40.723225 95.925669) (xy 40.74548 95.951353) (xy 40.771983 95.991918) (xy 40.834275 96.087265) (xy 40.834279 96.08727) (xy 40.986762 96.252908) (xy 41.041331 96.295381) (xy 41.164424 96.391189) (xy 41.362426 96.498342) (xy 41.362427 96.498342) (xy 41.362428 96.498343) (xy 41.462519 96.532704) (xy 41.575365 96.571444) (xy 41.797431 96.6085) (xy 41.797435 96.6085) (xy 42.022565 96.6085) (xy 42.022569 96.6085) (xy 42.244635 96.571444) (xy 42.244651 96.571438) (xy 42.247751 96.570654) (xy 42.249072 96.570703) (xy 42.249777 96.570586) (xy 42.249801 96.57073) (xy 42.318698 96.573311) (xy 42.367795 96.603699) (xy 48.021929 102.257833) (xy 48.110167 102.346071) (xy 48.213925 102.4154) (xy 48.329215 102.463155) (xy 48.451606 102.4875) (xy 51.439406 102.4875) (xy 51.507527 102.507502) (xy 51.528501 102.524405) (xy 55.204595 106.200499) (xy 55.238621 106.262811) (xy 55.2415 106.289594) (xy 55.2415 111.633995) (xy 55.221498 111.702116) (xy 55.167842 111.748609) (xy 55.097568 111.758713) (xy 55.074589 111.753168) (xy 54.944643 111.708558) (xy 54.944636 111.708556) (xy 54.944635 111.708556) (xy 54.944632 111.708555) (xy 54.94463 111.708555) (xy 54.900476 111.701187) (xy 54.722569 111.6715) (xy 54.497431 111.6715) (xy 54.370859 111.692621) (xy 54.275369 111.708555) (xy 54.27536 111.708557) (xy 54.062428 111.781656) (xy 54.062426 111.781658) (xy 53.864426 111.88881) (xy 53.864424 111.888811) (xy 53.686762 112.027091) (xy 53.534279 112.192729) (xy 53.445483 112.328643) (xy 53.391479 112.374731) (xy 53.321131 112.384306) (xy 53.256774 112.354329) (xy 53.234517 112.328643) (xy 53.14572 112.192729) (xy 53.009974 112.045272) (xy 52.99324 112.027094) (xy 52.993239 112.027093) (xy 52.993237 112.027091) (xy 52.890493 111.947122) (xy 52.815576 111.888811) (xy 52.617574 111.781658) (xy 52.617572 111.781657) (xy 52.617571 111.781656) (xy 52.404639 111.708557) (xy 52.40463 111.708555) (xy 52.360476 111.701187) (xy 52.182569 111.6715) (xy 51.957431 111.6715) (xy 51.830859 111.692621) (xy 51.735369 111.708555) (xy 51.73536 111.708557) (xy 51.522428 111.781656) (xy 51.522426 111.781658) (xy 51.324426 111.88881) (xy 51.324424 111.888811) (xy 51.146762 112.027091) (xy 50.994279 112.192729) (xy 50.905483 112.328643) (xy 50.851479 112.374731) (xy 50.781131 112.384306) (xy 50.716774 112.354329) (xy 50.694517 112.328643) (xy 50.60572 112.192729) (xy 50.469974 112.045272) (xy 50.45324 112.027094) (xy 50.453239 112.027093) (xy 50.453237 112.027091) (xy 50.350493 111.947122) (xy 50.275576 111.888811) (xy 50.077574 111.781658) (xy 50.077572 111.781657) (xy 50.077571 111.781656) (xy 49.864639 111.708557) (xy 49.86463 111.708555) (xy 49.820476 111.701187) (xy 49.642569 111.6715) (xy 49.417431 111.6715) (xy 49.290859 111.692621) (xy 49.195369 111.708555) (xy 49.19536 111.708557) (xy 48.982428 111.781656) (xy 48.982426 111.781658) (xy 48.784426 111.88881) (xy 48.784424 111.888811) (xy 48.606762 112.027091) (xy 48.454279 112.192729) (xy 48.365483 112.328643) (xy 48.311479 112.374731) (xy 48.241131 112.384306) (xy 48.176774 112.354329) (xy 48.154517 112.328643) (xy 48.06572 112.192729) (xy 47.929974 112.045272) (xy 47.91324 112.027094) (xy 47.913239 112.027093) (xy 47.913237 112.027091) (xy 47.810493 111.947122) (xy 47.735576 111.888811) (xy 47.537574 111.781658) (xy 47.537572 111.781657) (xy 47.537571 111.781656) (xy 47.324639 111.708557) (xy 47.32463 111.708555) (xy 47.280476 111.701187) (xy 47.102569 111.6715) (xy 46.877431 111.6715) (xy 46.750859 111.692621) (xy 46.655369 111.708555) (xy 46.65536 111.708557) (xy 46.442428 111.781656) (xy 46.442426 111.781658) (xy 46.244426 111.88881) (xy 46.244424 111.888811) (xy 46.066759 112.027094) (xy 46.005374 112.093775) (xy 45.944521 112.130346) (xy 45.873557 112.128211) (xy 45.815012 112.088049) (xy 45.794618 112.05247) (xy 45.750443 111.934033) (xy 45.662904 111.817095) (xy 45.545965 111.729555) (xy 45.409093 111.678505) (xy 45.348597 111.672) (xy 44.704 111.672) (xy 44.704 112.587749) (xy 44.646853 112.554755) (xy 44.517143 112.52) (xy 44.382857 112.52) (xy 44.253147 112.554755) (xy 44.196 112.587749) (xy 44.196 111.672) (xy 43.551402 111.672) (xy 43.490906 111.678505) (xy 43.354035 111.729555) (xy 43.354034 111.729555) (xy 43.237095 111.817095) (xy 43.149555 111.934034) (xy 43.149553 111.934039) (xy 43.10538 112.05247) (xy 43.062833 112.109306) (xy 42.996313 112.134116) (xy 42.926939 112.119024) (xy 42.894626 112.093777) (xy 42.83324 112.027094) (xy 42.833239 112.027093) (xy 42.833237 112.027091) (xy 42.730493 111.947122) (xy 42.655576 111.888811) (xy 42.457574 111.781658) (xy 42.457572 111.781657) (xy 42.457571 111.781656) (xy 42.244639 111.708557) (xy 42.24463 111.708555) (xy 42.200476 111.701187) (xy 42.022569 111.6715) (xy 41.797431 111.6715) (xy 41.670859 111.692621) (xy 41.575369 111.708555) (xy 41.57536 111.708557) (xy 41.362428 111.781656) (xy 41.362426 111.781658) (xy 41.164426 111.88881) (xy 41.164424 111.888811) (xy 40.986762 112.027091) (xy 40.834279 112.192729) (xy 40.745483 112.328643) (xy 40.691479 112.374731) (xy 40.621131 112.384306) (xy 40.556774 112.354329) (xy 40.534517 112.328643) (xy 40.44572 112.192729) (xy 40.309974 112.045272) (xy 40.29324 112.027094) (xy 40.293239 112.027093) (xy 40.293237 112.027091) (xy 40.190493 111.947122) (xy 40.115576 111.888811) (xy 39.917574 111.781658) (xy 39.917572 111.781657) (xy 39.917571 111.781656) (xy 39.704639 111.708557) (xy 39.70463 111.708555) (xy 39.660476 111.701187) (xy 39.482569 111.6715) (xy 39.257431 111.6715) (xy 39.130859 111.692621) (xy 39.035369 111.708555) (xy 39.03536 111.708557) (xy 38.822428 111.781656) (xy 38.822426 111.781658) (xy 38.624426 111.88881) (xy 38.624424 111.888811) (xy 38.446762 112.027091) (xy 38.294279 112.192729) (xy 38.294275 112.192734) (xy 38.231983 112.288081) (xy 38.177979 112.33417) (xy 38.107632 112.343745) (xy 38.043274 112.313768) (xy 38.005341 112.253755) (xy 38.0005 112.219166) (xy 38.0005 107.553792) (xy 38.020502 107.485671) (xy 38.074158 107.439178) (xy 38.144432 107.429074) (xy 38.209012 107.458568) (xy 38.241886 107.503176) (xy 38.254858 107.532749) (xy 38.257017 107.537671) (xy 38.384685 107.733083) (xy 38.542774 107.904813) (xy 38.542778 107.904817) (xy 38.60865 107.956087) (xy 38.726983 108.04819) (xy 38.932273 108.159287) (xy 39.153049 108.23508) (xy 39.383288 108.2735) (xy 39.383292 108.2735) (xy 39.616708 108.2735) (xy 39.616712 108.2735) (xy 39.846951 108.23508) (xy 40.067727 108.159287) (xy 40.273017 108.04819) (xy 40.45722 107.904818) (xy 40.615314 107.733083) (xy 40.742984 107.537669) (xy 40.836749 107.323907) (xy 40.894051 107.097626) (xy 40.913327 106.865) (xy 40.894051 106.632374) (xy 40.87699 106.565) (xy 41.266693 106.565) (xy 41.285885 106.78437) (xy 41.342879 106.997073) (xy 41.342881 106.997079) (xy 41.430395 107.184754) (xy 41.435944 107.196654) (xy 41.534654 107.337625) (xy 41.562251 107.377038) (xy 41.562254 107.377042) (xy 41.717957 107.532745) (xy 41.717961 107.532748) (xy 41.717962 107.532749) (xy 41.898346 107.659056) (xy 42.097924 107.75212) (xy 42.310629 107.809115) (xy 42.53 107.828307) (xy 42.749371 107.809115) (xy 42.962076 107.75212) (xy 43.161654 107.659056) (xy 43.342038 107.532749) (xy 43.497749 107.377038) (xy 43.624056 107.196654) (xy 43.71712 106.997076) (xy 43.774115 106.784371) (xy 43.793307 106.565) (xy 43.774115 106.345629) (xy 43.71712 106.132924) (xy 43.624056 105.933347) (xy 43.497749 105.752962) (xy 43.342038 105.597251) (xy 43.323546 105.584303) (xy 43.195896 105.494921) (xy 43.161654 105.470944) (xy 43.16165 105.470942) (xy 42.962079 105.377881) (xy 42.962073 105.377879) (xy 42.762343 105.324361) (xy 42.749371 105.320885) (xy 42.53 105.301693) (xy 42.310629 105.320885) (xy 42.097926 105.377879) (xy 42.09792 105.377881) (xy 41.898346 105.470944) (xy 41.717965 105.597248) (xy 41.717959 105.597253) (xy 41.562253 105.752959) (xy 41.562248 105.752965) (xy 41.435944 105.933346) (xy 41.342881 106.13292) (xy 41.342879 106.132926) (xy 41.285885 106.345629) (xy 41.266693 106.565) (xy 40.87699 106.565) (xy 40.838314 106.412274) (xy 40.83675 106.406096) (xy 40.836747 106.406089) (xy 40.742984 106.192331) (xy 40.615314 105.996916) (xy 40.457225 105.825186) (xy 40.457221 105.825182) (xy 40.352811 105.743917) (xy 40.273017 105.68181) (xy 40.067727 105.570713) (xy 40.067724 105.570712) (xy 40.067723 105.570711) (xy 39.846955 105.494921) (xy 39.846948 105.494919) (xy 39.748411 105.478476) (xy 39.616712 105.4565) (xy 39.383288 105.4565) (xy 39.268066 105.475727) (xy 39.153051 105.494919) (xy 39.153044 105.494921) (xy 38.932276 105.570711) (xy 38.932273 105.570713) (xy 38.739706 105.674925) (xy 38.726985 105.681809) (xy 38.726983 105.68181) (xy 38.542778 105.825182) (xy 38.542774 105.825186) (xy 38.384685 105.996916) (xy 38.257015 106.192331) (xy 38.241887 106.226821) (xy 38.196206 106.281169) (xy 38.128394 106.302193) (xy 38.05998 106.283217) (xy 38.012686 106.230266) (xy 38.0005 106.176207) (xy 38.0005 102.103792) (xy 38.020502 102.035671) (xy 38.074158 101.989178) (xy 38.144432 101.979074) (xy 38.209012 102.008568) (xy 38.241886 102.053176) (xy 38.253452 102.079543) (xy 38.257017 102.087671) (xy 38.384685 102.283083) (xy 38.542774 102.454813) (xy 38.542778 102.454817) (xy 38.584956 102.487645) (xy 38.726983 102.59819) (xy 38.932273 102.709287) (xy 39.153049 102.78508) (xy 39.383288 102.8235) (xy 39.383292 102.8235) (xy 39.616708 102.8235) (xy 39.616712 102.8235) (xy 39.846951 102.78508) (xy 40.067727 102.709287) (xy 40.273017 102.59819) (xy 40.45722 102.454818) (xy 40.488811 102.420502) (xy 40.615314 102.283083) (xy 40.742984 102.087669) (xy 40.836749 101.873907) (xy 40.87699 101.715) (xy 41.266693 101.715) (xy 41.280595 101.87391) (xy 41.285885 101.93437) (xy 41.342879 102.147073) (xy 41.342881 102.147079) (xy 41.407614 102.2859) (xy 41.435944 102.346654) (xy 41.55458 102.516083) (xy 41.562251 102.527038) (xy 41.562254 102.527042) (xy 41.717957 102.682745) (xy 41.717961 102.682748) (xy 41.717962 102.682749) (xy 41.898346 102.809056) (xy 42.097924 102.90212) (xy 42.310629 102.959115) (xy 42.53 102.978307) (xy 42.749371 102.959115) (xy 42.962076 102.90212) (xy 43.161654 102.809056) (xy 43.342038 102.682749) (xy 43.497749 102.527038) (xy 43.624056 102.346654) (xy 43.71712 102.147076) (xy 43.774115 101.934371) (xy 43.793307 101.715) (xy 43.774115 101.495629) (xy 43.71712 101.282924) (xy 43.624056 101.083347) (xy 43.497749 100.902962) (xy 43.342038 100.747251) (xy 43.318686 100.7309) (xy 43.270205 100.696953) (xy 43.161654 100.620944) (xy 43.08384 100.584659) (xy 42.962079 100.527881) (xy 42.962073 100.527879) (xy 42.872178 100.503791) (xy 42.749371 100.470885) (xy 42.53 100.451693) (xy 42.310629 100.470885) (xy 42.097926 100.527879) (xy 42.09792 100.527881) (xy 41.898346 100.620944) (xy 41.717965 100.747248) (xy 41.717959 100.747253) (xy 41.562253 100.902959) (xy 41.562248 100.902965) (xy 41.435944 101.083346) (xy 41.342881 101.28292) (xy 41.342879 101.282926) (xy 41.285885 101.495629) (xy 41.266693 101.715) (xy 40.87699 101.715) (xy 40.894051 101.647626) (xy 40.913327 101.415) (xy 40.894051 101.182374) (xy 40.836749 100.956093) (xy 40.742984 100.742331) (xy 40.73245 100.726207) (xy 40.615314 100.546916) (xy 40.457225 100.375186) (xy 40.457221 100.375182) (xy 40.327091 100.273898) (xy 40.273017 100.23181) (xy 40.067727 100.120713) (xy 40.067724 100.120712) (xy 40.067723 100.120711) (xy 39.846955 100.044921) (xy 39.846948 100.044919) (xy 39.748411 100.028476) (xy 39.616712 100.0065) (xy 39.383288 100.0065) (xy 39.268066 100.025727) (xy 39.153051 100.044919) (xy 39.153044 100.044921) (xy 38.932276 100.120711) (xy 38.932273 100.120713) (xy 38.726985 100.231809) (xy 38.726983 100.23181) (xy 38.542778 100.375182) (xy 38.542774 100.375186) (xy 38.384685 100.546916) (xy 38.257015 100.742331) (xy 38.241887 100.776821) (xy 38.196206 100.831169) (xy 38.128394 100.852193) (xy 38.05998 100.833217) (xy 38.012686 100.780266) (xy 38.0005 100.726207) (xy 38.0005 96.060833) (xy 38.020502 95.992712) (xy 38.074158 95.946219) (xy 38.144432 95.936115) (xy 38.209012 95.965609) (xy 38.231983 95.991918) (xy 38.294275 96.087265) (xy 38.294279 96.08727) (xy 38.446762 96.252908) (xy 38.501331 96.295381) (xy 38.624424 96.391189) (xy 38.822426 96.498342) (xy 38.822427 96.498342) (xy 38.822428 96.498343) (xy 38.922519 96.532704) (xy 39.035365 96.571444) (xy 39.257431 96.6085) (xy 39.257435 96.6085) (xy 39.482565 96.6085) (xy 39.482569 96.6085) (xy 39.704635 96.571444) (xy 39.917574 96.498342) (xy 40.115576 96.391189) (xy 40.29324 96.252906) (xy 40.445722 96.087268) (xy 40.534518 95.951354) (xy 40.58852 95.905268) (xy 40.658868 95.895692) ) ) (filled_polygon (layer "B.Cu") (pts (xy 70.104 96.608) (xy 70.748585 96.608) (xy 70.748597 96.607999) (xy 70.809093 96.601494) (xy 70.945964 96.550444) (xy 70.945965 96.550444) (xy 71.062904 96.462904) (xy 71.150444 96.345965) (xy 71.194618 96.22753) (xy 71.237165 96.170694) (xy 71.303685 96.145883) (xy 71.373059 96.160974) (xy 71.405372 96.186222) (xy 71.42959 96.212529) (xy 71.466762 96.252908) (xy 71.521331 96.295381) (xy 71.644424 96.391189) (xy 71.842426 96.498342) (xy 71.842427 96.498342) (xy 71.842428 96.498343) (xy 71.942519 96.532704) (xy 72.055365 96.571444) (xy 72.277431 96.6085) (xy 72.277435 96.6085) (xy 72.502565 96.6085) (xy 72.502569 96.6085) (xy 72.724635 96.571444) (xy 72.937574 96.498342) (xy 73.135576 96.391189) (xy 73.31324 96.252906) (xy 73.465722 96.087268) (xy 73.554518 95.951354) (xy 73.60852 95.905268) (xy 73.678868 95.895692) (xy 73.743225 95.925669) (xy 73.76548 95.951353) (xy 73.791983 95.991918) (xy 73.854275 96.087265) (xy 73.854279 96.08727) (xy 74.006762 96.252908) (xy 74.061331 96.295381) (xy 74.184424 96.391189) (xy 74.382426 96.498342) (xy 74.382427 96.498342) (xy 74.382428 96.498343) (xy 74.482519 96.532704) (xy 74.595365 96.571444) (xy 74.817431 96.6085) (xy 74.817435 96.6085) (xy 75.042565 96.6085) (xy 75.042569 96.6085) (xy 75.264635 96.571444) (xy 75.477574 96.498342) (xy 75.675576 96.391189) (xy 75.85324 96.252906) (xy 76.005722 96.087268) (xy 76.094518 95.951354) (xy 76.14852 95.905268) (xy 76.218868 95.895692) (xy 76.283225 95.925669) (xy 76.30548 95.951353) (xy 76.331983 95.991918) (xy 76.394275 96.087265) (xy 76.394279 96.08727) (xy 76.546762 96.252908) (xy 76.601331 96.295381) (xy 76.724424 96.391189) (xy 76.922426 96.498342) (xy 76.922427 96.498342) (xy 76.922428 96.498343) (xy 77.022519 96.532704) (xy 77.135365 96.571444) (xy 77.357431 96.6085) (xy 77.357435 96.6085) (xy 77.582565 96.6085) (xy 77.582569 96.6085) (xy 77.804635 96.571444) (xy 78.017574 96.498342) (xy 78.215576 96.391189) (xy 78.39324 96.252906) (xy 78.545722 96.087268) (xy 78.634518 95.951354) (xy 78.68852 95.905268) (xy 78.758868 95.895692) (xy 78.823225 95.925669) (xy 78.84548 95.951353) (xy 78.871983 95.991918) (xy 78.934275 96.087265) (xy 78.934279 96.08727) (xy 79.086762 96.252908) (xy 79.141331 96.295381) (xy 79.264424 96.391189) (xy 79.462426 96.498342) (xy 79.462432 96.498344) (xy 79.540702 96.525214) (xy 79.598638 96.56625) (xy 79.62519 96.632095) (xy 79.611929 96.701842) (xy 79.573855 96.746321) (xy 79.552782 96.761632) (xy 79.552778 96.761635) (xy 79.408034 96.906379) (xy 79.287714 97.071987) (xy 79.194781 97.254379) (xy 79.194778 97.254385) (xy 79.131524 97.449061) (xy 79.131523 97.449064) (xy 79.131523 97.449066) (xy 79.0995 97.651248) (xy 79.0995 97.687708) (xy 79.0995 110.487708) (xy 79.0995 110.5536) (xy 79.0995 110.655952) (xy 79.128404 110.838441) (xy 79.131524 110.858138) (xy 79.190637 111.04007) (xy 79.19478 111.052819) (xy 79.284239 111.228391) (xy 79.287714 111.235212) (xy 79.408034 111.40082) (xy 79.552774 111.54556) (xy 79.556236 111.548517) (xy 79.595044 111.607969) (xy 79.59555 111.678964) (xy 79.557592 111.738962) (xy 79.515317 111.7635) (xy 79.462426 111.781658) (xy 79.264426 111.88881) (xy 79.264424 111.888811) (xy 79.086762 112.027091) (xy 78.934279 112.192729) (xy 78.845483 112.328643) (xy 78.791479 112.374731) (xy 78.721131 112.384306) (xy 78.656774 112.354329) (xy 78.634517 112.328643) (xy 78.54572 112.192729) (xy 78.409974 112.045272) (xy 78.39324 112.027094) (xy 78.393239 112.027093) (xy 78.393237 112.027091) (xy 78.290493 111.947122) (xy 78.215576 111.888811) (xy 78.017574 111.781658) (xy 78.017572 111.781657) (xy 78.017571 111.781656) (xy 77.804639 111.708557) (xy 77.80463 111.708555) (xy 77.760476 111.701187) (xy 77.582569 111.6715) (xy 77.357431 111.6715) (xy 77.230859 111.692621) (xy 77.135369 111.708555) (xy 77.13536 111.708557) (xy 76.922428 111.781656) (xy 76.922426 111.781658) (xy 76.724426 111.88881) (xy 76.724424 111.888811) (xy 76.546762 112.027091) (xy 76.394279 112.192729) (xy 76.305483 112.328643) (xy 76.251479 112.374731) (xy 76.181131 112.384306) (xy 76.116774 112.354329) (xy 76.094517 112.328643) (xy 76.00572 112.192729) (xy 75.869974 112.045272) (xy 75.85324 112.027094) (xy 75.853239 112.027093) (xy 75.853237 112.027091) (xy 75.750493 111.947122) (xy 75.675576 111.888811) (xy 75.477574 111.781658) (xy 75.477572 111.781657) (xy 75.477571 111.781656) (xy 75.264639 111.708557) (xy 75.26463 111.708555) (xy 75.220476 111.701187) (xy 75.042569 111.6715) (xy 74.817431 111.6715) (xy 74.690859 111.692621) (xy 74.595369 111.708555) (xy 74.59536 111.708557) (xy 74.382428 111.781656) (xy 74.382426 111.781658) (xy 74.184426 111.88881) (xy 74.184424 111.888811) (xy 74.006762 112.027091) (xy 73.854279 112.192729) (xy 73.765483 112.328643) (xy 73.711479 112.374731) (xy 73.641131 112.384306) (xy 73.576774 112.354329) (xy 73.554517 112.328643) (xy 73.46572 112.192729) (xy 73.329974 112.045272) (xy 73.31324 112.027094) (xy 73.313239 112.027093) (xy 73.313237 112.027091) (xy 73.210493 111.947122) (xy 73.135576 111.888811) (xy 72.937574 111.781658) (xy 72.937572 111.781657) (xy 72.937571 111.781656) (xy 72.724639 111.708557) (xy 72.72463 111.708555) (xy 72.680476 111.701187) (xy 72.502569 111.6715) (xy 72.277431 111.6715) (xy 72.150859 111.692621) (xy 72.055369 111.708555) (xy 72.05536 111.708557) (xy 71.842428 111.781656) (xy 71.842426 111.781658) (xy 71.644426 111.88881) (xy 71.644424 111.888811) (xy 71.466759 112.027094) (xy 71.405374 112.093775) (xy 71.344521 112.130346) (xy 71.273557 112.128211) (xy 71.215012 112.088049) (xy 71.194618 112.05247) (xy 71.150443 111.934033) (xy 71.062904 111.817095) (xy 70.945965 111.729555) (xy 70.809093 111.678505) (xy 70.748597 111.672) (xy 70.104 111.672) (xy 70.104 112.587749) (xy 70.046853 112.554755) (xy 69.917143 112.52) (xy 69.782857 112.52) (xy 69.653147 112.554755) (xy 69.596 112.587749) (xy 69.596 111.672) (xy 68.951402 111.672) (xy 68.890906 111.678505) (xy 68.754035 111.729555) (xy 68.754034 111.729555) (xy 68.637095 111.817095) (xy 68.549555 111.934034) (xy 68.549553 111.934039) (xy 68.50538 112.05247) (xy 68.462833 112.109306) (xy 68.396313 112.134116) (xy 68.326939 112.119024) (xy 68.294626 112.093777) (xy 68.23324 112.027094) (xy 68.233239 112.027093) (xy 68.233237 112.027091) (xy 68.130493 111.947122) (xy 68.055576 111.888811) (xy 67.857574 111.781658) (xy 67.857572 111.781657) (xy 67.857571 111.781656) (xy 67.644639 111.708557) (xy 67.64463 111.708555) (xy 67.600476 111.701187) (xy 67.422569 111.6715) (xy 67.197431 111.6715) (xy 67.070859 111.692621) (xy 66.975369 111.708555) (xy 66.97536 111.708557) (xy 66.762428 111.781656) (xy 66.762426 111.781658) (xy 66.564426 111.88881) (xy 66.564424 111.888811) (xy 66.386762 112.027091) (xy 66.234279 112.192729) (xy 66.145483 112.328643) (xy 66.091479 112.374731) (xy 66.021131 112.384306) (xy 65.956774 112.354329) (xy 65.934517 112.328643) (xy 65.84572 112.192729) (xy 65.709974 112.045272) (xy 65.69324 112.027094) (xy 65.693239 112.027093) (xy 65.693237 112.027091) (xy 65.590493 111.947122) (xy 65.515576 111.888811) (xy 65.317574 111.781658) (xy 65.317572 111.781657) (xy 65.317571 111.781656) (xy 65.104639 111.708557) (xy 65.10463 111.708555) (xy 65.060476 111.701187) (xy 64.882569 111.6715) (xy 64.657431 111.6715) (xy 64.530859 111.692621) (xy 64.435369 111.708555) (xy 64.43536 111.708557) (xy 64.222428 111.781656) (xy 64.222426 111.781658) (xy 64.024426 111.88881) (xy 64.024424 111.888811) (xy 63.846762 112.027091) (xy 63.694279 112.192729) (xy 63.605483 112.328643) (xy 63.551479 112.374731) (xy 63.481131 112.384306) (xy 63.416774 112.354329) (xy 63.394517 112.328643) (xy 63.30572 112.192729) (xy 63.169974 112.045272) (xy 63.15324 112.027094) (xy 63.153239 112.027093) (xy 63.153237 112.027091) (xy 63.050493 111.947122) (xy 62.975576 111.888811) (xy 62.777574 111.781658) (xy 62.777572 111.781657) (xy 62.777571 111.781656) (xy 62.564639 111.708557) (xy 62.56463 111.708555) (xy 62.520476 111.701187) (xy 62.342569 111.6715) (xy 62.117431 111.6715) (xy 61.990859 111.692621) (xy 61.895369 111.708555) (xy 61.89536 111.708557) (xy 61.682428 111.781656) (xy 61.682426 111.781658) (xy 61.484426 111.88881) (xy 61.484424 111.888811) (xy 61.306762 112.027091) (xy 61.154279 112.192729) (xy 61.065483 112.328643) (xy 61.011479 112.374731) (xy 60.941131 112.384306) (xy 60.876774 112.354329) (xy 60.854517 112.328643) (xy 60.76572 112.192729) (xy 60.629974 112.045272) (xy 60.61324 112.027094) (xy 60.613239 112.027093) (xy 60.613237 112.027091) (xy 60.510493 111.947122) (xy 60.435576 111.888811) (xy 60.237574 111.781658) (xy 60.237572 111.781657) (xy 60.237571 111.781656) (xy 60.024639 111.708557) (xy 60.02463 111.708555) (xy 59.980476 111.701187) (xy 59.802569 111.6715) (xy 59.577431 111.6715) (xy 59.450859 111.692621) (xy 59.355369 111.708555) (xy 59.35536 111.708557) (xy 59.142428 111.781656) (xy 59.142426 111.781658) (xy 58.944426 111.88881) (xy 58.944424 111.888811) (xy 58.766759 112.027094) (xy 58.705374 112.093775) (xy 58.644521 112.130346) (xy 58.573557 112.128211) (xy 58.515012 112.088049) (xy 58.494618 112.05247) (xy 58.450443 111.934033) (xy 58.362904 111.817095) (xy 58.245965 111.729555) (xy 58.109093 111.678505) (xy 58.048597 111.672) (xy 57.404 111.672) (xy 57.404 112.587749) (xy 57.346853 112.554755) (xy 57.217143 112.52) (xy 57.082857 112.52) (xy 56.953147 112.554755) (xy 56.896 112.587749) (xy 56.896 111.672) (xy 56.6345 111.672) (xy 56.566379 111.651998) (xy 56.519886 111.598342) (xy 56.5085 111.546) (xy 56.5085 105.912607) (xy 56.508499 105.912603) (xy 56.484155 105.790215) (xy 56.4364 105.674925) (xy 56.367071 105.571167) (xy 56.278833 105.482929) (xy 52.157833 101.361929) (xy 52.054075 101.2926) (xy 51.938785 101.244845) (xy 51.865086 101.230185) (xy 51.816396 101.2205) (xy 51.816394 101.2205) (xy 48.828594 101.2205) (xy 48.760473 101.200498) (xy 48.739499 101.183595) (xy 46.031804 98.4759) (xy 67.686673 98.4759) (xy 67.70595 98.708533) (xy 67.763249 98.934803) (xy 67.763252 98.93481) (xy 67.857015 99.148568) (xy 67.984685 99.343983) (xy 68.142774 99.515713) (xy 68.142785 99.515723) (xy 68.310766 99.646469) (xy 68.352237 99.704094) (xy 68.35597 99.774992) (xy 68.32078 99.836654) (xy 68.310766 99.845331) (xy 68.142785 99.976076) (xy 68.142774 99.976086) (xy 67.984685 100.147816) (xy 67.857015 100.343231) (xy 67.763252 100.556989) (xy 67.763249 100.556996) (xy 67.70595 100.783266) (xy 67.705949 100.783272) (xy 67.705949 100.783274) (xy 67.686673 101.0159) (xy 67.701969 101.200498) (xy 67.70595 101.248533) (xy 67.763249 101.474803) (xy 67.763252 101.47481) (xy 67.857015 101.688568) (xy 67.984685 101.883983) (xy 68.142774 102.055713) (xy 68.142785 102.055723) (xy 68.310766 102.186469) (xy 68.352237 102.244094) (xy 68.35597 102.314992) (xy 68.32078 102.376654) (xy 68.310766 102.385331) (xy 68.142785 102.516076) (xy 68.142774 102.516086) (xy 67.984685 102.687816) (xy 67.857015 102.883231) (xy 67.763252 103.096989) (xy 67.763249 103.096996) (xy 67.70595 103.323266) (xy 67.705949 103.323272) (xy 67.705949 103.323274) (xy 67.696192 103.441025) (xy 67.686673 103.5559) (xy 67.70595 103.788533) (xy 67.763249 104.014803) (xy 67.763252 104.01481) (xy 67.857015 104.228568) (xy 67.984685 104.423983) (xy 68.142774 104.595713) (xy 68.142778 104.595717) (xy 68.20578 104.644753) (xy 68.326983 104.73909) (xy 68.532273 104.850187) (xy 68.753049 104.92598) (xy 68.983288 104.9644) (xy 68.983292 104.9644) (xy 69.216708 104.9644) (xy 69.216712 104.9644) (xy 69.446951 104.92598) (xy 69.667727 104.850187) (xy 69.873017 104.73909) (xy 70.05722 104.595718) (xy 70.070544 104.581245) (xy 70.215314 104.423983) (xy 70.220629 104.415848) (xy 70.342984 104.228569) (xy 70.436749 104.014807) (xy 70.494051 103.788526) (xy 70.513327 103.5559) (xy 70.494051 103.323274) (xy 70.436749 103.096993) (xy 70.342984 102.883231) (xy 70.215314 102.687816) (xy 70.057225 102.516086) (xy 70.057221 102.516083) (xy 70.020498 102.4875) (xy 69.889229 102.385329) (xy 69.847761 102.327707) (xy 69.844027 102.256809) (xy 69.879217 102.195147) (xy 69.889217 102.18648) (xy 70.05722 102.055718) (xy 70.059558 102.053179) (xy 70.215314 101.883983) (xy 70.284293 101.778402) (xy 70.342984 101.688569) (xy 70.436749 101.474807) (xy 70.494051 101.248526) (xy 70.513327 101.0159) (xy 70.494051 100.783274) (xy 70.436749 100.556993) (xy 70.342984 100.343231) (xy 70.297687 100.273898) (xy 70.215314 100.147816) (xy 70.057225 99.976086) (xy 70.057221 99.976083) (xy 70.053994 99.973571) (xy 69.889229 99.845329) (xy 69.847761 99.787707) (xy 69.844027 99.716809) (xy 69.879217 99.655147) (xy 69.889217 99.64648) (xy 70.05722 99.515718) (xy 70.215314 99.343983) (xy 70.342984 99.148569) (xy 70.436749 98.934807) (xy 70.494051 98.708526) (xy 70.513327 98.4759) (xy 70.494051 98.243274) (xy 70.436749 98.016993) (xy 70.342984 97.803231) (xy 70.297034 97.732899) (xy 70.215314 97.607816) (xy 70.057225 97.436086) (xy 70.057221 97.436082) (xy 69.923618 97.332095) (xy 69.873017 97.29271) (xy 69.667727 97.181613) (xy 69.667724 97.181612) (xy 69.667723 97.181611) (xy 69.446955 97.105821) (xy 69.446948 97.105819) (xy 69.348411 97.089376) (xy 69.216712 97.0674) (xy 68.983288 97.0674) (xy 68.868066 97.086627) (xy 68.753051 97.105819) (xy 68.753044 97.105821) (xy 68.532276 97.181611) (xy 68.532273 97.181613) (xy 68.326985 97.292709) (xy 68.326983 97.29271) (xy 68.142778 97.436082) (xy 68.142774 97.436086) (xy 67.984685 97.607816) (xy 67.857015 97.803231) (xy 67.763252 98.016989) (xy 67.763249 98.016996) (xy 67.70595 98.243266) (xy 67.705949 98.243272) (xy 67.705949 98.243274) (xy 67.701441 98.297678) (xy 67.686673 98.4759) (xy 46.031804 98.4759) (xy 44.232905 96.677001) (xy 44.198879 96.614689) (xy 44.196 96.587906) (xy 44.196 95.69225) (xy 44.253147 95.725245) (xy 44.382857 95.76) (xy 44.517143 95.76) (xy 44.646853 95.725245) (xy 44.704 95.69225) (xy 44.704 96.608) (xy 45.348585 96.608) (xy 45.348597 96.607999) (xy 45.409093 96.601494) (xy 45.545964 96.550444) (xy 45.545965 96.550444) (xy 45.662904 96.462904) (xy 45.750444 96.345965) (xy 45.794618 96.22753) (xy 45.837165 96.170694) (xy 45.903685 96.145883) (xy 45.973059 96.160974) (xy 46.005372 96.186222) (xy 46.02959 96.212529) (xy 46.066762 96.252908) (xy 46.121331 96.295381) (xy 46.244424 96.391189) (xy 46.442426 96.498342) (xy 46.442427 96.498342) (xy 46.442428 96.498343) (xy 46.542519 96.532704) (xy 46.655365 96.571444) (xy 46.877431 96.6085) (xy 46.877435 96.6085) (xy 47.102565 96.6085) (xy 47.102569 96.6085) (xy 47.324635 96.571444) (xy 47.537574 96.498342) (xy 47.735576 96.391189) (xy 47.91324 96.252906) (xy 48.065722 96.087268) (xy 48.154518 95.951354) (xy 48.20852 95.905268) (xy 48.278868 95.895692) (xy 48.343225 95.925669) (xy 48.36548 95.951353) (xy 48.391983 95.991918) (xy 48.454275 96.087265) (xy 48.454279 96.08727) (xy 48.606762 96.252908) (xy 48.661331 96.295381) (xy 48.784424 96.391189) (xy 48.982426 96.498342) (xy 48.982427 96.498342) (xy 48.982428 96.498343) (xy 49.082519 96.532704) (xy 49.195365 96.571444) (xy 49.417431 96.6085) (xy 49.417435 96.6085) (xy 49.642565 96.6085) (xy 49.642569 96.6085) (xy 49.864635 96.571444) (xy 50.077574 96.498342) (xy 50.275576 96.391189) (xy 50.45324 96.252906) (xy 50.605722 96.087268) (xy 50.694518 95.951354) (xy 50.74852 95.905268) (xy 50.818868 95.895692) (xy 50.883225 95.925669) (xy 50.90548 95.951353) (xy 50.931983 95.991918) (xy 50.994275 96.087265) (xy 50.994279 96.08727) (xy 51.146762 96.252908) (xy 51.201331 96.295381) (xy 51.324424 96.391189) (xy 51.522426 96.498342) (xy 51.522427 96.498342) (xy 51.522428 96.498343) (xy 51.622519 96.532704) (xy 51.735365 96.571444) (xy 51.957431 96.6085) (xy 51.957435 96.6085) (xy 52.182565 96.6085) (xy 52.182569 96.6085) (xy 52.404635 96.571444) (xy 52.617574 96.498342) (xy 52.815576 96.391189) (xy 52.99324 96.252906) (xy 53.145722 96.087268) (xy 53.234518 95.951354) (xy 53.28852 95.905268) (xy 53.358868 95.895692) (xy 53.423225 95.925669) (xy 53.44548 95.951353) (xy 53.471983 95.991918) (xy 53.534275 96.087265) (xy 53.534279 96.08727) (xy 53.686762 96.252908) (xy 53.741331 96.295381) (xy 53.864424 96.391189) (xy 54.062426 96.498342) (xy 54.062427 96.498342) (xy 54.062428 96.498343) (xy 54.162519 96.532704) (xy 54.275365 96.571444) (xy 54.497431 96.6085) (xy 54.497435 96.6085) (xy 54.722565 96.6085) (xy 54.722569 96.6085) (xy 54.944635 96.571444) (xy 55.157574 96.498342) (xy 55.355576 96.391189) (xy 55.53324 96.252906) (xy 55.594245 96.186637) (xy 55.655096 96.150067) (xy 55.726061 96.1522) (xy 55.784606 96.192362) (xy 55.805 96.227941) (xy 55.849111 96.346204) (xy 55.849112 96.346207) (xy 55.936738 96.463261) (xy 56.053792 96.550887) (xy 56.053794 96.550888) (xy 56.053796 96.550889) (xy 56.106919 96.570703) (xy 56.190795 96.601988) (xy 56.190803 96.60199) (xy 56.25135 96.608499) (xy 56.251355 96.608499) (xy 56.251362 96.6085) (xy 56.251368 96.6085) (xy 58.048632 96.6085) (xy 58.048638 96.6085) (xy 58.048645 96.608499) (xy 58.048649 96.608499) (xy 58.109196 96.60199) (xy 58.109199 96.601989) (xy 58.109201 96.601989) (xy 58.246204 96.550889) (xy 58.246799 96.550444) (xy 58.363261 96.463261) (xy 58.450886 96.346208) (xy 58.450885 96.346208) (xy 58.450889 96.346204) (xy 58.494999 96.227939) (xy 58.537545 96.171107) (xy 58.604066 96.146296) (xy 58.67344 96.161388) (xy 58.705753 96.186635) (xy 58.72959 96.212529) (xy 58.766762 96.252908) (xy 58.821331 96.295381) (xy 58.944424 96.391189) (xy 59.142426 96.498342) (xy 59.142427 96.498342) (xy 59.142428 96.498343) (xy 59.242519 96.532704) (xy 59.355365 96.571444) (xy 59.577431 96.6085) (xy 59.577435 96.6085) (xy 59.802565 96.6085) (xy 59.802569 96.6085) (xy 60.024635 96.571444) (xy 60.237574 96.498342) (xy 60.435576 96.391189) (xy 60.61324 96.252906) (xy 60.765722 96.087268) (xy 60.854518 95.951354) (xy 60.90852 95.905268) (xy 60.978868 95.895692) (xy 61.043225 95.925669) (xy 61.06548 95.951353) (xy 61.091983 95.991918) (xy 61.154275 96.087265) (xy 61.154279 96.08727) (xy 61.306762 96.252908) (xy 61.361331 96.295381) (xy 61.484424 96.391189) (xy 61.682426 96.498342) (xy 61.682427 96.498342) (xy 61.682428 96.498343) (xy 61.782519 96.532704) (xy 61.895365 96.571444) (xy 62.117431 96.6085) (xy 62.117435 96.6085) (xy 62.342565 96.6085) (xy 62.342569 96.6085) (xy 62.564635 96.571444) (xy 62.777574 96.498342) (xy 62.975576 96.391189) (xy 63.15324 96.252906) (xy 63.305722 96.087268) (xy 63.394518 95.951354) (xy 63.44852 95.905268) (xy 63.518868 95.895692) (xy 63.583225 95.925669) (xy 63.60548 95.951353) (xy 63.631983 95.991918) (xy 63.694275 96.087265) (xy 63.694279 96.08727) (xy 63.846762 96.252908) (xy 63.901331 96.295381) (xy 64.024424 96.391189) (xy 64.222426 96.498342) (xy 64.222427 96.498342) (xy 64.222428 96.498343) (xy 64.322519 96.532704) (xy 64.435365 96.571444) (xy 64.657431 96.6085) (xy 64.657435 96.6085) (xy 64.882565 96.6085) (xy 64.882569 96.6085) (xy 65.104635 96.571444) (xy 65.317574 96.498342) (xy 65.515576 96.391189) (xy 65.69324 96.252906) (xy 65.845722 96.087268) (xy 65.934518 95.951354) (xy 65.98852 95.905268) (xy 66.058868 95.895692) (xy 66.123225 95.925669) (xy 66.14548 95.951353) (xy 66.171983 95.991918) (xy 66.234275 96.087265) (xy 66.234279 96.08727) (xy 66.386762 96.252908) (xy 66.441331 96.295381) (xy 66.564424 96.391189) (xy 66.762426 96.498342) (xy 66.762427 96.498342) (xy 66.762428 96.498343) (xy 66.862519 96.532704) (xy 66.975365 96.571444) (xy 67.197431 96.6085) (xy 67.197435 96.6085) (xy 67.422565 96.6085) (xy 67.422569 96.6085) (xy 67.644635 96.571444) (xy 67.857574 96.498342) (xy 68.055576 96.391189) (xy 68.23324 96.252906) (xy 68.294626 96.186222) (xy 68.355476 96.149654) (xy 68.426441 96.151787) (xy 68.484986 96.191949) (xy 68.50538 96.227529) (xy 68.549553 96.345961) (xy 68.549555 96.345965) (xy 68.637095 96.462904) (xy 68.754034 96.550444) (xy 68.890906 96.601494) (xy 68.951402 96.607999) (xy 68.951415 96.608) (xy 69.596 96.608) (xy 69.596 95.69225) (xy 69.653147 95.725245) (xy 69.782857 95.76) (xy 69.917143 95.76) (xy 70.046853 95.725245) (xy 70.104 95.69225) ) ) ) (group "" (uuid "20c7a994-3e60-4af4-ad05-b44b784b0a38") (members "48748a0e-6f77-47f9-ada4-d8e3abf8bd71" "bbdc148f-0035-4e31-9441-adb2582c03e6" "e4fd5037-334e-4396-87ea-9c7524c412ec" ) ) (group "" (uuid "ebbf8fd6-b421-4263-ab59-961affacf39a") (members "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a" "4f929ae2-48f5-4477-ae85-53b87595350b" "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e" "cbfcf842-ae79-48e8-8439-be79bc4d3d3b" "cf7a1173-45eb-49f7-92cb-0fcb446fcd83" ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/fanpico.kicad_pro ================================================ { "board": { "3dviewports": [], "design_settings": { "defaults": { "apply_defaults_to_fp_fields": false, "apply_defaults_to_fp_shapes": false, "apply_defaults_to_fp_text": false, "board_outline_line_width": 0.1, "copper_line_width": 0.2, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.1, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.15, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 1.2, "height": 1.2, "width": 1.2 }, "silk_line_width": 0.15, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.15, "silk_text_upright": false, "zones": { "45_degree_only": false, "min_clearance": 0.508 } }, "diff_pair_dimensions": [ { "gap": 0.0, "via_gap": 0.0, "width": 0.0 } ], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "error", "hole_clearance": "error", "hole_near_hole": "error", "holes_co_located": "warning", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "error", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "allow_blind_buried_vias": false, "allow_microvias": false, "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.5, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.2, "min_microvia_drill": 0.1, "min_resolved_spokes": 1, "min_silk_clearance": 0.0, "min_text_height": 0.7, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.2, "min_via_annular_width": 0.05, "min_via_diameter": 0.4, "solder_mask_clearance": 0.0, "solder_mask_min_width": 0.0, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, "td_onviapad": true } ], "teardrop_parameters": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [ 0.0, 0.2, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0 ], "tuning_pattern_settings": { "diff_pair_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 1.0 }, "diff_pair_skew_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 }, "single_track_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 } }, "via_dimensions": [ { "diameter": 0.0, "drill": 0.0 } ], "zones_allow_external_fillets": false, "zones_use_no_outline": true }, "ipc2581": { "dist": "", "distpn": "", "internal_id": "", "mfg": "", "mpn": "" }, "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "conflicting_netclasses": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "similar_labels": "warning", "simulation_model_issue": "ignore", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 6 }, { "bus_width": 78, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_2000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 39 }, { "bus_width": 19, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_350ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 9 }, { "bus_width": 157, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_4000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 78 }, { "bus_width": 39, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_750ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 19 } ], "meta": { "version": 3 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [ { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan1/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan2/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan3/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan4/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan5/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan6/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan7/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan8/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "FAN1_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN2_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN3_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN4_PWR" }, { "netclass": "power_350ma", "pattern": "3V3" }, { "netclass": "power_350ma", "pattern": "AUX5V" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12V_IN" }, { "netclass": "power_4000ma", "pattern": "AUX12V" }, { "netclass": "power_750ma", "pattern": "+5V" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_PWR" }, { "netclass": "power_750ma", "pattern": "VBUS" }, { "netclass": "power_750ma", "pattern": "VSYS" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_SEL" }, { "netclass": "power_4000ma", "pattern": "MAIN_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN1_PWR_IN" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/FAN1_PWR_IN" } ] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "plot": "kerbers/", "pos_files": "placement/", "specctra_dsn": "", "step": "", "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "bom_export_filename": "bom.csv", "bom_fmt_presets": [], "bom_fmt_settings": { "field_delimiter": ",", "keep_line_breaks": false, "keep_tabs": false, "name": "CSV", "ref_delimiter": ",", "ref_range_delimiter": "", "string_delimiter": "\"" }, "bom_presets": [], "bom_settings": { "exclude_dnp": false, "fields_ordered": [ { "group_by": false, "label": "Reference", "name": "Reference", "show": true }, { "group_by": true, "label": "Value", "name": "Value", "show": true }, { "group_by": false, "label": "Datasheet", "name": "Datasheet", "show": true }, { "group_by": true, "label": "Footprint", "name": "Footprint", "show": true }, { "group_by": false, "label": "Qty", "name": "${QUANTITY}", "show": true }, { "group_by": true, "label": "DNP", "name": "${DNP}", "show": true }, { "group_by": false, "label": "Exclude from Board", "name": "${EXCLUDE_FROM_BOARD}", "show": false }, { "group_by": false, "label": "Exclude from Simulation", "name": "${EXCLUDE_FROM_SIM}", "show": false }, { "group_by": false, "label": "Sim.Device", "name": "Sim.Device", "show": false }, { "group_by": false, "label": "Sim.Pins", "name": "Sim.Pins", "show": false }, { "group_by": false, "label": "Description", "name": "Description", "show": false }, { "group_by": false, "label": "JCLC Part Number", "name": "JCLC Part Number", "show": false }, { "group_by": false, "label": "Mouser Part Number", "name": "Mouser Part Number", "show": true }, { "group_by": false, "label": "Exclude from BOM", "name": "${EXCLUDE_FROM_BOM}", "show": false }, { "group_by": false, "label": "#", "name": "${ITEM_NUMBER}", "show": false }, { "group_by": false, "label": "LCSC Part Number", "name": "LCSC Part Number", "show": true } ], "filter_string": "", "group_symbols": true, "name": "", "sort_asc": true, "sort_field": "Reference" }, "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "operating_point_overlay_i_precision": 3, "operating_point_overlay_i_range": "~A", "operating_point_overlay_v_precision": 3, "operating_point_overlay_v_range": "~V", "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "ngspice": { "fix_include_paths": true, "fix_passive_vals": false, "meta": { "version": 0 }, "model_mode": 0, "workbook_filename": "" }, "page_layout_descr_file": "", "plot_directory": "", "spice_adjust_passive_values": false, "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", "Root" ], [ "4d4dd17e-947f-4b3c-bd12-d4039fccae25", "Fan Channels" ], [ "cccf50bc-434f-4bd7-95d5-172f10b931f4", "Fan1" ], [ "d911133f-dd4d-432b-a685-8d9b5b84e35e", "Fan2" ], [ "5ae37739-065e-4580-bde3-1038e45a286b", "Fan3" ], [ "61057e9f-bb51-4960-97cb-0865458dfe32", "Fan4" ], [ "20cc4b05-e726-4b05-ab1c-64b5db072e26", "Power Rails" ], [ "4e9d9bbb-bb4b-4f71-a57a-a915249deb73", "Sensors & Connectors" ] ], "text_variables": {} } ================================================ FILE: boards/fanpico-0401D/kicad/fanpico.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_0_1" (rectangle (start -2.286 0.508) (end 2.286 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.286) (xy -0.762 2.286) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 2.794) (xy -1.27 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start 2.286 -0.508) (end -2.286 -1.016) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "C_Polarized_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Graphic:Logo_Open_Hardware_Small" (exclude_from_sim no) (in_bom no) (on_board no) (property "Reference" "#SYM" (at 0 6.985 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Enable" "0" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Logo" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Logo_Open_Hardware_Small_0_1" (polyline (pts (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) ) (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "H" (at 0 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.445 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "mounting hole" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MountingHole_Pad_0_1" (circle (center 0 1.27) (radius 1.27) (stroke (width 1.27) (type default) ) (fill (type none) ) ) ) (symbol "MountingHole_Pad_1_1" (pin input line (at 0 -2.54 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Reference_Voltage:LM4040DBZ-3" (pin_names (offset 0.0254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 -3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 -5.08 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode device voltage reference shunt" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LM4040DBZ-3_0_1" (polyline (pts (xy -1.27 0) (xy 0 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 -1.27) (xy 0.635 0) (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0.635 -1.27) (xy 0.635 1.27) (xy 1.27 1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) ) (symbol "LM4040DBZ-3_1_1" (pin passive line (at 3.81 0 180) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -3.81 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin no_connect line (at -1.27 0 0) (length 2.54) hide (name "NC" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "SW" (at 1.27 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "SW_Push" (at 0 -1.524 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SW_Push_0_1" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 1.27) (xy 0 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 1.27) (xy -2.54 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 0 0) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Transistor_FET:2N7002K" (pin_names hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "Q" (at 5.08 1.905 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "2N7002K" (at 5.08 0 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 5.08 -3.81 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "N-Channel MOSFET" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "2N7002K_0_1" (polyline (pts (xy 0.254 0) (xy -2.54 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.254 1.905) (xy 0.254 -1.905) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.27) (xy 0.762 -2.286) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 0.508) (xy 0.762 -0.508) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 2.286) (xy 0.762 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 2.54) (xy 2.54 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) (polyline (pts (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 1.651 0) (radius 2.794) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (circle (center 2.54 -1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) (circle (center 2.54 1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "2N7002K_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "G" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 -5.08 90) (length 2.54) (name "S" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 5.08 270) (length 2.54) (name "D" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:Pico" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U4" (at 0 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico" (at 0 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Pico_0_0" (text "Raspberry Pi Pico" (at 0 21.59 0) (effects (font (size 1.27 1.27) ) ) ) ) (symbol "Pico_0_1" (rectangle (start -15.24 26.67) (end 15.24 -26.67) (stroke (width 0) (type solid) ) (fill (type background) ) ) ) (symbol "Pico_1_1" (pin bidirectional line (at -17.78 24.13 0) (length 2.54) (name "GPIO0" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 1.27 0) (length 2.54) (name "GPIO7" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) (name "GPIO8" (effects (font (size 1.27 1.27) ) ) ) (number "11" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) (name "GPIO9" (effects (font (size 1.27 1.27) ) ) ) (number "12" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "13" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) (name "GPIO10" (effects (font (size 1.27 1.27) ) ) ) (number "14" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) (name "GPIO11" (effects (font (size 1.27 1.27) ) ) ) (number "15" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) (name "GPIO12" (effects (font (size 1.27 1.27) ) ) ) (number "16" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) (name "GPIO13" (effects (font (size 1.27 1.27) ) ) ) (number "17" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "18" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) (name "GPIO14" (effects (font (size 1.27 1.27) ) ) ) (number "19" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 21.59 0) (length 2.54) (name "GPIO1" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) (name "GPIO15" (effects (font (size 1.27 1.27) ) ) ) (number "20" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) (name "GPIO16" (effects (font (size 1.27 1.27) ) ) ) (number "21" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) (name "GPIO17" (effects (font (size 1.27 1.27) ) ) ) (number "22" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "23" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) (name "GPIO18" (effects (font (size 1.27 1.27) ) ) ) (number "24" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) (name "GPIO19" (effects (font (size 1.27 1.27) ) ) ) (number "25" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) (name "GPIO20" (effects (font (size 1.27 1.27) ) ) ) (number "26" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) (name "GPIO21" (effects (font (size 1.27 1.27) ) ) ) (number "27" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -6.35 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "28" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) (name "GPIO22" (effects (font (size 1.27 1.27) ) ) ) (number "29" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 -1.27 180) (length 2.54) (name "RUN" (effects (font (size 1.27 1.27) ) ) ) (number "30" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 1.27 180) (length 2.54) (name "GPIO26_ADC0" (effects (font (size 1.27 1.27) ) ) ) (number "31" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 3.81 180) (length 2.54) (name "GPIO27_ADC1" (effects (font (size 1.27 1.27) ) ) ) (number "32" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 6.35 180) (length 2.54) (name "AGND" (effects (font (size 1.27 1.27) ) ) ) (number "33" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 8.89 180) (length 2.54) (name "GPIO28_ADC2" (effects (font (size 1.27 1.27) ) ) ) (number "34" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 11.43 180) (length 2.54) (name "ADC_VREF" (effects (font (size 1.27 1.27) ) ) ) (number "35" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 13.97 180) (length 2.54) (name "3V3" (effects (font (size 1.27 1.27) ) ) ) (number "36" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 16.51 180) (length 2.54) (name "3V3_EN" (effects (font (size 1.27 1.27) ) ) ) (number "37" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "38" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 21.59 180) (length 2.54) (name "VSYS" (effects (font (size 1.27 1.27) ) ) ) (number "39" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 16.51 0) (length 2.54) (name "GPIO2" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 24.13 180) (length 2.54) (name "VBUS" (effects (font (size 1.27 1.27) ) ) ) (number "40" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -2.54 -29.21 90) (length 2.54) (name "SWCLK" (effects (font (size 1.27 1.27) ) ) ) (number "41" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 -29.21 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "42" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) (name "SWDIO" (effects (font (size 1.27 1.27) ) ) ) (number "43" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 13.97 0) (length 2.54) (name "GPIO3" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 11.43 0) (length 2.54) (name "GPIO4" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 8.89 0) (length 2.54) (name "GPIO5" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 3.81 0) (length 2.54) (name "GPIO6" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:SN74AHCT125PW" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U1" (at 0 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT125QDRQ1" (at 0 20.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C155176" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SN74AHCT125PW_0_0" (rectangle (start -12.7 -17.78) (end 12.7 17.78) (stroke (width 0.4064) (type solid) ) (fill (type background) ) ) (pin input line (at -17.78 0 0) (length 5.08) (name "~{1OE}" (effects (font (size 1.016 1.016) ) ) ) (number "1" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "~{3OE}" (effects (font (size 1.016 1.016) ) ) ) (number "10" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016) ) ) ) (number "11" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016) ) ) ) (number "12" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -7.62 0) (length 5.08) (name "~{4OE}" (effects (font (size 1.016 1.016) ) ) ) (number "13" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 15.24 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016) ) ) ) (number "14" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 10.16 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016) ) ) ) (number "2" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 10.16 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016) ) ) ) (number "3" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "~{2OE}" (effects (font (size 1.016 1.016) ) ) ) (number "4" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016) ) ) ) (number "5" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016) ) ) ) (number "6" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 -15.24 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016) ) ) ) (number "7" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016) ) ) ) (number "8" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016) ) ) ) (number "9" (effects (font (size 1.016 1.016) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) ) (junction (at 86.36 154.94) (diameter 0) (color 0 0 0 0) (uuid "37925b60-a96c-40d4-bbe0-c38c84a60f08") ) (junction (at 243.84 144.78) (diameter 0) (color 0 0 0 0) (uuid "44461bb5-3d15-48d8-b54c-29cc384038c4") ) (junction (at 86.36 38.1) (diameter 0) (color 0 0 0 0) (uuid "4a182950-aa82-49c6-886a-395f4e45ad57") ) (junction (at 248.92 144.78) (diameter 0) (color 0 0 0 0) (uuid "4ac33c7f-819a-4e40-9db8-c7158710ea25") ) (junction (at 248.92 132.08) (diameter 0) (color 0 0 0 0) (uuid "4cf7f1ed-1475-4478-97e8-e413894f7315") ) (junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0) (uuid "5c99028e-1d30-41b1-8932-d1579c1cedd7") ) (junction (at 86.36 140.97) (diameter 0) (color 0 0 0 0) (uuid "69ce5a38-041f-4686-b59a-c63d12472c8b") ) (junction (at 243.84 132.08) (diameter 0) (color 0 0 0 0) (uuid "739bf354-74df-465f-9fc4-9c9002958c57") ) (junction (at 44.45 60.96) (diameter 0) (color 0 0 0 0) (uuid "9d867883-eced-4471-9fce-19f09daf1612") ) (junction (at 193.04 45.72) (diameter 0) (color 0 0 0 0) (uuid "a6047c76-e1f7-4633-9ed1-a524d2c4adc5") ) (junction (at 256.54 144.78) (diameter 0) (color 0 0 0 0) (uuid "b842a3fa-7994-4673-966c-1ef6fc8631cc") ) (junction (at 86.36 40.64) (diameter 0) (color 0 0 0 0) (uuid "c2759c0d-1090-43b6-8679-d9db23ac5c4b") ) (junction (at 86.36 43.18) (diameter 0) (color 0 0 0 0) (uuid "c312270f-3292-440f-be58-8d5cca988f64") ) (junction (at 236.22 132.08) (diameter 0) (color 0 0 0 0) (uuid "c374c009-c04c-47ed-a1c9-18363335846e") ) (junction (at 256.54 132.08) (diameter 0) (color 0 0 0 0) (uuid "c7fcec21-40e0-4284-9c5f-91ce733eca2a") ) (junction (at 59.69 140.97) (diameter 0) (color 0 0 0 0) (uuid "ebcfb86f-33cf-47fe-a532-73bed86ef6b6") ) (junction (at 236.22 144.78) (diameter 0) (color 0 0 0 0) (uuid "f7161d64-a0dc-42e0-98d7-a0e878124a80") ) (no_connect (at 170.18 71.12) (uuid "03053679-e179-4541-be62-57b95bb53678") ) (no_connect (at 134.62 88.9) (uuid "0a61d613-970e-4844-b272-69bc40e344c8") ) (no_connect (at 149.86 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27d9") ) (no_connect (at 152.4 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27da") ) (no_connect (at 154.94 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27db") ) (no_connect (at 170.18 88.9) (uuid "9af29c0a-0fcd-454f-a0d4-6a81d3d3ffe5") ) (no_connect (at 170.18 50.8) (uuid "a8b06511-83ab-4494-899d-baf6f0f7c2e2") ) (no_connect (at 170.18 66.04) (uuid "d97ef3ea-2198-4c53-abb6-ca8d80cec035") ) (polyline (pts (xy 105.41 116.84) (xy 105.41 17.78) ) (stroke (width 0) (type default) ) (uuid "0225b026-bc9a-4ae3-a532-98073f921f06") ) (wire (pts (xy 92.71 66.04) (xy 92.71 48.26) ) (stroke (width 0) (type default) ) (uuid "032ec224-73b8-4b34-8d58-d432ca3d53cf") ) (wire (pts (xy 266.7 144.78) (xy 270.51 144.78) ) (stroke (width 0) (type default) ) (uuid "03fc6758-c18a-4c98-ab71-1032e4304690") ) (wire (pts (xy 73.66 154.94) (xy 86.36 154.94) ) (stroke (width 0) (type default) ) (uuid "0550df85-7b09-4fab-a47c-664b0bceb119") ) (wire (pts (xy 243.84 132.08) (xy 243.84 134.62) ) (stroke (width 0) (type default) ) (uuid "06e94543-5813-475e-bb40-4f1f9177f3d0") ) (wire (pts (xy 193.04 54.61) (xy 193.04 53.34) ) (stroke (width 0) (type default) ) (uuid "09c1cecc-df80-4774-8746-c1b946e136c9") ) (wire (pts (xy 193.04 45.72) (xy 196.85 45.72) ) (stroke (width 0) (type default) ) (uuid "0e515928-7d22-4731-8cec-a6f38fb37081") ) (wire (pts (xy 36.83 26.67) (xy 36.83 30.48) ) (stroke (width 0) (type default) ) (uuid "0e650889-b494-4580-a65c-71328da9d336") ) (polyline (pts (xy 20.32 173.99) (xy 20.32 121.92) ) (stroke (width 0) (type default) ) (uuid "0fe776ff-a40b-4d67-94d6-2b2739940cb5") ) (wire (pts (xy 134.62 58.42) (xy 90.17 58.42) ) (stroke (width 0) (type default) ) (uuid "10ec34c0-ccd5-4fdf-bbc8-5a9ce960ba1e") ) (wire (pts (xy 236.22 144.78) (xy 233.68 144.78) ) (stroke (width 0) (type default) ) (uuid "12215783-4ce1-4031-87f0-99f322f05186") ) (wire (pts (xy 86.36 40.64) (xy 86.36 43.18) ) (stroke (width 0) (type default) ) (uuid "1c03a828-53cd-4e4e-87c7-45e67cf2b53b") ) (wire (pts (xy 236.22 132.08) (xy 236.22 135.89) ) (stroke (width 0) (type default) ) (uuid "1c342a1c-439d-4b5a-af2d-08ad1d109144") ) (wire (pts (xy 256.54 121.92) (xy 256.54 123.19) ) (stroke (width 0) (type default) ) (uuid "1c3e2fe0-5bb0-408d-b1ba-d8b29a870098") ) (wire (pts (xy 248.92 144.78) (xy 248.92 146.05) ) (stroke (width 0) (type default) ) (uuid "1d3a1626-d1ef-4f14-b28c-9b933e72b66d") ) (wire (pts (xy 26.67 38.1) (xy 26.67 41.91) ) (stroke (width 0) (type default) ) (uuid "248e10d8-fff0-4345-8c60-7a6079f0401b") ) (wire (pts (xy 193.04 48.26) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "27b07f33-b564-431a-b04b-4744b236ecb5") ) (wire (pts (xy 86.36 38.1) (xy 86.36 40.64) ) (stroke (width 0) (type default) ) (uuid "2f2c4fe5-08cb-4222-8c26-736039cae7f8") ) (wire (pts (xy 78.74 140.97) (xy 86.36 140.97) ) (stroke (width 0) (type default) ) (uuid "349ec205-c293-4cd6-a03e-7094d7b1ee66") ) (wire (pts (xy 170.18 45.72) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "355b7b31-d6c5-48f7-8526-aa8f27240965") ) (wire (pts (xy 134.62 83.82) (xy 107.95 83.82) ) (stroke (width 0) (type default) ) (uuid "37529e5c-b830-4881-ade0-b698ed1f75a5") ) (wire (pts (xy 26.67 26.67) (xy 26.67 30.48) ) (stroke (width 0) (type default) ) (uuid "38c0239e-08eb-435b-8f1b-995056a9c9c9") ) (wire (pts (xy 59.69 144.78) (xy 59.69 140.97) ) (stroke (width 0) (type default) ) (uuid "3bd67c4d-d35b-4539-8dcc-844dcdb86694") ) (wire (pts (xy 243.84 142.24) (xy 243.84 144.78) ) (stroke (width 0) (type default) ) (uuid "3c0044c6-c429-449b-b13a-e41678b50171") ) (wire (pts (xy 243.84 132.08) (xy 248.92 132.08) ) (stroke (width 0) (type default) ) (uuid "410a416a-c262-4325-9a55-1d9ceffdf200") ) (wire (pts (xy 256.54 121.92) (xy 264.16 121.92) ) (stroke (width 0) (type default) ) (uuid "430bb481-7cde-4cab-b54d-6d7ff845e23a") ) (wire (pts (xy 107.95 83.82) (xy 107.95 140.97) ) (stroke (width 0) (type default) ) (uuid "4d7eef76-255f-4ab6-90f6-c05e2137a21d") ) (polyline (pts (xy 232.41 20.32) (xy 232.41 45.72) ) (stroke (width 0) (type default) ) (uuid "4e9f99cf-d8d9-4f72-93eb-785163413a3a") ) (wire (pts (xy 59.69 140.97) (xy 68.58 140.97) ) (stroke (width 0) (type default) ) (uuid "5371d569-5f9d-4d36-9bff-f95cddc3edd1") ) (wire (pts (xy 259.08 144.78) (xy 256.54 144.78) ) (stroke (width 0) (type default) ) (uuid "58bf6367-6c03-4861-be94-b4e73c4df116") ) (wire (pts (xy 243.84 144.78) (xy 236.22 144.78) ) (stroke (width 0) (type default) ) (uuid "5a66cd7f-a53d-4cb6-808e-4ba88e785316") ) (wire (pts (xy 236.22 140.97) (xy 236.22 144.78) ) (stroke (width 0) (type default) ) (uuid "5c707d89-acbd-4785-a874-cdebbe604627") ) (wire (pts (xy 90.17 53.34) (xy 90.17 58.42) ) (stroke (width 0) (type default) ) (uuid "5df6e566-af55-4933-bd72-8f4e2c0f62f8") ) (polyline (pts (xy 105.41 17.78) (xy 20.32 17.78) ) (stroke (width 0) (type default) ) (uuid "64d2652d-c463-460c-8179-7b15d9e1b57a") ) (polyline (pts (xy 215.9 154.94) (xy 276.86 154.94) ) (stroke (width 0) (type default) ) (uuid "6f4d6650-5bcb-4282-924a-5cd152ed0ec9") ) (polyline (pts (xy 275.59 45.72) (xy 232.41 45.72) ) (stroke (width 0) (type default) ) (uuid "713ff1dc-4d1d-4410-a196-3d543c6b29c7") ) (wire (pts (xy 270.51 144.78) (xy 270.51 146.05) ) (stroke (width 0) (type default) ) (uuid "71a80893-914d-481f-840f-d73513d66b7a") ) (wire (pts (xy 233.68 132.08) (xy 236.22 132.08) ) (stroke (width 0) (type default) ) (uuid "7fc9a529-3f88-49e9-b0e6-e4d2ef7ceeca") ) (polyline (pts (xy 232.41 20.32) (xy 275.59 20.32) ) (stroke (width 0) (type default) ) (uuid "81222d6f-a3e7-45b9-8ef8-8863d409d691") ) (wire (pts (xy 36.83 38.1) (xy 36.83 43.18) ) (stroke (width 0) (type default) ) (uuid "826a64f1-831c-4a5f-8609-cf71518b35cd") ) (wire (pts (xy 59.69 152.4) (xy 59.69 157.48) ) (stroke (width 0) (type default) ) (uuid "8629f9e3-9544-4060-9606-9e7e962f11f6") ) (polyline (pts (xy 276.86 113.03) (xy 215.9 113.03) ) (stroke (width 0) (type default) ) (uuid "86813523-31f3-4ecd-8f15-d6b26bb626c9") ) (wire (pts (xy 248.92 132.08) (xy 256.54 132.08) ) (stroke (width 0) (type default) ) (uuid "8b889b1e-faba-489d-8e68-d7f715c06289") ) (wire (pts (xy 236.22 132.08) (xy 243.84 132.08) ) (stroke (width 0) (type default) ) (uuid "9052c1c7-0610-4c6b-bba2-a2782a39836f") ) (wire (pts (xy 270.51 34.29) (xy 270.51 38.1) ) (stroke (width 0) (type default) ) (uuid "9233216e-2e08-4379-96e0-cb36b85ff99a") ) (wire (pts (xy 86.36 38.1) (xy 86.36 26.67) ) (stroke (width 0) (type default) ) (uuid "96c7973c-1ca4-496f-9433-cfb3dda02f91") ) (wire (pts (xy 256.54 132.08) (xy 256.54 134.62) ) (stroke (width 0) (type default) ) (uuid "984eacb6-8323-4ded-b67b-fb5e78dc9b4f") ) (wire (pts (xy 243.84 34.29) (xy 248.92 34.29) ) (stroke (width 0) (type default) ) (uuid "99b48839-8290-446e-94cc-89a81a4f05d0") ) (polyline (pts (xy 113.03 121.92) (xy 113.03 173.99) ) (stroke (width 0) (type default) ) (uuid "9ccebe2b-5f55-4973-bb87-39a4061c3e8f") ) (wire (pts (xy 86.36 144.78) (xy 86.36 140.97) ) (stroke (width 0) (type default) ) (uuid "9e70063c-81b7-4a71-82f0-713d22485f33") ) (wire (pts (xy 248.92 144.78) (xy 243.84 144.78) ) (stroke (width 0) (type default) ) (uuid "9ed68298-3c09-4cbc-8d43-3d4e50b58202") ) (wire (pts (xy 107.95 140.97) (xy 86.36 140.97) ) (stroke (width 0) (type default) ) (uuid "9f9c49ab-0bbb-4ccd-b2c4-cda52b6397a2") ) (wire (pts (xy 256.54 130.81) (xy 256.54 132.08) ) (stroke (width 0) (type default) ) (uuid "a0c3c007-0ce9-4f18-937e-4f07a43e915c") ) (wire (pts (xy 95.25 154.94) (xy 86.36 154.94) ) (stroke (width 0) (type default) ) (uuid "a2739d16-4022-4c8e-8d10-29d4e62ab466") ) (wire (pts (xy 256.54 144.78) (xy 256.54 142.24) ) (stroke (width 0) (type default) ) (uuid "a2ecdf12-a15c-45bf-a0e6-4e12848b4c7a") ) (wire (pts (xy 46.99 30.48) (xy 46.99 33.02) ) (stroke (width 0) (type default) ) (uuid "a80fef18-a48a-4d09-b643-a672757b1495") ) (polyline (pts (xy 113.03 173.99) (xy 20.32 173.99) ) (stroke (width 0) (type default) ) (uuid "acf53681-a981-43c2-af30-140ab59070f1") ) (wire (pts (xy 73.66 148.59) (xy 73.66 154.94) ) (stroke (width 0) (type default) ) (uuid "ad9fd2a2-d4f3-402f-9b1d-fc0fb98e4565") ) (polyline (pts (xy 20.32 121.92) (xy 113.03 121.92) ) (stroke (width 0) (type default) ) (uuid "add87405-9e92-4829-9e4e-b14fd83f8344") ) (wire (pts (xy 86.36 43.18) (xy 86.36 45.72) ) (stroke (width 0) (type default) ) (uuid "aeb321a9-5237-4c78-bac4-781a3c603cc1") ) (wire (pts (xy 36.83 26.67) (xy 26.67 26.67) ) (stroke (width 0) (type default) ) (uuid "b83304f3-46bf-4db8-a64c-7eaf6c7ea56c") ) (wire (pts (xy 91.44 63.5) (xy 134.62 63.5) ) (stroke (width 0) (type default) ) (uuid "b8cc28f2-5708-4a8f-8a7f-b697b00c04bf") ) (wire (pts (xy 50.8 140.97) (xy 59.69 140.97) ) (stroke (width 0) (type default) ) (uuid "c4b8e893-9c96-428d-a7fc-a3d73743d303") ) (wire (pts (xy 86.36 26.67) (xy 36.83 26.67) ) (stroke (width 0) (type default) ) (uuid "c8c3c69a-be61-4887-8549-c8060d004996") ) (wire (pts (xy 91.44 50.8) (xy 86.36 50.8) ) (stroke (width 0) (type default) ) (uuid "c99f6e0b-0f2a-4762-a218-370af9761dec") ) (polyline (pts (xy 276.86 154.94) (xy 276.86 113.03) ) (stroke (width 0) (type default) ) (uuid "ca5b5b51-a7f9-4111-9194-6e0a4f01fcf0") ) (wire (pts (xy 90.17 53.34) (xy 86.36 53.34) ) (stroke (width 0) (type default) ) (uuid "d130f3e6-3e5d-4159-b2b2-7cdb6f3ed471") ) (polyline (pts (xy 215.9 113.03) (xy 215.9 154.94) ) (stroke (width 0) (type default) ) (uuid "d41d8d66-fe44-4552-8178-6068db774d34") ) (polyline (pts (xy 20.32 116.84) (xy 105.41 116.84) ) (stroke (width 0) (type default) ) (uuid "d4f636a4-f5b8-49c2-a599-1577d3892675") ) (polyline (pts (xy 20.32 17.78) (xy 20.32 116.84) ) (stroke (width 0) (type default) ) (uuid "d85017d9-c128-48c8-8251-f13f61501d86") ) (wire (pts (xy 248.92 130.81) (xy 248.92 132.08) ) (stroke (width 0) (type default) ) (uuid "db7c70ec-3601-4f98-81f3-7c474fea16ba") ) (wire (pts (xy 86.36 55.88) (xy 134.62 55.88) ) (stroke (width 0) (type default) ) (uuid "dfaa6c7c-fbe3-4455-ba4b-aab61fdaf591") ) (wire (pts (xy 44.45 60.96) (xy 50.8 60.96) ) (stroke (width 0) (type default) ) (uuid "e0be14a5-755d-4de2-a11b-e47244753427") ) (wire (pts (xy 50.8 30.48) (xy 46.99 30.48) ) (stroke (width 0) (type default) ) (uuid "e5962416-b5b1-4270-a17c-cc51c70b33fd") ) (wire (pts (xy 256.54 144.78) (xy 248.92 144.78) ) (stroke (width 0) (type default) ) (uuid "e5c7b78d-5fa2-422a-99f8-30d909bbcb69") ) (wire (pts (xy 86.36 152.4) (xy 86.36 154.94) ) (stroke (width 0) (type default) ) (uuid "e8e278b1-54c4-4654-bcf3-77338ce57db9") ) (wire (pts (xy 36.83 43.18) (xy 38.1 43.18) ) (stroke (width 0) (type default) ) (uuid "e9823521-5882-4217-8e13-9e4963e22875") ) (polyline (pts (xy 275.59 20.32) (xy 275.59 45.72) ) (stroke (width 0) (type default) ) (uuid "eb281db5-4063-4df2-8db9-ea3803bcb333") ) (wire (pts (xy 134.62 66.04) (xy 92.71 66.04) ) (stroke (width 0) (type default) ) (uuid "eec66167-3c8f-4b14-88e8-2c8d1f2c010c") ) (wire (pts (xy 256.54 34.29) (xy 260.35 34.29) ) (stroke (width 0) (type default) ) (uuid "f04e1ab9-fbf3-46dd-b600-c260e336711a") ) (wire (pts (xy 30.48 60.96) (xy 44.45 60.96) ) (stroke (width 0) (type default) ) (uuid "f812f4ab-364a-493a-aa6b-459b4558f569") ) (wire (pts (xy 91.44 63.5) (xy 91.44 50.8) ) (stroke (width 0) (type default) ) (uuid "fd251c52-7a99-4c7d-a722-efe3aeba8d65") ) (wire (pts (xy 92.71 48.26) (xy 86.36 48.26) ) (stroke (width 0) (type default) ) (uuid "fdc24804-1714-4dcd-b084-817110d69f5e") ) (text_box "U1 Options:\n\nSN74AHCT125:\n R54 = 0 Ohm\n R55 = Do Not Fit\n\nSN74AHCT126:\n R54 = Do Not Fit\n R55 = 0 Ohm " (exclude_from_sim no) (at 41.91 83.566 0) (size 36.83 21.082) (stroke (width 0) (type default) ) (fill (type none) ) (effects (font (size 1.27 1.27) ) (justify left top) ) (uuid "49f44302-b8f2-465a-9199-082046e77077") ) (text "Reset Button" (exclude_from_sim no) (at 246.38 24.13 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "29a9d25a-b621-4edd-b244-27b12c5a58c5") ) (text "3.3V to 5V TTL level converters (Outputs)" (exclude_from_sim no) (at 49.53 21.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7b78d401-b474-456f-b3ac-691fb2d878ca") ) (text "5V to 3.3V TTL level converters (Inputs)" (exclude_from_sim no) (at 48.26 125.73 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d2c3ae86-3be5-49b7-948d-8a75160b2e76") ) (text "Voltage Reference (ADC)" (exclude_from_sim no) (at 232.41 116.84 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dacb54d3-d3bb-452f-818e-51f80ddfb9e5") ) (label "PWM2A" (at 97.79 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0322dd28-65a4-4fb0-b2cf-cf9968cc8c23") ) (label "PWM6B" (at 107.95 130.81 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "44a48c6a-ba78-4c95-b40d-d17f88689408") ) (label "PWM3A" (at 97.79 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d7454ce4-c6e8-4c21-920a-50a741ad0d6b") ) (label "PWM3B" (at 97.79 66.04 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea4a4606-14a4-40ed-881a-0158186885e8") ) (label "PWM2B" (at 97.79 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fe7d60c9-620b-4aeb-94b5-4bc071a2b54d") ) (global_label "GND" (shape input) (at 134.62 60.96 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "00475afc-148e-4ab8-bed4-3185ddfe90f9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 61.0394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 233.68 144.78 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "04950cea-1ba0-4eb1-a373-58a2658c01e1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 226.3079 144.8594 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 86.36 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "04c39ef5-459c-45df-8c6c-9808a60cb4df") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 86.2806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN3_TACHO_READ" (shape input) (at 170.18 78.74 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0618a8d4-dfec-4b96-918f-8a0783b022a4") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 78.8194 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "CS" (shape input) (at 134.62 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0942037f-2389-433e-b370-d804af998590") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.1553 71.12 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "3V3" (shape output) (at 170.18 53.34 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "125a9fd1-f4bc-41f7-815c-21c249ebe4d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.1007 53.2606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX" (shape input) (at 134.62 45.72 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "13189288-c51c-4a7a-9368-98a94b81453a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.1553 45.72 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape input) (at 170.18 81.28 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1920621a-fa42-4edc-b7c5-fba55bae481e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 81.3594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "193fcca4-6d80-4304-87f8-05b0105b2b50") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 48.3394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 170.18 60.96 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "212e6a15-d7f7-4f89-9b82-d85e733f5346") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.5521 60.8806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN1_TACHO_GEN" (shape output) (at 170.18 91.44 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "21dc7a18-7219-4cdb-90d7-6d848cf8fbd9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 192.2757 91.44 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "LCD_RESET" (shape input) (at 134.62 81.28 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "265489f9-279b-45c7-b5ab-a67e093a9025") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 121.354 81.28 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN3_PWM_GEN" (shape output) (at 50.8 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2789e3fd-df86-4401-81de-af2fe268b29e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 50.7206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MISO" (shape input) (at 134.62 68.58 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "348c1dcb-68c2-43dc-abac-df18e233ec52") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.0386 68.58 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SCL" (shape input) (at 134.62 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4406f4a8-e89e-41a7-8753-ccdef3b892c2") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.1272 53.34 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TX" (shape input) (at 134.62 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "440ccfa6-b091-406c-9063-69cfe17db2ea") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 124.4659 43.1006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "DQ" (shape input) (at 134.62 91.44 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4433f1a8-6d53-4065-a633-e9bb6795f49c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.0343 91.44 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape input) (at 170.18 83.82 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "482b375b-f93b-4cf1-b41b-74e6a88b4bf7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 83.8994 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 73.66 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "56566558-85dc-401a-921f-18fece923968") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 73.5806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN1_PWM_GEN" (shape output) (at 50.8 55.88 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "60352681-50e4-4655-96c6-c890e1d93a48") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 55.8006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape input) (at 196.85 45.72 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6ee1ee3c-2acc-43eb-bd67-1345d0c68634") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.8593 45.6406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCK" (shape input) (at 134.62 76.2 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "84a09797-1242-4e9c-8fad-cf640d49ed3b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.8853 76.2 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 48.26 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "89b53668-472a-4c1e-ad76-0503724d51dd") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 48.1806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 170.18 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "927e18f5-a7fb-4948-99d2-b9ca09bc99d5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 63.4206 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MOSI" (shape input) (at 134.62 78.74 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "952bcca6-c174-4296-9e4c-b1b38b55d79d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.0386 78.74 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 243.84 34.29 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "97592fff-296c-4436-ae38-5be0d0edebc9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.6817 34.2106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 73.66 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a497be01-7bed-4cec-a987-8b665febd59b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 73.7394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 170.18 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ac9fba16-79b8-4f37-99f5-a048f55a4fa5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.3383 68.5006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 170.18 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ae83a3f6-3f75-4909-b54e-02391a5e8602") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 180.6969 55.8006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN1_PWM_READ" (shape input) (at 50.8 140.97 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ae935457-ad04-4756-80fe-19d104b2c391") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 30.0626 140.8906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN4_PWM_GEN" (shape output) (at 50.8 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "af88b0c8-541d-4d0d-9530-a0c28a3bfe6f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 48.1806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VBUS" (shape input) (at 170.18 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b20f15bc-c7f5-42ac-9ab3-d6e4992b8509") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.4917 43.1006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 86.36 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b7635d5a-eb4a-410e-9449-f1748b5bf9b7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 86.4394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 170.18 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d29eb170-d2f6-41b6-83eb-36e080295456") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 58.3406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_TACHO_READ" (shape input) (at 170.18 76.2 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d91ef416-b47f-42aa-afac-0bca46e8a7f8") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.0102 76.2794 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SDA" (shape input) (at 134.62 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcd14636-efc2-46e5-b067-4777716cc518") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.0667 50.8 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 233.68 132.08 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "de849800-a33b-44d7-89dc-cf35ac5f49ac") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.1631 132.1594 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 50.8 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fa6523e1-f03d-4fe2-b7ab-7059b01b96fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 53.2606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Device:R") (at 262.89 144.78 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "00d03321-5580-4405-8c0a-820cab392953") (property "Reference" "R49" (at 262.89 147.32 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "0" (at 262.89 142.24 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 262.89 146.558 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 262.89 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e629e4f8-19a9-40f2-b250-b42f630b5327") ) (pin "2" (uuid "e42d30bd-cd0a-4349-8f61-beeea3ad8561") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R49") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 44.45 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0113ec05-ff50-4170-824e-aedf99bcdf74") (property "Reference" "C1" (at 46.99 62.2362 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 46.99 64.7762 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "67e55334-eb2f-410b-b257-7b4a96741fd9") ) (pin "2" (uuid "0b69a9c8-0d79-419a-beb2-f797f270c351") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 49.53 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0cda9c0d-4446-4ac2-9248-7bf1aef08fda") (property "Reference" "#PWR02" (at 49.53 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2fc7642e-e62d-47fa-a356-d55ac2eefcf5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR02") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 97.79 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "12000ee0-df48-4de5-8c39-efac9b30715d") (property "Reference" "#PWR011" (at 97.79 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 97.79 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b58279ca-1e60-49be-a910-b9ff493d04d9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR011") (unit 1) ) ) ) ) (symbol (lib_id "Switch:SW_Push") (at 265.43 34.29 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "21c2b408-da95-4394-b5b2-e408611b3d07") (property "Reference" "SW1" (at 265.43 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SW_Push" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:SW_PUSH_6mm_SMD_2" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 265.43 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C221880" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 265.43 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27296091-6781-4efc-a66b-9e778af17046") ) (pin "2" (uuid "9d12283e-8c5a-41fb-b03b-8ecd86226e38") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "SW1") (unit 1) ) ) ) ) (symbol (lib_id "Reference_Voltage:LM4040DBZ-3") (at 256.54 138.43 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "424316b7-e2a3-4008-bbc5-a6a4ca971456") (property "Reference" "U6" (at 259.08 135.89 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LM4040DBZ-3" (at 259.08 138.43 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 261.62 138.43 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C143326" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "05784861-7629-4a85-9935-24d25e47a54f") ) (pin "2" (uuid "02fbf521-5543-40ce-b316-97d45e6714a9") ) (pin "3" (uuid "2050241c-5451-453b-a482-41e8df39d2d1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U6") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 256.54 127 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "46efb677-f647-4e2b-b34d-dc07526879da") (property "Reference" "R48" (at 259.08 125.7299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 259.08 128.2699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 254.762 127 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 256.54 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ce51771f-1ce8-4835-b128-9d341ceaf2ff") ) (pin "2" (uuid "a421bd39-dbf7-4537-ac40-19f294144d16") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R48") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 270.51 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4bdb64de-c5e2-44a1-aa92-4e88036c30fa") (property "Reference" "#PWR016" (at 270.51 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 270.51 43.18 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 270.51 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "295f4690-5164-4c76-a2ae-2de4b239ab6a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR016") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:Pico") (at 152.4 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (property "Reference" "U4" (at 152.4 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico" (at 152.4 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 152.4 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a63b44f1-ea5e-4f13-b9b3-c183c5766b10") ) (pin "10" (uuid "ae300eb0-4d90-4667-9ac8-30dc063fea66") ) (pin "11" (uuid "7a642457-bf94-4069-aeb3-f6bdf53027ce") ) (pin "12" (uuid "2a372351-0249-4dbf-b843-d1115abe6c23") ) (pin "13" (uuid "cab1c7ac-3cbc-4b3e-8949-a302dafe62f3") ) (pin "14" (uuid "8b57cad7-714d-4a24-ac8c-022f84f02a29") ) (pin "15" (uuid "0d075e9c-23a6-4ed3-b65a-edb4381a9128") ) (pin "16" (uuid "1ea46041-4719-4ad7-8407-ca25f9b1e9c1") ) (pin "17" (uuid "049d00e8-1a76-4940-a5fb-b3e1cf5ab1cb") ) (pin "18" (uuid "62be4e75-f9e5-4e23-a56f-552f2717bd4c") ) (pin "19" (uuid "4ad44b68-5278-49b8-be99-4f5740f18cbe") ) (pin "2" (uuid "044ce540-1b40-47a5-ac8e-8567b3613fc6") ) (pin "20" (uuid "352f3812-5061-4d56-b744-146ca85be583") ) (pin "21" (uuid "abd569bb-0e47-46a3-9ef3-f24815830d31") ) (pin "22" (uuid "3c75c43b-77c8-490f-836c-24811ce20668") ) (pin "23" (uuid "59f771eb-610c-41b4-9fe9-f4aa0cd36fb7") ) (pin "24" (uuid "35f2cd52-8449-4e71-b3d3-68f55e4f212f") ) (pin "25" (uuid "03afcb68-3462-4044-a799-eed9b01289ae") ) (pin "26" (uuid "ad255c78-9d3e-40cf-aebc-08a18736f74c") ) (pin "27" (uuid "43d2ec59-1409-4fa4-9166-59df0d59b1be") ) (pin "28" (uuid "8e792de5-914f-4c01-b363-c046734dca15") ) (pin "29" (uuid "6ebd8e1c-3412-4e91-853a-f50ca94c1761") ) (pin "3" (uuid "bea30cce-6c19-462a-b123-e232df3d4b9b") ) (pin "30" (uuid "3d55c6ef-b5b6-4181-98e7-56916a947575") ) (pin "31" (uuid "f151cb85-5b35-41dc-83e5-f5f14d11f572") ) (pin "32" (uuid "12e4cbf0-c33e-4f70-b642-86eed6213bbe") ) (pin "33" (uuid "be50869c-2d23-4f53-9ed5-69165e5355dc") ) (pin "34" (uuid "445f5899-f7fa-4000-a351-c64542952a9b") ) (pin "35" (uuid "b842d565-4f7f-4475-bab3-844734dd14e5") ) (pin "36" (uuid "f646b943-6ef8-4fa1-853f-cdc8e6c9ffe4") ) (pin "37" (uuid "cd845bad-2bbd-4604-bb4c-5a28fb51bb55") ) (pin "38" (uuid "6c8d1982-af4a-4686-b8f0-562fb74f1a22") ) (pin "39" (uuid "4a2c07c3-4fd8-4ef2-a11f-a4906d131c29") ) (pin "4" (uuid "4248c574-29b7-48f6-9cb7-f1f59031b094") ) (pin "40" (uuid "72633d1b-112c-4d79-8d35-50d2f80fe8c3") ) (pin "41" (uuid "79a69a04-b150-4b88-8adb-e5c57776d907") ) (pin "42" (uuid "255d9c0f-be4d-47fb-b2eb-60c13f7a7afb") ) (pin "43" (uuid "dc51d744-d6bd-4464-b94b-bd99229acf7a") ) (pin "5" (uuid "8099da11-5e38-4b42-8055-cc1d73216c85") ) (pin "6" (uuid "10523738-2db5-4266-b7d5-83c1545c5bb4") ) (pin "7" (uuid "3a801c55-c78c-470f-8f19-6eca2b0ee295") ) (pin "8" (uuid "e46be3b6-e021-4b94-96af-b96e9cd4da10") ) (pin "9" (uuid "e67203dc-9d4c-49d5-b51e-5bfe862a3dfd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 193.04 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5ccafa89-0081-41df-a934-e7474966477b") (property "Reference" "#PWR014" (at 193.04 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 193.04 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b650d766-5cdf-46d5-9606-1261bf399530") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR014") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 59.69 148.59 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "60c2f696-7370-48df-82c6-e14515591662") (property "Reference" "R15" (at 62.23 147.3199 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 62.23 149.8599 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 61.468 148.59 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 59.69 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 59.69 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 59.69 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 59.69 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 59.69 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9967d085-1706-4693-877f-e5dfe849a88d") ) (pin "2" (uuid "fde04f70-e042-48bf-a46d-3158fd413fc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R15") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 146.05 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "625371b5-54a4-43de-8588-11187e5d8ae2") (property "Reference" "#FLG0102" (at 248.92 147.955 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 243.84 151.13 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ee5afa1-28f8-402d-9d63-1ad6ed2abfae") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0102") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 73.66 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "63465697-0038-4a5a-931e-e383d18d8993") (property "Reference" "H3" (at 76.2 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 76.2 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "N/A" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "N/A" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6bc4a5b6-72a7-456a-bc75-3be399593048") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H3") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 26.67 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "68788af4-cd69-4bb0-8b00-fc6856411aae") (property "Reference" "R54" (at 29.21 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "DNF" (at 29.21 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 28.448 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "N/A" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "N/A" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bddc6ce2-d77e-4442-bd84-7757b92010fc") ) (pin "2" (uuid "44455ee2-368e-407b-946d-efd27af571ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R54") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 59.69 157.48 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7103d435-6ca0-4652-99fb-71c41566cd18") (property "Reference" "#PWR012" (at 59.69 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 59.69 162.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 59.69 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 59.69 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 59.69 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4aaa9373-b4ea-41a6-8342-1527e8856e1a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR012") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 36.83 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "72e0c837-1ab2-470c-91ad-f34c0c878b4f") (property "Reference" "R55" (at 39.37 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 39.37 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 38.608 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d2863bd7-effd-458c-99a1-b213499ed11f") ) (pin "2" (uuid "d95059fd-1d70-46b5-a162-00ac98e19fca") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R55") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 86.36 148.59 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7e2d2ed1-24e9-4521-935f-d30bb0ebe69a") (property "Reference" "R16" (at 88.9 147.3199 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "49.9k" (at 88.9 149.8599 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 88.138 148.59 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 86.36 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 86.36 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 86.36 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 86.36 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 86.36 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9016444c-5384-42ba-b859-9330dc5c317b") ) (pin "2" (uuid "47430d9d-4d61-49f3-a074-edcccb262743") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R16") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 26.67 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7eec01e7-b105-47f4-84b2-b4977c900d6a") (property "Reference" "#PWR015" (at 26.67 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 29.21 43.1799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d98f79b2-d39e-4cc8-866c-63f6dcdb7328") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR015") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 38.1 43.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "83bcfa7c-4c87-414d-8d5a-fb31a0e32a4c") (property "Reference" "#PWR044" (at 34.29 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 41.91 43.18 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6a93bec-bc44-4d13-8b16-e585f19fd83a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR044") (unit 1) ) ) ) ) (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 173.99 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "876ade33-6b93-4690-a10c-6369295dc457") (property "Reference" "#LOGO1" (at 276.86 167.005 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 276.86 179.705 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "Symbol:OSHW-Logo_7.5x8mm_Copper" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#LOGO1") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 193.04 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8d64b89a-1924-4f6c-af5f-09a59972040a") (property "Reference" "C4" (at 187.96 50.8 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 186.69 53.34 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8b91b3d-a018-4e68-b9d7-8d613d44c9c8") ) (pin "2" (uuid "05a89441-4f43-4ef6-b14d-7822bd71c92b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 25.4 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8f0d3fed-2a42-496b-9baf-a165e10a736f") (property "Reference" "#PWR01" (at 25.4 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 25.4 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "666d8b9e-fcd5-4795-b865-21337d99152f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR01") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 97.79 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "91796faf-4963-43e3-be77-8c6bb9373a7f") (property "Reference" "H4" (at 100.33 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 100.33 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "N/A" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "N/A" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "97157546-2806-48e4-92d6-17deba114302") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H4") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 236.22 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9fda019a-5350-4524-b5e4-0e13d75d61d1") (property "Reference" "C29" (at 229.87 137.16 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 228.6 139.7 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 236.22 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bc31c7d2-ffd7-40b0-9482-436067ae52e0") ) (pin "2" (uuid "14f05954-02bf-434f-84f9-6d3672624abb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C29") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 73.66 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a17f3f6d-73e9-42f5-922d-377a07660f6a") (property "Reference" "#PWR010" (at 73.66 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 73.66 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27edf7eb-87af-4101-bb4b-a66095a160b3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR010") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 264.16 121.92 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a71234bf-8830-4e38-bcc7-c1a326627ef3") (property "Reference" "#PWR0102" (at 260.35 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 274.32 121.92 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 264.16 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "91d8dfcd-2d26-499b-8f84-b53797255edc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR0102") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 46.99 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aafb7b41-4736-44f5-ab4b-339174550157") (property "Reference" "#PWR07" (at 46.99 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 34.2899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cea449ce-07e5-445d-a678-0300db9013ac") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR07") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 252.73 34.29 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "acf00741-1e6b-4573-832b-01221b598fad") (property "Reference" "R1" (at 252.73 27.94 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 252.73 30.48 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 252.73 36.068 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 252.73 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0910a185-289b-40e3-8fb6-54d7f7286aa8") ) (pin "2" (uuid "ec074aab-08bf-408a-9b96-861de416ec28") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R1") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:SN74AHCT125PW") (at 68.58 45.72 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (property "Reference" "U1" (at 68.58 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT126" (at 68.58 25.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "(AHCT125 = C36365, AHCT126 = C155177)" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C155177" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2f34fbfd-3312-477b-b701-121fc77d5848") ) (pin "10" (uuid "79bbdbf8-f0d4-4c38-aa4f-8a3f92f69118") ) (pin "11" (uuid "6b777928-5b7f-47dc-abcf-ceb2a8e18614") ) (pin "12" (uuid "15f9b026-10aa-473e-84f3-da690f58bb16") ) (pin "13" (uuid "1cbedb1a-9687-46f4-aca3-dc9563346a95") ) (pin "14" (uuid "50ecac09-402a-41e9-b72b-55d215a9fa3e") ) (pin "2" (uuid "6d1e4641-d185-4c2c-97a5-3be145b35f1d") ) (pin "3" (uuid "7c56ce82-f2cf-49fa-ac6e-319f6fa584b9") ) (pin "4" (uuid "0bc924c7-55c4-4c90-a881-1684ad3c9f8e") ) (pin "5" (uuid "77364b93-edb6-42bb-b30c-43183d11b107") ) (pin "6" (uuid "71f76554-7dac-453f-9642-3d6afe7a7617") ) (pin "7" (uuid "bafb999f-9f37-47b6-bfb8-9b9f66aa2220") ) (pin "8" (uuid "8303d2f6-1303-4fd4-9ad6-8b36e436d400") ) (pin "9" (uuid "8a38b771-684d-4edf-8d94-5a1e6ca17b30") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U1") (unit 1) ) ) ) ) (symbol (lib_id "Transistor_FET:2N7002K") (at 73.66 143.51 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c8a53563-593a-4628-bfe4-3d6f26507f00") (property "Reference" "Q2" (at 73.66 134.62 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "2N7002K" (at 73.66 137.16 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 75.565 138.43 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/2N7002K.pdf" (at 73.66 143.51 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 73.66 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C85047" (at 73.66 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 73.66 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-2N7002K" (at 73.66 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "fb142682-33ca-499e-96c8-ac910f8daf3b") ) (pin "2" (uuid "524fa9a9-2aad-4386-955e-d7b256ddfb37") ) (pin "3" (uuid "ae040668-2f95-4a6d-ab2c-9b180298fe4e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "Q2") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 25.4 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cbfea856-81cc-4920-8136-231416e676cf") (property "Reference" "H1" (at 27.94 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 27.94 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "N/A" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "N/A" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ab36bf70-0043-4db6-aabd-62b615c4d6d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H1") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 130.81 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d62382f8-9ab4-4a55-ada9-6abd4e0cc693") (property "Reference" "#FLG0101" (at 248.92 128.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 248.92 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7618e572-bceb-4295-876c-15d22ba3a8a6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0101") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 95.25 154.94 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "d656f0c2-917e-42c9-837c-131326c1a4dc") (property "Reference" "#PWR04" (at 91.44 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 105.41 154.94 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 95.25 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 95.25 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 95.25 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "783e31be-0386-427c-abe8-a4dd3282f693") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR04") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 44.45 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f1270d61-b904-4fb6-a21c-60838b39d33e") (property "Reference" "#PWR05" (at 44.45 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 46.99 67.3099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "509c0ba5-48a2-48f3-8fee-83eebe7171d5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR05") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 270.51 146.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fa2deb6c-69aa-4fd2-8dc6-262f17f64052") (property "Reference" "#PWR082" (at 270.51 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 270.51 151.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 270.51 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "60f9df87-4cdd-42a3-a9f1-65449bbcf5ce") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR082") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 30.48 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fb0c09fb-eb10-423d-a2ff-19df142b215b") (property "Reference" "#PWR03" (at 34.29 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 26.67 60.96 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b27d10aa-d70c-44e6-a702-253c6072f2d6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR03") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 49.53 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fc6c8e15-a262-4b02-88cd-fdf30196bc30") (property "Reference" "H2" (at 52.07 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 52.07 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "N/A" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "N/A" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a6f8bf61-c9e4-4d10-a0f0-e5e25a074e51") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 243.84 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (property "Reference" "C30" (at 246.38 138.43 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 243.84 140.97 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 244.8052 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 243.84 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7ea02e0b-fb26-409a-b5cd-535f77cfb691") ) (pin "2" (uuid "f5275cea-17a0-406c-90e1-a31fc6de4104") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C30") (unit 1) ) ) ) ) (sheet (at 144.78 176.53) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "20cc4b05-e726-4b05-ab1c-64b5db072e26") (property "Sheetname" "Power Rails" (at 144.78 175.8184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "power.kicad_sch" (at 144.78 180.9246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "7") ) ) ) ) (sheet (at 144.78 187.96) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4d4dd17e-947f-4b3c-bd12-d4039fccae25") (property "Sheetname" "Fan Channels" (at 144.78 187.2484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channels.kicad_sch" (at 144.78 192.3546 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "2") ) ) ) ) (sheet (at 144.78 163.83) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4e9d9bbb-bb4b-4f71-a57a-a915249deb73") (property "Sheetname" "Sensors & Connectors" (at 144.78 163.1184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sensors.kicad_sch" (at 144.78 168.2246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "8") ) ) ) ) (sheet_instances (path "/" (page "1") ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/power.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "028ff83f-3fa5-4d87-a092-2685b6e33322") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_Small_0_1" (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858) (stroke (width 0) (type default) ) (fill (type outline) ) ) (rectangle (start -1.524 0.6858) (end 1.524 0.3048) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.524) (xy -0.762 1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 1.27) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "C_Polarized_Small_1_1" (pin passive line (at 0 2.54 270) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_Schottky" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode Schottky" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_Schottky_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_Schottky_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Regulator_Linear:AP1117-ADJ" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -3.81 3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AP1117-ADJ" (at 0 3.175 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 2.54 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "linear regulator ldo adjustable positive obsolete" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?223*TabPin2*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AP1117-ADJ_0_1" (rectangle (start -5.08 -5.08) (end 5.08 1.905) (stroke (width 0.254) (type default) ) (fill (type background) ) ) ) (symbol "AP1117-ADJ_1_1" (pin input line (at 0 -7.62 90) (length 2.54) (name "ADJ" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_out line (at 7.62 0 180) (length 2.54) (name "VO" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -7.62 0 0) (length 2.54) (name "VI" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) ) (junction (at 128.27 64.77) (diameter 0) (color 0 0 0 0) (uuid "01f7cfbe-9fad-4094-9428-ea8af2611bbc") ) (junction (at 158.75 31.75) (diameter 0) (color 0 0 0 0) (uuid "0d6e2ce9-4a83-4614-a1c6-2896d8d965ca") ) (junction (at 135.89 60.96) (diameter 0) (color 0 0 0 0) (uuid "295360cf-ee4d-440e-a32b-a0ee0c9db935") ) (junction (at 231.14 80.01) (diameter 0) (color 0 0 0 0) (uuid "63654d43-f757-49f5-a7a4-b2b333a03904") ) (junction (at 196.85 31.75) (diameter 0) (color 0 0 0 0) (uuid "6c57b5d5-7086-4a24-b79d-624268d804cd") ) (junction (at 180.34 31.75) (diameter 0) (color 0 0 0 0) (uuid "6f095a89-114c-4f7e-b7c9-3e7dc213e815") ) (junction (at 124.46 31.75) (diameter 0) (color 0 0 0 0) (uuid "80b6ead8-eb08-46d1-a087-4ae924840747") ) (junction (at 213.36 80.01) (diameter 0) (color 0 0 0 0) (uuid "92527673-be04-4bd1-8305-6af910966a9e") ) (junction (at 106.68 31.75) (diameter 0) (color 0 0 0 0) (uuid "9ea461c4-d4ef-4663-966e-38231c3d1542") ) (junction (at 167.64 60.96) (diameter 0) (color 0 0 0 0) (uuid "a44e3f52-9a15-406b-8e1e-7eafe1d62cef") ) (junction (at 135.89 31.75) (diameter 0) (color 0 0 0 0) (uuid "a5305bac-19bc-475a-b7b0-218d11c8a355") ) (junction (at 158.75 44.45) (diameter 0) (color 0 0 0 0) (uuid "a851c512-8f77-4f46-8a15-29ba207e17d9") ) (junction (at 248.92 59.69) (diameter 0) (color 0 0 0 0) (uuid "b1db5784-d15c-4b56-a77a-94f715ca25cf") ) (junction (at 158.75 60.96) (diameter 0) (color 0 0 0 0) (uuid "c8721b86-c795-4cae-adf8-1a7a6136e421") ) (junction (at 128.27 31.75) (diameter 0) (color 0 0 0 0) (uuid "d609b045-b818-413d-8bd7-c32a13cef10a") ) (junction (at 128.27 60.96) (diameter 0) (color 0 0 0 0) (uuid "dab80573-24a5-4d12-bb65-ff635d54695c") ) (junction (at 213.36 124.46) (diameter 0) (color 0 0 0 0) (uuid "ea9d622c-abdb-422c-a911-35ec1e1138eb") ) (junction (at 231.14 124.46) (diameter 0) (color 0 0 0 0) (uuid "ebed54b1-d5a7-4f45-8b9b-5703e12747dc") ) (junction (at 91.44 31.75) (diameter 0) (color 0 0 0 0) (uuid "ecb31a57-d52e-4c9e-9869-6100aff6eb9e") ) (junction (at 224.79 31.75) (diameter 0) (color 0 0 0 0) (uuid "f0cfee1e-2f27-4984-aed7-03f14161fd53") ) (junction (at 180.34 60.96) (diameter 0) (color 0 0 0 0) (uuid "f8689401-17d4-4228-8fc1-93e983e3e6cd") ) (junction (at 247.65 31.75) (diameter 0) (color 0 0 0 0) (uuid "fa77a7e6-cbd5-4f72-9c67-6c75f7f83ce1") ) (wire (pts (xy 167.64 53.34) (xy 167.64 60.96) ) (stroke (width 0) (type default) ) (uuid "028950f4-bef2-4cbe-9a33-a3dd6a71321d") ) (wire (pts (xy 148.59 39.37) (xy 148.59 44.45) ) (stroke (width 0) (type default) ) (uuid "061db99e-deab-4ffc-89a0-9df41413c93c") ) (wire (pts (xy 224.79 31.75) (xy 247.65 31.75) ) (stroke (width 0) (type default) ) (uuid "0807a7ca-530a-4fed-90ca-b08f9efbcec6") ) (wire (pts (xy 231.14 124.46) (xy 213.36 124.46) ) (stroke (width 0) (type default) ) (uuid "13170e57-9c1c-41a7-9858-fd30d0dd0fa2") ) (wire (pts (xy 180.34 39.37) (xy 180.34 31.75) ) (stroke (width 0) (type default) ) (uuid "2121f181-8d22-4040-b1e5-4398d7228ad2") ) (wire (pts (xy 128.27 60.96) (xy 128.27 64.77) ) (stroke (width 0) (type default) ) (uuid "21557492-85dd-41ed-9262-989cf42befd4") ) (wire (pts (xy 91.44 48.26) (xy 91.44 52.07) ) (stroke (width 0) (type default) ) (uuid "21cb650e-84c8-4b64-95a5-56e7d525ec3d") ) (wire (pts (xy 213.36 80.01) (xy 231.14 80.01) ) (stroke (width 0) (type default) ) (uuid "2aded452-f504-4f03-a076-548465232ec2") ) (wire (pts (xy 81.28 31.75) (xy 91.44 31.75) ) (stroke (width 0) (type default) ) (uuid "2bf20a9e-ba7f-4cde-94b6-20c9a0779c8e") ) (wire (pts (xy 158.75 44.45) (xy 158.75 46.99) ) (stroke (width 0) (type default) ) (uuid "2f3c6d8e-581c-4b2e-bf7d-a9cdedc021a8") ) (wire (pts (xy 224.79 31.75) (xy 224.79 41.91) ) (stroke (width 0) (type default) ) (uuid "34377ce7-06d6-48b2-9ccd-4c0b78616faf") ) (wire (pts (xy 135.89 31.75) (xy 140.97 31.75) ) (stroke (width 0) (type default) ) (uuid "36c4922a-64f4-402a-be2e-56b47c4822ab") ) (wire (pts (xy 193.04 31.75) (xy 196.85 31.75) ) (stroke (width 0) (type default) ) (uuid "3a5b4a82-7987-48f2-a345-4716621e4ca6") ) (wire (pts (xy 180.34 31.75) (xy 185.42 31.75) ) (stroke (width 0) (type default) ) (uuid "3c79c968-ef02-4cc7-8148-1cb6969386e6") ) (wire (pts (xy 213.36 93.98) (xy 213.36 91.44) ) (stroke (width 0) (type default) ) (uuid "3de98d5f-595f-4c1c-a8bc-e8320e5d4cd6") ) (wire (pts (xy 156.21 31.75) (xy 158.75 31.75) ) (stroke (width 0) (type default) ) (uuid "46ffb84b-cd87-4b66-b7a9-8725206f69c2") ) (wire (pts (xy 128.27 64.77) (xy 128.27 66.04) ) (stroke (width 0) (type default) ) (uuid "4c819dc5-ede9-4b9e-9dd8-605261e8951f") ) (wire (pts (xy 128.27 39.37) (xy 128.27 31.75) ) (stroke (width 0) (type default) ) (uuid "5297f216-50eb-4556-be39-94fd70cc5745") ) (wire (pts (xy 158.75 41.91) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "5a838764-fdbe-4c2f-8ddd-58a5aa169724") ) (wire (pts (xy 180.34 44.45) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "5cb79303-dad1-4856-bee3-a66f14ec97e2") ) (wire (pts (xy 231.14 124.46) (xy 231.14 128.27) ) (stroke (width 0) (type default) ) (uuid "606ad181-be65-4215-91ef-9bd8d1bd38ad") ) (wire (pts (xy 158.75 31.75) (xy 158.75 34.29) ) (stroke (width 0) (type default) ) (uuid "662c5b79-2f9c-4dff-b8ba-21b972d1581e") ) (wire (pts (xy 213.36 139.7) (xy 213.36 137.16) ) (stroke (width 0) (type default) ) (uuid "67c2175d-daf9-4462-9d89-ff28037e0bde") ) (wire (pts (xy 213.36 101.6) (xy 213.36 105.41) ) (stroke (width 0) (type default) ) (uuid "68de57ac-038c-423d-9c01-18a694f49867") ) (wire (pts (xy 135.89 60.96) (xy 158.75 60.96) ) (stroke (width 0) (type default) ) (uuid "79d374d1-e055-4e2b-9817-91ba266ac8a0") ) (wire (pts (xy 148.59 44.45) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "7c2eae6c-553a-4662-8c97-23af07dedb7c") ) (wire (pts (xy 124.46 31.75) (xy 128.27 31.75) ) (stroke (width 0) (type default) ) (uuid "82eabb8f-719a-4b79-9930-0fb8907c6cd6") ) (wire (pts (xy 231.14 82.55) (xy 231.14 80.01) ) (stroke (width 0) (type default) ) (uuid "83026252-dd5b-4063-b1c6-b0255100cfac") ) (wire (pts (xy 248.92 59.69) (xy 260.35 59.69) ) (stroke (width 0) (type default) ) (uuid "85cf0908-f81d-4c94-8e67-beb03d79aaf1") ) (wire (pts (xy 231.14 80.01) (xy 254 80.01) ) (stroke (width 0) (type default) ) (uuid "8c263423-237a-4eda-8162-18bd6618b21b") ) (wire (pts (xy 196.85 31.75) (xy 196.85 35.56) ) (stroke (width 0) (type default) ) (uuid "8ca4aba5-7438-4fc7-929d-694f656ce194") ) (wire (pts (xy 128.27 31.75) (xy 135.89 31.75) ) (stroke (width 0) (type default) ) (uuid "8e789506-b14f-4139-9fbd-4c9e4150a674") ) (wire (pts (xy 124.46 64.77) (xy 128.27 64.77) ) (stroke (width 0) (type default) ) (uuid "8f03fe41-4544-4313-8dfa-ded50798111f") ) (wire (pts (xy 106.68 31.75) (xy 113.03 31.75) ) (stroke (width 0) (type default) ) (uuid "9187d5d6-0c6b-4fd4-bd73-e8407924cf93") ) (wire (pts (xy 167.64 60.96) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "924ad17e-87dc-466e-9ecd-708486820e3a") ) (wire (pts (xy 29.21 38.1) (xy 77.47 38.1) ) (stroke (width 0) (type default) ) (uuid "9648eae9-b473-4dc5-9551-e384fad29c1d") ) (wire (pts (xy 247.65 31.75) (xy 247.65 33.02) ) (stroke (width 0) (type default) ) (uuid "975f12a4-518b-44d8-88c9-a118d9fbb2c4") ) (wire (pts (xy 224.79 59.69) (xy 248.92 59.69) ) (stroke (width 0) (type default) ) (uuid "9a2c15b4-3896-45bc-a27d-68a116687fe2") ) (wire (pts (xy 106.68 26.67) (xy 106.68 31.75) ) (stroke (width 0) (type default) ) (uuid "9bbad723-6440-4fe5-befd-c92122dbea01") ) (wire (pts (xy 128.27 44.45) (xy 128.27 60.96) ) (stroke (width 0) (type default) ) (uuid "a1fc5aea-ea2a-4c21-9d1f-1f6fc017bdf8") ) (wire (pts (xy 135.89 31.75) (xy 135.89 39.37) ) (stroke (width 0) (type default) ) (uuid "acb7986d-7240-4a82-ba35-d16785b62188") ) (wire (pts (xy 128.27 60.96) (xy 135.89 60.96) ) (stroke (width 0) (type default) ) (uuid "b695eb0c-10b2-4b92-86c1-39971818c939") ) (wire (pts (xy 196.85 31.75) (xy 224.79 31.75) ) (stroke (width 0) (type default) ) (uuid "ba6eff22-dc75-426e-aa60-b634bfec783b") ) (wire (pts (xy 158.75 54.61) (xy 158.75 60.96) ) (stroke (width 0) (type default) ) (uuid "c07a7704-11a1-4240-a2f0-e08014e8da61") ) (wire (pts (xy 196.85 45.72) (xy 196.85 43.18) ) (stroke (width 0) (type default) ) (uuid "c7b868c9-2bb8-4cc3-b568-6a4b13859c70") ) (wire (pts (xy 120.65 31.75) (xy 124.46 31.75) ) (stroke (width 0) (type default) ) (uuid "cb5e1a95-b86f-4dcc-ba68-746f23b5cb1e") ) (wire (pts (xy 196.85 53.34) (xy 196.85 60.96) ) (stroke (width 0) (type default) ) (uuid "cfc6eb53-5338-45e2-b660-71655399984b") ) (wire (pts (xy 213.36 147.32) (xy 213.36 152.4) ) (stroke (width 0) (type default) ) (uuid "d058f378-5aa6-4f03-8ace-ef6560686c6d") ) (wire (pts (xy 91.44 31.75) (xy 106.68 31.75) ) (stroke (width 0) (type default) ) (uuid "d3ac9b68-2fe0-4b5d-9a42-19d2bff2bfa5") ) (wire (pts (xy 158.75 60.96) (xy 167.64 60.96) ) (stroke (width 0) (type default) ) (uuid "d5082638-32c4-4781-a5ec-6b9ad17c7ab8") ) (wire (pts (xy 167.64 48.26) (xy 167.64 44.45) ) (stroke (width 0) (type default) ) (uuid "d973601e-8aaa-4ed8-92ef-b86b1e281e8f") ) (wire (pts (xy 91.44 31.75) (xy 91.44 40.64) ) (stroke (width 0) (type default) ) (uuid "dc5c0aa1-9f07-4327-80dc-b6ea9f14ed8d") ) (wire (pts (xy 224.79 49.53) (xy 224.79 59.69) ) (stroke (width 0) (type default) ) (uuid "dd721f7c-4ed8-4c2f-b871-31c9de70f438") ) (wire (pts (xy 248.92 60.96) (xy 248.92 59.69) ) (stroke (width 0) (type default) ) (uuid "e11c9d45-8be5-4f8d-8bd3-d644f6e2f30f") ) (wire (pts (xy 167.64 44.45) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "e5f0aaba-0a61-4dbe-99d1-08926f9b9517") ) (wire (pts (xy 63.5 80.01) (xy 213.36 80.01) ) (stroke (width 0) (type default) ) (uuid "e7bac6d2-644a-416a-a5d8-8a88a91ae6ec") ) (wire (pts (xy 247.65 31.75) (xy 259.08 31.75) ) (stroke (width 0) (type default) ) (uuid "e8f46775-cd2b-4558-b261-76d8bd480661") ) (wire (pts (xy 135.89 44.45) (xy 135.89 60.96) ) (stroke (width 0) (type default) ) (uuid "ec18daec-7f06-479c-8c04-4fc52233c5b4") ) (wire (pts (xy 63.5 124.46) (xy 213.36 124.46) ) (stroke (width 0) (type default) ) (uuid "ec817dff-e7ef-492e-8264-380fadc5bcdb") ) (wire (pts (xy 213.36 80.01) (xy 213.36 83.82) ) (stroke (width 0) (type default) ) (uuid "f071de68-a1f6-47bb-8a7a-c6e049926ec3") ) (wire (pts (xy 158.75 31.75) (xy 180.34 31.75) ) (stroke (width 0) (type default) ) (uuid "f29dfbc1-fb05-4709-bf72-552d658008a4") ) (wire (pts (xy 213.36 124.46) (xy 213.36 129.54) ) (stroke (width 0) (type default) ) (uuid "fb172360-4b51-4746-9422-75bd49ab684b") ) (wire (pts (xy 29.21 25.4) (xy 77.47 25.4) ) (stroke (width 0) (type default) ) (uuid "fbacd240-e4c7-44a7-b48b-ac7aeb4ae5a7") ) (wire (pts (xy 237.49 124.46) (xy 231.14 124.46) ) (stroke (width 0) (type default) ) (uuid "fc07276d-4a2d-4d1c-af4e-24eda2f5877b") ) (wire (pts (xy 196.85 60.96) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "fd734556-b18c-487c-b6de-67bc81064261") ) (text "Power Rails" (exclude_from_sim no) (at 16.51 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "7d750c9d-d7d6-4011-9a1b-8a5d88cec8a2") ) (label "5V_REG_OUT" (at 162.56 31.75 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d8d8238b-3b6a-4f08-97af-a0bb65fe2766") ) (label "5V_REG_IN" (at 129.54 31.75 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e252f25d-c54c-4a71-9c11-9eb30a14741f") ) (global_label "MAIN_PWR" (shape output) (at 106.68 26.67 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "135cb5ea-1dfb-427c-8335-5c83e95f5a89") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 106.68 14.2505 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "VBUS" (shape input) (at 63.5 124.46 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3771d436-d487-49e5-83b7-fcd97c1f5d27") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 56.1883 124.3806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_PWR" (shape input) (at 29.21 25.4 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bad1944-0108-439d-b369-761cb5c3c2be") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 17.1207 25.3206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "3V3" (shape input) (at 63.5 80.01 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a00767bf-f242-4dfb-832c-ee8e323f4f11") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 57.5793 79.9306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AUX12V" (shape input) (at 29.21 38.1 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a7fbbebb-dae0-474d-ba96-bdbb68d5e57f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.6607 38.0206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape output) (at 260.35 59.69 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f4097e6f-2c94-48b9-9f49-6b8002f84a57") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 267.3593 59.6106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 124.46 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0afd2e10-551d-403d-8ebb-a3569d0a20dd") (property "Reference" "#FLG02" (at 124.46 29.845 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 124.46 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b9a9cd4b-d07a-4f35-a4df-82c7c4694f56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG02") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 116.84 31.75 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "14a165bd-0b65-4fb0-9565-152bd6300a32") (property "Reference" "D3" (at 116.84 34.29 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "ES1D 1A 200V" (at 116.84 36.83 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "512-ES1D" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ba70beda-274f-468b-b8a2-3813abb44b54") ) (pin "2" (uuid "f3d1557e-197c-4dbe-96d6-1cac9319a82d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D3") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 213.36 133.35 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1fde763e-90ef-4ddc-b2e5-d750ee01b070") (property "Reference" "R7" (at 215.9 132.0799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 215.9 134.6199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 211.582 133.35 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78d336ba-1d45-453f-9418-f4cf06fef625") ) (pin "2" (uuid "55707ce6-f84d-4d75-9aa2-a9ad19f844fc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R7") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 180.34 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "27625c54-6268-4c25-bed4-fca1fa7ca75b") (property "Reference" "C8" (at 182.88 39.37 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 182.88 41.91 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "22dc2c98-8d2b-431e-b86a-f393bbea74b2") ) (pin "2" (uuid "f497ede9-bde6-4106-aea6-35c91bbc22f6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C8") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 196.85 49.53 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2fe78790-cca2-409c-b93b-37aabedf28fc") (property "Reference" "D4" (at 200.66 49.8474 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 200.66 52.3874 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "51ddc963-3d30-483d-9bc2-4132f910f060") ) (pin "2" (uuid "0156ed4a-ea56-4722-abd1-8c53663c89b8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D4") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 128.27 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "35b8e5b7-86db-4767-83b8-139f441e0d15") (property "Reference" "#FLG06" (at 231.14 130.175 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 231.14 133.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4938ca89-1a60-4caa-8779-14f9b0939b54") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG06") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 213.36 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "401ebed2-9a6b-4f43-85e9-9d349e9ed2dc") (property "Reference" "#PWR030" (at 213.36 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 213.36 110.49 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7cd3cb58-bf4e-48e0-9688-82d0eaadfb11") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR030") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 77.47 31.75 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4ad1e273-b8c7-4692-8f20-a03965035fd5") (property "Reference" "JP1" (at 74.93 30.4799 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Power Selector" (at 74.93 33.0199 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 77.47 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 77.47 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 77.47 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 77.47 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 77.47 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "01f8a431-8f1d-484b-adfb-52bf91b14015") ) (pin "2" (uuid "fad53864-49be-498c-8ddb-8660fa441076") ) (pin "3" (uuid "bf161ecb-0a1b-4f32-b753-7de2c5acf0fc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "JP1") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 196.85 39.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "536545a8-ec75-4173-afef-e4439b3a7241") (property "Reference" "R5" (at 199.39 38.0999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 199.39 40.6399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 195.072 39.37 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb5c2178-e587-4bcb-a28a-1cc92e885dee") ) (pin "2" (uuid "2590e1e1-9277-4805-91e0-0ff82117dd4b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R5") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 124.46 64.77 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "58655957-f60f-4545-8355-ae9b4994678a") (property "Reference" "#FLG01" (at 122.555 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 115.57 64.77 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a0d1c282-0cf5-4466-b722-e7221bb91d56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG01") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 158.75 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5a65fde0-58e9-41b7-bb45-7d350448b336") (property "Reference" "R3" (at 161.29 36.8299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 161.29 39.3699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 156.972 38.1 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "94fbde5b-d434-4b17-9453-e8674feca3f2") ) (pin "2" (uuid "18aad770-9410-43bf-9964-de860ebb2447") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R3") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 167.64 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (property "Reference" "C7" (at 170.18 48.9838 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 170.18 51.5238 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "80--T491A106K016" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2238d5cc-8204-4d20-9342-cd574c67db3a") ) (pin "2" (uuid "8d686ed2-73c8-42ff-a47d-31da8e433ade") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C7") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 82.55 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "631d19df-47e9-46b5-9f03-a8b36e85564d") (property "Reference" "#FLG05" (at 231.14 84.455 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 231.14 87.63 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6a852513-0ca2-449a-8391-47d4d2773d84") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG05") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 213.36 97.79 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6823870e-28cc-4ec1-9b5a-c8beb3288006") (property "Reference" "D5" (at 217.17 98.1074 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 217.17 100.6474 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "14af03e9-cb54-48a8-bd97-db8352bc404b") ) (pin "2" (uuid "f5956280-eabc-48e6-b057-01316bad4e23") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D5") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 128.27 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "73191297-a3db-406e-bde7-d8a9700d1092") (property "Reference" "#PWR029" (at 128.27 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 128.27 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "72785cea-756d-4fe3-a390-f369061f060c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR029") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 259.08 31.75 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "80fe98ae-b6bb-4c4d-a328-2228685fe207") (property "Reference" "#PWR032" (at 255.27 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 262.89 31.75 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c83113b7-e000-4a47-b128-d3671363e710") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR032") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 189.23 31.75 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "957eba50-6218-4e9d-a149-15ba007c2986") (property "Reference" "F2" (at 189.23 25.4 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 0.5A" (at 189.23 27.94 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 194.31 30.48 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C70072" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "530-0ZCJ0050AF2E" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e4b2258e-bc50-4151-87f8-7e6b714f7d85") ) (pin "2" (uuid "702dd0c1-69e1-46a2-8bbf-7ea1ed37c4d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "F2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 128.27 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9a6664d9-b6d9-4e81-817a-45c56239601e") (property "Reference" "C5" (at 123.19 40.64 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 25V" (at 116.84 43.18 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7194" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0f7544a4-ab8e-4f9b-91e3-5ba4e92e1ac4") ) (pin "2" (uuid "d281f145-6fd2-4512-9610-2764ef377070") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C5") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 213.36 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adba1fff-18c7-4fb6-97ae-324d243206c4") (property "Reference" "R6" (at 215.9 86.3599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "4.99k" (at 215.9 88.8999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 211.582 87.63 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114621" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ab6a180-794c-4ae0-bfa8-8c147a7fcef0") ) (pin "2" (uuid "9328c8c3-dcd3-4f00-a39f-fade45afabd1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R6") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 135.89 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b1335ea9-16da-44b9-9459-ec64501666b6") (property "Reference" "C6" (at 138.43 40.6462 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 138.43 43.1862 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2a91e0f5-8fd2-4fe3-9f2f-3caaf609a99b") ) (pin "2" (uuid "ff020eb8-22f7-4c53-80dd-4c5acbbe8264") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C6") (unit 1) ) ) ) ) (symbol (lib_id "Regulator_Linear:AP1117-ADJ") (at 148.59 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (property "Reference" "U5" (at 148.59 24.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SPX1117-ADJ" (at 148.59 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 148.59 26.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 151.13 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C67402" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a03290dc-5bf4-4876-a5ed-0f8ec60ae61c") ) (pin "2" (uuid "a6a10f38-3a15-4ce8-b02b-272c6aa02efd") ) (pin "3" (uuid "db402ed9-a87f-4cb2-b55d-934694f81f2e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "U5") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 247.65 33.02 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "be6a7bdf-cba9-48c9-9015-b1568cb26ba6") (property "Reference" "#FLG04" (at 247.65 34.925 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 247.65 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "70589d68-386a-47b4-abbe-9d76d68b515b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG04") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 254 80.01 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c3081ad6-d8e8-417c-b4c4-67183007b70e") (property "Reference" "#PWR033" (at 250.19 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 257.81 80.0099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ea5c4e1-6059-4cb8-87a2-8a8c96f0d1b1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR033") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 91.44 44.45 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c5742aa7-a922-4b75-8984-e94c4654beb8") (property "Reference" "D26" (at 93.98 43.1799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 93.98 45.7199 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 91.44 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 91.44 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 91.44 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 91.44 44.45 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 91.44 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 91.44 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f3e0add8-95ec-4c81-bf8e-bc18dfc6050e") ) (pin "2" (uuid "1de195ac-8ca3-4598-a59c-e90c5872b08b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D26") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 91.44 52.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ce4e6fbf-4c51-4ff6-a49f-515a1eee0f39") (property "Reference" "#PWR035" (at 91.44 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 91.44 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 91.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 91.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 91.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "691ba2e1-8c64-41ca-ba53-c102a001ac97") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR035") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 213.36 152.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d897ff9f-88ca-49e6-a493-27aafac3931d") (property "Reference" "#PWR031" (at 213.36 158.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 213.36 157.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c40bebcb-0c29-498a-ba2a-a58d3b3289e0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR031") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 60.96 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d9eb3553-5d5a-4c3d-8dfa-07b487c9d117") (property "Reference" "#FLG0103" (at 248.92 62.865 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 248.92 66.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "04913c01-2419-4361-b51c-791942f7b220") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG0103") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 158.75 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (property "Reference" "R4" (at 161.29 49.5299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1k" (at 161.29 52.0699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 156.972 50.8 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1ee86bd9-870e-432d-a2ab-540290a16777") ) (pin "2" (uuid "8a0775a2-408d-4757-a8ce-641d2be1ef58") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R4") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 213.36 143.51 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (property "Reference" "D6" (at 217.17 143.8274 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 217.17 146.3674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "80f557a6-2d76-417e-bf0b-8bda063ba0f9") ) (pin "2" (uuid "5a420f41-f924-4d93-b20d-c5b157a32cc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D6") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_Schottky") (at 224.79 45.72 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "feba9514-0d4e-45e7-8d97-6a49db19119e") (property "Reference" "D1" (at 227.33 44.7674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "SM5819PL 1A 40V" (at 227.33 47.3074 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C669023" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "833-SM5819PL-TP" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d15b37e1-a5ca-49d1-a900-aa771cca720f") ) (pin "2" (uuid "9bdf9a7a-a184-4405-9f4f-bf9545518a5b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D1") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0401D/kicad/sensors.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "d585006f-9358-47f4-9303-a822a0a26736") (paper "A4") (title_block (title "FanPico-0401D v1.1") (date "2024-08-15") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x02" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x02_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 1.27) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x03" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x03_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 1.27 7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_02x05_Odd_Even_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 5.207) (end 0 4.953) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 6.35) (end 3.81 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (rectangle (start 3.81 -4.953) (end 2.54 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 -2.413) (end 2.54 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 0.127) (end 2.54 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 2.667) (end 2.54 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 5.207) (end 2.54 4.953) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 5.08 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 -5.08 180) (length 3.81) (name "Pin_10" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 5.08 180) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 2.54 180) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_5" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 0 180) (length 3.81) (name "Pin_6" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_7" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 -2.54 180) (length 3.81) (name "Pin_8" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_9" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_2_Open" (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom yes) (on_board yes) (property "Reference" "JP" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_2_Open" (at 0 -2.286 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPST" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*2Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_2_Open_0_0" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_0_1" (arc (start 1.524 1.27) (mid 0 1.778) (end -1.524 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_1_1" (pin passive line (at -5.08 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 110.49 179.07) (diameter 0) (color 0 0 0 0) (uuid "053679b3-fade-499e-ad4a-1f39d9a2dbbc") ) (junction (at 130.81 179.07) (diameter 0) (color 0 0 0 0) (uuid "0dffa015-fc72-48fa-8b7a-180816804892") ) (junction (at 129.54 100.33) (diameter 0) (color 0 0 0 0) (uuid "22dd7e4e-fce0-47b7-9fd1-d9f1cdcadd39") ) (junction (at 218.44 31.75) (diameter 0) (color 0 0 0 0) (uuid "276b7cfa-e647-4043-9ad4-0ddaeadd5dd3") ) (junction (at 247.65 45.72) (diameter 0) (color 0 0 0 0) (uuid "36a31557-92dc-46cd-bc7c-1cd198676b62") ) (junction (at 128.27 133.35) (diameter 0) (color 0 0 0 0) (uuid "39392045-36bd-40ef-bc39-d1c31e0df9be") ) (junction (at 251.46 83.82) (diameter 0) (color 0 0 0 0) (uuid "3b5aee16-2742-4864-b8c0-20638ee73c26") ) (junction (at 224.79 31.75) (diameter 0) (color 0 0 0 0) (uuid "4106543d-4a14-4b68-a0da-3a690d35979c") ) (junction (at 113.03 116.84) (diameter 0) (color 0 0 0 0) (uuid "49301739-cfa3-4c5c-8e79-a3c3bd438d81") ) (junction (at 237.49 31.75) (diameter 0) (color 0 0 0 0) (uuid "58229dac-a2f3-4a34-9020-0587458811e8") ) (junction (at 243.84 50.8) (diameter 0) (color 0 0 0 0) (uuid "5992da16-2494-4911-969d-d83a9dca7f26") ) (junction (at 129.54 85.09) (diameter 0) (color 0 0 0 0) (uuid "6156855c-e03e-43d8-8f47-ed137494caa0") ) (junction (at 113.03 135.89) (diameter 0) (color 0 0 0 0) (uuid "66fd5475-32ae-4a14-9257-a77506ce9198") ) (junction (at 218.44 45.72) (diameter 0) (color 0 0 0 0) (uuid "709d6ebb-d781-47da-adf1-dc27ab808cb1") ) (junction (at 128.27 116.84) (diameter 0) (color 0 0 0 0) (uuid "7351a6f0-865f-4664-8298-222320cca211") ) (junction (at 64.77 39.37) (diameter 0) (color 0 0 0 0) (uuid "8d6d84ae-550d-4bb8-8a37-b11861e3bd19") ) (junction (at 116.84 181.61) (diameter 0) (color 0 0 0 0) (uuid "94754d10-9b56-4c68-b874-d4734fcc75ec") ) (junction (at 200.66 45.72) (diameter 0) (color 0 0 0 0) (uuid "96ecb8ab-555a-4c32-90ca-cab613c89f9e") ) (junction (at 237.49 48.26) (diameter 0) (color 0 0 0 0) (uuid "9edd940a-085f-4f2b-b53f-58508620dab7") ) (junction (at 115.57 97.79) (diameter 0) (color 0 0 0 0) (uuid "a097b4d9-a584-4c3a-bb1a-c38a7d05fa1b") ) (junction (at 224.79 50.8) (diameter 0) (color 0 0 0 0) (uuid "a54fd600-1d1c-4e6b-96df-f0b5a3549d0f") ) (junction (at 243.84 138.43) (diameter 0) (color 0 0 0 0) (uuid "af915fb8-9ca1-464e-80a1-6d5153f2e89a") ) (junction (at 246.38 43.18) (diameter 0) (color 0 0 0 0) (uuid "bcb69fe1-0f75-4996-8ca7-0098b6eac118") ) (junction (at 116.84 161.29) (diameter 0) (color 0 0 0 0) (uuid "d49b9e55-aa0b-45fd-bc07-f3f76da8470d") ) (junction (at 130.81 161.29) (diameter 0) (color 0 0 0 0) (uuid "db66d202-0e01-4bbe-a5f8-f8492b18dd07") ) (junction (at 115.57 85.09) (diameter 0) (color 0 0 0 0) (uuid "e9de87b9-3bff-4c95-8bbc-cf89668465df") ) (junction (at 64.77 59.69) (diameter 0) (color 0 0 0 0) (uuid "ec087b1e-38da-453c-b7d3-39ceb9080c5c") ) (junction (at 245.11 48.26) (diameter 0) (color 0 0 0 0) (uuid "ee8ffec2-1fa2-4a2b-bed7-989c791724b9") ) (no_connect (at 214.63 146.05) (uuid "889ad83b-789d-4b2d-835a-1df4a316990b") ) (wire (pts (xy 64.77 34.29) (xy 133.35 34.29) ) (stroke (width 0) (type default) ) (uuid "00f410b0-15a8-4b41-9022-820ff4814c96") ) (wire (pts (xy 133.35 44.45) (xy 64.77 44.45) ) (stroke (width 0) (type default) ) (uuid "077f93c1-3305-4f8a-9a42-aa76eb0b30d1") ) (wire (pts (xy 265.43 127) (xy 270.51 127) ) (stroke (width 0) (type default) ) (uuid "08dad95d-97e4-4f9a-ae9b-9b5bc33981b0") ) (wire (pts (xy 129.54 85.09) (xy 129.54 87.63) ) (stroke (width 0) (type default) ) (uuid "0bb0c548-dae9-4e87-8d00-61f5933e09cb") ) (wire (pts (xy 128.27 116.84) (xy 143.51 116.84) ) (stroke (width 0) (type default) ) (uuid "0bfcab00-b59e-4919-a95d-ce8d22f1c87b") ) (wire (pts (xy 54.61 59.69) (xy 64.77 59.69) ) (stroke (width 0) (type default) ) (uuid "0e3b0446-4649-4f96-941f-62a4a86d933e") ) (wire (pts (xy 130.81 161.29) (xy 130.81 166.37) ) (stroke (width 0) (type default) ) (uuid "0e3f5bd0-6c7c-4de3-ba51-06f6b056033c") ) (wire (pts (xy 109.22 97.79) (xy 115.57 97.79) ) (stroke (width 0) (type default) ) (uuid "119d6fd7-4b6d-4b96-a1db-7179f51c0173") ) (wire (pts (xy 129.54 100.33) (xy 143.51 100.33) ) (stroke (width 0) (type default) ) (uuid "1663b4cd-e369-4ed8-b5bd-27ed82ee6066") ) (wire (pts (xy 245.11 48.26) (xy 245.11 60.96) ) (stroke (width 0) (type default) ) (uuid "17144053-f18c-4e79-a53a-b2c7751a0d41") ) (wire (pts (xy 243.84 138.43) (xy 246.38 138.43) ) (stroke (width 0) (type default) ) (uuid "17bb8ae3-ddba-46a7-b86a-ec52a9c8acf2") ) (wire (pts (xy 210.82 50.8) (xy 224.79 50.8) ) (stroke (width 0) (type default) ) (uuid "1a7b5f05-98ca-48f8-b19b-cc06cf151f09") ) (wire (pts (xy 105.41 59.69) (xy 133.35 59.69) ) (stroke (width 0) (type default) ) (uuid "21e9e787-9a7d-467f-8a1d-5fc2791834e6") ) (wire (pts (xy 64.77 34.29) (xy 64.77 39.37) ) (stroke (width 0) (type default) ) (uuid "21ed8d62-3f95-43c3-8d54-5eba4cc044ac") ) (wire (pts (xy 237.49 48.26) (xy 245.11 48.26) ) (stroke (width 0) (type default) ) (uuid "26888b28-2bb2-45e9-b3c6-0dfb49eeeed0") ) (polyline (pts (xy 184.15 102.362) (xy 273.812 102.362) ) (stroke (width 0) (type default) ) (uuid "26e96cd7-6f13-447c-beab-06aa46631838") ) (wire (pts (xy 130.81 173.99) (xy 130.81 179.07) ) (stroke (width 0) (type default) ) (uuid "2ea4e539-49d6-401b-bb4a-cda99ee07bca") ) (wire (pts (xy 224.79 43.18) (xy 224.79 50.8) ) (stroke (width 0) (type default) ) (uuid "2ece1c06-b1f3-48d1-ba6f-8d09fe371bca") ) (wire (pts (xy 110.49 179.07) (xy 130.81 179.07) ) (stroke (width 0) (type default) ) (uuid "3040f551-74f6-4350-bc5c-35ed1dcb9cf1") ) (polyline (pts (xy 194.056 110.236) (xy 277.114 110.236) ) (stroke (width 0) (type default) ) (uuid "33e4e784-7fc7-4884-ade8-8a3b91af368b") ) (wire (pts (xy 115.57 97.79) (xy 143.51 97.79) ) (stroke (width 0) (type default) ) (uuid "345dcbf3-0d24-424c-b025-5cae83d8ee39") ) (wire (pts (xy 129.54 95.25) (xy 129.54 100.33) ) (stroke (width 0) (type default) ) (uuid "35dc8c2f-a87f-41c1-8e81-bb8ce4a0eb58") ) (wire (pts (xy 212.09 31.75) (xy 218.44 31.75) ) (stroke (width 0) (type default) ) (uuid "3662e956-627d-485a-b083-8a9315f923b9") ) (wire (pts (xy 246.38 31.75) (xy 246.38 43.18) ) (stroke (width 0) (type default) ) (uuid "38e2d7b2-f0fd-42a7-ab6b-0a8bb4bc75cf") ) (wire (pts (xy 101.6 172.72) (xy 110.49 172.72) ) (stroke (width 0) (type default) ) (uuid "3ab9a561-4873-46a5-8dc4-b52de81a4b5a") ) (wire (pts (xy 246.38 43.18) (xy 246.38 58.42) ) (stroke (width 0) (type default) ) (uuid "3af1a1e7-e622-4b47-966e-5c6c5bece2ff") ) (wire (pts (xy 224.79 31.75) (xy 224.79 35.56) ) (stroke (width 0) (type default) ) (uuid "3bed6f46-6fc7-4884-9086-577657240d24") ) (wire (pts (xy 237.49 43.18) (xy 237.49 48.26) ) (stroke (width 0) (type default) ) (uuid "3cf635c8-2861-4148-a11c-5e143a722eb6") ) (wire (pts (xy 243.84 50.8) (xy 250.19 50.8) ) (stroke (width 0) (type default) ) (uuid "3df71750-7278-42c3-8084-5eb2e2e9edce") ) (wire (pts (xy 115.57 85.09) (xy 115.57 87.63) ) (stroke (width 0) (type default) ) (uuid "3e3fbb6d-bde3-4b30-a608-c38c2150fed6") ) (wire (pts (xy 96.52 181.61) (xy 116.84 181.61) ) (stroke (width 0) (type default) ) (uuid "3f313bd9-4877-4dad-bd62-80c5068a0371") ) (wire (pts (xy 245.11 48.26) (xy 250.19 48.26) ) (stroke (width 0) (type default) ) (uuid "415a5fa9-05d5-4190-a3fe-c47fc356b709") ) (wire (pts (xy 64.77 39.37) (xy 97.79 39.37) ) (stroke (width 0) (type default) ) (uuid "41b1de41-5ad9-4bdb-9a97-c9361c02ba95") ) (wire (pts (xy 99.06 179.07) (xy 110.49 179.07) ) (stroke (width 0) (type default) ) (uuid "45e258a2-ee98-40ff-b051-385623012e55") ) (wire (pts (xy 143.51 161.29) (xy 143.51 176.53) ) (stroke (width 0) (type default) ) (uuid "45e9946b-e7a1-4587-9843-3be82822661a") ) (wire (pts (xy 246.38 127) (xy 243.84 127) ) (stroke (width 0) (type default) ) (uuid "47b84aee-9f2d-44d5-91ba-51938c13e023") ) (wire (pts (xy 54.61 39.37) (xy 64.77 39.37) ) (stroke (width 0) (type default) ) (uuid "49d6104e-9176-4f0e-aaa8-29e669a60268") ) (wire (pts (xy 218.44 43.18) (xy 218.44 45.72) ) (stroke (width 0) (type default) ) (uuid "4ad45e05-4ac7-4562-b096-72c5d6a5ef51") ) (wire (pts (xy 64.77 64.77) (xy 64.77 62.23) ) (stroke (width 0) (type default) ) (uuid "4bff4d15-1446-4517-839c-9433d6f48458") ) (wire (pts (xy 200.66 46.99) (xy 200.66 45.72) ) (stroke (width 0) (type default) ) (uuid "4c847e76-c687-4d93-927f-09c67a125d70") ) (wire (pts (xy 64.77 59.69) (xy 97.79 59.69) ) (stroke (width 0) (type default) ) (uuid "4ce5bf56-c452-4e1d-bbe1-41bcfbeccefb") ) (wire (pts (xy 128.27 116.84) (xy 128.27 119.38) ) (stroke (width 0) (type default) ) (uuid "5879c51f-cf74-4098-bbc8-669412b3ca0d") ) (wire (pts (xy 247.65 55.88) (xy 247.65 45.72) ) (stroke (width 0) (type default) ) (uuid "5a949d8b-8520-4203-b9aa-5ae98266213e") ) (wire (pts (xy 143.51 116.84) (xy 143.51 128.27) ) (stroke (width 0) (type default) ) (uuid "5aeb0e5a-de6e-41d8-9af0-1831f7c24483") ) (wire (pts (xy 195.58 45.72) (xy 200.66 45.72) ) (stroke (width 0) (type default) ) (uuid "5efb4ee5-db4c-4901-aede-2d0aac13d02f") ) (wire (pts (xy 64.77 54.61) (xy 133.35 54.61) ) (stroke (width 0) (type default) ) (uuid "60db9e27-0374-439a-8f9a-939b0aadab74") ) (wire (pts (xy 113.03 127) (xy 113.03 135.89) ) (stroke (width 0) (type default) ) (uuid "63705459-314e-4146-9b59-47bf6b6e9969") ) (wire (pts (xy 116.84 181.61) (xy 143.51 181.61) ) (stroke (width 0) (type default) ) (uuid "64ce520c-fb81-4f36-b792-61ad9050bc69") ) (wire (pts (xy 109.22 100.33) (xy 129.54 100.33) ) (stroke (width 0) (type default) ) (uuid "6506b179-2f17-4447-86b9-658e11b167c7") ) (wire (pts (xy 64.77 44.45) (xy 64.77 41.91) ) (stroke (width 0) (type default) ) (uuid "6606d0e8-ac80-422e-aa4d-41d982eaa8cd") ) (wire (pts (xy 116.84 161.29) (xy 116.84 166.37) ) (stroke (width 0) (type default) ) (uuid "6817c1d5-4c23-476a-ab09-4a3a7e3cf241") ) (wire (pts (xy 87.63 172.72) (xy 91.44 172.72) ) (stroke (width 0) (type default) ) (uuid "709d62fb-6d09-444c-b351-e70037fa6ca3") ) (wire (pts (xy 107.95 135.89) (xy 113.03 135.89) ) (stroke (width 0) (type default) ) (uuid "770202a7-5c43-4830-83a4-96d34b531445") ) (wire (pts (xy 129.54 85.09) (xy 143.51 85.09) ) (stroke (width 0) (type default) ) (uuid "77e32df0-94f8-43ed-b6a9-92adeb031eb4") ) (wire (pts (xy 254 127) (xy 257.81 127) ) (stroke (width 0) (type default) ) (uuid "78bcfd43-711d-4332-8228-69e7ad029305") ) (wire (pts (xy 107.95 116.84) (xy 113.03 116.84) ) (stroke (width 0) (type default) ) (uuid "78c6a107-99b4-41bc-bfcd-497c4bd16704") ) (wire (pts (xy 246.38 58.42) (xy 250.19 58.42) ) (stroke (width 0) (type default) ) (uuid "7adb6cec-f9cd-48fe-900c-e0b82c26b2a9") ) (polyline (pts (xy 273.812 21.59) (xy 184.15 21.59) ) (stroke (width 0) (type default) ) (uuid "7b60be7a-8294-4a6f-9c33-957ad517142d") ) (wire (pts (xy 254 83.82) (xy 251.46 83.82) ) (stroke (width 0) (type default) ) (uuid "7c37ea8f-6b08-4035-bd02-e6f20ab3fe91") ) (wire (pts (xy 243.84 50.8) (xy 243.84 63.5) ) (stroke (width 0) (type default) ) (uuid "7e880329-9488-4a40-bfdf-65f0ef95bfe6") ) (wire (pts (xy 200.66 45.72) (xy 218.44 45.72) ) (stroke (width 0) (type default) ) (uuid "81f3c22a-339b-4548-b0ba-979327a7c1f4") ) (wire (pts (xy 210.82 48.26) (xy 237.49 48.26) ) (stroke (width 0) (type default) ) (uuid "81f71976-6d83-4420-b420-9853fdc18760") ) (wire (pts (xy 99.06 161.29) (xy 116.84 161.29) ) (stroke (width 0) (type default) ) (uuid "85f92166-9cb7-4f73-a4a2-eded4dcbbf1d") ) (wire (pts (xy 64.77 54.61) (xy 64.77 59.69) ) (stroke (width 0) (type default) ) (uuid "8916f103-fe47-4f1e-8585-81d31b6e452b") ) (wire (pts (xy 214.63 138.43) (xy 243.84 138.43) ) (stroke (width 0) (type default) ) (uuid "8a912b30-d979-4672-83a5-621c4aee4352") ) (wire (pts (xy 115.57 85.09) (xy 129.54 85.09) ) (stroke (width 0) (type default) ) (uuid "931e3554-13ed-43a4-954f-8c71bde5a808") ) (wire (pts (xy 250.19 63.5) (xy 243.84 63.5) ) (stroke (width 0) (type default) ) (uuid "933ac721-fa61-4b97-8205-371686fbb37e") ) (wire (pts (xy 113.03 135.89) (xy 143.51 135.89) ) (stroke (width 0) (type default) ) (uuid "95a9dae8-3181-493d-a01d-92d56fa9b770") ) (wire (pts (xy 130.81 161.29) (xy 143.51 161.29) ) (stroke (width 0) (type default) ) (uuid "988e59e5-7071-491b-95b8-5b0296e6644d") ) (wire (pts (xy 105.41 39.37) (xy 133.35 39.37) ) (stroke (width 0) (type default) ) (uuid "98f28219-1903-423f-8493-20aabedec9cb") ) (wire (pts (xy 110.49 172.72) (xy 110.49 179.07) ) (stroke (width 0) (type default) ) (uuid "9b5ea938-6059-454c-87ec-2f80c50770b0") ) (wire (pts (xy 64.77 41.91) (xy 54.61 41.91) ) (stroke (width 0) (type default) ) (uuid "a16a9bb7-db53-4fc6-b3c4-23725deea405") ) (wire (pts (xy 54.61 62.23) (xy 64.77 62.23) ) (stroke (width 0) (type default) ) (uuid "a435e9a5-7616-4099-96f2-ede933ae7ed2") ) (polyline (pts (xy 194.31 157.734) (xy 277.368 157.734) ) (stroke (width 0) (type default) ) (uuid "a72637bc-7482-47ed-8462-10e6fc7e31d8") ) (polyline (pts (xy 273.812 102.616) (xy 273.812 21.844) ) (stroke (width 0) (type default) ) (uuid "a83b3a5a-257b-43b9-9d28-3cbba2549a16") ) (wire (pts (xy 250.19 60.96) (xy 245.11 60.96) ) (stroke (width 0) (type default) ) (uuid "aa20d69f-4d5d-45f1-bb52-0dd914b0907d") ) (wire (pts (xy 128.27 133.35) (xy 143.51 133.35) ) (stroke (width 0) (type default) ) (uuid "ab255d34-e768-40d7-8c43-37814d2ace69") ) (wire (pts (xy 214.63 143.51) (xy 233.68 143.51) ) (stroke (width 0) (type default) ) (uuid "b8d81fc3-e785-4c6b-898f-db0a62b229e4") ) (wire (pts (xy 116.84 161.29) (xy 130.81 161.29) ) (stroke (width 0) (type default) ) (uuid "b9bc7815-2360-4e6f-b9aa-32ce27f3872e") ) (wire (pts (xy 128.27 127) (xy 128.27 133.35) ) (stroke (width 0) (type default) ) (uuid "ba834cdd-9f1b-41ca-9dca-96c21bd39d33") ) (wire (pts (xy 218.44 31.75) (xy 224.79 31.75) ) (stroke (width 0) (type default) ) (uuid "bb63d84a-cf34-44c7-9135-babfd6842713") ) (wire (pts (xy 218.44 31.75) (xy 218.44 35.56) ) (stroke (width 0) (type default) ) (uuid "bc7984b2-e5f5-4bd6-9f76-65843d4edea7") ) (wire (pts (xy 115.57 95.25) (xy 115.57 97.79) ) (stroke (width 0) (type default) ) (uuid "c1cc74f1-d06f-4da3-8edd-c9440dc39ec5") ) (wire (pts (xy 237.49 91.44) (xy 251.46 91.44) ) (stroke (width 0) (type default) ) (uuid "cb4203db-a22d-417c-ab33-1e9e58b02f0d") ) (polyline (pts (xy 194.056 157.734) (xy 194.056 110.236) ) (stroke (width 0) (type default) ) (uuid "cee9c282-a05f-4013-ab0e-d18b1d27a303") ) (wire (pts (xy 270.51 127) (xy 270.51 129.54) ) (stroke (width 0) (type default) ) (uuid "cf77aa23-f7ea-4952-8c34-8b6a4a4bc065") ) (wire (pts (xy 254 138.43) (xy 265.43 138.43) ) (stroke (width 0) (type default) ) (uuid "cf857b04-3c7c-4fb4-bb66-ed7b7dc6faf7") ) (wire (pts (xy 237.49 31.75) (xy 237.49 35.56) ) (stroke (width 0) (type default) ) (uuid "d1cadf87-4e58-4712-bb4c-cdbf7befaa40") ) (polyline (pts (xy 184.15 21.59) (xy 184.15 102.362) ) (stroke (width 0) (type default) ) (uuid "d414fde8-c194-45ee-9c1b-44218d35b1eb") ) (wire (pts (xy 237.49 31.75) (xy 246.38 31.75) ) (stroke (width 0) (type default) ) (uuid "d46c0f74-3517-48f7-a0fe-43fa92f4cb89") ) (wire (pts (xy 130.81 179.07) (xy 143.51 179.07) ) (stroke (width 0) (type default) ) (uuid "d96b05bc-d217-456d-b9ef-77c0ce60c686") ) (wire (pts (xy 247.65 45.72) (xy 250.19 45.72) ) (stroke (width 0) (type default) ) (uuid "debd9431-7cf3-4b9b-8330-b539bed6f4f2") ) (wire (pts (xy 243.84 127) (xy 243.84 138.43) ) (stroke (width 0) (type default) ) (uuid "e3cf945a-d6a2-4bb8-adbe-2640bfb8e6b4") ) (wire (pts (xy 214.63 140.97) (xy 233.68 140.97) ) (stroke (width 0) (type default) ) (uuid "e4116d09-79d7-482b-bc68-2a44fe25eef4") ) (wire (pts (xy 77.47 172.72) (xy 80.01 172.72) ) (stroke (width 0) (type default) ) (uuid "e488840b-8b2c-411d-92dd-604f67149ef5") ) (polyline (pts (xy 193.802 69.342) (xy 267.335 69.215) ) (stroke (width 0) (type default) ) (uuid "e5e95153-bf4d-4fca-b912-7260c40abef3") ) (wire (pts (xy 133.35 64.77) (xy 64.77 64.77) ) (stroke (width 0) (type default) ) (uuid "e63f4856-db36-46c6-9c02-2a6c34cdff98") ) (wire (pts (xy 251.46 91.44) (xy 251.46 83.82) ) (stroke (width 0) (type default) ) (uuid "e7267e4d-018e-4b58-b0a8-3b8c176ac8d8") ) (wire (pts (xy 100.33 130.81) (xy 143.51 130.81) ) (stroke (width 0) (type default) ) (uuid "e752342c-ee39-4e1c-ac9c-f4bccf1807d1") ) (wire (pts (xy 113.03 116.84) (xy 113.03 119.38) ) (stroke (width 0) (type default) ) (uuid "e83a5fe9-ebaa-4dc5-aa0a-ec19aa12d80a") ) (wire (pts (xy 109.22 85.09) (xy 115.57 85.09) ) (stroke (width 0) (type default) ) (uuid "e9a65bc3-51f7-453b-bdc4-e6c7e0b5e967") ) (wire (pts (xy 224.79 31.75) (xy 237.49 31.75) ) (stroke (width 0) (type default) ) (uuid "ea867bec-f8d0-44a4-a150-47a97d9102d9") ) (wire (pts (xy 218.44 45.72) (xy 247.65 45.72) ) (stroke (width 0) (type default) ) (uuid "ec88ad4b-f60b-4181-94f7-ba27f1196fd1") ) (wire (pts (xy 116.84 173.99) (xy 116.84 181.61) ) (stroke (width 0) (type default) ) (uuid "f13f2e8d-e1d5-41a8-876f-d828c9b42c6c") ) (wire (pts (xy 250.19 55.88) (xy 247.65 55.88) ) (stroke (width 0) (type default) ) (uuid "f2db68af-9da0-4201-87be-05aaf3769dd3") ) (wire (pts (xy 200.66 52.07) (xy 200.66 55.88) ) (stroke (width 0) (type default) ) (uuid "f43d1092-cc33-4216-aee3-132f201df66a") ) (wire (pts (xy 224.79 50.8) (xy 243.84 50.8) ) (stroke (width 0) (type default) ) (uuid "f4b64215-bc7e-4362-8da2-5f3b6bc1640a") ) (wire (pts (xy 113.03 116.84) (xy 128.27 116.84) ) (stroke (width 0) (type default) ) (uuid "f8637f24-bfa3-46cd-9f39-9da25ec71cda") ) (wire (pts (xy 251.46 83.82) (xy 237.49 83.82) ) (stroke (width 0) (type default) ) (uuid "f8e89f6e-5646-4792-afd5-f4c0bc48d620") ) (wire (pts (xy 246.38 43.18) (xy 250.19 43.18) ) (stroke (width 0) (type default) ) (uuid "f94f79aa-600e-45c3-8c4f-b1ae8c05eac1") ) (wire (pts (xy 107.95 133.35) (xy 128.27 133.35) ) (stroke (width 0) (type default) ) (uuid "fbca60dd-b89d-44d2-93de-d69dd093e7fc") ) (polyline (pts (xy 277.114 110.236) (xy 277.114 157.734) ) (stroke (width 0) (type default) ) (uuid "feca800e-838c-4ac5-88ce-b205341fa361") ) (wire (pts (xy 143.51 85.09) (xy 143.51 95.25) ) (stroke (width 0) (type default) ) (uuid "ffdc346c-7ebe-45f1-8336-dec60066f341") ) (text "Connectors / Sensors" (exclude_from_sim no) (at 19.05 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "490ff861-9b1a-489c-8371-d793232cccff") ) (text "AUX Power Connector" (exclude_from_sim no) (at 226.06 113.538 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "63e848a9-e237-490d-b09d-aba8115e6505") ) (text "Display Connectors" (exclude_from_sim no) (at 233.934 24.892 0) (effects (font (size 1.27 1.27) ) ) (uuid "dd4d986e-176d-4f9c-b661-e4e440f1737b") ) (label "AUX12_IN" (at 223.52 138.43 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5e41cf2e-f661-492b-9030-f5d4b6ae6c11") ) (global_label "TX" (shape input) (at 109.22 100.33 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "08c18cc4-1af6-48e7-92e1-e062fa26ce7d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.0659 100.2506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 109.22 85.09 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e1334bd-23ef-489e-8565-a98a633c80d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.9364 85.0106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 237.49 88.9 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "161c2cf4-bf0f-4c07-8972-283fdbda7c4e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 243.7736 88.9794 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL" (shape input) (at 210.82 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1dfb68bd-bc95-4c6d-9ab7-fd3ee11ceead") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 199.3355 48.1806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SDA" (shape input) (at 210.82 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3b1fd764-973c-4159-8aa8-20713febd73c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 200.1217 50.7206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 237.49 93.98 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "4259f4f2-3546-4027-8088-674c0bb9d5cc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 243.7736 94.0594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX" (shape input) (at 109.22 97.79 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5753c167-6ec3-4788-b92d-354b21327b79") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.8802 97.7106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 233.68 143.51 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "5905367f-3dc7-416a-bb02-4302428921bc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 239.9636 143.5894 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 133.35 64.77 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "636ec398-3d70-4359-98b8-4ebd9a3143be") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.7221 64.8494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MOSI" (shape input) (at 237.49 86.36 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "699aad88-1bb3-4bbd-8b29-64e419b540b0") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 245.0714 86.36 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL" (shape input) (at 107.95 135.89 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6a5ff76d-4783-4c50-a9b7-235da7baee63") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 96.4655 135.8106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "CS" (shape input) (at 224.79 88.9 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "77bd438f-f576-41eb-b9ea-41cb11db2e36") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 219.3253 88.9 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 133.35 39.37 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7988ac95-4624-454c-b52e-ec62e32b2c5c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.8669 39.2906 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MISO" (shape input) (at 224.79 83.82 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bd478a7-b5fc-42f9-969f-0aaf955ab383") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.6359 83.7406 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape input) (at 224.79 93.98 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8b8962f0-26e2-44db-955c-74b5d52a86a7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 217.7807 93.9006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 233.68 140.97 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "97418e30-d342-4cbd-9b71-5f2d1041e62f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 239.9636 141.0494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 133.35 59.69 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "aee7a529-6ac6-4a80-9568-e26a40779fdc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.8669 59.6106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 133.35 34.29 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c05c976b-1ed4-430c-aa71-ee5c6fb1a5ed") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.556 34.2106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 212.09 31.75 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c3c19ff0-1f21-4dd5-b725-a38516dc72dd") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 205.8064 31.6706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AUX12V" (shape output) (at 265.43 138.43 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d9855db4-938d-4902-9d2d-9958eeff7a74") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 274.9793 138.5094 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 107.95 116.84 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcf29819-278b-4223-a495-45589e3fd725") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 101.6664 116.7606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SCK" (shape input) (at 224.79 86.36 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "de0cf31c-915b-41d4-9420-8f86718e8551") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 218.0553 86.36 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SDA" (shape input) (at 107.95 133.35 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dfe4bd0e-4720-4c5e-8fac-872a6c53b586") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.2517 133.2706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "LCD_RESET" (shape input) (at 224.79 91.44 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e97b6a0f-21ab-435f-b8c9-8dc78050bb9c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 211.524 91.44 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "DQ" (shape input) (at 99.06 179.07 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ec8ed316-32f4-4b78-a8a3-2397480f3868") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 93.4743 179.07 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 99.06 161.29 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eeb79481-1206-4ffa-bb26-579a996a0e2d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.2043 161.29 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 133.35 54.61 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f07b76b4-4f46-4a6e-9724-a7602f5db188") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.556 54.5306 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 133.35 44.45 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fb13280b-75f6-4af9-8280-b5793cf708fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.7221 44.3706 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "Device:D_TVS") (at 218.44 39.37 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "03d177c9-6c39-4ef8-8206-d6721c5491b6") (property "Reference" "D29" (at 212.344 38.1 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 208.026 40.64 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 218.44 39.37 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 218.44 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "325ed6a2-c205-413d-baf6-f319d394cb47") ) (pin "2" (uuid "6a0b7ebf-1abd-4473-9a00-41b64124687d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D29") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 116.84 170.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0c54e4ad-df7a-4f93-94d7-9edfd7e30a70") (property "Reference" "D23" (at 119.38 168.9099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 119.38 171.4499 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 116.84 170.18 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e09aa495-9e22-4b63-8742-7340c1cea9a9") ) (pin "2" (uuid "3a63b840-6b64-44d9-8183-093974e5d7a6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D23") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 148.59 130.81 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "19772840-0f1c-4864-a3f2-b85e11be6f6a") (property "Reference" "J6" (at 151.13 130.8099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "QWIIC" (at 151.13 133.3499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C160404" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "441b629a-67e3-4fe8-9fac-c79b803c42aa") ) (pin "2" (uuid "29680d53-5b34-42a2-8297-b9ec21c13bd7") ) (pin "3" (uuid "1a34ebd1-77e2-4c79-85b8-85a9fdc846d9") ) (pin "4" (uuid "1e878d6f-f0ee-4030-ae5e-272ce88ac9e7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J6") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 200.66 49.53 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "28dd9e1e-dbf3-4782-9cbc-a3a86d1241f2") (property "Reference" "C32" (at 194.31 48.26 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 200.66 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "88cb34e0-405f-4907-9e0e-27d90265108d") ) (pin "2" (uuid "065266e7-8b6e-4f40-8a23-273672f2c3aa") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "C32") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 49.53 62.23 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "2ab9bb49-234a-4ed1-af89-c2604f58121c") (property "Reference" "J17" (at 46.99 55.88 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor2" (at 45.72 67.31 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C158012" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78a9b55b-caff-4420-a6ae-19a7131d97be") ) (pin "2" (uuid "30a06f66-9fee-4536-b302-01811e2778bb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J17") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 115.57 91.44 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2b949ba6-5a8f-4360-8686-0d967c367aff") (property "Reference" "D17" (at 118.11 90.1699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 118.11 92.7099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 115.57 91.44 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 115.57 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2e0a213b-0658-4c22-b8ff-b1fd05a8b69b") ) (pin "2" (uuid "9fb3ec61-58cf-4425-878b-fe0951abf63e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D17") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 209.55 143.51 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "32d11869-f2aa-448e-999e-866b16c452b4") (property "Reference" "J1" (at 207.01 143.5101 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Floppy / DC Connector" (at 220.98 149.86 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "FanPico:TE 171826-4 Floppy 4-pin Combo" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C590635 / C720558" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "571-1718264" (at 209.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ff076654-70d7-4ea7-acc1-ca9f2cf66b02") ) (pin "2" (uuid "bf015ec5-74f2-4db6-8dd3-6bee265faa54") ) (pin "3" (uuid "f0771b12-0e44-4ffc-94d0-44335478b4f7") ) (pin "4" (uuid "6af8bfba-ab7b-49d4-aa4a-01b6b4ea1faf") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J1") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 261.62 127 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3974644d-1afb-4244-87b2-ddd0e82a247e") (property "Reference" "D32" (at 263.2075 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED 0805 (green)" (at 263.2075 121.92 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 261.62 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "aeb45997-1443-4855-b1a7-e5c3f797d6d8") ) (pin "2" (uuid "853629d0-3737-4274-9ba4-09f520354c9e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D32") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 129.54 91.44 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "48c1ca3c-b2b7-4043-b6d4-db9851ebd51f") (property "Reference" "D16" (at 132.08 90.1699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 132.08 92.7099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 129.54 91.44 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 129.54 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "11abef81-8587-4cf7-a1e1-2a3f7802d9fd") ) (pin "2" (uuid "0b9f47f1-92aa-4dad-92b3-b118cbee6dbd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D16") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 250.19 138.43 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4c74a725-f10f-4273-b4be-b4c0a9315c7e") (property "Reference" "F1" (at 250.19 134.62 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 2A" (at 250.19 142.24 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 255.27 137.16 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 250.19 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 250.19 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C910843" (at 250.19 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 250.19 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 250.19 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4a6afc4c-451c-4825-b5d8-4c1046f2ba13") ) (pin "2" (uuid "dc9bb051-09b8-4555-8453-fa79b6e4832a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "F1") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 255.27 45.72 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d8b05b1-f18d-4998-9d6d-a27d459de37e") (property "Reference" "J3" (at 257.81 45.7199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "I2C (OLED)" (at 257.81 48.2599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 255.27 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 255.27 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 255.27 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 255.27 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 255.27 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "985cedae-e50b-4773-a371-982838e92c57") ) (pin "2" (uuid "8aab3543-4cbb-4d18-8f33-d37222d25e2d") ) (pin "3" (uuid "3800df87-a3ad-4ded-948b-8bc4ea0ce6a2") ) (pin "4" (uuid "c19d3082-c024-4f0e-bd14-15efaa4184dd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J3") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 77.47 172.72 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4dfbc5c6-1bde-43f9-af3a-4f9982aa6859") (property "Reference" "#PWR028" (at 81.28 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 67.31 172.72 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 77.47 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 77.47 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 77.47 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "564e1deb-f553-4924-ad61-0e3e7a4a557b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR028") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 250.19 127 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "51baaa29-f05a-4851-bfcb-693831b4254a") (property "Reference" "R10" (at 250.19 120.65 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "49.9k" (at 250.19 123.19 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 250.19 128.778 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 250.19 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 250.19 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 250.19 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 250.19 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 250.19 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "abda3389-f543-4e17-bfd6-f7ef788352dd") ) (pin "2" (uuid "3216f6e5-bbdd-4a71-aac6-b704f0648c76") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R10") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 128.27 123.19 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "543211f1-d18f-43bc-a156-ce9568f63336") (property "Reference" "D13" (at 130.81 121.9199 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 130.81 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 128.27 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 128.27 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 128.27 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 128.27 123.19 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 128.27 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 128.27 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7c567bdc-4e1d-4583-ad01-525d257c850b") ) (pin "2" (uuid "59e4e0fb-96e6-4242-9ac6-4b6215fdd3c9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D13") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 200.66 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "564e8b0a-6edb-490c-a023-cb0fc6cd3ad3") (property "Reference" "#PWR087" (at 200.66 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 200.66 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 200.66 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 200.66 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 200.66 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d1a52821-f1e1-4570-8ce1-2964d3085977") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR087") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 195.58 45.72 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5dd6ead8-2ab0-4201-9247-66fd8605564f") (property "Reference" "#PWR085" (at 199.39 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 191.77 45.7199 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 195.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 195.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 195.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e952d672-7cfa-4346-8d14-cb4bd61102bb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR085") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 101.6 59.69 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "5effda4f-f509-4c42-bf3f-632077643ed1") (property "Reference" "R51" (at 101.6 57.15 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 101.6 62.23 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 101.6 61.468 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 101.6 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "23e8f6d6-dc05-413b-bdf4-3972f7aaa452") ) (pin "2" (uuid "a8fb4119-650e-4ac6-94c5-3cf1ab9f9325") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R51") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 229.87 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6c8ccf28-571a-4874-954d-04889ea48734") (property "Reference" "J18" (at 229.87 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LCD (SPI)" (at 231.14 78.74 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 229.87 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 229.87 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 229.87 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 229.87 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 229.87 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6c3c17a3-b354-46df-abf8-701548de3e35") ) (pin "10" (uuid "cf2609e2-5052-419b-9511-a793518a4df9") ) (pin "2" (uuid "b55eed68-4b8c-4eee-a793-aac1202e17f9") ) (pin "3" (uuid "32552d6b-7bd5-44d3-a00e-85b3d63fa4d8") ) (pin "4" (uuid "ef80b7b7-74ed-4dd4-9239-6ea19e969f77") ) (pin "5" (uuid "23af5b05-ff7e-4812-bfac-36aa3231660e") ) (pin "6" (uuid "1e409584-b0b9-499d-ad7c-3bd934eef008") ) (pin "7" (uuid "f04a08a6-ffb3-4c32-9abb-2f2a8cf6d8a6") ) (pin "8" (uuid "99191788-278b-4546-8f8f-35cb0f6cc324") ) (pin "9" (uuid "b4755501-a9c8-4385-accd-cd1091a9b364") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J18") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 101.6 39.37 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6f5e15d3-8889-4380-8ba4-82af742cd899") (property "Reference" "R50" (at 101.6 36.83 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 101.6 41.91 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 101.6 41.148 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 101.6 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb8f7dba-8ef6-4057-b135-05bf0aa71ee1") ) (pin "2" (uuid "82f32688-55a7-455e-a0b9-830a1e12ca5f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R50") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 270.51 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "76ef022a-c8e1-4ba6-889c-ab8435e98388") (property "Reference" "#PWR024" (at 270.51 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 270.51 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 270.51 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 270.51 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "997b8e17-cb60-41b9-bacc-dc96f6643aed") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR024") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 83.82 172.72 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "7b19fa25-e005-4aa6-aa89-d93cfa6f6b28") (property "Reference" "R2" (at 83.82 170.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "4.7k" (at 83.82 175.26 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 83.82 174.498 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 83.82 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 83.82 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C99782" (at 83.82 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 83.82 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 83.82 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2fe27781-cd52-4f18-893f-542f94672b0b") ) (pin "2" (uuid "0fe95778-2517-439f-8fd0-882da8d7358f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R2") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 96.52 181.61 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "7c99b2af-4aad-430d-9971-0a9de632cddd") (property "Reference" "#PWR013" (at 100.33 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 86.36 181.61 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 96.52 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 96.52 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 96.52 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9b123b41-c04b-45ca-8f6a-eaf749d7458b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR013") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 49.53 41.91 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "86718c7d-2943-402b-9e45-e521335cadab") (property "Reference" "J16" (at 46.99 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor1" (at 45.72 46.99 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C158012" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2211dc9b-c955-4613-93c5-41b96fa1230a") ) (pin "2" (uuid "4cb7a894-bb4e-4af1-ac70-43aa5cd340b6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J16") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_2_Open") (at 96.52 172.72 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8b27d78f-77f3-4e7f-be27-7ca7183cde2c") (property "Reference" "JP12" (at 96.52 166.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1-Wire PullUp Enable" (at 96.52 168.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 96.52 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 96.52 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 96.52 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d4efeb11-c9f8-44c1-a4cc-b8db7791d651") ) (pin "2" (uuid "1085d983-242a-45ab-a779-f8cab4fd929e") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "JP12") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 255.27 58.42 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "918d6622-f969-49f5-8a3a-f4b4a9270800") (property "Reference" "J2" (at 257.81 58.4199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "I2C (OLED ALT)" (at 257.81 60.9599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 255.27 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 255.27 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 255.27 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 255.27 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 255.27 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5958ca2d-443b-416f-84aa-7ad4126167ef") ) (pin "2" (uuid "e0c6475d-e933-4231-bd55-b28cc5f22d39") ) (pin "3" (uuid "dd6685d9-951e-4042-ae99-6fe29da1ad1d") ) (pin "4" (uuid "6e6d68da-313a-4d90-845d-bb202b485348") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J2") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 148.59 179.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "96a18ea7-3d15-46f8-bc11-da38dba4984f") (property "Reference" "J5" (at 151.13 177.7999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1-Wire" (at 151.13 180.3399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C68305 or C5188443" (at 148.59 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1a1c8644-f940-4704-80c2-bd4c9ebaf63b") ) (pin "2" (uuid "4dece2a4-8c96-4c0a-86d4-2ea5c7c0a4e4") ) (pin "3" (uuid "b8d8cc6a-c92f-4ff4-b3e7-30d611c3703a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J5") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 254 83.82 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a9e9ded6-66d7-4bfa-872c-458c9f9ba7d4") (property "Reference" "#PWR086" (at 250.19 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 264.16 83.82 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 254 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 254 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 254 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6146ded-7ba6-466b-b69f-5d61df638574") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR086") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 100.33 130.81 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "aa930015-8c05-4503-819e-188a6ff25c91") (property "Reference" "#PWR019" (at 104.14 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 90.17 130.81 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 100.33 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 100.33 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 100.33 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "152faf69-5bb9-47c5-9ca4-4fee31216aa3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR019") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 148.59 97.79 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b7bc6b02-4815-4959-b689-29dc65d07154") (property "Reference" "J19" (at 151.13 96.5199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Serial Console (TTL)" (at 151.13 99.0599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a56f176d-af72-4cc2-b325-9fc21ad5b38b") ) (pin "2" (uuid "54b36f68-1d5e-46f7-96f3-6996981fefd5") ) (pin "3" (uuid "8f11dd03-dd90-4689-aca7-cfad251943ed") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J19") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 113.03 123.19 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ca2a012a-60f2-4f1c-b957-9a7b568e167e") (property "Reference" "D14" (at 115.57 121.9199 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 115.57 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 113.03 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 113.03 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 113.03 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 113.03 123.19 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 113.03 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 113.03 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "88ec7d6e-3832-413e-9527-7f28ef0fd1d6") ) (pin "2" (uuid "32c481cf-b16d-4988-b7d1-4f7be1ea914a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D14") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 224.79 39.37 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d84170d0-1cd8-49c7-b220-bd80782529eb") (property "Reference" "D19" (at 227.33 38.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 227.33 40.6399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 224.79 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 224.79 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 224.79 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 224.79 39.37 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 224.79 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 224.79 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "76f19180-3a68-4606-874c-790216b1c88f") ) (pin "2" (uuid "761201b6-0807-44ea-8668-2acac51612b7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D19") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 130.81 170.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f1bbb4cf-cac1-498d-9bb6-9485f1c1e67c") (property "Reference" "D7" (at 133.35 168.9099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 133.35 171.4499 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 130.81 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 130.81 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 130.81 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 130.81 170.18 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 130.81 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 130.81 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7fc42085-437e-40e9-8b11-91e9a13bb5ad") ) (pin "2" (uuid "c3df9e76-e854-4746-85ba-48d26e4f00b2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D7") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS") (at 237.49 39.37 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f2644661-c140-443c-a39b-1866e1bb6e14") (property "Reference" "D18" (at 240.03 38.0999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "3.3V TVS" (at 240.03 40.6399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 237.49 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 237.49 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode" (at 237.49 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 237.49 39.37 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "JCLC Part Number" "" (at 237.49 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 237.49 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "439b45c3-e590-4448-9334-065bb84ce3f1") ) (pin "2" (uuid "4c4af92c-674d-4d84-ba50-2c3d3894496c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D18") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0804/README.md ================================================ # FANPICO-0804 PCB PCB Size: 135mm x 81.5mm ![PCB Render](board.png) ## Change Log v1.3 - Rotate fan and temperature sensor connectors 180 degrees to allow use of right-angle connectors - Fix silksreen labels for JP11 (SENSOR2) - Update SW1 pad to support both SMD and through-hole 6mm switches. - Errata: - C5 incorrectly derated. Use 25V (or higher) rated tantalum. v1.2 - Change sensor connectors to JST XH (2.5mm) - Add jumper to select between 10k / 100k NTC thermistor - Errata: - JP11 (SENSOR2 Thermistor type jumper) silk screen wrong. Workaround is to swap R51 and R53 during assembly. v1.1 - Add two connectors for Temperature Sensors - Fixed Floppy Connector pinout - Remove TTL Serial output v1.0 - First Prototye ================================================ FILE: boards/fanpico-0804/bom.csv ================================================ Ref,Qnty,Value,Cmp name,Footprint,Description,Vendor,Mouser P/N,LCSC P/N "C1, C2, C3, C4, C6, C11, C14, C17, C20, C22, C24, C26, C28, C29",14,0.1uF,C,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Unpolarized capacitor,,,C1591 "C5,",1,10uF 20V,C Tantalum,Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder,"Polarized capacitor, small symbol",,,C117023 "C7, C8, C30",3,10uF 16V,C Tantalum,Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder,"Polarized capacitor, small symbol",,80-T491A106K016,C2798061 "C10, C13, C16, C19, C21, C23, C25, C27,",8,1nF,C,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Unpolarized capacitor,,,C1588 "D1,",1,SM5819PL,D_Schottky (1A 40V),Diode_SMD:D_SMA_Handsoldering,Schottky diode,,833-SM5819PL-TP,C669023 "D2, D4, D5, D6, D7, D8, D11, D12, D15, D16, D19, D20, D23, D26, D29, D32,",16,SMD LED (green),LED 0805,LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder,Light emitting diode,,710-150080GS75000,C434432 "D3, D10, D14, D18, D22, D25, D28, D31, D34,",9,ES1D,D 1A 200V,Diode_SMD:D_SMA_Handsoldering,Diode,,512-ES1D,C445494 "D9, D13, D17, D21, D24, D27, D30, D33,",8,BAT54C,D,Diode_SMD:D_SOT-23_ANK,Diode,,241-BAT54C_R1_00001,C2992451 "F1,",1,Polyfuse 3A,Polyfuse,Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder,"Resettable fuse, polymeric positive temperature coefficient",,530-0ZCF0300BF2C,C20829 "F2,",1,Polyfuse 500mA / 350mA,Polyfuse,Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder,"Resettable fuse, polymeric positive temperature coefficient",,530-0ZCJ0050AF2E,C70072 "J3,",1,171826-4,Berg Connector,Berg connector:TE_171826-4,Floppy Power Connector,TE,571-1718264,C590635 J4 - J15,12,47053-1000,4-pin Fan Connector,Connector:FanPinHeader_1x04_P2.54mm_Vertical,PC 4-pin (PWM) fan connector,Molex,538-47053-1000,C240840 J16 - J17,2,JST-XH,2-pin JST XH 2.5mm,Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical,2-pin connector,,,C158012 "J2, JP1 - JP11",12,Header,Header,Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical,Header 2.54mm,,,C124376 JP1 - JP11,11,Jumper,Jumper_3_Bridged12,Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical,Jumper 2.54mm,,,C5305 "Q1, Q2, Q3, Q4,",4,2N7002K,MOSFET,Package_TO_SOT_SMD:SOT-23,"0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23",,512-2N7002K,C85047 "R1, R4, R8, R11, R15, R18, R22, R25, R29, R32,",10,1k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C22548 "R2, R10, R12, R17, R19, R24, R26, R31, R33, R36, R39, R42, R45,",13,49.9k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C114624 "R3, R48",2,330,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C105881 "R5, R7, R13, R20, R27, R34, R37, R40, R43, R46, R50, R51",12,10k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C98220 "R6,",1,4.99k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C114621 "R9, R16, R23, R30,",4,30k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C100001 "R14, R21, R28, R35, R38, R41, R44, R47,",8,680,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C115415 R49,1,0,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C100044 "R52, R53",2,100k,R,Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Resistor,,,C14675 "SW1,",1,SW_Push,SW_Push,Button_Switch_THT:SW_PUSH_6mm,"Push button switch, generic, two pins",,,C221880 "U1, U2,",2,SN74AHCT125QDRQ1,SN74AHCT125,Package_SO:SOIC-14_3.9x8.7mm_P1.27mm,Low (3.3V) to High (5V) TTL level converter,TI,,C155176 "U3,",1,CD74HC4050NSR,CD74HC4050,Package_SO:SOIC-16_3.9x9.9mm_P1.27mm,High (5-12V) to Low (3.3V) TTL level converter,TI,,C131932 "U4,",1,Pico / Pico W,Pico,MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH,Raspberry Pi Pico,RPi,474-DEV-17829, "U5,",1,SPX1117-ADJ,LM1117-ADJ,Package_TO_SOT_SMD:SOT-223,"800mA Low-Dropout Linear Regulator, adjustable output, TO-220/TO-252/TO-263/SOT-223",Maxim,701-SPX1117M3-L/TR,C67402 "U6,",1,LM4040BIM3-3.0,LM4040 3.0V,Package_TO_SOT_SMD:SOT-23,"3.000V Precision Micropower Shunt Voltage Reference, SOT-23",,926-LM4040BIM330NOPB,C143326 ================================================ FILE: boards/fanpico-0804/kicad/extra_fan_channel.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid a3e4201d-65f6-465e-922c-6bde94345467) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.635 2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C" (id 1) (at 0.635 -2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "D" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LED" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "R" (id 0) (at 2.032 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "R" (id 1) (at 0 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at -1.778 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resistor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "JP" (id 0) (at -2.54 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Jumper_3_Bridged12" (id 1) (at 0 2.794 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+3.3V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 0 -3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) hide (name "GND" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) ) (junction (at 147.32 121.92) (diameter 0) (color 0 0 0 0) (uuid 4725c110-3918-44c6-9202-0379854f5511) ) (junction (at 146.05 74.93) (diameter 0) (color 0 0 0 0) (uuid 4934aed7-9338-49be-aee9-d617ef7b3e51) ) (junction (at 167.64 121.92) (diameter 0) (color 0 0 0 0) (uuid 8f9aa02d-452d-42e7-8563-0d0082e11af4) ) (junction (at 179.07 132.08) (diameter 0) (color 0 0 0 0) (uuid 9f2e46e1-c478-4404-884b-69466fb68e1c) ) (junction (at 179.07 121.92) (diameter 0) (color 0 0 0 0) (uuid ac05814b-dc09-4f9a-bc3a-2cb524195c3f) ) (junction (at 166.37 74.93) (diameter 0) (color 0 0 0 0) (uuid bc3c0dfa-b464-40ed-b333-1addf7963fde) ) (polyline (pts (xy 233.68 144.78) (xy 190.5 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0b251daa-acb2-4563-8a00-282536baae82) ) (wire (pts (xy 147.32 143.51) (xy 147.32 148.59)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 17ea7d3f-838e-47ed-8b34-32e6dd7c52f1) ) (wire (pts (xy 101.6 135.89) (xy 101.6 128.27)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f024d5e-560e-405c-b664-e735dd50af4a) ) (wire (pts (xy 179.07 132.08) (xy 179.07 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 239ab539-0f2d-42cb-a59d-0f7a520a8dcf) ) (wire (pts (xy 166.37 60.96) (xy 166.37 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 29fa2cb4-25a8-4253-84f8-795855ed8080) ) (polyline (pts (xy 233.68 31.75) (xy 233.68 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4bcd8d4b-6bb8-48f7-9029-c4c42d68bceb) ) (wire (pts (xy 167.64 129.54) (xy 167.64 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4f0cd46e-f1ad-4a55-84d1-386ed36e8a83) ) (wire (pts (xy 166.37 71.12) (xy 166.37 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 51405f88-3b2e-4de2-9aab-1d126e774505) ) (wire (pts (xy 173.99 74.93) (xy 166.37 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5d7c9e49-c51b-4cd3-9c74-e64da3dc723c) ) (polyline (pts (xy 90.17 34.29) (xy 137.16 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 650bf3ce-8e8e-4b15-8637-54cb9b7d608d) ) (polyline (pts (xy 190.5 31.75) (xy 233.68 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 66311f16-42b4-4a80-99aa-0e16a0305b15) ) (wire (pts (xy 171.45 46.99) (xy 195.58 46.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6fb7d3a2-c7ce-44f6-80c5-edcfb3a0b63c) ) (polyline (pts (xy 137.16 90.17) (xy 90.17 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 71f1d60b-385f-4b2a-8c0f-92a6f8634db3) ) (wire (pts (xy 147.32 121.92) (xy 147.32 125.73)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7c442b30-229b-43e2-9845-71ef86cf968a) ) (wire (pts (xy 147.32 133.35) (xy 147.32 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 80ba5a1b-364d-46ab-b340-b5f8416f381e) ) (wire (pts (xy 146.05 87.63) (xy 146.05 91.44)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 81e854b4-7131-4b2b-b926-8bd1b2e4e843) ) (wire (pts (xy 66.04 135.89) (xy 101.6 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8d0a11f6-388a-4c76-ab1d-fdcf7b784131) ) (polyline (pts (xy 90.17 34.29) (xy 90.17 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 90f6e54f-8e86-4885-a5e0-960086fd80b7) ) (wire (pts (xy 181.61 74.93) (xy 195.58 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 944933f5-d00b-41f1-a4d7-99d735de5748) ) (wire (pts (xy 105.41 121.92) (xy 147.32 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 949f5964-b807-4f00-82c2-692af459e0e7) ) (wire (pts (xy 179.07 129.54) (xy 179.07 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ac920f33-a13d-4674-8247-5663f541b13e) ) (wire (pts (xy 179.07 121.92) (xy 195.58 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid acc866f6-a83f-4072-bd5a-2f26940b907c) ) (wire (pts (xy 146.05 74.93) (xy 132.08 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bb43e9ed-3325-4a9f-855c-573d9e644fdb) ) (wire (pts (xy 146.05 74.93) (xy 146.05 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c24962ac-0aa7-4b5f-8ff3-244ea83df066) ) (wire (pts (xy 167.64 121.92) (xy 179.07 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c7dc142e-31cd-4ff7-a1c4-185343ae8f78) ) (wire (pts (xy 166.37 74.93) (xy 146.05 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cf212b08-31ad-4e19-903d-ca6ccfb8ccdd) ) (wire (pts (xy 147.32 121.92) (xy 167.64 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d56419c1-2488-4102-8a1c-bdb708cc35ca) ) (polyline (pts (xy 190.5 31.75) (xy 190.5 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d781a121-7dce-4e92-b9ad-3e37759ee30c) ) (wire (pts (xy 167.64 132.08) (xy 179.07 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e0a1d798-f495-4ded-8f8a-2525b66ec0d5) ) (wire (pts (xy 101.6 111.76) (xy 66.04 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f0199540-f9f5-4462-b9ad-8a7ec3db8754) ) (wire (pts (xy 132.08 46.99) (xy 163.83 46.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f8154772-bd77-41c1-9a1e-fcfdebcdcac4) ) (wire (pts (xy 160.02 60.96) (xy 166.37 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fa3056d1-383c-4a6e-aa50-73d503531c9d) ) (wire (pts (xy 101.6 115.57) (xy 101.6 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fb26119a-8b3d-4be1-a0f2-e0b7e0b76060) ) (polyline (pts (xy 137.16 34.29) (xy 137.16 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fcf37293-f178-4396-8fee-82c7d5b494ed) ) (text "MCU Inputs/Outputs" (at 104.14 38.1 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 53707df5-9a46-46d0-ac51-34bdb4c24446) ) (text "(Extra) Fan Channel: ${SHEETNAME}" (at 17.78 17.78 0) (effects (font (size 2 2)) (justify left bottom)) (uuid c43db354-0f28-4995-93b5-d0b6a1ecf636) ) (text "To Fan" (at 209.55 35.56 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid e18bc51f-9518-468f-97da-2d26eb089a20) ) (global_label "AUX12V" (shape input) (at 66.04 111.76 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid d6394367-fe41-4fed-b0a6-dc182137ecaf) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 56.4907 111.6806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (hierarchical_label "PWR_OUT" (shape output) (at 195.58 121.92 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 0651f145-e5ab-45b0-a185-34b46b65decd) ) (hierarchical_label "TACHO_READ" (shape output) (at 132.08 74.93 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid 17e3805c-dc66-4948-bd12-835d03937191) ) (hierarchical_label "TACHO_IN" (shape input) (at 195.58 74.93 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 44cf5094-95f1-41a4-b2b5-634803e10da1) ) (hierarchical_label "PWM_GEN" (shape input) (at 132.08 46.99 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid 7f09a51b-27ac-4cfb-822c-abe1268d8c50) ) (hierarchical_label "PWM_OUT" (shape output) (at 195.58 46.99 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 7f310825-1f15-4d79-9bab-026cf11500fb) ) (hierarchical_label "PWR_IN" (shape input) (at 66.04 135.89 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid e2014b0f-a50a-4333-81ed-31444f0ecafa) ) (symbol (lib_id "power:GND") (at 147.32 148.59 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0acd508c-e29a-44a1-9369-7c7575a9efb9) (property "Reference" "#PWR067" (id 0) (at 147.32 154.94 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 147.32 153.67 0)) (property "Footprint" "" (id 2) (at 147.32 148.59 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 147.32 148.59 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid eccb6478-c3ea-4aa1-9f07-4ad91d1bea66)) ) (symbol (lib_id "power:GND") (at 146.05 91.44 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0aebdc55-e632-4445-9db7-ba8cc31b43b3) (property "Reference" "#PWR066" (id 0) (at 146.05 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 146.05 96.52 0)) (property "Footprint" "" (id 2) (at 146.05 91.44 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 146.05 91.44 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2aa46078-df7a-4f8d-b4e9-2440f4cf4d70)) ) (symbol (lib_id "power:+3.3V") (at 160.02 60.96 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2beabec1-a436-4b64-a488-7d07c9d15d77) (property "Reference" "#PWR068" (id 0) (at 163.83 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 156.21 60.9599 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 160.02 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 160.02 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 18527cec-a364-4293-a3ef-5550922c03aa)) ) (symbol (lib_id "Device:C") (at 146.05 83.82 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3cd107d3-c6a7-4254-9209-0b9ac70966b7) (property "Reference" "C21" (id 0) (at 149.86 82.5499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "1nF" (id 1) (at 149.86 85.0899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 147.0152 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 146.05 83.82 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 62da4944-efd6-4146-9e24-7534afda4788)) (pin "2" (uuid 08350092-d004-4d88-ad3b-41c1eb89e443)) ) (symbol (lib_id "Device:C") (at 167.64 125.73 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a) (property "Reference" "C22" (id 0) (at 171.45 124.4599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 171.45 126.9999 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 168.6052 129.54 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 167.64 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 34911415-9e26-4f43-9972-7ec508951cea)) (pin "2" (uuid c1dcf2f2-8ceb-454d-abe8-36c791deef4d)) ) (symbol (lib_id "Device:R") (at 147.32 129.54 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4e28b459-dd74-4c82-9144-e285ed7f5928) (property "Reference" "R36" (id 0) (at 149.86 128.2699 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "49.9k" (id 1) (at 149.86 130.8099 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 145.542 129.54 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 147.32 129.54 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9cca6172-81fb-4620-b084-c64be1867819)) (pin "2" (uuid 98dcd480-8b0e-4075-9565-706143c76d27)) ) (symbol (lib_id "Device:R") (at 166.37 67.31 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 713f0faf-9b32-443b-b4b5-18ccafb68231) (property "Reference" "R37" (id 0) (at 168.91 66.0399 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "10k" (id 1) (at 168.91 68.5799 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 168.148 67.31 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 166.37 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 5155727b-4990-4c37-9beb-355f58e9803a)) (pin "2" (uuid e648f2dc-b928-4ff8-963a-41c0dd40a454)) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 101.6 121.92 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 844cd271-058e-4a61-b648-3556ed9f378d) (property "Reference" "JP6" (id 0) (at 99.06 120.6499 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "Fan Power" (id 1) (at 99.06 123.1899 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 101.6 121.92 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 101.6 121.92 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d39035c8-101d-456f-b8db-beae18ddb858)) (pin "2" (uuid 600cf763-ad20-4049-9317-c7160df94475)) (pin "3" (uuid a6b750de-9da5-4f25-b201-bc371c63eff4)) ) (symbol (lib_id "Device:D") (at 179.07 125.73 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8) (property "Reference" "D25" (id 0) (at 181.61 124.4599 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "ES1D 1A 200V" (id 1) (at 181.61 126.9999 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (id 2) (at 179.07 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 179.07 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 3bd54a97-a49e-4cfb-ae50-ba191e3888ad)) (pin "2" (uuid 29b4a113-5f9c-475f-a3ef-d9373376c3df)) ) (symbol (lib_id "Device:D") (at 177.8 74.93 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b49d0204-e5c4-45fa-965e-427ea584956f) (property "Reference" "D24" (id 0) (at 177.8 68.58 0)) (property "Value" "BAT54C" (id 1) (at 177.8 71.12 0)) (property "Footprint" "Diode_SMD:D_SOT-23_ANK" (id 2) (at 177.8 74.93 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 177.8 74.93 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid bb1f26c8-53a2-40e5-85f5-666e138dcc60)) (pin "2" (uuid d5e97938-d7f8-443c-8d94-c4a4e1343555)) ) (symbol (lib_id "power:GND") (at 179.07 135.89 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f) (property "Reference" "#PWR069" (id 0) (at 179.07 142.24 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 179.07 140.97 0)) (property "Footprint" "" (id 2) (at 179.07 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 179.07 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid e1a2a4db-32f0-46a2-8e44-db366ed945ff)) ) (symbol (lib_id "Device:R") (at 167.64 46.99 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid df0be9dc-7024-4b62-ba66-c4ceeafe3f18) (property "Reference" "R38" (id 0) (at 167.64 40.64 90)) (property "Value" "680" (id 1) (at 167.64 43.18 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 167.64 48.768 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 167.64 46.99 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 3afa5a6c-ee7d-460c-ab30-cd43c75ca778)) (pin "2" (uuid 22a5a5e7-3266-4b58-a242-890b32c355e4)) ) (symbol (lib_id "Device:LED") (at 147.32 139.7 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c) (property "Reference" "D23" (id 0) (at 151.13 140.0174 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 151.13 142.5574 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 147.32 139.7 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 147.32 139.7 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2de7d4bb-b01a-48ca-9b1b-ecd43e3fc6be)) (pin "2" (uuid 45e66619-4d72-42c4-bc94-c0a456633ec2)) ) ) ================================================ FILE: boards/fanpico-0804/kicad/fan_channel.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid bbdfdd6a-c898-4a7d-9724-7451df1ad22f) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) (property "Reference" "TP" (id 0) (at 0 6.858 0) (effects (font (size 1.27 1.27))) ) (property "Value" "TestPoint" (id 1) (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 5.08 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 5.08 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "test point tp" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "test point" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "TestPoint_0_1" (circle (center 0 3.302) (radius 0.762) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "TestPoint_1_1" (pin passive line (at 0 0 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.635 2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C" (id 1) (at 0.635 -2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "D" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LED" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "R" (id 0) (at 2.032 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "R" (id 1) (at 0 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at -1.778 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resistor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "JP" (id 0) (at -2.54 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Jumper_3_Bridged12" (id 1) (at 0 2.794 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Transistor_FET:2N7002K" (pin_names hide) (in_bom yes) (on_board yes) (property "Reference" "Q" (id 0) (at 5.08 1.905 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "2N7002K" (id 1) (at 5.08 0 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0) (effects (font (size 1.27 1.27) italic) (justify left) hide) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "2N7002K_0_1" (polyline (pts (xy 0.254 0) (xy -2.54 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0.254 1.905) (xy 0.254 -1.905) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0.762 -1.27) (xy 0.762 -2.286) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0.762 0.508) (xy 0.762 -0.508) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0.762 2.286) (xy 0.762 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 2.54 2.54) (xy 2.54 1.778) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) (polyline (pts (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 1.651 0) (radius 2.794) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 2.54 -1.778) (radius 0.254) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) (circle (center 2.54 1.778) (radius 0.254) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) ) (symbol "2N7002K_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "G" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 2.54 -5.08 90) (length 2.54) (name "S" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 2.54 5.08 270) (length 2.54) (name "D" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+3.3V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 0 -3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) hide (name "GND" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) ) (junction (at 107.95 132.08) (diameter 0) (color 0 0 0 0) (uuid 20c6208b-d9a4-4514-a980-9e5467ec871d) ) (junction (at 115.57 43.18) (diameter 0) (color 0 0 0 0) (uuid 28fb2a88-dbd5-4bea-89f5-46923109a988) ) (junction (at 88.9 132.08) (diameter 0) (color 0 0 0 0) (uuid 34d83f06-dac8-44a9-968c-963ddac407e4) ) (junction (at 190.5 71.12) (diameter 0) (color 0 0 0 0) (uuid 65ffb3f5-3eaf-48d4-be07-c8535c212b4d) ) (junction (at 215.9 118.11) (diameter 0) (color 0 0 0 0) (uuid 7f3efbde-2f3a-49f8-bf7e-db781af2bed4) ) (junction (at 215.9 132.08) (diameter 0) (color 0 0 0 0) (uuid ac631a6c-32b9-4823-a4d4-8075c9619e6b) ) (junction (at 190.5 118.11) (diameter 0) (color 0 0 0 0) (uuid d701f429-1827-425a-8d78-365a9f792c7a) ) (junction (at 204.47 118.11) (diameter 0) (color 0 0 0 0) (uuid d87ae439-45a7-4ee3-aab0-d5825ac5606b) ) (junction (at 200.66 71.12) (diameter 0) (color 0 0 0 0) (uuid df362961-367a-462b-a6bf-378f561fc33b) ) (junction (at 105.41 43.18) (diameter 0) (color 0 0 0 0) (uuid f7c16af5-2248-4aa3-940a-ed21ce379515) ) (wire (pts (xy 115.57 54.61) (xy 115.57 55.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 06bdc6a2-f7fc-4e91-8f5a-599403838173) ) (wire (pts (xy 175.26 111.76) (xy 175.26 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 07759bf2-43f7-421f-af8a-055182ce7870) ) (wire (pts (xy 190.5 118.11) (xy 204.47 118.11)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 13f1fcca-a081-41c5-96ec-29d7cbeb62ea) ) (wire (pts (xy 171.45 43.18) (xy 198.12 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 16864f88-4d74-4617-bd86-d2c4ba3c9687) ) (wire (pts (xy 107.95 143.51) (xy 107.95 146.05)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1dad0f95-8b71-4bd6-950c-0410684bf288) ) (wire (pts (xy 215.9 132.08) (xy 215.9 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f1278cf-f83a-4f57-99b1-a058386ff584) ) (wire (pts (xy 204.47 132.08) (xy 215.9 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f89f0dc-6d0b-4177-9518-3c440f6e8bf8) ) (wire (pts (xy 215.9 71.12) (xy 229.87 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 23d619e4-1568-4e91-acb8-7ac084cd0761) ) (wire (pts (xy 205.74 43.18) (xy 229.87 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2b90627f-facc-4b91-adc9-58e38e08b201) ) (wire (pts (xy 105.41 43.18) (xy 115.57 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2de93c9c-ec26-4cea-9f4e-d95197e5a3c1) ) (wire (pts (xy 190.5 129.54) (xy 190.5 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 35f795a8-008a-4284-8ef9-576e5f0a678f) ) (wire (pts (xy 215.9 118.11) (xy 229.87 118.11)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 574a860e-8df2-42b4-9f60-0fce31739016) ) (polyline (pts (xy 175.26 87.63) (xy 128.27 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 583d6084-3a53-4056-af7e-142f327c101e) ) (wire (pts (xy 215.9 129.54) (xy 215.9 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 59177481-4df8-4399-a306-4f09f27f63aa) ) (wire (pts (xy 200.66 57.15) (xy 200.66 59.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5ba02402-b6b0-45aa-9e9d-1c5ef8f9c25a) ) (wire (pts (xy 99.06 80.01) (xy 99.06 88.9)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5e2cfdf5-a956-48d7-bdda-8ad10d82e50a) ) (wire (pts (xy 107.95 132.08) (xy 107.95 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6161afc8-6f26-4bcc-b135-c50e6d391070) ) (wire (pts (xy 208.28 71.12) (xy 200.66 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 624a5017-2a2c-4fcd-92aa-6629e50ae26c) ) (wire (pts (xy 105.41 26.67) (xy 115.57 26.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 663d6289-477d-40bc-a56c-56ca1d3c5179) ) (wire (pts (xy 97.79 43.18) (xy 105.41 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6e01879e-12de-4258-8b8e-7a98b3613ec0) ) (wire (pts (xy 120.65 80.01) (xy 132.08 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 70016e19-cf52-41c3-8e60-b56e787faf5e) ) (polyline (pts (xy 128.27 31.75) (xy 128.27 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 71c9ac60-325f-4505-998b-9dadfa9d9b72) ) (wire (pts (xy 179.07 118.11) (xy 190.5 118.11)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 71fcbb84-34cc-41b6-b3f4-8c3481398ae5) ) (wire (pts (xy 190.5 118.11) (xy 190.5 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7d2b1994-bf43-492c-8248-d556eac6a176) ) (wire (pts (xy 68.58 43.18) (xy 90.17 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7eca3ef6-d4a5-4635-a340-bea7b216f388) ) (polyline (pts (xy 30.48 31.75) (xy 30.48 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 82ad3b9b-a9ca-44cd-bb6b-8b2de0a90b97) ) (polyline (pts (xy 73.66 144.78) (xy 30.48 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 833ffd29-83bc-48d7-8c1e-e736a93f7cb2) ) (wire (pts (xy 204.47 129.54) (xy 204.47 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8c0b5605-a0ac-4440-98a5-9281f264756a) ) (wire (pts (xy 194.31 57.15) (xy 200.66 57.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8ecaf9af-82b3-4c40-b4bd-656ccc8c099b) ) (wire (pts (xy 107.95 132.08) (xy 175.26 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 904f848f-c153-46bc-93a7-406c131fdea7) ) (wire (pts (xy 68.58 132.08) (xy 88.9 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 90b4e2fb-968e-4520-ac9e-26f14a735d6d) ) (polyline (pts (xy 73.66 31.75) (xy 73.66 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 976104ea-bacc-4d01-901c-daa6f0d71dad) ) (wire (pts (xy 204.47 121.92) (xy 204.47 118.11)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a18e9c54-3811-4cd5-ab66-faad5c547c18) ) (polyline (pts (xy 267.97 144.78) (xy 224.79 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a258ead0-0839-44e5-9743-0459a0cc109b) ) (polyline (pts (xy 224.79 31.75) (xy 224.79 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a9ee418a-940e-4c83-971a-ec0462cf4197) ) (wire (pts (xy 215.9 118.11) (xy 215.9 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid acd5d695-809b-423a-a449-a7ed5b0fd362) ) (wire (pts (xy 107.95 153.67) (xy 107.95 158.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b079e633-d1f2-4f05-800b-5bacb0d2ef5b) ) (wire (pts (xy 204.47 118.11) (xy 215.9 118.11)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b9c52eea-9a4a-4ea8-aca0-8366688311e7) ) (wire (pts (xy 175.26 132.08) (xy 175.26 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bc12ba0f-3fe4-45c1-9abd-b4d64be56bf5) ) (polyline (pts (xy 267.97 31.75) (xy 267.97 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bd73483a-7997-4460-9257-e60e0edc7f77) ) (wire (pts (xy 99.06 80.01) (xy 113.03 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bdaa4825-e120-4347-85b2-a79120e5b5ab) ) (wire (pts (xy 175.26 107.95) (xy 157.48 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c1433bed-1591-4168-9547-1be97377cad1) ) (wire (pts (xy 88.9 132.08) (xy 107.95 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c2bdb5b9-879a-4f64-ab1c-8e0b4c276a26) ) (wire (pts (xy 115.57 43.18) (xy 115.57 46.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c592ac41-252a-46c7-938f-71e01d331b06) ) (wire (pts (xy 105.41 38.1) (xy 105.41 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cf2a6300-9627-4918-ad73-82362091cc6e) ) (wire (pts (xy 171.45 71.12) (xy 190.5 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d05fac83-36d8-4309-b873-148862a436c2) ) (polyline (pts (xy 128.27 31.75) (xy 175.26 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d38e4643-1b11-4b92-97b6-229f6b39b26f) ) (wire (pts (xy 200.66 71.12) (xy 190.5 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d4b9ee6d-3e14-40e7-906d-b3d5768b2ea0) ) (wire (pts (xy 106.68 71.12) (xy 106.68 83.82)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid db9f7c77-a147-431a-a834-8f8e9bd07f28) ) (wire (pts (xy 200.66 67.31) (xy 200.66 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dbdee3cc-d984-4c56-8977-b37f612659fc) ) (wire (pts (xy 190.5 71.12) (xy 190.5 76.2)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dd96f01b-c058-4db8-a08b-d80848a5ec37) ) (wire (pts (xy 88.9 128.27) (xy 88.9 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e3e2eb68-19db-4f7a-b80c-25d51b8a4610) ) (polyline (pts (xy 30.48 31.75) (xy 73.66 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e3f278d8-f449-4316-991b-510c8f4798d0) ) (wire (pts (xy 190.5 83.82) (xy 190.5 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eb5e7856-c617-4564-b04a-b48313e49b3e) ) (wire (pts (xy 68.58 71.12) (xy 106.68 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ed28772e-bc04-4214-a7f9-ae5af01fdda3) ) (polyline (pts (xy 175.26 31.75) (xy 175.26 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f1927ddb-ce9a-4e06-87c7-24072c583581) ) (wire (pts (xy 115.57 43.18) (xy 132.08 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f5025ef7-269f-4e9c-a000-9e7a9f34e9ff) ) (polyline (pts (xy 224.79 31.75) (xy 267.97 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f5c68c37-decb-4c47-b072-77ce3acb7372) ) (wire (pts (xy 190.5 139.7) (xy 190.5 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f8a8ea9a-4c63-4039-8c5b-50f0dba34936) ) (wire (pts (xy 105.41 30.48) (xy 105.41 26.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fb0db6ec-5a63-4d92-b150-117212a4b8b7) ) (wire (pts (xy 106.68 93.98) (xy 106.68 97.79)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fce0ae07-9f00-4615-8747-dc563d6c9dbf) ) (text "MCU Inputs/Outputs" (at 142.24 35.56 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 470e5e99-b00d-4a9f-b92b-6e3da1556615) ) (text "To Motherboard Fan connector" (at 36.83 35.56 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 5dcb9b55-2fc8-428e-994d-d22aed72cae7) ) (text "Fan Channel: ${SHEETNAME}" (at 20.32 17.78 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 6cd836a6-fb76-413b-b3b7-901783f4e949) ) (text "To Fan" (at 243.84 35.56 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid ea10d4a3-4e75-4c2d-a099-0d84368a6293) ) (global_label "AUX12V" (shape input) (at 157.48 107.95 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid f3969b31-ed0d-493c-b0b4-a681177a3686) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.9307 107.8706 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (hierarchical_label "TACHO_GEN" (shape input) (at 132.08 80.01 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 062f3b02-c59a-4d8e-8807-5ac15aead0c2) ) (hierarchical_label "PWR_OUT" (shape output) (at 229.87 118.11 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 083154c7-a8c7-4d3e-a8f6-355b60c22ce4) ) (hierarchical_label "TACHO_OUT" (shape output) (at 68.58 71.12 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid 0fbd8a06-85c9-4ad4-8517-a2809baef0ce) ) (hierarchical_label "PWM_READ" (shape output) (at 132.08 43.18 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 4e33f23a-ae57-406f-a628-0cc4c2bb491c) ) (hierarchical_label "PWM_OUT" (shape output) (at 229.87 43.18 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 5217a36d-d917-4ca7-9824-071920a9d494) ) (hierarchical_label "TACHO_IN" (shape input) (at 229.87 71.12 0) (effects (font (size 1.27 1.27)) (justify left)) (uuid 53c0c07d-4ddc-4995-82a7-9e821140ff87) ) (hierarchical_label "PWR_IN" (shape input) (at 68.58 132.08 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid 68c5b44b-7328-48fe-ad7b-4d7fa00deefa) ) (hierarchical_label "TACHO_READ" (shape output) (at 171.45 71.12 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid c7f937ee-d6b0-4d6b-8268-5f1a55f0c45f) ) (hierarchical_label "PWM_IN" (shape input) (at 68.58 43.18 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid e20a006a-7931-4393-b1c3-a53f69b60dce) ) (hierarchical_label "PWM_GEN" (shape input) (at 171.45 43.18 180) (effects (font (size 1.27 1.27)) (justify right)) (uuid edf804ff-fd14-479d-ad14-393f22c9d5b5) ) (symbol (lib_id "Device:R") (at 105.41 34.29 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 09870edd-9a18-4370-90d2-0fc6c17d6715) (property "Reference" "R9" (id 0) (at 107.95 33.0199 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "30k" (id 1) (at 107.95 35.5599 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 107.188 34.29 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 105.41 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d74948b3-997d-4aea-887b-11231d89a866)) (pin "2" (uuid e3e0858c-16ca-4cb5-b2f5-e48cabb4f1a9)) ) (symbol (lib_id "power:GND") (at 215.9 135.89 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb) (property "Reference" "#PWR041" (id 0) (at 215.9 142.24 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 215.9 140.97 0)) (property "Footprint" "" (id 2) (at 215.9 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 215.9 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 6dca6464-3d8e-48a1-a08d-ffc8e85bc724)) ) (symbol (lib_id "Device:R") (at 190.5 125.73 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2b848deb-d45c-40f7-b1cd-3317b89f8ce0) (property "Reference" "R12" (id 0) (at 193.04 124.4599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "49.9k" (id 1) (at 193.04 126.9999 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 188.722 125.73 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 190.5 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d0f31c53-1e10-4351-8a11-c6c8cd7bd74f)) (pin "2" (uuid 2f131aad-d61b-4019-a0f3-e7373d09ef77)) ) (symbol (lib_id "Device:D") (at 212.09 71.12 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2cf2e306-59d7-456f-b02b-64fb5bbcc818) (property "Reference" "D9" (id 0) (at 212.09 64.77 0)) (property "Value" "BAT54C" (id 1) (at 212.09 67.31 0)) (property "Footprint" "Diode_SMD:D_SOT-23_ANK" (id 2) (at 212.09 71.12 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 212.09 71.12 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 970ff045-d21d-4b60-9619-5876a460c064)) (pin "2" (uuid 12bf308e-e88e-408c-9458-569aca3e1f17)) ) (symbol (lib_id "Device:R") (at 93.98 43.18 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3fb97f3e-520c-4a3d-90e0-f35e2392af78) (property "Reference" "R8" (id 0) (at 93.98 36.83 90)) (property "Value" "1k" (id 1) (at 93.98 39.37 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 93.98 41.402 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 93.98 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c4ffe736-e6eb-47f1-9617-5dc3d45d2dcd)) (pin "2" (uuid 1063eed3-5129-40b3-aa3a-4e036ecc2d24)) ) (symbol (lib_id "power:GND") (at 190.5 87.63 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 497abae2-70e4-47ca-bb15-7d9dfa60d946) (property "Reference" "#PWR038" (id 0) (at 190.5 93.98 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 190.5 92.71 0)) (property "Footprint" "" (id 2) (at 190.5 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 190.5 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c9f2bef0-650c-4d5d-9bf3-e9e94c49fa90)) ) (symbol (lib_id "Device:C") (at 115.57 50.8 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4c581f8a-1242-4d72-8273-f872f4434b5d) (property "Reference" "C9" (id 0) (at 119.38 49.5299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "DNF" (id 1) (at 119.38 52.0699 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 116.5352 54.61 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 115.57 50.8 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2a688de5-94cb-4a56-bbf3-231a35b40b93)) (pin "2" (uuid 7530e92c-482b-4c15-8b6e-53217451f4e7)) ) (symbol (lib_id "Transistor_FET:2N7002K") (at 104.14 88.9 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 537d375b-1ca6-4946-95db-66496543d0cb) (property "Reference" "Q1" (id 0) (at 110.49 87.6299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "2N7002K" (id 1) (at 110.49 90.1699 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 109.22 90.805 0) (effects (font (size 1.27 1.27) italic) (justify left) hide) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (id 3) (at 104.14 88.9 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 5b316ca8-b56c-425b-93ad-f70f7598b8da)) (pin "2" (uuid 73372508-1224-408d-bef1-763ba03b4eb1)) (pin "3" (uuid 5ffbf02b-636b-4e66-bd03-269e3212d061)) ) (symbol (lib_id "power:+3.3V") (at 115.57 26.67 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 63b4dbd9-7ee9-4e80-899b-e74ed06eb309) (property "Reference" "#PWR036" (id 0) (at 111.76 26.67 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 119.38 26.6699 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 115.57 26.67 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 115.57 26.67 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid fac5a9f7-a1d5-4c01-afe0-5e580d763088)) ) (symbol (lib_id "Device:C") (at 190.5 80.01 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 75bd3244-7746-40bf-b41a-5ea9cec31d77) (property "Reference" "C10" (id 0) (at 194.31 78.7399 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "1nF" (id 1) (at 194.31 81.2799 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 191.4652 83.82 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 190.5 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 451f34f6-1a38-45c2-b103-42e9fe05874d)) (pin "2" (uuid 6ba30de3-57ca-4109-977c-c84b4db2a60b)) ) (symbol (lib_id "power:GND") (at 115.57 55.88 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 77feb705-d8e5-4f1d-9a12-f9f651741e99) (property "Reference" "#PWR037" (id 0) (at 115.57 62.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 115.57 60.96 0)) (property "Footprint" "" (id 2) (at 115.57 55.88 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 115.57 55.88 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 89804e3f-9f54-410a-8041-a820976aae54)) ) (symbol (lib_id "power:+3.3V") (at 194.31 57.15 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 82946f89-b747-42ca-bf80-b90314ffa967) (property "Reference" "#PWR040" (id 0) (at 198.12 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 190.5 57.1499 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 194.31 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 194.31 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2373795d-998a-45a9-b72d-e69f0d7bf039)) ) (symbol (lib_id "power:GND") (at 190.5 144.78 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab) (property "Reference" "#PWR039" (id 0) (at 190.5 151.13 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 190.5 149.86 0)) (property "Footprint" "" (id 2) (at 190.5 144.78 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 190.5 144.78 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a3149451-a998-4a9d-8ec2-5b6e2ff9150b)) ) (symbol (lib_id "Device:R") (at 116.84 80.01 90) (unit 1) (in_bom yes) (on_board yes) (uuid 983de26c-e36c-4d87-9a48-1bbe3c867ff3) (property "Reference" "R11" (id 0) (at 116.84 82.55 90)) (property "Value" "1k" (id 1) (at 116.84 85.09 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 116.84 81.788 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 116.84 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a73009a2-342a-4f8d-8ef4-4aa35f7962be)) (pin "2" (uuid 5e29a663-d0f3-49ca-a87b-09d1aca9bdc4)) ) (symbol (lib_id "Device:LED") (at 190.5 135.89 90) (unit 1) (in_bom yes) (on_board yes) (uuid 99383412-e91e-4682-9562-162d7ddf01c0) (property "Reference" "D8" (id 0) (at 185.42 135.89 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 179.07 138.43 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 190.5 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 190.5 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid e980367b-5fce-4964-b2f7-088ac8ddc29d)) (pin "2" (uuid 6842c7ce-8628-4a3b-8ed6-f098d97dcd1a)) ) (symbol (lib_id "power:GND") (at 106.68 97.79 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a4b3f899-3773-489e-a176-285651826a27) (property "Reference" "#PWR034" (id 0) (at 106.68 104.14 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 106.68 102.87 0)) (property "Footprint" "" (id 2) (at 106.68 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 106.68 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 25545d95-113d-4e03-870d-41e225c288e2)) ) (symbol (lib_id "Device:R") (at 200.66 63.5 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid ab1976a0-4513-4f4e-8e36-2d488d6ca030) (property "Reference" "R13" (id 0) (at 203.2 62.2299 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "10k" (id 1) (at 203.2 64.7699 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 202.438 63.5 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 200.66 63.5 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 26a2851d-5dbb-4be5-9a93-dbc06f395b46)) (pin "2" (uuid 9291af84-86bd-4272-93af-66e75c116629)) ) (symbol (lib_id "power:GND") (at 107.95 158.75 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid abcdd130-a350-4ca6-b21f-74c28b823a5a) (property "Reference" "#PWR035" (id 0) (at 107.95 165.1 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 107.95 163.83 0)) (property "Footprint" "" (id 2) (at 107.95 158.75 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 107.95 158.75 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 3f7f5c49-b316-4ab2-94a6-eaac6f548ca7)) ) (symbol (lib_id "Device:D") (at 215.9 125.73 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid aef1c41f-3561-4727-acbe-d50cf3c63f5d) (property "Reference" "D10" (id 0) (at 218.44 124.4599 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "ES1D 1A 200V" (id 1) (at 218.44 126.9999 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (id 2) (at 215.9 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 215.9 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d9fd62a4-862a-4e90-8cd2-59de2ddb5b08)) (pin "2" (uuid ef3c528c-c9cd-4fd2-81cf-a766c0cb888c)) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 175.26 118.11 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b0afb5c6-54db-4986-8460-a37daf921ef8) (property "Reference" "JP2" (id 0) (at 172.72 116.8399 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "Fan Power" (id 1) (at 172.72 119.3799 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 175.26 118.11 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 175.26 118.11 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 1925673c-c032-49b9-9dbc-6d99fedfd492)) (pin "2" (uuid 0758ce77-42fb-4ae8-ba84-8f195da33c14)) (pin "3" (uuid a5c6605d-ac1c-41b5-a452-e595e19d3568)) ) (symbol (lib_id "Device:C") (at 204.47 125.73 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b0f52885-ea56-4d9c-874e-233e54e8d5a1) (property "Reference" "C11" (id 0) (at 208.28 124.4599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 208.28 126.9999 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 205.4352 129.54 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 204.47 125.73 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 02af3e73-e68b-4f22-9b8a-43c9d4721bec)) (pin "2" (uuid 23b0a919-949c-4ad6-93e3-f299529be081)) ) (symbol (lib_id "Device:R") (at 107.95 139.7 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid ba9485af-39b4-4a7f-afda-f544d55bea86) (property "Reference" "R10" (id 0) (at 110.49 138.4299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "49.9k" (id 1) (at 110.49 140.9699 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 106.172 139.7 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 107.95 139.7 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2cddf506-b609-4dc5-a019-c8e098a845ef)) (pin "2" (uuid 93540b08-4785-4d0f-8948-5d8887c3c31e)) ) (symbol (lib_id "Connector:TestPoint") (at 88.9 128.27 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid db58c802-415a-494f-b94f-f7fa5e445d52) (property "Reference" "TP6" (id 0) (at 91.44 123.6979 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 91.44 126.2379 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 93.98 128.27 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 93.98 128.27 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 31c41ee6-bb17-437c-9057-f31b2974b933)) ) (symbol (lib_id "Device:LED") (at 107.95 149.86 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e14cb179-4962-4028-9c28-4efc70e0b4c6) (property "Reference" "D7" (id 0) (at 111.76 150.1774 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 111.76 152.7174 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 107.95 149.86 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 107.95 149.86 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 06653085-78b6-4adf-8e0e-053102170d78)) (pin "2" (uuid d856f1be-8205-411c-8757-341f72ea2eca)) ) (symbol (lib_id "Device:R") (at 201.93 43.18 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e6e8ae2a-5894-4e68-8264-24e364417d34) (property "Reference" "R14" (id 0) (at 201.93 36.83 90)) (property "Value" "680" (id 1) (at 201.93 39.37 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 201.93 44.958 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 201.93 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 25282ca1-b24f-483c-9fff-2c5ca29d68f0)) (pin "2" (uuid 4d53013c-0afe-4027-8d38-e16456d56bc2)) ) ) ================================================ FILE: boards/fanpico-0804/kicad/fan_channels.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid 21c2a7bb-e53e-404f-aa6f-d468a4437c78) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "J" (id 0) (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 0 -3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) hide (name "GND" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) ) (junction (at 57.15 95.25) (diameter 0) (color 0 0 0 0) (uuid 2e4aac31-cff7-4000-8a3d-b271154c7919) ) (junction (at 55.88 50.8) (diameter 0) (color 0 0 0 0) (uuid 4742e577-ebea-4682-92fa-9307b2dfd870) ) (junction (at 58.42 185.42) (diameter 0) (color 0 0 0 0) (uuid 907a26ea-27cf-410b-8d70-16ca98e2b02f) ) (junction (at 58.42 139.7) (diameter 0) (color 0 0 0 0) (uuid cce001d0-9612-4a22-ba3f-288c3c60285e) ) (wire (pts (xy 222.25 80.01) (xy 234.95 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 00bcd8b0-8b79-4470-9fae-9418c696e9b1) ) (wire (pts (xy 222.25 116.84) (xy 234.95 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0132f4e7-fd28-433b-bb32-9f82f9dfe657) ) (wire (pts (xy 48.26 177.8) (xy 60.96 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 02888c7d-f247-4793-ad9b-f95185564dc4) ) (wire (pts (xy 222.25 39.37) (xy 241.3 39.37)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 07eae5cc-7c44-4f25-ac0d-9719670ba862) ) (wire (pts (xy 58.42 137.16) (xy 58.42 139.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0b9a35b9-89da-4dd1-a442-3462c7475065) ) (wire (pts (xy 104.14 90.17) (xy 123.19 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0cd4b0e4-b8d2-4f86-96c9-4c87651a7f52) ) (wire (pts (xy 209.55 130.81) (xy 209.55 142.24)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0e9971e2-9239-4761-bd2e-ac457c6c846f) ) (wire (pts (xy 55.88 48.26) (xy 55.88 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0efb17f5-e171-4121-9352-103cda26c4e1) ) (wire (pts (xy 88.9 168.91) (xy 88.9 170.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 10386a9a-3c8d-4117-9729-d8c9f62c332d) ) (wire (pts (xy 45.72 48.26) (xy 55.88 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 10e04af4-4ad9-4f6a-9aeb-f73cc3520e94) ) (wire (pts (xy 222.25 35.56) (xy 232.41 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1212c748-a2ce-4531-bd0b-28df23189f1a) ) (wire (pts (xy 234.95 116.84) (xy 234.95 110.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 13f3e094-8561-4a83-9e47-ddbb60946697) ) (wire (pts (xy 58.42 139.7) (xy 64.77 139.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 14847f1a-f89a-42cc-b5dd-803f1040723f) ) (wire (pts (xy 48.26 132.08) (xy 60.96 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 15766e58-6e70-4654-ae6b-dca4cd8e4e8e) ) (wire (pts (xy 60.96 129.54) (xy 64.77 129.54)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 15f1c9df-8d6a-4d79-a044-9cf09ffdeb23) ) (wire (pts (xy 115.57 43.18) (xy 121.92 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 181de405-becb-42a2-96d2-55a8dd70da74) ) (wire (pts (xy 48.26 182.88) (xy 58.42 182.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1926ddc5-eace-4346-8773-07bd4e54e6fa) ) (wire (pts (xy 58.42 182.88) (xy 58.42 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1b243181-be6c-4bab-8052-0f4c8259a853) ) (wire (pts (xy 205.74 135.89) (xy 204.47 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1c4427ce-9c5c-4665-b180-5a7af5d845ce) ) (wire (pts (xy 222.25 109.22) (xy 232.41 109.22)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1cbeafd1-3c28-46e1-b594-64fee3bd8654) ) (wire (pts (xy 114.3 85.09) (xy 114.3 92.71)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f587120-a766-4e48-8fab-ba129aa9a228) ) (wire (pts (xy 52.07 185.42) (xy 48.26 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f88e638-fa41-4d4f-a84f-c00c07c1420d) ) (wire (pts (xy 232.41 78.74) (xy 241.3 78.74)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 21a592e4-7607-493b-9f82-0d6ca73ff7a2) ) (wire (pts (xy 209.55 130.81) (xy 204.47 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 29953f7a-c268-4074-8626-9594d0db9c9b) ) (wire (pts (xy 104.14 95.25) (xy 116.84 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2b3d413f-5bdf-47e0-bb85-b01c112b65c2) ) (wire (pts (xy 205.74 135.89) (xy 205.74 142.24)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2b40cbf0-b5fa-4dc8-8430-73fb51c3d762) ) (wire (pts (xy 124.46 129.54) (xy 120.65 129.54)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2ceaebb9-d7da-4922-ba86-629ee723df73) ) (wire (pts (xy 236.22 147.32) (xy 242.57 147.32)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2d42298b-c51a-450b-b357-4d5dfc1c84e5) ) (wire (pts (xy 57.15 95.25) (xy 63.5 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2d9cb4aa-3e6b-4ac8-bac2-76b4602861dc) ) (wire (pts (xy 237.49 81.28) (xy 237.49 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3054643b-cc74-445f-9f58-89c37bb9865e) ) (wire (pts (xy 76.2 34.29) (xy 76.2 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 311deb31-bd7b-4131-8a83-76ec9914975a) ) (wire (pts (xy 48.26 134.62) (xy 64.77 134.62)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 32022626-99b8-4601-af59-18a4c8236cd3) ) (wire (pts (xy 81.28 78.74) (xy 81.28 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3b71748a-6d27-47eb-a6bf-cc3f33503f27) ) (wire (pts (xy 48.26 137.16) (xy 58.42 137.16)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3f311509-04e8-494c-810e-c7481a284642) ) (wire (pts (xy 59.69 85.09) (xy 63.5 85.09)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 42ae72c1-a962-4bb5-85fd-e8d5e9ad5dbd) ) (wire (pts (xy 46.99 90.17) (xy 63.5 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 45e2808f-f00f-4135-a816-f6fe06e6d4e1) ) (wire (pts (xy 223.52 146.05) (xy 233.68 146.05)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 45f4c532-5ed2-4dbe-8d4b-9d14b3125d5e) ) (wire (pts (xy 105.41 185.42) (xy 118.11 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 463e0e29-b5cb-4168-b43a-6500d8a67934) ) (wire (pts (xy 233.68 152.4) (xy 242.57 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4688e651-fcb8-4696-813e-69c87ec921b9) ) (wire (pts (xy 86.36 34.29) (xy 86.36 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 47cc99de-cb5c-4269-ba62-7cb2028f8fec) ) (wire (pts (xy 232.41 41.91) (xy 241.3 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 492716ee-f90f-4529-ab14-957c7f6159ed) ) (wire (pts (xy 104.14 85.09) (xy 114.3 85.09)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4ac0014d-b88e-4312-ba53-ccb4ece4c19c) ) (wire (pts (xy 232.41 109.22) (xy 232.41 115.57)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4cb3934b-5b6d-4bbe-b2d2-1982e1fb63d1) ) (wire (pts (xy 208.28 93.98) (xy 203.2 93.98)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 50e1ed27-1c84-4767-8b11-82b957497406) ) (wire (pts (xy 238.76 154.94) (xy 238.76 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 51649f9a-37cd-408e-9316-12a75dee2e7b) ) (wire (pts (xy 77.47 78.74) (xy 77.47 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 51c46a22-c794-4cce-806e-9764f833aad6) ) (wire (pts (xy 232.41 72.39) (xy 232.41 78.74)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 52271ddf-65dd-4e7c-9cb1-2aa361c3bc53) ) (wire (pts (xy 78.74 168.91) (xy 78.74 170.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 523d8548-afb1-48ec-95d1-480569465a00) ) (wire (pts (xy 208.28 93.98) (xy 208.28 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5315c3cb-84b7-4249-8b12-328cc52c0fef) ) (wire (pts (xy 222.25 43.18) (xy 234.95 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 53ecca3d-7839-42a3-af7a-e0d1ecbb7ee6) ) (wire (pts (xy 58.42 185.42) (xy 64.77 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 57da5ad0-febc-4164-81dd-b7e17430338b) ) (wire (pts (xy 60.96 132.08) (xy 60.96 129.54)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 58272fc0-042b-4a22-9661-80b06657963c) ) (wire (pts (xy 222.25 72.39) (xy 232.41 72.39)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 58cde8d9-0ad1-44ef-9890-5578f39b2130) ) (wire (pts (xy 52.07 139.7) (xy 48.26 139.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5957e0f9-27fa-4a55-a7b3-b7173cc04ed4) ) (wire (pts (xy 120.65 129.54) (xy 120.65 140.97)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 599569a8-290d-40ac-887b-49c3da08cf30) ) (wire (pts (xy 105.41 180.34) (xy 124.46 180.34)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5af16792-e15e-496f-8dae-4d532e65dc18) ) (wire (pts (xy 204.47 25.4) (xy 204.47 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5c6c7dd6-3b16-4078-9829-924c131b0b18) ) (wire (pts (xy 236.22 153.67) (xy 236.22 147.32)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5c75aaaa-b039-4575-beac-5a764121c4b0) ) (wire (pts (xy 113.03 40.64) (xy 113.03 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5ccf2f05-bb21-418d-8bdb-21f42cb1e521) ) (wire (pts (xy 234.95 110.49) (xy 241.3 110.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 60659308-433c-494e-991c-835bcd7e7c39) ) (wire (pts (xy 232.41 115.57) (xy 241.3 115.57)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 63d04e82-80ff-453c-a4bc-cc90dbde29f3) ) (wire (pts (xy 237.49 107.95) (xy 241.3 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 66987d47-b8b4-47c2-8a35-18def9c545eb) ) (wire (pts (xy 55.88 50.8) (xy 62.23 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 66de864f-6214-4995-a954-1c279697200b) ) (wire (pts (xy 222.25 113.03) (xy 241.3 113.03)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 680fe3a9-fb24-47d8-9f42-3417dfb35233) ) (wire (pts (xy 204.47 25.4) (xy 203.2 25.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6a6167b1-a9b3-41c1-a677-a9a1f11dfa82) ) (wire (pts (xy 118.11 139.7) (xy 118.11 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 740b9947-1aaf-42f0-9756-1bffb0bf0766) ) (wire (pts (xy 102.87 50.8) (xy 115.57 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 74229260-f547-476f-b93a-1788251596e2) ) (wire (pts (xy 120.65 175.26) (xy 120.65 186.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 74c5d9c3-34fa-47c0-87a3-26bfe92de512) ) (wire (pts (xy 118.11 177.8) (xy 124.46 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7f06a039-2e9a-41a5-af55-db0b97a8c921) ) (wire (pts (xy 208.28 20.32) (xy 203.2 20.32)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 83f6b0a8-feb8-41b3-bd39-8a4f597d5e47) ) (wire (pts (xy 105.41 134.62) (xy 124.46 134.62)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8951e0f7-74e4-4b05-82b7-4ef2da117b2c) ) (wire (pts (xy 82.55 168.91) (xy 82.55 170.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8954efc6-a2d7-4832-ad75-eef6f2e8eda6) ) (wire (pts (xy 45.72 43.18) (xy 58.42 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 899f7b50-d008-4317-9eaa-5dd10caa404d) ) (wire (pts (xy 102.87 40.64) (xy 113.03 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8a55a662-598e-44e4-b2bd-93367bd36620) ) (wire (pts (xy 237.49 71.12) (xy 241.3 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8f1e8604-5e81-471a-9eac-8ef396a859db) ) (wire (pts (xy 223.52 149.86) (xy 242.57 149.86)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 90efdffb-96d0-49d0-868f-9303190e0d24) ) (wire (pts (xy 121.92 40.64) (xy 118.11 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 92efebda-3760-4168-98c8-4a7fb7d1f508) ) (wire (pts (xy 208.28 57.15) (xy 208.28 68.58)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9382627e-3cf0-4d33-98c9-233a96a9fd5e) ) (wire (pts (xy 58.42 40.64) (xy 62.23 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 93f87f0d-a8a4-44f0-b00c-99008532ad52) ) (wire (pts (xy 118.11 185.42) (xy 118.11 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 989478fc-a66c-4fc7-93d8-1c8d45d17eae) ) (wire (pts (xy 113.03 48.26) (xy 121.92 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9ed41c59-f1cd-489b-afc6-57c55ef81efd) ) (wire (pts (xy 50.8 99.06) (xy 50.8 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9f74bbea-62ca-4aea-99df-ae33272f7bf5) ) (wire (pts (xy 187.96 43.18) (xy 190.5 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a03526ca-4a69-44fe-b037-d7d124b7d417) ) (wire (pts (xy 58.42 139.7) (xy 58.42 143.51)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a1644bb8-5e50-4d52-8a41-a6ebaa6e37f8) ) (wire (pts (xy 208.28 57.15) (xy 203.2 57.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a304b53c-89a8-44e6-8dec-80d9dcbba3a0) ) (wire (pts (xy 46.99 87.63) (xy 59.69 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a3575f32-15ae-4c01-8d35-8573b76084bb) ) (wire (pts (xy 233.68 146.05) (xy 233.68 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a38bc258-2b0d-4355-b700-5127aa7159b6) ) (wire (pts (xy 115.57 129.54) (xy 115.57 137.16)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a430eb33-0c88-473b-af75-93709739a813) ) (wire (pts (xy 52.07 143.51) (xy 52.07 139.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a43a53cb-2c86-4305-b8fc-8cd83304db5d) ) (wire (pts (xy 58.42 195.58) (xy 58.42 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a7095d8a-8530-4a49-971b-3c8f4abcd227) ) (wire (pts (xy 223.52 153.67) (xy 236.22 153.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a8e57a6e-af17-4af1-9ba3-198e908bda74) ) (wire (pts (xy 115.57 137.16) (xy 124.46 137.16)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a90d1d79-15a4-437c-b230-7c75ce92b774) ) (wire (pts (xy 234.95 73.66) (xy 241.3 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a9c190c1-86a4-4992-afc8-a74431cccd21) ) (wire (pts (xy 52.07 189.23) (xy 52.07 185.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ab421d65-9933-403e-a039-b97ac3293384) ) (wire (pts (xy 123.19 85.09) (xy 119.38 85.09)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid afa30dff-7d66-428c-9366-26b75e7e2bbb) ) (wire (pts (xy 187.96 116.84) (xy 190.5 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid afbf65be-8669-458b-aaff-6186389819f6) ) (wire (pts (xy 82.55 123.19) (xy 82.55 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b178fa74-f178-4a70-8f57-2a5118b0852a) ) (wire (pts (xy 60.96 175.26) (xy 64.77 175.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b5c9d62d-b767-4899-bbbd-22ab2728ac4a) ) (wire (pts (xy 102.87 45.72) (xy 121.92 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b5e2016a-f0bd-4b20-aba2-754426598f0b) ) (wire (pts (xy 49.53 54.61) (xy 49.53 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b73a4998-39ef-46ac-90ad-a495c147a090) ) (wire (pts (xy 60.96 177.8) (xy 60.96 175.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b934c2c1-5793-4cc2-a504-70a43b763af5) ) (wire (pts (xy 119.38 85.09) (xy 119.38 96.52)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ba3dc369-dc12-48e0-87a9-920a5b5fb3c2) ) (wire (pts (xy 237.49 44.45) (xy 237.49 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bb2f27f4-18c0-4030-b6e0-ca4f162344fd) ) (wire (pts (xy 92.71 168.91) (xy 92.71 170.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bb323e8a-de51-4da8-9371-e7587a511f1e) ) (wire (pts (xy 124.46 175.26) (xy 120.65 175.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid be570213-2a38-4a91-a709-a69c6f851e04) ) (wire (pts (xy 189.23 153.67) (xy 191.77 153.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c053023c-b1ee-409e-9332-064dcf62a3b0) ) (wire (pts (xy 48.26 180.34) (xy 64.77 180.34)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c260c9c0-160d-4fad-a712-c61a5c7453e1) ) (wire (pts (xy 78.74 123.19) (xy 78.74 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c5943653-147c-4f43-9a12-90902c13a22d) ) (wire (pts (xy 87.63 78.74) (xy 87.63 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c71560e6-531c-4b26-a62b-93845441e8a1) ) (wire (pts (xy 57.15 95.25) (xy 57.15 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c888dd87-2d70-45f6-b4de-20c893e453cc) ) (wire (pts (xy 88.9 123.19) (xy 88.9 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c93f38bc-797e-40ff-9143-7684fafc29ad) ) (wire (pts (xy 57.15 92.71) (xy 57.15 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ca1f84d0-b6cb-4a98-b7fb-5b04ee77a1f6) ) (wire (pts (xy 222.25 76.2) (xy 241.3 76.2)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ca39a9a0-dbc9-4c89-bca0-abb108e869ab) ) (wire (pts (xy 114.3 92.71) (xy 123.19 92.71)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ca75d035-a592-447f-aa47-71a93044cee1) ) (wire (pts (xy 115.57 50.8) (xy 115.57 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid caaa2404-ba6b-43bd-94d6-471cdcc34a7b) ) (wire (pts (xy 204.47 99.06) (xy 204.47 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cc63e37e-3cbd-4b55-84be-dc2da2264b46) ) (wire (pts (xy 49.53 50.8) (xy 45.72 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ce523f2f-75ae-44a0-bc64-a6db0fb0d741) ) (wire (pts (xy 238.76 144.78) (xy 242.57 144.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cf0747d2-43d6-4280-adb2-ff042795c70a) ) (wire (pts (xy 59.69 195.58) (xy 58.42 195.58)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cf49c28b-5db8-42ee-b584-032bf1a816a3) ) (wire (pts (xy 115.57 175.26) (xy 115.57 182.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d32fcd47-ef7e-48f5-8f92-f59caeb64154) ) (wire (pts (xy 237.49 34.29) (xy 241.3 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d382f5c7-7db3-4443-b14e-106921947fa3) ) (wire (pts (xy 237.49 118.11) (xy 237.49 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d6c65298-ad4e-46ea-bd24-3cc284b70958) ) (wire (pts (xy 105.41 129.54) (xy 115.57 129.54)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d6e492ba-023f-4fe1-a0f6-a293cbbc45b0) ) (wire (pts (xy 204.47 62.23) (xy 203.2 62.23)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d8f3468c-042a-431a-9078-9cef94a41cf8) ) (wire (pts (xy 232.41 35.56) (xy 232.41 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ddbcf225-79a3-4b8b-84c2-447908ab6158) ) (wire (pts (xy 187.96 80.01) (xy 190.5 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid de6c98ea-aca3-4c10-a032-8370dafc995e) ) (wire (pts (xy 116.84 87.63) (xy 123.19 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dfacf543-3281-47d1-ae3e-4fac17bbf58e) ) (wire (pts (xy 92.71 123.19) (xy 92.71 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e0410ade-8dfd-41b6-84cf-20a13ff79572) ) (wire (pts (xy 234.95 80.01) (xy 234.95 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e2507488-307b-4de4-b1cf-dfb101572885) ) (wire (pts (xy 204.47 62.23) (xy 204.47 68.58)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e5f3fba9-c47a-45b8-9de6-857957e45973) ) (wire (pts (xy 55.88 50.8) (xy 55.88 54.61)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e737ade3-e23b-4637-a533-72099c1cee29) ) (wire (pts (xy 116.84 95.25) (xy 116.84 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e84417be-5ff4-4ac1-b455-5ca11a6e7d88) ) (wire (pts (xy 59.69 87.63) (xy 59.69 85.09)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e9781fff-8d37-44dc-a800-4f06d2f6df2e) ) (wire (pts (xy 45.72 45.72) (xy 62.23 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ea38d1dc-23bd-4289-b7bc-e36c954316f0) ) (wire (pts (xy 58.42 43.18) (xy 58.42 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ea7e799f-efac-4f29-a1b8-13d444acb4c4) ) (wire (pts (xy 234.95 36.83) (xy 241.3 36.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ead990a0-eb9a-424d-b7e7-f9d04adb7d92) ) (wire (pts (xy 80.01 34.29) (xy 80.01 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ebc70d01-95ef-40b5-b245-ff6d3c5fd9da) ) (wire (pts (xy 105.41 139.7) (xy 118.11 139.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ec146d98-9ae8-4eda-826a-56c1344bb26b) ) (wire (pts (xy 90.17 34.29) (xy 90.17 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ec27cae5-b1ca-4220-98d6-fef611e53fe5) ) (wire (pts (xy 204.47 99.06) (xy 203.2 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eea02f8c-c157-4213-8050-6320da82d3a9) ) (wire (pts (xy 105.41 175.26) (xy 115.57 175.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f0f48af1-9f27-4127-b939-ae3422096f1c) ) (wire (pts (xy 91.44 78.74) (xy 91.44 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f1fc0499-ccf0-48f6-bf84-8607b4c2334c) ) (wire (pts (xy 118.11 132.08) (xy 124.46 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f2ce0837-8430-46b6-9256-b68b02a4dda9) ) (wire (pts (xy 46.99 92.71) (xy 57.15 92.71)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f42ff054-a925-4a58-9aad-8069e79db1f9) ) (wire (pts (xy 115.57 182.88) (xy 124.46 182.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f6245b8e-e414-41cf-acf9-7194aae3dfc1) ) (wire (pts (xy 208.28 20.32) (xy 208.28 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f9a34de8-9610-402c-b014-713bf31555aa) ) (wire (pts (xy 118.11 40.64) (xy 118.11 52.07)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f9c54f80-f376-4ec3-ad93-ddc6f9876b8e) ) (wire (pts (xy 234.95 43.18) (xy 234.95 36.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fa4c54c4-e1f5-448c-ba7c-9c1c54af9562) ) (wire (pts (xy 50.8 95.25) (xy 46.99 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fe639b15-6f33-46e8-bc01-d29d5b6d150c) ) (text "Fan Channels" (at 19.05 17.78 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 4a8a343e-0bd9-4ace-9df8-a918ed5fa45d) ) (global_label "FAN1_PWM_GEN" (shape input) (at 90.17 34.29 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 0261b9f7-ad9a-468e-be05-539ed2837d52) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 90.0906 17.3021 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN4_PWM_READ" (shape output) (at 78.74 168.91 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 124a317e-b8e4-4dbd-bec0-8f8a3f9d9775) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 148.1726 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN3_PWR" (shape input) (at 187.96 116.84 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 1452443b-8fad-4d22-9155-7658866f1b12) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.8707 116.7606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN8_TACHO_READ" (shape output) (at 204.47 135.89 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2f065ac2-c00c-44af-b0d8-5e113c69bf2b) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.6398 135.9694 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN3_PWR" (shape output) (at 58.42 143.51 270) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2f46bbcf-4511-4a38-9b18-15293f8c11b9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.3406 155.5993 90) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN1_TACHO_READ" (shape output) (at 86.36 34.29 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 321bb370-cf49-4c08-b806-04189d6d64d1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.2806 14.4598 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN4_PWM_GEN" (shape input) (at 92.71 168.91 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 33e655a7-ad49-496a-b3b0-5884a9f9aa70) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 92.6306 151.9221 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN3_TACHO_READ" (shape output) (at 88.9 123.19 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 33f5289f-26d6-4949-a0aa-9542f5066aa3) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.8206 103.3598 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN4_PWR" (shape output) (at 59.69 195.58 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 34aea1bd-8efd-4a79-9679-b168bf169407) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.7793 195.6594 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN3_PWM_GEN" (shape input) (at 92.71 123.19 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 3a24039d-f6d1-411c-842a-001586635278) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 92.6306 106.2021 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN3_PWM_READ" (shape output) (at 78.74 123.19 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 3b68c04f-f850-4bd0-896c-276f79388096) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 102.4526 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN2_TACHO_READ" (shape output) (at 87.63 78.74 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 41a27ec7-32f3-4248-91a0-c988aae4847d) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 58.9098 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN4_TACHO_READ" (shape output) (at 88.9 168.91 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 48049aab-e45b-46e7-a246-cc8afbc4dee4) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.8206 149.0798 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN7_TACHO_READ" (shape output) (at 203.2 99.06 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 4aa1a01c-cbdf-42d3-afba-8167c577daaf) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.3698 99.1394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN5_TACHO_READ" (shape output) (at 203.2 25.4 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 4b59b818-7be7-470b-ac10-74c1181f131b) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.3698 25.4794 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN1_PWR" (shape output) (at 55.88 54.61 270) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 5414b29a-25de-41ef-9cd2-5826ecbbf149) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8006 66.6993 90) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN7_PWM_GEN" (shape output) (at 203.2 93.98 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 5793e4e9-7aa5-470c-a622-e845954092f1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.2121 94.0594 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN6_PWM_GEN" (shape output) (at 203.2 57.15 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 5872c166-5581-44f5-a134-2ee42c3def37) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.2121 57.2294 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN2_PWM_READ" (shape output) (at 77.47 78.74 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 6ed042e9-16c0-42ee-9d19-7904bee92f70) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 58.0026 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN4_TACHO_GEN" (shape input) (at 82.55 168.91 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 713646d8-c50b-4a4d-bdb9-493fda986906) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.4706 147.3864 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN6_TACHO_READ" (shape output) (at 203.2 62.23 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 7bbb9975-39da-4616-a4ec-cf4f8f4c6d2f) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.3698 62.3094 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN1_PWM_READ" (shape output) (at 76.2 34.29 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 81e3ce7a-88e3-428b-a5f1-66e0ca0fc2da) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 13.5526 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN2_PWM_GEN" (shape input) (at 91.44 78.74 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 90db3b47-bac6-45dd-b23c-25b149e2bb98) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 91.3606 61.7521 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN4_PWR" (shape input) (at 189.23 153.67 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 945bb797-53e4-4084-a18e-14d9284ea441) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.1407 153.5906 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN2_PWR" (shape input) (at 187.96 80.01 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 999f5199-3f37-4f5d-abc7-42c46678765b) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.8707 79.9306 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN1_TACHO_GEN" (shape input) (at 80.01 34.29 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid bb417672-4c0d-4e3e-8627-fc5c4624e0ff) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.9306 12.7664 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN5_PWM_GEN" (shape output) (at 203.2 20.32 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid c69fdb42-3d00-4649-a799-9ac01288b9a1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.2121 20.3994 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN8_PWM_GEN" (shape output) (at 204.47 130.81 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid cb6789da-f151-4b2d-b790-5a222aa196c9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 187.4821 130.8894 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN2_TACHO_GEN" (shape input) (at 81.28 78.74 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid d5100883-d1e0-4fcc-b8a0-582f6ffe4710) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 57.2164 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN2_PWR" (shape output) (at 57.15 99.06 270) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid da2d96dd-7c6c-4fcb-939d-a5150cffe6f2) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 111.1493 90) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN3_TACHO_GEN" (shape input) (at 82.55 123.19 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid dbc48b35-e2f8-4ea1-ac17-60c6d8225ed4) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.4706 101.6664 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN1_PWR" (shape input) (at 187.96 43.18 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid e95737bc-698e-450e-9d7d-a5fc5761d700) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.8707 43.1006 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 127 43.18 0) (unit 1) (in_bom yes) (on_board yes) (uuid 085195bd-ef5f-4321-aa3d-5891d4b1a1f2) (property "Reference" "J8" (id 0) (at 127 34.29 0)) (property "Value" "Fan1 Output" (id 1) (at 127 36.83 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 127 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 127 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7e31fd28-894b-49ee-9058-86c2a317b7c7)) (pin "2" (uuid 7ff71668-23ce-4739-8200-896bc2e619fb)) (pin "3" (uuid 26e37a9c-93f1-474f-8620-4f6f773501e5)) (pin "4" (uuid d5afb010-83a0-47c1-bed9-942a58043ce9)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 73.66 0) (unit 1) (in_bom yes) (on_board yes) (uuid 094bbf69-e345-406c-a80f-9e08f85706fd) (property "Reference" "J13" (id 0) (at 246.38 64.77 0)) (property "Value" "Fan6 Output" (id 1) (at 246.38 67.31 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 246.38 73.66 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 246.38 73.66 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 85dd6ce4-16c1-431a-9b36-297bf5f965d0)) (pin "2" (uuid 9f0ed9a6-fec4-431e-9eb9-12ce63446809)) (pin "3" (uuid c4bfbc89-6800-4798-8ac7-47e94a6126a9)) (pin "4" (uuid 336c0835-35df-4312-8013-633aac76c9b9)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 110.49 0) (unit 1) (in_bom yes) (on_board yes) (uuid 1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a) (property "Reference" "J14" (id 0) (at 246.38 101.6 0)) (property "Value" "Fan7 Output" (id 1) (at 246.38 104.14 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 246.38 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 246.38 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 45e1981c-20aa-4236-9307-b7a47f504563)) (pin "2" (uuid cd2dbccd-c8ff-4362-a3ef-40ddf635fac9)) (pin "3" (uuid 770e80d2-d2c8-4d17-8be1-34a26e2fb8b9)) (pin "4" (uuid f27c4151-f52f-4c90-89ae-5fbd8ae50b10)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 129.54 132.08 0) (unit 1) (in_bom yes) (on_board yes) (uuid 2129e724-3f7f-45d3-89a3-4dd504b3fb79) (property "Reference" "J10" (id 0) (at 129.54 123.19 0)) (property "Value" "Fan3 Output" (id 1) (at 129.54 125.73 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 129.54 132.08 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 129.54 132.08 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 10f0474d-ea9b-403b-84c0-ca53f5e7dc80)) (pin "2" (uuid a22ed3b2-4a29-4079-8e80-8bd15b251895)) (pin "3" (uuid 1addf393-1a10-45e8-aaac-4350eb317e5c)) (pin "4" (uuid a9a7f11c-f4ab-4c7e-a70f-d6ccfb4abb1e)) ) (symbol (lib_id "power:GND") (at 52.07 189.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 231beb94-88a4-409d-9621-815e55e223c6) (property "Reference" "#PWR020" (id 0) (at 52.07 195.58 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 52.07 194.31 0)) (property "Footprint" "" (id 2) (at 52.07 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 52.07 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8f1c50b1-d06a-4409-b126-01b6ce740773)) ) (symbol (lib_id "power:GND") (at 50.8 99.06 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 242abfd5-7f21-493a-949c-6d41d9016bca) (property "Reference" "#PWR018" (id 0) (at 50.8 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 50.8 104.14 0)) (property "Footprint" "" (id 2) (at 50.8 99.06 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 50.8 99.06 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 258b8046-f5fa-47ba-9f31-fcad559ec020)) ) (symbol (lib_id "power:GND") (at 52.07 143.51 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 24f718b1-d993-465c-bf01-cb240a846711) (property "Reference" "#PWR019" (id 0) (at 52.07 149.86 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 52.07 148.59 0)) (property "Footprint" "" (id 2) (at 52.07 143.51 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 52.07 143.51 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 675350ce-24fa-40a9-bedb-1228b9e45095)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 41.91 92.71 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2730ff07-61a0-45ab-a12e-c8fb75af936a) (property "Reference" "J5" (id 0) (at 41.91 81.28 0)) (property "Value" "MB Fan2 Input" (id 1) (at 41.91 83.82 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 41.91 92.71 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 41.91 92.71 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 56e78132-513a-47d0-9933-a26ecc857f13)) (pin "2" (uuid 4c1fe8be-19c1-4353-9adb-f08c2efebb74)) (pin "3" (uuid efc3e845-254a-40ee-aee4-56bc819b9d64)) (pin "4" (uuid f27751e1-6777-4055-9f20-84ab917b2ee0)) ) (symbol (lib_id "power:GND") (at 120.65 186.69 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3fe83a7c-04e5-4926-a03d-3377434c80f4) (property "Reference" "#PWR024" (id 0) (at 120.65 193.04 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 120.65 191.77 0)) (property "Footprint" "" (id 2) (at 120.65 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 120.65 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7a739c59-7b1b-4e07-a48a-ab198fabb0d4)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 36.83 0) (unit 1) (in_bom yes) (on_board yes) (uuid 40b85d9e-00ff-491f-88e1-a7f34acc29cf) (property "Reference" "J12" (id 0) (at 246.38 27.94 0)) (property "Value" "Fan5 Output" (id 1) (at 246.38 30.48 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 246.38 36.83 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 246.38 36.83 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9b1b3c52-549b-4cc6-9ccd-b91131f487ea)) (pin "2" (uuid 9c8920a5-cc80-4f77-9e6a-6ada99c4ad65)) (pin "3" (uuid 09b17076-5f69-412b-bb35-5ab549ccfa2a)) (pin "4" (uuid 60acc878-e7b0-4257-9d3d-b1668fd9a664)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 129.54 177.8 0) (unit 1) (in_bom yes) (on_board yes) (uuid 478255ce-6495-40e3-8f35-65ed429a01a4) (property "Reference" "J11" (id 0) (at 129.54 168.91 0)) (property "Value" "Fan4 Output" (id 1) (at 129.54 171.45 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 129.54 177.8 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 129.54 177.8 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 963be2c6-2010-4d19-b9bc-acb819332ee2)) (pin "2" (uuid 68c2dc2f-c5b1-4d61-a3a2-dc4bf9dfa0c2)) (pin "3" (uuid b8912725-1046-462b-bcff-b00d97bc82cb)) (pin "4" (uuid df393534-8dfc-4c5c-85bc-bdd6bf5bbf77)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 43.18 137.16 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 52dfc41f-11f2-4f25-9797-248cc8d74731) (property "Reference" "J6" (id 0) (at 43.18 125.73 0)) (property "Value" "MB Fan3 Input" (id 1) (at 43.18 128.27 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 43.18 137.16 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 43.18 137.16 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 126bc9d2-3310-412b-8403-7e7c99d4d291)) (pin "2" (uuid f7bcf108-f69a-464b-8607-ba4ec0575eb6)) (pin "3" (uuid 3ab77dba-513b-455a-9daf-f467e39c44f1)) (pin "4" (uuid df16689e-7350-46a2-8262-38c43ba29c5b)) ) (symbol (lib_id "power:GND") (at 238.76 154.94 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 56c5a2e3-0b53-4216-866a-a6e240228ed3) (property "Reference" "#PWR028" (id 0) (at 238.76 161.29 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 238.76 160.02 0)) (property "Footprint" "" (id 2) (at 238.76 154.94 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 238.76 154.94 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 5069cfe8-6ba1-4221-abe0-4001a0b43cdc)) ) (symbol (lib_id "power:GND") (at 49.53 54.61 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 63c85907-552d-427b-b6dc-44bd6402f24b) (property "Reference" "#PWR017" (id 0) (at 49.53 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 49.53 59.69 0)) (property "Footprint" "" (id 2) (at 49.53 54.61 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 49.53 54.61 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 82763472-ddb4-4883-8595-c157d9972a97)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 247.65 147.32 0) (unit 1) (in_bom yes) (on_board yes) (uuid 703bdce5-9294-4717-b483-0d8ff4314a65) (property "Reference" "J15" (id 0) (at 247.65 138.43 0)) (property "Value" "Fan8 Output" (id 1) (at 247.65 140.97 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 247.65 147.32 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 247.65 147.32 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 58799124-0b19-424d-ba53-d70fd52a2b7e)) (pin "2" (uuid 9723bdb0-6bed-46fb-9d39-3957acaa7f10)) (pin "3" (uuid 33508573-0ecd-4066-84a6-74cf9c80c68d)) (pin "4" (uuid 16e30e75-5312-481a-b584-81da84889059)) ) (symbol (lib_id "power:GND") (at 237.49 118.11 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 7ad3c56a-fe9a-4831-b136-d7236a73b27f) (property "Reference" "#PWR027" (id 0) (at 237.49 124.46 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 237.49 123.19 0)) (property "Footprint" "" (id 2) (at 237.49 118.11 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 237.49 118.11 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 3c6c7d1d-a2bb-4336-815e-3e447cdde78f)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 43.18 182.88 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 8debfacf-b04b-4646-9300-1ff752233c77) (property "Reference" "J7" (id 0) (at 43.18 171.45 0)) (property "Value" "MB Fan4 Input" (id 1) (at 43.18 173.99 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 43.18 182.88 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 43.18 182.88 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid f9822234-ac1e-47e0-b326-00bb7c385d65)) (pin "2" (uuid 0baa942c-da65-4f44-a102-1baa6ce6b862)) (pin "3" (uuid 5305402e-e7a8-41ea-a725-14ce5bdbbfec)) (pin "4" (uuid 93a68d39-6b3c-48eb-a592-c718ef718944)) ) (symbol (lib_id "power:GND") (at 237.49 81.28 0) (unit 1) (in_bom yes) (on_board yes) (uuid 9370a547-cff7-4cf5-b1b1-9154c18cd2f1) (property "Reference" "#PWR026" (id 0) (at 237.49 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 237.49 86.36 0)) (property "Footprint" "" (id 2) (at 237.49 81.28 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 237.49 81.28 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7fcb9167-b44b-4a83-99dc-ee6b2eb6958b)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 40.64 48.26 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a43df6e2-bedb-4718-8d23-6b27bc7ec28b) (property "Reference" "J4" (id 0) (at 40.64 36.83 0)) (property "Value" "MB Fan1 Input" (id 1) (at 40.64 39.37 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 40.64 48.26 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 40.64 48.26 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9df76adb-ac87-490d-a268-3e0deaaeded5)) (pin "2" (uuid 9eb6d1b7-f6dc-4625-a89e-5af9ee3fe04c)) (pin "3" (uuid 6c84c3f5-f3aa-40fc-a090-18dd9176f84f)) (pin "4" (uuid 04a8d3d9-c9ca-4fb6-8787-3d4d49ac9184)) ) (symbol (lib_id "power:GND") (at 120.65 140.97 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid c3cdc302-f140-4326-b94e-dae12a3dae83) (property "Reference" "#PWR023" (id 0) (at 120.65 147.32 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 120.65 146.05 0)) (property "Footprint" "" (id 2) (at 120.65 140.97 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 120.65 140.97 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9e3deed2-82e0-4fd3-9524-d9d74767c3df)) ) (symbol (lib_id "power:GND") (at 118.11 52.07 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid d790c3d5-6cf5-4e32-8ce5-0b9652f4a2d8) (property "Reference" "#PWR021" (id 0) (at 118.11 58.42 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 118.11 57.15 0)) (property "Footprint" "" (id 2) (at 118.11 52.07 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 118.11 52.07 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8d6fb468-25cd-4ffc-8495-0abf0af0e15e)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 128.27 87.63 0) (unit 1) (in_bom yes) (on_board yes) (uuid e0ed2a0d-fc70-41a0-8770-44ea381a0936) (property "Reference" "J9" (id 0) (at 128.27 78.74 0)) (property "Value" "Fan2 Output" (id 1) (at 128.27 81.28 0)) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (id 2) (at 128.27 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 128.27 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 1e6dc8ec-1b65-4121-9dd8-508ed4b1dfa0)) (pin "2" (uuid 32611115-6155-4bda-a5f6-338437754c09)) (pin "3" (uuid 5c5be698-425e-4023-8d7d-485d91d254d3)) (pin "4" (uuid ea0e5f3c-f37a-471e-a545-a21f91be7ac0)) ) (symbol (lib_id "power:GND") (at 237.49 44.45 0) (unit 1) (in_bom yes) (on_board yes) (uuid e6779268-e0bd-4b5d-83c9-6f6e8d695ccc) (property "Reference" "#PWR025" (id 0) (at 237.49 50.8 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 237.49 49.53 0)) (property "Footprint" "" (id 2) (at 237.49 44.45 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 237.49 44.45 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 244f1f08-d920-4e96-9307-705685b3ee35)) ) (symbol (lib_id "power:GND") (at 119.38 96.52 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid f439cb10-1939-4245-a4c2-a7da433360da) (property "Reference" "#PWR022" (id 0) (at 119.38 102.87 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 119.38 101.6 0)) (property "Footprint" "" (id 2) (at 119.38 96.52 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 119.38 96.52 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 89e9c028-9468-4370-9487-adbf63428b84)) ) (sheet (at 64.77 124.46) (size 40.64 19.05) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 53d29c07-1f93-4af9-9f7c-0766d5b9c268) (property "Sheet name" "Fan3" (id 0) (at 64.77 123.7484 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "fan_channel.kicad_sch" (id 1) (at 64.77 144.0946 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 105.41 134.62 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 4bd73877-f4e1-48fc-ab3c-a95930b6bf33) ) (pin "PWM_OUT" output (at 105.41 129.54 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid c3dc79e1-1614-4e15-adc0-f2096f021323) ) (pin "PWR_OUT" output (at 105.41 139.7 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 0cba4a6a-3cd7-4f9d-bcc1-6a5afbcb734a) ) (pin "TACHO_READ" output (at 88.9 124.46 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 48bb7c25-cf9b-4f8f-957f-09b67378202a) ) (pin "TACHO_GEN" input (at 82.55 124.46 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid d02bc68c-efb0-48e0-84f9-2ae7ca0a54d1) ) (pin "PWM_GEN" input (at 92.71 124.46 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 73d3b2c9-81c7-4fbe-a397-8489c2779181) ) (pin "PWM_READ" output (at 78.74 124.46 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid f195e666-f0fb-40e5-b198-529a8f80ee36) ) (pin "PWR_IN" input (at 64.77 139.7 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid f4d4f11a-669f-4958-b9c5-8e107395dff7) ) (pin "PWM_IN" input (at 64.77 129.54 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid ee94f792-04eb-455c-8eeb-d68e9c8b4d29) ) (pin "TACHO_OUT" output (at 64.77 134.62 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid a0738c6b-5e33-48c0-9b92-5d6a0f1e6bbc) ) ) (sheet (at 190.5 68.58) (size 31.75 15.24) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 5ae37739-065e-4580-bde3-1038e45a286b) (property "Sheet name" "Fan6" (id 0) (at 190.5 67.8684 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "extra_fan_channel.kicad_sch" (id 1) (at 190.5 84.4046 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 222.25 76.2 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 53b9af5e-0d1e-4798-9730-b2f66425d0e8) ) (pin "PWM_OUT" output (at 222.25 72.39 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid e9717cad-e0dc-45e2-afb0-8dcba040a896) ) (pin "PWR_OUT" output (at 222.25 80.01 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 8a8c9370-87f2-4203-8b7f-4a8549fd9767) ) (pin "PWM_GEN" input (at 208.28 68.58 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 51197e01-04a3-4056-a0e6-81164ad9cc72) ) (pin "TACHO_READ" output (at 204.47 68.58 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid bb11d0bc-a8c0-45a1-ac7b-23c222935227) ) (pin "PWR_IN" input (at 190.5 80.01 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 8d7ef8e7-23dc-4d68-9f71-31a41a69dddd) ) ) (sheet (at 190.5 105.41) (size 31.75 15.24) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 61057e9f-bb51-4960-97cb-0865458dfe32) (property "Sheet name" "Fan7" (id 0) (at 190.5 104.6984 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "extra_fan_channel.kicad_sch" (id 1) (at 190.5 121.2346 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 222.25 113.03 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 87476565-1a0d-4c16-ba90-bb7914407d9a) ) (pin "PWM_OUT" output (at 222.25 109.22 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 46f1b7fb-6428-4189-9973-637b6836e8d7) ) (pin "PWR_OUT" output (at 222.25 116.84 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 9ed282dd-4c14-4f0f-bd42-1e43fd6fecbb) ) (pin "PWM_GEN" input (at 208.28 105.41 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 880b4ba4-39a0-4201-bf42-f99ce14cf754) ) (pin "TACHO_READ" output (at 204.47 105.41 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 123ba2db-1a3e-43c1-8c22-830021803414) ) (pin "PWR_IN" input (at 190.5 116.84 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 363b576f-dd0b-43f0-96c2-8f8b7a260877) ) ) (sheet (at 64.77 170.18) (size 40.64 19.05) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 8ed5c73d-1abe-4a73-919d-90efbbef00b1) (property "Sheet name" "Fan4" (id 0) (at 64.77 169.4684 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "fan_channel.kicad_sch" (id 1) (at 64.77 189.8146 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 105.41 180.34 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 6f91b55a-bd0e-43dc-b347-2d14ca262cfe) ) (pin "PWM_OUT" output (at 105.41 175.26 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 7bbc8e52-28ff-43e4-816d-567247d46931) ) (pin "PWR_OUT" output (at 105.41 185.42 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid b1350730-3c09-4a36-9538-4249af7e5a9b) ) (pin "TACHO_READ" output (at 88.9 170.18 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 08463419-5656-47c6-bb91-25a4d15b82c7) ) (pin "TACHO_GEN" input (at 82.55 170.18 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 4cba6873-0233-4ec2-8ec5-0315f74d46f1) ) (pin "PWM_GEN" input (at 92.71 170.18 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 45acb3c7-1c64-41ed-83be-5e9908196ec1) ) (pin "PWM_READ" output (at 78.74 170.18 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid ce8e4855-1f57-480a-9c6f-f3cfea4500c7) ) (pin "PWR_IN" input (at 64.77 185.42 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 2db68fb9-d17f-4ba2-986e-9c00da6d1eb9) ) (pin "PWM_IN" input (at 64.77 175.26 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid a537f1e0-538a-4f71-8865-d8f9cdc5421d) ) (pin "TACHO_OUT" output (at 64.77 180.34 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid bba5e090-68ed-4ba2-b6d7-fd53be867fd3) ) ) (sheet (at 63.5 80.01) (size 40.64 19.05) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 946ef3ef-3a88-49e4-98d0-b90987606b91) (property "Sheet name" "Fan2" (id 0) (at 63.5 79.2984 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "fan_channel.kicad_sch" (id 1) (at 63.5 99.6446 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 104.14 90.17 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2d56982a-c49a-440f-ac65-ab3dcb5977fc) ) (pin "PWM_OUT" output (at 104.14 85.09 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid cac681c2-1a17-4c59-86e8-6a176de860f8) ) (pin "PWR_OUT" output (at 104.14 95.25 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 793551dd-d874-46e3-ab21-5a34f95f8ba0) ) (pin "TACHO_READ" output (at 87.63 80.01 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid e0570653-2a47-4812-81f3-00595f4cda34) ) (pin "TACHO_GEN" input (at 81.28 80.01 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2cb2415e-c176-4362-8da0-6bcff3a3bd4e) ) (pin "PWM_GEN" input (at 91.44 80.01 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 409d898a-7eb6-47e6-b53e-828c8ea4778a) ) (pin "PWM_READ" output (at 77.47 80.01 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 69e12c41-745e-426f-a36d-8ad7adced86d) ) (pin "PWR_IN" input (at 63.5 95.25 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 64f28a9e-0292-47ac-ab1e-1f3c05250b72) ) (pin "PWM_IN" input (at 63.5 85.09 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid dd1c39ed-8556-4119-90c2-6cfe0e172bdd) ) (pin "TACHO_OUT" output (at 63.5 90.17 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid cc43cc19-10c9-41bc-8130-600d0b7a6774) ) ) (sheet (at 191.77 142.24) (size 31.75 15.24) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid c48058d0-f979-4ada-9996-5cab1ec255f6) (property "Sheet name" "Fan8" (id 0) (at 191.77 141.5284 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "extra_fan_channel.kicad_sch" (id 1) (at 191.77 158.0646 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 223.52 149.86 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 918059ad-2cae-4a28-affd-b4be28a7447d) ) (pin "PWM_OUT" output (at 223.52 146.05 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 51a9e323-cafa-47da-846c-9f8e6bca00a2) ) (pin "PWR_OUT" output (at 223.52 153.67 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 74cb449e-c990-473f-b575-351ef1fbe46b) ) (pin "PWM_GEN" input (at 209.55 142.24 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 29880b80-5c0b-4f47-8c22-fdcd2a90603d) ) (pin "TACHO_READ" output (at 205.74 142.24 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 39cfcb07-fd06-45ca-b68a-ed90b9224629) ) (pin "PWR_IN" input (at 191.77 153.67 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid a3dac226-386a-45c7-8fe2-f4b551f936c3) ) ) (sheet (at 62.23 35.56) (size 40.64 19.05) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid cccf50bc-434f-4bd7-95d5-172f10b931f4) (property "Sheet name" "Fan1" (id 0) (at 62.23 34.8484 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "fan_channel.kicad_sch" (id 1) (at 62.23 55.1946 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 102.87 45.72 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 70b00d24-842b-4041-8801-6a30faa0036a) ) (pin "PWM_OUT" output (at 102.87 40.64 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid f2474d68-f701-47b6-9354-d7765fd17d6f) ) (pin "PWR_OUT" output (at 102.87 50.8 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid fff92661-047d-4428-8f04-57a457c163ae) ) (pin "TACHO_READ" output (at 86.36 35.56 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 05c48375-7a48-4455-947d-490144c70f0f) ) (pin "TACHO_GEN" input (at 80.01 35.56 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 8b34fa3f-d74e-486c-8988-5434b2132b51) ) (pin "PWM_GEN" input (at 90.17 35.56 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid dcf5ec43-9801-4dae-a1df-f86294a4aea0) ) (pin "PWM_READ" output (at 76.2 35.56 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid f24d8819-95a7-4fb8-9eb7-c65bf6aa0161) ) (pin "PWR_IN" input (at 62.23 50.8 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid cdb9ebe0-ffb5-4b05-99af-2137b7a9feed) ) (pin "PWM_IN" input (at 62.23 40.64 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 11a7fbfa-3241-4539-9fbe-b2f1cb7188b0) ) (pin "TACHO_OUT" output (at 62.23 45.72 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 052a19fc-7198-4161-8653-ddc58b94f9c4) ) ) (sheet (at 190.5 31.75) (size 31.75 15.24) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid d911133f-dd4d-432b-a685-8d9b5b84e35e) (property "Sheet name" "Fan5" (id 0) (at 190.5 31.0384 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "extra_fan_channel.kicad_sch" (id 1) (at 190.5 47.5746 0) (effects (font (size 1.27 1.27)) (justify left top)) ) (pin "TACHO_IN" input (at 222.25 39.37 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid e4118d39-91b7-4f48-99e6-196cad77a5a5) ) (pin "PWM_OUT" output (at 222.25 35.56 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid b8912421-0b72-477a-9242-1db5f9d78e54) ) (pin "PWR_OUT" output (at 222.25 43.18 0) (effects (font (size 1.27 1.27)) (justify right)) (uuid 647821e0-82cc-490e-a6fa-e91bb827b01c) ) (pin "PWM_GEN" input (at 208.28 31.75 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2455b316-5b74-42ff-8009-62416d156687) ) (pin "TACHO_READ" output (at 204.47 31.75 90) (effects (font (size 1.27 1.27)) (justify right)) (uuid eb61e8d3-903d-4945-af21-7f5342bd62c8) ) (pin "PWR_IN" input (at 190.5 43.18 180) (effects (font (size 1.27 1.27)) (justify left)) (uuid 55b6d03a-5fb6-493b-beec-a7f34b4b7dc4) ) ) ) ================================================ FILE: boards/fanpico-0804/kicad/fanpico.kicad_pcb ================================================ (kicad_pcb (version 20211014) (generator pcbnew) (general (thickness 1.6) ) (paper "A4") (layers (0 "F.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (stackup (layer "F.SilkS" (type "Top Silk Screen")) (layer "F.Paste" (type "Top Solder Paste")) (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01)) (layer "F.Cu" (type "copper") (thickness 0.035)) (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) (layer "B.Cu" (type "copper") (thickness 0.035)) (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01)) (layer "B.Paste" (type "Bottom Solder Paste")) (layer "B.SilkS" (type "Bottom Silk Screen")) (copper_finish "None") (dielectric_constraints no) ) (pad_to_mask_clearance 0) (pcbplotparams (layerselection 0x00010fc_ffffffff) (disableapertmacros false) (usegerberextensions true) (usegerberattributes true) (usegerberadvancedattributes true) (creategerberjobfile true) (svguseinch false) (svgprecision 6) (excludeedgelayer true) (plotframeref false) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (dxfpolygonmode true) (dxfimperialunits true) (dxfusepcbnewfont true) (psnegative false) (psa4output false) (plotreference true) (plotvalue true) (plotinvisibletext false) (sketchpadsonfab false) (subtractmaskfromsilk true) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "+5V") (net 2 "GND") (net 3 "3V3") (net 4 "Net-(C4-Pad1)") (net 5 "MBFAN1_PWM_READ") (net 6 "FAN1_TACHO_READ") (net 7 "Net-(C7-Pad1)") (net 8 "Net-(C5-Pad1)") (net 9 "Net-(D2-Pad2)") (net 10 "Net-(D3-Pad2)") (net 11 "Net-(D4-Pad2)") (net 12 "Net-(D5-Pad2)") (net 13 "/Fan Channels/Fan1/TACHO_IN") (net 14 "Net-(D6-Pad2)") (net 15 "Net-(D7-Pad2)") (net 16 "/Fan Channels/Fan2/TACHO_IN") (net 17 "Net-(D11-Pad2)") (net 18 "/Fan Channels/Fan4/TACHO_IN") (net 19 "Net-(D15-Pad2)") (net 20 "/Fan Channels/Fan3/TACHO_IN") (net 21 "/Fan Channels/Fan5/TACHO_IN") (net 22 "/Fan Channels/Fan6/TACHO_IN") (net 23 "/Fan Channels/Fan7/TACHO_IN") (net 24 "Net-(D19-Pad2)") (net 25 "/Fan Channels/Fan8/TACHO_IN") (net 26 "/SWDIO") (net 27 "/SWCLK") (net 28 "FAN1_PWR") (net 29 "/Fan Channels/Fan1/TACHO_OUT") (net 30 "/Fan Channels/Fan1/PWM_IN") (net 31 "FAN2_PWR") (net 32 "/Fan Channels/Fan2/TACHO_OUT") (net 33 "/Fan Channels/Fan2/PWM_IN") (net 34 "FAN3_PWR") (net 35 "/Fan Channels/Fan3/TACHO_OUT") (net 36 "/Fan Channels/Fan3/PWM_IN") (net 37 "FAN4_PWR") (net 38 "/Fan Channels/Fan4/TACHO_OUT") (net 39 "/Fan Channels/Fan4/PWM_IN") (net 40 "/Fan Channels/Fan1/PWR_OUT") (net 41 "/Fan Channels/Fan1/PWM_OUT") (net 42 "/Fan Channels/Fan2/PWR_OUT") (net 43 "/Fan Channels/Fan2/PWM_OUT") (net 44 "AUX5V") (net 45 "AUX12V") (net 46 "Net-(Q1-Pad1)") (net 47 "RESET") (net 48 "Net-(R1-Pad2)") (net 49 "MBFAN2_PWM_READ") (net 50 "FAN1_PWM_GEN") (net 51 "/PWM2A") (net 52 "/PWM2B") (net 53 "FAN2_PWM_GEN") (net 54 "FAN3_PWM_GEN") (net 55 "/PWM3A") (net 56 "FAN4_PWM_GEN") (net 57 "/PWM3B") (net 58 "/PWM4A") (net 59 "FAN5_PWM_GEN") (net 60 "/PWM4B") (net 61 "FAN6_PWM_GEN") (net 62 "FAN7_PWM_GEN") (net 63 "/PWM5A") (net 64 "FAN8_PWM_GEN") (net 65 "/PWM5B") (net 66 "/PWM6B") (net 67 "/PWM7B") (net 68 "MBFAN4_PWM_READ") (net 69 "/PWM0B") (net 70 "MBFAN3_PWM_READ") (net 71 "MBFAN1_TACHO_GEN") (net 72 "/PWM1B") (net 73 "unconnected-(U3-Pad12)") (net 74 "unconnected-(U3-Pad15)") (net 75 "FAN2_TACHO_READ") (net 76 "FAN3_TACHO_READ") (net 77 "FAN4_TACHO_READ") (net 78 "MBFAN2_TACHO_GEN") (net 79 "MBFAN4_TACHO_GEN") (net 80 "MBFAN3_TACHO_GEN") (net 81 "FAN5_TACHO_READ") (net 82 "FAN6_TACHO_READ") (net 83 "FAN7_TACHO_READ") (net 84 "FAN8_TACHO_READ") (net 85 "/Fan Channels/Fan3/PWR_OUT") (net 86 "/Fan Channels/Fan3/PWM_OUT") (net 87 "ADC_REF") (net 88 "unconnected-(U4-Pad37)") (net 89 "/Fan Channels/Fan4/PWR_OUT") (net 90 "/Fan Channels/Fan4/PWM_OUT") (net 91 "/Fan Channels/Fan5/PWR_OUT") (net 92 "/Fan Channels/Fan5/PWM_OUT") (net 93 "/Fan Channels/Fan6/PWR_OUT") (net 94 "/Fan Channels/Fan6/PWM_OUT") (net 95 "/Fan Channels/Fan7/PWR_OUT") (net 96 "/Fan Channels/Fan7/PWM_OUT") (net 97 "/Fan Channels/Fan8/PWR_OUT") (net 98 "/Fan Channels/Fan8/PWM_OUT") (net 99 "Net-(Q2-Pad1)") (net 100 "Net-(Q3-Pad1)") (net 101 "Net-(Q4-Pad1)") (net 102 "Net-(F1-Pad1)") (net 103 "Net-(C8-Pad1)") (net 104 "VBUS") (net 105 "Net-(D8-Pad2)") (net 106 "Net-(D12-Pad2)") (net 107 "Net-(D16-Pad2)") (net 108 "Net-(D20-Pad2)") (net 109 "Net-(D23-Pad2)") (net 110 "Net-(D26-Pad2)") (net 111 "Net-(D29-Pad2)") (net 112 "Net-(D32-Pad2)") (net 113 "AGND") (net 114 "TEMP1_READ") (net 115 "TEMP2_READ") (net 116 "Net-(JP10-Pad1)") (net 117 "Net-(JP10-Pad3)") (net 118 "Net-(JP11-Pad1)") (net 119 "Net-(JP11-Pad3)") (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 00b018ab-882c-4b2d-8e10-e589455112c6) (at 75.7125 83.68125 180) (descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986") (attr smd) (fp_text reference "F2" (at 0 -1.82) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0b01930d-9221-4e9f-8d37-eaf10448229a) ) (fp_text value "Polyfuse 0.5A" (at 0 1.82) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7fe12c4e-a74b-4d5d-a6ba-377d2116213e) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp d9d46728-d8fd-491b-b8be-eb5bd305b7a5) ) (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 80842f0f-4c18-4d0e-8e52-00c21a966069)) (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 965628ff-8465-49dd-a74a-21b3a206343a)) (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0cbb4dd4-56b4-4faf-a07a-b5320483313b)) (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 8c110246-3185-465e-87b6-fc62f78275a6)) (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp adc96850-caed-4b02-bf54-48579742a2e6)) (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c1548499-1b3c-4441-8fea-184771304cbf)) (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3ab0eb01-95e0-43dd-bac9-623354602a12)) (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 450b88f6-3f2a-4430-a6a3-8881fb124769)) (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 5b2b8488-506a-4282-8a00-f334dbf0d9f9)) (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6463b700-e3c8-4ecf-b859-2ccd7a555f71)) (pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982) (net 103 "Net-(C8-Pad1)") (pintype "passive") (tstamp 2161efe8-b695-4695-8cb4-9cd28d2fcff6)) (pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982) (net 1 "+5V") (pintype "passive") (tstamp b0c31a29-6c84-46fe-85a1-b34de5aa94e8)) (model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 00f581e5-cd74-4331-848f-de2ca93f7f36) (at 119 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (attr smd) (fp_text reference "R20" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 64c335ed-c090-407c-812b-fbbccd0e20ec) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 28d95701-1ce4-4407-9f61-1674332e1642) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp b6ca9688-23ae-4b35-8e30-96a2f33dbe4d) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e190fba0-e981-4ba2-ab8c-03bfc45a7fcd)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ea5d18f5-d505-4f66-9596-373e2236d623)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a4b3fda-9c64-418b-9c4c-bdabf2acafab)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cb316056-8909-486a-bf5b-649b06f9f1d8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d1887814-20c5-4133-b31c-559149e546cd)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp efba01f8-d9b2-43f4-b6cd-bb00a4ef2559)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 41ba1b5d-83f6-4e55-8268-cc166d77d8e3)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 73d8c72e-5d68-425e-b708-da9c1a3ffc64)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 98e5da1f-3b36-47a8-b7ad-e49442e30d07)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d17b35de-3657-4e48-9f86-752104865966)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "FAN2_TACHO_READ") (pintype "passive") (tstamp 9e838fb8-ba8a-4829-aa7e-5c1e4f925533)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 19f50e7a-18b3-487b-b35e-21be3ffa34e5)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 02950d75-ff67-4863-9733-9bd99650b835) (at 153.5 66.75) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (attr smd) (fp_text reference "C27" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 16d0f14e-6254-4472-9e76-ec07cbf6b6f3) ) (fp_text value "1nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 918f9233-4f1a-44c9-a114-4311eadc7528) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 898c0094-ff4f-4630-91c1-84e767f091ad) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8c21236c-b177-4669-8716-36f516ca4a7d)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp d4286bc5-3f3a-4659-80b9-42b41fa62ce8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a998541-d8f3-40a0-8891-39bc18400019)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5992c750-33c2-4cd0-8fc1-226c3984215d)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7c0cf58c-e25b-422b-8099-af386f9b94eb)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eb4b6ec1-d280-45a5-a867-b25d0ed2f45b)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3d1b4b72-33ab-463a-81f8-af08de108647)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8ae499bf-fd09-4ee4-b80a-645a7ba044dd)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp be275fba-58f6-4a8a-b37c-129fb648aed7)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cb143420-fca2-4cbd-801e-28377ce9b27c)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 84 "FAN8_TACHO_READ") (pintype "passive") (tstamp 88000859-78d2-4c43-bac7-0b3d749f1368)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 80420a0d-53ba-4be4-b9a3-8c2223dbfa01)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 057877ef-03b8-4212-bb91-55fd22a09fa5) (at 136.75 67.975 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e14cb179-4962-4028-9c28-4efc70e0b4c6") (attr smd) (fp_text reference "D15" (at -0.275 -1.65 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8d495700-c675-4080-b7a2-5c90d83d311f) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6dbeb271-70cf-48a4-af15-4f29601b6b93) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp eba3e869-9c4e-40f7-aa3e-e2c1bcfc73f2) ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp d7453f44-321c-4050-b18b-a12237a10415)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp d932e413-55ae-457b-a959-bad83c84d724)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp e921d58d-34eb-4712-9ae1-ea79177cfaf4)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3739076a-baeb-4668-95d4-28b7b5f3ab71)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6cb9631d-f4f9-464d-ad18-d53fa23081fa)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a4724856-e209-425c-bddb-8aaca3cddaab)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c91abc1a-9225-47cc-9d9c-5d96a0e6c5bb)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 0db1eaf5-5010-44fc-a4d5-224d3d02536a)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2e687927-3955-4336-8c63-93be156bb630)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 39bba2de-58c8-476c-98e2-bfd08f6032b9)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 6dcb6b48-87fc-45e5-b5d2-2e548601fab8)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp ebca813b-d03c-4d15-a46c-a958b096aefa)) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp ca273977-daf6-4d89-84c3-215dd45177c9)) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 19 "Net-(D15-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 28402017-1373-4e9f-83bc-1dd8451e4b54)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 06238c72-f351-48ec-8a71-67d629a9b0b4) (at 119.6875 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/09870edd-9a18-4370-90d2-0fc6c17d6715") (attr smd) (fp_text reference "R16" (at -0.0125 1.425) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1d90650c-309a-4292-994f-f7e8b71aa4fe) ) (fp_text value "30k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2a2d3e1f-64e1-4cfe-82ad-895a78fe0e2c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp f5677c41-5f29-4841-b647-470fd7be97f4) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9533c33a-6bad-4dda-b0d3-7708db91a8a9)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dd68fbf7-1b9e-464f-b0f8-c410d28cca58)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 32b13f48-766e-4a55-8288-076cc8c02164)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 716d3e07-623e-497f-945c-16daf2a02cec)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8f823fa7-9625-488d-86a8-edebc666e2b1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e8f1b820-faa5-4505-aec2-16ae742413fe)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 22d9cb2d-0146-4cda-abbe-b730dbd0734e)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2ad56319-a398-4217-9d3b-efe80f3d78dc)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 317ad74a-ba0e-42c1-a944-80f78a9556ba)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a7b587c7-8813-4d2d-9fb8-181646238694)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "MBFAN2_PWM_READ") (pintype "passive") (tstamp 518bc6cb-8998-45f3-9ca5-d6ef52682784)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 3e338933-e9f4-45de-9ca2-d8dcfcaf8f59)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (tedit 5C28146C) (tstamp 08801f4d-29f3-4989-9ccd-e1b6cf102dda) (at 83.75 61.2 180) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab") (attr through_hole) (fp_text reference "J16" (at 2.8 2.025) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 09963290-c231-4203-8940-5bb40f0c10b0) ) (fp_text value "Sensor1" (at 1.25 4.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp df3e68de-7ed2-4a70-b1de-67bf5d26dafd) ) (fp_text user "${REFERENCE}" (at 1.25 2.7) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0c4533b3-a6aa-42af-8b14-83d5c6c92dc1) ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 033e7b03-4a0e-4cc7-ad51-ace368f9a734)) (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 1284c723-67f1-4957-95bf-8eebe28fb900)) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 14aeaa20-266c-4099-a82b-81e9c3825b73)) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 18e2e252-8452-439d-a63a-754c646a1bc7)) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 3b2fc44b-c405-4889-8ae7-f9950c5f40a3)) (fp_line (start -2.56 3.51) (end 5.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp 573165fe-7871-4913-a124-2e49f755cf6f)) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 57adb6f0-a083-4f78-80fc-7eafe0ce210b)) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 5c4e12ac-bd75-4538-b4fa-34248a1cf990)) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 68e4b9e2-f5dd-47e6-bb85-dcfdf2316392)) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 7efdcd1d-e404-423d-814a-5ab8a9bcf9ab)) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 85a5b2e3-5ed9-4fac-9ebf-7f3e11c05bff)) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 88cd80f2-06fd-4b2d-b888-300fe27f51bb)) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 9b230182-a85f-4fa1-a57d-e0e096465dda)) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 9d0e3742-3155-411e-8d8a-10783fd92db2)) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp bb1533a7-f2d8-4dfa-add9-45764835aedb)) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp c82bfba3-3294-4ecc-9424-b581255420d3)) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp c8dff950-2919-4843-8b6c-09c0116007fb)) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp d41d4acb-3d78-44c2-9e0a-cfcc474c901a)) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp d7254f1b-010c-4101-b342-cee83b45df86)) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp e913ed36-c0b6-44f3-bf25-e25d6cda5a28)) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e93e61b0-2c6e-4e5c-a91c-907bdb312b97)) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp f9d4c069-5b0f-4f75-b405-455d8fecbb7e)) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp fac313b8-b376-46e3-b476-7602ca550542)) (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp fe376de6-f872-4065-a2fc-8c2a72166427)) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 24dc0acc-53d7-4d6a-9dc5-50961b9533f9)) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 5c3589ab-338b-4f88-a7c3-7084c92162f1)) (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 8560c4ba-2ff2-42ac-92cb-9be7c923be81)) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp be8e399a-334c-4bc8-9fe9-4c362326b772)) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp 10937223-dd58-4ed0-b669-3031a0fdf476)) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 153f14d8-5980-4328-a5cc-f1753367ca11)) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 3f534a1a-c25b-4e60-bee8-6c49090f2d10)) (fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp 6a368b91-ff31-4032-a365-225a57f993ad)) (fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp bc8e8a79-764c-4f19-adb8-219fb1278b75)) (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer "F.Fab") (width 0.1) (tstamp d05e09d1-dafd-44ed-a672-9c29eaffbba2)) (pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235) (net 113 "AGND") (pinfunction "Pin_1") (pintype "passive") (tstamp 7a2811f7-a01b-4532-b1d1-0ca4db693c88)) (pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (net 114 "TEMP1_READ") (pinfunction "Pin_2") (pintype "passive") (tstamp 6b969307-5b8e-4717-bb5c-77fe73c67531)) (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 08fac9fb-bd01-4e29-bb0a-a4ebc41404d7) (at 144.5 105.25 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/713f0faf-9b32-443b-b4b5-18ccafb68231") (attr smd) (fp_text reference "R37" (at 0 1.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5d2c038b-6646-4fcb-986f-765218b65ea0) ) (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0be98f3e-b1de-48aa-bf2f-b705e6291adc) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 27650710-7c55-4cb4-bd34-c80fcc619774) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 70587800-7a81-4d85-8f29-25c4513540ec)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 85ab3b9b-c1e5-4710-9414-2f3fc15e90a8)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0311fc11-2032-440f-a4be-df1fd105e702)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a0ae96c-df09-4372-b20d-54fddebbdf39)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5ecc883d-1aa9-4578-8b5c-1384fffb9705)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9e08eaf7-a538-49e1-acb3-91e047bc3fd7)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 23b3bf9d-8854-4004-98d8-f0ad17c5a13a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 31722a14-7c0c-48ed-a9ba-b6a2e0a2f3ad)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4beafc0d-b0ab-4186-951b-fd14bb9f83b5)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ae32f0d6-28f3-4cba-a889-c8c4f4e4b03b)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 81 "FAN5_TACHO_READ") (pintype "passive") (tstamp c7afafc6-d548-4bba-b86b-59cb1615caf9)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp a2eb388d-0b35-4968-b572-1fb6a3e2fda5)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 09f6b727-b73b-4591-a484-7c0de0a910bf) (at 119.6 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2730ff07-61a0-45ab-a12e-c8fb75af936a") (attr through_hole) (fp_text reference "J5" (at 7.75 2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp fe276b31-4f82-46e6-9162-872c14ea41bb) ) (fp_text value "MB Fan2 Input" (at 4.05 4.35) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 375fb0e4-801c-4d69-a5d2-50c5b1699807) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 32afcd4b-97fd-4b03-bb8d-932fb13e0a23) ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 0abebbfd-5438-41bc-8a59-6ad99b886f3c)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 0dc2cd70-6de8-45e8-a340-01c8679e5b63)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 2e435b0f-671e-4da0-9b1a-48c487e95e18)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 6fc07099-549a-4dc5-8c80-3ec767b4b363)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp a05199a1-3017-4a2a-b893-ebc3b2f9310b)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp b0228418-dad2-4b8d-a837-f46810bb487f)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp ec7993b9-2e80-41d7-a9e6-32c1a4acb73d)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp f2ccfe83-d3b4-4bcf-8563-fa0bd5654db1)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 09039133-a4cd-4c87-ad15-e7527470ab7c)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp be28da98-0ed6-46a8-981d-24fa2887e168)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp d5ce9073-f652-421d-afde-0d7f90c33390)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp f074bef8-5e6d-4f4f-8d44-54c397c827ce)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 1b2910e6-315c-4be6-b9e1-e1c7b037fc23)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 1f956cf2-b76b-4fb9-b9c3-2661e20caba1)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 256f1b08-c503-4652-af63-7c28ab1c6219)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 34f66f22-45b2-4607-96e4-1850e941d14c)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 7b7b3eb8-bf5e-436f-93fa-fbc636b3b09a)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 914b97a7-9ab8-451c-a722-b00b43b0407a)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 927b13de-a1b2-4c42-9cb3-5b1a43c05216)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp bbe6d1fa-41f5-4203-bfc1-ec3317627975)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp eef31ba5-994a-4dab-8b67-8b56d6ec3764)) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 4338d29b-6c04-409d-875e-313e19a0fd23)) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 9fe4ec8e-d675-4b57-9038-b2ad5a9800f8)) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 31 "FAN2_PWR") (pinfunction "Pin_2") (pintype "passive") (tstamp 5cdb6c77-dfe0-4421-823c-8da8613d150a)) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 32 "/Fan Channels/Fan2/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (tstamp 64fbefce-a964-4fb3-859a-3fdb8eab745c)) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 33 "/Fan Channels/Fan2/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (tstamp 4318fcb5-9334-4981-bad4-6943832d199d)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA" (layer "F.Cu") (tedit 586432E5) (tstamp 0a1e6f10-0340-4f28-bb87-298083738bf2) (at 47.25 80.75) (descr "Diode SMA (DO-214AC)") (tags "Diode SMA (DO-214AC)") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/f76a7a68-4c79-4b83-9c71-551344defaba") (attr smd) (fp_text reference "D1" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 46f5d1b0-c81c-4ce7-8d6a-d0230ae8ba90) ) (fp_text value "SM5819PL 1A 40V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2727acf3-9369-4079-affe-705a028c9cea) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4d091c7d-ac3d-4e4f-8b78-7b209f44d208) ) (fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 451210f5-1707-439d-9b6a-948d37cab1ec)) (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 65b59db4-2019-4f5f-931b-cc7b84424358)) (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 6ea2800f-6d78-40c7-9e49-e964ede15bbc)) (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 06339359-4c20-49c4-8e3f-bcdfb490be43)) (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1b9cfca5-71c9-4328-848b-d8e1491a1339)) (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 209534ab-2034-40d6-b8b2-7cff59d9a31e)) (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp f4aa2c92-8722-490a-acde-7dd8d35e0553)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 1db620db-4642-4982-8ce6-3b49f4203fbd)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 219bbc87-7373-4ff5-bb76-7d7b8e52d9e1)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 3299fb1b-5558-42fd-ac6f-81ac730eae2d)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 607e7cc2-f209-435a-948d-451ff35876e9)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 6f47f352-9d88-4442-8c96-0fe09edf8389)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 909f4679-3588-4056-9f90-728e5eecc0d9)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 9bf38900-ba86-492f-b726-70f352381483)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp beed7c3e-6d42-4de5-baa5-017fd7fc6564)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp faf003e4-6087-417b-b62d-52bc14de5a20)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp fde91266-76bf-4d97-a5fc-ed2a466bad2c)) (pad "1" smd rect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 4 "Net-(C4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp de3ef54c-667f-46d9-b698-f4b46dc4fb1d)) (pad "2" smd rect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "+5V") (pinfunction "A") (pintype "passive") (tstamp f4462feb-fffa-447c-befe-6bef5639409c)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 0aa847bc-ca2b-4611-86db-a3d568857af8) (at 58.25 62.75) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/ae4c6832-7e1c-4f4b-ac6d-c01372ca166a") (attr smd) (fp_text reference "D2" (at 0 1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7819229e-8491-4514-aa09-de10029f61e0) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0cf6864d-eb0b-44a4-8430-c2d70446e5de) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp d3ae3b30-5c45-4838-93fa-fd0de3b92643) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 877addf7-6029-43ff-b03b-6d8e69abce0a)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 9ebbd44a-3d73-45ca-8f10-dac9848d0f1d)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp b8b17daf-5381-410e-8b0c-0d255e4a9cd5)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2bb1b552-1802-47d3-baf1-376ad1e5dd3e)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 72469c6f-b429-4229-a330-65ed9a449e0c)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 84bf4721-bd64-47e8-9305-8269decf1a88)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 89470cbb-be35-4a38-8f6c-1aff44a1c6b3)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 4d5a447b-6e66-42af-95bf-9fcae885ed5a)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5f307aaa-c78d-466a-b5f1-e9749b8abb96)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 77dbdad9-5daa-49fa-a09e-a8898e0f10e9)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp a3aca66e-0260-49f9-949e-e0960bc113f0)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b3137d33-ed51-4e0f-b7c0-2357df2d52dd)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 601c92e2-1892-4a99-8cd0-c4274a32a3df)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 9 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 9f12e5af-f234-4e15-a0b7-8bf6d20b455a)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 0c7c929d-fc42-48df-9f41-c33294038cd9) (at 104.6 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (attr smd) (fp_text reference "R11" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 27c8c828-a053-4c69-b7ae-c7f1bafdd083) ) (fp_text value "1k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c8293d21-1a69-42ed-92b0-4f3af4a14d47) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 7ce1f786-7a18-4eef-a77e-235ded1e3c77) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 30e5f311-2fcc-4784-a4ce-8d3fc82814a9)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 47d81e0f-b00a-49d2-8347-393b2de21c4e)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 238d17ee-78a7-4138-8b95-c10b225a8e62)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6fd9be09-73e3-42ee-ba63-d8f79e055153)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a6e5b54-0c2b-40c6-b4e9-6db7ea8f6c20)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d4fb78ef-9f92-4456-8bf4-84cebe17830e)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0753a923-93bf-488d-8302-90672e56c3a6)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3e909685-af09-4c5b-8b72-901d863cf220)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5c1f794e-f46f-47ee-9ff4-80d57ea4af19)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bca00d08-1d1a-4671-abf5-2a3e69bc9ac6)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 6f2a61dd-5d58-4f9a-947c-9eede02ebaf9)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "MBFAN1_TACHO_GEN") (pintype "passive") (tstamp fab6e5d8-40f2-4d6a-a034-ef09d49a2969)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 0e16f1e1-d21c-4566-aa90-2d18c0b0545f) (at 162.3 79.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (attr smd) (fp_text reference "C28" (at 0 1.1 180) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp c622ba2d-bdd1-4d4c-a1ab-aba54fce09cd) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f59fb06b-382c-4267-b81d-6b77c6372e2d) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 2ab0e49b-3a52-43c2-86e6-9203d1afecef) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4c67469e-6084-4bd7-a341-25c285140f2c)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e6e82bd6-543c-4334-b349-ad8967a48fa6)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 25210be9-5b3a-498a-b837-e3b1ecf9beef)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65f9785b-babc-42ab-a08f-6d92167141cc)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b76d4b9-0afe-49d1-b88b-c52a32ac1a39)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a06aa0eb-8d24-4912-a09b-7b866f7cd8c9)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 469d8d53-956f-44b4-a9c4-ba334d7cbb66)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 54c3c501-c90e-48ac-a06d-004d7bf009ad)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a89067c7-13e2-4d2b-a56a-2f80fba4e64b)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f7e5b5d0-9c42-43de-b6ba-141f251c711f)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 97 "/Fan Channels/Fan8/PWR_OUT") (pintype "passive") (tstamp fd0d17f8-8e2b-4ff9-919e-0508f0e6ce88)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 4c71115c-1b96-4da5-8a30-a875eaf7f2a1)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 0fc4267c-2119-444e-b3b2-d8a7bd88ec8a) (at 131.2 72) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/4c581f8a-1242-4d72-8273-f872f4434b5d") (attr smd) (fp_text reference "C18" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp b9288ffb-24d0-402b-b179-78cd1bd46e32) ) (fp_text value "DNF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0f924090-ddb0-4e05-904c-8a63a32e091d) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp d5eff103-a41e-48a6-8a4d-2e4bc46feaa5) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8f141cb6-d196-4940-89f8-4e8940598ec7)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp d32b960b-36c8-46d0-9686-73cb0b40a548)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 165b2e7b-1b46-4d73-a3c9-4eda1d2e3f87)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b1d9dd6-e256-4086-9ce7-efa87daa8a99)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6755f669-82b7-4ff1-bfd2-0c84dbe58282)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9b2c3896-c54b-4cf2-8fa5-0036fca2d447)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 476d457b-c549-4355-a12e-b5454fb7f25c)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 50cd2860-5a3b-49f4-b0e5-143db7d397c7)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 51a42fbb-e03a-42b8-8723-2ff8b13b7002)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e6e5213e-6aad-48c9-a436-d90409753d19)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "MBFAN3_PWM_READ") (pintype "passive") (tstamp e0e1ca09-86a2-4a1e-91c7-9e30fee9ab8c)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 2f40c2ed-ea77-481a-b728-3e9572b94a99)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 12e3318b-d723-448e-80f4-0a2add1fb722) (at 167.4 112.8 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/40b85d9e-00ff-491f-88e1-a7f34acc29cf") (attr through_hole) (fp_text reference "J12" (at 7.25 2.25 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 650bb676-81fa-4c22-b009-9b66603eb921) ) (fp_text value "Fan5 Output" (at 4.05 4.35 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8f80a3f1-1ae2-4b8d-bd35-7a182c6a8d2e) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 02c9d8ea-754a-43f7-a713-860920f64b9c) ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 29ce0296-11ac-4570-b91c-c76b451384c1)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 4c574d69-3841-4646-9cb9-67e1549af41a)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 693758c0-e8d0-4612-bd48-760fa3b657da)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 71bde7f6-c970-4790-a48c-3a26a72d30aa)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp a2c6ddb8-c592-4f88-8d0d-4d49eee9bee0)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp b5459239-bbba-4698-9494-ff8aed069c28)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp ce52e298-4c1f-4e90-ab4b-157701b38695)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp fad1a70b-66b0-4f20-86d8-daec3418c997)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 271396f2-2847-47d1-bb55-41a773d0e0d6)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 3a96ba08-295e-4b0c-940a-8c636d2e8791)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp be4a35bf-388c-48f9-a61f-b9bdb1e6be81)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp e72eb9df-bed0-4c60-b16a-6863ea8d0319)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 021b2d69-a9cd-4da6-96cb-34c5471ab313)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 39cca1bd-96d6-42ee-8c69-5de87b57e546)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 52bad23a-58b1-4b0a-8a4a-7eecb3af8646)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 5bd90a2c-0720-49d7-b471-8bd4be0104c6)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 66f0428d-5d42-4a2b-bd34-e3c56deaabd4)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 80ac0b57-0388-409c-bf8b-2ee44690ae03)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp b28cafae-d394-4513-8ad8-4a26f2715041)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp f0df0d69-5126-4627-835f-c98c904e9fca)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp fc39fdda-1f03-48e6-9966-c4215f48ab0d)) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp cf3116e8-2920-4945-9ee9-9d9202168909)) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 715264d8-cf27-4504-ad9e-c7f96a4fd81e)) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 91 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp abc0decb-50d4-4467-9412-db8d85ff63ff)) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 21 "/Fan Channels/Fan5/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp d1e483df-ea1d-4033-835a-7e444a60718e)) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 92 "/Fan Channels/Fan5/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp c9a2e9f0-afbe-44db-b1e6-81fd64eb369e)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 1336502c-11bd-4ec2-9aca-20ce8fd7c351) (at 129.775 119.8 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0afb5c6-54db-4986-8460-a37daf921ef8") (attr through_hole) (fp_text reference "JP5" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp a104f8b7-5461-444e-b965-b1e6732ac99f) ) (fp_text value "Fan Power" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp a91b2e0e-b141-4814-b267-2fdc9c6a6658) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 163963d5-9627-43e4-ac5c-e10ad7299143) ) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37be8254-7e2c-4f4c-a147-46fa446006a2)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 53b9d0a9-bdca-4a98-a62c-67ea855d8049)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7b7e0923-b508-4aa1-91a7-05a7557a88ee)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp cfa7d3f6-0cc9-4375-a0ac-d721b57ce3a3)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d98ae824-3371-435f-8ca0-a21a12804f20)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e7d18ef0-3fda-41de-bee8-09bcd775905e)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp b2fb7a1b-c9ba-4acd-a02e-25484040900c)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b559f405-4de0-4485-9eb1-aa1ba6266fb3)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp dd81f792-3a25-482c-b21e-05ec2d4eb5d6)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f626dfdc-a42e-49fe-92eb-181cb51736dc)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 7bf62f93-87a1-4db1-8ca9-79ce9596c2b8)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 884b30ea-af8f-4f82-a557-df4823436067)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 888c76fa-7b17-4835-83d9-86e7676bd4ef)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9428c84f-f95c-4fa2-a59d-586cb3c5d4fd)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c9d7f80c-93d3-40b6-82bc-9669a79c7f05)) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 34 "FAN3_PWR") (pinfunction "A") (pintype "passive") (tstamp a24c495d-6be2-4999-9a23-d78f9efcd58e)) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 85 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 6e4fd549-4e22-4263-aa63-fbb79f10ecb8)) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp a5d01954-50f2-4ef4-ac22-4fad9b9b2741)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 15ac6ca2-8d6d-4f7f-8d3b-a3e2b642d350) (at 108.2 71.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/4c581f8a-1242-4d72-8273-f872f4434b5d") (attr smd) (fp_text reference "C9" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2c10cbb6-bb66-42f5-8d9b-60929154543b) ) (fp_text value "DNF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e0b2e383-60c6-4fac-9ee5-cb930796bb4b) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 6ff605c0-ff0e-408c-aa65-991dfa0817c9) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 0b363f34-1a8a-4e77-8f3a-c31d1cc15ae6)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp a0e869d7-248c-47f1-9ad2-ae615ac9e86e)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 26583c74-f20e-4728-8049-ea12adf4dac5)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2b367106-4cdc-4b1e-b899-0bf6af7d7d36)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 33a39c3c-f8c4-41f3-a381-57130f7b2a74)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4f8b8c28-14e3-4385-9730-03ef00608dbe)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1b37ea0f-a340-44f3-9696-f6b19e9e2559)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1dee4846-8791-4542-adda-b250a1fd785e)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 36992cac-f26a-4454-857c-961531074fa8)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 82ef8600-aff7-4e4e-83cc-272869fe14ce)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "MBFAN1_PWM_READ") (pintype "passive") (tstamp 89c18b9c-1cb9-45ef-bf7e-879d882b206b)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 63ab8de0-d3a0-4f2a-a526-51c4913ddee6)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 191ee32f-08dd-4925-8d49-812b84e6e2dc) (at 74.7125 77.83125 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5a65fde0-58e9-41b7-bb45-7d350448b336") (attr smd) (fp_text reference "R3" (at 0 1.25 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e861ce53-c61a-4671-9597-2b25c0de5f9d) ) (fp_text value "330" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6b59ede5-6d9b-4467-8171-97f65e009c46) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 2760f310-a0ba-4f91-b6b9-0f5e58b08069) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 74fa43d8-1a06-402d-bd6f-8987e05956db)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9793fcb7-664f-4a09-8526-954af0400595)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 342a0263-d678-47c7-9792-1fba0c4c367f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 587a601c-0779-4272-b35c-1e917082b0cf)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 89d89cd7-d238-4298-8b6f-17f04dc573c6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d0b758b9-420e-4da8-906f-027cf2b9a535)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0bcf355f-e426-4267-aec1-35f0fb4eb372)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4e37539b-11ba-44c9-9ec6-74ce62c6efc0)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 73762cc5-0ba5-4009-9d82-76d672de072d)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e47f470e-dec0-456a-8d34-deb818da5a76)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 103 "Net-(C8-Pad1)") (pintype "passive") (tstamp 8c7ff46d-2b6d-49cd-b195-6c23881e52b5)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp 527dcee0-ba87-4c24-99ca-0bc434f5b9a5)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 1995a1af-4656-4a47-a563-d0a3f10ab4cf) (at 157.3 106.5) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/844cd271-058e-4a61-b648-3556ed9f378d") (attr through_hole) (fp_text reference "JP6" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 37104389-0ffa-4ff9-884c-f7e490c8571a) ) (fp_text value "Fan Power" (at 0 7.41) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 84164d3c-90bc-45b0-ac63-7f7a93843cb3) ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d9afab37-6d16-489e-a6df-20a54d2ee9f9) ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 3c0146c9-302b-4005-9f50-7766581fb71a)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3e6b83fc-7519-4ddb-953c-bb9f626bfed6)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 60fcc63f-51e7-4ba1-b8e2-7f58e866098a)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 63530c34-e56d-412b-a20c-0f5801e0b75c)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp cc3838d6-9c6c-4d91-aba1-bd29599115d5)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp d9c9a498-33d2-4069-be67-c993eabe1d55)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 0c45290b-d76f-4c88-a4f6-10a6b4367d24)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 528fa016-8dda-47a4-ac5a-14ef00dc9116)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d63c2d67-a8b0-4064-9c5d-a28bd9200b4c)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e85705c7-e2a6-4d53-a85c-6c783418e0d2)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 5362a7bb-6a5c-4582-8a84-dd179357b30c)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8d9e19c9-1c38-4d1f-a346-c1ec50453cc1)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp c82525cb-40e6-49c8-b5ba-a548b20e026a)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp e762fafd-aba3-4f95-8923-69fc7014c1b7)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fbb57290-3adc-4d24-918c-497402e97c67)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 28 "FAN1_PWR") (pinfunction "A") (pintype "passive") (tstamp 011a5828-4c3c-4dde-9bdb-284a3f3c4a43)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 91 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 8356d232-ef50-40f0-a742-8beed5a9bc27)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 74936d8a-1d36-412e-8d34-dbf39e66d962)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 19babd50-6c56-4c8a-b536-ffdb1164a3d1) (at 101.75 68 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e14cb179-4962-4028-9c28-4efc70e0b4c6") (attr smd) (fp_text reference "D7" (at -0.25 -1.65 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4ca1471d-e84a-43e6-9ec2-ac5bbbc86c1a) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d6a10cc9-e23d-4cff-880c-1c4e7c655172) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 21ac5bcd-48b6-42c6-83a7-e7f67e6d1a08) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 20f86032-2ca7-4d85-9342-2ec7dd95b228)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 797fc62f-ec08-4f23-905c-e7ecf00b70db)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp bb94c706-c1c6-4e19-ac2a-271d09f29af0)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 56cab98c-3eb1-41cd-bdf8-fa073613afc8)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 66b7ab9e-b2bf-4ee7-8912-f23a2d210480)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f4d5987b-377d-484f-83a0-d26e07453a42)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f8ef65e0-d7d9-4c2c-b81d-41f323f525ce)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 202557b3-1d57-491a-8c53-22fb6f02d7ed)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 466e4ca4-208a-4476-ac72-f3a29ddf098e)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 671bbafc-9abd-4d27-a6cb-0c6370106f29)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp bc600043-b23a-4784-acf2-3275a6d2f518)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp cc21dc29-228f-465d-a019-7ba199ef3d01)) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 7b3ca537-60ed-4e7b-97f3-871d59b36603)) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 15 "Net-(D7-Pad2)") (pinfunction "A") (pintype "passive") (tstamp c0acfb15-02d9-42a3-a500-96274a64592b)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 1ad5c265-c931-4eb8-8d65-46519581b2c1) (at 162.3 91.1) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (attr smd) (fp_text reference "C26" (at 0 1.1 180) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp e3cd2cce-8f4a-4cfe-9429-3267b17a5ff8) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8404c8ed-cd6d-4798-af57-69617132819b) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp c1681c2e-d806-4a06-baa5-bc6888e7861c) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 04ac863c-a2e9-4437-9cbe-aeefdbcdeedb)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a15cf1c8-6bf2-43c6-afd8-ead2778d4455)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 41e3028a-f264-40b0-ac0d-db36abee08f1)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 449dc52c-c037-415d-94cb-6c97889c45a7)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d0650c7-8c54-44d1-8372-415e6f406921)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 949911b0-9c32-4822-9123-1e6a759dd863)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1524c995-3ff6-445f-b530-fbe71f2e7a77)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 179660b3-92cb-4b2c-9b36-215082d99842)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1d76b60a-8da5-421f-8287-436357d90d11)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 91a5b237-82c1-41e2-995e-82253f850a6f)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 95 "/Fan Channels/Fan7/PWR_OUT") (pintype "passive") (tstamp 9606f61b-3847-4b40-8cd7-4f9e4525ae73)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 473eff2d-6de3-4cdf-8800-ff67552c93af)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 1cf64412-b01e-4eaf-ba50-ca0daa6994ec) (at 80.9125 80.5 180) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/2fe78790-cca2-409c-b93b-37aabedf28fc") (attr smd) (fp_text reference "D4" (at 0 -1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d0b965b0-6987-4cc8-b8db-65cb98c87c9b) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp baed2a92-fb0c-4ae9-aa7f-24bfd2b149f9) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 18160caa-4f5d-4999-842b-64e0f0fda2d1) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp c35f5003-adca-4f60-813f-4a874bedf2ca)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp c82f2ecd-f35b-4e7f-b59e-a369fd902c54)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp f6c118c4-5e3b-4630-b478-c41826f95443)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6870146b-04f1-4f26-95c5-5561be5f9294)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7d582a02-914c-4858-897f-f8c330b8e4c4)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ddef4064-88ea-4a25-a55c-aa4a2ee6ea83)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f73eb3eb-af6d-49f8-8381-5bb7da99c05e)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 432cb6be-35f3-4928-b876-df95b82e9119)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 52b2ba2e-7b34-4808-b0d8-5dffc11e5f44)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 94cd940c-5a5f-4fb8-b532-8cdf0ab21d0e)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp b6c5dab5-2177-4f56-9b1e-a65e67e58dc2)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp caf08f14-e6e5-4247-8509-612496c17fa6)) (pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 9da64c79-ea92-46ba-8e08-5f5b851aa85b)) (pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 11 "Net-(D4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 77cf3b95-9946-472c-854d-dd08e646e1af)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 1e0fa736-c93b-4f04-ac49-f38ac4164c62) (at 150 88.5) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (attr smd) (fp_text reference "R44" (at 0 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3c9fdb2f-ecf9-44d3-83c1-9c763d03af90) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3a6bc91f-e221-4153-93e9-30b371cec447) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 685627e1-adcc-4b77-be91-0aa88724d2a5) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b7c7438c-c04d-46a9-a367-c0843852a906)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp de3ce46c-5c87-4cb1-9104-e7cf5c283084)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 62415d82-40ba-4b9c-9a09-a1c3dfd66a68)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bce5b1ac-044e-4b74-9db6-acb90b2d00f2)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce8469ff-bdaf-456b-85f8-067d98052b18)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e6125ca4-8c3c-48b2-807d-2c2fe81d8bc7)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 06279e58-47a9-4b33-bb57-83d7a618b3cc)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1809bff9-7d40-4a06-bcd7-279ae832f60e)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2e0dabf9-9d03-4ae2-a692-3c4816b0e21f)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b30de638-2fd9-4098-99da-1162e6d2e91d)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "FAN7_PWM_GEN") (pintype "passive") (tstamp 84774f2a-6971-4fa4-a1fe-c172a40ef77d)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 96 "/Fan Channels/Fan7/PWM_OUT") (pintype "passive") (tstamp a37296d2-a9af-4cbb-bc74-f8784f62407a)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 20859ee2-cbf8-46fe-9c40-f518330ff9ec) (at 162.3 97.2 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (attr smd) (fp_text reference "D28" (at -3.4 2.3 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 21900f58-e06a-4d40-8393-42da9fc6a627) ) (fp_text value "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 25819890-659b-456e-a46d-7fafe313fbae) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ffeb4e19-c8b5-4ee6-a74b-2eb329e243a3) ) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 00720b14-7697-4806-8752-0a4146c757a9)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 1010f32e-6729-4898-aff9-2f7194c047e7)) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 91e209ea-ba19-4dfb-8b09-62c53d82179c)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5aea87b2-9b51-4fe2-b785-1b81c45df3e6)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 8071d7fa-1d0a-4943-8b54-0e766d5720fe)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ba4aa324-b839-4435-a0a0-1d6c8d7a7e9b)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp f6b5eb7d-87d0-4af8-9d3b-0801ac823f96)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 4a71be72-af3f-4be7-953b-23aee18898d5)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 645ccb5c-88fb-4d93-9e17-df27cf98601a)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 66256d71-e387-4289-96a3-2f26d532812e)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 8c3d24da-7c58-4b1c-88ae-009181a1002e)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 9e81fdc6-137d-4412-812c-6d96a90f40fd)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 9ff6cec6-084d-4226-a193-70e960a252af)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp a731ff70-00e2-4f3f-8f37-63c6c24b5567)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp d5910ba8-5ff1-4f0c-8c3e-1151adaa0b0b)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp e5d1f66a-3a7b-497e-afa9-b551add63e0e)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp e753c956-bb30-46e3-8b02-9a1df3f830b9)) (pad "1" smd rect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 93 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 2ad33405-388c-406e-8a19-a616aaeebc2a)) (pad "2" smd rect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 0bf12ef6-78e0-487c-bf36-c8e43051eea4)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 223b1bf5-aeb0-4409-ae26-7a05947090b1) (at 100.6 64.6 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ba9485af-39b4-4a7f-afda-f544d55bea86") (attr smd) (fp_text reference "R10" (at 0.9 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp b1d333e1-f345-456c-9fe2-f6d98686abb9) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9a1d0aac-d424-44a1-ad3f-6accfbc230c0) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 3230db71-e343-4ca7-bfe8-9565703f0c4c) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3eade326-98e9-4f73-9969-c3de1dd20284)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c424557c-de60-43fc-9d3b-22dc03bfab6a)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 10466cba-b45a-4266-a3b7-e58a54c85068)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b282f0ec-ccbe-4072-9792-7cf3291c0003)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c9fd8097-4fd2-4bf4-ae2b-c6dd4fdd0ad6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e85479a1-246b-4094-ab2f-e2441217b8b6)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b105527-e599-4635-9472-cb4bb39953cd)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3b5c237f-d7d6-49ed-b03e-6a11bbbe8b45)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 608b1311-8621-40a7-be19-36f27fed020a)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7c21332b-0697-4b14-87b6-35bc88568ecb)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 28 "FAN1_PWR") (pintype "passive") (tstamp 2bd8e8f1-1a24-4dbc-9d3e-02ec45243012)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 15 "Net-(D7-Pad2)") (pintype "passive") (tstamp 81fa679c-a92a-4d03-8dba-7b7ddbe3b862)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 225e2a47-c7b5-4b19-aba1-40b406a20372) (at 56.9 79.5) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/3d277f57-0771-4531-880e-1192a0f1e347") (attr exclude_from_pos_files) (fp_text reference "TP4" (at 0 2) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp bc70af30-5a5e-433c-a6da-6367968f31d2) ) (fp_text value "TestPoint" (at -0.2 -3.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 61394c2c-ff51-4109-bd68-fd161c4fcb1c) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0fd91df6-c82a-495e-b0f4-2390301040de) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6a0dba81-3cb7-4a7f-a647-e60e58f7f534)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp dec79844-d68f-4adc-83e2-9fa9fba883c6)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 3 "3V3") (pinfunction "1") (pintype "passive") (tstamp 41fd18fa-f82c-4faa-80f8-e2ee562e2b15)) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 22c5ec8c-92fa-43bc-955a-ac62de3d0d1e) (at 150 94) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b49d0204-e5c4-45fa-965e-427ea584956f") (attr smd) (fp_text reference "D27" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c97c8102-2bf1-4ea4-9aa9-15a404c92447) ) (fp_text value "BAT54C" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1949e7c9-6123-4a49-85e5-c886919fc2f5) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp a716e681-e2d2-4217-9700-8aaa0b177bfd) ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 4c72f16d-8cd5-48da-94bc-78d9517b0075)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 9c11575e-b6b1-413d-bf81-6caffda4ed79)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp b7d67ba7-4b2e-4b7b-bc09-1781cc024e35)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp f9a96519-3311-4449-9395-320ce48a3d34)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6405479c-163e-47e9-aea2-046cee20d9e5)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6fcc8cde-7812-4760-94c7-e0a6bb74b8cd)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7df7f280-31c2-4471-a723-052a8da1acce)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp f420da17-70b9-4289-9973-71af4d270f42)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 2e49cb80-72d5-4c7c-ad59-9d99ad1c9f65)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 311b8624-7d9a-437a-9da5-5987fabc6fde)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 3d25ea00-3597-4b84-9896-d06c9254cef7)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp 5745a04b-39bd-4cb4-89ea-e90a2c48774a)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 600790da-009c-416b-b328-c098d09ec7e9)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp a0943e33-5217-4cb2-9cb6-2c232f98dc8e)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp a8091706-fc03-485f-99de-85f037326f50)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp cd676e39-8b0b-4a97-a5f7-f1a894ba4f9c)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp d92bbe04-d739-4545-819a-e5ee4b4b49b1)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp e25f0cb2-d101-4680-8039-e28dc3ef0e9b)) (pad "" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 40f359aa-e8bc-4d4c-ab4e-c4039d94c199)) (pad "1" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 22 "/Fan Channels/Fan6/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp c3ec28d0-7d6a-45c7-8929-905948ef9c11)) (pad "2" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 82 "FAN6_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp 84062cb7-1fa9-4726-ab10-7af55c35f7bf)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 22deafb6-26d1-4644-ba5c-62fe9948a22c) (at 101.75 72.75) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/db58c802-415a-494f-b94f-f7fa5e445d52") (attr exclude_from_pos_files) (fp_text reference "TP6" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 07551987-7222-4c5d-86ec-d664ffe3d104) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 02062822-47b0-4b0c-a995-92e50f771639) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 682de2bd-7763-493f-ae0c-73c0e8d6b5b1) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp e626b460-ef4b-414d-a2c8-47a3d9760121)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3b5b3993-8d1d-4e0d-8f62-33b55a7d07d7)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 28 "FAN1_PWR") (pinfunction "1") (pintype "passive") (tstamp b00df4b5-0257-4ce7-b458-eb018bbca979)) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 23416e5d-9e80-4232-bc36-57f7ae89601a) (at 127.4 111.7 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/99383412-e91e-4682-9562-162d7ddf01c0") (attr smd) (fp_text reference "D20" (at -2.5 0 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2451d668-51ff-44ab-acfe-cfe666fa0c7e) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b102087c-eb25-4b44-aa8b-3c782cbfd9bc) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 20ec6350-74a5-4d42-b316-fcebf33d4f1f) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 5066ec9a-19df-47c4-8835-fbd519c75492)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 7bcd2b39-3ed2-4d2c-8455-de5fcab07493)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp d08ce24e-7717-4be5-87bb-ae091c6d4b8b)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 62832516-11f1-4f5c-b685-8f41c44bdcd7)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c81031fb-1f04-4fac-8d59-ac8a1a81a15c)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp dab29796-d6b3-4d2d-805f-0b5d2109d9de)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fc83cf23-e446-4a86-a627-d51de5b41357)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4bc86510-eacc-4743-bf0b-cadae3d7b4b3)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 854c8829-725c-43a9-9fc5-c324d25b9b34)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp b0435ce7-bdba-4ce7-b15a-4c85a5fe1252)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp bdd0b335-10a1-4a58-b644-8a502b93dd0b)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp f9ff75f9-641a-49cb-8196-d4ed678570a7)) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp e16a5506-6cbd-46c1-9176-20c73f3404a6)) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 108 "Net-(D20-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 68c6af70-3963-40f7-a571-68a1083177e1)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 23d75056-8ad4-462d-aa30-6d8d564b8e62) (at 167.4 101.5 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/094bbf69-e345-406c-a80f-9e08f85706fd") (attr through_hole) (fp_text reference "J13" (at 7.3 2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4ee0880b-0024-42bc-8cdf-89b0f253ab70) ) (fp_text value "Fan6 Output" (at 4.05 4.35 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 69a7514c-f517-4b46-bf93-1effc96b0e95) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5805d656-927a-4296-aa49-a0ba3d7b6fe1) ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 08a3676a-a023-48ec-ba8b-baec3d88899a)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 1a6fe569-c5e5-4a21-a4ea-d60011b774d2)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 1ceebb8b-98a8-42a4-b362-5258a95b213a)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 1f9097e7-c345-4ea0-87cd-6931bd3e5e20)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 2ea2fe11-f110-4c15-9711-2061b7ff7476)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 43daede3-09f4-4370-a4cd-1742a0f3e737)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 9481d1bb-33fc-4de3-be43-996175f1f1b7)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp fe42ae90-db4c-434c-84ff-afc19cdb6192)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 3f0a593a-f5d6-4037-a904-84b77fcf44ec)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp a94145a5-5a97-41c1-b7b5-a3ee67095173)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp c90c7496-e357-4196-84e1-b6422a13a023)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp fed962e6-4c11-41ad-933f-6a0484a22c92)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 03933f33-7fdb-43de-9d7d-a565cad8a277)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 12368119-64a6-4e2c-9075-8eb76c0372b6)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 18294f4f-7edc-4152-bf13-29a24ca720f2)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 1aac4077-bad0-4463-b828-61cc63a5ccc0)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 3cbb184a-f234-407b-9174-d026edde4a38)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8b9dc805-4667-42a6-97ef-c89f0fe31327)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp b426553d-4a7e-4896-84cf-af69497a695e)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp bb3823e8-bdbd-4f66-b957-b61f7f04dd87)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp c7bd9338-9aed-41bb-820b-e4615e63ea41)) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 8740e3f7-ac5e-48a5-a1b9-2b3a8f9906e3)) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 53f26f66-9378-431b-b932-a3fd4a84e669)) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 93 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 3fd84676-c0dc-47ea-8930-0afc793ec874)) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 22 "/Fan Channels/Fan6/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp e4c8997f-0e4e-473d-84d3-edfc0a922603)) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 94 "/Fan Channels/Fan6/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp f0e1c089-c805-4c36-a781-0522715b0167)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 24217754-65f8-4058-9ca8-8216e58d0e1a) (at 127.6 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (attr smd) (fp_text reference "R32" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f535cada-7757-4632-8f16-ee8a06da7cc6) ) (fp_text value "1k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 67522698-b563-4886-bdbf-5c433326fba2) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 27208b49-19e9-4d2b-ae5f-f9d3f61dd96a) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 80e098c7-ff0f-40d9-839f-9ee0ada137c7)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e1db068e-8ed8-4edf-a7f4-035239f5ddee)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52a0f0b5-ecc7-4927-b13c-0655c9a7b663)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5de151cb-70ef-4de6-8791-7554d8803ed7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6c900bf0-cac7-4987-a689-121ebc5161e1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 931b2192-b16b-4ebe-b929-3a8ff8451b32)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7c047bc0-9e6e-464e-8bc2-a129de6017bb)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp adeb541d-0e55-423b-b1a5-ac8cec777f8d)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ae2697a6-5b6c-4144-a80c-f59c20cf01e1)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e417e4c5-b508-4e5a-afd1-7dc505f57056)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 101 "Net-(Q4-Pad1)") (pintype "passive") (tstamp 8a32e254-34b1-4b9c-b7a4-13d903135be2)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 80 "MBFAN3_TACHO_GEN") (pintype "passive") (tstamp 1c29e414-397e-4fe3-9282-d1236b08d101)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 24506f2d-3035-4df8-b27f-83d5d79b2e33) (at 67.2 63.05 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/4ad1e273-b8c7-4692-8f20-a03965035fd5") (attr through_hole) (fp_text reference "JP1" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c62f99fa-e309-4128-808c-4711b950b00b) ) (fp_text value "Power Selector" (at 3 2.125) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0164ff4b-c0a9-4846-8664-1d2ec1a9c85c) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5d6856ca-11f3-4c42-8239-03daff8b18d0) ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 1c6b1f85-f47a-4eee-b1b2-4f2cb91036f9)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 51bd37f9-3964-4bb9-aed5-594001d6da44)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e16cef73-05e7-4427-bfd0-44e9d133bcb2)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp e8b087ff-4d07-41d4-8bce-6d5151690057)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f1072060-32a4-40c0-86ce-311165e40283)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f279077b-e34d-43c6-9a49-a57dfa3970c0)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 41012f7d-ba65-4723-a315-4ded91405182)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 7385365f-5cab-40d2-a459-8984db764cf1)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9936586c-e3d9-4296-b675-d4b08645e392)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b01ff610-e6f9-49ae-b159-336410d93de2)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 046e1274-446d-4276-82d9-0937d3d4ea15)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 64fe716b-d516-417e-b154-84fedfefa893)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 89477fbe-9f1f-4284-99de-73ccb1bcefb7)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 944db7da-8c18-42e9-9fd4-37895fd203fd)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp ef8f4047-cb55-48f3-a860-37909f8f1ff7)) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "A") (pintype "passive") (tstamp 25da8667-d387-4fcd-8184-ef46d3401d48)) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 10 "Net-(D3-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 3bfc3ea2-93ca-4e08-80f1-41c93658da83)) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 28 "FAN1_PWR") (pinfunction "B") (pintype "passive") (tstamp 3bb965dd-5573-4642-9c63-5cd31e8b66d5)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (tedit 5FA16958) (tstamp 25b9b6d4-722b-4fc2-8315-c355f287841f) (at 128.4 66 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/537d375b-1ca6-4946-95db-66496543d0cb") (attr smd) (fp_text reference "Q4" (at 0.75 -2.4 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c72c22c7-03ff-4aff-8914-f4bb4f8b74fb) ) (fp_text value "2N7002K" (at 0 2.4 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 57eb24f7-992c-4ddb-bb00-54c32ff100ad) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.32 0.32) (thickness 0.05))) (tstamp 6d16bcfc-df0c-4f97-ab20-04b67f6e6cdf) ) (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 27994758-1755-48e3-ada0-9f89b9661f59)) (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 63d2de20-f243-448e-8f9b-9238fd5af361)) (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 87bf82be-e16c-461b-9bae-ecedbbb19a0f)) (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp fd96f853-b86f-4839-b405-9056fd204602)) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2ba2b3eb-224f-4796-afc6-e3fdf39ecfbd)) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4a075904-512b-4037-94e6-7684d38257fa)) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c8cc2583-f9e2-422a-a9d1-626546f60513)) (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp d8b207de-03d1-4ee0-b9cb-fbacfbe21441)) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 1f3221c1-4baa-402d-95dc-dc90b854dc09)) (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 5914939e-95f1-4848-b987-27742538e48f)) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp a5de6c3b-15c4-42d6-884e-57cc5dc4ca9a)) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp bd8e008e-dca2-4859-870a-2092654287c0)) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp c82be33c-e02b-4b8b-b17d-c492fbe24198)) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 101 "Net-(Q4-Pad1)") (pinfunction "G") (pintype "input") (tstamp 9b52db44-d7de-4fdd-bf98-b91b7e70bfef)) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp f782812e-41f5-4fb0-b703-4162c93716f8)) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "/Fan Channels/Fan3/TACHO_OUT") (pinfunction "D") (pintype "passive") (tstamp a26d4cd6-ebcd-4f23-9ce5-fec244b6e24b)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 26a040b6-6869-4e76-8beb-95773650e944) (at 49.2 62.8) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/8fdede93-8ece-4277-83be-04c6588a07ca") (attr exclude_from_pos_files) (fp_text reference "TP2" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 02df6520-ff4f-4e6a-ac1c-ad6eb187af6c) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp aed1da92-91b8-4acb-aa50-64dd7eee9342) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0f28c3c6-4d7a-4746-b391-b01bad2132b5) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 8d844079-6d4c-469c-93ce-239b45846544)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 87bcb7b6-aa5f-4e2a-b660-d816b66e3a6a)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 44 "AUX5V") (pinfunction "1") (pintype "passive") (tstamp 42009417-0189-4392-bee2-a0b34d769c4b)) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 2aea7443-84b8-4ec0-b22a-c5fcc74a6e71) (at 138.8 115.4) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (attr smd) (fp_text reference "R26" (at 0 -1.2) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp 28168752-56b0-4e7c-905e-5696ed3a23e6) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e117b9a3-4868-45c7-860c-7a0459b0683b) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 0532a8d5-8c20-4738-8798-6e073ed5a8f0) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 63c354f3-3b88-4b5b-b208-34ffba3c13c5)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d1feff21-7eba-4b15-8720-b52f55c0ca51)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1aba87f5-7751-4be0-b597-73a1c5598236)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 348a0c3a-4854-4149-8a7a-ae4295b639cb)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b54c3862-639e-4b03-9fc6-28e0c3c13c33)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f55956f3-d95f-480d-bdfe-9bf55073f81d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0ee362d6-46b8-4315-b742-5f777d4f9d69)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3f6a83ae-cff1-4c39-98be-8887d8ed4de6)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 78cb5347-98db-40d1-8eea-cf17a6cf7a4d)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f1b1c833-6823-43af-b40b-5bbeb1279d5f)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 89 "/Fan Channels/Fan4/PWR_OUT") (pintype "passive") (tstamp 7679e634-d3b4-4b73-98a5-b30df7e822b3)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 107 "Net-(D16-Pad2)") (pintype "passive") (tstamp 3f7b0d16-9685-48aa-9060-ab5b127cf09c)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 30874953-7dce-4de5-9037-564ecdf40bfd) (at 45.35 85.1625) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/685754bc-e5a9-4515-bcc4-b4a7b928d1db") (attr smd) (fp_text reference "C4" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp a248badc-f608-4d6a-a66b-d7cf9f302583) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7c13b992-d79c-4f82-a52d-7a3eb0e96c3a) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 595be453-f7ae-43a4-98dc-9f4206218d14) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp bb11a973-eb6d-458d-b80e-df4595403fdb)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp fe780fdc-85c0-47b7-b56c-600a43dc6585)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 428f3782-2eb6-4337-ae85-a7c0723e9ba1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 533c76d1-e8da-467b-8e54-95a92817e1e7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8592424d-3a49-4925-b638-bbebe2d12476)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp eb24f507-7441-4bb0-82cf-c22e317ecc46)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 08e99226-e494-482f-a941-67dc1c3e83e1)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cca7a491-c154-493c-96d6-2b0d46175fa5)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cfc61a62-4177-4fec-863d-a3b681b5d996)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d7776682-a934-44af-bcb6-e2b71b992a98)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "Net-(C4-Pad1)") (pintype "passive") (tstamp 9427ff25-f450-4d6d-94b0-04d6b06020de)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 7cd500ab-277a-4ba7-b1c4-5ed43ae84162)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 309b91c1-cf56-4d35-a5e6-34b764a9c816) (at 54.5 62.75 180) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/146a1d06-dd1a-482f-b91e-93cbb733b8f4") (attr exclude_from_pos_files) (fp_text reference "TP1" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 62ac7a37-2d8b-44c5-b743-4f6934148192) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 70f186a4-590c-4ee3-bf8d-9ff6c3974649) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fa2c7e4b-f5ff-4a81-b87e-a753646dab54) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp f8e4340a-e552-4161-a513-35d93f321776)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp afd614f1-a8a7-4e27-b1d6-39e49f595bc7)) (pad "1" smd circle (at 0 0 180) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 45 "AUX12V") (pinfunction "1") (pintype "passive") (tstamp 665c0ced-a3aa-4033-a0b0-1ac76dc07a66)) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 30d408b7-6af3-4a56-9ac7-f437419bd0d5) (at 150 105.25) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/b49d0204-e5c4-45fa-965e-427ea584956f") (attr smd) (fp_text reference "D24" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e38d9802-657c-44db-bd21-c8ec795ba204) ) (fp_text value "BAT54C" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9c2af6e8-53b1-4c0a-8172-d4614319b889) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 56e4b2f2-f8b0-46b5-9fa3-4f1e5d45c498) ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 632b7b1e-aa21-40d2-9540-e17aa8c670d0)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 6a078ca6-34eb-4d46-9803-7a1b7a115ff1)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 7cc29575-4839-4bb9-8605-fac77e3be914)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 9bc8c5bf-101d-4ad3-89ed-68912060881c)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5c0402d3-27a7-4b54-9f84-b0f0dcd09151)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 82b5f3dc-e191-4be5-b77f-c26ec7b26cc0)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp cfc09eca-50c4-49ea-a882-19ada9cd6b90)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp f27f9ec5-5e91-47b2-a46a-86fb5ee8a6cc)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp 200055b1-bb7d-4a7c-adac-d940f122d473)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 21a49c1d-bd9b-4d4e-a924-3cbc8d8829c8)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 307f21d2-5890-4962-a155-9e40cc0d702d)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 337e37ea-f2d1-4d25-86a0-8d263164d0c0)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 37b433ec-7f53-4a78-81f2-59770b38199e)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 44fecb69-7718-4de2-900b-90493dd6781e)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7731824d-e3dc-4461-9a60-8c20750c0ce5)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 870c8eff-442b-4ac8-9cb3-9f5ea17bc96f)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp de298fa8-30ee-470f-b854-0fda26a0f7b2)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp e8495e15-a0d0-4b16-8cc5-2cdb99c26b6a)) (pad "" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 70858f71-63bd-483c-9e61-f79a4a2d55cd)) (pad "1" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 21 "/Fan Channels/Fan5/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 17231e44-85ac-4aa3-a964-cf2197ceeee6)) (pad "2" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 81 "FAN5_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp 312b1e58-9b66-4b2d-a1b3-1fc15a2c69a6)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 3259f80d-9863-4549-b902-9b908fd99360) (at 157.3 83.975) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/844cd271-058e-4a61-b648-3556ed9f378d") (attr through_hole) (fp_text reference "JP8" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 49c37692-773a-4783-950a-c26c3d94c603) ) (fp_text value "Fan Power" (at 0 7.41) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 72ba5474-7379-4b9c-915b-82f389a67577) ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e130aa5f-12f3-4c64-8445-319d961fa089) ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 025baa4e-9c0e-4171-ba18-c81707277562)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 43d2d4b8-f1d7-4f2a-aa85-7cb4bf6c251c)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 571912b7-93f1-48e7-9716-795cf2eaaab5)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7338b5a9-3a85-4450-86b4-5007c87a58ff)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ae877162-4ceb-4c8a-bbfe-7112f9e7e7ea)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d02abb4a-6862-4e43-bda0-9136ef818539)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 44a15e1c-f254-4648-a79e-78dd546b3ad3)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a3211a09-e8bb-45b4-9fce-27397cf3f049)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp eb84e2f0-c873-4eb9-b0db-dd71bfafb64c)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp fa74e58b-1d1f-4c19-a9e0-9a5b12093d6c)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 64b61241-8bda-4750-89dd-2ebbc378c5f9)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 87cac154-b9d1-4a7e-a967-b26bda25a107)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp c9885123-a10f-435c-b990-754dee090790)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp e82afd7a-801a-4e3e-8de5-eae8d5f80978)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ff613fa3-41c8-4c36-92a9-a9f958011df0)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 34 "FAN3_PWR") (pinfunction "A") (pintype "passive") (tstamp cb6ca4a6-d548-496b-82da-ad3ca44106a9)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 95 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 79977da0-fdcb-4922-8297-b08770982ade)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 8c1aa883-be0a-4c66-94de-9db387d409d3)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 355967bb-76d7-417b-99f5-a39dd20a6464) (at 146.2 75.6) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (attr smd) (fp_text reference "D32" (at 0 1.9) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d585006f-9358-47f4-9303-a822a0a26736) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b28f3137-f7d9-42eb-8fa2-54c6b8433ccd) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp bc4499ed-d675-4463-a987-f8cd58a9102c) ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 28449fbe-c83c-4caf-9302-16b9df6b395f)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 7f0652db-34e0-4fb2-8abe-37eb1d07dc0f)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 922db659-b88c-4732-a911-2b45c05f13fc)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 110e359e-5f88-4430-8754-51124b3f8591)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 94bbdd44-f7f7-4f1f-93b7-2ab019235a58)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f6dd3a30-118f-450f-a0e1-e755e60c59b2)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ffb2a04f-519f-4d64-837d-926b42c94e96)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 037de9aa-a34e-4431-8769-841d7d04060a)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 624700dd-baae-4a20-a2e6-b73e4b0e622b)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 8258c8e2-5f0a-41a7-a67d-d3054f44d244)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 901ecf50-b5b1-4442-9f78-15fbc62c10b5)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp d80c7616-7cc4-4a44-a28a-538f77882cc1)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp e50054c1-942f-418a-bfd7-d248cd0d4c57)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 112 "Net-(D32-Pad2)") (pinfunction "A") (pintype "passive") (tstamp e2bdcc34-a8c3-4e8f-a2ac-f5a61abfc6ba)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (tedit 5C28146C) (tstamp 37745207-6bdf-4c7b-9911-6f752cdd4766) (at 92.35 61.225 180) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2ab9bb49-234a-4ed1-af89-c2604f58121c") (attr through_hole) (fp_text reference "J17" (at 2.9 2) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ba949662-5d84-4cc5-a804-4754dca0eb5e) ) (fp_text value "Sensor2" (at 1.25 4.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 78377ca7-71a7-465b-bf5d-904f6d3eacd6) ) (fp_text user "${REFERENCE}" (at 1.25 2.7) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5719a799-c117-489c-a02d-ab4731df309b) ) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 24661a8b-60a7-4690-bf07-f5aa750abc0f)) (fp_line (start -2.56 3.51) (end 5.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp 3893d3a1-f188-4de6-a726-5e475bac94f5)) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 3c6af9c7-e605-46e6-96e2-1e4d1206d373)) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 5a26958e-d3ae-4788-80f8-01785ce7f0ac)) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 65755c06-dd14-48ab-9e89-49d10dd308da)) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp 6cf37bfa-fa09-4419-ad54-da14f6c44150)) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 7250da89-0395-4091-ab10-f95e8b7b28ff)) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 7c8a9c55-7134-48c7-8144-d580f597deb4)) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 88962a16-af60-4190-a94b-8dd4739c8ceb)) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 8c44c644-bcac-4da2-874f-6f1cd7266d16)) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 977ce08c-fda7-4250-8a8b-bf9f6f47fa5b)) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp a8c82db5-ab97-4017-bd20-6ff343f5a716)) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp adb275fc-a366-45f8-ad67-2b311b3af337)) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp bad384db-1873-4a74-88dc-b72911c529e1)) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp bfe9e43b-bf00-4cac-87a1-32811daaef83)) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp d1b70473-e993-4ded-9022-f36148c2bd7c)) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp d1fbbe8d-c653-4f68-b28b-970bd4731c82)) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp d7411040-b382-41a8-a34f-8517442618b9)) (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp e4ef1830-1e24-4394-b8bc-b6030544a544)) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp e8d89d08-bd5a-4f33-a0b8-44c150775bd5)) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e9165ff8-6b2b-44d2-80b9-960b17d74d30)) (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp fdfffc10-2af7-4e80-82e5-5045c14b47a4)) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp feb07d75-24f3-4a96-8770-29c3406a0c9d)) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp fff01fa0-6538-4ea2-9665-593e48291bcf)) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 253a98af-156d-428c-8024-d764f9dfb084)) (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 6275955d-f34c-4807-a564-15740081acdf)) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 69a9906e-c76d-4012-ae67-e7cef75bac84)) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 6c66d9bc-99ce-4e8c-891a-4644698362a8)) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 3ab9b430-a66e-4e8d-83fc-3606fee18926)) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 791f922a-b2c5-43c2-8841-ddc07118e691)) (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 8dc041a5-5a98-4b0a-bc1a-8bcdd1251c4b)) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp 90f2bfaf-c485-4cde-8a34-bc08ed0719ed)) (fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp e410bfa5-7a42-44e3-9f98-61d058b64f0a)) (fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp f802b2f3-250e-485b-93ec-31389a72380c)) (pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235) (net 113 "AGND") (pinfunction "Pin_1") (pintype "passive") (tstamp ea3beab3-dafa-45dc-8bfa-879c42db8932)) (pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (net 115 "TEMP2_READ") (pinfunction "Pin_2") (pintype "passive") (tstamp 6a15c701-dfac-45ea-b60e-d7e055a2a106)) (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-223" (layer "F.Cu") (tedit 5A02FF57) (tstamp 3bdb7f50-b7c6-4e3e-90d6-4ca872bacf77) (at 87.8 74.2 -90) (descr "module CMS SOT223 4 pins") (tags "CMS SOT") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (attr smd) (fp_text reference "U5" (at 0 -4.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 390415f1-dd7a-435a-93c5-1e545a81d6b0) ) (fp_text value "SPX1117-ADJ" (at 5.4 0.4) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ab1a1e30-941e-49a1-96df-15d3c8065bb6) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp b24b6297-8e8f-4621-bd54-5016616ed48a) ) (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp 05009fac-cae5-413e-be9c-f0332311e168)) (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 3232b872-b021-4ba6-a162-b9f009cfc50c)) (fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 40dc0040-3a02-434d-91bc-df466a40b30f)) (fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp b40d6b0b-2ee6-478a-b71f-86b6dbf58129)) (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 2220b7e1-7d0f-43d3-83af-652cc92e9b58)) (fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 637bb7eb-515f-4755-8fe7-984c990f71d4)) (fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 9914b193-17d0-48ad-b79e-3550ef1dd397)) (fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 9a3e5e71-90d9-4dd2-8d4f-a61a51ee7847)) (fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 00f04b41-5988-468a-91ba-384dadb6956d)) (fp_line (start -1.85 -2.3) (end -0.8 -3.35) (layer "F.Fab") (width 0.1) (tstamp 4627b4b3-32cf-4e8f-9f19-298409c05107)) (fp_line (start -1.85 -2.3) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 5966485d-89d3-4de2-a260-96418a74fc4e)) (fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 8a5827bd-a5c3-4b29-aff3-ead972d8b519)) (fp_line (start -0.8 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp ca9743f2-6e61-4010-a928-adcf144db894)) (pad "1" smd rect (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 7 "Net-(C7-Pad1)") (pinfunction "ADJ") (pintype "input") (tstamp a4bd450b-b017-4b31-af94-c79255709523)) (pad "2" smd rect (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 103 "Net-(C8-Pad1)") (pinfunction "VO") (pintype "power_out") (tstamp 337a187f-8cb5-4e1c-b983-5a07988e10ac)) (pad "3" smd rect (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C5-Pad1)") (pinfunction "VI") (pintype "power_in") (tstamp 712a23b3-5f48-4757-a9e2-0d5f41e30f18)) (pad "4" smd rect (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a5c3e502-e56b-463c-bf7f-ab502ebba32c)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 44842254-6f58-4232-a01d-89ba77812ddb) (at 53 81.225) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/adba1fff-18c7-4fb6-97ae-324d243206c4") (attr smd) (fp_text reference "R6" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f897b40e-a321-4a55-b45b-1ed6be35f228) ) (fp_text value "4.99k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c9a32ac7-4f91-46be-bd7c-b76463cb9058) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 3c72ae8c-e4c7-4d93-831d-634b00d255a4) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 476cd42e-c6dd-4ec3-b6cc-b84e70ce764e)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d1b18f1f-d76f-4830-bec4-337dddced093)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 62f9c078-6573-436b-b2c6-f5127ad98cf8)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 882519c6-47b1-451f-913b-967e6b51c17b)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b32d3643-58f3-4dd6-aa9f-a0acd56f8fe6)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e2df9dae-c19f-42ff-9ed0-61b733eca0b6)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1243ad3a-21f3-4280-b007-3a56528cd1c2)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8e8192f2-a1f3-460d-b308-d7af18aee718)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b019d464-6611-4ffa-83d2-af77b4fbf3f9)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ead85e69-ca01-4d6a-88c1-27d2c8f28f94)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 41d59f21-7381-4f88-b395-6ec8eace435c)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 12 "Net-(D5-Pad2)") (pintype "passive") (tstamp ad6422ff-9b2f-44d3-bd63-8ddf27799931)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 45a58a3c-0ae3-4319-9136-f718ae1af278) (at 149.25 121.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/75bd3244-7746-40bf-b41a-5ea9cec31d77") (attr smd) (fp_text reference "C16" (at -0.15 -1.3) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 57943a54-0d5a-4776-92d5-28c3ef73c2a2) ) (fp_text value "1nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8afdbac1-8ba5-475c-b038-16f606d61c74) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp af062573-b97b-4aa1-bea6-0733ff8c3373) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 6b28a6c4-36d3-4664-8389-c43d55c8b7b4)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 85718cbc-a90f-4e6a-81e3-0f34c8de5e82)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 39e74c5c-b798-4d06-8858-8667944befeb)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 46a31d9d-311e-4951-9580-8458ea12a084)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d525482e-5dc6-4c44-b919-a131777fba8e)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d765feb8-0d2b-4f91-9055-021e050d2c2d)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6c1dc8fe-cd68-4d9d-b5d0-383668c0989d)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 87c4c6cd-a743-45fa-8a20-56ccd5bd596e)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b0e60bf5-2ca9-4c6d-859b-816ea2de1be9)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b5b9cc39-57c4-4b34-9753-47ab693cf9f1)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 77 "FAN4_TACHO_READ") (pintype "passive") (tstamp 47f8e668-273a-44f0-a487-9421f049d27f)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp e2482bc1-8d09-4ceb-8e49-1d592e89906a)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 4789576b-6c47-4352-9505-890bfad2ad5f) (at 41.5 78.5) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1f2a473c-c5a0-4e16-b74d-1437e42fa9d1") (attr exclude_from_pos_files) (fp_text reference "TP5" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c71e40c2-8512-4e3a-a244-a57c0364d36b) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 36362e16-d9ad-4610-bdd4-12c3c73a56bc) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1cdc81a9-e1a4-4caa-b99e-4a20b5766af9) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 25b6a682-b8d5-4f04-90f3-6e2f5d5a9df2)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a0f86ce3-1a7c-44e4-b81c-75f25111acc9)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 104 "VBUS") (pinfunction "1") (pintype "passive") (tstamp 45f042d4-edc5-432f-91f4-851e866f3462)) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 497a3aba-0f0c-436e-9543-aa7c20ad968e) (at 118.275 119.8 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0afb5c6-54db-4986-8460-a37daf921ef8") (attr through_hole) (fp_text reference "JP3" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp b54ae0e8-7728-465f-8eb5-9b8da2acf335) ) (fp_text value "Fan Power" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3d243fdb-41fd-499a-9e6c-1ff5343cde77) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d80c6f3c-2d1f-40d3-bf71-8046ae8efa09) ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 13c15b23-49c6-473a-a640-272df9fa9b60)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2b78fb96-b83a-454d-9c4c-243d3fcbdc74)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 4155505f-3687-467b-8149-9afc3d422f5e)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7bdf0f3e-3a1c-4abb-9c33-d80432067514)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b180f6d0-d840-4b9f-8540-82b63ef22fd3)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp fda9dddb-894c-4a9c-afd9-e6bb2b3fb708)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 03e75cc6-2d96-4d7f-9d3b-b64b049a6429)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0ae82e1e-e87b-4074-a3ac-4ce032970e6f)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 35d35ecc-35d5-4891-8a97-348283c292df)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 39bb9734-8b7d-4247-bc38-bd4a5d9ed06f)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 0d4445c7-8a0d-46b0-93c7-7c5dd998756e)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 348b39ce-20d2-4f01-b3b8-e8bd5a2fc26e)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 70b8744a-7f56-4a6d-a71a-1de076f49081)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ae713629-1dd9-47a6-be0e-0ab9885d9013)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp c21bc6ca-6ffd-4335-af6c-a4b2da7ed6e9)) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 31 "FAN2_PWR") (pinfunction "A") (pintype "passive") (tstamp 56d2c581-0e1d-4968-9265-81ebcc2ced46)) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 42 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 7fd42837-f5c5-4745-aa29-c722e6e8c542)) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp ef0a2071-6555-49e0-bc78-da38debe66e0)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 498ad573-90fa-4112-a3ba-3dace9d4ef29) (at 66.5 120.5 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/0113ec05-ff50-4170-824e-aedf99bcdf74") (attr smd) (fp_text reference "C1" (at -0.146267 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3bab4ee7-ac49-4000-9609-13fbc311bae3) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d34a8d23-0f05-4094-ae7c-0862250a3f0d) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp e257d6e1-689d-4a90-b748-d2da3fc751ff) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 096687d4-1452-465a-89ea-9947b3c00391)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 748545c9-02a2-4792-9d95-0e7f31dc528c)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0bb7fa10-7b8b-4517-b376-d63edd69c7ac)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 570b5589-1265-4466-88e2-15b25e462cb4)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 69883b57-8c02-496b-bcfb-d34e9bab4723)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d98c6f57-9d90-42d9-9970-ef87d6b0a15a)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 16f47e15-d971-4d8d-812e-567b936fb1ff)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 305c5779-a8ae-487e-8c50-e3a757ccea9f)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ed556779-1e61-4777-9b35-e1cc102c3352)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f85e4008-35b9-475e-afa2-3f8246bb75fe)) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (tstamp 62b6c76a-3069-4b79-a48f-8de353faeb76)) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 7d229eb2-e082-4774-8dbf-c1568e0c291f)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 4c0cd657-4a0d-4409-9555-bb1ce90e34ed) (at 149.2 124.6 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (attr smd) (fp_text reference "D17" (at 0 -2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d1747514-84b8-48bd-8139-cb62e6af9645) ) (fp_text value "BAT54C" (at 0 2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dc293504-8b38-48c4-933a-87973ac3dddb) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d1d272e9-a112-40e9-8ccd-279b04adb456) ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 19d84518-aa56-4a89-beed-78ce8456d9cf)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 3900a3b0-431b-4976-9497-7ceb8bad1232)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 802934f8-7c36-4345-a27f-3454fedf92f5)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp d2b287bc-2f46-4c35-bfa6-97b6a4a32736)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 2eb5c7ae-ece1-4fed-b4e9-592cfba8365c)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7e8eac31-6145-4cd6-8741-61a068767f13)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b6b55823-dd6f-4789-a515-dfa8818d1837)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp d877237b-ec99-4b5c-877c-78f09f24b4c8)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 4032b56d-a53a-4bb5-ac3b-c59eec722e3e)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4e7ee89e-e3bd-4c59-a6e1-e370f451c381)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 6a567bea-b4ae-4ae0-8fe6-f1ab689e091c)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp 7437b41b-d18a-408f-a04e-b9dbafcc6f80)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b2c5b0a8-32de-45f7-9091-78722b095b5b)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp cbdc5cfe-d71b-4757-8e65-75ba99306a9d)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp d69f5b76-89bb-4a28-a3a3-1df6ed8fd235)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp f2be02da-9018-4a96-8543-13b5296b0ced)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp f8997d81-479e-4edf-9f9c-860c85e4f531)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp fc2d25a4-7345-4c18-bb97-43e3a9203355)) (pad "" smd rect (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f1cdea97-084c-4836-89b5-4ca1fb43c3fe)) (pad "1" smd rect (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 18 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 278c08c8-62b2-42d5-ba30-8cbcfc259807)) (pad "2" smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 77 "FAN4_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp 511ca6ca-1c86-41e8-b3f2-11a64d5df8db)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 4c931852-4840-4ee6-9e78-91f1070f009a) (at 62.25 62.75 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5de24edb-0b9c-4f50-ac3f-1caa590a2491") (attr smd) (fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 42c22787-8570-4049-9525-e965670122d7) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d6766fbe-8c13-4aba-b073-37e7fd9fda17) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 31588fea-22e8-4d56-8d3b-d61ba6d7a633) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 22faeecd-441c-4715-b6b5-42b818386760)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 324f7979-a0c6-4029-8f62-5b50527afeb9)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 110b40d3-e74c-4303-bfee-75df9d02e7dc)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 160d04a1-b6ee-4ae7-ae1b-45aec4d6faa4)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aa5fd650-d422-4ea7-9a2d-3b5e348c4d76)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c8f6551a-e8f8-417f-a283-0345bc1c5e36)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 41f8bf03-61be-4f07-8937-2c422b687014)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5a3bc661-6f9c-42ea-8932-f960a831c071)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 748f539d-1843-4218-b8de-24f3f1e69a24)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9c8ecc83-6964-4af7-90ba-8ebb1a9fd9e4)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 45 "AUX12V") (pintype "passive") (tstamp 5e096ce0-8d74-4bbe-9252-1557fc3611a3)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 9 "Net-(D2-Pad2)") (pintype "passive") (tstamp ab2eb6c9-535a-4441-8f7b-1562c911e0ed)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 4cee4fb9-4782-4493-a8bd-28f24d54ac17) (at 149.2 119 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (attr smd) (fp_text reference "R27" (at 0 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp b1c1658a-b5eb-4cbd-8b0a-0e4623ded71c) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 230dbd27-c408-46e6-9710-e9e10e77e86a) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 8e194a28-9dfb-415a-b20c-ce4bfa149fb2) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b910ea41-3b9c-4839-9599-62375bc099c9)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp eda2a986-16a5-4022-b1d6-2552e61abdd1)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 134395e2-84d1-4645-bc7d-3923edecc4e8)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3896d8e3-13c4-4e01-a766-927ff0202f2b)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ae7a8faa-d524-47df-9b3d-5300f09bf258)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2e1e048-68cd-41a0-92d9-94131aa4f3b4)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0b317484-bea6-4522-85a3-ab674bc3f514)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6a6680b2-f403-4965-a8f2-3fc7424b1c95)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 98eaf7ef-ce20-4316-b94d-5704f07c1c12)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cb7b09a7-3dc1-4317-9c9a-348d98640886)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 77 "FAN4_TACHO_READ") (pintype "passive") (tstamp 8c075ab2-581c-4b41-9bc0-3411079784fb)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 0c32414a-c8c9-4d57-bcbb-7a32976a7918)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Button_Switch_THT:SW_PUSH_6mm_SMD_2" (layer "F.Cu") (tedit 5A02FE31) (tstamp 4d2fcf14-ba48-45f8-bec9-66e367853057) (at 45.5 119.9) (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf") (tags "tact sw push 6mm") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/21c2b408-da95-4394-b5b2-e408611b3d07") (attr through_hole) (fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9b6c5f4e-384e-4f1e-a332-2fcbc3c1d1b4) ) (fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1d873d26-3239-49ef-8a77-aea45401171e) ) (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9c20b871-7f3a-46e5-8d23-52cf4e0b14bc) ) (fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp 2bb755e2-ab74-4a72-8d6b-37c3b1bac068)) (fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp 3b9ce9f4-f576-4e64-b521-3f102669ccc4)) (fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp ecb4a5bc-3d94-4e42-a942-4312ce0fc071)) (fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp f3a4482f-0330-4c72-932c-21f3f00f469b)) (fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 04b8406d-5af4-41e9-9239-dbb9efd0c1d1)) (fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 13eb9b67-0f4f-4aa0-9c40-8cb1f542ee8a)) (fp_line (start -3.5 5.75) (end -3.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 15ad7767-4bd2-40e5-90c9-3267a447163f)) (fp_line (start -3.5 -1.25) (end -3.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2a40e734-c17d-4cbe-a469-e099793a9fc8)) (fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 2bba5122-cbc0-4ceb-b1e3-ee064017d31f)) (fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 66f92f1f-46e2-422e-ad2d-42b2a9561d0f)) (fp_line (start 10 -1.25) (end 10 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 6f05565f-4d51-428f-a0b0-57e3a52de946)) (fp_line (start 10 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 6f5b28ee-d5eb-4f4e-ad70-b1dd0a8846bf)) (fp_line (start -1.5 -1.5) (end -3.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 769c3945-24ae-4285-9c30-24995b01185b)) (fp_line (start -1.5 6) (end -3.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 7cc32286-a02b-4b37-92ad-8db6ba049a18)) (fp_line (start -3.5 5.75) (end -3.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 951b22fa-be46-48d7-9ec9-470c8eddbb85)) (fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp ad461b81-63f3-4026-8ad9-eec9a87f015d)) (fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bbbc6ea4-241a-46a0-a325-222bfdbcaa9c)) (fp_line (start 10 -1.5) (end 10 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp dbcbad86-7dc1-415e-a5a6-e2ce90822a72)) (fp_line (start 10 6) (end 10 5.75) (layer "F.CrtYd") (width 0.05) (tstamp ef6e5f4e-a317-4016-a599-acba0e08badc)) (fp_line (start 8 -1.5) (end 10 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f2ba199d-d77a-43b8-8ee4-b1b87d363a54)) (fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 80ec0779-8785-4ae8-a408-5a8606a454a1)) (fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 969b490f-d417-4c2d-93a6-af195ac51a9a)) (fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp b5219486-45f7-4bcd-86a9-a255844cbd72)) (fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp d5cffccb-9972-463f-989f-cb3ee270427e)) (fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp ed799184-122e-45ee-b222-ee4a92289e4c)) (fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 777d5353-87be-44f1-90ee-a24b81d23449)) (pad "1" smd roundrect (at 7.5 0 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 48 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (tstamp b86de327-6646-4489-96f9-fa06744b8d91)) (pad "1" smd roundrect (at -1 0 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 48 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (tstamp c6be0889-4c53-459e-8c6f-89b4eae67dd3)) (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (net 48 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (tstamp dc8b4190-2ac6-4ac7-839d-3085c49acf3d)) (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (net 48 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (tstamp ed876678-f726-4163-8b46-5464995ac0ae)) (pad "2" smd roundrect (at 7.5 4.5 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 16d53bd9-6bdc-4f85-91a6-c1727e3eb574)) (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 6b2c86c3-62c7-43bf-a1a1-7ec43b1f6119)) (pad "2" smd roundrect (at -1 4.5 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 70fdc267-e7c1-4e2e-9bfa-452976c4360b)) (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp e909630b-a125-4d47-ab0c-068c2d3d2e0e)) (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 4eb5fad5-8048-4c21-bf6a-ede62b9ef129) (at 162.3 102.5) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (attr smd) (fp_text reference "C24" (at 0 1.1 180) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp f7f50d3d-59c0-4771-a85f-6d76fcb31132) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 553153c2-f8cc-4685-a05a-7c1cee68043b) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp fb3c6c26-02b8-4fbd-b60e-82f65cc6eee8) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 0a05b691-b8f8-49fc-a3a3-bfcb1cd1ef59)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 602c4493-6619-4c20-b405-8f30e83345cb)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1ba9ede4-294a-4102-b634-7ff09c709b77)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2c433003-4d1c-4315-b890-1d49bcce5cf7)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2c926deb-e27c-4622-9c27-bb43ac8ada4d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e4bf4e4-1c63-464e-afdb-a3f734a42062)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2d242a38-551a-4569-9bb1-d0681facff0c)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 53c861c2-1669-442c-8438-1924ad3ec338)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 664ceaaf-24fc-4ac4-97eb-344bed2c6348)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9c363eec-37e5-4348-8479-797febf97d45)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 93 "/Fan Channels/Fan6/PWR_OUT") (pintype "passive") (tstamp 54853ac7-33cf-4470-a010-ff3df7a9f163)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp ac9ee5c8-5c96-4beb-81c7-bca99561da48)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 511544ba-bbf8-4f33-a977-0fcd63e86ccc) (at 130.6 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (attr smd) (fp_text reference "R34" (at 0 1.45) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c98d36b8-9034-4cc3-842e-e855c4c8d2d2) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 906b5f7a-936d-45b9-9540-4d3934a93429) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 1fa53ba4-9572-4824-9c7a-49a94b999a8e) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 08732a30-5b7f-491c-9f7e-c143a39ece72)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8e1c7203-9931-4994-8c3c-15dd9e303d95)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b7445ea-e103-4e5b-9a00-dd53e991655e)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8797612e-14ed-44eb-a090-2a8aad427753)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 89e5d9c8-0bb3-4443-b8fd-6941fecb950e)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a63bc584-eeb6-40c6-8804-6cb35a542b24)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0f5e332d-aeaa-4ead-958c-993a39728c19)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 323166a4-910a-417b-8c7d-c03feb7ffad4)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e9ceb823-c334-4f2e-8d99-229361de873b)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp eaa51897-930a-4f8d-a8ef-555c39f2a2a9)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "FAN3_TACHO_READ") (pintype "passive") (tstamp dbac7066-2fdd-4dac-b00e-c1d1e9a2ff24)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 896232b1-e057-4484-b9cd-53ea18de7753)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 519f6e60-eb9c-479d-80df-fda781585c2a) (at 144.2 66 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (attr smd) (fp_text reference "R22" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e3e04a0c-a620-4d6e-aba5-7ac3eec49805) ) (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 04e7ba59-3bd7-4a62-a1c4-ba759fe84e42) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp fa046664-257d-4913-8c8f-978c16ab4985) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 37c25398-65cf-4ddd-a150-430f469ed645)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c75e51eb-9f7a-491d-9e6b-8a7b6f30007d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 135a6c8a-2949-492b-8b0c-e79a8b7843c6)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 695dd612-89f7-44c5-8f15-c257d03588b6)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d259dbc6-3050-4542-a7e4-56a9729b1f40)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ffd6dca7-1ac1-40e3-9503-ec932cd66e73)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1a788a85-8753-4a48-9586-79783ab77965)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 966da41f-7bd6-4c80-bba8-83d73a7d684a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d70c9649-607c-492f-b96e-fec63efe12b2)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fe1fc527-60b6-4641-947d-42c4e081bc8b)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "MBFAN4_PWM_READ") (pintype "passive") (tstamp e843c0d8-b84e-4163-9e56-4cc72182e39a)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 39 "/Fan Channels/Fan4/PWM_IN") (pintype "passive") (tstamp 1b87e6b2-da8d-48e8-a3fa-8d7a2a151742)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 51d8eba0-9b85-4f13-9f66-5cd86fcfebee) (at 129.8 124.75 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (attr smd) (fp_text reference "D22" (at -3.1 2.4) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 62d5784a-4dd6-4173-8974-998d68b4b9f4) ) (fp_text value "ES1D 1A 200V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c4073d63-780e-4fd7-9975-4fa248a9f9d5) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ec10ad5a-9d94-4d29-872b-420ca45b5e4d) ) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 2e2b4f19-15c0-4c11-88ba-af4641f5ecf9)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 5c9f8203-cebb-453d-9ccf-82031b3a19ff)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 6cfbffaf-0ad7-43b1-8630-eb09a96bfb17)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 541dfcd5-cd84-45ef-ad62-d1d8127a15c6)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 679c9151-ddde-4807-9fca-a5b3469bae72)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 91fb7e8e-2416-4db6-8776-920cb1710f98)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b82e7c44-58fa-4837-ba32-7dd0862b0208)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 10368fab-49eb-4a23-afd3-594891cc160b)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 16cff049-5bff-4bb2-95bc-70fb2fcd4bd8)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 1add12d7-847d-495c-a2eb-74a3eda0ec55)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 1e03aeb1-b90c-4bfe-a99e-cafc8ccdf896)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 261d234a-09fd-4799-a085-873e5b2b456c)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 7eee5042-412b-49f7-8c48-a7aa078725c6)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 915c746e-b39a-4cf0-b072-148b6615cc54)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 9ffc6691-3b5a-42d8-96fb-c697679a420c)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp b9471385-2bc2-4c13-8293-d5f9ae77b19e)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp d0876154-d456-474e-a017-18caa918179c)) (pad "1" smd rect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 85 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 1bf3ee02-c254-4d98-bedd-49388f4b96cf)) (pad "2" smd rect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 8f2330bb-bd81-4631-a947-667534dfcafe)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 522a4697-55f8-42eb-93f2-c7757952a02d) (at 106.5 124.75 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (attr smd) (fp_text reference "D10" (at -3.1 2.45) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 42e8df87-16d6-45d2-8943-7b6f95123dde) ) (fp_text value "ES1D 1A 200V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3cf15b4d-17e2-46c1-b13c-fb428e266baa) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fe3756c2-41ba-441b-aea9-9157ce3bbb82) ) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 0eed9c6b-9399-4005-bdb3-b19f9cffc8f2)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 17ff0f97-5523-46e3-99b8-90e97fcf5628)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 27dcc9a5-e02e-4ac9-9319-8903b48a5271)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3f9f7cc5-2cba-4e8a-bca1-3fa717e649ee)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9028e4ec-92a6-4e84-9214-959a64275581)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 996dd92b-ca87-47cd-b988-f35c3d659efe)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp be48a76d-9154-41b6-b917-d980b5451ecd)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 01ec4ae9-d35a-4bd0-99b0-bb79d7dc9370)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 1b6c3810-6ff6-4569-990e-3725ff8cb5a0)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 1d70caa7-3d1c-4778-a953-bff1b636bce8)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 35a1bf16-6579-47d8-a450-fbdbb2d84fe2)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 5654d6aa-6cb3-4a63-995f-a4d90d0af373)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp b06091aa-4af2-4548-a060-6aff545fe868)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp cf50268e-fc8e-40ae-a02c-9f0ca473198d)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp dc3e5d60-2dae-43ac-90bb-b7bd2192806c)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp f4f5d0e1-d4ab-4c93-810c-bd4442cbef51)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp ff79a84b-6de9-4514-b35a-18d37ef2f7ea)) (pad "1" smd rect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 40 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 0c2fe7c3-99b0-4a57-9104-9889649d577f)) (pad "2" smd rect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 59824616-d26c-49bb-8a95-7ec42803794d)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 522ec98c-f663-42b7-a5dd-6f3331445a72) (at 167.4 79 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/703bdce5-9294-4717-b483-0d8ff4314a65") (attr through_hole) (fp_text reference "J15" (at 7.3 2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2262369d-908f-4b7b-8fa8-6f936456c0ae) ) (fp_text value "Fan8 Output" (at 4.05 4.35 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f35b2073-882e-4ac0-9440-1e7208b06a2e) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8f769b74-1b51-4a11-b217-f7821e4b85b4) ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 13dfcd3b-0f2c-4213-9f4e-8f701fa294b3)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 2c471abf-4676-4834-a661-17c81fec1d5b)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 2ceb269c-002a-4d1d-8fcc-3039e49371b1)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp b5997f1e-9cb8-4172-a147-556eeeae1850)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp cd37445d-7e69-43c7-a246-3c19a9e80192)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp df8da694-da12-43e9-b050-9c54dbe4c006)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp eb1f5f67-1647-4e1c-ab18-120e742c63a6)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp f474eb24-c3d2-44ec-9cc5-fc85f895cc59)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 03493525-9e42-4edf-a568-7919892a473f)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 053c8083-a9af-4404-9cbb-5f2f2c004e29)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 7dfadc2c-0002-4536-9a16-40d98cd244d0)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp a5c7abb9-628b-4db0-9244-e209be576760)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 2b710c32-5910-4fb5-8e24-08ea454479d9)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 309cce7c-76a5-40f7-bf52-1289c4234f67)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 538ab23b-56dc-41b1-84f0-d71d488e9061)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 81b0798c-3dcf-44aa-bdff-27c7582e7f35)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 9a1ee4ae-e660-49f2-995b-2f9e786a47d2)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp a5447a5a-3f78-463f-92b3-8019d9cbd4f4)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp b4877e61-d908-4a92-9ac0-5dfa5a23f7e8)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp c3e774d4-dedc-494a-89d3-3634a87fe5fb)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp d7d36348-4d86-4887-8ce8-77f3dc661022)) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp b62153a3-dd80-4823-b1b6-9a0be52853db)) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b5c982b8-42bf-46d3-8d37-9f6cd5db17ab)) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 97 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 0ae20a84-6157-4c53-abb1-49e9a43fddea)) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 25 "/Fan Channels/Fan8/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp adffe7bf-3d92-4a46-b38a-4af65fbd0352)) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 98 "/Fan Channels/Fan8/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 9354e3c1-baf3-4fb1-ad89-26708e92f2f3)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 52993c55-48a5-4744-9dbb-f7eb4807ee61) (at 130.6 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/75bd3244-7746-40bf-b41a-5ea9cec31d77") (attr smd) (fp_text reference "C19" (at -3.1 0 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp a4e2b28f-5b19-4d32-91bd-2099770d0ca1) ) (fp_text value "1nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 61883613-061e-4067-9ab0-38640276cb65) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 9e6297e3-595a-45e9-bd9b-72048fbe738d) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2a78e7b6-f2ac-4df8-839a-744e896c13f8)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp c5f0e625-91e0-4e3b-82aa-8bf5701eb728)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a1cfed3-30cf-4c54-9500-d2ce3443bf5d)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 93f0c4e8-9d67-428c-9664-8fa4164531ef)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ccc541eb-5a09-4582-af39-bd9fa3d454f7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d188f1a0-ade4-4d69-ae1e-541e00700f3a)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 04748a16-5476-4809-b159-9184ff58426c)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0c24d40b-c736-4f1e-ba7b-5b05f603e868)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 101cf0e0-bff1-4683-8835-f5664c549143)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8715f141-d743-43b2-ada1-88f322ec6115)) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "FAN3_TACHO_READ") (pintype "passive") (tstamp f4edeaa1-4cc0-4360-b5b4-a3eea7e42791)) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 351b096d-5254-458a-92e3-ec4c37dc4234)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 52be7244-11c7-4e42-90d8-1f5f084f6218) (at 40.9 82.1375 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (attr smd) (fp_text reference "D6" (at -0.025 -1.75 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 33ba1a8b-e49d-4568-8a6a-c7fc2e0f220f) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cfdc063f-7d72-4bf3-be87-192f182ec36f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 14bef0b5-3a7f-4bc9-bc99-4de310fe1745) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 12c5826f-f0a7-465e-851e-83bb7499d12f)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp d09891ed-2cd8-4a97-87e2-11e3be282210)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp e755eedc-a892-4d6b-a1a5-85e99aac5d60)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0591ff92-bb7f-4caf-991b-7776eaef987e)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 59346212-1613-4fdf-b442-6340160b7467)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6ffddd64-6f28-4b0e-9ba8-d2a9fdc97895)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b9bb8e8c-342c-4534-bb84-2df5f16a9f16)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 317c9ceb-c4e8-47b7-8def-b49992856552)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 48ffebc0-6cff-4cbe-b2da-9ce1892aae1c)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5b777b0d-1486-4f15-b5b6-6dd4e2a48e05)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 7c39852f-985a-484c-b2ed-67aeaee81255)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b6f5d339-06bb-4feb-9dc6-14d3fc17e850)) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp f1f2ced8-2606-4751-9ac0-4cd58feaf226)) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 14 "Net-(D6-Pad2)") (pinfunction "A") (pintype "passive") (tstamp ef39a7e9-6403-4fdf-8963-3dd68a62e61b)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (tedit 5EBA9318) (tstamp 53e8046a-1d59-4374-919a-be5f7cc4a4f4) (at 69.5375 80.6 180) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (attr smd) (fp_text reference "C7" (at 0 -1.75 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 771b859d-deba-4d25-8fd9-b5c3fd1af9cc) ) (fp_text value "10uF 16V" (at 0 1.75 180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 33642fe9-9f6c-4b90-85f3-8eddd6490d2b) ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp 67c8c6d8-af25-4708-8b2c-1b75bf417d13) ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 1286c9af-d53e-4d8c-b053-b5b9d44c21bb)) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp 78756efe-8ccf-4267-80b5-81366a5f835f)) (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp f5c9ee2b-4a98-40c1-9ba4-e4d65208f6e6)) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 08cf056d-b25e-4ba3-b768-894e8936302d)) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7824e2ac-a67d-44b8-97b5-dff3d9825f2c)) (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp b46e08d9-3c86-4670-bdca-9162f75c033a)) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp c1381d14-7e43-45d0-bea7-bf0739e524fc)) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0bafebff-3601-4031-af8b-46c1292872c2)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 3e091e26-f2d5-4966-9755-13d939adf97a)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7fa6ac70-79f6-4347-80f8-75e918ce7a6d)) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9f33c2ad-2d8c-40b3-ab76-5b8697d8383e)) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e926696e-e6ec-4a02-9a1a-a1a424f261a6)) (pad "1" smd roundrect (at -1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp 9a001971-688c-4ed8-9db9-724b027118f9)) (pad "2" smd roundrect (at 1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 2 "GND") (pintype "passive") (tstamp 26f3fb58-50b2-4041-9882-dc6f6152828a)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 5467a1d8-1da8-4db6-8370-a392f817657d) (at 141.025 119.8 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0afb5c6-54db-4986-8460-a37daf921ef8") (attr through_hole) (fp_text reference "JP4" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 74a9d92f-93b8-42e6-97b6-ac630c5378b8) ) (fp_text value "Fan Power" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 862b97e2-70d6-4aea-9357-60983bc901d8) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 53dc5eaa-73e3-43ab-9e31-a54cd5adc72f) ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3fd645e4-1c4f-4c07-afcb-59e3215127ca)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5f3ac091-d5f3-4e8d-bed3-d7d84d73e753)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 6d2ec6c5-646f-4865-962c-fb5a5edbf1c2)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9fdf8bbc-e3ca-4283-a65c-7015973dbcab)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b0c06db7-a576-4fd8-83c7-c014cc52b2d6)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d9191217-fb4c-4445-8d6b-28ba96ed5884)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c5ca144b-4a8c-4b43-8d11-73bfc7ce35b4)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6746a20-a2a7-491d-8bf4-6734530b9889)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp c909aa0c-2fd9-4d9c-a4ea-3fb1adec5ed8)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp fba6e488-9940-4c72-a3c3-f2539158fdfc)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 1bcfdeb5-4398-4ba9-8d2b-1afb409aafd2)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2ab4e285-80ef-4098-93e3-671fb896f742)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 36815cf6-0422-444c-a3e8-ed66ef92f617)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 5c19c8eb-a9eb-4833-b94e-16d408a4c614)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fa98a317-14ca-498d-8226-47acdff0c9f6)) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 37 "FAN4_PWR") (pinfunction "A") (pintype "passive") (tstamp bb5d112d-8806-45ee-9ac3-33210f67d54f)) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 89 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 53b141a8-4fb6-4e1f-b3eb-8e36e10c5cc1)) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 3def0672-3d83-48f7-bcb3-c4be8da902d5)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 55366e14-cec9-493d-901d-448b04d2f286) (at 167.4 90.3 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (attr through_hole) (fp_text reference "J14" (at 7.3 2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6311912c-38c9-4819-91b4-41931ccb7cc5) ) (fp_text value "Fan7 Output" (at 4.05 4.35 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3fe57f75-cef2-49bf-8f39-08e2d5e470a6) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 883e7763-c7c3-4085-8e36-b949c37033d0) ) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 03d91a1d-a585-47a4-99f9-06bc1c5af887)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 2646122b-034d-4817-af32-cf5ad01ca4c3)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 3b82d8e3-a040-434a-9991-6271f6273782)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 43d1b320-be08-4c34-893b-273664b3ea68)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 719bf2e0-5e5d-4c1c-a2a4-f786f1849e85)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 917b5326-3ee0-4010-87d4-41a23aedd531)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 96597868-124d-4a3c-974d-f269e7248232)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp d4b7535d-26d7-448d-9ab0-3a8da52b3f70)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 1159df6c-6629-41f1-a8b5-e0c16ac2435d)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 267be05a-0275-4937-bf0c-a7a54781ce5a)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 83e6323e-c1d6-44e5-ace0-3d300f8821e3)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp fe9e9f21-2e7d-4a1f-9cf8-dbb5f94d13c1)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 6d7729f9-9d51-4b7c-bb0a-c926d4ef9093)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 73872e39-ae4d-44e4-b9c1-d79891d9d4d4)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 748aaee6-99ae-41ad-8caa-46dcb39df129)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 772b2560-c224-4933-9225-40be66422908)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 89b31927-f663-4a3a-a530-c0fd8571c8d7)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8f43871f-66bd-48f6-8a27-9d3168ee9b0c)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp a7928873-604e-41b4-8f3c-a9332a26491c)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp d4faf341-fbfa-4ae9-aad0-69ba44e7c909)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp e23187f9-dcd6-499f-90d3-0eec00b87622)) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 004f1cac-5431-476d-8d12-f0d7e1d2971c)) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 8bcf2b99-1928-47d5-9785-f90fe779323f)) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 95 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp c457d6bc-d372-4e5a-9060-512765531115)) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 23 "/Fan Channels/Fan7/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp c898c915-89f5-4003-9fb8-8b0c3f06dfe7)) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 96 "/Fan Channels/Fan7/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp de4d9514-3cb5-4e56-aa34-9a36cc7ab2fb)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 55ee3126-63d3-41df-9fd0-eabf0dc0523b) (at 77.3625 63.15 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6f5e15d3-8889-4380-8ba4-82af742cd899") (attr smd) (fp_text reference "R50" (at 0.05 1.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0dd58617-a15a-42cc-bc68-c44951b0d031) ) (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 113f1031-8687-4f8e-9479-70eafef9cd17) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 392d057b-5c26-48b2-b5dc-71acce98ef08) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 082cc71f-6129-4b45-bbfe-b79b608aad1b)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1cb505d4-7ecb-4ca4-be0e-bc2dd2e6ebd2)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 128af8e5-e310-4790-b81f-def028fde860)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3cb525c7-04f0-4122-9443-f66f2d79e888)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f469a31-c781-4a2e-9607-48a4cc16a710)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a7a540b3-a1ef-4b73-8b5a-3dc34502b7ca)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4f3dae5a-1d16-400e-a391-e6eed544ba4f)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 75279e0b-93fe-46fd-9123-3e66e8f1b837)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7664daa2-09b7-40ca-9fed-a7a53c9367ce)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 89434e9c-a6ff-4151-be6a-8de2fa2c07be)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 114 "TEMP1_READ") (pintype "passive") (tstamp 4cc6a334-ce1b-49d8-8b2c-31457d98808a)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 116 "Net-(JP10-Pad1)") (pintype "passive") (tstamp 9d7f78b8-2bbb-4870-9a7e-2cb77929097c)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 57a1dffe-23ec-4be5-9261-f41914073183) (at 139.6 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (attr smd) (fp_text reference "R25" (at 0 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1a2ac8e6-dfbd-4ce5-84da-a062fbfd4ea5) ) (fp_text value "1k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7dd06ec4-8687-438c-a075-5ce3cb2e7cf5) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp a8fadb61-7c2f-4eab-a528-2c72e781874c) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b1963135-4b74-43e8-9957-bccbc74407af)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dda054df-8668-47f6-a348-91e2de9c06d0)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e8e9b67-fbab-49f6-a241-642514fcb4ac)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 945b482c-3dca-442a-b871-9842ee27c9e3)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e88d01b1-e5ca-4741-addf-c39e2d0bfbd5)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb45e70b-b3ea-4b7b-9413-e53e998673d9)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6182ca9b-1bd4-4f37-bff8-2540085c3fe2)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 63d8f5c8-fe4c-4059-b793-e3029b0342e9)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7ff59b1f-438b-4522-93c4-c2a4317bb0c4)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aa8de8f4-81c7-4340-b57a-e29b4bba9044)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 100 "Net-(Q3-Pad1)") (pintype "passive") (tstamp 5bcf6fd1-8de0-4a52-9248-93af3c34f9a0)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 79 "MBFAN4_TACHO_GEN") (pintype "passive") (tstamp 8ada2965-10d9-4362-ade7-32e46d9ce2ff)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 5c470add-b449-455e-95fc-baae46d35c85) (at 138.4 111.7 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/99383412-e91e-4682-9562-162d7ddf01c0") (attr smd) (fp_text reference "D16" (at -2.5 0.1 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp cd8fc82c-2372-4ab9-b58f-1c5bd1ca2b34) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 31bc72e3-7b37-4039-ae03-b411f4438425) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp b777f5ff-edd2-4554-b34a-e941a882d0fd) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 3abac4e2-b3ce-4193-858d-ba0c4b81f84b)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 71ebaa7f-b6f6-4306-8ae2-f18bcc629bcd)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 7264e754-94bf-45f8-8f07-c4ba0c236301)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 15f78139-6d94-44b2-bfa9-7b1fafdf24a2)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 45da367c-fc2c-42ee-903c-c1df37d60691)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 66da1b23-6a31-4d09-b903-23246835c884)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f47134a4-be82-4ad4-a1ad-bf72ff4ae546)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 32e6d5f9-b73a-409b-a341-b80aa666fbb4)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 9d5ddb59-1e9e-4537-9599-057acace239b)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp cb658bfb-bb44-442b-af68-cdf8168ed728)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp e7e6cb6d-7647-4949-b7bd-8bc1e899dd19)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp ffcbff8e-ab26-41db-bf1a-b4c132bdb8a6)) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp ddbdf308-7274-4126-9ece-b0701f6ccece)) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 107 "Net-(D16-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a1829870-35f9-42a4-85e5-1fc46eb765ad)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 5c7f9cd1-7e82-49fd-83ae-a52e39d9d004) (at 53.225 79) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6823870e-28cc-4ec1-9b5a-c8beb3288006") (attr smd) (fp_text reference "D5" (at -0.225 -1.7 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 36386b3a-5868-402d-879f-1c64f38b9381) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9ce2cef5-9072-479d-b0c4-460ef7a3a2fb) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 7887c1e5-a39e-4420-9c0f-cb4b6397afbf) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp c930cdfa-1660-4799-a371-c9bff2c1327c)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp d5838a35-2d22-4e51-8332-1512216fc687)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp fe99539a-c02e-480a-8c20-6f064e3326bf)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 62a4b855-88de-4178-bdb1-ee48515c13d4)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8ebb365f-7bf4-48dd-ac74-ff9b90525108)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bb1df11c-a67a-4fb4-bc73-ee8b1c708dbc)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d39abd82-c7bd-4660-829b-3540bce92c3c)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 29d240c1-25df-4713-9f8e-30107df701a8)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 3bcf54da-04cc-424e-a08c-a992cacb779e)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 48814292-0ec2-4908-8d21-d06bc5f90231)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 655d6842-ec1b-4e93-bd09-328fdc131ea0)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 66509649-a004-4e89-922e-155a844e57a3)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 57179aa2-ac49-46b4-9331-17f1514d49ad)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 12 "Net-(D5-Pad2)") (pinfunction "A") (pintype "passive") (tstamp bed34edf-ffa8-4101-900d-d99d43ba9f2b)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 633aafcb-e7f5-4f49-b90e-2af365a07e52) (at 132 65.6 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (attr smd) (fp_text reference "R29" (at 0 -1.25 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6b92cad9-6d2f-47bc-840d-86983f23dbd1) ) (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e95464ad-5115-4da7-9d42-07f7afedab43) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp e526f61b-e3b2-4d3e-9288-0bfaf281b2d3) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1fbc3851-58ff-483f-a7ba-e5bb11c0ff82)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp aaa9f8c5-595e-4132-8261-8afe673c2e15)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a8e5772-4e87-4c0e-ac55-8093e1186174)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52b33ec3-16e7-45be-84d8-729e484832c4)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 88f2c5d0-ef3f-49a8-aa6f-586a595bc1a1)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 89999550-331b-456c-b849-35cde1161a86)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 35db62c3-5d93-4309-9d77-e83edad225b9)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 84ee3321-ec06-4133-b3a9-20a94c446fab)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 94c7e981-d805-45c6-8d0e-a325204dc389)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b947bf12-b4f5-4bd3-98b5-9933de05b6df)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "MBFAN3_PWM_READ") (pintype "passive") (tstamp c834efbe-45e0-42bb-931e-de0f2ded443b)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 36 "/Fan Channels/Fan3/PWM_IN") (pintype "passive") (tstamp b0e1ba30-3d47-4cfc-b463-17bf7eb4384b)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 63a80e7b-5e29-492a-8025-d9ff6addda0f) (at 150 86.5 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4e28b459-dd74-4c82-9144-e285ed7f5928") (attr smd) (fp_text reference "R42" (at 0 1.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 63f8faf9-ce7a-4843-8f70-16e6659d5142) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 39cc8ef5-d8dd-44aa-b9d9-32d81db2ef2a) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp ffee5a36-5bf2-4c4a-b1fe-60fb5fb6d661) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c5ebcd84-ea47-4584-9ce7-ad7ea72104ec)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dffd2941-2541-43ee-97a9-79a0ab15f57d)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 028ac1b4-e1ed-461b-997d-aadb6b1ef972)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6c6c213f-0125-4841-a04e-5210f411774b)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 711d1f2b-7c6f-4406-bf53-35aa8485f67f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e84c1345-f09e-4367-a88c-c0057c80e52f)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 01a1e18e-1544-4b7c-930a-f0329542b117)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 55278d41-f42d-4e48-a850-2204c21d0135)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b7ec94eb-e377-4843-a9d4-6c4661f41afb)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d8249d3a-6081-432d-aa74-a584290619e8)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 95 "/Fan Channels/Fan7/PWR_OUT") (pintype "passive") (tstamp 27f37be1-f41b-4f91-9608-f709ea51242b)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 111 "Net-(D29-Pad2)") (pintype "passive") (tstamp 0aa4d9f2-137f-407a-ab80-92e4471b52a7)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 64b46f63-6e09-4261-974e-314eb1064777) (at 108.1 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/a43df6e2-bedb-4718-8d23-6b27bc7ec28b") (attr through_hole) (fp_text reference "J4" (at 7.75 2.5 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d09fca4c-55e2-452c-818b-2a461bf643cc) ) (fp_text value "MB Fan1 Input" (at 4.05 4.35) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e5803e45-bd73-45c0-b324-74c3d0cd5ee0) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2c93e68b-23e0-4a8f-845c-7911d3abc09e) ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 69029636-79e5-47ae-bb14-9bc5dbdeb2b4)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 88948196-6a74-42af-a5e6-9dd2ac95ca88)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 925e8005-688d-4114-907f-02037a34dbc7)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 9971c3bf-26e0-4673-ae70-dced6a212970)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp b49d4886-5858-45d9-91aa-e4893360ac04)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp ce891766-6938-4d56-b79d-ae359292360c)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp db8a60a1-6c78-42ba-b45c-08cf72ddf99e)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp f8cfd3aa-e4ff-4f9d-9bf9-0adf19203b52)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 50065ec5-a536-420d-8f46-a78724f6ee74)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 5f6b5c30-781a-4047-9227-2733b7cc980c)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 6cfa3401-aa92-47e4-b58a-92f49c22748f)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 934f6b2e-d892-4606-8ba6-f8b20bec47c8)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 0570787e-1121-4a9a-8547-f68706a7ba87)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 0b3d4208-4257-4a45-bf45-0ac0b66edc08)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 2228514e-5299-4258-98b9-e9cdf9417856)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 2231b7ac-f92b-4941-9374-f0bfb259582f)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 585b95e0-9819-4f44-8ca2-4fdfa810d12f)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 845b23c2-7266-4032-845e-6495e4c790f9)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp b3627424-c4d5-42f4-9736-1aa72fac30b8)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp e3fcbf5e-ef0b-42f1-a0b5-f37d0a27f3c9)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp f96df586-90b1-4dc4-869b-df72f115a13d)) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp ef9338d2-be92-41eb-995e-a6475d8b74aa)) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp dfe2f8d9-6fc7-415d-bc35-fe3109d317f2)) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 28 "FAN1_PWR") (pinfunction "Pin_2") (pintype "passive") (tstamp 0971e15a-5aee-4a87-83db-9158094b4670)) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 29 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (tstamp a5efeb95-9dc3-486a-bcda-cc7446645e28)) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 30 "/Fan Channels/Fan1/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (tstamp 52c6d709-bf2c-4bb8-aab3-486121f784ad)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 65840528-ae86-4ed9-af78-7b21e0f683c8) (at 120.6 65.6 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (attr smd) (fp_text reference "R15" (at 0 -1.35 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 17c5b7fe-662b-4974-9d1a-80d6ebd1ea5f) ) (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d359f93e-704c-4d39-a437-9e6ae37eeb8f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp b64b9c63-ae51-42f0-ac58-38094e4e141c) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3d8e7201-6ce5-4a8e-862f-faa744c79c67)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ee38aec0-5beb-4800-bc27-4f11cb44b86c)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 48e043ee-81ab-4e61-a81b-90a3d592bda8)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84b0d34f-561e-4159-b869-09ac10a3659e)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bebef2ce-b901-44fd-84a6-49ad9d2cf651)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c579da56-4f9a-4f3d-b913-557f4d7be3b4)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3519f70d-de14-4eb0-8f8b-c6152c800a0d)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5c5eaa92-cce1-4c12-a008-9dfd9b3268d6)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8d8514f6-773c-4177-bb5d-ca673d543360)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f6806eaf-5433-4e72-bf48-f267edd377d9)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "MBFAN2_PWM_READ") (pintype "passive") (tstamp d4839c2b-a8ac-4cb1-92a9-e61030bbd675)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 33 "/Fan Channels/Fan2/PWM_IN") (pintype "passive") (tstamp 79401260-2f1e-4ed0-ada7-f2b90f89f5c6)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 68749e4e-c6fe-41eb-af3a-29aeb0706aa3) (at 153.5 68.5) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/713f0faf-9b32-443b-b4b5-18ccafb68231") (attr smd) (fp_text reference "R46" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp cf2ca2b8-c110-4ac7-9be4-383392984644) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 81918f47-d111-4fbd-b94f-dab2f828be4c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp d87da4fe-21f0-4657-8205-602e9208abb8) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0574e075-2594-4438-bbc0-8c8fc583653d)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c040fca7-83ca-4963-98a1-edcfa0a6d8d9)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4205242e-b1c9-487a-b0b5-87d7b7c82d79)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cd8b3a7a-7a5c-4730-986f-909c6e35d1ed)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e06e8aa7-e153-48c0-a9d1-a19b5089c920)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f2c4bfc6-de7b-44b0-8929-ec4bd5cebfe1)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5b6f374d-8259-4c2b-b68d-008e47d1c5ca)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c10cd760-64f9-42b3-84bb-c8dd72b8b1f6)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp dc90f27a-0582-4841-9940-0576394bdc04)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ee217293-ddc6-462b-afed-e924309e0558)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 84 "FAN8_TACHO_READ") (pintype "passive") (tstamp e78a0281-86b2-4c0d-817d-12bc27d269bb)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 6ca7e4a5-7bde-4f72-a85f-5d11aea31a8e)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 687c9a25-5088-4937-b314-b9948404086e) (at 63.5 70.5) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/d6fa37d5-c99d-42ed-a304-9560a607f338") (attr smd) (fp_text reference "F1" (at 0 3.75 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 38a3ba89-174c-4e9d-b4d4-59f4d97dc3c2) ) (fp_text value "Polyfuse 3A" (at 0 3.68) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 61621db6-c8b5-4983-9614-f94b40e562a8) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dbde13df-92da-4f9f-9ce2-4e4fc2a0da74) ) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (layer "F.SilkS") (width 0.12) (tstamp 02255759-a069-4077-8ae1-692237966b29)) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (layer "F.SilkS") (width 0.12) (tstamp c7f90c07-227a-4ff6-b529-f9626a7fadb9)) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (layer "F.CrtYd") (width 0.05) (tstamp 04cd0982-cad5-44a9-b866-9fba649b032b)) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (layer "F.CrtYd") (width 0.05) (tstamp 7346f48b-e18d-49f6-b3cb-99a7067048a1)) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (layer "F.CrtYd") (width 0.05) (tstamp ce105c86-597a-4c69-a88a-7f85198d7b41)) (fp_line (start 4.78 2.98) (end -4.78 2.98) (layer "F.CrtYd") (width 0.05) (tstamp e378564a-a07b-44c7-8875-9b80a4e15566)) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (layer "F.Fab") (width 0.1) (tstamp 0c3f2d87-b87b-4d15-af14-2a9093f69f08)) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (layer "F.Fab") (width 0.1) (tstamp 8f807d53-33a8-4fa4-8a51-1afffdfb34e7)) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (layer "F.Fab") (width 0.1) (tstamp c49ae437-c4cb-4f4e-ad6d-ae31623e2227)) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (layer "F.Fab") (width 0.1) (tstamp f04c292b-31a0-4b70-9777-679836d99cf0)) (pad "1" smd roundrect (at -3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952) (net 102 "Net-(F1-Pad1)") (pintype "passive") (tstamp b07b5168-2bd0-421a-a21c-fd241f4641ea)) (pad "2" smd roundrect (at 3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952) (net 45 "AUX12V") (pintype "passive") (tstamp e68f3155-1ab5-4341-858c-5532376efb86)) (model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (layer "F.Cu") (tedit 61ECFA37) (tstamp 69e9e663-adb6-43be-bee7-e238a2b332b0) (at 63.5 102.2 90) (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x20 2.54mm double row") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (attr through_hole) (fp_text reference "U4" (at 0 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 917ca659-f691-4f46-b8e8-d35d5c307dd6) ) (fp_text value "Pico" (at 0 2.159 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6146fa25-58c5-41ea-aa14-fa8dbccfb7f4) ) (fp_text user "GND" (at -12.8 6.35 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 05c3b4d0-f022-4b02-b26c-9565d05f8270) ) (fp_text user "GP14" (at -13.1 21.59 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 081c50e2-ea31-45bd-bdd1-c7b16ada4267) ) (fp_text user "GP1" (at -12.9 -21.6 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 0bfac37c-5f4c-4834-8b00-70656a8cb6c2) ) (fp_text user "GP21" (at 13.054 8.9 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 144382e6-3f0b-4840-b3f8-ad4a94ff923c) ) (fp_text user "GP16" (at 13.054 24.13 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 15c8e6a7-cb59-4ed8-b747-f6ea5a2d863e) ) (fp_text user "GP26" (at 13.054 -1.27 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 1f389677-5a99-494f-944d-9214759c9831) ) (fp_text user "GP0" (at -12.8 -24.13 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 2889992a-1959-4075-b02a-25d9a97adc76) ) (fp_text user "GP18" (at 13.054 16.51 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 37aa65df-ad4c-4679-8a01-86d59e632cd9) ) (fp_text user "GP27" (at 13.054 -3.8 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3a911f33-19a2-4d67-829b-f1a94d5c865e) ) (fp_text user "GP13" (at -13.054 16.51 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3afa8fc1-918f-411f-96f0-105d928a6291) ) (fp_text user "GP6" (at -12.8 -3.81 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3d9c62f5-e42d-419c-8a62-d9d07ef7b974) ) (fp_text user "VSYS" (at 13.2 -21.59 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 41e3ed38-7a23-4e85-9f37-0ab672d943f9) ) (fp_text user "RUN" (at 13 1.27 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 4c8022fe-8453-479b-892a-e9c67a336048) ) (fp_text user "GP10" (at -13.054 8.89 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 4e97a03b-b57b-4133-a7c1-02e72ab3bffc) ) (fp_text user "GP11" (at -13.2 11.43 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 53b03770-f616-40ae-94ca-24f6e6e4b2fa) ) (fp_text user "GND" (at 12.8 -19.05 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 5553d38b-84ea-4f05-98b2-0bdbc9a65639) ) (fp_text user "GND" (at 12.8 19.05 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 57202f5b-3e57-4803-8e0a-3050d97b89ae) ) (fp_text user "GP8" (at -12.8 1.27 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 60d84bfe-2a89-4c18-ae7d-4734461622af) ) (fp_text user "GP9" (at -12.8 3.81 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 6c955c87-87c4-4f9c-812d-0fda980aa52c) ) (fp_text user "3V3_EN" (at 13.7 -17.2 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 75966088-bade-425e-8af5-2edec21a2618) ) (fp_text user "ADC_VREF" (at 14 -12.5 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7661f320-44ae-4f22-ab78-766f7c4b391a) ) (fp_text user "GP22" (at 13.054 3.81 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 78663579-31c0-4744-ab09-059c86c922fd) ) (fp_text user "GP19" (at 13.054 13.97 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7a0e1105-4ffd-4de1-bdde-7d1bf552c28c) ) (fp_text user "GND" (at 12.8 6.35 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7b3570df-1f40-478c-b58e-52dc70fc74f8) ) (fp_text user "GP4" (at -12.8 -11.43 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e647ca5-f388-41c7-b326-19fd9ce15940) ) (fp_text user "GP5" (at -12.8 -8.89 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 825bec49-a514-4c36-92a7-532273f5510c) ) (fp_text user "SWDIO" (at 5.6 26.2 90) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 8322c265-d0fc-47a8-af76-d9e2585b5769) ) (fp_text user "VBUS" (at 13.3 -24.2 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 8d34acf2-f81f-4ff7-bf7b-922e8052a146) ) (fp_text user "GP7" (at -12.7 -1.3 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp a236701b-5394-403b-a007-82b74c160f75) ) (fp_text user "GP28" (at 13.054 -9.144 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp a610af91-5151-41a4-b19a-993ee589f475) ) (fp_text user "GND" (at -12.8 -19.05 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp a76b8d59-6c80-4c29-87c8-63b7dbfb818b) ) (fp_text user "AGND" (at 13.054 -6.35 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp a9c82570-42a8-4d82-a2db-ff3286200788) ) (fp_text user "3V3" (at 12.9 -13.9 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp b0643a52-07fa-4481-8739-9def2b0d504b) ) (fp_text user "GP20" (at 13.054 11.43 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp b9e95b9e-5207-49a0-a840-80bd96f4b28e) ) (fp_text user "GND" (at -12.8 19.05 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp bbe0d4d1-8573-4b29-b0b4-4da96fcd60a6) ) (fp_text user "GP17" (at 13.054 21.59 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp c8a9708f-da7c-43df-b42b-3964ac381182) ) (fp_text user "GP12" (at -13.2 13.97 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp df40b90b-5680-4856-8385-2f27c48db330) ) (fp_text user "SWCLK" (at -5.7 26.2 90) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp e47f30fb-08e8-46b8-a026-20a356664d0f) ) (fp_text user "GND" (at -12.8 -6.35 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp edbe7794-be6b-4113-824d-943a3dd14f00) ) (fp_text user "GP15" (at -13.054 24.13 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f56f8fc3-2bc9-4faf-9c20-2515fb933841) ) (fp_text user "GP2" (at -12.9 -16.51 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f5ac6c47-998b-45e6-a30d-a95a02e718af) ) (fp_text user "GP3" (at -12.8 -13.97 135) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp fb70cf7d-925d-4ca7-93ea-bece05573656) ) (fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2 90) (layer "Cmts.User") (effects (font (size 1 1) (thickness 0.15))) (tstamp 645d382d-be49-414f-9970-103285f2ebc3) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 200699fc-918e-4d8f-8ccb-a853eb72d117) ) (fp_line (start -10.5 -18) (end -10.5 -17.6) (layer "F.SilkS") (width 0.12) (tstamp 07133d56-3f41-40ff-b9d0-b1f0b8185c79)) (fp_line (start 10.5 25.5) (end 3.7 25.5) (layer "F.SilkS") (width 0.12) (tstamp 0a075bb1-7395-43aa-b389-4959ec755cbd)) (fp_line (start 10.5 -18) (end 10.5 -17.6) (layer "F.SilkS") (width 0.12) (tstamp 17715473-b49a-4626-9415-8d744bad939d)) (fp_line (start -10.5 -20.5) (end -10.5 -20.1) (layer "F.SilkS") (width 0.12) (tstamp 2228cfa6-f101-449e-ae82-1df6a825d719)) (fp_line (start -10.5 -2.7) (end -10.5 -2.3) (layer "F.SilkS") (width 0.12) (tstamp 240b96cb-3e88-4f24-a92a-593ac6067e70)) (fp_line (start 10.5 -2.7) (end 10.5 -2.3) (layer "F.SilkS") (width 0.12) (tstamp 2a4f2314-14f2-4ebf-99fa-dfc76a4a1e14)) (fp_line (start 10.5 -0.2) (end 10.5 0.2) (layer "F.SilkS") (width 0.12) (tstamp 2ca65495-863a-4369-a3f5-de8b7ade6b44)) (fp_line (start 10.5 7.4) (end 10.5 7.8) (layer "F.SilkS") (width 0.12) (tstamp 36aaed19-3172-4ffc-91e2-db3f26836a8c)) (fp_line (start -1.5 25.5) (end -1.1 25.5) (layer "F.SilkS") (width 0.12) (tstamp 45f931df-7c7f-4e0a-9951-c4dbfc377276)) (fp_line (start -10.5 -0.2) (end -10.5 0.2) (layer "F.SilkS") (width 0.12) (tstamp 46356442-48e4-4432-b71d-0c7095f9bf7b)) (fp_line (start 10.5 17.6) (end 10.5 18) (layer "F.SilkS") (width 0.12) (tstamp 4a615927-bdfe-45a7-8553-f8ebafdc255c)) (fp_line (start -10.5 10) (end -10.5 10.4) (layer "F.SilkS") (width 0.12) (tstamp 53999c0d-9af4-4e28-9272-f0ad4feda76f)) (fp_line (start 10.5 2.3) (end 10.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp 54102bb6-8e59-4ef2-bcad-80faf9ea45e5)) (fp_line (start -10.5 -25.5) (end -10.5 -25.2) (layer "F.SilkS") (width 0.12) (tstamp 5adde742-f63d-4c0c-8370-40bb26865c6d)) (fp_line (start -10.5 -12.9) (end -10.5 -12.5) (layer "F.SilkS") (width 0.12) (tstamp 5d137d1c-96a6-4515-a476-120f7161594a)) (fp_line (start 10.5 20.1) (end 10.5 20.5) (layer "F.SilkS") (width 0.12) (tstamp 63c6c190-c4ee-40bd-9c28-16f07861a3f0)) (fp_line (start 10.5 4.9) (end 10.5 5.3) (layer "F.SilkS") (width 0.12) (tstamp 65861eed-9f9e-493d-8ae4-dc332ce01c29)) (fp_line (start 10.5 -20.5) (end 10.5 -20.1) (layer "F.SilkS") (width 0.12) (tstamp 6eeb1c1b-d80d-4524-9842-3641656b4d1e)) (fp_line (start 10.5 22.7) (end 10.5 23.1) (layer "F.SilkS") (width 0.12) (tstamp 8101bfa6-9e1c-400e-aebb-795ed9f53add)) (fp_line (start 10.5 12.5) (end 10.5 12.9) (layer "F.SilkS") (width 0.12) (tstamp 83c2af9e-6dfb-4cf3-b622-f3386c4a4efb)) (fp_line (start -3.7 25.5) (end -10.5 25.5) (layer "F.SilkS") (width 0.12) (tstamp 8bd5b9d3-5052-4338-b798-f4d84ab2bdbe)) (fp_line (start -10.5 -10.4) (end -10.5 -10) (layer "F.SilkS") (width 0.12) (tstamp 8cfd599a-0956-4afa-962a-9b900b1368e0)) (fp_line (start 10.5 -10.4) (end 10.5 -10) (layer "F.SilkS") (width 0.12) (tstamp 8d6dfcba-d75f-49b9-bbd1-d83496f67a97)) (fp_line (start 10.5 -7.8) (end 10.5 -7.4) (layer "F.SilkS") (width 0.12) (tstamp 90829591-a6dd-403c-8e00-9ae7d66b6443)) (fp_line (start 10.5 -23.1) (end 10.5 -22.7) (layer "F.SilkS") (width 0.12) (tstamp 91b3d098-c0df-4601-80e1-681f7d41c3b8)) (fp_line (start -10.5 -23.1) (end -10.5 -22.7) (layer "F.SilkS") (width 0.12) (tstamp 9e9b8d4e-1f13-42cc-a4b7-328706b709d2)) (fp_line (start -10.5 12.5) (end -10.5 12.9) (layer "F.SilkS") (width 0.12) (tstamp a4234b88-1cf7-4364-a490-2fea396b6695)) (fp_line (start -10.5 -5.3) (end -10.5 -4.9) (layer "F.SilkS") (width 0.12) (tstamp a7211526-bceb-46a4-9e1c-09a95113386f)) (fp_line (start 10.5 -25.5) (end 10.5 -25.2) (layer "F.SilkS") (width 0.12) (tstamp a929c239-221a-42ed-9640-b52d0a768693)) (fp_line (start 10.5 -5.3) (end 10.5 -4.9) (layer "F.SilkS") (width 0.12) (tstamp aadfd043-0939-479f-975c-72a9c96abafd)) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (layer "F.SilkS") (width 0.12) (tstamp ad66b6b6-82e2-48ac-9043-e5875332068e)) (fp_line (start -10.5 -15.4) (end -10.5 -15) (layer "F.SilkS") (width 0.12) (tstamp b1c1b24a-08e6-4aaf-9ed6-ec2881b36517)) (fp_line (start -10.5 4.9) (end -10.5 5.3) (layer "F.SilkS") (width 0.12) (tstamp b20b44ee-35b5-4d12-a68f-774f92530379)) (fp_line (start 1.1 25.5) (end 1.5 25.5) (layer "F.SilkS") (width 0.12) (tstamp b5054ecd-c5a8-488a-9510-9111b882b7fb)) (fp_line (start -10.5 20.1) (end -10.5 20.5) (layer "F.SilkS") (width 0.12) (tstamp b7461d3f-60e6-4cfc-92cb-490352a906c0)) (fp_line (start -10.5 -7.8) (end -10.5 -7.4) (layer "F.SilkS") (width 0.12) (tstamp bafee588-3a0a-4b8c-a115-fb47537c074d)) (fp_line (start 10.5 -12.9) (end 10.5 -12.5) (layer "F.SilkS") (width 0.12) (tstamp be54056e-aaec-4da9-9219-925a99d11d49)) (fp_line (start -10.5 22.7) (end -10.5 23.1) (layer "F.SilkS") (width 0.12) (tstamp cda61dfb-9636-46e5-8b9c-e56ec5eea2ea)) (fp_line (start -10.5 -22.833) (end -7.493 -22.833) (layer "F.SilkS") (width 0.12) (tstamp cf971eb4-33e0-40c5-9723-72551e79da0b)) (fp_line (start -10.5 15.1) (end -10.5 15.5) (layer "F.SilkS") (width 0.12) (tstamp d3a4236e-60ca-4412-a480-6c514f58c0bb)) (fp_line (start -10.5 7.4) (end -10.5 7.8) (layer "F.SilkS") (width 0.12) (tstamp da0043d5-5f39-4c2e-a610-2a5aafb49bca)) (fp_line (start -10.5 2.3) (end -10.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp da5b0ef8-027d-4009-8563-36ce6ca5f08f)) (fp_line (start -7.493 -22.833) (end -7.493 -25.5) (layer "F.SilkS") (width 0.12) (tstamp df42fd04-c36d-4592-b50c-ad7ff7a4a36a)) (fp_line (start 10.5 15.1) (end 10.5 15.5) (layer "F.SilkS") (width 0.12) (tstamp ec55a237-48c2-4256-bb54-49afaf085808)) (fp_line (start 10.5 -15.4) (end 10.5 -15) (layer "F.SilkS") (width 0.12) (tstamp efd1330e-80de-4771-815f-205101ac2f70)) (fp_line (start 10.5 10) (end 10.5 10.4) (layer "F.SilkS") (width 0.12) (tstamp f0e946ae-848c-44bf-ab81-df463fc1a7cd)) (fp_line (start -10.5 17.6) (end -10.5 18) (layer "F.SilkS") (width 0.12) (tstamp fcc3e372-6be4-4e20-89ea-15d74da3ea1f)) (fp_poly (pts (xy -1.5 -14) (xy -3.5 -14) (xy -3.5 -16) (xy -1.5 -16) ) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp 23422a18-796e-4778-86b2-1403946f8740)) (fp_poly (pts (xy -1.5 -11.5) (xy -3.5 -11.5) (xy -3.5 -13.5) (xy -1.5 -13.5) ) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp c4bc329f-b5ea-4612-aa95-a23b66324116)) (fp_poly (pts (xy 3.7 -20.2) (xy -3.7 -20.2) (xy -3.7 -24.9) (xy 3.7 -24.9) ) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp cbc06e2c-6749-4a36-b88a-14c573fa6f45)) (fp_poly (pts (xy -1.5 -16.5) (xy -3.5 -16.5) (xy -3.5 -18.5) (xy -1.5 -18.5) ) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp f29cd7ea-5aac-4e0b-95d1-efc4dfbbd944)) (fp_line (start -11 -26) (end 11 -26) (layer "F.CrtYd") (width 0.12) (tstamp 56d9280c-d6e1-4db1-b562-95106b7123b4)) (fp_line (start 11 -26) (end 11 26) (layer "F.CrtYd") (width 0.12) (tstamp 66437a4f-782b-4a41-a423-46ba33c489ef)) (fp_line (start -11 26) (end -11 -26) (layer "F.CrtYd") (width 0.12) (tstamp 83adb982-700e-4a15-941c-d58774501087)) (fp_line (start 11 26) (end -11 26) (layer "F.CrtYd") (width 0.12) (tstamp bdb2c8b4-2f96-4bc4-89cd-a1c1d84726ab)) (fp_line (start -10.5 25.5) (end -10.5 -25.5) (layer "F.Fab") (width 0.12) (tstamp 05cf7891-463b-4085-b411-0b2332372f84)) (fp_line (start 10.5 25.5) (end -10.5 25.5) (layer "F.Fab") (width 0.12) (tstamp 3d87d067-1ef8-4b53-ae42-ae3807aacd4a)) (fp_line (start -10.5 -24.2) (end -9.2 -25.5) (layer "F.Fab") (width 0.12) (tstamp 4b37fe4e-87df-46d8-94d5-7ba257bebfa1)) (fp_line (start 10.5 -25.5) (end 10.5 25.5) (layer "F.Fab") (width 0.12) (tstamp 7d46bc2b-afda-4c57-b67d-dbb831452127)) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (layer "F.Fab") (width 0.12) (tstamp d3b0c36c-e37b-4991-8031-b7f71fa6fe68)) (pad "" np_thru_hole oval (at -2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 0065cbfe-d6e6-464c-bcbe-d01b55acfbef)) (pad "" np_thru_hole oval (at 2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp bdb8a89d-36cc-4cd2-94fb-197af25334ac)) (pad "" np_thru_hole oval (at 2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers *.Cu *.Mask) (tstamp f6902c0f-620e-402b-88ce-70bc2b1045e3)) (pad "" np_thru_hole oval (at -2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers *.Cu *.Mask) (tstamp fe8094bb-fee4-4f71-9850-844858fba5f9)) (pad "1" smd rect (at -8.89 -24.13 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 84 "FAN8_TACHO_READ") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 2e7a1403-2513-4579-b436-f6934aaa9ce0)) (pad "1" thru_hole oval (at -8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 84 "FAN8_TACHO_READ") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 45686309-2beb-4103-87c0-d726d3a7ae78)) (pad "2" thru_hole oval (at -8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 83 "FAN7_TACHO_READ") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 2cfc4646-14f2-4b36-a72c-c407202ada77)) (pad "2" smd rect (at -8.89 -21.59 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 83 "FAN7_TACHO_READ") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 88a3646d-30a5-4ea8-b07e-c36fa6fb91f7)) (pad "3" thru_hole rect (at -8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 16d58164-bfc3-42ab-8e4f-a74af410ec93)) (pad "3" smd rect (at -8.89 -19.05 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b8ebf5a3-7050-4f42-be4b-08f92e1b4540)) (pad "4" thru_hole oval (at -8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 6 "FAN1_TACHO_READ") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 964235a0-d6d8-43fa-9af6-151cfc39b235)) (pad "4" smd rect (at -8.89 -16.51 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 6 "FAN1_TACHO_READ") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp da3eac0e-892f-4240-901d-e49d27bfa710)) (pad "5" smd rect (at -8.89 -13.97 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 75 "FAN2_TACHO_READ") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 31d514dc-b289-4bc1-9805-3a2f5cc49ede)) (pad "5" thru_hole oval (at -8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 75 "FAN2_TACHO_READ") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp d20aa95c-c13d-4566-aaad-3d473a9a0fd9)) (pad "6" smd rect (at -8.89 -11.43 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 51 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 9e6b2b31-0e83-4792-ad60-17e4c8f62156)) (pad "6" thru_hole oval (at -8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 51 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp f1ad7ac2-2ba4-4b41-aa6e-3b0bdd31ee06)) (pad "7" smd rect (at -8.89 -8.89 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 52 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 0f85141d-4d3c-4707-9e76-1f3eef1a59bf)) (pad "7" thru_hole oval (at -8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 52 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 3fcf5821-b5cb-4571-9c55-dccb082ec7e4)) (pad "8" smd rect (at -8.89 -6.35 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2a527513-1c44-4f80-8dda-0630ff2a376d)) (pad "8" thru_hole rect (at -8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9e40a32d-8ca8-4b1a-bfb0-1f8a323a787a)) (pad "9" thru_hole oval (at -8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 55 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 92fa5bd6-b12a-4bb0-81bb-9bf81cbe5fc3)) (pad "9" smd rect (at -8.89 -3.81 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 55 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp f5f69aa5-1b47-4465-94c6-b003b3f21ac3)) (pad "10" smd rect (at -8.89 -1.27 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 57 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 242a5459-4f8e-4ee4-b9e5-d8720245f5e0)) (pad "10" thru_hole oval (at -8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 57 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 2e4b1d90-e184-425a-a4e8-d3c0a217333c)) (pad "11" thru_hole oval (at -8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 58 "/PWM4A") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 1605498c-5fa6-4199-a891-b6e989748b54)) (pad "11" smd rect (at -8.89 1.27 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 58 "/PWM4A") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 4c7508f6-a275-40c9-9d80-35a0598d72c4)) (pad "12" thru_hole oval (at -8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 60 "/PWM4B") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp b917e2bc-88f7-4616-91fe-f56990b4b5a6)) (pad "12" smd rect (at -8.89 3.81 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 60 "/PWM4B") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp e6430cb7-c97e-465f-8bb9-d208d543cd14)) (pad "13" thru_hole rect (at -8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 584f4921-7e8c-413c-8db8-b7868f990b34)) (pad "13" smd rect (at -8.89 6.35 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7ae1b26c-6fde-4f62-b061-3957efcde5ca)) (pad "14" thru_hole oval (at -8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 63 "/PWM5A") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 1acf58c1-d329-4b77-8353-5fb8aa43a97c)) (pad "14" smd rect (at -8.89 8.89 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 63 "/PWM5A") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 8897957f-190e-4119-a601-918f4e9c9c38)) (pad "15" smd rect (at -8.89 11.43 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 65 "/PWM5B") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 3cb9655d-09c2-4fe4-b8d4-b1e550e10d7d)) (pad "15" thru_hole oval (at -8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 65 "/PWM5B") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp e8169617-a851-4424-bf4d-0e240e65a28e)) (pad "16" thru_hole oval (at -8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 71 "MBFAN1_TACHO_GEN") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp b1ae32cb-c58b-4fda-8869-3f664ef70460)) (pad "16" smd rect (at -8.89 13.97 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 71 "MBFAN1_TACHO_GEN") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp e5822112-8c5f-43e0-bb73-7185a5f14959)) (pad "17" smd rect (at -8.89 16.51 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 66 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 20772bde-14a2-4759-b4a1-134dbafc0cf3)) (pad "17" thru_hole oval (at -8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 66 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 77377912-7149-4324-90d6-82092e75138f)) (pad "18" smd rect (at -8.89 19.05 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 27b88ab8-1c22-4a55-96cd-6ed8eb5348ca)) (pad "18" thru_hole rect (at -8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp de9f8d13-43f8-438b-81f7-4559233744a0)) (pad "19" thru_hole oval (at -8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 78 "MBFAN2_TACHO_GEN") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 6ae9656e-0214-48ce-a45b-bc73ac3466b6)) (pad "19" smd rect (at -8.89 21.59 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 78 "MBFAN2_TACHO_GEN") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp bd550c98-3bb8-4764-bb96-2291fb491da5)) (pad "20" thru_hole oval (at -8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 67 "/PWM7B") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 0d17bd75-f0ff-4007-a573-ad899662079b)) (pad "20" smd rect (at -8.89 24.13 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 67 "/PWM7B") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 8c637ab7-f394-42b6-b86e-8cad1f04c984)) (pad "21" thru_hole oval (at 8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 80 "MBFAN3_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 5803d8f1-4d50-44d8-b27d-ec0141d5b590)) (pad "21" smd rect (at 8.89 24.13 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 80 "MBFAN3_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp e3cbc81f-de46-401d-a519-6e2b7239845e)) (pad "22" smd rect (at 8.89 21.59 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 69 "/PWM0B") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 5a3abe51-5df9-42d0-b126-e170f48e1add)) (pad "22" thru_hole oval (at 8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 69 "/PWM0B") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp dc9a71f8-96af-4f4d-9075-7bc01252c6b0)) (pad "23" smd rect (at 8.89 19.05 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 34685f3d-05ad-4a2b-9865-0896259fb651)) (pad "23" thru_hole rect (at 8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp caf469e9-0759-4c66-a30d-4aff93922aed)) (pad "24" thru_hole oval (at 8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 79 "MBFAN4_TACHO_GEN") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp b7f4f635-19c5-4095-a4bd-28058c21dad2)) (pad "24" smd rect (at 8.89 16.51 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 79 "MBFAN4_TACHO_GEN") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp d50dd3d3-0679-4d31-b1f2-81dec41f605c)) (pad "25" thru_hole oval (at 8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 72 "/PWM1B") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp 069c506c-8ea8-437b-af93-3b6a53bb8ce3)) (pad "25" smd rect (at 8.89 13.97 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 72 "/PWM1B") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp b6c6ca2f-f01e-4423-bd99-07366a8eb2e9)) (pad "26" smd rect (at 8.89 11.43 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 76 "FAN3_TACHO_READ") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp ae2f0d77-d847-4352-9b21-8fc01f26148f)) (pad "26" thru_hole oval (at 8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 76 "FAN3_TACHO_READ") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp eb86e9fd-14a5-4b33-bff5-39025d1f590c)) (pad "27" thru_hole oval (at 8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 77 "FAN4_TACHO_READ") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 72c63f70-c4b7-42fc-8136-365cb4d34ff0)) (pad "27" smd rect (at 8.89 8.89 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 77 "FAN4_TACHO_READ") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp dc802eea-0862-4678-90eb-0d83086ccfd1)) (pad "28" thru_hole rect (at 8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 82c84749-bcf9-4233-a125-fe667807b409)) (pad "28" smd rect (at 8.89 6.35 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp de1cba06-5f76-4098-be20-250118d2f39b)) (pad "29" thru_hole oval (at 8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 81 "FAN5_TACHO_READ") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 5cfe1d43-f869-48d0-b471-4caf9a2d96b9)) (pad "29" smd rect (at 8.89 3.81 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 81 "FAN5_TACHO_READ") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp aafef643-c549-4abe-b619-9a53ca1b062f)) (pad "30" smd rect (at 8.89 1.27 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 47 "RESET") (pinfunction "RUN") (pintype "input") (tstamp 8c13431a-72c0-4f41-862b-1763384d4b6e)) (pad "30" thru_hole oval (at 8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 47 "RESET") (pinfunction "RUN") (pintype "input") (tstamp 926e6315-5f1e-4c27-90d1-81fc71d6c5bf)) (pad "31" smd rect (at 8.89 -1.27 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 82 "FAN6_TACHO_READ") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp d1bab3f1-47a2-46c2-855b-1fb193a37725)) (pad "31" thru_hole oval (at 8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 82 "FAN6_TACHO_READ") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp d99ceef3-21be-4183-a9d8-b162f9edeba3)) (pad "32" smd rect (at 8.89 -3.81 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 114 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 3c11f210-134c-44aa-8b3f-f37854116ac1)) (pad "32" thru_hole oval (at 8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 114 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp e7a15c89-8d3a-4bce-a8be-f3e67cded909)) (pad "33" smd rect (at 8.89 -6.35 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 113 "AGND") (pinfunction "AGND") (pintype "power_in") (tstamp 0b8e132e-19f8-448d-8238-e403337e6188)) (pad "33" thru_hole rect (at 8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 113 "AGND") (pinfunction "AGND") (pintype "power_in") (tstamp 3430111c-10ff-4838-95aa-9864abb0469f)) (pad "34" thru_hole oval (at 8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 115 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp 4bddab57-8b91-44dc-b99e-94fe42744121)) (pad "34" smd rect (at 8.89 -8.89 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 115 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp e53a2ab5-2786-4b08-8e5a-12653787e32a)) (pad "35" thru_hole oval (at 8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 87 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (tstamp 5c661043-e81b-4afe-a50e-569ac5dc8ade)) (pad "35" smd rect (at 8.89 -11.43 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 87 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (tstamp fe9448bd-4992-4d9d-9ea7-080321732c19)) (pad "36" smd rect (at 8.89 -13.97 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 06b636ac-9134-45e8-b164-75a90382875c)) (pad "36" thru_hole oval (at 8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 68bc08b4-354f-48eb-a5f8-e95c7b156985)) (pad "37" thru_hole oval (at 8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 88 "unconnected-(U4-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (tstamp 4e2b9444-92b3-473e-9025-6842312b06ba)) (pad "37" smd rect (at 8.89 -16.51 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 88 "unconnected-(U4-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (tstamp d95be0a9-65d7-4288-9b44-371c0a8f15bd)) (pad "38" smd rect (at 8.89 -19.05 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a807720d-6684-439f-8cbd-8682fc2e3598)) (pad "38" thru_hole rect (at 8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c13f6c51-dd43-45e1-b46d-e9f4888c43a6)) (pad "39" thru_hole oval (at 8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 4 "Net-(C4-Pad1)") (pinfunction "VSYS") (pintype "power_in") (tstamp bb809b0d-e463-40b9-a23c-0b0cba26b93c)) (pad "39" smd rect (at 8.89 -21.59 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 4 "Net-(C4-Pad1)") (pinfunction "VSYS") (pintype "power_in") (tstamp deab9c46-9331-4d84-a5d5-c8f52bad69d7)) (pad "40" thru_hole oval (at 8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 104 "VBUS") (pinfunction "VBUS") (pintype "power_in") (tstamp a9f71d3d-26af-4729-8ea3-cd5a6bd83d1f)) (pad "40" smd rect (at 8.89 -24.13 90) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (net 104 "VBUS") (pinfunction "VBUS") (pintype "power_in") (tstamp ab8ae8be-ae89-446a-aac1-4a0b9f2d504c)) (pad "41" thru_hole oval (at -2.54 23.9 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 27 "/SWCLK") (pinfunction "SWCLK") (pintype "input") (tstamp 7ae1df57-ac12-408f-9be8-1d8a70bfc8e6)) (pad "41" smd rect (at -2.54 23.9 180) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 27 "/SWCLK") (pinfunction "SWCLK") (pintype "input") (tstamp ab91122a-f369-4479-b4c2-1734c675800d)) (pad "42" smd rect (at 0 23.9 180) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 76f1c886-a1dc-49cb-b553-3b71771772c4)) (pad "42" thru_hole rect (at 0 23.9 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp afb274f9-7dae-415b-a9e4-f30c91ce80ee)) (pad "43" smd rect (at 2.54 23.9 180) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (net 26 "/SWDIO") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp 791d8584-9f36-42ed-a1ae-c7015579f2d9)) (pad "43" thru_hole oval (at 2.54 23.9 90) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask) (net 26 "/SWDIO") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp cc9e35b2-2eb6-41a7-8fb5-2ac99e96a6cd)) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 6a44edfe-2ae4-4a26-af04-29021170551e) (at 150 71.8) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/b49d0204-e5c4-45fa-965e-427ea584956f") (attr smd) (fp_text reference "D33" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 580bcbef-c9c2-457f-8868-2dffbabb4aea) ) (fp_text value "BAT54C" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8d059e65-4e84-42b9-8a98-f1a833ba10dc) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3d349242-813e-4b0d-b017-d7c82e86c036) ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 2dc87334-fd40-4e01-9fef-3fdc57ef4547)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 3b15cc06-7d3c-4626-808e-cdda2174d896)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 710a512b-7b56-4f7f-bfcb-35465a2e76f9)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp fa554101-4328-4c98-9592-c6659e0acd71)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0f81970b-f55e-4039-a8ff-40c0a07bab88)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 40305e0e-c9f1-49e6-9a11-38396c5aad44)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b3d2b3b2-eee3-4354-96ae-35ebc3a7e3fd)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d026afe8-5538-4de1-aecf-36ce48ac0de0)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp 4ca74f24-ecf3-4ff5-afc6-b10ba78ad56b)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 518648e5-4c77-424a-b965-aef22f525c53)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 5194aa52-8a01-4b48-9fe0-6f06965993f4)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 67dceaff-b3ab-4673-8804-ffccf009d830)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 6bac8064-9e5b-4360-8ae1-29dc97f679dc)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 7aceb50e-cb67-4afd-9c8c-716237856cce)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 7dc8afb2-47e3-4136-9ae3-dbe9b5c6384f)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 9c8e37e8-5fb2-4bbf-bf72-b7b396f9cb47)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp aa519abb-0e99-4d57-a68c-08794f0a2550)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp ec0b3062-fec8-4159-b282-3c3e632ad68c)) (pad "" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4e9d9bbb-bb4b-4f71-a57a-a915249deb73)) (pad "1" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 25 "/Fan Channels/Fan8/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp a02123a2-48d6-42d7-8224-1acec1028ae3)) (pad "2" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 84 "FAN8_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp 3f9478d4-122a-4960-956c-35916e723b41)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 6b3f8bcc-3de8-4f39-8ed0-7c34895de042) (at 111.8 64.8 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ba9485af-39b4-4a7f-afda-f544d55bea86") (attr smd) (fp_text reference "R17" (at 0.4 -1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 59105f9e-ada0-43e1-b3fb-c68ff75361e5) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dfa64e3a-853f-45da-b6d7-93e2561a9b32) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 3caf07f9-b9aa-409e-bf4f-7189142649fb) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b238098e-37bc-47a4-b804-b46d0c410db0)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d901abd5-91b2-41ed-b520-c8d0d63a98b1)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3fac1ffd-dad4-476c-b799-25824aef20cf)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5078aa3f-bd19-4b74-8c57-3c644abf89a1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8289d44a-3294-48d7-9aaf-7acd858828dc)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce39d830-29f6-4127-9a84-898a2f1c9f8f)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3084e334-bf87-4108-a171-28c9d8e0dd00)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 486fdbb7-972d-4ee3-b1ee-c420f58d1e47)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 52cc67f3-d7ae-455e-ac78-1ebcc3abace0)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5ed62179-26c3-42a3-8d9b-157922d52f41)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 31 "FAN2_PWR") (pintype "passive") (tstamp 1095e07d-8c1c-40df-abaa-9cd930a13e62)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 17 "Net-(D11-Pad2)") (pintype "passive") (tstamp 37702ca0-905a-4f36-91f6-fb362c6ef752)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 6d8ebf97-573b-43c6-8e4c-dd3c59c3b475) (at 162.3 113.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (attr smd) (fp_text reference "C22" (at 0 1.3 180) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 366ccb3a-a58c-4298-80dc-50353ef9f680) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6a380bca-8009-45fa-914f-e21a0ef2d13c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 752ca302-ac48-42f4-ba98-81e2409d4122) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4e1fd7b5-1fd6-44d4-b6ab-e6347a19c8d0)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4ea041e9-88bb-4d9a-b238-e18e503e1466)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 55772ca7-6527-4767-8a66-f928727114fa)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5df71704-dd70-467a-9caa-8aedfabc86d8)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7e0a70ab-0e58-4b95-82f5-99cb63d3f4f4)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c0b59ae1-611c-4f37-98de-681bcc1cc299)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4f4547ce-5726-497d-ae59-92fd8aeb1402)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c0befb6d-0f65-49fc-8fa4-395a17509ad2)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ccda0917-3666-4033-b3b0-fd53ec6c50b4)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d5f7a7a4-808a-4a62-a0a0-7f929cae854c)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 91 "/Fan Channels/Fan5/PWR_OUT") (pintype "passive") (tstamp 38c616e8-f571-42a1-8a71-55087d715bb6)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 7b9e7990-d7e2-4546-8f7a-444b3a5e8202)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 6f5f0c33-b595-427a-8f2d-635a21b1d521) (at 157.3 72.75) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/844cd271-058e-4a61-b648-3556ed9f378d") (attr through_hole) (fp_text reference "JP9" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp a1511268-85a7-4e3f-80bb-303e6d2919e8) ) (fp_text value "Fan Power" (at 0 7.41) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 51f88087-859c-4bc7-a7f1-d8cac8d2db4e) ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8a3add20-c253-4adc-b840-becd588ad034) ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0d9efdde-06ea-47a2-bdf8-78af3ad3ce57)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 263da285-41de-4988-ae91-446223e949e6)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 685f0c83-aca6-41ce-b1e2-d29dc9c7b015)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp ca9a0a0f-1a72-4fab-bca9-dcb6e80026e8)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d1cc21d5-6351-43e8-8198-b40244a6fa09)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp e2f67213-4bba-4825-970b-821f5948cd90)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 6ccd433d-6c2a-4816-b21d-4a0768a4b1bf)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a383ae1e-3ba1-4761-8163-d95206e1b33b)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d337bedd-aa0b-4401-9bda-d7ac17531682)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d79532c7-c634-482e-bc5b-76b7f79f9d3b)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 6113579d-31be-4355-a9fe-a8360d0b05d8)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp ac188c43-fe12-43bf-8778-a1bfebbc5306)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp babea015-3fe7-46cd-aaa7-3404de6c3a7a)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp bb1b4a6e-45f2-4e66-ba32-3ff316a3479b)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ffe1efc0-4e7c-48ce-a91f-49b6fd31997b)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 37 "FAN4_PWR") (pinfunction "A") (pintype "passive") (tstamp 35c7b937-91fd-45b7-ba9b-d8002e5399af)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 97 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp e4570e31-f9dd-4e13-a8d5-42733b999b4d)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 09578cae-3e9a-4372-a934-d377a0227b7c)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 7185ec7a-5979-4090-8ed6-13e8ebfd50b5) (at 162.3 85.8 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (attr smd) (fp_text reference "D31" (at -3.4 2.3 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 17a3ac0c-ba85-49c9-8e1a-99ecf4a3bd16) ) (fp_text value "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f9bf90eb-c5bb-4c15-9277-7006949fb8f6) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 854fe75b-5767-4470-82d4-a76da3839c95) ) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 0f500a95-ebea-4620-a4ed-61366dd50494)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp cac4044e-9067-4280-be0c-ec2646c9765f)) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp e08b26e9-e395-4176-adf3-c9f75b7f8e66)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 28f929e7-e252-4c11-abc8-c1cd99900a84)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 48a6f8a7-d50a-401e-9597-b154ae6cc5f1)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b8230bd8-f603-4f73-a47e-1ecebbfd14fc)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c67b9a12-94b9-4db5-bff0-c11107e6dfb8)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 062966a5-0d6b-42cb-9406-7dec58621b28)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 1141876b-9722-4bcc-a584-a4e45f4c4a48)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 11ec7b43-7df8-4551-9ea9-406095d87704)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 18accf23-c4ad-4f11-8ce0-ef44610f284e)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 33b6552b-ec9a-44b7-995a-5c278ca4a586)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 52cf8271-1335-4a0d-af9e-7b3c315c95de)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 94176e72-2986-4bc7-a1b6-e4a972b3dd31)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp a1c62540-a425-47d1-b944-800610d1d2df)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp b5d3aa19-8590-419c-8fc9-024a390ba36c)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp fcce94ad-1d4a-4e1a-924f-35b7ff0dd4df)) (pad "1" smd rect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 95 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp f88e3ffb-a3de-4628-968e-5bb58876b24e)) (pad "2" smd rect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 41d164fc-c809-4141-ba75-819263503962)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 722dc221-9310-4f87-8ee1-e5a4a9b9aadb) (at 115.9 115.4) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (attr smd) (fp_text reference "R19" (at 0 -1.2) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp 93c3af21-b55d-48d7-8765-064dd08a2bab) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0ced490d-b00d-4eec-b798-e38b7015cec5) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 742503d5-779d-47cc-94be-3cc5cf094ecb) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0b739a5d-c787-4f6f-8edd-9626528c59c7)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c966a3fc-a634-452a-8d7e-b79cfd70abff)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 149c923d-6bfb-4443-928c-8ce70b045d32)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 17f53ec4-9be0-4fb0-9a99-672dccf27e8c)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a67fc7f9-f8af-4014-9cb1-cdb494cca8ca)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f435dabb-24e8-4484-8ca7-eadf64222645)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 97fb0dd4-1466-410d-a128-2ae1e927542d)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a0a2c20d-5703-42f1-a187-4340af186ca7)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d6438a44-b742-48ae-b52f-11da0511314b)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f2a890da-4680-40ce-b207-f4f38e533c52)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 42 "/Fan Channels/Fan2/PWR_OUT") (pintype "passive") (tstamp 374c4568-f98c-4a3b-bfa7-14b15a7f3bfc)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 106 "Net-(D12-Pad2)") (pintype "passive") (tstamp f01efdb1-881c-40a2-bc25-404d9fd4e172)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") (tedit 5D9F72B1) (tstamp 732e2973-4921-4615-b912-28493839045a) (at 64.5 126.25) (descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (attr smd) (fp_text reference "U1" (at -2.5 -5.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 731db568-f9b7-41b3-810f-1b62b436e4a4) ) (fp_text value "SN74AHCT125QDRQ1" (at 0 5.28) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c859294f-d886-4fe2-9c45-bcc270f77b66) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.98 0.98) (thickness 0.15))) (tstamp 6d3234ac-3c1b-4d55-bfda-84144c265372) ) (fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp 2a9ee592-11f4-453e-8153-7f97035c11ab)) (fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp d2325320-092b-4ebb-9d22-fd3fc94c7b4e)) (fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp eeb98e06-a570-4036-a69c-4b738ec19c71)) (fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp f1289d68-0991-4c8d-a455-a9792dbf7ec1)) (fp_line (start -3.7 -4.58) (end -3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp 5ae9e6e8-dbd7-43c1-89ce-89d5742d4700)) (fp_line (start 3.7 -4.58) (end -3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp 94dc6610-7189-4e19-b253-dbe3536a2d11)) (fp_line (start 3.7 4.58) (end 3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp 9af41a23-a547-4933-9611-05c48e1178a8)) (fp_line (start -3.7 4.58) (end 3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp eb680939-5df6-4764-9caf-9d217e29b291)) (fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp deb6e52d-1996-4f59-a952-5979df2bc57c)) (fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp e1bf74c4-b21e-45ae-a2be-cf676c8d762d)) (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp ecc37928-9a85-4b3f-b715-554abe841a22)) (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp f1eca604-7ce4-466f-920a-3d1fd438b931)) (fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp f28044c1-0c80-4292-910c-1b6b6214fc28)) (pad "1" smd roundrect (at -2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{1OE}") (pintype "input") (tstamp 9e431618-a8f6-4e3a-90aa-60a70f81afe4)) (pad "2" smd roundrect (at -2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 51 "/PWM2A") (pinfunction "1A") (pintype "input") (tstamp 9c97f225-ebf5-4c64-b55a-c1dc16be17f9)) (pad "3" smd roundrect (at -2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN1_PWM_GEN") (pinfunction "1Y") (pintype "output") (tstamp 625c3b47-a827-48aa-9662-20a902d42ebc)) (pad "4" smd roundrect (at -2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{2OE}") (pintype "input") (tstamp 1c0535a9-f140-4f41-bd15-bbfd95a945c7)) (pad "5" smd roundrect (at -2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 52 "/PWM2B") (pinfunction "2A") (pintype "input") (tstamp 4186947a-6b1a-48f7-89a6-578a2a7d79ff)) (pad "6" smd roundrect (at -2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "FAN2_PWM_GEN") (pinfunction "2Y") (pintype "output") (tstamp 2876bfb5-9c1b-47e5-ad21-0cb7f21146e6)) (pad "7" smd roundrect (at -2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dd355b97-090d-411f-85f9-44b762629a54)) (pad "8" smd roundrect (at 2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 54 "FAN3_PWM_GEN") (pinfunction "3Y") (pintype "output") (tstamp 8bf44267-1c6b-45e1-875d-cd1bbd163723)) (pad "9" smd roundrect (at 2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 55 "/PWM3A") (pinfunction "3A") (pintype "input") (tstamp a6d9a1d1-ff07-4978-9a7e-3342c49c7c65)) (pad "10" smd roundrect (at 2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{3OE}") (pintype "input") (tstamp 1377c267-a10a-449b-8d57-71812d4e7765)) (pad "11" smd roundrect (at 2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "FAN4_PWM_GEN") (pinfunction "4Y") (pintype "output") (tstamp 84a15b69-7545-4d0b-b43d-670408dc37f9)) (pad "12" smd roundrect (at 2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "/PWM3B") (pinfunction "4A") (pintype "input") (tstamp 703e7e6d-8875-450a-b3d9-db26e2681dba)) (pad "13" smd roundrect (at 2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{4OE}") (pintype "input") (tstamp c9e323a4-4088-4daa-9e19-7731c7fd67af)) (pad "14" smd roundrect (at 2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp b765dfda-9244-40be-833b-6435c4ca528e)) (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 7505eede-a417-42c3-88a2-1fe21ee21a2a) (at 157.3 95.25) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/844cd271-058e-4a61-b648-3556ed9f378d") (attr through_hole) (fp_text reference "JP7" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e835f670-a4e4-411b-93b0-aa3907eaf197) ) (fp_text value "Fan Power" (at 0 7.41) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d4b6492f-ea43-4aae-99e0-bfb2aa20b67f) ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 369de6e0-38f9-4c75-93ed-d58163562fde) ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0915a960-c1d1-4819-9c53-aeb8cd5149bf)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7f27dd6e-61a8-4bb4-ac85-149b149d66f3)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a0b9f050-1be7-488f-85b2-08f372f83ded)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp aa63055c-baeb-45aa-a784-3ad93305f13b)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp d0f188d9-dfb1-44a8-ad95-8dc6e323156b)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp ddaaab04-fca3-4052-9a26-35c7845fd694)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 00f08a0b-82b9-45e5-8519-9f3c6377cd02)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 1b6d0560-1178-425c-aa39-65ccb9b9adf6)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 26fb18d1-6ffa-4a4a-b050-bfff5417256a)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2c1ead4c-ba2b-4a8a-bb34-69dfd6a07338)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 03273d97-5274-435d-8d30-f6cf1379d2ec)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 606bed62-2645-43b2-8746-701feb5d482c)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp c7d84f6e-a707-4ffd-8ab8-e4d824111c03)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp c9994eea-4a76-4588-a706-ad2e04aff285)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp e174db42-2133-4bde-8bf0-5dfc27789f4d)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 31 "FAN2_PWR") (pinfunction "A") (pintype "passive") (tstamp da88cf57-0975-4f67-b828-34f4f4c6151f)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 93 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 1e5a4a4f-7ec1-4d5e-aab0-77eebafcd5cd)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 73237229-68da-4bfc-80d6-f3f33e277d06)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 754b5411-6980-4296-853f-191c0eb30474) (at 119 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/75bd3244-7746-40bf-b41a-5ea9cec31d77") (attr smd) (fp_text reference "C13" (at -3.1 0 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 41512000-8ddc-4c35-95f9-181a97b6f8de) ) (fp_text value "1nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d47cd15e-87a5-4fca-ba12-29ea14d72c4e) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp a3c7a0be-f018-44c9-b3c2-73fbc0d13b4a) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 1422cffc-a6ff-4e64-b009-59da6be804dd)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 48c58df3-effd-400c-a749-bb7805bd9b54)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 09932d00-40d2-44f7-a7a8-9b4da70484c9)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38ab1f4f-649b-4964-b8f9-a4f320fd8fd4)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7514181d-4b93-44cc-9ca7-051e857346c5)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9caa825e-43a9-45d3-8dad-ce1e46623c13)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 059c55b9-3878-4a5d-8c36-f2e1ac20b66c)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 49e13fb6-9495-424e-bd9f-1ff5b065001b)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d17a8152-3efa-4cbc-b6d7-fac93119bd8f)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp dc7fe6ab-e2e1-48c0-b2af-0f1c6ebb04ac)) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "FAN2_TACHO_READ") (pintype "passive") (tstamp 14ff9087-b8eb-4ee6-bbfe-2436601097d4)) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 11cda506-0128-4093-b8a5-7efe9e45a170)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 76b49444-8ca7-4ee5-a251-689e897177f6) (at 141.3 124.8 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (attr smd) (fp_text reference "D18" (at -3.1 2.4) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp aa4f7db7-4640-4cb0-81a3-e3eee0b2ea7f) ) (fp_text value "ES1D 1A 200V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 829eb46a-0f71-45f8-a893-af5ad77aa1a8) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 643e12dc-0aee-40d2-af28-3b74879d620a) ) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 818a21fc-b2ec-4353-bfcc-423539c9450a)) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 8cef67e6-0364-4aca-b1fd-6f03721a3e44)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp a1e2abfb-5e5a-40ea-9fd1-ff0970dd81dc)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3e1fa2fd-7492-43f6-8c95-0f0b8bccbbe1)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 70b59a83-8985-4f34-8d11-509a51dc6b93)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 943459d8-a940-4e17-b45c-7ec0ae352f23)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 973bdb39-71f2-4a2e-a672-b7df2d75f6bf)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 2fae3f42-9be4-454d-971c-452b889002f2)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 3208713a-75af-44a8-9144-cfc6b2e4d0aa)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 364cdd36-358b-466d-a6c7-bf46a9698c34)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 3743903e-c880-4012-8328-ee9a0832f40a)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 3f5b510f-c197-40a4-af44-e8c925066463)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 4df66dfe-c225-4c4d-99e7-48d8410cfdbe)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 8da09195-76fc-476c-a4a1-aa2b09876ef4)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp d1238ead-2b32-4893-8180-3ec2f74909bc)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp ea2e685b-e7d3-4932-8ac2-cd8e49108c77)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp f311cb28-0d26-4397-81fc-4983fd4216f7)) (pad "1" smd rect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 89 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp ef8ced36-982b-4b60-9849-0a958fdb9651)) (pad "2" smd rect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 6f9aa0d9-bcfb-4590-8c1d-8c9dcbb272bc)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 76d9ca26-93f4-45a6-a893-a23ea5569a70) (at 123.4 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2129e724-3f7f-45d3-89a3-4dd504b3fb79") (attr through_hole) (fp_text reference "J10" (at 7.29 2.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 952273a1-b0c0-4d7a-93ce-f59799a5c249) ) (fp_text value "Fan3 Output" (at 4.05 7.1) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7d49c9c5-5903-4690-a2d3-e7457b1c219b) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d381e237-63ae-40a2-b286-525994413db9) ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 4213bb43-a38a-4b14-8bc2-c3c7ea3d73b0)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 44a3d6e0-81da-4c53-981a-168ed3134773)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 4a5d9644-2379-4885-b4a6-a8623a813c99)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 5d69439c-bbdc-43f5-bd41-c6169c74e2f5)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp be813dec-c91f-4c06-808b-c742fd6baf99)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp c32c2d53-75ef-4371-af70-06a6dd412bcc)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp d86de366-b062-45a7-bdc6-eee27735041a)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp f8f6e65d-70e9-4022-98b8-a0f0810215e8)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 0916deba-2579-44ce-bcc0-0c56d78c5bd3)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 1088c273-6236-415b-85a3-3a7f49436fe6)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp ce6d7a5f-f433-4e4b-b5b7-b76118558c78)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp e8194575-5e83-424b-9bc1-c0b79369f99c)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 0392df2f-b1af-48ff-aa24-2cc5cb8498b9)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 1b045f10-2695-4131-ad5a-92fba9bb2b89)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 747aec7c-69d3-480d-850e-7b5b9dac4015)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 7ffe756e-7031-40a9-a22e-c934089443a6)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 80aba698-f856-4622-a82a-3c7395930a26)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 86915ed6-ec29-4952-8c3f-87e8b2adac8a)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8b487b8b-12fd-4cf3-8cdb-1ef50af640be)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 98afd5f8-5eb7-42cb-92a7-4bb0e32eb918)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp f93adc76-130d-446e-8a52-b160db229a99)) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 0520d68c-bdec-4d10-8756-c63de315da38)) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f6530a81-d443-4ea6-a0d7-1ecd59edde3f)) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 85 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 171fdca9-3abf-47ec-adfa-6909484da46f)) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 20 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp 7f704135-5782-421c-aa14-3367e8023e6d)) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 86 "/Fan Channels/Fan3/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 02a911eb-13f8-468a-9e52-a59bcd594995)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (tedit 5FA16958) (tstamp 77719df2-8f84-4826-86a8-648c59a1aadb) (at 62.5 79.075 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/424316b7-e2a3-4008-bbc5-a6a4ca971456") (attr smd) (fp_text reference "U6" (at 0 2.45 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 201aea6a-eb07-4b19-9c9a-51c43c0e0614) ) (fp_text value "LM4040DBZ-3" (at 0 2.4 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 60b464db-7bb9-4907-af12-e83955071e1f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.32 0.32) (thickness 0.05))) (tstamp 1a53bd43-03ee-4a3f-bd1d-79c3d49d1ebf) ) (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 2c6fd8b1-138c-4b48-8a26-43c1ff9afb17)) (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 5839ec70-9d6a-47fd-acdd-39e628414da3)) (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 5a47bacc-2c54-4d41-9903-abe0e6bd9f47)) (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp c8dd9b6b-fdc5-41dd-b3e0-5088dfd74a06)) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 0f222bef-fedb-4902-91a7-2b39def0405b)) (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1be5afe4-5935-478e-b97b-d2cf7017ea07)) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 485ce6a5-61eb-4c2d-9d1f-0ea597601ab7)) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ae05933b-66f8-4360-8b45-dd8e0cc37957)) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 0ae88e2b-56fc-4cb2-9986-b85e00f94ce8)) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 0de41a20-5c16-4784-ad22-ca291769b440)) (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 0e1b4d03-8046-43b0-bd39-505fec34fe56)) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 3844d215-9ed7-4f50-b140-8ca0c8d59991)) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 8e9b5351-c32a-4201-b180-b9b18e1c4ea8)) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 87 "ADC_REF") (pinfunction "K") (pintype "passive") (tstamp ab28bcd9-9c9f-4692-8181-7e9888241366)) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "AGND") (pinfunction "A") (pintype "passive") (tstamp 2121f065-3876-4c18-9917-6372871159f0)) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 28a84352-f729-44b2-ac97-68692a976e47)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 77b06444-ebe9-48a9-8ca2-9ceef4ea269e) (at 116.2 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (attr smd) (fp_text reference "R18" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5f70a067-b3bd-48a3-8ea3-c9f50586f7c5) ) (fp_text value "1k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 22e3c59c-b0c7-47c4-8072-845a74a60838) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 370ae683-5b83-446a-a5c0-4dbbebbfab36) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2864cb88-d192-4432-adf6-2ca40f579907)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8a85a08d-a9a3-448b-a1c6-b5fb238314df)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b162d56-8837-4b25-b63b-7afb1e11cdfe)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9671bd96-bff1-43f9-b9b6-fdc331638949)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaf1d2e2-81a2-4191-b652-511b5d706aa7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d536cd9e-0aa3-438a-8c06-02dfd3b98a18)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b6301a3-5467-4fc1-bb31-50e77447df18)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8c077155-3d1b-4c61-8ad6-aa7da49ff67a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c6046fbf-8926-4dbf-8b01-5220e4d2de37)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f5c2b239-25c2-4a77-b83f-96c3fdbe7817)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 99 "Net-(Q2-Pad1)") (pintype "passive") (tstamp fa339bd6-bf6d-4b68-82ab-db053b651a3e)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 78 "MBFAN2_TACHO_GEN") (pintype "passive") (tstamp 660232f7-c118-498e-a199-dd659a210a26)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 7a89709d-a8cb-4a64-a3a3-ed263fad27d0) (at 150 82.75) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b49d0204-e5c4-45fa-965e-427ea584956f") (attr smd) (fp_text reference "D30" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f0fd0799-ace0-42b0-a563-79b81de9738f) ) (fp_text value "BAT54C" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c43a9791-6012-406d-8c2c-303c5f2e5e41) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1e0670b1-a793-48f4-9da3-84fa0c929ebd) ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 17dccccc-0b52-460b-b2ea-f26a9b3fe290)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 32648182-78d1-48bd-92e8-99a019338fe4)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 6e8e2ce6-25e4-45c5-9bc7-02a69f9cfe4b)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp d2b2a0fb-ef5f-4895-93c7-ef2955a86bd7)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 17a1090e-1ea0-4ddd-9da2-e68411fa1c2d)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1ebf55b2-09a7-4dc8-8b62-2c2166fb1446)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 416f2dc9-040a-4c76-990c-e10ccd505522)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp beb27022-33ac-4698-9809-f25d7ef525da)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2d1e1fda-3c36-4d71-895c-6f1946ddf04d)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 307d06a5-a22d-4946-8b80-4f092fd73e46)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 3fc7e44e-eaa5-446c-aee1-c1bf6217aff8)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp 525f23b9-a23c-4305-afe1-22811746f220)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 5bce6732-4026-40a9-a828-7e9b55a30ffd)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 7e6726ff-283a-4ed7-b60b-d90a98630cf5)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 85e78923-8588-4c12-be82-1339495de1d9)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp a82dccd0-c2cd-4bf9-86b4-efddd3a8276f)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b62c4095-f1c0-47c0-a2a2-cdabd2346de9)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp f345a031-cb21-4b90-913a-e2bf8193b582)) (pad "" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b51e6374-6b7d-472e-92f2-9dae266de01e)) (pad "1" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 23 "/Fan Channels/Fan7/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 0c990048-7035-4646-8b07-f79fbfddff62)) (pad "2" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 83 "FAN7_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp b33915f1-896a-4971-bf05-1a91d75ab3fc)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 7ab7b1db-1ff2-493f-8f9c-36792ad21c73) (at 115.9 111.7 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/99383412-e91e-4682-9562-162d7ddf01c0") (attr smd) (fp_text reference "D12" (at -2.6 0.3 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 252ee15c-9ab5-448c-b1d6-904530764041) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9c946c42-87b3-4cd8-b0a1-90fe0d9167f2) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp ca4b2a77-5a71-40ab-b178-0276e8dd2714) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 8bcfde59-b85c-43bb-9e8e-e5706baedd16)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 9ddd0afe-6b4f-4d87-8112-c5b7d07ad5bc)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp ed045454-339e-41b3-adf7-74925ba99853)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 113c2e5c-5d21-44b9-9699-61a03d05b219)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 149c5d61-baf1-4212-9ad9-405f30b44c95)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 40346a5c-41cd-4378-9d56-9e921a1e0734)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 55439d6c-cdf1-4cc6-9c90-3dbefeda32d9)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1ee3dc48-8cba-4d55-baee-99d61bca8a95)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 3fab55da-a730-4225-adf1-b91eeeb16267)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6eb8a12c-f7dd-45db-ac57-5cf35b00d623)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6f893dfa-8241-4004-a564-8340bce225c5)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 7b7956cd-1bdf-4509-92c9-b55e8439ae86)) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp bf1f6226-2275-4b86-9c1d-d63e3a6430dd)) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 106 "Net-(D12-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 53dd890e-5aba-493f-87ec-8a34bea86d70)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 7bb94872-8dbb-49c9-ba04-f5628db9fbfd) (at 150 99.75) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (attr smd) (fp_text reference "R41" (at 0 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 10d0e8f3-fddb-4eac-917f-4364013d5539) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6a7769c3-c80d-4f67-890e-9d198d478ddd) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 9ba4c7ff-e95d-44f3-9130-7648a30c506e) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9a2c90c4-d108-490c-a4ef-f90839b42fec)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp afe0cfde-94cc-4693-91a4-31be17812179)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0da1fa1b-42c1-4d2b-a998-dadd3810d15b)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 731de235-0a1b-4129-aca9-586f376a2413)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b80307a9-b810-4fc6-81ab-e2a116bf8242)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f37f4fd2-2740-4984-ac7f-f80065bd2757)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4ee0ea3c-39fa-4305-9302-2ee36fb0816a)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aed52a1c-d78d-4328-9a5b-0dae9cca9894)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cb71c3f8-0ed5-4b40-9de3-746f0ee4a205)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f241e0ee-d3d0-4acb-927b-10754037fbc9)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "FAN6_PWM_GEN") (pintype "passive") (tstamp 28524fc6-37a9-43e6-ad36-677957a0532a)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 94 "/Fan Channels/Fan6/PWM_OUT") (pintype "passive") (tstamp 6182facb-9838-4626-8330-5d06c1a16807)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp 7c849e86-e149-44f3-8e6f-1e68de7023ea) (at 119.05 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (attr smd) (fp_text reference "D13" (at 0 -2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp bb3adeee-1a92-483a-ace7-e1ef71d12c76) ) (fp_text value "BAT54C" (at 0 2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b61e78c1-958a-4345-a047-f6894dcd028d) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5b182f66-b0c8-4347-9c9e-3ee95097eabe) ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 363b8f67-740c-4671-ae42-143e2627bd6b)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp bbdd926d-7d86-45cf-ae08-f1f150d09cfe)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp ee556f6c-0a63-4195-b5e3-678d6f90db6b)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp f1f863df-0c8c-46fa-8804-767e10582681)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7670d6a4-669e-4a95-8178-29fc8bb78054)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9038b135-ccf5-4442-8ebb-a3944fd0e705)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9272ccd5-e950-4f99-baec-47da7f19129b)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9c37a23f-9362-4abd-952a-d541c9b780f8)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp 12d86e6a-3017-4551-9f6b-0f686bdbb6d8)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 25657308-4817-4a2b-914f-6d67d6d1baac)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4a8f9efa-0cc8-49f1-a296-c0ae29b30fa4)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 626b5ec8-8450-48aa-9676-e66ed01335de)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 723d535a-e830-4944-9035-645bae621ff8)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 9acfcfc7-989c-4acc-abb2-e00b92310a55)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9d5e7df5-7472-4dc8-a9fc-73987a422b16)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp b5f68693-01fd-47c9-b617-85a6609e1dab)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp d41115c9-7c02-4897-9fd1-4a591b7b2833)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp dc503621-5c1c-4419-bb7d-74fb82b8d8c5)) (pad "" smd rect (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cfbc958e-3fb8-49ab-a1a0-0abbb8af3f4b)) (pad "1" smd rect (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 16 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 8197234b-d466-4dd0-b29a-d8c861bfb7ac)) (pad "2" smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 75 "FAN2_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp acdd6813-47a9-43b9-8c0d-c0787f18321e)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (tedit 5EBA9318) (tstamp 7dc9f489-4156-491b-be43-4d23744698f1) (at 62 82.575) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (attr smd) (fp_text reference "C30" (at -0.05 1.825) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ff0402c2-38ac-48a0-aa71-a394583ca8fc) ) (fp_text value "10uF 16V" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 45d5b259-ad31-4383-9fd8-8de228426b3c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp cd69f1e0-5bb5-41e4-8cb5-6720175ff055) ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp a2020900-96f2-4edb-8ae4-2588b57b1f60)) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp ac34bb39-682c-4c30-a28b-46a34d504042)) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp e9526753-8d0e-41f1-a4e3-2519492a6428)) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 13d31af1-e7ff-4c9e-aafa-4b1c39355403)) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 56b84cd4-207f-4b64-93aa-2a148d5f5210)) (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 622a7d88-3a60-4015-8bbb-30802c5bcc1e)) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp bc06c98d-4287-416e-ada6-c0cf80e45389)) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 07e8bd75-13eb-4a29-9b09-01cf1f6f06bc)) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1db56cf5-1a8d-438c-9b72-11af8eead4b4)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9a4389ef-7828-46d6-8eb4-626e7248d12c)) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp ba8f72fa-2296-4f79-a937-6e7f23e1ee82)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp f693dbd1-8331-4f6b-8db1-12811e6f8321)) (pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 87 "ADC_REF") (pintype "passive") (tstamp 191a915c-8378-4656-856f-2214aa0b72b3)) (pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 113 "AGND") (pintype "passive") (tstamp bb9ba52d-cc72-4afd-a392-585f3f7e8bf2)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 82393777-34e1-4bbb-88d1-89e4aa816583) (at 150 111) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (attr smd) (fp_text reference "R38" (at 0 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1437ba0b-0053-41eb-bc61-cbccf6279fc9) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e2e6cccb-54a1-4e96-9738-4d65179c25dd) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 82379ead-3508-4425-94ba-5e4ce4df8beb) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c1dbaaae-23f6-44fb-bee9-acc7bb52b326)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d6a7f71a-4da6-4997-9a3d-af77c0308253)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4888375b-5458-4871-a1fa-505252626301)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 573709ba-970a-43b6-bdd2-b76923af50ff)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a15b1a81-421d-431c-975d-5ca2fb5503b1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b341dfd3-46d2-4fd8-b31c-966da7e6faf5)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b886276-dd55-4b24-9805-ffa937415d2c)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 712360a5-aaf8-4267-800c-0958b8a0ea4d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c8928d2d-8cea-43ac-afea-ea4baec6d359)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fcd0e196-8d7e-4c4c-a99c-c0d8a5f57856)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "FAN5_PWM_GEN") (pintype "passive") (tstamp 8af47142-29dc-40d4-aa7a-27ae26471a34)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 92 "/Fan Channels/Fan5/PWM_OUT") (pintype "passive") (tstamp 024aec87-418d-43e2-982b-d40b3ec576b4)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 83388c74-5f06-4153-ad3b-c9f47fee16fa) (at 123.4 64.6 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ba9485af-39b4-4a7f-afda-f544d55bea86") (attr smd) (fp_text reference "R31" (at 0.75 -1.45) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 42431c3c-d404-476a-ab39-67c4ebc4b409) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp a610b07c-7f3b-4c0e-9bb1-e2cb93d86394) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 457053ac-d2d0-480f-bbde-95135ea25497) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3e8b3136-a79f-405f-b1c7-b60bccf7450d)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7b3d7681-fbf6-4937-aca7-3df39ea6e862)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaf01c9a-c9a3-4e42-a983-ec360a40fbc7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd572dac-350f-4d4c-bd5b-e852715803a2)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c10bdb93-40f2-4534-a38d-7f700adc998a)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d92e57a2-5431-49a8-b156-075b98e57e52)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1ac7125e-148c-46cf-bc39-862001775ba8)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 66a6c512-7433-4466-b35a-68e49d351a5e)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 98f621bd-392a-4c02-bdb2-60d66a436c13)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9a9d0f27-659c-4a5d-89da-a015ce1d23c4)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 34 "FAN3_PWR") (pintype "passive") (tstamp 85f63582-9af1-4761-86c5-d63562b80199)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "Net-(D19-Pad2)") (pintype "passive") (tstamp 4b9d9aff-3881-4ae0-ae0f-4cf8718674dd)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp 8592a031-c2f6-4bdb-b2e2-71087dbd3b1c) (at 88.8 67.05 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/3be7e346-edf9-40ae-ac38-cc91a8a5fddd") (attr through_hole) (fp_text reference "JP11" (at 0.05 7.5875 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2777dc5b-1f1e-4e85-bd68-589a482ba0e1) ) (fp_text value "NTC Value" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7208c857-393e-4d56-8907-c3cba5195fb3) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2d60f2c0-e329-45f9-b536-702873dac130) ) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 03db37fe-7756-4708-a539-7a30d63bb75f)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 34170c33-2a15-4b0d-81d8-bba140c35499)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 41cc3404-81d3-4815-85eb-3f3e1eccb55b)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 8fcf7a45-88a2-4316-859e-3758faeb965d)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp de46d473-f298-44e8-a758-2a182a50fa8c)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp dede67b0-758f-4e15-a8b9-8fd68653d7c0)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 08a2a9df-cb30-49f2-9aab-2d24e01badeb)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 32693ff4-2384-40ab-846e-87e81b466372)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9e134812-54aa-4d16-a386-f1525746ff6e)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp ae575ee8-23e8-48e4-a7e2-a382a4b6c0fe)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3e71ceed-1042-43e6-8d70-d9ab91f8f2ed)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 41928259-5632-40c0-b042-2b4310fd7e71)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 519b20cf-f07f-4687-bb16-6225ea204e6a)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 56214b94-4ec0-4137-88d8-d77ecd63e199)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 6c0c5220-0d8d-42fd-8ae4-99d563f3b929)) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 118 "Net-(JP11-Pad1)") (pinfunction "A") (pintype "passive") (tstamp baedddb7-8d85-46c0-b47d-6a4b0673b27c)) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 87 "ADC_REF") (pinfunction "C") (pintype "passive") (tstamp be858b44-6b47-4a9e-a873-33cde0b9efdc)) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 119 "Net-(JP11-Pad3)") (pinfunction "B") (pintype "passive") (tstamp fb2bb768-5f71-4466-9876-ad549ee14508)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 866fcabf-fb8f-4309-9f82-35b7b782cf70) (at 146.25 82.75 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (attr smd) (fp_text reference "C25" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp a96a8ef0-6ebd-4160-86c3-7cb63441e0a6) ) (fp_text value "1nF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fd355cf0-3197-4532-afba-ec8717897bfb) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 1063b77d-0539-4616-96b6-7e5745bee84f) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 6c1474f6-d415-4c7b-8b59-fc1f9a710de3)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp ed9c6735-a258-49b1-8520-ac27227c4247)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 43f6715d-6047-4a53-9965-45b03d6a45a3)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a31bfce-eb76-442d-8bef-3e115ed8f786)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b445edb-76df-4826-893e-90e637127bf7)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f2b987d-c54d-48dc-baee-31991a9bc8e8)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 19564a71-ce37-42d2-a51c-a25445cf57c5)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2acaf2de-fd39-445f-943c-c4718e83fc64)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4f3695f3-cb76-4d00-bf77-69e655b009cf)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6167ac01-a97a-4a6f-b811-bc0a02b4630c)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 83 "FAN7_TACHO_READ") (pintype "passive") (tstamp 11eb59b4-fb16-4f8e-b153-7dbc577060b1)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 1ba61ca8-eff1-4195-94e0-1ee4595db443)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp 897c79e5-3d91-4f46-8ead-84d2a2b4a77c) (at 146.25 97.75) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (attr smd) (fp_text reference "D26" (at 0 1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp bd3d50e3-7ada-4dea-9ce2-d0c01a14134a) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b00f55cd-2fd0-4be3-95f5-ff701f60c355) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp b76342d5-1e15-4862-b1f2-61ba5d5402c4) ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 1b129e0e-6a99-498a-bbfa-1e9cdb10259f)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 7e3f02e6-08b0-4eba-ad24-218495a9d231)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp a2eca0c6-0180-41a9-ba6c-74c3cbd500fd)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 032ce8f7-50b1-4b5b-8ab4-9b0ab129f543)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3e759481-bd1e-43d1-a516-704165a0cc70)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9cf04930-92e2-4361-96fe-0e85f3c4b63b)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a0fbbaf8-8c31-444a-8589-c494a935cb8e)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 18fa4eac-44be-4c19-85bd-ae41ed4e9ca9)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 33c8b5d9-f488-4aa6-bc3f-f58a56be5f10)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6cf1f8a5-0115-4654-96fb-fd5a2b2f392e)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 7406101f-106a-45d1-912f-650a7ccfd0e7)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp b1000fa4-8405-4913-bb2a-3a576510c1f7)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp b81dfee1-a640-4f3f-9d50-8f16edf039b6)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 110 "Net-(D26-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 687f3fb3-88e1-4140-99d0-932bef1b418f)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 8c412f01-bba7-48e8-b847-df07ecccd1d3) (at 107.8 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/75bd3244-7746-40bf-b41a-5ea9cec31d77") (attr smd) (fp_text reference "C10" (at -3.2 0) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4d10f603-e406-4c93-8862-aac8f1d98067) ) (fp_text value "1nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5a0ec604-4c22-4400-9220-19e76cf5f05c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp ae4aa54e-a780-4e26-8a76-8295f04ee892) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 38826a5f-2a18-4a0f-a0ad-83c05a6f55cc)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp cc59dc89-7281-4329-8665-69cac2c9dc68)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0ae1d5d9-ff38-4df1-bf18-dd6cd8c70511)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 48eb0b93-a5c1-4cfc-924a-acc48d7a1400)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c79e1d8a-0af7-430e-9323-f9fb7db9c865)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d16c0fa7-6db1-4dee-80e1-4b8de8f377c5)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 23a1071b-2dec-458f-96a6-0e4d178d9bd5)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 67193e61-d6ec-495c-a7e9-03793b500be1)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8343fa38-8498-4902-a32d-1c52f3862967)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b3e6123a-0f64-4e83-8feb-91055195c388)) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "FAN1_TACHO_READ") (pintype "passive") (tstamp b8e16f60-cf7a-442c-9536-5f2af8ffcced)) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp f1bf644e-4d5f-4687-800c-1d45ba8aee3e)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 8d9ed836-03c9-469d-b64c-e961bc8ffbda) (at 70.3375 84 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (attr smd) (fp_text reference "R4" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 610903d8-5084-468d-9888-7aca1061abef) ) (fp_text value "1k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 10d23ec2-fb2a-4efc-b043-9e653e9eca5f) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 7a4de11e-56a4-476e-80c1-0add019155c4) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c8d603fa-2cd0-4e2a-883b-cb1b12ba9591)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c9b708a0-1c2a-4d24-9355-2ac9185b89a9)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5e040dd8-a9df-4b37-8d24-96481f6f60e9)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dba97645-4a34-429b-84f8-75b7c3214503)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dd9a13d3-00ad-4383-9062-03d5e8b9a35f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fde634d0-a402-4044-ab4c-d2bb60807eb5)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1a5f0a32-6a65-4836-b4fc-ee2f052aff25)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 52c6e302-30b8-4ee5-b611-ba0016fef9b1)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d54d4665-a119-44c8-b025-3c91b4792ec4)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f4c9be5d-85f6-43c7-ba72-a90c07a97fbe)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp 8a072700-cfb6-4e54-a8f6-386e856d7e37)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp ff357107-6fc6-44f8-a75a-dfa984e95fca)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 8dfa8eb2-f6af-4814-9c8a-167c232aaec4) (at 80.9625 83.75 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/536545a8-ec75-4173-afef-e4439b3a7241") (attr smd) (fp_text reference "R5" (at 0 -1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7d14683b-235a-449c-9e42-4f45afa58b9e) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0d44bd96-1d15-46b3-aa1b-99b6f1778714) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 329b4a18-c16e-49d7-9714-fda524103ac6) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ab6d61d6-764f-4b3a-b9dd-57a8ff9e0d17)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c3226acf-50ff-43c3-9b02-399b293813a6)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 232ad233-a2e7-4e56-8262-85ed5fab9e5f)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2775d4aa-8ef5-4156-9be3-873d0a37f58e)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 588bd2da-b699-4d9c-95c6-42ef05a33b36)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bc50a6fb-0feb-4d72-8438-42c26c555662)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 17e9e9b1-0e7b-4c14-a158-b5c1e44d12ea)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6534c503-bb2a-4d08-8fb0-b82b65a64df5)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a6cbb311-554a-4fa9-8eb2-4df58ef50e64)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e0016917-26b9-4ff0-93fa-9c58b6da32c1)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (tstamp 2c779180-f4c6-418c-85df-e58557aaa7bb)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "Net-(D4-Pad2)") (pintype "passive") (tstamp 38bc3a56-cef0-475e-9932-47bd40c9d0d3)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 8fca82dc-76fc-4c97-bdbc-ecc655347bdd) (at 150 109 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4e28b459-dd74-4c82-9144-e285ed7f5928") (attr smd) (fp_text reference "R36" (at 0 1.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3d91e159-b28f-4016-b781-d485dbd0a7a5) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 74bfcd55-5e85-4660-be65-06062a0c760e) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 7f6fba64-d703-43eb-b7f6-258edb7c6c13) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6c3934dd-f810-43cc-8ae1-96240df64d43)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cd2bb6f9-575e-4667-9ed7-a872f550651d)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6f2d24f7-ad92-48c4-acf3-fa47d8165bf8)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 71517e18-659e-4b8b-96d1-04596acf7ee1)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e9c78314-8654-4ecf-a53f-5325fdab5e45)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fce99f12-458b-4b11-8764-608b1da370db)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3292aeac-3252-4f8c-bd26-e21f54d3d5b1)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7ad70d78-f911-4e78-bfa3-eb4384fdc5b5)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 985bbd29-6d41-4ae3-9f3e-e089452a70cf)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9fb77340-8959-4e08-80d3-d396d0f40578)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 91 "/Fan Channels/Fan5/PWR_OUT") (pintype "passive") (tstamp 30e6da1a-ec42-41f7-ae0a-ea640aeea44d)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 109 "Net-(D23-Pad2)") (pintype "passive") (tstamp 933bdaf9-bdfa-49e6-9976-af82252c335b)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp 915226b4-fe40-4872-bc2a-395b435a2e92) (at 142.6 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8debfacf-b04b-4646-9300-1ff752233c77") (attr through_hole) (fp_text reference "J7" (at 7.75 2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 376ca56a-29ee-4f83-81b0-a39eae9d6ea3) ) (fp_text value "MB Fan4 Input" (at 4.05 4.35) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2712dda9-3574-49ce-a5b9-b0a2035d3a7b) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 64131ccf-1d90-4b59-a3de-335452800ea3) ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 0041fa45-5fe1-41a7-84c3-9ed152d8ffa8)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 20e45521-6283-425d-9001-b9d73e16c8df)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 29b48e50-7d55-4e3d-a539-4a2586bb6a12)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 2d5ff2c7-9901-4fc1-a95c-b3ae98b7ab8d)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 58fbda34-e62f-4525-a3b1-91a77c26980f)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp bf9e4529-e167-447c-a045-25248a85a1d5)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp c1268079-c813-41a7-bb84-503ba3f1a9d0)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp c6977593-c5f4-459e-8b7a-4f90bdf9afd8)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 4b77d0a4-5200-4718-ad55-d12fcc0160fd)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 970b75d2-be6a-4922-bf76-1e9d7e25dec5)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp b719a6ee-0144-4966-8b91-52a9b865a921)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp f4ba32ab-ab3d-4753-a0b7-a2a898ba4b27)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 03a6503e-3bc6-4f20-910b-4b25d7b2c144)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 0da5400b-a1bf-449b-b183-0fcf28aff5c0)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 2449ad7e-7c10-430f-8adf-47601bb4af79)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 316172bf-52bc-46b4-adac-2d48a0e34563)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 49c7cb3f-a658-4999-a305-f40b4dfcb82f)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp bda69756-c3f2-469b-b8db-4654be9ef247)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp ca0a8209-494a-467f-a97e-e0b7c2ab04fe)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp d7f30e11-d126-4e7b-a554-c013237d8438)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp f6ab39d7-8d43-4958-82a0-c13a1e508052)) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp d520a0ab-a6bc-42dd-ab73-4b176d116f70)) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 628499d2-8b42-43be-a524-586c217f7f60)) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 37 "FAN4_PWR") (pinfunction "Pin_2") (pintype "passive") (tstamp f8ae011a-48ba-46df-a69d-fb189c06c99d)) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 38 "/Fan Channels/Fan4/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (tstamp ec3b3a1b-bc30-4c1b-a40c-639e4fb72f82)) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 39 "/Fan Channels/Fan4/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (tstamp 3fe87333-5931-44bb-90b4-566c7f950fdc)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 97d8cb9c-7796-4f3e-9cd3-d41043b797fa) (at 107.8 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (attr smd) (fp_text reference "R13" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 23c5fcb5-a572-46db-aab8-bbc19461dd13) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f4d8d87a-e5b3-44b8-8667-25d66377dcdf) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 792fab33-7b74-409c-85da-e8ac19dad894) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 05c77619-1ce3-4723-b67e-0d019cbf4a4c)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b4aecb8f-0b34-4217-bca8-415bf644e67b)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6c20966e-92d4-4959-9ba6-2946d25c7acd)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be15977e-08c4-4134-888d-97385a0345d6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c28b7c81-22dc-402b-9254-51430890607f)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f8b07d01-903e-4e3f-8f6f-cdece65f4143)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0cd092e2-e586-499d-af3f-ce1e4b9a9737)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 42ac3088-9453-4c74-ad7f-9a2bd627cf97)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 66c830f7-a17a-4bc7-9ec4-f3f13458a5d0)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 85a5dd7d-6ab2-4945-9279-d12a56a09c3d)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "FAN1_TACHO_READ") (pintype "passive") (tstamp 46e9332d-c795-4bf9-ac30-672c9f0dc01b)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 1aed41db-dfd3-4b90-b7a1-5c94e9557cf1)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (tedit 5FA16958) (tstamp 983c6f9b-ab5a-42af-bd5a-759d76f91388) (at 117 66 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/537d375b-1ca6-4946-95db-66496543d0cb") (attr smd) (fp_text reference "Q2" (at 0.5 -2.4 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5677ce6f-2f2b-441c-afdd-2baebbd3014e) ) (fp_text value "2N7002K" (at 0 2.4 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dfec3e8d-8c25-49f6-a37d-8d2d914dbfd2) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.32 0.32) (thickness 0.05))) (tstamp ccda9c76-c57b-44a6-8d1b-073f6f0dc746) ) (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 1d23c79a-356b-440d-9928-a8b6c266b834)) (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 48573f01-35ca-4940-a0fb-37a7195d04a8)) (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 542c0bc2-7279-4d6b-bfea-489836939f96)) (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 709590f4-b237-4a3b-993d-ad7f0777012b)) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 14c9c5e0-cf46-42b2-82a4-1fc9dad67ea0)) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 64fe4ef0-94d6-4168-93a5-da4cb1d6b68d)) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ade271db-05bf-4376-8f80-56d1f37eb279)) (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp e13e1f10-5db0-4724-9b61-b42e7e4e1d4a)) (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 1efab745-4ea2-4503-bd05-3123a3de84ef)) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 2ed795d4-9928-4760-a0b0-796f1d7302ac)) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 4e5c0499-4917-48e7-9f4d-c201cc63ee81)) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp bbbe638a-e56f-4270-af80-e1e96cce71e8)) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp e2546db5-a1db-4f9e-8034-a00a080f8427)) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 99 "Net-(Q2-Pad1)") (pinfunction "G") (pintype "input") (tstamp 9a4a71ed-bbe3-46ad-af06-4ef58134b0e7)) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 4e4e43cd-2fbe-4bd3-97f5-d69c14cf2e78)) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 32 "/Fan Channels/Fan2/TACHO_OUT") (pinfunction "D") (pintype "passive") (tstamp f0786ee3-a048-405f-8056-d584552fedf1)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp 997cd6e2-0825-4c4f-8cd3-c2068b8a18f7) (at 118.1 124.75 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (attr smd) (fp_text reference "D14" (at -3.1 2.4) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 6941e658-b68e-4f54-b2d5-5f2e83de0ad4) ) (fp_text value "ES1D 1A 200V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7cc9b851-46bb-41e0-9a36-1854be22a5c3) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 91ef23ae-693f-404e-b464-189bf78a9415) ) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 2f822e3b-d0c0-465c-b8ab-bc9d152a4051)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp c8eea0fe-9efc-4413-b276-f70c4db75178)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp dd49e3ab-1c73-4266-9eac-fa3db15ff4c8)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3bdf14d7-dd66-4fbf-ab30-6ce664cd4d9e)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a521e0de-2947-42ff-b5f0-c50eb92d420c)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a7ebc727-839e-45c3-ade8-65c0f4e4dd35)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bc95ddd3-48d1-443b-8a70-41cc89df25c1)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 53e15207-c3c6-4fbe-bb48-13a88f341636)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 5c5fdeb7-9dce-4403-a758-f275c2c0a123)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 624e1b86-7d14-4ccd-b4aa-8589c9441c67)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 66d7430e-ab29-403d-ab27-534ce67dde68)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 6a523f4c-38f4-4717-803f-f5afc1f8bf50)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 75b8c552-cadb-40f5-bf6f-877d68b1141d)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 82bd6546-2c9b-4b75-9700-eabd59660c72)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 82dedf83-9dcf-49e2-977e-43bad1da6908)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 8b6b0e55-086f-4678-8fc0-fb1392c2b914)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp ac79a1f4-280e-4bd9-9546-1a80f21abd5f)) (pad "1" smd rect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 42 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 39e0807f-6beb-4e72-b623-5f3045748c7e)) (pad "2" smd rect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp eb8915f5-849b-4cd9-a481-22375256d335)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 9b5d8fad-a9d5-4261-94ae-888d349a7fb4) (at 124.4 112.8) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e6e8ae2a-5894-4e68-8264-24e364417d34") (attr smd) (fp_text reference "R35" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 60e57f7a-b7c2-462d-8ea4-3cfe65fa213f) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f9a301ba-8e22-467c-a4bf-770701a350e1) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp f5a2439b-06cb-41f4-a35c-c0e90d1afb13) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 076e6292-e03c-4264-8e1a-38fc388ff7ba)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0ccea004-159c-4140-b5bd-f9753bf6d9f0)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1f52d044-35a1-4971-a033-158db0c09f89)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2cd4200f-d3e2-47d7-9e04-6340e4870ffc)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3e23ff80-976e-481f-b649-d3b6afc29a05)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4afbcab0-8772-4bb7-8c18-21fe06bf2973)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 058f45a1-dd8e-4168-b397-fb3e1bc2348f)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 44ceed4d-02f1-4589-87bb-12242eec59cf)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 696fc689-c13d-4a9e-abe6-d97c1df0b026)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fd359357-19b0-4f4e-8f3e-cbd63c2c758b)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 54 "FAN3_PWM_GEN") (pintype "passive") (tstamp a2634fce-63a7-464e-949e-676604bb3aff)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 86 "/Fan Channels/Fan3/PWM_OUT") (pintype "passive") (tstamp 251dee92-c362-41db-a1bd-8b45e6177357)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 9bbfb08d-99f6-488c-9cb1-4f610e8a9435) (at 108.2 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/09870edd-9a18-4370-90d2-0fc6c17d6715") (attr smd) (fp_text reference "R9" (at 0.025 1.425) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 131f59d7-81d1-463c-9746-94c7e6ca44ed) ) (fp_text value "30k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp a45d6a95-35ca-4a4b-8709-dc847dc368c4) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 554fb619-bd23-4512-92e0-1256ad13b38d) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp cb183881-3c6e-49ba-8904-48949eee4111)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cc31ce4a-ad9b-4479-bbdf-beeab98489e8)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a08b769-52f5-4ffb-a88f-cef6e9ce4690)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5e4294f0-73a5-4a2a-bec9-a0892aea3e48)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 919d6ac8-d98a-4062-ab2e-bc89b789e944)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f8283b0d-bcfc-472d-b0d5-4a446af02f4a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 10356099-7b8d-4914-a3cc-f6f01f45e7f8)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b2222e6a-882c-40d4-b385-6d8027e3c680)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp bd72fe48-0065-44ec-a7be-6c365f617f93)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cf5dd1c2-be2b-47c8-94fd-611c7b3d29ad)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "MBFAN1_PWM_READ") (pintype "passive") (tstamp afbd0dc0-ada5-456e-b1c4-2dfc3cb1bff1)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 323e7672-855c-4c2f-80c8-1a139e99473b)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp 9d70d401-de1e-4aaa-b6dd-55e1aa68b559) (at 50.5 85.125) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/46efb677-f647-4e2b-b34d-dc07526879da") (attr smd) (fp_text reference "R48" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9abcb6db-04e0-4989-af75-af0d50cf0114) ) (fp_text value "330" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp df465184-0349-45b5-a74c-b5a2fb97be7c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp a6894479-de89-4e73-8a2c-d879067d7d8a) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c2a48c46-8d68-474f-8f2e-3ccaa1a87dad)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e299eaa8-5d5e-4421-ae22-14fc7446260a)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 11f37546-6f0b-483d-a24c-e14389b0c661)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 41f7f906-f4f3-45bd-89db-6bb8f02d849a)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4d80d1f3-8f05-4cf2-82bc-90fa32369dd9)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7993e3b2-6aeb-455c-9aa5-de348a91e1e6)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 25753a09-fe5d-4ed1-8f5c-94b371fa2e5f)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 56339c26-f846-4d17-be6e-99660e86b9d4)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5760742c-94ba-498e-ad9e-ac8a275db244)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fdcd276e-74b7-4976-8c10-bca2b4332c9a)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 845e08d0-0d20-4e96-8a90-90cc689d4688)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 87 "ADC_REF") (pintype "passive") (tstamp 4bdbe8a4-5b6e-4134-8a3d-bd8090f8bc38)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (tedit 5EBA9318) (tstamp 9e297fb5-7dd6-4bff-9d58-a869619f5ca6) (at 69.55 76.2 180) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/9a6664d9-b6d9-4e81-817a-45c56239601e") (attr smd) (fp_text reference "C5" (at 0 -1.75 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ca4dada5-6655-4a34-8e80-617e219b8c2c) ) (fp_text value "10uF 20V" (at 0 1.75 180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1ba07b1f-21cb-455f-a914-94bb7f4dc8de) ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp 4ae1107f-bbc5-4b72-add2-9f8a9bac1bd2) ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp 0c631178-73aa-42a3-ac86-bacd961c6b30)) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp 3406cc5d-2fc1-47ea-8c19-6a988f05ec02)) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 8418d741-770c-489b-b3b9-c21655f0fbcc)) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 125e4641-2fec-42b8-9a18-68e34c95a091)) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 138cf5c1-179c-4039-85c6-61c2db4c6fc6)) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1bbfcded-34b9-4db0-bf67-1c318ab43198)) (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp cdc62eb0-2c0c-4cbd-bcd3-f0ccd6a7b372)) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 1a99b5e3-02ca-41e3-aab7-83494ea8f864)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 290eea14-acac-4787-af7f-9d4fc6fb4efd)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 8337309a-a084-4dc9-b04e-9d87942e9568)) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp aa365ec6-cb82-4cda-875d-4cf38696c883)) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp ec29d766-a256-43ab-a038-61472ca932d0)) (pad "1" smd roundrect (at -1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 8 "Net-(C5-Pad1)") (pintype "passive") (tstamp c8210a67-be76-4793-85e8-a42525af4dfe)) (pad "2" smd roundrect (at 1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 2 "GND") (pintype "passive") (tstamp 137195b2-42c5-4198-9d23-1befec49dafd)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu") (tedit 5D9F72B1) (tstamp 9f1f62b9-462e-449b-9b52-c6c443e7a2e4) (at 89 125.575) (descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/bdd45721-57d2-4880-b454-a09119643f5a") (attr smd) (fp_text reference "U3" (at 0 -5.9) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0eb05a7b-a3f6-47dc-b4f8-a7e38d1cea58) ) (fp_text value "CD74HC4050NSR" (at 0 5.9) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 41968fc7-3f9e-4734-bc39-94ca392a0ff3) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.98 0.98) (thickness 0.15))) (tstamp 70845e9e-34c6-4caf-b54b-6d8ac7f8ce14) ) (fp_line (start 0 5.06) (end 1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp 2284ccf6-db65-4fa3-8a44-7dc32686b8d5)) (fp_line (start 0 5.06) (end -1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp 5bdaa5d2-1ca3-4b00-ac7b-9657278f4d44)) (fp_line (start 0 -5.06) (end -3.45 -5.06) (layer "F.SilkS") (width 0.12) (tstamp 63eee030-e853-4d21-800a-9f2418d4a31d)) (fp_line (start 0 -5.06) (end 1.95 -5.06) (layer "F.SilkS") (width 0.12) (tstamp ac464f97-7c2e-40f3-b73f-8e9358da7e9f)) (fp_line (start 3.7 5.2) (end 3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp 6cbc7b70-7449-4b08-8cf4-3a9e68613716)) (fp_line (start -3.7 -5.2) (end -3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp 70ec352b-ede4-44f2-8d9e-0ce193f91cdf)) (fp_line (start 3.7 -5.2) (end -3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp 7ea25e99-bfb7-4637-9a69-33a368798d61)) (fp_line (start -3.7 5.2) (end 3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp 9508ade6-a660-4400-bc95-0f32439c1ce1)) (fp_line (start -1.95 4.95) (end -1.95 -3.975) (layer "F.Fab") (width 0.1) (tstamp 121238db-dee4-4ed3-af8a-55ced702385e)) (fp_line (start -0.975 -4.95) (end 1.95 -4.95) (layer "F.Fab") (width 0.1) (tstamp 6e342bb5-f8fd-411c-8032-7589608f2c05)) (fp_line (start 1.95 4.95) (end -1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp a5fb5b8c-05af-44aa-a584-010f36552304)) (fp_line (start -1.95 -3.975) (end -0.975 -4.95) (layer "F.Fab") (width 0.1) (tstamp ca41a316-e241-4534-82c9-19bd071537cf)) (fp_line (start 1.95 -4.95) (end 1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp f978fd53-501a-471f-b975-431e0106f7c2)) (pad "1" smd roundrect (at -2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 5ad16052-176c-483a-849d-9027c6e9b849)) (pad "2" smd roundrect (at -2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 66 "/PWM6B") (pinfunction "1Y") (pintype "output") (tstamp 0bc40248-02b1-416a-883e-d4f5f5984bc8)) (pad "3" smd roundrect (at -2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "MBFAN1_PWM_READ") (pinfunction "1A") (pintype "input") (tstamp bb4cb8a8-68ce-4420-af9a-a945e31eb53d)) (pad "4" smd roundrect (at -2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 67 "/PWM7B") (pinfunction "2Y") (pintype "output") (tstamp 1611ae40-db91-43de-bda8-d6c84603d597)) (pad "5" smd roundrect (at -2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "MBFAN2_PWM_READ") (pinfunction "2A") (pintype "input") (tstamp e19c6b05-6a8d-4f02-95a5-af74d3ca15d7)) (pad "6" smd roundrect (at -2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 69 "/PWM0B") (pinfunction "3Y") (pintype "output") (tstamp a8de1ba2-8081-4c64-ba34-68c3598abbda)) (pad "7" smd roundrect (at -2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "MBFAN3_PWM_READ") (pinfunction "3A") (pintype "input") (tstamp c5969265-96e0-4d9b-85e2-6f33a1a0330c)) (pad "8" smd roundrect (at -2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d8a0c4c4-ecee-472c-a454-6f39c47a3ce2)) (pad "9" smd roundrect (at 2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "MBFAN4_PWM_READ") (pinfunction "4A") (pintype "input") (tstamp ed73fd51-f083-4a81-ab90-014e009215a2)) (pad "10" smd roundrect (at 2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "/PWM1B") (pinfunction "4Y") (pintype "output") (tstamp ff4334ce-bfff-451f-8ff0-5fb744f02846)) (pad "11" smd roundrect (at 2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "5A") (pintype "input") (tstamp 1c628284-f0df-4d64-86c3-038653866bb5)) (pad "12" smd roundrect (at 2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "unconnected-(U3-Pad12)") (pinfunction "5Y") (pintype "output+no_connect") (tstamp 16ad53b3-0f6e-4b4a-8d31-fffe10f0c4d3)) (pad "13" smd roundrect (at 2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp c8d6b2c4-62a9-4455-bbd0-9a8d2bb7312b)) (pad "14" smd roundrect (at 2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "6A") (pintype "input") (tstamp 3ad7d7f0-f56a-42bd-846e-c02c6496959e)) (pad "15" smd roundrect (at 2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 74 "unconnected-(U3-Pad15)") (pinfunction "6Y") (pintype "output+no_connect") (tstamp 6439659e-adfc-4fac-b6ee-85eec6ffa258)) (pad "16" smd roundrect (at 2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 54b7f681-08ea-4762-ae8d-a8d6f9dff57a)) (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp 9f7dc7d7-2865-4001-ae79-41765542b531) (at 84.75 80.75) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/090ff380-a13a-4ca2-90af-d2f76ab346ae") (attr exclude_from_pos_files) (fp_text reference "TP3" (at -0.05 2.05) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6ea706a3-d87e-4446-82d5-00e21d5f153a) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 28e4af1f-afaf-4c97-a94e-04ff1ca309bc) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fb48a74c-ff8a-4f66-b730-6bf3575b5e55) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 00cf90b2-86ec-4277-9371-add12d6bebbd)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3159c763-be92-480d-ad97-12d80bf1ccf6)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 1 "+5V") (pinfunction "1") (pintype "passive") (tstamp 87cd9054-8c0e-4714-8514-bfae7a781c41)) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp 9ffa7a41-84e2-439f-ab9e-a1334179edc6) (at 143.2 72) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/4c581f8a-1242-4d72-8273-f872f4434b5d") (attr smd) (fp_text reference "C15" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7e56433f-8047-4182-a23d-dde6a3760eda) ) (fp_text value "DNF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fe6381fb-e684-46de-8891-ee7b19da70c7) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp ff4b84a8-44fb-443b-a568-552d59e4da52) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp c2b59e2d-0fe7-43e7-af54-44a53e27c754)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f59e37a0-83e4-49c9-8f65-5fe074c3ea86)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38134ebd-0595-4638-9fc3-f48d527bf8a2)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c3d355e2-5a2e-4900-90d5-2140e7b8830b)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e3961296-b4c5-459d-a7b6-a37ca9fc9b04)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f75bced6-245a-490c-a39b-3a0d1b65c852)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 21b4b02d-73c0-4ae0-b147-e60dae395da4)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2cfd8b65-c57f-44e9-b75d-735b42146491)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b52fd3a8-77a9-486e-9d72-e8640bb775c2)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d3e7f16d-a250-4de7-87e5-9bc710a55c24)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "MBFAN4_PWM_READ") (pintype "passive") (tstamp f0660c30-1630-4fed-a3e9-3ee2ebca41e2)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 8255a4a1-ab2d-4484-a456-579f6137ea5a)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (tedit 56DDBCCA) (tstamp a103e322-082e-4ef6-b79f-47cebf258ece) (at 167.5 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/fc6c8e15-a262-4b02-88cd-fdf30196bc30") (zone_connect 2) (attr exclude_from_pos_files) (fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp d8004053-a96a-4db9-be88-aefe8064c65c) ) (fp_text value "MountingHole_Pad" (at 0 2.7) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 043d2135-ee0b-4418-abd9-474991e268c8) ) (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 55dcd4b1-3ec3-494e-849b-67d739100f19) ) (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 71721ead-7191-497d-a00f-8fb300e9f5c2)) (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 02103ae5-54fb-4b80-a4c2-6096261b830e)) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 1e747565-f7ad-415f-b1ff-c794f09a92cc)) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 2410cb12-10cd-45ed-a4e0-13df7fd75755)) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 456f3608-87cf-433a-aedd-b2464bdf3711)) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 7ad4f157-8206-4a71-b933-a1f876b6f131)) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 89cd789a-84c0-474b-9887-eaaa1a706f44)) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b0e002dd-b1fa-41a7-b5d3-8a6b1ac4a333)) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b2325eae-af62-4e68-9662-6f6e3d96e8a5)) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp e3425811-e111-437c-8bf3-b2d34027d572)) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp f62776f2-b1bc-4eb1-b10e-80f3fbeb02b2)) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp a28caf18-fdd6-4a0c-871f-ca6a401f0fb2) (at 127.2 115.4) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (attr smd) (fp_text reference "R33" (at 0 -1.2) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp aefc27eb-12fe-4b03-82b8-4f5ea1b48fef) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c3571a90-f3db-4d0f-b074-e6cc898f7921) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp e9a7f20e-5d66-4602-9dea-2e7c86ca5af1) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 04d40121-7041-4649-b08c-38ac599b43db)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8a425bc4-2b70-4b54-b386-801fdff7394d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 57349e08-abba-4d14-877b-12ee057b548b)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 64d8d7b7-14ab-4042-9ee8-f1aec24a139c)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d86cf991-97ae-4fd2-a241-76b0dfd1e5f8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e31b0488-ce9c-49e1-a4b9-0f34915571dc)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1290b743-65ab-4980-b135-236ff3e100b0)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4ccddf64-8097-4c49-bf42-d86353b5f7b0)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 567a84aa-faec-4f5e-b4f6-63f428439809)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5d3209c8-1fa2-42e1-89a8-60ec6ab2682a)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 85 "/Fan Channels/Fan3/PWR_OUT") (pintype "passive") (tstamp c3ff307f-501b-4398-bfbe-c3dbcec3c80e)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 108 "Net-(D20-Pad2)") (pintype "passive") (tstamp df586398-15bb-43ad-9ce4-b6a3c8d718d7)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp a57a044f-1e0a-4f57-b98f-7a871f824575) (at 144.5 94 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/713f0faf-9b32-443b-b4b5-18ccafb68231") (attr smd) (fp_text reference "R40" (at 0 1.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp cfee6a30-8392-4b95-afc6-b9d992173f75) ) (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 11250ad8-3722-467e-b9c0-3f871702e38b) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 53279ea3-2f0b-40ec-b25e-0a09cafac841) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 29e940a4-5585-4ada-9128-8f5117fdfd22)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c1cde119-1828-42e3-ba3f-bb14b24a1fe9)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5446b27e-a028-47da-9660-5b63165e967a)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80fff2e6-73a5-4e2a-9349-b3401445275e)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c2037d43-7f25-42d0-b395-5b43175f9944)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cf3a14b3-a3f8-4538-a7f3-850ef7d491e7)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5662e5d6-bc2a-4462-87fe-107c6d9ab49d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 62fd7450-d4b9-4ff8-a253-d4fe84a74245)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8d53e9c9-18a3-4109-aa53-d44adf9141cf)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a83fc53b-f2e4-4a01-9c00-7538b050eb9c)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 82 "FAN6_TACHO_READ") (pintype "passive") (tstamp 49cb8972-6f22-4d13-a568-a1f0fbf7c0c8)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 064b9ab8-0beb-4dbf-ade3-e5bc4486b94b)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp a754218b-fe65-43a8-a7a7-e9bb3dd9945d) (at 79.9375 67.05 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5ed15fde-520c-48b7-b7ad-f1dab65ce507") (attr through_hole) (fp_text reference "JP10" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 89b06a44-ae72-41f2-b15b-2601e140ca48) ) (fp_text value "NTC Value" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f9ad37f4-eeac-494d-9205-309f7038d10f) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cc3afffc-5991-4795-91f6-4b404a3be905) ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5f240462-2606-4918-a5d6-a19eb48d492c)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 6505e632-0bc4-4348-bbe5-9079c6bdec9e)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 75c7e98f-1b83-4a25-9a6e-89f8996cbb69)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 82e6f85d-c557-4c47-8aaa-a457181fdc8d)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9080074a-ad39-40b0-b1a3-0ef59600d385)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp c335e24e-d36b-459f-b068-21115d6b89eb)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 11ef98e7-a134-45c9-98b0-9c58793a3ca1)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 5e6d351d-f97e-4295-8d9c-e7bbd74e5cf1)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c2b75743-7bda-4374-9adf-26dc6f2ccf30)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp effc18f0-a8d1-4595-acbb-88fce68c92c8)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 80d95e55-47e7-48ec-a18d-12c33212f041)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 8a44bbfc-7fbb-4c2b-8f20-6c157f5a009d)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 99e43811-b7f0-4ee3-bd99-d2f45d06549d)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a49aa933-4cc2-4690-b39d-aa34ade7ebe2)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fde7995f-222d-4f29-96a7-17ed4d689605)) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 116 "Net-(JP10-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 4d95202e-47f4-4303-82a3-a8f946ef6314)) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 87 "ADC_REF") (pinfunction "C") (pintype "passive") (tstamp 71dc6f00-7d17-4f82-bca1-3ea1fce05005)) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 117 "Net-(JP10-Pad3)") (pinfunction "B") (pintype "passive") (tstamp 683a5f70-8c15-42f7-a938-91e0160662a2)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp a771c02c-8b53-42d8-99ed-0a81252d0009) (at 111.9 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/e0ed2a0d-fc70-41a0-8770-44ea381a0936") (attr through_hole) (fp_text reference "J9" (at 7.75 2.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c41f1e29-aebd-4106-9e20-ba3cc383b8ef) ) (fp_text value "Fan2 Output" (at 4.05 7.1) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp bf369b9c-273d-46f2-9162-086fc0edb50e) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7e540c88-b84d-4388-8437-b417fdc7497f) ) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 059050bd-8528-4253-99a9-2b538d18cf46)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 060e7195-8501-4e09-8c43-1c823c24812a)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 5e55078b-97af-4c80-838b-eaf4f630bb7a)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 6a4191db-6adc-4433-b658-a6bfdfa95a8a)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 9510165e-3a21-421a-9d20-c6065294b8e2)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 9c8ec97b-24c7-44ce-984c-6152db0371aa)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp accfdd65-ff36-4857-91ff-9c83807ce9b1)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp f93750aa-9072-471e-8eda-727f7c99e298)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 16f5debb-7b35-41b9-bae0-84ba2f44a466)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 5e372dc8-30ff-4a61-8ed0-592ad0944ea6)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 997cb231-50c8-4d21-8ed8-7374ef99c345)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp c609c484-2253-4f34-947c-2a26d9dba820)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 1407bcdb-092b-40e2-b543-e87309754b16)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 5bffc67e-1f19-4ce8-a04b-5942212e56a5)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 5e8722e9-7b43-46a9-8d22-878ec7a7e611)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 65c529da-f295-4b48-a2d2-3cba281c7fd8)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8fb055dc-8170-4106-aa22-4b8db6cb5fa9)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 9414e889-e605-4406-8118-efabd53f9003)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp a9942b9f-63fc-470a-be46-0575b71f7cd0)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp ae817417-642a-4517-bfa0-c08fe16c7e5b)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp e78c6541-571c-4ae3-b37a-ce88f45e4767)) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 92f3f87e-5e1a-419d-afde-68dd17a44605)) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 3a343692-2c55-4f37-9ead-c72b1953e9cb)) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 42 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 83d289e8-09e9-450f-aa29-e4a965c20aed)) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 16 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp c139b080-c6d0-4461-9e29-74d2b8793fec)) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 43 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp e07fa649-4e13-4bee-aaed-86e11b4662cd)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp a7b10037-0242-494d-a441-dc48bef50b50) (at 131.2 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/09870edd-9a18-4370-90d2-0fc6c17d6715") (attr smd) (fp_text reference "R30" (at 0 1.425) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7d646651-5aef-453f-ad93-710225b27da3) ) (fp_text value "30k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cada0bea-1c13-43de-8c76-f71887adf217) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp cac9229c-7b32-4b01-95ef-e7c9af14b791) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4fd71c9f-fda7-44dc-a730-71f9a293687a)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d2d8b90f-1cc3-46b8-ae12-2efddeab106a)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7491255a-1f2f-444b-a433-59664b45004d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 85b30a72-2286-4f4b-9644-be52d496f960)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce6fab27-0c0a-45c5-b304-bedf2a2363ca)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f049ccda-80da-4a79-bdbd-120ab1cbdd64)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8f379579-e294-46e7-ab1c-e5e4b2ef7d0c)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp da8c55c6-63df-473c-9e1e-fdce7c38b264)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp dd833fe9-3e27-4443-b300-ef655e704311)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f7af00b0-76c3-459f-8c46-f5a83dd3bee8)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "MBFAN3_PWM_READ") (pintype "passive") (tstamp 43b23daf-d608-4350-bf79-4c6f2f9112a0)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp 39914c8f-a638-4a5b-b724-6333c70faf11)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp ac2dd344-9bcd-43ef-97cf-410a56901723) (at 75 71.75 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/14a165bd-0b65-4fb0-9565-152bd6300a32") (attr smd) (fp_text reference "D3" (at 0 2.45) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp fd4426aa-13d0-423c-b6b9-4eac4fa5a72a) ) (fp_text value "ES1D 1A 200V" (at 0 2.6) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4f02179d-1136-4cfb-ad19-0f115600a014) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dd1fa08e-e299-44e2-b796-141819fb4651) ) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 3c667cba-91d1-4464-8b34-8c6b7fcac30a)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 6ad5c8e3-405d-4457-b239-10abb6e3be61)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp afa7bcab-4b81-4d4e-9268-82ce4c494380)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 677e36d4-fdc0-4f02-816a-cff7b98c377c)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 985fd5f3-6af4-4ae8-a42d-ff3618876ccb)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b9d3bb34-4636-49dc-9c3d-41fc00a94a83)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bcece3bf-4407-48ff-981b-c694b4e89afb)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 076eb927-3d46-4a02-9606-353f0ad48221)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 14803a49-4d31-4b8d-9c88-f299f9c6d9f4)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 1d39649f-62bf-400e-9a68-821a3fed2758)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 72d726fa-6d90-4503-be2f-6f8a3d8bacb9)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 9599fa5f-6f95-43e1-a114-a47b273efb03)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp a06f1fc7-5ab4-4723-81c4-0f3820d9e4b8)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp e681df62-d41e-4f17-b2e9-7b3665eb7d10)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp e9e13584-3706-4d6f-831a-fa3cb32d12d2)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp eb87634c-0a24-4c22-a613-24b02cc87f42)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp f03f55de-d373-48ec-9dbe-d0d0adec259a)) (pad "1" smd rect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C5-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 59471a0d-1594-45da-b757-b7a334f78bef)) (pad "2" smd rect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 9aaf0514-2927-4794-badc-4cc58d8d9fe8)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_TE-Connectivity:TE 171826-4 Floppy 4-pin" (layer "F.Cu") (tedit 6204BF02) (tstamp ac8d1beb-8064-452d-b2a7-337a1c8f4c29) (at 44.75 70.5 -90) (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/12249567-7763-407d-99ba-d9d9fb75ec7b") (attr through_hole) (fp_text reference "J3" (at 6.1375 0) (layer "F.SilkS") (effects (font (size 1.004331 1.004331) (thickness 0.15))) (tstamp dfb2f912-d150-4cd9-8357-de1ef23eec52) ) (fp_text value "Floppy Power Connector" (at 1.991485 7.991205 -90) (layer "F.Fab") (effects (font (size 1.003283 1.003283) (thickness 0.15))) (tstamp a4487b9b-ecb6-4252-9459-88e6dd0a9d55) ) (fp_line (start -1.27 -0.762) (end -1.27 2.032) (layer "F.SilkS") (width 0.12) (tstamp 00c78733-ef0a-42dd-8ecf-cf1b32bb266d)) (fp_line (start -5 6.75) (end -5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp 01829102-1d5a-49d1-9898-532451f094e8)) (fp_line (start 5 -0.75) (end 5 6.75) (layer "F.SilkS") (width 0.127) (tstamp 079ad4a8-bb2a-46ce-98e0-cdba0e3c34a6)) (fp_line (start 5 -2.15) (end 5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp 2878a5f7-d342-4c67-9deb-8fca13fa405c)) (fp_line (start -5 -6.75) (end 5 -6.75) (layer "F.SilkS") (width 0.127) (tstamp 2bc32eaa-2ca9-4b59-b026-006db727521b)) (fp_line (start 5 6.75) (end -5 6.75) (layer "F.SilkS") (width 0.127) (tstamp 364f9633-889c-4059-ad3d-50165775d7e5)) (fp_line (start -1.27 2.032) (end 1.27 2.032) (layer "F.SilkS") (width 0.12) (tstamp 42af5167-97a6-4041-9c4f-56105840d485)) (fp_line (start -5 -0.75) (end 5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp 44b58f20-1a78-4b83-8b7e-0f91a2624450)) (fp_line (start -5 -2.15) (end -5 -6.75) (layer "F.SilkS") (width 0.127) (tstamp 850ab9ef-d555-412d-8f5e-b81c39090196)) (fp_line (start -5 -2.15) (end 5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp 901f11fc-1d25-45d0-b828-7274219e1eb2)) (fp_line (start 1.27 2.032) (end 1.27 -0.762) (layer "F.SilkS") (width 0.12) (tstamp a3127db5-9bb6-4326-b4b3-affd4a22ea43)) (fp_line (start 5 -6.75) (end 5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp bf6c8a95-0ae0-482b-9aa9-68c2557da1ac)) (fp_line (start -5 -0.75) (end -5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp f9dc4850-a743-48ee-b438-6c352e71f62a)) (fp_line (start -5.25 7) (end -5.25 -7) (layer "F.CrtYd") (width 0.05) (tstamp 254f954a-8ab6-45bf-9d27-68ba2a5f23e8)) (fp_line (start -5.25 -7) (end 5.25 -7) (layer "F.CrtYd") (width 0.05) (tstamp 7ca1daed-693d-4c78-9a86-820e2db01653)) (fp_line (start 5.25 7) (end -5.25 7) (layer "F.CrtYd") (width 0.05) (tstamp a0d70745-fbf2-4396-99f8-709094416a48)) (fp_line (start 5.25 -7) (end 5.25 7) (layer "F.CrtYd") (width 0.05) (tstamp bf9665ce-f218-4c4d-a043-55027c20ec05)) (fp_line (start 5 6.75) (end -5 6.75) (layer "F.Fab") (width 0.127) (tstamp 4b15d819-7fad-4124-a852-b76389217120)) (fp_line (start -5 -6.75) (end 5 -6.75) (layer "F.Fab") (width 0.127) (tstamp 5d99bc9f-cd5d-4d06-8c9c-c2ae7a458a9d)) (fp_line (start -5 6.75) (end -5 -6.75) (layer "F.Fab") (width 0.127) (tstamp 6ea0b62d-7ebd-4dc5-b96d-321ed52f3c82)) (fp_line (start 5 6.75) (end 5 -6.75) (layer "F.Fab") (width 0.127) (tstamp a6ce8d51-f278-4d6f-96b5-2534822d2e61)) (pad "1" thru_hole rect (at 3.75 -4.55 270) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (net 44 "AUX5V") (pinfunction "Pin_1") (pintype "passive") (tstamp e4c5c27e-3143-42de-a25b-617e0c5db95d)) (pad "2" thru_hole circle (at 1.25 -4.55 270) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp db21d0d9-8433-4170-b814-d4fb59c5bb63)) (pad "3" thru_hole circle (at -1.25 -4.55 270) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 58b0487d-21c6-4798-8fea-ccf1bf7d5a55)) (pad "4" thru_hole circle (at -3.75 -4.55 270) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (net 102 "Net-(F1-Pad1)") (pinfunction "Pin_4") (pintype "passive") (tstamp 28035c27-ee6f-4cad-b1f0-7e2737797243)) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp af0195d7-cc0c-4c8f-8c98-bcbd04e6f648) (at 77 120.5 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/42518183-bf63-4b15-8194-3d4f57ca461e") (attr smd) (fp_text reference "C2" (at -0.146267 1.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 35b84bfb-f424-48f1-b533-104f20708824) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 73bf18bd-cf3f-440d-8131-9b1a35b6a909) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 5dd9380f-63de-4387-a5ce-65d315269710) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9a281b18-2774-4c3c-80e5-8cddf74996b1)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp b1a738f0-26ee-4ff0-8d3d-226a5245e57f)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 08d317f4-687c-45a8-97df-398da27529b6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0ead13d6-1215-407f-ab37-e3c0e980bcea)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1b8cbaf0-9404-4bd5-a232-7c26b2ababfb)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 69a950f8-3a2f-4c8c-a991-259c8bfdb689)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0dcca157-a27b-40c3-840d-e704a831735a)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 31385f4b-2e29-4f97-bf46-17b2f8ffe955)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 518adf84-338a-4b80-a399-73e4fced7b7d)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f948fba7-33c2-45b5-9d2c-ff5765ada28d)) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (tstamp 3d7bb983-7851-4c58-b206-9b85edb57260)) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 25779825-9af5-431f-a1c4-731d689b292e)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (tedit 5FA16958) (tstamp b0cead16-6461-4e3e-9ca3-2e43f46ff1b9) (at 105.6 66.0625 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/537d375b-1ca6-4946-95db-66496543d0cb") (attr smd) (fp_text reference "Q1" (at 0.8125 -2.4 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 91693c2d-393b-42f7-a860-3895f87b3638) ) (fp_text value "2N7002K" (at 0 2.4 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp edf14a6b-0d70-4db0-9e28-784d655ee5be) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.32 0.32) (thickness 0.05))) (tstamp 24c3ed88-b44c-461f-a72a-c41465279cde) ) (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 5cd8fe45-fa49-4729-81c8-b7c257fc3660)) (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9a9a7510-b2a5-43df-8d9d-d3aaa288fb46)) (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp bc437823-b055-4b4d-9e9b-36084255baed)) (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp f9a350f0-b8ca-4c85-b0c4-eb0366ea7894)) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 046b86e4-3f99-4b1b-8afc-2b7655e8b091)) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 39ea8622-ff03-464a-b272-99edd2919443)) (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ed281390-78e7-4141-803e-8c3c15908eac)) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ee52ed9a-fe21-45b1-a428-83501c475943)) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp a9a939f5-10d0-414e-b2e4-40fdea93f675)) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp b134eb71-28da-4fab-b4ff-66250b349fbc)) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp c4250139-e044-4f1e-ada6-325e27678faf)) (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp f0eaad98-d205-41c4-a0e6-ff5881df4ae0)) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp f33292b6-e256-451d-9bfa-7d07ba9e670f)) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "Net-(Q1-Pad1)") (pinfunction "G") (pintype "input") (tstamp c2edc526-248a-4311-bf42-385de82f20d7)) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp a4e658ae-75b3-4b98-a317-251aa26f5622)) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 29 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "D") (pintype "passive") (tstamp bd8d17e3-5a83-48cc-a429-9d772893f3a8)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp b53297b9-b708-4ab8-87e2-5856dafbf067) (at 109.25 65.8 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (attr smd) (fp_text reference "R8" (at 0.05 -1.25 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ee8bc577-8a80-4c3d-a67d-e6eec779095a) ) (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cdb426f9-d1a0-42f9-a1ec-cb48f333548f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp dc6cb566-6bf9-4b64-8af9-7dc0b2417d25) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e057ca2f-1b75-420b-8935-3a5f72a1ab12)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ef77e506-7008-4d46-8706-e95f795db707)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3170b254-6a0f-4ab8-a131-bd04b3acda0a)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76f2bfa2-9ef5-40e0-97fc-44aae5f0f155)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 81de41d5-1280-4e35-ad22-b76f8a8e836b)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9e476baf-fafa-4406-b556-1eac836b4e2d)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1df894b0-6bd9-44a9-ae83-bc06d12215e1)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 37a89ef0-9ec8-4461-ad1e-65a0a27a98ea)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 37e9135b-3782-4676-bb80-8b51311b565e)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7c019622-7717-478d-9060-42f05ab2dcda)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "MBFAN1_PWM_READ") (pintype "passive") (tstamp e2802236-0b9d-4378-acc3-ff56c139e92e)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 30 "/Fan Channels/Fan1/PWM_IN") (pintype "passive") (tstamp 92259475-6959-4be9-99fb-5b87a080c7dc)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp b545b689-8c4b-4bf7-b660-bb5fc415c13b) (at 101.1 124.6 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (attr smd) (fp_text reference "C11" (at 0 1.2 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 93332e98-9a6c-4ef1-b5ed-54dcbc177e5f) ) (fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 65548f7a-7e03-41c1-b3e7-58c2a88a469f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 6fc6c4c1-9de5-422a-ad2f-47f84b6fb32c) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9c969a21-21b4-4f84-9f3d-c9ae800d7d10)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp a52a460d-dc81-4862-aa38-2ab58f032487)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3aa3b2ec-4949-47f3-9230-cdb4a40eef55)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4ecc4473-e654-4cee-8a08-d9f3029ef2f6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b548db3-faa8-419e-9183-cd2c7206e5b7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaac1b1f-6fbb-4190-9c52-2e56901fce10)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 119e270a-d495-47a3-8320-9a836cf60de9)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 19f589c9-c9c8-42f8-a36e-c040964a7450)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5389cc0f-d4a3-45df-8c9d-6628ddcda0d5)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d252525d-4d07-480e-abb5-c08246f7bde2)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 40 "/Fan Channels/Fan1/PWR_OUT") (pintype "passive") (tstamp 3f9b74b6-33e0-4e9d-9710-c0899223c2cc)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 462e52a9-d5aa-404a-a035-d1f0972ca7df)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (tedit 56DDBCCA) (tstamp b6faa3d1-9cab-4cf0-bbf1-abc808bc9059) (at 42.5 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/cbfea856-81cc-4920-8136-231416e676cf") (zone_connect 2) (attr exclude_from_pos_files) (fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 61a38305-be0b-4f78-b599-39311c073f79) ) (fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6620ece5-b552-42e3-b4a7-a863bb396ec1) ) (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9cb3ab70-f859-494a-87ac-434fbc66c33e) ) (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 5b896b72-bf91-4f1d-b645-e2f615417a3f)) (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 33745c76-493d-4e4a-a755-f97ece143302)) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 00f6a67c-a032-469e-9560-b139d4e1b4a7)) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 04c74dd5-f6c8-4c9d-8c28-3b17ac54986b)) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 18a17eb6-f45e-4c15-bce2-217ce6b1e774)) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 4d65018e-4d1b-43c4-a8bd-5faea86df2b4)) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 6bd49631-1768-47cd-8529-b0e9abf84fcc)) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 82d6bed5-fe1c-4371-abeb-57e5be235891)) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp baa08606-faaa-40a4-8243-f2559d90760d)) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp d66a0670-bd7d-4660-9acf-4f66033949da)) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp da4d06af-2dcb-4ea0-8ec1-6de34a3ad748)) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp b73189eb-ce33-4fd6-899f-a0fe6fefce38) (at 104.7 111.7 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/99383412-e91e-4682-9562-162d7ddf01c0") (attr smd) (fp_text reference "D8" (at -2.6 0.1 180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1a3b3ac1-1149-4af0-88a5-7f64e33c4898) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ac99f243-aa8f-4496-82dd-cd58dae79415) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 09518f18-8c5c-4629-8039-76c971a8c2f1) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 6cfdc61e-9238-4bf1-8adc-0aa2afd5e23c)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 8f3eb88d-9ce9-4013-ad67-32b8876a01b4)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp dc907d3a-ade0-4fb2-bac6-3f031f194fac)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4035c6d5-0218-4683-a405-7b7b1fd841f8)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4b8be3ff-4f25-49f4-9eee-d26026895d38)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9c352ce5-8dcd-4676-8f85-0d97597fd098)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp dfdae403-bb08-48d4-b042-b5f0fa182e90)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 2687370f-49a5-4bc5-9d99-d875739be787)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 463adae5-2b8d-4805-b9f3-b2a6f8105566)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 473c668c-5f7b-4cf5-8012-906483dc5dc1)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 52039751-7c90-4bad-b446-00e9c6094980)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 7856fd3e-7cb2-4617-9f08-e93b38475b94)) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 2cde09e2-1478-4e90-84f2-de808fbc4e00)) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 105 "Net-(D8-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 875d8101-02ec-4109-9cb3-dc03033ea564)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp b7b0924b-a534-453f-b03b-3088a452d2d5) (at 113.25 68 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e14cb179-4962-4028-9c28-4efc70e0b4c6") (attr smd) (fp_text reference "D11" (at -0.25 -1.65 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d7c96d03-c33d-42a4-b9f5-33ebc94d6064) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7442195e-b309-4104-87d4-096c8b6e0583) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 808953e6-4649-45c8-ae8d-0fce582466f0) ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 29052f11-eb52-41b4-aa3f-c148433f61d5)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 6360866e-61e1-4dc6-a707-8374bcb5b436)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp d5d0ab72-d292-46f1-9956-293c20275329)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 03ceb6fa-e744-4405-b1b0-49ed782742c2)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 444af21c-c3d4-4580-a6f3-31660448e88e)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp b097fa98-254e-4992-920b-6c95a164d429)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f98860f1-b458-44b8-bcfb-dd360d643f09)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2cb9c49e-82d7-476b-bc58-8c6fff3dddf8)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 4bb5736a-d22c-47e8-a09f-02490b2d7b1d)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 73c4a22b-6852-466b-986e-cd58834dbe20)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp eefbb01a-1017-402d-94d8-5e1519140627)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp fdf1b3e7-069e-4f76-9d87-caaeb7d55ad9)) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 6f0bf181-b7ac-48a2-905c-c67feeb7d571)) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 17 "Net-(D11-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a2e657e9-8fbb-46fe-96c9-f7babcd4a7d6)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp b84e5c3c-d5ba-45dc-a996-457d3d15ea34) (at 131.1 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/52dfc41f-11f2-4f25-9797-248cc8d74731") (attr through_hole) (fp_text reference "J6" (at 7.75 2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8a9dd820-4ec5-4959-94a2-489c1e5fdf0f) ) (fp_text value "MB Fan3 Input" (at 4.05 4.35) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp edc5129d-f46c-479a-bd75-243c78b54fdb) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f886ffaf-1f6a-4587-bede-09aad32c7906) ) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 3bd73262-7ee1-4541-8298-a0d7411e1d75)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 42b93640-dc22-413d-916b-9e4ab2755ea6)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 440e56b8-e696-4feb-9521-3e1f16f39a02)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 4e6baf82-1448-4d68-8aef-496f449563d1)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 6ad02073-0558-42a4-92fa-4add44c180cf)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 87a79b8f-2884-4c6d-9e08-6da03103a9bc)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp bc8836f4-9951-4b33-96ef-07d16eafd9ac)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp f47c3c15-40d1-43fc-bdc9-d0d6b42f19ab)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 25b9bd59-5e1d-4f98-99d2-d7e767a14be0)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 95b9926a-6923-4d22-94a9-a7e0924d3712)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp c9b0f093-79f7-44a9-9a01-140d009dab54)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp e11a3537-54f2-4cd9-a01e-8d25f34fd41b)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 08402209-d3fd-42d4-8065-6a77e812c43c)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 1ce35f55-7b10-4f85-a37b-4d1001366d27)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 4824cc17-4fe1-4945-ad51-0aeea24cae8e)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 6d82f96f-5cd4-4338-b574-ad84bd842bec)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp 6fed9995-8ff3-4083-85d0-0bba783437a3)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp 9b0f93ef-a45a-4738-a37f-ee43c3ce3020)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp aa8a688f-5fa8-4705-b079-d93e40bd66a2)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp ba9f795f-8c46-48a3-ba64-f5c3f70c3f24)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp f85a42e4-203a-4e25-98e4-36d444206b66)) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 9f9a1dc2-1e64-4561-84e9-c59e56eccfbe)) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 6a336e3f-79e9-4231-8ca2-38a798f05f9f)) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 34 "FAN3_PWR") (pinfunction "Pin_2") (pintype "passive") (tstamp 3862ae54-0889-40d0-a519-841ecb949575)) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 35 "/Fan Channels/Fan3/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (tstamp 7cba27a8-b26c-4e33-ad8e-83f2f8589f1f)) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 36 "/Fan Channels/Fan3/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (tstamp 0be455d7-9219-470e-8eb0-7925a3f97f66)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp ba566fd6-3c00-4758-b55e-90b7e219eb11) (at 83.1 71.4 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b1335ea9-16da-44b9-9459-ec64501666b6") (attr smd) (fp_text reference "C6" (at -0.1 1.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c0e70207-ed91-46fb-a072-10214b6bd602) ) (fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8962f818-87ec-4b8e-9ed5-7b8ea3100bfb) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 0932794d-e694-46df-bad2-06836f9d0251) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 584431e2-1b1c-4dd7-9714-d5ee4b5b9a0c)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp ce2d3016-a2bd-48ae-b224-5879e0f39dd3)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 72c5a465-0f2a-4f51-818a-dc0f73e2ec23)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 814e9bca-c64a-4baf-89c6-1d300ec29405)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af7910ca-9c27-4f1b-a003-e6b20a19581b)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fdf2dd51-06ac-4c0f-8db9-005c56bd3fb2)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 03e26b77-b6ff-4f54-9f89-8890943eef41)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 37274da6-b027-4f51-ac31-50d642bdbd28)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 395a69db-1d4d-4920-be0d-6395f54536d2)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7de65308-5d59-4104-b781-fe526828aab6)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "Net-(C5-Pad1)") (pintype "passive") (tstamp 8849300c-0a8b-49e2-8153-7809d0646c05)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp d2bee0b5-73ad-4bbf-af94-4ec410266442)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp bb504713-e5b7-4ed9-8870-06ffee60d198) (at 130.6 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (attr smd) (fp_text reference "D21" (at 0 -2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4240fef1-07ee-4e87-9e5d-71a8ccd28e59) ) (fp_text value "BAT54C" (at 0 2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9d92388b-f9fb-415c-bdca-ff98123c4da4) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1f16c423-5a09-4e62-aa92-b6b9f364f9e3) ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 279041df-5701-40f8-b43b-c55f9f224924)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 28c99006-db10-4e32-8623-230b8bc5f422)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 5788f6ee-a950-4b1b-aaa9-d2665c0c4242)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp ba105837-9e06-4662-9965-7593b1cae8d0)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 4791f0c8-eca1-472a-b5e7-1c3eff883c30)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6f0cedfe-c86d-4e25-b64a-6c2635e4efb5)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bf74c99b-6291-4cef-a3b3-a7e4ae401405)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp e6a821a1-5d08-48bd-b8e3-94ecf04b3e69)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 084b112d-dcfd-4801-aa54-60bf427059e5)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 0bb237b7-3c36-4dd2-83be-cd2c222b4c4e)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp 263960db-ac36-42ac-a092-0ee4b342f26f)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 4629e325-a0a2-4fa0-9b82-0617c92179cc)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 8d83e328-7f8e-4ff2-9f4c-9b7ab1a82636)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp b40b1eac-9bfc-4cbe-b825-0212be42c854)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp cba1ad96-6b70-46fa-bd41-9f290718bd7c)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp cfed5c4e-149f-45c5-874a-d4efe242083a)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp de13e0f2-e58c-4cc2-84c5-b6bd1aedd8ac)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp e7165906-145f-4c8c-8c9a-48e9112ef2d2)) (pad "" smd rect (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ce3b7f99-7920-4450-9cce-f9c9b5b48a38)) (pad "1" smd rect (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 20 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 061a7cdc-b409-4101-babe-bad3b941f399)) (pad "2" smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 76 "FAN3_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp db3bdaef-0751-479c-99b1-2d09837cc205)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp bbfc380b-a351-4b9d-a575-294a2dc5b3c1) (at 41.6 85.1875 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1fde763e-90ef-4ddc-b2e5-d750ee01b070") (attr smd) (fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp dd38e152-6fa5-4465-b968-516c2248feb2) ) (fp_text value "10k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cf66e1ed-27af-4997-9dab-8fbfd361c2a9) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 685fbaee-496b-4ad6-92a4-156b48e66e96) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7ff76ce9-014a-4960-bf3a-701dbbac00c6)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b3e1d5b9-81ec-42bb-ac13-1a27f4f7bc0a)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 35cd1822-72b8-4d00-90bd-8281dc3f6da6)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3b5d2fad-a9af-4f4a-ba85-d70eb97e442a)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3c22c0a4-0a07-40d0-8997-d1bb1c0b11e9)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84d5f852-148c-4a2a-9e27-20bfc66d29b4)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2fee32b2-1fc6-4455-89ca-648faf7ff18a)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a0b3a685-e15d-4dac-bf65-526fad8f74cb)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ec4752a0-5ea1-4038-aeb8-41a166e64123)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f5a3c28f-5c1c-4a4b-ac92-ed240b641b82)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 104 "VBUS") (pintype "passive") (tstamp 10e8b7cd-b906-43c3-9b47-1bf21f9106db)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 14 "Net-(D6-Pad2)") (pintype "passive") (tstamp 56e4b6f8-1124-445f-9e4a-f6e2c71ab1b0)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp c06e5e7c-c9d3-4ec8-9cbe-adebe02c2230) (at 104.8875 115.4 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (attr smd) (fp_text reference "R12" (at 0 1.2) (layer "F.SilkS") (effects (font (size 0.7 0.7) (thickness 0.15))) (tstamp 4f46b8e8-9e73-4b6a-8e59-fbe50391f07b) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 365ed274-ece5-479d-b394-a22ea72d34fa) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 0e789aa1-5390-4379-aa6a-585bf85c70b3) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7745ae53-2db5-46b5-a486-e19c0557578e)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a015eab0-6f76-42f1-9391-160e6f75d293)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3ec49490-906f-4a46-929c-b30b1502736b)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4dcf12f0-d22f-49eb-aa1b-3474b4dab3ed)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7718da40-efa4-4e34-a267-870901c29b55)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a5519afb-00f1-4a13-a0b0-6474f1a66e17)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 819438cd-eb04-49f4-9ba8-859316429688)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 91ffa1de-4bff-4918-b879-52ed70dec913)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a33778ae-6c6a-48d8-8b4c-745bf59d1391)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp abc425ae-34db-440c-baf2-199506429483)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 40 "/Fan Channels/Fan1/PWR_OUT") (pintype "passive") (tstamp 15f9ce5c-444b-4b49-9e20-44109e09dae0)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 105 "Net-(D8-Pad2)") (pintype "passive") (tstamp 1f7e449b-433b-4bf3-9cfe-912c00304097)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp c0e42a22-59ee-4a79-b22d-300f6c3f03db) (at 55 85.075) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/9fda019a-5350-4524-b5e4-0e13d75d61d1") (attr smd) (fp_text reference "C29" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 96b41a2c-b9e7-4987-ba8b-20094e903a68) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b4808668-2104-4da7-a96a-24077c1d3629) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 641dfe8e-9deb-4bea-8695-e66f64ef7c6f) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 7fa0e76c-6e59-4f17-939c-0d185a6c2d06)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b48d97b8-47f1-405c-b44c-6b3fc7be9f02)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8cdd0feb-2be3-4355-8513-2f362bed21ed)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8ff02bca-1407-4488-9de5-e012a126876f)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9a900cc9-ba00-479f-9d2c-4c03574f6fb6)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a8620a61-f072-46b8-9201-a93dbc5c329f)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5eb104f9-4bad-4a3d-b0c0-d332ff2cf319)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 704f221d-f5f1-4963-9663-cefa2d223dd2)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bf44a63b-c726-41a2-8b88-a356980dc0f8)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c0e1724d-8707-46d2-acaf-23915b776cb6)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 87 "ADC_REF") (pintype "passive") (tstamp 5b9df8a3-d63d-440b-bc13-de5e5b7fa422)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "AGND") (pintype "passive") (tstamp 36a66260-a729-4d01-b36d-c2dd2dfb2c0a)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (tedit 56DDBCCA) (tstamp c173dca6-6ab6-465e-85ec-e09c8c8bfdd9) (at 167.5 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/91796faf-4963-43e3-be77-8c6bb9373a7f") (zone_connect 2) (attr exclude_from_pos_files) (fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 792685e9-fe40-4fbf-a788-175ee65815ee) ) (fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1699bc09-f09e-4839-81f2-9ca65ce464d7) ) (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 7d1243ca-b23d-40f1-a05b-8212e796f3b7) ) (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 65d3983e-1c45-41bc-a3b4-bd022070289f)) (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 76d5873b-ee9f-4286-852b-3e416f5e58d4)) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 02eeeaf0-02f1-49a3-b288-95e452374a4f)) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 365f8d25-a297-4f89-a07e-59a6a6975ec7)) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 4206ccdf-4d5e-4a49-85ca-882972e6150d)) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 4cea73b9-aa6a-4e61-a258-be68f53395e5)) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 94c92652-21ac-42f1-b571-6f41123e5974)) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 9c3666ff-48f7-42fc-87ea-b19fd9bff60f)) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp a109695a-7a5a-4ff1-81f1-c62e064d8fdd)) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp bcfbf0fc-e1d4-4713-9434-d5f3b1b90b7a)) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp d372b0df-12cb-4d18-93e5-ecca155a1076)) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp c49de291-4f40-4b4a-a42d-a9218ebf31a4) (at 96.4125 59.8 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5effda4f-f509-4c42-bf3f-632077643ed1") (attr smd) (fp_text reference "R51" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 056244b4-782b-4b6e-ba90-d2e1511d2219) ) (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0b3b09e8-f07a-4562-a7fe-4fdb5ea047a2) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 60bf2b63-fb01-4f5a-96ae-46ee449fe1d2) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1f4119fa-f835-4e80-8c84-6828aef8c51e)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp bd2e471c-8b5a-49ff-ab51-d84313e14ec3)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a6d336a-4ff7-43fa-abf9-8e432f6c9755)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 88e1f3da-5219-4430-bd49-720d6ada710f)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9b9a684e-3c35-4415-b767-26757c066b59)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca5bbcae-bca9-4c92-a3fe-4f5ce2352671)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 04b0c064-a830-490a-83c2-566f684abab7)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 531d36aa-7177-48db-a771-22fe5d25e61b)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a773a48b-759f-4a00-a8ce-62545eb66340)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e198ee4b-1cbc-480a-b8e3-d62294e53a20)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 115 "TEMP2_READ") (pintype "passive") (tstamp 9b9e2675-1639-445e-8099-87d7e04b0384)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 118 "Net-(JP11-Pad1)") (pintype "passive") (tstamp 6c70d67d-dc7f-4728-ac98-eb4a165a8c46)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp c6561626-87e4-49aa-8e4f-de2eeb417f5d) (at 162.3 108.5 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (attr smd) (fp_text reference "D25" (at -3.4 2.3 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp f40ddf32-3ab6-4c21-957f-cce00679f0f7) ) (fp_text value "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 99df8224-fa77-42d4-ad39-5d518541e832) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 14e18a98-14c3-4aef-81c7-7abd4f533458) ) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 2a9a343f-9a7c-44ba-b6b6-89c6c762f24b)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 61f70b66-0197-44df-a101-3ff0aeea5c89)) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp a79049de-c9e5-4167-a074-82368776b06f)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 60cc07c3-f05d-4cd3-abf4-8d1994bb9a5e)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 797ed480-0d03-4c93-8017-7365f716e4b6)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 90ddfbba-da39-45a4-9bfd-d70aec43db6c)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 98965bb6-4143-4f2d-82a5-f9947894cad5)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 3236e560-f3ec-4de0-ade4-394d3f9db366)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 3fdb8382-559f-43f8-9176-b692e752cda6)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 666bb125-58ae-4535-9e81-e65699eb3234)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 933c3c23-7e3a-4983-a815-80fe56a3a34a)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 99877ac4-45c1-405c-a586-defdb4fb1364)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 9b9c9f2d-c3f0-4093-8f37-35fad5b79e40)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp aaf7297c-cff1-4678-ae5d-ded8fb601d7d)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp cbaacf7f-e6d8-4d79-b1dc-145fed2c9eed)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp d4caa1ba-0e60-4bd8-a089-46187907c4c8)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp da4c08ed-e95e-486d-904e-acd9d4d4ecb4)) (pad "1" smd rect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 91 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 61bfba10-0676-4210-8752-7ac3fd2a77e6)) (pad "2" smd rect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 891adb15-a2dd-4efe-bdec-972943021179)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp c6755a81-7c14-4c1b-9e7c-b1323e38f892) (at 146.25 94 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (attr smd) (fp_text reference "C23" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f07599c7-599f-45fe-bd1e-15999cff5f04) ) (fp_text value "1nF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 752adc48-1717-4d51-9f8e-0abf0c5bc60d) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp f3509610-03b3-4a5c-988c-cbd92bd1f824) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 02194d0f-938a-44ee-84f8-af9da96e20a6)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 69eb8847-3a16-4dc2-b290-73e92782f93c)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2215c3cc-9572-458d-8c50-c154d8a21edd)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3897df55-4e8e-4d33-b5e2-ac09206305eb)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4e382949-b4c3-41d4-b556-66ee3e494bfa)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 64955e90-795b-4570-8dbb-13ab629cef78)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 58588507-da7d-4bcc-b9cd-bfc861c19ac1)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6586c7bc-7012-4335-b0bd-43918f23a8fd)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 71ae16fb-a509-4131-a92e-a0b0b25743ff)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 93bf1c04-96c6-49e8-9a85-ee6cc4606fcb)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 82 "FAN6_TACHO_READ") (pintype "passive") (tstamp a1ebb81a-5a70-4ccb-880e-6fe3a3cd95db)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp cbf1ea5c-da65-4d09-b093-267466cb207b)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Symbol:OSHW-Logo_7.5x8mm_Copper" (layer "F.Cu") (tedit 0) (tstamp c7335ccf-c114-4670-bb9b-2fe738581c01) (at 159.85 122.95) (descr "Open Source Hardware Logo") (tags "Logo OSHW") (attr exclude_from_pos_files exclude_from_bom) (fp_text reference "REF**" (at 0 0) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 4a7114a3-2bb3-4cb4-b743-8cfc00b40467) ) (fp_text value "OSHW-Logo_7.5x8mm_Copper" (at 0.75 0) (layer "F.Fab") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 6da116a1-5f1e-47d9-b6a8-d86deaea917f) ) (fp_poly (pts (xy 1.379992 3.196673) (xy 1.450427 3.21378) (xy 1.470787 3.222844) (xy 1.510253 3.246583) (xy 1.540541 3.273321) (xy 1.562952 3.307699) (xy 1.578786 3.35436) (xy 1.589343 3.417946) (xy 1.595924 3.503099) (xy 1.599828 3.614462) (xy 1.60131 3.688849) (xy 1.606765 4.010526) (xy 1.51358 4.010526) (xy 1.457047 4.008156) (xy 1.427922 4.000055) (xy 1.420394 3.986451) (xy 1.41642 3.971741) (xy 1.398652 3.974554) (xy 1.37444 3.986348) (xy 1.313828 4.004427) (xy 1.235929 4.009299) (xy 1.153995 4.00133) (xy 1.081281 3.980889) (xy 1.074759 3.978051) (xy 1.008302 3.931365) (xy 0.964491 3.866464) (xy 0.944332 3.7906) (xy 0.945872 3.763344) (xy 1.110345 3.763344) (xy 1.124837 3.800024) (xy 1.167805 3.826309) (xy 1.237129 3.840417) (xy 1.274177 3.84229) (xy 1.335919 3.837494) (xy 1.37696 3.818858) (xy 1.386973 3.81) (xy 1.4141 3.761806) (xy 1.420394 3.718092) (xy 1.420394 3.659605) (xy 1.33893 3.659605) (xy 1.244234 3.664432) (xy 1.177813 3.679613) (xy 1.135846 3.7062) (xy 1.126449 3.718052) (xy 1.110345 3.763344) (xy 0.945872 3.763344) (xy 0.948829 3.711026) (xy 0.978985 3.634995) (xy 1.020131 3.583612) (xy 1.045052 3.561397) (xy 1.069448 3.546798) (xy 1.101191 3.537897) (xy 1.148152 3.532775) (xy 1.218204 3.529515) (xy 1.24599 3.528577) (xy 1.420394 3.522879) (xy 1.420138 3.470091) (xy 1.413384 3.414603) (xy 1.388964 3.381052) (xy 1.33963 3.359618) (xy 1.338306 3.359236) (xy 1.26836 3.350808) (xy 1.199914 3.361816) (xy 1.149047 3.388585) (xy 1.128637 3.401803) (xy 1.106654 3.399974) (xy 1.072826 3.380824) (xy 1.052961 3.367308) (xy 1.014106 3.338432) (xy 0.990038 3.316786) (xy 0.986176 3.310589) (xy 1.002079 3.278519) (xy 1.049065 3.240219) (xy 1.069473 3.227297) (xy 1.128143 3.205041) (xy 1.207212 3.192432) (xy 1.295041 3.1896) (xy 1.379992 3.196673) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 01e988da-5e38-4b10-bd0b-4c6b0b7ce455)) (fp_poly (pts (xy 0.811669 1.94831) (xy 0.896192 1.99434) (xy 0.962321 2.067006) (xy 0.993478 2.126106) (xy 1.006855 2.178305) (xy 1.015522 2.252719) (xy 1.019237 2.338442) (xy 1.017754 2.424569) (xy 1.010831 2.500193) (xy 1.002745 2.540584) (xy 0.975465 2.59584) (xy 0.92822 2.65453) (xy 0.871282 2.705852) (xy 0.814924 2.739005) (xy 0.81355 2.739531) (xy 0.743616 2.754018) (xy 0.660737 2.754377) (xy 0.581977 2.741188) (xy 0.551566 2.730617) (xy 0.473239 2.686201) (xy 0.417143 2.628007) (xy 0.380286 2.550965) (xy 0.35968 2.450001) (xy 0.355018 2.397116) (xy 0.355613 2.330663) (xy 0.534736 2.330663) (xy 0.54077 2.42763) (xy 0.558138 2.501523) (xy 0.58574 2.548736) (xy 0.605404 2.562237) (xy 0.655787 2.571651) (xy 0.715673 2.568864) (xy 0.767449 2.555316) (xy 0.781027 2.547862) (xy 0.816849 2.504451) (xy 0.840493 2.438014) (xy 0.850558 2.357161) (xy 0.845642 2.270502) (xy 0.834655 2.218349) (xy 0.803109 2.157951) (xy 0.753311 2.120197) (xy 0.693337 2.107143) (xy 0.631264 2.120849) (xy 0.583582 2.154372) (xy 0.558525 2.182031) (xy 0.5439 2.209294) (xy 0.536929 2.24619) (xy 0.534833 2.30275) (xy 0.534736 2.330663) (xy 0.355613 2.330663) (xy 0.356282 2.255994) (xy 0.379265 2.140271) (xy 0.423972 2.049941) (xy 0.490405 1.985) (xy 0.578565 1.945445) (xy 0.597495 1.940858) (xy 0.711266 1.93009) (xy 0.811669 1.94831) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 11dd635d-8920-41b8-9329-b249747dad94)) (fp_poly (pts (xy 0.37413 3.195104) (xy 0.44022 3.200066) (xy 0.526626 3.459079) (xy 0.613031 3.718092) (xy 0.640124 3.626184) (xy 0.656428 3.569384) (xy 0.677875 3.492625) (xy 0.701035 3.408251) (xy 0.71328 3.362993) (xy 0.759344 3.19171) (xy 0.949387 3.19171) (xy 0.892582 3.371349) (xy 0.864607 3.459704) (xy 0.830813 3.566281) (xy 0.79552 3.677454) (xy 0.764013 3.776579) (xy 0.69225 4.002171) (xy 0.537286 4.012253) (xy 0.49527 3.873528) (xy 0.469359 3.787351) (xy 0.441083 3.692347) (xy 0.416369 3.608441) (xy 0.415394 3.605102) (xy 0.396935 3.548248) (xy 0.380649 3.509456) (xy 0.369242 3.494787) (xy 0.366898 3.496483) (xy 0.358671 3.519225) (xy 0.343038 3.56794) (xy 0.321904 3.636502) (xy 0.29717 3.718785) (xy 0.283787 3.764046) (xy 0.211311 4.010526) (xy 0.057495 4.010526) (xy -0.065469 3.622006) (xy -0.100012 3.513022) (xy -0.131479 3.414048) (xy -0.158384 3.329736) (xy -0.179241 3.264734) (xy -0.192562 3.223692) (xy -0.196612 3.211701) (xy -0.193406 3.199423) (xy -0.168235 3.194046) (xy -0.115854 3.194584) (xy -0.107655 3.19499) (xy -0.010518 3.200066) (xy 0.0531 3.434013) (xy 0.076484 3.519333) (xy 0.097381 3.594335) (xy 0.113951 3.652507) (xy 0.124354 3.687337) (xy 0.126276 3.693016) (xy 0.134241 3.686486) (xy 0.150304 3.652654) (xy 0.172621 3.596127) (xy 0.199345 3.52151) (xy 0.221937 3.454107) (xy 0.308041 3.190143) (xy 0.37413 3.195104) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 1ceca03a-f8f2-4010-b86d-48b676d933ec)) (fp_poly (pts (xy -1.839543 3.198184) (xy -1.76093 3.21916) (xy -1.701084 3.25718) (xy -1.658853 3.306978) (xy -1.645725 3.32823) (xy -1.636032 3.350492) (xy -1.629256 3.37897) (xy -1.624877 3.418871) (xy -1.622376 3.475401) (xy -1.621232 3.553767) (xy -1.620928 3.659176) (xy -1.620922 3.687142) (xy -1.620922 4.010526) (xy -1.701132 4.010526) (xy -1.752294 4.006943) (xy -1.790123 3.997866) (xy -1.799601 3.992268) (xy -1.825512 3.982606) (xy -1.851976 3.992268) (xy -1.895548 4.00433) (xy -1.95884 4.009185) (xy -2.02899 4.007078) (xy -2.09314 3.998256) (xy -2.130593 3.986937) (xy -2.203067 3.940412) (xy -2.24836 3.875846) (xy -2.268722 3.79) (xy -2.268912 3.787796) (xy -2.267125 3.749713) (xy -2.105527 3.749713) (xy -2.091399 3.79303) (xy -2.068388 3.817408) (xy -2.022196 3.835845) (xy -1.961225 3.843205) (xy -1.899051 3.839583) (xy -1.849249 3.825074) (xy -1.835297 3.815765) (xy -1.810915 3.772753) (xy -1.804737 3.723857) (xy -1.804737 3.659605) (xy -1.897182 3.659605) (xy -1.985005 3.666366) (xy -2.051582 3.68552) (xy -2.092998 3.715376) (xy -2.105527 3.749713) (xy -2.267125 3.749713) (xy -2.26451 3.694004) (xy -2.233576 3.619847) (xy -2.175419 3.563767) (xy -2.16738 3.558665) (xy -2.132837 3.542055) (xy -2.090082 3.531996) (xy -2.030314 3.527107) (xy -1.95931 3.525983) (xy -1.804737 3.525921) (xy -1.804737 3.461125) (xy -1.811294 3.41085) (xy -1.828025 3.377169) (xy -1.829984 3.375376) (xy -1.867217 3.360642) (xy -1.92342 3.354931) (xy -1.985533 3.357737) (xy -2.04049 3.368556) (xy -2.073101 3.384782) (xy -2.090772 3.39778) (xy -2.109431 3.400262) (xy -2.135181 3.389613) (xy -2.174127 3.363218) (xy -2.23237 3.318465) (xy -2.237716 3.314273) (xy -2.234977 3.29876) (xy -2.212124 3.27296) (xy -2.177391 3.244289) (xy -2.13901 3.220166) (xy -2.126952 3.21447) (xy -2.082966 3.203103) (xy -2.018513 3.194995) (xy -1.946503 3.191743) (xy -1.943136 3.191736) (xy -1.839543 3.198184) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 3ca9ce70-655c-4b2f-bb51-a75d4fcfb275)) (fp_poly (pts (xy 0.500964 -3.601424) (xy 0.576513 -3.200678) (xy 1.134041 -2.970846) (xy 1.468465 -3.198252) (xy 1.562122 -3.261569) (xy 1.646782 -3.318104) (xy 1.718495 -3.365273) (xy 1.773311 -3.400498) (xy 1.80728 -3.421195) (xy 1.81653 -3.425658) (xy 1.833195 -3.41418) (xy 1.868806 -3.382449) (xy 1.919371 -3.334517) (xy 1.9809 -3.274438) (xy 2.049399 -3.206267) (xy 2.120879 -3.134055) (xy 2.191347 -3.061858) (xy 2.256811 -2.993727) (xy 2.31328 -2.933717) (xy 2.356763 -2.885881) (xy 2.383268 -2.854273) (xy 2.389605 -2.843695) (xy 2.380486 -2.824194) (xy 2.35492 -2.781469) (xy 2.315597 -2.719702) (xy 2.265203 -2.643069) (xy 2.206427 -2.555752) (xy 2.172368 -2.505948) (xy 2.110289 -2.415007) (xy 2.055126 -2.332941) (xy 2.009554 -2.263837) (xy 1.97625 -2.211778) (xy 1.95789 -2.18085) (xy 1.955131 -2.17435) (xy 1.961385 -2.155879) (xy 1.978434 -2.112828) (xy 2.003703 -2.051251) (xy 2.034622 -1.977201) (xy 2.068618 -1.89673) (xy 2.103118 -1.815893) (xy 2.135551 -1.740742) (xy 2.163343 -1.677329) (xy 2.183923 -1.631707) (xy 2.194719 -1.609931) (xy 2.195356 -1.609074) (xy 2.212307 -1.604916) (xy 2.257451 -1.595639) (xy 2.32611 -1.582156) (xy 2.413602 -1.565379) (xy 2.51525 -1.546219) (xy 2.574556 -1.53517) (xy 2.683172 -1.51449) (xy 2.781277 -1.494811) (xy 2.863909 -1.477211) (xy 2.926104 -1.462767) (xy 2.962899 -1.452554) (xy 2.970296 -1.449314) (xy 2.97754 -1.427383) (xy 2.983385 -1.377853) (xy 2.987835 -1.306515) (xy 2.990893 -1.219161) (xy 2.992565 -1.121583) (xy 2.992853 -1.019574) (xy 2.991761 -0.918925) (xy 2.989294 -0.825428) (xy 2.985456 -0.744875) (xy 2.98025 -0.683058) (xy 2.973681 -0.64577) (xy 2.969741 -0.638007) (xy 2.946188 -0.628702) (xy 2.896282 -0.6154) (xy 2.826623 -0.599663) (xy 2.743813 -0.583054) (xy 2.714905 -0.577681) (xy 2.575531 -0.552152) (xy 2.465436 -0.531592) (xy 2.380982 -0.515185) (xy 2.31853 -0.502113) (xy 2.274444 -0.491559) (xy 2.245085 -0.482706) (xy 2.226815 -0.474737) (xy 2.215998 -0.466835) (xy 2.214485 -0.465273) (xy 2.199377 -0.440114) (xy 2.176329 -0.39115) (xy 2.147644 -0.324379) (xy 2.115622 -0.245795) (xy 2.082565 -0.161393) (xy 2.050773 -0.07717) (xy 2.022549 0.000879) (xy 2.000193 0.066759) (xy 1.986007 0.114473) (xy 1.982293 0.138027) (xy 1.982602 0.138852) (xy 1.995189 0.158104) (xy 2.023744 0.200463) (xy 2.065267 0.261521) (xy 2.116756 0.336868) (xy 2.175211 0.422096) (xy 2.191858 0.446315) (xy 2.251215 0.534123) (xy 2.303447 0.614238) (xy 2.345708 0.682062) (xy 2.375153 0.732993) (xy 2.388937 0.762431) (xy 2.389605 0.766048) (xy 2.378024 0.785057) (xy 2.346024 0.822714) (xy 2.297718 0.874973) (xy 2.23722 0.937786) (xy 2.168644 1.007106) (xy 2.096104 1.078885) (xy 2.023712 1.149077) (xy 1.955584 1.213635) (xy 1.895832 1.26851) (xy 1.848571 1.309656) (xy 1.817913 1.333026) (xy 1.809432 1.336842) (xy 1.789691 1.327855) (xy 1.749274 1.303616) (xy 1.694763 1.268209) (xy 1.652823 1.239711) (xy 1.576829 1.187418) (xy 1.486834 1.125845) (xy 1.396564 1.06437) (xy 1.348032 1.031469) (xy 1.183762 0.920359) (xy 1.045869 0.994916) (xy 0.983049 1.027578) (xy 0.929629 1.052966) (xy 0.893484 1.067446) (xy 0.884284 1.06946) (xy 0.873221 1.054584) (xy 0.851394 1.012547) (xy 0.820434 0.947227) (xy 0.78197 0.8625) (xy 0.737632 0.762245) (xy 0.689047 0.650339) (xy 0.637846 0.530659) (xy 0.585659 0.407084) (xy 0.534113 0.283491) (xy 0.48484 0.163757) (xy 0.439467 0.051759) (xy 0.399625 -0.048623) (xy 0.366942 -0.133514) (xy 0.343049 -0.199035) (xy 0.329574 -0.24131) (xy 0.327406 -0.255828) (xy 0.344583 -0.274347) (xy 0.38219 -0.30441) (xy 0.432366 -0.339768) (xy 0.436578 -0.342566) (xy 0.566264 -0.446375) (xy 0.670834 -0.567485) (xy 0.749381 -0.702024) (xy 0.800999 -0.846118) (xy 0.824782 -0.995895) (xy 0.819823 -1.147483) (xy 0.785217 -1.297008) (xy 0.720057 -1.4406) (xy 0.700886 -1.472016) (xy 0.601174 -1.598875) (xy 0.483377 -1.700745) (xy 0.351571 -1.777096) (xy 0.209833 -1.827398) (xy 0.062242 -1.851121) (xy -0.087127 -1.847735) (xy -0.234197 -1.816712) (xy -0.374889 -1.75752) (xy -0.505127 -1.669631) (xy -0.545414 -1.633958) (xy -0.647945 -1.522294) (xy -0.722659 -1.404743) (xy -0.77391 -1.27298) (xy -0.802454 -1.142493) (xy -0.8095 -0.995784) (xy -0.786004 -0.848347) (xy -0.734351 -0.705166) (xy -0.656929 -0.571223) (xy -0.556125 -0.451502) (xy -0.434324 -0.350986) (xy -0.418316 -0.340391) (xy -0.367602 -0.305694) (xy -0.32905 -0.27563) (xy -0.310619 -0.256435) (xy -0.310351 -0.255828) (xy -0.314308 -0.235064) (xy -0.329993 -0.187938) (xy -0.355778 -0.118327) (xy -0.390031 -0.030107) (xy -0.431123 0.072844) (xy -0.477424 0.18665) (xy -0.527304 0.307435) (xy -0.579133 0.431321) (xy -0.631281 0.554432) (xy -0.682118 0.672891) (xy -0.730013 0.782823) (xy -0.773338 0.880349) (xy -0.810462 0.961593) (xy -0.839756 1.022679) (xy -0.859588 1.05973) (xy -0.867574 1.06946) (xy -0.891979 1.061883) (xy -0.937642 1.04156) (xy -0.99669 1.012125) (xy -1.02916 0.994916) (xy -1.167053 0.920359) (xy -1.331323 1.031469) (xy -1.415179 1.08839) (xy -1.506987 1.15103) (xy -1.59302 1.210011) (xy -1.636113 1.239711) (xy -1.696723 1.28041) (xy -1.748045 1.312663) (xy -1.783385 1.332384) (xy -1.794863 1.336554) (xy -1.81157 1.325307) (xy -1.848546 1.293911) (xy -1.902205 1.245624) (xy -1.968962 1.183708) (xy -2.045234 1.111421) (xy -2.093473 1.065008) (xy -2.177867 0.982087) (xy -2.250803 0.90792) (xy -2.309331 0.84568) (xy -2.350503 0.798541) (xy -2.371372 0.769673) (xy -2.373374 0.763815) (xy -2.364083 0.741532) (xy -2.338409 0.696477) (xy -2.2992 0.633211) (xy -2.249303 0.556295) (xy -2.191567 0.470292) (xy -2.175149 0.446315) (xy -2.115323 0.35917) (xy -2.06165 0.28071) (xy -2.01713 0.215345) (xy -1.984765 0.167484) (xy -1.967555 0.141535) (xy -1.965893 0.138852) (xy -1.968379 0.118172) (xy -1.981577 0.072704) (xy -2.003186 0.008444) (xy -2.030904 -0.068613) (xy -2.06243 -0.152471) (xy -2.095463 -0.237134) (xy -2.127701 -0.316608) (xy -2.156843 -0.384896) (xy -2.180588 -0.436003) (xy -2.196635 -0.463933) (xy -2.197775 -0.465273) (xy -2.207588 -0.473255) (xy -2.224161 -0.481149) (xy -2.251132 -0.489771) (xy -2.292139 -0.499938) (xy -2.35082 -0.512469) (xy -2.430813 -0.528179) (xy -2.535755 -0.547887) (xy -2.669285 -0.572408) (xy -2.698196 -0.577681) (xy -2.783882 -0.594236) (xy -2.858582 -0.610431) (xy -2.915694 -0.624704) (xy -2.948617 -0.635492) (xy -2.953031 -0.638007) (xy -2.960306 -0.660304) (xy -2.966219 -0.710131) (xy -2.970766 -0.781696) (xy -2.973945 -0.869207) (xy -2.975749 -0.966872) (xy -2.976177 -1.068899) (xy -2.975223 -1.169497) (xy -2.972884 -1.262873) (xy -2.969156 -1.343235) (xy -2.964034 -1.404791) (xy -2.957516 -1.44175) (xy -2.953586 -1.449314) (xy -2.931708 -1.456944) (xy -2.881891 -1.469358) (xy -2.809097 -1.485478) (xy -2.718289 -1.504227) (xy -2.614431 -1.524529) (xy -2.557846 -1.53517) (xy -2.450486 -1.55524) (xy -2.354746 -1.57342) (xy -2.275306 -1.588801) (xy -2.216846 -1.600469) (xy -2.184045 -1.607512) (xy -2.178646 -1.609074) (xy -2.169522 -1.626678) (xy -2.150235 -1.669082) (xy -2.123355 -1.730228) (xy -2.091454 -1.804057) (xy -2.057102 -1.884511) (xy -2.022871 -1.965532) (xy -1.991331 -2.041063) (xy -1.965054 -2.105045) (xy -1.946611 -2.15142) (xy -1.938571 -2.174131) (xy -1.938422 -2.175124) (xy -1.947535 -2.193039) (xy -1.973086 -2.234267) (xy -2.012388 -2.294709) (xy -2.062757 -2.370269) (xy -2.121506 -2.456848) (xy -2.155658 -2.506579) (xy -2.21789 -2.597764) (xy -2.273164 -2.680551) (xy -2.318782 -2.750751) (xy -2.352048 -2.804176) (xy -2.370264 -2.836639) (xy -2.372895 -2.843917) (xy -2.361586 -2.860855) (xy -2.330319 -2.897022) (xy -2.28309 -2.948365) (xy -2.223892 -3.010833) (xy -2.156719 -3.080374) (xy -2.085566 -3.152935) (xy -2.014426 -3.224465) (xy -1.947293 -3.290913) (xy -1.888161 -3.348226) (xy -1.841025 -3.392353) (xy -1.809877 -3.419241) (xy -1.799457 -3.425658) (xy -1.782491 -3.416635) (xy -1.741911 -3.391285) (xy -1.681663 -3.35219) (xy -1.605693 -3.301929) (xy -1.517946 -3.243083) (xy -1.451756 -3.198252) (xy -1.117332 -2.970846) (xy -0.838567 -3.085762) (xy -0.559803 -3.200678) (xy -0.484254 -3.601424) (xy -0.408706 -4.002171) (xy 0.425415 -4.002171) (xy 0.500964 -3.601424) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 53e270ac-224a-4586-a55a-ff444842f43e)) (fp_poly (pts (xy -3.373216 1.947104) (xy -3.285795 1.985754) (xy -3.21943 2.05029) (xy -3.174024 2.140812) (xy -3.149482 2.257418) (xy -3.147723 2.275624) (xy -3.146344 2.403984) (xy -3.164216 2.516496) (xy -3.20025 2.607688) (xy -3.219545 2.637022) (xy -3.286755 2.699106) (xy -3.37235 2.739316) (xy -3.46811 2.756003) (xy -3.565813 2.747517) (xy -3.640083 2.72138) (xy -3.703953 2.677335) (xy -3.756154 2.619587) (xy -3.757057 2.618236) (xy -3.778256 2.582593) (xy -3.792033 2.546752) (xy -3.800376 2.501519) (xy -3.805273 2.437701) (xy -3.807431 2.385368) (xy -3.808329 2.33791) (xy -3.641257 2.33791) (xy -3.639624 2.385154) (xy -3.633696 2.448046) (xy -3.623239 2.488407) (xy -3.604381 2.517122) (xy -3.586719 2.533896) (xy -3.524106 2.569016) (xy -3.458592 2.57371) (xy -3.397579 2.54844) (xy -3.367072 2.520124) (xy -3.345089 2.491589) (xy -3.332231 2.464284) (xy -3.326588 2.42875) (xy -3.326249 2.375524) (xy -3.327988 2.326506) (xy -3.331729 2.256482) (xy -3.337659 2.211064) (xy -3.348347 2.18144) (xy -3.366361 2.158797) (xy -3.380637 2.145855) (xy -3.440349 2.11186) (xy -3.504766 2.110165) (xy -3.558781 2.130301) (xy -3.60486 2.172352) (xy -3.632311 2.241428) (xy -3.641257 2.33791) (xy -3.808329 2.33791) (xy -3.809401 2.281299) (xy -3.806036 2.203468) (xy -3.795955 2.14493) (xy -3.777774 2.098737) (xy -3.75011 2.057942) (xy -3.739854 2.045828) (xy -3.675722 1.985474) (xy -3.606934 1.95022) (xy -3.522811 1.93545) (xy -3.481791 1.934243) (xy -3.373216 1.947104) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 606267ee-55fc-46e3-baae-a925799f1b42)) (fp_poly (pts (xy -0.267369 4.010526) (xy -0.359277 4.010526) (xy -0.412623 4.008962) (xy -0.440407 4.002485) (xy -0.45041 3.988418) (xy -0.451185 3.978906) (xy -0.452872 3.959832) (xy -0.46351 3.956174) (xy -0.491465 3.967932) (xy -0.513205 3.978906) (xy -0.596668 4.004911) (xy -0.687396 4.006416) (xy -0.761158 3.987021) (xy -0.829846 3.940165) (xy -0.882206 3.871004) (xy -0.910878 3.789427) (xy -0.911608 3.784866) (xy -0.915868 3.735101) (xy -0.917986 3.663659) (xy -0.917816 3.609626) (xy -0.73528 3.609626) (xy -0.731051 3.681441) (xy -0.721432 3.740634) (xy -0.70841 3.77406) (xy -0.659144 3.81974) (xy -0.60065 3.836115) (xy -0.540329 3.822873) (xy -0.488783 3.783373) (xy -0.469262 3.756807) (xy -0.457848 3.725106) (xy -0.452502 3.678832) (xy -0.451185 3.609328) (xy -0.453542 3.540499) (xy -0.459767 3.480026) (xy -0.468592 3.439556) (xy -0.470063 3.435929) (xy -0.505653 3.392802) (xy -0.5576 3.369124) (xy -0.615722 3.365301) (xy -0.66984 3.381738) (xy -0.709774 3.41884) (xy -0.713917 3.426222) (xy -0.726884 3.471239) (xy -0.733948 3.535967) (xy -0.73528 3.609626) (xy -0.917816 3.609626) (xy -0.917729 3.58223) (xy -0.916528 3.538405) (xy -0.908355 3.429988) (xy -0.89137 3.348588) (xy -0.863113 3.288412) (xy -0.821128 3.243666) (xy -0.780368 3.2174) (xy -0.723419 3.198935) (xy -0.652589 3.192602) (xy -0.580059 3.19776) (xy -0.518014 3.213769) (xy -0.485232 3.23292) (xy -0.451185 3.263732) (xy -0.451185 2.87421) (xy -0.267369 2.87421) (xy -0.267369 4.010526) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 67bedb36-b4bc-46f8-88cb-7faa65478d6a)) (fp_poly (pts (xy -1.002043 1.952226) (xy -0.960454 1.97209) (xy -0.920175 2.000784) (xy -0.88949 2.033809) (xy -0.867139 2.075931) (xy -0.851864 2.131915) (xy -0.842408 2.206528) (xy -0.837513 2.304535) (xy -0.835919 2.430702) (xy -0.835894 2.443914) (xy -0.835527 2.740526) (xy -1.019343 2.740526) (xy -1.019343 2.467081) (xy -1.019473 2.365777) (xy -1.020379 2.292353) (xy -1.022827 2.241271) (xy -1.027586 2.20699) (xy -1.035426 2.183971) (xy -1.047115 2.166673) (xy -1.063398 2.149581) (xy -1.120366 2.112857) (xy -1.182555 2.106042) (xy -1.241801 2.129261) (xy -1.262405 2.146543) (xy -1.27753 2.162791) (xy -1.28839 2.180191) (xy -1.29569 2.204212) (xy -1.300137 2.240322) (xy -1.302436 2.293988) (xy -1.303296 2.37068) (xy -1.303422 2.464043) (xy -1.303422 2.740526) (xy -1.487237 2.740526) (xy -1.487237 1.938421) (xy -1.395329 1.938421) (xy -1.340149 1.940603) (xy -1.31168 1.948351) (xy -1.303425 1.963468) (xy -1.303422 1.963916) (xy -1.299592 1.97872) (xy -1.282699 1.97704) (xy -1.249112 1.960773) (xy -1.172937 1.93684) (xy -1.0858 1.934178) (xy -1.002043 1.952226) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 6dead470-a003-4d9a-a776-ac69dd42634c)) (fp_poly (pts (xy 2.946576 1.945419) (xy 3.043395 1.986549) (xy 3.07389 2.006571) (xy 3.112865 2.03734) (xy 3.137331 2.061533) (xy 3.141578 2.069413) (xy 3.129584 2.086899) (xy 3.098887 2.11657) (xy 3.074312 2.137279) (xy 3.007046 2.191336) (xy 2.95393 2.146642) (xy 2.912884 2.117789) (xy 2.872863 2.107829) (xy 2.827059 2.110261) (xy 2.754324 2.128345) (xy 2.704256 2.165881) (xy 2.673829 2.226562) (xy 2.660017 2.314081) (xy 2.660013 2.314136) (xy 2.661208 2.411958) (xy 2.679772 2.48373) (xy 2.716804 2.532595) (xy 2.74205 2.549143) (xy 2.809097 2.569749) (xy 2.880709 2.569762) (xy 2.943015 2.549768) (xy 2.957763 2.54) (xy 2.99475 2.515047) (xy 3.023668 2.510958) (xy 3.054856 2.52953) (xy 3.089336 2.562887) (xy 3.143912 2.619196) (xy 3.083318 2.669142) (xy 2.989698 2.725513) (xy 2.884125 2.753293) (xy 2.773798 2.751282) (xy 2.701343 2.732862) (xy 2.616656 2.68731) (xy 2.548927 2.61565) (xy 2.518157 2.565066) (xy 2.493236 2.492488) (xy 2.480766 2.400569) (xy 2.48067 2.300948) (xy 2.49287 2.205267) (xy 2.51729 2.125169) (xy 2.521136 2.116956) (xy 2.578093 2.036413) (xy 2.655209 1.977771) (xy 2.74639 1.942247) (xy 2.845543 1.931057) (xy 2.946576 1.945419) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 989f61f2-8a68-4f45-bdc4-13bbaae0f9e8)) (fp_poly (pts (xy -1.320119 3.193486) (xy -1.295112 3.200982) (xy -1.28705 3.217451) (xy -1.286711 3.224886) (xy -1.285264 3.245594) (xy -1.275302 3.248845) (xy -1.248388 3.234648) (xy -1.232402 3.224948) (xy -1.181967 3.204175) (xy -1.121728 3.193904) (xy -1.058566 3.193114) (xy -0.999363 3.200786) (xy -0.950998 3.215898) (xy -0.920354 3.237432) (xy -0.914311 3.264366) (xy -0.917361 3.27166) (xy -0.939594 3.301937) (xy -0.97407 3.339175) (xy -0.980306 3.345195) (xy -1.013167 3.372875) (xy -1.04152 3.381818) (xy -1.081173 3.375576) (xy -1.097058 3.371429) (xy -1.146491 3.361467) (xy -1.181248 3.365947) (xy -1.2106 3.381746) (xy -1.237487 3.402949) (xy -1.25729 3.429614) (xy -1.271052 3.466827) (xy -1.279816 3.519673) (xy -1.284626 3.593237) (xy -1.286526 3.692605) (xy -1.286711 3.752601) (xy -1.286711 4.010526) (xy -1.453816 4.010526) (xy -1.453816 3.19171) (xy -1.370264 3.19171) (xy -1.320119 3.193486) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp 9c5bd5d2-ecdb-4048-b835-b5ee55546689)) (fp_poly (pts (xy 0.018628 1.935547) (xy 0.081908 1.947548) (xy 0.147557 1.972648) (xy 0.154572 1.975848) (xy 0.204356 2.002026) (xy 0.238834 2.026353) (xy 0.249978 2.041937) (xy 0.239366 2.067353) (xy 0.213588 2.104853) (xy 0.202146 2.118852) (xy 0.154992 2.173954) (xy 0.094201 2.138086) (xy 0.036347 2.114192) (xy -0.0305 2.10142) (xy -0.094606 2.100613) (xy -0.144236 2.112615) (xy -0.156146 2.120105) (xy -0.178828 2.15445) (xy -0.181584 2.194013) (xy -0.164612 2.22492) (xy -0.154573 2.230913) (xy -0.12449 2.238357) (xy -0.071611 2.247106) (xy -0.006425 2.255467) (xy 0.0056 2.256778) (xy 0.110297 2.274888) (xy 0.186232 2.305651) (xy 0.236592 2.351907) (xy 0.264564 2.416497) (xy 0.273278 2.495387) (xy 0.26124 2.585065) (xy 0.222151 2.655486) (xy 0.155855 2.706777) (xy 0.062194 2.739067) (xy -0.041777 2.751807) (xy -0.126562 2.751654) (xy -0.195335 2.740083) (xy -0.242303 2.724109) (xy -0.30165 2.696275) (xy -0.356494 2.663973) (xy -0.375987 2.649755) (xy -0.426119 2.608835) (xy -0.305197 2.486477) (xy -0.236457 2.531967) (xy -0.167512 2.566133) (xy -0.093889 2.584004) (xy -0.023117 2.585889) (xy 0.037274 2.572101) (xy 0.079757 2.542949) (xy 0.093474 2.518352) (xy 0.091417 2.478904) (xy 0.05733 2.448737) (xy -0.008692 2.427906) (xy -0.081026 2.418279) (xy -0.192348 2.39991) (xy -0.275048 2.365254) (xy -0.330235 2.313297) (xy -0.359012 2.243023) (xy -0.362999 2.159707) (xy -0.343307 2.072681) (xy -0.298411 2.006902) (xy -0.227909 1.962068) (xy -0.131399 1.937879) (xy -0.0599 1.933137) (xy 0.018628 1.935547) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp a2820de7-ac5e-4e6c-b34d-05443eb45397)) (fp_poly (pts (xy -2.53664 1.952468) (xy -2.501408 1.969874) (xy -2.45796 2.000206) (xy -2.426294 2.033283) (xy -2.404606 2.074817) (xy -2.391097 2.130522) (xy -2.383962 2.206111) (xy -2.3814 2.307296) (xy -2.38125 2.350797) (xy -2.381688 2.446135) (xy -2.383504 2.514271) (xy -2.387455 2.561418) (xy -2.394298 2.59379) (xy -2.404789 2.6176) (xy -2.415704 2.633843) (xy -2.485381 2.702952) (xy -2.567434 2.744521) (xy -2.65595 2.757023) (xy -2.745019 2.738934) (xy -2.773237 2.726142) (xy -2.84079 2.690931) (xy -2.84079 3.2427) (xy -2.791488 3.217205) (xy -2.726527 3.19748) (xy -2.64668 3.192427) (xy -2.566948 3.201756) (xy -2.506735 3.222714) (xy -2.456792 3.262627) (xy -2.414119 3.319741) (xy -2.41091 3.325605) (xy -2.397378 3.353227) (xy -2.387495 3.381068) (xy -2.380691 3.414794) (xy -2.376399 3.460071) (xy -2.374049 3.522562) (xy -2.373072 3.607935) (xy -2.372895 3.70401) (xy -2.372895 4.010526) (xy -2.556711 4.010526) (xy -2.556711 3.445339) (xy -2.608125 3.402077) (xy -2.661534 3.367472) (xy -2.712112 3.36118) (xy -2.76297 3.377372) (xy -2.790075 3.393227) (xy -2.810249 3.41581) (xy -2.824597 3.44994) (xy -2.834224 3.500434) (xy -2.840237 3.572111) (xy -2.84374 3.669788) (xy -2.844974 3.734802) (xy -2.849145 4.002171) (xy -2.936875 4.007222) (xy -3.024606 4.012273) (xy -3.024606 2.353101) (xy -2.84079 2.353101) (xy -2.836104 2.4456) (xy -2.820312 2.509809) (xy -2.790817 2.549759) (xy -2.74502 2.56948) (xy -2.69875 2.573421) (xy -2.646372 2.568892) (xy -2.61161 2.551069) (xy -2.589872 2.527519) (xy -2.57276 2.502189) (xy -2.562573 2.473969) (xy -2.55804 2.434431) (xy -2.557891 2.375142) (xy -2.559416 2.325498) (xy -2.562919 2.25071) (xy -2.568133 2.201611) (xy -2.576913 2.170467) (xy -2.591114 2.149545) (xy -2.604516 2.137452) (xy -2.660513 2.111081) (xy -2.726789 2.106822) (xy -2.764844 2.115906) (xy -2.802523 2.148196) (xy -2.827481 2.211006) (xy -2.839578 2.303894) (xy -2.84079 2.353101) (xy -3.024606 2.353101) (xy -3.024606 1.938421) (xy -2.932698 1.938421) (xy -2.877517 1.940603) (xy -2.849048 1.948351) (xy -2.840794 1.963468) (xy -2.84079 1.963916) (xy -2.83696 1.97872) (xy -2.820067 1.977039) (xy -2.786481 1.960772) (xy -2.708222 1.935887) (xy -2.620173 1.933271) (xy -2.53664 1.952468) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp be7fa36e-76d0-45aa-8e70-7b6a33824775)) (fp_poly (pts (xy 2.701193 3.196078) (xy 2.781068 3.216845) (xy 2.847962 3.259705) (xy 2.880351 3.291723) (xy 2.933445 3.367413) (xy 2.963873 3.455216) (xy 2.974327 3.56315) (xy 2.97438 3.571875) (xy 2.974473 3.659605) (xy 2.469534 3.659605) (xy 2.480298 3.705559) (xy 2.499732 3.747178) (xy 2.533745 3.790544) (xy 2.54086 3.797467) (xy 2.602003 3.834935) (xy 2.671729 3.841289) (xy 2.751987 3.816638) (xy 2.765592 3.81) (xy 2.807319 3.789819) (xy 2.835268 3.778321) (xy 2.840145 3.777258) (xy 2.857168 3.787583) (xy 2.889633 3.812845) (xy 2.906114 3.82665) (xy 2.940264 3.858361) (xy 2.951478 3.879299) (xy 2.943695 3.89856) (xy 2.939535 3.903827) (xy 2.911357 3.926878) (xy 2.864862 3.954892) (xy 2.832434 3.971246) (xy 2.740385 4.000059) (xy 2.638476 4.009395) (xy 2.541963 3.998332) (xy 2.514934 3.990412) (xy 2.431276 3.945581) (xy 2.369266 3.876598) (xy 2.328545 3.782794) (xy 2.308755 3.663498) (xy 2.306582 3.601118) (xy 2.312926 3.510298) (xy 2.473157 3.510298) (xy 2.488655 3.517012) (xy 2.530312 3.52228) (xy 2.590876 3.525389) (xy 2.631907 3.525921) (xy 2.705711 3.525408) (xy 2.752293 3.523006) (xy 2.777848 3.517422) (xy 2.788569 3.507361) (xy 2.790657 3.492763) (xy 2.776331 3.447796) (xy 2.740262 3.403353) (xy 2.692815 3.369242) (xy 2.645349 3.355288) (xy 2.580879 3.367666) (xy 2.52507 3.403452) (xy 2.486374 3.455033) (xy 2.473157 3.510298) (xy 2.312926 3.510298) (xy 2.315821 3.468866) (xy 2.344336 3.363498) (xy 2.392729 3.284178) (xy 2.461604 3.230071) (xy 2.551565 3.200343) (xy 2.6003 3.194618) (xy 2.701193 3.196078) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp beb3c8d5-5d21-4d26-a44c-d3f9c4f5aa91)) (fp_poly (pts (xy 1.320131 2.198533) (xy 1.32171 2.321089) (xy 1.327481 2.414179) (xy 1.338991 2.481651) (xy 1.35779 2.527355) (xy 1.385426 2.555139) (xy 1.423448 2.568854) (xy 1.470526 2.572358) (xy 1.519832 2.568432) (xy 1.557283 2.554089) (xy 1.584428 2.525478) (xy 1.602815 2.478751) (xy 1.613993 2.410058) (xy 1.619511 2.31555) (xy 1.620921 2.198533) (xy 1.620921 1.938421) (xy 1.804736 1.938421) (xy 1.804736 2.740526) (xy 1.712828 2.740526) (xy 1.657422 2.738281) (xy 1.628891 2.730396) (xy 1.620921 2.715428) (xy 1.61612 2.702097) (xy 1.597014 2.704917) (xy 1.558504 2.723783) (xy 1.470239 2.752887) (xy 1.376623 2.750825) (xy 1.286921 2.719221) (xy 1.244204 2.694257) (xy 1.211621 2.667226) (xy 1.187817 2.633405) (xy 1.171439 2.588068) (xy 1.161131 2.526489) (xy 1.155541 2.443943) (xy 1.153312 2.335705) (xy 1.153026 2.252004) (xy 1.153026 1.938421) (xy 1.320131 1.938421) (xy 1.320131 2.198533) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp cc7b36fd-334a-443d-918e-57dadff3cb0c)) (fp_poly (pts (xy 2.173167 3.191447) (xy 2.237408 3.204112) (xy 2.27398 3.222864) (xy 2.312453 3.254017) (xy 2.257717 3.323127) (xy 2.223969 3.364979) (xy 2.201053 3.385398) (xy 2.178279 3.388517) (xy 2.144956 3.378472) (xy 2.129314 3.372789) (xy 2.065542 3.364404) (xy 2.00714 3.382378) (xy 1.964264 3.422982) (xy 1.957299 3.435929) (xy 1.949713 3.470224) (xy 1.943859 3.533427) (xy 1.940011 3.62106) (xy 1.938443 3.72864) (xy 1.938421 3.743944) (xy 1.938421 4.010526) (xy 1.754605 4.010526) (xy 1.754605 3.19171) (xy 1.846513 3.19171) (xy 1.899507 3.193094) (xy 1.927115 3.199252) (xy 1.937324 3.213194) (xy 1.938421 3.226344) (xy 1.938421 3.260978) (xy 1.98245 3.226344) (xy 2.032937 3.202716) (xy 2.10076 3.191033) (xy 2.173167 3.191447) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp da1d1405-ab65-4805-ad68-8c6c081f5f27)) (fp_poly (pts (xy 2.391388 1.937645) (xy 2.448865 1.955206) (xy 2.485872 1.977395) (xy 2.497927 1.994942) (xy 2.494609 2.015742) (xy 2.473079 2.048419) (xy 2.454874 2.071562) (xy 2.417344 2.113402) (xy 2.389148 2.131005) (xy 2.365111 2.129856) (xy 2.293808 2.11171) (xy 2.241442 2.112534) (xy 2.198918 2.133098) (xy 2.184642 2.145134) (xy 2.138947 2.187483) (xy 2.138947 2.740526) (xy 1.955131 2.740526) (xy 1.955131 1.938421) (xy 2.047039 1.938421) (xy 2.102219 1.940603) (xy 2.130688 1.948351) (xy 2.138943 1.963468) (xy 2.138947 1.963916) (xy 2.142845 1.979749) (xy 2.160474 1.977684) (xy 2.184901 1.966261) (xy 2.23535 1.945005) (xy 2.276316 1.932216) (xy 2.329028 1.928938) (xy 2.391388 1.937645) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp dea8b7d8-5a3b-4f48-bdf6-9a80143c0003)) (fp_poly (pts (xy 3.558784 1.935554) (xy 3.601574 1.945949) (xy 3.683609 1.984013) (xy 3.753757 2.042149) (xy 3.802305 2.111852) (xy 3.808975 2.127502) (xy 3.818124 2.168496) (xy 3.824529 2.229138) (xy 3.82671 2.29043) (xy 3.82671 2.406316) (xy 3.584407 2.406316) (xy 3.484471 2.406693) (xy 3.414069 2.408987) (xy 3.369313 2.414938) (xy 3.346315 2.426285) (xy 3.341189 2.444771) (xy 3.350048 2.472136) (xy 3.365917 2.504155) (xy 3.410184 2.557592) (xy 3.471699 2.584215) (xy 3.546885 2.583347) (xy 3.632053 2.554371) (xy 3.705659 2.518611) (xy 3.766734 2.566904) (xy 3.82781 2.615197) (xy 3.770351 2.668285) (xy 3.693641 2.718445) (xy 3.599302 2.748688) (xy 3.497827 2.757151) (xy 3.399711 2.741974) (xy 3.383881 2.736824) (xy 3.297647 2.691791) (xy 3.233501 2.624652) (xy 3.190091 2.533405) (xy 3.166064 2.416044) (xy 3.165784 2.413529) (xy 3.163633 2.285627) (xy 3.172329 2.239997) (xy 3.342105 2.239997) (xy 3.357697 2.247013) (xy 3.400029 2.252388) (xy 3.462434 2.255457) (xy 3.501981 2.255921) (xy 3.575728 2.25563) (xy 3.62184 2.253783) (xy 3.6461 2.248912) (xy 3.654294 2.239555) (xy 3.652206 2.224245) (xy 3.650455 2.218322) (xy 3.62056 2.162668) (xy 3.573542 2.117815) (xy 3.532049 2.098105) (xy 3.476926 2.099295) (xy 3.421068 2.123875) (xy 3.374212 2.16457) (xy 3.346094 2.214108) (xy 3.342105 2.239997) (xy 3.172329 2.239997) (xy 3.185074 2.173133) (xy 3.227611 2.078727) (xy 3.288747 2.005088) (xy 3.365985 1.954893) (xy 3.45683 1.930822) (xy 3.558784 1.935554) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp e090ef15-faf0-4129-8b2d-7aef61ce847a)) (fp_poly (pts (xy -1.802982 1.957027) (xy -1.78633 1.964866) (xy -1.728695 2.007086) (xy -1.674195 2.0687) (xy -1.633501 2.136543) (xy -1.621926 2.167734) (xy -1.611366 2.223449) (xy -1.605069 2.290781) (xy -1.604304 2.318585) (xy -1.604211 2.406316) (xy -2.10915 2.406316) (xy -2.098387 2.45227) (xy -2.071967 2.50662) (xy -2.025778 2.553591) (xy -1.970828 2.583848) (xy -1.935811 2.590131) (xy -1.888323 2.582506) (xy -1.831665 2.563383) (xy -1.812418 2.554584) (xy -1.741241 2.519036) (xy -1.680498 2.565367) (xy -1.645448 2.596703) (xy -1.626798 2.622567) (xy -1.625853 2.630158) (xy -1.642515 2.648556) (xy -1.67903 2.676515) (xy -1.712172 2.698327) (xy -1.801607 2.737537) (xy -1.901871 2.755285) (xy -2.001246 2.75067) (xy -2.080461 2.726551) (xy -2.16212 2.674884) (xy -2.220151 2.606856) (xy -2.256454 2.518843) (xy -2.272928 2.407216) (xy -2.274389 2.356138) (xy -2.268543 2.239091) (xy -2.267825 2.235686) (xy -2.100511 2.235686) (xy -2.095903 2.246662) (xy -2.076964 2.252715) (xy -2.037902 2.25531) (xy -1.972923 2.25591) (xy -1.947903 2.255921) (xy -1.871779 2.255014) (xy -1.823504 2.25172) (xy -1.79754 2.245181) (xy -1.788352 2.234537) (xy -1.788027 2.231119) (xy -1.798513 2.203956) (xy -1.824758 2.165903) (xy -1.836041 2.152579) (xy -1.877928 2.114896) (xy -1.921591 2.10008) (xy -1.945115 2.098842) (xy -2.008757 2.114329) (xy -2.062127 2.15593) (xy -2.095981 2.216353) (xy -2.096581 2.218322) (xy -2.100511 2.235686) (xy -2.267825 2.235686) (xy -2.249101 2.146928) (xy -2.214078 2.07319) (xy -2.171244 2.020848) (xy -2.092052 1.964092) (xy -1.99896 1.933762) (xy -1.899945 1.931021) (xy -1.802982 1.957027) ) (layer "F.Cu") (width 0.01) (fill solid) (tstamp eb3dd94f-5032-494c-9000-b327e5febd9d)) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (tedit 58643398) (tstamp c85e71f7-5bfc-49b5-8f40-97fc793fe4f6) (at 162.3 74.5 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (attr smd) (fp_text reference "D34" (at -3.4 2.3 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp b8174b7d-4aca-417f-843f-ceebb84494a7) ) (fp_text value "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5abdc5e7-867a-438a-a13a-d5c47f08d2f0) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9af29a5d-d250-442e-9cd0-707ececdd599) ) (fp_line (start -4.4 -1.65) (end 2.5 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 52a86879-64a4-477f-b523-766323395988)) (fp_line (start -4.4 1.65) (end 2.5 1.65) (layer "F.SilkS") (width 0.12) (tstamp 7b6ff3ee-4400-4aea-85f9-e90a069785b8)) (fp_line (start -4.4 -1.65) (end -4.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp dc919ad1-cee3-42f3-8b37-bef5fea8d0ba)) (fp_line (start 4.5 1.75) (end -4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1497cba2-f8a1-4326-9913-f582cc85b44d)) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 213f9a1e-a421-4b08-b0f0-bbd8f4b2e1cb)) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 65075c65-0961-4ac8-843c-2025a1ce38d9)) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c2394702-3d7d-4ee3-b49e-513c21a8e363)) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 1a21a618-1476-4bc5-bb8a-2c01760ff693)) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 4663c0ec-e916-4e44-b0f2-fd3b987bac28)) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 869c3049-4ae1-4be1-82cc-eec86c3f3d57)) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp a4eb87c0-1cce-43d0-a2fe-6b24d7e104a5)) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp a9683ae4-caa2-4679-a3d4-df5f0babe5db)) (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp aacc28dc-428d-4b28-a0c2-d0a66af25041)) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp c3a94d0d-ee9b-41c0-92a2-a1b005f974c2)) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp c49e5115-0ca3-41ad-bcac-d74b132b1ab6)) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp ccc9ad36-c0dd-4688-ba6c-939894208392)) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp fbaf05a8-3aa7-4bcc-aa58-dd88b8cb1c6b)) (pad "1" smd rect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 97 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "K") (pintype "passive") (tstamp 3aeb4150-b17f-429f-aa7c-00fce27a2112)) (pad "2" smd rect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp e7d914ce-9379-4705-bad7-5972f87a7a3a)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp c8895783-dd17-4230-8ebb-fd0a8720e521) (at 113.25 72.75) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/db58c802-415a-494f-b94f-f7fa5e445d52") (attr exclude_from_pos_files) (fp_text reference "TP7" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 29eed4c3-be4c-401a-b04b-d6e9f9446933) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 476eaa4a-ed52-4462-b575-4ba51373144b) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5fcf3c0c-071f-4170-9783-03c4776cd84c) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ee7bc48e-e311-4550-97a7-65044ce1bef3)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2ff40342-99b6-4b59-8a3b-994d057cc8f3)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 31 "FAN2_PWR") (pinfunction "1") (pintype "passive") (tstamp b44b6383-e1bd-4252-83a4-1f07c8957a11)) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp c8ad63a6-4c52-4182-9d59-39ad3082bcd7) (at 56.4 122.4 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/acf00741-1e6b-4573-832b-01221b598fad") (attr smd) (fp_text reference "R1" (at -2.4125 -0.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6c76cc53-b727-4c90-8bd7-a5070657d272) ) (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 489ecf11-a132-40b9-898c-0c805588153b) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp da593d05-1528-4080-9e37-bd4fd294b1d8) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 49ae8e4b-c184-42ef-8139-f85cbb295d7b)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp cf796324-e3e9-4490-a386-3f650440aca3)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6dc43659-d27a-4618-9894-2aed57848920)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d39c0be4-8187-4185-a9f9-9458708c930d)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e02492ce-6ee4-4572-8708-0cd905dc3e6b)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f96ee8f8-d1e4-4924-9db4-7765fb5148d5)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 04ece547-161e-455c-86b0-2f52b07ca91c)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 85224eb8-42e0-4cc5-a30d-b6ed6d21151a)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9884463c-0787-43cc-a5af-1d6480618ed7)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp da890771-a846-4289-a3df-137b591591c9)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 47 "RESET") (pintype "passive") (tstamp 544e74c4-3ec3-4ef2-9ff1-d18c427a83b2)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 48 "Net-(R1-Pad2)") (pintype "passive") (tstamp d941fe09-bcf0-43a3-b77f-3d18fb820f6f)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp c9fcd7f4-1ee6-4857-82fd-9c21d04b714b) (at 101.8 112.6) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e6e8ae2a-5894-4e68-8264-24e364417d34") (attr smd) (fp_text reference "R14" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 599cca88-87e6-4132-8254-2ef0bbd3c10d) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 09298748-d31e-4599-986f-caa3b45b4a82) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp f05cc04a-65ae-4584-8a19-9f6fce221bd7) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1aaf44df-e6e7-473f-9e9e-4489161077cd)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fdf810ae-38c2-4017-b64c-c44007091c74)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 043a92e9-2d16-40ae-b42e-46779d032e3f)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3b47c5c1-e7d8-4f3f-b956-90e84d5e7268)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b4f2f20f-33cd-4f53-a8a2-90c889a2452f)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b6c6855f-5d4c-403d-b47d-88b1576b510c)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 82f2e0d6-2fda-41d6-9b1f-1d94d4f9cb34)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9cb58f46-f724-447a-977f-c25c4fa3c7c4)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c186f92a-8ee0-4dbe-8a9b-35d528951a39)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp da492421-a211-4983-b0d9-f67dcbbbad16)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN1_PWM_GEN") (pintype "passive") (tstamp 8cb35ca0-0c74-4d06-95fb-e4bf935f5d64)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 41 "/Fan Channels/Fan1/PWM_OUT") (pintype "passive") (tstamp 3f70dd30-7275-40c8-ad09-9a71f60e842f)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (tedit 5FA16958) (tstamp cc28128d-dda5-4a0d-848a-18ff95d24656) (at 140.2 66 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/537d375b-1ca6-4946-95db-66496543d0cb") (attr smd) (fp_text reference "Q3" (at 1 -2.45 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 570e06c8-e282-47ad-a16f-1c101653bcd2) ) (fp_text value "2N7002K" (at 0 2.4 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6ae5519f-a82c-423d-89f5-15a3d808e9b8) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.32 0.32) (thickness 0.05))) (tstamp ae6b057a-8520-4469-8c04-e1544917a44f) ) (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 69dbf79a-0755-4698-b4ab-edc5c3bf8438)) (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 7c78ac6e-4741-4718-9f69-92b018410c98)) (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp b8c3b962-07e0-448f-b262-3034538a3e93)) (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp ff11fd62-fa45-44b4-8ae9-a5104aab9f02)) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8b014bea-020e-4c32-8a2e-afb44e577967)) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp a9881c4d-1698-40b0-8ef8-bcb44452f73f)) (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp b413ae81-6cdf-4dbb-8fe0-87b77f1bd3d0)) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp fe601422-18d3-4f37-bb00-5caa5362248b)) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 32062560-499b-44dc-9b07-a0809ef2ea64)) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 375c7386-b2fa-41e4-9578-da51d4d7b33c)) (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 551a9c77-351f-46d5-a216-b0289f2b7181)) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp abc99c1d-371a-46da-9c0e-ac8fa4c77b83)) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp ea6e2566-2683-41e4-8014-dff521dc4537)) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 100 "Net-(Q3-Pad1)") (pinfunction "G") (pintype "input") (tstamp 6e72ccaa-c091-4330-a23e-92e3f7e9d19d)) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp b1c9b65b-80b5-4113-9a9c-1b6fb2c1c939)) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "/Fan Channels/Fan4/TACHO_OUT") (pinfunction "D") (pintype "passive") (tstamp 201da9bb-18a8-4628-9f72-99fe7bd0fa03)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp cc36d85c-cd5e-42f9-b79c-1544f558218e) (at 124.5 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (attr smd) (fp_text reference "C20" (at 0 1.1 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 38502450-ac8c-4b23-a2b1-c13bff5acf0a) ) (fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 951714d8-db0a-4811-9fe6-c4743028e8a7) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 65df45dc-1de5-4f44-8adb-e5f5bc85f3aa) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b6201593-8e29-40c9-bbb1-6c15465f7676)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp d0d21b65-1c91-4aeb-8292-95bed09c42db)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f566418-02cd-4bd7-abe5-17009e8c2261)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 880570fe-6da2-4a12-860e-9a1946fa2738)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8f1165a3-895e-4dba-9f57-bce74600de7b)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ef85b01d-ab65-450e-a8c7-28af9af5af2e)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 57ea4633-01dd-41ab-b304-7d73325ce385)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 91992e29-ea62-4328-bdd8-d994e7b975d4)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp fc15cf6a-8820-4814-bfa5-672405361ac5)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ff4d3add-78cd-4c48-b5e2-bfcf3e8b5ec7)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 85 "/Fan Channels/Fan3/PWR_OUT") (pintype "passive") (tstamp c14a720d-bfc1-4017-a1d3-4f4e5189aaf1)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp ccbd2320-b922-43e1-8af5-faf814bd9a0d)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp cd44de01-fc19-4ee0-8246-662045ddc021) (at 112.7 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (attr smd) (fp_text reference "C14" (at 0 1.1 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp 409754f5-3c5b-48aa-b225-e39bc7e91ee1) ) (fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0f1aa2ba-244a-416f-854c-c4973794e6c6) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 5a6ed875-37a7-423c-b8c3-64e1dc8fd71a) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 2389267e-b39e-4057-980a-d385ac0cb8f8)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 42cf1b42-7549-445e-bbbe-0f4e6dbca9f0)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2951782d-32c1-4059-b396-7eea912766d0)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 58c34eb1-9a66-4518-acef-921453e9ebac)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6338271c-0992-47d6-89a2-9169ebcfd16f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d313bfeb-aacd-4052-80ef-7d2aeaf4b45a)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 73f16959-1d11-4aef-aab5-4eb500f39196)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp aa5ea8c4-0923-4a1c-a2ac-65f097d2fa88)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cc9d5047-7898-4352-b5e6-9ef7321a19fb)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d9d1c677-e387-4c42-985b-e8fa403e3939)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 42 "/Fan Channels/Fan2/PWR_OUT") (pintype "passive") (tstamp 2b72971e-aa4f-46b1-b5e6-259056377082)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp f7d2f7f0-ce02-4a7c-8f5c-70937b2e5394)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp ce1d4c31-a2d4-4852-849e-0e281377f354) (at 150 75.6 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4e28b459-dd74-4c82-9144-e285ed7f5928") (attr smd) (fp_text reference "R45" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 89e7c424-2927-41ed-9462-887c20f01298) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6f252de8-4e33-4d64-8d6f-88700c27788c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 1e19bf05-b5da-4f98-a090-ff9ce77e27ae) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2d645c45-f9f6-4fe6-be8a-3c78754dd9d2)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fd0bfc2c-c242-4c45-a2ce-a3cfcb0ffc5b)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 07eaf204-1b64-40e2-ac14-6483777f6f08)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd5b91f6-b8ff-4dfe-8838-df5a4239b202)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be61f1ea-ef51-46ab-8e39-8bbf9dc2cda7)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fade96c7-0c0f-4c4d-a287-8f5d4debf57d)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0b47a2df-49cd-4668-b0c4-1fbc36b963fe)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 463ef955-df04-4e3f-a3b0-531d202b4f5e)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 57d2206c-a4ba-4c98-97c6-a583fecd3e2d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 74d268c9-25be-4958-a09c-af7914daec91)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 97 "/Fan Channels/Fan8/PWR_OUT") (pintype "passive") (tstamp 0d86b945-64e9-4651-9ea5-c62eab42eae7)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 112 "Net-(D32-Pad2)") (pintype "passive") (tstamp 7d7c0909-b3f4-402e-a872-2a12bf0901e1)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp cf686d81-9f88-4310-8cca-09c4155d1a81) (at 119.6 72) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/4c581f8a-1242-4d72-8273-f872f4434b5d") (attr smd) (fp_text reference "C12" (at 0 1.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3ce75223-3147-40f3-b47b-f7fa88e08c27) ) (fp_text value "DNF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0ee88c70-b4a6-4a69-8494-c8cddbda5aef) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp c9e56185-f336-4312-a98e-d42d46197976) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp efb33de0-b764-4444-a29e-2b79ab867302)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f364e29b-5711-4bf2-8799-5bbae295994d)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 131591c0-0ebb-44a4-b02e-592ed1debb2d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 280b0630-d0d3-42bc-a3bf-d42ba3faa203)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92427605-f1a6-4b8d-b9ee-1721c0349167)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e1612cdc-ee8b-49c2-9424-f5cbb6a0c53e)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0d0df2ac-f3f7-482e-ba7c-5f666b048a62)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8cb07eef-4e4e-47a5-9a8b-ea7986073b39)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b5f14956-a9e6-4c63-951c-e4703e1cd030)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bcecf866-87db-4f8d-b360-a530337f4827)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "MBFAN2_PWM_READ") (pintype "passive") (tstamp a7e4ce5c-98fb-48d0-9ff3-cdec8a457bcf)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 2570aee6-6e18-4261-b22f-3d8d6a2e1ea5)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp cf7d446e-281f-4012-9e4a-cb3db9bd5a66) (at 86.75 119.325) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/5d5f6209-62e0-449e-9e51-2777855b3905") (attr smd) (fp_text reference "C3" (at 0.8 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e564858b-0806-4df7-8ed7-a3765cdb0824) ) (fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 23b7744a-b631-4386-a2cc-6e4568892ffc) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp abd5ba12-9427-4b85-bbb0-464fd992dda1) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8ac472d0-9374-45e7-8b76-3935c67f2d9d)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp bf0629ea-5413-46d0-8ee3-43d818f568a5)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3519a85b-a533-4e78-8f49-6fbd28d989b9)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 68a382b5-f9fa-4834-8329-6bd05d744d5c)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76070450-f5f8-4e57-aa70-d14c290f321a)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 97665187-6965-40e5-9242-f7bf6a6e6b19)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 62ebd0cf-1be8-4cf1-b208-e727f7b3ac4d)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bb9cceed-52c6-4b67-a282-615e7bde7635)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c98a4ddd-b1d7-4fd3-a15c-a4c3d7a7c4db)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f649727b-7ab3-42a9-9350-3bf9bcef4a69)) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp d3244f10-069d-4890-acf6-e6fe295a49e1)) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 59187718-9010-4667-a7bb-c018d44485ee)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp cffab4f5-85f3-407b-a649-74bb72009e9b) (at 144.5 82.75 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/713f0faf-9b32-443b-b4b5-18ccafb68231") (attr smd) (fp_text reference "R43" (at 0 1.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ba546f3f-9f91-45b7-b7e2-ee37445d0461) ) (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 005f7bba-a8a9-4e07-ad6d-de2e5146ff30) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 3d93a757-86c3-452d-8e7e-e1472380bc48) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4b4e7679-acd2-4382-b146-320233504a7f)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 71b5bf6c-9c51-4eb1-aafa-cdb78154edfa)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 10114497-f494-407b-abed-85fabc05bbd8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 206fa646-d4f1-47db-8708-f40ae9f3e078)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2ce31869-dfa4-442d-b82c-c59ac0baaa21)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6623e3de-2118-4923-8ec4-49e3b68e063a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3f27385f-cbe1-45c9-ac9a-1c2672a2a35d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6ffa4a0b-131d-4bfe-aa83-11979c841713)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 723e582b-e1c6-4601-84c2-ae29b576e53a)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f5606098-a4b5-4eeb-9fa5-f9d99a2e7a01)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 83 "FAN7_TACHO_READ") (pintype "passive") (tstamp 004a02e4-0272-470d-a14e-2fe52fe82593)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp bcd658cb-5289-4019-8d06-04898f56833f)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp d0e7d358-e644-427e-81d4-cce48150d609) (at 143.2 69) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/09870edd-9a18-4370-90d2-0fc6c17d6715") (attr smd) (fp_text reference "R23" (at 0 1.425) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 25b28915-0f61-4ee0-9bfe-07f6764730d0) ) (fp_text value "30k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 770e1af7-abe4-4f50-9e07-aaeeeeda7425) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 00cf998a-a93b-44fd-a69a-31879d451d5c) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6e05b346-f5da-4f41-a6d5-03287b6549d7)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d34392d7-b903-41ee-8143-fd2dbc6722ae)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6f16dd1f-a440-44e3-a3a9-d6e6e989b612)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a159bbc8-e98d-4a07-aafc-139da16063b0)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b6b28ca1-d452-4ec0-bbab-36bb480f06d8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eeb24c1e-dc5a-4295-9184-56f985c5b17b)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 021ed89a-ca5a-454a-8f0d-f9d80781599b)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9c429131-c48d-422f-b3a3-3c1346e015ad)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bae74614-eb55-47d8-82a2-c5df1099d73d)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ebe815b7-18d0-4f85-a3fd-baf51bc8a06b)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "MBFAN4_PWM_READ") (pintype "passive") (tstamp 42064b24-64df-472e-a97a-e7d93fcefcf6)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (tstamp a0b33f7a-cea1-4063-8d59-0eedf64e4a7b)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp d205a3ef-6fc7-4793-884a-a92f50059f45) (at 146.25 105.25 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (attr smd) (fp_text reference "C21" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e82a6e2d-1a74-4e83-87b6-27ce032478fa) ) (fp_text value "1nF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp a062f88f-2948-4763-b6d1-5678e6b9e205) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 09240223-5739-461a-b628-1fdf9b36eb2f) ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 56f7eae0-0597-47f4-93b5-2f63bf3c7b84)) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 59b42903-2dc7-4011-ab5b-d7b81bd233c3)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 07a6c6d8-e1c1-4f8f-af69-dfa81e0f4ba2)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 33f197c7-472d-407b-a7c3-ca5bf645861f)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a7f232f-ace6-406f-b920-9b02082b4d0d)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dd10163f-a041-4080-beea-991cfe918582)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7a34034d-827a-48d2-9ea5-ae8128e3a135)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8090f862-f6f6-4854-a7a7-f2ef12b13e56)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp bfb1d728-5367-4e16-a311-9bc76f3c8670)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f882fe15-e202-4444-a6f6-575412f1c9a6)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 81 "FAN5_TACHO_READ") (pintype "passive") (tstamp 3c44e781-1190-4e9e-8bbc-c825cbc80c09)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 55ffb2eb-e7fb-4caf-be2c-f1ed2f30ec94)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d) (at 150 97.75 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan6") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4e28b459-dd74-4c82-9144-e285ed7f5928") (attr smd) (fp_text reference "R39" (at 0 1.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 85ad4ffc-0ea1-43e4-92d8-353fb427e768) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp dc672fc4-349f-4386-9438-aaaac984aa5b) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 0c3504f3-b1ac-4d16-89e8-22bd078339b8) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0a607643-7cbe-40aa-8963-65165d337d58)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4c2296af-32ad-43f5-a2a0-7acff7a8cb73)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 11e5ad7c-b3cd-4d0a-b629-21b4d9115b6f)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a0a9998-2cda-4da2-9cf5-e90d754bd38f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 45099ef8-b470-4f34-a90e-0a936a6b6d10)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 764e9b26-4057-4449-8217-56505e0f3401)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 605ef108-bf65-4b3c-b035-f1692fd7a098)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8fb20e93-f7b0-4261-985f-c093706f08ba)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c901e045-695f-4c29-83cc-8cb0a4bb27cf)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fbe3d599-804b-4434-a0f7-d1228fca0003)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 93 "/Fan Channels/Fan6/PWR_OUT") (pintype "passive") (tstamp e95bc7e1-afa8-4e79-944d-b78ff54851e4)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 110 "Net-(D26-Pad2)") (pintype "passive") (tstamp 1c14fcf7-7afe-40ba-a136-a2c0456a4f51)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp d406dd68-711f-4eae-8a6f-a94cfb575f8a) (at 136.75 72.775) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/db58c802-415a-494f-b94f-f7fa5e445d52") (attr exclude_from_pos_files) (fp_text reference "TP9" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1a6793bf-3bf7-4fc8-80e7-fb404176ed7b) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 822a3137-0945-44af-94b2-dc88eb228093) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ff84d43f-0216-4307-adc9-41bb69edfef7) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6e8d7653-04ed-4f98-9893-e02d19f07708)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8fef6a6f-6673-4b94-9547-6529b0066368)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 37 "FAN4_PWR") (pinfunction "1") (pintype "passive") (tstamp c44d571b-8e0d-4a5f-9964-cd7b9e425dfd)) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp d477b005-312c-49d6-9daa-9d09f8b1b229) (at 146.25 86.5) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan7") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (attr smd) (fp_text reference "D29" (at 0 1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ac060b34-f677-47ee-900d-de2d436a0594) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f149694e-4336-45f7-8a0b-aed91118ad18) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp cc6a3e5e-2422-44b6-beae-ae2c7fe3db22) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 049cbf95-042a-40dc-a3fc-1ac7942a1668)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 52f557c6-497a-45d3-b9e2-7c54cb5ca23a)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 8cf7d650-0997-40ed-ba86-7eb9a2ea678a)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1a4add92-5742-4fab-af16-ac7b68bda48c)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 43beef6b-84fd-4602-9d39-3c51fadccc5b)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5f72faf8-8342-4403-84e1-1a42e963da2b)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a3320d5c-237c-4cca-a6a9-4a2f9b14c9cd)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 2f670aab-9e89-41fe-876d-bce239efa431)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 382ce14f-0b78-4c2d-9fe1-67023cc607e4)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 96752d91-b1d8-4e14-870e-215a5a87ee0e)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 9f7adb6b-5df9-4d03-b0e6-cbdba04bf2fb)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp d3a2aff2-5f28-4465-9188-48602e8e75cc)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp c780881d-a88b-414a-bb24-96d11e675688)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 111 "Net-(D29-Pad2)") (pinfunction "A") (pintype "passive") (tstamp be777c60-066a-42c5-a3fc-a93a51cb5f92)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Diode_SMD:D_SOT-23_ANK" (layer "F.Cu") (tedit 587CCEF9) (tstamp d698e8ba-f846-4664-9811-56600cef7a13) (at 107.8 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (attr smd) (fp_text reference "D9" (at 0 -2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e494b54b-7300-4f8c-8bb9-32c84d3e63f0) ) (fp_text value "BAT54C" (at 0 2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 31d3bb61-3ab8-4ee5-98f7-19fcbef58004) ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 76585e07-3216-453f-b827-82d9c90a2876) ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 3ac1108e-506a-4c75-b603-f9a6a39785e0)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 79fc1ef9-e921-4832-95d3-5ae7ff6b03fb)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp b4d73ef7-d069-453b-a7bd-227eec81fabc)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp d8f086f0-c0a8-403b-adaf-40c349e5337e)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5ce1aa0c-f98f-4b94-80bd-f188cf4c57de)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 93ca340a-e8ae-4e1b-bdac-fe7f0eea36ae)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9c5eb8ba-0370-4530-b0dd-d326ff9cd796)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ef546906-3f95-4037-a4d5-06936948161a)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp 047ad835-c24f-4b94-8c87-da79f6183cc4)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 1129c821-4221-413a-b124-7cd2b452dee3)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 56debd93-4345-487f-acb9-09e1591e88c2)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (layer "F.Fab") (width 0.1) (tstamp 5a703fbc-431f-40f4-ad99-bbe431b7f329)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp 646cbadb-b1e3-4f3d-b836-1d0a4642fad3)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (layer "F.Fab") (width 0.1) (tstamp 91c9312f-49bd-43e5-9ab5-9233b64d7f4a)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (layer "F.Fab") (width 0.1) (tstamp ab1be128-b506-44db-b353-1b6cf0f1bff8)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp aec76fa7-ca3b-4002-827b-890c008964e6)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b766fba3-ed3c-4f2a-a7b1-a58173e2399a)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (layer "F.Fab") (width 0.1) (tstamp c11800a1-7754-4ac5-a9a8-c6989ec2e1ac)) (pad "" smd rect (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dd792a1f-5f61-4685-b19e-ee5d59c531f5)) (pad "1" smd rect (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "K") (pintype "passive") (tstamp 69428fcf-c4b7-4246-91ed-cfe5d045b05f)) (pad "2" smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 6 "FAN1_TACHO_READ") (pinfunction "A") (pintype "passive") (tstamp 1344c258-0a0e-4ec4-be37-1204c6a78d6a)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp da052ba6-8510-4f5d-804b-cb987f9a5bcb) (at 96.4125 63.45 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/c9077187-c2d5-4e2d-80b4-68e896790b6b") (attr smd) (fp_text reference "R53" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4a03bb6a-8f1c-49c0-bcaa-7423f2c3c81c) ) (fp_text value "100k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e34d2bd7-e7e8-41dc-876c-574ea027c2f1) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 0e42745f-4e15-426d-90ed-7e15f7bf4dcb) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0169c51d-a64d-4c21-8122-4c6a2fb8b4ab)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 975a34ad-0fd8-419d-a30f-80ad0daa822f)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 16de7c31-9166-4dae-8b30-8857c26eaac6)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af1abf47-004a-402c-b9c8-5f817c60bcb8)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b30576ae-4749-4bd1-bb89-c80a8ac9e429)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e7dedd19-7bbb-41bb-8fd0-dcf26a5a1a41)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 08ee3c17-b52a-4b4f-baa3-2e199fbbec35)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 164ae176-a4a9-45be-b6a8-0af5d106b55f)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 19f394fb-abe6-4285-8a1a-28d2c748fc91)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9a5f4db9-ab1f-48e4-821b-aba66949bd51)) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 115 "TEMP2_READ") (pintype "passive") (tstamp e7e54638-ed03-4a63-8047-5e7209e0596f)) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 119 "Net-(JP11-Pad3)") (pintype "passive") (tstamp 7dfaffe2-953d-44ca-b3ef-6c45800e706e)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") (tedit 5D9F72B1) (tstamp da760ace-b0ff-47e6-aaac-39646b7c0bf4) (at 75 126.25) (descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/66392125-6956-4edb-8ca8-2997bbab50ec") (attr smd) (fp_text reference "U2" (at -2.5 -5.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 24044c59-3d4e-4f05-a499-5ca759acc8e7) ) (fp_text value "SN74AHCT125QDRQ1" (at 0 5.28) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e5a089a7-eb26-4b08-b0d8-35f689ba378a) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.98 0.98) (thickness 0.15))) (tstamp b1262068-79e4-4942-9ff5-548b4224d731) ) (fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 65432634-8f72-43db-b11b-80093fc58a6a)) (fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp 693619a2-44b9-491a-9f3c-6d8bade0d2cd)) (fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 7f5fd493-a9dc-4a26-bbb3-ad7bd40fba23)) (fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp fe9bfb1c-6266-4820-8b92-220f64591be2)) (fp_line (start -3.7 4.58) (end 3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp 50a61008-9cb6-4a4d-b105-342c2a6e395a)) (fp_line (start 3.7 4.58) (end 3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp 9fb62bb9-4e11-4a81-988d-93dcf0be8c17)) (fp_line (start 3.7 -4.58) (end -3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp ccdd1ad9-f8ed-4e12-9d9d-2178336d37c4)) (fp_line (start -3.7 -4.58) (end -3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp f14eb9b9-473d-4192-aee1-8b2b9918b9be)) (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp 297aa0f6-8a0d-4cb0-946e-52cc965c91ab)) (fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp 951590b1-fb66-45dc-ac84-8d16dfcf1235)) (fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp 9f1c7b1e-3d2a-4423-901a-f48daea0dd60)) (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp a94106e0-7dbb-451d-8814-75d1fc8aa013)) (fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp f76cee12-7d82-41e1-aa3e-4ee4e45bf6b2)) (pad "1" smd roundrect (at -2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{1OE}") (pintype "input") (tstamp 3d498543-aaad-48f6-bd1b-fa1dd8f68b00)) (pad "2" smd roundrect (at -2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 58 "/PWM4A") (pinfunction "1A") (pintype "input") (tstamp 71cfbefe-4d68-42c8-bfbd-9ab88b7db964)) (pad "3" smd roundrect (at -2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "FAN5_PWM_GEN") (pinfunction "1Y") (pintype "output") (tstamp a107ce38-86e4-495a-a21e-f32c0236ae08)) (pad "4" smd roundrect (at -2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{2OE}") (pintype "input") (tstamp d6212b67-92fe-44a0-babd-7efeb612f70a)) (pad "5" smd roundrect (at -2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 60 "/PWM4B") (pinfunction "2A") (pintype "input") (tstamp b91f92d9-eece-45e9-97e1-91305affdb35)) (pad "6" smd roundrect (at -2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "FAN6_PWM_GEN") (pinfunction "2Y") (pintype "output") (tstamp e076ba63-d3f8-4009-aa46-bf1f84f4a09c)) (pad "7" smd roundrect (at -2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f1ca81d9-ea63-4210-b299-a6c2a11c69c6)) (pad "8" smd roundrect (at 2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "FAN7_PWM_GEN") (pinfunction "3Y") (pintype "output") (tstamp 75f7b4c4-5ef4-4ae9-8ee0-d80b2759f1cd)) (pad "9" smd roundrect (at 2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "/PWM5A") (pinfunction "3A") (pintype "input") (tstamp b0c44df4-8546-4a60-b471-31c4ac8d2414)) (pad "10" smd roundrect (at 2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{3OE}") (pintype "input") (tstamp 498dfeaa-dc39-4b53-b85e-1f10a2b98c5b)) (pad "11" smd roundrect (at 2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "FAN8_PWM_GEN") (pinfunction "4Y") (pintype "output") (tstamp 199a9886-0cb8-4225-8bd0-539e0a639f56)) (pad "12" smd roundrect (at 2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 65 "/PWM5B") (pinfunction "4A") (pintype "input") (tstamp 597848f5-7df2-4cf2-ab54-aea6c747b2f5)) (pad "13" smd roundrect (at 2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{4OE}") (pintype "input") (tstamp e2890ab2-1e25-4df3-8b3e-7f665e04a5c5)) (pad "14" smd roundrect (at 2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 3055d43b-07c8-4705-873f-2885a0a28477)) (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp db88ec96-ede5-4e8a-8ed4-226875331dce) (at 135.4 112.8) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e6e8ae2a-5894-4e68-8264-24e364417d34") (attr smd) (fp_text reference "R28" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4d15044e-ba42-49c7-9385-a61cb67a80bd) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp fd5db3fb-29e0-426e-979e-91cf7fa6af6a) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 40440c3a-78b1-41ee-9ba0-84f9716dffc0) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 816f2134-debb-4a16-a562-2231dc5c7a98)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dd718582-fe3d-466c-b539-4fd2ee4cec5b)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 06c6c6b8-7c26-43d3-afcb-b56a6ccb6f4d)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 433391fc-e6f5-4064-b65f-ff89a4ee71ab)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 472e94c0-a898-4fa7-9e12-6667bf6d7653)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dd47cbe3-ce37-4721-a15f-85bb741a8695)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 65aa075e-0a90-4483-be44-20b32e6afd08)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8d16786c-5319-478d-aaa0-2b1265cd99b9)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ba230946-da30-4214-9869-1b25f9030225)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c6e87fd8-3786-4afc-bdfd-4fa8d3e76ad7)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "FAN4_PWM_GEN") (pintype "passive") (tstamp b6f0eb07-7559-4374-8da4-b06e37c90bed)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 90 "/Fan Channels/Fan4/PWM_OUT") (pintype "passive") (tstamp f444c869-826a-412a-8ee2-ace2cfb0d9f5)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (tedit 56DDBCCA) (tstamp dd84530f-c5fe-45e5-8faf-e2719fcb14cd) (at 42.5 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/63465697-0038-4a5a-931e-e383d18d8993") (zone_connect 2) (attr exclude_from_pos_files) (fp_text reference "H3" (at 0 -4.2) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 173c0ec0-a585-41ac-b74a-281413a04c6b) ) (fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp cf2b32de-2b9d-4f88-bf8d-de5c55282622) ) (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3a86913b-d325-469d-99bf-10362833b6d6) ) (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 99921c9c-f70f-424f-91b9-ff64e00621a6)) (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e1e708ba-caba-4519-94a2-17f6e949ea23)) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 20d20a6c-03cf-4a4c-8a77-7b10171706e4)) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 3c27dc86-1701-4cfb-9ebf-f044da440656)) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 46088382-79ac-4353-aa89-fc04c12ff305)) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 6dc2201e-16f3-4f96-8313-5f06f3f5c55a)) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 703f336d-49ef-4e14-8ab0-abbb7a306402)) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 7ed990c4-589c-4cbf-bb60-54f487a656d0)) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 95b30749-aec6-48f0-8358-fd329add7197)) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 9a9a81d4-4b02-4e51-b077-4c33c37c3f03)) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "1") (pintype "input") (tstamp ef7e2720-82b6-4019-98b0-a817c76185f2)) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp e52b82df-9c78-4427-aff0-111199235a03) (at 58.75 85.075) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/00d03321-5580-4405-8c0a-820cab392953") (attr smd) (fp_text reference "R49" (at 0 1.425) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e5f41159-2bff-44c2-af46-7ef1588347c3) ) (fp_text value "0" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3c8ed3f4-df00-4045-95ee-06a038f27407) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 2908f2a3-40a2-4e7f-8b7c-6064079be2eb) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7321fc1d-4bf4-4722-b771-3dea58908c97)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ac2d7347-d054-4357-a487-948836c4b634)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a5e66907-97f6-494a-ba96-62895ca062a8)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e6c797e2-4525-42fb-9390-6d59d43cce2e)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec8d835a-bf1e-4035-be04-91802453a8e4)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ee48b3ea-2ea0-4031-bbe2-e3ad11d1f998)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 37bf1faf-f401-4482-8db7-b8ef61ebd827)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4aaedbc0-abfa-42c6-b471-b58d849b7ce8)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9c050cb2-33aa-4c20-9e55-adbf0da0e58a)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp af6362bd-a115-4797-b73c-2e4a7ef5010f)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "AGND") (pintype "passive") (tstamp 4928bef9-7e3f-4bd4-8e9a-319f23ca5dc8)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp 00317f5a-ceb8-4ac6-9be9-c38f0c5a6b2e)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp e69c376f-0145-4dad-8d57-6f88c3b8a73e) (at 113 112.6) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan2") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e6e8ae2a-5894-4e68-8264-24e364417d34") (attr smd) (fp_text reference "R21" (at 0 -1.43) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp d03f6f61-ed73-4f7c-8848-216b7f82d2ad) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 72f5e010-4835-4344-b761-78f2b6a212d3) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp b1bbf5fc-248f-4f6e-a178-1cd932e30d02) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 450796ed-160e-4912-8510-5adfc8f1a2f5)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 46cb0465-6dd3-4c9e-ae0a-84609ba2c54d)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4f6e295a-eda9-488f-8a54-b432f357af54)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86988a1c-729e-41fc-a1af-45f141dca1b0)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9cf37ab0-58d2-419a-9c76-4836af0b31df)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ddda9606-d189-4869-b7a6-55c634b10f22)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 05fcc646-19bb-458a-9647-ad4fbbd2ae77)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 084f3920-ec06-49e3-a9ee-bf3aa2d0a318)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e09ecda-a7cd-48ae-a70f-dfdc479e3e2a)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 92fe29d8-c5ff-43fc-bf1a-8ccec26af661)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "FAN2_PWM_GEN") (pintype "passive") (tstamp 74254b0d-bf22-4322-a8ea-3d3b8c1cfa57)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 43 "/Fan Channels/Fan2/PWM_OUT") (pintype "passive") (tstamp 6911136d-fdd3-47b3-b66b-8d24bb74a91c)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 5A19DE55) (tstamp e7b9820c-ebd4-46c0-8732-cafc559c4fbc) (at 135 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/478255ce-6495-40e3-8f35-65ed429a01a4") (attr through_hole) (fp_text reference "J11" (at 7.25 2.25) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 877182c1-f7de-4075-b871-3852bba4d685) ) (fp_text value "Fan4 Output" (at 4.05 7.1) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0c23fd3c-8e92-44f9-9905-f0d6b673c1e2) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 0661954e-f25b-4f99-a409-ca063613e2b5) ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 1e7a3df3-1564-4fca-a73a-2e1c26f2240d)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 20f8741b-5a66-456e-a4d1-e6dbaeead04f)) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 52949d6c-3d13-4c3f-aaae-0190262c1362)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp 5ed93df5-0550-4f68-8138-6b58ec386db8)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 6319e6b6-80ef-4c5d-932b-ba0c8406594e)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp 6a72c50c-7d61-40e1-9db3-e13eee38f0d7)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp 8c0d65e1-4a4d-4982-a3de-a94643ed355b)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp b36fe0b5-bec7-4179-a8f9-f7d791244aaa)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 15f50029-307a-4d8a-9c26-89866c277ac0)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 611e7c21-be02-4a2c-b017-7fcdbe00c6cf)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 7778230f-f910-4a2e-99e2-9b1e861be1ad)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp c3d693bb-8b79-4c4c-8f6d-fcf59053a0c7)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 3525d7fb-9fbb-407a-b98f-dbe710a5769f)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp 5569ffb9-3194-4ed5-a115-e717546fbbd5)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 647b068d-34c1-40f5-9c02-6c8ac4e4e7e4)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 791865d8-d8e2-4bb4-a45d-5c1ab6b1ca50)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 8e4b66b5-f3f7-4bd7-a29a-8afd9eeaaeda)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 9462ae22-4e7f-462a-824e-86cf308ddca1)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp a77a459c-1f1d-4583-b823-a54a1c799c78)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp cdd161f0-22d1-4053-9a0b-ffab3a54d82f)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp e33b88e6-21b7-46e6-ba61-2812267872a7)) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 54d0cebf-ca14-4db0-9910-22941bc45a98)) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 01f18b55-48d6-4a40-88ea-e5978dc6c964)) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 89 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 1f29d2e6-7cd1-4d55-a840-cbd748f8e68f)) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 18 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp 158550de-1466-4574-adf7-871a4f192a4e)) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 90 "/Fan Channels/Fan4/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 3e308dc9-2a7e-453c-9c0d-ed6716a1e4ef)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp e9b3c7ab-9a7d-41ab-b41f-c521c2f31bd3) (at 124.75 67.975 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e14cb179-4962-4028-9c28-4efc70e0b4c6") (attr smd) (fp_text reference "D19" (at -0.275 -1.65 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e10569ca-2487-43d7-a8dd-e670b1d7b741) ) (fp_text value "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp afadc09f-0628-42ff-b630-9cf4ae0a8b3f) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp 6551c37f-9afc-4b25-9b2a-c1739b8edf17) ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 074bd178-4b8d-4443-a5fb-cfcbc87a942c)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 5a8a64e8-0b04-48e4-b608-5cc887a127c8)) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp ce87f310-f0ba-406a-b736-4ce38509611a)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4bcce46c-d9ae-4ab2-a9c8-5cc8f50b0e43)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5c9a0412-4fb3-44e0-8564-dd1f1d19974f)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 616d2ae0-660e-4201-aead-18acef1aaa51)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp de4ed296-9fb5-4bc2-9de6-dd78d5bf94a9)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 39349f81-a647-4568-a49b-eb371290ec0d)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 735ca608-844b-43da-824c-192e28c319d3)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp b7bb8bee-8b45-4682-ba4f-3c97e6c96b19)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp c99db9f3-3b5c-42fb-950a-bd5c7323cae5)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp e9516375-9cac-4899-a9f9-afd4f657871e)) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 414c44f1-6dc8-47ac-8734-d071cba6d2ba)) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 24 "Net-(D19-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 3a95a55b-8a78-4e07-8313-782b4be21acd)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEF) (tstamp ebec4df3-120d-4b89-9b64-701338ca1c5f) (at 136 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (attr smd) (fp_text reference "C17" (at 0 1.1 90) (layer "F.SilkS") (effects (font (size 0.75 0.75) (thickness 0.15))) (tstamp a2954cfb-cb2d-4d62-b239-4aa450571dc7) ) (fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8f5de037-3649-491e-a26f-8c5b3404ce1c) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 6915b7be-3044-4468-a095-46be65387fa1) ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 97840e50-0de6-4293-aa6c-fecebdb4674f)) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp f0778c52-df92-430c-9e96-32d5e820037e)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 026b5e5e-0d63-4d7f-906d-f04bb500b7a4)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2b9b2e7f-3c1b-4b4f-933c-ef542449cc8f)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 49b6f3e3-4adc-40f1-a158-300eb761747a)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaae8e80-1c0b-4df7-ba09-a6ceba6dd88b)) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 57759e25-223e-4268-a318-8fb0dea5da52)) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 71a9282f-05f7-4f69-b9bb-65f74557021c)) (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 82c7e86c-49e5-4dec-937d-a3ddb7405717)) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c8da2a46-7a99-42c9-9352-0dc94d13e252)) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 89 "/Fan Channels/Fan4/PWR_OUT") (pintype "passive") (tstamp 40b5586b-8843-4133-934f-e84e0d665373)) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (tstamp d3d6a59c-d0b7-4ffc-8b7d-ce317deb4ebb)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp ede4fe08-9f98-400f-94ec-0296c9debddf) (at 77.3625 59.5 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "sensors.kicad_sch") (property "Sheetname" "Sensors") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f421aed5-1a7c-4cf7-87bd-ce21946df0ca") (attr smd) (fp_text reference "R52" (at 0 -1.55 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ae517775-bb62-452e-b7a8-10de99cf5a49) ) (fp_text value "100k" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3094429a-5c6a-4eff-9ea7-03c42fa74155) ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 95c2566d-f22c-44be-978d-e09c49e845e5) ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 046671b0-e844-4d19-9f53-3610e2d8fad0)) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 47feb778-a4ab-44cc-92c0-8a0a0aae3ea7)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0c786dc4-52ad-4ed5-b03f-2d6847d65a45)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 18e6ec0a-02e2-4f57-8016-1e16241176e1)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a2295c3d-bb61-4bbe-8102-37f52ae8d7d6)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a2ed0c81-f7ae-4dd3-9c21-333f3558a26c)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5f06a46a-fcfc-42e1-9ee4-bd51e7649044)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7816e58c-df5c-4478-a780-33cfa46d1a5a)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b3c84763-632a-49c6-99d2-b7003fde705d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d21db547-4691-4e12-8651-dce09e3b2262)) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 114 "TEMP1_READ") (pintype "passive") (tstamp 5e59860e-dc82-446f-b816-eff178716948)) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 117 "Net-(JP10-Pad3)") (pintype "passive") (tstamp b56ddc55-6815-418f-a69a-c4d3283ac496)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu") (tedit 5A0F774F) (tstamp f4754782-62c2-4401-a3d8-54fc79282fcd) (at 124.75 72.775) (descr "SMD pad as test Point, diameter 1.5mm") (tags "test point SMD pad") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan3") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/db58c802-415a-494f-b94f-f7fa5e445d52") (attr exclude_from_pos_files) (fp_text reference "TP8" (at 0 -1.648) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 036e1b21-4500-4bd7-ab17-a9c0227141f2) ) (fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d139c7b8-9c04-49fa-94eb-0de19c771c6e) ) (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 81637dae-2d52-44c0-92c6-0444d4ffad0a) ) (fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2daea6e8-d9e2-451f-8776-280fd5701eed)) (fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ec13a473-0ba1-4535-a8fa-eb29cc6e7e2e)) (pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask") (net 34 "FAN3_PWR") (pinfunction "1") (pintype "passive") (tstamp 8408e1b5-8e6b-4369-8930-775271e91824)) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (tedit 5F68FEF1) (tstamp f8a44a9a-da73-4156-bb86-1da0e2ac4330) (at 146.25 109) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan5") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (attr smd) (fp_text reference "D23" (at 0 1.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 28fad468-16c1-495b-a9b8-03671489953a) ) (fp_text value "LED 0805 (green)" (at 0 1.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 176991c5-eef2-490b-a3a2-c63f70c1b762) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) (tstamp a6345e1e-3122-449b-95d2-36f2643fb1aa) ) (fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 3fcf52ed-116d-4c30-b924-45182f2e4435)) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp d312a4d8-3900-420d-83df-acf2d1616827)) (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp ea4e4e6a-929c-474e-821a-a752170b4f9c)) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 069233a4-10e9-4ab0-93ae-dd50bb113bf6)) (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 36fe93c2-af62-4a4b-9468-8717b77d7462)) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3d33aeba-5fad-431d-9fc6-10af2aa4505a)) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 80f86dbb-173a-407f-b1a5-5b28f6434658)) (fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 1b2cb8f7-8af3-444a-a537-e59bc9bc19b4)) (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 7e9a1be5-219f-4a33-9196-b331202ab340)) (fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 8d5df1fc-5823-451d-82cf-c63d48b6fd73)) (fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp aa1d3239-81d4-4212-8a56-e966a88e3268)) (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp dd7ae9c7-e47d-4f28-b899-d6d6d37bcbaf)) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 09f00905-8f05-42b4-a7fe-d9d187795276)) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043) (net 109 "Net-(D23-Pad2)") (pinfunction "A") (pintype "passive") (tstamp fb039884-3e73-4397-80ae-d0e816d49104)) (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp f9e0bea6-50ed-4b88-8560-81986c691846) (at 135.2 64.8 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan4") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ba9485af-39b4-4a7f-afda-f544d55bea86") (attr smd) (fp_text reference "R24" (at 0.6 -1.45) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ef2be787-d7f6-4c7f-890f-118a5221e338) ) (fp_text value "49.9k" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d23564cb-4d8d-44b3-8478-8e0f9b845998) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp 06114002-5a85-4c69-99bb-78375bc85542) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 400d7571-a8ac-4b7e-92d6-e056d5d66742)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp be41e023-52b9-48e7-a71c-a21683b86136)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a098971-8170-4313-af7d-cc4b35a48563)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9b821643-0a09-4ed0-af40-76467a90d5d5)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cd7f2d4b-e6d5-40ed-b030-1bb6d0276c1c)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d585f400-fdc2-490a-bdcb-33cc0ea85473)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8aa3e84c-b0b1-49e2-90db-e20ce910aaf1)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 92180a56-bc8d-4a49-8fe4-c3dc9309f11b)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9a60e026-3ad5-4657-8f64-3e4fe5354316)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c816de12-445c-4fed-ae1c-cdcaa29b5ddb)) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 37 "FAN4_PWR") (pintype "passive") (tstamp 96c939f1-8bd3-4b56-a455-e4a3070db0ac)) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 19 "Net-(D15-Pad2)") (pintype "passive") (tstamp bd22fd72-79ac-4c5e-9c7a-77600aab605d)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp fa029060-e57f-4aa6-a571-1f23e687032b) (at 107 119.8 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "fan_channel.kicad_sch") (property "Sheetname" "Fan1") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0afb5c6-54db-4986-8460-a37daf921ef8") (attr through_hole) (fp_text reference "JP2" (at 0 -2.33 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 09cf0645-d8e1-425c-a1b1-50dc308b5fe2) ) (fp_text value "Fan Power" (at 0 7.41 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c8c01ccd-b5d2-48a3-9337-31437bc0d5b2) ) (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1c32e674-b900-4cad-b800-47a5c2453658) ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 17c56aac-1c19-441e-ad0e-d5f91eeedcde)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 35ed081c-163b-4979-90e3-f6e508b6c0fd)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b4ac9ced-c2e0-4836-a46e-6affbff21678)) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp c912059d-5f7c-4079-af03-81ed94feabdd)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d665b41c-c6f8-4a45-8ffb-b5dec65a09a3)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp f4e3ae44-ee6a-42c9-9480-36f259d3a69a)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 00b32290-b6a3-4fed-82ff-3034599f39a3)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 81049ca2-49e7-44ea-98ba-da99c1259c4b)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 817cea77-3614-46eb-ac46-8f839c322ae1)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp db3f768b-4ec7-4178-b70b-b4b036c84502)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0fa0e183-23fd-4787-b228-f9207d787009)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 340170db-45d6-4c78-9448-445128dd4314)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ac6f6ed4-8668-453c-b29a-e5d6005ea361)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp f1960b60-73de-4c92-b6c5-7fa1993f2c9c)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp f95acf52-40ba-412b-9d45-8c2880174473)) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 28 "FAN1_PWR") (pinfunction "A") (pintype "passive") (tstamp a5bd6a24-c5c1-4715-81cc-bb0140eee476)) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 40 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "C") (pintype "passive") (tstamp 8c7bd4ce-3cc3-4104-be74-26d37631d034)) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 "AUX12V") (pinfunction "B") (pintype "passive") (tstamp 5e913aea-9f40-4ef2-954f-5459dfa8324f)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (tedit 5EBA9318) (tstamp fa36be4e-7de9-478f-a4ef-c229ac16c103) (at 77.3125 78.43125 -90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Sheetfile" "power.kicad_sch") (property "Sheetname" "Power Rails") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/27625c54-6268-4c25-bed4-fca1fa7ca75b") (attr smd) (fp_text reference "C8" (at 0 -1.75 -90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8746ca93-4dfc-44fa-a2a1-b7c1fb1589d1) ) (fp_text value "10uF 16V" (at 0 1.75 -90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 24ce5798-6b46-4a28-aa06-665da4a4441c) ) (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") (effects (font (size 0.8 0.8) (thickness 0.12))) (tstamp 13a9a633-e2c5-4877-8044-210341b44c24) ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp 0a0a39b2-000a-435d-9517-ac1d512f3c39)) (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp 48d9a849-a7e1-4b05-ad19-d6e0f1f67182)) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp eafc3ba8-db28-4df4-9cd9-d73af0c47c8a)) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 65c1fb7e-0a32-4c28-bd72-9b3595cf4100)) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7157375c-0abb-44d5-9fa1-d6b53b2e633b)) (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 97e28077-f620-4659-a5dd-8831e4c05684)) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f6e3263d-51ef-40d0-9a9a-d552ab6cfefe)) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4b7d3221-d28d-4d4a-9eb5-aa595ac52a26)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4be796b4-3b8c-41ca-a555-d044a8951212)) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 63469a9e-4cef-4b4f-8c06-de64f949de13)) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp a1574fc9-09e8-43cd-9260-f186aea02a7b)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp c5a3d7e8-0c48-4160-bc0a-c00f2ddb5632)) (pad "1" smd roundrect (at -1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 103 "Net-(C8-Pad1)") (pintype "passive") (tstamp 932d6dc4-3da5-4d68-9b66-25be488c989b)) (pad "2" smd roundrect (at 1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852) (net 2 "GND") (pintype "passive") (tstamp 9dcd1b47-13cb-4514-8299-b82cfd6002d5)) (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (tedit 59FED5CC) (tstamp fa6267a2-77b5-42f5-98c6-40bbae0f2c13) (at 93.5 94.225) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (path "/c4e2a9d9-a6f9-43d1-bed9-e44c798b38ba") (attr through_hole) (fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4b680c6f-6bf5-42bc-954e-399a8095278c) ) (fp_text value "Pico Debug" (at 0 7.41) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4274c955-0ff2-4ffd-b308-32c7740d7229) ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 022b0300-c8f8-48b2-9d2c-ae80ff824354) ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0d587a0a-c67c-4fed-9eec-791a57f2bb2e)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 340a1653-d3fe-441a-a00c-6fadb8816e05)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3ada789a-8253-4c52-ac20-d30b9efe4f49)) (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 999751fc-78d3-4f80-b9fe-ca01ec165983)) (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp a4ccff6b-8aca-4df0-a4d8-195b1f165632)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f5879ab2-b938-41a3-ab1b-ec5c0551f7a8)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 135e3642-358a-4af8-829a-e9d8d5db6f15)) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 378e526d-5a27-490c-9809-30a858151ca1)) (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 5341f75f-445e-45d6-8d7c-693459db4b8f)) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp fc065095-462f-46ee-8772-8e3d563d5f93)) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 398ac0ce-a6d7-46e9-b0d2-f38a583f93bc)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 46331abf-ef2b-44f7-8e7b-2addf2a04973)) (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp d26c0188-a8c0-40f8-947a-e0efe65dd5bd)) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp dc50a505-bdbb-49e4-a166-7ad91ea76a60)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ee2b5b55-18f1-44b0-8eb7-645cdcfe2722)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 26 "/SWDIO") (pinfunction "Pin_1") (pintype "passive") (tstamp 57e60628-6d13-49e5-8e0f-1cf31bada668)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 711e8266-1663-4d18-8cd6-839cb071c47e)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 27 "/SWCLK") (pinfunction "Pin_3") (pintype "passive") (tstamp 40ca69cc-5122-41ab-a4ee-b5af8c1d68be)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tedit 61EDCEF3) (tstamp fb527929-5a76-4386-92c7-ed3f3a2f2a66) (at 100.3 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Sheetfile" "fan_channels.kicad_sch") (property "Sheetname" "Fan Channels") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/085195bd-ef5f-4321-aa3d-5891d4b1a1f2") (attr through_hole) (fp_text reference "J8" (at 7.55 2.3) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f63f3c64-d980-4ae0-b129-a351881a850f) ) (fp_text value "Fan1 Output" (at 4.05 7.1) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 19947266-d718-4a7e-8ce7-a9e04db709cf) ) (fp_text user "${REFERENCE}" (at 1.85 -1.75) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8778d1c5-07c3-4374-9b2c-eb48d2f32042) ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 06fcb724-535c-414c-9bd9-2c4253d1061a)) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (layer "F.SilkS") (width 0.12) (tstamp 1f612e70-0c34-4c1b-9a81-56417c9c8822)) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (layer "F.SilkS") (width 0.12) (tstamp 3c2b8904-a734-4a85-a82f-6473c641e8e2)) (fp_line (start 8.95 3.4) (end -1.35 3.4) (layer "F.SilkS") (width 0.12) (tstamp 5310e544-c28f-4fe1-8665-5377bc79757f)) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 77aa92e7-fbdc-48fb-aa69-35a8ea21ae59)) (fp_line (start 5.08 2.29) (end 5.08 3.3) (layer "F.SilkS") (width 0.12) (tstamp a43a3659-882e-4070-9e47-a5404e6e1e6a)) (fp_line (start 0 3.3) (end 0 2.29) (layer "F.SilkS") (width 0.12) (tstamp be982124-ae0b-4add-a6d8-2344db80a9aa)) (fp_line (start 0 2.29) (end 5.08 2.29) (layer "F.SilkS") (width 0.12) (tstamp eb420a5f-fed2-401e-af84-af7a622b2a76)) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 169ff030-0e51-4ebc-85c7-e586ef119eec)) (fp_line (start -1.75 3.8) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp 175390ca-dcdb-4f63-8291-35ba8b07b140)) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 55e5b7d2-eb43-4f5b-9f89-b1eff1e119d9)) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (layer "F.CrtYd") (width 0.05) (tstamp f50dd647-c734-445d-8b14-8c68d6377091)) (fp_line (start 8.85 3.3) (end -1.2 3.3) (layer "F.Fab") (width 0.1) (tstamp 02d9daae-b6cd-4a84-8ffb-baec648fb565)) (fp_line (start 5.1 2.3) (end 0 2.3) (layer "F.Fab") (width 0.1) (tstamp 1200673d-b2ca-414e-bac3-885bbdf7d3d1)) (fp_line (start -1.2 3.3) (end -1.25 3.3) (layer "F.Fab") (width 0.1) (tstamp 2bb33282-4f9f-4778-8fe0-6f53edcd3452)) (fp_line (start 0 2.3) (end 0 3.3) (layer "F.Fab") (width 0.1) (tstamp 8dbd1a68-f406-4c7f-8b06-9547e6122f38)) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (layer "F.Fab") (width 0.1) (tstamp 946ab5b8-e96e-4804-a78e-a4b89c867544)) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (layer "F.Fab") (width 0.1) (tstamp b0417074-2887-4d2d-b55d-004cff435a65)) (fp_line (start 5.1 3.3) (end 5.1 2.3) (layer "F.Fab") (width 0.1) (tstamp b3ed612d-4b95-418f-bfae-ed954c910011)) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp d4d7af4a-bdba-41a7-93c2-da79d93aaec5)) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (layer "F.Fab") (width 0.1) (tstamp d5f0102a-ccd2-481d-aac9-a500663069d8)) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp c806ca64-4076-499b-9029-155759542c55)) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 95ceb3ed-a7d7-4f46-a5b5-e573dd4a910f)) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 40 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 2c11cd86-c17d-4d8f-89a3-4b809d7b5b0d)) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 13 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (tstamp b68c71cf-bc60-42db-9be0-09ce7c79f3ac)) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers *.Cu *.Mask) (net 41 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 8781291e-cbb2-406c-8d33-4c9ef34481d5)) (model "${KICAD6_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (tedit 5F68FEEE) (tstamp ffa3077b-4b8f-4457-b85f-2611ac6fe647) (at 150 77.4) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (attr smd) (fp_text reference "R47" (at 0 1.6) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 8a50b5f7-d609-409d-947b-39530ce2e158) ) (fp_text value "680" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 636b6990-8277-4c2a-98f1-ac38d762ce7f) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp d6846ea7-7fd6-41fd-b190-936bea2a4eb0) ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7f7703d5-e789-4ab7-a485-ccdff65948bf)) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c2abb88c-aba0-4079-831a-8856a9968f8e)) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 51e081dd-14da-453b-ad0a-f912cce13100)) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9486eaf1-02fa-4cbc-9ed7-eb03d1bc9760)) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a562bf8a-bb22-4059-bc6c-2f407e692f21)) (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce8a405e-63bd-4622-b309-87d904dba135)) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 191d745f-09ac-41b7-84e9-9c35abccd72d)) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5f37d1c5-2973-42d6-8e87-1c596d447096)) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ac284b14-05ec-4e61-b8f3-fbc0418a37e4)) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f4cf14d6-a305-4ad5-aaf1-abdbcac9663e)) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "FAN8_PWM_GEN") (pintype "passive") (tstamp b7f80015-e90a-4fbe-b601-45518e1720d7)) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 98 "/Fan Channels/Fan8/PWM_OUT") (pintype "passive") (tstamp 01338850-e9ed-4272-b85d-8d56e9298864)) (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Symbol:KiCad-Logo2_6mm_Copper" (layer "B.Cu") (tedit 0) (tstamp 29720caa-0132-48e4-8cc6-b9cbc4f8cab7) (at 162.5 121 180) (descr "KiCad Logo") (tags "Logo KiCad") (attr exclude_from_pos_files exclude_from_bom) (fp_text reference "REF**" (at 0 5.08) (layer "B.SilkS") hide (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) (tstamp 04f71f88-c408-42ae-942c-16f1259a30c6) ) (fp_text value "KiCad-Logo2_6mm_Copper" (at 0 -6.35) (layer "B.Fab") hide (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) (tstamp c3196ac5-b462-4c69-a461-0afd179c3721) ) (fp_poly (pts (xy -1.288406 -3.63964) (xy -1.26484 -3.653465) (xy -1.234027 -3.676073) (xy -1.19437 -3.70853) (xy -1.144272 -3.7519) (xy -1.082135 -3.80725) (xy -1.006364 -3.875643) (xy -0.919626 -3.954276) (xy -0.739003 -4.11807) (xy -0.733359 -3.898221) (xy -0.731321 -3.822543) (xy -0.729355 -3.766186) (xy -0.727026 -3.725898) (xy -0.723898 -3.698427) (xy -0.719537 -3.680521) (xy -0.713508 -3.668929) (xy -0.705376 -3.6604) (xy -0.701064 -3.656815) (xy -0.666533 -3.637862) (xy -0.633675 -3.640633) (xy -0.60761 -3.656825) (xy -0.580959 -3.678391) (xy -0.577644 -3.993343) (xy -0.576727 -4.085971) (xy -0.57626 -4.158736) (xy -0.576405 -4.214353) (xy -0.577324 -4.255534) (xy -0.579179 -4.284995) (xy -0.582131 -4.305447) (xy -0.586342 -4.319605) (xy -0.591974 -4.330183) (xy -0.598219 -4.338666) (xy -0.611731 -4.354399) (xy -0.625175 -4.364828) (xy -0.640416 -4.368831) (xy -0.659318 -4.365286) (xy -0.683747 -4.353071) (xy -0.715565 -4.331063) (xy -0.75664 -4.298141) (xy -0.808834 -4.253183) (xy -0.874014 -4.195067) (xy -0.947848 -4.128291) (xy -1.213137 -3.88765) (xy -1.218781 -4.106781) (xy -1.220823 -4.18232) (xy -1.222794 -4.238546) (xy -1.225131 -4.278716) (xy -1.228273 -4.306088) (xy -1.232656 -4.32392) (xy -1.238716 -4.335471) (xy -1.246892 -4.343999) (xy -1.251076 -4.347474) (xy -1.288057 -4.366564) (xy -1.323 -4.363685) (xy -1.353428 -4.339292) (xy -1.360389 -4.329478) (xy -1.365815 -4.318018) (xy -1.369895 -4.30216) (xy -1.372821 -4.279155) (xy -1.374784 -4.246254) (xy -1.375975 -4.200708) (xy -1.376584 -4.139765) (xy -1.376803 -4.060678) (xy -1.376826 -4.002148) (xy -1.376752 -3.910599) (xy -1.376405 -3.838879) (xy -1.375593 -3.784237) (xy -1.374125 -3.743924) (xy -1.371811 -3.71519) (xy -1.368459 -3.695285) (xy -1.36388 -3.68146) (xy -1.357881 -3.670964) (xy -1.353428 -3.665003) (xy -1.342142 -3.650883) (xy -1.331593 -3.640221) (xy -1.320185 -3.634084) (xy -1.306322 -3.633535) (xy -1.288406 -3.63964) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 06864e7a-251d-4288-aa95-6c5d8418ff84)) (fp_poly (pts (xy 3.167505 0.735771) (xy 3.235531 0.730622) (xy 3.430163 0.704727) (xy 3.602529 0.663425) (xy 3.75347 0.606147) (xy 3.883825 0.532326) (xy 3.994434 0.441392) (xy 4.086135 0.332778) (xy 4.15977 0.205915) (xy 4.213539 0.068648) (xy 4.227187 0.024863) (xy 4.239073 -0.016141) (xy 4.249334 -0.056569) (xy 4.258113 -0.09863) (xy 4.265548 -0.144531) (xy 4.27178 -0.19648) (xy 4.27695 -0.256685) (xy 4.281196 -0.327352) (xy 4.28466 -0.410689) (xy 4.287481 -0.508905) (xy 4.2898 -0.624205) (xy 4.291757 -0.758799) (xy 4.293491 -0.914893) (xy 4.295143 -1.094695) (xy 4.296324 -1.235676) (xy 4.30427 -2.203622) (xy 4.355756 -2.29677) (xy 4.380137 -2.341645) (xy 4.39828 -2.376501) (xy 4.406935 -2.395054) (xy 4.407243 -2.396311) (xy 4.394014 -2.397749) (xy 4.356326 -2.399074) (xy 4.297183 -2.400249) (xy 4.219586 -2.401237) (xy 4.126536 -2.401999) (xy 4.021035 -2.4025) (xy 3.906084 -2.402701) (xy 3.892378 -2.402703) (xy 3.377513 -2.402703) (xy 3.377513 -2.286) (xy 3.376635 -2.23326) (xy 3.374292 -2.192926) (xy 3.370921 -2.1713) (xy 3.369431 -2.169298) (xy 3.355804 -2.177683) (xy 3.327757 -2.199692) (xy 3.291303 -2.230601) (xy 3.290485 -2.231316) (xy 3.223962 -2.280843) (xy 3.139948 -2.330575) (xy 3.047937 -2.375626) (xy 2.957421 -2.41111) (xy 2.917567 -2.423236) (xy 2.838255 -2.438637) (xy 2.740935 -2.448465) (xy 2.634516 -2.45258) (xy 2.527907 -2.450841) (xy 2.430017 -2.443108) (xy 2.361513 -2.431981) (xy 2.19352 -2.382648) (xy 2.042281 -2.312342) (xy 1.908782 -2.221933) (xy 1.794006 -2.112295) (xy 1.698937 -1.984299) (xy 1.62456 -1.838818) (xy 1.592474 -1.750541) (xy 1.572365 -1.664739) (xy 1.559038 -1.561736) (xy 1.552872 -1.451034) (xy 1.553074 -1.434925) (xy 2.481648 -1.434925) (xy 2.489348 -1.517184) (xy 2.514989 -1.585546) (xy 2.562378 -1.64897) (xy 2.580579 -1.667567) (xy 2.645282 -1.717846) (xy 2.720066 -1.750056) (xy 2.809662 -1.765648) (xy 2.904012 -1.766796) (xy 2.993501 -1.759216) (xy 3.062018 -1.744389) (xy 3.091775 -1.733253) (xy 3.145408 -1.702904) (xy 3.202235 -1.660221) (xy 3.254082 -1.612317) (xy 3.292778 -1.566301) (xy 3.303054 -1.549421) (xy 3.311042 -1.525782) (xy 3.316721 -1.488168) (xy 3.320356 -1.432985) (xy 3.322211 -1.35664) (xy 3.322594 -1.283981) (xy 3.322335 -1.19927) (xy 3.321287 -1.138018) (xy 3.319045 -1.096227) (xy 3.315206 -1.069899) (xy 3.309365 -1.055035) (xy 3.301118 -1.047639) (xy 3.298567 -1.046461) (xy 3.2764 -1.042833) (xy 3.23268 -1.039866) (xy 3.173311 -1.037827) (xy 3.104196 -1.036983) (xy 3.089189 -1.036982) (xy 2.996805 -1.038457) (xy 2.925432 -1.042842) (xy 2.868719 -1.050738) (xy 2.821872 -1.06227) (xy 2.705669 -1.106215) (xy 2.614543 -1.160243) (xy 2.547705 -1.225219) (xy 2.504365 -1.302005) (xy 2.483734 -1.391467) (xy 2.481648 -1.434925) (xy 1.553074 -1.434925) (xy 1.554244 -1.342133) (xy 1.563532 -1.244536) (xy 1.570777 -1.205105) (xy 1.617039 -1.058701) (xy 1.687384 -0.923995) (xy 1.780484 -0.80228) (xy 1.895012 -0.694847) (xy 2.02964 -0.602988) (xy 2.18304 -0.527996) (xy 2.313459 -0.482458) (xy 2.400623 -0.458533) (xy 2.483996 -0.439943) (xy 2.568976 -0.426084) (xy 2.660965 -0.416351) (xy 2.765362 -0.410141) (xy 2.887568 -0.406851) (xy 2.998055 -0.405924) (xy 3.325677 -0.405027) (xy 3.319401 -0.306547) (xy 3.301579 -0.199695) (xy 3.263667 -0.107852) (xy 3.20728 -0.03331) (xy 3.134031 0.021636) (xy 3.069535 0.048448) (xy 2.977123 0.065346) (xy 2.867111 0.067773) (xy 2.744656 0.056622) (xy 2.614914 0.03279) (xy 2.483042 -0.00283) (xy 2.354198 -0.049343) (xy 2.260566 -0.091883) (xy 2.215517 -0.113728) (xy 2.181156 -0.128984) (xy 2.163681 -0.134937) (xy 2.162733 -0.134746) (xy 2.156703 -0.121412) (xy 2.141645 -0.086068) (xy 2.118977 -0.032101) (xy 2.090115 0.037104) (xy 2.056477 0.11816) (xy 2.022284 0.200882) (xy 1.885586 0.532197) (xy 1.98282 0.548167) (xy 2.024964 0.55618) (xy 2.088319 0.569639) (xy 2.167457 0.587321) (xy 2.256951 0.608004) (xy 2.351373 0.630468) (xy 2.388973 0.639597) (xy 2.551637 0.677326) (xy 2.69405 0.705612) (xy 2.821527 0.725028) (xy 2.939384 0.736146) (xy 3.052938 0.739536) (xy 3.167505 0.735771) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 0f9c162f-8efc-4fe4-8fd8-0bbc6b69fa1d)) (fp_poly (pts (xy 6.240531 -3.640725) (xy 6.27191 -3.662968) (xy 6.299619 -3.690677) (xy 6.299619 -4.000112) (xy 6.299546 -4.091991) (xy 6.299203 -4.164032) (xy 6.2984 -4.218972) (xy 6.296949 -4.259552) (xy 6.29466 -4.288509) (xy 6.291344 -4.308583) (xy 6.286813 -4.322513) (xy 6.280877 -4.333037) (xy 6.276222 -4.339292) (xy 6.245491 -4.363865) (xy 6.210204 -4.366533) (xy 6.177953 -4.351463) (xy 6.167296 -4.342566) (xy 6.160172 -4.330749) (xy 6.155875 -4.311718) (xy 6.153699 -4.281184) (xy 6.152936 -4.234854) (xy 6.152863 -4.199063) (xy 6.152863 -4.064237) (xy 5.656152 -4.064237) (xy 5.656152 -4.186892) (xy 5.655639 -4.242979) (xy 5.653584 -4.281525) (xy 5.649216 -4.307553) (xy 5.641764 -4.326089) (xy 5.632755 -4.339292) (xy 5.601852 -4.363796) (xy 5.566904 -4.366698) (xy 5.533446 -4.349281) (xy 5.524312 -4.340151) (xy 5.51786 -4.328047) (xy 5.513605 -4.309193) (xy 5.51106 -4.279812) (xy 5.509737 -4.236129) (xy 5.509151 -4.174367) (xy 5.509083 -4.160192) (xy 5.508599 -4.043823) (xy 5.508349 -3.947919) (xy 5.508431 -3.870369) (xy 5.508939 -3.809061) (xy 5.50997 -3.761882) (xy 5.511621 -3.726722) (xy 5.513987 -3.701468) (xy 5.517165 -3.684009) (xy 5.521252 -3.672233) (xy 5.526342 -3.664027) (xy 5.531974 -3.657837) (xy 5.563836 -3.638036) (xy 5.597065 -3.640725) (xy 5.628443 -3.662968) (xy 5.641141 -3.677318) (xy 5.649234 -3.69317) (xy 5.65375 -3.715746) (xy 5.655714 -3.75027) (xy 5.656152 -3.801968) (xy 5.656152 -3.917481) (xy 6.152863 -3.917481) (xy 6.152863 -3.798948) (xy 6.15337 -3.74434) (xy 6.155406 -3.707467) (xy 6.159743 -3.683499) (xy 6.167155 -3.667607) (xy 6.175441 -3.657837) (xy 6.207302 -3.638036) (xy 6.240531 -3.640725) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 12e14c89-b5b0-49fa-8e97-1611fc97e092)) (fp_poly (pts (xy -2.726079 2.96351) (xy -2.622973 2.927762) (xy -2.526978 2.871493) (xy -2.441247 2.794712) (xy -2.36893 2.697427) (xy -2.336445 2.636108) (xy -2.308332 2.55034) (xy -2.294705 2.451323) (xy -2.296214 2.349529) (xy -2.312969 2.257286) (xy -2.358763 2.144568) (xy -2.425168 2.046793) (xy -2.508809 1.965885) (xy -2.606312 1.903768) (xy -2.7143 1.862366) (xy -2.829399 1.843603) (xy -2.948234 1.849402) (xy -3.006811 1.861794) (xy -3.120972 1.906203) (xy -3.222365 1.973967) (xy -3.308545 2.062999) (xy -3.377066 2.171209) (xy -3.382864 2.183027) (xy -3.402904 2.227372) (xy -3.415487 2.26472) (xy -3.422319 2.30412) (xy -3.425105 2.354619) (xy -3.425568 2.409567) (xy -3.424803 2.475585) (xy -3.421352 2.523311) (xy -3.413477 2.561897) (xy -3.399443 2.600494) (xy -3.38212 2.638574) (xy -3.317505 2.746672) (xy -3.237934 2.834197) (xy -3.14656 2.901159) (xy -3.046536 2.947564) (xy -2.941012 2.973419) (xy -2.833142 2.978732) (xy -2.726079 2.96351) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 18024dc2-7b3f-4dd8-9bd3-06fa21ced7b0)) (fp_poly (pts (xy -6.109663 -3.635258) (xy -6.070181 -3.635659) (xy -5.954492 -3.638451) (xy -5.857603 -3.646742) (xy -5.776211 -3.661424) (xy -5.707015 -3.683385) (xy -5.646712 -3.713514) (xy -5.592 -3.752702) (xy -5.572459 -3.769724) (xy -5.540042 -3.809555) (xy -5.510812 -3.863605) (xy -5.488283 -3.923515) (xy -5.475971 -3.980931) (xy -5.474692 -4.002148) (xy -5.482709 -4.060961) (xy -5.504191 -4.125205) (xy -5.535291 -4.186013) (xy -5.572158 -4.234522) (xy -5.578146 -4.240374) (xy -5.628871 -4.281513) (xy -5.684417 -4.313627) (xy -5.747988 -4.337557) (xy -5.822786 -4.354145) (xy -5.912014 -4.364233) (xy -6.018874 -4.368661) (xy -6.06782 -4.369037) (xy -6.130054 -4.368737) (xy -6.17382 -4.367484) (xy -6.203223 -4.364746) (xy -6.222371 -4.359993) (xy -6.235369 -4.352693) (xy -6.242337 -4.346459) (xy -6.248918 -4.338886) (xy -6.25408 -4.329116) (xy -6.257995 -4.314532) (xy -6.260835 -4.292518) (xy -6.262772 -4.260456) (xy -6.263976 -4.215728) (xy -6.26462 -4.155718) (xy -6.264875 -4.077809) (xy -6.264914 -4.002148) (xy -6.265162 -3.901233) (xy -6.265109 -3.820619) (xy -6.264149 -3.782014) (xy -6.118159 -3.782014) (xy -6.118159 -4.222281) (xy -6.025026 -4.222196) (xy -5.968985 -4.220588) (xy -5.910291 -4.216448) (xy -5.86132 -4.210656) (xy -5.85983 -4.210418) (xy -5.780684 -4.191282) (xy -5.719294 -4.161479) (xy -5.672597 -4.11907) (xy -5.642927 -4.073153) (xy -5.624645 -4.022218) (xy -5.626063 -3.974392) (xy -5.64728 -3.923125) (xy -5.688781 -3.870091) (xy -5.74629 -3.830792) (xy -5.821042 -3.804523) (xy -5.871 -3.795227) (xy -5.927708 -3.788699) (xy -5.987811 -3.783974) (xy -6.038931 -3.782009) (xy -6.041959 -3.782) (xy -6.118159 -3.782014) (xy -6.264149 -3.782014) (xy -6.263552 -3.758043) (xy -6.25929 -3.711247) (xy -6.251122 -3.67797) (xy -6.237848 -3.655951) (xy -6.218266 -3.642931) (xy -6.191175 -3.636649) (xy -6.155374 -3.634845) (xy -6.109663 -3.635258) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 3b08cdae-aebd-4f35-9b5c-97d2a628c3d6)) (fp_poly (pts (xy -4.701086 -3.635338) (xy -4.631678 -3.63571) (xy -4.579289 -3.636577) (xy -4.541139 -3.638138) (xy -4.514451 -3.640595) (xy -4.496445 -3.644149) (xy -4.484341 -3.649002) (xy -4.475361 -3.655353) (xy -4.47211 -3.658276) (xy -4.452335 -3.689334) (xy -4.448774 -3.72502) (xy -4.461783 -3.756702) (xy -4.467798 -3.763105) (xy -4.477527 -3.769313) (xy -4.493193 -3.774102) (xy -4.5177 -3.777706) (xy -4.553953 -3.780356) (xy -4.604857 -3.782287) (xy -4.673318 -3.783731) (xy -4.735909 -3.78461) (xy -4.983626 -3.787659) (xy -4.987011 -3.85257) (xy -4.990397 -3.917481) (xy -4.82225 -3.917481) (xy -4.749251 -3.918111) (xy -4.695809 -3.920745) (xy -4.65892 -3.926501) (xy -4.63558 -3.936496) (xy -4.622786 -3.951848) (xy -4.617534 -3.973674) (xy -4.616737 -3.99393) (xy -4.619215 -4.018784) (xy -4.628569 -4.037098) (xy -4.647675 -4.049829) (xy -4.67941 -4.057933) (xy -4.726651 -4.062368) (xy -4.792275 -4.064091) (xy -4.828093 -4.064237) (xy -4.98927 -4.064237) (xy -4.98927 -4.222281) (xy -4.740914 -4.222281) (xy -4.659505 -4.222394) (xy -4.597634 -4.222904) (xy -4.55226 -4.224062) (xy -4.520346 -4.226122) (xy -4.498851 -4.229338) (xy -4.484735 -4.233964) (xy -4.47496 -4.240251) (xy -4.469981 -4.244859) (xy -4.452902 -4.271752) (xy -4.447403 -4.295659) (xy -4.455255 -4.324859) (xy -4.469981 -4.346459) (xy -4.477838 -4.353258) (xy -4.48798 -4.358538) (xy -4.503136 -4.36249) (xy -4.526033 -4.365305) (xy -4.559401 -4.367174) (xy -4.605967 -4.36829) (xy -4.668459 -4.368843) (xy -4.749606 -4.369025) (xy -4.791714 -4.369037) (xy -4.88189 -4.368957) (xy -4.952216 -4.36859) (xy -5.005421 -4.367744) (xy -5.044232 -4.366228) (xy -5.071379 -4.363851) (xy -5.08959 -4.360421) (xy -5.101592 -4.355746) (xy -5.110114 -4.349636) (xy -5.113448 -4.346459) (xy -5.120047 -4.338862) (xy -5.125219 -4.329062) (xy -5.129138 -4.314431) (xy -5.131976 -4.292344) (xy -5.133907 -4.260174) (xy -5.135104 -4.215295) (xy -5.13574 -4.155081) (xy -5.135989 -4.076905) (xy -5.136026 -4.004115) (xy -5.135992 -3.910899) (xy -5.135757 -3.837623) (xy -5.135122 -3.78165) (xy -5.133886 -3.740343) (xy -5.131848 -3.711064) (xy -5.128809 -3.691176) (xy -5.124569 -3.678042) (xy -5.118927 -3.669024) (xy -5.111683 -3.661485) (xy -5.109898 -3.659804) (xy -5.101237 -3.652364) (xy -5.091174 -3.646601) (xy -5.076917 -3.642304) (xy -5.055675 -3.639256) (xy -5.024656 -3.637243) (xy -4.981069 -3.636052) (xy -4.922123 -3.635467) (xy -4.845026 -3.635275) (xy -4.790293 -3.635259) (xy -4.701086 -3.635338) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 583090cd-1918-4408-aee0-1b204613cfe4)) (fp_poly (pts (xy -2.912114 -3.657837) (xy -2.905534 -3.66541) (xy -2.900371 -3.675179) (xy -2.896456 -3.689763) (xy -2.893616 -3.711777) (xy -2.891679 -3.74384) (xy -2.890475 -3.788567) (xy -2.889831 -3.848577) (xy -2.889576 -3.926486) (xy -2.889537 -4.002148) (xy -2.889606 -4.095994) (xy -2.88993 -4.169881) (xy -2.890678 -4.226424) (xy -2.892024 -4.268241) (xy -2.894138 -4.297949) (xy -2.897192 -4.318165) (xy -2.901358 -4.331506) (xy -2.906808 -4.34059) (xy -2.912114 -4.346459) (xy -2.945118 -4.366139) (xy -2.980283 -4.364373) (xy -3.011747 -4.342909) (xy -3.018976 -4.334529) (xy -3.024626 -4.324806) (xy -3.028891 -4.311053) (xy -3.031965 -4.290581) (xy -3.034044 -4.260704) (xy -3.035322 -4.218733) (xy -3.035993 -4.161981) (xy -3.036251 -4.087759) (xy -3.036292 -4.003729) (xy -3.036292 -3.690677) (xy -3.008583 -3.662968) (xy -2.974429 -3.639655) (xy -2.941298 -3.638815) (xy -2.912114 -3.657837) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 83d87f61-1f49-4ebf-9b72-0d35038e0022)) (fp_poly (pts (xy 4.200322 -3.642069) (xy 4.224035 -3.656839) (xy 4.250686 -3.678419) (xy 4.250686 -3.999965) (xy 4.250601 -4.094022) (xy 4.250237 -4.168124) (xy 4.249432 -4.224896) (xy 4.248021 -4.26696) (xy 4.245841 -4.29694) (xy 4.242729 -4.317459) (xy 4.238522 -4.331141) (xy 4.233056 -4.340608) (xy 4.22918 -4.345274) (xy 4.197742 -4.365767) (xy 4.161941 -4.364931) (xy 4.130581 -4.347456) (xy 4.10393 -4.325876) (xy 4.10393 -3.678419) (xy 4.130581 -3.656839) (xy 4.156302 -3.641141) (xy 4.177308 -3.635259) (xy 4.200322 -3.642069) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 8b6d806c-8a60-462c-ad0d-87251a144ddd)) (fp_poly (pts (xy 4.974773 -3.635355) (xy 5.05348 -3.635734) (xy 5.114571 -3.636525) (xy 5.160525 -3.637862) (xy 5.193822 -3.639875) (xy 5.216944 -3.642698) (xy 5.23237 -3.646461) (xy 5.242579 -3.651297) (xy 5.247521 -3.655014) (xy 5.273165 -3.68755) (xy 5.276267 -3.72133) (xy 5.260419 -3.752018) (xy 5.250056 -3.764281) (xy 5.238904 -3.772642) (xy 5.222743 -3.777849) (xy 5.19735 -3.780649) (xy 5.158506 -3.781788) (xy 5.101988 -3.782013) (xy 5.090888 -3.782014) (xy 4.944952 -3.782014) (xy 4.944952 -4.052948) (xy 4.944856 -4.138346) (xy 4.944419 -4.204056) (xy 4.94342 -4.252966) (xy 4.941636 -4.287965) (xy 4.938845 -4.311941) (xy 4.934825 -4.327785) (xy 4.929353 -4.338383) (xy 4.922374 -4.346459) (xy 4.889442 -4.366304) (xy 4.855062 -4.36474) (xy 4.823884 -4.342098) (xy 4.821594 -4.339292) (xy 4.814137 -4.328684) (xy 4.808455 -4.316273) (xy 4.804309 -4.299042) (xy 4.801458 -4.273976) (xy 4.799662 -4.238059) (xy 4.79868 -4.188275) (xy 4.798272 -4.121609) (xy 4.798197 -4.045781) (xy 4.798197 -3.782014) (xy 4.658835 -3.782014) (xy 4.59903 -3.78161) (xy 4.557626 -3.780032) (xy 4.530456 -3.776739) (xy 4.513354 -3.771184) (xy 4.502151 -3.762823) (xy 4.500791 -3.76137) (xy 4.484433 -3.728131) (xy 4.48588 -3.690554) (xy 4.504686 -3.657837) (xy 4.511958 -3.65149) (xy 4.521335 -3.646458) (xy 4.535317 -3.642588) (xy 4.556404 -3.639729) (xy 4.587097 -3.637727) (xy 4.629897 -3.636431) (xy 4.687303 -3.63569) (xy 4.761818 -3.63535) (xy 4.855941 -3.63526) (xy 4.875968 -3.635259) (xy 4.974773 -3.635355) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 8e904686-ce34-474a-ab32-7bf99fa061c1)) (fp_poly (pts (xy 0.439962 1.839501) (xy 0.588014 1.823293) (xy 0.731452 1.794282) (xy 0.87611 1.750955) (xy 1.027824 1.691799) (xy 1.192428 1.6153) (xy 1.222071 1.600483) (xy 1.290098 1.566969) (xy 1.354256 1.536792) (xy 1.408215 1.512834) (xy 1.44564 1.497976) (xy 1.451389 1.496105) (xy 1.506486 1.479598) (xy 1.259851 1.120799) (xy 1.199552 1.033107) (xy 1.144422 0.952988) (xy 1.096336 0.883164) (xy 1.057168 0.826353) (xy 1.028794 0.785277) (xy 1.013087 0.762654) (xy 1.010536 0.759072) (xy 1.000171 0.766562) (xy 0.97466 0.789082) (xy 0.938563 0.822539) (xy 0.918642 0.84145) (xy 0.805773 0.931222) (xy 0.679014 0.999439) (xy 0.569783 1.036805) (xy 0.504214 1.04854) (xy 0.422116 1.055692) (xy 0.333144 1.058126) (xy 0.246956 1.055712) (xy 0.173205 1.048317) (xy 0.143776 1.042653) (xy 0.011133 0.997018) (xy -0.108394 0.927337) (xy -0.214717 0.83374) (xy -0.307747 0.716351) (xy -0.387395 0.5753) (xy -0.453574 0.410714) (xy -0.506194 0.22272) (xy -0.537467 0.061783) (xy -0.545626 -0.009263) (xy -0.551185 -0.101046) (xy -0.554198 -0.206968) (xy -0.554719 -0.320434) (xy -0.5528 -0.434849) (xy -0.548497 -0.543617) (xy -0.541863 -0.640143) (xy -0.532951 -0.717831) (xy -0.531021 -0.729817) (xy -0.488501 -0.922892) (xy -0.430567 -1.093773) (xy -0.356867 -1.243224) (xy -0.267049 -1.372011) (xy -0.203293 -1.441639) (xy -0.088714 -1.536173) (xy 0.036942 -1.606246) (xy 0.171557 -1.651477) (xy 0.313011 -1.671484) (xy 0.459183 -1.665885) (xy 0.607955 -1.6343) (xy 0.695911 -1.603394) (xy 0.817629 -1.541506) (xy 0.94308 -1.452729) (xy 1.013353 -1.392694) (xy 1.052811 -1.357947) (xy 1.083812 -1.332454) (xy 1.101458 -1.32017) (xy 1.103648 -1.319795) (xy 1.111524 -1.332347) (xy 1.131932 -1.365516) (xy 1.163132 -1.416458) (xy 1.203386 -1.482331) (xy 1.250957 -1.560289) (xy 1.304104 -1.64749) (xy 1.333687 -1.696067) (xy 1.559648 -2.067215) (xy 1.277527 -2.206639) (xy 1.175522 -2.256719) (xy 1.092889 -2.29621) (xy 1.024578 -2.327073) (xy 0.965537 -2.351268) (xy 0.910714 -2.370758) (xy 0.85506 -2.387503) (xy 0.793523 -2.403465) (xy 0.73454 -2.417482) (xy 0.682115 -2.428329) (xy 0.627288 -2.436526) (xy 0.564572 -2.442528) (xy 0.488477 -2.44679) (xy 0.393516 -2.449767) (xy 0.329513 -2.451052) (xy 0.238192 -2.45193) (xy 0.150627 -2.451487) (xy 0.072612 -2.449852) (xy 0.009942 -2.447149) (xy -0.031587 -2.443505) (xy -0.034048 -2.443142) (xy -0.249697 -2.396487) (xy -0.452207 -2.325729) (xy -0.641505 -2.230914) (xy -0.817521 -2.112089) (xy -0.980184 -1.9693) (xy -1.129422 -1.802594) (xy -1.237504 -1.654433) (xy -1.352566 -1.460502) (xy -1.445577 -1.255699) (xy -1.516987 -1.038383) (xy -1.567244 -0.806912) (xy -1.596799 -0.559643) (xy -1.606111 -0.308559) (xy -1.598452 -0.06567) (xy -1.574387 0.15843) (xy -1.533148 0.367523) (xy -1.473973 0.565387) (xy -1.396096 0.755804) (xy -1.386797 0.775532) (xy -1.284352 0.959941) (xy -1.158528 1.135424) (xy -1.012888 1.29835) (xy -0.850999 1.445086) (xy -0.676424 1.571999) (xy -0.513756 1.665095) (xy -0.349427 1.738009) (xy -0.184749 1.790826) (xy -0.013348 1.824985) (xy 0.171153 1.841922) (xy 0.281459 1.84442) (xy 0.439962 1.839501) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp 9c497e2c-fb11-4a31-9789-3f114eb5df67)) (fp_poly (pts (xy 3.756373 -3.637226) (xy 3.775963 -3.644227) (xy 3.776718 -3.644569) (xy 3.803321 -3.66487) (xy 3.817978 -3.685753) (xy 3.820846 -3.695544) (xy 3.820704 -3.708553) (xy 3.816669 -3.727087) (xy 3.807854 -3.753449) (xy 3.793377 -3.789944) (xy 3.772353 -3.838879) (xy 3.743896 -3.902557) (xy 3.707123 -3.983285) (xy 3.686883 -4.027408) (xy 3.650333 -4.106177) (xy 3.616023 -4.178615) (xy 3.58526 -4.242072) (xy 3.559356 -4.2939) (xy 3.539618 -4.331451) (xy 3.527358 -4.352076) (xy 3.524932 -4.354925) (xy 3.493891 -4.367494) (xy 3.458829 -4.365811) (xy 3.430708 -4.350524) (xy 3.429562 -4.349281) (xy 3.418376 -4.332346) (xy 3.399612 -4.299362) (xy 3.375583 -4.254572) (xy 3.348605 -4.202224) (xy 3.338909 -4.182934) (xy 3.265722 -4.036342) (xy 3.185948 -4.195585) (xy 3.157475 -4.250607) (xy 3.131058 -4.298324) (xy 3.108856 -4.335085) (xy 3.093027 -4.357236) (xy 3.087662 -4.361933) (xy 3.045965 -4.368294) (xy 3.011557 -4.354925) (xy 3.001436 -4.340638) (xy 2.983922 -4.308884) (xy 2.960443 -4.262789) (xy 2.932428 -4.205477) (xy 2.901307 -4.140072) (xy 2.868507 -4.069699) (xy 2.835458 -3.997483) (xy 2.803589 -3.926547) (xy 2.774327 -3.860017) (xy 2.749103 -3.801018) (xy 2.729344 -3.752673) (xy 2.71648 -3.718107) (xy 2.711939 -3.700445) (xy 2.711985 -3.699805) (xy 2.723034 -3.67758) (xy 2.745118 -3.654945) (xy 2.746418 -3.65396) (xy 2.773561 -3.638617) (xy 2.798666 -3.638766) (xy 2.808076 -3.641658) (xy 2.819542 -3.64791) (xy 2.831718 -3.660206) (xy 2.846065 -3.6811) (xy 2.864044 -3.713141) (xy 2.887115 -3.75888) (xy 2.916738 -3.820869) (xy 2.943453 -3.87809) (xy 2.974188 -3.944418) (xy 3.001729 -4.004066) (xy 3.024646 -4.053917) (xy 3.041506 -4.090856) (xy 3.050881 -4.111765) (xy 3.052248 -4.115037) (xy 3.058397 -4.109689) (xy 3.07253 -4.087301) (xy 3.092765 -4.051138) (xy 3.117223 -4.004469) (xy 3.126956 -3.985214) (xy 3.159925 -3.920196) (xy 3.185351 -3.872846) (xy 3.20532 -3.840411) (xy 3.221918 -3.820138) (xy 3.237232 -3.809274) (xy 3.253348 -3.805067) (xy 3.263851 -3.804592) (xy 3.282378 -3.806234) (xy 3.298612 -3.813023) (xy 3.314743 -3.827758) (xy 3.332959 -3.853236) (xy 3.355447 -3.892253) (xy 3.384397 -3.947606) (xy 3.40037 -3.979095) (xy 3.426278 -4.029279) (xy 3.448875 -4.070896) (xy 3.466166 -4.100434) (xy 3.476158 -4.114381) (xy 3.477517 -4.114962) (xy 3.483969 -4.103985) (xy 3.498416 -4.075482) (xy 3.519411 -4.032436) (xy 3.545505 -3.97783) (xy 3.575254 -3.914646) (xy 3.589888 -3.883263) (xy 3.627958 -3.80227) (xy 3.658613 -3.739948) (xy 3.683445 -3.694263) (xy 3.704045 -3.663181) (xy 3.722006 -3.64467) (xy 3.738918 -3.636696) (xy 3.756373 -3.637226) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp afa39b9f-bfd4-4298-8d4d-f20a8db9d0fd)) (fp_poly (pts (xy -5.955743 2.526311) (xy -5.69122 2.526275) (xy -5.568088 2.52627) (xy -3.597189 2.52627) (xy -3.597189 2.41009) (xy -3.584789 2.268709) (xy -3.547364 2.138316) (xy -3.484577 2.018138) (xy -3.396094 1.907398) (xy -3.366157 1.877489) (xy -3.258466 1.792652) (xy -3.139725 1.730779) (xy -3.01346 1.691841) (xy -2.883197 1.67581) (xy -2.752465 1.682658) (xy -2.624788 1.712357) (xy -2.503695 1.76488) (xy -2.392712 1.840197) (xy -2.342868 1.885637) (xy -2.249983 1.997048) (xy -2.181873 2.119565) (xy -2.139129 2.251785) (xy -2.122347 2.392308) (xy -2.122124 2.406133) (xy -2.121244 2.526266) (xy -2.068443 2.526268) (xy -2.021604 2.519911) (xy -1.978817 2.504444) (xy -1.975989 2.502846) (xy -1.966325 2.497832) (xy -1.957451 2.493927) (xy -1.949335 2.489993) (xy -1.941943 2.484894) (xy -1.935245 2.477492) (xy -1.929208 2.466649) (xy -1.923801 2.451228) (xy -1.91899 2.430091) (xy -1.914745 2.402101) (xy -1.911032 2.366121) (xy -1.907821 2.321013) (xy -1.905078 2.26564) (xy -1.902772 2.198863) (xy -1.900871 2.119547) (xy -1.899342 2.026553) (xy -1.898154 1.918743) (xy -1.897274 1.794981) (xy -1.89667 1.654129) (xy -1.896311 1.49505) (xy -1.896165 1.316605) (xy -1.896198 1.117658) (xy -1.89638 0.897071) (xy -1.896677 0.653707) (xy -1.897059 0.386428) (xy -1.897492 0.094097) (xy -1.897945 -0.224424) (xy -1.897998 -0.26323) (xy -1.898404 -0.583782) (xy -1.898749 -0.878012) (xy -1.899069 -1.147056) (xy -1.8994 -1.392052) (xy -1.899779 -1.614137) (xy -1.900243 -1.814447) (xy -1.900828 -1.994119) (xy -1.90157 -2.15429) (xy -1.902506 -2.296098) (xy -1.903673 -2.420679) (xy -1.905107 -2.52917) (xy -1.906844 -2.622707) (xy -1.908922 -2.702429) (xy -1.911376 -2.769472) (xy -1.914244 -2.824973) (xy -1.917561 -2.870068) (xy -1.921364 -2.905895) (xy -1.92569 -2.933591) (xy -1.930575 -2.954293) (xy -1.936055 -2.969137) (xy -1.942168 -2.97926) (xy -1.94895 -2.9858) (xy -1.956437 -2.989893) (xy -1.964666 -2.992676) (xy -1.973673 -2.995287) (xy -1.983495 -2.998862) (xy -1.985894 -2.99995) (xy -1.993435 -3.002396) (xy -2.006056 -3.004642) (xy -2.024859 -3.006698) (xy -2.050947 -3.008572) (xy -2.085422 -3.010271) (xy -2.129385 -3.011803) (xy -2.183939 -3.013177) (xy -2.250185 -3.0144) (xy -2.329226 -3.015481) (xy -2.422163 -3.016427) (xy -2.530099 -3.017247) (xy -2.654136 -3.017947) (xy -2.795376 -3.018538) (xy -2.954921 -3.019025) (xy -3.133872 -3.019419) (xy -3.333332 -3.019725) (xy -3.554404 -3.019953) (xy -3.798188 -3.02011) (xy -4.065787 -3.020205) (xy -4.358303 -3.020245) (xy -4.676839 -3.020238) (xy -4.780021 -3.020228) (xy -5.105623 -3.020176) (xy -5.404881 -3.020091) (xy -5.678909 -3.019963) (xy -5.928824 -3.019785) (xy -6.15574 -3.019548) (xy -6.360773 -3.019242) (xy -6.545038 -3.01886) (xy -6.70965 -3.018392) (xy -6.855725 -3.01783) (xy -6.984376 -3.017165) (xy -7.096721 -3.016388) (xy -7.193874 -3.015491) (xy -7.27695 -3.014465) (xy -7.347064 -3.013301) (xy -7.405332 -3.011991) (xy -7.452869 -3.010525) (xy -7.49079 -3.008896) (xy -7.52021 -3.007093) (xy -7.542245 -3.00511) (xy -7.55801 -3.002936) (xy -7.56862 -3.000563) (xy -7.574404 -2.998391) (xy -7.584684 -2.994056) (xy -7.594122 -2.990859) (xy -7.602755 -2.987665) (xy -7.610619 -2.983338) (xy -7.617748 -2.976744) (xy -7.624179 -2.966747) (xy -7.629947 -2.952212) (xy -7.635089 -2.932003) (xy -7.63964 -2.904985) (xy -7.643635 -2.870023) (xy -7.647111 -2.825981) (xy -7.650102 -2.771724) (xy -7.652646 -2.706117) (xy -7.654777 -2.628024) (xy -7.656532 -2.53631) (xy -7.657945 -2.42984) (xy -7.658315 -2.388973) (xy -7.291884 -2.388973) (xy -5.996734 -2.388973) (xy -6.021655 -2.351217) (xy -6.046447 -2.312417) (xy -6.06744 -2.275469) (xy -6.084935 -2.237788) (xy -6.09923 -2.196788) (xy -6.110623 -2.149883) (xy -6.119413 -2.094487) (xy -6.125898 -2.028016) (xy -6.130377 -1.947883) (xy -6.13315 -1.851502) (xy -6.134513 -1.736289) (xy -6.134767 -1.599657) (xy -6.134209 -1.43902) (xy -6.133893 -1.379382) (xy -6.130325 -0.740041) (xy -5.725298 -1.291449) (xy -5.610554 -1.447876) (xy -5.511143 -1.584088) (xy -5.42599 -1.70189) (xy -5.354022 -1.803084) (xy -5.294166 -1.889477) (xy -5.245348 -1.962874) (xy -5.206495 -2.025077) (xy -5.176534 -2.077893) (xy -5.154391 -2.123125) (xy -5.138993 -2.162578) (xy -5.129266 -2.198058) (xy -5.124137 -2.231368) (xy -5.122532 -2.264313) (xy -5.123379 -2.298697) (xy -5.123595 -2.303019) (xy -5.128054 -2.389031) (xy -3.708692 -2.388973) (xy -3.814265 -2.282522) (xy -3.842913 -2.253406) (xy -3.87009 -2.225076) (xy -3.896989 -2.195968) (xy -3.924803 -2.16452) (xy -3.954725 -2.129169) (xy -3.987946 -2.088354) (xy -4.025661 -2.040511) (xy -4.06906 -1.984079) (xy -4.119338 -1.917494) (xy -4.177688 -1.839195) (xy -4.2453 -1.747619) (xy -4.323369 -1.641204) (xy -4.413088 -1.518387) (xy -4.515648 -1.377605) (xy -4.632242 -1.217297) (xy -4.727809 -1.085798) (xy -4.847749 -0.920596) (xy -4.95238 -0.776152) (xy -5.042648 -0.651094) (xy -5.119503 -0.544052) (xy -5.183891 -0.453654) (xy -5.236761 -0.378529) (xy -5.27906 -0.317304) (xy -5.311736 -0.26861) (xy -5.335738 -0.231074) (xy -5.352013 -0.203325) (xy -5.361508 -0.183992) (xy -5.365173 -0.171703) (xy -5.364071 -0.165242) (xy -5.350724 -0.148048) (xy -5.321866 -0.111655) (xy -5.27924 -0.058224) (xy -5.224585 0.010081) (xy -5.159644 0.091097) (xy -5.086158 0.18266) (xy -5.005868 0.282608) (xy -4.920515 0.388776) (xy -4.83184 0.499003) (xy -4.741586 0.611124) (xy -4.691944 0.672756) (xy -3.459373 0.672756) (xy -3.408146 0.580081) (xy -3.356919 0.487405) (xy -3.356919 -2.203622) (xy -3.408146 -2.296298) (xy -3.459373 -2.388973) (xy -2.853396 -2.388973) (xy -2.708734 -2.388931) (xy -2.589244 -2.388741) (xy -2.492642 -2.388308) (xy -2.416642 -2.387536) (xy -2.358957 -2.38633) (xy -2.317301 -2.384594) (xy -2.289389 -2.382232) (xy -2.272935 -2.37915) (xy -2.265652 -2.375251) (xy -2.265255 -2.37044) (xy -2.269458 -2.364622) (xy -2.269501 -2.364574) (xy -2.286813 -2.339532) (xy -2.309736 -2.298815) (xy -2.329981 -2.258168) (xy -2.368379 -2.176162) (xy -2.376211 0.672756) (xy -3.459373 0.672756) (xy -4.691944 0.672756) (xy -4.651493 0.722976) (xy -4.563302 0.832396) (xy -4.478754 0.937222) (xy -4.399592 1.035289) (xy -4.327556 1.124434) (xy -4.264387 1.202495) (xy -4.211827 1.267308) (xy -4.171617 1.31671) (xy -4.148 1.345513) (xy -4.05629 1.453222) (xy -3.96806 1.55042) (xy -3.886403 1.633924) (xy -3.81441 1.700552) (xy -3.763319 1.741401) (xy -3.702907 1.784865) (xy -5.092298 1.784865) (xy -5.091908 1.703334) (xy -5.095791 1.643394) (xy -5.11039 1.587823) (xy -5.132988 1.535145) (xy -5.147678 1.505385) (xy -5.163472 1.475897) (xy -5.181814 1.444724) (xy -5.204145 1.409907) (xy -5.231909 1.36949) (xy -5.266549 1.321514) (xy -5.309507 1.264022) (xy -5.362227 1.195057) (xy -5.426151 1.112661) (xy -5.502721 1.014876) (xy -5.593381 0.899745) (xy -5.699574 0.76531) (xy -5.711568 0.750141) (xy -6.130325 0.220588) (xy -6.134378 0.807078) (xy -6.135195 0.982749) (xy -6.135021 1.131468) (xy -6.133849 1.253725) (xy -6.131669 1.350011) (xy -6.128474 1.420817) (xy -6.124256 1.466631) (xy -6.122838 1.475321) (xy -6.100591 1.566865) (xy -6.071443 1.649392) (xy -6.038182 1.715747) (xy -6.0182 1.74389) (xy -5.983722 1.784865) (xy -6.637914 1.784865) (xy -6.793969 1.784731) (xy -6.924467 1.784297) (xy -7.03131 1.783511) (xy -7.116398 1.782324) (xy -7.181635 1.780683) (xy -7.228921 1.778539) (xy -7.260157 1.775841) (xy -7.277246 1.772538) (xy -7.282088 1.768579) (xy -7.281753 1.767702) (xy -7.267885 1.746769) (xy -7.244732 1.713588) (xy -7.232754 1.696807) (xy -7.220369 1.68006) (xy -7.209237 1.665085) (xy -7.199288 1.650406) (xy -7.190451 1.634551) (xy -7.182657 1.616045) (xy -7.175835 1.593415) (xy -7.169916 1.565187) (xy -7.164829 1.529887) (xy -7.160504 1.486042) (xy -7.156871 1.432178) (xy -7.15386 1.36682) (xy -7.151401 1.288496) (xy -7.149423 1.195732) (xy -7.147858 1.087053) (xy -7.146634 0.960987) (xy -7.145681 0.816058) (xy -7.14493 0.650794) (xy -7.144311 0.463721) (xy -7.143752 0.253365) (xy -7.143185 0.018252) (xy -7.142655 -0.197741) (xy -7.142155 -0.438535) (xy -7.141895 -0.668274) (xy -7.141868 -0.885493) (xy -7.142067 -1.088722) (xy -7.142486 -1.276496) (xy -7.143118 -1.447345) (xy -7.143956 -1.599803) (xy -7.144992 -1.732403) (xy -7.14622 -1.843676) (xy -7.147633 -1.932156) (xy -7.149225 -1.996375) (xy -7.150987 -2.034865) (xy -7.151321 -2.038933) (xy -7.163466 -2.132248) (xy -7.182427 -2.20719) (xy -7.211302 -2.272594) (xy -7.25319 -2.337293) (xy -7.258429 -2.344352) (xy -7.291884 -2.388973) (xy -7.658315 -2.388973) (xy -7.659054 -2.307479) (xy -7.659893 -2.16809) (xy -7.660498 -2.010539) (xy -7.660905 -1.833691) (xy -7.66115 -1.63641) (xy -7.661267 -1.41756) (xy -7.661295 -1.176007) (xy -7.661267 -0.910615) (xy -7.66122 -0.620249) (xy -7.66119 -0.303773) (xy -7.661189 -0.240946) (xy -7.661172 0.078863) (xy -7.661112 0.372339) (xy -7.661002 0.64061) (xy -7.660833 0.884802) (xy -7.660597 1.106043) (xy -7.660284 1.30546) (xy -7.659885 1.48418) (xy -7.659393 1.643329) (xy -7.658797 1.784034) (xy -7.65809 1.907424) (xy -7.657263 2.014624) (xy -7.656307 2.106762) (xy -7.655213 2.184965) (xy -7.653973 2.250359) (xy -7.652578 2.304072) (xy -7.651018 2.347231) (xy -7.649286 2.380963) (xy -7.647372 2.406395) (xy -7.645268 2.424653) (xy -7.642966 2.436866) (xy -7.640455 2.444159) (xy -7.640363 2.444341) (xy -7.635192 2.455482) (xy -7.630885 2.465569) (xy -7.626121 2.474654) (xy -7.619578 2.482788) (xy -7.609935 2.490024) (xy -7.595871 2.496414) (xy -7.576063 2.502011) (xy -7.549191 2.506867) (xy -7.513933 2.511034) (xy -7.468968 2.514564) (xy -7.412974 2.517509) (xy -7.344629 2.519923) (xy -7.262614 2.521856) (xy -7.165605 2.523362) (xy -7.052282 2.524492) (xy -6.921323 2.525298) (xy -6.771407 2.525834) (xy -6.601213 2.526151) (xy -6.409418 2.526301) (xy -6.194702 2.526337) (xy -5.955743 2.526311) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp c51b4129-c609-4071-9aee-8812a73e4fbf)) (fp_poly (pts (xy -1.938373 -3.640791) (xy -1.869857 -3.652287) (xy -1.817235 -3.670159) (xy -1.783 -3.693691) (xy -1.773671 -3.707116) (xy -1.764185 -3.73834) (xy -1.770569 -3.766587) (xy -1.790722 -3.793374) (xy -1.822037 -3.805905) (xy -1.867475 -3.804888) (xy -1.902618 -3.798098) (xy -1.980711 -3.785163) (xy -2.060518 -3.783934) (xy -2.149847 -3.794433) (xy -2.174521 -3.798882) (xy -2.257583 -3.8223) (xy -2.322565 -3.857137) (xy -2.368753 -3.902796) (xy -2.395437 -3.958686) (xy -2.400955 -3.98758) (xy -2.397343 -4.046204) (xy -2.374021 -4.098071) (xy -2.333116 -4.14217) (xy -2.276751 -4.177491) (xy -2.207052 -4.203021) (xy -2.126144 -4.217751) (xy -2.036152 -4.22067) (xy -1.939202 -4.210767) (xy -1.933728 -4.209833) (xy -1.895167 -4.202651) (xy -1.873786 -4.195713) (xy -1.864519 -4.185419) (xy -1.862298 -4.168168) (xy -1.862248 -4.159033) (xy -1.862248 -4.120681) (xy -1.930723 -4.120681) (xy -1.991192 -4.116539) (xy -2.032457 -4.103339) (xy -2.056467 -4.079922) (xy -2.065169 -4.045128) (xy -2.065275 -4.040586) (xy -2.060184 -4.010846) (xy -2.042725 -3.989611) (xy -2.010231 -3.975558) (xy -1.960035 -3.967365) (xy -1.911415 -3.964353) (xy -1.840748 -3.962625) (xy -1.78949 -3.965262) (xy -1.754531 -3.974992) (xy -1.732762 -3.994545) (xy -1.721072 -4.026648) (xy -1.716352 -4.07403) (xy -1.715492 -4.136263) (xy -1.716901 -4.205727) (xy -1.72114 -4.252978) (xy -1.728228 -4.278204) (xy -1.729603 -4.28018) (xy -1.76852 -4.3117) (xy -1.825578 -4.336662) (xy -1.897161 -4.354532) (xy -1.97965 -4.364778) (xy -2.069431 -4.366865) (xy -2.162884 -4.36026) (xy -2.217848 -4.352148) (xy -2.304058 -4.327746) (xy -2.384184 -4.287854) (xy -2.451269 -4.236079) (xy -2.461465 -4.225731) (xy -2.494594 -4.182227) (xy -2.524486 -4.12831) (xy -2.547649 -4.071784) (xy -2.56059 -4.020451) (xy -2.56215 -4.000736) (xy -2.55551 -3.959611) (xy -2.53786 -3.908444) (xy -2.512589 -3.854586) (xy -2.483081 -3.805387) (xy -2.457011 -3.772526) (xy -2.396057 -3.723644) (xy -2.317261 -3.684737) (xy -2.223449 -3.656686) (xy -2.117442 -3.640371) (xy -2.020292 -3.636384) (xy -1.938373 -3.640791) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp df04c78d-6b15-483f-bce7-12d3ba3f502e)) (fp_poly (pts (xy 6.84227 2.043175) (xy 6.959041 2.042696) (xy 6.998729 2.042455) (xy 7.544486 2.038865) (xy 7.551351 -0.054919) (xy 7.552258 -0.338842) (xy 7.553062 -0.59664) (xy 7.553815 -0.829646) (xy 7.554569 -1.039194) (xy 7.555375 -1.226618) (xy 7.556285 -1.39325) (xy 7.557351 -1.540425) (xy 7.558624 -1.669477) (xy 7.560156 -1.781739) (xy 7.561998 -1.878544) (xy 7.564203 -1.961226) (xy 7.566822 -2.031119) (xy 7.569906 -2.089557) (xy 7.573508 -2.137872) (xy 7.577678 -2.1774) (xy 7.582469 -2.209473) (xy 7.587931 -2.235424) (xy 7.594118 -2.256589) (xy 7.60108 -2.274299) (xy 7.608869 -2.289889) (xy 7.617537 -2.304693) (xy 7.627135 -2.320044) (xy 7.637715 -2.337276) (xy 7.639884 -2.340946) (xy 7.676268 -2.403031) (xy 7.150431 -2.399434) (xy 6.624594 -2.395838) (xy 6.617729 -2.280331) (xy 6.613992 -2.224899) (xy 6.610097 -2.192851) (xy 6.604811 -2.180135) (xy 6.596903 -2.182696) (xy 6.59027 -2.190024) (xy 6.561374 -2.216714) (xy 6.514279 -2.251021) (xy 6.45562 -2.288846) (xy 6.392031 -2.32609) (xy 6.330149 -2.358653) (xy 6.282634 -2.380077) (xy 6.171316 -2.415283) (xy 6.043596 -2.440222) (xy 5.908901 -2.453941) (xy 5.776663 -2.455486) (xy 5.656308 -2.443906) (xy 5.654326 -2.443574) (xy 5.489641 -2.40225) (xy 5.335479 -2.336412) (xy 5.193328 -2.247474) (xy 5.064675 -2.136852) (xy 4.951007 -2.005961) (xy 4.85381 -1.856216) (xy 4.774572 -1.689033) (xy 4.73143 -1.56519) (xy 4.702979 -1.461581) (xy 4.68188 -1.361252) (xy 4.667488 -1.258109) (xy 4.659158 -1.146057) (xy 4.656245 -1.019001) (xy 4.657535 -0.915252) (xy 5.67065 -0.915252) (xy 5.675444 -1.089222) (xy 5.690568 -1.238895) (xy 5.716485 -1.365597) (xy 5.753663 -1.470658) (xy 5.802565 -1.555406) (xy 5.863658 -1.621169) (xy 5.934177 -1.667659) (xy 5.970871 -1.685014) (xy 6.002696 -1.695419) (xy 6.038177 -1.700179) (xy 6.085841 -1.700601) (xy 6.137189 -1.698748) (xy 6.238169 -1.689841) (xy 6.318035 -1.672398) (xy 6.343135 -1.663661) (xy 6.400448 -1.637857) (xy 6.460897 -1.605453) (xy 6.487297 -1.589233) (xy 6.555946 -1.544205) (xy 6.555946 -0.116982) (xy 6.480432 -0.071718) (xy 6.375121 -0.020572) (xy 6.267525 0.009676) (xy 6.161581 0.019205) (xy 6.061224 0.008193) (xy 5.970387 -0.023181) (xy 5.893007 -0.07474) (xy 5.868039 -0.099488) (xy 5.807856 -0.180577) (xy 5.759145 -0.278734) (xy 5.721499 -0.395643) (xy 5.694512 -0.532985) (xy 5.677775 -0.692444) (xy 5.670883 -0.8757) (xy 5.67065 -0.915252) (xy 4.657535 -0.915252) (xy 4.658073 -0.872067) (xy 4.669647 -0.646053) (xy 4.69292 -0.442192) (xy 4.728504 -0.257513) (xy 4.777013 -0.089048) (xy 4.83906 0.066174) (xy 4.861201 0.112192) (xy 4.950385 0.262261) (xy 5.058159 0.395623) (xy 5.18199 0.510123) (xy 5.319342 0.603611) (xy 5.467683 0.673932) (xy 5.556604 0.70294) (xy 5.643933 0.72016) (xy 5.749011 0.730406) (xy 5.863029 0.733682) (xy 5.977177 0.729991) (xy 6.082648 0.71934) (xy 6.167334 0.70263) (xy 6.268128 0.66986) (xy 6.365822 0.627721) (xy 6.451296 0.580481) (xy 6.496789 0.548419) (xy 6.528169 0.524578) (xy 6.550142 0.510061) (xy 6.555141 0.508) (xy 6.55669 0.521282) (xy 6.558135 0.559337) (xy 6.559443 0.619481) (xy 6.560583 0.699027) (xy 6.561521 0.795289) (xy 6.562226 0.905581) (xy 6.562667 1.027219) (xy 6.562811 1.151115) (xy 6.56273 1.309804) (xy 6.562335 1.443592) (xy 6.561395 1.55504) (xy 6.55968 1.646705) (xy 6.556957 1.721147) (xy 6.552997 1.780925) (xy 6.547569 1.828598) (xy 6.540441 1.866726) (xy 6.531384 1.897866) (xy 6.520167 1.924579) (xy 6.506558 1.949423) (xy 6.490328 1.974957) (xy 6.48824 1.978119) (xy 6.467306 2.01119) (xy 6.454667 2.033931) (xy 6.452973 2.038728) (xy 6.466216 2.040241) (xy 6.504002 2.041472) (xy 6.563416 2.042401) (xy 6.641542 2.043008) (xy 6.735465 2.043273) (xy 6.84227 2.043175) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp dfea10a7-1cbe-4c44-a951-08c8c82414b9)) (fp_poly (pts (xy -3.679995 -3.636543) (xy -3.60518 -3.641773) (xy -3.535598 -3.649942) (xy -3.475294 -3.660742) (xy -3.428312 -3.673865) (xy -3.398698 -3.689005) (xy -3.394152 -3.693461) (xy -3.378346 -3.728042) (xy -3.383139 -3.763543) (xy -3.407656 -3.793917) (xy -3.408826 -3.794788) (xy -3.423246 -3.804146) (xy -3.4383 -3.809068) (xy -3.459297 -3.809665) (xy -3.491549 -3.806053) (xy -3.540365 -3.798346) (xy -3.544292 -3.797697) (xy -3.617031 -3.788761) (xy -3.695509 -3.784353) (xy -3.774219 -3.784311) (xy -3.847653 -3.788471) (xy -3.910303 -3.796671) (xy -3.956662 -3.808749) (xy -3.959708 -3.809963) (xy -3.99334 -3.828807) (xy -4.005156 -3.847877) (xy -3.995906 -3.866631) (xy -3.966339 -3.884529) (xy -3.917203 -3.901029) (xy -3.849249 -3.915588) (xy -3.803937 -3.922598) (xy -3.709748 -3.936081) (xy -3.634836 -3.948406) (xy -3.576009 -3.960641) (xy -3.530077 -3.973853) (xy -3.493847 -3.989109) (xy -3.46413 -4.007477) (xy -3.437734 -4.030023) (xy -3.416522 -4.052163) (xy -3.391357 -4.083011) (xy -3.378973 -4.109537) (xy -3.3751 -4.142218) (xy -3.374959 -4.154187) (xy -3.377868 -4.193904) (xy -3.389494 -4.223451) (xy -3.409615 -4.249678) (xy -3.450508 -4.289768) (xy -3.496109 -4.320341) (xy -3.549805 -4.342395) (xy -3.614984 -4.356927) (xy -3.695036 -4.364933) (xy -3.793349 -4.36741) (xy -3.809581 -4.367369) (xy -3.875141 -4.36601) (xy -3.940158 -4.362922) (xy -3.997544 -4.358548) (xy -4.040214 -4.353332) (xy -4.043664 -4.352733) (xy -4.086088 -4.342683) (xy -4.122072 -4.329988) (xy -4.142442 -4.318382) (xy -4.161399 -4.287764) (xy -4.162719 -4.25211) (xy -4.146377 -4.220336) (xy -4.142721 -4.216743) (xy -4.127607 -4.206068) (xy -4.108707 -4.201468) (xy -4.079454 -4.202251) (xy -4.043943 -4.206319) (xy -4.004262 -4.209954) (xy -3.948637 -4.21302) (xy -3.883698 -4.215245) (xy -3.816077 -4.216356) (xy -3.798292 -4.216429) (xy -3.73042 -4.216156) (xy -3.680746 -4.214838) (xy -3.644902 -4.212019) (xy -3.618516 -4.207242) (xy -3.597218 -4.200049) (xy -3.584418 -4.194059) (xy -3.556292 -4.177425) (xy -3.53836 -4.16236) (xy -3.535739 -4.158089) (xy -3.541268 -4.140455) (xy -3.567552 -4.123384) (xy -3.61277 -4.10765) (xy -3.6751 -4.09403) (xy -3.693463 -4.090996) (xy -3.789382 -4.07593) (xy -3.865933 -4.063338) (xy -3.926072 -4.052303) (xy -3.972752 -4.041912) (xy -4.008929 -4.031248) (xy -4.037557 -4.019397) (xy -4.06159 -4.005443) (xy -4.083984 -3.988473) (xy -4.107694 -3.96757) (xy -4.115672 -3.960241) (xy -4.143645 -3.932891) (xy -4.158452 -3.911221) (xy -4.164244 -3.886424) (xy -4.165181 -3.855175) (xy -4.154867 -3.793897) (xy -4.124044 -3.741832) (xy -4.072887 -3.69915) (xy -4.001575 -3.666017) (xy -3.950692 -3.651156) (xy -3.895392 -3.641558) (xy -3.829145 -3.636128) (xy -3.755998 -3.634559) (xy -3.679995 -3.636543) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp f88362d2-4cb0-4f5f-872f-1848d7137873)) (fp_poly (pts (xy 0.242051 -3.635452) (xy 0.318409 -3.636366) (xy 0.376925 -3.638503) (xy 0.419963 -3.642367) (xy 0.449891 -3.648459) (xy 0.469076 -3.657282) (xy 0.479884 -3.669338) (xy 0.484681 -3.685131) (xy 0.485835 -3.705162) (xy 0.485841 -3.707527) (xy 0.484839 -3.730184) (xy 0.480104 -3.747695) (xy 0.469041 -3.760766) (xy 0.449056 -3.770105) (xy 0.417554 -3.776419) (xy 0.37194 -3.780414) (xy 0.309621 -3.782798) (xy 0.228001 -3.784278) (xy 0.202985 -3.784606) (xy -0.039092 -3.787659) (xy -0.042478 -3.85257) (xy -0.045863 -3.917481) (xy 0.122284 -3.917481) (xy 0.187974 -3.917723) (xy 0.23488 -3.918748) (xy 0.266791 -3.921003) (xy 0.287499 -3.924934) (xy 0.300792 -3.93099) (xy 0.310463 -3.939616) (xy 0.310525 -3.939685) (xy 0.328064 -3.973304) (xy 0.32743 -4.00964) (xy 0.309022 -4.040615) (xy 0.305379 -4.043799) (xy 0.292449 -4.052004) (xy 0.274732 -4.057713) (xy 0.248278 -4.061354) (xy 0.20914 -4.063359) (xy 0.15337 -4.064156) (xy 0.117702 -4.064237) (xy -0.044737 -4.064237) (xy -0.044737 -4.222281) (xy 0.201869 -4.222281) (xy 0.283288 -4.222423) (xy 0.345118 -4.223006) (xy 0.390345 -4.22426) (xy 0.421956 -4.226419) (xy 0.442939 -4.229715) (xy 0.456281 -4.234381) (xy 0.464969 -4.240649) (xy 0.467158 -4.242925) (xy 0.483322 -4.274472) (xy 0.484505 -4.31036) (xy 0.471244 -4.341477) (xy 0.460751 -4.351463) (xy 0.449837 -4.356961) (xy 0.432925 -4.361214) (xy 0.407341 -4.364372) (xy 0.370409 -4.366584) (xy 0.319454 -4.367998) (xy 0.251802 -4.368764) (xy 0.164777 -4.36903) (xy 0.145102 -4.369037) (xy 0.056619 -4.368979) (xy -0.012065 -4.368659) (xy -0.063728 -4.367859) (xy -0.101147 -4.366359) (xy -0.127102 -4.363941) (xy -0.14437 -4.360386) (xy -0.15573 -4.355474) (xy -0.16396 -4.348987) (xy -0.168475 -4.34433) (xy -0.175271 -4.336081) (xy -0.18058 -4.325861) (xy -0.184586 -4.310992) (xy -0.187471 -4.288794) (xy -0.189418 -4.256585) (xy -0.190611 -4.211688) (xy -0.191231 -4.15142) (xy -0.191463 -4.073103) (xy -0.191492 -4.007186) (xy -0.191421 -3.91482) (xy -0.191084 -3.842309) (xy -0.190294 -3.786929) (xy -0.188866 -3.745957) (xy -0.186613 -3.71667) (xy -0.183349 -3.696345) (xy -0.178888 -3.682258) (xy -0.173044 -3.671687) (xy -0.168095 -3.665003) (xy -0.144698 -3.635259) (xy 0.145482 -3.635259) (xy 0.242051 -3.635452) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp f9eea97b-b5c5-4fb3-a982-71d4c003a44e)) (fp_poly (pts (xy 1.030017 -3.635467) (xy 1.158996 -3.639828) (xy 1.268699 -3.653053) (xy 1.360934 -3.675933) (xy 1.43751 -3.709262) (xy 1.500235 -3.75383) (xy 1.55092 -3.810428) (xy 1.591371 -3.87985) (xy 1.592167 -3.881543) (xy 1.616309 -3.943675) (xy 1.624911 -3.998701) (xy 1.617939 -4.054079) (xy 1.595362 -4.117265) (xy 1.59108 -4.126881) (xy 1.56188 -4.183158) (xy 1.529064 -4.226643) (xy 1.48671 -4.263609) (xy 1.428898 -4.300327) (xy 1.425539 -4.302244) (xy 1.375212 -4.326419) (xy 1.318329 -4.344474) (xy 1.251235 -4.357031) (xy 1.170273 -4.364714) (xy 1.07179 -4.368145) (xy 1.036994 -4.368443) (xy 0.871302 -4.369037) (xy 0.847905 -4.339292) (xy 0.840965 -4.329511) (xy 0.83555 -4.318089) (xy 0.831473 -4.302287) (xy 0.828545 -4.279367) (xy 0.826575 -4.246588) (xy 0.825933 -4.222281) (xy 0.982552 -4.222281) (xy 1.076434 -4.222281) (xy 1.131372 -4.220675) (xy 1.187768 -4.216447) (xy 1.234053 -4.210484) (xy 1.236847 -4.209982) (xy 1.319056 -4.187928) (xy 1.382822 -4.154792) (xy 1.43016 -4.109039) (xy 1.46309 -4.049131) (xy 1.468816 -4.033253) (xy 1.474429 -4.008525) (xy 1.471999 -3.984094) (xy 1.460175 -3.951592) (xy 1.453048 -3.935626) (xy 1.429708 -3.893198) (xy 1.401588 -3.863432) (xy 1.370648 -3.842703) (xy 1.308674 -3.815729) (xy 1.229359 -3.79619) (xy 1.136961 -3.784938) (xy 1.070041 -3.782462) (xy 0.982552 -3.782014) (xy 0.982552 -4.222281) (xy 0.825933 -4.222281) (xy 0.825376 -4.201213) (xy 0.824758 -4.140503) (xy 0.824533 -4.061718) (xy 0.824508 -4.000112) (xy 0.824508 -3.690677) (xy 0.852217 -3.662968) (xy 0.864514 -3.651736) (xy 0.877811 -3.644045) (xy 0.89638 -3.639232) (xy 0.924494 -3.636638) (xy 0.966425 -3.635602) (xy 1.026445 -3.635462) (xy 1.030017 -3.635467) ) (layer "B.Cu") (width 0.01) (fill solid) (tstamp fb4d994e-c8cb-4eab-a568-76e6853b4efc)) ) (gr_rect (start 49.175 130.05) (end 55.425 130.8) (layer "F.SilkS") (width 0.15) (fill solid) (tstamp 2d71069e-a2f8-437d-802f-005af2f14c8e)) (gr_rect (start 49.175 128.3) (end 55.425 132.55) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e)) (gr_poly (pts (xy 91.9 99.35) (xy 90.9 99.85) (xy 90.9 98.75) ) (layer "F.SilkS") (width 0.15) (fill solid) (tstamp a3830a89-6504-4aa9-908f-667390bf83a9)) (gr_rect (start 51.05 128.3) (end 51.8 132.55) (layer "F.SilkS") (width 0.15) (fill solid) (tstamp ef0fc819-5b4e-40b8-9e22-a9c39d42faa8)) (gr_line (start 167.5 135.5) (end 42.5 135.5) (layer "Edge.Cuts") (width 0.1) (tstamp 2c7b3573-bac5-47d3-b299-6dfb2ac5593e)) (gr_line (start 37.5 130.5) (end 37.5 59) (layer "Edge.Cuts") (width 0.1) (tstamp 3a341901-4599-44f7-b5f7-bd505a2243f0)) (gr_arc (start 37.5 59) (mid 38.964466 55.464466) (end 42.5 54) (layer "Edge.Cuts") (width 0.1) (tstamp 6ff94a57-ef21-4e17-8509-208328b9cad1)) (gr_line (start 42.5 54) (end 167.5 54) (layer "Edge.Cuts") (width 0.1) (tstamp 91128ecb-2649-4d0f-96ca-569df696b34f)) (gr_arc (start 172.5 130.5) (mid 171.035534 134.035534) (end 167.5 135.5) (layer "Edge.Cuts") (width 0.1) (tstamp 9f4ca102-edda-484d-9e77-9169b2b32a8f)) (gr_arc (start 42.5 135.5) (mid 38.964466 134.035534) (end 37.5 130.5) (layer "Edge.Cuts") (width 0.1) (tstamp d890b947-ae68-4d42-96d5-05f405e8578c)) (gr_line (start 172.5 59) (end 172.5 130.5) (layer "Edge.Cuts") (width 0.1) (tstamp e45ac9f9-41a4-4dff-bb00-c5ae46a84260)) (gr_arc (start 167.5 54) (mid 171.035534 55.464466) (end 172.5 59) (layer "Edge.Cuts") (width 0.1) (tstamp fc9f96fb-a5c2-4557-81ab-8e77de99e21c)) (gr_text "3.3V" (at 56.9 77.3) (layer "F.SilkS") (tstamp 005e0d8d-b943-464e-af2c-f96930a8ff84) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "12V (AUX)" (at 56.75 60.5) (layer "F.SilkS") (tstamp 07e9c79f-3c76-46e7-aa40-281cd164254e) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "MB FAN4" (at 139 55.1 180) (layer "F.SilkS") (tstamp 09d46638-717b-4f06-8956-78beef429796) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN3" (at 155.15 83.9 90) (layer "F.SilkS") (tstamp 0f08db72-3aa7-48d6-ab52-ba1cc6a7be0e) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN1" (at 107.1 117.7) (layer "F.SilkS") (tstamp 11a5c39c-67a1-4a35-a620-07830da62f1a) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "5V" (at 83.8 78.8) (layer "F.SilkS") (tstamp 1a0ae3a6-83b0-4211-b4fd-9efadc0316e8) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "GND" (at 97 96.75) (layer "F.SilkS") (tstamp 1bc470f8-643d-44a2-9bc5-b1d4dfd39e7d) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 155.15 78.1 90) (layer "F.SilkS") (tstamp 1f75ab75-4b08-4b8f-9cf7-c51aadce2209) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FanPico v1.3\nby\nTimo Kokkonen \n2022-04-11\n\ngithub.com/tjko/fanpico" (at 125.05 92.65) (layer "F.SilkS") (tstamp 21b2d000-a302-44cb-bc67-350475ec7fc7) (effects (font (size 1.2 1.2) (thickness 0.15))) ) (gr_text "FAN6" (at 159.7 97.75 90) (layer "F.SilkS") (tstamp 24da94ac-4f72-42af-a3fd-d82c2aa7a4c5) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN1" (at 104.1 122.2) (layer "F.SilkS") (tstamp 293c96f8-a9f5-4847-9ff2-69da0a5bc600) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "100k" (at 85 69.25 180) (layer "F.SilkS") (tstamp 2bfb7be8-f767-41db-a14a-fc33aa1433e4) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (gr_text "100k" (at 88.8 69.25 180) (layer "F.SilkS") (tstamp 2f39447e-493d-4968-8852-b8800a708731) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (gr_text "FAN2" (at 118.4 117.7) (layer "F.SilkS") (tstamp 3f417c48-d3f8-42c4-bf5b-06aefa175d4e) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "SENSOR1" (at 82.3 56.6 180) (layer "F.SilkS") (tstamp 4416ed46-3141-4f6f-ac61-feb10f872ed6) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX POWER" (at 52.95 70.45 270) (layer "F.SilkS") (tstamp 4d864871-6255-4aed-9ed6-3bed961863e1) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN8" (at 171.75 75.25 90) (layer "F.SilkS") (tstamp 4dba8982-b778-4f6b-a90e-5fb42497c964) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "MB FAN3\n" (at 127.5 62.9 180) (layer "F.SilkS") (tstamp 4ea1b991-35dc-4395-9155-35b9725ef261) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN1" (at 104.1 134.5) (layer "F.SilkS") (tstamp 52f85727-5cd9-4c74-8650-a3c0fa37a688) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 67 60.85 180) (layer "F.SilkS") (tstamp 5d057e35-b67e-4817-b3c2-a0faa509c19c) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN3" (at 127.1 134.5) (layer "F.SilkS") (tstamp 5e499852-b518-49d2-a1ed-8042c9891343) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 155.15 100.6 90) (layer "F.SilkS") (tstamp 5e9abfec-56ff-444e-9cb7-102616692681) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "SENSOR1" (at 82.3 64.6 180) (layer "F.SilkS") (tstamp 66dd6af7-4245-4df4-9421-4f19ff9b02b1) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN7" (at 171.75 86.5 90) (layer "F.SilkS") (tstamp 6d7a4604-f694-46e1-a968-2fdc0236f281) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN6" (at 171.75 97.75 90) (layer "F.SilkS") (tstamp 6fd223b5-d34a-4711-8e81-84e4179ec501) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 135.7 117.7) (layer "F.SilkS") (tstamp 72c5ec79-e9f0-4bdd-95ee-dc4dcc32d957) (effects (font (size 0.74 0.75) (thickness 0.15))) ) (gr_text "DEBUG" (at 91.4 96 90) (layer "F.SilkS") (tstamp 770afe77-ec8c-4682-a06a-d1f23105037b) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN3" (at 129.9 117.7) (layer "F.SilkS") (tstamp 77420fc6-2d27-4b9f-9f9d-f4f27745e35a) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN8" (at 159.7 75.25 90) (layer "F.SilkS") (tstamp 784ec69c-e809-470f-b569-03b089dc58ec) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "10k" (at 94.2 69.225 180) (layer "F.SilkS") (tstamp 7bfdc9ed-85ce-48c6-9880-10ab6eb6c9af) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (gr_text "AUX" (at 101.6 117.7) (layer "F.SilkS") (tstamp 7d3704b4-fc17-4b2a-ac4d-0e31a099b6b7) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN2" (at 115.6 122.2) (layer "F.SilkS") (tstamp 7d929019-0653-48b0-b8c3-fe7247739f05) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN4" (at 138.7 122.2) (layer "F.SilkS") (tstamp 7fe752dd-4bbf-4450-b28b-0b0a16fded4a) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "SWCLK" (at 98 99.25) (layer "F.SilkS") (tstamp 8520b38f-3649-420c-8d1d-edd68a3b9d7e) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "MB FAN4" (at 139 62.9 180) (layer "F.SilkS") (tstamp 88ae8354-f5e2-46bd-9219-b43b2c65fd78) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "RESET" (at 40.3 122 270) (layer "F.SilkS") (tstamp 916e8d4c-532d-4061-9c96-c2e65884e105) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN1" (at 72.35 60.85 180) (layer "F.SilkS") (tstamp 9254a345-3c96-4aab-ab4c-c4747c02eb39) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "MB FAN1" (at 104.5 55.1 180) (layer "F.SilkS") (tstamp 9467ef23-52d1-4b0c-a385-f3384107a043) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "10k" (at 79.6 69.225 180) (layer "F.SilkS") (tstamp 9e3863f9-4fac-4ea3-a937-dec002d7bc1e) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (gr_text "SENSOR2" (at 91.1 56.6 180) (layer "F.SilkS") (tstamp a0c22e18-cc4b-46fd-8af9-c6618f778cf6) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN4" (at 141.1 117.7) (layer "F.SilkS") (tstamp a6563a89-59f1-4ce1-a80e-2dae1dfbbb77) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN5" (at 159.7 109 90) (layer "F.SilkS") (tstamp aebcf015-6cd1-44b0-a980-1232d83d75fa) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN5" (at 171.75 109 90) (layer "F.SilkS") (tstamp afdeb3aa-3922-4312-add7-d7b04b7cb4e3) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN4" (at 138.7 134.5) (layer "F.SilkS") (tstamp b37072bc-4cc6-449d-8ad2-cadefb35af34) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN2" (at 115.6 134.5) (layer "F.SilkS") (tstamp b7a4a365-c104-4c82-86fb-5b19560a6eb0) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN3" (at 127.1 122.2) (layer "F.SilkS") (tstamp bcaf5622-a67d-42c9-bc38-f553924017a2) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 113 117.7) (layer "F.SilkS") (tstamp c9da14dd-a2f6-496d-accb-9527cd6e9c3a) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "MB FAN3\n" (at 127.5 55.1 180) (layer "F.SilkS") (tstamp ce5ed2dc-0c8c-4975-881e-ef9c87e4f2d6) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "MB FAN1" (at 104.5 62.9 180) (layer "F.SilkS") (tstamp ce7d8359-3eaa-47be-b682-6f8f43d6c2a7) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "SENSOR2" (at 91.1 64.6 180) (layer "F.SilkS") (tstamp d3168e5a-881c-4c53-a21f-a85a6828c456) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "MB FAN2" (at 116 55.1 180) (layer "F.SilkS") (tstamp d52b3d32-801d-4524-8c5e-561d010e2806) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "JLCJLCJLCJLC" (at 74.25 102.25) (layer "F.SilkS") (tstamp debf45ec-e862-4f94-8c02-30d17d9a3c5d) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "Main Power" (at 69.6 66 180) (layer "F.SilkS") (tstamp df574e9b-8f32-40e3-99f8-a0619b978e00) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 124.5 117.7) (layer "F.SilkS") (tstamp dfb43a58-960b-4fd3-8dff-c9399c3f7bb7) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN1" (at 155.15 106.45 90) (layer "F.SilkS") (tstamp e35f9582-cd8e-4f05-a05a-9113aa4ee893) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "SWDIO" (at 97.75 94.25) (layer "F.SilkS") (tstamp e9cbbb75-4722-4acb-9cfb-f4a7b6fbfae6) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "USB Power" (at 38.9 81.4 270) (layer "F.SilkS") (tstamp eaece356-bd32-4b59-977f-c84615c36577) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN4" (at 155.15 72.75 90) (layer "F.SilkS") (tstamp eccb0fdd-7dae-49e4-868a-c4ac45cbddec) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "AUX" (at 155.15 111.9 90) (layer "F.SilkS") (tstamp ef345b7f-b1c0-4be2-ab00-624df87f1ad9) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "MB FAN2" (at 116 62.9 180) (layer "F.SilkS") (tstamp f40bd020-88ef-4007-ae6b-4e6572e8be48) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "FAN7" (at 159.7 86.5 90) (layer "F.SilkS") (tstamp fbc280c6-fe68-4714-ab83-c2c8c136047a) (effects (font (size 1 1) (thickness 0.15))) ) (gr_text "AUX" (at 155.15 89.3 90) (layer "F.SilkS") (tstamp fbe7d685-962d-4fc0-8357-884fe30d4460) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (gr_text "FAN2" (at 155.15 95.2 90) (layer "F.SilkS") (tstamp fc84f0b4-f5ed-4f4e-a6a2-d863a0189320) (effects (font (size 0.75 0.75) (thickness 0.15))) ) (segment (start 66 85.1) (end 72.80625 85.1) (width 0.5) (layer "F.Cu") (net 1) (tstamp 046c6fc2-ab16-40fe-8421-f518a309ee11)) (segment (start 77.7 122.215) (end 77.475 122.44) (width 0.2) (layer "F.Cu") (net 1) (tstamp 15ad9043-9739-4ccb-bf51-f23f62597bfd)) (segment (start 67.2 122.215) (end 66.975 122.44) (width 0.2) (layer "F.Cu") (net 1) (tstamp 16816968-feb9-44b9-a63a-19ea292dcc23)) (segment (start 81.875 83.75) (end 81.875 83.625) (width 0.2) (layer "F.Cu") (net 1) (tstamp 1effee52-c6fb-41eb-be54-b2788c95f179)) (segment (start 67.2 120.6625) (end 67.2 122.215) (width 0.2) (layer "F.Cu") (net 1) (tstamp 324781b2-7472-402c-a7b3-d1efb94251ca)) (segment (start 77.535 122.5) (end 77.475 122.44) (width 0.2) (layer "F.Cu") (net 1) (tstamp 47821dd8-04e2-47f6-91f8-91c2bedbfd24)) (segment (start 81.875 83.625) (end 84.75 80.75) (width 0.2) (layer "F.Cu") (net 1) (tstamp 52419389-d86d-4292-b9cd-d7c3c9f81af3)) (segment (start 49.25 80.75) (end 49.25 77.7) (width 0.5) (layer "F.Cu") (net 1) (tstamp 612a87b9-3353-4247-bb15-c64508fb662e)) (segment (start 75.725 85.18125) (end 80.44375 85.18125) (width 0.2) (layer "F.Cu") (net 1) (tstamp 81caeb97-e0eb-4860-9cf1-6cab9214e27d)) (segment (start 62.9 76.6) (end 65.6 79.3) (width 0.5) (layer "F.Cu") (net 1) (tstamp 90fdbdfe-1ed1-434a-bae4-a345087ae78d)) (segment (start 77.8625 120.5) (end 77.7 120.6625) (width 0.2) (layer "F.Cu") (net 1) (tstamp 99d85977-9fd3-4b28-8efa-96c12ddde8e5)) (segment (start 80.5 122.5) (end 77.535 122.5) (width 0.2) (layer "F.Cu") (net 1) (tstamp a2143f16-659d-410c-84b4-5539f861552d)) (segment (start 49.25 77.7) (end 50.35 76.6) (width 0.5) (layer "F.Cu") (net 1) (tstamp a4425b24-58d5-44d4-be5c-ca319598d7d2)) (segment (start 65.6 84.7) (end 66 85.1) (width 0.5) (layer "F.Cu") (net 1) (tstamp a47910c1-e279-4dd5-b6e6-4064fd47d6c4)) (segment (start 67.3625 120.5) (end 68.5 120.5) (width 0.2) (layer "F.Cu") (net 1) (tstamp ac459e47-b2d1-41a9-b14b-7b98e355a8c2)) (segment (start 80.44375 85.18125) (end 81.875 83.75) (width 0.2) (layer "F.Cu") (net 1) (tstamp accfeeb4-5665-4b08-9771-af7728e34e0b)) (segment (start 65.6 79.3) (end 65.6 84.7) (width 0.5) (layer "F.Cu") (net 1) (tstamp b375d148-6693-43cb-950a-e21da16a89d5)) (segment (start 50.35 76.6) (end 62.9 76.6) (width 0.5) (layer "F.Cu") (net 1) (tstamp bfe4a10f-f57e-46d7-a674-56b85198e42e)) (segment (start 67.3625 120.5) (end 67.2 120.6625) (width 0.2) (layer "F.Cu") (net 1) (tstamp c3c463cc-72b6-43ee-9094-59f322a8e54d)) (segment (start 68.5 120.5) (end 69 121) (width 0.2) (layer "F.Cu") (net 1) (tstamp c3cede10-d76f-405e-acab-f98f8dc5d0be)) (segment (start 77.7 120.6625) (end 77.7 122.215) (width 0.2) (layer "F.Cu") (net 1) (tstamp d75a383f-098e-45c6-9197-06e96473f14c)) (segment (start 72.80625 85.1) (end 74.225 83.68125) (width 0.5) (layer "F.Cu") (net 1) (tstamp e6fb3a2d-5ccd-40df-abae-c4ef7310642f)) (segment (start 74.225 83.68125) (end 75.725 85.18125) (width 0.2) (layer "F.Cu") (net 1) (tstamp e9d4d856-185c-42cf-ae46-e9651f60651a)) (via (at 66 85.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 672d0c93-ed4d-4107-b8cf-5762ca8183de)) (via (at 69 121) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c68e048d-404c-4820-82a9-8bcc65442202)) (via (at 80.5 122.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f9db188b-4152-497e-bb83-8fabd2f606e4)) (segment (start 66.05 85.15) (end 66 85.1) (width 0.2) (layer "B.Cu") (net 1) (tstamp 1385713b-85b8-4371-b267-db4f947c935a)) (segment (start 77.1 106.325) (end 77.1 95.575) (width 0.2) (layer "B.Cu") (net 1) (tstamp 22a5cbbf-f32c-4246-8d46-1481f3c9569c)) (segment (start 81.3 122.2) (end 81.3 110.575) (width 0.2) (layer "B.Cu") (net 1) (tstamp 273c98c3-e641-4340-91f0-f4b9c5807ed8)) (segment (start 80.5 89.065006) (end 80.5 86.6) (width 0.2) (layer "B.Cu") (net 1) (tstamp 29cbcda3-086d-4099-9e47-dce13b486009)) (segment (start 78.725 93.95) (end 78.725 90.840006) (width 0.2) (layer "B.Cu") (net 1) (tstamp 30c7f4c4-7a5d-4055-8394-4c00b5462672)) (segment (start 78.725 90.840006) (end 80.5 89.065006) (width 0.2) (layer "B.Cu") (net 1) (tstamp 354a60db-8792-48ae-bf18-36c67a62e4a7)) (segment (start 80.5 122.5) (end 81 122.5) (width 0.2) (layer "B.Cu") (net 1) (tstamp 360c49d1-3e35-4732-820c-d19b7c68402a)) (segment (start 81 122.5) (end 81.3 122.2) (width 0.2) (layer "B.Cu") (net 1) (tstamp 52b53301-711a-4ab5-aa81-a1bae3dc2282)) (segment (start 79.099519 109.474519) (end 79.099519 108.324519) (width 0.2) (layer "B.Cu") (net 1) (tstamp 6c9a6596-a3ab-4bf4-a8ae-f08b526526fc)) (segment (start 79.45 109.825) (end 79.099519 109.474519) (width 0.2) (layer "B.Cu") (net 1) (tstamp 7050178e-d4c6-45b0-bec3-3bf71dd7b762)) (segment (start 66 86.3) (end 66 85.1) (width 0.2) (layer "B.Cu") (net 1) (tstamp 7bb77914-7e1d-4af7-9f12-d76ed06d946e)) (segment (start 77.1 95.575) (end 78.725 93.95) (width 0.2) (layer "B.Cu") (net 1) (tstamp 821bdaee-2df6-4d3d-9ef0-afe0c435d91a)) (segment (start 79.099519 108.324519) (end 77.1 106.325) (width 0.2) (layer "B.Cu") (net 1) (tstamp 8a75de5e-3969-485e-801e-fbf34696a90b)) (segment (start 81.3 110.575) (end 80.55 109.825) (width 0.2) (layer "B.Cu") (net 1) (tstamp 8f24682e-dbcb-49c7-a3eb-f16911e8471f)) (segment (start 80.5 86.6) (end 79.05 85.15) (width 0.2) (layer "B.Cu") (net 1) (tstamp a3480ffe-8101-430b-8341-190d82a0b263)) (segment (start 66 118) (end 66 86.3) (width 0.2) (layer "B.Cu") (net 1) (tstamp b8c66fc3-5a7e-468e-a50a-8ffd2acba2c2)) (segment (start 79.05 85.15) (end 66.05 85.15) (width 0.2) (layer "B.Cu") (net 1) (tstamp caaee309-ef0a-4f32-bf1c-6ae25c6a5892)) (segment (start 80.55 109.825) (end 79.45 109.825) (width 0.2) (layer "B.Cu") (net 1) (tstamp d3499156-7a1f-4627-a240-a453dbe3da57)) (segment (start 69 121) (end 66 118) (width 0.2) (layer "B.Cu") (net 1) (tstamp ee4cd9d0-da64-436f-a6da-21d39825b7ad)) (segment (start 167.4 112.8) (end 165.6 112.8) (width 0.75) (layer "F.Cu") (net 2) (tstamp 06885a45-a66d-44df-b205-7ec231120acf)) (segment (start 69.46 123.71) (end 69.75 124) (width 0.2) (layer "F.Cu") (net 2) (tstamp 06c19386-1262-4294-af00-ac0d9ceee7ca)) (segment (start 79.12 127.52) (end 79.5 127.9) (width 0.2) (layer "F.Cu") (net 2) (tstamp 06fb0634-82aa-432f-99c1-ccb027618b90)) (segment (start 89.77 127.48) (end 88.5 128.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 07134f05-32a7-4b7e-898e-a0f125b6fec9)) (segment (start 166 101.5) (end 164.1 99.6) (width 0.75) (layer "F.Cu") (net 2) (tstamp 0937504a-8530-43f8-bc50-850c676548b8)) (segment (start 150.0625 121.8) (end 150.1125 121.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 093ac6ba-2b65-4394-92d4-3269b170d78b)) (segment (start 123.8 69) (end 123.275 69.525) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0ad91c68-6ebd-4c6a-8172-ccfa119c6c5a)) (segment (start 101.1 125.4625) (end 101.1 125.6) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0b5fd824-4a92-4bf6-b4ab-559ada7a39c6)) (segment (start 112.7 125.5625) (end 112.7 125.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0ca01653-aa62-4d07-868d-e1a06431a578)) (segment (start 112.375 69.025) (end 113.25 69.025) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0d393a6c-d12b-4b93-8723-2c3d2aa40702)) (segment (start 93.05144 127.19856) (end 93.05144 124.05144) (width 0.2) (layer "F.Cu") (net 2) (tstamp 0f93b08b-3e35-4d3c-ab6d-b073ca1d4d1d)) (segment (start 123.4 129.9) (end 123.4 128.8) (width 0.75) (layer "F.Cu") (net 2) (tstamp 108391f9-62c6-40fa-a7b6-45855f29a944)) (segment (start 111.9 129.9) (end 111.9 128.8) (width 0.75) (layer "F.Cu") (net 2) (tstamp 147567de-3fb3-4acd-be2a-96e10ee48944)) (segment (start 164 77.1) (end 162.3 77.1) (width 0.75) (layer "F.Cu") (net 2) (tstamp 1535ed48-0341-4ec2-85f1-42d350ba9802)) (segment (start 111.9 128.8) (end 115.6 125.1) (width 0.75) (layer "F.Cu") (net 2) (tstamp 156f558f-d44b-4023-8e48-5a5847b9c220)) (segment (start 103.95 124.75) (end 104 124.75) (width 0.5) (layer "F.Cu") (net 2) (tstamp 1644df5e-3a6e-44da-aab1-a0e851091059)) (segment (start 120 65.6) (end 118.5 64) (width 0.2) (layer "F.Cu") (net 2) (tstamp 180154d6-ebae-4e87-9c6a-31aa62cc2130)) (segment (start 98 109) (end 96.25 110.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 18e2a33e-8c64-47e2-a97b-f5dbfe233a38)) (segment (start 69.75 128) (end 69.25 127.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp 19006285-b054-4415-b235-b4e39148fe41)) (segment (start 136.75 69) (end 136.75 70.15) (width 0.2) (layer "F.Cu") (net 2) (tstamp 190225ff-c63d-4923-8d9c-4fee1b5af67b)) (segment (start 44.5 89.5) (end 46.2125 87.7875) (width 0.2) (layer "F.Cu") (net 2) (tstamp 197639f1-5658-463e-ba6e-2c49231a43b5)) (segment (start 72.525 122.44) (end 72.525 121.975) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1e159cf7-eef7-4068-a126-fd1a8670ec0a)) (segment (start 72.585 130) (end 72.525 130.06) (width 0.2) (layer "F.Cu") (net 2) (tstamp 216445e2-3ed8-4a36-b8ed-212755df2bfd)) (segment (start 60.5 126.25) (end 62.025 126.25) (width 0.2) (layer "F.Cu") (net 2) (tstamp 21d5f723-2085-48e0-98c4-85d46f410d5e)) (segment (start 92.335 96.765) (end 93.5 96.765) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2217ae4d-6301-45ee-8348-3179b661fe2e)) (segment (start 134.9 72) (end 134 72) (width 0.2) (layer "F.Cu") (net 2) (tstamp 22c97ef9-2bd5-4f50-9f1d-6ce25d711d5d)) (segment (start 76.1375 120.5) (end 76.1375 121.5625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2577b398-8b82-45eb-82be-958ea07b2211)) (segment (start 110.025 65.8) (end 110.85 66.625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 27055fd3-4b66-4ff5-9aaf-7ef3f7d099c5)) (segment (start 75.8 121.9) (end 75.8 123.2) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2d7a3f4e-0156-475f-9c74-a98a3ff01f44)) (segment (start 60 126.75) (end 60.5 126.25) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2e684629-6d7f-4785-94ad-67bb089b3363)) (segment (start 66.995 127.5) (end 66.975 127.52) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2ef3eb11-edb6-4a2c-b044-ca410b3d1bf8)) (segment (start 135 128.85) (end 138.8 125.05) (width 0.75) (layer "F.Cu") (net 2) (tstamp 313fa803-5666-4f4e-9393-e7de4b5268c1)) (segment (start 62.025 122.44) (end 62.025 121.525) (width 0.2) (layer "F.Cu") (net 2) (tstamp 33226cb2-4504-47e1-a934-286408d8dce4)) (segment (start 67.975 83.675) (end 67.975 80.6) (width 0.25) (layer "F.Cu") (net 2) (tstamp 36bf0ee1-9f4d-4a49-bdd6-a9bd6a980eb2)) (segment (start 49.1125 72.3625) (end 49.3 72.3625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 3b172fa4-3510-4f19-a79a-b4a27946d44e)) (segment (start 147.5 96) (end 147.4 96.1) (width 0.2) (layer "F.Cu") (net 2) (tstamp 3e817f95-5c41-4fb8-9cf6-d26aab3a8c44)) (segment (start 69.425 84) (end 68.3 84) (width 0.25) (layer "F.Cu") (net 2) (tstamp 42bc478e-a228-4b41-9824-0cb8aa95cc6b)) (segment (start 133.2 65.575) (end 131.25 65.575) (width 0.2) (layer "F.Cu") (net 2) (tstamp 438b378a-3391-4e9d-9fea-43a1b90b6250)) (segment (start 93.05144 124.05144) (end 92.67 123.67) (width 0.2) (layer "F.Cu") (net 2) (tstamp 45953710-25bc-4113-b669-995e8832193a)) (segment (start 92.67 123.67) (end 91.92 123.67) (width 0.2) (layer "F.Cu") (net 2) (tstamp 47d627cf-c7b0-4c37-84cc-d275ba9a0ec2)) (segment (start 92 97.1) (end 92.335 96.765) (width 0.2) (layer "F.Cu") (net 2) (tstamp 47dfa988-a6f2-4fb2-bcc4-087e7d870d6b)) (segment (start 136 125.5625) (end 136 125.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp 49881167-11ef-4fe3-9774-6c788b2a1d7c)) (segment (start 46.2125 85.1625) (end 46.225 85.1625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 4a1b0256-fba3-47bb-bb03-e5ae43c21ef0)) (segment (start 166 90.3) (end 164 88.3) (width 0.75) (layer "F.Cu") (net 2) (tstamp 4cb6780c-0f2f-4058-9096-17d6eeacc5f5)) (segment (start 136.75 69) (end 135.625 69) (width 0.2) (layer "F.Cu") (net 2) (tstamp 53d5f93a-30ea-418a-aac4-bed2d1f16688)) (segment (start 60 129.65) (end 60 126.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 554f3804-bcd8-47df-a225-015b17342eb9)) (segment (start 121.45 65.6) (end 120 65.6) (width 0.2) (layer "F.Cu") (net 2) (tstamp 563564eb-16fb-4901-9073-f265ef566986)) (segment (start 146.25 106.1125) (end 146.25 107.05) (width 0.2) (layer "F.Cu") (net 2) (tstamp 59881b23-aa27-433b-8ba3-4d3b0f08a494)) (segment (start 86.425 130.02) (end 88.48 130.02) (width 0.2) (layer "F.Cu") (net 2) (tstamp 59e7da81-e65d-4030-8d99-3951b1cb95cd)) (segment (start 147.5 94.9) (end 147.5 96) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5a525ab1-9e37-4420-9f18-17cb0ff0db32)) (segment (start 167.4 79) (end 165.9 79) (width 0.75) (layer "F.Cu") (net 2) (tstamp 5d0faf66-7016-4a71-8edc-f6e67a9346b5)) (segment (start 75.8 123.2) (end 76.31 123.71) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5e60c7b1-29da-4b0f-a8a5-9d1dde438b7e)) (segment (start 66.335 123.71) (end 65.5 122.875) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5ef6e2f2-b698-4f98-9207-75029a61b1c8)) (segment (start 113.25 69.025) (end 113.25 69.975) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5fdb677d-f42f-4b5b-a944-aeca592264e7)) (segment (start 145.225 110.325) (end 145.65 110.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6106e15a-c1a6-4624-a176-c0b59d88494b)) (segment (start 92 101) (end 92 97.1) (width 0.2) (layer "F.Cu") (net 2) (tstamp 610ec12e-448d-4e23-af17-91c38c17d5c1)) (segment (start 163.7 110.9) (end 162.3 110.9) (width 0.75) (layer "F.Cu") (net 2) (tstamp 61578522-fe65-433c-9616-b02ce435c004)) (segment (start 123.275 70.4) (end 122.45 71.225) (width 0.2) (layer "F.Cu") (net 2) (tstamp 63300278-ca8d-45df-b165-5fac4a10bdb8)) (segment (start 60.41 130.06) (end 60 129.65) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6426177c-b16c-4b50-9a53-c00365d20255)) (segment (start 145.65 110.75) (end 146.75 110.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 693ce9ab-1e1a-4d9e-94c8-efb57c78cfbb)) (segment (start 51.1 79) (end 50.75 78.65) (width 0.2) (layer "F.Cu") (net 2) (tstamp 699a67cd-3623-4c90-9481-469ef2b96180)) (segment (start 123.4 128.8) (end 127.3 124.9) (width 0.75) (layer "F.Cu") (net 2) (tstamp 6b3f2909-804b-49a9-9cfd-319833d918d2)) (segment (start 145.5 96.1) (end 145.225 96.375) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6ffa7518-cf14-40f0-8ba9-819492a4cce4)) (segment (start 121.85 66.925) (end 121.85 66) (width 0.2) (layer "F.Cu") (net 2) (tstamp 723e2466-9841-4af0-9f1a-31e67c7ff26f)) (segment (start 146.25 94.8625) (end 147.4625 94.8625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7262d29f-1a64-46fe-ba4b-10f87ac28be4)) (segment (start 87.4 102.2) (end 90.8 102.2) (width 0.2) (layer "F.Cu") (net 2) (tstamp 744c1d52-9c6a-4f5c-8a60-d242430f0b3e)) (segment (start 66.975 123.71) (end 69.46 123.71) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7537848f-fa4f-4804-b931-cce55879a892)) (segment (start 92.75 127.5) (end 93.05144 127.19856) (width 0.2) (layer "F.Cu") (net 2) (tstamp 75ccb78a-c3d7-405c-9ab9-b730e1db528f)) (segment (start 71.25 120.7) (end 71 120.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp 765399dd-de6b-49e5-93ab-4183f65e5909)) (segment (start 145.225 108.075) (end 145.225 109) (width 0.2) (layer "F.Cu") (net 2) (tstamp 795863a6-eb3f-49e9-82e6-1da6369085ed)) (segment (start 44.45 93.31) (end 44.5 93.26) (width 0.2) (layer "F.Cu") (net 2) (tstamp 799f6567-f4ca-4243-8c48-80c41680f070)) (segment (start 76.1375 121.5625) (end 75.8 121.9) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7b00028c-9fc4-4f6c-9ea3-a17a84ba4185)) (segment (start 88.5 128.75) (end 88.5 130) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7b587927-d800-479c-b5ac-ee4cce9529fa)) (segment (start 62.025 121.525) (end 61.5 121) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7c0b0def-5594-4f1b-8d76-35dbe16866a0)) (segment (start 62.025 130.06) (end 60.41 130.06) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7c3368ed-ac60-4b9f-9367-6067d7354c4c)) (segment (start 133.2 66.575) (end 133.2 65.575) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7c4ce3e8-82c2-4526-adb7-4758f475cd59)) (segment (start 124.5 125.5625) (end 124.5 125.6) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7f709e13-92f5-4982-93cc-d63eb3e17626)) (segment (start 127.3 124.9) (end 127.3 124.75) (width 0.75) (layer "F.Cu") (net 2) (tstamp 82f66f7e-5ab8-4823-b8f6-a0c289118be8)) (segment (start 68.3 84) (end 67.975 83.675) (width 0.25) (layer "F.Cu") (net 2) (tstamp 891bbb8b-c0f5-4590-acb6-fe9bac33a54d)) (segment (start 146.25 107.05) (end 145.225 108.075) (width 0.2) (layer "F.Cu") (net 2) (tstamp 8dfd8470-6002-4732-9e7e-55479d8d392e)) (segment (start 150.15 121.8875) (end 150.0625 121.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp 8f3d3b5b-759a-4bc1-9874-0f95d690cf85)) (segment (start 69.25 127.5) (end 66.995 127.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp 904a1305-4b17-4a9e-a28d-7f05a8726b70)) (segment (start 79.5 127.9) (end 79.5 128.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 912a70f0-9d13-43a5-8e0f-7fba4a58c0c6)) (segment (start 125.9 109) (end 124.5 107.6) (width 0.2) (layer "F.Cu") (net 2) (tstamp 922d3dfe-8d1e-4bcd-b555-e72832a96d06)) (segment (start 131.25 65.575) (end 130 64.1) (width 0.2) (layer "F.Cu") (net 2) (tstamp 965dd046-5723-4571-9773-6a25f5fed43a)) (segment (start 146.25 83.6125) (end 146.25 85.475) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9682003a-0c83-4f28-8e09-cf4418629b3e)) (segment (start 103.95 125.45) (end 103.95 124.75) (width 0.75) (layer "F.Cu") (net 2) (tstamp 9a0457c8-a7fc-4cf4-bb75-75458675354d)) (segment (start 65.5 120.6375) (end 65.6375 120.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9a7f35e0-7472-4193-b651-9a63d6e9a384)) (segment (start 168 59.5) (end 167.5 59) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9b736fc7-1d52-4cf2-a22b-2548ae4ed1ed)) (segment (start 65.5 122.875) (end 65.5 120.6375) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9dd3cf65-0728-4758-b5d9-86cfc904befd)) (segment (start 100.3 129.1) (end 103.95 125.45) (width 0.75) (layer "F.Cu") (net 2) (tstamp 9df28715-5199-4dc9-8046-8f1614c17862)) (segment (start 124.75 69) (end 123.925 69) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9f02c145-d420-4857-a50a-ad2753bad9be)) (segment (start 76.1375 120.5) (end 76.1375 117.8625) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9f8949e2-9208-48dd-b19f-3b3650d9095e)) (segment (start 165.9 79) (end 164 77.1) (width 0.75) (layer "F.Cu") (net 2) (tstamp a0fe25a4-b0be-4591-8732-29b4c18b73c8)) (segment (start 77.475 127.52) (end 79.12 127.52) (width 0.2) (layer "F.Cu") (net 2) (tstamp a398b1b7-daa5-4e39-b886-2e0de18c90fe)) (segment (start 67.975 76.2125) (end 67.9875 76.2) (width 0.25) (layer "F.Cu") (net 2) (tstamp a5f8594c-db11-4fa2-8192-8d9b75ba8385)) (segment (start 108.675 65.8) (end 110.025 65.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp a73e0ac1-86f4-47bf-9c36-32d6fcb14b24)) (segment (start 67.975 80.6) (end 67.975 76.2125) (width 0.25) (layer "F.Cu") (net 2) (tstamp a74828b1-8538-4340-aacb-47a851723b2f)) (segment (start 106.9375 109) (end 98 109) (width 0.2) (layer "F.Cu") (net 2) (tstamp a86e114e-d6ff-43e3-b6ae-910ea32f6fd4)) (segment (start 52.2 79) (end 51.1 79) (width 0.2) (layer "F.Cu") (net 2) (tstamp a8b2ba06-bb4d-4a0d-9b93-84bf9d112405)) (segment (start 121.85 66) (end 121.45 65.6) (width 0.2) (layer "F.Cu") (net 2) (tstamp aaaa8592-28be-45ad-a968-487032ae601e)) (segment (start 113.25 69.975) (end 111.425 71.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp abbc0486-4121-4823-93e3-27bd31b1950f)) (segment (start 110.85 67.5) (end 112.375 69.025) (width 0.2) (layer "F.Cu") (net 2) (tstamp ad8ce4ca-42e0-4275-827b-0185709fb43d)) (segment (start 92.022859 127.5) (end 92.75 127.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp adb9b331-780a-4aca-8708-c2d2a6ffdfd9)) (segment (start 74.5 126.25) (end 72.525 126.25) (width 0.2) (layer "F.Cu") (net 2) (tstamp ae1904b3-cee9-4e4f-8830-28960c48d4aa)) (segment (start 90.8 102.2) (end 92 101) (width 0.2) (layer "F.Cu") (net 2) (tstamp b0f07246-69ae-4ec5-9c2d-0f49facfddac)) (segment (start 100.3 129.9) (end 100.3 129.1) (width 0.75) (layer "F.Cu") (net 2) (tstamp b2dc15e8-9bf6-47a2-b53d-4d6b74badf66)) (segment (start 167.4 90.3) (end 166 90.3) (width 0.75) (layer "F.Cu") (net 2) (tstamp b9b28b1a-9916-4b2b-8f76-2de885928ff1)) (segment (start 124.75 69) (end 123.8 69) (width 0.2) (layer "F.Cu") (net 2) (tstamp ba41ad20-ce70-4f0b-8c58-eec6d86aced8)) (segment (start 107 64.2) (end 108.675 65.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp bac9d2e4-bfec-4b8a-8bcc-24b49c19ff65)) (segment (start 164 88.3) (end 162.3 88.3) (width 0.75) (layer "F.Cu") (net 2) (tstamp be0c81eb-d3e4-430c-bd94-390bf0d0cecb)) (segment (start 122.45 71.225) (end 121.675 72) (width 0.2) (layer "F.Cu") (net 2) (tstamp be61e97b-4632-43a2-908c-484f81b8a3f1)) (segment (start 74.5 130) (end 72.585 130) (width 0.2) (layer "F.Cu") (net 2) (tstamp c03a9187-0894-45ee-920f-1c9fee44839e)) (segment (start 129.7375 109) (end 125.9 109) (width 0.2) (layer "F.Cu") (net 2) (tstamp c1b75659-cb0d-4581-bc09-ddd48c91ebf7)) (segment (start 164.1 99.6) (end 162.3 99.6) (width 0.75) (layer "F.Cu") (net 2) (tstamp c2b2e09a-c05a-40cf-8861-65a79e33ee01)) (segment (start 138.8 125.05) (end 138.8 124.8) (width 0.75) (layer "F.Cu") (net 2) (tstamp c3f70607-8759-4132-91fb-95b9cfb0e156)) (segment (start 147.4625 94.8625) (end 147.5 94.9) (width 0.2) (layer "F.Cu") (net 2) (tstamp c4ecdae2-3f94-462a-8c04-fb07d56e0e68)) (segment (start 121.675 72) (end 120.4625 72) (width 0.2) (layer "F.Cu") (net 2) (tstamp c59b1ff4-470b-47da-abc9-543c811d4a70)) (segment (start 165.6 112.8) (end 163.7 110.9) (width 0.75) (layer "F.Cu") (net 2) (tstamp c6069d6e-92da-4499-96d4-96d2c970f667)) (segment (start 167.4 101.5) (end 166 101.5) (width 0.75) (layer "F.Cu") (net 2) (tstamp c626282a-584e-4267-9651-4543d9fed3c7)) (segment (start 145.225 96.375) (end 145.225 97.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp cbbd2589-52bc-476f-8739-0314ca044a69)) (segment (start 147.4 96.1) (end 145.5 96.1) (width 0.2) (layer "F.Cu") (net 2) (tstamp ce38dfde-1805-4e5a-9a03-88112d5f190f)) (segment (start 88.48 130.02) (end 88.5 130) (width 0.2) (layer "F.Cu") (net 2) (tstamp d1015b7d-6305-44c9-b523-77e177fc2090)) (segment (start 115.6 125.1) (end 115.6 124.75) (width 0.75) (layer "F.Cu") (net 2) (tstamp d4e23bf3-41ca-4dc3-b4c4-72c836a6e740)) (segment (start 123.925 69) (end 121.85 66.925) (width 0.2) (layer "F.Cu") (net 2) (tstamp d51e561b-eb6f-41c2-a187-4cf0448dd845)) (segment (start 136.75 70.15) (end 134.9 72) (width 0.2) (layer "F.Cu") (net 2) (tstamp d59eec83-c815-4e61-9d3a-3126c58c95b0)) (segment (start 72.525 121.975) (end 71.25 120.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp d917ec15-c898-486a-8b64-84b4fa282587)) (segment (start 110.85 66.625) (end 110.85 67.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp dac278dc-046e-4984-bb7f-c7cf097348e2)) (segment (start 44.5 93.26) (end 44.5 89.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp dd561076-8d34-4af9-9ee4-00ad3c97220d)) (segment (start 66.975 123.71) (end 66.335 123.71) (width 0.2) (layer "F.Cu") (net 2) (tstamp de5e3bf4-9f6e-4e95-8413-06a41a6b40d6)) (segment (start 132.0625 72) (end 134 72) (width 0.2) (layer "F.Cu") (net 2) (tstamp e1a5915c-ab17-4b0b-90f7-5e425edeaa39)) (segment (start 111.425 71.8) (end 109.0625 71.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp e316e983-3159-43a6-97ba-c6bb1475aba4)) (segment (start 76.31 123.71) (end 77.475 123.71) (width 0.2) (layer "F.Cu") (net 2) (tstamp e533545d-bcda-4fb8-8135-65965568d5fd)) (segment (start 61.5 121) (end 60.5 121) (width 0.2) (layer "F.Cu") (net 2) (tstamp e6d07c09-153a-44f1-875c-b1df05c12f8b)) (segment (start 145.225 109) (end 145.225 110.325) (width 0.2) (layer "F.Cu") (net 2) (tstamp e8ceb9fa-ae2b-46cb-8f16-9e31c12e54b0)) (segment (start 76.1375 117.8625) (end 76.75 117.25) (width 0.2) (layer "F.Cu") (net 2) (tstamp eaadd60f-0485-4c3a-958a-7b52081949b9)) (segment (start 146.25 85.475) (end 145.225 86.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp eac35615-8fed-49fd-aaa1-96977c5d8435)) (segment (start 91.5 127.48) (end 89.77 127.48) (width 0.2) (layer "F.Cu") (net 2) (tstamp ec71937f-679e-407c-bbb8-366688f4058c)) (segment (start 145.225 86.5) (end 142.5 86.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp ed3c0f3d-ea9c-4d7f-a7b5-14628de82965)) (segment (start 50.75 78.65) (end 50.75 78.25) (width 0.2) (layer "F.Cu") (net 2) (tstamp ee4ea194-32aa-4cf1-9a14-ac479cef4bf7)) (segment (start 123.275 69.525) (end 123.275 70.4) (width 0.2) (layer "F.Cu") (net 2) (tstamp f4c1f02e-559c-4b79-a317-e27466042ace)) (segment (start 135.625 69) (end 133.2 66.575) (width 0.2) (layer "F.Cu") (net 2) (tstamp f740c9db-30fc-4782-962e-d86318d0c44f)) (segment (start 135 129.9) (end 135 128.85) (width 0.75) (layer "F.Cu") (net 2) (tstamp f945da3b-0865-48c1-8664-7c2454870ab1)) (segment (start 46.2125 87.7875) (end 46.2125 85.1625) (width 0.2) (layer "F.Cu") (net 2) (tstamp fbfcaaf9-473a-4cd7-bb06-5512c8dce21b)) (via (at 60.5 121) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 05f543ca-044f-49ca-bd7b-652c262e713c)) (via (at 64.3 89.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 0b299ea0-1e09-4ae7-96d5-9745a92b1c51)) (via (at 50.75 78.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 148db2ce-ba76-4190-af09-789188b40345)) (via (at 116.1 107.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 165e826c-7662-4490-be04-064a60862fd4)) (via (at 107 64.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1b83c15b-5a7e-4871-8829-959ad1e8603b)) (via (at 79.5 130.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1c7f88e6-0de2-4cf2-abfd-caa5781e565c)) (via (at 58.4 82.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1d9a8f7a-8fd8-477f-81df-ef21d18456c0)) (via (at 126.7 64.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 1ffd4fcb-ea40-4947-a814-906849846f82)) (via (at 64.5 60.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 24ade65e-f9c9-4a2a-bf58-613e55b6af9b)) (via (at 124.5 107.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2ba97e04-7f41-434b-bdda-aefd54c5cf2b)) (via (at 152.9 101.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 31609567-cf2f-4c8d-b6d1-5bfe6298b0e2)) (via (at 84 83.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 363702df-c808-4669-82ee-658de40305fb)) (via (at 61.35 116.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 377737e9-7e59-4045-b0a7-49f090ef2709)) (via (at 71 120.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3844ff5d-0c59-4086-bb8c-813012943909)) (via (at 81.25 72.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3c1411d9-c326-4dfa-bc2d-ced4568ddb37)) (via (at 134.75 93.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 3e34752f-fa2d-45a5-8e21-21138fad4881)) (via (at 121.2 115.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 41bff422-0a13-4e9e-96ce-ae4a5cc0f72c)) (via (at 115.3 64.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 435b2e52-cb31-48b7-a5a3-27ae255eb0e3)) (via (at 76.75 117.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 49dc5e41-1c42-4470-bc57-7f7598bdac94)) (via (at 98 124.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4ab19f91-9203-4118-9318-c961ca69e66d)) (via (at 142.5 86.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4c653dc0-fd57-4433-b0c5-c064af7f32db)) (via (at 143.25 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 521e5049-6e44-40f0-93c6-0c403c190eeb)) (via (at 156.6 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 53c8cbae-7e82-4dac-bde3-0e3bf7d9c7aa)) (via (at 74.5 126.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 575a0fb9-c458-418a-b28a-c0fac373f261)) (via (at 132.75 115.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 5c029b14-54d1-401f-80ef-d88a1cb0f497)) (via (at 147.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 5e3970d9-b804-487e-af60-87405f969a67)) (via (at 96.25 110.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 5ea6f1eb-8cf2-41a7-a62b-635d88e009d3)) (via (at 104.25 117.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 61abb23f-9c20-4a32-bbf4-6df54931082d)) (via (at 74.25 81.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 66e71069-ba7f-405d-82df-1138a41a2db5)) (via (at 100 78.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 6868542e-0b00-4747-82d6-b6a496b3fe83)) (via (at 150 60) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 6890b43f-9dc6-4578-b06b-7b3fb9386054)) (via (at 134 72) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 6a717d72-8f67-4f4b-a618-e0ac18a261a4)) (via (at 122.45 71.225) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 743a2d46-e88d-43bd-a0a0-bab57d2f01d3)) (via (at 147.5 96) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 77468ce4-6d90-4a2e-a5c0-64c1cca173e2)) (via (at 65 125.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 790da7c1-2272-4d0b-b80d-c5beb122345d)) (via (at 108 93.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 80f12ad1-5790-4380-aed7-1f52e1bc1bb0)) (via (at 150 64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 87a2dc5c-543b-4d5f-aa0b-39f707f553f4)) (via (at 98.75 57.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8b2cbfe4-b86e-4c88-9f54-fc9d5c3b676e)) (via (at 91 112.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8ca49ea2-1a77-4241-9fbd-5f95128a736b)) (via (at 134.75 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8e7be43b-f462-4632-ab80-ab4cdd47fd64)) (via (at 74.5 130) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8e7c5398-75f9-446c-bb12-0646d4212fd7)) (via (at 130 64.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 93c51558-551c-4c82-99f0-7280cdd2d181)) (via (at 103.25 80.075) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 96eaaa88-b5d3-4d47-b493-1ba2d896ae47)) (via (at 112.25 78.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 97d31cc7-7d9e-413d-84c6-8f1971ca9626)) (via (at 147.475 79.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 980318fb-cb33-4d4d-9608-40aea5f2c416)) (via (at 141.6 64.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 9c003d62-c079-4c03-8311-87721d78929d)) (via (at 96.25 113.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 9dc20cb5-c245-47e7-b8a2-19055e627f32)) (via (at 140.4 109.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a07971f3-beed-47c7-bb95-e78fef8838f8)) (via (at 86.8 57.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a33f4501-f5c6-4d27-b806-6b1120ee8588)) (via (at 52.75 83.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a43ab851-f7a5-4a81-b33c-e31830e30669)) (via (at 95.05 72.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a484cb02-c1d2-4172-a231-c528c00fd63a)) (via (at 110.7 98.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a6eafcb3-74ed-4def-9762-5930168652ec)) (via (at 116.25 78.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp abee3c8f-8753-4733-80c0-c028c45dfbfc)) (via (at 79.5 128.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp baa49421-1c75-4bed-8dd2-dbd7ddde766f)) (via (at 80 120) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp bbc4e728-5167-4a39-adab-1d3c3b310dea)) (via (at 104 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c25e3e91-31a5-4765-a5a7-1b3f4023d359)) (via (at 103.25 64.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c5544dec-c736-4eee-8c3c-b65ba89a5789)) (via (at 88.5 130) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c71aeabf-eff1-4f20-97e1-054caab05c2c)) (via (at 118.5 115.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp cbb6afd4-c68e-4ea2-b441-469135385b55)) (via (at 109 115.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d6f02f9f-e1ce-463a-b612-8a1a5c06a631)) (via (at 64.25 86.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d80670fe-b7ab-4005-9f2e-5a99fed6f180)) (via (at 54 86.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp da91ac02-5cc6-474e-a2ff-02d71bc8c6ba)) (via (at 154 64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp db6011c3-29e9-4ad3-9c14-74505b606d61)) (via (at 153.5 109.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp dbee8b69-11f7-4694-8a03-8aa4e9129344)) (via (at 134.75 89.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp dd52541e-7afc-4db6-826a-a0eed6207773)) (via (at 60 128) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp dd86796e-e669-4951-848f-949f102a5640)) (via (at 103.1 83.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e2ee01c8-e6cf-49c9-bbff-46b195a39dc0)) (via (at 129.75 115.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e35e0a45-5fdf-4cf0-bde3-444add41676b)) (via (at 146.75 110.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e9e207b8-99b5-493c-8368-f00e681f9935)) (via (at 147.5 103) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp eb012f85-130a-462c-ae8d-11664b93120c)) (via (at 69.75 124) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ee36fd2b-fb2f-4504-9680-6aec3c00b53d)) (via (at 118.5 64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp eebe14e7-1191-44ee-8672-67818668b5fc)) (via (at 154 60) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f7cbb930-4933-4ea6-be47-6e35e096799b)) (via (at 141 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f946f8f9-2606-4bac-95f2-8afe08f4b7b7)) (via (at 138.6 64.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp fb40ef2b-14a7-4d15-9f78-a133ee378852)) (via (at 93.25 83.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp fb8f5a9b-82a1-49fb-b924-d4af732dd2ce)) (via (at 69.75 128) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ff508d75-8620-4f1c-ba25-9efcef11a5aa)) (segment (start 111.25096 105.04904) (end 110.5 105.8) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0b9bf403-a149-4360-9826-b6aee55908b6)) (segment (start 124.5 75.475) (end 127.45 75.475) (width 0.2) (layer "F.Cu") (net 3) (tstamp 19f877d8-d4e5-463c-a4b5-b41150a8a0cf)) (segment (start 143.25 107.5) (end 143.25 107.4125) (width 0.25) (layer "F.Cu") (net 3) (tstamp 1d2d936f-bab9-4d09-b548-907127705cad)) (segment (start 120.6 69) (end 122.3 69) (width 0.2) (layer "F.Cu") (net 3) (tstamp 1d6c21a2-d62d-412f-8e83-b9373faadd9a)) (segment (start 143.674253 111.25) (end 143.638897 111.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 231ef4de-dc9b-40e7-8799-ecea635d3a4f)) (segment (start 143.25 84.9125) (end 144.5 83.6625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 24a9564a-68d6-4fb7-ac50-e97b683e82e0)) (segment (start 118.0875 107.2) (end 117.19375 106.30625) (width 0.2) (layer "F.Cu") (net 3) (tstamp 2597631c-03ac-4321-8142-733c9c1d4ebe)) (segment (start 52.0875 82.2875) (end 52.2 82.4) (width 0.25) (layer "F.Cu") (net 3) (tstamp 26823792-0659-46f1-b0ec-80b301953229)) (segment (start 153.5625 69.35) (end 150.15 69.35) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2864d819-0c4c-4cee-9a60-110b4fc39587)) (segment (start 56.4 82.4) (end 56.5 82.5) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2afde188-cc77-490b-88c9-aff509478122)) (segment (start 49.53 91.67) (end 50.65 90.55) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2e0fc85f-7169-44a2-a5a4-e8ae56e14fe1)) (segment (start 143.25 110.825747) (end 143.25 111.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3007ad7b-68cc-4826-8486-f17d4827be84)) (segment (start 148.2875 119) (end 148.2875 115.863247) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3301e223-856b-43e4-b912-8023cdc3f22e)) (segment (start 56.5 82.5) (end 56.925 82.075) (width 0.25) (layer "F.Cu") (net 3) (tstamp 34a4a794-e384-4c7b-89eb-96de4e2eb474)) (segment (start 117.19375 105.74375) (end 116.49904 105.04904) (width 0.2) (layer "F.Cu") (net 3) (tstamp 34b0a9ec-3303-4c93-a154-32970eb3a7b2)) (segment (start 122.75 106.25) (end 128.7375 106.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 34c29911-9f95-4242-b290-698e423ad33e)) (segment (start 86.525 120.625) (end 85.8875 119.9875) (width 0.25) (layer "F.Cu") (net 3) (tstamp 41a12d01-358c-4577-b0b5-59b5d2c550e4)) (segment (start 110.5 105.8) (end 110.5 106.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 4a11573f-3bc8-458a-a856-3203fbaea9fc)) (segment (start 109.1125 69) (end 110.75 69) (width 0.2) (layer "F.Cu") (net 3) (tstamp 4c795d32-3f0d-4319-9ab8-ac5338ad00aa)) (segment (start 50.65 90.55) (end 50.65 86.3025) (width 0.25) (layer "F.Cu") (net 3) (tstamp 52f2367d-8f92-45b7-a8b5-b50a226ccbfb)) (segment (start 154.4125 68.5) (end 153.5625 69.35) (width 0.25) (layer "F.Cu") (net 3) (tstamp 57355a2d-6582-4ade-9484-c7887cc751f0)) (segment (start 56.925 82.075) (end 56.925 79.525) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5c1dc6a3-463d-431b-a519-2cd88da09879)) (segment (start 116.49904 105.04904) (end 111.25096 105.04904) (width 0.2) (layer "F.Cu") (net 3) (tstamp 5d58c0d5-0dce-4c1d-9118-569d63850b41)) (segment (start 143.25 96.5) (end 143.25 96.1625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5dbba69b-3347-4983-bccc-e4195e6adc31)) (segment (start 85.8875 119.9875) (end 85.8875 119.325) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5e7d7f60-1702-41cf-a4fb-a8a1efc4bd77)) (segment (start 135 106.25) (end 138.674253 106.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 607a4fea-6cb3-41e7-ba6e-4208bb78aba4)) (segment (start 128.7375 106.25) (end 129.6875 107.2) (width 0.2) (layer "F.Cu") (net 3) (tstamp 685b7c55-b185-4077-b403-f5b10877ccc2)) (segment (start 146.225 69) (end 144.1125 69) (width 0.2) (layer "F.Cu") (net 3) (tstamp 71a25af7-8375-46f5-bf8f-b1a111935fd8)) (segment (start 52.0875 81.225) (end 52.0875 82.2875) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7cca1251-c17d-4c89-b024-c5548e4977fb)) (segment (start 117.19375 106.30625) (end 117.19375 105.74375) (width 0.2) (layer "F.Cu") (net 3) (tstamp 82605cdb-ee63-46b9-8c47-49feb9579a06)) (segment (start 150.15 69.35) (end 150 69.5) (width 0.25) (layer "F.Cu") (net 3) (tstamp 85223a9e-76a8-47d6-979a-85a70dc4322d)) (segment (start 122.3 69) (end 122.325 69) (width 0.2) (layer "F.Cu") (net 3) (tstamp 8917c8b3-650e-4bb7-9b93-b227511910f3)) (segment (start 50.65 86.3025) (end 49.53 85.1825) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8d557b78-8787-4484-9981-eecb48befaca)) (segment (start 148.2875 115.863247) (end 143.674253 111.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 943ca142-8800-4826-bd0d-c8f9d0472c20)) (segment (start 146.775 121.625) (end 148.2875 120.1125) (width 0.25) (layer "F.Cu") (net 3) (tstamp 981ff1f7-a52b-4c15-8186-6cd00ecd75e5)) (segment (start 138.674253 106.25) (end 143.25 110.825747) (width 0.2) (layer "F.Cu") (net 3) (tstamp a1699b4f-40ab-4a74-bbe6-55cb6c8699bf)) (segment (start 146.775 121.6) (end 146.775 121.625) (width 0.25) (layer "F.Cu") (net 3) (tstamp a9cf158d-6ee5-40d2-b65b-b25f6fdfbca9)) (segment (start 106.8375 107.25) (end 106.8875 107.2) (width 0.2) (layer "F.Cu") (net 3) (tstamp a9e929de-146a-4ccf-bdbc-108539bc5db3)) (segment (start 143.638897 111.25) (end 143.25 111.25) (width 0.25) (layer "F.Cu") (net 3) (tstamp abc4fe44-4040-4a31-8b9e-760af85e0980)) (segment (start 143.25 96.1625) (end 144.5 94.9125) (width 0.25) (layer "F.Cu") (net 3) (tstamp ae2650b8-8437-45ee-893a-99d0b93ccdc7)) (segment (start 85.8875 117.9375) (end 86 117.825) (width 0.2) (layer "F.Cu") (net 3) (tstamp b885d23a-488a-4891-b3b5-aaff4fbcfae9)) (segment (start 86.525 121.13) (end 86.525 120.625) (width 0.25) (layer "F.Cu") (net 3) (tstamp b8be5fd4-1ddb-4be1-9509-cf380fd0813e)) (segment (start 148.2875 120.1125) (end 148.2875 119) (width 0.25) (layer "F.Cu") (net 3) (tstamp b913bfba-bb49-422b-bcab-8cfcf3e3e7cc)) (segment (start 117.25 75.475) (end 112.25 75.475) (width 0.2) (layer "F.Cu") (net 3) (tstamp baa8a441-0a75-4b32-8f0f-9a806b1029ea)) (segment (start 49.53 93.31) (end 49.53 91.67) (width 0.25) (layer "F.Cu") (net 3) (tstamp bb145c3f-99e9-4e38-a9d2-466198daf686)) (segment (start 143.25 85.25) (end 143.25 84.9125) (width 0.25) (layer "F.Cu") (net 3) (tstamp c215d5c5-5181-4977-b475-c11e95bf24ee)) (segment (start 52.0875 82.4125) (end 52.0875 81.225) (width 0.25) (layer "F.Cu") (net 3) (tstamp c6336c1c-d630-44e8-8435-b4dfaf95d5d4)) (segment (start 105.75 107.25) (end 106.8375 107.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp c7f2b7bf-207b-404f-b09c-a4fed76e7512)) (segment (start 143.25 107.4125) (end 144.5 106.1625) (width 0.25) (layer "F.Cu") (net 3) (tstamp cbd40dbd-00cf-4a6e-935c-8fd77f530561)) (segment (start 52.2 82.4) (end 56.4 82.4) (width 0.25) (layer "F.Cu") (net 3) (tstamp d4fb1ab1-3e21-488d-a061-0031fa6ebc85)) (segment (start 49.5875 84.9125) (end 52.0875 82.4125) (width 0.25) (layer "F.Cu") (net 3) (tstamp d5658d8b-e127-4865-b61c-bb6df3ff1c12)) (segment (start 49.5875 85.125) (end 49.5875 84.9125) (width 0.25) (layer "F.Cu") (net 3) (tstamp e1eda7d6-0d16-4944-b1d1-86abfdae8966)) (segment (start 56.925 79.525) (end 56.9 79.5) (width 0.25) (layer "F.Cu") (net 3) (tstamp e769aaae-5d72-43ce-a058-ce5b38a0b155)) (segment (start 85.8875 119.325) (end 85.8875 117.9375) (width 0.2) (layer "F.Cu") (net 3) (tstamp f0944eb1-a144-4963-bb16-f0cae6a3de52)) (segment (start 132.1125 69) (end 134.025 69) (width 0.2) (layer "F.Cu") (net 3) (tstamp fd46e244-04d2-4f62-9119-2a86dd7cb843)) (via (at 146.225 69) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 0b59745c-f2ac-4cba-8e6b-69868c12f4d2)) (via (at 124.5 75.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 28ad3c37-be29-4ca7-9325-fbc5bbe81ed3)) (via (at 143.25 111.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 315e9917-b85f-4889-9f73-4f3f215935ce)) (via (at 143.25 96.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 33755310-8527-49e2-9f75-2ad7e0a82c85)) (via (at 150 69.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 3f18e1ec-bfed-46ea-83fd-d58bef2ab3d5)) (via (at 143.25 85.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 4aeedd07-cbac-487a-af32-a23be117bf17)) (via (at 56.5 82.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 4f7bf07f-4e76-4d1e-9e4f-477fa2cee505)) (via (at 110.75 69) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 521b67cc-438c-4749-a7fb-38b33448aff4)) (via (at 122.75 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 63a9c099-4117-4b1a-a6be-c8f4525b0b6d)) (via (at 122.325 69) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 7a64ff8e-ea65-4f23-96fc-8bcf694a611c)) (via (at 86 117.825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 879ef088-b267-418b-b2b5-0ad6b2a08b53)) (via (at 135 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp a124ab0d-6cf9-431d-83ee-a0d346f74025)) (via (at 134.025 69) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp ad987222-31e4-46c6-8de6-422df7d3ac8c)) (via (at 105.75 107.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp bb2c1bb6-a43d-438d-af19-e84287f077fb)) (via (at 146.775 121.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp bd7b9e8f-0452-4624-9d0d-deab166af117)) (via (at 143.25 107.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp c67f0421-55e2-4333-8aab-1eba7b61e70a)) (via (at 112.25 75.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp c8fc1705-8c2f-4f32-af0e-0fffd514c5e5)) (via (at 117.25 75.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp eb2946d7-4e98-4b39-b2a2-0e734d014bfc)) (via (at 117.19375 106.30625) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp ecd5d63e-bd3d-4d99-8f7f-07e3660a39f5)) (via (at 128.7375 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp f15d1fdb-ebf0-4b31-aa6f-75278825f836)) (via (at 110.5 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp f1685b5c-ade7-495b-acf0-23d0d80531b7)) (via (at 127.45 75.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp f240da6d-c1dd-43fe-a975-b9e3a9d6ad7a)) (segment (start 86.025 117.85) (end 87.874614 117.85) (width 0.25) (layer "B.Cu") (net 3) (tstamp 037f9e4d-ae02-4b3f-b8a0-60d77723c5d7)) (segment (start 97.3 132) (end 97.72452 131.57548) (width 0.25) (layer "B.Cu") (net 3) (tstamp 0acbce85-255d-4f36-9d62-56ccbde79c2c)) (segment (start 117.25 75.475) (end 117.25 73.525) (width 0.2) (layer "B.Cu") (net 3) (tstamp 1111dee6-d5b8-422b-a83e-57f06cbe655f)) (segment (start 106.315479 55.915479) (end 106.85 56.45) (width 0.25) (layer "B.Cu") (net 3) (tstamp 16d175dc-b02c-46af-afca-2bd626eaf640)) (segment (start 143.25 111.25) (end 143.25 107.5) (width 0.25) (layer "B.Cu") (net 3) (tstamp 1848d6d2-e757-443f-9a25-e21af521ace6)) (segment (start 143.25 85.55) (end 143.25 85.25) (width 0.25) (layer "B.Cu") (net 3) (tstamp 1c16c3cb-2dbd-4d11-afb3-856b7b681548)) (segment (start 58.97548 80.02452) (end 58.975481 62.024519) (width 0.25) (layer "B.Cu") (net 3) (tstamp 21a13d9b-0a06-4307-bf03-85a1db672781)) (segment (start 134.025 69) (end 132.75 70.275) (width 0.2) (layer "B.Cu") (net 3) (tstamp 249a1f48-5400-4d76-875e-a963252d65e8)) (segment (start 110.75 74.5) (end 110.75 69) (width 0.2) (layer "B.Cu") (net 3) (tstamp 297e945b-b502-414e-8399-27306d830314)) (segment (start 150 74.8) (end 150 69.5) (width 0.25) (layer "B.Cu") (net 3) (tstamp 2e7deae8-3a70-46a7-9ea5-ffed0b530854)) (segment (start 144.3 86.6) (end 143.25 85.55) (width 0.25) (layer "B.Cu") (net 3) (tstamp 2f531bc7-a7b2-49f2-927f-c4068b67e55b)) (segment (start 124.5 70.55) (end 124.5 75.475) (width 0.2) (layer "B.Cu") (net 3) (tstamp 348dfe17-035b-4aec-bda6-e3cdfad3dce6)) (segment (start 117.25 73.525) (end 121.775 69) (width 0.2) (layer "B.Cu") (net 3) (tstamp 37b64dfb-74ea-418e-968a-93cf43dbe826)) (segment (start 122.325 69) (end 122.95 69) (width 0.2) (layer "B.Cu") (net 3) (tstamp 38019785-7585-42a0-86aa-f4c2b1a71102)) (segment (start 143.25 96.5) (end 144.3 95.45) (width 0.25) (layer "B.Cu") (net 3) (tstamp 383010d2-5309-4ab3-957f-4ae1c4adc4a3)) (segment (start 110.5 106.25) (end 110.5 118.599022) (width 0.2) (layer "B.Cu") (net 3) (tstamp 3c7e1a3b-0c78-4093-a689-f4a4bf5e9b4f)) (segment (start 143.25 81.55) (end 150 74.8) (width 0.25) (layer "B.Cu") (net 3) (tstamp 3cc15682-9f03-482a-a5ef-10a8cedadff0)) (segment (start 55.85 129.75) (end 58.1 132) (width 0.25) (layer "B.Cu") (net 3) (tstamp 4288a1e2-e807-4289-b5f0-9352ee1f5958)) (segment (start 108.049022 121.05) (end 105.950978 121.05) (width 0.2) (layer "B.Cu") (net 3) (tstamp 4f1da6a3-7f42-4724-bad9-5041c7076b40)) (segment (start 143.25 85.25) (end 143.25 81.55) (width 0.25) (layer "B.Cu") (net 3) (tstamp 51d5e294-f700-48d9-aeca-9314d903a5ab)) (segment (start 49.53 93.31) (end 49.53 94.93) (width 0.25) (layer "B.Cu") (net 3) (tstamp 54e41dc9-759d-4e36-8e7d-745f70d61b95)) (segment (start 128.7375 106.25) (end 128.75 106.25) (width 0.2) (layer "B.Cu") (net 3) (tstamp 55beca6f-fd2a-4103-bd74-f0a0c4905856)) (segment (start 132.75 70.275) (end 128.575 70.275) (width 0.2) (layer "B.Cu") (net 3) (tstamp 560d2226-46b8-443c-91e7-92dee0c08b27)) (segment (start 106.85 56.45) (end 106.85 61.65) (width 0.25) (layer "B.Cu") (net 3) (tstamp 6197ccf2-fc83-4a43-95bb-91d3a205c8d1)) (segment (start 105.950978 121.05) (end 105.75 120.849022) (width 0.2) (layer "B.Cu") (net 3) (tstamp 6826b448-1fee-4fa0-abe6-64c009173111)) (segment (start 97.72452 127.67548) (end 99 126.4) (width 0.25) (layer "B.Cu") (net 3) (tstamp 68f285ea-c614-4320-b3d6-0e96afbbdef5)) (segment (start 143.25 107.5) (end 143.25 96.5) (width 0.25) (layer "B.Cu") (net 3) (tstamp 6a82d338-1a03-4242-9b25-8f9d14418cef)) (segment (start 122.95 69) (end 124.5 70.55) (width 0.2) (layer "B.Cu") (net 3) (tstamp 7131f102-ff83-43ea-9df0-54fb0e77355b)) (segment (start 121.775 69) (end 122.325 69) (width 0.2) (layer "B.Cu") (net 3) (tstamp 7bc3274d-f872-439b-b384-d76f9f3909cc)) (segment (start 141.975 126.4) (end 146.775 121.6) (width 0.25) (layer "B.Cu") (net 3) (tstamp 844ce8d3-24c2-422c-9bd7-85ac697525ce)) (segment (start 55.85 101.25) (end 55.85 129.75) (width 0.25) (layer "B.Cu") (net 3) (tstamp 8907bc0e-8f48-4e69-99ca-5f8032edfd2f)) (segment (start 99 126.4) (end 141.975 126.4) (width 0.25) (layer "B.Cu") (net 3) (tstamp 8957c11c-79fb-4848-adf0-94cfa9164e87)) (segment (start 110.75 65.55) (end 110.75 69) (width 0.25) (layer "B.Cu") (net 3) (tstamp 8af1b228-487f-4f39-9113-dddcb8c9a1a4)) (segment (start 87.874614 117.85) (end 94.2 124.175386) (width 0.25) (layer "B.Cu") (net 3) (tstamp 90fa5569-b6ac-4eed-b1a7-b4a156858714)) (segment (start 58.975481 62.024519) (end 65.084521 55.915479) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9545f2c6-2fe7-4685-991a-819dfaf5d8ad)) (segment (start 97.72452 131.57548) (end 97.72452 127.67548) (width 0.25) (layer "B.Cu") (net 3) (tstamp 955bf50a-1543-478f-8a77-e1d987843998)) (segment (start 150 69.5) (end 146.725 69.5) (width 0.25) (layer "B.Cu") (net 3) (tstamp a4c60c78-a270-4574-a571-8e0de8921529)) (segment (start 110.5 118.599022) (end 108.049022 121.05) (width 0.2) (layer "B.Cu") (net 3) (tstamp a5f0c91d-6ee4-4ddc-8eec-c2bd5020a1a3)) (segment (start 144.3 95.45) (end 144.3 86.6) (width 0.25) (layer "B.Cu") (net 3) (tstamp af64a3ec-cd42-4c89-90ba-2c63ce00652d)) (segment (start 117.19375 106.30625) (end 117.25 106.25) (width 0.2) (layer "B.Cu") (net 3) (tstamp b7274cb2-8aa8-4036-abb7-fa39c31dd2af)) (segment (start 127.45 71.4) (end 127.45 75.475) (width 0.2) (layer "B.Cu") (net 3) (tstamp b85f06b0-2a90-434b-a4bb-788450200532)) (segment (start 128.575 70.275) (end 127.45 71.4) (width 0.2) (layer "B.Cu") (net 3) (tstamp c2aa67fd-0a15-4ed5-91a7-68b878f0ec35)) (segment (start 56.5 82.5) (end 58.97548 80.02452) (width 0.25) (layer "B.Cu") (net 3) (tstamp c3376894-c6d7-4001-b3cc-69d49587e47f)) (segment (start 58.1 132) (end 97.3 132) (width 0.25) (layer "B.Cu") (net 3) (tstamp c95478a8-23b0-414e-a535-3de1062aeb83)) (segment (start 111.725 75.475) (end 110.75 74.5) (width 0.2) (layer "B.Cu") (net 3) (tstamp d63581a7-46d8-41e6-a98e-99aa47bf17c5)) (segment (start 117.25 106.25) (end 122.75 106.25) (width 0.2) (layer "B.Cu") (net 3) (tstamp d6523196-abf5-4b27-9562-d6af52aa9d46)) (segment (start 146.725 69.5) (end 146.225 69) (width 0.25) (layer "B.Cu") (net 3) (tstamp e0e9244e-8a64-49bf-baff-bb46af2a05ca)) (segment (start 105.75 120.849022) (end 105.75 107.25) (width 0.2) (layer "B.Cu") (net 3) (tstamp e318dda3-b71d-402a-be5b-e9ef6afbe0ca)) (segment (start 106.85 61.65) (end 110.75 65.55) (width 0.25) (layer "B.Cu") (net 3) (tstamp f0a751c8-47ca-4ccd-859c-bc461c0943a3)) (segment (start 94.2 124.175386) (end 94.2 132) (width 0.25) (layer "B.Cu") (net 3) (tstamp f0cadc68-2940-4a4b-abfc-ea102552d548)) (segment (start 86 117.825) (end 86.025 117.85) (width 0.25) (layer "B.Cu") (net 3) (tstamp f211f33f-2fbc-4e3b-aa65-8e8ef06f4398)) (segment (start 128.75 106.25) (end 135 106.25) (width 0.2) (layer "B.Cu") (net 3) (tstamp f6258b66-7375-4b54-99b0-80abd776e7d6)) (segment (start 112.25 75.475) (end 111.725 75.475) (width 0.2) (layer "B.Cu") (net 3) (tstamp f8e1ec71-c4dc-4c44-8763-5bcdc8f70b0a)) (segment (start 49.53 94.93) (end 55.85 101.25) (width 0.25) (layer "B.Cu") (net 3) (tstamp f9f86bcb-8ff5-4708-9d50-4a426938b510)) (segment (start 65.084521 55.915479) (end 106.315479 55.915479) (width 0.25) (layer "B.Cu") (net 3) (tstamp fd1be0aa-6e63-4405-8c84-9fd1bd1ac33c)) (segment (start 44.4875 86.5125) (end 44.4875 85.1625) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00539597-9654-464f-98bf-a4e70b35af7f)) (segment (start 45.2 84.45) (end 45.2 80.8) (width 0.5) (layer "F.Cu") (net 4) (tstamp 176a89eb-22de-459a-abb2-611bd31bb659)) (segment (start 44.4875 85.1625) (end 45.2 84.45) (width 0.5) (layer "F.Cu") (net 4) (tstamp 465a5b22-b8d0-45ac-8428-9d22f8082a61)) (segment (start 41.91 89.09) (end 44.4875 86.5125) (width 0.5) (layer "F.Cu") (net 4) (tstamp 6281f947-e3ba-432a-b905-a5dadd62e4d5)) (segment (start 45.2 80.8) (end 45.25 80.75) (width 0.5) (layer "F.Cu") (net 4) (tstamp be11e7fc-9f3d-4c4d-821d-fb26f0f172dd)) (segment (start 41.91 93.31) (end 41.91 89.09) (width 0.5) (layer "F.Cu") (net 4) (tstamp e382a90c-55aa-4d9f-82e6-56ab4f8616a4)) (segment (start 92.252404 104.247596) (end 104.25 92.25) (width 0.2) (layer "F.Cu") (net 5) (tstamp 06d55e15-d0ff-44d4-bf88-7df2cc121653)) (segment (start 89.401442 120.462829) (end 90.132831 119.73144) (width 0.2) (layer "F.Cu") (net 5) (tstamp 0ad62ee5-a521-4d1a-a1bd-ce1f02ef2f20)) (segment (start 107.2875 69) (end 107.2875 71.75) (width 0.2) (layer "F.Cu") (net 5) (tstamp 11e035a3-e57d-4df5-83bc-21a9bdcb5802)) (segment (start 104.25 92.25) (end 104.25 91.5) (width 0.2) (layer "F.Cu") (net 5) (tstamp 134e2ef9-ac78-4d39-852c-b9fe3f2b7334)) (segment (start 85 124) (end 85 125.287859) (width 0.2) (layer "F.Cu") (net 5) (tstamp 27fe46a0-3762-4106-a9be-bd3517f8eba3)) (segment (start 86.5 123.67) (end 85.33 123.67) (width 0.2) (layer "F.Cu") (net 5) (tstamp 2b30f979-a043-4e22-b1a4-0c5fb2846c86)) (segment (start 92.252404 119.267584) (end 92.252404 104.247596) (width 0.2) (layer "F.Cu") (net 5) (tstamp 3a9825ed-d84b-4b92-b8da-562cccdcda55)) (segment (start 107.2875 71.75) (end 107.3375 71.8) (width 0.2) (layer "F.Cu") (net 5) (tstamp 5933a44e-e7d8-4365-9386-85b709943e0e)) (segment (start 85.33 123.67) (end 85 124) (width 0.2) (layer "F.Cu") (net 5) (tstamp 641ae75a-1d2e-4783-ab00-1a139058afb3)) (segment (start 109.25 66.7125) (end 109.25 67.0375) (width 0.2) (layer "F.Cu") (net 5) (tstamp 66910d01-b7b2-4c64-9b7d-627a5fd9c3da)) (segment (start 87.895474 125.53952) (end 89.401439 124.033555) (width 0.2) (layer "F.Cu") (net 5) (tstamp 75e74660-d4ad-445a-bcf6-61edfeb29f5b)) (segment (start 90.132831 119.73144) (end 91.788548 119.73144) (width 0.2) (layer "F.Cu") (net 5) (tstamp 7b894182-2336-4c79-9fc8-2216c007af31)) (segment (start 109.25 67.0375) (end 107.2875 69) (width 0.2) (layer "F.Cu") (net 5) (tstamp 88f63d85-e1ee-4cdd-a7ad-3e67e9ec26e1)) (segment (start 91.788548 119.73144) (end 92.252404 119.267584) (width 0.2) (layer "F.Cu") (net 5) (tstamp 8aa72dea-26f6-4174-a92b-b49ba296a970)) (segment (start 85 125.287859) (end 85.251661 125.53952) (width 0.2) (layer "F.Cu") (net 5) (tstamp b6c27e45-2763-42bb-959e-39a3df3bebfd)) (segment (start 89.401439 124.033555) (end 89.401442 120.462829) (width 0.2) (layer "F.Cu") (net 5) (tstamp d74db40e-9615-4f88-b698-04a70450b39d)) (segment (start 107.3375 73.4875) (end 107.325 73.5) (width 0.2) (layer "F.Cu") (net 5) (tstamp d86fc214-ba71-40f1-ba1c-2597a91f385c)) (segment (start 107.3375 71.8) (end 107.3375 73.4875) (width 0.2) (layer "F.Cu") (net 5) (tstamp e3f36532-d383-4626-b73a-462fa5b02f92)) (segment (start 85.251661 125.53952) (end 87.895474 125.53952) (width 0.2) (layer "F.Cu") (net 5) (tstamp fdb0f1e8-fff9-4d7d-a071-d235e051bbc9)) (via (at 104.25 91.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 024ccfcb-5ba2-4e8f-a4cf-74aff70d7184)) (via (at 107.325 73.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 67e163da-bd92-416b-86d3-1e4575ada78c)) (segment (start 104.25 76.575) (end 107.325 73.5) (width 0.2) (layer "B.Cu") (net 5) (tstamp b0cd0797-c9c7-406d-b785-57fa12e7e715)) (segment (start 104.25 91.5) (end 104.25 76.575) (width 0.2) (layer "B.Cu") (net 5) (tstamp d7eda969-71de-43a0-af02-8fd40b8be816)) (segment (start 89.90144 108.59856) (end 91.5 107) (width 0.2) (layer "F.Cu") (net 6) (tstamp 05f7ec05-d77d-4fb5-a9cc-afbadfb3b707)) (segment (start 50.75 110.110978) (end 52.262418 108.59856) (width 0.2) (layer "F.Cu") (net 6) (tstamp 2721e00b-3024-4b49-84cb-0a6dc6bf1080)) (segment (start 108.6625 107.25) (end 108.7125 107.2) (width 0.2) (layer "F.Cu") (net 6) (tstamp 343f5ec6-e4b7-4a78-87b0-79b41fad069a)) (segment (start 108.7125 106.0125) (end 108.7125 107.2) (width 0.2) (layer "F.Cu") (net 6) (tstamp 36a53479-4520-4d42-9661-f614f34bb253)) (segment (start 99 106.5) (end 99.70096 105.79904) (width 0.2) (layer "F.Cu") (net 6) (tstamp 36b24910-9f1f-4038-815e-56a10905993e)) (segment (start 96.75 106) (end 97.25 106.5) (width 0.2) (layer "F.Cu") (net 6) (tstamp 36d718cb-de1e-401a-9653-bb04e05af03f)) (segment (start 47.2 114.2) (end 50.519022 114.2) (width 0.2) (layer "F.Cu") (net 6) (tstamp 409689ee-ed69-45ae-bfd9-bf68e0780d41)) (segment (start 50.75 113.969022) (end 50.75 110.110978) (width 0.2) (layer "F.Cu") (net 6) (tstamp 509bd129-8ad4-4423-95e1-fe98fa0433b2)) (segment (start 46.99 113.99) (end 47.2 114.2) (width 0.2) (layer "F.Cu") (net 6) (tstamp 62bd22f4-25d0-4ebd-a02f-f30ed7d1956e)) (segment (start 50.519022 114.2) (end 50.75 113.969022) (width 0.2) (layer "F.Cu") (net 6) (tstamp 63e02256-f03f-4cb0-a3e7-95d5e2f9b9e7)) (segment (start 46.99 111.09) (end 46.99 113.99) (width 0.2) (layer "F.Cu") (net 6) (tstamp 6c6c4143-3f10-423f-9f9a-e4e655f105b4)) (segment (start 97.25 106.5) (end 99 106.5) (width 0.2) (layer "F.Cu") (net 6) (tstamp 70e75db2-f375-4066-9a94-91e2b84dd52c)) (segment (start 101.420711 105.44856) (end 108.14856 105.44856) (width 0.2) (layer "F.Cu") (net 6) (tstamp 7606de0e-1134-4d19-a02f-d608b0ef7076)) (segment (start 52.262418 108.59856) (end 89.90144 108.59856) (width 0.2) (layer "F.Cu") (net 6) (tstamp 92bf0a5c-29e3-458b-94c5-3199741d295a)) (segment (start 108.75 109.0875) (end 108.6625 109) (width 0.2) (layer "F.Cu") (net 6) (tstamp a300ec23-5556-400c-b579-590f48a56526)) (segment (start 101.070232 105.799039) (end 101.420711 105.44856) (width 0.2) (layer "F.Cu") (net 6) (tstamp a30de5a7-9f52-4754-ade3-4d228f657fa4)) (segment (start 108.6625 109) (end 108.6625 107.25) (width 0.2) (layer "F.Cu") (net 6) (tstamp af45f9b6-c632-4d7e-a5a7-39b0ef767e94)) (segment (start 99.70096 105.79904) (end 101.070232 105.799039) (width 0.2) (layer "F.Cu") (net 6) (tstamp bb3ab929-4d87-4bab-be1d-35c79e1eb44b)) (segment (start 108.14856 105.44856) (end 108.7125 106.0125) (width 0.2) (layer "F.Cu") (net 6) (tstamp be4a4793-df80-48d6-afbd-9d945a7e1509)) (segment (start 108.75 110.8) (end 108.75 109.0875) (width 0.2) (layer "F.Cu") (net 6) (tstamp f9bcb067-066c-4817-b1cd-ebb202abb507)) (via (at 91.5 107) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 69247660-a09c-4cb6-8fe1-0eae7469148a)) (via (at 96.75 106) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 92fc9a63-9aad-4c70-be90-efd92e93cd0f)) (segment (start 96.75 106) (end 92.5 106) (width 0.2) (layer "B.Cu") (net 6) (tstamp aff6f07a-1261-489c-b250-a364df950f70)) (segment (start 92.5 106) (end 91.5 107) (width 0.2) (layer "B.Cu") (net 6) (tstamp c8153a71-3cea-497c-8d31-54c57bb59f21)) (segment (start 73.75 77.78125) (end 73.75 76.25) (width 0.2) (layer "F.Cu") (net 7) (tstamp 100dbb95-f292-43d1-8637-4ccc903ac7bf)) (segment (start 86.65 69.85) (end 86.9 69.6) (width 0.2) (layer "F.Cu") (net 7) (tstamp 1ec81ea1-047e-45e3-882a-48894483e35b)) (segment (start 83.45 75.8) (end 86.65 72.6) (width 0.2) (layer "F.Cu") (net 7) (tstamp 22eb7d68-fb5e-42ca-9c3b-87dacd776235)) (segment (start 86.65 72.6) (end 86.65 69.85) (width 0.2) (layer "F.Cu") (net 7) (tstamp 2c7e38f5-fb5a-4bb0-b3ea-c16fae975984)) (segment (start 74.7125 78.74375) (end 73.75 77.78125) (width 0.2) (layer "F.Cu") (net 7) (tstamp 3aaf5e83-7933-4848-96ca-88da6f6665ba)) (segment (start 90.1 70.8) (end 90.1 71.05) (width 0.2) (layer "F.Cu") (net 7) (tstamp 3d0d00f2-526f-4ba8-ab33-921d0ada5ef6)) (segment (start 72.85625 80.6) (end 74.7125 78.74375) (width 0.2) (layer "F.Cu") (net 7) (tstamp 8f98a732-b59e-4c5c-a090-057142e75a38)) (segment (start 71.1 80.6) (end 72.85625 80.6) (width 0.2) (layer "F.Cu") (net 7) (tstamp b1104dbf-57da-460e-8838-06407acee66d)) (segment (start 86.9 69.6) (end 88.9 69.6) (width 0.2) (layer "F.Cu") (net 7) (tstamp b739381b-feaf-4277-9b44-15fd31be318c)) (segment (start 71.25 80.75) (end 71.1 80.6) (width 0.2) (layer "F.Cu") (net 7) (tstamp c63fa0d2-88c0-4659-8009-146f065bcb3a)) (segment (start 73.75 76.25) (end 74.2 75.8) (width 0.2) (layer "F.Cu") (net 7) (tstamp cbcbaf6b-f8f3-4ad0-aaca-b6166254e3b9)) (segment (start 88.9 69.6) (end 90.1 70.8) (width 0.2) (layer "F.Cu") (net 7) (tstamp d92028f9-5954-43ac-958a-83fe7f890c39)) (segment (start 74.2 75.8) (end 83.45 75.8) (width 0.2) (layer "F.Cu") (net 7) (tstamp d9db5990-8b3b-46d3-a6e5-0efe78071ed2)) (segment (start 71.25 84) (end 71.25 80.75) (width 0.2) (layer "F.Cu") (net 7) (tstamp e27f9369-eaa6-4383-9ffc-7178def0150c)) (segment (start 85.5 71.05) (end 85 70.55) (width 0.5) (layer "F.Cu") (net 8) (tstamp 1c6ce79a-b5eb-4842-b568-72da6abce130)) (segment (start 79.7 71.75) (end 80.9125 70.5375) (width 0.5) (layer "F.Cu") (net 8) (tstamp 551e08db-3ce8-418e-8cee-650f893276a2)) (segment (start 72.275 73.525) (end 76.975 73.525) (width 0.5) (layer "F.Cu") (net 8) (tstamp 62df315b-8007-4a99-b397-cd537720480f)) (segment (start 71.1125 74.6875) (end 72.275 73.525) (width 0.5) (layer "F.Cu") (net 8) (tstamp 7c021b7b-e288-4583-bfbf-4578cf414011)) (segment (start 71.1125 76.2) (end 71.1125 74.6875) (width 0.5) (layer "F.Cu") (net 8) (tstamp 81cefba0-539d-436c-87c1-d1875b75b44b)) (segment (start 85 70.55) (end 83.1125 70.55) (width 0.5) (layer "F.Cu") (net 8) (tstamp 8ecb1061-c94e-4d91-aca5-4143e199bed4)) (segment (start 76.975 73.525) (end 77.5 73) (width 0.5) (layer "F.Cu") (net 8) (tstamp ad7fdb41-bfe3-4489-97fc-7682d0782e3d)) (segment (start 77.5 73) (end 77.5 71.75) (width 0.5) (layer "F.Cu") (net 8) (tstamp bdb51893-77fa-4ee9-a8e8-60ae86d4c56f)) (segment (start 77.5 71.75) (end 79.7 71.75) (width 0.5) (layer "F.Cu") (net 8) (tstamp d134884a-8274-4aab-8fdf-23bdf9914d9a)) (segment (start 80.9125 70.5375) (end 83.1 70.5375) (width 0.5) (layer "F.Cu") (net 8) (tstamp d1a22076-1a61-438c-8ac0-1b360fefcbfc)) (segment (start 83.1125 70.55) (end 83.1 70.5375) (width 0.5) (layer "F.Cu") (net 8) (tstamp dbe2e931-209e-44aa-a864-79db13de4cbe)) (segment (start 61.3375 62.75) (end 59.275 62.75) (width 0.2) (layer "F.Cu") (net 9) (tstamp bad16a6b-4c27-45ea-bfe1-827fd401a901)) (segment (start 69.74 63.05) (end 69.74 66.815) (width 1) (layer "F.Cu") (net 10) (tstamp 36dff352-eb6b-43c9-a8fd-d6aaa94ceb3a)) (segment (start 72.5 69.575) (end 72.5 71.75) (width 1) (layer "F.Cu") (net 10) (tstamp 61d3d7ec-9aff-433f-bc2c-0967e97a3eaa)) (segment (start 69.74 66.815) (end 72.5 69.575) (width 1) (layer "F.Cu") (net 10) (tstamp bb0b7b0a-b2ac-4450-b9bd-926850961428)) (segment (start 80.05 83.75) (end 80.05 80.9125) (width 0.2) (layer "F.Cu") (net 11) (tstamp c2ba98de-92a7-4831-aa37-78cab0cd2663)) (segment (start 80.05 80.9125) (end 79.8875 80.75) (width 0.2) (layer "F.Cu") (net 11) (tstamp defe2f41-a41f-43ec-b835-5a7ae47810ce)) (segment (start 54.25 80.8875) (end 53.9125 81.225) (width 0.25) (layer "F.Cu") (net 12) (tstamp 70e51aca-04b7-4d71-90f9-00f64c34a477)) (segment (start 54.25 79) (end 54.25 80.8875) (width 0.25) (layer "F.Cu") (net 12) (tstamp e52f6904-4867-4fb6-b5b6-fa7bcffeca65)) (segment (start 106.9 117.45) (end 108.425 118.975) (width 0.2) (layer "F.Cu") (net 13) (tstamp 21c97495-6667-479f-ae2b-5f6199751ecd)) (segment (start 107.8 112.8) (end 106.9 113.7) (width 0.2) (layer "F.Cu") (net 13) (tstamp 292be7ef-0a3c-4cee-a5e5-ec78b9de9ce6)) (segment (start 108.425 120.725) (end 111.4 123.7) (width 0.2) (layer "F.Cu") (net 13) (tstamp 3dea0f43-066d-4518-aa0c-9301bd00ab86)) (segment (start 105.38 129.42) (end 105.38 129.9) (width 0.2) (layer "F.Cu") (net 13) (tstamp 71649576-31af-4b8a-82fd-63ea56b4ca28)) (segment (start 111.4 125.6) (end 110.9 126.1) (width 0.2) (layer "F.Cu") (net 13) (tstamp 84822627-910e-494f-ad1e-c00072c1d692)) (segment (start 110.9 126.1) (end 108.7 126.1) (width 0.2) (layer "F.Cu") (net 13) (tstamp adadfa18-51ae-4c18-b401-20589451a485)) (segment (start 111.4 123.7) (end 111.4 125.6) (width 0.2) (layer "F.Cu") (net 13) (tstamp c74a1603-4382-40dd-86ca-e91228ddfb73)) (segment (start 106.9 113.7) (end 106.9 117.45) (width 0.2) (layer "F.Cu") (net 13) (tstamp f03ecf25-22e9-40ee-9bdc-b94fa2941474)) (segment (start 108.7 126.1) (end 105.38 129.42) (width 0.2) (layer "F.Cu") (net 13) (tstamp f3edda70-c2d1-48ec-ab7f-7d54c38de992)) (segment (start 108.425 118.975) (end 108.425 120.725) (width 0.2) (layer "F.Cu") (net 13) (tstamp ff127032-2015-4f73-9b4f-1e9f07a1db40)) (segment (start 40.6875 85.1875) (end 40.7 85.175) (width 0.2) (layer "F.Cu") (net 14) (tstamp 5be9849e-d446-490e-9263-7fecd0d1bec1)) (segment (start 40.7 83.3625) (end 40.9 83.1625) (width 0.2) (layer "F.Cu") (net 14) (tstamp 8fbd600c-8b15-47db-b018-411697b46911)) (segment (start 40.7 85.175) (end 40.7 83.3625) (width 0.2) (layer "F.Cu") (net 14) (tstamp be4bba41-ef21-4766-80fe-74318ec0a7b1)) (segment (start 99.95 65.6) (end 99.6875 65.3375) (width 0.25) (layer "F.Cu") (net 15) (tstamp 19422fe0-c510-430b-a289-4efb3f418533)) (segment (start 101.425 65.6) (end 99.95 65.6) (width 0.25) (layer "F.Cu") (net 15) (tstamp 587c177a-ce73-433c-ba0e-995f53f5c9c0)) (segment (start 101.75 66.975) (end 101.75 65.925) (width 0.25) (layer "F.Cu") (net 15) (tstamp 6383f2c3-04b5-442c-a9da-caec376c51ac)) (segment (start 101.75 65.925) (end 101.425 65.6) (width 0.25) (layer "F.Cu") (net 15) (tstamp ef03f0b0-bb7f-4e65-8789-f1c34b6c71f7)) (segment (start 99.6875 65.3375) (end 99.6875 64.6) (width 0.25) (layer "F.Cu") (net 15) (tstamp fa6d5ec2-d6a0-4242-a189-fe6da340960b)) (segment (start 119.05 112.8) (end 119.7 113.45) (width 0.2) (layer "F.Cu") (net 16) (tstamp 0895d0b9-db2f-49c6-9d1e-5bd256b9ce9c)) (segment (start 123 125.55) (end 122.45 126.1) (width 0.2) (layer "F.Cu") (net 16) (tstamp 089dd4b5-210c-449b-9151-022285a4ce93)) (segment (start 122.45 126.1) (end 120.78 126.1) (width 0.2) (layer "F.Cu") (net 16) (tstamp 0f5d9acc-7bc4-4ebf-a35c-8c2289dc2a65)) (segment (start 119.7 120.2) (end 123 123.5) (width 0.2) (layer "F.Cu") (net 16) (tstamp 12a88e9a-eb1d-4a9f-abb2-a40443bf5876)) (segment (start 119.7 113.45) (end 119.7 120.2) (width 0.2) (layer "F.Cu") (net 16) (tstamp 252c1aa6-6bc1-4640-84be-76920d754bad)) (segment (start 123 123.5) (end 123 125.55) (width 0.2) (layer "F.Cu") (net 16) (tstamp b01ec464-35f1-4571-80c9-d58a6f95d9a2)) (segment (start 120.78 126.1) (end 116.98 129.9) (width 0.2) (layer "F.Cu") (net 16) (tstamp e6e04579-e26d-4f13-b73c-5b400501dd4c)) (segment (start 113.25 65.975) (end 113.25 66.975) (width 0.2) (layer "F.Cu") (net 17) (tstamp 1e59e9f2-d2bf-41b5-b0d6-2fcbe701e9de)) (segment (start 110.8875 64.8) (end 110.8875 65.4125) (width 0.2) (layer "F.Cu") (net 17) (tstamp 2a0439d7-9a7a-4900-9bf7-dd8385351b13)) (segment (start 112.95 65.675) (end 113.25 65.975) (width 0.2) (layer "F.Cu") (net 17) (tstamp 80a8d9b5-951d-43a6-af3b-18bc6478c0df)) (segment (start 111.15 65.675) (end 112.95 65.675) (width 0.2) (layer "F.Cu") (net 17) (tstamp 8c842fbd-a8a1-444b-8b07-300efdc0bfb2)) (segment (start 110.8875 65.4125) (end 111.15 65.675) (width 0.2) (layer "F.Cu") (net 17) (tstamp f517217c-46ae-4d1b-8399-12edc29d6a08)) (segment (start 140.08 129.37) (end 140.08 129.9) (width 0.2) (layer "F.Cu") (net 18) (tstamp 02c976fe-cc42-4d31-8e5b-21da0c12b704)) (segment (start 149.2 126.6) (end 148.6 127.2) (width 0.2) (layer "F.Cu") (net 18) (tstamp 627ef0be-d6ed-42ab-8ae6-989525daffab)) (segment (start 149.2 125.6) (end 149.2 126.6) (width 0.2) (layer "F.Cu") (net 18) (tstamp 7a06eb4c-9249-4328-b54a-7782a182bad8)) (segment (start 142.25 127.2) (end 140.08 129.37) (width 0.2) (layer "F.Cu") (net 18) (tstamp 8fe40de2-7959-4f98-ae00-342fb20ec715)) (segment (start 148.6 127.2) (end 142.25 127.2) (width 0.2) (layer "F.Cu") (net 18) (tstamp b0ea0590-af57-433a-8561-13b7a6e1f212)) (segment (start 136.4 65.675) (end 136.75 66.025) (width 0.2) (layer "F.Cu") (net 19) (tstamp 33eb8f6a-ee70-4441-becc-7bcc8ff4d69e)) (segment (start 134.2875 65.2375) (end 134.725 65.675) (width 0.2) (layer "F.Cu") (net 19) (tstamp 41e47a17-0455-457c-8255-82b3217de56e)) (segment (start 136.75 66.025) (end 136.75 66.95) (width 0.2) (layer "F.Cu") (net 19) (tstamp 9e22ff6f-1658-4b62-83ee-8742459f86af)) (segment (start 134.725 65.675) (end 136.4 65.675) (width 0.2) (layer "F.Cu") (net 19) (tstamp c041ed90-a42e-4193-8f31-224a1feb778d)) (segment (start 134.2875 64.8) (end 134.2875 65.2375) (width 0.2) (layer "F.Cu") (net 19) (tstamp dfe8a334-6093-4c3f-9c6e-db5a80e90e29)) (segment (start 131.15 120.25) (end 134.4 123.5) (width 0.2) (layer "F.Cu") (net 20) (tstamp 1a500722-f410-401c-a860-b34d47ba5a62)) (segment (start 130.6 112.8) (end 131.15 113.35) (width 0.2) (layer "F.Cu") (net 20) (tstamp 25c2ec4a-2d97-42df-96d0-90194ff95458)) (segment (start 131.15 113.35) (end 131.15 120.25) (width 0.2) (layer "F.Cu") (net 20) (tstamp 613ebf67-f2e4-4f98-95e5-b1b8d387cbb1)) (segment (start 134.4 123.5) (end 134.4 125.9) (width 0.2) (layer "F.Cu") (net 20) (tstamp 61808958-9c0b-45b7-ade3-2f2f6d1523a5)) (segment (start 134.4 125.9) (end 134.2 126.1) (width 0.2) (layer "F.Cu") (net 20) (tstamp 6da16512-4e5c-4e8a-bc0f-0d5e96e76976)) (segment (start 134.2 126.1) (end 132.28 126.1) (width 0.2) (layer "F.Cu") (net 20) (tstamp e8fbc0e7-e0a2-48cc-a69b-17462303b3c1)) (segment (start 132.28 126.1) (end 128.48 129.9) (width 0.2) (layer "F.Cu") (net 20) (tstamp ef40d538-3006-4459-ba4b-6b76a76076fe)) (segment (start 167.32 107.72) (end 167.4 107.72) (width 0.2) (layer "F.Cu") (net 21) (tstamp 0d93db37-48b3-474f-bb96-b8c0da563610)) (segment (start 151 105.25) (end 152.25 105.25) (width 0.2) (layer "F.Cu") (net 21) (tstamp 23c321f8-68f2-48fe-a5e9-c13da0174655)) (segment (start 158.4 107.8) (end 159 107.2) (width 0.2) (layer "F.Cu") (net 21) (tstamp 2688aa9a-07bd-4715-b0ed-0a3fbb33ffc9)) (segment (start 154.8 107.8) (end 158.4 107.8) (width 0.2) (layer "F.Cu") (net 21) (tstamp 45781fca-fee2-4925-acd2-64c363819fe0)) (segment (start 163.4 103.8) (end 167.32 107.72) (width 0.2) (layer "F.Cu") (net 21) (tstamp 4dc99d79-c85a-4877-ae78-99c1832a2c3e)) (segment (start 161.2 103.8) (end 163.4 103.8) (width 0.2) (layer "F.Cu") (net 21) (tstamp 70881c8b-d422-4834-8405-27f8a780badc)) (segment (start 152.25 105.25) (end 154.8 107.8) (width 0.2) (layer "F.Cu") (net 21) (tstamp 8ba35cc4-26c0-4e65-bf7d-aa0e6b907275)) (segment (start 159 106) (end 161.2 103.8) (width 0.2) (layer "F.Cu") (net 21) (tstamp c1951dd6-26aa-4ea0-85a2-24cc4e53e67b)) (segment (start 159 107.2) (end 159 106) (width 0.2) (layer "F.Cu") (net 21) (tstamp dfd4f415-37d1-42f1-bcbc-76f9ecc0b057)) (segment (start 167.4 96.1) (end 167.4 96.42) (width 0.2) (layer "F.Cu") (net 22) (tstamp 26e06b53-e1e0-417d-9ad2-46495e545be2)) (segment (start 152.5 94) (end 155 96.5) (width 0.2) (layer "F.Cu") (net 22) (tstamp 342a82f5-cf75-4350-821b-0573a593efa7)) (segment (start 155 96.5) (end 158.5 96.5) (width 0.2) (layer "F.Cu") (net 22) (tstamp 4092cf80-d43b-4568-8d18-b77398c3e998)) (segment (start 158.85 96.15) (end 158.85 94.45) (width 0.2) (layer "F.Cu") (net 22) (tstamp 4b355d96-1c0b-4ff4-91f0-4fd5a7144671)) (segment (start 158.5 96.5) (end 158.85 96.15) (width 0.2) (layer "F.Cu") (net 22) (tstamp 8d1fa4de-2b6f-41c8-b466-7a5dba8c5a02)) (segment (start 160.90048 92.39952) (end 163.69952 92.39952) (width 0.2) (layer "F.Cu") (net 22) (tstamp b8bbd581-c79b-4cf2-a1c6-3fdb3dead88d)) (segment (start 151 94) (end 152.5 94) (width 0.2) (layer "F.Cu") (net 22) (tstamp c26109fd-97bd-4a63-a432-8cef7fd24301)) (segment (start 158.85 94.45) (end 160.90048 92.39952) (width 0.2) (layer "F.Cu") (net 22) (tstamp de630cf1-e7af-46b1-a50f-dfc0576b0f02)) (segment (start 163.69952 92.39952) (end 167.4 96.1) (width 0.2) (layer "F.Cu") (net 22) (tstamp ec1c392d-3774-4583-85ae-afddaea191ae)) (segment (start 163.2 81.1) (end 167.32 85.22) (width 0.2) (layer "F.Cu") (net 23) (tstamp 1a8dfbf3-f4ec-40ce-ad04-2b60fb8ac0f7)) (segment (start 161.3 81.1) (end 163.2 81.1) (width 0.2) (layer "F.Cu") (net 23) (tstamp 671ca334-3ce9-4508-9f40-28c5286c8077)) (segment (start 167.32 85.22) (end 167.4 85.22) (width 0.2) (layer "F.Cu") (net 23) (tstamp 9d25b2dd-4dfb-4d14-afba-0b65dd8a119e)) (segment (start 159.65 82.75) (end 161.3 81.1) (width 0.2) (layer "F.Cu") (net 23) (tstamp a63e1e92-7386-416f-8899-c01499ffd698)) (segment (start 151 82.75) (end 159.65 82.75) (width 0.2) (layer "F.Cu") (net 23) (tstamp e08e4028-e35f-47fc-b5d6-f3a26de4ffa2)) (segment (start 124.75 66.075) (end 124.75 66.95) (width 0.2) (layer "F.Cu") (net 24) (tstamp 5655b337-ae28-4bc8-bcce-7f0ebfe6f504)) (segment (start 122.4875 65.1625) (end 122.925 65.6) (width 0.2) (layer "F.Cu") (net 24) (tstamp 94d85384-8e72-4535-9f4f-869e0b97f100)) (segment (start 124.275 65.6) (end 124.75 66.075) (width 0.2) (layer "F.Cu") (net 24) (tstamp bde376b1-db9d-4d22-ae96-9049d0c4ea9c)) (segment (start 122.925 65.6) (end 124.275 65.6) (width 0.2) (layer "F.Cu") (net 24) (tstamp dbe3ccc5-30b4-41f1-9665-0188c3e58b76)) (segment (start 122.4875 64.6) (end 122.4875 65.1625) (width 0.2) (layer "F.Cu") (net 24) (tstamp f0c0539c-0456-4d89-bf9f-8fbe9bbb9113)) (segment (start 161.2 69.9) (end 163.3 69.9) (width 0.2) (layer "F.Cu") (net 25) (tstamp 0520ce96-e9d9-4060-b368-bdfaadbe9af8)) (segment (start 163.3 69.9) (end 167.32 73.92) (width 0.2) (layer "F.Cu") (net 25) (tstamp 5b26d2e7-4663-4a3a-b968-615e3d800a76)) (segment (start 151 73.7) (end 151.300481 74.000481) (width 0.2) (layer "F.Cu") (net 25) (tstamp 9deed467-d813-47fe-99ca-a8d1f860ea3f)) (segment (start 151 71.8) (end 151 73.7) (width 0.2) (layer "F.Cu") (net 25) (tstamp b319e68e-639c-431f-ae4f-fa6d9811575b)) (segment (start 151.300481 74.000481) (end 158.399519 74.000481) (width 0.2) (layer "F.Cu") (net 25) (tstamp b3bf10f7-bd38-4271-b544-538430f3a22c)) (segment (start 158.9 73.5) (end 158.9 72.2) (width 0.2) (layer "F.Cu") (net 25) (tstamp b71ca44b-11d2-45dd-882b-79276a6ceaa8)) (segment (start 158.9 72.2) (end 161.2 69.9) (width 0.2) (layer "F.Cu") (net 25) (tstamp d285a735-3f20-48e8-9b2b-6361ee91a378)) (segment (start 167.32 73.92) (end 167.4 73.92) (width 0.2) (layer "F.Cu") (net 25) (tstamp dc3ec309-b83e-4543-8403-b16f8eaddffe)) (segment (start 158.399519 74.000481) (end 158.9 73.5) (width 0.2) (layer "F.Cu") (net 25) (tstamp fa522c78-e933-4d1a-b81d-f169e54e7138)) (segment (start 91 99) (end 91 95.25) (width 0.2) (layer "F.Cu") (net 26) (tstamp 0896008a-5fb2-4c2c-9f4b-d810921097eb)) (segment (start 92.025 94.225) (end 93.5 94.225) (width 0.2) (layer "F.Cu") (net 26) (tstamp 1fb239f7-a775-4711-916e-77906e41698c)) (segment (start 90.34 99.66) (end 91 99) (width 0.2) (layer "F.Cu") (net 26) (tstamp 51bf6c3c-5169-4be0-9855-353558165981)) (segment (start 91 95.25) (end 92.025 94.225) (width 0.2) (layer "F.Cu") (net 26) (tstamp 54a3e2cf-1068-4b6a-a430-00c08b7b1ab7)) (segment (start 87.4 99.66) (end 90.34 99.66) (width 0.2) (layer "F.Cu") (net 26) (tstamp 98d1297b-ab01-4d32-9d87-3d263f36aca0)) (segment (start 90.86 104.74) (end 93.5 102.1) (width 0.2) (layer "F.Cu") (net 27) (tstamp 1a211748-da17-43eb-829f-63d573f7eb61)) (segment (start 87.4 104.74) (end 90.86 104.74) (width 0.2) (layer "F.Cu") (net 27) (tstamp dc0034a2-f9cc-4741-a16c-c88c417dbdfd)) (segment (start 93.5 102.1) (end 93.5 99.305) (width 0.2) (layer "F.Cu") (net 27) (tstamp fffa299c-bafb-432d-8f97-da081b0ca05e)) (segment (start 108.25 99.5) (end 107 99.5) (width 1) (layer "F.Cu") (net 28) (tstamp 2cadef4c-118a-4e7e-8e7b-6a38c20185b6)) (segment (start 109.25 100.5) (end 143.6 100.5) (width 1) (layer "F.Cu") (net 28) (tstamp 341a26f0-7ebf-4299-9bf2-c6a2a5f15bb5)) (segment (start 107 99.510704) (end 107.005352 99.505352) (width 1) (layer "F.Cu") (net 28) (tstamp 34625ac4-46ab-4f69-bc98-210bbb1e2ac2)) (segment (start 108.25 101.5) (end 107 101.5) (width 1) (layer "F.Cu") (net 28) (tstamp 36c9b23f-c6ad-4f05-abad-b55f10880ae8)) (segment (start 108.25 101.5) (end 109.25 100.5) (width 1) (layer "F.Cu") (net 28) (tstamp 481d06c8-fc2e-42e1-a1e3-5567e3947eee)) (segment (start 155.5 106.5) (end 157.3 106.5) (width 1) (layer "F.Cu") (net 28) (tstamp 4c4c942a-eb12-4024-bd7a-e2c6f25bdc93)) (segment (start 107 101.5) (end 107 100.25) (width 1) (layer "F.Cu") (net 28) (tstamp 6b6b551a-bca9-4c1f-aedb-bb83de8ea23b)) (segment (start 109.25 100.5) (end 108.25 100.5) (width 1) (layer "F.Cu") (net 28) (tstamp 70b7113c-4c76-4ea8-ab0d-356e78a304cb)) (segment (start 107 100.75) (end 107.75 100) (width 1) (layer "F.Cu") (net 28) (tstamp 78340aa3-6783-4e28-b1cf-13a5c32569f0)) (segment (start 108.25 100.5) (end 107.75 100) (width 1) (layer "F.Cu") (net 28) (tstamp 83e5f566-0809-489d-b352-6131e6208e8a)) (segment (start 107.25 99.5) (end 107 99.5) (width 1) (layer "F.Cu") (net 28) (tstamp 8947a6bb-b27a-4693-9fce-e74ed046b245)) (segment (start 102.8 71.7) (end 102.8 65.8875) (width 0.2) (layer "F.Cu") (net 28) (tstamp 944e6e55-4b4a-4322-ab6d-cfca9f6a9e7c)) (segment (start 144.35 101.25) (end 150.25 101.25) (width 1) (layer "F.Cu") (net 28) (tstamp a09802b6-c962-4019-bf64-01da664e2dbf)) (segment (start 101.5125 64.6) (end 101.5125 63.7125) (width 0.2) (layer "F.Cu") (net 28) (tstamp aaeb9670-5300-4eec-9258-da22cf736215)) (segment (start 101.5125 63.7125) (end 101 63.2) (width 0.2) (layer "F.Cu") (net 28) (tstamp b211f156-4728-4a67-8e06-d41936345590)) (segment (start 107.75 100) (end 107.25 99.5) (width 1) (layer "F.Cu") (net 28) (tstamp b3bbcd58-41ac-439b-9645-52e5b4f84510)) (segment (start 108.25 101.5) (end 107 100.25) (width 1) (layer "F.Cu") (net 28) (tstamp bced524c-4c34-42ed-a144-8bde0a1ce7de)) (segment (start 101.75 72.75) (end 102.8 71.7) (width 0.2) (layer "F.Cu") (net 28) (tstamp be038c2b-ec34-408b-ae7a-4e368eeba28f)) (segment (start 109.25 100.5) (end 108.25 99.5) (width 1) (layer "F.Cu") (net 28) (tstamp bf1a5f6b-b00c-4fd6-b59b-8207d3f53dc1)) (segment (start 101 63.2) (end 100.5 63.2) (width 0.2) (layer "F.Cu") (net 28) (tstamp c79d0850-2259-4483-b47e-1e03c94a5876)) (segment (start 143.6 100.5) (end 144.35 101.25) (width 1) (layer "F.Cu") (net 28) (tstamp c8ac6e68-98ff-4e09-ab32-41766a7beae2)) (segment (start 102.8 65.8875) (end 101.5125 64.6) (width 0.2) (layer "F.Cu") (net 28) (tstamp cbfe3fca-b9c2-4491-a8c5-74046fa9f64f)) (segment (start 150.25 101.25) (end 155.5 106.5) (width 1) (layer "F.Cu") (net 28) (tstamp e89cbadd-45eb-4d20-b0c1-2f389dfa95a3)) (segment (start 107 101.5) (end 107 100.75) (width 1) (layer "F.Cu") (net 28) (tstamp f0c6b2dd-c539-4827-8171-f3dde7c374f0)) (segment (start 107 100.5) (end 107 99.510704) (width 1) (layer "F.Cu") (net 28) (tstamp f97e4c23-353a-4d5a-a45a-7e84999122cf)) (via (at 108.25 100.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 28) (tstamp 469a31ec-41ed-4a75-8e77-b53b41645b9d)) (via (at 107 101.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 28) (tstamp 726f5d34-8c77-4fc3-9f19-2aaea1aaf872)) (via (at 107 99.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 28) (tstamp ad849708-95fd-4d71-96ff-61f3ee5291fb)) (via (at 100.5 63.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 28) (tstamp e231a08c-b478-485f-8b6d-dfeb8467ba02)) (segment (start 107 100.75) (end 107.75 100) (width 1) (layer "B.Cu") (net 28) (tstamp 14f01ff5-1099-4e2c-bca5-ff63e802c947)) (segment (start 97.7 65.8) (end 100.3 63.2) (width 1) (layer "B.Cu") (net 28) (tstamp 181367cf-8f11-4cec-a964-f4de6ad256f1)) (segment (start 107 101.5) (end 107.25 101.5) (width 1) (layer "B.Cu") (net 28) (tstamp 1dde1fc1-e2db-478d-9fe9-8fc6e4d71e3e)) (segment (start 107 119.8) (end 107 102.75) (width 1) (layer "B.Cu") (net 28) (tstamp 24f7b877-826a-4e54-85bc-f307998fa974)) (segment (start 72.28 66.53) (end 81.25 75.5) (width 1) (layer "B.Cu") (net 28) (tstamp 2e7c5679-aadd-439d-9a06-59bceb52c31e)) (segment (start 107 102.75) (end 107 101.5) (width 1) (layer "B.Cu") (net 28) (tstamp 446988cc-7968-411b-b824-f84ed29d459b)) (segment (start 72.28 63.05) (end 72.28 66.53) (width 1) (layer "B.Cu") (net 28) (tstamp 61d17c48-e377-4142-83d9-db0136ca123e)) (segment (start 103.5 63.2) (end 105.56 61.14) (width 1) (layer "B.Cu") (net 28) (tstamp 8592a8fb-b905-4c9d-ba25-f99789b3127f)) (segment (start 107 99.5) (end 107 100.75) (width 1) (layer "B.Cu") (net 28) (tstamp 952d9736-80b2-49ce-98c4-fc342426459f)) (segment (start 107.75 100) (end 108.25 100.5) (width 1) (layer "B.Cu") (net 28) (tstamp 95c6be3b-604b-4ef8-8734-3446b7e3b8f7)) (segment (start 107.25 101.5) (end 108.25 100.5) (width 1) (layer "B.Cu") (net 28) (tstamp 9ddc8b20-4d4c-444f-83c1-bb37ed62fcde)) (segment (start 100.3 63.2) (end 101.5 63.2) (width 1) (layer "B.Cu") (net 28) (tstamp b13eb918-9bd6-4a38-b824-c14a31a92d53)) (segment (start 101.5 63.2) (end 103.5 63.2) (width 1) (layer "B.Cu") (net 28) (tstamp b6151b56-8004-42f4-83c5-711516e9e969)) (segment (start 107.25 99.5) (end 107.75 100) (width 1) (layer "B.Cu") (net 28) (tstamp bd960078-8775-4334-b2c9-b36db48cf9bd)) (segment (start 107 97.5) (end 97.7 88.2) (width 1) (layer "B.Cu") (net 28) (tstamp c72bdf0c-7021-461f-af05-7a5d4d7a50db)) (segment (start 107 99.5) (end 107.25 99.5) (width 1) (layer "B.Cu") (net 28) (tstamp ccc64233-1427-4f84-b1aa-c1296ac0b406)) (segment (start 81.25 75.5) (end 97.65 75.5) (width 1) (layer "B.Cu") (net 28) (tstamp cdc1705f-7da1-4cfd-ab50-6e4a9697bb81)) (segment (start 107 99.5) (end 107 97.5) (width 1) (layer "B.Cu") (net 28) (tstamp ce8d4bcd-bf65-4224-86c2-5fa965be7c34)) (segment (start 97.65 75.5) (end 97.7 75.55) (width 1) (layer "B.Cu") (net 28) (tstamp d1d7808f-15cc-414e-8313-d2c6d49630dc)) (segment (start 97.7 75.55) (end 97.7 71.45) (width 1) (layer "B.Cu") (net 28) (tstamp d794eefd-6a67-4d12-b3eb-28727701909e)) (segment (start 97.7 71.45) (end 97.7 65.8) (width 1) (layer "B.Cu") (net 28) (tstamp e62f6ade-716c-47ec-819c-13d09ecab86c)) (segment (start 107 101.5) (end 107 100.75) (width 1) (layer "B.Cu") (net 28) (tstamp e8b5d6f7-d58c-4c5c-a209-317bc69aa523)) (segment (start 97.7 88.2) (end 97.7 75.55) (width 1) (layer "B.Cu") (net 28) (tstamp eb9553e8-2b7a-4c82-83dc-ae5beac9eb71)) (segment (start 105.56 61.14) (end 105.56 59.6) (width 1) (layer "B.Cu") (net 28) (tstamp f9d4933f-6ddf-4576-aa4d-6cb0ebab6ae1)) (segment (start 103.02 60.12) (end 103.02 59.6) (width 0.2) (layer "F.Cu") (net 29) (tstamp 323a1edc-30c3-4b0b-ace3-aa680585ad77)) (segment (start 105.6 65.125) (end 105.6 62.7) (width 0.2) (layer "F.Cu") (net 29) (tstamp 4b7bb299-1229-4e48-bcf7-c8f1d5d94b0c)) (segment (start 105.6 62.7) (end 103.02 60.12) (width 0.2) (layer "F.Cu") (net 29) (tstamp 6166df3d-bee9-47df-9ae8-faa359e751f4)) (segment (start 104.3 58.8) (end 103.6 58.1) (width 0.2) (layer "F.Cu") (net 30) (tstamp 238a43ab-b525-40aa-a16d-4afdbd7fc658)) (segment (start 107.2 62) (end 105.465006 62) (width 0.2) (layer "F.Cu") (net 30) (tstamp 5900c796-cfab-435a-afc0-e9c86b484ee5)) (segment (start 105.465006 62) (end 104.3 60.834994) (width 0.2) (layer "F.Cu") (net 30) (tstamp 611d5c1b-e0e6-4eb0-bf26-e3bde486de69)) (segment (start 100.48 58.42) (end 100.48 59.6) (width 0.2) (layer "F.Cu") (net 30) (tstamp 771a7aa7-6f08-4641-96ae-b783180f55a0)) (segment (start 100.8 58.1) (end 100.48 58.42) (width 0.2) (layer "F.Cu") (net 30) (tstamp 7b73fefc-fccc-4e1b-b145-6e6ab01f6edb)) (segment (start 104.3 60.834994) (end 104.3 58.8) (width 0.2) (layer "F.Cu") (net 30) (tstamp 8b1b3cbf-5545-4ea2-807d-b922e2f9552b)) (segment (start 109.25 64.05) (end 107.2 62) (width 0.2) (layer "F.Cu") (net 30) (tstamp dcade182-c45f-45fc-b3f1-640a5fa0d714)) (segment (start 103.6 58.1) (end 100.8 58.1) (width 0.2) (layer "F.Cu") (net 30) (tstamp f063d7e2-0a4d-435a-87a0-1d9956aa98ca)) (segment (start 109.25 64.8875) (end 109.25 64.05) (width 0.2) (layer "F.Cu") (net 30) (tstamp f997cce7-2b47-436e-b709-5525c78965c0)) (segment (start 114.54 92.54) (end 114.54 92.344184) (width 1) (layer "F.Cu") (net 31) (tstamp 03c690f4-1f2d-4fa7-a300-5535186f870a)) (segment (start 114.54 89.95) (end 114.54 91.21) (width 1) (layer "F.Cu") (net 31) (tstamp 03fcc04b-4cb9-4467-9431-d94f25d9f4e7)) (segment (start 114.325 66.325) (end 114.325 71.675) (width 0.2) (layer "F.Cu") (net 31) (tstamp 0d6c13eb-6d71-4de9-96a8-0606285f9273)) (segment (start 114.562908 91.777092) (end 114.54 91.8) (width 1) (layer "F.Cu") (net 31) (tstamp 1b009169-6902-4dbb-a000-8d067bdedd26)) (segment (start 112.7125 63.9125) (end 112.3125 63.5125) (width 0.2) (layer "F.Cu") (net 31) (tstamp 1fa1b362-c547-46da-9b8f-5c6ccba1e0aa)) (segment (start 112.7125 64.8) (end 112.8 64.8) (width 0.2) (layer "F.Cu") (net 31) (tstamp 41345ee8-9821-453b-8578-c181a4076721)) (segment (start 114.54 91.21) (end 114.54 92.54) (width 1) (layer "F.Cu") (net 31) (tstamp 41d47713-bb77-4177-8a9d-1b39ba32d73e)) (segment (start 112.3125 63.5125) (end 111.8 63.5125) (width 0.2) (layer "F.Cu") (net 31) (tstamp 496f55e9-a084-492a-95b3-26fac1733fe3)) (segment (start 157.3 95.25) (end 155.25 95.25) (width 1) (layer "F.Cu") (net 31) (tstamp 67d61a94-e09d-4fa9-a982-a35317c715ac)) (segment (start 112.7125 64.8) (end 112.7125 63.9125) (width 0.2) (layer "F.Cu") (net 31) (tstamp 714b4125-3839-4b0c-a483-f1a3b11eeae2)) (segment (start 114.325 71.675) (end 113.25 72.75) (width 0.2) (layer "F.Cu") (net 31) (tstamp 8e046e5a-c2f9-446c-837b-897f1d983c1f)) (segment (start 114.54 92.54) (end 114.54 93.6) (width 1) (layer "F.Cu") (net 31) (tstamp 90f50ea3-336d-4d9d-a561-d893bf6e3be2)) (segment (start 114.54 92.344184) (end 115.107092 91.777092) (width 1) (layer "F.Cu") (net 31) (tstamp a2c35c50-801d-4030-ae73-fb0d09fc321e)) (segment (start 151.777092 91.777092) (end 115.107092 91.777092) (width 1) (layer "F.Cu") (net 31) (tstamp ae631bcb-a2a9-4a8a-9c15-39c7de54ae2a)) (segment (start 115.107092 91.777092) (end 114.54 91.21) (width 1) (layer "F.Cu") (net 31) (tstamp cec99afc-23ee-4368-b3e0-ed620092ff72)) (segment (start 112.8 64.8) (end 114.325 66.325) (width 0.2) (layer "F.Cu") (net 31) (tstamp f502d557-0497-459e-bf91-5607e5dab48f)) (segment (start 155.25 95.25) (end 151.777092 91.777092) (width 1) (layer "F.Cu") (net 31) (tstamp f8509d29-4c0e-4238-af07-109803eb5246)) (via (at 114.54 93.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 31) (tstamp 0e265a86-732d-4f57-9175-850c40c1048b)) (via (at 114.54 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 31) (tstamp 91d86378-bf36-4361-b5a2-1b33eb3abe25)) (via (at 111.8 63.5125) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 31) (tstamp 94baed06-289f-4eb7-9dfa-e0b1087d6b79)) (via (at 115.5 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 31) (tstamp f3bddeac-211c-4202-9ab6-00570bd4d4a5)) (segment (start 114.54 69.96) (end 117.174511 67.325489) (width 1) (layer "B.Cu") (net 31) (tstamp 0a5b4900-58ea-479e-acc5-af00d5a241b2)) (segment (start 115.5 91.8) (end 115.5 90.96) (width 1) (layer "B.Cu") (net 31) (tstamp 124f7f4f-4f10-4e25-8841-5e63aeebf8fa)) (segment (start 114.54 93.6) (end 114.54 90) (width 1) (layer "B.Cu") (net 31) (tstamp 20116783-0a72-4a8b-9fa6-594a5110ad8b)) (segment (start 117.174511 59.714511) (end 117.06 59.6) (width 1) (layer "B.Cu") (net 31) (tstamp 28eb1323-ae8b-48bc-b103-f4f91f7766d8)) (segment (start 115.5 92.64) (end 114.54 93.6) (width 1) (layer "B.Cu") (net 31) (tstamp 3565194d-069e-4f01-8c5c-2d8b3e1d7675)) (segment (start 117.174511 62.325489) (end 117.174511 59.714511) (width 1) (layer "B.Cu") (net 31) (tstamp 4f26044f-9eb2-475b-8f22-e8588cbce09c)) (segment (start 116.824511 62.675489) (end 117.174511 62.325489) (width 0.2) (layer "B.Cu") (net 31) (tstamp 525fdce8-4c43-41d4-b663-3380e73e1211)) (segment (start 115.5 90.96) (end 114.54 90) (width 1) (layer "B.Cu") (net 31) (tstamp 5876f61a-c741-43dc-8338-78cd5c69ac71)) (segment (start 111.8 63.5125) (end 111.8 63) (width 0.2) (layer "B.Cu") (net 31) (tstamp 727f4131-e054-459d-86bd-09b9d1d17952)) (segment (start 112.124511 62.675489) (end 116.824511 62.675489) (width 0.2) (layer "B.Cu") (net 31) (tstamp 97c76142-0bb0-411a-b736-053d1b087fc5)) (segment (start 114.54 116.065) (end 114.54 93.6) (width 1) (layer "B.Cu") (net 31) (tstamp a7380dd2-bcdb-4f87-8ea9-a1b2a8e31f27)) (segment (start 117.174511 67.325489) (end 117.174511 62.325489) (width 1) (layer "B.Cu") (net 31) (tstamp cc78ce05-8d00-4724-9342-46de376a79ff)) (segment (start 114.54 90) (end 114.54 69.96) (width 1) (layer "B.Cu") (net 31) (tstamp e0030702-1128-4bea-ad73-01fd794d881f)) (segment (start 114.54 116.065) (end 118.275 119.8) (width 1) (layer "B.Cu") (net 31) (tstamp e7c38a36-8e8e-4d90-84df-b58cca304e68)) (segment (start 111.8 63) (end 112.124511 62.675489) (width 0.2) (layer "B.Cu") (net 31) (tstamp f4fc773b-38cd-43b0-a540-05413b582356)) (segment (start 115.5 91.8) (end 115.5 92.64) (width 1) (layer "B.Cu") (net 31) (tstamp fa01019f-3383-40a6-93ff-18eb3a34e97b)) (segment (start 117 62.6) (end 114.52 60.12) (width 0.2) (layer "F.Cu") (net 32) (tstamp 18bda04a-a346-446c-8606-99a8b90212f0)) (segment (start 117 65.0625) (end 117 62.6) (width 0.2) (layer "F.Cu") (net 32) (tstamp 7d36dcf7-5ee1-494f-ae69-16d831090fd0)) (segment (start 114.52 60.12) (end 114.52 59.6) (width 0.2) (layer "F.Cu") (net 32) (tstamp bb2d19bd-759c-4086-b97b-4c7de104b8d4)) (segment (start 116.965006 62) (end 115.8 60.834994) (width 0.2) (layer "F.Cu") (net 33) (tstamp 047e4b23-efd5-4b87-97d5-e3f9e6be0d2a)) (segment (start 112.3 58.1) (end 111.98 58.42) (width 0.2) (layer "F.Cu") (net 33) (tstamp 70eac661-50ce-4522-8ab0-e04e2807c224)) (segment (start 120.6 63.3) (end 119.3 62) (width 0.2) (layer "F.Cu") (net 33) (tstamp 7bbebfbb-83b4-4210-958e-93cb7f5ea366)) (segment (start 115.8 58.8) (end 115.1 58.1) (width 0.2) (layer "F.Cu") (net 33) (tstamp 88fdbfb1-5519-430d-8de6-9ffb0a4e9f08)) (segment (start 119.3 62) (end 116.965006 62) (width 0.2) (layer "F.Cu") (net 33) (tstamp 97faf8fd-832b-4b49-92c3-6f63d157c9a4)) (segment (start 115.1 58.1) (end 112.3 58.1) (width 0.2) (layer "F.Cu") (net 33) (tstamp 99a3ad76-3781-4f86-af1c-3d507bcbe023)) (segment (start 115.8 60.834994) (end 115.8 58.8) (width 0.2) (layer "F.Cu") (net 33) (tstamp da658d59-885b-4530-b81b-ce7e8732d0d3)) (segment (start 120.6 64.6875) (end 120.6 63.3) (width 0.2) (layer "F.Cu") (net 33) (tstamp e27c052b-215e-44ee-89a2-8527f6cf0d60)) (segment (start 111.98 58.42) (end 111.98 59.6) (width 0.2) (layer "F.Cu") (net 33) (tstamp fa6461ef-ce2b-45ed-8c64-365a6949f489)) (segment (start 124.3125 63.8125) (end 123.9 63.4) (width 0.2) (layer "F.Cu") (net 34) (tstamp 28c669d0-862f-491b-bef2-4da184a64571)) (segment (start 125.825 71.7) (end 124.75 72.775) (width 0.2) (layer "F.Cu") (net 34) (tstamp 2fb2b487-769e-467b-91d0-f4969666267f)) (segment (start 124.3125 64.9375) (end 125.825 66.45) (width 0.2) (layer "F.Cu") (net 34) (tstamp 40f43cad-76c2-4e04-9f12-4126006d40e3)) (segment (start 124.3125 64.6) (end 124.3125 63.8125) (width 0.2) (layer "F.Cu") (net 34) (tstamp b25ce3de-6011-407c-8a07-5be07fc34c45)) (segment (start 125.825 66.45) (end 125.825 71.7) (width 0.2) (layer "F.Cu") (net 34) (tstamp b857545e-b8ed-4e4c-8180-bc9d1f2fa666)) (segment (start 123.9 63.4) (end 123.4 63.4) (width 0.2) (layer "F.Cu") (net 34) (tstamp d8e5ead7-6b0f-4596-afe2-5301913fa634)) (segment (start 124.3125 64.6) (end 124.3125 64.9375) (width 0.2) (layer "F.Cu") (net 34) (tstamp ded608ed-b11d-4622-b338-576457d41363)) (via (at 123.4 63.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp 62c48053-cf46-4429-8426-7d56de54f287)) (segment (start 152 76.2) (end 152 58.658717) (width 0.75) (layer "B.Cu") (net 34) (tstamp 16f75b7c-e29d-4543-8ca4-dbc2f293b1bc)) (segment (start 129.775 119.8) (end 126.04 116.065) (width 1) (layer "B.Cu") (net 34) (tstamp 26ee79d8-c362-49d1-ab2b-b0f78a059cd7)) (segment (start 123.640479 62.659521) (end 123.4 62.9) (width 0.2) (layer "B.Cu") (net 34) (tstamp 2c63b93b-2939-4949-bd16-bb4f488c658e)) (segment (start 128.589501 62.659521) (end 123.640479 62.659521) (width 0.2) (layer "B.Cu") (net 34) (tstamp 2c6782b6-c586-41ea-ba33-a8668b3f3abf)) (segment (start 152 58.658717) (end 149.941283 56.6) (width 0.75) (layer "B.Cu") (net 34) (tstamp 2eb57776-c2b3-428e-a3c9-315e7dda4624)) (segment (start 131.070978 56.6) (end 128.56 59.110978) (width 0.75) (layer "B.Cu") (net 34) (tstamp 44092ae0-75f5-4817-ab01-918ba638f7b5)) (segment (start 126.04 70.149972) (end 128.674511 67.515461) (width 1) (layer "B.Cu") (net 34) (tstamp 4b16d19f-2225-432a-a1de-fd14b7017a40)) (segment (start 128.674511 62.574511) (end 128.589501 62.659521) (width 0.2) (layer "B.Cu") (net 34) (tstamp 627f2f8c-5878-4363-b6ab-1107775874c9)) (segment (start 157.3 81.5) (end 152 76.2) (width 0.75) (layer "B.Cu") (net 34) (tstamp 6d423537-0cb4-481b-acd7-be255f017b0b)) (segment (start 126.04 116.065) (end 126.04 70.149972) (width 1) (layer "B.Cu") (net 34) (tstamp 6e113ad7-8382-464c-ada0-885430d7d9ef)) (segment (start 123.4 62.9) (end 123.4 63.4) (width 0.2) (layer "B.Cu") (net 34) (tstamp 7067bd2e-4ca4-4847-bfc4-6524c214e413)) (segment (start 128.56 59.110978) (end 128.56 59.6) (width 0.75) (layer "B.Cu") (net 34) (tstamp 85df42e6-0732-4a92-a99d-8227fc71f742)) (segment (start 149.941283 56.6) (end 131.070978 56.6) (width 0.75) (layer "B.Cu") (net 34) (tstamp 8aa33e75-f0dd-43f6-8ef0-41883a54c2ec)) (segment (start 128.674511 59.714511) (end 128.56 59.6) (width 1) (layer "B.Cu") (net 34) (tstamp c89c194d-ba47-444f-8961-255202a8f1c4)) (segment (start 128.674511 62.574511) (end 128.674511 59.714511) (width 1) (layer "B.Cu") (net 34) (tstamp c9d51be4-bf85-478c-8356-4f02c675d93c)) (segment (start 128.674511 67.515461) (end 128.674511 62.574511) (width 1) (layer "B.Cu") (net 34) (tstamp e07067a4-761d-450b-b32b-7009be2bab7b)) (segment (start 157.3 83.975) (end 157.3 81.5) (width 0.75) (layer "B.Cu") (net 34) (tstamp e3d7212e-2223-4445-80f0-45d2a25659b6)) (segment (start 126.02 60.02) (end 126.02 59.6) (width 0.2) (layer "F.Cu") (net 35) (tstamp 0ffdc8fa-c65d-40c9-ba4c-55623a8fe54b)) (segment (start 128.4 65.0625) (end 128.4 62.4) (width 0.2) (layer "F.Cu") (net 35) (tstamp 3dc57893-102c-47c1-ac52-81c590ff2f78)) (segment (start 128.4 62.4) (end 126.02 60.02) (width 0.2) (layer "F.Cu") (net 35) (tstamp 54989ec6-696b-46e6-a453-0ef7cf7ac9db)) (segment (start 123.9 58) (end 123.48 58.42) (width 0.2) (layer "F.Cu") (net 36) (tstamp 0de4e021-e057-4cc5-964f-1c63a8a41c99)) (segment (start 128.7 62) (end 127.3 60.6) (width 0.2) (layer "F.Cu") (net 36) (tstamp 1acfc8a4-71c7-4489-aa7d-ab6eb7092bbf)) (segment (start 132 63.4) (end 130.6 62) (width 0.2) (layer "F.Cu") (net 36) (tstamp 2ac9c957-c832-48ef-819c-9e0d975b1d84)) (segment (start 127.3 58.5) (end 126.8 58) (width 0.2) (layer "F.Cu") (net 36) (tstamp 81d3675f-dd99-4664-9802-9978329bdd4c)) (segment (start 132 64.6875) (end 132 63.4) (width 0.2) (layer "F.Cu") (net 36) (tstamp c6d83762-db8d-44d4-b897-9ff1af87e811)) (segment (start 126.8 58) (end 123.9 58) (width 0.2) (layer "F.Cu") (net 36) (tstamp dcc4c3e0-7a10-4480-8fe1-c93f8372e8c4)) (segment (start 123.48 58.42) (end 123.48 59.6) (width 0.2) (layer "F.Cu") (net 36) (tstamp f12cf7ff-8f2f-44cd-b5f4-4e94ec42ca8c)) (segment (start 130.6 62) (end 128.7 62) (width 0.2) (layer "F.Cu") (net 36) (tstamp f1641991-46aa-4d92-b8f9-73ba46069de2)) (segment (start 127.3 60.6) (end 127.3 58.5) (width 0.2) (layer "F.Cu") (net 36) (tstamp fec34ff9-4ed6-4daa-863a-d180395d08f9)) (segment (start 140.06 60.26) (end 140.06 59.6) (width 0.75) (layer "F.Cu") (net 37) (tstamp 07a07afa-692f-421f-abb2-ebda8efb2876)) (segment (start 136.1125 64.8) (end 136.325 64.8) (width 0.2) (layer "F.Cu") (net 37) (tstamp 2f34c8d9-d07f-430c-bc25-22430ca8338f)) (segment (start 137.825 70.2) (end 136.75 71.275) (width 0.2) (layer "F.Cu") (net 37) (tstamp 33f5b711-ed9e-4fc9-a768-f731672c80ce)) (segment (start 135.8125 63.4125) (end 135.2 63.4125) (width 0.2) (layer "F.Cu") (net 37) (tstamp 5cc0a835-fde4-40b1-8ed8-53807c882630)) (segment (start 136.75 71.275) (end 136.75 72.775) (width 0.2) (layer "F.Cu") (net 37) (tstamp 65d4b86b-cef4-4ad3-88d3-ebc2c7312cf0)) (segment (start 136.1125 63.7125) (end 135.8125 63.4125) (width 0.2) (layer "F.Cu") (net 37) (tstamp 78e917ff-51c8-49fe-9fff-4738f766d065)) (segment (start 157.3 72.75) (end 157.3 65.120854) (width 0.75) (layer "F.Cu") (net 37) (tstamp 9cfdd78d-fd33-436d-b913-6b03f10dc782)) (segment (start 136.325 64.8) (end 137.825 66.3) (width 0.2) (layer "F.Cu") (net 37) (tstamp ae2282fc-e773-4639-ab12-6d9b6a95acd6)) (segment (start 153.679146 61.5) (end 141.3 61.5) (width 0.75) (layer "F.Cu") (net 37) (tstamp bab5f029-13ce-4815-919e-db3d74112091)) (segment (start 141.3 61.5) (end 140.06 60.26) (width 0.75) (layer "F.Cu") (net 37) (tstamp bdd2627d-610a-46ed-8461-bf3d129ebed8)) (segment (start 136.1125 64.8) (end 136.1125 63.7125) (width 0.2) (layer "F.Cu") (net 37) (tstamp ca457a4b-057b-4300-aa37-1583146b1d56)) (segment (start 157.3 65.120854) (end 153.679146 61.5) (width 0.75) (layer "F.Cu") (net 37) (tstamp cd878986-fa25-4712-b791-86962523180e)) (segment (start 137.825 66.3) (end 137.825 70.2) (width 0.2) (layer "F.Cu") (net 37) (tstamp eb8cde57-e08d-4141-82eb-911543c8834e)) (via (at 135.2 63.4125) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 662053cb-abc2-486b-85b2-79792c9779b6)) (segment (start 139.724511 62.675489) (end 140.074511 62.325489) (width 0.2) (layer "B.Cu") (net 37) (tstamp 331bed54-ec1e-44c8-ab0f-9b6f61ed5635)) (segment (start 140.074511 67.625489) (end 140.074511 62.325489) (width 1) (layer "B.Cu") (net 37) (tstamp 35c0a9a3-51be-4480-8000-7a9f0547df97)) (segment (start 137.25 70.45) (end 140.074511 67.625489) (width 1) (layer "B.Cu") (net 37) (tstamp 5398951b-108e-4fe3-a123-e602f8a32309)) (segment (start 141.025 119.8) (end 137.25 116.025) (width 1) (layer "B.Cu") (net 37) (tstamp 550fda77-fc86-45a7-b10a-c6f5df16fd74)) (segment (start 135.2 62.9) (end 135.424511 62.675489) (width 0.2) (layer "B.Cu") (net 37) (tstamp 605acb2e-fdcd-414f-8638-e63406c8966b)) (segment (start 140.074511 59.614511) (end 140.06 59.6) (width 1) (layer "B.Cu") (net 37) (tstamp 6919d1e8-e408-4482-b0fa-8495d4760989)) (segment (start 135.2 63.4125) (end 135.2 62.9) (width 0.2) (layer "B.Cu") (net 37) (tstamp aad29337-0de6-4c9d-83db-279ef27a246a)) (segment (start 137.25 116.025) (end 137.25 70.45) (width 1) (layer "B.Cu") (net 37) (tstamp c6b77d32-1580-48d2-a88e-b113f9162e1f)) (segment (start 135.424511 62.675489) (end 139.724511 62.675489) (width 0.2) (layer "B.Cu") (net 37) (tstamp d2aad6fa-c2af-434e-a798-58261cf7d438)) (segment (start 140.074511 62.325489) (end 140.074511 59.614511) (width 1) (layer "B.Cu") (net 37) (tstamp eca6eb85-b22d-4c71-9427-4892e02a474f)) (segment (start 137.52 60.02) (end 137.52 59.6) (width 0.2) (layer "F.Cu") (net 38) (tstamp 3699ad53-0916-486a-b7f4-948752c36631)) (segment (start 140.2 62.7) (end 137.52 60.02) (width 0.2) (layer "F.Cu") (net 38) (tstamp 6eb20bb4-41b4-4d86-a421-b819e63fdee7)) (segment (start 140.2 65.0625) (end 140.2 62.7) (width 0.2) (layer "F.Cu") (net 38) (tstamp ed919ef3-9c09-4aa2-943a-17f33093237f)) (segment (start 144.2 65.0875) (end 144.2 64) (width 0.2) (layer "F.Cu") (net 39) (tstamp 00dfe49d-e1a3-4f54-96b3-201b2ecf75dd)) (segment (start 138.8 58.7) (end 138.3 58.2) (width 0.2) (layer "F.Cu") (net 39) (tstamp 0b026c3f-a31e-42d9-b1f1-80df3a886693)) (segment (start 134.98 58.72) (end 134.98 59.6) (width 0.2) (layer "F.Cu") (net 39) (tstamp 1b4768fa-0a3d-4cba-8518-f209471272cf)) (segment (start 140.365006 62.3) (end 138.8 60.734994) (width 0.2) (layer "F.Cu") (net 39) (tstamp 1cec060e-10e0-4ae1-bef7-ff3090b5b644)) (segment (start 144.2 64) (end 142.5 62.3) (width 0.2) (layer "F.Cu") (net 39) (tstamp 39d481c5-3ca5-4d3d-89c5-1c0731b39be2)) (segment (start 135.5 58.2) (end 134.98 58.72) (width 0.2) (layer "F.Cu") (net 39) (tstamp 586424e6-0306-4d27-9e80-97b7d4958bf5)) (segment (start 138.3 58.2) (end 135.5 58.2) (width 0.2) (layer "F.Cu") (net 39) (tstamp b37166d5-0907-4219-a4de-7945660f158a)) (segment (start 142.5 62.3) (end 140.365006 62.3) (width 0.2) (layer "F.Cu") (net 39) (tstamp c19d07e1-eaf1-49c2-bd6f-82600421ea95)) (segment (start 138.8 60.734994) (end 138.8 58.7) (width 0.2) (layer "F.Cu") (net 39) (tstamp fdaade62-3cdc-4591-8d27-7efd365417f5)) (segment (start 105.1 121.9) (end 104.46 121.26) (width 1) (layer "F.Cu") (net 40) (tstamp 071bc365-9b7b-4cd3-b46b-4ad03aa7345a)) (segment (start 101.9 121.2) (end 101.1 122) (width 0.2) (layer "F.Cu") (net 40) (tstamp 124ddf0f-6062-405c-9837-12f149924346)) (segment (start 108.55 124.75) (end 109 124.75) (width 1) (layer "F.Cu") (net 40) (tstamp 12f1daf6-5e34-4b68-bdf9-d7b0e5e13133)) (segment (start 106.4 116) (end 105.8 115.4) (width 0.2) (layer "F.Cu") (net 40) (tstamp 205e2e86-30f7-49e7-a856-55e0032615f9)) (segment (start 102.84 128.442199) (end 104.84172 126.440479) (width 1) (layer "F.Cu") (net 40) (tstamp 280f9fe9-acc8-48d8-95e9-290d96e11a55)) (segment (start 104.46 121.26) (end 104.46 119.8) (width 1) (layer "F.Cu") (net 40) (tstamp 2d758a2e-7444-43bf-b975-e9ee4df4f6f1)) (segment (start 102.84 129.9) (end 102.84 128.442199) (width 1) (layer "F.Cu") (net 40) (tstamp 4b27a1bd-c1d5-4794-9179-82b81355a956)) (segment (start 106.8 121.9) (end 105.2 121.9) (width 0.2) (layer "F.Cu") (net 40) (tstamp 4b74add8-1006-4b65-968b-c85a51225ee9)) (segment (start 108.1 121.9) (end 109 122.8) (width 1) (layer "F.Cu") (net 40) (tstamp 516328df-6c88-4e83-b70c-55f636294124)) (segment (start 105.2 121.9) (end 104.5 121.2) (width 0.2) (layer "F.Cu") (net 40) (tstamp 57052162-0aa8-4ffb-a7d9-71a379dd8982)) (segment (start 106.859521 126.440479) (end 108.55 124.75) (width 1) (layer "F.Cu") (net 40) (tstamp 5b22d576-5f7e-4f64-9668-68fd8cb959a0)) (segment (start 106.8 121.9) (end 105.1 121.9) (width 1) (layer "F.Cu") (net 40) (tstamp 7263139f-29af-47e2-9c09-80dcae108ec9)) (segment (start 104.5 121.2) (end 101.9 121.2) (width 0.2) (layer "F.Cu") (net 40) (tstamp 96796d5b-80b9-4797-817d-7636013e250f)) (segment (start 104.84172 126.440479) (end 106.859521 126.440479) (width 1) (layer "F.Cu") (net 40) (tstamp 9c80ffca-6ad1-4014-a4c4-2b46f8eda1be)) (segment (start 106.4 117.86) (end 106.4 116) (width 0.2) (layer "F.Cu") (net 40) (tstamp aecac228-1cca-4994-9639-ad5e27f75eba)) (segment (start 106.8 121.9) (end 108.1 121.9) (width 1) (layer "F.Cu") (net 40) (tstamp c01f066b-eb8f-423c-8026-e12f66013502)) (segment (start 104.46 119.8) (end 106.4 117.86) (width 0.2) (layer "F.Cu") (net 40) (tstamp d0d4551a-6ea7-4859-9333-298910159244)) (segment (start 101.1 122) (end 101.1 123.7375) (width 0.2) (layer "F.Cu") (net 40) (tstamp edb1d44b-d686-454c-9d07-3bf244a50c0f)) (segment (start 109 122.8) (end 109 124.75) (width 1) (layer "F.Cu") (net 40) (tstamp f0480daf-c4a0-4a96-b7d7-b9348414cb55)) (segment (start 106.32 131.5) (end 107.92 129.9) (width 0.2) (layer "F.Cu") (net 41) (tstamp 0381d01f-50d9-4a5f-ba3b-24fce693802c)) (segment (start 98.9 131) (end 99.4 131.5) (width 0.2) (layer "F.Cu") (net 41) (tstamp 05513f70-b9d3-4848-90ed-f020284c211a)) (segment (start 100.25 126.115006) (end 98.9 127.465006) (width 0.2) (layer "F.Cu") (net 41) (tstamp 078082d5-5d28-4a5f-8fd7-58366b61ecbb)) (segment (start 98.9 127.465006) (end 98.9 131) (width 0.2) (layer "F.Cu") (net 41) (tstamp 192b4f47-dbfc-42e5-938d-795c1ca5cb86)) (segment (start 102.7125 112.6) (end 100.250001 115.062499) (width 0.2) (layer "F.Cu") (net 41) (tstamp 592e4ecd-1168-4911-b7b2-29163917cc17)) (segment (start 99.4 131.5) (end 106.32 131.5) (width 0.2) (layer "F.Cu") (net 41) (tstamp 78238f26-4588-4487-84dd-cf1585b491fb)) (segment (start 100.250001 115.062499) (end 100.25 126.115006) (width 0.2) (layer "F.Cu") (net 41) (tstamp 8597f660-352d-4ede-b2e8-9257d8fbe082)) (segment (start 112.7 121.7) (end 113.3 121.1) (width 0.2) (layer "F.Cu") (net 42) (tstamp 0b74ce55-f4b0-4801-b6f9-7c34159e9dc3)) (segment (start 116.275489 126.349511) (end 118.750489 126.349511) (width 1) (layer "F.Cu") (net 42) (tstamp 2ca7166e-2b5d-4f9e-bc38-35bcd82c178e)) (segment (start 120.35 124.75) (end 120.6 124.75) (width 1) (layer "F.Cu") (net 42) (tstamp 316d9a24-e377-4b5f-9457-f4a754eaef64)) (segment (start 120.6 122.7) (end 119.6 121.7) (width 1) (layer "F.Cu") (net 42) (tstamp 5c455b5b-9588-418a-a0da-380dbf3bcbfa)) (segment (start 115.735 120.935) (end 115.735 119.8) (width 1) (layer "F.Cu") (net 42) (tstamp 61af4aa4-c94a-4675-a72d-d33ff1d2a0ef)) (segment (start 114.75 115.6375) (end 114.9875 115.4) (width 0.2) (layer "F.Cu") (net 42) (tstamp 64221690-5e75-4924-9a5b-01f6e7eacbab)) (segment (start 120.6 124.665) (end 120.6 122.7) (width 1) (layer "F.Cu") (net 42) (tstamp 718c75b2-80bf-4b96-8a1b-cf8365b77917)) (segment (start 120.6 124.75) (end 120.6 124.665) (width 0.75) (layer "F.Cu") (net 42) (tstamp 7d0457e0-7613-478b-9cf8-aa66c6453ada)) (segment (start 114.75 118.815) (end 114.75 115.6375) (width 0.2) (layer "F.Cu") (net 42) (tstamp 8a1643b2-bf5f-407a-ab63-1e8fcc4e8a64)) (segment (start 118.750489 126.349511) (end 120.35 124.75) (width 1) (layer "F.Cu") (net 42) (tstamp 98108071-9cf6-42ec-baaf-12a3875e9928)) (segment (start 116.5 121.7) (end 115.735 120.935) (width 1) (layer "F.Cu") (net 42) (tstamp 9908edb8-5603-4078-a600-725caf6259b1)) (segment (start 119.6 121.7) (end 116.5 121.7) (width 1) (layer "F.Cu") (net 42) (tstamp a46d8f9e-1e58-489b-8b85-188eb73f63b4)) (segment (start 115.735 120.015) (end 115.735 119.8) (width 1) (layer "F.Cu") (net 42) (tstamp aea734c7-e0cb-4774-8d68-2b2c56b38b83)) (segment (start 113.3 121.1) (end 115.57 121.1) (width 0.2) (layer "F.Cu") (net 42) (tstamp ba67020a-4577-4aff-bff1-a2ed41389346)) (segment (start 114.44 129.9) (end 114.44 128.185) (width 1) (layer "F.Cu") (net 42) (tstamp c48d530b-53dc-43ce-9b74-4c6f86c96ac0)) (segment (start 114.44 128.185) (end 116.275489 126.349511) (width 1) (layer "F.Cu") (net 42) (tstamp d3f54358-da27-4988-b660-c3bdfd7b7919)) (segment (start 112.7 123.8375) (end 112.7 121.7) (width 0.2) (layer "F.Cu") (net 42) (tstamp da7d183a-8b77-423d-9697-9a1a39a6ad26)) (segment (start 114.75 118.815) (end 115.735 119.8) (width 0.2) (layer "F.Cu") (net 42) (tstamp fcfddbc7-5974-4271-a7ea-caa726d11492)) (segment (start 115.57 121.1) (end 115.735 120.935) (width 0.2) (layer "F.Cu") (net 42) (tstamp fe9fb5bd-ba89-454d-9b48-380fcbbc5a62)) (segment (start 110.5 130.979022) (end 110.920978 131.4) (width 0.2) (layer "F.Cu") (net 43) (tstamp 0c252640-70f4-478f-b475-274b196fa963)) (segment (start 113.875 118.075) (end 113.65 118.3) (width 0.2) (layer "F.Cu") (net 43) (tstamp 3cca07b9-3af4-411f-aa57-a48b55a1d73c)) (segment (start 110.920978 131.4) (end 118.02 131.4) (width 0.2) (layer "F.Cu") (net 43) (tstamp 5f0d6e26-6c6e-40e9-81ae-84ab68c04bcd)) (segment (start 112.575 118.3) (end 111.8 119.075) (width 0.2) (layer "F.Cu") (net 43) (tstamp 6587a471-1e09-49bd-ad1e-2fa88dbc8cfb)) (segment (start 118.02 131.4) (end 119.52 129.9) (width 0.2) (layer "F.Cu") (net 43) (tstamp 9b1c8d44-44e6-4040-8e24-7f0b81333d49)) (segment (start 113.875 112.6375) (end 113.875 118.075) (width 0.2) (layer "F.Cu") (net 43) (tstamp b40aac43-a67a-40e5-95e3-5ed27814b77d)) (segment (start 110.5 127.4) (end 110.5 130.979022) (width 0.2) (layer "F.Cu") (net 43) (tstamp b69a5b46-614a-40aa-b603-e168744cf811)) (segment (start 113.9125 112.6) (end 113.875 112.6375) (width 0.2) (layer "F.Cu") (net 43) (tstamp c98eb0de-e689-4a68-87ec-9e870d507aec)) (segment (start 113.65 118.3) (end 112.575 118.3) (width 0.2) (layer "F.Cu") (net 43) (tstamp d9ac44ec-5082-45f3-9629-dd80ba761749)) (segment (start 111.8 126.1) (end 110.5 127.4) (width 0.2) (layer "F.Cu") (net 43) (tstamp e2b59109-f46e-4adf-828e-9556ce2d1211)) (segment (start 111.8 119.075) (end 111.8 126.1) (width 0.2) (layer "F.Cu") (net 43) (tstamp fa7cb0f6-d0c1-4465-a1e0-a416c7aee27d)) (segment (start 46.875 62.8) (end 49.2 62.8) (width 0.2) (layer "F.Cu") (net 44) (tstamp 090a87d1-faa0-4e89-992d-185494244d06)) (segment (start 46.225 73.525) (end 46.225 63.45) (width 0.2) (layer "F.Cu") (net 44) (tstamp 8fc84969-be80-474c-a0d4-707c4c0cc724)) (segment (start 46.225 63.45) (end 46.875 62.8) (width 0.2) (layer "F.Cu") (net 44) (tstamp f0c135b5-90b9-43fe-b2c0-842c4a875a03)) (segment (start 46.95 74.25) (end 46.225 73.525) (width 0.2) (layer "F.Cu") (net 44) (tstamp f1fa9def-2d20-47de-af2b-447780a76b5e)) (segment (start 49.3 74.25) (end 46.95 74.25) (width 0.2) (layer "F.Cu") (net 44) (tstamp f9799b0e-36e2-4bae-8b97-fe461404a31a)) (segment (start 66.9 62.75) (end 67.2 63.05) (width 0.2) (layer "F.Cu") (net 45) (tstamp 12ddee8c-7fa8-43a5-ae40-84e2c19dc761)) (segment (start 67.2 70.275) (end 67.2 63.05) (width 1.5) (layer "F.Cu") (net 45) (tstamp 1ef726ad-4883-4a9f-8a95-7066de2136a0)) (segment (start 66.975 70.5) (end 67.2 70.275) (width 1.5) (layer "F.Cu") (net 45) (tstamp 6ba05702-9bdf-4569-935b-1ccd81bfe1d7)) (segment (start 63.1625 62.75) (end 66.9 62.75) (width 0.2) (layer "F.Cu") (net 45) (tstamp 9fe3b609-0080-4f4c-8a2f-c24bb70772a9)) (segment (start 54.5 62.75) (end 55.75 64) (width 0.2) (layer "F.Cu") (net 45) (tstamp b7fc0341-b2e3-424e-96bf-30a39cf341d9)) (segment (start 55.75 64) (end 61.9125 64) (width 0.2) (layer "F.Cu") (net 45) (tstamp d8736e2c-81e9-4ed3-8985-41341e9dc027)) (segment (start 61.9125 64) (end 63.1625 62.75) (width 0.2) (layer "F.Cu") (net 45) (tstamp f1498141-6ee8-4502-ba6b-cd85fb6e2d0c)) (segment (start 157.945 89.055) (end 160 87) (width 1.5) (layer "B.Cu") (net 45) (tstamp 0c809f1d-45fc-4c92-9364-7704bb4f5940)) (segment (start 124.695 119.8) (end 124.695 119.945) (width 1.5) (layer "B.Cu") (net 45) (tstamp 0e46d1f4-764d-40f0-ba71-eb0601aa70ad)) (segment (start 101.92 120.17) (end 104 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 201e88fe-eb7c-45d1-812e-7e0681f30b18)) (segment (start 113.195 119.8) (end 113.195 119.874947) (width 1.5) (layer "B.Cu") (net 45) (tstamp 2b579dd5-7bd1-47c6-a8b7-2b5fa7f55926)) (segment (start 113.195 119.9275) (end 113.195 119.8) (width 1.5) (layer "B.Cu") (net 45) (tstamp 2c67c4bb-fdca-4f8a-8748-46054d69544e)) (segment (start 79.74 78.74) (end 67.2 66.2) (width 1.5) (layer "B.Cu") (net 45) (tstamp 2cae6ead-5c32-4569-92fd-f1bcb1d26b74)) (segment (start 160 80.53) (end 157.3 77.83) (width 1.5) (layer "B.Cu") (net 45) (tstamp 2d201ab2-34a3-4b03-b9ff-bdaa6548e59a)) (segment (start 157.3 89.055) (end 157.945 89.055) (width 1.5) (layer "B.Cu") (net 45) (tstamp 340ae1c7-1063-4a45-8bd7-b2c774e9cb04)) (segment (start 102 97.9) (end 82.84 78.74) (width 1.5) (layer "B.Cu") (net 45) (tstamp 36158c21-658b-49c3-8569-49a5e4a907d3)) (segment (start 82.84 78.74) (end 79.74 78.74) (width 1.5) (layer "B.Cu") (net 45) (tstamp 3d05b553-274f-4e7d-b985-e878c7866c8a)) (segment (start 157.3 113.3) (end 157.3 111.58) (width 1.5) (layer "B.Cu") (net 45) (tstamp 5b88d18c-b344-4336-a9e6-fcbf69f9d191)) (segment (start 110.8725 122.25) (end 113.195 119.9275) (width 1.5) (layer "B.Cu") (net 45) (tstamp 5cdc5e87-b236-4a02-a3ea-7100d28d491a)) (segment (start 160 103.03) (end 157.3 100.33) (width 1.5) (layer "B.Cu") (net 45) (tstamp 5eea41ad-4b51-4bf0-9bc4-186096182b0b)) (segment (start 154 116.6) (end 157.3 113.3) (width 1.5) (layer "B.Cu") (net 45) (tstamp 66458bc0-0dec-4cc0-8eb4-68e2485a4cc7)) (segment (start 157.77 100.33) (end 160 98.1) (width 1.5) (layer "B.Cu") (net 45) (tstamp 6721b285-34e3-48c4-b169-d24d9cdc7908)) (segment (start 124.695 119.945) (end 127 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 6ced0bde-4ca9-4e9b-987f-2fce4ed55c00)) (segment (start 135.945 119.8) (end 135.945 120.195) (width 1.5) (layer "B.Cu") (net 45) (tstamp 718ad818-cb52-4fb5-9172-81199d410b88)) (segment (start 113.195 119.874947) (end 115.570053 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 778629bf-1a18-431e-a17b-9ce65f9095fd)) (segment (start 127 122.25) (end 133.495 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 782af7cd-61e0-4170-baef-c9565e3895e5)) (segment (start 104 122.25) (end 110.8725 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 7b06f58e-e3e8-4bc4-af3f-b522e6ea8715)) (segment (start 122.245 122.25) (end 124.695 119.8) (width 1.5) (layer "B.Cu") (net 45) (tstamp 88057d18-e0db-43ca-b05e-52cd6c3f2092)) (segment (start 138 122.25) (end 142.35 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 898e94fa-cfe1-44d7-9793-ffc4e920d1a9)) (segment (start 135.945 120.195) (end 138 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp 8baab8d1-795f-4405-881d-bf4569819e10)) (segment (start 157.3 100.33) (end 157.77 100.33) (width 1.5) (layer "B.Cu") (net 45) (tstamp 8d04f3d1-63ff-47bf-94a7-e7f935c30dd0)) (segment (start 133.495 122.25) (end 135.945 119.8) (width 1.5) (layer "B.Cu") (net 45) (tstamp 970641b9-7ddc-4df2-aac2-5696ad48079f)) (segment (start 102 119.72) (end 102 97.9) (width 1.5) (layer "B.Cu") (net 45) (tstamp 9a5b68e9-e50b-499e-b82b-80e669342dab)) (segment (start 157.82 111.58) (end 160 109.4) (width 1.5) (layer "B.Cu") (net 45) (tstamp a4657d74-169a-4285-a16d-ce01e423fe33)) (segment (start 101.92 119.8) (end 101.92 120.17) (width 1.5) (layer "B.Cu") (net 45) (tstamp a8879e54-06c8-4434-8461-04ad11516aa3)) (segment (start 148 116.6) (end 154 116.6) (width 1.5) (layer "B.Cu") (net 45) (tstamp c2f5d8a1-7e2b-40f2-b2d1-24914549c929)) (segment (start 157.3 111.58) (end 157.82 111.58) (width 1.5) (layer "B.Cu") (net 45) (tstamp cb354f3b-7743-4bc2-907f-a7c10291e9b5)) (segment (start 142.35 122.25) (end 148 116.6) (width 1.5) (layer "B.Cu") (net 45) (tstamp cca9760d-8139-4b9c-9d64-cbacb30cabaa)) (segment (start 67.2 66.2) (end 67.2 63.05) (width 1.5) (layer "B.Cu") (net 45) (tstamp d5bb0207-925f-42a3-a102-ff8d46976e08)) (segment (start 160 91.755) (end 157.3 89.055) (width 1.5) (layer "B.Cu") (net 45) (tstamp d7e437c4-3ec1-4eac-a5ad-60907770d88b)) (segment (start 115.570053 122.25) (end 122.245 122.25) (width 1.5) (layer "B.Cu") (net 45) (tstamp dd9ddeb4-9395-4454-9752-6ffbef289499)) (segment (start 101.92 119.8) (end 102 119.72) (width 1.5) (layer "B.Cu") (net 45) (tstamp dda4c11a-8292-40fe-b319-7fd3a9991729)) (segment (start 160 87) (end 160 80.53) (width 1.5) (layer "B.Cu") (net 45) (tstamp e5bf59be-7cb5-41a8-93e5-7cc87e7572f1)) (segment (start 160 98.1) (end 160 91.755) (width 1.5) (layer "B.Cu") (net 45) (tstamp ebf75106-e55a-4d18-b983-09253d90dc99)) (segment (start 160 109.4) (end 160 103.03) (width 1.5) (layer "B.Cu") (net 45) (tstamp f4824d88-13eb-4d9e-87c7-240e1e21e0c9)) (segment (start 104.65 68.0375) (end 103.6875 69) (width 0.2) (layer "F.Cu") (net 46) (tstamp 0ec3ad69-74f5-4160-b61b-910eb15b2bed)) (segment (start 104.65 67) (end 104.65 68.0375) (width 0.2) (layer "F.Cu") (net 46) (tstamp 26083e36-ed86-4647-8211-129712fbfd19)) (segment (start 58.3875 123.3125) (end 58.4 123.3) (width 0.25) (layer "F.Cu") (net 47) (tstamp 50003e11-11c0-43e7-8871-538123592a85)) (segment (start 56.4 123.3125) (end 58.3875 123.3125) (width 0.25) (layer "F.Cu") (net 47) (tstamp ab999689-c099-4335-8d02-0c70f8aa45ea)) (via (at 58.4 123.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (tstamp 5af8b994-f653-45fe-9f4f-97814e3f81f8)) (segment (start 64.77 93.31) (end 65.57548 94.11548) (width 0.25) (layer "B.Cu") (net 47) (tstamp 2fe478e6-429c-4a39-aa16-d0ceb8251d9e)) (segment (start 63.475 110.525) (end 63.475 122.025) (width 0.25) (layer "B.Cu") (net 47) (tstamp a90843dc-f4ce-4576-aec5-54fdd45f821e)) (segment (start 64.225 109.775) (end 63.475 110.525) (width 0.25) (layer "B.Cu") (net 47) (tstamp b252c9c1-23d2-49b3-aaea-ca0af4f2930b)) (segment (start 65.1 109.775) (end 64.225 109.775) (width 0.25) (layer "B.Cu") (net 47) (tstamp bc60bc44-7100-420c-b589-5fe25ed3e5a7)) (segment (start 63.475 122.025) (end 62.2 123.3) (width 0.25) (layer "B.Cu") (net 47) (tstamp bf1a25e0-c67f-43b3-8732-3058decc435d)) (segment (start 62.2 123.3) (end 58.4 123.3) (width 0.25) (layer "B.Cu") (net 47) (tstamp c9c89e31-94b6-474b-8383-597b8b96700c)) (segment (start 65.57548 94.11548) (end 65.57548 109.29952) (width 0.25) (layer "B.Cu") (net 47) (tstamp dc354204-e4fe-4e4a-b4ce-40a570012137)) (segment (start 65.57548 109.29952) (end 65.1 109.775) (width 0.25) (layer "B.Cu") (net 47) (tstamp ded79ddd-7de5-47c9-aa4f-e3b4fc3a3622)) (segment (start 56.4 121.4875) (end 54.7125 119.8) (width 0.25) (layer "F.Cu") (net 48) (tstamp 3cd55224-d72e-4f70-afa7-1a06af0554a7)) (segment (start 54.7125 119.8) (end 51.6 119.8) (width 0.25) (layer "F.Cu") (net 48) (tstamp c6c62992-2ef9-434d-8751-c5844a53ba6e)) (segment (start 51.6 119.8) (end 45.1 119.8) (width 0.25) (layer "F.Cu") (net 48) (tstamp e2256f69-6067-4932-ab2e-7dfdb3d86f18)) (segment (start 89.800961 120.628316) (end 90.298317 120.13096) (width 0.2) (layer "F.Cu") (net 49) (tstamp 0e46374b-fd1d-4dbc-b12e-87316ea7b391)) (segment (start 118.7375 83.7625) (end 118.7375 72) (width 0.2) (layer "F.Cu") (net 49) (tstamp 1e8dfe74-cc3f-422d-aad2-7bffd7af1888)) (segment (start 90.298317 120.13096) (end 91.954034 120.13096) (width 0.2) (layer "F.Cu") (net 49) (tstamp 22f82602-72c2-4b91-846c-4db79572618f)) (segment (start 105.25 91.815006) (end 105.25 91.25) (width 0.2) (layer "F.Cu") (net 49) (tstamp 3004f86a-6f4e-4132-99c8-44e94a1aa3f7)) (segment (start 92.651923 104.413083) (end 105.25 91.815006) (width 0.2) (layer "F.Cu") (net 49) (tstamp 386457fc-fd6e-41e6-8277-c680bffe3d9f)) (segment (start 117.7 84.8) (end 118.7375 83.7625) (width 0.2) (layer "F.Cu") (net 49) (tstamp 72dc6bc8-fdd2-446c-a926-43274c5c1709)) (segment (start 105.25 78.25) (end 108.030072 78.25) (width 0.2) (layer "F.Cu") (net 49) (tstamp 8cbebb53-68e7-41ca-b816-f71323a433db)) (segment (start 87.245012 126.21) (end 87.79 126.21) (width 0.2) (layer "F.Cu") (net 49) (tstamp 93f6e1b9-c8f1-40eb-97e0-08ba4770f7ea)) (segment (start 120.6 67.175) (end 118.775 69) (width 0.2) (layer "F.Cu") (net 49) (tstamp a1b59beb-4d6e-46fc-8bc2-9e3f87c4c289)) (segment (start 92.651923 119.433071) (end 92.651923 104.413083) (width 0.2) (layer "F.Cu") (net 49) (tstamp b0c4356a-8386-456c-99d0-5a7edcbdf336)) (segment (start 120.6 66.5125) (end 120.6 67.175) (width 0.2) (layer "F.Cu") (net 49) (tstamp b765649f-b050-4342-96e9-5fcb5b544696)) (segment (start 118.7375 69.0375) (end 118.775 69) (width 0.2) (layer "F.Cu") (net 49) (tstamp cb2c9c5f-db2f-476f-b46f-9f5ab4182391)) (segment (start 91.954034 120.13096) (end 92.651923 119.433071) (width 0.2) (layer "F.Cu") (net 49) (tstamp cf6a52f0-e7ed-4bc3-8fd8-9113fa9df3c5)) (segment (start 118.7375 72) (end 118.7375 69.0375) (width 0.2) (layer "F.Cu") (net 49) (tstamp d3a16b4a-6505-4d84-a27f-7c4fd602a6ec)) (segment (start 114.580072 84.8) (end 117.7 84.8) (width 0.2) (layer "F.Cu") (net 49) (tstamp e6cc7023-9a60-4b33-99d0-a633999acc0c)) (segment (start 87.79 126.21) (end 89.800959 124.199041) (width 0.2) (layer "F.Cu") (net 49) (tstamp e9351dde-615c-4505-a5a6-7e19aeac5693)) (segment (start 108.030072 78.25) (end 114.580072 84.8) (width 0.2) (layer "F.Cu") (net 49) (tstamp f7fb3289-b619-411f-884a-fd88037b044f)) (segment (start 89.800959 124.199041) (end 89.800961 120.628316) (width 0.2) (layer "F.Cu") (net 49) (tstamp fc3e99b4-0671-4de2-8d39-e982ae3cd6b3)) (via (at 105.25 78.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 49) (tstamp f68b5365-0e32-4e66-839f-cd54fd480a21)) (via (at 105.25 91.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 49) (tstamp f87817af-6ea2-4e52-bba8-d01cbb32a15e)) (segment (start 105.25 91.25) (end 105.25 78.25) (width 0.2) (layer "B.Cu") (net 49) (tstamp a7bbff94-76cb-4e03-bb7a-297cbc737a17)) (segment (start 100.8875 113.859994) (end 99.850481 114.897013) (width 0.2) (layer "F.Cu") (net 50) (tstamp 25a95d1f-604e-472d-a0ca-4c796b1cd9d0)) (segment (start 58.75 126) (end 58.75 132.25) (width 0.2) (layer "F.Cu") (net 50) (tstamp 2989ef75-0077-4ceb-a890-88cddb69a14d)) (segment (start 59.77 124.98) (end 58.75 126) (width 0.2) (layer "F.Cu") (net 50) (tstamp 41d52ee4-8e25-414d-b47f-cf9dce19d80e)) (segment (start 62.025 124.98) (end 59.77 124.98) (width 0.2) (layer "F.Cu") (net 50) (tstamp 491a9f3a-425a-478c-a5b1-33c3ce96de22)) (segment (start 100.8875 112.6) (end 100.8875 113.859994) (width 0.2) (layer "F.Cu") (net 50) (tstamp 69a7cf86-77de-4e9c-9edf-af5f8198769c)) (segment (start 99.850481 125.949519) (end 98.25 127.55) (width 0.2) (layer "F.Cu") (net 50) (tstamp b90c7c99-be47-4813-bff6-471b92d5ebc2)) (segment (start 58.75 132.25) (end 59.25 132.75) (width 0.2) (layer "F.Cu") (net 50) (tstamp c94c3ec7-cacc-4a9b-bb4c-35245c68afd9)) (segment (start 98.25 127.55) (end 98.25 133.5) (width 0.2) (layer "F.Cu") (net 50) (tstamp cab90bda-66ae-4eae-a7bc-ccdfb6458f33)) (segment (start 59.25 132.75) (end 61.8 132.75) (width 0.2) (layer "F.Cu") (net 50) (tstamp dc47ba7c-0873-464c-9304-391994c66643)) (segment (start 99.850481 114.897013) (end 99.850481 125.949519) (width 0.2) (layer "F.Cu") (net 50) (tstamp e0ea306a-e0c7-4cd1-adcd-5c8491d12153)) (via (at 61.8 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (tstamp b255769a-2b3e-48c5-a306-bdca26e95745)) (via (at 98.25 133.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (tstamp bf8a6ea2-bd06-4699-8f7a-9211ffae1ed0)) (segment (start 61.8 132.75) (end 62.499511 133.449511) (width 0.2) (layer "B.Cu") (net 50) (tstamp 2be70923-f77a-4f22-b5c1-0807e860032d)) (segment (start 98.199511 133.449511) (end 98.25 133.5) (width 0.2) (layer "B.Cu") (net 50) (tstamp a0acc4ef-1863-40d4-81d5-8e07bbcb2627)) (segment (start 62.499511 133.449511) (end 98.199511 133.449511) (width 0.2) (layer "B.Cu") (net 50) (tstamp ab6177e8-6d85-4458-94c6-ab51d05bd514)) (segment (start 61.41 123.71) (end 62.025 123.71) (width 0.2) (layer "F.Cu") (net 51) (tstamp 12f52236-148c-4064-84fe-f79c6ed2f6ec)) (segment (start 52.07 111.09) (end 52.07 114.37) (width 0.2) (layer "F.Cu") (net 51) (tstamp bc54dafd-457c-480e-b178-a6bcc43e8c32)) (segment (start 52.07 114.37) (end 61.41 123.71) (width 0.2) (layer "F.Cu") (net 51) (tstamp fed67914-792b-4bbd-a5f9-840534c6f1a0)) (segment (start 63.5 121.5) (end 59.29048 117.29048) (width 0.2) (layer "F.Cu") (net 52) (tstamp 0a932650-28f5-47c0-b276-6314fc41caa3)) (segment (start 54.61 114.11) (end 54.61 111.09) (width 0.2) (layer "F.Cu") (net 52) (tstamp 0ec000aa-f359-4ac8-9943-f7d4737fba62)) (segment (start 59.29048 117.29048) (end 59.29048 114.84048) (width 0.2) (layer "F.Cu") (net 52) (tstamp 1e99365c-1c9e-4295-b9f1-7b053422058b)) (segment (start 54.9 114.4) (end 54.61 114.11) (width 0.2) (layer "F.Cu") (net 52) (tstamp 2909b082-cb3e-4c8a-9402-5d8884eabbcb)) (segment (start 59.29048 114.84048) (end 58.85 114.4) (width 0.2) (layer "F.Cu") (net 52) (tstamp 4c5753d3-e5cf-4ab5-89cb-fe17153d68f6)) (segment (start 62.025 127.52) (end 62.555 127.52) (width 0.2) (layer "F.Cu") (net 52) (tstamp 54a07986-c099-46db-b460-cb937395b6c7)) (segment (start 63.5 126.575) (end 63.5 121.5) (width 0.2) (layer "F.Cu") (net 52) (tstamp 583c06b3-b62c-4d99-a4a9-e12a202e9f01)) (segment (start 62.555 127.52) (end 63.5 126.575) (width 0.2) (layer "F.Cu") (net 52) (tstamp 735af726-c366-4544-9694-79fd2ecf46b1)) (segment (start 58.85 114.4) (end 54.9 114.4) (width 0.2) (layer "F.Cu") (net 52) (tstamp b06d0797-1b04-4a80-9fb2-5c4053e253c2)) (segment (start 101.255225 105.04904) (end 108.314047 105.049041) (width 0.2) (layer "F.Cu") (net 53) (tstamp 05f54037-93d7-4a3d-8d88-6c53ea5e9543)) (segment (start 63.75 128.75) (end 64 129) (width 0.2) (layer "F.Cu") (net 53) (tstamp 39c772ac-faa6-4440-8473-16e821205889)) (segment (start 62.025 128.79) (end 62.065 128.75) (width 0.2) (layer "F.Cu") (net 53) (tstamp 41be8f82-4143-4386-a8d8-60ff2067e9a5)) (segment (start 97 132.75) (end 97 131.25) (width 0.2) (layer "F.Cu") (net 53) (tstamp 4b97e8a0-41a2-47fd-8f2b-06e04a95f380)) (segment (start 64 129) (end 64 132.75) (width 0.2) (layer "F.Cu") (net 53) (tstamp 5889ef64-96b4-43b0-8620-b0ce911fd4d6)) (segment (start 62.065 128.75) (end 63.75 128.75) (width 0.2) (layer "F.Cu") (net 53) (tstamp 689e28d0-8ca6-4083-91a3-2de7ef3ac040)) (segment (start 100.904745 105.39952) (end 101.255225 105.04904) (width 0.2) (layer "F.Cu") (net 53) (tstamp 79f29dfe-5d37-479e-9669-8b8ec14ae07e)) (segment (start 98.5 105.75) (end 98.85048 105.39952) (width 0.2) (layer "F.Cu") (net 53) (tstamp 9a8805ef-6640-42a0-a2e0-aed228a4e7df)) (segment (start 98.85048 105.39952) (end 100.904745 105.39952) (width 0.2) (layer "F.Cu") (net 53) (tstamp ca0224cb-6256-4b27-b9f1-f2436a532889)) (segment (start 110.35 112.6) (end 112.0875 112.6) (width 0.2) (layer "F.Cu") (net 53) (tstamp eaa039a1-ca74-4c9e-a9f2-fb4f5f32c81b)) (segment (start 109.75 112) (end 110.35 112.6) (width 0.2) (layer "F.Cu") (net 53) (tstamp ef967bf9-9f6e-4355-9dea-2aa19b785b2d)) (segment (start 109.75 106.484994) (end 109.75 112) (width 0.2) (layer "F.Cu") (net 53) (tstamp fb8b7a6c-7339-47a9-b7c9-5117660f7315)) (segment (start 108.314047 105.049041) (end 109.75 106.484994) (width 0.2) (layer "F.Cu") (net 53) (tstamp ff480b66-6b20-4d49-989f-f48793895d8a)) (via (at 97 131.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (tstamp 669ba372-9a88-44e0-8c02-83b4fe141d4b)) (via (at 97 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 53) (tstamp 6f503123-f066-45c0-9435-36c4c52d9b9a)) (via (at 64 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (tstamp a658e1ab-8fe5-44b4-bbe1-b408d39ccd3e)) (via (at 98.5 105.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (tstamp cf149601-9408-4973-ab00-26c17e339c53)) (segment (start 97.2 131.05) (end 97 131.25) (width 0.2) (layer "B.Cu") (net 53) (tstamp 4898f0d3-8123-4d20-a87d-df02e45e9399)) (segment (start 97.2 124.689259) (end 97.2 131.05) (width 0.2) (layer "B.Cu") (net 53) (tstamp 592a8701-9c88-4e65-83bd-ee3b1ef4537c)) (segment (start 98.5 112.75) (end 96.550489 114.699511) (width 0.2) (layer "B.Cu") (net 53) (tstamp 5ea6cb7a-3c19-466b-a3c2-a46bb1b2fdbd)) (segment (start 96.550489 114.699511) (end 96.550489 124.039748) (width 0.2) (layer "B.Cu") (net 53) (tstamp ab6f8d17-496a-49c4-abca-0fa65192879c)) (segment (start 96.550489 124.039748) (end 97.2 124.689259) (width 0.2) (layer "B.Cu") (net 53) (tstamp abeaa02e-17d7-4aac-9443-974245833bbb)) (segment (start 98.5 105.75) (end 98.5 112.75) (width 0.2) (layer "B.Cu") (net 53) (tstamp cb49a031-ff85-494e-b1fd-395210840c65)) (segment (start 64 132.75) (end 97 132.75) (width 0.2) (layer "B.Cu") (net 53) (tstamp da7a9ef2-fa57-45a4-bcad-53c2a22df4b1)) (segment (start 93.827432 132.997598) (end 95.89952 130.92551) (width 0.2) (layer "F.Cu") (net 54) (tstamp 117b6c28-da3c-49c1-8753-a686a20a69f3)) (segment (start 69.694994 130.06) (end 72.632592 132.997598) (width 0.2) (layer "F.Cu") (net 54) (tstamp 59a4f948-8c52-4dc7-b840-c9865c17a757)) (segment (start 122.55 112.8) (end 121 111.25) (width 0.2) (layer "F.Cu") (net 54) (tstamp 8394cc2a-4982-4b6d-bfbd-3eb8dbfbd67c)) (segment (start 72.632592 132.997598) (end 93.827432 132.997598) (width 0.2) (layer "F.Cu") (net 54) (tstamp 9402e3cf-01c6-4325-a084-9dc86d0aa8a3)) (segment (start 95.89952 117.85048) (end 98.5 115.25) (width 0.2) (layer "F.Cu") (net 54) (tstamp 9e0c4043-6267-40e4-a60e-a9a7d975271b)) (segment (start 66.975 130.06) (end 69.694994 130.06) (width 0.2) (layer "F.Cu") (net 54) (tstamp 9f02e231-f68d-48a7-8d31-5fa045e9707a)) (segment (start 118.5 104.25) (end 100.5 104.25) (width 0.2) (layer "F.Cu") (net 54) (tstamp a4982281-cb2e-4e67-b187-3dc42a2269fa)) (segment (start 121 111.25) (end 121 106.75) (width 0.2) (layer "F.Cu") (net 54) (tstamp c6366de0-d034-4744-8fcf-fe9160c0c045)) (segment (start 123.4875 112.8) (end 122.55 112.8) (width 0.2) (layer "F.Cu") (net 54) (tstamp dca14449-15cb-4e80-b2c9-26807b3e9ea5)) (segment (start 121 106.75) (end 118.5 104.25) (width 0.2) (layer "F.Cu") (net 54) (tstamp e1d40d67-d033-4daa-9d46-bc21ebcd0402)) (segment (start 95.89952 130.92551) (end 95.89952 117.85048) (width 0.2) (layer "F.Cu") (net 54) (tstamp ec308af8-8df5-4c7a-8778-568ae1e363e0)) (via (at 100.5 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 54) (tstamp a2303d9b-ca5e-45ae-ba58-1e4e7121f698)) (via (at 98.5 115.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 54) (tstamp ee5b8f6c-be4e-4713-86d7-d62da0773283)) (segment (start 100.5 104.25) (end 100.5 113.25) (width 0.2) (layer "B.Cu") (net 54) (tstamp b9e501cc-edfb-4348-b21d-7034b9e31b21)) (segment (start 100.5 113.25) (end 98.5 115.25) (width 0.2) (layer "B.Cu") (net 54) (tstamp d67efd5e-da9a-4519-a4d0-9e3f94e347d6)) (segment (start 59.69 117.124994) (end 64 121.434994) (width 0.2) (layer "F.Cu") (net 55) (tstamp 019e8224-5f26-4d8a-9f53-6e434349e49a)) (segment (start 64 121.434994) (end 64 126.5) (width 0.2) (layer "F.Cu") (net 55) (tstamp 355113db-c112-4ebc-877c-a6f387b5131c)) (segment (start 59.69 117.124994) (end 59.69 111.09) (width 0.2) (layer "F.Cu") (net 55) (tstamp 4f28dcbc-f655-4491-9ee6-de1dcf0d7259)) (segment (start 64 126.5) (end 66.29 128.79) (width 0.2) (layer "F.Cu") (net 55) (tstamp 7965b592-5696-4468-b97c-eb9fd568dc04)) (segment (start 66.29 128.79) (end 66.975 128.79) (width 0.2) (layer "F.Cu") (net 55) (tstamp f14fc968-f841-40e5-a4dd-49bdf41be2f2)) (segment (start 70.75 130.55) (end 72.798079 132.598079) (width 0.2) (layer "F.Cu") (net 56) (tstamp 18c27e2a-bdd8-4dca-bb5b-a8e9b6fcb967)) (segment (start 70.75 126.75) (end 70.75 130.55) (width 0.2) (layer "F.Cu") (net 56) (tstamp 2716e9a1-6ac0-4992-8987-907bda965150)) (segment (start 93.661945 132.598079) (end 95.44856 130.811464) (width 0.2) (layer "F.Cu") (net 56) (tstamp 40d6b434-4aa6-4765-a4b1-37e8c659f2e6)) (segment (start 133.725 112.8) (end 132.5 111.575) (width 0.2) (layer "F.Cu") (net 56) (tstamp 6aff83cf-b114-4e2c-aebd-7fc95ea31991)) (segment (start 101.565006 102.75) (end 99.5 102.75) (width 0.2) (layer "F.Cu") (net 56) (tstamp 7a5ee841-bf35-4451-b451-7b61a5e34933)) (segment (start 132.5 111.575) (end 132.5 106.72027) (width 0.2) (layer "F.Cu") (net 56) (tstamp 89d9ff77-b2f1-444d-9cba-d3d57537d382)) (segment (start 95.44856 130.811464) (end 95.44856 117.05144) (width 0.2) (layer "F.Cu") (net 56) (tstamp a5ac97ab-a4bc-4040-8d04-c3d63c4125c8)) (segment (start 102.265966 103.45096) (end 101.565006 102.75) (width 0.2) (layer "F.Cu") (net 56) (tstamp ab77be5a-068c-4f84-aeed-277707885e4b)) (segment (start 134.4875 112.8) (end 133.725 112.8) (width 0.2) (layer "F.Cu") (net 56) (tstamp abe14bb1-629f-4cc8-a5df-e4677956e006)) (segment (start 95.44856 117.05144) (end 97.25 115.25) (width 0.2) (layer "F.Cu") (net 56) (tstamp be6b9f5f-966a-42d7-ae7c-6effc1c03eae)) (segment (start 129.23069 103.45096) (end 102.265966 103.45096) (width 0.2) (layer "F.Cu") (net 56) (tstamp c4a25ffd-5858-4182-b8e6-8940e238c52a)) (segment (start 66.975 126.25) (end 70.25 126.25) (width 0.2) (layer "F.Cu") (net 56) (tstamp ca20a2c3-53e7-4f16-8485-d0e8134f92a0)) (segment (start 132.5 106.72027) (end 129.23069 103.45096) (width 0.2) (layer "F.Cu") (net 56) (tstamp cc4edde4-929f-4094-a4a2-6c76a307153f)) (segment (start 72.798079 132.598079) (end 93.661945 132.598079) (width 0.2) (layer "F.Cu") (net 56) (tstamp ccdf2e79-14ef-473d-be25-6ec983076dad)) (segment (start 70.25 126.25) (end 70.75 126.75) (width 0.2) (layer "F.Cu") (net 56) (tstamp ec0f9867-ede6-4b75-9729-b42e9d325aac)) (via (at 97.25 115.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (tstamp 5c2ca92c-2a53-4682-ae8d-47d34eded0bb)) (via (at 99.5 102.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (tstamp 635be419-f9ca-417b-9a3f-0d3c70bdfef8)) (segment (start 99.5 113) (end 97.25 115.25) (width 0.2) (layer "B.Cu") (net 56) (tstamp 6e363c3c-7239-4f94-8a5b-077bb2eb7435)) (segment (start 99.5 102.75) (end 99.5 113) (width 0.2) (layer "B.Cu") (net 56) (tstamp f057960c-8423-44b6-b1e8-17dbc727bc7d)) (segment (start 62.23 112.87) (end 62.23 111.09) (width 0.2) (layer "F.Cu") (net 57) (tstamp 09618cb1-8ee4-4425-97a2-b3827cf858b5)) (segment (start 60.08952 115.01048) (end 62.23 112.87) (width 0.2) (layer "F.Cu") (net 57) (tstamp 25d915b2-5b52-4b28-a490-46c31cfff6ea)) (segment (start 65.98 124.98) (end 64.39952 123.39952) (width 0.2) (layer "F.Cu") (net 57) (tstamp 4840bcf2-e962-403e-ac7e-6e26a85a7341)) (segment (start 60.08952 116.959508) (end 60.08952 115.01048) (width 0.2) (layer "F.Cu") (net 57) (tstamp 69053e4f-bb03-4a7c-9c72-731470f9d03a)) (segment (start 64.39952 121.269508) (end 60.08952 116.959508) (width 0.2) (layer "F.Cu") (net 57) (tstamp 86449dfe-caf0-48fb-8f91-9ce078c29c73)) (segment (start 66.975 124.98) (end 65.98 124.98) (width 0.2) (layer "F.Cu") (net 57) (tstamp 8a0fd1f9-736a-400c-9a38-4bf4f19bc670)) (segment (start 64.39952 123.39952) (end 64.39952 121.269508) (width 0.2) (layer "F.Cu") (net 57) (tstamp 8d0dae2c-2e88-4218-a40c-76754e847b0c)) (segment (start 64.77 111.09) (end 64.77 115.67) (width 0.2) (layer "F.Cu") (net 58) (tstamp 0a73cf23-7424-4e80-9ed8-7848ab200e0a)) (segment (start 64.77 115.67) (end 71.1 122) (width 0.2) (layer "F.Cu") (net 58) (tstamp 173b55c5-d7c4-493b-ae26-6224fdd27aeb)) (segment (start 71.41 123.71) (end 72.525 123.71) (width 0.2) (layer "F.Cu") (net 58) (tstamp 4c56387c-6351-4aa2-b01b-fcdf59ca5174)) (segment (start 71.1 122) (end 71.1 123.4) (width 0.2) (layer "F.Cu") (net 58) (tstamp a7608a81-92f1-4c09-ba3b-81bf89c948a2)) (segment (start 71.1 123.4) (end 71.41 123.71) (width 0.2) (layer "F.Cu") (net 58) (tstamp d3297310-82f7-46b7-a613-02b1eee4512f)) (segment (start 135.9 111.75) (end 140.25 111.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp 0f1899df-93b4-4dd5-bd27-b7ea1f0246a7)) (segment (start 112.6 113.5) (end 113 113.1) (width 0.2) (layer "F.Cu") (net 59) (tstamp 169e2213-a4ab-4403-b247-8a041269d4f2)) (segment (start 124.9 111.8) (end 132.1 111.8) (width 0.2) (layer "F.Cu") (net 59) (tstamp 23656f88-c84d-4c9d-9bde-5b20dd71ef43)) (segment (start 95.04904 113.45096) (end 96.85 111.65) (width 0.2) (layer "F.Cu") (net 59) (tstamp 28690592-b969-4154-ae2e-f94a2a844086)) (segment (start 113.4 111.7) (end 120.45 111.7) (width 0.2) (layer "F.Cu") (net 59) (tstamp 31692fa5-dc30-47bf-9ef2-83fab984c32e)) (segment (start 135.4 112.25) (end 135.9 111.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp 3c3e0eab-a1cb-409b-a202-b5c7bba46a39)) (segment (start 124.4 112.3) (end 124.9 111.8) (width 0.2) (layer "F.Cu") (net 59) (tstamp 3f6f4aed-e030-46f5-9312-511c4ad85a21)) (segment (start 96.85 111.65) (end 108.65 111.65) (width 0.2) (layer "F.Cu") (net 59) (tstamp 52002ff8-8a3e-4aa3-b899-ddf31cc81d6f)) (segment (start 71.15 130.384994) (end 72.963566 132.19856) (width 0.2) (layer "F.Cu") (net 59) (tstamp 565479e7-305c-4b38-963f-4b6e4a9633b4)) (segment (start 135.4 113.35) (end 135.4 112.25) (width 0.2) (layer "F.Cu") (net 59) (tstamp 65264eea-fcd5-4ea0-9c99-e09452f3436e)) (segment (start 149.0875 111) (end 149.0875 112.1125) (width 0.2) (layer "F.Cu") (net 59) (tstamp 68d945a4-ae4a-4d50-b54e-c228cebad2c1)) (segment (start 120.45 111.7) (end 122.5 113.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp 84a75541-5f98-4791-97e4-91f485456fde)) (segment (start 93.496458 132.19856) (end 95.04904 130.645978) (width 0.2) (layer "F.Cu") (net 59) (tstamp 967fa782-bb69-4d96-9db0-2f2d905e69db)) (segment (start 132.1 111.8) (end 134.05 113.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp 9a60b7d8-dc20-48f5-907f-c04c08802454)) (segment (start 140.25 111.75) (end 141.25 112.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp a1bec49e-5ac5-4b8d-9697-35a2d96d6613)) (segment (start 122.5 113.75) (end 123.9 113.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp b2ff1104-cc52-4a7e-9c1d-a4264964ecc1)) (segment (start 113 112.1) (end 113.4 111.7) (width 0.2) (layer "F.Cu") (net 59) (tstamp b3b18763-7d23-420d-87db-3973f6846e21)) (segment (start 123.9 113.75) (end 124.4 113.25) (width 0.2) (layer "F.Cu") (net 59) (tstamp b65c7060-56ed-439c-9431-656e2f79de3a)) (segment (start 110.5 113.5) (end 112.6 113.5) (width 0.2) (layer "F.Cu") (net 59) (tstamp b80e7725-8ed8-47e4-9de6-e8c8f42ac1d8)) (segment (start 71.82 124.98) (end 71.15 125.65) (width 0.2) (layer "F.Cu") (net 59) (tstamp b816a409-2801-40fe-9c3a-17b8794dc919)) (segment (start 134.05 113.75) (end 135 113.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp cbb260d3-3a38-4fba-8390-8549698ccf83)) (segment (start 95.04904 130.645978) (end 95.04904 113.45096) (width 0.2) (layer "F.Cu") (net 59) (tstamp cdb397a2-2714-486b-a133-6d868384db20)) (segment (start 72.963566 132.19856) (end 93.496458 132.19856) (width 0.2) (layer "F.Cu") (net 59) (tstamp d2ddab70-ec27-4b1f-8066-00a3a8a4eb94)) (segment (start 72.525 124.98) (end 71.82 124.98) (width 0.2) (layer "F.Cu") (net 59) (tstamp db5b9b98-2c85-4243-b66a-2d4c5b4016c9)) (segment (start 124.4 113.25) (end 124.4 112.3) (width 0.2) (layer "F.Cu") (net 59) (tstamp dd591c14-754e-4ef7-8732-8d48d7b3887c)) (segment (start 149.0875 112.1125) (end 148.45 112.75) (width 0.2) (layer "F.Cu") (net 59) (tstamp e2fe1992-b79d-4aab-8043-bae3bc53ee06)) (segment (start 71.15 125.65) (end 71.15 130.384994) (width 0.2) (layer "F.Cu") (net 59) (tstamp eaa70c66-6bc3-4e7b-93e8-3719d5426ab1)) (segment (start 113 113.1) (end 113 112.1) (width 0.2) (layer "F.Cu") (net 59) (tstamp f06afe9c-8b58-40ae-bbf2-ec109d445dd7)) (segment (start 108.65 111.65) (end 110.5 113.5) (width 0.2) (layer "F.Cu") (net 59) (tstamp fa755176-8685-40a2-b27d-32c51cef1f0f)) (segment (start 135 113.75) (end 135.4 113.35) (width 0.2) (layer "F.Cu") (net 59) (tstamp feadb94e-7637-4693-9b15-e9b50efe14e7)) (via (at 148.45 112.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 59) (tstamp 93b62df9-3437-4889-b249-88c75b8c6654)) (via (at 141.25 112.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 59) (tstamp cdd3c7e8-8acf-40b4-9a63-c5de3f6cf036)) (segment (start 147.475 113.725) (end 148.45 112.75) (width 0.2) (layer "B.Cu") (net 59) (tstamp 60874fc4-879b-4de6-b538-616fa9d6788f)) (segment (start 141.25 112.75) (end 142.225 113.725) (width 0.2) (layer "B.Cu") (net 59) (tstamp 959611a4-4370-4319-b5c5-e9c5edf10b3d)) (segment (start 142.225 113.725) (end 147.475 113.725) (width 0.2) (layer "B.Cu") (net 59) (tstamp fd89aedc-7df2-4734-8899-774eb29ed43d)) (segment (start 67.31 111.09) (end 67.31 115.315012) (width 0.2) (layer "F.Cu") (net 60) (tstamp 08560c10-1409-43b3-a85d-a2f4bc301838)) (segment (start 75.3 127.7) (end 72.705 127.7) (width 0.2) (layer "F.Cu") (net 60) (tstamp 1fa7fda8-f576-4582-a4b4-6f69b99ad149)) (segment (start 72.705 127.7) (end 72.525 127.52) (width 0.2) (layer "F.Cu") (net 60) (tstamp 3aae38d8-a2e4-443e-a9c6-91485a832df5)) (segment (start 73.87596 124.005972) (end 75.775 125.905012) (width 0.2) (layer "F.Cu") (net 60) (tstamp 4e9b017b-f261-422d-815e-a7cc5b889fc7)) (segment (start 75.775 125.905012) (end 75.775 127.225) (width 0.2) (layer "F.Cu") (net 60) (tstamp 787d4afb-2be8-4a16-9392-528dbf94e721)) (segment (start 75.775 127.225) (end 75.3 127.7) (width 0.2) (layer "F.Cu") (net 60) (tstamp 9a5121a8-b503-4e57-916a-020e94bcedf3)) (segment (start 67.31 115.315012) (end 73.87596 121.880972) (width 0.2) (layer "F.Cu") (net 60) (tstamp b4c08bf0-9eeb-42ad-be3e-96dae6fb92b6)) (segment (start 73.87596 121.880972) (end 73.87596 124.005972) (width 0.2) (layer "F.Cu") (net 60) (tstamp dca96f17-9ed6-4d23-9c5b-8a2a8ebd9aec)) (segment (start 77.49904 131.79904) (end 93.330972 131.79904) (width 0.2) (layer "F.Cu") (net 61) (tstamp 010f598c-658c-4866-ab86-c896f9b5850a)) (segment (start 112.25 96.5) (end 113.75 98) (width 0.2) (layer "F.Cu") (net 61) (tstamp 164f0c53-7533-44c9-b21a-154bf8953476)) (segment (start 113.75 98) (end 140.8 98) (width 0.2) (layer "F.Cu") (net 61) (tstamp 25408238-ce25-4d5c-b875-67761a06d43b)) (segment (start 72.715 128.6) (end 75.35 128.6) (width 0.2) (layer "F.Cu") (net 61) (tstamp 2a908cc7-f06f-46e3-885e-ee43f198043c)) (segment (start 93.330972 131.79904) (end 94.649519 130.480493) (width 0.2) (layer "F.Cu") (net 61) (tstamp 2b825cf2-7d20-4d1d-93f2-3b48f43609d1)) (segment (start 104.390036 95.5) (end 107 95.5) (width 0.2) (layer "F.Cu") (net 61) (tstamp 3f1c2acd-14a5-4806-9b17-4d78c5067e65)) (segment (start 76.125 130.425) (end 77.49904 131.79904) (width 0.2) (layer "F.Cu") (net 61) (tstamp 42bfb9e2-b3ef-48dd-bc15-aaa83ce28a55)) (segment (start 94.649519 130.480493) (end 94.649519 105.240517) (width 0.2) (layer "F.Cu") (net 61) (tstamp 689daa56-c625-4dbc-8517-2d246036bb3a)) (segment (start 142.4 99.6) (end 144.025 99.6) (width 0.2) (layer "F.Cu") (net 61) (tstamp 6e9b6b50-f239-4c33-81c7-73e14a192e8a)) (segment (start 76.125 129.375) (end 76.125 130.425) (width 0.2) (layer "F.Cu") (net 61) (tstamp 8ecb89b5-f4f1-4a49-a736-f308f044391f)) (segment (start 144.025 99.6) (end 144.775 100.35) (width 0.2) (layer "F.Cu") (net 61) (tstamp 931dfdc9-9b7f-4d57-8da5-7dede93d5ec7)) (segment (start 148.4875 100.35) (end 149.0875 99.75) (width 0.2) (layer "F.Cu") (net 61) (tstamp 974e45b1-a1b1-44cf-89cd-be456fc6ced9)) (segment (start 144.775 100.35) (end 148.4875 100.35) (width 0.2) (layer "F.Cu") (net 61) (tstamp ab2512e9-f52b-45c3-9910-6bf6c17c2bbb)) (segment (start 140.8 98) (end 142.4 99.6) (width 0.2) (layer "F.Cu") (net 61) (tstamp b90f9b59-73de-462a-bdab-b3be7172436c)) (segment (start 94.649519 105.240517) (end 104.390036 95.5) (width 0.2) (layer "F.Cu") (net 61) (tstamp beb534cd-d3a8-443c-acef-39a4e9fbd754)) (segment (start 72.525 128.79) (end 72.715 128.6) (width 0.2) (layer "F.Cu") (net 61) (tstamp c52ec248-0bc7-4c3b-b000-3a1748ddf3e1)) (segment (start 75.35 128.6) (end 76.125 129.375) (width 0.2) (layer "F.Cu") (net 61) (tstamp c8574412-396a-4758-a7a5-3217e0afb893)) (via (at 112.25 96.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 61) (tstamp 8a4619b2-963f-438d-bd03-20b990394670)) (via (at 107 95.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 61) (tstamp 8a8ae5c0-cea9-43e7-8346-4271bf48e4d6)) (segment (start 108 96.5) (end 112.25 96.5) (width 0.2) (layer "B.Cu") (net 61) (tstamp 48f14892-7e55-4d31-8f4f-cba3a75fc025)) (segment (start 107 95.5) (end 108 96.5) (width 0.2) (layer "B.Cu") (net 61) (tstamp f1bede7b-4beb-41ae-b85c-1e5b8a1116fb)) (segment (start 78.64 130.06) (end 78.95 129.75) (width 0.2) (layer "F.Cu") (net 62) (tstamp 15ffd695-3ef4-419e-a324-c09464796ef5)) (segment (start 108.75 90.57503) (end 108.75 88) (width 0.2) (layer "F.Cu") (net 62) (tstamp 23efc509-8df6-417c-a214-2a4943bb6f8f)) (segment (start 94.25 130.315006) (end 94.25 105.07503) (width 0.2) (layer "F.Cu") (net 62) (tstamp 2a729fb5-9263-4802-8f15-d4be67dd1d69)) (segment (start 113.259063 87.999039) (end 138.694774 87.999039) (width 0.2) (layer "F.Cu") (net 62) (tstamp 40e3d241-660e-4aee-aed7-4d3a5dcfa197)) (segment (start 109.260024 84) (end 113.259063 87.999039) (width 0.2) (layer "F.Cu") (net 62) (tstamp 5d2cd60b-bbe1-4f6b-83a0-d21b14262f8c)) (segment (start 77.475 130.06) (end 78.64 130.06) (width 0.2) (layer "F.Cu") (net 62) (tstamp 664b86bb-29b7-42f5-8bbf-13e059c3b1e6)) (segment (start 82.434994 129.75) (end 84.084513 131.399519) (width 0.2) (layer "F.Cu") (net 62) (tstamp 68068290-3256-4c54-af87-a59064afd2e9)) (segment (start 84.084513 131.399519) (end 93.165486 131.39952) (width 0.2) (layer "F.Cu") (net 62) (tstamp 6b39659f-a35c-476b-803c-9e0a91338e52)) (segment (start 138.694774 87.999039) (end 139.195735 88.5) (width 0.2) (layer "F.Cu") (net 62) (tstamp 747255c1-e78b-40ae-88fa-fb22dd3ca97a)) (segment (start 93.165486 131.39952) (end 94.25 130.315006) (width 0.2) (layer "F.Cu") (net 62) (tstamp 7663e2f9-b872-4323-b209-ee6e1409214c)) (segment (start 139.195735 88.5) (end 149.0875 88.5) (width 0.2) (layer "F.Cu") (net 62) (tstamp 9bb193f0-c8be-4dde-8eca-8b9f4a890afe)) (segment (start 78.95 129.75) (end 82.434994 129.75) (width 0.2) (layer "F.Cu") (net 62) (tstamp ad02f900-a442-43c8-a21d-61f22c9ef787)) (segment (start 94.25 105.07503) (end 108.75 90.57503) (width 0.2) (layer "F.Cu") (net 62) (tstamp c045ea23-b274-44eb-a9d5-e3981a07a57a)) (segment (start 108.75 84) (end 109.260024 84) (width 0.2) (layer "F.Cu") (net 62) (tstamp d1565989-f02d-4324-ab50-9559c76a6eeb)) (via (at 108.75 84) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 62) (tstamp 02690e39-5c30-4db9-85f9-3ed0659d5c98)) (via (at 108.75 88) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 62) (tstamp 0ea54d01-1915-48e2-9ad4-200b6eca82ca)) (segment (start 108.75 88) (end 108.75 84) (width 0.2) (layer "B.Cu") (net 62) (tstamp 8b6729cb-4c8a-4d09-95b3-c18783ae3366)) (segment (start 72.39 111.09) (end 72.39 119.830006) (width 0.2) (layer "F.Cu") (net 63) (tstamp 0ef46f11-6681-411e-ba9c-97446f926c88)) (segment (start 76.69 128.79) (end 77.475 128.79) (width 0.2) (layer "F.Cu") (net 63) (tstamp 35662472-a989-4835-bb06-248a858f220a)) (segment (start 74.27548 121.715486) (end 74.27548 123.840486) (width 0.2) (layer "F.Cu") (net 63) (tstamp 3be26983-b096-4c73-97bf-068312fd3ff7)) (segment (start 74.27548 123.840486) (end 76.175 125.740006) (width 0.2) (layer "F.Cu") (net 63) (tstamp 5c3acab8-79b9-4389-a37b-a188169a0a18)) (segment (start 72.39 119.830006) (end 74.27548 121.715486) (width 0.2) (layer "F.Cu") (net 63) (tstamp 7284b195-e20b-4ad0-821c-ec88de96878a)) (segment (start 76.175 128.275) (end 76.69 128.79) (width 0.2) (layer "F.Cu") (net 63) (tstamp 9627f4f2-8eb9-4c89-81de-dd567b910b78)) (segment (start 76.175 125.740006) (end 76.175 128.275) (width 0.2) (layer "F.Cu") (net 63) (tstamp a69b07ca-7060-4e71-a300-582b0f0ec3f5)) (segment (start 148.9375 77.25) (end 149.0875 77.4) (width 0.2) (layer "F.Cu") (net 64) (tstamp 0b1433eb-9c2f-437f-bd59-6f04c3f4c41f)) (segment (start 140.4 88.1) (end 139.360741 88.1) (width 0.2) (layer "F.Cu") (net 64) (tstamp 155af7c3-589a-41ef-b5c8-7b14d6884e89)) (segment (start 141 87.5) (end 140.4 88.1) (width 0.2) (layer "F.Cu") (net 64) (tstamp 39001f7a-9513-433a-8c6e-ffee17ea21f0)) (segment (start 93.85048 104.909544) (end 108 90.760024) (width 0.2) (layer "F.Cu") (net 64) (tstamp 55956cc9-7b6f-4953-b86a-dc59c31db057)) (segment (start 77.475 126.25) (end 79.5 126.25) (width 0.2) (layer "F.Cu") (net 64) (tstamp 5605fd49-4211-40bf-bbc1-c219bcac149d)) (segment (start 108.82503 83) (end 108 83) (width 0.2) (layer "F.Cu") (net 64) (tstamp 6ba63884-eb5c-48ad-99b3-aba8d4af89bc)) (segment (start 139.360741 88.1) (end 138.860261 87.59952) (width 0.2) (layer "F.Cu") (net 64) (tstamp 7bb08e5f-6539-4292-bafa-d3aac0e4bef2)) (segment (start 93 131) (end 93.85048 130.14952) (width 0.2) (layer "F.Cu") (net 64) (tstamp 7e1e9d53-1714-4775-a414-494925c807c2)) (segment (start 79.5 126.25) (end 84.25 131) (width 0.2) (layer "F.Cu") (net 64) (tstamp 82be8a19-6633-4fee-8a8d-f08f84dffee2)) (segment (start 108 90.760024) (end 108 89) (width 0.2) (layer "F.Cu") (net 64) (tstamp 8eef07ec-f211-4e68-a900-19d563148ccc)) (segment (start 93.85048 130.14952) (end 93.85048 104.909544) (width 0.2) (layer "F.Cu") (net 64) (tstamp b2145f24-8cc1-43b3-8aa6-4dd84bf6f33c)) (segment (start 141.75 77.25) (end 148.9375 77.25) (width 0.2) (layer "F.Cu") (net 64) (tstamp bbc33d29-42b9-48e7-9ea4-070a45e717b2)) (segment (start 138.860261 87.59952) (end 113.424549 87.599519) (width 0.2) (layer "F.Cu") (net 64) (tstamp bbe8f46c-c228-4de7-8dd4-4ad2d4c7bfeb)) (segment (start 84.25 131) (end 93 131) (width 0.2) (layer "F.Cu") (net 64) (tstamp c4b3aa81-9324-4b73-9701-100e93cbc4b6)) (segment (start 113.424549 87.599519) (end 108.82503 83) (width 0.2) (layer "F.Cu") (net 64) (tstamp d26fd624-5e28-491f-9c4d-290a672306c2)) (via (at 141 87.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (tstamp 0628b4b5-809c-4703-bba4-99a330a3788d)) (via (at 108 89) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (tstamp 516ad7b9-f7b7-49df-91fe-5a7850746ee0)) (via (at 141.75 77.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (tstamp 62080fd1-554c-4dc0-923b-335aba259eef)) (via (at 108 83) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (tstamp d226ba29-9b49-437f-bc64-a294b1e10958)) (segment (start 141.75 79.25) (end 141.75 77.25) (width 0.2) (layer "B.Cu") (net 64) (tstamp 15473f32-996b-4a11-9af0-3bf654fec9d5)) (segment (start 141 80) (end 141.75 79.25) (width 0.2) (layer "B.Cu") (net 64) (tstamp 47906bb0-779a-4623-958c-a4671d480762)) (segment (start 108 89) (end 108 83) (width 0.2) (layer "B.Cu") (net 64) (tstamp 557f64ec-346a-4eed-aac2-02fa411a6960)) (segment (start 141 87.5) (end 141 80) (width 0.2) (layer "B.Cu") (net 64) (tstamp 5da65117-3150-4508-9d27-f0744ef04df1)) (segment (start 72.78952 115.01048) (end 74.93 112.87) (width 0.2) (layer "F.Cu") (net 65) (tstamp 1f551af7-39ba-4bf8-bea8-b8131ed5a3ec)) (segment (start 74.93 112.87) (end 74.93 111.09) (width 0.2) (layer "F.Cu") (net 65) (tstamp 2d028363-94ea-4047-8234-fcf5866f5bb7)) (segment (start 74.675 123.675) (end 74.675 121.55) (width 0.2) (layer "F.Cu") (net 65) (tstamp 6dd53336-7bb0-44ba-a3b1-5ac789cb3547)) (segment (start 77.475 124.98) (end 75.98 124.98) (width 0.2) (layer "F.Cu") (net 65) (tstamp 71ea1f51-7e5f-44d4-aeca-f98a0ba00d8f)) (segment (start 74.675 121.55) (end 72.78952 119.66452) (width 0.2) (layer "F.Cu") (net 65) (tstamp 911d4715-0171-4066-a62f-9933b7591a7e)) (segment (start 75.98 124.98) (end 74.675 123.675) (width 0.2) (layer "F.Cu") (net 65) (tstamp d33cf9be-62f2-4ec6-986b-e62e465e2a87)) (segment (start 72.78952 119.66452) (end 72.78952 115.01048) (width 0.2) (layer "F.Cu") (net 65) (tstamp faffa4e5-7af7-435e-8a63-092a4b3c49b8)) (segment (start 85.4 122.4) (end 80.01 117.01) (width 0.2) (layer "F.Cu") (net 66) (tstamp 2592829e-9dfb-4518-9d07-9662c1807809)) (segment (start 86.184283 122.4) (end 85.4 122.4) (width 0.2) (layer "F.Cu") (net 66) (tstamp 5f4789ff-19c3-4da3-8d52-6695e13ce3d8)) (segment (start 80.01 117.01) (end 80.01 111.09) (width 0.2) (layer "F.Cu") (net 66) (tstamp c7f26369-3938-43a2-9bd8-57d0975c4a0a)) (segment (start 87.63 112.88) (end 89 114.25) (width 0.2) (layer "F.Cu") (net 67) (tstamp 34a0d1f5-a33e-4b83-8445-4f29aaa12927)) (segment (start 89 114.25) (end 89 123.869988) (width 0.2) (layer "F.Cu") (net 67) (tstamp 85759b72-a1aa-4376-968f-4203f58d3a5d)) (segment (start 87.63 111.09) (end 87.63 112.88) (width 0.2) (layer "F.Cu") (net 67) (tstamp e28a3e6b-f27b-4d52-baf6-3edf947d2d58)) (segment (start 89 123.869988) (end 87.929988 124.94) (width 0.2) (layer "F.Cu") (net 67) (tstamp ec082c37-e72e-48dd-81a7-106fb6497938)) (segment (start 87.929988 124.94) (end 87.385 124.94) (width 0.2) (layer "F.Cu") (net 67) (tstamp f8a6c011-56cd-4c1c-90d1-f8dc79a4df12)) (segment (start 114.2491 85.59904) (end 126.99904 85.59904) (width 0.2) (layer "F.Cu") (net 68) (tstamp 0bc0d18b-cbbb-47c4-9066-d703c655188b)) (segment (start 91.5 130.02) (end 93.23 130.02) (width 0.2) (layer "F.Cu") (net 68) (tstamp 12728481-4f6b-4b9f-a3cf-5fe5a4933fca)) (segment (start 107.25 80) (end 108.65006 80) (width 0.2) (layer "F.Cu") (net 68) (tstamp 1e5c4442-787a-4ae3-898e-cf170eab9e82)) (segment (start 142.3375 72) (end 142.3375 69.05) (width 0.2) (layer "F.Cu") (net 68) (tstamp 473dd33c-c447-4431-9e0e-7ca5c8df013f)) (segment (start 144.2 67.0875) (end 142.2875 69) (width 0.2) (layer "F.Cu") (net 68) (tstamp 4985354a-a440-4d37-97f7-db96ca63efd1)) (segment (start 138.001449 83.488527) (end 138.001451 77.879278) (width 0.2) (layer "F.Cu") (net 68) (tstamp 56295d87-593f-4a53-87eb-987a99a13b54)) (segment (start 142.3375 73.543229) (end 142.3375 72) (width 0.2) (layer "F.Cu") (net 68) (tstamp 67d2e6dd-5430-4e87-b8af-7df3885acd2f)) (segment (start 108.65006 80) (end 114.2491 85.59904) (width 0.2) (layer "F.Cu") (net 68) (tstamp 723467c7-c11d-4da7-b060-d74e245db7e1)) (segment (start 138.001451 77.879278) (end 142.3375 73.543229) (width 0.2) (layer "F.Cu") (net 68) (tstamp 74fc2c83-5a4b-47a2-8bd6-b1e6c8433ff3)) (segment (start 107.25 90.945018) (end 107.25 90.25) (width 0.2) (layer "F.Cu") (net 68) (tstamp 8b69b160-8432-412c-b764-d1ff6f5faaf8)) (segment (start 93.23 130.02) (end 93.45096 129.79904) (width 0.2) (layer "F.Cu") (net 68) (tstamp 8e2a452e-44d4-4748-a255-ed61b35a9a2c)) (segment (start 142.3375 69.05) (end 142.2875 69) (width 0.2) (layer "F.Cu") (net 68) (tstamp 93c6e914-2688-44b8-aad5-99af3a32c93f)) (segment (start 127.280728 85.6) (end 128.480728 84.4) (width 0.2) (layer "F.Cu") (net 68) (tstamp 9f2899de-959d-4024-974a-a13d48e7d6e1)) (segment (start 93.450961 104.744057) (end 107.25 90.945018) (width 0.2) (layer "F.Cu") (net 68) (tstamp a899b179-b86c-45b0-8a6e-1c7aa4ee7e73)) (segment (start 128.480728 84.4) (end 137.089976 84.4) (width 0.2) (layer "F.Cu") (net 68) (tstamp a8a7a33a-0fd0-49f0-8e5f-03c2645bec23)) (segment (start 127 85.6) (end 127.280728 85.6) (width 0.2) (layer "F.Cu") (net 68) (tstamp c23575e7-94ca-403e-b2fe-7735faa0ff9a)) (segment (start 93.45096 129.79904) (end 93.450961 104.744057) (width 0.2) (layer "F.Cu") (net 68) (tstamp dea83fa6-d8fd-4b2d-92ed-580f5767e39d)) (segment (start 144.2 66.9125) (end 144.2 67.0875) (width 0.2) (layer "F.Cu") (net 68) (tstamp df210da1-99f0-4e19-9f45-b2630187e7e5)) (segment (start 137.089976 84.4) (end 138.001449 83.488527) (width 0.2) (layer "F.Cu") (net 68) (tstamp e57ce414-36b0-43e4-814b-85361ebe6aff)) (segment (start 126.99904 85.59904) (end 127 85.6) (width 0.2) (layer "F.Cu") (net 68) (tstamp e888e7c3-27f5-46fc-ae19-a6980f67a65f)) (via (at 107.25 90.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 68) (tstamp 188dd428-3627-4879-883b-cb10de76adf3)) (via (at 107.25 80) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 68) (tstamp 98e17188-a2ec-4a29-9710-aaaae39eba69)) (segment (start 107.25 90.25) (end 107.25 80) (width 0.2) (layer "B.Cu") (net 68) (tstamp ac950969-ed9e-4214-b6ba-6952c760bdbe)) (segment (start 86.049994 127.48) (end 84.68 127.48) (width 0.2) (layer "F.Cu") (net 69) (tstamp be6cb331-8916-4920-ae99-33bcb1f8d8e1)) (segment (start 84.68 127.48) (end 84 126.8) (width 0.2) (layer "F.Cu") (net 69) (tstamp d98da6d2-209a-4b7f-ad6b-4fc8a450168f)) (via (at 84 126.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 69) (tstamp aec689c0-1d96-4970-b708-e7fd7d728408)) (segment (start 85.75048 94.184514) (end 85.775 94.159994) (width 0.2) (layer "B.Cu") (net 69) (tstamp 43368a26-0fd3-4bd5-9571-c67eaeda4846)) (segment (start 85.775 94.159994) (end 85.775 93.995) (width 0.2) (layer "B.Cu") (net 69) (tstamp 4dea7cb2-4ceb-484b-aacc-6e3041851dc0)) (segment (start 83.85 126.609994) (end 83.85 108.314994) (width 0.2) (layer "B.Cu") (net 69) (tstamp 5622d471-2e02-43d8-9e8b-590323a5972c)) (segment (start 85.775 93.995) (end 85.09 93.31) (width 0.2) (layer "B.Cu") (net 69) (tstamp 72a86923-65ef-4479-9863-93b12406c6c3)) (segment (start 83.85 108.314994) (end 85.75048 106.414514) (width 0.2) (layer "B.Cu") (net 69) (tstamp 78642b38-5b97-4be0-a7db-cb1259a99790)) (segment (start 85.75048 106.414514) (end 85.75048 94.184514) (width 0.2) (layer "B.Cu") (net 69) (tstamp 930c4ddf-f8bf-4832-9ab7-4f84d85899aa)) (segment (start 83.940489 126.700483) (end 83.85 126.609994) (width 0.2) (layer "B.Cu") (net 69) (tstamp c38dc868-dea5-4c37-b0d0-1154612874a5)) (segment (start 106.25 91.380012) (end 106.25 90.25) (width 0.2) (layer "F.Cu") (net 70) (tstamp 04478ec3-ed68-48ea-8e6c-97f8c7f81f42)) (segment (start 130.2875 68.225) (end 132 66.5125) (width 0.2) (layer "F.Cu") (net 70) (tstamp 0fe17c2c-c68d-419b-8f4d-74d6737cf1c3)) (segment (start 130.2875 69) (end 130.2875 68.225) (width 0.2) (layer "F.Cu") (net 70) (tstamp 10b50f78-b4d3-4c16-9326-99360ae80499)) (segment (start 87.25 128.75) (end 88 128) (width 0.2) (layer "F.Cu") (net 70) (tstamp 15290570-6751-43e1-966c-1de52eb8b150)) (segment (start 88 126.565006) (end 90.200479 124.364527) (width 0.2) (layer "F.Cu") (net 70) (tstamp 1b6a4456-8abc-43ab-a547-514ef4381789)) (segment (start 90.20048 120.793803) (end 90.463803 120.53048) (width 0.2) (layer "F.Cu") (net 70) (tstamp 24300085-c511-46c8-b0a8-c435ed72984b)) (segment (start 88 128) (end 88 126.565006) (width 0.2) (layer "F.Cu") (net 70) (tstamp 33ec09c0-161c-4af4-8643-d2f755129b0f)) (segment (start 114.414586 85.19952) (end 127.116202 85.19952) (width 0.2) (layer "F.Cu") (net 70) (tstamp 451832c3-7f2d-4e51-91ee-6227d3d7f364)) (segment (start 129.5 84) (end 130.3375 83.1625) (width 0.2) (layer "F.Cu") (net 70) (tstamp 482e98d9-24ae-43ff-a251-169b3fe34fb4)) (segment (start 130.3375 69.05) (end 130.2875 69) (width 0.2) (layer "F.Cu") (net 70) (tstamp 53ece1c8-efac-4aff-b438-8d2b0e1a8604)) (segment (start 93.051442 104.57857) (end 106.25 91.380012) (width 0.2) (layer "F.Cu") (net 70) (tstamp 5a7bff44-7b50-49bc-a53e-5ad2d385cd23)) (segment (start 130.3375 83.1625) (end 130.3375 72) (width 0.2) (layer "F.Cu") (net 70) (tstamp 66e62c5a-85ae-43d6-b995-9f6f1a037acc)) (segment (start 90.463803 120.53048) (end 92.11952 120.53048) (width 0.2) (layer "F.Cu") (net 70) (tstamp 6eadf6ef-fc79-4025-9ba1-5f65c1c918e6)) (segment (start 127.116202 85.19952) (end 128.315722 84) (width 0.2) (layer "F.Cu") (net 70) (tstamp 7030550b-1ff2-4c50-92b6-7ae4437c823c)) (segment (start 128.315722 84) (end 129.5 84) (width 0.2) (layer "F.Cu") (net 70) (tstamp 73c58502-5f0e-49a7-bc56-b7c1bddb5cf8)) (segment (start 130.3375 72) (end 130.3375 69.05) (width 0.2) (layer "F.Cu") (net 70) (tstamp 86d97501-ad79-4be3-a11d-afc9503d117f)) (segment (start 93.051442 119.598558) (end 93.051442 104.57857) (width 0.2) (layer "F.Cu") (net 70) (tstamp 88a023ae-f2fe-4b6c-8112-7557bd5d8594)) (segment (start 106.25 79.25) (end 108.465066 79.25) (width 0.2) (layer "F.Cu") (net 70) (tstamp 98ee5b82-417b-4d8a-8ef9-9d39aec9938f)) (segment (start 86.825 128.75) (end 87.25 128.75) (width 0.2) (layer "F.Cu") (net 70) (tstamp 997aef11-9a53-49c4-95e5-348b73de380e)) (segment (start 90.200479 124.364527) (end 90.20048 120.793803) (width 0.2) (layer "F.Cu") (net 70) (tstamp d17efa21-d2b2-4414-b339-bd74f4309852)) (segment (start 92.11952 120.53048) (end 93.051442 119.598558) (width 0.2) (layer "F.Cu") (net 70) (tstamp f595fc96-6462-4dba-95d3-e7369442b29b)) (segment (start 108.465066 79.25) (end 114.414586 85.19952) (width 0.2) (layer "F.Cu") (net 70) (tstamp fa7d0d2f-4487-4e23-bf31-c19c18920780)) (via (at 106.25 90.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 70) (tstamp 3b826e52-231a-44c5-9814-cfbfbc317ab0)) (via (at 106.25 79.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 70) (tstamp 59608fa9-a399-4cd7-9e3b-33cf4ded20bc)) (segment (start 106.25 90.25) (end 106.25 79.25) (width 0.2) (layer "B.Cu") (net 70) (tstamp 1d18c292-5998-49ae-85a5-eaa4a2d30dcf)) (segment (start 79.75 87) (end 85.260741 87) (width 0.2) (layer "F.Cu") (net 71) (tstamp 0c572b43-4c1c-44e5-b808-dbfc3721aac8)) (segment (start 85.960252 86.300489) (end 86.539748 86.300489) (width 0.2) (layer "F.Cu") (net 71) (tstamp 0c76d0fe-0b20-4c29-bd19-84bfb301762b)) (segment (start 86.539748 86.300489) (end 87.293099 87.05384) (width 0.2) (layer "F.Cu") (net 71) (tstamp 282e0762-5b80-4370-84cc-9b335ebfd398)) (segment (start 87.293099 87.05384) (end 94.251142 87.05384) (width 0.2) (layer "F.Cu") (net 71) (tstamp 3d26d698-e2bc-436c-8973-00ae147ac011)) (segment (start 94.251142 87.05384) (end 104.525 76.779982) (width 0.2) (layer "F.Cu") (net 71) (tstamp 5a69a0b0-0af5-4f69-be80-42caf1f1d75a)) (segment (start 104.525 76.779982) (end 104.525 69.9875) (width 0.2) (layer "F.Cu") (net 71) (tstamp 6cabd07d-f666-47cc-a869-5e1102bbb17e)) (segment (start 85.260741 87) (end 85.960252 86.300489) (width 0.2) (layer "F.Cu") (net 71) (tstamp bc7dd767-9a40-4836-82d0-78217e64a693)) (segment (start 104.525 69.9875) (end 105.5125 69) (width 0.2) (layer "F.Cu") (net 71) (tstamp fd542e16-fc6c-4a23-8121-077f346089dd)) (via (at 79.75 87) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 71) (tstamp 4d51a774-5a92-480b-9e80-a8410afcb0cf)) (segment (start 78.32548 90.67452) (end 78.32548 91.69952) (width 0.2) (layer "B.Cu") (net 71) (tstamp 1634a2cd-7cf2-4219-bf06-e775fa5407c5)) (segment (start 78.32548 91.69952) (end 78.025 92) (width 0.2) (layer "B.Cu") (net 71) (tstamp 247fcaa2-34bc-4bc1-802a-663c7c53d534)) (segment (start 78.219991 110.340009) (end 77.47 111.09) (width 0.2) (layer "B.Cu") (net 71) (tstamp 2c63f89b-5933-4494-92c1-ba172ec306cd)) (segment (start 76.25 106.605012) (end 78.219991 108.575003) (width 0.2) (layer "B.Cu") (net 71) (tstamp 3ee7207b-fdba-46c0-954f-f94ec08158ee)) (segment (start 79.75 87) (end 79.75 89.25) (width 0.2) (layer "B.Cu") (net 71) (tstamp 59b0e9cb-59e3-422c-81ac-de13531cc97a)) (segment (start 78.025 92) (end 76.875 92) (width 0.2) (layer "B.Cu") (net 71) (tstamp 77d3f1b5-b0ca-44c9-a1af-e8e341c1ec36)) (segment (start 76.25 92.625) (end 76.25 106.605012) (width 0.2) (layer "B.Cu") (net 71) (tstamp 8ac1a43f-36cc-4726-b8d6-e8bb7e49547e)) (segment (start 79.75 89.25) (end 78.32548 90.67452) (width 0.2) (layer "B.Cu") (net 71) (tstamp b9298734-4200-4b21-955e-d70ac4ca0e91)) (segment (start 78.219991 108.575003) (end 78.219991 110.340009) (width 0.2) (layer "B.Cu") (net 71) (tstamp bf0dcab9-26a6-4dae-836f-ca970a2d7350)) (segment (start 76.875 92) (end 76.25 92.625) (width 0.2) (layer "B.Cu") (net 71) (tstamp ef0aee4f-feee-4810-9601-3018ba490be8)) (segment (start 90.025 128.8) (end 91.475 128.8) (width 0.2) (layer "F.Cu") (net 72) (tstamp 171788fd-969c-4531-95b5-62ff55545244)) (segment (start 90 128.825) (end 90.025 128.8) (width 0.2) (layer "F.Cu") (net 72) (tstamp 48d6b5ac-9da7-499f-8e26-558d415019e8)) (via (at 90 128.825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 72) (tstamp d108f92d-e1d5-4863-8161-bea100d373ca)) (segment (start 77.2 94.640649) (end 77.2 93.58) (width 0.2) (layer "B.Cu") (net 72) (tstamp 169fbc70-6db6-4717-bbb6-b9fd812b92dd)) (segment (start 89.925 128.9) (end 83.4 128.9) (width 0.2) (layer "B.Cu") (net 72) (tstamp 20f988f5-303a-41d1-923a-72c14610e08f)) (segment (start 77.2 93.58) (end 77.47 93.31) (width 0.2) (layer "B.Cu") (net 72) (tstamp 30a3b68f-7553-4ba2-b4b5-6d92fe15d6a4)) (segment (start 90 128.825) (end 89.925 128.9) (width 0.2) (layer "B.Cu") (net 72) (tstamp 35ab9c7b-64bc-4358-8769-e4fd3429a9e7)) (segment (start 78.7 124.2) (end 78.7 108.490006) (width 0.2) (layer "B.Cu") (net 72) (tstamp 53c12055-0ff1-4fe1-b65e-fef50ee89a8f)) (segment (start 78.7 108.490006) (end 76.700481 106.490487) (width 0.2) (layer "B.Cu") (net 72) (tstamp 58a1efa9-a0fd-4915-826f-71383ebb373d)) (segment (start 76.700481 95.140168) (end 77.2 94.640649) (width 0.2) (layer "B.Cu") (net 72) (tstamp 7d7dc57a-394d-4ce2-8d28-3ae7fe18209c)) (segment (start 83.4 128.9) (end 78.7 124.2) (width 0.2) (layer "B.Cu") (net 72) (tstamp aab1a913-7e5d-4ce1-9c16-3cf732615a86)) (segment (start 76.700481 106.490487) (end 76.700481 95.140168) (width 0.2) (layer "B.Cu") (net 72) (tstamp c6061901-9505-4cb2-805e-69729dc86bde)) (segment (start 120 110.8) (end 120 109.1375) (width 0.2) (layer "F.Cu") (net 75) (tstamp 063c505e-f7e0-4d64-9eb5-c16c274f9770)) (segment (start 51.90096 108.19904) (end 88.80096 108.19904) (width 0.2) (layer "F.Cu") (net 75) (tstamp 08434192-4448-47f5-9f26-d1b5a1ee83de)) (segment (start 119.8625 107.25) (end 119.9125 107.2) (width 0.2) (layer "F.Cu") (net 75) (tstamp 3b88bd47-9c3a-477b-800b-2b41204f7261)) (segment (start 118.334514 104.64952) (end 101.089739 104.64952) (width 0.2) (layer "F.Cu") (net 75) (tstamp 64dc417e-2185-47ae-8d37-f46670ae8ae3)) (segment (start 100.739259 105) (end 97.5 105) (width 0.2) (layer "F.Cu") (net 75) (tstamp 8b746e45-f5f6-4bd8-80bb-c251a2c0610f)) (segment (start 49.53 110.57) (end 51.90096 108.19904) (width 0.2) (layer "F.Cu") (net 75) (tstamp 933e5cb2-a2e7-4c7c-b091-7cd33a00b1bb)) (segment (start 49.53 111.09) (end 49.53 110.57) (width 0.2) (layer "F.Cu") (net 75) (tstamp ab1eb56b-f797-4312-928a-1d0eb905529e)) (segment (start 119.9125 107.2) (end 119.9125 106.227506) (width 0.2) (layer "F.Cu") (net 75) (tstamp b1226045-4100-4f8f-959a-d3f4f77cb542)) (segment (start 88.80096 108.19904) (end 90.75 106.25) (width 0.2) (layer "F.Cu") (net 75) (tstamp b917a0b9-c48e-4cab-8012-cf2d91868c99)) (segment (start 119.8625 109) (end 119.8625 107.25) (width 0.2) (layer "F.Cu") (net 75) (tstamp bd2abb6e-486a-43e2-a17f-babca601b669)) (segment (start 119.9125 106.227506) (end 118.334514 104.64952) (width 0.2) (layer "F.Cu") (net 75) (tstamp d4bbf558-0cab-4578-b405-88b6fd03b226)) (segment (start 120 109.1375) (end 119.8625 109) (width 0.2) (layer "F.Cu") (net 75) (tstamp f4dffde4-6c10-458a-91c1-3d2904cc215c)) (segment (start 101.089739 104.64952) (end 100.739259 105) (width 0.2) (layer "F.Cu") (net 75) (tstamp fac51569-12c5-45a1-b251-dfb07aa9c1cf)) (via (at 97.5 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 75) (tstamp 08fc2659-5766-4926-9e1c-1012fb8f5013)) (via (at 90.75 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 75) (tstamp 9674f8a2-bfa3-4ed5-b97d-cd231d3c0f96)) (segment (start 97.5 105) (end 92 105) (width 0.2) (layer "B.Cu") (net 75) (tstamp 332ff282-dc1a-4057-91da-1a8a6224647b)) (segment (start 92 105) (end 90.75 106.25) (width 0.2) (layer "B.Cu") (net 75) (tstamp e36caf9c-126d-45a6-bb55-ca5c3cfd3e85)) (segment (start 131.55 109.0875) (end 131.4625 109) (width 0.2) (layer "F.Cu") (net 76) (tstamp 0ef6f5e9-223c-4f83-bf65-ab81789dc214)) (segment (start 104.255531 96.199511) (end 98.4 102.055042) (width 0.2) (layer "F.Cu") (net 76) (tstamp 15262fb1-d7d7-4889-9d9d-3b6c802f592c)) (segment (start 75.64952 89.85048) (end 95.910261 89.85048) (width 0.2) (layer "F.Cu") (net 76) (tstamp 308f92eb-2359-46c8-ac2c-f8a403e04277)) (segment (start 75 93.24) (end 75 90.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp 40d810c1-f10c-4355-a375-f7c286abea23)) (segment (start 131.4625 107.25) (end 131.5125 107.2) (width 0.2) (layer "F.Cu") (net 76) (tstamp 40f22d12-6936-4f47-9007-d3556ced8a1c)) (segment (start 109.050489 86.050489) (end 109.8 86.8) (width 0.2) (layer "F.Cu") (net 76) (tstamp 44622836-c13c-4026-810f-0e0f52df5b14)) (segment (start 102.10048 103.85048) (end 129.065204 103.85048) (width 0.2) (layer "F.Cu") (net 76) (tstamp 4c272ed9-6032-4df7-af29-83dde0735719)) (segment (start 98.9 103.5) (end 101.75 103.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp 4f06eb68-ed6f-4cff-9952-b65be13a1d5f)) (segment (start 129.065204 103.85048) (end 131.5125 106.297776) (width 0.2) (layer "F.Cu") (net 76) (tstamp 556ada4e-5844-4aee-a3de-776f5ba20a59)) (segment (start 109.8 94.134994) (end 107.735483 96.199511) (width 0.2) (layer "F.Cu") (net 76) (tstamp 5738199a-1449-4321-83ff-d8384ef60542)) (segment (start 98.4 103) (end 98.9 103.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp 60722ec4-9427-4bae-ad28-430f698a0689)) (segment (start 131.55 110.8) (end 131.55 109.0875) (width 0.2) (layer "F.Cu") (net 76) (tstamp 65f25fe2-669d-4c6e-a16f-947751ee3a6f)) (segment (start 74.93 93.31) (end 75 93.24) (width 0.2) (layer "F.Cu") (net 76) (tstamp 74e98a53-1f97-400f-83b1-caa9d5919396)) (segment (start 75 90.5) (end 75.64952 89.85048) (width 0.2) (layer "F.Cu") (net 76) (tstamp 7dfd5692-a38e-488a-abeb-e83b6f6a013c)) (segment (start 101.75 103.5) (end 102.10048 103.85048) (width 0.2) (layer "F.Cu") (net 76) (tstamp 9b2f161a-d19d-4d0c-bfe0-44e74679cf6c)) (segment (start 131.5125 106.297776) (end 131.5125 107.2) (width 0.2) (layer "F.Cu") (net 76) (tstamp bc64f4ec-d778-4806-a2a8-7cfc85566105)) (segment (start 109.8 86.8) (end 109.8 94.134994) (width 0.2) (layer "F.Cu") (net 76) (tstamp caff463e-9162-4ac7-8552-d1842bb48d72)) (segment (start 99.710252 86.050489) (end 109.050489 86.050489) (width 0.2) (layer "F.Cu") (net 76) (tstamp cb785736-a0a0-409b-9d33-bfd78390cdd3)) (segment (start 95.910261 89.85048) (end 99.710252 86.050489) (width 0.2) (layer "F.Cu") (net 76) (tstamp d83ddbd7-15b2-4741-b49b-970cec1bf676)) (segment (start 107.735483 96.199511) (end 104.255531 96.199511) (width 0.2) (layer "F.Cu") (net 76) (tstamp d8cbb0ee-245b-40cf-853f-95c7fe075d28)) (segment (start 131.4625 109) (end 131.4625 107.25) (width 0.2) (layer "F.Cu") (net 76) (tstamp df30f862-8f3f-4b14-bd56-6f08cc64ee78)) (segment (start 98.4 102.055042) (end 98.4 103) (width 0.2) (layer "F.Cu") (net 76) (tstamp e8b07f18-c0ca-42cc-b40e-17ebc473aa4a)) (segment (start 110.2 86.634994) (end 110.2 94.3) (width 0.2) (layer "F.Cu") (net 77) (tstamp 03ecd09d-3b31-4bec-b5b9-671fdde6c5de)) (segment (start 150.15 123.6) (end 150.1 123.6) (width 0.2) (layer "F.Cu") (net 77) (tstamp 046714ca-9c5d-4c0b-a870-c7f050b2ad17)) (segment (start 99.544765 85.65097) (end 109.215976 85.65097) (width 0.2) (layer "F.Cu") (net 77) (tstamp 05ac765b-3479-4c96-ab84-d73f949bd1fa)) (segment (start 105.65 102.4) (end 106.30144 103.05144) (width 0.2) (layer "F.Cu") (net 77) (tstamp 08b52c14-0581-4684-8a14-b27b256835b2)) (segment (start 109.215976 85.65097) (end 110.2 86.634994) (width 0.2) (layer "F.Cu") (net 77) (tstamp 19cda06d-5127-445d-8c9a-fddb40e3387a)) (segment (start 150.1 123.6) (end 148.3875 121.8875) (width 0.2) (layer "F.Cu") (net 77) (tstamp 29bf6f37-7429-4aeb-9e39-2b038f2f0fe6)) (segment (start 136.040699 103.05144) (end 148.68702 115.697761) (width 0.2) (layer "F.Cu") (net 77) (tstamp 472db732-dde2-4646-a20d-b7b958d8c608)) (segment (start 150.1125 119) (end 150.1 119) (width 0.2) (layer "F.Cu") (net 77) (tstamp 4ca428f9-c5d0-4331-af64-07b045598f37)) (segment (start 105.65 98.85) (end 105.65 102.4) (width 0.2) (layer "F.Cu") (net 77) (tstamp 88de68fa-14ec-4d51-8684-b218834daf95)) (segment (start 148.3875 121.8875) (end 148.3875 121.8) (width 0.2) (layer "F.Cu") (net 77) (tstamp 8c74f2d5-4602-4f9d-9978-e0a3d975266f)) (segment (start 73.29904 89.45096) (end 95.744775 89.45096) (width 0.2) (layer "F.Cu") (net 77) (tstamp b2dcedc3-8f17-4247-8a38-3f67c708e954)) (segment (start 148.68702 115.697761) (end 148.68702 117.58702) (width 0.2) (layer "F.Cu") (net 77) (tstamp c633fdb9-94e5-4196-a7f1-91fed9a08e19)) (segment (start 72.39 90.36) (end 73.29904 89.45096) (width 0.2) (layer "F.Cu") (net 77) (tstamp c67297f0-b8d8-4b4e-b640-7fb2577ff08f)) (segment (start 148.68702 117.58702) (end 150.1 119) (width 0.2) (layer "F.Cu") (net 77) (tstamp ce9c45ce-f8a9-4f3e-a17c-03b2856991d3)) (segment (start 150.1 119) (end 148.3875 120.7125) (width 0.2) (layer "F.Cu") (net 77) (tstamp d49c2d22-6ffb-4889-93aa-45992a4fa9d3)) (segment (start 148.3875 120.7125) (end 148.3875 121.8) (width 0.2) (layer "F.Cu") (net 77) (tstamp ea57ea86-1ad4-46a4-b002-849f88078b55)) (segment (start 95.744775 89.45096) (end 99.544765 85.65097) (width 0.2) (layer "F.Cu") (net 77) (tstamp ee08c1d0-bedc-4efe-8c5a-4611ba4d9b28)) (segment (start 72.39 93.31) (end 72.39 90.36) (width 0.2) (layer "F.Cu") (net 77) (tstamp ef1e5dcc-6e83-41b0-854f-e540faf47bb8)) (segment (start 110.2 94.3) (end 105.65 98.85) (width 0.2) (layer "F.Cu") (net 77) (tstamp fb3fed53-1be9-4aef-aad4-22d7ae825cf8)) (segment (start 106.30144 103.05144) (end 136.040699 103.05144) (width 0.2) (layer "F.Cu") (net 77) (tstamp fcf08e83-4f64-428a-84ba-19b551e2c3c8)) (segment (start 118.33798 83.597014) (end 118.33798 73.16298) (width 0.2) (layer "F.Cu") (net 78) (tstamp 0774b40c-dae4-4507-a94a-04b84c8b59de)) (segment (start 107.895568 77.550489) (end 114.745559 84.40048) (width 0.2) (layer "F.Cu") (net 78) (tstamp 3a0ec36b-2d5f-4f66-bd77-b2f32a7794f9)) (segment (start 86.25 87) (end 86.70336 87.45336) (width 0.2) (layer "F.Cu") (net 78) (tstamp 3ab0aa58-f4da-4076-9549-5a6907439f9a)) (segment (start 86.70336 87.45336) (end 94.416628 87.45336) (width 0.2) (layer "F.Cu") (net 78) (tstamp 3b8d359c-8360-4d2a-b536-775b0d0f68ad)) (segment (start 118.33798 73.16298) (end 117.8 72.625) (width 0.2) (layer "F.Cu") (net 78) (tstamp 43cc6bbd-b9a7-4973-893e-c644ec3cd4e0)) (segment (start 94.416628 87.45336) (end 104.319499 77.550489) (width 0.2) (layer "F.Cu") (net 78) (tstamp 5a3878ed-0046-4b8a-b97f-c66d5c05d756)) (segment (start 104.319499 77.550489) (end 107.895568 77.550489) (width 0.2) (layer "F.Cu") (net 78) (tstamp 876f899c-a6f1-4703-ba57-30e2df8c086a)) (segment (start 117.8 69.6875) (end 117.1125 69) (width 0.2) (layer "F.Cu") (net 78) (tstamp b6fdb0cd-ab97-4986-8821-343c6c80cc7d)) (segment (start 114.745559 84.40048) (end 117.534514 84.40048) (width 0.2) (layer "F.Cu") (net 78) (tstamp da17b2cf-0b5e-4adf-967b-f3aca1b03346)) (segment (start 117.534514 84.40048) (end 118.33798 83.597014) (width 0.2) (layer "F.Cu") (net 78) (tstamp f781ed52-2e23-4baf-ac4d-b7c1b61137f8)) (segment (start 117.8 72.625) (end 117.8 69.6875) (width 0.2) (layer "F.Cu") (net 78) (tstamp fb4623f3-5605-4aa0-88d4-6f2c2dcd6e81)) (via (at 86.25 87) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 78) (tstamp 4a475958-d903-4b0e-a6cc-63c48e1ae418)) (segment (start 84.24952 110.24952) (end 84.24952 108.48048) (width 0.2) (layer "B.Cu") (net 78) (tstamp 2781e752-3d8d-43f8-bc42-060bb1c6c5d9)) (segment (start 86.375 87.125) (end 86.25 87) (width 0.2) (layer "B.Cu") (net 78) (tstamp 587fafe3-cebf-407c-8df1-45f29bb5a7e0)) (segment (start 86.15 94.35) (end 86.375 94.125) (width 0.2) (layer "B.Cu") (net 78) (tstamp 634b9eb6-293c-4092-8a0e-87ddba4ed40d)) (segment (start 85.09 111.09) (end 84.24952 110.24952) (width 0.2) (layer "B.Cu") (net 78) (tstamp 8204b2ff-6263-4490-90ae-6ff81606c657)) (segment (start 86.15 106.58) (end 86.15 94.35) (width 0.2) (layer "B.Cu") (net 78) (tstamp a4e390b4-ee47-4bb4-8bfe-6a8c6eea02cb)) (segment (start 84.24952 108.48048) (end 86.15 106.58) (width 0.2) (layer "B.Cu") (net 78) (tstamp aea7c361-403d-4945-b632-c39d14613f06)) (segment (start 86.375 94.125) (end 86.375 87.125) (width 0.2) (layer "B.Cu") (net 78) (tstamp cf498137-8c72-4945-82aa-19ae8c57fd7f)) (segment (start 80.25 90.5) (end 80.500001 90.249999) (width 0.2) (layer "F.Cu") (net 79) (tstamp 0bd8323b-4e11-4a22-8bce-058ea2497fbb)) (segment (start 80.01 93.31) (end 80.25 93.07) (width 0.2) (layer "F.Cu") (net 79) (tstamp 1101b822-29f2-4ad1-b527-5afdfe69ff1d)) (segment (start 113.590036 87.2) (end 108.690525 82.300489) (width 0.2) (layer "F.Cu") (net 79) (tstamp 29a64468-bf46-4baf-acf0-3a6e0d5ba3ec)) (segment (start 139.5 72) (end 139.5 70.0125) (width 0.2) (layer "F.Cu") (net 79) (tstamp 3b5eecb2-e736-4238-b97a-cf240ceedc9f)) (segment (start 139.45 87.2) (end 113.590036 87.2) (width 0.2) (layer "F.Cu") (net 79) (tstamp 4898be7c-bdc6-4c53-8404-c00f93a78292)) (segment (start 96.075748 90.249999) (end 99.575747 86.75) (width 0.2) (layer "F.Cu") (net 79) (tstamp 5245a920-1677-4e32-95f9-846748f5c489)) (segment (start 101.25 84) (end 100 84) (width 0.2) (layer "F.Cu") (net 79) (tstamp 91c65d77-a52b-416b-b003-583a2fba5c39)) (segment (start 80.500001 90.249999) (end 96.075748 90.249999) (width 0.2) (layer "F.Cu") (net 79) (tstamp 9af563e5-2a2a-4a23-b41c-82ceae36db4c)) (segment (start 139.5 70.0125) (end 140.5125 69) (width 0.2) (layer "F.Cu") (net 79) (tstamp a26aa5b4-0a9b-4b1d-a520-0d21b1211668)) (segment (start 139.5 87.25) (end 139.45 87.2) (width 0.2) (layer "F.Cu") (net 79) (tstamp b27c7fab-8289-4ef5-a70e-3a3e9584c5b3)) (segment (start 80.25 93.07) (end 80.25 90.5) (width 0.2) (layer "F.Cu") (net 79) (tstamp c1150a5a-c884-415a-99cd-1291b3364919)) (segment (start 108.690525 82.300489) (end 102.949511 82.300489) (width 0.2) (layer "F.Cu") (net 79) (tstamp df4e5c8b-db41-49f0-b23a-75c9d2b867ac)) (segment (start 102.949511 82.300489) (end 101.25 84) (width 0.2) (layer "F.Cu") (net 79) (tstamp f423002e-934d-4a52-a1c3-4bb5a97cc03e)) (segment (start 99.575747 86.75) (end 100 86.75) (width 0.2) (layer "F.Cu") (net 79) (tstamp fc8ffd4f-592d-4600-af07-01b564606849)) (via (at 100 84) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 79) (tstamp 889167ef-408b-4344-9f81-685fab0d685d)) (via (at 100 86.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 79) (tstamp ae71775e-0468-42e2-8638-cdbd324704e5)) (via (at 139.5 87.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 79) (tstamp b39700ba-16f1-4466-a5f0-5099696c889f)) (via (at 139.5 72) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 79) (tstamp e100a118-3411-49c5-bd59-2ef69cc762f5)) (segment (start 100 86.75) (end 100 84) (width 0.2) (layer "B.Cu") (net 79) (tstamp 06d0948f-2689-4e9b-bf14-a7a73bee467c)) (segment (start 139.5 87.25) (end 139.5 72) (width 0.2) (layer "B.Cu") (net 79) (tstamp 5ecdba31-2cd3-4960-b527-6046e96b410e)) (segment (start 87.63 93.31) (end 87.63 91.77) (width 0.2) (layer "F.Cu") (net 80) (tstamp 01059cff-2151-4925-abad-5f7d6f8a6345)) (segment (start 129.45 69.9375) (end 129.45 71.05) (width 0.2) (layer "F.Cu") (net 80) (tstamp 119f6888-5e5c-4a67-a30e-3b56e4c89d18)) (segment (start 88.750482 90.649518) (end 96.241235 90.649518) (width 0.2) (layer "F.Cu") (net 80) (tstamp 1daa6c5b-8fe6-4836-bf4c-2df54206462c)) (segment (start 129.45 71.05) (end 128.5 72) (width 0.2) (layer "F.Cu") (net 80) (tstamp 2b6249db-772c-42b8-9f09-48ccccb0afae)) (segment (start 99.140753 87.75) (end 101.25 87.75) (width 0.2) (layer "F.Cu") (net 80) (tstamp 44eca545-9d58-4969-ab34-f459e5ac1133)) (segment (start 113.752642 86.7976) (end 126.502582 86.7976) (width 0.2) (layer "F.Cu") (net 80) (tstamp 5b9220d5-71b5-41a4-b743-20623838893d)) (segment (start 126.503542 86.79856) (end 128.20144 86.79856) (width 0.2) (layer "F.Cu") (net 80) (tstamp 6ba14988-8678-4e83-b35a-45ff7459f6a5)) (segment (start 108.856012 81.90097) (end 113.752642 86.7976) (width 0.2) (layer "F.Cu") (net 80) (tstamp 780daa5f-0411-4a9c-b0be-624b91dadf2d)) (segment (start 126.502582 86.7976) (end 126.503542 86.79856) (width 0.2) (layer "F.Cu") (net 80) (tstamp ab7cc6b9-f985-4065-8ce3-3c417b474b3f)) (segment (start 102.34903 81.90097) (end 108.856012 81.90097) (width 0.2) (layer "F.Cu") (net 80) (tstamp beae2450-30db-4b46-acb7-a21cdebbd94c)) (segment (start 87.63 91.77) (end 88.750482 90.649518) (width 0.2) (layer "F.Cu") (net 80) (tstamp c31c86ac-c10d-4628-8e83-85e5d17c433a)) (segment (start 128.20144 86.79856) (end 128.5 86.5) (width 0.2) (layer "F.Cu") (net 80) (tstamp d2106754-4805-4a62-b9fc-21fa0ee8642e)) (segment (start 101.25 83) (end 102.34903 81.90097) (width 0.2) (layer "F.Cu") (net 80) (tstamp d2235dcc-8fec-4705-af2e-1dc97b73228f)) (segment (start 96.241235 90.649518) (end 99.140753 87.75) (width 0.2) (layer "F.Cu") (net 80) (tstamp df5e1dcc-021f-4b97-8901-5f0c9b1f91f8)) (segment (start 128.5125 69) (end 129.45 69.9375) (width 0.2) (layer "F.Cu") (net 80) (tstamp e9b88a32-2e83-4557-8a80-ee29c9d832fa)) (via (at 101.25 87.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 80) (tstamp 296adb1b-e931-44f5-b0eb-480f777d5547)) (via (at 101.25 83) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 80) (tstamp 509f18eb-3095-4b7f-a391-04540fe77657)) (via (at 128.5 86.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 80) (tstamp 63a0532f-8b20-48e3-a29c-e335236fe517)) (via (at 128.5 72) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 80) (tstamp 67a94c7d-bbd2-405c-8968-002cf11f086d)) (segment (start 128.5 86.5) (end 128.5 72) (width 0.2) (layer "B.Cu") (net 80) (tstamp 2c7f3053-488c-41d7-9664-b24b20479066)) (segment (start 101.25 87.75) (end 101.25 83) (width 0.2) (layer "B.Cu") (net 80) (tstamp 6e17e09f-0ed0-4d16-a924-429fc9f1125e)) (segment (start 149 104.3) (end 146.3375 104.3) (width 0.2) (layer "F.Cu") (net 81) (tstamp 0f072f0b-f6db-47c8-859d-cf799127b31e)) (segment (start 106.05 102.05) (end 106.65192 102.65192) (width 0.2) (layer "F.Cu") (net 81) (tstamp 3aeb1d70-9364-479e-8979-645974f314c4)) (segment (start 110.59952 86.469508) (end 110.59952 94.465486) (width 0.2) (layer "F.Cu") (net 81) (tstamp 3f345fa7-00e4-4610-9020-46f264c4e7e9)) (segment (start 67.31 90.19) (end 68.44856 89.05144) (width 0.2) (layer "F.Cu") (net 81) (tstamp 405e3491-1bb6-428b-81af-a8e410c94587)) (segment (start 95.579289 89.05144) (end 99.379278 85.251451) (width 0.2) (layer "F.Cu") (net 81) (tstamp 4dbc1ec6-2f2b-4c9f-8993-aa0b492818dd)) (segment (start 106.05 99.015006) (end 106.05 102.05) (width 0.2) (layer "F.Cu") (net 81) (tstamp 56750f13-0e97-4f81-95b4-1a2b447c7920)) (segment (start 67.31 93.31) (end 67.31 90.19) (width 0.2) (layer "F.Cu") (net 81) (tstamp 6bc64d00-abc7-4de7-9cb1-9cb8771c3841)) (segment (start 106.65192 102.65192) (end 142.814421 102.651921) (width 0.2) (layer "F.Cu") (net 81) (tstamp 78346e70-6e05-4908-93ab-49e3010859e2)) (segment (start 146.25 104.3875) (end 144.55 104.3875) (width 0.2) (layer "F.Cu") (net 81) (tstamp 78e3b67d-30ac-485d-9db7-796607b64e62)) (segment (start 68.44856 89.05144) (end 95.579289 89.05144) (width 0.2) (layer "F.Cu") (net 81) (tstamp 957258ab-7f38-45d8-bd72-d360fdb2360f)) (segment (start 110.59952 94.465486) (end 106.05 99.015006) (width 0.2) (layer "F.Cu") (net 81) (tstamp aa3f2b72-20be-4c5a-912e-02daa3293da1)) (segment (start 142.814421 102.651921) (end 144.5 104.3375) (width 0.2) (layer "F.Cu") (net 81) (tstamp b760081f-e54f-4581-a57f-4dd0383d9ee1)) (segment (start 144.55 104.3875) (end 144.5 104.3375) (width 0.2) (layer "F.Cu") (net 81) (tstamp dc12902a-0b94-406a-88fb-33495283cc01)) (segment (start 109.381463 85.251451) (end 110.59952 86.469508) (width 0.2) (layer "F.Cu") (net 81) (tstamp e2ef1161-622c-41dd-aa52-b283555f5611)) (segment (start 99.379278 85.251451) (end 109.381463 85.251451) (width 0.2) (layer "F.Cu") (net 81) (tstamp fd5d93f1-6e0c-4fe1-8775-7495954d9ad0)) (segment (start 146.3375 104.3) (end 146.25 104.3875) (width 0.2) (layer "F.Cu") (net 81) (tstamp ff150711-baeb-4e98-972e-f7a6421e0cdd)) (segment (start 146.3375 93.05) (end 146.25 93.1375) (width 0.2) (layer "F.Cu") (net 82) (tstamp 1315e4df-cc18-49c1-b3c3-08db4b74ba71)) (segment (start 114.5 97.5) (end 110.99904 93.99904) (width 0.2) (layer "F.Cu") (net 82) (tstamp 15aeb7a3-d637-44d4-a023-1623cc542263)) (segment (start 149 93.05) (end 146.3375 93.05) (width 0.2) (layer "F.Cu") (net 82) (tstamp 2d6c49e7-1f73-4f71-be4f-ae5950b2edf8)) (segment (start 99.213792 84.851931) (end 95.413803 88.65192) (width 0.2) (layer "F.Cu") (net 82) (tstamp 3c5cc917-4caa-4939-b8ff-df1f4915b2ca)) (segment (start 109.546949 84.851931) (end 99.213792 84.851931) (width 0.2) (layer "F.Cu") (net 82) (tstamp 4d577e32-b1c8-4c13-9e1b-22a7f8d45a2d)) (segment (start 63.84808 88.65192) (end 62.23 90.27) (width 0.2) (layer "F.Cu") (net 82) (tstamp 84484d36-95e6-4006-bce4-19afd9f87c8d)) (segment (start 144.5 93.6) (end 140.6 97.5) (width 0.2) (layer "F.Cu") (net 82) (tstamp 9aebe978-859f-4fe3-8e30-4e165d69f8cc)) (segment (start 140.6 97.5) (end 114.5 97.5) (width 0.2) (layer "F.Cu") (net 82) (tstamp aa31ea78-3cf0-4004-ad00-e5640f0fad87)) (segment (start 144.55 93.1375) (end 144.5 93.0875) (width 0.2) (layer "F.Cu") (net 82) (tstamp ae6eb75d-e71c-47b0-ac67-add5cc64d632)) (segment (start 144.5 93.0875) (end 144.5 93.6) (width 0.2) (layer "F.Cu") (net 82) (tstamp b5603d9f-40a5-4417-93b5-f8ddbc5e4763)) (segment (start 110.99904 93.99904) (end 110.99904 86.304022) (width 0.2) (layer "F.Cu") (net 82) (tstamp b5ab2cf5-d4d6-4d59-8c50-f3a53375152a)) (segment (start 62.23 90.27) (end 62.23 93.31) (width 0.2) (layer "F.Cu") (net 82) (tstamp b86a3dc6-1489-49db-9600-5cdf217c1494)) (segment (start 110.99904 86.304022) (end 109.546949 84.851931) (width 0.2) (layer "F.Cu") (net 82) (tstamp d12270f8-141b-422c-945c-3bd28e333fa1)) (segment (start 146.25 93.1375) (end 144.55 93.1375) (width 0.2) (layer "F.Cu") (net 82) (tstamp e7357767-35ce-4969-98f2-b778632a277f)) (segment (start 95.413803 88.65192) (end 63.84808 88.65192) (width 0.2) (layer "F.Cu") (net 82) (tstamp fa8bd7ca-bc02-4b58-b206-7e9967b18b3f)) (segment (start 149 81.8) (end 146.3375 81.8) (width 0.2) (layer "F.Cu") (net 83) (tstamp 086270cd-64e3-49f1-8450-62ebeb878d18)) (segment (start 41.91 109.605006) (end 43.715486 107.79952) (width 0.2) (layer "F.Cu") (net 83) (tstamp 0bf4ccad-43ac-4d47-b61c-b66e5437a227)) (segment (start 58.84952 95.05048) (end 59.2 94.7) (width 0.2) (layer "F.Cu") (net 83) (tstamp 1ee1a5c6-7ccb-4b2c-8e07-2cb1737982c0)) (segment (start 139.575 77.9) (end 143.5125 81.8375) (width 0.2) (layer "F.Cu") (net 83) (tstamp 1f866ec9-0cae-414e-bb4b-55715eeab284)) (segment (start 143.5125 81.8375) (end 144.5 81.8375) (width 0.2) (layer "F.Cu") (net 83) (tstamp 20abce08-bca9-4724-b48e-f1cf9a2ea703)) (segment (start 61.635474 90.29952) (end 63.682594 88.2524) (width 0.2) (layer "F.Cu") (net 83) (tstamp 2b373ebd-284a-4164-a0b1-a2abefdc186d)) (segment (start 146.25 81.8875) (end 144.55 81.8875) (width 0.2) (layer "F.Cu") (net 83) (tstamp 2e320154-faca-4395-84ce-35a4dfa3c28d)) (segment (start 94.7476 88.2524) (end 101.498549 81.501451) (width 0.2) (layer "F.Cu") (net 83) (tstamp 327f47de-1222-4505-b32f-a6c15777cd0c)) (segment (start 128.8117 85.19904) (end 137.420948 85.19904) (width 0.2) (layer "F.Cu") (net 83) (tstamp 33362418-b503-489d-8fe3-bac8b51c687b)) (segment (start 55.635474 107.79952) (end 58.84952 104.585474) (width 0.2) (layer "F.Cu") (net 83) (tstamp 393adc38-3069-45a8-ad4b-e284f3161cc5)) (segment (start 109.021499 81.501451) (end 113.918128 86.39808) (width 0.2) (layer "F.Cu") (net 83) (tstamp 3e4c5e18-e12f-44b9-9215-5211482256fc)) (segment (start 58.84952 104.585474) (end 58.84952 95.05048) (width 0.2) (layer "F.Cu") (net 83) (tstamp 46a87dd0-ab22-48b3-b0d0-c7824f2adf69)) (segment (start 61.141458 90.29952) (end 61.635474 90.29952) (width 0.2) (layer "F.Cu") (net 83) (tstamp 4be6e1cf-1e29-408d-bb5f-9627f8d4e703)) (segment (start 146.3375 81.8) (end 146.25 81.8875) (width 0.2) (layer "F.Cu") (net 83) (tstamp 62f926a8-768c-4695-a771-b17b68bb1269)) (segment (start 41.91 111.09) (end 41.91 109.605006) (width 0.2) (layer "F.Cu") (net 83) (tstamp 799da6f4-c022-4214-a36c-546f1bd2508c)) (segment (start 101.498549 81.501451) (end 109.021499 81.501451) (width 0.2) (layer "F.Cu") (net 83) (tstamp 79bbd671-6062-4bcc-9721-55d782bac6ce)) (segment (start 138.800489 78.210252) (end 139.110741 77.9) (width 0.2) (layer "F.Cu") (net 83) (tstamp 80b97d31-4055-45b1-be81-eee56fdeb4a5)) (segment (start 60.599022 94.7) (end 60.95 94.349022) (width 0.2) (layer "F.Cu") (net 83) (tstamp 86a7da9d-3c81-43d9-b4c0-d13a17d355e9)) (segment (start 126.668068 86.39808) (end 126.669028 86.39904) (width 0.2) (layer "F.Cu") (net 83) (tstamp 99f24d7e-b1f4-47fe-a931-9efbf21e006a)) (segment (start 138.800489 83.819499) (end 138.800489 78.210252) (width 0.2) (layer "F.Cu") (net 83) (tstamp a0da9fb4-e897-44bd-a97c-4832b140f880)) (segment (start 139.110741 77.9) (end 139.575 77.9) (width 0.2) (layer "F.Cu") (net 83) (tstamp a5978103-c452-400a-b1fb-eeb14c1996db)) (segment (start 127.6117 86.39904) (end 128.8117 85.19904) (width 0.2) (layer "F.Cu") (net 83) (tstamp b4123f20-77c1-4a57-a45b-2fa24493f233)) (segment (start 144.55 81.8875) (end 144.5 81.8375) (width 0.2) (layer "F.Cu") (net 83) (tstamp bdb3622c-378d-4c16-89f7-21e3b2f21680)) (segment (start 60.95 90.490978) (end 61.141458 90.29952) (width 0.2) (layer "F.Cu") (net 83) (tstamp c6c1495b-0855-46b9-b071-358dfaa0919c)) (segment (start 59.2 94.7) (end 60.599022 94.7) (width 0.2) (layer "F.Cu") (net 83) (tstamp c74ba333-baea-46a0-8ab7-4569120c82d3)) (segment (start 43.715486 107.79952) (end 55.635474 107.79952) (width 0.2) (layer "F.Cu") (net 83) (tstamp d2b5cf25-0ead-4d5e-9c10-a0dae5128256)) (segment (start 137.420948 85.19904) (end 138.800489 83.819499) (width 0.2) (layer "F.Cu") (net 83) (tstamp eadfb8f5-6c53-4c9a-a644-129926bdee5f)) (segment (start 63.682594 88.2524) (end 94.7476 88.2524) (width 0.2) (layer "F.Cu") (net 83) (tstamp ee7c154f-1b70-41bb-ab49-acaf6a901de7)) (segment (start 60.95 94.349022) (end 60.95 90.490978) (width 0.2) (layer "F.Cu") (net 83) (tstamp ef8c9add-f1d9-4661-a41f-036cbfa49056)) (segment (start 113.918128 86.39808) (end 126.668068 86.39808) (width 0.2) (layer "F.Cu") (net 83) (tstamp f47eaa10-e303-4320-b2be-b0dbdad3eff9)) (segment (start 126.669028 86.39904) (end 127.6117 86.39904) (width 0.2) (layer "F.Cu") (net 83) (tstamp ffe6ce43-2694-4894-b189-1e00eaf8906a)) (segment (start 63.517108 87.85288) (end 61.469988 89.9) (width 0.2) (layer "F.Cu") (net 84) (tstamp 080854fd-73d1-4a50-82bb-32145371c763)) (segment (start 149.55 70.85) (end 149.775 71.075) (width 0.2) (layer "F.Cu") (net 84) (tstamp 090f9517-f383-47b4-ab34-60ddd926f866)) (segment (start 41.1 109.85) (end 39.775 109.85) (width 0.2) (layer "F.Cu") (net 84) (tstamp 0970da3d-23d2-4c66-935e-276c3377d133)) (segment (start 61.469988 89.9) (end 59.000978 89.9) (width 0.2) (layer "F.Cu") (net 84) (tstamp 0a6266dd-ccfd-4ef3-a5f4-fa1b6523f625)) (segment (start 152.5875 68.5) (end 149.6 68.5) (width 0.2) (layer "F.Cu") (net 84) (tstamp 0fb59d71-f3b2-4e4d-a94b-085eaeb1cc0c)) (segment (start 94.582114 87.85288) (end 63.517108 87.85288) (width 0.2) (layer "F.Cu") (net 84) (tstamp 10a456b1-8f8b-430a-b721-9e4915372626)) (segment (start 126.834514 85.99952) (end 126.833554 85.99856) (width 0.2) (layer "F.Cu") (net 84) (tstamp 4c1275e0-6d6d-44ca-ab8d-366e3ca84c6d)) (segment (start 149.775 71.075) (end 149.775 73.325) (width 0.2) (layer "F.Cu") (net 84) (tstamp 4d3d1fda-3a82-41a7-a5be-d273938f1257)) (segment (start 39.37 110.255) (end 39.37 111.09) (width 0.2) (layer "F.Cu") (net 84) (tstamp 6c5ef85b-022e-4165-85e5-0256b95df8d1)) (segment (start 149.775 73.325) (end 149.6 73.5) (width 0.2) (layer "F.Cu") (net 84) (tstamp 7009817c-351d-4d11-a5ba-e6ea10cbb73d)) (segment (start 142.945735 73.5) (end 138.40097 78.044765) (width 0.2) (layer "F.Cu") (net 84) (tstamp 735581a3-8fe8-436a-ab1c-016ceaf0fd66)) (segment (start 149 70.85) (end 149.55 70.85) (width 0.2) (layer "F.Cu") (net 84) (tstamp 73f485f0-5015-4587-ba55-a0543fe45fdd)) (segment (start 109.186985 81.101931) (end 101.333063 81.101931) (width 0.2) (layer "F.Cu") (net 84) (tstamp 7f328e50-f959-4f1f-85a3-89661836b890)) (segment (start 152.5875 68.5) (end 152.5875 66.8) (width 0.2) (layer "F.Cu") (net 84) (tstamp 8acab1dd-0b31-4fbe-99d7-f56f3a377237)) (segment (start 137.255462 84.79952) (end 128.646214 84.79952) (width 0.2) (layer "F.Cu") (net 84) (tstamp 8fcca3f6-6de2-4784-a131-2f629a76aa61)) (segment (start 152.5875 66.8) (end 152.6375 66.75) (width 0.2) (layer "F.Cu") (net 84) (tstamp acd723ac-f625-4cf4-8ed1-da5e57f8baa6)) (segment (start 138.40097 78.044765) (end 138.400969 83.654013) (width 0.2) (layer "F.Cu") (net 84) (tstamp ad91d1b7-df94-4026-9997-6127da02e5cc)) (segment (start 39.775 109.85) (end 39.37 110.255) (width 0.2) (layer "F.Cu") (net 84) (tstamp b5c40266-5c55-4bd3-83bc-951d6e146d9e)) (segment (start 58.45 90.450978) (end 58.45 104.419988) (width 0.2) (layer "F.Cu") (net 84) (tstamp c05d36d7-616e-41b8-a83a-684309ebcf41)) (segment (start 114.083614 85.99856) (end 109.186985 81.101931) (width 0.2) (layer "F.Cu") (net 84) (tstamp c2add788-7ea5-4774-96d6-4243f25669a9)) (segment (start 55.469988 107.4) (end 43.55 107.4) (width 0.2) (layer "F.Cu") (net 84) (tstamp c45235cd-08de-4179-b662-304cd2a5505a)) (segment (start 149 69.1) (end 149 70.85) (width 0.2) (layer "F.Cu") (net 84) (tstamp c9d99310-ebfb-4df4-8917-1ae44e9ab37f)) (segment (start 149.6 68.5) (end 149 69.1) (width 0.2) (layer "F.Cu") (net 84) (tstamp d1990ebd-1d98-492f-b632-98b88a4b8726)) (segment (start 101.333063 81.101931) (end 94.582114 87.85288) (width 0.2) (layer "F.Cu") (net 84) (tstamp da1e0098-aff8-4cbb-8ae4-fbd176beabe8)) (segment (start 58.45 104.419988) (end 55.469988 107.4) (width 0.2) (layer "F.Cu") (net 84) (tstamp ddcdecc3-eee9-4373-a624-ae0a7db289db)) (segment (start 138.400969 83.654013) (end 137.255462 84.79952) (width 0.2) (layer "F.Cu") (net 84) (tstamp e2ca4506-16a3-43ca-8a2a-fbdff65b7125)) (segment (start 43.55 107.4) (end 41.1 109.85) (width 0.2) (layer "F.Cu") (net 84) (tstamp e37685e4-bd06-4cf7-8cb0-eb57f60d7cc5)) (segment (start 126.833554 85.99856) (end 114.083614 85.99856) (width 0.2) (layer "F.Cu") (net 84) (tstamp ea8ce3ef-d246-489e-b48d-bb2e834e449e)) (segment (start 59.000978 89.9) (end 58.45 90.450978) (width 0.2) (layer "F.Cu") (net 84) (tstamp ebc969f8-d1d8-487e-8540-3732764a8ad9)) (segment (start 128.646214 84.79952) (end 127.446214 85.99952) (width 0.2) (layer "F.Cu") (net 84) (tstamp f0f033fd-0f11-47a2-b896-f9690dc95351)) (segment (start 127.446214 85.99952) (end 126.834514 85.99952) (width 0.2) (layer "F.Cu") (net 84) (tstamp f26edd92-c2dc-4645-9ead-10a236e13cc7)) (segment (start 149.6 73.5) (end 142.945735 73.5) (width 0.2) (layer "F.Cu") (net 84) (tstamp ffc987f8-f240-4d41-a63a-a6e1f764b004)) (segment (start 132.3 124.75) (end 132.3 123.3) (width 1) (layer "F.Cu") (net 85) (tstamp 00c6f3c6-cd0e-4a9a-8024-8c4ec3a7a2c3)) (segment (start 132.3 123.3) (end 130.7 121.7) (width 1) (layer "F.Cu") (net 85) (tstamp 092ce1fe-4fde-452c-81b8-d2b997943e90)) (segment (start 130.7 121.7) (end 128 121.7) (width 1) (layer "F.Cu") (net 85) (tstamp 09e2c4c9-bd93-458d-8bae-839cd927dd5d)) (segment (start 127.775489 126.349511) (end 130.450489 126.349511) (width 1) (layer "F.Cu") (net 85) (tstamp 19e8cbb8-3934-4bf4-a566-21ed90a71d71)) (segment (start 127.235 119.8) (end 125.7 118.265) (width 0.2) (layer "F.Cu") (net 85) (tstamp 37f37914-e8e7-48b3-9784-24b435a1454c)) (segment (start 130.450489 126.349511) (end 132.05 124.75) (width 1) (layer "F.Cu") (net 85) (tstamp 3a364d5e-65fc-4abb-b4e7-27036294abcd)) (segment (start 127.235 120.485) (end 127.235 119.8) (width 0.2) (layer "F.Cu") (net 85) (tstamp 3dc8817a-a8b7-4280-89da-74a90322164f)) (segment (start 125.7 118.265) (end 125.7 115.9875) (width 0.2) (layer "F.Cu") (net 85) (tstamp 59b0a1bf-f219-477c-9a3c-0e6391ffa270)) (segment (start 125.7 115.9875) (end 126.2875 115.4) (width 0.2) (layer "F.Cu") (net 85) (tstamp 60224b40-dc20-47b7-a72d-feb59fb5fe7a)) (segment (start 132.05 124.75) (end 132.3 124.75) (width 1) (layer "F.Cu") (net 85) (tstamp 79b422ef-f0f7-4067-884f-59071d5e3e4b)) (segment (start 124.5 121.8) (end 125.365 120.935) (width 0.2) (layer "F.Cu") (net 85) (tstamp 7b87f0ab-4c25-4857-b58a-361fa537cc4a)) (segment (start 126.3625 127.7625) (end 127.775489 126.349511) (width 1) (layer "F.Cu") (net 85) (tstamp 97c46a33-1161-4c12-8ba7-8e979a8b965d)) (segment (start 127.235 120.935) (end 127.235 119.8) (width 1) (layer "F.Cu") (net 85) (tstamp a7a39ec0-f1ad-4db3-86f0-5eb17727e1d6)) (segment (start 125.94 129.9) (end 125.94 128.185) (width 1) (layer "F.Cu") (net 85) (tstamp bcd586ef-402e-4c85-96b7-dcbbb368bba0)) (segment (start 128 121.7) (end 127.235 120.935) (width 1) (layer "F.Cu") (net 85) (tstamp c9452400-55d7-45b8-aad9-09552cb72611)) (segment (start 124.5 123.8375) (end 124.5 121.8) (width 0.2) (layer "F.Cu") (net 85) (tstamp d1085e08-1d07-424a-b4e1-26a833e74fe8)) (segment (start 125.94 128.185) (end 126.3625 127.7625) (width 1) (layer "F.Cu") (net 85) (tstamp e2cc01a0-5a9d-4f2c-95db-43427cd6670e)) (segment (start 125.365 120.935) (end 127.235 120.935) (width 0.2) (layer "F.Cu") (net 85) (tstamp f4905151-9097-45aa-8b8f-f4e1c002fd6c)) (segment (start 124.8 118.425) (end 124.025 118.425) (width 0.2) (layer "F.Cu") (net 86) (tstamp 10a7aa89-6bdd-410e-b548-95b4680fd2e2)) (segment (start 125.3125 112.8) (end 125.25 112.8625) (width 0.2) (layer "F.Cu") (net 86) (tstamp 1aa1f7f7-cf41-4f62-ba1d-90de642abb16)) (segment (start 125.25 112.8625) (end 125.25 117.975) (width 0.2) (layer "F.Cu") (net 86) (tstamp 7bc22f71-47c6-4fa7-92e9-e23657a24219)) (segment (start 123.4 125.9) (end 122 127.3) (width 0.2) (layer "F.Cu") (net 86) (tstamp 7d36b29a-c66c-4a43-a317-e6f5d89f2637)) (segment (start 122.4 131.4) (end 129.5 131.4) (width 0.2) (layer "F.Cu") (net 86) (tstamp 89af6d4e-a5d9-4490-b6b9-4371e4526173)) (segment (start 123.4 119.05) (end 123.4 125.9) (width 0.2) (layer "F.Cu") (net 86) (tstamp 8e197840-7765-4a67-ac4e-1dded745145c)) (segment (start 125.25 117.975) (end 124.8 118.425) (width 0.2) (layer "F.Cu") (net 86) (tstamp 8e51b36c-f6c3-44c5-b095-d31c0bbf7c11)) (segment (start 124.025 118.425) (end 123.4 119.05) (width 0.2) (layer "F.Cu") (net 86) (tstamp a982faf6-2886-4df5-bf69-f1363af14331)) (segment (start 122 127.3) (end 122 131) (width 0.2) (layer "F.Cu") (net 86) (tstamp ae10a0c8-7760-48e7-9cba-244bb9099325)) (segment (start 122 131) (end 122.4 131.4) (width 0.2) (layer "F.Cu") (net 86) (tstamp bf3d2325-e25b-4f6c-a9ca-801200a4a79d)) (segment (start 129.5 131.4) (end 131 129.9) (width 0.2) (layer "F.Cu") (net 86) (tstamp ddd327d9-fb60-4f22-b08f-d0f0f5a7cb89)) (segment (start 131 129.9) (end 131.02 129.9) (width 0.2) (layer "F.Cu") (net 86) (tstamp f2dab1f2-7bb2-41af-bbdd-55b794e89b84)) (segment (start 61.55 80.0125) (end 61.55 81.4625) (width 0.2) (layer "F.Cu") (net 87) (tstamp 01701945-77ab-41fb-bdac-953c6adb1c16)) (segment (start 52.07 91.62) (end 51.07452 90.62452) (width 0.2) (layer "F.Cu") (net 87) (tstamp 0258e548-f569-4627-a915-00bd34d6fda1)) (segment (start 55.4625 83.75) (end 59.2625 83.75) (width 0.25) (layer "F.Cu") (net 87) (tstamp 09352e61-f8e8-4f38-87e3-f4c4ff91165a)) (segment (start 63.9 78.9) (end 65 80) (width 0.2) (layer "F.Cu") (net 87) (tstamp 0ea2d333-0c0b-48a2-9139-70cb063fdf40)) (segment (start 92.65 78.480729) (end 92.65 68.36) (width 0.2) (layer "F.Cu") (net 87) (tstamp 1668855c-527e-4e54-9dd3-fd897ffec6cc)) (segment (start 85.230729 85.9) (end 92.65 78.480729) (width 0.2) (layer "F.Cu") (net 87) (tstamp 2e9e3388-539d-4c5f-97ee-d7156932357b)) (segment (start 65.415006 85.9) (end 85.230729 85.9) (width 0.2) (layer "F.Cu") (net 87) (tstamp 44a652ab-f2db-4dee-8f26-9f50a2601190)) (segment (start 54.1375 85.075) (end 51.4625 85.075) (width 0.25) (layer "F.Cu") (net 87) (tstamp 4d3ba55d-f3b7-4232-a019-079aebc35fcb)) (segment (start 63.144641 78.9) (end 63.9 78.9) (width 0.2) (layer "F.Cu") (net 87) (tstamp 582a1c63-06fc-42c3-9a20-32a974d81257)) (segment (start 51.4625 85.075) (end 51.4125 85.125) (width 0.25) (layer "F.Cu") (net 87) (tstamp 63177e5f-0770-4be4-9351-9a0cdf7deb19)) (segment (start 62.032141 80.0125) (end 63.144641 78.9) (width 0.2) (layer "F.Cu") (net 87) (tstamp 68c48af5-9e43-4b87-b779-e5f636741fb2)) (segment (start 65 85.484994) (end 65.415006 85.9) (width 0.2) (layer "F.Cu") (net 87) (tstamp 6fc136e4-a4a8-4524-8017-047e927b7540)) (segment (start 54.1375 85.075) (end 55.4625 83.75) (width 0.25) (layer "F.Cu") (net 87) (tstamp 74130294-c99a-454a-8aa6-1ed50be151cd)) (segment (start 61.55 81.4625) (end 60.4375 82.575) (width 0.2) (layer "F.Cu") (net 87) (tstamp 7cab260b-16fc-49fb-b517-6bbc97baba8e)) (segment (start 61.55 80.0125) (end 62.032141 80.0125) (width 0.2) (layer "F.Cu") (net 87) (tstamp 859917eb-7f23-408a-9f3f-ca0f1b68b335)) (segment (start 59.2625 83.75) (end 60.4375 82.575) (width 0.25) (layer "F.Cu") (net 87) (tstamp 8a80c47d-65a5-42ef-9a81-307283223a5b)) (segment (start 65 80) (end 65 85.484994) (width 0.2) (layer "F.Cu") (net 87) (tstamp 9a6f0bd4-5185-47de-bc82-c9978254bbf9)) (segment (start 52.07 93.31) (end 52.07 91.62) (width 0.2) (layer "F.Cu") (net 87) (tstamp 9d512dd2-0ab8-4c08-8642-959b4405a9c0)) (segment (start 51.07452 85.46298) (end 51.4125 85.125) (width 0.2) (layer "F.Cu") (net 87) (tstamp c4116ac7-8e5e-442c-9346-379933230309)) (segment (start 92.65 68.36) (end 91.34 67.05) (width 0.2) (layer "F.Cu") (net 87) (tstamp d2245713-45ec-4c8a-a284-589dd952c12e)) (segment (start 51.07452 90.62452) (end 51.07452 85.46298) (width 0.2) (layer "F.Cu") (net 87) (tstamp dee3800d-ec57-45fc-aaf9-ce39fbf2f1ed)) (segment (start 91.34 67.51) (end 90.15 68.7) (width 0.25) (layer "B.Cu") (net 87) (tstamp b5756118-191f-47f6-84ea-409ca3c37bc4)) (segment (start 90.15 68.7) (end 83.95 68.7) (width 0.25) (layer "B.Cu") (net 87) (tstamp bddde37c-5b99-4d88-9107-a789de3ae6cf)) (segment (start 82.4775 67.2275) (end 82.4775 67.05) (width 0.25) (layer "B.Cu") (net 87) (tstamp bf05be59-07fe-4cad-a228-270bd1a042c8)) (segment (start 91.34 67.05) (end 91.34 67.51) (width 0.25) (layer "B.Cu") (net 87) (tstamp c34fa251-469b-4796-86c1-c34f3473deef)) (segment (start 83.95 68.7) (end 82.4775 67.2275) (width 0.25) (layer "B.Cu") (net 87) (tstamp eb3adff5-4372-43dd-903e-bebd713f815e)) (segment (start 138.3 121) (end 138.485 121.185) (width 0.2) (layer "F.Cu") (net 89) (tstamp 1f7bd785-97dd-4843-9e9c-c145891d1d8f)) (segment (start 141.700489 126.399511) (end 143.3 124.8) (width 1) (layer "F.Cu") (net 89) (tstamp 25c9effa-98b1-4108-8f21-649265c9d868)) (segment (start 136 123.8375) (end 136 121.4) (width 0.2) (layer "F.Cu") (net 89) (tstamp 26c8cb7a-8bd1-41ee-b4de-f995f1840b4c)) (segment (start 138.0125 127.7125) (end 139.325489 126.399511) (width 1) (layer "F.Cu") (net 89) (tstamp 3c7652b9-1bd1-41cc-9e51-96de3f7e1028)) (segment (start 138.485 119.8) (end 137.4 118.715) (width 0.2) (layer "F.Cu") (net 89) (tstamp 48e8058d-c059-4a3e-ac72-aba3c3dcc2e5)) (segment (start 137.4 115.8875) (end 137.8875 115.4) (width 0.2) (layer "F.Cu") (net 89) (tstamp 530869c8-2838-4425-872b-5034c95923fc)) (segment (start 138.485 121.185) (end 138.485 119.8) (width 1) (layer "F.Cu") (net 89) (tstamp 62d21369-3846-4c85-b419-c264338c1ff7)) (segment (start 137.54 128.185) (end 138.0125 127.7125) (width 1) (layer "F.Cu") (net 89) (tstamp 682f1abd-1645-400b-9089-ca0447ce0c14)) (segment (start 139.325489 126.399511) (end 141.700489 126.399511) (width 1) (layer "F.Cu") (net 89) (tstamp 6f3390bb-51ab-4fa3-a630-65fbe7c02248)) (segment (start 143.8 123.6) (end 142.5 122.3) (width 1) (layer "F.Cu") (net 89) (tstamp 6ffaff73-f3f9-4434-b8a1-6f103b9af74f)) (segment (start 137.54 129.9) (end 137.54 128.185) (width 1) (layer "F.Cu") (net 89) (tstamp 77a308a0-a3f1-4182-92e8-245520a88471)) (segment (start 137.4 118.715) (end 137.4 115.8875) (width 0.2) (layer "F.Cu") (net 89) (tstamp 942d3259-c1c0-4b0b-9a9f-05ab3487a773)) (segment (start 136 121.4) (end 136.4 121) (width 0.2) (layer "F.Cu") (net 89) (tstamp a70a8820-1f56-4eec-9ad2-6039245e2ed3)) (segment (start 142.5 122.3) (end 139.6 122.3) (width 1) (layer "F.Cu") (net 89) (tstamp b71bb725-cf17-4c22-8917-944083482a6e)) (segment (start 136.4 121) (end 138.3 121) (width 0.2) (layer "F.Cu") (net 89) (tstamp c3661440-bb82-4150-ba36-426246415802)) (segment (start 139.6 122.3) (end 138.485 121.185) (width 1) (layer "F.Cu") (net 89) (tstamp cbca501a-915b-4ad9-b712-b7f793b41ed4)) (segment (start 143.3 124.8) (end 143.8 124.8) (width 1) (layer "F.Cu") (net 89) (tstamp dedff4f6-569d-4a1b-84e5-e2489cfc48aa)) (segment (start 143.8 124.8) (end 143.8 123.6) (width 1) (layer "F.Cu") (net 89) (tstamp fa0fdb82-4867-4a9d-b8b2-ac0518558e03)) (segment (start 136.3125 112.8) (end 136.85048 113.33798) (width 0.2) (layer "F.Cu") (net 90) (tstamp 014f7c94-e450-4dbf-85c1-0f4228c201c4)) (segment (start 136.85048 117.77452) (end 136.25 118.375) (width 0.2) (layer "F.Cu") (net 90) (tstamp 1662b05a-fdd6-4831-b876-346183206a92)) (segment (start 133.6 128.7) (end 133.6 131) (width 0.2) (layer "F.Cu") (net 90) (tstamp 2adf7397-28dc-42b6-9bac-82366713736c)) (segment (start 141.12 131.4) (end 142.62 129.9) (width 0.2) (layer "F.Cu") (net 90) (tstamp 36f35fdb-6520-4b76-8066-e3afae55ebd9)) (segment (start 134.795489 120.276144) (end 134.79952 120.280175) (width 0.2) (layer "F.Cu") (net 90) (tstamp 4f539e8f-7705-45c0-8af9-4f57622d9baa)) (segment (start 136.25 118.375) (end 135.25 118.375) (width 0.2) (layer "F.Cu") (net 90) (tstamp 8b131eca-ac8a-4713-b695-f12cb552a2fe)) (segment (start 133.6 131) (end 134 131.4) (width 0.2) (layer "F.Cu") (net 90) (tstamp 8bfbe86e-a0bc-4981-a0ed-bd73911af2e2)) (segment (start 134 131.4) (end 141.12 131.4) (width 0.2) (layer "F.Cu") (net 90) (tstamp 90cb9e1e-0fbf-435c-8c9b-a31006c57c67)) (segment (start 134.79952 127.50048) (end 133.6 128.7) (width 0.2) (layer "F.Cu") (net 90) (tstamp 9109cfc0-e63f-4437-8899-ae98c049635a)) (segment (start 136.85048 113.33798) (end 136.85048 117.77452) (width 0.2) (layer "F.Cu") (net 90) (tstamp 9692aba0-7375-4322-b29c-39415f0c6e40)) (segment (start 134.795489 118.829511) (end 134.795489 120.276144) (width 0.2) (layer "F.Cu") (net 90) (tstamp a5cd43c8-9dbf-4c9d-8ad2-e76f1594e3d4)) (segment (start 135.25 118.375) (end 134.795489 118.829511) (width 0.2) (layer "F.Cu") (net 90) (tstamp b71d6f7f-58dc-4171-ba2f-4c3a0a41a7a2)) (segment (start 134.79952 120.280175) (end 134.79952 127.50048) (width 0.2) (layer "F.Cu") (net 90) (tstamp f5e6500e-3209-4a7f-94bf-ee98847f4b70)) (segment (start 161.4375 113.8) (end 160.7 113.0625) (width 0.2) (layer "F.Cu") (net 91) (tstamp 04b2cb6c-9ea2-45ae-b005-fa53d9addd80)) (segment (start 156.46 108.2) (end 157.3 109.04) (width 0.2) (layer "F.Cu") (net 91) (tstamp 16da93d7-9509-45c1-ad97-6b539029a869)) (segment (start 162.3 106.75) (end 165.81 110.26) (width 1) (layer "F.Cu") (net 91) (tstamp 1ba322e1-13c2-49cd-8cbe-522dd8795bee)) (segment (start 159.9 106.7) (end 160.7 105.9) (width 1) (layer "F.Cu") (net 91) (tstamp 340c3450-f197-4dea-aebc-b74d70013217)) (segment (start 159.9 108.6) (end 159.9 106.7) (width 1) (layer "F.Cu") (net 91) (tstamp 3dbf2a88-d815-488c-aab2-ec1b6ac67fa0)) (segment (start 160.7 113.0625) (end 160.7 109.4) (width 0.2) (layer "F.Cu") (net 91) (tstamp 63cb614e-2b05-4e6c-b9f1-d755162cdff8)) (segment (start 151.7125 108.2) (end 156.46 108.2) (width 0.2) (layer "F.Cu") (net 91) (tstamp 712e521e-0752-493f-98d0-be392bdc6147)) (segment (start 166.24 110.26) (end 167.4 110.26) (width 0.2) (layer "F.Cu") (net 91) (tstamp 84729ade-2225-48d9-a1dc-cce16bd5f12b)) (segment (start 159.46 109.04) (end 159.9 108.6) (width 1) (layer "F.Cu") (net 91) (tstamp 956a509a-1251-461a-bc8d-8494f9680ed1)) (segment (start 160.7 109.4) (end 159.9 108.6) (width 0.2) (layer "F.Cu") (net 91) (tstamp 99d639ca-afb5-4b17-a7a9-70a5e1eca90e)) (segment (start 150.9125 109) (end 151.7125 108.2) (width 0.2) (layer "F.Cu") (net 91) (tstamp 9d538cf8-498d-4139-9a9d-679f03f91de6)) (segment (start 165.81 110.26) (end 167.4 110.26) (width 1) (layer "F.Cu") (net 91) (tstamp a6550ebe-2bc0-4e8f-964a-5a95e38d63f4)) (segment (start 157.3 109.04) (end 159.46 109.04) (width 1) (layer "F.Cu") (net 91) (tstamp bb07e307-1e13-4ec2-890b-c9bd3dcba965)) (segment (start 162.3 105.9) (end 162.3 106.75) (width 1) (layer "F.Cu") (net 91) (tstamp c2266eb6-d0f9-4b51-81a3-9084f4062de3)) (segment (start 160.7 105.9) (end 162.3 105.9) (width 1) (layer "F.Cu") (net 91) (tstamp f45f9242-aeb5-46a4-a442-2de3fbe07a7a)) (segment (start 163.565006 103.4) (end 165.345006 105.18) (width 0.2) (layer "F.Cu") (net 92) (tstamp 12ca9099-ed9a-4c10-b73f-38370c82f035)) (segment (start 165.345006 105.18) (end 167.4 105.18) (width 0.2) (layer "F.Cu") (net 92) (tstamp 1a5a0264-90b3-4c39-9aa3-1c0ea75850dc)) (segment (start 160.9 103.4) (end 163.565006 103.4) (width 0.2) (layer "F.Cu") (net 92) (tstamp 34c11d2b-f9fe-487a-bb8d-26c262d4f474)) (segment (start 156.3 104.8) (end 159.5 104.8) (width 0.2) (layer "F.Cu") (net 92) (tstamp 3c948595-3eb4-4166-960f-9d0729d83d2e)) (segment (start 150.9125 111) (end 154.5 111) (width 0.2) (layer "F.Cu") (net 92) (tstamp 9b294e38-cba3-4dc1-850c-8d9e85b7ff82)) (segment (start 159.5 104.8) (end 160.9 103.4) (width 0.2) (layer "F.Cu") (net 92) (tstamp bf004f25-d727-42f4-82f9-99285cce553b)) (segment (start 154.5 103) (end 156.3 104.8) (width 0.2) (layer "F.Cu") (net 92) (tstamp debe0963-a36a-46fd-a4d8-401dc461c645)) (via (at 154.5 103) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 92) (tstamp 03c5b27d-9dc2-4535-a37b-45c64d7e7ba0)) (via (at 154.5 111) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 92) (tstamp dacf3b6a-4d66-493c-9d14-93470d97ab08)) (segment (start 154.5 111) (end 154.5 103) (width 0.2) (layer "B.Cu") (net 92) (tstamp dee14d79-89d1-4f8f-b6e0-50120bd670f1)) (segment (start 150.9525 97.79) (end 157.3 97.79) (width 0.2) (layer "F.Cu") (net 93) (tstamp 0b2a7036-91ec-4829-bb49-c5e3c44c1bdb)) (segment (start 162.3 94.6) (end 162.3 95.45) (width 1) (layer "F.Cu") (net 93) (tstamp 0c355abd-2306-4174-ad11-354f63fd019f)) (segment (start 160.6 97.7) (end 159.8 96.9) (width 0.2) (layer "F.Cu") (net 93) (tstamp 1e54f709-02a3-45b5-bf4c-0ef867f668a6)) (segment (start 159.8 96.9) (end 159.8 95.2) (width 1) (layer "F.Cu") (net 93) (tstamp 343cd5a6-8a10-4ccc-b759-4db330ac295a)) (segment (start 159.8 95.2) (end 160.4 94.6) (width 1) (layer "F.Cu") (net 93) (tstamp 40123436-adad-4aef-a16e-749e2b653286)) (segment (start 160.6 101.6625) (end 160.6 97.7) (width 0.2) (layer "F.Cu") (net 93) (tstamp 42b6ad23-48e4-4669-8970-7f97b8f4c6e7)) (segment (start 165.81 98.96) (end 167.4 98.96) (width 1) (layer "F.Cu") (net 93) (tstamp 6047292c-3721-4c3f-9f67-c23cfe978da8)) (segment (start 160.4 94.6) (end 162.3 94.6) (width 1) (layer "F.Cu") (net 93) (tstamp 68e9e6af-f912-4e7c-b2d8-1e06b81ba178)) (segment (start 158.91 97.79) (end 159.8 96.9) (width 1) (layer "F.Cu") (net 93) (tstamp 9105fef8-0678-43bc-8e50-f91f950b5d81)) (segment (start 150.9125 97.75) (end 150.9525 97.79) (width 0.2) (layer "F.Cu") (net 93) (tstamp b505c366-d841-41fd-b46a-d2b18d99fda0)) (segment (start 157.3 97.79) (end 158.91 97.79) (width 1) (layer "F.Cu") (net 93) (tstamp bfcacfb6-1d4a-4bac-a4fb-99fe189d0f97)) (segment (start 161.4375 102.5) (end 160.6 101.6625) (width 0.2) (layer "F.Cu") (net 93) (tstamp f0ec745f-7e09-4036-97d5-f00653b22219)) (segment (start 162.3 95.45) (end 165.81 98.96) (width 1) (layer "F.Cu") (net 93) (tstamp f214fc47-a1e7-463b-b6c3-90541719c6fe)) (segment (start 150.962011 99.799511) (end 154.499511 99.799511) (width 0.2) (layer "F.Cu") (net 94) (tstamp 07960e73-c93a-4723-85af-56ed5fa16399)) (segment (start 150.9125 99.75) (end 150.962011 99.799511) (width 0.2) (layer "F.Cu") (net 94) (tstamp 236d1674-7df8-40e9-b699-ead3696c44a7)) (segment (start 155.1 93.5) (end 159.234994 93.5) (width 0.2) (layer "F.Cu") (net 94) (tstamp 439fe9a5-97b8-4989-bad4-275a53b5ed66)) (segment (start 159.234994 93.5) (end 160.734993 92.000001) (width 0.2) (layer "F.Cu") (net 94) (tstamp 64fa2699-960c-4a90-a9a7-3adf14e06cdd)) (segment (start 154.5 92.9) (end 155.1 93.5) (width 0.2) (layer "F.Cu") (net 94) (tstamp 77664a89-d21b-41dd-acba-7e7ad72d5a6b)) (segment (start 163.865007 92.000001) (end 165.745006 93.88) (width 0.2) (layer "F.Cu") (net 94) (tstamp 8051f83d-bddf-4e56-8488-55bd4a170c0a)) (segment (start 165.745006 93.88) (end 167.4 93.88) (width 0.2) (layer "F.Cu") (net 94) (tstamp c4891cb7-af7b-446c-ae83-0d0703fa802e)) (segment (start 154.5 91.8) (end 154.5 92.9) (width 0.2) (layer "F.Cu") (net 94) (tstamp c4c7d88c-3251-4608-9bae-d8005aac77e4)) (segment (start 154.499511 99.799511) (end 154.5 99.8) (width 0.2) (layer "F.Cu") (net 94) (tstamp cdd864bf-4593-41be-b125-de53436bfe9e)) (segment (start 160.734993 92.000001) (end 163.865007 92.000001) (width 0.2) (layer "F.Cu") (net 94) (tstamp cde0257e-3bd0-4f0d-a15d-6c877a8a32e0)) (via (at 154.5 99.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 94) (tstamp 049d217a-704a-412c-b21a-c25d482c4e09)) (via (at 154.5 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 94) (tstamp 627530eb-9df8-4cf6-8020-d1687b8615b4)) (segment (start 154.5 99.8) (end 154.5 91.8) (width 0.2) (layer "B.Cu") (net 94) (tstamp 68dccd40-abc1-457b-8f72-d1071ff643d3)) (segment (start 161 83.3) (end 162.3 83.3) (width 1) (layer "F.Cu") (net 95) (tstamp 1f30621c-d6e9-4484-a102-8cb7ae9b44b8)) (segment (start 159.085 86.515) (end 159.9 85.7) (width 1) (layer "F.Cu") (net 95) (tstamp 2d691ced-9251-4266-b5eb-94f5f9ff0bf9)) (segment (start 165.942199 87.76) (end 167.4 87.76) (width 1) (layer "F.Cu") (net 95) (tstamp 35f0015c-f5c5-44ed-8b8b-65d1e9b409f2)) (segment (start 150.9125 86.5) (end 150.9275 86.515) (width 0.2) (layer "F.Cu") (net 95) (tstamp 60a2f383-8653-4e8a-be62-bc3b8024bab1)) (segment (start 162.3 83.3) (end 162.3 84.117801) (width 1) (layer "F.Cu") (net 95) (tstamp 66e42c88-8c9f-4c63-94bd-9d3868fd0f02)) (segment (start 160.7 86.5) (end 159.9 85.7) (width 0.2) (layer "F.Cu") (net 95) (tstamp 69c89ef7-12e6-4ff7-a506-f28cb4359b1e)) (segment (start 162.3 84.117801) (end 165.942199 87.76) (width 1) (layer "F.Cu") (net 95) (tstamp 809cadcf-4f4a-41bc-8c83-328ce4b10f91)) (segment (start 159.9 85.7) (end 159.9 84.4) (width 1) (layer "F.Cu") (net 95) (tstamp a41a22b6-6a92-4ae3-ba25-aabe6a3773b6)) (segment (start 160.7 90.3625) (end 160.7 86.5) (width 0.2) (layer "F.Cu") (net 95) (tstamp a5b5bec6-a1cd-461e-a604-753636e8dfc5)) (segment (start 150.9275 86.515) (end 157.3 86.515) (width 0.2) (layer "F.Cu") (net 95) (tstamp c3f2712d-f6ba-4278-b777-19e51cad641c)) (segment (start 161.4375 91.1) (end 160.7 90.3625) (width 0.2) (layer "F.Cu") (net 95) (tstamp d1416df9-a2f8-4a08-a53e-857446233ded)) (segment (start 159.9 84.4) (end 161 83.3) (width 1) (layer "F.Cu") (net 95) (tstamp f092763c-4d80-4da2-8984-e0e5a51c1d0c)) (segment (start 157.3 86.515) (end 159.085 86.515) (width 1) (layer "F.Cu") (net 95) (tstamp f5a9aa21-6ccc-4e3e-89d0-121d5266727a)) (segment (start 163.365487 80.700481) (end 165.345006 82.68) (width 0.2) (layer "F.Cu") (net 96) (tstamp 05cdbadc-844d-45b0-a029-66bd8cce70b9)) (segment (start 159.484514 82.35048) (end 161.134513 80.700481) (width 0.2) (layer "F.Cu") (net 96) (tstamp 61e9e0b0-400d-4252-8838-4ceaeb2af32d)) (segment (start 154.5 81.6) (end 154.5 82) (width 0.2) (layer "F.Cu") (net 96) (tstamp 7ef3523f-726d-4b4c-be79-ac54ab08d7ec)) (segment (start 165.345006 82.68) (end 167.4 82.68) (width 0.2) (layer "F.Cu") (net 96) (tstamp c768e595-22b6-4f7d-b8ee-c81bf343c2c3)) (segment (start 161.134513 80.700481) (end 163.365487 80.700481) (width 0.2) (layer "F.Cu") (net 96) (tstamp e8b5c5d9-d60c-4724-b9a5-af84330c1894)) (segment (start 150.9125 88.5) (end 154.5 88.5) (width 0.2) (layer "F.Cu") (net 96) (tstamp e91d4ef4-4dcb-4a12-98ea-d56fba43b459)) (segment (start 154.85048 82.35048) (end 159.484514 82.35048) (width 0.2) (layer "F.Cu") (net 96) (tstamp f26d92e3-d77e-4053-8dc6-abc670bfbe39)) (segment (start 154.5 82) (end 154.85048 82.35048) (width 0.2) (layer "F.Cu") (net 96) (tstamp f93fb2ff-d4ab-4a07-b0f1-f95ea1a0369a)) (via (at 154.5 81.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 96) (tstamp b7877675-2e65-40f4-941a-978b163197b3)) (via (at 154.5 88.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 96) (tstamp bac54c70-6eb8-408a-ab03-8e2b6df66436)) (segment (start 154.5 88.5) (end 154.5 81.6) (width 0.2) (layer "B.Cu") (net 96) (tstamp 3e488e92-bddd-4d44-95f8-53f1899959b3)) (segment (start 162.3 72.817801) (end 165.942199 76.46) (width 1) (layer "F.Cu") (net 97) (tstamp 0035c864-cb67-46e0-9f09-b24fa04fafa8)) (segment (start 159.9 72.9) (end 160.7 72.1) (width 1) (layer "F.Cu") (net 97) (tstamp 07102ecc-fac7-4bda-b25c-6f81058ffc6c)) (segment (start 151.5 74.4) (end 156.41 74.4) (width 0.2) (layer "F.Cu") (net 97) (tstamp 072e91c4-9513-468d-b44e-be4b9e8236e1)) (segment (start 159.01 75.29) (end 159.9 74.4) (width 1) (layer "F.Cu") (net 97) (tstamp 633a80f4-d109-47cf-9f95-095367f54ad5)) (segment (start 162.3 72.1) (end 162.3 72.817801) (width 1) (layer "F.Cu") (net 97) (tstamp 87196646-99d8-46cd-8db7-e9fa54fe1315)) (segment (start 160.7 79.1625) (end 160.7 75.2) (width 0.2) (layer "F.Cu") (net 97) (tstamp a5a4b871-0e6d-42a1-9dfe-7e22faeda9f5)) (segment (start 160.7 72.1) (end 162.3 72.1) (width 1) (layer "F.Cu") (net 97) (tstamp a602afb0-4c18-4100-b454-ce2afc32290c)) (segment (start 157.3 75.29) (end 159.01 75.29) (width 1) (layer "F.Cu") (net 97) (tstamp bcc21236-229b-4341-a422-69a8250c634c)) (segment (start 165.942199 76.46) (end 167.4 76.46) (width 1) (layer "F.Cu") (net 97) (tstamp bde01fcb-8934-4fbd-a473-78b9685834f8)) (segment (start 160.7 75.2) (end 159.9 74.4) (width 0.2) (layer "F.Cu") (net 97) (tstamp bfeb75db-4460-4d3c-b2da-5474540ed517)) (segment (start 150.9125 75.6) (end 150.9125 74.9875) (width 0.2) (layer "F.Cu") (net 97) (tstamp c233d88b-5ffa-4584-88fa-be6bdc87b2b5)) (segment (start 156.41 74.4) (end 157.3 75.29) (width 0.2) (layer "F.Cu") (net 97) (tstamp c533d3f1-55b4-4ef5-826b-93fe02e40144)) (segment (start 159.9 74.4) (end 159.9 72.9) (width 1) (layer "F.Cu") (net 97) (tstamp d79785b9-b431-4e37-88cc-f718f842d41e)) (segment (start 150.9125 74.9875) (end 151.5 74.4) (width 0.2) (layer "F.Cu") (net 97) (tstamp d88bd346-6a0a-4748-8e77-7260e82469a5)) (segment (start 161.4375 79.9) (end 160.7 79.1625) (width 0.2) (layer "F.Cu") (net 97) (tstamp df0a2216-cab5-4b12-a209-0272c560a2cd)) (segment (start 153.7 75) (end 154 75.3) (width 0.2) (layer "F.Cu") (net 98) (tstamp 371d2484-5400-40fd-a5d5-7bf2cb778ab0)) (segment (start 152.8 75) (end 153.7 75) (width 0.2) (layer "F.Cu") (net 98) (tstamp 52667a0a-a7cb-4cf0-8bdf-cc508b7d7cfc)) (segment (start 150.9125 76.8875) (end 152.8 75) (width 0.2) (layer "F.Cu") (net 98) (tstamp 71cc19c5-c146-4615-84bc-35a8ceb87069)) (segment (start 154 75.3) (end 154.4 75.3) (width 0.2) (layer "F.Cu") (net 98) (tstamp c7a0991f-11a5-4da9-95fc-16bd9dab44e5)) (segment (start 150.9125 77.4) (end 150.9125 76.8875) (width 0.2) (layer "F.Cu") (net 98) (tstamp dace266e-a69f-45c0-a270-86828ac7664c)) (via (at 154.4 75.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 98) (tstamp 16d93f4c-c93a-43a4-b23d-825649b1bc83)) (segment (start 156.2 69.1) (end 166.2 69.1) (width 0.2) (layer "B.Cu") (net 98) (tstamp 51a4f6cf-2028-479b-b4b9-8abb712030b6)) (segment (start 154.4 70.9) (end 156.2 69.1) (width 0.2) (layer "B.Cu") (net 98) (tstamp 5c26d80c-a27b-40dd-8f64-0309c60fdc60)) (segment (start 166.2 69.1) (end 167.4 70.3) (width 0.2) (layer "B.Cu") (net 98) (tstamp 7c5e1030-7343-417d-bcb1-9d141079cb88)) (segment (start 154.4 75.3) (end 154.4 70.9) (width 0.2) (layer "B.Cu") (net 98) (tstamp 93b6ca40-183e-48f7-bf30-e347e0339bc6)) (segment (start 167.4 70.3) (end 167.4 71.38) (width 0.2) (layer "B.Cu") (net 98) (tstamp fd33cd8a-022b-4cd1-b6e2-144a02ffeb84)) (segment (start 116.05 66.9375) (end 116.05 68.2375) (width 0.2) (layer "F.Cu") (net 99) (tstamp 15302de1-cae0-464e-830a-a8cd04f318f3)) (segment (start 116.05 68.2375) (end 115.2875 69) (width 0.2) (layer "F.Cu") (net 99) (tstamp 252d5207-8dbf-4657-a0f1-a32dee230e88)) (segment (start 139.25 66.9375) (end 139.25 68.4375) (width 0.2) (layer "F.Cu") (net 100) (tstamp 94a32c27-c85e-4f78-a2a2-28bc454504d6)) (segment (start 139.25 68.4375) (end 138.6875 69) (width 0.2) (layer "F.Cu") (net 100) (tstamp e7550365-5bf5-44b8-a700-a73531377896)) (segment (start 126.6875 69) (end 127.45 68.2375) (width 0.2) (layer "F.Cu") (net 101) (tstamp 163d1cb9-d885-4e4f-8751-72853d1a989b)) (segment (start 127.45 68.2375) (end 127.45 66.9375) (width 0.2) (layer "F.Cu") (net 101) (tstamp 93cdf33c-1be3-4b82-a0c3-050b7a553ea6)) (segment (start 51.25 66.75) (end 55 70.5) (width 1.5) (layer "F.Cu") (net 102) (tstamp 2df86a46-c9a6-4d5d-a38e-593c63428706)) (segment (start 49.3 66.75) (end 51.25 66.75) (width 1.5) (layer "F.Cu") (net 102) (tstamp 40bd3f5f-c24a-435f-8aee-00b66ebe9f32)) (segment (start 55 70.5) (end 60.025 70.5) (width 1.5) (layer "F.Cu") (net 102) (tstamp 5e209a96-0c9b-40cd-a8b8-c814597361e4)) (segment (start 77.68125 76.5) (end 77.3125 76.86875) (width 0.5) (layer "F.Cu") (net 103) (tstamp 0512e9cd-0448-4b4b-8e11-1accdc572e71)) (segment (start 77.3125 76.86875) (end 74.7625 76.86875) (width 0.25) (layer "F.Cu") (net 103) (tstamp 43dca504-1029-4acb-849b-9234a54bd763)) (segment (start 77.2 83.68125) (end 75.8 82.28125) (width 0.5) (layer "F.Cu") (net 103) (tstamp 97a37185-f4fa-4619-ba0f-d623cdcb05e5)) (segment (start 87.8 72.227138) (end 83.527138 76.5) (width 0.5) (layer "F.Cu") (net 103) (tstamp bba802e6-f659-442d-9c86-631a2a55af68)) (segment (start 75.8 82.28125) (end 75.8 78.38125) (width 0.5) (layer "F.Cu") (net 103) (tstamp d4445238-34c2-442c-aa07-80f9135e94e8)) (segment (start 83.527138 76.5) (end 77.68125 76.5) (width 0.5) (layer "F.Cu") (net 103) (tstamp eb828ea0-11ee-45f1-aabc-1b13ad597c09)) (segment (start 87.8 71.05) (end 87.8 72.227138) (width 0.5) (layer "F.Cu") (net 103) (tstamp f1f6a990-7af9-4480-a3e9-4aa5adc9bfcc)) (segment (start 75.8 78.38125) (end 77.3125 76.86875) (width 0.5) (layer "F.Cu") (net 103) (tstamp f2a4818c-9fd5-450c-a9d8-afd666593368)) (segment (start 74.7625 76.86875) (end 74.7125 76.91875) (width 0.25) (layer "F.Cu") (net 103) (tstamp fe8cd6bb-3908-486b-85d0-7c111ccb81fe)) (segment (start 43.1375 85.1875) (end 42.5125 85.1875) (width 0.2) (layer "F.Cu") (net 104) (tstamp 0eea43b9-af9b-432e-8566-ee9568a5bdf1)) (segment (start 42 80.125) (end 41.5 79.625) (width 0.2) (layer "F.Cu") (net 104) (tstamp 0f8a840b-d95c-46bd-94b0-4d4988f3316a)) (segment (start 41.3 89.675) (end 41.3 88.825) (width 0.2) (layer "F.Cu") (net 104) (tstamp 21e7f141-e5b4-4689-8e06-7ef3e01be7b6)) (segment (start 39.725 90.025) (end 40.95 90.025) (width 0.2) (layer "F.Cu") (net 104) (tstamp 4cdaf28d-9815-4b8d-acf9-154c93495ef4)) (segment (start 41.5 79.625) (end 41.5 78.5) (width 0.2) (layer "F.Cu") (net 104) (tstamp 559deb01-94bf-476d-8e13-2b7fc8efe433)) (segment (start 42 84.675) (end 42 80.125) (width 0.2) (layer "F.Cu") (net 104) (tstamp 677249d7-a377-41c8-95b0-786808c2689f)) (segment (start 43.475 85.525) (end 43.1375 85.1875) (width 0.2) (layer "F.Cu") (net 104) (tstamp 6bafedfd-abde-43c6-b64a-6de7da8273bf)) (segment (start 42.5125 85.1875) (end 42 84.675) (width 0.2) (layer "F.Cu") (net 104) (tstamp 6c2718ab-bd7c-476b-8978-d1b765815fcc)) (segment (start 39.37 93.31) (end 39.37 90.38) (width 0.2) (layer "F.Cu") (net 104) (tstamp 827cda3c-ae00-4913-b2e9-558169c01bc4)) (segment (start 43.475 86.65) (end 43.475 85.525) (width 0.2) (layer "F.Cu") (net 104) (tstamp ab449bc4-0674-4f91-8a9b-85dcc954c4b0)) (segment (start 41.3 88.825) (end 43.475 86.65) (width 0.2) (layer "F.Cu") (net 104) (tstamp b35d4f45-a2c2-4269-b48c-03743425cdbb)) (segment (start 40.95 90.025) (end 41.3 89.675) (width 0.2) (layer "F.Cu") (net 104) (tstamp d6ff277c-3d81-4d4c-a153-086ecfdcc180)) (segment (start 39.37 90.38) (end 39.725 90.025) (width 0.2) (layer "F.Cu") (net 104) (tstamp d96fc5f6-1498-49b8-a845-ebd7174112e3)) (segment (start 103.975 115.4) (end 104.7 114.675) (width 0.2) (layer "F.Cu") (net 105) (tstamp a03dfce1-346c-4044-a2ce-ca449db813c8)) (segment (start 104.7 114.675) (end 104.7 112.725) (width 0.2) (layer "F.Cu") (net 105) (tstamp b159d518-66c9-41e6-95d9-8e2fe3d1e170)) (segment (start 115.5 114.1) (end 115.5 113.225) (width 0.2) (layer "F.Cu") (net 106) (tstamp 2a441abf-4a6d-4301-9884-cade6c861296)) (segment (start 115.5 113.225) (end 115.9 112.825) (width 0.2) (layer "F.Cu") (net 106) (tstamp 3593accd-4caa-4aa6-911d-059b9a36c259)) (segment (start 116.8125 115.4) (end 116.8 115.4) (width 0.2) (layer "F.Cu") (net 106) (tstamp 40928abe-544b-430d-871d-81ae67ca6f9c)) (segment (start 116.8 115.4) (end 115.5 114.1) (width 0.2) (layer "F.Cu") (net 106) (tstamp 574d2ebc-69ae-43de-ab8e-ec75d36f49fe)) (segment (start 139.7125 115.4) (end 139.25 115.4) (width 0.2) (layer "F.Cu") (net 107) (tstamp 13789740-d4f2-4d6f-950a-da16f735b3a5)) (segment (start 138.1 114.25) (end 138.1 113.025) (width 0.2) (layer "F.Cu") (net 107) (tstamp 41240c66-963a-478e-ae8c-ba245590d80d)) (segment (start 139.25 115.4) (end 138.1 114.25) (width 0.2) (layer "F.Cu") (net 107) (tstamp 83118fbe-9040-46c5-b178-b0c6adf18ee3)) (segment (start 138.1 113.025) (end 138.4 112.725) (width 0.2) (layer "F.Cu") (net 107) (tstamp a8c8c0eb-7269-4ddc-96c3-e6e5f5016e12)) (segment (start 127 114.3) (end 127 113.125) (width 0.2) (layer "F.Cu") (net 108) (tstamp 0b3d1de8-9503-4397-8c37-0ceb19d30f53)) (segment (start 128.1 115.4) (end 127 114.3) (width 0.2) (layer "F.Cu") (net 108) (tstamp 246bb0d5-5744-4eeb-94c5-3df2d6e23757)) (segment (start 128.1125 115.4) (end 128.1 115.4) (width 0.2) (layer "F.Cu") (net 108) (tstamp eb74db0e-a626-4a92-a21b-4062b1d1807e)) (segment (start 127 113.125) (end 127.4 112.725) (width 0.2) (layer "F.Cu") (net 108) (tstamp f6c09328-1395-4201-9dc3-f970e2eb77e8)) (segment (start 149.0875 109) (end 147.275 109) (width 0.2) (layer "F.Cu") (net 109) (tstamp 36ab6e55-92fa-4b4b-a2a7-9f7de8f4661b)) (segment (start 149.0875 97.75) (end 147.275 97.75) (width 0.2) (layer "F.Cu") (net 110) (tstamp 51f42c71-d07d-47e9-abc0-2dbc3c44c78c)) (segment (start 149.0875 86.5) (end 147.275 86.5) (width 0.2) (layer "F.Cu") (net 111) (tstamp 9277ac89-d1b8-41f5-b230-798d05a910bb)) (segment (start 149.0875 75.6) (end 147.225 75.6) (width 0.2) (layer "F.Cu") (net 112) (tstamp e5af9e20-7428-4d4f-973e-23975c41bb16)) (segment (start 64.575 83.5875) (end 64.575 85.625) (width 0.2) (layer "F.Cu") (net 113) (tstamp 099d7bb7-2b03-40c0-b1ad-c56acd638b32)) (segment (start 57.5 85.1625) (end 57.975 85.1625) (width 0.25) (layer "F.Cu") (net 113) (tstamp 0c3c69d9-9fe7-4ce6-a04d-9f61c760ea02)) (segment (start 58.73798 84.17452) (end 60.85048 84.17452) (width 0.2) (layer "F.Cu") (net 113) (tstamp 17d9361b-0a84-4c63-aa06-dd45b1207c86)) (segment (start 64.575 85.625) (end 65.24952 86.29952) (width 0.2) (layer "F.Cu") (net 113) (tstamp 192d6ec5-7d45-4a55-be39-ad383d57022f)) (segment (start 94.6 57.9) (end 92.35 60.15) (width 0.2) (layer "F.Cu") (net 113) (tstamp 1d208f43-9276-4806-af8b-66e8ef2c6971)) (segment (start 85.395735 86.3) (end 97.675 74.020735) (width 0.2) (layer "F.Cu") (net 113) (tstamp 1da069ea-9bd0-41ed-9faa-d7a1fb057ed0)) (segment (start 63.5625 80.125) (end 63.45 80.0125) (width 0.2) (layer "F.Cu") (net 113) (tstamp 347da373-84c7-4736-806b-37d201784262)) (segment (start 97.2 57.9) (end 94.6 57.9) (width 0.2) (layer "F.Cu") (net 113) (tstamp 450777ec-52a8-4175-8bf9-8b4ef32bc071)) (segment (start 97.675 74.020735) (end 97.675 58.375) (width 0.2) (layer "F.Cu") (net 113) (tstamp 4e752798-0828-4945-a00f-411a418f1266)) (segment (start 62.45 82.575) (end 63.5625 82.575) (width 0.2) (layer "F.Cu") (net 113) (tstamp 5add23d6-2916-492b-ac8e-e31901a0b1b1)) (segment (start 79.460261 86.29952) (end 79.460741 86.3) (width 0.2) (layer "F.Cu") (net 113) (tstamp 636d5cb0-6a53-476b-8ac7-e81c3f4bd7f6)) (segment (start 60.85048 84.17452) (end 62.45 82.575) (width 0.2) (layer "F.Cu") (net 113) (tstamp 68a406f3-c545-4f8a-8250-f83531876cad)) (segment (start 63.5625 82.575) (end 63.5625 80.125) (width 0.2) (layer "F.Cu") (net 113) (tstamp 6ec635e1-d179-4ed9-a526-a9fc5213e9b2)) (segment (start 92.35 60.15) (end 92.35 61.225) (width 0.2) (layer "F.Cu") (net 113) (tstamp 797495ea-c776-4dff-a6ac-e8e720824b83)) (segment (start 57.4125 85.075) (end 57.5 85.1625) (width 0.25) (layer "F.Cu") (net 113) (tstamp 86b7872f-59e8-4c6a-a330-1bc69453bdf9)) (segment (start 57.4375 85.1) (end 57.5 85.1625) (width 0.2) (layer "F.Cu") (net 113) (tstamp 9243a197-d59a-4f36-bde6-ffff50e08501)) (segment (start 57.15 93.31) (end 56.9 93.06) (width 0.2) (layer "F.Cu") (net 113) (tstamp aa1684eb-bf24-4143-b925-513397aebd9a)) (segment (start 57.8375 85.075) (end 58.73798 84.17452) (width 0.2) (layer "F.Cu") (net 113) (tstamp bcb635b1-078a-4165-acea-1e806f21395f)) (segment (start 56.9 93.06) (end 56.9 85.1) (width 0.2) (layer "F.Cu") (net 113) (tstamp c77474c4-bad8-4e75-b6fe-3aa1cb1f8fe5)) (segment (start 65.24952 86.29952) (end 79.460261 86.29952) (width 0.2) (layer "F.Cu") (net 113) (tstamp d4c327da-8bbe-4734-99a6-a6c90a8a09d8)) (segment (start 63.5625 82.575) (end 64.575 83.5875) (width 0.2) (layer "F.Cu") (net 113) (tstamp de854a71-c586-465a-8dd3-ad44ba6c1059)) (segment (start 55.8625 85.075) (end 57.4125 85.075) (width 0.25) (layer "F.Cu") (net 113) (tstamp de883207-cfd0-4137-be25-0954ee7a1862)) (segment (start 56.9 85.1) (end 57.4375 85.1) (width 0.2) (layer "F.Cu") (net 113) (tstamp f025abd0-76dd-4e40-9032-04a1f488d305)) (segment (start 97.675 58.375) (end 97.2 57.9) (width 0.2) (layer "F.Cu") (net 113) (tstamp fab2015a-5151-4730-bb04-3a0de96e75ab)) (segment (start 79.460741 86.3) (end 85.395735 86.3) (width 0.2) (layer "F.Cu") (net 113) (tstamp fee69415-3b1b-467a-9596-a7af933deba2)) (segment (start 92.35 61.3) (end 90.75 62.9) (width 0.2) (layer "B.Cu") (net 113) (tstamp 14f22b61-3980-4ed3-9d72-a64f1f41fbb2)) (segment (start 85.35 62.9) (end 83.75 61.3) (width 0.2) (layer "B.Cu") (net 113) (tstamp 1d2fefcc-6cd3-4b67-a822-dd3c67d07b99)) (segment (start 83.75 61.3) (end 83.75 61.2) (width 0.2) (layer "B.Cu") (net 113) (tstamp 49c2aea3-f6f9-41f5-b12f-3409ae970d21)) (segment (start 92.35 61.225) (end 92.35 61.3) (width 0.2) (layer "B.Cu") (net 113) (tstamp 749a8c81-7e81-4c5b-9a8f-dcc9d023d510)) (segment (start 90.75 62.9) (end 85.35 62.9) (width 0.2) (layer "B.Cu") (net 113) (tstamp 8d06116d-6102-47f7-b682-8936a0e821ae)) (segment (start 77.3625 60.4125) (end 77.375 60.4) (width 0.2) (layer "F.Cu") (net 114) (tstamp 24010e4e-68fb-4a51-89b5-fc30a2fa4096)) (segment (start 77.375 60.4) (end 80.45 60.4) (width 0.2) (layer "F.Cu") (net 114) (tstamp 7034d494-4b3c-48ca-a07e-af4750b3e29b)) (segment (start 80.45 60.4) (end 81.25 61.2) (width 0.2) (layer "F.Cu") (net 114) (tstamp b6d07cf6-285a-4a4c-bf97-211fbc7a8b23)) (segment (start 77.3625 62.2375) (end 77.3625 60.4125) (width 0.2) (layer "F.Cu") (net 114) (tstamp dc3c9c8b-a731-43ce-b7a9-32aa24c733b2)) (segment (start 80.289519 56.739519) (end 81.25 57.7) (width 0.2) (layer "B.Cu") (net 114) (tstamp 2392077a-d16e-466f-a880-5864c22d025f)) (segment (start 59.69 93.31) (end 59.79952 93.20048) (width 0.2) (layer "B.Cu") (net 114) (tstamp 34afe4c3-63e7-4a5e-aac6-3f02705386e9)) (segment (start 59.79952 62.365848) (end 65.425849 56.739519) (width 0.2) (layer "B.Cu") (net 114) (tstamp 46ac90ad-c718-4d28-b31c-77de34d32568)) (segment (start 59.79952 93.20048) (end 59.79952 62.365848) (width 0.2) (layer "B.Cu") (net 114) (tstamp 49480368-2833-4675-9a53-dacb9a1a849a)) (segment (start 81.25 57.7) (end 81.25 61.2) (width 0.2) (layer "B.Cu") (net 114) (tstamp 984e30b1-fb42-4962-ab7b-3b413ef0f73b)) (segment (start 65.425849 56.739519) (end 80.289519 56.739519) (width 0.2) (layer "B.Cu") (net 114) (tstamp 98634d3b-355d-4352-b8c9-a43560631577)) (segment (start 90.85 62.8) (end 89.85 61.8) (width 0.2) (layer "F.Cu") (net 115) (tstamp 04a2ff9a-9cc3-4bc2-90ea-df716a6bb9a8)) (segment (start 93.75 59.75) (end 93.75 62.35) (width 0.2) (layer "F.Cu") (net 115) (tstamp 26ec95e5-74d6-41db-aaac-cf2fc6f05a41)) (segment (start 96.4125 58.8875) (end 94.6125 58.8875) (width 0.2) (layer "F.Cu") (net 115) (tstamp 303b0b54-1069-46de-baec-e5b8248bc73c)) (segment (start 93.75 62.35) (end 93.3 62.8) (width 0.2) (layer "F.Cu") (net 115) (tstamp 40f560a2-41aa-471e-afc0-1387a320dc97)) (segment (start 96.8625 62.5375) (end 97.27548 62.12452) (width 0.2) (layer "F.Cu") (net 115) (tstamp 710d56ab-f2e7-45a5-954c-de5ddba04aac)) (segment (start 97.27548 59.27548) (end 96.8875 58.8875) (width 0.2) (layer "F.Cu") (net 115) (tstamp 7a4677e7-d15e-491c-b60c-cc3a5a2397eb)) (segment (start 94.6125 58.8875) (end 93.75 59.75) (width 0.2) (layer "F.Cu") (net 115) (tstamp 8433059d-dd14-46ac-987f-0325dfea24ee)) (segment (start 96.8875 58.8875) (end 96.4125 58.8875) (width 0.2) (layer "F.Cu") (net 115) (tstamp 8af1553e-b126-413f-8f4d-0207c20e2775)) (segment (start 93.3 62.8) (end 90.85 62.8) (width 0.2) (layer "F.Cu") (net 115) (tstamp c4ce76ab-ce2d-4ed5-b7ed-7b162bdb10e9)) (segment (start 89.85 61.8) (end 89.85 61.225) (width 0.2) (layer "F.Cu") (net 115) (tstamp d9a348bd-712b-46d6-bc8a-e222c1dc52d6)) (segment (start 97.27548 62.12452) (end 97.27548 59.27548) (width 0.2) (layer "F.Cu") (net 115) (tstamp ebbf3bd3-707e-47f4-93e6-9c158b32e418)) (segment (start 96.4125 62.5375) (end 96.8625 62.5375) (width 0.2) (layer "F.Cu") (net 115) (tstamp fab553ed-efd7-4c79-b9c8-fb88c3ab4e1a)) (segment (start 65.260363 56.339999) (end 65.591336 56.34) (width 0.2) (layer "B.Cu") (net 115) (tstamp 6a86703f-8816-4f9b-a381-a4ccb68086d3)) (segment (start 54.61 93.31) (end 54.61 92.215) (width 0.2) (layer "B.Cu") (net 115) (tstamp 88c99b49-017b-4dd0-8d1c-ac31adb07ecb)) (segment (start 59.4 91.425) (end 59.400001 62.200361) (width 0.2) (layer "B.Cu") (net 115) (tstamp 9c6f15f0-42e3-40fe-a27d-4a05691b75d4)) (segment (start 54.61 92.215) (end 54.975 91.85) (width 0.2) (layer "B.Cu") (net 115) (tstamp 9d250ae4-b6fd-4bda-a284-e96cc56f3c87)) (segment (start 89.85 57.25) (end 89.85 61.225) (width 0.2) (layer "B.Cu") (net 115) (tstamp b4d81bf1-f697-42d3-9701-936383a17adc)) (segment (start 58.975 91.85) (end 59.4 91.425) (width 0.2) (layer "B.Cu") (net 115) (tstamp cbafeebc-edb6-401a-ae59-8fe1a1809bdb)) (segment (start 54.975 91.85) (end 58.975 91.85) (width 0.2) (layer "B.Cu") (net 115) (tstamp d547c338-5e81-474f-9486-a1400cb8bfd5)) (segment (start 59.400001 62.200361) (end 65.260363 56.339999) (width 0.2) (layer "B.Cu") (net 115) (tstamp e06639ef-ebae-467f-b087-c730146afb06)) (segment (start 88.94 56.34) (end 89.85 57.25) (width 0.2) (layer "B.Cu") (net 115) (tstamp f9cbfaaf-0bd2-473e-87d8-b33083297ae3)) (segment (start 65.591336 56.34) (end 88.94 56.34) (width 0.2) (layer "B.Cu") (net 115) (tstamp fc544381-7a24-471e-9fd5-2da1ed1666f2)) (segment (start 79.9375 66.6375) (end 77.3625 64.0625) (width 0.2) (layer "F.Cu") (net 116) (tstamp b55292f4-3591-4cb2-a0f0-4db00a7f0922)) (segment (start 77.85 63.15) (end 76.8 63.15) (width 0.2) (layer "F.Cu") (net 117) (tstamp 3fbd979a-1320-42b0-8fec-87e14a1086de)) (segment (start 79.415006 65.55) (end 78.25 64.384994) (width 0.2) (layer "F.Cu") (net 117) (tstamp 4a95ca05-0b23-4562-97a7-e317655f984c)) (segment (start 84.3625 67.05) (end 84.3625 66.6125) (width 0.2) (layer "F.Cu") (net 117) (tstamp 4ce5ceaf-9bf7-4277-a16d-8d9fca7e33e3)) (segment (start 83.3 65.55) (end 79.415006 65.55) (width 0.2) (layer "F.Cu") (net 117) (tstamp 776dc264-fc36-4044-9ec0-c2e9fdf0a282)) (segment (start 76.5 62.85) (end 76.5 59.45) (width 0.2) (layer "F.Cu") (net 117) (tstamp 77ab687d-33e7-450e-b8ef-c0051f6374db)) (segment (start 78.25 63.55) (end 77.85 63.15) (width 0.2) (layer "F.Cu") (net 117) (tstamp 81aa086d-28c8-4ff9-b4aa-065f9728f252)) (segment (start 78.25 64.384994) (end 78.25 63.55) (width 0.2) (layer "F.Cu") (net 117) (tstamp cc01c2b3-e6fb-4381-b083-b26a4883686f)) (segment (start 76.5 59.45) (end 77.3625 58.5875) (width 0.2) (layer "F.Cu") (net 117) (tstamp d6b8a600-2564-4fe1-bc06-d791dd191bc1)) (segment (start 84.3625 66.6125) (end 83.3 65.55) (width 0.2) (layer "F.Cu") (net 117) (tstamp d8f15303-bfcf-4a5a-bbd0-15fab21fcbb6)) (segment (start 76.8 63.15) (end 76.5 62.85) (width 0.2) (layer "F.Cu") (net 117) (tstamp f3fa5b4f-1227-4ba4-9ff8-8ad8807dbf47)) (segment (start 95.3 65.7) (end 90.15 65.7) (width 0.2) (layer "F.Cu") (net 118) (tstamp 2df8ac62-ecda-4009-be4c-2b1ae2cbda03)) (segment (start 95.6 65.4) (end 95.3 65.7) (width 0.2) (layer "F.Cu") (net 118) (tstamp d50c7cda-b2cc-47f4-99e4-88310e80a5cd)) (segment (start 95.6 61.525) (end 95.6 65.4) (width 0.2) (layer "F.Cu") (net 118) (tstamp dcf16ea5-68e4-4c1a-bdcc-86d4b4041453)) (segment (start 90.15 65.7) (end 88.8 67.05) (width 0.2) (layer "F.Cu") (net 118) (tstamp e0f7fec4-f874-4b47-8326-6decafa54b0f)) (segment (start 96.4125 60.7125) (end 95.6 61.525) (width 0.2) (layer "F.Cu") (net 118) (tstamp f4ae3b36-f146-4ac8-acb0-9342b197b8dd)) (segment (start 96.4125 65.2375) (end 94.6 67.05) (width 0.2) (layer "F.Cu") (net 119) (tstamp 562b2a54-b803-4c1b-8343-a066a71467b8)) (segment (start 94.6 67.05) (end 93.88 67.05) (width 0.2) (layer "F.Cu") (net 119) (tstamp 8c2824a1-f83e-4754-96ef-2beacca2be56)) (segment (start 96.4125 65.2375) (end 96.4125 64.3625) (width 0.2) (layer "F.Cu") (net 119) (tstamp f21d6fea-70e0-4161-96e3-d34c7c9dcae9)) (zone (net 2) (net_name "GND") (layer "F.Cu") (tstamp c01f5cc6-0083-48e0-9be7-a9d472f38092) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 7)) (polygon (pts (xy 172.5 135.5) (xy 37.5 135.5) (xy 37.5 54) (xy 172.5 54) ) ) (filled_polygon (layer "F.Cu") (pts (xy 167.470018 54.51) (xy 167.484851 54.51231) (xy 167.484855 54.51231) (xy 167.493724 54.513691) (xy 167.514183 54.511016) (xy 167.536007 54.510072) (xy 167.885965 54.525352) (xy 167.896913 54.52631) (xy 168.274498 54.576019) (xy 168.285307 54.577926) (xy 168.657114 54.660353) (xy 168.667731 54.663198) (xy 169.030939 54.777718) (xy 169.041254 54.781471) (xy 169.393123 54.92722) (xy 169.403067 54.931858) (xy 169.740867 55.107705) (xy 169.750387 55.113201) (xy 170.071574 55.31782) (xy 170.080578 55.324124) (xy 170.382716 55.555962) (xy 170.391137 55.563028) (xy 170.671914 55.820314) (xy 170.679686 55.828086) (xy 170.936972 56.108863) (xy 170.944038 56.117284) (xy 171.175876 56.419422) (xy 171.18218 56.428426) (xy 171.386799 56.749613) (xy 171.392295 56.759133) (xy 171.568138 57.096924) (xy 171.57278 57.106877) (xy 171.711394 57.441522) (xy 171.718526 57.458739) (xy 171.722282 57.469061) (xy 171.836802 57.832268) (xy 171.839647 57.842885) (xy 171.921591 58.21251) (xy 171.922073 58.214685) (xy 171.923981 58.225502) (xy 171.955826 58.467396) (xy 171.97369 58.603086) (xy 171.974648 58.614035) (xy 171.985903 58.8718) (xy 171.989603 58.956552) (xy 171.988223 58.981429) (xy 171.986309 58.993724) (xy 171.987473 59.002626) (xy 171.987473 59.002628) (xy 171.990436 59.025283) (xy 171.9915 59.041621) (xy 171.9915 130.450633) (xy 171.99 130.470018) (xy 171.98769 130.484851) (xy 171.98769 130.484855) (xy 171.986309 130.493724) (xy 171.988984 130.514183) (xy 171.989928 130.536007) (xy 171.975122 130.875117) (xy 171.974648 130.885964) (xy 171.97369 130.896913) (xy 171.938192 131.166555) (xy 171.923982 131.27449) (xy 171.922074 131.285307) (xy 171.84753 131.621556) (xy 171.839647 131.657114) (xy 171.836802 131.667731) (xy 171.723684 132.026496) (xy 171.722285 132.030932) (xy 171.718529 132.041254) (xy 171.578861 132.378444) (xy 171.572784 132.393114) (xy 171.568142 132.403067) (xy 171.43852 132.652069) (xy 171.392295 132.740867) (xy 171.386799 132.750387) (xy 171.18218 133.071574) (xy 171.175876 133.080578) (xy 170.944038 133.382716) (xy 170.936972 133.391137) (xy 170.679686 133.671914) (xy 170.671914 133.679686) (xy 170.391137 133.936972) (xy 170.382716 133.944038) (xy 170.080578 134.175876) (xy 170.071574 134.18218) (xy 169.776496 134.370166) (xy 169.750387 134.386799) (xy 169.740868 134.392294) (xy 169.403067 134.568142) (xy 169.393123 134.57278) (xy 169.041254 134.718529) (xy 169.030939 134.722282) (xy 168.667732 134.836802) (xy 168.657115 134.839647) (xy 168.285307 134.922074) (xy 168.274498 134.923981) (xy 167.896914 134.97369) (xy 167.885965 134.974648) (xy 167.543446 134.989603) (xy 167.518571 134.988223) (xy 167.506276 134.986309) (xy 167.497374 134.987473) (xy 167.497372 134.987473) (xy 167.482323 134.989441) (xy 167.474714 134.990436) (xy 167.458379 134.9915) (xy 42.549367 134.9915) (xy 42.529982 134.99) (xy 42.515149 134.98769) (xy 42.515145 134.98769) (xy 42.506276 134.986309) (xy 42.485817 134.988984) (xy 42.463993 134.989928) (xy 42.114035 134.974648) (xy 42.103086 134.97369) (xy 41.725502 134.923981) (xy 41.714693 134.922074) (xy 41.342885 134.839647) (xy 41.332268 134.836802) (xy 40.969061 134.722282) (xy 40.958746 134.718529) (xy 40.606877 134.57278) (xy 40.596933 134.568142) (xy 40.259132 134.392294) (xy 40.249613 134.386799) (xy 40.223505 134.370166) (xy 39.928426 134.18218) (xy 39.919422 134.175876) (xy 39.617284 133.944038) (xy 39.608863 133.936972) (xy 39.328086 133.679686) (xy 39.320314 133.671914) (xy 39.063028 133.391137) (xy 39.055962 133.382716) (xy 38.824124 133.080578) (xy 38.81782 133.071574) (xy 38.613201 132.750387) (xy 38.607705 132.740867) (xy 38.56148 132.652069) (xy 38.431858 132.403067) (xy 38.427216 132.393114) (xy 38.42114 132.378444) (xy 38.281471 132.041254) (xy 38.277715 132.030932) (xy 38.276317 132.026496) (xy 38.163198 131.667731) (xy 38.160353 131.657114) (xy 38.15247 131.621556) (xy 38.077926 131.285307) (xy 38.076018 131.27449) (xy 38.061809 131.166555) (xy 38.02631 130.896913) (xy 38.025352 130.885964) (xy 38.024878 130.875117) (xy 38.010561 130.547206) (xy 38.012188 130.520805) (xy 38.012769 130.517352) (xy 38.01277 130.517345) (xy 38.013576 130.512552) (xy 38.013729 130.5) (xy 38.009773 130.472376) (xy 38.0085 130.454514) (xy 38.0085 124.994681) (xy 42.492 124.994681) (xy 42.492077 124.997733) (xy 42.493233 125.006945) (xy 42.530162 125.190091) (xy 42.533752 125.201833) (xy 42.604978 125.372943) (xy 42.610778 125.383759) (xy 42.713885 125.537779) (xy 42.721678 125.547266) (xy 42.852734 125.678322) (xy 42.862221 125.686115) (xy 43.016241 125.789222) (xy 43.027057 125.795022) (xy 43.198167 125.866248) (xy 43.209909 125.869838) (xy 43.393055 125.906767) (xy 43.402267 125.907923) (xy 43.405319 125.908) (xy 44.227885 125.908) (xy 44.243124 125.903525) (xy 44.244329 125.902135) (xy 44.246 125.894452) (xy 44.246 125.889885) (xy 44.754 125.889885) (xy 44.758475 125.905124) (xy 44.759865 125.906329) (xy 44.767548 125.908) (xy 45.435794 125.908) (xy 45.44568 125.908388) (xy 45.49507 125.912275) (xy 45.50493 125.912275) (xy 45.55432 125.908388) (xy 45.564206 125.908) (xy 45.594681 125.908) (xy 45.597733 125.907923) (xy 45.606946 125.906767) (xy 45.620001 125.904135) (xy 45.635015 125.902038) (xy 45.731699 125.894428) (xy 45.741446 125.892885) (xy 45.962627 125.839783) (xy 45.972012 125.836734) (xy 46.182163 125.749687) (xy 46.190958 125.745205) (xy 46.358445 125.642568) (xy 46.3674 125.63267) (xy 51.13216 125.63267) (xy 51.137887 125.64032) (xy 51.309042 125.745205) (xy 51.317837 125.749687) (xy 51.527988 125.836734) (xy 51.537373 125.839783) (xy 51.758554 125.892885) (xy 51.768301 125.894428) (xy 51.864985 125.902038) (xy 51.879999 125.904135) (xy 51.893054 125.906767) (xy 51.902267 125.907923) (xy 51.905319 125.908) (xy 51.935794 125.908) (xy 51.94568 125.908388) (xy 51.99507 125.912275) (xy 52.00493 125.912275) (xy 52.05432 125.908388) (xy 52.064206 125.908) (xy 52.727885 125.908) (xy 52.743124 125.903525) (xy 52.744329 125.902135) (xy 52.746 125.894452) (xy 52.746 125.523325) (xy 52.73847 125.49768) (xy 52.562283 125.321493) (xy 53.252505 125.321493) (xy 53.256157 125.321886) (xy 53.254 125.341952) (xy 53.254 125.889885) (xy 53.258475 125.905124) (xy 53.259865 125.906329) (xy 53.267548 125.908) (xy 54.094681 125.908) (xy 54.097733 125.907923) (xy 54.106945 125.906767) (xy 54.290091 125.869838) (xy 54.301833 125.866248) (xy 54.472943 125.795022) (xy 54.483759 125.789222) (xy 54.637779 125.686115) (xy 54.647266 125.678322) (xy 54.778322 125.547266) (xy 54.786115 125.537779) (xy 54.889222 125.383759) (xy 54.895022 125.372943) (xy 54.966248 125.201833) (xy 54.969838 125.190091) (xy 55.006767 125.006945) (xy 55.007923 124.997733) (xy 55.008 124.994681) (xy 55.008 124.672115) (xy 55.003525 124.656876) (xy 55.002135 124.655671) (xy 54.994452 124.654) (xy 53.272115 124.654) (xy 53.256876 124.658475) (xy 53.255671 124.659865) (xy 53.254 124.667548) (xy 53.254 125.29479) (xy 53.252505 125.29479) (xy 53.252505 125.321493) (xy 52.562283 125.321493) (xy 52.012812 124.772022) (xy 51.998868 124.764408) (xy 51.997035 124.764539) (xy 51.99042 124.76879) (xy 51.13892 125.62029) (xy 51.13216 125.63267) (xy 46.3674 125.63267) (xy 46.367907 125.63211) (xy 46.364124 125.623334) (xy 45.512812 124.772022) (xy 45.498868 124.764408) (xy 45.497035 124.764539) (xy 45.49042 124.76879) (xy 44.766812 125.492398) (xy 44.754 125.51586) (xy 44.754 125.889885) (xy 44.246 125.889885) (xy 44.246 125.335202) (xy 44.247495 125.335202) (xy 44.247495 125.308499) (xy 44.243843 125.308106) (xy 44.246 125.28804) (xy 44.246 124.768675) (xy 44.754 124.768675) (xy 44.757237 124.7797) (xy 44.764328 124.776462) (xy 45.127978 124.412812) (xy 45.134356 124.401132) (xy 45.864408 124.401132) (xy 45.864539 124.402965) (xy 45.86879 124.40958) (xy 46.72029 125.26108) (xy 46.73267 125.26784) (xy 46.74032 125.262113) (xy 46.845205 125.090958) (xy 46.849687 125.082163) (xy 46.936734 124.872012) (xy 46.939783 124.862627) (xy 46.992885 124.641446) (xy 46.994428 124.631699) (xy 47.012275 124.40493) (xy 50.487725 124.40493) (xy 50.505572 124.631699) (xy 50.507115 124.641446) (xy 50.560217 124.862627) (xy 50.563266 124.872012) (xy 50.650313 125.082163) (xy 50.654795 125.090958) (xy 50.757432 125.258445) (xy 50.76789 125.267907) (xy 50.776666 125.264124) (xy 51.627978 124.412812) (xy 51.634356 124.401132) (xy 52.364408 124.401132) (xy 52.364539 124.402965) (xy 52.36879 124.40958) (xy 52.733188 124.773978) (xy 52.743277 124.779487) (xy 52.746 124.772186) (xy 52.746 124.031325) (xy 52.742763 124.0203) (xy 52.735672 124.023538) (xy 52.372022 124.387188) (xy 52.364408 124.401132) (xy 51.634356 124.401132) (xy 51.635592 124.398868) (xy 51.635461 124.397035) (xy 51.63121 124.39042) (xy 50.77971 123.53892) (xy 50.76733 123.53216) (xy 50.75968 123.537887) (xy 50.654795 123.709042) (xy 50.650313 123.717837) (xy 50.563266 123.927988) (xy 50.560217 123.937373) (xy 50.507115 124.158554) (xy 50.505572 124.168301) (xy 50.487725 124.39507) (xy 50.487725 124.40493) (xy 47.012275 124.40493) (xy 47.012275 124.39507) (xy 46.994428 124.168301) (xy 46.992885 124.158554) (xy 46.939783 123.937373) (xy 46.936734 123.927988) (xy 46.849687 123.717837) (xy 46.845205 123.709042) (xy 46.742568 123.541555) (xy 46.73211 123.532093) (xy 46.723334 123.535876) (xy 45.872022 124.387188) (xy 45.864408 124.401132) (xy 45.134356 124.401132) (xy 45.135592 124.398868) (xy 45.135461 124.397035) (xy 45.13121 124.39042) (xy 44.766812 124.026022) (xy 44.756723 124.020513) (xy 44.754 124.027814) (xy 44.754 124.768675) (xy 44.246 124.768675) (xy 44.246 124.672115) (xy 44.241525 124.656876) (xy 44.240135 124.655671) (xy 44.232452 124.654) (xy 42.510115 124.654) (xy 42.494876 124.658475) (xy 42.493671 124.659865) (xy 42.492 124.667548) (xy 42.492 124.994681) (xy 38.0085 124.994681) (xy 38.0085 124.127885) (xy 42.492 124.127885) (xy 42.496475 124.143124) (xy 42.497865 124.144329) (xy 42.505548 124.146) (xy 44.227885 124.146) (xy 44.243124 124.141525) (xy 44.244329 124.140135) (xy 44.246 124.132452) (xy 44.246 123.50521) (xy 44.247495 123.50521) (xy 44.247495 123.478507) (xy 44.243843 123.478114) (xy 44.246 123.458048) (xy 44.246 123.276675) (xy 44.754 123.276675) (xy 44.76153 123.30232) (xy 45.487188 124.027978) (xy 45.501132 124.035592) (xy 45.502965 124.035461) (xy 45.50958 124.03121) (xy 46.36108 123.17971) (xy 46.367534 123.16789) (xy 51.132093 123.16789) (xy 51.135876 123.176666) (xy 51.987188 124.027978) (xy 52.001132 124.035592) (xy 52.002965 124.035461) (xy 52.00958 124.03121) (xy 52.549289 123.491501) (xy 53.252505 123.491501) (xy 53.256157 123.491894) (xy 53.254 123.51196) (xy 53.254 124.127885) (xy 53.258475 124.143124) (xy 53.259865 124.144329) (xy 53.267548 124.146) (xy 54.989885 124.146) (xy 55.005124 124.141525) (xy 55.006329 124.140135) (xy 55.008 124.132452) (xy 55.008 123.805319) (xy 55.007923 123.802267) (xy 55.006767 123.793055) (xy 54.969838 123.609909) (xy 54.966248 123.598167) (xy 54.895022 123.427057) (xy 54.889222 123.416241) (xy 54.786115 123.262221) (xy 54.778322 123.252734) (xy 54.647266 123.121678) (xy 54.637779 123.113885) (xy 54.483759 123.010778) (xy 54.472943 123.004978) (xy 54.301833 122.933752) (xy 54.290091 122.930162) (xy 54.106945 122.893233) (xy 54.097733 122.892077) (xy 54.094681 122.892) (xy 53.272115 122.892) (xy 53.256876 122.896475) (xy 53.255671 122.897865) (xy 53.254 122.905548) (xy 53.254 123.464798) (xy 53.252505 123.464798) (xy 53.252505 123.491501) (xy 52.549289 123.491501) (xy 52.733188 123.307602) (xy 52.746 123.28414) (xy 52.746 122.910115) (xy 52.741525 122.894876) (xy 52.740135 122.893671) (xy 52.732452 122.892) (xy 52.064206 122.892) (xy 52.05432 122.891612) (xy 52.00493 122.887725) (xy 51.99507 122.887725) (xy 51.94568 122.891612) (xy 51.935794 122.892) (xy 51.905319 122.892) (xy 51.902267 122.892077) (xy 51.893054 122.893233) (xy 51.879999 122.895865) (xy 51.864985 122.897962) (xy 51.768301 122.905572) (xy 51.758554 122.907115) (xy 51.537373 122.960217) (xy 51.527988 122.963266) (xy 51.317837 123.050313) (xy 51.309042 123.054795) (xy 51.141555 123.157432) (xy 51.132093 123.16789) (xy 46.367534 123.16789) (xy 46.36784 123.16733) (xy 46.362113 123.15968) (xy 46.190958 123.054795) (xy 46.182163 123.050313) (xy 45.972012 122.963266) (xy 45.962627 122.960217) (xy 45.741446 122.907115) (xy 45.731699 122.905572) (xy 45.635015 122.897962) (xy 45.620001 122.895865) (xy 45.606946 122.893233) (xy 45.597733 122.892077) (xy 45.594681 122.892) (xy 45.564206 122.892) (xy 45.55432 122.891612) (xy 45.50493 122.887725) (xy 45.49507 122.887725) (xy 45.44568 122.891612) (xy 45.435794 122.892) (xy 44.772115 122.892) (xy 44.756876 122.896475) (xy 44.755671 122.897865) (xy 44.754 122.905548) (xy 44.754 123.276675) (xy 44.246 123.276675) (xy 44.246 122.910115) (xy 44.241525 122.894876) (xy 44.240135 122.893671) (xy 44.232452 122.892) (xy 43.405319 122.892) (xy 43.402267 122.892077) (xy 43.393055 122.893233) (xy 43.209909 122.930162) (xy 43.198167 122.933752) (xy 43.027057 123.004978) (xy 43.016241 123.010778) (xy 42.862221 123.113885) (xy 42.852734 123.121678) (xy 42.721678 123.252734) (xy 42.713885 123.262221) (xy 42.610778 123.416241) (xy 42.604978 123.427057) (xy 42.533752 123.598167) (xy 42.530162 123.609909) (xy 42.493233 123.793055) (xy 42.492077 123.802267) (xy 42.492 123.805319) (xy 42.492 124.127885) (xy 38.0085 124.127885) (xy 38.0085 120.496328) (xy 42.4915 120.496328) (xy 42.491808 120.502408) (xy 42.492733 120.506995) (xy 42.492733 120.506996) (xy 42.528075 120.682271) (xy 42.5309 120.696284) (xy 42.606905 120.878873) (xy 42.610332 120.883992) (xy 42.610334 120.883996) (xy 42.713496 121.038099) (xy 42.7135 121.038104) (xy 42.716927 121.043223) (xy 42.856777 121.183073) (xy 42.861896 121.1865) (xy 42.861901 121.186504) (xy 43.016004 121.289666) (xy 43.016008 121.289668) (xy 43.021127 121.293095) (xy 43.203716 121.3691) (xy 43.209752 121.370317) (xy 43.209755 121.370318) (xy 43.369531 121.402534) (xy 43.397592 121.408192) (xy 43.403672 121.4085) (xy 45.435771 121.4085) (xy 45.445657 121.408888) (xy 45.5 121.413165) (xy 45.554343 121.408888) (xy 45.564229 121.4085) (xy 45.596328 121.4085) (xy 45.602408 121.408192) (xy 45.606996 121.407267) (xy 45.620071 121.404631) (xy 45.635084 121.402534) (xy 45.694609 121.397849) (xy 45.736711 121.394535) (xy 45.741518 121.393381) (xy 45.741524 121.39338) (xy 45.887391 121.35836) (xy 45.967594 121.339105) (xy 45.972167 121.337211) (xy 46.182389 121.250135) (xy 46.182393 121.250133) (xy 46.186963 121.24824) (xy 46.223365 121.225933) (xy 46.385202 121.126759) (xy 46.385208 121.126755) (xy 46.389416 121.124176) (xy 46.569969 120.969969) (xy 46.575855 120.963078) (xy 46.608557 120.924788) (xy 46.724176 120.789416) (xy 46.726755 120.785208) (xy 46.726759 120.785202) (xy 46.845654 120.591183) (xy 46.84824 120.586963) (xy 46.851057 120.580164) (xy 46.879588 120.511282) (xy 46.924136 120.456001) (xy 46.995997 120.4335) (xy 50.504003 120.4335) (xy 50.572124 120.453502) (xy 50.620412 120.511282) (xy 50.648944 120.580164) (xy 50.65176 120.586963) (xy 50.654346 120.591183) (xy 50.773241 120.785202) (xy 50.773245 120.785208) (xy 50.775824 120.789416) (xy 50.891443 120.924788) (xy 50.924146 120.963078) (xy 50.930031 120.969969) (xy 51.110584 121.124176) (xy 51.114792 121.126755) (xy 51.114798 121.126759) (xy 51.276635 121.225933) (xy 51.313037 121.24824) (xy 51.317607 121.250133) (xy 51.317611 121.250135) (xy 51.527833 121.337211) (xy 51.532406 121.339105) (xy 51.612609 121.35836) (xy 51.758476 121.39338) (xy 51.758482 121.393381) (xy 51.763289 121.394535) (xy 51.805391 121.397849) (xy 51.864916 121.402534) (xy 51.879929 121.404631) (xy 51.893004 121.407267) (xy 51.897592 121.408192) (xy 51.903672 121.4085) (xy 51.935771 121.4085) (xy 51.945657 121.408888) (xy 52 121.413165) (xy 52.054343 121.408888) (xy 52.064229 121.4085) (xy 54.096328 121.4085) (xy 54.102408 121.408192) (xy 54.130469 121.402534) (xy 54.290245 121.370318) (xy 54.290248 121.370317) (xy 54.296284 121.3691) (xy 54.478873 121.293095) (xy 54.483992 121.289668) (xy 54.483996 121.289666) (xy 54.638099 121.186504) (xy 54.638104 121.1865) (xy 54.643223 121.183073) (xy 54.783073 121.043223) (xy 54.808715 121.004919) (xy 54.863232 120.959439) (xy 54.933683 120.950653) (xy 55.002514 120.985918) (xy 55.379595 121.362999) (xy 55.413621 121.425311) (xy 55.4165 121.452094) (xy 55.4165 121.787072) (xy 55.416837 121.790318) (xy 55.416837 121.790322) (xy 55.426204 121.880593) (xy 55.427293 121.891093) (xy 55.429474 121.897629) (xy 55.429474 121.897631) (xy 55.459294 121.987013) (xy 55.482346 122.056107) (xy 55.573884 122.204031) (xy 55.579066 122.209204) (xy 55.680786 122.310747) (xy 55.714865 122.37303) (xy 55.709862 122.44385) (xy 55.680941 122.488937) (xy 55.578246 122.591812) (xy 55.578242 122.591817) (xy 55.573071 122.596997) (xy 55.569231 122.603227) (xy 55.56923 122.603228) (xy 55.485708 122.738726) (xy 55.481791 122.74508) (xy 55.427026 122.910191) (xy 55.426326 122.917027) (xy 55.426325 122.91703) (xy 55.421588 122.963266) (xy 55.4165 123.012928) (xy 55.4165 123.612072) (xy 55.416837 123.615318) (xy 55.416837 123.615322) (xy 55.426337 123.706876) (xy 55.427293 123.716093) (xy 55.482346 123.881107) (xy 55.573884 124.029031) (xy 55.579066 124.034204) (xy 55.691816 124.146758) (xy 55.691821 124.146762) (xy 55.696997 124.151929) (xy 55.703227 124.155769) (xy 55.703228 124.15577) (xy 55.83419 124.236496) (xy 55.84508 124.243209) (xy 56.010191 124.297974) (xy 56.017027 124.298674) (xy 56.01703 124.298675) (xy 56.067943 124.303891) (xy 56.112928 124.3085) (xy 56.687072 124.3085) (xy 56.690318 124.308163) (xy 56.690322 124.308163) (xy 56.784235 124.298419) (xy 56.784239 124.298418) (xy 56.791093 124.297707) (xy 56.797629 124.295526) (xy 56.797631 124.295526) (xy 56.946686 124.245797) (xy 56.956107 124.242654) (xy 57.104031 124.151116) (xy 57.112321 124.142812) (xy 57.17964 124.075375) (xy 57.226929 124.028003) (xy 57.231546 124.020513) (xy 57.240564 124.005884) (xy 57.293336 123.958391) (xy 57.347824 123.946) (xy 57.70491 123.946) (xy 57.773031 123.966002) (xy 57.786256 123.9761) (xy 57.788747 123.978866) (xy 57.794089 123.982747) (xy 57.794091 123.982749) (xy 57.937679 124.087072) (xy 57.943248 124.091118) (xy 57.949276 124.093802) (xy 57.949278 124.093803) (xy 58.111681 124.166109) (xy 58.117712 124.168794) (xy 58.211112 124.188647) (xy 58.298056 124.207128) (xy 58.298061 124.207128) (xy 58.304513 124.2085) (xy 58.495487 124.2085) (xy 58.501939 124.207128) (xy 58.501944 124.207128) (xy 58.588888 124.188647) (xy 58.682288 124.168794) (xy 58.688319 124.166109) (xy 58.850722 124.093803) (xy 58.850724 124.093802) (xy 58.856752 124.091118) (xy 58.863611 124.086135) (xy 58.913607 124.04981) (xy 59.011253 123.978866) (xy 59.018293 123.971047) (xy 59.134621 123.841852) (xy 59.134622 123.841851) (xy 59.13904 123.836944) (xy 59.207807 123.717837) (xy 59.231223 123.677279) (xy 59.231224 123.677278) (xy 59.234527 123.671556) (xy 59.293542 123.489928) (xy 59.29467 123.479202) (xy 59.312814 123.306565) (xy 59.313504 123.3) (xy 59.306118 123.229728) (xy 59.294232 123.116635) (xy 59.294232 123.116633) (xy 59.293542 123.110072) (xy 59.234527 122.928444) (xy 59.225492 122.912794) (xy 59.195234 122.860387) (xy 59.13904 122.763056) (xy 59.129111 122.752028) (xy 59.015675 122.626045) (xy 59.015674 122.626044) (xy 59.011253 122.621134) (xy 58.898158 122.538965) (xy 58.862094 122.512763) (xy 58.862093 122.512762) (xy 58.856752 122.508882) (xy 58.850724 122.506198) (xy 58.850722 122.506197) (xy 58.688319 122.433891) (xy 58.688318 122.433891) (xy 58.682288 122.431206) (xy 58.575696 122.408549) (xy 58.501944 122.392872) (xy 58.501939 122.392872) (xy 58.495487 122.3915) (xy 58.304513 122.3915) (xy 58.298061 122.392872) (xy 58.298056 122.392872) (xy 58.224304 122.408549) (xy 58.117712 122.431206) (xy 58.111682 122.433891) (xy 58.111681 122.433891) (xy 57.949278 122.506197) (xy 57.949276 122.506198) (xy 57.943248 122.508882) (xy 57.937907 122.512762) (xy 57.937906 122.512763) (xy 57.82223 122.596807) (xy 57.788747 122.621134) (xy 57.784334 122.626036) (xy 57.784332 122.626037) (xy 57.774181 122.637311) (xy 57.713734 122.67455) (xy 57.680545 122.679) (xy 57.347699 122.679) (xy 57.279578 122.658998) (xy 57.240554 122.619301) (xy 57.239288 122.617255) (xy 57.226116 122.595969) (xy 57.21643 122.5863) (xy 57.119214 122.489253) (xy 57.085135 122.42697) (xy 57.090138 122.35615) (xy 57.119059 122.311063) (xy 57.221754 122.208188) (xy 57.221758 122.208183) (xy 57.226929 122.203003) (xy 57.23077 122.196772) (xy 57.314369 122.06115) (xy 57.31437 122.061148) (xy 57.318209 122.05492) (xy 57.372974 121.889809) (xy 57.373919 121.880593) (xy 57.379703 121.82413) (xy 57.3835 121.787072) (xy 57.3835 121.187928) (xy 57.380447 121.1585) (xy 57.373419 121.090765) (xy 57.373418 121.090761) (xy 57.372707 121.083907) (xy 57.366291 121.064674) (xy 57.319972 120.925841) (xy 57.317654 120.918893) (xy 57.226116 120.770969) (xy 57.188973 120.733891) (xy 57.108184 120.653242) (xy 57.108179 120.653238) (xy 57.103003 120.648071) (xy 57.096772 120.64423) (xy 56.96115 120.560631) (xy 56.961148 120.56063) (xy 56.95492 120.556791) (xy 56.789809 120.502026) (xy 56.782973 120.501326) (xy 56.78297 120.501325) (xy 56.731474 120.496049) (xy 56.687072 120.4915) (xy 56.352095 120.4915) (xy 56.283974 120.471498) (xy 56.263 120.454595) (xy 55.216152 119.407747) (xy 55.208612 119.399461) (xy 55.2045 119.392982) (xy 55.194368 119.383467) (xy 55.154849 119.346357) (xy 55.152007 119.343602) (xy 55.13227 119.323865) (xy 55.129073 119.321385) (xy 55.120051 119.31368) (xy 55.119227 119.312906) (xy 55.087821 119.283414) (xy 55.080875 119.279595) (xy 55.080872 119.279593) (xy 55.070066 119.273652) (xy 55.053547 119.262801) (xy 55.043804 119.255244) (xy 55.043805 119.255244) (xy 55.037542 119.250387) (xy 55.037951 119.249859) (xy 54.993509 119.20226) (xy 54.982587 119.170605) (xy 54.972759 119.121862) (xy 54.9691 119.103716) (xy 54.893095 118.921127) (xy 54.889668 118.916008) (xy 54.889666 118.916004) (xy 54.786504 118.761901) (xy 54.7865 118.761896) (xy 54.783073 118.756777) (xy 54.643223 118.616927) (xy 54.638104 118.6135) (xy 54.638099 118.613496) (xy 54.483996 118.510334) (xy 54.483992 118.510332) (xy 54.478873 118.506905) (xy 54.460808 118.499385) (xy 54.447292 118.493759) (xy 54.296284 118.4309) (xy 54.290248 118.429683) (xy 54.290245 118.429682) (xy 54.106996 118.392733) (xy 54.106995 118.392733) (xy 54.102408 118.391808) (xy 54.096328 118.3915) (xy 52.064229 118.3915) (xy 52.054343 118.391112) (xy 52.00493 118.387223) (xy 52 118.386835) (xy 51.99507 118.387223) (xy 51.945657 118.391112) (xy 51.935771 118.3915) (xy 51.903672 118.3915) (xy 51.897592 118.391808) (xy 51.893005 118.392733) (xy 51.893004 118.392733) (xy 51.879929 118.395369) (xy 51.864916 118.397466) (xy 51.806399 118.402072) (xy 51.763289 118.405465) (xy 51.758482 118.406619) (xy 51.758476 118.40662) (xy 51.624659 118.438747) (xy 51.532406 118.460895) (xy 51.527835 118.462788) (xy 51.527833 118.462789) (xy 51.317611 118.549865) (xy 51.317607 118.549867) (xy 51.313037 118.55176) (xy 51.308817 118.554346) (xy 51.114798 118.673241) (xy 51.114792 118.673245) (xy 51.110584 118.675824) (xy 50.930031 118.830031) (xy 50.926823 118.833787) (xy 50.841312 118.933907) (xy 50.775824 119.010584) (xy 50.75299 119.047845) (xy 50.717147 119.106335) (xy 50.6645 119.153967) (xy 50.609715 119.1665) (xy 46.890285 119.1665) (xy 46.822164 119.146498) (xy 46.782853 119.106335) (xy 46.74701 119.047845) (xy 46.724176 119.010584) (xy 46.658688 118.933907) (xy 46.573177 118.833787) (xy 46.569969 118.830031) (xy 46.389416 118.675824) (xy 46.385208 118.673245) (xy 46.385202 118.673241) (xy 46.191183 118.554346) (xy 46.186963 118.55176) (xy 46.182393 118.549867) (xy 46.182389 118.549865) (xy 45.972167 118.462789) (xy 45.972165 118.462788) (xy 45.967594 118.460895) (xy 45.875341 118.438747) (xy 45.741524 118.40662) (xy 45.741518 118.406619) (xy 45.736711 118.405465) (xy 45.693601 118.402072) (xy 45.635084 118.397466) (xy 45.620071 118.395369) (xy 45.606996 118.392733) (xy 45.606995 118.392733) (xy 45.602408 118.391808) (xy 45.596328 118.3915) (xy 45.564229 118.3915) (xy 45.554343 118.391112) (xy 45.50493 118.387223) (xy 45.5 118.386835) (xy 45.49507 118.387223) (xy 45.445657 118.391112) (xy 45.435771 118.3915) (xy 43.403672 118.3915) (xy 43.397592 118.391808) (xy 43.393005 118.392733) (xy 43.393004 118.392733) (xy 43.209755 118.429682) (xy 43.209752 118.429683) (xy 43.203716 118.4309) (xy 43.052708 118.493759) (xy 43.039193 118.499385) (xy 43.021127 118.506905) (xy 43.016008 118.510332) (xy 43.016004 118.510334) (xy 42.861901 118.613496) (xy 42.861896 118.6135) (xy 42.856777 118.616927) (xy 42.716927 118.756777) (xy 42.7135 118.761896) (xy 42.713496 118.761901) (xy 42.610334 118.916004) (xy 42.610332 118.916008) (xy 42.606905 118.921127) (xy 42.5309 119.103716) (xy 42.529683 119.109752) (xy 42.529682 119.109755) (xy 42.495105 119.281239) (xy 42.491808 119.297592) (xy 42.4915 119.303672) (xy 42.4915 120.496328) (xy 38.0085 120.496328) (xy 38.0085 114.244053) (xy 38.028502 114.175932) (xy 38.082158 114.129439) (xy 38.152432 114.119335) (xy 38.210065 114.143227) (xy 38.255712 114.177437) (xy 38.273295 114.190615) (xy 38.409684 114.241745) (xy 38.471866 114.2485) (xy 40.268134 114.2485) (xy 40.330316 114.241745) (xy 40.466705 114.190615) (xy 40.564436 114.11737) (xy 40.630941 114.092522) (xy 40.700324 114.107575) (xy 40.715562 114.117368) (xy 40.813295 114.190615) (xy 40.949684 114.241745) (xy 41.011866 114.2485) (xy 42.808134 114.2485) (xy 42.870316 114.241745) (xy 43.006705 114.190615) (xy 43.103163 114.118324) (xy 43.104852 114.117058) (xy 43.171358 114.09221) (xy 43.240741 114.107263) (xy 43.255982 114.117058) (xy 43.346351 114.184786) (xy 43.361946 114.193324) (xy 43.482394 114.238478) (xy 43.497649 114.242105) (xy 43.548514 114.247631) (xy 43.555328 114.248) (xy 44.177885 114.248) (xy 44.193124 114.243525) (xy 44.194329 114.242135) (xy 44.196 114.234452) (xy 44.196 109.750116) (xy 44.191525 109.734877) (xy 44.190135 109.733672) (xy 44.182452 109.732001) (xy 43.555331 109.732001) (xy 43.54851 109.732371) (xy 43.497648 109.737895) (xy 43.482396 109.741521) (xy 43.361946 109.786676) (xy 43.346351 109.795214) (xy 43.255982 109.862942) (xy 43.189475 109.88779) (xy 43.120093 109.872737) (xy 43.104852 109.862942) (xy 43.049895 109.821754) (xy 43.006705 109.789385) (xy 42.965159 109.77381) (xy 42.884082 109.743415) (xy 42.827318 109.700773) (xy 42.802618 109.634211) (xy 42.817826 109.564863) (xy 42.839217 109.536338) (xy 43.93063 108.444925) (xy 43.992942 108.410899) (xy 44.019725 108.40802) (xy 50.527241 108.40802) (xy 50.595362 108.428022) (xy 50.641855 108.481678) (xy 50.651959 108.551952) (xy 50.622465 108.616532) (xy 50.616336 108.623115) (xy 49.545933 109.693518) (xy 49.483621 109.727544) (xy 49.455299 109.730414) (xy 49.440082 109.730228) (xy 49.44008 109.730228) (xy 49.434911 109.730165) (xy 49.429797 109.730948) (xy 49.426289 109.731193) (xy 49.417496 109.7315) (xy 48.631866 109.7315) (xy 48.569684 109.738255) (xy 48.433295 109.789385) (xy 48.336911 109.861621) (xy 48.335565 109.86263) (xy 48.269059 109.887478) (xy 48.199676 109.872425) (xy 48.184435 109.86263) (xy 48.183089 109.861621) (xy 48.086705 109.789385) (xy 47.950316 109.738255) (xy 47.888134 109.7315) (xy 47.004985 109.7315) (xy 47.003446 109.731491) (xy 46.900081 109.730228) (xy 46.900079 109.730228) (xy 46.894911 109.730165) (xy 46.889797 109.730948) (xy 46.886289 109.731193) (xy 46.877496 109.7315) (xy 46.091866 109.7315) (xy 46.029684 109.738255) (xy 45.893295 109.789385) (xy 45.850105 109.821754) (xy 45.795148 109.862942) (xy 45.728642 109.88779) (xy 45.659259 109.872737) (xy 45.644018 109.862942) (xy 45.553649 109.795214) (xy 45.538054 109.786676) (xy 45.417606 109.741522) (xy 45.402351 109.737895) (xy 45.351486 109.732369) (xy 45.344672 109.732) (xy 44.722115 109.732) (xy 44.706876 109.736475) (xy 44.705671 109.737865) (xy 44.704 109.745548) (xy 44.704 114.229884) (xy 44.708475 114.245123) (xy 44.709865 114.246328) (xy 44.717548 114.247999) (xy 45.344669 114.247999) (xy 45.35149 114.247629) (xy 45.402352 114.242105) (xy 45.417604 114.238479) (xy 45.538054 114.193324) (xy 45.553649 114.184786) (xy 45.644018 114.117058) (xy 45.710525 114.09221) (xy 45.779907 114.107263) (xy 45.795148 114.117058) (xy 45.796837 114.118324) (xy 45.893295 114.190615) (xy 46.029684 114.241745) (xy 46.091866 114.2485) (xy 46.35922 114.2485) (xy 46.427341 114.268502) (xy 46.459182 114.297796) (xy 46.53152 114.392069) (xy 46.531526 114.392075) (xy 46.556013 114.423987) (xy 46.562568 114.429017) (xy 46.581379 114.443452) (xy 46.59377 114.454319) (xy 46.735685 114.596234) (xy 46.746552 114.608625) (xy 46.766013 114.633987) (xy 46.772563 114.639013) (xy 46.797921 114.658471) (xy 46.797937 114.658485) (xy 46.840046 114.690796) (xy 46.893124 114.731524) (xy 47.041149 114.792838) (xy 47.049336 114.793916) (xy 47.049337 114.793916) (xy 47.060542 114.795391) (xy 47.076061 114.797434) (xy 47.160115 114.8085) (xy 47.160118 114.8085) (xy 47.160126 114.808501) (xy 47.191811 114.812672) (xy 47.2 114.81375) (xy 47.231693 114.809578) (xy 47.248136 114.8085) (xy 50.470886 114.8085) (xy 50.487329 114.809578) (xy 50.519022 114.81375) (xy 50.527211 114.812672) (xy 50.558896 114.808501) (xy 50.558906 114.8085) (xy 50.558907 114.8085) (xy 50.558923 114.808498) (xy 50.658479 114.795391) (xy 50.669686 114.793916) (xy 50.669688 114.793915) (xy 50.677873 114.792838) (xy 50.825898 114.731524) (xy 50.840248 114.720513) (xy 50.921091 114.65848) (xy 50.921097 114.658474) (xy 50.946456 114.639015) (xy 50.953009 114.633987) (xy 50.962695 114.621364) (xy 50.972474 114.608621) (xy 50.983341 114.59623) (xy 51.146234 114.433337) (xy 51.158625 114.42247) (xy 51.177437 114.408035) (xy 51.183987 114.403009) (xy 51.208474 114.371097) (xy 51.208477 114.371094) (xy 51.209317 114.37) (xy 51.216564 114.360555) (xy 51.234909 114.336648) (xy 51.292245 114.294781) (xy 51.363116 114.290559) (xy 51.425019 114.325322) (xy 51.4583 114.388035) (xy 51.459792 114.396902) (xy 51.4615 114.40988) (xy 51.4615 114.409885) (xy 51.468497 114.463026) (xy 51.470967 114.481789) (xy 51.470967 114.481791) (xy 51.474954 114.512075) (xy 51.477162 114.528851) (xy 51.538476 114.676876) (xy 51.543503 114.683427) (xy 51.543504 114.683429) (xy 51.61152 114.772069) (xy 51.611526 114.772075) (xy 51.636013 114.803987) (xy 51.642568 114.809017) (xy 51.661379 114.823452) (xy 51.67377 114.834319) (xy 60.504595 123.665144) (xy 60.538621 123.727456) (xy 60.5415 123.754239) (xy 60.5415 123.926502) (xy 60.541693 123.92895) (xy 60.541693 123.928958) (xy 60.543675 123.954134) (xy 60.544438 123.963831) (xy 60.565286 124.035592) (xy 60.588586 124.11579) (xy 60.590855 124.123601) (xy 60.625016 124.181363) (xy 60.642474 124.250177) (xy 60.619957 124.317509) (xy 60.564613 124.361978) (xy 60.516561 124.3715) (xy 59.818136 124.3715) (xy 59.801693 124.370422) (xy 59.77 124.36625) (xy 59.761811 124.367328) (xy 59.730126 124.371499) (xy 59.730117 124.3715) (xy 59.730115 124.3715) (xy 59.730109 124.371501) (xy 59.730107 124.371501) (xy 59.632426 124.384361) (xy 59.619337 124.386084) (xy 59.619336 124.386084) (xy 59.611149 124.387162) (xy 59.60352 124.390322) (xy 59.598619 124.392352) (xy 59.463124 124.448476) (xy 59.428146 124.475316) (xy 59.367937 124.521515) (xy 59.367921 124.521529) (xy 59.342566 124.540984) (xy 59.342563 124.540987) (xy 59.336013 124.546013) (xy 59.330983 124.552568) (xy 59.316548 124.571379) (xy 59.305681 124.58377) (xy 58.353766 125.535685) (xy 58.341375 125.546552) (xy 58.340123 125.547513) (xy 58.316013 125.566013) (xy 58.291526 125.597925) (xy 58.291523 125.597928) (xy 58.291517 125.597936) (xy 58.225208 125.684351) (xy 58.218476 125.693124) (xy 58.194283 125.751531) (xy 58.160906 125.832111) (xy 58.157162 125.841149) (xy 58.156085 125.849335) (xy 58.156084 125.849337) (xy 58.155492 125.853837) (xy 58.155491 125.853845) (xy 58.1415 125.960115) (xy 58.1415 125.96012) (xy 58.137568 125.989992) (xy 58.13625 126) (xy 58.139852 126.027357) (xy 58.140422 126.03169) (xy 58.1415 126.048136) (xy 58.1415 132.201864) (xy 58.140422 132.218307) (xy 58.13625 132.25) (xy 58.137328 132.258189) (xy 58.1415 132.28988) (xy 58.1415 132.289884) (xy 58.149142 132.347926) (xy 58.149142 132.347929) (xy 58.155759 132.39819) (xy 58.157162 132.408851) (xy 58.218476 132.556876) (xy 58.223503 132.563427) (xy 58.223504 132.563429) (xy 58.29152 132.652069) (xy 58.291526 132.652075) (xy 58.316013 132.683987) (xy 58.322568 132.689017) (xy 58.341379 132.703452) (xy 58.35377 132.714319) (xy 58.785685 133.146234) (xy 58.796552 133.158625) (xy 58.816013 133.183987) (xy 58.822563 133.189013) (xy 58.847921 133.208471) (xy 58.847937 133.208485) (xy 58.897305 133.246366) (xy 58.943124 133.281524) (xy 59.091149 133.342838) (xy 59.099336 133.343916) (xy 59.099337 133.343916) (xy 59.110542 133.345391) (xy 59.141738 133.349498) (xy 59.210115 133.3585) (xy 59.210118 133.3585) (xy 59.210126 133.358501) (xy 59.241811 133.362672) (xy 59.25 133.36375) (xy 59.281693 133.359578) (xy 59.298136 133.3585) (xy 61.06929 133.3585) (xy 61.137411 133.378502) (xy 61.162926 133.400189) (xy 61.168355 133.406218) (xy 61.188747 133.428866) (xy 61.19941 133.436613) (xy 61.319817 133.524094) (xy 61.343248 133.541118) (xy 61.349276 133.543802) (xy 61.349278 133.543803) (xy 61.500988 133.611348) (xy 61.517712 133.618794) (xy 61.606337 133.637632) (xy 61.698056 133.657128) (xy 61.698061 133.657128) (xy 61.704513 133.6585) (xy 61.895487 133.6585) (xy 61.901939 133.657128) (xy 61.901944 133.657128) (xy 61.993663 133.637632) (xy 62.082288 133.618794) (xy 62.099012 133.611348) (xy 62.250722 133.543803) (xy 62.250724 133.543802) (xy 62.256752 133.541118) (xy 62.280184 133.524094) (xy 62.373803 133.456075) (xy 62.411253 133.428866) (xy 62.415675 133.423955) (xy 62.534621 133.291852) (xy 62.534622 133.291851) (xy 62.53904 133.286944) (xy 62.634527 133.121556) (xy 62.693542 132.939928) (xy 62.713504 132.75) (xy 62.703212 132.652075) (xy 62.694232 132.566635) (xy 62.694232 132.566633) (xy 62.693542 132.560072) (xy 62.634527 132.378444) (xy 62.53904 132.213056) (xy 62.444898 132.1085) (xy 62.415675 132.076045) (xy 62.415674 132.076044) (xy 62.411253 132.071134) (xy 62.303488 131.992838) (xy 62.262094 131.962763) (xy 62.262093 131.962762) (xy 62.256752 131.958882) (xy 62.250724 131.956198) (xy 62.250722 131.956197) (xy 62.088319 131.883891) (xy 62.088318 131.883891) (xy 62.082288 131.881206) (xy 61.975395 131.858485) (xy 61.901944 131.842872) (xy 61.901939 131.842872) (xy 61.895487 131.8415) (xy 61.704513 131.8415) (xy 61.698061 131.842872) (xy 61.698056 131.842872) (xy 61.624605 131.858485) (xy 61.517712 131.881206) (xy 61.511682 131.883891) (xy 61.511681 131.883891) (xy 61.349278 131.956197) (xy 61.349276 131.956198) (xy 61.343248 131.958882) (xy 61.337907 131.962762) (xy 61.337906 131.962763) (xy 61.273471 132.009578) (xy 61.188747 132.071134) (xy 61.184334 132.076036) (xy 61.184332 132.076037) (xy 61.162926 132.099811) (xy 61.10248 132.13705) (xy 61.06929 132.1415) (xy 59.554239 132.1415) (xy 59.486118 132.121498) (xy 59.465144 132.104595) (xy 59.395405 132.034856) (xy 59.361379 131.972544) (xy 59.3585 131.945761) (xy 59.3585 130.325871) (xy 60.548456 130.325871) (xy 60.589107 130.46579) (xy 60.595352 130.480221) (xy 60.671911 130.609678) (xy 60.681551 130.622104) (xy 60.787896 130.728449) (xy 60.800322 130.738089) (xy 60.929779 130.814648) (xy 60.94421 130.820893) (xy 61.090065 130.863269) (xy 61.102667 130.86557) (xy 61.131084 130.867807) (xy 61.136014 130.868) (xy 61.752885 130.868) (xy 61.768124 130.863525) (xy 61.769329 130.862135) (xy 61.771 130.854452) (xy 61.771 130.332115) (xy 61.766525 130.316876) (xy 61.765135 130.315671) (xy 61.757452 130.314) (xy 60.563122 130.314) (xy 60.549591 130.317973) (xy 60.548456 130.325871) (xy 59.3585 130.325871) (xy 59.3585 126.304239) (xy 59.378502 126.236118) (xy 59.395405 126.215144) (xy 59.985144 125.625405) (xy 60.047456 125.591379) (xy 60.074239 125.5885) (xy 60.517142 125.5885) (xy 60.585263 125.608502) (xy 60.631756 125.662158) (xy 60.64186 125.732432) (xy 60.625596 125.778639) (xy 60.595352 125.829779) (xy 60.589107 125.84421) (xy 60.550061 125.978605) (xy 60.550101 125.992706) (xy 60.55737 125.996) (xy 62.153 125.996) (xy 62.221121 126.016002) (xy 62.267614 126.069658) (xy 62.279 126.122) (xy 62.279 126.378) (xy 62.258998 126.446121) (xy 62.205342 126.492614) (xy 62.153 126.504) (xy 60.563122 126.504) (xy 60.549591 126.507973) (xy 60.548456 126.515871) (xy 60.589107 126.65579) (xy 60.595352 126.670221) (xy 60.671911 126.799677) (xy 60.677871 126.80736) (xy 60.70382 126.873444) (xy 60.689922 126.943067) (xy 60.679579 126.959161) (xy 60.675547 126.963193) (xy 60.590855 127.106399) (xy 60.588644 127.11401) (xy 60.588643 127.114012) (xy 60.578755 127.148049) (xy 60.544438 127.266169) (xy 60.543934 127.272574) (xy 60.543933 127.272579) (xy 60.542043 127.296596) (xy 60.5415 127.303498) (xy 60.5415 127.736502) (xy 60.541693 127.73895) (xy 60.541693 127.738958) (xy 60.543686 127.764274) (xy 60.544438 127.773831) (xy 60.565232 127.845405) (xy 60.588586 127.92579) (xy 60.590855 127.933601) (xy 60.675547 128.076807) (xy 60.678229 128.079489) (xy 60.703502 128.143861) (xy 60.6896 128.213484) (xy 60.679428 128.229312) (xy 60.675547 128.233193) (xy 60.590855 128.376399) (xy 60.588644 128.38401) (xy 60.588643 128.384012) (xy 60.58313 128.402989) (xy 60.544438 128.536169) (xy 60.543934 128.542574) (xy 60.543933 128.542579) (xy 60.542089 128.566013) (xy 60.5415 128.573498) (xy 60.5415 129.006502) (xy 60.541693 129.00895) (xy 60.541693 129.008958) (xy 60.542644 129.021033) (xy 60.544438 129.043831) (xy 60.590855 129.203601) (xy 60.615578 129.245405) (xy 60.663794 129.326933) (xy 60.675547 129.346807) (xy 60.678487 129.349747) (xy 60.70382 129.414266) (xy 60.689921 129.483889) (xy 60.677874 129.502636) (xy 60.67191 129.510324) (xy 60.595352 129.639779) (xy 60.589107 129.65421) (xy 60.550061 129.788605) (xy 60.550101 129.802706) (xy 60.55737 129.806) (xy 62.153 129.806) (xy 62.221121 129.826002) (xy 62.267614 129.879658) (xy 62.279 129.932) (xy 62.279 130.849884) (xy 62.283475 130.865123) (xy 62.284865 130.866328) (xy 62.292548 130.867999) (xy 62.913984 130.867999) (xy 62.91892 130.867805) (xy 62.947336 130.86557) (xy 62.959931 130.86327) (xy 63.10579 130.820893) (xy 63.120225 130.814646) (xy 63.201362 130.766663) (xy 63.270178 130.749204) (xy 63.337509 130.771721) (xy 63.381978 130.827066) (xy 63.3915 130.875117) (xy 63.3915 132.01971) (xy 63.371498 132.087831) (xy 63.359136 132.10402) (xy 63.354132 132.109578) (xy 63.26096 132.213056) (xy 63.165473 132.378444) (xy 63.106458 132.560072) (xy 63.105768 132.566633) (xy 63.105768 132.566635) (xy 63.096788 132.652075) (xy 63.086496 132.75) (xy 63.106458 132.939928) (xy 63.165473 133.121556) (xy 63.26096 133.286944) (xy 63.265378 133.291851) (xy 63.265379 133.291852) (xy 63.384325 133.423955) (xy 63.388747 133.428866) (xy 63.426197 133.456075) (xy 63.519817 133.524094) (xy 63.543248 133.541118) (xy 63.549276 133.543802) (xy 63.549278 133.543803) (xy 63.700988 133.611348) (xy 63.717712 133.618794) (xy 63.806337 133.637632) (xy 63.898056 133.657128) (xy 63.898061 133.657128) (xy 63.904513 133.6585) (xy 64.095487 133.6585) (xy 64.101939 133.657128) (xy 64.101944 133.657128) (xy 64.193663 133.637632) (xy 64.282288 133.618794) (xy 64.299012 133.611348) (xy 64.450722 133.543803) (xy 64.450724 133.543802) (xy 64.456752 133.541118) (xy 64.480184 133.524094) (xy 64.573803 133.456075) (xy 64.611253 133.428866) (xy 64.615675 133.423955) (xy 64.734621 133.291852) (xy 64.734622 133.291851) (xy 64.73904 133.286944) (xy 64.834527 133.121556) (xy 64.893542 132.939928) (xy 64.913504 132.75) (xy 64.903212 132.652075) (xy 64.894232 132.566635) (xy 64.894232 132.566633) (xy 64.893542 132.560072) (xy 64.834527 132.378444) (xy 64.73904 132.213056) (xy 64.645868 132.109578) (xy 64.640864 132.10402) (xy 64.610146 132.040013) (xy 64.6085 132.01971) (xy 64.6085 129.048136) (xy 64.609578 129.03169) (xy 64.612672 129.008188) (xy 64.61375 129) (xy 64.6085 128.960122) (xy 64.6085 128.960115) (xy 64.592838 128.84115) (xy 64.531524 128.693125) (xy 64.501049 128.653409) (xy 64.458477 128.597928) (xy 64.458474 128.597925) (xy 64.433987 128.566013) (xy 64.427432 128.560983) (xy 64.408621 128.546548) (xy 64.39623 128.535681) (xy 64.214315 128.353766) (xy 64.203448 128.341375) (xy 64.189013 128.322563) (xy 64.183987 128.316013) (xy 64.152075 128.291526) (xy 64.152072 128.291523) (xy 64.135281 128.278639) (xy 64.063429 128.223504) (xy 64.063427 128.223503) (xy 64.056876 128.218476) (xy 63.908851 128.157162) (xy 63.900664 128.156084) (xy 63.900663 128.156084) (xy 63.888273 128.154453) (xy 63.789885 128.1415) (xy 63.789876 128.141499) (xy 63.75819 128.137328) (xy 63.758189 128.137328) (xy 63.75 128.13625) (xy 63.718307 128.140422) (xy 63.701864 128.1415) (xy 63.557095 128.1415) (xy 63.488974 128.121498) (xy 63.442481 128.067842) (xy 63.432377 127.997568) (xy 63.448641 127.951362) (xy 63.452736 127.944438) (xy 63.459145 127.933601) (xy 63.461415 127.92579) (xy 63.484768 127.845405) (xy 63.505562 127.773831) (xy 63.506315 127.764274) (xy 63.508307 127.738958) (xy 63.508307 127.73895) (xy 63.5085 127.736502) (xy 63.5085 127.479239) (xy 63.528502 127.411118) (xy 63.545405 127.390144) (xy 63.698405 127.237144) (xy 63.760717 127.203118) (xy 63.831532 127.208183) (xy 63.876595 127.237144) (xy 65.454595 128.815144) (xy 65.488621 128.877456) (xy 65.4915 128.904239) (xy 65.4915 129.006502) (xy 65.491693 129.00895) (xy 65.491693 129.008958) (xy 65.492644 129.021033) (xy 65.494438 129.043831) (xy 65.540855 129.203601) (xy 65.625547 129.346807) (xy 65.628229 129.349489) (xy 65.653502 129.413861) (xy 65.6396 129.483484) (xy 65.629428 129.499312) (xy 65.625547 129.503193) (xy 65.540855 129.646399) (xy 65.538644 129.65401) (xy 65.538643 129.654012) (xy 65.527866 129.691109) (xy 65.494438 129.806169) (xy 65.493934 129.812574) (xy 65.493933 129.812579) (xy 65.491693 129.841042) (xy 65.4915 129.843498) (xy 65.4915 130.276502) (xy 65.491693 130.27895) (xy 65.491693 130.278958) (xy 65.492046 130.283433) (xy 65.494438 130.313831) (xy 65.514012 130.381206) (xy 65.538586 130.46579) (xy 65.540855 130.473601) (xy 65.544892 130.480427) (xy 65.621509 130.60998) (xy 65.621511 130.609983) (xy 65.625547 130.616807) (xy 65.743193 130.734453) (xy 65.750017 130.738489) (xy 65.75002 130.738491) (xy 65.839654 130.7915) (xy 65.886399 130.819145) (xy 65.89401 130.821356) (xy 65.894012 130.821357) (xy 65.940629 130.8349) (xy 66.046169 130.865562) (xy 66.052574 130.866066) (xy 66.052579 130.866067) (xy 66.081042 130.868307) (xy 66.08105 130.868307) (xy 66.083498 130.8685) (xy 67.866502 130.8685) (xy 67.86895 130.868307) (xy 67.868958 130.868307) (xy 67.897421 130.866067) (xy 67.897426 130.866066) (xy 67.903831 130.865562) (xy 68.009371 130.8349) (xy 68.055988 130.821357) (xy 68.05599 130.821356) (xy 68.063601 130.819145) (xy 68.110346 130.7915) (xy 68.19998 130.738491) (xy 68.199983 130.738489) (xy 68.206807 130.734453) (xy 68.235855 130.705405) (xy 68.298167 130.671379) (xy 68.32495 130.6685) (xy 69.390755 130.6685) (xy 69.458876 130.688502) (xy 69.47985 130.705405) (xy 72.168273 133.393827) (xy 72.17914 133.406218) (xy 72.193576 133.425032) (xy 72.193579 133.425035) (xy 72.198605 133.431585) (xy 72.205155 133.436611) (xy 72.205159 133.436615) (xy 72.230519 133.456074) (xy 72.230521 133.456075) (xy 72.319164 133.524094) (xy 72.325716 133.529122) (xy 72.333342 133.532281) (xy 72.333344 133.532282) (xy 72.361159 133.543803) (xy 72.473741 133.590436) (xy 72.481928 133.591514) (xy 72.481929 133.591514) (xy 72.493134 133.592989) (xy 72.52433 133.597096) (xy 72.592707 133.606098) (xy 72.59271 133.606098) (xy 72.592718 133.606099) (xy 72.624403 133.61027) (xy 72.632592 133.611348) (xy 72.664285 133.607176) (xy 72.680728 133.606098) (xy 93.779296 133.606098) (xy 93.795739 133.607176) (xy 93.827432 133.611348) (xy 93.835621 133.61027) (xy 93.867306 133.606099) (xy 93.867316 133.606098) (xy 93.867317 133.606098) (xy 93.867333 133.606096) (xy 93.966889 133.592989) (xy 93.978096 133.591514) (xy 93.978098 133.591513) (xy 93.986283 133.590436) (xy 94.134308 133.529122) (xy 94.172261 133.5) (xy 94.229504 133.456075) (xy 94.229507 133.456072) (xy 94.261419 133.431585) (xy 94.267274 133.423955) (xy 94.280884 133.406219) (xy 94.291751 133.393828) (xy 96.012228 131.67335) (xy 96.07454 131.639325) (xy 96.145355 131.644389) (xy 96.202191 131.686936) (xy 96.210442 131.699445) (xy 96.257658 131.781226) (xy 96.257661 131.781231) (xy 96.26096 131.786944) (xy 96.265378 131.791851) (xy 96.265379 131.791852) (xy 96.359136 131.89598) (xy 96.389854 131.959987) (xy 96.3915 131.98029) (xy 96.3915 132.01971) (xy 96.371498 132.087831) (xy 96.359136 132.10402) (xy 96.354132 132.109578) (xy 96.26096 132.213056) (xy 96.165473 132.378444) (xy 96.106458 132.560072) (xy 96.105768 132.566633) (xy 96.105768 132.566635) (xy 96.096788 132.652075) (xy 96.086496 132.75) (xy 96.106458 132.939928) (xy 96.165473 133.121556) (xy 96.26096 133.286944) (xy 96.265378 133.291851) (xy 96.265379 133.291852) (xy 96.384325 133.423955) (xy 96.388747 133.428866) (xy 96.426197 133.456075) (xy 96.519817 133.524094) (xy 96.543248 133.541118) (xy 96.549276 133.543802) (xy 96.549278 133.543803) (xy 96.700988 133.611348) (xy 96.717712 133.618794) (xy 96.806337 133.637632) (xy 96.898056 133.657128) (xy 96.898061 133.657128) (xy 96.904513 133.6585) (xy 97.095487 133.6585) (xy 97.10194 133.657128) (xy 97.101953 133.657127) (xy 97.219075 133.632231) (xy 97.289865 133.637632) (xy 97.346498 133.680449) (xy 97.365105 133.716539) (xy 97.415473 133.871556) (xy 97.51096 134.036944) (xy 97.638747 134.178866) (xy 97.793248 134.291118) (xy 97.799276 134.293802) (xy 97.799278 134.293803) (xy 97.961681 134.366109) (xy 97.967712 134.368794) (xy 98.061113 134.388647) (xy 98.148056 134.407128) (xy 98.148061 134.407128) (xy 98.154513 134.4085) (xy 98.345487 134.4085) (xy 98.351939 134.407128) (xy 98.351944 134.407128) (xy 98.438887 134.388647) (xy 98.532288 134.368794) (xy 98.538319 134.366109) (xy 98.700722 134.293803) (xy 98.700724 134.293802) (xy 98.706752 134.291118) (xy 98.861253 134.178866) (xy 98.98904 134.036944) (xy 99.084527 133.871556) (xy 99.143542 133.689928) (xy 99.144619 133.679686) (xy 99.162814 133.506565) (xy 99.163504 133.5) (xy 99.155625 133.425032) (xy 99.144232 133.316635) (xy 99.144232 133.316633) (xy 99.143542 133.310072) (xy 99.084527 133.128444) (xy 99.056892 133.080578) (xy 98.992341 132.968774) (xy 98.98904 132.963056) (xy 98.973868 132.946206) (xy 98.890864 132.85402) (xy 98.860146 132.790013) (xy 98.8585 132.76971) (xy 98.8585 132.106993) (xy 98.878502 132.038872) (xy 98.932158 131.992379) (xy 99.002432 131.982275) (xy 99.061202 132.007029) (xy 99.093124 132.031524) (xy 99.241149 132.092838) (xy 99.249336 132.093916) (xy 99.249337 132.093916) (xy 99.260542 132.095391) (xy 99.291738 132.099498) (xy 99.360115 132.1085) (xy 99.360118 132.1085) (xy 99.360126 132.108501) (xy 99.391811 132.112672) (xy 99.4 132.11375) (xy 99.431693 132.109578) (xy 99.448136 132.1085) (xy 106.271864 132.1085) (xy 106.288307 132.109578) (xy 106.32 132.11375) (xy 106.328189 132.112672) (xy 106.359874 132.108501) (xy 106.359884 132.1085) (xy 106.359885 132.1085) (xy 106.359901 132.108498) (xy 106.459457 132.095391) (xy 106.470664 132.093916) (xy 106.470666 132.093915) (xy 106.478851 132.092838) (xy 106.626876 132.031524) (xy 106.642273 132.01971) (xy 106.722072 131.958477) (xy 106.722075 131.958474) (xy 106.747434 131.939015) (xy 106.753987 131.933987) (xy 106.771072 131.911722) (xy 106.773452 131.908621) (xy 106.784319 131.89623) (xy 107.310941 131.369608) (xy 107.373253 131.335582) (xy 107.437399 131.33837) (xy 107.623995 131.39631) (xy 107.629284 131.397011) (xy 107.849781 131.426236) (xy 107.849785 131.426236) (xy 107.855065 131.426936) (xy 107.860394 131.426736) (xy 107.860395 131.426736) (xy 107.955124 131.423179) (xy 108.087993 131.418191) (xy 108.316117 131.370326) (xy 108.321076 131.368368) (xy 108.321078 131.368367) (xy 108.483408 131.304259) (xy 108.532914 131.284708) (xy 108.721062 131.170538) (xy 108.727626 131.166555) (xy 108.727629 131.166553) (xy 108.732187 131.163787) (xy 108.784561 131.118339) (xy 108.904204 131.014518) (xy 108.904206 131.014516) (xy 108.908237 131.011018) (xy 108.953942 130.955277) (xy 109.052646 130.8349) (xy 109.05265 130.834894) (xy 109.05603 130.830772) (xy 109.17134 130.6282) (xy 109.175476 130.616807) (xy 109.249051 130.414112) (xy 109.249052 130.414108) (xy 109.250871 130.409097) (xy 109.255207 130.38512) (xy 109.29161 130.183809) (xy 109.291611 130.183802) (xy 109.292348 130.179725) (xy 109.2935 130.155298) (xy 109.2935 129.691473) (xy 109.278759 129.517743) (xy 109.277418 129.512575) (xy 109.221541 129.297292) (xy 109.221539 129.297288) (xy 109.2202 129.292127) (xy 109.180322 129.203601) (xy 109.126655 129.084464) (xy 109.126654 129.084461) (xy 109.124465 129.079603) (xy 108.994291 128.886248) (xy 108.96333 128.853792) (xy 108.862538 128.748136) (xy 108.833399 128.71759) (xy 108.646391 128.578452) (xy 108.64164 128.576036) (xy 108.641636 128.576034) (xy 108.523102 128.515769) (xy 108.438612 128.472812) (xy 108.216005 128.40369) (xy 108.193853 128.400754) (xy 107.990219 128.373764) (xy 107.990215 128.373764) (xy 107.984935 128.373064) (xy 107.979606 128.373264) (xy 107.979605 128.373264) (xy 107.896105 128.376399) (xy 107.752007 128.381809) (xy 107.746789 128.382904) (xy 107.746788 128.382904) (xy 107.567381 128.420547) (xy 107.496604 128.414959) (xy 107.440084 128.371994) (xy 107.415765 128.305293) (xy 107.431368 128.236032) (xy 107.452412 128.208137) (xy 108.915144 126.745405) (xy 108.977456 126.711379) (xy 109.004239 126.7085) (xy 110.026761 126.7085) (xy 110.094882 126.728502) (xy 110.141375 126.782158) (xy 110.151479 126.852432) (xy 110.121985 126.917012) (xy 110.115856 126.923595) (xy 110.103766 126.935685) (xy 110.091375 126.946552) (xy 110.066013 126.966013) (xy 110.041526 126.997925) (xy 110.041523 126.997928) (xy 110.032837 127.009248) (xy 109.976848 127.082214) (xy 109.968476 127.093124) (xy 109.907162 127.241149) (xy 109.904862 127.258617) (xy 109.8915 127.360115) (xy 109.8915 127.36012) (xy 109.88625 127.4) (xy 109.890291 127.430692) (xy 109.890422 127.43169) (xy 109.8915 127.448136) (xy 109.8915 130.930886) (xy 109.890422 130.947329) (xy 109.88625 130.979022) (xy 109.8915 131.018902) (xy 109.8915 131.018907) (xy 109.90459 131.118339) (xy 109.907162 131.137873) (xy 109.968476 131.285898) (xy 109.973503 131.292449) (xy 109.973504 131.292451) (xy 110.04152 131.381091) (xy 110.041526 131.381097) (xy 110.066013 131.413009) (xy 110.072568 131.418039) (xy 110.091379 131.432474) (xy 110.10377 131.443341) (xy 110.456663 131.796234) (xy 110.46753 131.808625) (xy 110.486991 131.833987) (xy 110.493541 131.839013) (xy 110.518899 131.858471) (xy 110.518915 131.858485) (xy 110.566859 131.895273) (xy 110.614102 131.931524) (xy 110.762127 131.992838) (xy 110.770314 131.993916) (xy 110.770315 131.993916) (xy 110.78152 131.995391) (xy 110.800966 131.997951) (xy 110.881093 132.0085) (xy 110.881096 132.0085) (xy 110.881104 132.008501) (xy 110.912789 132.012672) (xy 110.920978 132.01375) (xy 110.952671 132.009578) (xy 110.969114 132.0085) (xy 117.971864 132.0085) (xy 117.988307 132.009578) (xy 118.02 132.01375) (xy 118.028189 132.012672) (xy 118.059874 132.008501) (xy 118.059884 132.0085) (xy 118.059885 132.0085) (xy 118.059901 132.008498) (xy 118.159457 131.995391) (xy 118.170664 131.993916) (xy 118.170666 131.993915) (xy 118.178851 131.992838) (xy 118.326876 131.931524) (xy 118.33343 131.926495) (xy 118.422069 131.85848) (xy 118.422075 131.858474) (xy 118.447434 131.839015) (xy 118.453987 131.833987) (xy 118.459017 131.827432) (xy 118.473452 131.808621) (xy 118.484319 131.79623) (xy 118.910941 131.369608) (xy 118.973253 131.335582) (xy 119.037399 131.33837) (xy 119.223995 131.39631) (xy 119.229284 131.397011) (xy 119.449781 131.426236) (xy 119.449785 131.426236) (xy 119.455065 131.426936) (xy 119.460394 131.426736) (xy 119.460395 131.426736) (xy 119.555124 131.423179) (xy 119.687993 131.418191) (xy 119.916117 131.370326) (xy 119.921076 131.368368) (xy 119.921078 131.368367) (xy 120.083408 131.304259) (xy 120.132914 131.284708) (xy 120.321062 131.170538) (xy 120.327626 131.166555) (xy 120.327629 131.166553) (xy 120.332187 131.163787) (xy 120.384561 131.118339) (xy 120.504204 131.014518) (xy 120.504206 131.014516) (xy 120.508237 131.011018) (xy 120.553942 130.955277) (xy 120.652646 130.8349) (xy 120.65265 130.834894) (xy 120.65603 130.830772) (xy 120.77134 130.6282) (xy 120.775476 130.616807) (xy 120.849051 130.414112) (xy 120.849052 130.414108) (xy 120.850871 130.409097) (xy 120.855207 130.38512) (xy 120.89161 130.183809) (xy 120.891611 130.183802) (xy 120.892348 130.179725) (xy 120.8935 130.155298) (xy 120.8935 129.691473) (xy 120.878759 129.517743) (xy 120.877418 129.512575) (xy 120.821541 129.297292) (xy 120.821539 129.297288) (xy 120.8202 129.292127) (xy 120.780322 129.203601) (xy 120.726655 129.084464) (xy 120.726654 129.084461) (xy 120.724465 129.079603) (xy 120.594291 128.886248) (xy 120.56333 128.853792) (xy 120.462538 128.748136) (xy 120.433399 128.71759) (xy 120.246391 128.578452) (xy 120.24164 128.576036) (xy 120.241636 128.576034) (xy 120.123102 128.515769) (xy 120.038612 128.472812) (xy 119.816005 128.40369) (xy 119.645942 128.38115) (xy 119.58104 128.352371) (xy 119.542 128.293071) (xy 119.541217 128.222079) (xy 119.573402 128.167147) (xy 120.995144 126.745405) (xy 121.057456 126.711379) (xy 121.084239 126.7085) (xy 121.431374 126.7085) (xy 121.499495 126.728502) (xy 121.545988 126.782158) (xy 121.556092 126.852432) (xy 121.531336 126.911204) (xy 121.522564 126.922636) (xy 121.478926 126.979506) (xy 121.468476 126.993124) (xy 121.407162 127.141149) (xy 121.406084 127.149337) (xy 121.405182 127.156189) (xy 121.3915 127.260115) (xy 121.3915 127.26012) (xy 121.389641 127.274245) (xy 121.38625 127.3) (xy 121.38897 127.320657) (xy 121.390422 127.33169) (xy 121.3915 127.348136) (xy 121.3915 130.951864) (xy 121.390422 130.968307) (xy 121.38625 131) (xy 121.3915 131.03988) (xy 121.3915 131.039885) (xy 121.399142 131.097929) (xy 121.407162 131.158851) (xy 121.468476 131.306876) (xy 121.473503 131.313427) (xy 121.473504 131.313429) (xy 121.54152 131.402069) (xy 121.541526 131.402075) (xy 121.566013 131.433987) (xy 121.572568 131.439017) (xy 121.591379 131.453452) (xy 121.60377 131.464319) (xy 121.935685 131.796234) (xy 121.946552 131.808625) (xy 121.966013 131.833987) (xy 121.972563 131.839013) (xy 121.997925 131.858474) (xy 121.997931 131.85848) (xy 122.067318 131.911722) (xy 122.08657 131.926495) (xy 122.086572 131.926496) (xy 122.093125 131.931524) (xy 122.24115 131.992838) (xy 122.360115 132.0085) (xy 122.36012 132.0085) (xy 122.360129 132.008501) (xy 122.391812 132.012672) (xy 122.4 132.01375) (xy 122.431693 132.009578) (xy 122.448136 132.0085) (xy 129.451864 132.0085) (xy 129.468307 132.009578) (xy 129.5 132.01375) (xy 129.508189 132.012672) (xy 129.539874 132.008501) (xy 129.539884 132.0085) (xy 129.539885 132.0085) (xy 129.539901 132.008498) (xy 129.639457 131.995391) (xy 129.650664 131.993916) (xy 129.650666 131.993915) (xy 129.658851 131.992838) (xy 129.806876 131.931524) (xy 129.81343 131.926495) (xy 129.902069 131.85848) (xy 129.902075 131.858474) (xy 129.927434 131.839015) (xy 129.933987 131.833987) (xy 129.939017 131.827432) (xy 129.953452 131.808621) (xy 129.964319 131.79623) (xy 130.39568 131.364869) (xy 130.457992 131.330843) (xy 130.522139 131.333632) (xy 130.718893 131.394726) (xy 130.718896 131.394727) (xy 130.723995 131.39631) (xy 130.729284 131.397011) (xy 130.949781 131.426236) (xy 130.949785 131.426236) (xy 130.955065 131.426936) (xy 130.960394 131.426736) (xy 130.960395 131.426736) (xy 131.055124 131.423179) (xy 131.187993 131.418191) (xy 131.416117 131.370326) (xy 131.421076 131.368368) (xy 131.421078 131.368367) (xy 131.583408 131.304259) (xy 131.632914 131.284708) (xy 131.821062 131.170538) (xy 131.827626 131.166555) (xy 131.827629 131.166553) (xy 131.832187 131.163787) (xy 131.884561 131.118339) (xy 132.004204 131.014518) (xy 132.004206 131.014516) (xy 132.008237 131.011018) (xy 132.053942 130.955277) (xy 132.152646 130.8349) (xy 132.15265 130.834894) (xy 132.15603 130.830772) (xy 132.27134 130.6282) (xy 132.275476 130.616807) (xy 132.349051 130.414112) (xy 132.349052 130.414108) (xy 132.350871 130.409097) (xy 132.355207 130.38512) (xy 132.39161 130.183809) (xy 132.391611 130.183802) (xy 132.392348 130.179725) (xy 132.3935 130.155298) (xy 132.3935 129.691473) (xy 132.378759 129.517743) (xy 132.377418 129.512575) (xy 132.321541 129.297292) (xy 132.321539 129.297288) (xy 132.3202 129.292127) (xy 132.280322 129.203601) (xy 132.226655 129.084464) (xy 132.226654 129.084461) (xy 132.224465 129.079603) (xy 132.094291 128.886248) (xy 132.06333 128.853792) (xy 131.962538 128.748136) (xy 131.933399 128.71759) (xy 131.746391 128.578452) (xy 131.74164 128.576036) (xy 131.741636 128.576034) (xy 131.623102 128.515769) (xy 131.538612 128.472812) (xy 131.316005 128.40369) (xy 131.145942 128.38115) (xy 131.08104 128.352371) (xy 131.042 128.293071) (xy 131.041217 128.222079) (xy 131.073402 128.167147) (xy 132.495144 126.745405) (xy 132.557456 126.711379) (xy 132.584239 126.7085) (xy 134.06502 126.7085) (xy 134.133141 126.728502) (xy 134.179634 126.782158) (xy 134.19102 126.8345) (xy 134.19102 127.196241) (xy 134.171018 127.264362) (xy 134.154115 127.285336) (xy 133.203766 128.235685) (xy 133.191375 128.246552) (xy 133.166013 128.266013) (xy 133.141526 128.297925) (xy 133.141523 128.297928) (xy 133.141517 128.297936) (xy 133.077415 128.381475) (xy 133.068476 128.393124) (xy 133.009225 128.536169) (xy 133.007162 128.54115) (xy 132.9915 128.660115) (xy 132.9915 128.66012) (xy 132.98625 128.7) (xy 132.989074 128.721447) (xy 132.990422 128.73169) (xy 132.9915 128.748136) (xy 132.9915 130.951864) (xy 132.990422 130.968307) (xy 132.98625 131) (xy 132.9915 131.03988) (xy 132.9915 131.039885) (xy 132.999142 131.097929) (xy 133.007162 131.158851) (xy 133.068476 131.306876) (xy 133.073503 131.313427) (xy 133.073504 131.313429) (xy 133.14152 131.402069) (xy 133.141526 131.402075) (xy 133.166013 131.433987) (xy 133.172568 131.439017) (xy 133.191379 131.453452) (xy 133.20377 131.464319) (xy 133.535685 131.796234) (xy 133.546552 131.808625) (xy 133.566013 131.833987) (xy 133.572563 131.839013) (xy 133.597925 131.858474) (xy 133.597931 131.85848) (xy 133.667318 131.911722) (xy 133.68657 131.926495) (xy 133.686572 131.926496) (xy 133.693125 131.931524) (xy 133.84115 131.992838) (xy 133.960115 132.0085) (xy 133.96012 132.0085) (xy 133.960129 132.008501) (xy 133.991812 132.012672) (xy 134 132.01375) (xy 134.031693 132.009578) (xy 134.048136 132.0085) (xy 141.071864 132.0085) (xy 141.088307 132.009578) (xy 141.12 132.01375) (xy 141.128189 132.012672) (xy 141.159874 132.008501) (xy 141.159884 132.0085) (xy 141.159885 132.0085) (xy 141.159901 132.008498) (xy 141.259457 131.995391) (xy 141.270664 131.993916) (xy 141.270666 131.993915) (xy 141.278851 131.992838) (xy 141.426876 131.931524) (xy 141.43343 131.926495) (xy 141.522069 131.85848) (xy 141.522075 131.858474) (xy 141.547434 131.839015) (xy 141.553987 131.833987) (xy 141.559017 131.827432) (xy 141.573452 131.808621) (xy 141.584319 131.79623) (xy 142.010941 131.369608) (xy 142.073253 131.335582) (xy 142.137399 131.33837) (xy 142.323995 131.39631) (xy 142.329284 131.397011) (xy 142.549781 131.426236) (xy 142.549785 131.426236) (xy 142.555065 131.426936) (xy 142.560394 131.426736) (xy 142.560395 131.426736) (xy 142.655124 131.423179) (xy 142.787993 131.418191) (xy 143.016117 131.370326) (xy 143.021076 131.368368) (xy 143.021078 131.368367) (xy 143.183408 131.304259) (xy 143.232914 131.284708) (xy 143.421062 131.170538) (xy 143.427626 131.166555) (xy 143.427629 131.166553) (xy 143.432187 131.163787) (xy 143.484561 131.118339) (xy 143.604204 131.014518) (xy 143.604206 131.014516) (xy 143.608237 131.011018) (xy 143.653942 130.955277) (xy 143.752646 130.8349) (xy 143.75265 130.834894) (xy 143.75603 130.830772) (xy 143.87134 130.6282) (xy 143.875476 130.616807) (xy 143.949051 130.414112) (xy 143.949052 130.414108) (xy 143.950871 130.409097) (xy 143.955207 130.38512) (xy 143.99161 130.183809) (xy 143.991611 130.183802) (xy 143.992348 130.179725) (xy 143.9935 130.155298) (xy 143.9935 129.691473) (xy 143.978759 129.517743) (xy 143.977418 129.512575) (xy 143.921541 129.297292) (xy 143.921539 129.297288) (xy 143.9202 129.292127) (xy 143.880322 129.203601) (xy 143.826655 129.084464) (xy 143.826654 129.084461) (xy 143.824465 129.079603) (xy 143.694291 128.886248) (xy 143.66333 128.853792) (xy 143.562538 128.748136) (xy 143.533399 128.71759) (xy 143.346391 128.578452) (xy 143.34164 128.576036) (xy 143.341636 128.576034) (xy 143.223102 128.515769) (xy 143.138612 128.472812) (xy 142.916005 128.40369) (xy 142.893853 128.400754) (xy 142.690219 128.373764) (xy 142.690215 128.373764) (xy 142.684935 128.373064) (xy 142.679606 128.373264) (xy 142.679605 128.373264) (xy 142.596105 128.376399) (xy 142.452007 128.381809) (xy 142.223883 128.429674) (xy 142.218921 128.431633) (xy 142.21381 128.433167) (xy 142.213254 128.431315) (xy 142.15095 128.436968) (xy 142.088 128.404138) (xy 142.052793 128.342486) (xy 142.056506 128.271586) (xy 142.086285 128.224264) (xy 142.465144 127.845405) (xy 142.527456 127.811379) (xy 142.554239 127.8085) (xy 148.551864 127.8085) (xy 148.568307 127.809578) (xy 148.6 127.81375) (xy 148.608189 127.812672) (xy 148.639874 127.808501) (xy 148.639884 127.8085) (xy 148.639885 127.8085) (xy 148.648575 127.807356) (xy 148.739457 127.795391) (xy 148.750664 127.793916) (xy 148.750666 127.793915) (xy 148.758851 127.792838) (xy 148.906876 127.731524) (xy 148.918122 127.722895) (xy 149.002072 127.658477) (xy 149.002075 127.658474) (xy 149.027437 127.639013) (xy 149.033987 127.633987) (xy 149.053458 127.608613) (xy 149.064316 127.596233) (xy 149.596234 127.064315) (xy 149.608625 127.053448) (xy 149.627437 127.039013) (xy 149.633987 127.033987) (xy 149.658474 127.002075) (xy 149.65848 127.002069) (xy 149.726496 126.913429) (xy 149.726497 126.913427) (xy 149.731524 126.906876) (xy 149.792838 126.758851) (xy 149.795638 126.737583) (xy 149.8085 126.639885) (xy 149.8085 126.63988) (xy 149.81375 126.6) (xy 149.812672 126.591811) (xy 149.812672 126.589148) (xy 149.832674 126.521027) (xy 149.863107 126.488322) (xy 149.868258 126.484462) (xy 149.963261 126.413261) (xy 150.050615 126.296705) (xy 150.101745 126.160316) (xy 150.1085 126.098134) (xy 150.1085 125.245953) (xy 155.525986 125.245953) (xy 155.526809 125.254231) (xy 155.527092 125.257083) (xy 155.527686 125.267149) (xy 155.527846 125.275599) (xy 155.528081 125.288021) (xy 155.528102 125.2911) (xy 155.527951 125.315734) (xy 155.527951 125.315736) (xy 155.527387 125.315733) (xy 155.527914 125.318439) (xy 155.527934 125.318439) (xy 155.527691 125.358317) (xy 155.52916 125.363455) (xy 155.52962 125.369388) (xy 155.529858 125.381945) (xy 155.529858 125.381947) (xy 155.529855 125.381947) (xy 155.529935 125.383733) (xy 155.529672 125.387107) (xy 155.530044 125.391955) (xy 155.530044 125.391959) (xy 155.531867 125.415716) (xy 155.532129 125.420163) (xy 155.532792 125.43623) (xy 155.533182 125.445695) (xy 155.534 125.450101) (xy 155.534503 125.454562) (xy 155.534475 125.454565) (xy 155.535378 125.461469) (xy 155.536298 125.473444) (xy 155.536376 125.474466) (xy 155.536696 125.480589) (xy 155.537228 125.499619) (xy 155.537387 125.505325) (xy 155.538268 125.510103) (xy 155.538269 125.510112) (xy 155.538499 125.511357) (xy 155.539473 125.518837) (xy 155.540107 125.523098) (xy 155.54045 125.527568) (xy 155.540768 125.528999) (xy 155.540467 125.533178) (xy 155.554229 125.596952) (xy 155.554974 125.600678) (xy 155.558859 125.621746) (xy 155.558861 125.621754) (xy 155.559672 125.626151) (xy 155.561098 125.63039) (xy 155.562225 125.634739) (xy 155.56207 125.634779) (xy 155.562305 125.635629) (xy 155.563279 125.638895) (xy 155.564307 125.643659) (xy 155.566054 125.648204) (xy 155.566055 125.648206) (xy 155.56649 125.649339) (xy 155.567493 125.652544) (xy 155.567815 125.655833) (xy 155.57102 125.663808) (xy 155.571023 125.663818) (xy 155.577827 125.68075) (xy 155.580332 125.687541) (xy 155.591844 125.721748) (xy 155.591847 125.721754) (xy 155.594709 125.730258) (xy 155.599713 125.737431) (xy 155.602697 125.744168) (xy 155.60406 125.747078) (xy 155.605664 125.75125) (xy 155.60709 125.753804) (xy 155.608012 125.755925) (xy 155.608143 125.756191) (xy 155.609958 125.760706) (xy 155.612444 125.764886) (xy 155.612448 125.764894) (xy 155.615923 125.770737) (xy 155.621524 125.781304) (xy 155.6241 125.78975) (xy 155.642209 125.817359) (xy 155.643108 125.818841) (xy 155.643799 125.82033) (xy 155.646061 125.823714) (xy 155.646853 125.825022) (xy 155.654836 125.83932) (xy 155.654838 125.839323) (xy 155.659213 125.847158) (xy 155.663353 125.85123) (xy 155.667076 125.856742) (xy 155.67045 125.862415) (xy 155.673542 125.866248) (xy 155.673585 125.866301) (xy 155.680871 125.876301) (xy 155.683421 125.880189) (xy 155.683426 125.880195) (xy 155.68609 125.884257) (xy 155.689349 125.887863) (xy 155.689355 125.88787) (xy 155.702113 125.901984) (xy 155.706709 125.907365) (xy 155.735907 125.94356) (xy 155.735911 125.943563) (xy 155.736198 125.943919) (xy 155.739537 125.949643) (xy 155.775297 125.983507) (xy 155.782103 125.990473) (xy 155.789837 125.999029) (xy 155.79846 126.006197) (xy 155.801864 126.009027) (xy 155.807956 126.014434) (xy 155.818069 126.024012) (xy 155.818075 126.024017) (xy 155.821602 126.027357) (xy 155.825605 126.030117) (xy 155.825607 126.030119) (xy 155.830479 126.033478) (xy 155.839504 126.040319) (xy 155.8674 126.063511) (xy 155.867407 126.063515) (xy 155.874305 126.06925) (xy 155.880733 126.072037) (xy 155.888173 126.077862) (xy 155.888525 126.077385) (xy 155.895751 126.082711) (xy 155.902151 126.089008) (xy 155.91006 126.093255) (xy 155.910062 126.093257) (xy 155.926488 126.102078) (xy 155.935315 126.106818) (xy 155.935998 126.107185) (xy 155.941136 126.110323) (xy 155.941198 126.110218) (xy 155.945064 126.112497) (xy 155.948752 126.11504) (xy 155.952765 126.117036) (xy 155.952769 126.117038) (xy 155.972271 126.126736) (xy 155.975743 126.12853) (xy 156.001724 126.142483) (xy 156.006314 126.144099) (xy 156.01077 126.146065) (xy 156.010688 126.146251) (xy 156.016245 126.148604) (xy 156.036628 126.158739) (xy 156.047107 126.16395) (xy 156.055939 126.16553) (xy 156.064465 126.168348) (xy 156.064454 126.168381) (xy 156.0772 126.172048) (xy 156.082382 126.174138) (xy 156.090151 126.178644) (xy 156.098871 126.180788) (xy 156.131746 126.188871) (xy 156.143478 126.192369) (xy 156.148503 126.194137) (xy 156.170005 126.198409) (xy 156.175525 126.199635) (xy 156.199905 126.20563) (xy 156.20476 126.206052) (xy 156.206449 126.206331) (xy 156.270394 126.237178) (xy 156.307511 126.297699) (xy 156.311894 126.330643) (xy 156.311894 126.889027) (xy 156.311374 126.900458) (xy 156.310825 126.90648) (xy 156.308753 126.91521) (xy 156.309214 126.924169) (xy 156.311728 126.973032) (xy 156.311894 126.979506) (xy 156.311894 126.999142) (xy 156.31253 127.003581) (xy 156.312919 127.006301) (xy 156.314026 127.01769) (xy 156.316311 127.062106) (xy 156.319269 127.070578) (xy 156.320075 127.072886) (xy 156.325846 127.096565) (xy 156.326193 127.098991) (xy 156.326194 127.098995) (xy 156.327466 127.107877) (xy 156.33118 127.116046) (xy 156.331182 127.116052) (xy 156.345879 127.148377) (xy 156.350135 127.15899) (xy 156.364793 127.200976) (xy 156.371437 127.210275) (xy 156.383616 127.231372) (xy 156.384595 127.233524) (xy 156.388347 127.241777) (xy 156.416324 127.274245) (xy 156.417376 127.275466) (xy 156.424446 127.284468) (xy 156.44508 127.313349) (xy 156.445083 127.313352) (xy 156.450302 127.320657) (xy 156.459291 127.327719) (xy 156.476902 127.34455) (xy 156.484361 127.353207) (xy 156.495019 127.360115) (xy 156.521684 127.377398) (xy 156.530995 127.384052) (xy 156.565966 127.411527) (xy 156.576575 127.415782) (xy 156.598194 127.42699) (xy 156.600258 127.428328) (xy 156.600262 127.42833) (xy 156.607791 127.43321) (xy 156.650417 127.445958) (xy 156.661204 127.449726) (xy 156.694148 127.46294) (xy 156.694152 127.462941) (xy 156.702484 127.466283) (xy 156.713855 127.467389) (xy 156.737761 127.47208) (xy 156.740115 127.472784) (xy 156.740117 127.472784) (xy 156.748713 127.475355) (xy 156.757685 127.47541) (xy 156.757686 127.47541) (xy 156.793195 127.475627) (xy 156.804617 127.476216) (xy 156.810129 127.476752) (xy 156.810132 127.476752) (xy 156.814976 127.477223) (xy 156.833971 127.47613) (xy 156.841952 127.475924) (xy 156.895801 127.476253) (xy 156.904428 127.473788) (xy 156.913324 127.472569) (xy 156.913377 127.472959) (xy 156.925886 127.470838) (xy 156.937958 127.470143) (xy 156.979448 127.467754) (xy 156.979456 127.467754) (xy 157.004568 127.466308) (xy 157.014545 127.46613) (xy 157.047535 127.466846) (xy 157.063236 127.467187) (xy 157.071901 127.464856) (xy 157.071903 127.464856) (xy 157.091051 127.459705) (xy 157.143162 127.45688) (xy 157.171195 127.461244) (xy 157.187909 127.465025) (xy 157.216608 127.473608) (xy 157.225583 127.473663) (xy 157.225584 127.473663) (xy 157.238074 127.473739) (xy 157.25138 127.47382) (xy 157.252185 127.473854) (xy 157.25329 127.474026) (xy 157.284633 127.474026) (xy 157.285402 127.474028) (xy 157.359733 127.474482) (xy 157.359736 127.474482) (xy 157.363696 127.474506) (xy 157.365049 127.474119) (xy 157.366415 127.474026) (xy 157.468449 127.474026) (xy 157.469217 127.474028) (xy 157.547512 127.474506) (xy 157.556143 127.472039) (xy 157.556145 127.472039) (xy 157.576306 127.466277) (xy 157.593067 127.462699) (xy 157.593996 127.462566) (xy 157.622709 127.458454) (xy 157.623356 127.45816) (xy 157.670293 127.454684) (xy 157.679591 127.455963) (xy 157.6813 127.456211) (xy 157.728739 127.463441) (xy 157.752189 127.467015) (xy 157.752167 127.467161) (xy 157.758014 127.467729) (xy 157.760818 127.468252) (xy 157.760826 127.468253) (xy 157.765613 127.469146) (xy 157.771478 127.469322) (xy 157.77866 127.469922) (xy 157.778661 127.469909) (xy 157.783143 127.470203) (xy 157.787577 127.470813) (xy 157.792055 127.470788) (xy 157.813629 127.470668) (xy 157.818111 127.470723) (xy 157.846667 127.47158) (xy 157.859597 127.471969) (xy 157.865595 127.472292) (xy 157.890552 127.47424) (xy 157.896439 127.473789) (xy 157.903646 127.473621) (xy 157.903645 127.473609) (xy 157.908111 127.473426) (xy 157.912596 127.47356) (xy 157.91705 127.473058) (xy 157.917056 127.473058) (xy 157.922937 127.472395) (xy 157.934591 127.471896) (xy 157.940633 127.472926) (xy 157.949547 127.471891) (xy 157.94955 127.471891) (xy 157.995831 127.466517) (xy 158.021895 127.466928) (xy 158.021932 127.466394) (xy 158.028572 127.466859) (xy 158.052662 127.468546) (xy 158.055594 127.468786) (xy 158.100884 127.473022) (xy 158.101209 127.473062) (xy 158.102479 127.473171) (xy 158.104733 127.473382) (xy 158.108869 127.474026) (xy 158.110463 127.474026) (xy 158.111445 127.474399) (xy 158.111584 127.474392) (xy 158.111618 127.474026) (xy 158.123112 127.475101) (xy 158.128021 127.47415) (xy 158.133508 127.474208) (xy 158.143847 127.474932) (xy 158.145303 127.475034) (xy 158.145304 127.475034) (xy 158.149773 127.475347) (xy 158.163465 127.474355) (xy 158.172569 127.474026) (xy 158.220422 127.474026) (xy 158.22119 127.474028) (xy 158.299485 127.474506) (xy 158.30178 127.47385) (xy 158.3195 127.473958) (xy 158.319502 127.473608) (xy 158.320435 127.473614) (xy 158.354275 127.47382) (xy 158.35508 127.473854) (xy 158.356185 127.474026) (xy 158.387528 127.474026) (xy 158.388297 127.474028) (xy 158.462628 127.474482) (xy 158.462631 127.474482) (xy 158.466591 127.474506) (xy 158.467944 127.474119) (xy 158.46931 127.474026) (xy 158.554633 127.474026) (xy 158.555401 127.474028) (xy 158.633696 127.474506) (xy 158.642327 127.472039) (xy 158.642329 127.472039) (xy 158.66249 127.466277) (xy 158.679251 127.462699) (xy 158.68018 127.462566) (xy 158.708893 127.458454) (xy 158.717061 127.45474) (xy 158.717065 127.454739) (xy 158.732578 127.447685) (xy 158.750101 127.441237) (xy 158.775123 127.434086) (xy 158.782714 127.429297) (xy 158.785978 127.427237) (xy 158.789664 127.426188) (xy 158.790909 127.425631) (xy 158.790989 127.425811) (xy 158.854263 127.407803) (xy 158.908744 127.420696) (xy 158.920469 127.426453) (xy 158.920471 127.426454) (xy 158.928529 127.43041) (xy 158.937374 127.431946) (xy 158.937375 127.431946) (xy 158.971545 127.437879) (xy 159.00164 127.447095) (xy 159.010985 127.451295) (xy 159.010993 127.451297) (xy 159.019176 127.454975) (xy 159.028063 127.456208) (xy 159.028066 127.456209) (xy 159.052253 127.459565) (xy 159.056956 127.460218) (xy 159.062938 127.461195) (xy 159.063348 127.461272) (xy 159.06768 127.462411) (xy 159.072123 127.462924) (xy 159.072125 127.462924) (xy 159.096455 127.465731) (xy 159.099329 127.466097) (xy 159.131127 127.470509) (xy 159.135745 127.470432) (xy 159.14185 127.470969) (xy 159.1768 127.475002) (xy 159.185645 127.473487) (xy 159.185651 127.473487) (xy 159.197231 127.471503) (xy 159.235697 127.470873) (xy 159.2561 127.473684) (xy 159.293994 127.468051) (xy 159.296387 127.467768) (xy 159.298712 127.467729) (xy 159.303139 127.46702) (xy 159.303148 127.467019) (xy 159.307099 127.466386) (xy 159.340358 127.467763) (xy 159.340565 127.465679) (xy 159.349497 127.466568) (xy 159.358217 127.468715) (xy 159.366167 127.468372) (xy 159.373323 127.469392) (xy 159.377557 127.470179) (xy 159.37756 127.470179) (xy 159.382347 127.471069) (xy 159.38721 127.471212) (xy 159.387213 127.471212) (xy 159.403239 127.471682) (xy 159.410463 127.472102) (xy 159.45719 127.476167) (xy 159.466133 127.476945) (xy 159.474936 127.475182) (xy 159.483896 127.474684) (xy 159.483933 127.47535) (xy 159.495378 127.474383) (xy 159.512528 127.474886) (xy 159.516992 127.47438) (xy 159.521457 127.474193) (xy 159.521464 127.474352) (xy 159.52723 127.474026) (xy 159.573975 127.474026) (xy 159.574743 127.474028) (xy 159.653038 127.474506) (xy 159.661669 127.472039) (xy 159.661671 127.472039) (xy 159.681832 127.466277) (xy 159.698593 127.462699) (xy 159.708753 127.461244) (xy 159.728234 127.458454) (xy 159.728571 127.460808) (xy 159.766683 127.45833) (xy 159.792405 127.462335) (xy 159.806444 127.465349) (xy 159.842136 127.475172) (xy 159.911529 127.474067) (xy 159.913127 127.474042) (xy 159.915132 127.474026) (xy 160.053622 127.474026) (xy 160.054581 127.47403) (xy 160.121971 127.474543) (xy 160.121973 127.474543) (xy 160.130949 127.474611) (xy 160.139582 127.472157) (xy 160.139586 127.472157) (xy 160.160217 127.466294) (xy 160.176798 127.462768) (xy 160.202578 127.459076) (xy 160.250381 127.464637) (xy 160.251045 127.461825) (xy 160.259783 127.463887) (xy 160.268138 127.467166) (xy 160.277076 127.467968) (xy 160.277085 127.46797) (xy 160.280219 127.468251) (xy 160.303893 127.472687) (xy 160.306908 127.473557) (xy 160.30691 127.473557) (xy 160.315536 127.476047) (xy 160.324511 127.476016) (xy 160.324513 127.476016) (xy 160.338073 127.475968) (xy 160.359326 127.475894) (xy 160.371022 127.476398) (xy 160.37329 127.476601) (xy 160.380709 127.477267) (xy 160.400367 127.475988) (xy 160.408073 127.475725) (xy 160.462624 127.475534) (xy 160.471229 127.472985) (xy 160.480114 127.471681) (xy 160.480185 127.472163) (xy 160.492261 127.470009) (xy 160.544966 127.46658) (xy 160.556858 127.466369) (xy 160.600561 127.467664) (xy 160.656975 127.452965) (xy 160.662818 127.45159) (xy 160.663342 127.45148) (xy 160.694198 127.444993) (xy 160.711094 127.441441) (xy 160.711095 127.441441) (xy 160.719874 127.439595) (xy 160.727785 127.435358) (xy 160.730279 127.434449) (xy 160.741642 127.430906) (xy 160.742463 127.430692) (xy 160.805589 127.430579) (xy 160.870975 127.447373) (xy 160.873729 127.448114) (xy 160.896203 127.454432) (xy 160.896209 127.454433) (xy 160.900523 127.455646) (xy 160.904861 127.456221) (xy 160.909409 127.457273) (xy 160.909758 127.457334) (xy 160.914475 127.458546) (xy 160.919324 127.459018) (xy 160.919326 127.459018) (xy 160.930297 127.460085) (xy 160.942042 127.461227) (xy 160.946362 127.461723) (xy 160.979355 127.466097) (xy 161.000518 127.468903) (xy 161.00052 127.468903) (xy 161.009414 127.470082) (xy 161.016426 127.469003) (xy 161.024099 127.469316) (xy 161.045473 127.471287) (xy 161.045897 127.471328) (xy 161.070571 127.473728) (xy 161.070573 127.473728) (xy 161.072916 127.473956) (xy 161.073909 127.473911) (xy 161.078061 127.474294) (xy 161.110152 127.472287) (xy 161.112221 127.472175) (xy 161.131657 127.471294) (xy 161.142429 127.471854) (xy 161.142429 127.4718) (xy 161.151405 127.471861) (xy 161.160283 127.473195) (xy 161.200939 127.467656) (xy 161.23588 127.468721) (xy 161.235966 127.468002) (xy 161.240803 127.468581) (xy 161.245575 127.46953) (xy 161.250436 127.469734) (xy 161.250438 127.469734) (xy 161.257215 127.470018) (xy 161.268151 127.470955) (xy 161.304991 127.475736) (xy 161.304995 127.475736) (xy 161.313895 127.476891) (xy 161.322762 127.475501) (xy 161.323101 127.475497) (xy 161.341992 127.474026) (xy 161.350185 127.474026) (xy 161.355462 127.474137) (xy 161.378909 127.47512) (xy 161.383378 127.47467) (xy 161.384613 127.474634) (xy 161.388795 127.474848) (xy 161.388795 127.474834) (xy 161.428883 127.474399) (xy 161.462613 127.474033) (xy 161.46398 127.474026) (xy 161.493634 127.474026) (xy 161.495689 127.473731) (xy 161.497595 127.473653) (xy 161.524135 127.473365) (xy 161.527923 127.473627) (xy 161.527923 127.473608) (xy 161.528856 127.473614) (xy 161.562696 127.47382) (xy 161.563501 127.473854) (xy 161.564606 127.474026) (xy 161.595949 127.474026) (xy 161.596718 127.474028) (xy 161.671049 127.474482) (xy 161.671052 127.474482) (xy 161.675012 127.474506) (xy 161.676365 127.474119) (xy 161.677731 127.474026) (xy 161.779765 127.474026) (xy 161.780533 127.474028) (xy 161.858828 127.474506) (xy 161.867459 127.472039) (xy 161.867461 127.472039) (xy 161.887622 127.466277) (xy 161.904383 127.462699) (xy 161.905312 127.462566) (xy 161.934025 127.458454) (xy 161.942193 127.45474) (xy 161.942197 127.454739) (xy 161.95771 127.447685) (xy 161.975233 127.441237) (xy 162.000255 127.434086) (xy 162.025582 127.418106) (xy 162.040658 127.409971) (xy 162.045443 127.407795) (xy 162.115733 127.397803) (xy 162.149075 127.407485) (xy 162.150932 127.408316) (xy 162.154886 127.410435) (xy 162.159095 127.41197) (xy 162.159097 127.411971) (xy 162.160288 127.412405) (xy 162.162008 127.413032) (xy 162.172432 127.417374) (xy 162.175131 127.418643) (xy 162.175134 127.418644) (xy 162.17957 127.420729) (xy 162.184775 127.423943) (xy 162.209009 127.430613) (xy 162.218729 127.433718) (xy 162.228423 127.437253) (xy 162.258082 127.448069) (xy 162.267042 127.448654) (xy 162.270302 127.44934) (xy 162.280535 127.450772) (xy 162.28295 127.45148) (xy 162.286099 127.451933) (xy 162.288789 127.452593) (xy 162.289049 127.452643) (xy 162.293746 127.453936) (xy 162.318249 127.456745) (xy 162.322958 127.457285) (xy 162.326535 127.457747) (xy 162.376029 127.464862) (xy 162.375785 127.466557) (xy 162.380176 127.466365) (xy 162.382691 127.467276) (xy 162.440624 127.470936) (xy 162.446982 127.471501) (xy 162.466627 127.473753) (xy 162.471111 127.473627) (xy 162.471118 127.473627) (xy 162.473631 127.473556) (xy 162.473728 127.473553) (xy 162.485223 127.473754) (xy 162.49549 127.474403) (xy 162.500325 127.47396) (xy 162.500332 127.47396) (xy 162.514555 127.472657) (xy 162.522504 127.472182) (xy 162.538973 127.471719) (xy 162.576428 127.470665) (xy 162.581973 127.468873) (xy 162.58936 127.468217) (xy 162.593835 127.468828) (xy 162.602708 127.467497) (xy 162.602711 127.467497) (xy 162.634693 127.462699) (xy 162.649086 127.46054) (xy 162.656238 127.459676) (xy 162.673947 127.458054) (xy 162.678299 127.457018) (xy 162.678308 127.457017) (xy 162.682901 127.455924) (xy 162.693368 127.453898) (xy 162.700791 127.452784) (xy 162.700796 127.452783) (xy 162.705608 127.452061) (xy 162.721931 127.446952) (xy 162.730402 127.444621) (xy 162.772075 127.434705) (xy 162.780808 127.432627) (xy 162.788608 127.428181) (xy 162.796955 127.424887) (xy 162.797041 127.425106) (xy 162.807252 127.420603) (xy 162.841728 127.409458) (xy 162.842847 127.409102) (xy 162.845767 127.408188) (xy 162.871015 127.400285) (xy 162.872598 127.399529) (xy 162.87287 127.399432) (xy 162.873324 127.399245) (xy 162.877946 127.397751) (xy 162.905902 127.383653) (xy 162.908199 127.382525) (xy 162.932035 127.37114) (xy 162.938682 127.368198) (xy 162.94109 127.367214) (xy 162.941096 127.367211) (xy 162.945608 127.365368) (xy 162.949781 127.362854) (xy 162.954131 127.360671) (xy 162.954161 127.360732) (xy 162.956804 127.359309) (xy 162.970133 127.352943) (xy 162.974264 127.349245) (xy 162.975007 127.348801) (xy 162.979008 127.346784) (xy 162.991688 127.337934) (xy 162.998757 127.333344) (xy 163.020175 127.32044) (xy 163.021321 127.319758) (xy 163.051333 127.302126) (xy 163.051341 127.302121) (xy 163.055534 127.299657) (xy 163.059276 127.296596) (xy 163.059302 127.296575) (xy 163.063294 127.293794) (xy 163.063541 127.294149) (xy 163.069797 127.289996) (xy 163.069436 127.289474) (xy 163.076815 127.284365) (xy 163.084847 127.280352) (xy 163.123439 127.244556) (xy 163.129455 127.23932) (xy 163.136096 127.2339) (xy 163.143043 127.22823) (xy 163.143357 127.227773) (xy 163.150432 127.220069) (xy 163.157547 127.212918) (xy 163.167712 127.20349) (xy 163.170479 127.199987) (xy 163.176779 127.193674) (xy 163.190266 127.181164) (xy 163.190269 127.18116) (xy 163.196848 127.175058) (xy 163.20145 127.167353) (xy 163.206487 127.161134) (xy 163.206365 127.16105) (xy 163.211438 127.153645) (xy 163.21751 127.147034) (xy 163.233905 127.113811) (xy 163.238725 127.104955) (xy 163.252309 127.082214) (xy 163.254809 127.078029) (xy 163.255757 127.075683) (xy 163.256992 127.073388) (xy 163.274691 127.04292) (xy 163.276793 127.034398) (xy 163.27748 127.032976) (xy 163.279974 127.026621) (xy 163.284401 127.01882) (xy 163.289333 126.997921) (xy 163.294444 126.976258) (xy 163.300554 126.950365) (xy 163.300843 126.949167) (xy 163.302348 126.943067) (xy 163.317691 126.880849) (xy 163.317579 126.878219) (xy 163.318182 126.875662) (xy 163.316956 126.852432) (xy 163.314471 126.805378) (xy 163.31441 126.804104) (xy 163.31432 126.801994) (xy 163.319124 126.764219) (xy 163.320746 126.760756) (xy 163.32527 126.731496) (xy 163.329071 126.714654) (xy 163.337555 126.686286) (xy 163.337768 126.65142) (xy 163.337811 126.650382) (xy 163.338015 126.64906) (xy 163.337996 126.630427) (xy 163.337982 126.616952) (xy 163.337984 126.616053) (xy 163.338427 126.543522) (xy 163.338427 126.543517) (xy 163.338453 126.539198) (xy 163.338007 126.537639) (xy 163.337982 126.537292) (xy 163.337945 126.531117) (xy 163.338154 126.523069) (xy 163.338273 126.521027) (xy 163.338746 126.512866) (xy 163.33901 126.50831) (xy 163.33901 126.508308) (xy 163.339291 126.503459) (xy 163.338226 126.492467) (xy 163.337842 126.484977) (xy 163.337841 126.484462) (xy 163.337801 126.484182) (xy 163.337642 126.481092) (xy 163.337621 126.477641) (xy 163.337594 126.473162) (xy 163.336933 126.468735) (xy 163.336932 126.468728) (xy 163.334558 126.452841) (xy 163.333762 126.446369) (xy 163.331246 126.420392) (xy 163.331357 126.39503) (xy 163.331356 126.395007) (xy 163.3323 126.386083) (xy 163.330701 126.377253) (xy 163.330701 126.377249) (xy 163.328422 126.364665) (xy 163.335965 126.294071) (xy 163.380477 126.238761) (xy 163.449656 126.216559) (xy 163.456316 126.217421) (xy 163.506602 126.209524) (xy 163.515664 126.208436) (xy 163.528721 126.207347) (xy 163.533093 126.206344) (xy 163.533095 126.206344) (xy 163.536382 126.20559) (xy 163.542384 126.204213) (xy 163.550995 126.202552) (xy 163.567971 126.199886) (xy 163.5726 126.198402) (xy 163.572609 126.1984) (xy 163.579776 126.196102) (xy 163.590051 126.193281) (xy 163.635785 126.182792) (xy 163.64362 126.17841) (xy 163.652 126.175182) (xy 163.652712 126.177032) (xy 163.670835 126.17092) (xy 163.670693 126.170432) (xy 163.679314 126.16793) (xy 163.688205 126.166676) (xy 163.722318 126.151251) (xy 163.727337 126.149111) (xy 163.731232 126.147549) (xy 163.735509 126.146178) (xy 163.760196 126.134177) (xy 163.763361 126.132693) (xy 163.786752 126.122117) (xy 163.786755 126.122115) (xy 163.79119 126.12011) (xy 163.795265 126.117445) (xy 163.797578 126.116176) (xy 163.803097 126.113323) (xy 163.834299 126.098155) (xy 163.848472 126.085293) (xy 163.862895 126.074002) (xy 163.906196 126.04492) (xy 163.907448 126.04409) (xy 163.932235 126.027882) (xy 163.934015 126.026316) (xy 163.935121 126.025525) (xy 163.935393 126.02531) (xy 163.939442 126.022591) (xy 163.961867 126.001871) (xy 163.964158 125.999806) (xy 163.966209 125.998003) (xy 164.004746 125.964112) (xy 164.015652 125.955538) (xy 164.025367 125.948731) (xy 164.02537 125.948728) (xy 164.032718 125.94358) (xy 164.042626 125.931206) (xy 164.062193 125.906767) (xy 164.077323 125.88787) (xy 164.077739 125.887355) (xy 164.122658 125.832111) (xy 164.123422 125.830296) (xy 164.124652 125.828759) (xy 164.145169 125.778941) (xy 164.151741 125.762984) (xy 164.152104 125.762111) (xy 164.176412 125.704324) (xy 164.176413 125.704321) (xy 164.179691 125.696528) (xy 164.179914 125.694572) (xy 164.180664 125.692752) (xy 164.18821 125.621951) (xy 164.188314 125.621012) (xy 164.190951 125.597921) (xy 164.196379 125.550388) (xy 164.196044 125.548448) (xy 164.196253 125.54649) (xy 164.192843 125.527568) (xy 164.186399 125.49181) (xy 164.188685 125.450894) (xy 164.185893 125.450477) (xy 164.187221 125.441595) (xy 164.189792 125.432997) (xy 164.189897 125.415883) (xy 164.189963 125.404911) (xy 164.190004 125.398225) (xy 164.190038 125.39742) (xy 164.19021 125.396315) (xy 164.19021 125.364972) (xy 164.190212 125.364203) (xy 164.190666 125.289872) (xy 164.190666 125.289869) (xy 164.19069 125.285909) (xy 164.190303 125.284556) (xy 164.19021 125.28319) (xy 164.19021 125.278838) (xy 164.190626 125.271849) (xy 164.190528 125.271845) (xy 164.190731 125.266974) (xy 164.191308 125.262143) (xy 164.191096 125.256169) (xy 164.19029 125.233525) (xy 164.19021 125.229046) (xy 164.19021 125.203561) (xy 164.189574 125.199123) (xy 164.189256 125.194651) (xy 164.189586 125.194627) (xy 164.188781 125.177335) (xy 164.18915 125.169848) (xy 164.18939 125.16498) (xy 164.187529 125.147355) (xy 164.186912 125.138607) (xy 164.186552 125.12851) (xy 164.186393 125.124032) (xy 164.18398 125.110603) (xy 164.182691 125.101556) (xy 164.182167 125.096595) (xy 164.180234 125.078296) (xy 164.179806 125.073277) (xy 164.178324 125.050545) (xy 164.178324 125.050544) (xy 164.178007 125.045684) (xy 164.176947 125.040934) (xy 164.176345 125.036735) (xy 164.176168 125.036767) (xy 164.175382 125.032353) (xy 164.174911 125.027895) (xy 164.174674 125.026957) (xy 164.174834 125.022522) (xy 164.17056 125.005671) (xy 164.158667 124.95879) (xy 164.157825 124.955256) (xy 164.153091 124.934045) (xy 164.153091 124.934044) (xy 164.152114 124.929668) (xy 164.151043 124.926839) (xy 164.147952 124.913638) (xy 164.146093 124.902771) (xy 164.130096 124.869983) (xy 164.125493 124.859331) (xy 164.116411 124.835333) (xy 164.116409 124.835329) (xy 164.113232 124.826935) (xy 164.107826 124.819769) (xy 164.107444 124.819077) (xy 164.100459 124.808618) (xy 164.098673 124.805578) (xy 164.096534 124.801193) (xy 164.085579 124.785464) (xy 164.081277 124.778852) (xy 164.053278 124.732681) (xy 164.051717 124.731253) (xy 164.046125 124.722404) (xy 164.045868 124.722573) (xy 164.040933 124.715074) (xy 164.037112 124.706953) (xy 164.031166 124.700232) (xy 164.031164 124.700229) (xy 164.012113 124.678695) (xy 164.00847 124.674387) (xy 164.006614 124.672089) (xy 164.004053 124.668413) (xy 164.001001 124.665141) (xy 164.000997 124.665136) (xy 163.985025 124.648013) (xy 163.982825 124.645592) (xy 163.962221 124.622303) (xy 163.95847 124.619195) (xy 163.957406 124.618164) (xy 163.952914 124.613587) (xy 163.935253 124.594652) (xy 163.935251 124.59465) (xy 163.929129 124.588087) (xy 163.916986 124.580879) (xy 163.892799 124.560318) (xy 163.892456 124.560701) (xy 163.885773 124.554707) (xy 163.880008 124.547826) (xy 163.845974 124.525093) (xy 163.838534 124.519548) (xy 163.836342 124.51798) (xy 163.832889 124.515118) (xy 163.81259 124.502679) (xy 163.808451 124.500029) (xy 163.790079 124.487757) (xy 163.790077 124.487756) (xy 163.786023 124.485048) (xy 163.781599 124.482996) (xy 163.777363 124.480617) (xy 163.777378 124.480591) (xy 163.770754 124.47704) (xy 163.746888 124.462414) (xy 163.746883 124.462412) (xy 163.739232 124.457723) (xy 163.730569 124.455369) (xy 163.722328 124.451812) (xy 163.722463 124.4515) (xy 163.716384 124.448929) (xy 163.716079 124.449664) (xy 163.691573 124.439511) (xy 163.659536 124.426238) (xy 163.654738 124.424132) (xy 163.638326 124.416517) (xy 163.63832 124.416515) (xy 163.63426 124.414631) (xy 163.629969 124.41334) (xy 163.629095 124.413008) (xy 163.618399 124.409195) (xy 163.616157 124.408266) (xy 163.616154 124.408265) (xy 163.611662 124.406404) (xy 163.599812 124.403525) (xy 163.590207 124.400652) (xy 163.583299 124.397008) (xy 163.570102 124.394321) (xy 163.565348 124.393353) (xy 163.554201 124.390549) (xy 163.538353 124.385782) (xy 163.537662 124.385574) (xy 163.529071 124.38299) (xy 163.520098 124.382921) (xy 163.512123 124.381716) (xy 163.501206 124.37957) (xy 163.498533 124.378921) (xy 163.498528 124.37892) (xy 163.494176 124.377863) (xy 163.489719 124.377433) (xy 163.485297 124.376687) (xy 163.485298 124.376682) (xy 163.478363 124.375645) (xy 163.472548 124.374461) (xy 163.467689 124.374235) (xy 163.467686 124.374235) (xy 163.449293 124.373381) (xy 163.443055 124.372936) (xy 163.396368 124.368438) (xy 163.384838 124.367327) (xy 163.377615 124.368704) (xy 163.351285 124.36694) (xy 163.335215 124.364017) (xy 163.335212 124.364017) (xy 163.326379 124.36241) (xy 163.31745 124.363347) (xy 163.317449 124.363347) (xy 163.300625 124.365112) (xy 163.255876 124.369808) (xy 163.254882 124.369908) (xy 163.184468 124.376679) (xy 163.176133 124.380012) (xy 163.176131 124.380012) (xy 163.151937 124.389685) (xy 163.137442 124.394484) (xy 163.122442 124.398459) (xy 163.107423 124.401475) (xy 163.081718 124.405027) (xy 163.081716 124.405027) (xy 163.072826 124.406256) (xy 163.064637 124.409931) (xy 163.056006 124.412409) (xy 163.0554 124.410298) (xy 162.997187 124.418281) (xy 162.979258 124.414228) (xy 162.978326 124.413944) (xy 162.971792 124.411569) (xy 162.971784 124.411591) (xy 162.967551 124.410138) (xy 162.963418 124.408382) (xy 162.939478 124.402027) (xy 162.935162 124.400796) (xy 162.916362 124.39507) (xy 162.913099 124.394076) (xy 162.913096 124.394075) (xy 162.908446 124.392659) (xy 162.903634 124.391975) (xy 162.898873 124.390918) (xy 162.898893 124.390828) (xy 162.892076 124.389443) (xy 162.857251 124.380199) (xy 162.848281 124.380424) (xy 162.848277 124.380423) (xy 162.842697 124.380563) (xy 162.808009 124.375293) (xy 162.807954 124.37559) (xy 162.799128 124.373944) (xy 162.790627 124.371065) (xy 162.781662 124.370688) (xy 162.781659 124.370687) (xy 162.757904 124.369687) (xy 162.74843 124.369289) (xy 162.735997 124.368145) (xy 162.731309 124.367479) (xy 162.714898 124.367496) (xy 162.708793 124.367502) (xy 162.703366 124.367391) (xy 162.696247 124.367092) (xy 162.677703 124.366311) (xy 162.672859 124.366858) (xy 162.670605 124.366937) (xy 162.659744 124.367553) (xy 162.649915 124.367563) (xy 162.634417 124.36758) (xy 162.566277 124.347651) (xy 162.519727 124.294044) (xy 162.509548 124.223781) (xy 162.537549 124.160844) (xy 162.540029 124.157873) (xy 162.543145 124.154638) (xy 162.545133 124.151879) (xy 162.554412 124.142446) (xy 162.55431 124.142345) (xy 162.557741 124.138888) (xy 162.561422 124.135711) (xy 162.565001 124.1315) (xy 162.571724 124.123588) (xy 162.572216 124.123084) (xy 162.572785 124.122708) (xy 162.58173 124.112124) (xy 162.585424 124.107945) (xy 162.595087 124.097491) (xy 162.595092 124.097485) (xy 162.598131 124.094197) (xy 162.600674 124.090511) (xy 162.601825 124.089073) (xy 162.60767 124.081429) (xy 162.626681 124.058932) (xy 162.634041 124.051242) (xy 162.635396 124.049577) (xy 162.641995 124.043485) (xy 162.66829 123.999698) (xy 162.669697 123.997412) (xy 162.696958 123.954134) (xy 162.696961 123.954128) (xy 162.701743 123.946536) (xy 162.702877 123.942557) (xy 162.70466 123.939136) (xy 162.717721 123.917386) (xy 162.719995 123.90871) (xy 162.719999 123.9087) (xy 162.724296 123.892303) (xy 162.73037 123.874606) (xy 162.737052 123.859018) (xy 162.737053 123.859016) (xy 162.740588 123.850768) (xy 162.744196 123.820953) (xy 162.747397 123.80416) (xy 162.748417 123.800267) (xy 162.74939 123.796762) (xy 162.752401 123.786506) (xy 162.752401 123.786504) (xy 162.752402 123.786501) (xy 162.752425 123.786508) (xy 162.752585 123.78511) (xy 162.752402 123.785062) (xy 162.755013 123.775102) (xy 162.754282 123.749178) (xy 162.755145 123.730495) (xy 162.758262 123.704742) (xy 162.754222 123.680338) (xy 162.752532 123.659639) (xy 162.752544 123.648398) (xy 162.752544 123.648395) (xy 162.752553 123.639417) (xy 162.742838 123.606069) (xy 162.739502 123.591408) (xy 162.737945 123.582) (xy 162.734242 123.559627) (xy 162.723385 123.537067) (xy 162.721362 123.532342) (xy 162.720943 123.530904) (xy 162.718875 123.526489) (xy 162.717508 123.522863) (xy 162.714183 123.514572) (xy 162.702141 123.478819) (xy 162.694215 123.467463) (xy 162.688462 123.458424) (xy 162.683515 123.449865) (xy 162.678495 123.440247) (xy 162.676465 123.435913) (xy 162.674563 123.431851) (xy 162.664082 123.41586) (xy 162.660394 123.409874) (xy 162.659892 123.409006) (xy 162.656981 123.40318) (xy 162.656838 123.403254) (xy 162.654591 123.398938) (xy 162.65268 123.394452) (xy 162.637113 123.369469) (xy 162.634973 123.365905) (xy 162.631629 123.36012) (xy 162.621808 123.343132) (xy 162.619035 123.339606) (xy 162.61652 123.335893) (xy 162.616583 123.33585) (xy 162.612852 123.330532) (xy 162.609873 123.325752) (xy 162.607174 123.321134) (xy 162.605447 123.3173) (xy 162.587165 123.289258) (xy 162.585815 123.287141) (xy 162.5846 123.28519) (xy 162.577484 123.27377) (xy 162.572141 123.265194) (xy 162.572137 123.265189) (xy 162.569769 123.261388) (xy 162.567071 123.258182) (xy 162.563942 123.253638) (xy 162.552584 123.236217) (xy 162.550506 123.232808) (xy 162.549035 123.229683) (xy 162.546313 123.225656) (xy 162.54631 123.225651) (xy 162.529611 123.200948) (xy 162.528514 123.199297) (xy 162.511234 123.172793) (xy 162.508967 123.170208) (xy 162.506555 123.166841) (xy 162.489249 123.141241) (xy 162.488403 123.139891) (xy 162.48769 123.138407) (xy 162.466405 123.10744) (xy 162.465861 123.106642) (xy 162.45708 123.093652) (xy 162.435501 123.026014) (xy 162.453916 122.957447) (xy 162.506477 122.909721) (xy 162.538766 122.89915) (xy 162.618377 122.884568) (xy 162.618857 122.884498) (xy 162.619414 122.884482) (xy 162.649428 122.878903) (xy 162.652621 122.878413) (xy 162.655575 122.878285) (xy 162.685086 122.872366) (xy 162.68707 122.871986) (xy 162.693689 122.870773) (xy 162.694221 122.870594) (xy 162.694695 122.870489) (xy 162.70313 122.868921) (xy 162.719491 122.865881) (xy 162.719495 122.86588) (xy 162.723896 122.865062) (xy 162.726681 122.864121) (xy 162.729926 122.863373) (xy 162.739134 122.861526) (xy 162.74571 122.860387) (xy 162.745904 122.860359) (xy 162.750763 122.860029) (xy 162.782256 122.852914) (xy 162.785187 122.852289) (xy 162.791049 122.851113) (xy 162.809352 122.847443) (xy 162.809359 122.847441) (xy 162.813752 122.84656) (xy 162.817896 122.845093) (xy 162.830305 122.842738) (xy 162.830257 122.842481) (xy 162.835044 122.841594) (xy 162.839884 122.841079) (xy 162.866715 122.833928) (xy 162.871397 122.832776) (xy 162.891027 122.828341) (xy 162.8954 122.827353) (xy 162.899589 122.825755) (xy 162.90233 122.824927) (xy 162.911044 122.822112) (xy 162.915503 122.820923) (xy 162.920222 122.819764) (xy 162.922828 122.819177) (xy 162.926236 122.818636) (xy 162.931829 122.817294) (xy 162.940765 122.816459) (xy 162.949107 122.813149) (xy 162.949109 122.813149) (xy 162.953203 122.811525) (xy 162.958637 122.809513) (xy 162.959745 122.809131) (xy 162.964064 122.80798) (xy 162.968175 122.806229) (xy 162.96818 122.806227) (xy 162.988743 122.797467) (xy 162.991655 122.79627) (xy 163.034865 122.779126) (xy 163.035033 122.779059) (xy 163.037686 122.778011) (xy 163.042707 122.776027) (xy 163.043491 122.778011) (xy 163.043581 122.777996) (xy 163.042783 122.775984) (xy 163.069147 122.765524) (xy 163.077487 122.762215) (xy 163.096307 122.747543) (xy 163.099188 122.745297) (xy 163.114212 122.735231) (xy 163.130316 122.726042) (xy 163.13032 122.726039) (xy 163.138114 122.721592) (xy 163.146143 122.713276) (xy 163.157868 122.70113) (xy 163.171049 122.689272) (xy 163.178626 122.683365) (xy 163.193489 122.671778) (xy 163.198735 122.664493) (xy 163.198738 122.66449) (xy 163.209573 122.649444) (xy 163.221171 122.635561) (xy 163.234043 122.622229) (xy 163.234046 122.622225) (xy 163.240278 122.61577) (xy 163.256667 122.584545) (xy 163.257979 122.582226) (xy 163.259538 122.580062) (xy 163.261738 122.575727) (xy 163.264272 122.571565) (xy 163.2644 122.571643) (xy 163.269943 122.562427) (xy 163.285954 122.539681) (xy 163.293472 122.517648) (xy 163.301151 122.499789) (xy 163.308635 122.48553) (xy 163.313079 122.463478) (xy 163.317342 122.447696) (xy 163.322454 122.432713) (xy 163.322506 122.432414) (xy 163.322579 122.432171) (xy 163.322907 122.431206) (xy 163.333593 122.399744) (xy 163.334593 122.376465) (xy 163.336998 122.35948) (xy 163.336651 122.359424) (xy 163.337432 122.354621) (xy 163.338582 122.349892) (xy 163.33899 122.345049) (xy 163.338992 122.345035) (xy 163.339514 122.338834) (xy 163.340977 122.327564) (xy 163.342359 122.319723) (xy 163.342637 122.311063) (xy 163.343017 122.299257) (xy 163.343396 122.29274) (xy 163.343944 122.286228) (xy 163.344966 122.279131) (xy 163.344887 122.279121) (xy 163.345493 122.274288) (xy 163.346471 122.269517) (xy 163.34782 122.241205) (xy 163.348121 122.236628) (xy 163.349863 122.215947) (xy 163.349863 122.215942) (xy 163.350239 122.211478) (xy 163.349978 122.206997) (xy 163.350035 122.202525) (xy 163.350043 122.202525) (xy 163.350005 122.19534) (xy 163.350358 122.18794) (xy 163.35078 122.182369) (xy 163.35156 122.178102) (xy 163.352436 122.144914) (xy 163.352535 122.142244) (xy 163.353754 122.116659) (xy 163.353754 122.116656) (xy 163.353967 122.112183) (xy 163.353559 122.107879) (xy 163.353567 122.102039) (xy 163.354057 122.083481) (xy 163.354267 122.079819) (xy 163.354797 122.076643) (xy 163.354953 122.062338) (xy 163.355178 122.041565) (xy 163.355215 122.039612) (xy 163.355937 122.012244) (xy 163.355937 122.012241) (xy 163.356055 122.007763) (xy 163.355684 122.004573) (xy 163.35562 122.000826) (xy 163.355901 121.97489) (xy 163.356033 121.971796) (xy 163.356464 121.968975) (xy 163.356363 121.933331) (xy 163.35637 121.9317) (xy 163.356571 121.913099) (xy 163.356723 121.89913) (xy 163.356351 121.896316) (xy 163.356251 121.893136) (xy 163.356174 121.865857) (xy 163.356268 121.862559) (xy 163.356675 121.859612) (xy 163.356431 121.845336) (xy 163.356067 121.82413) (xy 163.35605 121.822327) (xy 163.356041 121.818884) (xy 163.355987 121.800011) (xy 163.355972 121.794582) (xy 163.355972 121.794578) (xy 163.355959 121.790098) (xy 163.355529 121.787155) (xy 163.355376 121.783795) (xy 163.355282 121.778271) (xy 163.354984 121.760906) (xy 163.355039 121.756506) (xy 163.355478 121.752849) (xy 163.354279 121.718593) (xy 163.35422 121.716352) (xy 163.353763 121.689652) (xy 163.353763 121.689647) (xy 163.353686 121.685178) (xy 163.353104 121.681555) (xy 163.352824 121.677015) (xy 163.352407 121.6651) (xy 163.352344 121.658814) (xy 163.352382 121.656277) (xy 163.352829 121.651437) (xy 163.352527 121.646592) (xy 163.352527 121.646575) (xy 163.350883 121.620235) (xy 163.350715 121.616794) (xy 163.350672 121.61555) (xy 163.349731 121.588673) (xy 163.34894 121.584256) (xy 163.348505 121.580175) (xy 163.34804 121.574669) (xy 163.347892 121.572296) (xy 163.347734 121.559794) (xy 163.347794 121.558188) (xy 163.348034 121.55169) (xy 163.346013 121.534565) (xy 163.345176 121.522609) (xy 163.345117 121.519954) (xy 163.346191 121.511039) (xy 163.34472 121.502182) (xy 163.34472 121.502176) (xy 163.336467 121.452482) (xy 163.335632 121.446603) (xy 163.333706 121.430279) (xy 163.333706 121.430277) (xy 163.33318 121.425822) (xy 163.331676 121.420163) (xy 163.329157 121.408462) (xy 163.328475 121.404356) (xy 163.328473 121.404349) (xy 163.327675 121.399542) (xy 163.32495 121.391293) (xy 163.320008 121.370608) (xy 163.31985 121.369559) (xy 163.319314 121.366013) (xy 163.318418 121.360086) (xy 163.318417 121.360083) (xy 163.317076 121.351211) (xy 163.313299 121.343073) (xy 163.313298 121.343069) (xy 163.313021 121.342473) (xy 163.310881 121.336558) (xy 163.310789 121.336597) (xy 163.307277 121.328335) (xy 163.304972 121.319661) (xy 163.300326 121.311984) (xy 163.300083 121.311412) (xy 163.29607 121.304115) (xy 163.292642 121.297218) (xy 163.283944 121.279719) (xy 163.282532 121.276779) (xy 163.255155 121.21779) (xy 163.250547 121.212526) (xy 163.247432 121.206258) (xy 163.216442 121.172708) (xy 163.214288 121.16995) (xy 163.214118 121.170099) (xy 163.208209 121.163346) (xy 163.203313 121.155818) (xy 163.196501 121.149967) (xy 163.193095 121.146074) (xy 163.18773 121.140759) (xy 163.16607 121.116013) (xy 163.158277 121.10711) (xy 163.152373 121.103348) (xy 163.147626 121.098209) (xy 163.139931 121.093591) (xy 163.139929 121.093589) (xy 163.119027 121.081044) (xy 163.101766 121.068588) (xy 163.098545 121.065821) (xy 163.098544 121.06582) (xy 163.091737 121.059973) (xy 163.083561 121.056271) (xy 163.08356 121.05627) (xy 163.068415 121.049412) (xy 163.065369 121.047912) (xy 163.062958 121.046376) (xy 163.058491 121.044419) (xy 163.056899 121.04357) (xy 163.051358 121.040431) (xy 163.021508 121.022516) (xy 163.012828 121.020244) (xy 163.012827 121.020243) (xy 162.996334 121.015925) (xy 162.990343 121.014059) (xy 162.988778 121.01335) (xy 162.985448 121.012426) (xy 162.985152 121.012296) (xy 162.947975 121.001983) (xy 162.938821 120.998881) (xy 162.935749 120.997912) (xy 162.931228 120.996093) (xy 162.906246 120.990291) (xy 162.901132 120.988988) (xy 162.879304 120.982933) (xy 162.879196 120.982935) (xy 162.877915 120.982579) (xy 162.873462 120.982003) (xy 162.869055 120.981111) (xy 162.8691 120.980888) (xy 162.860489 120.979072) (xy 162.860003 120.978887) (xy 162.82656 120.971764) (xy 162.824336 120.971269) (xy 162.794158 120.96426) (xy 162.790408 120.963937) (xy 162.785778 120.963078) (xy 162.776352 120.96107) (xy 162.773822 120.960444) (xy 162.771486 120.959585) (xy 162.766718 120.958628) (xy 162.766716 120.958628) (xy 162.736028 120.952472) (xy 162.734563 120.952169) (xy 162.706566 120.946206) (xy 162.706563 120.946206) (xy 162.702189 120.945274) (xy 162.699711 120.945106) (xy 162.697066 120.944657) (xy 162.672484 120.939726) (xy 162.670452 120.939247) (xy 162.668508 120.938553) (xy 162.632281 120.931656) (xy 162.631172 120.931439) (xy 162.598015 120.924788) (xy 162.595948 120.924673) (xy 162.593886 120.924346) (xy 162.559437 120.917787) (xy 162.55873 120.917625) (xy 162.557927 120.917342) (xy 162.537657 120.913566) (xy 162.474351 120.881427) (xy 162.438471 120.820164) (xy 162.441408 120.749228) (xy 162.456721 120.718579) (xy 162.458135 120.716511) (xy 162.459016 120.715315) (xy 162.460073 120.714173) (xy 162.462378 120.710749) (xy 162.481034 120.683034) (xy 162.481551 120.682271) (xy 162.498811 120.657031) (xy 162.498814 120.657025) (xy 162.501103 120.653679) (xy 162.501788 120.652288) (xy 162.502592 120.651007) (xy 162.503574 120.649549) (xy 162.519396 120.626044) (xy 162.520751 120.624169) (xy 162.52227 120.622492) (xy 162.531364 120.608663) (xy 162.542334 120.591981) (xy 162.543084 120.590853) (xy 162.559272 120.566805) (xy 162.559274 120.566801) (xy 162.561773 120.563089) (xy 162.562754 120.561059) (xy 162.563992 120.559047) (xy 162.573281 120.544922) (xy 162.575255 120.542115) (xy 162.577283 120.539809) (xy 162.596287 120.509958) (xy 162.597245 120.508479) (xy 162.612433 120.485385) (xy 162.612441 120.485371) (xy 162.614899 120.481633) (xy 162.615702 120.479925) (xy 162.620963 120.471597) (xy 162.621904 120.470269) (xy 162.625018 120.466524) (xy 162.636114 120.447981) (xy 162.641015 120.439791) (xy 162.642846 120.436826) (xy 162.655476 120.416987) (xy 162.655479 120.416981) (xy 162.657887 120.413199) (xy 162.658923 120.410908) (xy 162.660855 120.407778) (xy 162.664693 120.403681) (xy 162.668746 120.395667) (xy 162.66957 120.394489) (xy 162.675765 120.383918) (xy 162.67598 120.383598) (xy 162.675983 120.383593) (xy 162.678698 120.379554) (xy 162.681841 120.372834) (xy 162.687543 120.3621) (xy 162.687753 120.361685) (xy 162.690054 120.357839) (xy 162.691783 120.353714) (xy 162.691788 120.353705) (xy 162.698885 120.336776) (xy 162.702645 120.328633) (xy 162.704767 120.324438) (xy 162.713079 120.308) (xy 162.72702 120.280433) (xy 162.727021 120.28043) (xy 162.731071 120.272421) (xy 162.737987 120.235194) (xy 162.741316 120.221556) (xy 162.749721 120.193913) (xy 162.749722 120.193909) (xy 162.752331 120.185327) (xy 162.752524 120.167245) (xy 162.754637 120.145578) (xy 162.756299 120.136633) (xy 162.757939 120.127806) (xy 162.756722 120.115765) (xy 162.754129 120.090129) (xy 162.753497 120.076108) (xy 162.753805 120.047218) (xy 162.753901 120.038245) (xy 162.749012 120.02084) (xy 162.744959 119.999453) (xy 162.744043 119.990392) (xy 162.744043 119.990391) (xy 162.74314 119.981463) (xy 162.728907 119.946368) (xy 162.724364 119.933084) (xy 162.716554 119.905278) (xy 162.714127 119.896635) (xy 162.686658 119.852655) (xy 162.679268 119.840823) (xy 162.678283 119.839219) (xy 162.674078 119.832257) (xy 162.667493 119.821354) (xy 162.654823 119.800206) (xy 162.654417 119.799706) (xy 162.652439 119.796431) (xy 162.649784 119.793265) (xy 162.646439 119.788263) (xy 162.644393 119.784986) (xy 162.636207 119.77188) (xy 162.629486 119.765889) (xy 162.629407 119.765818) (xy 162.615071 119.750481) (xy 162.613644 119.748319) (xy 162.607101 119.741121) (xy 162.602532 119.735804) (xy 162.591219 119.72187) (xy 162.591218 119.721869) (xy 162.585585 119.714931) (xy 162.582739 119.712966) (xy 162.580311 119.710416) (xy 162.576543 119.705923) (xy 162.573205 119.702931) (xy 162.570089 119.699711) (xy 162.57031 119.699497) (xy 162.564705 119.693586) (xy 162.564656 119.693514) (xy 162.561319 119.689967) (xy 162.561312 119.689959) (xy 162.540975 119.668346) (xy 162.539542 119.666798) (xy 162.518457 119.643602) (xy 162.515721 119.64134) (xy 162.512679 119.638277) (xy 162.507534 119.63281) (xy 162.506055 119.631129) (xy 162.504799 119.629336) (xy 162.479353 119.602853) (xy 162.478452 119.601904) (xy 162.45551 119.577524) (xy 162.453796 119.576156) (xy 162.452178 119.574572) (xy 162.440423 119.562338) (xy 162.438794 119.560642) (xy 162.437719 119.559443) (xy 162.436759 119.558094) (xy 162.42688 119.547972) (xy 162.410555 119.531247) (xy 162.409869 119.530538) (xy 162.389067 119.508889) (xy 162.389057 119.508879) (xy 162.386076 119.505777) (xy 162.384772 119.504759) (xy 162.383601 119.503633) (xy 162.365782 119.485375) (xy 162.364834 119.484334) (xy 162.363962 119.483127) (xy 162.337381 119.456274) (xy 162.33676 119.455642) (xy 162.315336 119.433692) (xy 162.315334 119.43369) (xy 162.312599 119.430888) (xy 162.311419 119.429981) (xy 162.31039 119.429006) (xy 162.291945 119.410372) (xy 162.29092 119.409263) (xy 162.289978 119.407979) (xy 162.266119 119.384235) (xy 162.263357 119.381486) (xy 162.262688 119.380816) (xy 162.252272 119.370294) (xy 162.238406 119.356285) (xy 162.237141 119.355327) (xy 162.236025 119.354285) (xy 162.220837 119.33917) (xy 162.219464 119.337707) (xy 162.218263 119.336104) (xy 162.214786 119.332709) (xy 162.214779 119.332701) (xy 162.191774 119.310238) (xy 162.190984 119.30946) (xy 162.166994 119.285585) (xy 162.165387 119.284386) (xy 162.163897 119.283019) (xy 162.155928 119.275238) (xy 162.153551 119.272767) (xy 162.151667 119.270328) (xy 162.143727 119.262801) (xy 162.126057 119.246052) (xy 162.124711 119.244757) (xy 162.109558 119.229961) (xy 162.101736 119.222323) (xy 162.100792 119.221633) (xy 162.094709 119.215924) (xy 162.093378 119.214539) (xy 162.090282 119.210777) (xy 162.067761 119.19071) (xy 162.064948 119.188125) (xy 162.045315 119.169514) (xy 162.041658 119.166923) (xy 162.038193 119.164077) (xy 162.038271 119.163982) (xy 162.033577 119.160248) (xy 162.03294 119.159681) (xy 162.030146 119.157117) (xy 162.022365 119.149758) (xy 162.014934 119.142729) (xy 162.007454 119.135024) (xy 162.006962 119.134472) (xy 162.00696 119.134471) (xy 162.000988 119.127769) (xy 161.949994 119.095912) (xy 161.945282 119.09282) (xy 161.931138 119.083078) (xy 161.931127 119.083072) (xy 161.927437 119.08053) (xy 161.923419 119.078535) (xy 161.921122 119.077183) (xy 161.915395 119.073601) (xy 161.912379 119.071601) (xy 161.905739 119.067197) (xy 161.902496 119.06619) (xy 161.901862 119.065843) (xy 161.883855 119.054594) (xy 161.883854 119.054593) (xy 161.87624 119.049837) (xy 161.86469 119.046592) (xy 161.863167 119.046164) (xy 161.841212 119.037714) (xy 161.829054 119.031677) (xy 161.787364 119.024246) (xy 161.775394 119.021504) (xy 161.743279 119.012481) (xy 161.743278 119.012481) (xy 161.734633 119.010052) (xy 161.725656 119.010147) (xy 161.725655 119.010147) (xy 161.724034 119.010164) (xy 161.72106 119.010196) (xy 161.697611 119.008247) (xy 161.693088 119.007441) (xy 161.693087 119.007441) (xy 161.684246 119.005865) (xy 161.647123 119.009893) (xy 161.642149 119.010433) (xy 161.629889 119.011161) (xy 161.596526 119.011514) (xy 161.587552 119.011609) (xy 161.578963 119.01422) (xy 161.578961 119.01422) (xy 161.574561 119.015557) (xy 161.551518 119.020266) (xy 161.546946 119.020762) (xy 161.546939 119.020764) (xy 161.538015 119.021732) (xy 161.529718 119.025168) (xy 161.529716 119.025168) (xy 161.498886 119.037933) (xy 161.487337 119.042069) (xy 161.479413 119.044478) (xy 161.475034 119.046591) (xy 161.475031 119.046592) (xy 161.470161 119.048942) (xy 161.460434 119.053635) (xy 161.453891 119.056565) (xy 161.446796 119.059503) (xy 161.402115 119.078004) (xy 161.395121 119.083626) (xy 161.395119 119.083627) (xy 161.38712 119.090057) (xy 161.376296 119.097852) (xy 161.352147 119.11337) (xy 161.349592 119.114969) (xy 161.332883 119.12515) (xy 161.324643 119.130171) (xy 161.322771 119.131714) (xy 161.319681 119.133658) (xy 161.319729 119.133731) (xy 161.299054 119.14733) (xy 161.289156 119.15384) (xy 161.288033 119.15457) (xy 161.267125 119.168006) (xy 161.259876 119.172664) (xy 161.258187 119.174126) (xy 161.256277 119.175467) (xy 161.24741 119.181298) (xy 161.246218 119.182023) (xy 161.244875 119.182646) (xy 161.241593 119.184838) (xy 161.241586 119.184842) (xy 161.213405 119.203662) (xy 161.212797 119.204065) (xy 161.183795 119.223141) (xy 161.18269 119.224118) (xy 161.181541 119.224939) (xy 161.159706 119.23952) (xy 161.15875 119.24011) (xy 161.157663 119.240622) (xy 161.154949 119.242457) (xy 161.154926 119.242471) (xy 161.12588 119.262108) (xy 161.125397 119.262433) (xy 161.096291 119.28187) (xy 161.095388 119.282679) (xy 161.0945 119.283323) (xy 161.067754 119.301405) (xy 161.063747 119.304114) (xy 161.063319 119.30438) (xy 161.062797 119.304628) (xy 161.046712 119.315566) (xy 160.979135 119.33733) (xy 160.910518 119.319103) (xy 160.862647 119.266673) (xy 160.852044 119.234715) (xy 160.848745 119.217215) (xy 160.848744 119.217212) (xy 160.7915 118.913562) (xy 160.789321 118.889449) (xy 160.789336 118.887136) (xy 160.789395 118.877422) (xy 160.777158 118.834605) (xy 160.774488 118.823321) (xy 160.774028 118.820881) (xy 160.774027 118.820877) (xy 160.773196 118.816469) (xy 160.766662 118.797303) (xy 160.764773 118.79127) (xy 160.751442 118.744627) (xy 160.748975 118.735995) (xy 160.744187 118.728407) (xy 160.742521 118.724682) (xy 160.740649 118.721003) (xy 160.73775 118.712501) (xy 160.704672 118.665482) (xy 160.701174 118.660236) (xy 160.670486 118.611597) (xy 160.663755 118.605652) (xy 160.661079 118.602508) (xy 160.658278 118.599534) (xy 160.653117 118.592197) (xy 160.628948 118.572921) (xy 160.608165 118.556345) (xy 160.603324 118.552281) (xy 160.566965 118.520171) (xy 160.566966 118.520171) (xy 160.560237 118.514229) (xy 160.552113 118.510415) (xy 160.548659 118.508146) (xy 160.545133 118.506076) (xy 160.538121 118.500483) (xy 160.498754 118.484358) (xy 160.484919 118.478691) (xy 160.47913 118.476148) (xy 160.435216 118.455531) (xy 160.435215 118.455531) (xy 160.427092 118.451717) (xy 160.418229 118.450337) (xy 160.414321 118.449142) (xy 160.410316 118.448134) (xy 160.402007 118.444731) (xy 160.345804 118.43885) (xy 160.34482 118.438747) (xy 160.338548 118.437931) (xy 160.330719 118.436712) (xy 160.315414 118.434329) (xy 160.309177 118.434329) (xy 160.296064 118.433645) (xy 160.292462 118.433268) (xy 160.266793 118.430582) (xy 160.264643 118.430357) (xy 160.255717 118.429423) (xy 160.246886 118.431032) (xy 160.239993 118.432288) (xy 160.217407 118.434329) (xy 159.50323 118.434329) (xy 159.479132 118.432003) (xy 159.478975 118.431972) (xy 159.467323 118.429702) (xy 159.422975 118.433796) (xy 159.411393 118.434329) (xy 159.404425 118.434329) (xy 159.399995 118.434963) (xy 159.399988 118.434964) (xy 159.384393 118.437198) (xy 159.378111 118.437938) (xy 159.329792 118.442398) (xy 159.329791 118.442398) (xy 159.320856 118.443223) (xy 159.31251 118.446523) (xy 159.308515 118.447477) (xy 159.304576 118.448629) (xy 159.29569 118.449901) (xy 159.28752 118.453616) (xy 159.287519 118.453616) (xy 159.243345 118.473701) (xy 159.237522 118.476173) (xy 159.184071 118.497308) (xy 159.17699 118.502816) (xy 159.173429 118.504849) (xy 159.169959 118.507068) (xy 159.16179 118.510782) (xy 159.154991 118.51664) (xy 159.15499 118.516641) (xy 159.118239 118.548308) (xy 159.113346 118.552315) (xy 159.075044 118.582104) (xy 159.075042 118.582106) (xy 159.067964 118.587611) (xy 159.062717 118.594879) (xy 159.059878 118.597821) (xy 159.05716 118.600936) (xy 159.05036 118.606796) (xy 159.045477 118.61433) (xy 159.045475 118.614332) (xy 159.019089 118.65504) (xy 159.015518 118.660258) (xy 159.001963 118.679035) (xy 158.981868 118.70687) (xy 158.978866 118.715336) (xy 158.976964 118.718963) (xy 158.975242 118.72269) (xy 158.970357 118.730226) (xy 158.954164 118.784373) (xy 158.953889 118.785292) (xy 158.951925 118.791305) (xy 158.945722 118.808795) (xy 158.945719 118.808806) (xy 158.944092 118.813394) (xy 158.943189 118.818185) (xy 158.942937 118.819522) (xy 158.939835 118.832284) (xy 158.930806 118.862476) (xy 158.928212 118.871148) (xy 158.928157 118.880123) (xy 158.928157 118.880125) (xy 158.928114 118.887136) (xy 158.925935 118.909706) (xy 158.893385 119.082372) (xy 158.865186 119.231959) (xy 158.864666 119.234715) (xy 158.832391 119.297951) (xy 158.771051 119.333699) (xy 158.700122 119.33061) (xy 158.670001 119.315568) (xy 158.6565 119.306388) (xy 158.656146 119.306215) (xy 158.65586 119.306035) (xy 158.652704 119.303897) (xy 158.652002 119.303383) (xy 158.651283 119.30272) (xy 158.649047 119.301221) (xy 158.64903 119.301208) (xy 158.619252 119.281239) (xy 158.61877 119.280914) (xy 158.607036 119.272966) (xy 158.589491 119.261083) (xy 158.588618 119.260657) (xy 158.587867 119.260189) (xy 158.562983 119.243502) (xy 158.561979 119.242776) (xy 158.560998 119.241882) (xy 158.529059 119.220751) (xy 158.528845 119.220608) (xy 158.499695 119.20106) (xy 158.498506 119.200488) (xy 158.497435 119.199828) (xy 158.484313 119.191147) (xy 158.482802 119.190072) (xy 158.48141 119.188826) (xy 158.450113 119.168517) (xy 158.449334 119.168006) (xy 158.447158 119.166566) (xy 158.42092 119.149208) (xy 158.420934 119.149187) (xy 158.41566 119.145773) (xy 158.414071 119.144399) (xy 158.409944 119.141821) (xy 158.40994 119.141818) (xy 158.384797 119.126112) (xy 158.382963 119.124944) (xy 158.363371 119.11223) (xy 158.35296 119.104183) (xy 158.349319 119.101702) (xy 158.342692 119.095645) (xy 158.312388 119.080783) (xy 158.311554 119.080358) (xy 158.308298 119.078324) (xy 158.30122 119.075196) (xy 158.296686 119.073083) (xy 158.294201 119.071865) (xy 158.284981 119.067343) (xy 158.281346 119.065487) (xy 158.259107 119.053659) (xy 158.254887 119.052135) (xy 158.250794 119.050319) (xy 158.250835 119.050226) (xy 158.245225 119.047845) (xy 158.218692 119.034833) (xy 158.21869 119.034832) (xy 158.210629 119.030879) (xy 158.193468 119.027908) (xy 158.172173 119.022265) (xy 158.164237 119.019399) (xy 158.164233 119.019398) (xy 158.155792 119.01635) (xy 158.146836 119.015794) (xy 158.146833 119.015793) (xy 158.121506 119.01422) (xy 158.117335 119.013961) (xy 158.10365 119.012355) (xy 158.074543 119.007315) (xy 158.074537 119.007315) (xy 158.065696 119.005784) (xy 158.05678 119.006796) (xy 158.056775 119.006796) (xy 158.048395 119.007747) (xy 158.026376 119.008309) (xy 158.017944 119.007785) (xy 158.01794 119.007785) (xy 158.008985 119.007229) (xy 158.000231 119.009209) (xy 158.00023 119.009209) (xy 157.971402 119.015729) (xy 157.957821 119.018029) (xy 157.919545 119.022374) (xy 157.90349 119.029115) (xy 157.882511 119.035835) (xy 157.865519 119.039678) (xy 157.848829 119.048947) (xy 157.839172 119.053745) (xy 157.830756 119.056103) (xy 157.802701 119.073601) (xy 157.791354 119.080678) (xy 157.785848 119.083921) (xy 157.769824 119.09282) (xy 157.736927 119.111089) (xy 157.72934 119.118768) (xy 157.720018 119.128203) (xy 157.712725 119.135021) (xy 157.710618 119.13684) (xy 157.708923 119.138277) (xy 157.69775 119.147578) (xy 157.695031 119.149628) (xy 157.695058 119.149662) (xy 157.691263 119.152701) (xy 157.687238 119.155443) (xy 157.683685 119.15877) (xy 157.683678 119.158775) (xy 157.68136 119.160945) (xy 157.675874 119.165789) (xy 157.655042 119.183131) (xy 157.652872 119.186357) (xy 157.649985 119.18918) (xy 157.645522 119.193033) (xy 157.642571 119.196423) (xy 157.639404 119.199576) (xy 157.639192 119.199364) (xy 157.633285 119.205132) (xy 157.633177 119.205209) (xy 157.60838 119.229244) (xy 157.606844 119.230706) (xy 157.583987 119.252104) (xy 157.581754 119.254888) (xy 157.578723 119.257988) (xy 157.573334 119.263212) (xy 157.571695 119.264697) (xy 157.569902 119.265993) (xy 157.566444 119.269416) (xy 157.566439 119.26942) (xy 157.543885 119.291745) (xy 157.54294 119.292671) (xy 157.528788 119.306388) (xy 157.518849 119.316021) (xy 157.5175 119.317763) (xy 157.515935 119.319409) (xy 157.502211 119.332994) (xy 157.501032 119.334083) (xy 157.499689 119.335069) (xy 157.496602 119.338173) (xy 157.49659 119.338184) (xy 157.473193 119.361709) (xy 157.472493 119.362407) (xy 157.451216 119.383467) (xy 157.451199 119.383485) (xy 157.448138 119.386515) (xy 157.447139 119.387834) (xy 157.446028 119.389024) (xy 157.42803 119.40712) (xy 157.426994 119.408091) (xy 157.4258 119.408981) (xy 157.399353 119.435951) (xy 157.398813 119.436497) (xy 157.377129 119.4583) (xy 157.377109 119.458322) (xy 157.374345 119.461101) (xy 157.373454 119.462296) (xy 157.372477 119.463358) (xy 157.35411 119.482088) (xy 157.353006 119.483138) (xy 157.351737 119.4841) (xy 157.325408 119.511357) (xy 157.325092 119.511682) (xy 157.300828 119.536426) (xy 157.299888 119.537706) (xy 157.298852 119.538849) (xy 157.283936 119.554292) (xy 157.282487 119.555694) (xy 157.280898 119.556921) (xy 157.259081 119.579944) (xy 157.255489 119.583734) (xy 157.254762 119.584494) (xy 157.23116 119.608928) (xy 157.229982 119.610558) (xy 157.228617 119.61209) (xy 157.225554 119.615322) (xy 157.220934 119.620197) (xy 157.21848 119.62263) (xy 157.216065 119.624554) (xy 157.192185 119.650514) (xy 157.190912 119.651876) (xy 157.175306 119.668346) (xy 157.168826 119.675184) (xy 157.168136 119.676158) (xy 157.162493 119.682354) (xy 157.161098 119.683736) (xy 157.157381 119.686889) (xy 157.140926 119.705923) (xy 157.13767 119.709689) (xy 157.135085 119.712588) (xy 157.116796 119.73247) (xy 157.114453 119.735884) (xy 157.113548 119.737048) (xy 157.113546 119.737049) (xy 157.112686 119.738141) (xy 157.112442 119.738447) (xy 157.112174 119.738814) (xy 157.11135 119.739874) (xy 157.107088 119.745064) (xy 157.107062 119.745094) (xy 157.104627 119.747822) (xy 157.1002 119.75264) (xy 157.088009 119.765907) (xy 157.083564 119.770744) (xy 157.080864 119.774788) (xy 157.080615 119.775105) (xy 157.078373 119.778278) (xy 157.075842 119.781206) (xy 157.073421 119.784978) (xy 157.073415 119.784986) (xy 157.063054 119.801128) (xy 157.056477 119.810423) (xy 157.047975 119.821354) (xy 157.026588 119.848852) (xy 157.017222 119.872539) (xy 157.016765 119.872358) (xy 157.016523 119.873628) (xy 157.01651 119.873648) (xy 157.015716 119.876347) (xy 157.012756 119.883833) (xy 157.007765 119.896454) (xy 157.004251 119.904507) (xy 156.982145 119.950688) (xy 156.980698 119.959546) (xy 156.978009 119.968111) (xy 156.977867 119.968066) (xy 156.977741 119.96852) (xy 156.977886 119.968555) (xy 156.975801 119.97729) (xy 156.972501 119.985636) (xy 156.971676 119.994573) (xy 156.967795 120.036602) (xy 156.96668 120.045333) (xy 156.961652 120.076108) (xy 156.958426 120.095854) (xy 156.959522 120.104758) (xy 156.959345 120.11374) (xy 156.959196 120.113737) (xy 156.959203 120.114207) (xy 156.959352 120.1142) (xy 156.959802 120.123172) (xy 156.958978 120.132103) (xy 156.960693 120.140904) (xy 156.960693 120.140909) (xy 156.968767 120.182349) (xy 156.970147 120.191045) (xy 156.970569 120.194472) (xy 156.971184 120.200755) (xy 156.972022 120.212303) (xy 156.97286 120.22386) (xy 156.974781 120.229013) (xy 156.974933 120.229904) (xy 156.976403 120.241841) (xy 156.998179 120.292356) (xy 157.000949 120.299354) (xy 157.009356 120.322608) (xy 157.010252 120.324292) (xy 157.010454 120.324787) (xy 157.010646 120.325201) (xy 157.012347 120.329762) (xy 157.014728 120.334005) (xy 157.014731 120.334012) (xy 157.017576 120.339082) (xy 157.023398 120.350857) (xy 157.034631 120.376915) (xy 157.040355 120.383829) (xy 157.045042 120.391487) (xy 157.044855 120.391601) (xy 157.050808 120.400486) (xy 157.060967 120.419572) (xy 157.064683 120.423377) (xy 157.065985 120.425353) (xy 157.068178 120.429261) (xy 157.070906 120.432822) (xy 157.07337 120.436563) (xy 157.073253 120.43664) (xy 157.078474 120.444672) (xy 157.078849 120.445509) (xy 157.0815 120.449589) (xy 157.081503 120.449594) (xy 157.097255 120.473834) (xy 157.098563 120.47589) (xy 157.11243 120.49816) (xy 157.114802 120.501969) (xy 157.117351 120.505001) (xy 157.120227 120.509184) (xy 157.125046 120.5166) (xy 157.12647 120.518955) (xy 157.127565 120.521317) (xy 157.130275 120.525375) (xy 157.130275 120.525376) (xy 157.147555 120.551257) (xy 157.148419 120.552569) (xy 157.163907 120.576404) (xy 157.163912 120.576411) (xy 157.166351 120.580164) (xy 157.16806 120.582118) (xy 157.169698 120.584422) (xy 157.183365 120.604893) (xy 157.184506 120.606732) (xy 157.185425 120.608663) (xy 157.188166 120.612679) (xy 157.188167 120.612681) (xy 157.206106 120.638965) (xy 157.206811 120.640008) (xy 157.225521 120.668032) (xy 157.226945 120.66962) (xy 157.228245 120.671406) (xy 157.235661 120.682271) (xy 157.247854 120.700137) (xy 157.248134 120.700582) (xy 157.248402 120.701141) (xy 157.249391 120.702582) (xy 157.249401 120.702597) (xy 157.260195 120.718314) (xy 157.28227 120.785792) (xy 157.26436 120.854492) (xy 157.21215 120.902603) (xy 157.179503 120.913493) (xy 157.178851 120.913615) (xy 157.177761 120.91378) (xy 157.176312 120.913836) (xy 157.172593 120.914563) (xy 157.172573 120.914566) (xy 157.139274 120.921075) (xy 157.138394 120.921244) (xy 157.1343 120.922014) (xy 157.104433 120.927631) (xy 157.102997 120.92812) (xy 157.101575 120.928446) (xy 157.097855 120.929173) (xy 157.071506 120.934323) (xy 157.069271 120.934683) (xy 157.067052 120.934792) (xy 157.031016 120.942232) (xy 157.030025 120.942432) (xy 156.997013 120.948885) (xy 156.994922 120.949614) (xy 156.992693 120.950145) (xy 156.975134 120.95377) (xy 156.97191 120.954331) (xy 156.968933 120.95452) (xy 156.934354 120.962178) (xy 156.932666 120.962539) (xy 156.905356 120.968177) (xy 156.905353 120.968178) (xy 156.900964 120.969084) (xy 156.899033 120.96978) (xy 156.88892 120.97205) (xy 156.887606 120.972271) (xy 156.882758 120.972708) (xy 156.878036 120.973885) (xy 156.878034 120.973885) (xy 156.852113 120.980344) (xy 156.848889 120.981103) (xy 156.825464 120.98629) (xy 156.825461 120.986291) (xy 156.821089 120.987259) (xy 156.817037 120.988785) (xy 156.804028 120.9919) (xy 156.798068 120.992992) (xy 156.790792 120.993961) (xy 156.789143 120.99434) (xy 156.780198 120.99509) (xy 156.720126 121.018264) (xy 156.716287 121.019673) (xy 156.696737 121.026491) (xy 156.696732 121.026493) (xy 156.692506 121.027967) (xy 156.68853 121.030026) (xy 156.684407 121.031802) (xy 156.684365 121.031704) (xy 156.678842 121.034191) (xy 156.642966 121.048031) (xy 156.635835 121.053482) (xy 156.635833 121.053483) (xy 156.629074 121.05865) (xy 156.610496 121.070434) (xy 156.594963 121.078477) (xy 156.58847 121.084677) (xy 156.567144 121.105039) (xy 156.556652 121.11401) (xy 156.543354 121.124176) (xy 156.526108 121.137359) (xy 156.518343 121.147928) (xy 156.515754 121.151452) (xy 156.501229 121.167977) (xy 156.495069 121.173859) (xy 156.488579 121.180056) (xy 156.482143 121.191194) (xy 156.469337 121.213353) (xy 156.46269 121.223526) (xy 156.462075 121.224515) (xy 156.459189 121.228443) (xy 156.456945 121.232763) (xy 156.456793 121.233055) (xy 156.448007 121.247505) (xy 156.430254 121.272715) (xy 156.427335 121.281265) (xy 156.422777 121.291294) (xy 156.422816 121.29131) (xy 156.419472 121.299639) (xy 156.414982 121.307409) (xy 156.412853 121.316125) (xy 156.412853 121.316126) (xy 156.407877 121.336502) (xy 156.404389 121.348265) (xy 156.386473 121.399411) (xy 156.386472 121.399415) (xy 156.383505 121.407886) (xy 156.382564 121.425822) (xy 156.382088 121.43488) (xy 156.379411 121.453221) (xy 156.379472 121.453231) (xy 156.378826 121.457226) (xy 156.378727 121.457907) (xy 156.377551 121.462767) (xy 156.377148 121.467611) (xy 156.376662 121.473451) (xy 156.375182 121.484875) (xy 156.373867 121.492334) (xy 156.373722 121.496807) (xy 156.373722 121.49681) (xy 156.373192 121.513194) (xy 156.372825 121.519554) (xy 156.372453 121.524035) (xy 156.372287 121.526033) (xy 156.372268 121.526256) (xy 156.371246 121.53341) (xy 156.371319 121.533419) (xy 156.37072 121.538244) (xy 156.369749 121.543014) (xy 156.368439 121.571262) (xy 156.368141 121.575854) (xy 156.366055 121.600926) (xy 156.36632 121.605404) (xy 156.366267 121.60988) (xy 156.366265 121.60988) (xy 156.366312 121.617097) (xy 156.365974 121.624392) (xy 156.365556 121.629998) (xy 156.364779 121.634282) (xy 156.363947 121.667518) (xy 156.363857 121.670038) (xy 156.362459 121.700161) (xy 156.362874 121.704478) (xy 156.362873 121.710334) (xy 156.362412 121.728777) (xy 156.362207 121.732443) (xy 156.361679 121.735636) (xy 156.361395 121.765547) (xy 156.361347 121.770647) (xy 156.361313 121.772607) (xy 156.360627 121.800011) (xy 156.360515 121.804502) (xy 156.360891 121.807695) (xy 156.36096 121.811467) (xy 156.360895 121.818339) (xy 156.360777 121.830835) (xy 156.360715 121.83733) (xy 156.360587 121.840438) (xy 156.36016 121.843256) (xy 156.36031 121.878864) (xy 156.360305 121.880517) (xy 156.359996 121.913099) (xy 156.360373 121.915921) (xy 156.360478 121.919105) (xy 156.360592 121.946394) (xy 156.360503 121.949677) (xy 156.3601 121.952619) (xy 156.36019 121.957481) (xy 156.360189 121.957495) (xy 156.360754 121.988067) (xy 156.360775 121.989868) (xy 156.360881 122.015144) (xy 156.36091 122.022151) (xy 156.361342 122.025081) (xy 156.3615 122.028439) (xy 156.361924 122.051413) (xy 156.361875 122.05581) (xy 156.361441 122.059462) (xy 156.361618 122.064325) (xy 156.362685 122.093709) (xy 156.362747 122.095956) (xy 156.36324 122.122661) (xy 156.363323 122.127139) (xy 156.36391 122.130762) (xy 156.364196 122.135298) (xy 156.364635 122.147396) (xy 156.364706 122.153702) (xy 156.364673 122.1561) (xy 156.364231 122.160946) (xy 156.364539 122.165797) (xy 156.364539 122.165808) (xy 156.366217 122.192217) (xy 156.366386 122.195603) (xy 156.366825 122.207675) (xy 156.367123 122.215856) (xy 156.367411 122.223791) (xy 156.368206 122.228197) (xy 156.368632 122.232141) (xy 156.369105 122.23766) (xy 156.369263 122.240145) (xy 156.369434 122.25271) (xy 156.369145 122.260661) (xy 156.370723 122.273955) (xy 156.371264 122.278516) (xy 156.372093 122.290616) (xy 156.371004 122.299386) (xy 156.372442 122.308244) (xy 156.372442 122.308246) (xy 156.380748 122.35941) (xy 156.381498 122.364751) (xy 156.382621 122.37421) (xy 156.384117 122.386821) (xy 156.385207 122.390913) (xy 156.38685 122.399582) (xy 156.387253 122.408549) (xy 156.395918 122.433891) (xy 156.397854 122.439552) (xy 156.400383 122.447879) (xy 156.412394 122.492964) (xy 156.417048 122.500642) (xy 156.420565 122.508902) (xy 156.420244 122.509039) (xy 156.425343 122.519948) (xy 156.434842 122.547728) (xy 156.440009 122.555059) (xy 156.440012 122.555065) (xy 156.448357 122.566905) (xy 156.4584 122.583821) (xy 156.464796 122.596807) (xy 156.468765 122.604865) (xy 156.474831 122.611481) (xy 156.474833 122.611483) (xy 156.479436 122.616502) (xy 156.482003 122.619301) (xy 156.483138 122.620539) (xy 156.488803 122.627162) (xy 156.491161 122.63012) (xy 156.495705 122.637863) (xy 156.502238 122.644018) (xy 156.503979 122.646202) (xy 156.50843 122.652137) (xy 156.519579 122.667956) (xy 156.526598 122.673544) (xy 156.5266 122.673546) (xy 156.537928 122.682564) (xy 156.55232 122.695985) (xy 156.558681 122.702922) (xy 156.568176 122.713276) (xy 156.57585 122.71792) (xy 156.575855 122.717924) (xy 156.57792 122.719173) (xy 156.588842 122.727474) (xy 156.588892 122.727404) (xy 156.596236 122.732574) (xy 156.602766 122.738726) (xy 156.610758 122.742797) (xy 156.610761 122.742799) (xy 156.645833 122.760663) (xy 156.653876 122.765137) (xy 156.694018 122.789428) (xy 156.723211 122.797185) (xy 156.737074 122.801743) (xy 156.781389 122.81922) (xy 156.790328 122.820037) (xy 156.7986 122.822004) (xy 156.802355 122.822642) (xy 156.805188 122.823352) (xy 156.809446 122.824747) (xy 156.821473 122.826866) (xy 156.821739 122.826913) (xy 156.835991 122.830289) (xy 156.838987 122.831185) (xy 156.843528 122.832936) (xy 156.863505 122.837267) (xy 156.872803 122.839283) (xy 156.876652 122.840181) (xy 156.898328 122.845598) (xy 156.89834 122.8456) (xy 156.902685 122.846686) (xy 156.907149 122.847146) (xy 156.911557 122.847919) (xy 156.911537 122.848032) (xy 156.917678 122.849011) (xy 156.918604 122.849212) (xy 156.919166 122.849334) (xy 156.925104 122.850793) (xy 156.929436 122.852352) (xy 156.934206 122.853274) (xy 156.934211 122.853275) (xy 156.961571 122.858561) (xy 156.964365 122.859134) (xy 156.988959 122.864466) (xy 156.988972 122.864468) (xy 156.99335 122.865417) (xy 156.99782 122.865736) (xy 156.998257 122.865799) (xy 157.00427 122.866811) (xy 157.016043 122.869085) (xy 157.018243 122.869587) (xy 157.020318 122.870309) (xy 157.047758 122.875314) (xy 157.056485 122.876906) (xy 157.057689 122.877132) (xy 157.090594 122.883489) (xy 157.092716 122.883592) (xy 157.095037 122.883945) (xy 157.178095 122.899197) (xy 157.241482 122.931174) (xy 157.277519 122.992345) (xy 157.274764 123.063288) (xy 157.2593 123.094311) (xy 157.256828 123.09792) (xy 157.255708 123.099441) (xy 157.254389 123.10087) (xy 157.251677 123.10491) (xy 157.251672 123.104916) (xy 157.235856 123.128476) (xy 157.23514 123.12953) (xy 157.230643 123.136082) (xy 157.230524 123.136322) (xy 157.230418 123.136489) (xy 157.213912 123.160595) (xy 157.213058 123.162328) (xy 157.212017 123.163987) (xy 157.196025 123.187808) (xy 157.19385 123.190842) (xy 157.191673 123.193275) (xy 157.189025 123.197357) (xy 157.172632 123.222627) (xy 157.171538 123.224284) (xy 157.167883 123.229728) (xy 157.153808 123.250694) (xy 157.152397 123.253624) (xy 157.150406 123.256887) (xy 157.141208 123.271066) (xy 157.138154 123.275494) (xy 157.135397 123.278707) (xy 157.132834 123.282842) (xy 157.132827 123.282852) (xy 157.117799 123.307101) (xy 157.116407 123.309297) (xy 157.099942 123.334678) (xy 157.098171 123.338508) (xy 157.095394 123.343255) (xy 157.095188 123.343588) (xy 157.090952 123.349607) (xy 157.091011 123.349647) (xy 157.088275 123.353688) (xy 157.085246 123.357492) (xy 157.071261 123.382034) (xy 157.068904 123.385998) (xy 157.061308 123.398255) (xy 157.055695 123.407311) (xy 157.053892 123.41143) (xy 157.051854 123.41531) (xy 157.048551 123.421888) (xy 157.045402 123.427413) (xy 157.04341 123.430785) (xy 157.042196 123.432769) (xy 157.038734 123.437682) (xy 157.036336 123.441716) (xy 157.030699 123.448707) (xy 157.027251 123.456998) (xy 157.025061 123.462264) (xy 157.023305 123.466191) (xy 157.021515 123.469333) (xy 157.019868 123.47351) (xy 157.019867 123.473511) (xy 157.010811 123.496471) (xy 157.009938 123.498626) (xy 156.977665 123.576225) (xy 156.977664 123.57623) (xy 156.974216 123.58452) (xy 156.971184 123.612063) (xy 156.967939 123.629768) (xy 156.961013 123.656581) (xy 156.961297 123.665554) (xy 156.961297 123.665557) (xy 156.961908 123.684838) (xy 156.961215 123.702611) (xy 156.959103 123.721803) (xy 156.958121 123.730726) (xy 156.959682 123.739562) (xy 156.959682 123.739566) (xy 156.962938 123.757997) (xy 156.964796 123.775919) (xy 156.965674 123.803598) (xy 156.968464 123.812126) (xy 156.976635 123.837101) (xy 156.977339 123.839511) (xy 156.977783 123.842027) (xy 156.979356 123.84663) (xy 156.980572 123.851352) (xy 156.980291 123.851424) (xy 156.982461 123.859654) (xy 156.987711 123.887403) (xy 156.991789 123.895401) (xy 156.998276 123.908125) (xy 157.005778 123.926178) (xy 157.00862 123.934865) (xy 157.011411 123.943396) (xy 157.016482 123.950797) (xy 157.016483 123.9508) (xy 157.025749 123.964324) (xy 157.034056 123.978306) (xy 157.039026 123.988055) (xy 157.039032 123.988066) (xy 157.039047 123.988095) (xy 157.039056 123.988108) (xy 157.044373 123.998534) (xy 157.054543 124.018479) (xy 157.060697 124.025005) (xy 157.060701 124.025011) (xy 157.070595 124.035503) (xy 157.080615 124.04842) (xy 157.080922 124.048191) (xy 157.083835 124.052098) (xy 157.086433 124.05621) (xy 157.089631 124.059871) (xy 157.089635 124.059877) (xy 157.09338 124.064164) (xy 157.100592 124.073231) (xy 157.104949 124.079258) (xy 157.108065 124.082483) (xy 157.119567 124.094388) (xy 157.12384 124.099038) (xy 157.128902 124.104834) (xy 157.133327 124.110547) (xy 157.133383 124.110502) (xy 157.136436 124.114297) (xy 157.139185 124.118314) (xy 157.142519 124.121859) (xy 157.142521 124.121862) (xy 157.148185 124.127885) (xy 157.157168 124.137437) (xy 157.158532 124.138888) (xy 157.16164 124.142318) (xy 157.175212 124.157857) (xy 157.175218 124.157863) (xy 157.175224 124.15787) (xy 157.175226 124.157873) (xy 157.178171 124.161245) (xy 157.177437 124.161886) (xy 157.209483 124.220051) (xy 157.204685 124.290886) (xy 157.162353 124.347882) (xy 157.105726 124.371818) (xy 157.098029 124.373008) (xy 157.093424 124.373596) (xy 157.089676 124.373708) (xy 157.085273 124.374473) (xy 157.08527 124.374473) (xy 157.081177 124.375184) (xy 157.064991 124.377995) (xy 157.032747 124.378884) (xy 157.032739 124.379084) (xy 157.03133 124.379028) (xy 157.029756 124.378966) (xy 157.029755 124.378966) (xy 157.027876 124.378892) (xy 157.02787 124.378891) (xy 157.020092 124.378584) (xy 157.009551 124.377723) (xy 157.001864 124.376769) (xy 156.962747 124.371914) (xy 156.953885 124.373353) (xy 156.953376 124.373363) (xy 156.934068 124.374921) (xy 156.929957 124.374921) (xy 156.924979 124.374823) (xy 156.918302 124.374559) (xy 156.900751 124.373865) (xy 156.896299 124.374324) (xy 156.894586 124.374378) (xy 156.884028 124.374921) (xy 156.83405 124.374921) (xy 156.833281 124.374919) (xy 156.754987 124.374441) (xy 156.746356 124.376908) (xy 156.746354 124.376908) (xy 156.726193 124.38267) (xy 156.709432 124.386248) (xy 156.688677 124.38922) (xy 156.688675 124.389221) (xy 156.67979 124.390493) (xy 156.671619 124.394208) (xy 156.664065 124.396417) (xy 156.594604 124.396779) (xy 156.553596 124.385251) (xy 156.553595 124.385251) (xy 156.544955 124.382822) (xy 156.53598 124.382916) (xy 156.512195 124.383165) (xy 156.496054 124.382297) (xy 156.436456 124.375237) (xy 156.435564 124.375128) (xy 156.397922 124.370396) (xy 156.397914 124.370396) (xy 156.393088 124.369789) (xy 156.388222 124.369932) (xy 156.388218 124.369932) (xy 156.362982 124.370675) (xy 156.362344 124.370693) (xy 156.282187 124.372644) (xy 156.282054 124.372686) (xy 156.277786 124.372769) (xy 156.257296 124.376366) (xy 156.257117 124.376397) (xy 156.242138 124.378994) (xy 156.197233 124.386779) (xy 156.180086 124.388553) (xy 156.151776 124.389535) (xy 156.135373 124.394955) (xy 156.082961 124.412273) (xy 156.082593 124.412394) (xy 156.022079 124.432183) (xy 156.022078 124.432184) (xy 156.013548 124.434973) (xy 156.006145 124.440043) (xy 156.006142 124.440045) (xy 155.992775 124.449201) (xy 155.960743 124.465005) (xy 155.944733 124.470241) (xy 155.937325 124.475316) (xy 155.937324 124.475316) (xy 155.913041 124.49195) (xy 155.910037 124.493887) (xy 155.907264 124.495309) (xy 155.895312 124.503767) (xy 155.881541 124.513512) (xy 155.880023 124.514569) (xy 155.851489 124.534115) (xy 155.84921 124.536259) (xy 155.84644 124.538351) (xy 155.826308 124.552598) (xy 155.817599 124.558761) (xy 155.800645 124.580141) (xy 155.788259 124.59362) (xy 155.785689 124.596038) (xy 155.78125 124.599905) (xy 155.774412 124.603966) (xy 155.768293 124.61053) (xy 155.76829 124.610532) (xy 155.763175 124.616019) (xy 155.753515 124.625332) (xy 155.744083 124.633502) (xy 155.740936 124.637219) (xy 155.738858 124.639321) (xy 155.737573 124.640676) (xy 155.737684 124.640779) (xy 155.734649 124.644072) (xy 155.731379 124.647149) (xy 155.717907 124.664032) (xy 155.711588 124.671356) (xy 155.70066 124.683077) (xy 155.700655 124.683083) (xy 155.697342 124.686637) (xy 155.69461 124.690666) (xy 155.694047 124.691496) (xy 155.689687 124.69724) (xy 155.689698 124.697248) (xy 155.687057 124.70086) (xy 155.684159 124.704282) (xy 155.681781 124.708073) (xy 155.681372 124.708632) (xy 155.677971 124.712492) (xy 155.678246 124.712711) (xy 155.672659 124.719739) (xy 155.666134 124.725902) (xy 155.661602 124.733648) (xy 155.661599 124.733651) (xy 155.639416 124.771562) (xy 155.63495 124.778642) (xy 155.626536 124.791051) (xy 155.624571 124.795082) (xy 155.624569 124.795085) (xy 155.621249 124.801894) (xy 155.616753 124.810294) (xy 155.609053 124.823452) (xy 155.60727 124.827981) (xy 155.607268 124.827986) (xy 155.603807 124.836779) (xy 155.599818 124.84585) (xy 155.595628 124.854444) (xy 155.595362 124.854314) (xy 155.595165 124.855107) (xy 155.590872 124.861256) (xy 155.588006 124.869761) (xy 155.585394 124.874937) (xy 155.58411 124.878067) (xy 155.578397 124.889785) (xy 155.576886 124.89863) (xy 155.576402 124.900135) (xy 155.572392 124.916098) (xy 155.572313 124.916334) (xy 155.570083 124.922464) (xy 155.56272 124.941172) (xy 155.561686 124.945537) (xy 155.561684 124.945542) (xy 155.561157 124.947767) (xy 155.557958 124.958939) (xy 155.554783 124.968362) (xy 155.553958 124.973152) (xy 155.553955 124.973164) (xy 155.551478 124.987547) (xy 155.549913 124.995204) (xy 155.537387 125.048056) (xy 155.537852 125.057025) (xy 155.537063 125.065719) (xy 155.535127 125.079061) (xy 155.532671 125.091326) (xy 155.53246 125.096197) (xy 155.532412 125.096595) (xy 155.532208 125.099445) (xy 155.531656 125.102654) (xy 155.531529 125.10713) (xy 155.531529 125.107133) (xy 155.530685 125.136961) (xy 155.530617 125.13883) (xy 155.529277 125.169848) (xy 155.528874 125.17916) (xy 155.527836 125.190745) (xy 155.527091 125.196205) (xy 155.52709 125.196215) (xy 155.526434 125.201029) (xy 155.526526 125.205893) (xy 155.526526 125.205895) (xy 155.526815 125.221148) (xy 155.52672 125.228972) (xy 155.525986 125.245953) (xy 150.1085 125.245953) (xy 150.1085 125.101866) (xy 150.101745 125.039684) (xy 150.050615 124.903295) (xy 149.963261 124.786739) (xy 149.956081 124.781358) (xy 149.949731 124.775008) (xy 149.951978 124.772761) (xy 149.918857 124.728456) (xy 149.913838 124.657637) (xy 149.947903 124.595347) (xy 150.010238 124.561362) (xy 150.036941 124.5585) (xy 150.598134 124.5585) (xy 150.660316 124.551745) (xy 150.796705 124.500615) (xy 150.913261 124.413261) (xy 151.000615 124.296705) (xy 151.051745 124.160316) (xy 151.0585 124.098134) (xy 151.0585 123.101866) (xy 151.051745 123.039684) (xy 151.000615 122.903295) (xy 150.913261 122.786739) (xy 150.906081 122.781358) (xy 150.903655 122.778932) (xy 150.869629 122.71662) (xy 150.874694 122.645805) (xy 150.903577 122.600819) (xy 150.996363 122.507871) (xy 151.005375 122.49646) (xy 151.088912 122.360937) (xy 151.095056 122.347759) (xy 151.145315 122.196234) (xy 151.148181 122.182868) (xy 151.157672 122.09023) (xy 151.158 122.083815) (xy 151.158 122.072115) (xy 151.153525 122.056876) (xy 151.152135 122.055671) (xy 151.144452 122.054) (xy 149.9845 122.054) (xy 149.916379 122.033998) (xy 149.869886 121.980342) (xy 149.8585 121.928) (xy 149.8585 121.527885) (xy 150.3665 121.527885) (xy 150.370975 121.543124) (xy 150.372365 121.544329) (xy 150.380048 121.546) (xy 151.139885 121.546) (xy 151.155124 121.541525) (xy 151.156329 121.540135) (xy 151.158 121.532452) (xy 151.158 121.516234) (xy 151.157663 121.509718) (xy 151.147925 121.415868) (xy 151.145032 121.402472) (xy 151.094512 121.251047) (xy 151.088347 121.237885) (xy 151.004574 121.102508) (xy 150.99554 121.09111) (xy 150.882871 120.978637) (xy 150.87146 120.969625) (xy 150.735937 120.886088) (xy 150.722759 120.879944) (xy 150.571234 120.829685) (xy 150.557868 120.826819) (xy 150.46523 120.817328) (xy 150.458815 120.817) (xy 150.384615 120.817) (xy 150.369376 120.821475) (xy 150.368171 120.822865) (xy 150.3665 120.830548) (xy 150.3665 121.527885) (xy 149.8585 121.527885) (xy 149.8585 120.835115) (xy 149.854025 120.819876) (xy 149.852635 120.818671) (xy 149.844952 120.817) (xy 149.766234 120.817) (xy 149.759718 120.817337) (xy 149.665868 120.827075) (xy 149.652472 120.829968) (xy 149.501047 120.880488) (xy 149.487885 120.886653) (xy 149.352508 120.970426) (xy 149.341106 120.979464) (xy 149.339433 120.981139) (xy 149.338007 120.981919) (xy 149.335373 120.984007) (xy 149.335016 120.983556) (xy 149.277151 121.015219) (xy 149.206331 121.010216) (xy 149.161238 120.981291) (xy 149.159415 120.979471) (xy 149.125339 120.917187) (xy 149.130345 120.846367) (xy 149.159342 120.801207) (xy 149.940144 120.020405) (xy 150.002456 119.986379) (xy 150.029239 119.9835) (xy 150.412072 119.9835) (xy 150.415318 119.983163) (xy 150.415322 119.983163) (xy 150.509235 119.973419) (xy 150.509239 119.973418) (xy 150.516093 119.972707) (xy 150.522629 119.970526) (xy 150.522631 119.970526) (xy 150.674159 119.919972) (xy 150.681107 119.917654) (xy 150.829031 119.826116) (xy 150.853707 119.801397) (xy 150.946758 119.708184) (xy 150.946762 119.708179) (xy 150.951929 119.703003) (xy 150.959774 119.690276) (xy 151.039369 119.56115) (xy 151.03937 119.561148) (xy 151.043209 119.55492) (xy 151.097974 119.389809) (xy 151.098867 119.381099) (xy 151.104984 119.321392) (xy 151.1085 119.287072) (xy 151.1085 118.712928) (xy 151.108163 118.709678) (xy 151.098419 118.615765) (xy 151.098418 118.615761) (xy 151.097707 118.608907) (xy 151.094009 118.597821) (xy 151.044972 118.450841) (xy 151.042654 118.443893) (xy 150.951116 118.295969) (xy 150.921101 118.266006) (xy 150.833184 118.178242) (xy 150.833179 118.178238) (xy 150.828003 118.173071) (xy 150.780799 118.143974) (xy 150.68615 118.085631) (xy 150.686148 118.08563) (xy 150.67992 118.081791) (xy 150.514809 118.027026) (xy 150.507973 118.026326) (xy 150.50797 118.026325) (xy 150.456474 118.021049) (xy 150.412072 118.0165) (xy 150.029239 118.0165) (xy 149.961118 117.996498) (xy 149.940144 117.979595) (xy 149.332425 117.371876) (xy 149.298399 117.309564) (xy 149.29552 117.282781) (xy 149.29552 115.745905) (xy 149.296598 115.729459) (xy 149.299175 115.709885) (xy 149.300771 115.697761) (xy 149.279858 115.53891) (xy 149.218544 115.390885) (xy 149.145498 115.29569) (xy 149.145494 115.295686) (xy 149.136007 115.283322) (xy 149.126036 115.270327) (xy 149.126033 115.270324) (xy 149.121007 115.263774) (xy 149.114452 115.258744) (xy 149.095641 115.244309) (xy 149.08325 115.233442) (xy 143.346903 109.497095) (xy 144.142001 109.497095) (xy 144.142338 109.503614) (xy 144.152257 109.599206) (xy 144.155149 109.6126) (xy 144.206588 109.766784) (xy 144.212761 109.779962) (xy 144.298063 109.917807) (xy 144.307099 109.929208) (xy 144.421829 110.043739) (xy 144.43324 110.052751) (xy 144.571243 110.137816) (xy 144.584424 110.143963) (xy 144.73871 110.195138) (xy 144.752086 110.198005) (xy 144.846438 110.207672) (xy 144.852854 110.208) (xy 144.952885 110.208) (xy 144.968124 110.203525) (xy 144.969329 110.202135) (xy 144.971 110.194452) (xy 144.971 109.272115) (xy 144.966525 109.256876) (xy 144.965135 109.255671) (xy 144.957452 109.254) (xy 144.160116 109.254) (xy 144.144877 109.258475) (xy 144.143672 109.259865) (xy 144.142001 109.267548) (xy 144.142001 109.497095) (xy 143.346903 109.497095) (xy 142.577693 108.727885) (xy 144.142 108.727885) (xy 144.146475 108.743124) (xy 144.147865 108.744329) (xy 144.155548 108.746) (xy 144.952885 108.746) (xy 144.968124 108.741525) (xy 144.969329 108.740135) (xy 144.971 108.732452) (xy 144.971 107.810116) (xy 144.966525 107.794877) (xy 144.965135 107.793672) (xy 144.957452 107.792001) (xy 144.852905 107.792001) (xy 144.846386 107.792338) (xy 144.750794 107.802257) (xy 144.7374 107.805149) (xy 144.583216 107.856588) (xy 144.570038 107.862761) (xy 144.432193 107.948063) (xy 144.420792 107.957099) (xy 144.306261 108.071829) (xy 144.297249 108.08324) (xy 144.212184 108.221243) (xy 144.206037 108.234424) (xy 144.154862 108.38871) (xy 144.151995 108.402086) (xy 144.142328 108.496438) (xy 144.142 108.502855) (xy 144.142 108.727885) (xy 142.577693 108.727885) (xy 137.325324 103.475516) (xy 137.291298 103.413204) (xy 137.296363 103.342389) (xy 137.33891 103.285553) (xy 137.40543 103.260742) (xy 137.414419 103.260421) (xy 142.510182 103.260421) (xy 142.578303 103.280423) (xy 142.599277 103.297326) (xy 143.479595 104.177644) (xy 143.513621 104.239956) (xy 143.5165 104.266739) (xy 143.5165 104.637072) (xy 143.516837 104.640318) (xy 143.516837 104.640322) (xy 143.519599 104.666936) (xy 143.527293 104.741093) (xy 143.529474 104.747629) (xy 143.529474 104.747631) (xy 143.552496 104.816635) (xy 143.582346 104.906107) (xy 143.673884 105.054031) (xy 143.679066 105.059204) (xy 143.780786 105.160747) (xy 143.814865 105.22303) (xy 143.809862 105.29385) (xy 143.780941 105.338937) (xy 143.678246 105.441812) (xy 143.678242 105.441817) (xy 143.673071 105.446997) (xy 143.669231 105.453227) (xy 143.66923 105.453228) (xy 143.596552 105.571134) (xy 143.581791 105.59508) (xy 143.527026 105.760191) (xy 143.5165 105.862928) (xy 143.5165 106.197905) (xy 143.496498 106.266026) (xy 143.479595 106.287) (xy 143.207042 106.559553) (xy 143.144144 106.593704) (xy 142.967712 106.631206) (xy 142.961682 106.633891) (xy 142.961681 106.633891) (xy 142.799278 106.706197) (xy 142.799276 106.706198) (xy 142.793248 106.708882) (xy 142.787907 106.712762) (xy 142.787906 106.712763) (xy 142.747925 106.741811) (xy 142.638747 106.821134) (xy 142.634326 106.826044) (xy 142.634325 106.826045) (xy 142.532607 106.939015) (xy 142.51096 106.963056) (xy 142.465891 107.041118) (xy 142.422595 107.116109) (xy 142.415473 107.128444) (xy 142.356458 107.310072) (xy 142.355768 107.316633) (xy 142.355768 107.316635) (xy 142.342937 107.438717) (xy 142.336496 107.5) (xy 142.337186 107.506565) (xy 142.347418 107.603913) (xy 142.356458 107.689928) (xy 142.415473 107.871556) (xy 142.51096 108.036944) (xy 142.515378 108.041851) (xy 142.515379 108.041852) (xy 142.620409 108.1585) (xy 142.638747 108.178866) (xy 142.705358 108.227262) (xy 142.779241 108.280941) (xy 142.793248 108.291118) (xy 142.799276 108.293802) (xy 142.799278 108.293803) (xy 142.899625 108.33848) (xy 142.967712 108.368794) (xy 143.061113 108.388647) (xy 143.148056 108.407128) (xy 143.148061 108.407128) (xy 143.154513 108.4085) (xy 143.345487 108.4085) (xy 143.351939 108.407128) (xy 143.351944 108.407128) (xy 143.438887 108.388647) (xy 143.532288 108.368794) (xy 143.600375 108.33848) (xy 143.700722 108.293803) (xy 143.700724 108.293802) (xy 143.706752 108.291118) (xy 143.72076 108.280941) (xy 143.794642 108.227262) (xy 143.861253 108.178866) (xy 143.879591 108.1585) (xy 143.984621 108.041852) (xy 143.984622 108.041851) (xy 143.98904 108.036944) (xy 144.084527 107.871556) (xy 144.143542 107.689928) (xy 144.152583 107.603913) (xy 144.162814 107.506565) (xy 144.163504 107.5) (xy 144.15979 107.464665) (xy 144.172562 107.394828) (xy 144.196005 107.362399) (xy 144.363001 107.195404) (xy 144.425313 107.161379) (xy 144.452096 107.1585) (xy 144.787072 107.1585) (xy 144.790318 107.158163) (xy 144.790322 107.158163) (xy 144.884235 107.148419) (xy 144.884239 107.148418) (xy 144.891093 107.147707) (xy 144.897629 107.145526) (xy 144.897631 107.145526) (xy 145.049159 107.094972) (xy 145.056107 107.092654) (xy 145.204031 107.001116) (xy 145.209204 106.995934) (xy 145.209209 106.99593) (xy 145.286144 106.91886) (xy 145.348426 106.88478) (xy 145.419246 106.889783) (xy 145.464335 106.918704) (xy 145.542129 106.996363) (xy 145.55354 107.005375) (xy 145.689063 107.088912) (xy 145.702241 107.095056) (xy 145.853766 107.145315) (xy 145.867132 107.148181) (xy 145.95977 107.157672) (xy 145.966185 107.158) (xy 145.977885 107.158) (xy 145.993124 107.153525) (xy 145.994329 107.152135) (xy 145.996 107.144452) (xy 145.996 107.139885) (xy 146.504 107.139885) (xy 146.508475 107.155124) (xy 146.509865 107.156329) (xy 146.517548 107.158) (xy 146.533766 107.158) (xy 146.540282 107.157663) (xy 146.634132 107.147925) (xy 146.647528 107.145032) (xy 146.798953 107.094512) (xy 146.812115 107.088347) (xy 146.947492 107.004574) (xy 146.95889 106.99554) (xy 147.071363 106.882871) (xy 147.080375 106.87146) (xy 147.163912 106.735937) (xy 147.170056 106.722759) (xy 147.220315 106.571234) (xy 147.223181 106.557868) (xy 147.232672 106.46523) (xy 147.233 106.458815) (xy 147.233 106.384615) (xy 147.228525 106.369376) (xy 147.227135 106.368171) (xy 147.219452 106.3665) (xy 146.522115 106.3665) (xy 146.506876 106.370975) (xy 146.505671 106.372365) (xy 146.504 106.380048) (xy 146.504 107.139885) (xy 145.996 107.139885) (xy 145.996 105.9845) (xy 146.016002 105.916379) (xy 146.069658 105.869886) (xy 146.122 105.8585) (xy 147.214885 105.8585) (xy 147.230124 105.854025) (xy 147.231329 105.852635) (xy 147.233 105.844952) (xy 147.233 105.766234) (xy 147.232663 105.759718) (xy 147.222925 105.665868) (xy 147.220032 105.652472) (xy 147.169512 105.501047) (xy 147.163347 105.487885) (xy 147.079574 105.352508) (xy 147.070536 105.341106) (xy 147.068861 105.339433) (xy 147.068081 105.338007) (xy 147.065993 105.335373) (xy 147.066444 105.335016) (xy 147.034781 105.277151) (xy 147.039784 105.206331) (xy 147.068701 105.161246) (xy 147.071756 105.158185) (xy 147.076929 105.153003) (xy 147.107356 105.103642) (xy 147.164369 105.01115) (xy 147.16437 105.011148) (xy 147.168209 105.00492) (xy 147.171556 104.99483) (xy 147.172849 104.992964) (xy 147.173607 104.991338) (xy 147.173885 104.991468) (xy 147.211988 104.936471) (xy 147.277553 104.909236) (xy 147.291148 104.9085) (xy 148.007725 104.9085) (xy 148.075846 104.928502) (xy 148.108551 104.958935) (xy 148.186739 105.063261) (xy 148.193919 105.068642) (xy 148.19392 105.068643) (xy 148.301372 105.149174) (xy 148.343887 105.206033) (xy 148.348913 105.276852) (xy 148.314853 105.339145) (xy 148.301372 105.350826) (xy 148.194156 105.43118) (xy 148.186739 105.436739) (xy 148.099385 105.553295) (xy 148.048255 105.689684) (xy 148.0415 105.751866) (xy 148.0415 106.648134) (xy 148.048255 106.710316) (xy 148.099385 106.846705) (xy 148.186739 106.963261) (xy 148.303295 107.050615) (xy 148.439684 107.101745) (xy 148.501866 107.1085) (xy 149.498134 107.1085) (xy 149.560316 107.101745) (xy 149.696705 107.050615) (xy 149.813261 106.963261) (xy 149.900615 106.846705) (xy 149.951745 106.710316) (xy 149.9585 106.648134) (xy 149.9585 106.086941) (xy 149.978502 106.01882) (xy 150.032158 105.972327) (xy 150.102432 105.962223) (xy 150.167012 105.991717) (xy 150.174734 106.000005) (xy 150.175008 105.999731) (xy 150.181358 106.006081) (xy 150.186739 106.013261) (xy 150.303295 106.100615) (xy 150.439684 106.151745) (xy 150.501866 106.1585) (xy 151.498134 106.1585) (xy 151.560316 106.151745) (xy 151.696705 106.100615) (xy 151.813261 106.013261) (xy 151.871524 105.935522) (xy 151.928383 105.893008) (xy 151.999201 105.887983) (xy 152.061444 105.921993) (xy 153.515856 107.376405) (xy 153.549882 107.438717) (xy 153.544817 107.509532) (xy 153.50227 107.566368) (xy 153.43575 107.591179) (xy 153.426761 107.5915) (xy 151.760636 107.5915) (xy 151.744193 107.590422) (xy 151.7125 107.58625) (xy 151.704311 107.587328) (xy 151.672626 107.591499) (xy 151.672617 107.5915) (xy 151.672615 107.5915) (xy 151.672609 107.591501) (xy 151.672607 107.591501) (xy 151.578329 107.603913) (xy 151.561837 107.606084) (xy 151.561836 107.606084) (xy 151.553649 107.607162) (xy 151.405624 107.668476) (xy 151.369486 107.696206) (xy 151.310437 107.741515) (xy 151.310421 107.741529) (xy 151.285066 107.760984) (xy 151.285063 107.760987) (xy 151.278513 107.766013) (xy 151.273483 107.772568) (xy 151.259048 107.791379) (xy 151.248181 107.80377) (xy 151.072356 107.979595) (xy 151.010044 108.013621) (xy 150.983261 108.0165) (xy 150.612928 108.0165) (xy 150.609682 108.016837) (xy 150.609678 108.016837) (xy 150.515765 108.026581) (xy 150.515761 108.026582) (xy 150.508907 108.027293) (xy 150.502371 108.029474) (xy 150.502369 108.029474) (xy 150.379463 108.070479) (xy 150.343893 108.082346) (xy 150.195969 108.173884) (xy 150.190796 108.179066) (xy 150.089253 108.280786) (xy 150.02697 108.314865) (xy 149.95615 108.309862) (xy 149.911063 108.280941) (xy 149.808188 108.178246) (xy 149.808183 108.178242) (xy 149.803003 108.173071) (xy 149.756169 108.144202) (xy 149.66115 108.085631) (xy 149.661148 108.08563) (xy 149.65492 108.081791) (xy 149.489809 108.027026) (xy 149.482973 108.026326) (xy 149.48297 108.026325) (xy 149.431474 108.021049) (xy 149.387072 108.0165) (xy 148.787928 108.0165) (xy 148.784682 108.016837) (xy 148.784678 108.016837) (xy 148.690765 108.026581) (xy 148.690761 108.026582) (xy 148.683907 108.027293) (xy 148.677371 108.029474) (xy 148.677369 108.029474) (xy 148.554463 108.070479) (xy 148.518893 108.082346) (xy 148.39734 108.157565) (xy 148.328889 108.176403) (xy 148.261119 108.155242) (xy 148.223896 108.116728) (xy 148.198478 108.075652) (xy 148.153975 108.031226) (xy 148.078483 107.955866) (xy 148.073303 107.950695) (xy 148.064721 107.945405) (xy 147.928968 107.861725) (xy 147.928966 107.861724) (xy 147.922738 107.857885) (xy 147.842995 107.831436) (xy 147.761389 107.804368) (xy 147.761387 107.804368) (xy 147.754861 107.802203) (xy 147.748025 107.801503) (xy 147.748022 107.801502) (xy 147.704969 107.797091) (xy 147.6504 107.7915) (xy 146.8996 107.7915) (xy 146.896354 107.791837) (xy 146.89635 107.791837) (xy 146.800692 107.801762) (xy 146.800688 107.801763) (xy 146.793834 107.802474) (xy 146.787298 107.804655) (xy 146.787296 107.804655) (xy 146.770928 107.810116) (xy 146.626054 107.85845) (xy 146.475652 107.951522) (xy 146.350695 108.076697) (xy 146.347898 108.081235) (xy 146.290647 108.121824) (xy 146.219724 108.125054) (xy 146.158313 108.089428) (xy 146.150938 108.080932) (xy 146.142902 108.070793) (xy 146.028171 107.956261) (xy 146.01676 107.947249) (xy 145.878757 107.862184) (xy 145.865576 107.856037) (xy 145.71129 107.804862) (xy 145.697914 107.801995) (xy 145.603562 107.792328) (xy 145.597145 107.792) (xy 145.497115 107.792) (xy 145.481876 107.796475) (xy 145.480671 107.797865) (xy 145.479 107.805548) (xy 145.479 110.189884) (xy 145.483475 110.205123) (xy 145.484865 110.206328) (xy 145.492548 110.207999) (xy 145.597095 110.207999) (xy 145.603614 110.207662) (xy 145.699206 110.197743) (xy 145.7126 110.194851) (xy 145.866784 110.143412) (xy 145.879962 110.137239) (xy 146.017807 110.051937) (xy 146.029208 110.042901) (xy 146.143738 109.928172) (xy 146.150794 109.919238) (xy 146.208712 109.878177) (xy 146.279635 109.874947) (xy 146.341046 109.910574) (xy 146.347846 109.918407) (xy 146.351522 109.924348) (xy 146.476697 110.049305) (xy 146.482927 110.053145) (xy 146.482928 110.053146) (xy 146.620288 110.137816) (xy 146.627262 110.142115) (xy 146.668886 110.155921) (xy 146.788611 110.195632) (xy 146.788613 110.195632) (xy 146.795139 110.197797) (xy 146.801975 110.198497) (xy 146.801978 110.198498) (xy 146.845031 110.202909) (xy 146.8996 110.2085) (xy 147.6504 110.2085) (xy 147.653646 110.208163) (xy 147.65365 110.208163) (xy 147.749308 110.198238) (xy 147.749312 110.198237) (xy 147.756166 110.197526) (xy 147.762702 110.195345) (xy 147.762704 110.195345) (xy 147.894806 110.151272) (xy 147.923946 110.14155) (xy 148.074348 110.048478) (xy 148.088398 110.034404) (xy 148.144248 109.978456) (xy 148.199305 109.923303) (xy 148.223787 109.883586) (xy 148.276559 109.836093) (xy 148.346631 109.824669) (xy 148.397163 109.842442) (xy 148.444074 109.871358) (xy 148.474142 109.889892) (xy 148.478697 109.8927) (xy 148.52619 109.945472) (xy 148.537614 110.015543) (xy 148.50934 110.080667) (xy 148.478884 110.107104) (xy 148.42322 110.14155) (xy 148.370969 110.173884) (xy 148.365796 110.179066) (xy 148.253242 110.291816) (xy 148.253238 110.291821) (xy 148.248071 110.296997) (xy 148.244231 110.303227) (xy 148.24423 110.303228) (xy 148.166326 110.429612) (xy 148.156791 110.44508) (xy 148.102026 110.610191) (xy 148.0915 110.712928) (xy 148.0915 111.287072) (xy 148.091837 111.290318) (xy 148.091837 111.290322) (xy 148.10086 111.377279) (xy 148.102293 111.391093) (xy 148.104474 111.397629) (xy 148.104474 111.397631) (xy 148.120679 111.446202) (xy 148.157346 111.556107) (xy 148.240287 111.690138) (xy 148.242471 111.693667) (xy 148.261308 111.76212) (xy 148.240146 111.829889) (xy 148.185705 111.87546) (xy 148.174262 111.879803) (xy 148.174166 111.879834) (xy 148.167712 111.881206) (xy 148.141294 111.892968) (xy 147.999278 111.956197) (xy 147.999276 111.956198) (xy 147.993248 111.958882) (xy 147.987907 111.962762) (xy 147.987906 111.962763) (xy 147.948353 111.9915) (xy 147.838747 112.071134) (xy 147.834326 112.076044) (xy 147.834325 112.076045) (xy 147.731874 112.189829) (xy 147.71096 112.213056) (xy 147.615473 112.378444) (xy 147.556458 112.560072) (xy 147.555768 112.566633) (xy 147.555768 112.566635) (xy 147.542105 112.696632) (xy 147.536496 112.75) (xy 147.537186 112.756565) (xy 147.553736 112.914025) (xy 147.556458 112.939928) (xy 147.615473 113.121556) (xy 147.618776 113.127278) (xy 147.618777 113.127279) (xy 147.651249 113.183521) (xy 147.71096 113.286944) (xy 147.715378 113.291851) (xy 147.715379 113.291852) (xy 147.832347 113.421758) (xy 147.838747 113.428866) (xy 147.922725 113.48988) (xy 147.980528 113.531876) (xy 147.993248 113.541118) (xy 147.999276 113.543802) (xy 147.999278 113.543803) (xy 148.161681 113.616109) (xy 148.167712 113.618794) (xy 148.228049 113.631619) (xy 148.348056 113.657128) (xy 148.348061 113.657128) (xy 148.354513 113.6585) (xy 148.545487 113.6585) (xy 148.551939 113.657128) (xy 148.551944 113.657128) (xy 148.671951 113.631619) (xy 148.732288 113.618794) (xy 148.738319 113.616109) (xy 148.900722 113.543803) (xy 148.900724 113.543802) (xy 148.906752 113.541118) (xy 148.919473 113.531876) (xy 148.977275 113.48988) (xy 149.061253 113.428866) (xy 149.067653 113.421758) (xy 149.184621 113.291852) (xy 149.184622 113.291851) (xy 149.18904 113.286944) (xy 149.248751 113.183521) (xy 149.281223 113.127279) (xy 149.281224 113.127278) (xy 149.284527 113.121556) (xy 149.343542 112.939928) (xy 149.346265 112.914025) (xy 149.362814 112.756565) (xy 149.363504 112.75) (xy 149.363316 112.748214) (xy 149.382816 112.681804) (xy 149.399719 112.66083) (xy 149.483734 112.576815) (xy 149.496125 112.565948) (xy 149.514937 112.551513) (xy 149.521487 112.546487) (xy 149.545974 112.514575) (xy 149.54598 112.514569) (xy 149.613996 112.425929) (xy 149.613997 112.425927) (xy 149.619024 112.419376) (xy 149.680338 112.271351) (xy 149.683789 112.245139) (xy 149.696 112.152385) (xy 149.696 112.15238) (xy 149.70125 112.1125) (xy 149.697078 112.080807) (xy 149.696 112.064364) (xy 149.696 111.96317) (xy 149.716002 111.895049) (xy 149.755697 111.856026) (xy 149.797803 111.82997) (xy 149.804031 111.826116) (xy 149.814116 111.816013) (xy 149.910747 111.719214) (xy 149.97303 111.685135) (xy 150.04385 111.690138) (xy 150.088937 111.719059) (xy 150.191812 111.821754) (xy 150.191817 111.821758) (xy 150.196997 111.826929) (xy 150.203227 111.830769) (xy 150.203228 111.83077) (xy 150.328098 111.907741) (xy 150.34508 111.918209) (xy 150.510191 111.972974) (xy 150.517027 111.973674) (xy 150.51703 111.973675) (xy 150.568526 111.978951) (xy 150.612928 111.9835) (xy 151.212072 111.9835) (xy 151.215318 111.983163) (xy 151.215322 111.983163) (xy 151.309235 111.973419) (xy 151.309239 111.973418) (xy 151.316093 111.972707) (xy 151.322629 111.970526) (xy 151.322631 111.970526) (xy 151.463683 111.923467) (xy 151.481107 111.917654) (xy 151.629031 111.826116) (xy 151.639116 111.816013) (xy 151.746758 111.708184) (xy 151.746762 111.708179) (xy 151.751929 111.703003) (xy 151.757684 111.693667) (xy 151.77327 111.668383) (xy 151.826043 111.62089) (xy 151.880529 111.6085) (xy 153.76929 111.6085) (xy 153.837411 111.628502) (xy 153.862926 111.650189) (xy 153.888747 111.678866) (xy 153.897376 111.685135) (xy 154.019528 111.773884) (xy 154.043248 111.791118) (xy 154.049276 111.793802) (xy 154.049278 111.793803) (xy 154.189034 111.856026) (xy 154.217712 111.868794) (xy 154.29961 111.886202) (xy 154.398056 111.907128) (xy 154.398061 111.907128) (xy 154.404513 111.9085) (xy 154.595487 111.9085) (xy 154.601939 111.907128) (xy 154.601944 111.907128) (xy 154.70039 111.886202) (xy 154.782288 111.868794) (xy 154.810966 111.856026) (xy 154.950722 111.793803) (xy 154.950724 111.793802) (xy 154.956752 111.791118) (xy 154.980473 111.773884) (xy 155.016166 111.747951) (xy 155.111253 111.678866) (xy 155.120692 111.668383) (xy 155.234621 111.541852) (xy 155.234622 111.541851) (xy 155.23904 111.536944) (xy 155.315928 111.40377) (xy 155.331223 111.377279) (xy 155.331224 111.377278) (xy 155.334527 111.371556) (xy 155.393542 111.189928) (xy 155.395489 111.171409) (xy 155.412814 111.006565) (xy 155.413504 111) (xy 155.400728 110.878444) (xy 155.394232 110.816635) (xy 155.394232 110.816633) (xy 155.393542 110.810072) (xy 155.334527 110.628444) (xy 155.23904 110.463056) (xy 155.229111 110.452028) (xy 155.115675 110.326045) (xy 155.115674 110.326044) (xy 155.111253 110.321134) (xy 154.999147 110.239684) (xy 154.962094 110.212763) (xy 154.962093 110.212762) (xy 154.956752 110.208882) (xy 154.950724 110.206198) (xy 154.950722 110.206197) (xy 154.788319 110.133891) (xy 154.788318 110.133891) (xy 154.782288 110.131206) (xy 154.668898 110.107104) (xy 154.601944 110.092872) (xy 154.601939 110.092872) (xy 154.595487 110.0915) (xy 154.404513 110.0915) (xy 154.398061 110.092872) (xy 154.398056 110.092872) (xy 154.331102 110.107104) (xy 154.217712 110.131206) (xy 154.211682 110.133891) (xy 154.211681 110.133891) (xy 154.049278 110.206197) (xy 154.049276 110.206198) (xy 154.043248 110.208882) (xy 154.037907 110.212762) (xy 154.037906 110.212763) (xy 153.92281 110.296386) (xy 153.888747 110.321134) (xy 153.884334 110.326036) (xy 153.884332 110.326037) (xy 153.862926 110.349811) (xy 153.80248 110.38705) (xy 153.76929 110.3915) (xy 151.880436 110.3915) (xy 151.812315 110.371498) (xy 151.773292 110.331803) (xy 151.75497 110.302195) (xy 151.754964 110.302188) (xy 151.751116 110.295969) (xy 151.736062 110.280941) (xy 151.633184 110.178242) (xy 151.633179 110.178238) (xy 151.628003 110.173071) (xy 151.595973 110.153327) (xy 151.521303 110.1073) (xy 151.47381 110.054528) (xy 151.462386 109.984456) (xy 151.49066 109.919332) (xy 151.521116 109.892896) (xy 151.622803 109.82997) (xy 151.629031 109.826116) (xy 151.634834 109.820303) (xy 151.746758 109.708184) (xy 151.746762 109.708179) (xy 151.751929 109.703003) (xy 151.78054 109.656588) (xy 151.839369 109.56115) (xy 151.83937 109.561148) (xy 151.843209 109.55492) (xy 151.897974 109.389809) (xy 151.9085 109.287072) (xy 151.9085 108.9345) (xy 151.928502 108.866379) (xy 151.982158 108.819886) (xy 152.0345 108.8085) (xy 155.818249 108.8085) (xy 155.88637 108.828502) (xy 155.932863 108.882158) (xy 155.943535 108.94789) (xy 155.9378 109.001552) (xy 155.9378 109.00156) (xy 155.937251 109.006695) (xy 155.937548 109.011848) (xy 155.937548 109.011851) (xy 155.947401 109.182731) (xy 155.95011 109.229715) (xy 155.951247 109.234761) (xy 155.951248 109.234767) (xy 155.969401 109.315315) (xy 155.999222 109.447639) (xy 156.083266 109.654616) (xy 156.116092 109.708184) (xy 156.194892 109.836773) (xy 156.199987 109.845088) (xy 156.34625 110.013938) (xy 156.518126 110.156632) (xy 156.559497 110.180807) (xy 156.591445 110.199476) (xy 156.640169 110.251114) (xy 156.65324 110.320897) (xy 156.626509 110.386669) (xy 156.586055 110.420027) (xy 156.573607 110.426507) (xy 156.569474 110.42961) (xy 156.569471 110.429612) (xy 156.3991 110.55753) (xy 156.394965 110.560635) (xy 156.240629 110.722138) (xy 156.237715 110.72641) (xy 156.237714 110.726411) (xy 156.152556 110.851249) (xy 156.114743 110.90668) (xy 156.070826 111.001291) (xy 156.024274 111.10158) (xy 156.020688 111.109305) (xy 155.960989 111.32457) (xy 155.937251 111.546695) (xy 155.937548 111.551848) (xy 155.937548 111.551851) (xy 155.944589 111.673963) (xy 155.95011 111.769715) (xy 155.951247 111.774761) (xy 155.951248 111.774767) (xy 155.971119 111.862939) (xy 155.999222 111.987639) (xy 156.051388 112.116109) (xy 156.066267 112.152751) (xy 156.083266 112.194616) (xy 156.122414 112.2585) (xy 156.195916 112.378444) (xy 156.199987 112.385088) (xy 156.34625 112.553938) (xy 156.518126 112.696632) (xy 156.711 112.809338) (xy 156.919692 112.88903) (xy 156.92476 112.890061) (xy 156.924763 112.890062) (xy 157.027594 112.910983) (xy 157.138597 112.933567) (xy 157.143772 112.933757) (xy 157.143774 112.933757) (xy 157.356673 112.941564) (xy 157.356677 112.941564) (xy 157.361837 112.941753) (xy 157.366957 112.941097) (xy 157.366959 112.941097) (xy 157.578288 112.914025) (xy 157.578289 112.914025) (xy 157.583416 112.913368) (xy 157.63948 112.896548) (xy 157.792429 112.850661) (xy 157.792434 112.850659) (xy 157.797384 112.849174) (xy 157.997994 112.750896) (xy 158.17986 112.621173) (xy 158.232167 112.569049) (xy 158.317011 112.4845) (xy 158.338096 112.463489) (xy 158.365086 112.425929) (xy 158.465435 112.286277) (xy 158.468453 112.282077) (xy 158.477802 112.263162) (xy 158.565136 112.086453) (xy 158.565137 112.086451) (xy 158.56743 112.081811) (xy 158.614833 111.92579) (xy 158.630865 111.873023) (xy 158.630865 111.873021) (xy 158.63237 111.868069) (xy 158.661529 111.64659) (xy 158.661971 111.628502) (xy 158.663074 111.583365) (xy 158.663074 111.583361) (xy 158.663156 111.58) (xy 158.644852 111.357361) (xy 158.590431 111.140702) (xy 158.501354 110.93584) (xy 158.380014 110.748277) (xy 158.22967 110.583051) (xy 158.225619 110.579852) (xy 158.225615 110.579848) (xy 158.058414 110.4478) (xy 158.05841 110.447798) (xy 158.054359 110.444598) (xy 158.013053 110.421796) (xy 157.963084 110.371364) (xy 157.948312 110.301921) (xy 157.973428 110.235516) (xy 158.00078 110.208909) (xy 158.122702 110.121943) (xy 158.17986 110.081173) (xy 158.182886 110.078157) (xy 158.247588 110.04957) (xy 158.263976 110.0485) (xy 159.398157 110.0485) (xy 159.411764 110.049237) (xy 159.443262 110.052659) (xy 159.443267 110.052659) (xy 159.449388 110.053324) (xy 159.475638 110.051027) (xy 159.499388 110.04895) (xy 159.504214 110.048621) (xy 159.506686 110.0485) (xy 159.509769 110.0485) (xy 159.521738 110.047326) (xy 159.552506 110.04431) (xy 159.553819 110.044188) (xy 159.598084 110.040315) (xy 159.646413 110.036087) (xy 159.651532 110.0346) (xy 159.656833 110.03408) (xy 159.745834 110.007209) (xy 159.746967 110.006874) (xy 159.830414 109.98263) (xy 159.830418 109.982628) (xy 159.836336 109.980909) (xy 159.841068 109.978456) (xy 159.846169 109.976916) (xy 159.906348 109.944919) (xy 159.975885 109.9306) (xy 160.042126 109.956148) (xy 160.084038 110.013454) (xy 160.0915 110.056171) (xy 160.0915 113.014364) (xy 160.090422 113.030807) (xy 160.08625 113.0625) (xy 160.0915 113.10238) (xy 160.0915 113.102385) (xy 160.102183 113.183521) (xy 160.10301 113.189806) (xy 160.10301 113.189809) (xy 160.105851 113.211389) (xy 160.107162 113.221351) (xy 160.110321 113.228977) (xy 160.110321 113.228978) (xy 160.119462 113.251047) (xy 160.168476 113.369376) (xy 160.173503 113.375927) (xy 160.173504 113.375929) (xy 160.24152 113.464569) (xy 160.241526 113.464575) (xy 160.266013 113.496487) (xy 160.272568 113.501517) (xy 160.291379 113.515952) (xy 160.30377 113.526819) (xy 160.354595 113.577644) (xy 160.388621 113.639956) (xy 160.3915 113.666739) (xy 160.3915 114.087072) (xy 160.391837 114.090318) (xy 160.391837 114.090322) (xy 160.401556 114.183987) (xy 160.402293 114.191093) (xy 160.404474 114.197629) (xy 160.404474 114.197631) (xy 160.424678 114.258188) (xy 160.457346 114.356107) (xy 160.548884 114.504031) (xy 160.554066 114.509204) (xy 160.666816 114.621758) (xy 160.666821 114.621762) (xy 160.671997 114.626929) (xy 160.678227 114.630769) (xy 160.678228 114.63077) (xy 160.794104 114.702197) (xy 160.82008 114.718209) (xy 160.985191 114.772974) (xy 160.992027 114.773674) (xy 160.99203 114.773675) (xy 161.03937 114.778525) (xy 161.087928 114.7835) (xy 161.787072 114.7835) (xy 161.790318 114.783163) (xy 161.790322 114.783163) (xy 161.884235 114.773419) (xy 161.884239 114.773418) (xy 161.891093 114.772707) (xy 161.897629 114.770526) (xy 161.897631 114.770526) (xy 162.030395 114.726232) (xy 162.056107 114.717654) (xy 162.204031 114.626116) (xy 162.211274 114.618861) (xy 162.213038 114.617895) (xy 162.214941 114.616387) (xy 162.215199 114.616713) (xy 162.273554 114.584781) (xy 162.344375 114.589782) (xy 162.38947 114.618708) (xy 162.392131 114.621364) (xy 162.40354 114.630375) (xy 162.539063 114.713912) (xy 162.552241 114.720056) (xy 162.703766 114.770315) (xy 162.717132 114.773181) (xy 162.80977 114.782672) (xy 162.816185 114.783) (xy 162.890385 114.783) (xy 162.905624 114.778525) (xy 162.906829 114.777135) (xy 162.9085 114.769452) (xy 162.9085 114.764885) (xy 163.4165 114.764885) (xy 163.420975 114.780124) (xy 163.422365 114.781329) (xy 163.430048 114.783) (xy 163.508766 114.783) (xy 163.515282 114.782663) (xy 163.609132 114.772925) (xy 163.622528 114.770032) (xy 163.773953 114.719512) (xy 163.787115 114.713347) (xy 163.922492 114.629574) (xy 163.93389 114.62054) (xy 164.046363 114.507871) (xy 164.055375 114.49646) (xy 164.138912 114.360937) (xy 164.145056 114.347759) (xy 164.195315 114.196234) (xy 164.198181 114.182868) (xy 164.207672 114.09023) (xy 164.208 114.083815) (xy 164.208 114.072115) (xy 164.203525 114.056876) (xy 164.202135 114.055671) (xy 164.194452 114.054) (xy 163.434615 114.054) (xy 163.419376 114.058475) (xy 163.418171 114.059865) (xy 163.4165 114.067548) (xy 163.4165 114.764885) (xy 162.9085 114.764885) (xy 162.9085 113.709669) (xy 165.877001 113.709669) (xy 165.877371 113.71649) (xy 165.882895 113.767352) (xy 165.886521 113.782604) (xy 165.931676 113.903054) (xy 165.940214 113.918649) (xy 166.016715 114.020724) (xy 166.029276 114.033285) (xy 166.131351 114.109786) (xy 166.146946 114.118324) (xy 166.267394 114.163478) (xy 166.282649 114.167105) (xy 166.333514 114.172631) (xy 166.340328 114.173) (xy 167.127885 114.173) (xy 167.143124 114.168525) (xy 167.144329 114.167135) (xy 167.146 114.159452) (xy 167.146 114.154884) (xy 167.654 114.154884) (xy 167.658475 114.170123) (xy 167.659865 114.171328) (xy 167.667548 114.172999) (xy 168.459669 114.172999) (xy 168.46649 114.172629) (xy 168.517352 114.167105) (xy 168.532604 114.163479) (xy 168.653054 114.118324) (xy 168.668649 114.109786) (xy 168.770724 114.033285) (xy 168.783285 114.020724) (xy 168.859786 113.918649) (xy 168.868324 113.903054) (xy 168.913478 113.782606) (xy 168.917105 113.767351) (xy 168.922631 113.716486) (xy 168.923 113.709672) (xy 168.923 113.072115) (xy 168.918525 113.056876) (xy 168.917135 113.055671) (xy 168.909452 113.054) (xy 167.672115 113.054) (xy 167.656876 113.058475) (xy 167.655671 113.059865) (xy 167.654 113.067548) (xy 167.654 114.154884) (xy 167.146 114.154884) (xy 167.146 113.072115) (xy 167.141525 113.056876) (xy 167.140135 113.055671) (xy 167.132452 113.054) (xy 165.895116 113.054) (xy 165.879877 113.058475) (xy 165.878672 113.059865) (xy 165.877001 113.067548) (xy 165.877001 113.709669) (xy 162.9085 113.709669) (xy 162.9085 113.672) (xy 162.928502 113.603879) (xy 162.982158 113.557386) (xy 163.0345 113.546) (xy 164.189885 113.546) (xy 164.205124 113.541525) (xy 164.206329 113.540135) (xy 164.208 113.532452) (xy 164.208 113.516234) (xy 164.207663 113.509718) (xy 164.197925 113.415868) (xy 164.195032 113.402472) (xy 164.144512 113.251047) (xy 164.138347 113.237885) (xy 164.054574 113.102508) (xy 164.04554 113.09111) (xy 163.932871 112.978637) (xy 163.92146 112.969625) (xy 163.785937 112.886088) (xy 163.780751 112.88367) (xy 163.727466 112.836754) (xy 163.708 112.769475) (xy 163.708 111.272115) (xy 163.703525 111.256876) (xy 163.702135 111.255671) (xy 163.694452 111.254) (xy 162.172 111.254) (xy 162.103879 111.233998) (xy 162.057386 111.180342) (xy 162.046 111.128) (xy 162.046 108.760116) (xy 162.041525 108.744877) (xy 162.040135 108.743672) (xy 162.032452 108.742001) (xy 161.355331 108.742001) (xy 161.34851 108.742371) (xy 161.297648 108.747895) (xy 161.282396 108.751521) (xy 161.161946 108.796676) (xy 161.146352 108.805214) (xy 161.13054 108.817064) (xy 161.064034 108.841911) (xy 160.994651 108.826858) (xy 160.965881 108.805332) (xy 160.942184 108.781635) (xy 160.908158 108.719323) (xy 160.906064 108.678498) (xy 160.908107 108.660278) (xy 160.908107 108.660276) (xy 160.9085 108.656773) (xy 160.9085 108.653245) (xy 160.908555 108.652261) (xy 160.909002 108.646581) (xy 160.913374 108.603538) (xy 160.909059 108.557891) (xy 160.9085 108.546033) (xy 160.9085 108.269042) (xy 160.928502 108.200921) (xy 160.982158 108.154428) (xy 161.052432 108.144324) (xy 161.110065 108.168216) (xy 161.130459 108.1835) (xy 161.153295 108.200615) (xy 161.289684 108.251745) (xy 161.351866 108.2585) (xy 162.330075 108.2585) (xy 162.398196 108.278502) (xy 162.41917 108.295405) (xy 162.65067 108.526905) (xy 162.684696 108.589217) (xy 162.679631 108.660032) (xy 162.637084 108.716868) (xy 162.588895 108.734842) (xy 162.589498 108.736896) (xy 162.556876 108.746475) (xy 162.555671 108.747865) (xy 162.554 108.755548) (xy 162.554 110.727885) (xy 162.558475 110.743124) (xy 162.559865 110.744329) (xy 162.567548 110.746) (xy 163.689884 110.746) (xy 163.705123 110.741525) (xy 163.706328 110.740135) (xy 163.707999 110.732452) (xy 163.707999 109.888424) (xy 163.728001 109.820303) (xy 163.781657 109.77381) (xy 163.851931 109.763706) (xy 163.916511 109.7932) (xy 163.923094 109.799329) (xy 165.053145 110.929379) (xy 165.062247 110.939522) (xy 165.085968 110.969025) (xy 165.090696 110.972992) (xy 165.124421 111.001291) (xy 165.12807 111.004473) (xy 165.129883 111.006117) (xy 165.132075 111.008309) (xy 165.165276 111.03558) (xy 165.166164 111.036318) (xy 165.187963 111.054609) (xy 165.232753 111.092193) (xy 165.232756 111.092195) (xy 165.237474 111.096154) (xy 165.242147 111.098723) (xy 165.246262 111.102103) (xy 165.251691 111.105014) (xy 165.251694 111.105016) (xy 165.32818 111.146028) (xy 165.329338 111.146657) (xy 165.379232 111.174086) (xy 165.410787 111.191433) (xy 165.415865 111.193044) (xy 165.420563 111.195563) (xy 165.509498 111.222753) (xy 165.510702 111.223128) (xy 165.599306 111.251235) (xy 165.604597 111.251828) (xy 165.609698 111.253388) (xy 165.702311 111.262795) (xy 165.703431 111.262915) (xy 165.753227 111.2685) (xy 165.756756 111.2685) (xy 165.757739 111.268555) (xy 165.763426 111.269003) (xy 165.780738 111.270761) (xy 165.800336 111.272752) (xy 165.800339 111.272752) (xy 165.806463 111.273374) (xy 165.852112 111.269059) (xy 165.863969 111.2685) (xy 166.048965 111.2685) (xy 166.117086 111.288502) (xy 166.163579 111.342158) (xy 166.173683 111.412432) (xy 166.144189 111.477012) (xy 166.12453 111.495326) (xy 166.029276 111.566715) (xy 166.016715 111.579276) (xy 165.940214 111.681351) (xy 165.931676 111.696946) (xy 165.886522 111.817394) (xy 165.882895 111.832649) (xy 165.877369 111.883514) (xy 165.877 111.890328) (xy 165.877 112.527885) (xy 165.881475 112.543124) (xy 165.882865 112.544329) (xy 165.890548 112.546) (xy 168.904884 112.546) (xy 168.920123 112.541525) (xy 168.921328 112.540135) (xy 168.922999 112.532452) (xy 168.922999 111.890331) (xy 168.922629 111.88351) (xy 168.917105 111.832648) (xy 168.913479 111.817396) (xy 168.868324 111.696946) (xy 168.859786 111.681351) (xy 168.783285 111.579276) (xy 168.770724 111.566715) (xy 168.668649 111.490214) (xy 168.653054 111.481676) (xy 168.558428 111.446202) (xy 168.501664 111.40356) (xy 168.476964 111.336999) (xy 168.492172 111.26765) (xy 168.515687 111.23705) (xy 168.578548 111.177084) (xy 168.578553 111.177079) (xy 168.58241 111.173399) (xy 168.721548 110.986391) (xy 168.728361 110.972992) (xy 168.811193 110.810072) (xy 168.827188 110.778612) (xy 168.89631 110.556005) (xy 168.907872 110.468774) (xy 168.926236 110.330219) (xy 168.926236 110.330215) (xy 168.926936 110.324935) (xy 168.925655 110.2908) (xy 168.922546 110.207999) (xy 168.918191 110.092007) (xy 168.870326 109.863883) (xy 168.864445 109.84899) (xy 168.822003 109.741522) (xy 168.784708 109.647086) (xy 168.697648 109.503614) (xy 168.666555 109.452374) (xy 168.666553 109.452371) (xy 168.663787 109.447813) (xy 168.656903 109.43988) (xy 168.514518 109.275796) (xy 168.514516 109.275794) (xy 168.511018 109.271763) (xy 168.43851 109.21231) (xy 168.3349 109.127354) (xy 168.334894 109.12735) (xy 168.330772 109.12397) (xy 168.287002 109.099055) (xy 168.237696 109.047973) (xy 168.223834 108.978343) (xy 168.249817 108.912272) (xy 168.278965 108.885035) (xy 168.397352 108.805332) (xy 168.409326 108.797271) (xy 168.409328 108.797269) (xy 168.413752 108.794291) (xy 168.443407 108.766002) (xy 168.535134 108.678498) (xy 168.58241 108.633399) (xy 168.721548 108.446391) (xy 168.730888 108.428022) (xy 168.794177 108.30354) (xy 168.827188 108.238612) (xy 168.838987 108.200615) (xy 168.894727 108.021103) (xy 168.89631 108.016005) (xy 168.90417 107.956704) (xy 168.926236 107.790219) (xy 168.926236 107.790215) (xy 168.926936 107.784935) (xy 168.918191 107.552007) (xy 168.870326 107.323883) (xy 168.862393 107.303794) (xy 168.809509 107.169886) (xy 168.784708 107.107086) (xy 168.703081 106.972568) (xy 168.666555 106.912374) (xy 168.666553 106.912371) (xy 168.663787 106.907813) (xy 168.65302 106.895405) (xy 168.514518 106.735796) (xy 168.514516 106.735794) (xy 168.511018 106.731763) (xy 168.443052 106.676034) (xy 168.3349 106.587354) (xy 168.334894 106.58735) (xy 168.330772 106.58397) (xy 168.287002 106.559055) (xy 168.237696 106.507973) (xy 168.223834 106.438343) (xy 168.249817 106.372272) (xy 168.278965 106.345035) (xy 168.395145 106.266818) (xy 168.409326 106.257271) (xy 168.409328 106.257269) (xy 168.413752 106.254291) (xy 168.41815 106.250096) (xy 168.51586 106.156885) (xy 168.58241 106.093399) (xy 168.721548 105.906391) (xy 168.728353 105.893008) (xy 168.791245 105.769306) (xy 168.827188 105.698612) (xy 168.835631 105.671423) (xy 168.894727 105.481103) (xy 168.89631 105.476005) (xy 168.908875 105.381206) (xy 168.926236 105.250219) (xy 168.926236 105.250215) (xy 168.926936 105.244935) (xy 168.925583 105.208882) (xy 168.921631 105.103642) (xy 168.918191 105.012007) (xy 168.870326 104.783883) (xy 168.784708 104.567086) (xy 168.713251 104.449327) (xy 168.666555 104.372374) (xy 168.666553 104.372371) (xy 168.663787 104.367813) (xy 168.648166 104.349811) (xy 168.514518 104.195796) (xy 168.514516 104.195794) (xy 168.511018 104.191763) (xy 168.468269 104.156711) (xy 168.3349 104.047354) (xy 168.334894 104.04735) (xy 168.330772 104.04397) (xy 168.1282 103.92866) (xy 168.123184 103.926839) (xy 168.123179 103.926837) (xy 167.914112 103.850949) (xy 167.914108 103.850948) (xy 167.909097 103.849129) (xy 167.903848 103.84818) (xy 167.903845 103.848179) (xy 167.683809 103.80839) (xy 167.683802 103.808389) (xy 167.679725 103.807652) (xy 167.661801 103.806807) (xy 167.656786 103.80657) (xy 167.656779 103.80657) (xy 167.655298 103.8065) (xy 167.191473 103.8065) (xy 167.017743 103.821241) (xy 167.012579 103.822581) (xy 167.012575 103.822582) (xy 166.797292 103.878459) (xy 166.797288 103.878461) (xy 166.792127 103.8798) (xy 166.77023 103.889664) (xy 166.584464 103.973345) (xy 166.584461 103.973346) (xy 166.579603 103.975535) (xy 166.386248 104.105709) (xy 166.382391 104.109388) (xy 166.382389 104.10939) (xy 166.335675 104.153953) (xy 166.21759 104.266601) (xy 166.078452 104.453609) (xy 166.076036 104.45836) (xy 166.076034 104.458364) (xy 166.053541 104.502605) (xy 166.004837 104.554263) (xy 165.941224 104.5715) (xy 165.649245 104.5715) (xy 165.581124 104.551498) (xy 165.56015 104.534595) (xy 164.18216 103.156605) (xy 164.148134 103.094293) (xy 164.151662 103.027842) (xy 164.195316 102.896231) (xy 164.198181 102.882868) (xy 164.207672 102.79023) (xy 164.208 102.783815) (xy 164.208 102.772115) (xy 164.203525 102.756876) (xy 164.202135 102.755671) (xy 164.194452 102.754) (xy 163.0345 102.754) (xy 162.966379 102.733998) (xy 162.919886 102.680342) (xy 162.9085 102.628) (xy 162.9085 102.409669) (xy 165.877001 102.409669) (xy 165.877371 102.41649) (xy 165.882895 102.467352) (xy 165.886521 102.482604) (xy 165.931676 102.603054) (xy 165.940214 102.618649) (xy 166.016715 102.720724) (xy 166.029276 102.733285) (xy 166.131351 102.809786) (xy 166.146946 102.818324) (xy 166.267394 102.863478) (xy 166.282649 102.867105) (xy 166.333514 102.872631) (xy 166.340328 102.873) (xy 167.127885 102.873) (xy 167.143124 102.868525) (xy 167.144329 102.867135) (xy 167.146 102.859452) (xy 167.146 102.854884) (xy 167.654 102.854884) (xy 167.658475 102.870123) (xy 167.659865 102.871328) (xy 167.667548 102.872999) (xy 168.459669 102.872999) (xy 168.46649 102.872629) (xy 168.517352 102.867105) (xy 168.532604 102.863479) (xy 168.653054 102.818324) (xy 168.668649 102.809786) (xy 168.770724 102.733285) (xy 168.783285 102.720724) (xy 168.859786 102.618649) (xy 168.868324 102.603054) (xy 168.913478 102.482606) (xy 168.917105 102.467351) (xy 168.922631 102.416486) (xy 168.923 102.409672) (xy 168.923 101.772115) (xy 168.918525 101.756876) (xy 168.917135 101.755671) (xy 168.909452 101.754) (xy 167.672115 101.754) (xy 167.656876 101.758475) (xy 167.655671 101.759865) (xy 167.654 101.767548) (xy 167.654 102.854884) (xy 167.146 102.854884) (xy 167.146 101.772115) (xy 167.141525 101.756876) (xy 167.140135 101.755671) (xy 167.132452 101.754) (xy 165.895116 101.754) (xy 165.879877 101.758475) (xy 165.878672 101.759865) (xy 165.877001 101.767548) (xy 165.877001 102.409669) (xy 162.9085 102.409669) (xy 162.9085 102.372) (xy 162.928502 102.303879) (xy 162.982158 102.257386) (xy 163.0345 102.246) (xy 164.189885 102.246) (xy 164.205124 102.241525) (xy 164.206329 102.240135) (xy 164.208 102.232452) (xy 164.208 102.216234) (xy 164.207663 102.209718) (xy 164.197925 102.115868) (xy 164.195032 102.102472) (xy 164.144512 101.951047) (xy 164.138347 101.937885) (xy 164.054574 101.802508) (xy 164.04554 101.79111) (xy 163.932871 101.678637) (xy 163.92146 101.669625) (xy 163.785937 101.586088) (xy 163.780751 101.58367) (xy 163.727466 101.536754) (xy 163.708 101.469475) (xy 163.708 99.972115) (xy 163.703525 99.956876) (xy 163.702135 99.955671) (xy 163.694452 99.954) (xy 162.172 99.954) (xy 162.103879 99.933998) (xy 162.057386 99.880342) (xy 162.046 99.828) (xy 162.046 97.460116) (xy 162.041525 97.444877) (xy 162.040135 97.443672) (xy 162.032452 97.442001) (xy 161.355331 97.442001) (xy 161.34851 97.442371) (xy 161.29765 97.447895) (xy 161.274709 97.453349) (xy 161.274228 97.451325) (xy 161.214224 97.455717) (xy 161.151854 97.421797) (xy 161.133522 97.397949) (xy 161.131524 97.393124) (xy 161.058478 97.297929) (xy 161.058474 97.297925) (xy 161.050273 97.287237) (xy 161.039016 97.272566) (xy 161.039013 97.272563) (xy 161.033987 97.266013) (xy 161.027432 97.260983) (xy 161.008621 97.246548) (xy 160.99623 97.235681) (xy 160.842184 97.081635) (xy 160.808158 97.019323) (xy 160.806064 96.978498) (xy 160.808107 96.960278) (xy 160.808107 96.960276) (xy 160.8085 96.956773) (xy 160.8085 96.953245) (xy 160.808555 96.952261) (xy 160.809002 96.946581) (xy 160.813374 96.903538) (xy 160.812795 96.89741) (xy 160.812816 96.891286) (xy 160.833056 96.823236) (xy 160.886875 96.776932) (xy 160.957184 96.767074) (xy 161.021661 96.796793) (xy 161.02791 96.802633) (xy 161.031358 96.806081) (xy 161.036739 96.813261) (xy 161.153295 96.900615) (xy 161.289684 96.951745) (xy 161.351866 96.9585) (xy 162.330075 96.9585) (xy 162.398196 96.978502) (xy 162.41917 96.995405) (xy 162.65067 97.226905) (xy 162.684696 97.289217) (xy 162.679631 97.360032) (xy 162.637084 97.416868) (xy 162.588895 97.434842) (xy 162.589498 97.436896) (xy 162.556876 97.446475) (xy 162.555671 97.447865) (xy 162.554 97.455548) (xy 162.554 99.427885) (xy 162.558475 99.443124) (xy 162.559865 99.444329) (xy 162.567548 99.446) (xy 163.689884 99.446) (xy 163.705123 99.441525) (xy 163.706328 99.440135) (xy 163.707999 99.432452) (xy 163.707999 98.588424) (xy 163.728001 98.520303) (xy 163.781657 98.47381) (xy 163.851931 98.463706) (xy 163.916511 98.4932) (xy 163.923094 98.499329) (xy 165.053145 99.629379) (xy 165.062247 99.639522) (xy 165.085968 99.669025) (xy 165.090696 99.672992) (xy 165.124421 99.701291) (xy 165.12807 99.704473) (xy 165.129883 99.706117) (xy 165.132075 99.708309) (xy 165.165276 99.73558) (xy 165.166164 99.736318) (xy 165.172341 99.7415) (xy 165.232753 99.792193) (xy 165.232756 99.792195) (xy 165.237474 99.796154) (xy 165.242147 99.798723) (xy 165.246262 99.802103) (xy 165.251691 99.805014) (xy 165.251694 99.805016) (xy 165.32818 99.846028) (xy 165.329338 99.846657) (xy 165.405388 99.888465) (xy 165.410787 99.891433) (xy 165.415865 99.893044) (xy 165.420563 99.895563) (xy 165.509498 99.922753) (xy 165.510702 99.923128) (xy 165.599306 99.951235) (xy 165.604597 99.951828) (xy 165.609698 99.953388) (xy 165.702311 99.962795) (xy 165.703431 99.962915) (xy 165.753227 99.9685) (xy 165.756756 99.9685) (xy 165.757739 99.968555) (xy 165.763426 99.969003) (xy 165.783683 99.97106) (xy 165.800336 99.972752) (xy 165.800339 99.972752) (xy 165.806463 99.973374) (xy 165.852112 99.969059) (xy 165.863969 99.9685) (xy 166.048965 99.9685) (xy 166.117086 99.988502) (xy 166.163579 100.042158) (xy 166.173683 100.112432) (xy 166.144189 100.177012) (xy 166.12453 100.195326) (xy 166.029276 100.266715) (xy 166.016715 100.279276) (xy 165.940214 100.381351) (xy 165.931676 100.396946) (xy 165.886522 100.517394) (xy 165.882895 100.532649) (xy 165.877369 100.583514) (xy 165.877 100.590328) (xy 165.877 101.227885) (xy 165.881475 101.243124) (xy 165.882865 101.244329) (xy 165.890548 101.246) (xy 168.904884 101.246) (xy 168.920123 101.241525) (xy 168.921328 101.240135) (xy 168.922999 101.232452) (xy 168.922999 100.590331) (xy 168.922629 100.58351) (xy 168.917105 100.532648) (xy 168.913479 100.517396) (xy 168.868324 100.396946) (xy 168.859786 100.381351) (xy 168.783285 100.279276) (xy 168.770724 100.266715) (xy 168.668649 100.190214) (xy 168.653054 100.181676) (xy 168.558428 100.146202) (xy 168.501664 100.10356) (xy 168.476964 100.036999) (xy 168.492172 99.96765) (xy 168.515687 99.93705) (xy 168.578548 99.877084) (xy 168.578553 99.877079) (xy 168.58241 99.873399) (xy 168.721548 99.686391) (xy 168.728361 99.672992) (xy 168.816432 99.499767) (xy 168.827188 99.478612) (xy 168.89631 99.256005) (xy 168.904008 99.197925) (xy 168.926236 99.030219) (xy 168.926236 99.030215) (xy 168.926936 99.024935) (xy 168.925693 98.991812) (xy 168.921926 98.8915) (xy 168.918191 98.792007) (xy 168.870326 98.563883) (xy 168.860715 98.539545) (xy 168.820977 98.438925) (xy 168.784708 98.347086) (xy 168.724032 98.247095) (xy 168.666555 98.152374) (xy 168.666553 98.152371) (xy 168.663787 98.147813) (xy 168.660291 98.143784) (xy 168.514518 97.975796) (xy 168.514516 97.975794) (xy 168.511018 97.971763) (xy 168.433495 97.908198) (xy 168.3349 97.827354) (xy 168.334894 97.82735) (xy 168.330772 97.82397) (xy 168.287002 97.799055) (xy 168.237696 97.747973) (xy 168.223834 97.678343) (xy 168.249817 97.612272) (xy 168.278965 97.585035) (xy 168.413752 97.494291) (xy 168.426163 97.482452) (xy 168.52154 97.391466) (xy 168.58241 97.333399) (xy 168.721548 97.146391) (xy 168.738144 97.11375) (xy 168.784396 97.022778) (xy 168.827188 96.938612) (xy 168.838987 96.900615) (xy 168.894727 96.721103) (xy 168.89631 96.716005) (xy 168.910061 96.612255) (xy 168.926236 96.490219) (xy 168.926236 96.490215) (xy 168.926936 96.484935) (xy 168.918191 96.252007) (xy 168.870326 96.023883) (xy 168.784708 95.807086) (xy 168.663787 95.607813) (xy 168.640854 95.581385) (xy 168.514518 95.435796) (xy 168.514516 95.435794) (xy 168.511018 95.431763) (xy 168.447981 95.380076) (xy 168.3349 95.287354) (xy 168.334894 95.28735) (xy 168.330772 95.28397) (xy 168.287002 95.259055) (xy 168.237696 95.207973) (xy 168.223834 95.138343) (xy 168.249817 95.072272) (xy 168.278965 95.045035) (xy 168.413752 94.954291) (xy 168.432328 94.936571) (xy 168.523275 94.849811) (xy 168.58241 94.793399) (xy 168.721548 94.606391) (xy 168.728422 94.592872) (xy 168.776418 94.498469) (xy 168.827188 94.398612) (xy 168.89631 94.176005) (xy 168.907784 94.089433) (xy 168.926236 93.950219) (xy 168.926236 93.950215) (xy 168.926936 93.944935) (xy 168.92623 93.926116) (xy 168.922355 93.822926) (xy 168.918191 93.712007) (xy 168.870326 93.483883) (xy 168.784708 93.267086) (xy 168.681742 93.097402) (xy 168.666555 93.072374) (xy 168.666553 93.072371) (xy 168.663787 93.067813) (xy 168.621359 93.018919) (xy 168.514518 92.895796) (xy 168.514516 92.895794) (xy 168.511018 92.891763) (xy 168.468269 92.856711) (xy 168.3349 92.747354) (xy 168.334894 92.74735) (xy 168.330772 92.74397) (xy 168.1282 92.62866) (xy 168.123184 92.626839) (xy 168.123179 92.626837) (xy 167.914112 92.550949) (xy 167.914108 92.550948) (xy 167.909097 92.549129) (xy 167.903848 92.54818) (xy 167.903845 92.548179) (xy 167.683809 92.50839) (xy 167.683802 92.508389) (xy 167.679725 92.507652) (xy 167.661801 92.506807) (xy 167.656786 92.50657) (xy 167.656779 92.50657) (xy 167.655298 92.5065) (xy 167.191473 92.5065) (xy 167.017743 92.521241) (xy 167.012579 92.522581) (xy 167.012575 92.522582) (xy 166.797292 92.578459) (xy 166.797288 92.578461) (xy 166.792127 92.5798) (xy 166.787261 92.581992) (xy 166.584464 92.673345) (xy 166.584461 92.673346) (xy 166.579603 92.675535) (xy 166.386248 92.805709) (xy 166.382391 92.809388) (xy 166.382389 92.80939) (xy 166.346663 92.843471) (xy 166.21759 92.966601) (xy 166.214407 92.970878) (xy 166.214407 92.970879) (xy 166.08049 93.150869) (xy 166.023779 93.193582) (xy 165.952979 93.198855) (xy 165.890306 93.164751) (xy 164.329322 91.603767) (xy 164.318455 91.591376) (xy 164.30402 91.572564) (xy 164.298994 91.566014) (xy 164.267082 91.541527) (xy 164.267079 91.541524) (xy 164.256342 91.533285) (xy 164.253439 91.531057) (xy 164.211573 91.473718) (xy 164.204801 91.418253) (xy 164.207672 91.39023) (xy 164.208 91.383815) (xy 164.208 91.372115) (xy 164.203525 91.356876) (xy 164.202135 91.355671) (xy 164.194452 91.354) (xy 163.0345 91.354) (xy 162.966379 91.333998) (xy 162.919886 91.280342) (xy 162.9085 91.228) (xy 162.9085 91.209669) (xy 165.877001 91.209669) (xy 165.877371 91.21649) (xy 165.882895 91.267352) (xy 165.886521 91.282604) (xy 165.931676 91.403054) (xy 165.940214 91.418649) (xy 166.016715 91.520724) (xy 166.029276 91.533285) (xy 166.131351 91.609786) (xy 166.146946 91.618324) (xy 166.267394 91.663478) (xy 166.282649 91.667105) (xy 166.333514 91.672631) (xy 166.340328 91.673) (xy 167.127885 91.673) (xy 167.143124 91.668525) (xy 167.144329 91.667135) (xy 167.146 91.659452) (xy 167.146 91.654884) (xy 167.654 91.654884) (xy 167.658475 91.670123) (xy 167.659865 91.671328) (xy 167.667548 91.672999) (xy 168.459669 91.672999) (xy 168.46649 91.672629) (xy 168.517352 91.667105) (xy 168.532604 91.663479) (xy 168.653054 91.618324) (xy 168.668649 91.609786) (xy 168.770724 91.533285) (xy 168.783285 91.520724) (xy 168.859786 91.418649) (xy 168.868324 91.403054) (xy 168.913478 91.282606) (xy 168.917105 91.267351) (xy 168.922631 91.216486) (xy 168.923 91.209672) (xy 168.923 90.572115) (xy 168.918525 90.556876) (xy 168.917135 90.555671) (xy 168.909452 90.554) (xy 167.672115 90.554) (xy 167.656876 90.558475) (xy 167.655671 90.559865) (xy 167.654 90.567548) (xy 167.654 91.654884) (xy 167.146 91.654884) (xy 167.146 90.572115) (xy 167.141525 90.556876) (xy 167.140135 90.555671) (xy 167.132452 90.554) (xy 165.895116 90.554) (xy 165.879877 90.558475) (xy 165.878672 90.559865) (xy 165.877001 90.567548) (xy 165.877001 91.209669) (xy 162.9085 91.209669) (xy 162.9085 90.972) (xy 162.928502 90.903879) (xy 162.982158 90.857386) (xy 163.0345 90.846) (xy 164.189885 90.846) (xy 164.205124 90.841525) (xy 164.206329 90.840135) (xy 164.208 90.832452) (xy 164.208 90.816234) (xy 164.207663 90.809718) (xy 164.197925 90.715868) (xy 164.195032 90.702472) (xy 164.144512 90.551047) (xy 164.138347 90.537885) (xy 164.054574 90.402508) (xy 164.04554 90.39111) (xy 163.932871 90.278637) (xy 163.92146 90.269625) (xy 163.785937 90.186088) (xy 163.780751 90.18367) (xy 163.727466 90.136754) (xy 163.708 90.069475) (xy 163.708 88.572115) (xy 163.703525 88.556876) (xy 163.702135 88.555671) (xy 163.694452 88.554) (xy 162.172 88.554) (xy 162.103879 88.533998) (xy 162.057386 88.480342) (xy 162.046 88.428) (xy 162.046 86.060116) (xy 162.041525 86.044877) (xy 162.040135 86.043672) (xy 162.032452 86.042001) (xy 161.355331 86.042001) (xy 161.34851 86.042371) (xy 161.297648 86.047895) (xy 161.282397 86.051521) (xy 161.235476 86.069111) (xy 161.164669 86.074294) (xy 161.114546 86.051094) (xy 161.108625 86.046551) (xy 161.09623 86.035681) (xy 160.942184 85.881635) (xy 160.908158 85.819323) (xy 160.906064 85.778498) (xy 160.908107 85.760278) (xy 160.908107 85.760276) (xy 160.9085 85.756773) (xy 160.9085 85.753245) (xy 160.908555 85.752261) (xy 160.909002 85.746581) (xy 160.913374 85.703538) (xy 160.909059 85.657891) (xy 160.9085 85.646033) (xy 160.9085 85.569042) (xy 160.928502 85.500921) (xy 160.982158 85.454428) (xy 161.052432 85.444324) (xy 161.110065 85.468216) (xy 161.134459 85.486498) (xy 161.153295 85.500615) (xy 161.289684 85.551745) (xy 161.351866 85.5585) (xy 162.262274 85.5585) (xy 162.330395 85.578502) (xy 162.351369 85.595405) (xy 162.596539 85.840575) (xy 162.630565 85.902887) (xy 162.6255 85.973702) (xy 162.582953 86.030538) (xy 162.561288 86.041382) (xy 162.555671 86.047865) (xy 162.554 86.055548) (xy 162.554 88.027885) (xy 162.558475 88.043124) (xy 162.559865 88.044329) (xy 162.567548 88.046) (xy 163.689884 88.046) (xy 163.705123 88.041525) (xy 163.706328 88.040135) (xy 163.707999 88.032452) (xy 163.707999 87.256225) (xy 163.728001 87.188104) (xy 163.781657 87.141611) (xy 163.851931 87.131507) (xy 163.916511 87.161001) (xy 163.923094 87.16713) (xy 165.185344 88.429379) (xy 165.194446 88.439522) (xy 165.208914 88.457516) (xy 165.218167 88.469025) (xy 165.222895 88.472992) (xy 165.25662 88.501291) (xy 165.260268 88.504472) (xy 165.26208 88.506115) (xy 165.264274 88.508309) (xy 165.297548 88.535642) (xy 165.298346 88.536304) (xy 165.369673 88.596154) (xy 165.374343 88.598722) (xy 165.37846 88.602103) (xy 165.409589 88.618794) (xy 165.460285 88.645977) (xy 165.461444 88.646606) (xy 165.53758 88.688462) (xy 165.537588 88.688465) (xy 165.542986 88.691433) (xy 165.548068 88.693045) (xy 165.552762 88.695562) (xy 165.64173 88.722762) (xy 165.642758 88.723082) (xy 165.731505 88.751235) (xy 165.736801 88.751829) (xy 165.741897 88.753387) (xy 165.834456 88.76279) (xy 165.835592 88.762911) (xy 165.869207 88.766681) (xy 165.881929 88.768108) (xy 165.881933 88.768108) (xy 165.885426 88.7685) (xy 165.888953 88.7685) (xy 165.889938 88.768555) (xy 165.895618 88.769002) (xy 165.925024 88.771989) (xy 165.932536 88.772752) (xy 165.932538 88.772752) (xy 165.938661 88.773374) (xy 165.984307 88.769059) (xy 165.996166 88.7685) (xy 166.048965 88.7685) (xy 166.117086 88.788502) (xy 166.163579 88.842158) (xy 166.173683 88.912432) (xy 166.144189 88.977012) (xy 166.12453 88.995326) (xy 166.029276 89.066715) (xy 166.016715 89.079276) (xy 165.940214 89.181351) (xy 165.931676 89.196946) (xy 165.886522 89.317394) (xy 165.882895 89.332649) (xy 165.877369 89.383514) (xy 165.877 89.390328) (xy 165.877 90.027885) (xy 165.881475 90.043124) (xy 165.882865 90.044329) (xy 165.890548 90.046) (xy 168.904884 90.046) (xy 168.920123 90.041525) (xy 168.921328 90.040135) (xy 168.922999 90.032452) (xy 168.922999 89.390331) (xy 168.922629 89.38351) (xy 168.917105 89.332648) (xy 168.913479 89.317396) (xy 168.868324 89.196946) (xy 168.859786 89.181351) (xy 168.783285 89.079276) (xy 168.770724 89.066715) (xy 168.668649 88.990214) (xy 168.653054 88.981676) (xy 168.558428 88.946202) (xy 168.501664 88.90356) (xy 168.476964 88.836999) (xy 168.492172 88.76765) (xy 168.515687 88.73705) (xy 168.578548 88.677084) (xy 168.578553 88.677079) (xy 168.58241 88.673399) (xy 168.615858 88.628444) (xy 168.697938 88.518124) (xy 168.721548 88.486391) (xy 168.724624 88.480342) (xy 168.803072 88.326045) (xy 168.827188 88.278612) (xy 168.89631 88.056005) (xy 168.907872 87.968774) (xy 168.926236 87.830219) (xy 168.926236 87.830215) (xy 168.926936 87.824935) (xy 168.925655 87.7908) (xy 168.921867 87.689928) (xy 168.918191 87.592007) (xy 168.870326 87.363883) (xy 168.868273 87.358683) (xy 168.806431 87.202091) (xy 168.784708 87.147086) (xy 168.697648 87.003614) (xy 168.666555 86.952374) (xy 168.666553 86.952371) (xy 168.663787 86.947813) (xy 168.653723 86.936215) (xy 168.514518 86.775796) (xy 168.514516 86.775794) (xy 168.511018 86.771763) (xy 168.456373 86.726957) (xy 168.3349 86.627354) (xy 168.334894 86.62735) (xy 168.330772 86.62397) (xy 168.287002 86.599055) (xy 168.237696 86.547973) (xy 168.223834 86.478343) (xy 168.249817 86.412272) (xy 168.278965 86.385035) (xy 168.413752 86.294291) (xy 168.58241 86.133399) (xy 168.586054 86.128502) (xy 168.718362 85.950673) (xy 168.721548 85.946391) (xy 168.725597 85.938429) (xy 168.785232 85.821134) (xy 168.827188 85.738612) (xy 168.89631 85.516005) (xy 168.903096 85.464809) (xy 168.926236 85.290219) (xy 168.926236 85.290215) (xy 168.926936 85.284935) (xy 168.926705 85.278768) (xy 168.919107 85.076405) (xy 168.918191 85.052007) (xy 168.870326 84.823883) (xy 168.846756 84.764199) (xy 168.806655 84.662659) (xy 168.784708 84.607086) (xy 168.706557 84.478296) (xy 168.666555 84.412374) (xy 168.666553 84.412371) (xy 168.663787 84.407813) (xy 168.652867 84.395229) (xy 168.514518 84.235796) (xy 168.514516 84.235794) (xy 168.511018 84.231763) (xy 168.443052 84.176034) (xy 168.3349 84.087354) (xy 168.334894 84.08735) (xy 168.330772 84.08397) (xy 168.287002 84.059055) (xy 168.237696 84.007973) (xy 168.223834 83.938343) (xy 168.249817 83.872272) (xy 168.278965 83.845035) (xy 168.379458 83.777379) (xy 168.409326 83.757271) (xy 168.409328 83.757269) (xy 168.413752 83.754291) (xy 168.41815 83.750096) (xy 168.492818 83.678866) (xy 168.58241 83.593399) (xy 168.602043 83.567012) (xy 168.66981 83.475929) (xy 168.721548 83.406391) (xy 168.72912 83.391499) (xy 168.785875 83.279869) (xy 168.827188 83.198612) (xy 168.89631 82.976005) (xy 168.905293 82.908228) (xy 168.926236 82.750219) (xy 168.926236 82.750215) (xy 168.926936 82.744935) (xy 168.925476 82.706033) (xy 168.918448 82.518857) (xy 168.918191 82.512007) (xy 168.870326 82.283883) (xy 168.867416 82.276513) (xy 168.818142 82.151745) (xy 168.784708 82.067086) (xy 168.708599 81.941662) (xy 168.666555 81.872374) (xy 168.666553 81.872371) (xy 168.663787 81.867813) (xy 168.649223 81.851029) (xy 168.514518 81.695796) (xy 168.514516 81.695794) (xy 168.511018 81.691763) (xy 168.445785 81.638275) (xy 168.3349 81.547354) (xy 168.334894 81.54735) (xy 168.330772 81.54397) (xy 168.1282 81.42866) (xy 168.123184 81.426839) (xy 168.123179 81.426837) (xy 167.914112 81.350949) (xy 167.914108 81.350948) (xy 167.909097 81.349129) (xy 167.903848 81.34818) (xy 167.903845 81.348179) (xy 167.683809 81.30839) (xy 167.683802 81.308389) (xy 167.679725 81.307652) (xy 167.661801 81.306807) (xy 167.656786 81.30657) (xy 167.656779 81.30657) (xy 167.655298 81.3065) (xy 167.191473 81.3065) (xy 167.017743 81.321241) (xy 167.012579 81.322581) (xy 167.012575 81.322582) (xy 166.797292 81.378459) (xy 166.797288 81.378461) (xy 166.792127 81.3798) (xy 166.787261 81.381992) (xy 166.584464 81.473345) (xy 166.584461 81.473346) (xy 166.579603 81.475535) (xy 166.386248 81.605709) (xy 166.382391 81.609388) (xy 166.382389 81.60939) (xy 166.341356 81.648534) (xy 166.21759 81.766601) (xy 166.214407 81.770878) (xy 166.214407 81.770879) (xy 166.205389 81.783) (xy 166.078452 81.953609) (xy 166.076036 81.95836) (xy 166.076034 81.958364) (xy 166.053541 82.002605) (xy 166.004837 82.054263) (xy 165.941224 82.0715) (xy 165.649245 82.0715) (xy 165.581124 82.051498) (xy 165.56015 82.034595) (xy 164.11308 80.587525) (xy 164.079054 80.525213) (xy 164.084119 80.454398) (xy 164.094915 80.432315) (xy 164.13891 80.360941) (xy 164.145056 80.347759) (xy 164.195315 80.196234) (xy 164.198181 80.182868) (xy 164.207672 80.09023) (xy 164.208 80.083815) (xy 164.208 80.072115) (xy 164.203525 80.056876) (xy 164.202135 80.055671) (xy 164.194452 80.054) (xy 163.0345 80.054) (xy 162.966379 80.033998) (xy 162.919886 79.980342) (xy 162.9085 79.928) (xy 162.9085 79.909669) (xy 165.877001 79.909669) (xy 165.877371 79.91649) (xy 165.882895 79.967352) (xy 165.886521 79.982604) (xy 165.931676 80.103054) (xy 165.940214 80.118649) (xy 166.016715 80.220724) (xy 166.029276 80.233285) (xy 166.131351 80.309786) (xy 166.146946 80.318324) (xy 166.267394 80.363478) (xy 166.282649 80.367105) (xy 166.333514 80.372631) (xy 166.340328 80.373) (xy 167.127885 80.373) (xy 167.143124 80.368525) (xy 167.144329 80.367135) (xy 167.146 80.359452) (xy 167.146 80.354884) (xy 167.654 80.354884) (xy 167.658475 80.370123) (xy 167.659865 80.371328) (xy 167.667548 80.372999) (xy 168.459669 80.372999) (xy 168.46649 80.372629) (xy 168.517352 80.367105) (xy 168.532604 80.363479) (xy 168.653054 80.318324) (xy 168.668649 80.309786) (xy 168.770724 80.233285) (xy 168.783285 80.220724) (xy 168.859786 80.118649) (xy 168.868324 80.103054) (xy 168.913478 79.982606) (xy 168.917105 79.967351) (xy 168.922631 79.916486) (xy 168.923 79.909672) (xy 168.923 79.272115) (xy 168.918525 79.256876) (xy 168.917135 79.255671) (xy 168.909452 79.254) (xy 167.672115 79.254) (xy 167.656876 79.258475) (xy 167.655671 79.259865) (xy 167.654 79.267548) (xy 167.654 80.354884) (xy 167.146 80.354884) (xy 167.146 79.272115) (xy 167.141525 79.256876) (xy 167.140135 79.255671) (xy 167.132452 79.254) (xy 165.895116 79.254) (xy 165.879877 79.258475) (xy 165.878672 79.259865) (xy 165.877001 79.267548) (xy 165.877001 79.909669) (xy 162.9085 79.909669) (xy 162.9085 79.672) (xy 162.928502 79.603879) (xy 162.982158 79.557386) (xy 163.0345 79.546) (xy 164.189885 79.546) (xy 164.205124 79.541525) (xy 164.206329 79.540135) (xy 164.208 79.532452) (xy 164.208 79.516234) (xy 164.207663 79.509718) (xy 164.197925 79.415868) (xy 164.195032 79.402472) (xy 164.144512 79.251047) (xy 164.138347 79.237885) (xy 164.054574 79.102508) (xy 164.04554 79.09111) (xy 163.932871 78.978637) (xy 163.92146 78.969625) (xy 163.785937 78.886088) (xy 163.780751 78.88367) (xy 163.727466 78.836754) (xy 163.708 78.769475) (xy 163.708 77.272115) (xy 163.703525 77.256876) (xy 163.702135 77.255671) (xy 163.694452 77.254) (xy 162.172 77.254) (xy 162.103879 77.233998) (xy 162.057386 77.180342) (xy 162.046 77.128) (xy 162.046 74.760116) (xy 162.041525 74.744877) (xy 162.040135 74.743672) (xy 162.032452 74.742001) (xy 161.355331 74.742001) (xy 161.34851 74.742371) (xy 161.297648 74.747895) (xy 161.282397 74.751521) (xy 161.235476 74.769111) (xy 161.164669 74.774294) (xy 161.114546 74.751094) (xy 161.108625 74.746551) (xy 161.09623 74.735681) (xy 160.942184 74.581635) (xy 160.908158 74.519323) (xy 160.906064 74.478498) (xy 160.908107 74.460278) (xy 160.908107 74.460276) (xy 160.9085 74.456773) (xy 160.9085 74.453245) (xy 160.908555 74.452261) (xy 160.909002 74.446581) (xy 160.913374 74.403538) (xy 160.909059 74.357891) (xy 160.9085 74.346033) (xy 160.9085 74.269042) (xy 160.928502 74.200921) (xy 160.982158 74.154428) (xy 161.052432 74.144324) (xy 161.110065 74.168216) (xy 161.132942 74.185361) (xy 161.153295 74.200615) (xy 161.289684 74.251745) (xy 161.351866 74.2585) (xy 162.262274 74.2585) (xy 162.330395 74.278502) (xy 162.351369 74.295405) (xy 162.596539 74.540575) (xy 162.630565 74.602887) (xy 162.6255 74.673702) (xy 162.582953 74.730538) (xy 162.561288 74.741382) (xy 162.555671 74.747865) (xy 162.554 74.755548) (xy 162.554 76.727885) (xy 162.558475 76.743124) (xy 162.559865 76.744329) (xy 162.567548 76.746) (xy 163.689884 76.746) (xy 163.705123 76.741525) (xy 163.706328 76.740135) (xy 163.707999 76.732452) (xy 163.707999 75.956225) (xy 163.728001 75.888104) (xy 163.781657 75.841611) (xy 163.851931 75.831507) (xy 163.916511 75.861001) (xy 163.923094 75.86713) (xy 165.185344 77.129379) (xy 165.194446 77.139522) (xy 165.218167 77.169025) (xy 165.238206 77.18584) (xy 165.25662 77.201291) (xy 165.260268 77.204472) (xy 165.26208 77.206115) (xy 165.264274 77.208309) (xy 165.297548 77.235642) (xy 165.298346 77.236304) (xy 165.369673 77.296154) (xy 165.374343 77.298722) (xy 165.37846 77.302103) (xy 165.410755 77.319419) (xy 165.460285 77.345977) (xy 165.461444 77.346606) (xy 165.53758 77.388462) (xy 165.537588 77.388465) (xy 165.542986 77.391433) (xy 165.548068 77.393045) (xy 165.552762 77.395562) (xy 165.64173 77.422762) (xy 165.642758 77.423082) (xy 165.731505 77.451235) (xy 165.736801 77.451829) (xy 165.741897 77.453387) (xy 165.834456 77.46279) (xy 165.835592 77.462911) (xy 165.864144 77.466113) (xy 165.881929 77.468108) (xy 165.881933 77.468108) (xy 165.885426 77.4685) (xy 165.888953 77.4685) (xy 165.889938 77.468555) (xy 165.895618 77.469002) (xy 165.925024 77.471989) (xy 165.932536 77.472752) (xy 165.932538 77.472752) (xy 165.938661 77.473374) (xy 165.984307 77.469059) (xy 165.996166 77.4685) (xy 166.048965 77.4685) (xy 166.117086 77.488502) (xy 166.163579 77.542158) (xy 166.173683 77.612432) (xy 166.144189 77.677012) (xy 166.12453 77.695326) (xy 166.029276 77.766715) (xy 166.016715 77.779276) (xy 165.940214 77.881351) (xy 165.931676 77.896946) (xy 165.886522 78.017394) (xy 165.882895 78.032649) (xy 165.877369 78.083514) (xy 165.877 78.090328) (xy 165.877 78.727885) (xy 165.881475 78.743124) (xy 165.882865 78.744329) (xy 165.890548 78.746) (xy 168.904884 78.746) (xy 168.920123 78.741525) (xy 168.921328 78.740135) (xy 168.922999 78.732452) (xy 168.922999 78.090331) (xy 168.922629 78.08351) (xy 168.917105 78.032648) (xy 168.913479 78.017396) (xy 168.868324 77.896946) (xy 168.859786 77.881351) (xy 168.783285 77.779276) (xy 168.770724 77.766715) (xy 168.668649 77.690214) (xy 168.653054 77.681676) (xy 168.558428 77.646202) (xy 168.501664 77.60356) (xy 168.476964 77.536999) (xy 168.492172 77.46765) (xy 168.515687 77.43705) (xy 168.578548 77.377084) (xy 168.578553 77.377079) (xy 168.58241 77.373399) (xy 168.721548 77.186391) (xy 168.724624 77.180342) (xy 168.785772 77.060072) (xy 168.827188 76.978612) (xy 168.89631 76.756005) (xy 168.901763 76.714865) (xy 168.926236 76.530219) (xy 168.926236 76.530215) (xy 168.926936 76.524935) (xy 168.926663 76.517648) (xy 168.918435 76.2985) (xy 168.918191 76.292007) (xy 168.870326 76.063883) (xy 168.860715 76.039545) (xy 168.812492 75.917439) (xy 168.784708 75.847086) (xy 168.710382 75.7246) (xy 168.666555 75.652374) (xy 168.666553 75.652371) (xy 168.663787 75.647813) (xy 168.660291 75.643784) (xy 168.514518 75.475796) (xy 168.514516 75.475794) (xy 168.511018 75.471763) (xy 168.460909 75.430676) (xy 168.3349 75.327354) (xy 168.334894 75.32735) (xy 168.330772 75.32397) (xy 168.287002 75.299055) (xy 168.237696 75.247973) (xy 168.223834 75.178343) (xy 168.249817 75.112272) (xy 168.278965 75.085035) (xy 168.373374 75.021475) (xy 168.409326 74.997271) (xy 168.409328 74.997269) (xy 168.413752 74.994291) (xy 168.419603 74.98871) (xy 168.519802 74.893124) (xy 168.58241 74.833399) (xy 168.721548 74.646391) (xy 168.731442 74.626932) (xy 168.785782 74.520051) (xy 168.827188 74.438612) (xy 168.89631 74.216005) (xy 168.903008 74.165467) (xy 168.926236 73.990219) (xy 168.926236 73.990215) (xy 168.926936 73.984935) (xy 168.92608 73.96212) (xy 168.918817 73.768686) (xy 168.918191 73.752007) (xy 168.870326 73.523883) (xy 168.868095 73.518232) (xy 168.813738 73.380595) (xy 168.784708 73.307086) (xy 168.705628 73.176765) (xy 168.666555 73.112374) (xy 168.666553 73.112371) (xy 168.663787 73.107813) (xy 168.657541 73.100615) (xy 168.514518 72.935796) (xy 168.514516 72.935794) (xy 168.511018 72.931763) (xy 168.443052 72.876034) (xy 168.3349 72.787354) (xy 168.334894 72.78735) (xy 168.330772 72.78397) (xy 168.287002 72.759055) (xy 168.237696 72.707973) (xy 168.223834 72.638343) (xy 168.249817 72.572272) (xy 168.278965 72.545035) (xy 168.388339 72.4714) (xy 168.409326 72.457271) (xy 168.409328 72.457269) (xy 168.413752 72.454291) (xy 168.431458 72.437401) (xy 168.523399 72.349693) (xy 168.58241 72.293399) (xy 168.721548 72.106391) (xy 168.727484 72.094717) (xy 168.782382 71.986739) (xy 168.827188 71.898612) (xy 168.89631 71.676005) (xy 168.902191 71.631637) (xy 168.926236 71.450219) (xy 168.926236 71.450215) (xy 168.926936 71.444935) (xy 168.92623 71.426116) (xy 168.921552 71.301531) (xy 168.918191 71.212007) (xy 168.870326 70.983883) (xy 168.864103 70.968124) (xy 168.812251 70.83683) (xy 168.784708 70.767086) (xy 168.703942 70.633987) (xy 168.666555 70.572374) (xy 168.666553 70.572371) (xy 168.663787 70.567813) (xy 168.660291 70.563784) (xy 168.514518 70.395796) (xy 168.514516 70.395794) (xy 168.511018 70.391763) (xy 168.468269 70.356711) (xy 168.3349 70.247354) (xy 168.334894 70.24735) (xy 168.330772 70.24397) (xy 168.1282 70.12866) (xy 168.123184 70.126839) (xy 168.123179 70.126837) (xy 167.914112 70.050949) (xy 167.914108 70.050948) (xy 167.909097 70.049129) (xy 167.903848 70.04818) (xy 167.903845 70.048179) (xy 167.683809 70.00839) (xy 167.683802 70.008389) (xy 167.679725 70.007652) (xy 167.661801 70.006807) (xy 167.656786 70.00657) (xy 167.656779 70.00657) (xy 167.655298 70.0065) (xy 167.191473 70.0065) (xy 167.017743 70.021241) (xy 167.012579 70.022581) (xy 167.012575 70.022582) (xy 166.797292 70.078459) (xy 166.797288 70.078461) (xy 166.792127 70.0798) (xy 166.785023 70.083) (xy 166.584464 70.173345) (xy 166.584461 70.173346) (xy 166.579603 70.175535) (xy 166.386248 70.305709) (xy 166.382391 70.309388) (xy 166.382389 70.30939) (xy 166.342398 70.34754) (xy 166.21759 70.466601) (xy 166.214407 70.470878) (xy 166.214407 70.470879) (xy 166.182749 70.513429) (xy 166.078452 70.653609) (xy 166.076036 70.65836) (xy 166.076034 70.658364) (xy 166.038639 70.731916) (xy 165.972812 70.861388) (xy 165.90369 71.083995) (xy 165.902989 71.089284) (xy 165.874858 71.301531) (xy 165.873064 71.315065) (xy 165.873102 71.316083) (xy 165.850338 71.381962) (xy 165.794552 71.425877) (xy 165.723881 71.432661) (xy 165.65857 71.398021) (xy 163.764315 69.503766) (xy 163.753448 69.491375) (xy 163.739013 69.472563) (xy 163.733987 69.466013) (xy 163.702075 69.441526) (xy 163.702072 69.441523) (xy 163.613429 69.373504) (xy 163.613427 69.373503) (xy 163.606876 69.368476) (xy 163.458851 69.307162) (xy 163.450664 69.306084) (xy 163.450663 69.306084) (xy 163.439458 69.304609) (xy 163.408262 69.300502) (xy 163.339885 69.2915) (xy 163.339882 69.2915) (xy 163.339874 69.291499) (xy 163.308189 69.287328) (xy 163.3 69.28625) (xy 163.268307 69.290422) (xy 163.251864 69.2915) (xy 161.248136 69.2915) (xy 161.23169 69.290422) (xy 161.208188 69.287328) (xy 161.2 69.28625) (xy 161.191812 69.287328) (xy 161.160129 69.291499) (xy 161.16012 69.2915) (xy 161.160115 69.2915) (xy 161.04115 69.307162) (xy 160.986152 69.329943) (xy 160.893124 69.368476) (xy 160.886573 69.373503) (xy 160.886571 69.373504) (xy 160.797928 69.441523) (xy 160.797925 69.441526) (xy 160.766013 69.466013) (xy 160.760983 69.472568) (xy 160.746548 69.491379) (xy 160.735681 69.50377) (xy 158.696182 71.543269) (xy 158.63387 71.577295) (xy 158.563055 71.57223) (xy 158.518306 71.543471) (xy 158.513261 71.536739) (xy 158.396705 71.449385) (xy 158.345524 71.430198) (xy 158.26527 71.400112) (xy 158.208506 71.35747) (xy 158.183806 71.290909) (xy 158.1835 71.28213) (xy 158.1835 65.200311) (xy 158.185051 65.180599) (xy 158.186118 65.173862) (xy 158.18715 65.167347) (xy 158.183673 65.101004) (xy 158.1835 65.094409) (xy 158.1835 65.074548) (xy 158.181423 65.054785) (xy 158.180907 65.048221) (xy 158.177776 64.988477) (xy 158.177775 64.988473) (xy 158.17743 64.981883) (xy 158.173958 64.968925) (xy 158.170355 64.949482) (xy 158.169644 64.94272) (xy 158.168954 64.936152) (xy 158.148422 64.87296) (xy 158.146556 64.866658) (xy 158.131071 64.808869) (xy 158.129362 64.802491) (xy 158.126366 64.796612) (xy 158.126363 64.796603) (xy 158.123272 64.790537) (xy 158.115708 64.772275) (xy 158.113608 64.765811) (xy 158.113605 64.765803) (xy 158.111564 64.759523) (xy 158.108262 64.753804) (xy 158.10826 64.753799) (xy 158.078346 64.701987) (xy 158.075213 64.696217) (xy 158.045047 64.637015) (xy 158.03661 64.626596) (xy 158.02541 64.6103) (xy 158.022004 64.6044) (xy 158.022002 64.604397) (xy 158.018704 64.598685) (xy 158.014288 64.59378) (xy 158.014284 64.593775) (xy 157.974246 64.549307) (xy 157.969966 64.544297) (xy 157.959546 64.53143) (xy 157.959545 64.531429) (xy 157.957472 64.528869) (xy 157.943436 64.514833) (xy 157.938895 64.510048) (xy 157.898856 64.46558) (xy 157.898855 64.465579) (xy 157.894434 64.460669) (xy 157.889094 64.456789) (xy 157.889086 64.456782) (xy 157.883578 64.452781) (xy 157.868543 64.43994) (xy 154.360058 60.931454) (xy 154.347221 60.916426) (xy 154.339331 60.905566) (xy 154.289962 60.861114) (xy 154.285177 60.856573) (xy 154.271132 60.842528) (xy 154.268555 60.840441) (xy 154.2557 60.830031) (xy 154.250684 60.825747) (xy 154.206226 60.785717) (xy 154.206221 60.785713) (xy 154.201315 60.781296) (xy 154.189698 60.774589) (xy 154.173405 60.763391) (xy 154.168117 60.759109) (xy 154.162985 60.754953) (xy 154.103783 60.724787) (xy 154.098013 60.721654) (xy 154.046201 60.69174) (xy 154.046196 60.691738) (xy 154.040477 60.688436) (xy 154.034197 60.686395) (xy 154.034189 60.686392) (xy 154.027725 60.684292) (xy 154.009463 60.676728) (xy 154.003397 60.673637) (xy 154.003388 60.673634) (xy 153.997509 60.670638) (xy 153.956584 60.659672) (xy 153.933342 60.653444) (xy 153.92704 60.651578) (xy 153.863848 60.631046) (xy 153.850518 60.629645) (xy 153.831075 60.626042) (xy 153.818117 60.62257) (xy 153.811527 60.622225) (xy 153.811523 60.622224) (xy 153.767573 60.619921) (xy 153.751774 60.619093) (xy 153.745215 60.618577) (xy 153.725452 60.6165) (xy 153.705591 60.6165) (xy 153.698996 60.616327) (xy 153.639244 60.613195) (xy 153.63924 60.613195) (xy 153.632653 60.61285) (xy 153.619399 60.614949) (xy 153.59969 60.6165) (xy 144.099 60.6165) (xy 144.030879 60.596498) (xy 143.984386 60.542842) (xy 143.973 60.4905) (xy 143.973 59.872115) (xy 143.968525 59.856876) (xy 143.967135 59.855671) (xy 143.959452 59.854) (xy 142.472 59.854) (xy 142.403879 59.833998) (xy 142.357386 59.780342) (xy 142.346 59.728) (xy 142.346 59.327885) (xy 142.854 59.327885) (xy 142.858475 59.343124) (xy 142.859865 59.344329) (xy 142.867548 59.346) (xy 143.954884 59.346) (xy 143.970123 59.341525) (xy 143.971328 59.340135) (xy 143.972999 59.332452) (xy 143.972999 58.540331) (xy 143.972629 58.53351) (xy 143.967105 58.482648) (xy 143.963479 58.467396) (xy 143.918324 58.346946) (xy 143.909786 58.331351) (xy 143.833285 58.229276) (xy 143.820724 58.216715) (xy 143.718649 58.140214) (xy 143.703054 58.131676) (xy 143.582606 58.086522) (xy 143.567351 58.082895) (xy 143.516486 58.077369) (xy 143.509672 58.077) (xy 142.872115 58.077) (xy 142.856876 58.081475) (xy 142.855671 58.082865) (xy 142.854 58.090548) (xy 142.854 59.327885) (xy 142.346 59.327885) (xy 142.346 58.095116) (xy 142.341525 58.079877) (xy 142.340135 58.078672) (xy 142.332452 58.077001) (xy 141.690331 58.077001) (xy 141.68351 58.077371) (xy 141.632648 58.082895) (xy 141.617396 58.086521) (xy 141.496946 58.131676) (xy 141.481351 58.140214) (xy 141.379276 58.216715) (xy 141.366715 58.229276) (xy 141.290214 58.331351) (xy 141.281676 58.346946) (xy 141.246202 58.441572) (xy 141.20356 58.498336) (xy 141.136999 58.523036) (xy 141.06765 58.507828) (xy 141.03705 58.484313) (xy 140.977084 58.421452) (xy 140.977079 58.421447) (xy 140.973399 58.41759) (xy 140.786391 58.278452) (xy 140.78164 58.276036) (xy 140.781636 58.276034) (xy 140.667608 58.21806) (xy 140.578612 58.172812) (xy 140.356005 58.10369) (xy 140.312509 58.097925) (xy 140.130219 58.073764) (xy 140.130215 58.073764) (xy 140.124935 58.073064) (xy 140.119606 58.073264) (xy 140.119605 58.073264) (xy 140.024876 58.076821) (xy 139.892007 58.081809) (xy 139.663883 58.129674) (xy 139.658924 58.131632) (xy 139.658922 58.131633) (xy 139.637194 58.140214) (xy 139.447086 58.215292) (xy 139.424041 58.229276) (xy 139.364867 58.265183) (xy 139.296253 58.283422) (xy 139.228671 58.26167) (xy 139.2228 58.257428) (xy 139.208623 58.24655) (xy 139.19623 58.235681) (xy 138.764315 57.803766) (xy 138.753448 57.791375) (xy 138.739013 57.772563) (xy 138.733987 57.766013) (xy 138.702075 57.741526) (xy 138.702072 57.741523) (xy 138.652872 57.70377) (xy 138.613429 57.673504) (xy 138.613427 57.673503) (xy 138.606876 57.668476) (xy 138.458851 57.607162) (xy 138.450664 57.606084) (xy 138.450663 57.606084) (xy 138.439458 57.604609) (xy 138.408262 57.600502) (xy 138.339885 57.5915) (xy 138.339882 57.5915) (xy 138.339874 57.591499) (xy 138.308189 57.587328) (xy 138.3 57.58625) (xy 138.268307 57.590422) (xy 138.251864 57.5915) (xy 135.548136 57.5915) (xy 135.531693 57.590422) (xy 135.5 57.58625) (xy 135.491811 57.587328) (xy 135.460126 57.591499) (xy 135.460117 57.5915) (xy 135.460115 57.5915) (xy 135.460109 57.591501) (xy 135.460107 57.591501) (xy 135.360543 57.604609) (xy 135.349336 57.606084) (xy 135.349334 57.606085) (xy 135.341149 57.607162) (xy 135.193124 57.668476) (xy 135.186573 57.673503) (xy 135.186571 57.673504) (xy 135.147128 57.70377) (xy 135.097928 57.741523) (xy 135.097925 57.741526) (xy 135.066013 57.766013) (xy 135.060983 57.772568) (xy 135.046548 57.791379) (xy 135.035681 57.80377) (xy 134.769725 58.069726) (xy 134.706505 58.103946) (xy 134.583883 58.129674) (xy 134.578924 58.131632) (xy 134.578922 58.131633) (xy 134.557194 58.140214) (xy 134.367086 58.215292) (xy 134.344041 58.229276) (xy 134.172374 58.333445) (xy 134.172371 58.333447) (xy 134.167813 58.336213) (xy 134.163785 58.339708) (xy 134.163784 58.339709) (xy 133.997144 58.484313) (xy 133.991763 58.488982) (xy 133.988376 58.493113) (xy 133.847354 58.6651) (xy 133.84735 58.665106) (xy 133.84397 58.669228) (xy 133.72866 58.8718) (xy 133.726839 58.876816) (xy 133.726837 58.876821) (xy 133.664729 59.047925) (xy 133.649129 59.090903) (xy 133.64818 59.096152) (xy 133.648179 59.096155) (xy 133.60839 59.316191) (xy 133.608389 59.316198) (xy 133.607652 59.320275) (xy 133.6065 59.344702) (xy 133.6065 59.808527) (xy 133.621241 59.982257) (xy 133.622581 59.987421) (xy 133.622582 59.987425) (xy 133.676636 60.195681) (xy 133.6798 60.207873) (xy 133.681992 60.212739) (xy 133.766167 60.3996) (xy 133.775535 60.420397) (xy 133.905709 60.613752) (xy 133.909388 60.617609) (xy 133.90939 60.617611) (xy 133.965785 60.676728) (xy 134.066601 60.78241) (xy 134.253609 60.921548) (xy 134.25836 60.923964) (xy 134.258364 60.923966) (xy 134.311216 60.950837) (xy 134.461388 61.027188) (xy 134.683995 61.09631) (xy 134.689284 61.097011) (xy 134.909781 61.126236) (xy 134.909785 61.126236) (xy 134.915065 61.126936) (xy 134.920394 61.126736) (xy 134.920395 61.126736) (xy 135.015124 61.123179) (xy 135.147993 61.118191) (xy 135.376117 61.070326) (xy 135.381076 61.068368) (xy 135.381078 61.068367) (xy 135.54081 61.005285) (xy 135.592914 60.984708) (xy 135.784175 60.868649) (xy 135.787626 60.866555) (xy 135.787629 60.866553) (xy 135.792187 60.863787) (xy 135.79781 60.858908) (xy 135.964204 60.714518) (xy 135.964206 60.714516) (xy 135.968237 60.711018) (xy 136.044035 60.618576) (xy 136.112646 60.5349) (xy 136.11265 60.534894) (xy 136.11603 60.530772) (xy 136.140945 60.487002) (xy 136.192027 60.437696) (xy 136.261657 60.423834) (xy 136.327728 60.449817) (xy 136.354965 60.478965) (xy 136.374604 60.508135) (xy 136.442729 60.609325) (xy 136.445709 60.613752) (xy 136.449388 60.617609) (xy 136.44939 60.617611) (xy 136.505785 60.676728) (xy 136.606601 60.78241) (xy 136.715776 60.863638) (xy 136.758488 60.920347) (xy 136.763761 60.991147) (xy 136.737646 61.045042) (xy 136.638217 61.16523) (xy 136.635288 61.170647) (xy 136.635286 61.17065) (xy 136.542416 61.34241) (xy 136.542414 61.342415) (xy 136.539486 61.34783) (xy 136.478102 61.546129) (xy 136.477458 61.552254) (xy 136.477458 61.552255) (xy 136.457071 61.746233) (xy 136.456404 61.752575) (xy 136.461167 61.804912) (xy 136.473273 61.937928) (xy 136.475218 61.959303) (xy 136.476956 61.965209) (xy 136.476957 61.965213) (xy 136.511417 62.082297) (xy 136.533827 62.15844) (xy 136.629999 62.3424) (xy 136.633859 62.3472) (xy 136.633859 62.347201) (xy 136.653132 62.371172) (xy 136.760071 62.504177) (xy 136.764788 62.508135) (xy 136.76479 62.508137) (xy 136.812867 62.548478) (xy 136.919089 62.637609) (xy 136.924481 62.640573) (xy 136.924485 62.640576) (xy 137.079938 62.726037) (xy 137.100995 62.737613) (xy 137.298861 62.800379) (xy 137.304978 62.801065) (xy 137.304982 62.801066) (xy 137.371029 62.808474) (xy 137.460413 62.8185) (xy 137.572237 62.8185) (xy 137.575293 62.8182) (xy 137.5753 62.8182) (xy 137.720466 62.803966) (xy 137.720469 62.803965) (xy 137.726592 62.803365) (xy 137.896476 62.752075) (xy 137.919407 62.745152) (xy 137.91941 62.745151) (xy 137.925315 62.743368) (xy 137.934386 62.738545) (xy 138.103153 62.648809) (xy 138.103155 62.648808) (xy 138.108599 62.645913) (xy 138.223341 62.552332) (xy 138.264689 62.51861) (xy 138.264692 62.518607) (xy 138.269464 62.514715) (xy 138.274396 62.508754) (xy 138.397855 62.359518) (xy 138.401783 62.35477) (xy 138.405955 62.347054) (xy 138.497584 62.17759) (xy 138.497586 62.177585) (xy 138.500514 62.17217) (xy 138.512288 62.134134) (xy 138.551538 62.074974) (xy 138.616542 62.046426) (xy 138.686662 62.057554) (xy 138.721748 62.082297) (xy 139.554595 62.915144) (xy 139.588621 62.977456) (xy 139.5915 63.004239) (xy 139.5915 63.95005) (xy 139.571498 64.018171) (xy 139.554595 64.039145) (xy 139.525547 64.068193) (xy 139.521511 64.075017) (xy 139.521509 64.07502) (xy 139.469285 64.163327) (xy 139.440855 64.211399) (xy 139.438644 64.21901) (xy 139.438643 64.219012) (xy 139.433225 64.237662) (xy 139.394438 64.371169) (xy 139.393934 64.377574) (xy 139.393933 64.377579) (xy 139.391982 64.402369) (xy 139.3915 64.408498) (xy 139.3915 65.5655) (xy 139.371498 65.633621) (xy 139.317842 65.680114) (xy 139.2655 65.6915) (xy 139.033498 65.6915) (xy 139.03105 65.691693) (xy 139.031042 65.691693) (xy 139.002579 65.693933) (xy 139.002574 65.693934) (xy 138.996169 65.694438) (xy 138.902679 65.721599) (xy 138.844012 65.738643) (xy 138.84401 65.738644) (xy 138.836399 65.740855) (xy 138.825297 65.747421) (xy 138.70002 65.821509) (xy 138.700017 65.821511) (xy 138.693193 65.825547) (xy 138.575547 65.943193) (xy 138.558449 65.972104) (xy 138.506559 66.020555) (xy 138.436708 66.033261) (xy 138.371077 66.006186) (xy 138.350035 65.984669) (xy 138.306009 65.927293) (xy 138.283477 65.897928) (xy 138.283474 65.897925) (xy 138.283199 65.897566) (xy 138.264016 65.872566) (xy 138.264013 65.872563) (xy 138.258987 65.866013) (xy 138.240096 65.851517) (xy 138.233621 65.846548) (xy 138.22123 65.835681) (xy 137.145405 64.759856) (xy 137.111379 64.697544) (xy 137.1085 64.670761) (xy 137.1085 64.512928) (xy 137.104319 64.472631) (xy 137.098419 64.415765) (xy 137.098418 64.415761) (xy 137.097707 64.408907) (xy 137.095428 64.402074) (xy 137.044972 64.250841) (xy 137.042654 64.243893) (xy 136.951116 64.095969) (xy 136.942661 64.087529) (xy 136.833184 63.978242) (xy 136.833179 63.978238) (xy 136.828003 63.973071) (xy 136.821769 63.969228) (xy 136.780883 63.944025) (xy 136.73339 63.891253) (xy 136.721 63.836766) (xy 136.721 63.760636) (xy 136.722078 63.74419) (xy 136.722219 63.743124) (xy 136.72625 63.7125) (xy 136.725163 63.704239) (xy 136.721 63.67262) (xy 136.721 63.672615) (xy 136.707391 63.569241) (xy 136.70739 63.569239) (xy 136.705338 63.55365) (xy 136.705338 63.553649) (xy 136.644024 63.405624) (xy 136.628249 63.385065) (xy 136.585331 63.329135) (xy 136.570977 63.310428) (xy 136.570974 63.310425) (xy 136.546487 63.278513) (xy 136.539932 63.273483) (xy 136.521121 63.259048) (xy 136.50873 63.248181) (xy 136.276815 63.016266) (xy 136.265948 63.003875) (xy 136.251513 62.985063) (xy 136.246487 62.978513) (xy 136.214575 62.954026) (xy 136.214572 62.954023) (xy 136.211999 62.952049) (xy 136.125929 62.886004) (xy 136.125927 62.886003) (xy 136.119376 62.880976) (xy 135.971351 62.819662) (xy 135.963164 62.818584) (xy 135.963163 62.818584) (xy 135.951958 62.817109) (xy 135.951957 62.817109) (xy 135.923685 62.813387) (xy 135.858758 62.784664) (xy 135.8465 62.77278) (xy 135.811253 62.733634) (xy 135.701575 62.653948) (xy 135.662094 62.625263) (xy 135.662093 62.625262) (xy 135.656752 62.621382) (xy 135.650724 62.618698) (xy 135.650722 62.618697) (xy 135.488319 62.546391) (xy 135.488318 62.546391) (xy 135.482288 62.543706) (xy 135.376096 62.521134) (xy 135.301944 62.505372) (xy 135.301939 62.505372) (xy 135.295487 62.504) (xy 135.104513 62.504) (xy 135.098061 62.505372) (xy 135.098056 62.505372) (xy 135.023904 62.521134) (xy 134.917712 62.543706) (xy 134.911682 62.546391) (xy 134.911681 62.546391) (xy 134.749278 62.618697) (xy 134.749276 62.618698) (xy 134.743248 62.621382) (xy 134.737907 62.625262) (xy 134.737906 62.625263) (xy 134.698425 62.653948) (xy 134.588747 62.733634) (xy 134.584329 62.738541) (xy 134.584325 62.738545) (xy 134.467067 62.868774) (xy 134.46096 62.875556) (xy 134.404953 62.972563) (xy 134.383417 63.009865) (xy 134.365473 63.040944) (xy 134.306458 63.222572) (xy 134.305768 63.229133) (xy 134.305768 63.229135) (xy 134.289264 63.386162) (xy 134.286496 63.4125) (xy 134.287186 63.419065) (xy 134.304451 63.583329) (xy 134.306458 63.602428) (xy 134.310431 63.614655) (xy 134.322423 63.651564) (xy 134.32445 63.722532) (xy 134.287788 63.78333) (xy 134.224075 63.814655) (xy 134.20259 63.8165) (xy 133.987928 63.8165) (xy 133.984682 63.816837) (xy 133.984678 63.816837) (xy 133.890765 63.826581) (xy 133.890761 63.826582) (xy 133.883907 63.827293) (xy 133.877371 63.829474) (xy 133.877369 63.829474) (xy 133.788899 63.85899) (xy 133.718893 63.882346) (xy 133.570969 63.973884) (xy 133.565796 63.979066) (xy 133.453242 64.091816) (xy 133.453238 64.091821) (xy 133.448071 64.096997) (xy 133.444231 64.103227) (xy 133.44423 64.103228) (xy 133.361364 64.237662) (xy 133.356791 64.24508) (xy 133.302026 64.410191) (xy 133.301326 64.417027) (xy 133.301325 64.41703) (xy 133.299588 64.433987) (xy 133.2915 64.512928) (xy 133.2915 65.087072) (xy 133.291837 65.090318) (xy 133.291837 65.090322) (xy 133.301537 65.183806) (xy 133.302293 65.191093) (xy 133.357346 65.356107) (xy 133.448884 65.504031) (xy 133.454066 65.509204) (xy 133.566816 65.621758) (xy 133.566821 65.621762) (xy 133.571997 65.626929) (xy 133.578227 65.630769) (xy 133.578228 65.63077) (xy 133.713849 65.714368) (xy 133.72008 65.718209) (xy 133.885191 65.772974) (xy 133.892025 65.773674) (xy 133.892029 65.773675) (xy 133.926672 65.777224) (xy 133.992399 65.804065) (xy 134.002924 65.813473) (xy 134.260685 66.071234) (xy 134.271552 66.083625) (xy 134.291013 66.108987) (xy 134.322925 66.133474) (xy 134.322928 66.133477) (xy 134.38483 66.180976) (xy 134.418125 66.206524) (xy 134.56615 66.267838) (xy 134.685115 66.2835) (xy 134.68512 66.2835) (xy 134.685129 66.283501) (xy 134.716812 66.287672) (xy 134.725 66.28875) (xy 134.756693 66.284578) (xy 134.773136 66.2835) (xy 135.439566 66.2835) (xy 135.507687 66.303502) (xy 135.55418 66.357158) (xy 135.564284 66.427432) (xy 135.559159 66.449167) (xy 135.552203 66.470139) (xy 135.551503 66.476975) (xy 135.551502 66.476978) (xy 135.549553 66.496) (xy 135.5415 66.5746) (xy 135.5415 67.3254) (xy 135.541837 67.328646) (xy 135.541837 67.32865) (xy 135.551508 67.421854) (xy 135.552474 67.431166) (xy 135.554655 67.437702) (xy 135.554655 67.437704) (xy 135.584545 67.527293) (xy 135.60845 67.598946) (xy 135.701522 67.749348) (xy 135.826697 67.874305) (xy 135.831235 67.877102) (xy 135.871824 67.934353) (xy 135.875054 68.005276) (xy 135.839428 68.066687) (xy 135.830932 68.074062) (xy 135.820793 68.082098) (xy 135.706261 68.196829) (xy 135.697249 68.20824) (xy 135.612184 68.346243) (xy 135.606037 68.359424) (xy 135.554862 68.51371) (xy 135.551995 68.527086) (xy 135.542328 68.621438) (xy 135.542 68.627855) (xy 135.542 68.727885) (xy 135.546475 68.743124) (xy 135.547865 68.744329) (xy 135.555548 68.746) (xy 136.878 68.746) (xy 136.946121 68.766002) (xy 136.992614 68.819658) (xy 137.004 68.872) (xy 137.004 70.064882) (xy 137.00463 70.067028) (xy 137.00463 70.138025) (xy 136.972829 70.191622) (xy 136.353766 70.810685) (xy 136.341375 70.821552) (xy 136.316013 70.841013) (xy 136.291526 70.872925) (xy 136.291523 70.872928) (xy 136.291517 70.872936) (xy 136.235274 70.946233) (xy 136.218476 70.968124) (xy 136.16082 71.107318) (xy 136.157162 71.11615) (xy 136.1415 71.235115) (xy 136.1415 71.23512) (xy 136.13625 71.275) (xy 136.139296 71.298134) (xy 136.140422 71.30669) (xy 136.1415 71.323136) (xy 136.1415 71.599141) (xy 136.121498 71.667262) (xy 136.08777 71.702354) (xy 135.942478 71.804088) (xy 135.942472 71.804093) (xy 135.937962 71.807251) (xy 135.782251 71.962962) (xy 135.779094 71.96747) (xy 135.779092 71.967473) (xy 135.659101 72.138838) (xy 135.655944 72.143347) (xy 135.653621 72.148329) (xy 135.653618 72.148334) (xy 135.631282 72.196234) (xy 135.56288 72.342924) (xy 135.505885 72.555629) (xy 135.486693 72.775) (xy 135.505885 72.994371) (xy 135.56288 73.207076) (xy 135.584378 73.253179) (xy 135.653618 73.401666) (xy 135.653621 73.401671) (xy 135.655944 73.406653) (xy 135.6591 73.41116) (xy 135.659101 73.411162) (xy 135.776025 73.578146) (xy 135.782251 73.587038) (xy 135.937962 73.742749) (xy 135.942471 73.745906) (xy 135.942473 73.745908) (xy 135.988944 73.778447) (xy 136.118346 73.869056) (xy 136.317924 73.96212) (xy 136.530629 74.019115) (xy 136.75 74.038307) (xy 136.969371 74.019115) (xy 137.182076 73.96212) (xy 137.381654 73.869056) (xy 137.511056 73.778447) (xy 137.557527 73.745908) (xy 137.557529 73.745906) (xy 137.562038 73.742749) (xy 137.717749 73.587038) (xy 137.723976 73.578146) (xy 137.840899 73.411162) (xy 137.8409 73.41116) (xy 137.844056 73.406653) (xy 137.846379 73.401671) (xy 137.846382 73.401666) (xy 137.915622 73.253179) (xy 137.93712 73.207076) (xy 137.994115 72.994371) (xy 138.013307 72.775) (xy 137.994115 72.555629) (xy 137.93712 72.342924) (xy 137.868718 72.196234) (xy 137.846382 72.148334) (xy 137.846379 72.148329) (xy 137.844056 72.143347) (xy 137.840899 72.138838) (xy 137.720908 71.967473) (xy 137.720906 71.96747) (xy 137.717749 71.962962) (xy 137.562038 71.807251) (xy 137.54817 71.79754) (xy 137.412229 71.702353) (xy 137.367901 71.646896) (xy 137.3585 71.59914) (xy 137.3585 71.579239) (xy 137.378502 71.511118) (xy 137.395405 71.490144) (xy 138.221234 70.664315) (xy 138.233625 70.653448) (xy 138.252437 70.639013) (xy 138.258987 70.633987) (xy 138.283474 70.602075) (xy 138.283478 70.602071) (xy 138.356524 70.506876) (xy 138.413151 70.370167) (xy 138.414678 70.36648) (xy 138.417838 70.358851) (xy 138.438751 70.2) (xy 138.434578 70.168301) (xy 138.4335 70.151856) (xy 138.4335 70.1095) (xy 138.453502 70.041379) (xy 138.507158 69.994886) (xy 138.5595 69.9835) (xy 138.7655 69.9835) (xy 138.833621 70.003502) (xy 138.880114 70.057158) (xy 138.8915 70.1095) (xy 138.8915 71.26971) (xy 138.871498 71.337831) (xy 138.859136 71.35402) (xy 138.76842 71.454771) (xy 138.76096 71.463056) (xy 138.72707 71.521755) (xy 138.671132 71.618643) (xy 138.665473 71.628444) (xy 138.606458 71.810072) (xy 138.586496 72) (xy 138.587186 72.006565) (xy 138.603397 72.160801) (xy 138.606458 72.189928) (xy 138.665473 72.371556) (xy 138.668776 72.377278) (xy 138.668777 72.377279) (xy 138.685406 72.406081) (xy 138.76096 72.536944) (xy 138.765378 72.541851) (xy 138.765379 72.541852) (xy 138.86331 72.650615) (xy 138.888747 72.678866) (xy 138.980282 72.74537) (xy 139.037729 72.787108) (xy 139.043248 72.791118) (xy 139.049276 72.793802) (xy 139.049278 72.793803) (xy 139.211681 72.866109) (xy 139.217712 72.868794) (xy 139.298363 72.885937) (xy 139.398056 72.907128) (xy 139.398061 72.907128) (xy 139.404513 72.9085) (xy 139.595487 72.9085) (xy 139.601939 72.907128) (xy 139.601944 72.907128) (xy 139.701637 72.885937) (xy 139.782288 72.868794) (xy 139.788319 72.866109) (xy 139.950722 72.793803) (xy 139.950724 72.793802) (xy 139.956752 72.791118) (xy 139.962272 72.787108) (xy 140.019718 72.74537) (xy 140.111253 72.678866) (xy 140.13669 72.650615) (xy 140.234621 72.541852) (xy 140.234622 72.541851) (xy 140.23904 72.536944) (xy 140.314594 72.406081) (xy 140.331223 72.377279) (xy 140.331224 72.377278) (xy 140.334527 72.371556) (xy 140.393542 72.189928) (xy 140.396604 72.160801) (xy 140.412814 72.006565) (xy 140.413504 72) (xy 140.393542 71.810072) (xy 140.334527 71.628444) (xy 140.328869 71.618643) (xy 140.27293 71.521755) (xy 140.23904 71.463056) (xy 140.23158 71.454771) (xy 140.140864 71.35402) (xy 140.110146 71.290013) (xy 140.1085 71.26971) (xy 140.1085 70.316739) (xy 140.128502 70.248618) (xy 140.145405 70.227644) (xy 140.352644 70.020405) (xy 140.414956 69.986379) (xy 140.441739 69.9835) (xy 140.812072 69.9835) (xy 140.815318 69.983163) (xy 140.815322 69.983163) (xy 140.909235 69.973419) (xy 140.909239 69.973418) (xy 140.916093 69.972707) (xy 140.922629 69.970526) (xy 140.922631 69.970526) (xy 141.0721 69.920659) (xy 141.081107 69.917654) (xy 141.229031 69.826116) (xy 141.234485 69.820653) (xy 141.258281 69.796815) (xy 141.310791 69.744213) (xy 141.373071 69.710134) (xy 141.443892 69.715137) (xy 141.488981 69.744058) (xy 141.566816 69.821758) (xy 141.566821 69.821762) (xy 141.571997 69.826929) (xy 141.578227 69.830769) (xy 141.578228 69.83077) (xy 141.594651 69.840893) (xy 141.639915 69.868794) (xy 141.669116 69.886794) (xy 141.716609 69.939566) (xy 141.729 69.994054) (xy 141.729 71.005889) (xy 141.708998 71.07401) (xy 141.669303 71.113033) (xy 141.590653 71.161703) (xy 141.570969 71.173884) (xy 141.565796 71.179066) (xy 141.453242 71.291816) (xy 141.453238 71.291821) (xy 141.448071 71.296997) (xy 141.444231 71.303227) (xy 141.44423 71.303228) (xy 141.363313 71.4345) (xy 141.356791 71.44508) (xy 141.302026 71.610191) (xy 141.301326 71.617027) (xy 141.301325 71.61703) (xy 141.298346 71.646109) (xy 141.2915 71.712928) (xy 141.2915 72.287072) (xy 141.291837 72.290318) (xy 141.291837 72.290322) (xy 141.30144 72.382868) (xy 141.302293 72.391093) (xy 141.304474 72.397629) (xy 141.304474 72.397631) (xy 141.337097 72.495414) (xy 141.357346 72.556107) (xy 141.448884 72.704031) (xy 141.454066 72.709204) (xy 141.566816 72.821758) (xy 141.566821 72.821762) (xy 141.571997 72.826929) (xy 141.667726 72.885937) (xy 141.669116 72.886794) (xy 141.716609 72.939566) (xy 141.729 72.994054) (xy 141.729 73.23899) (xy 141.708998 73.307111) (xy 141.692095 73.328085) (xy 137.605217 77.414963) (xy 137.592826 77.42583) (xy 137.567464 77.445291) (xy 137.542977 77.477203) (xy 137.542974 77.477206) (xy 137.469927 77.572402) (xy 137.408613 77.720427) (xy 137.408613 77.720428) (xy 137.406865 77.733704) (xy 137.395355 77.82113) (xy 137.392951 77.839393) (xy 137.392951 77.839398) (xy 137.387701 77.879278) (xy 137.388835 77.887888) (xy 137.391873 77.910968) (xy 137.392951 77.927414) (xy 137.392949 83.184288) (xy 137.372947 83.252409) (xy 137.356044 83.273383) (xy 136.874832 83.754595) (xy 136.81252 83.788621) (xy 136.785737 83.7915) (xy 130.877351 83.7915) (xy 130.80923 83.771498) (xy 130.762737 83.717842) (xy 130.752633 83.647568) (xy 130.777388 83.588797) (xy 130.794104 83.567012) (xy 130.795974 83.564575) (xy 130.795978 83.564571) (xy 130.869024 83.469376) (xy 130.930338 83.321351) (xy 130.93368 83.295969) (xy 130.935581 83.281525) (xy 130.946 83.202386) (xy 130.946 83.20238) (xy 130.950172 83.170689) (xy 130.95125 83.1625) (xy 130.947078 83.130807) (xy 130.946 83.114364) (xy 130.946 72.994111) (xy 130.966002 72.92599) (xy 131.005697 72.886967) (xy 131.035064 72.868794) (xy 131.104031 72.826116) (xy 131.111274 72.818861) (xy 131.113038 72.817895) (xy 131.114941 72.816387) (xy 131.115199 72.816713) (xy 131.173554 72.784781) (xy 131.244375 72.789782) (xy 131.28947 72.818708) (xy 131.292131 72.821364) (xy 131.30354 72.830375) (xy 131.439063 72.913912) (xy 131.452241 72.920056) (xy 131.603766 72.970315) (xy 131.617132 72.973181) (xy 131.70977 72.982672) (xy 131.716185 72.983) (xy 131.790385 72.983) (xy 131.805624 72.978525) (xy 131.806829 72.977135) (xy 131.8085 72.969452) (xy 131.8085 72.964885) (xy 132.3165 72.964885) (xy 132.320975 72.980124) (xy 132.322365 72.981329) (xy 132.330048 72.983) (xy 132.408766 72.983) (xy 132.415282 72.982663) (xy 132.509132 72.972925) (xy 132.522528 72.970032) (xy 132.673953 72.919512) (xy 132.687115 72.913347) (xy 132.822492 72.829574) (xy 132.83389 72.82054) (xy 132.946363 72.707871) (xy 132.955375 72.69646) (xy 133.038912 72.560937) (xy 133.045056 72.547759) (xy 133.095315 72.396234) (xy 133.098181 72.382868) (xy 133.107672 72.29023) (xy 133.108 72.283815) (xy 133.108 72.272115) (xy 133.103525 72.256876) (xy 133.102135 72.255671) (xy 133.094452 72.254) (xy 132.334615 72.254) (xy 132.319376 72.258475) (xy 132.318171 72.259865) (xy 132.3165 72.267548) (xy 132.3165 72.964885) (xy 131.8085 72.964885) (xy 131.8085 71.727885) (xy 132.3165 71.727885) (xy 132.320975 71.743124) (xy 132.322365 71.744329) (xy 132.330048 71.746) (xy 133.089885 71.746) (xy 133.105124 71.741525) (xy 133.106329 71.740135) (xy 133.108 71.732452) (xy 133.108 71.716234) (xy 133.107663 71.709718) (xy 133.097925 71.615868) (xy 133.095032 71.602472) (xy 133.044512 71.451047) (xy 133.038347 71.437885) (xy 132.954574 71.302508) (xy 132.94554 71.29111) (xy 132.832871 71.178637) (xy 132.82146 71.169625) (xy 132.685937 71.086088) (xy 132.672759 71.079944) (xy 132.521234 71.029685) (xy 132.507868 71.026819) (xy 132.41523 71.017328) (xy 132.408815 71.017) (xy 132.334615 71.017) (xy 132.319376 71.021475) (xy 132.318171 71.022865) (xy 132.3165 71.030548) (xy 132.3165 71.727885) (xy 131.8085 71.727885) (xy 131.8085 71.035115) (xy 131.804025 71.019876) (xy 131.802635 71.018671) (xy 131.794952 71.017) (xy 131.716234 71.017) (xy 131.709718 71.017337) (xy 131.615868 71.027075) (xy 131.602472 71.029968) (xy 131.451047 71.080488) (xy 131.437885 71.086653) (xy 131.302508 71.170426) (xy 131.291106 71.179464) (xy 131.289433 71.181139) (xy 131.288007 71.181919) (xy 131.285373 71.184007) (xy 131.285016 71.183556) (xy 131.227151 71.215219) (xy 131.156331 71.210216) (xy 131.111246 71.181299) (xy 131.108185 71.178244) (xy 131.103003 71.173071) (xy 131.005884 71.113205) (xy 130.958391 71.060434) (xy 130.946 71.005946) (xy 130.946 69.93194) (xy 130.966002 69.863819) (xy 130.993736 69.833194) (xy 130.997806 69.829968) (xy 131.004031 69.826116) (xy 131.009204 69.820934) (xy 131.110747 69.719214) (xy 131.17303 69.685135) (xy 131.24385 69.690138) (xy 131.288937 69.719059) (xy 131.391812 69.821754) (xy 131.391817 69.821758) (xy 131.396997 69.826929) (xy 131.403227 69.830769) (xy 131.403228 69.83077) (xy 131.531036 69.909552) (xy 131.54508 69.918209) (xy 131.710191 69.972974) (xy 131.717027 69.973674) (xy 131.71703 69.973675) (xy 131.768526 69.978951) (xy 131.812928 69.9835) (xy 132.412072 69.9835) (xy 132.415318 69.983163) (xy 132.415322 69.983163) (xy 132.509235 69.973419) (xy 132.509239 69.973418) (xy 132.516093 69.972707) (xy 132.522629 69.970526) (xy 132.522631 69.970526) (xy 132.6721 69.920659) (xy 132.681107 69.917654) (xy 132.829031 69.826116) (xy 132.834204 69.820934) (xy 132.946758 69.708184) (xy 132.946762 69.708179) (xy 132.951929 69.703003) (xy 132.957529 69.693919) (xy 132.97327 69.668383) (xy 133.026043 69.62089) (xy 133.080529 69.6085) (xy 133.29429 69.6085) (xy 133.362411 69.628502) (xy 133.387926 69.650189) (xy 133.406752 69.671097) (xy 133.413747 69.678866) (xy 133.422376 69.685135) (xy 133.552153 69.779424) (xy 133.568248 69.791118) (xy 133.574276 69.793802) (xy 133.574278 69.793803) (xy 133.719995 69.85868) (xy 133.742712 69.868794) (xy 133.827395 69.886794) (xy 133.923056 69.907128) (xy 133.923061 69.907128) (xy 133.929513 69.9085) (xy 134.120487 69.9085) (xy 134.126939 69.907128) (xy 134.126944 69.907128) (xy 134.222605 69.886794) (xy 134.307288 69.868794) (xy 134.330005 69.85868) (xy 134.475722 69.793803) (xy 134.475724 69.793802) (xy 134.481752 69.791118) (xy 134.497848 69.779424) (xy 134.603031 69.703003) (xy 134.636253 69.678866) (xy 134.657776 69.654962) (xy 134.759621 69.541852) (xy 134.759622 69.541851) (xy 134.76404 69.536944) (xy 134.835139 69.413798) (xy 134.856223 69.377279) (xy 134.856224 69.377278) (xy 134.859216 69.372095) (xy 135.542001 69.372095) (xy 135.542338 69.378614) (xy 135.552257 69.474206) (xy 135.555149 69.4876) (xy 135.606588 69.641784) (xy 135.612761 69.654962) (xy 135.698063 69.792807) (xy 135.707099 69.804208) (xy 135.821829 69.918739) (xy 135.83324 69.927751) (xy 135.971243 70.012816) (xy 135.984424 70.018963) (xy 136.13871 70.070138) (xy 136.152086 70.073005) (xy 136.246438 70.082672) (xy 136.252854 70.083) (xy 136.477885 70.083) (xy 136.493124 70.078525) (xy 136.494329 70.077135) (xy 136.496 70.069452) (xy 136.496 69.272115) (xy 136.491525 69.256876) (xy 136.490135 69.255671) (xy 136.482452 69.254) (xy 135.560116 69.254) (xy 135.544877 69.258475) (xy 135.543672 69.259865) (xy 135.542001 69.267548) (xy 135.542001 69.372095) (xy 134.859216 69.372095) (xy 134.859527 69.371556) (xy 134.918542 69.189928) (xy 134.922935 69.148136) (xy 134.937814 69.006565) (xy 134.938504 69) (xy 134.927817 68.898315) (xy 134.919232 68.816635) (xy 134.919232 68.816633) (xy 134.918542 68.810072) (xy 134.859527 68.628444) (xy 134.846984 68.606718) (xy 134.767341 68.468774) (xy 134.76404 68.463056) (xy 134.717677 68.411564) (xy 134.640675 68.326045) (xy 134.640674 68.326044) (xy 134.636253 68.321134) (xy 134.515278 68.23324) (xy 134.487094 68.212763) (xy 134.487093 68.212762) (xy 134.481752 68.208882) (xy 134.475724 68.206198) (xy 134.475722 68.206197) (xy 134.313319 68.133891) (xy 134.313318 68.133891) (xy 134.307288 68.131206) (xy 134.20238 68.108907) (xy 134.126944 68.092872) (xy 134.126939 68.092872) (xy 134.120487 68.0915) (xy 133.929513 68.0915) (xy 133.923061 68.092872) (xy 133.923056 68.092872) (xy 133.84762 68.108907) (xy 133.742712 68.131206) (xy 133.736682 68.133891) (xy 133.736681 68.133891) (xy 133.574278 68.206197) (xy 133.574276 68.206198) (xy 133.568248 68.208882) (xy 133.562907 68.212762) (xy 133.562906 68.212763) (xy 133.446969 68.296997) (xy 133.413747 68.321134) (xy 133.409334 68.326036) (xy 133.409332 68.326037) (xy 133.387926 68.349811) (xy 133.32748 68.38705) (xy 133.29429 68.3915) (xy 133.080436 68.3915) (xy 133.012315 68.371498) (xy 132.973292 68.331803) (xy 132.95497 68.302195) (xy 132.954964 68.302188) (xy 132.951116 68.295969) (xy 132.934456 68.279338) (xy 132.833184 68.178242) (xy 132.833179 68.178238) (xy 132.828003 68.173071) (xy 132.817557 68.166632) (xy 132.68615 68.085631) (xy 132.686148 68.08563) (xy 132.67992 68.081791) (xy 132.514809 68.027026) (xy 132.507973 68.026326) (xy 132.50797 68.026325) (xy 132.446545 68.020032) (xy 132.412072 68.0165) (xy 131.812928 68.0165) (xy 131.809682 68.016837) (xy 131.809678 68.016837) (xy 131.715765 68.026581) (xy 131.715761 68.026582) (xy 131.708907 68.027293) (xy 131.702373 68.029473) (xy 131.702368 68.029474) (xy 131.670549 68.04009) (xy 131.599599 68.042674) (xy 131.538515 68.00649) (xy 131.506691 67.943026) (xy 131.51423 67.87243) (xy 131.541578 67.831471) (xy 131.827644 67.545405) (xy 131.889956 67.511379) (xy 131.916739 67.5085) (xy 132.287072 67.5085) (xy 132.290318 67.508163) (xy 132.290322 67.508163) (xy 132.384235 67.498419) (xy 132.384239 67.498418) (xy 132.391093 67.497707) (xy 132.397629 67.495526) (xy 132.397631 67.495526) (xy 132.530395 67.451232) (xy 132.556107 67.442654) (xy 132.704031 67.351116) (xy 132.72453 67.330581) (xy 132.821758 67.233184) (xy 132.821762 67.233179) (xy 132.826929 67.228003) (xy 132.846614 67.196068) (xy 132.914369 67.08615) (xy 132.91437 67.086148) (xy 132.918209 67.07992) (xy 132.972974 66.914809) (xy 132.973723 66.907506) (xy 132.981405 66.832522) (xy 132.9835 66.812072) (xy 132.9835 66.212928) (xy 132.983163 66.209678) (xy 132.973419 66.115765) (xy 132.973418 66.115761) (xy 132.972707 66.108907) (xy 132.966045 66.088937) (xy 132.919972 65.950841) (xy 132.917654 65.943893) (xy 132.826116 65.795969) (xy 132.809804 65.779685) (xy 132.719214 65.689253) (xy 132.685135 65.62697) (xy 132.690138 65.55615) (xy 132.719059 65.511063) (xy 132.821754 65.408188) (xy 132.821758 65.408183) (xy 132.826929 65.403003) (xy 132.83077 65.396772) (xy 132.914369 65.26115) (xy 132.91437 65.261148) (xy 132.918209 65.25492) (xy 132.972974 65.089809) (xy 132.973968 65.080114) (xy 132.983172 64.990271) (xy 132.9835 64.987072) (xy 132.9835 64.387928) (xy 132.981761 64.371169) (xy 132.973419 64.290765) (xy 132.973418 64.290761) (xy 132.972707 64.283907) (xy 132.962477 64.253242) (xy 132.919972 64.125841) (xy 132.917654 64.118893) (xy 132.826116 63.970969) (xy 132.806644 63.951531) (xy 132.708184 63.853242) (xy 132.708179 63.853238) (xy 132.703003 63.848071) (xy 132.69649 63.844056) (xy 132.668383 63.82673) (xy 132.62089 63.773957) (xy 132.6085 63.719471) (xy 132.6085 63.448136) (xy 132.609578 63.43169) (xy 132.61024 63.426666) (xy 132.61375 63.4) (xy 132.6085 63.36012) (xy 132.6085 63.360115) (xy 132.594484 63.253649) (xy 132.592838 63.241149) (xy 132.531524 63.093124) (xy 132.458477 62.997928) (xy 132.458474 62.997925) (xy 132.433987 62.966013) (xy 132.427432 62.960983) (xy 132.408621 62.946548) (xy 132.39623 62.935681) (xy 131.064315 61.603766) (xy 131.053448 61.591375) (xy 131.039013 61.572563) (xy 131.033987 61.566013) (xy 131.002075 61.541526) (xy 131.002072 61.541523) (xy 130.968544 61.515796) (xy 130.913429 61.473504) (xy 130.913427 61.473503) (xy 130.906876 61.468476) (xy 130.758851 61.407162) (xy 130.750664 61.406084) (xy 130.750663 61.406084) (xy 130.739458 61.404609) (xy 130.689796 61.398071) (xy 130.639885 61.3915) (xy 130.639882 61.3915) (xy 130.639874 61.391499) (xy 130.608189 61.387328) (xy 130.6 61.38625) (xy 130.568307 61.390422) (xy 130.551864 61.3915) (xy 129.004239 61.3915) (xy 128.936118 61.371498) (xy 128.915144 61.354595) (xy 128.851889 61.29134) (xy 128.817863 61.229028) (xy 128.822928 61.158213) (xy 128.865475 61.101377) (xy 128.91511 61.07893) (xy 128.950898 61.071421) (xy 128.950897 61.071421) (xy 128.956117 61.070326) (xy 128.961076 61.068368) (xy 128.961078 61.068367) (xy 129.12081 61.005285) (xy 129.172914 60.984708) (xy 129.364175 60.868649) (xy 129.367626 60.866555) (xy 129.367629 60.866553) (xy 129.372187 60.863787) (xy 129.37781 60.858908) (xy 129.547275 60.711854) (xy 129.611834 60.682314) (xy 129.682115 60.692368) (xy 129.735804 60.738823) (xy 129.747837 60.762789) (xy 129.781676 60.853054) (xy 129.790214 60.868649) (xy 129.866715 60.970724) (xy 129.879276 60.983285) (xy 129.981351 61.059786) (xy 129.996946 61.068324) (xy 130.117394 61.113478) (xy 130.132649 61.117105) (xy 130.183514 61.122631) (xy 130.190328 61.123) (xy 130.827885 61.123) (xy 130.843124 61.118525) (xy 130.844329 61.117135) (xy 130.846 61.109452) (xy 130.846 61.104884) (xy 131.354 61.104884) (xy 131.358475 61.120123) (xy 131.359865 61.121328) (xy 131.367548 61.122999) (xy 132.009669 61.122999) (xy 132.01649 61.122629) (xy 132.067352 61.117105) (xy 132.082604 61.113479) (xy 132.203054 61.068324) (xy 132.218649 61.059786) (xy 132.320724 60.983285) (xy 132.333285 60.970724) (xy 132.409786 60.868649) (xy 132.418324 60.853054) (xy 132.463478 60.732606) (xy 132.467105 60.717351) (xy 132.472631 60.666486) (xy 132.473 60.659672) (xy 132.473 59.872115) (xy 132.468525 59.856876) (xy 132.467135 59.855671) (xy 132.459452 59.854) (xy 131.372115 59.854) (xy 131.356876 59.858475) (xy 131.355671 59.859865) (xy 131.354 59.867548) (xy 131.354 61.104884) (xy 130.846 61.104884) (xy 130.846 59.327885) (xy 131.354 59.327885) (xy 131.358475 59.343124) (xy 131.359865 59.344329) (xy 131.367548 59.346) (xy 132.454884 59.346) (xy 132.470123 59.341525) (xy 132.471328 59.340135) (xy 132.472999 59.332452) (xy 132.472999 58.540331) (xy 132.472629 58.53351) (xy 132.467105 58.482648) (xy 132.463479 58.467396) (xy 132.418324 58.346946) (xy 132.409786 58.331351) (xy 132.333285 58.229276) (xy 132.320724 58.216715) (xy 132.218649 58.140214) (xy 132.203054 58.131676) (xy 132.082606 58.086522) (xy 132.067351 58.082895) (xy 132.016486 58.077369) (xy 132.009672 58.077) (xy 131.372115 58.077) (xy 131.356876 58.081475) (xy 131.355671 58.082865) (xy 131.354 58.090548) (xy 131.354 59.327885) (xy 130.846 59.327885) (xy 130.846 58.095116) (xy 130.841525 58.079877) (xy 130.840135 58.078672) (xy 130.832452 58.077001) (xy 130.190331 58.077001) (xy 130.18351 58.077371) (xy 130.132648 58.082895) (xy 130.117396 58.086521) (xy 129.996946 58.131676) (xy 129.981351 58.140214) (xy 129.879276 58.216715) (xy 129.866715 58.229276) (xy 129.790214 58.331351) (xy 129.781676 58.346946) (xy 129.746202 58.441572) (xy 129.70356 58.498336) (xy 129.636999 58.523036) (xy 129.56765 58.507828) (xy 129.53705 58.484313) (xy 129.477084 58.421452) (xy 129.477079 58.421447) (xy 129.473399 58.41759) (xy 129.286391 58.278452) (xy 129.28164 58.276036) (xy 129.281636 58.276034) (xy 129.167608 58.21806) (xy 129.078612 58.172812) (xy 128.856005 58.10369) (xy 128.812509 58.097925) (xy 128.630219 58.073764) (xy 128.630215 58.073764) (xy 128.624935 58.073064) (xy 128.619606 58.073264) (xy 128.619605 58.073264) (xy 128.524876 58.076821) (xy 128.392007 58.081809) (xy 128.163883 58.129674) (xy 128.158927 58.131631) (xy 128.158921 58.131633) (xy 127.959844 58.210253) (xy 127.889138 58.216671) (xy 127.826186 58.183844) (xy 127.8136 58.169765) (xy 127.758478 58.097929) (xy 127.758471 58.097921) (xy 127.739016 58.072566) (xy 127.739013 58.072563) (xy 127.733987 58.066013) (xy 127.727432 58.060983) (xy 127.708621 58.046548) (xy 127.69623 58.035681) (xy 127.264315 57.603766) (xy 127.253448 57.591375) (xy 127.239013 57.572563) (xy 127.233987 57.566013) (xy 127.202075 57.541526) (xy 127.202069 57.54152) (xy 127.113429 57.473504) (xy 127.113427 57.473503) (xy 127.106876 57.468476) (xy 126.958851 57.407162) (xy 126.950664 57.406084) (xy 126.950663 57.406084) (xy 126.939458 57.404609) (xy 126.908262 57.400502) (xy 126.839885 57.3915) (xy 126.839882 57.3915) (xy 126.839874 57.391499) (xy 126.808189 57.387328) (xy 126.8 57.38625) (xy 126.768307 57.390422) (xy 126.751864 57.3915) (xy 123.948144 57.3915) (xy 123.931698 57.390422) (xy 123.908188 57.387327) (xy 123.9 57.386249) (xy 123.741149 57.407162) (xy 123.593124 57.468476) (xy 123.554744 57.497926) (xy 123.497937 57.541515) (xy 123.497921 57.541529) (xy 123.472566 57.560984) (xy 123.472563 57.560987) (xy 123.466013 57.566013) (xy 123.460983 57.572568) (xy 123.446548 57.591379) (xy 123.435681 57.60377) (xy 123.083766 57.955685) (xy 123.071375 57.966552) (xy 123.046013 57.986013) (xy 123.021526 58.017925) (xy 123.021523 58.017928) (xy 123.021517 58.017936) (xy 122.955519 58.103946) (xy 122.948476 58.113124) (xy 122.945316 58.120753) (xy 122.945313 58.120758) (xy 122.934082 58.147872) (xy 122.889534 58.203153) (xy 122.873703 58.21251) (xy 122.87204 58.213335) (xy 122.867086 58.215292) (xy 122.862531 58.218056) (xy 122.862527 58.218058) (xy 122.672374 58.333445) (xy 122.672371 58.333447) (xy 122.667813 58.336213) (xy 122.663785 58.339708) (xy 122.663784 58.339709) (xy 122.497144 58.484313) (xy 122.491763 58.488982) (xy 122.488376 58.493113) (xy 122.347354 58.6651) (xy 122.34735 58.665106) (xy 122.34397 58.669228) (xy 122.22866 58.8718) (xy 122.226839 58.876816) (xy 122.226837 58.876821) (xy 122.164729 59.047925) (xy 122.149129 59.090903) (xy 122.14818 59.096152) (xy 122.148179 59.096155) (xy 122.10839 59.316191) (xy 122.108389 59.316198) (xy 122.107652 59.320275) (xy 122.1065 59.344702) (xy 122.1065 59.808527) (xy 122.121241 59.982257) (xy 122.122581 59.987421) (xy 122.122582 59.987425) (xy 122.176636 60.195681) (xy 122.1798 60.207873) (xy 122.181992 60.212739) (xy 122.266167 60.3996) (xy 122.275535 60.420397) (xy 122.405709 60.613752) (xy 122.409388 60.617609) (xy 122.40939 60.617611) (xy 122.465785 60.676728) (xy 122.566601 60.78241) (xy 122.753609 60.921548) (xy 122.75836 60.923964) (xy 122.758364 60.923966) (xy 122.811216 60.950837) (xy 122.961388 61.027188) (xy 123.183995 61.09631) (xy 123.189284 61.097011) (xy 123.409781 61.126236) (xy 123.409785 61.126236) (xy 123.415065 61.126936) (xy 123.420394 61.126736) (xy 123.420395 61.126736) (xy 123.515124 61.123179) (xy 123.647993 61.118191) (xy 123.876117 61.070326) (xy 123.881076 61.068368) (xy 123.881078 61.068367) (xy 124.04081 61.005285) (xy 124.092914 60.984708) (xy 124.284175 60.868649) (xy 124.287626 60.866555) (xy 124.287629 60.866553) (xy 124.292187 60.863787) (xy 124.29781 60.858908) (xy 124.464204 60.714518) (xy 124.464206 60.714516) (xy 124.468237 60.711018) (xy 124.544035 60.618576) (xy 124.612646 60.5349) (xy 124.61265 60.534894) (xy 124.61603 60.530772) (xy 124.640945 60.487002) (xy 124.692027 60.437696) (xy 124.761657 60.423834) (xy 124.827728 60.449817) (xy 124.854965 60.478965) (xy 124.874604 60.508135) (xy 124.942729 60.609325) (xy 124.945709 60.613752) (xy 124.949388 60.617609) (xy 124.94939 60.617611) (xy 125.005785 60.676728) (xy 125.106601 60.78241) (xy 125.215776 60.863638) (xy 125.258488 60.920347) (xy 125.263761 60.991147) (xy 125.237646 61.045042) (xy 125.138217 61.16523) (xy 125.135288 61.170647) (xy 125.135286 61.17065) (xy 125.042416 61.34241) (xy 125.042414 61.342415) (xy 125.039486 61.34783) (xy 124.978102 61.546129) (xy 124.977458 61.552254) (xy 124.977458 61.552255) (xy 124.957071 61.746233) (xy 124.956404 61.752575) (xy 124.961167 61.804912) (xy 124.973273 61.937928) (xy 124.975218 61.959303) (xy 124.976956 61.965209) (xy 124.976957 61.965213) (xy 125.011417 62.082297) (xy 125.033827 62.15844) (xy 125.129999 62.3424) (xy 125.133859 62.3472) (xy 125.133859 62.347201) (xy 125.153132 62.371172) (xy 125.260071 62.504177) (xy 125.264788 62.508135) (xy 125.26479 62.508137) (xy 125.312867 62.548478) (xy 125.419089 62.637609) (xy 125.424481 62.640573) (xy 125.424485 62.640576) (xy 125.579938 62.726037) (xy 125.600995 62.737613) (xy 125.798861 62.800379) (xy 125.804978 62.801065) (xy 125.804982 62.801066) (xy 125.871029 62.808474) (xy 125.960413 62.8185) (xy 126.072237 62.8185) (xy 126.075293 62.8182) (xy 126.0753 62.8182) (xy 126.220466 62.803966) (xy 126.220469 62.803965) (xy 126.226592 62.803365) (xy 126.396476 62.752075) (xy 126.419407 62.745152) (xy 126.41941 62.745151) (xy 126.425315 62.743368) (xy 126.434386 62.738545) (xy 126.603153 62.648809) (xy 126.603155 62.648808) (xy 126.608599 62.645913) (xy 126.723341 62.552332) (xy 126.764689 62.51861) (xy 126.764692 62.518607) (xy 126.769464 62.514715) (xy 126.774396 62.508754) (xy 126.897855 62.359518) (xy 126.901783 62.35477) (xy 126.905955 62.347054) (xy 126.997584 62.17759) (xy 126.997586 62.177585) (xy 127.000514 62.17217) (xy 127.012288 62.134134) (xy 127.051538 62.074974) (xy 127.116542 62.046426) (xy 127.186662 62.057554) (xy 127.221748 62.082297) (xy 127.754595 62.615144) (xy 127.788621 62.677456) (xy 127.7915 62.704239) (xy 127.7915 63.95005) (xy 127.771498 64.018171) (xy 127.754595 64.039145) (xy 127.725547 64.068193) (xy 127.721511 64.075017) (xy 127.721509 64.07502) (xy 127.669285 64.163327) (xy 127.640855 64.211399) (xy 127.638644 64.21901) (xy 127.638643 64.219012) (xy 127.633225 64.237662) (xy 127.594438 64.371169) (xy 127.593934 64.377574) (xy 127.593933 64.377579) (xy 127.591982 64.402369) (xy 127.5915 64.408498) (xy 127.5915 65.5655) (xy 127.571498 65.633621) (xy 127.517842 65.680114) (xy 127.4655 65.6915) (xy 127.233498 65.6915) (xy 127.23105 65.691693) (xy 127.231042 65.691693) (xy 127.202579 65.693933) (xy 127.202574 65.693934) (xy 127.196169 65.694438) (xy 127.102679 65.721599) (xy 127.044012 65.738643) (xy 127.04401 65.738644) (xy 127.036399 65.740855) (xy 127.025297 65.747421) (xy 126.90002 65.821509) (xy 126.900017 65.821511) (xy 126.893193 65.825547) (xy 126.775547 65.943193) (xy 126.771511 65.950017) (xy 126.771509 65.95002) (xy 126.713607 66.047928) (xy 126.690855 66.086399) (xy 126.688644 66.09401) (xy 126.688643 66.094012) (xy 126.655038 66.209684) (xy 126.644438 66.246169) (xy 126.642652 66.24565) (xy 126.614728 66.301126) (xy 126.553588 66.337216) (xy 126.482643 66.334522) (xy 126.424416 66.293901) (xy 126.406293 66.263278) (xy 126.404983 66.260115) (xy 126.356524 66.143124) (xy 126.34912 66.133474) (xy 126.283483 66.047936) (xy 126.283477 66.047928) (xy 126.283474 66.047925) (xy 126.258987 66.016013) (xy 126.247265 66.007018) (xy 126.233621 65.996548) (xy 126.22123 65.985681) (xy 125.333 65.097451) (xy 125.298974 65.035139) (xy 125.298906 64.989904) (xy 125.297974 64.989809) (xy 125.302106 64.949482) (xy 125.3085 64.887072) (xy 125.3085 64.312928) (xy 125.306303 64.291756) (xy 125.298419 64.215765) (xy 125.298418 64.215761) (xy 125.297707 64.208907) (xy 125.291339 64.189818) (xy 125.244972 64.050841) (xy 125.242654 64.043893) (xy 125.151116 63.895969) (xy 125.145934 63.890796) (xy 125.033184 63.778242) (xy 125.033179 63.778238) (xy 125.028003 63.773071) (xy 124.960691 63.731579) (xy 124.913199 63.678808) (xy 124.906139 63.659733) (xy 124.90603 63.658907) (xy 124.905338 63.653649) (xy 124.844024 63.505624) (xy 124.838279 63.498136) (xy 124.770983 63.410436) (xy 124.770977 63.410428) (xy 124.770974 63.410425) (xy 124.746487 63.378513) (xy 124.736553 63.37089) (xy 124.721121 63.359048) (xy 124.70873 63.348181) (xy 124.364315 63.003766) (xy 124.353448 62.991375) (xy 124.339013 62.972563) (xy 124.333987 62.966013) (xy 124.302075 62.941526) (xy 124.302072 62.941523) (xy 124.206876 62.868476) (xy 124.132814 62.837798) (xy 124.087397 62.8057) (xy 124.087195 62.805475) (xy 124.03911 62.752072) (xy 124.015668 62.726037) (xy 124.015666 62.726036) (xy 124.011253 62.721134) (xy 123.980097 62.698498) (xy 123.862094 62.612763) (xy 123.862093 62.612762) (xy 123.856752 62.608882) (xy 123.850724 62.606198) (xy 123.850722 62.606197) (xy 123.688319 62.533891) (xy 123.688318 62.533891) (xy 123.682288 62.531206) (xy 123.577117 62.508851) (xy 123.501944 62.492872) (xy 123.501939 62.492872) (xy 123.495487 62.4915) (xy 123.304513 62.4915) (xy 123.298061 62.492872) (xy 123.298056 62.492872) (xy 123.222883 62.508851) (xy 123.117712 62.531206) (xy 123.111682 62.533891) (xy 123.111681 62.533891) (xy 122.949278 62.606197) (xy 122.949276 62.606198) (xy 122.943248 62.608882) (xy 122.937907 62.612762) (xy 122.937906 62.612763) (xy 122.897507 62.642115) (xy 122.788747 62.721134) (xy 122.784326 62.726044) (xy 122.784325 62.726045) (xy 122.672716 62.85) (xy 122.66096 62.863056) (xy 122.640826 62.897929) (xy 122.56887 63.022561) (xy 122.565473 63.028444) (xy 122.506458 63.210072) (xy 122.505768 63.216633) (xy 122.505768 63.216635) (xy 122.488754 63.378513) (xy 122.486496 63.4) (xy 122.49422 63.473483) (xy 122.494624 63.477329) (xy 122.481852 63.547167) (xy 122.43335 63.599014) (xy 122.369314 63.6165) (xy 122.187928 63.6165) (xy 122.184682 63.616837) (xy 122.184678 63.616837) (xy 122.090765 63.626581) (xy 122.090761 63.626582) (xy 122.083907 63.627293) (xy 122.077371 63.629474) (xy 122.077369 63.629474) (xy 121.974488 63.663798) (xy 121.918893 63.682346) (xy 121.770969 63.773884) (xy 121.765796 63.779066) (xy 121.653242 63.891816) (xy 121.653238 63.891821) (xy 121.648071 63.896997) (xy 121.64423 63.903228) (xy 121.644228 63.903231) (xy 121.618861 63.944384) (xy 121.566089 63.991878) (xy 121.496018 64.003302) (xy 121.430894 63.975028) (xy 121.422584 63.967442) (xy 121.308188 63.853246) (xy 121.308183 63.853242) (xy 121.303003 63.848071) (xy 121.29649 63.844056) (xy 121.268383 63.82673) (xy 121.22089 63.773957) (xy 121.2085 63.719471) (xy 121.2085 63.348144) (xy 121.209578 63.331698) (xy 121.212673 63.308188) (xy 121.213751 63.3) (xy 121.195771 63.163429) (xy 121.193916 63.149337) (xy 121.192838 63.141149) (xy 121.131524 62.993124) (xy 121.058478 62.897929) (xy 121.058474 62.897925) (xy 121.049327 62.886004) (xy 121.039016 62.872566) (xy 121.039013 62.872563) (xy 121.033987 62.866013) (xy 121.023791 62.858189) (xy 121.008621 62.846548) (xy 120.99623 62.835681) (xy 119.764315 61.603766) (xy 119.753448 61.591375) (xy 119.739013 61.572563) (xy 119.733987 61.566013) (xy 119.702075 61.541526) (xy 119.702072 61.541523) (xy 119.668544 61.515796) (xy 119.613429 61.473504) (xy 119.613427 61.473503) (xy 119.606876 61.468476) (xy 119.458851 61.407162) (xy 119.450664 61.406084) (xy 119.450663 61.406084) (xy 119.439458 61.404609) (xy 119.389796 61.398071) (xy 119.339885 61.3915) (xy 119.339882 61.3915) (xy 119.339874 61.391499) (xy 119.308189 61.387328) (xy 119.3 61.38625) (xy 119.268307 61.390422) (xy 119.251864 61.3915) (xy 117.269245 61.3915) (xy 117.201124 61.371498) (xy 117.18015 61.354595) (xy 117.157098 61.331543) (xy 117.123072 61.269231) (xy 117.128137 61.198416) (xy 117.170684 61.14158) (xy 117.228059 61.118506) (xy 117.227993 61.118191) (xy 117.229768 61.117819) (xy 117.22977 61.117818) (xy 117.250451 61.113479) (xy 117.450898 61.071421) (xy 117.450897 61.071421) (xy 117.456117 61.070326) (xy 117.461076 61.068368) (xy 117.461078 61.068367) (xy 117.62081 61.005285) (xy 117.672914 60.984708) (xy 117.864175 60.868649) (xy 117.867626 60.866555) (xy 117.867629 60.866553) (xy 117.872187 60.863787) (xy 117.87781 60.858908) (xy 118.047275 60.711854) (xy 118.111834 60.682314) (xy 118.182115 60.692368) (xy 118.235804 60.738823) (xy 118.247837 60.762789) (xy 118.281676 60.853054) (xy 118.290214 60.868649) (xy 118.366715 60.970724) (xy 118.379276 60.983285) (xy 118.481351 61.059786) (xy 118.496946 61.068324) (xy 118.617394 61.113478) (xy 118.632649 61.117105) (xy 118.683514 61.122631) (xy 118.690328 61.123) (xy 119.327885 61.123) (xy 119.343124 61.118525) (xy 119.344329 61.117135) (xy 119.346 61.109452) (xy 119.346 61.104884) (xy 119.854 61.104884) (xy 119.858475 61.120123) (xy 119.859865 61.121328) (xy 119.867548 61.122999) (xy 120.509669 61.122999) (xy 120.51649 61.122629) (xy 120.567352 61.117105) (xy 120.582604 61.113479) (xy 120.703054 61.068324) (xy 120.718649 61.059786) (xy 120.820724 60.983285) (xy 120.833285 60.970724) (xy 120.909786 60.868649) (xy 120.918324 60.853054) (xy 120.963478 60.732606) (xy 120.967105 60.717351) (xy 120.972631 60.666486) (xy 120.973 60.659672) (xy 120.973 59.872115) (xy 120.968525 59.856876) (xy 120.967135 59.855671) (xy 120.959452 59.854) (xy 119.872115 59.854) (xy 119.856876 59.858475) (xy 119.855671 59.859865) (xy 119.854 59.867548) (xy 119.854 61.104884) (xy 119.346 61.104884) (xy 119.346 59.327885) (xy 119.854 59.327885) (xy 119.858475 59.343124) (xy 119.859865 59.344329) (xy 119.867548 59.346) (xy 120.954884 59.346) (xy 120.970123 59.341525) (xy 120.971328 59.340135) (xy 120.972999 59.332452) (xy 120.972999 58.540331) (xy 120.972629 58.53351) (xy 120.967105 58.482648) (xy 120.963479 58.467396) (xy 120.918324 58.346946) (xy 120.909786 58.331351) (xy 120.833285 58.229276) (xy 120.820724 58.216715) (xy 120.718649 58.140214) (xy 120.703054 58.131676) (xy 120.582606 58.086522) (xy 120.567351 58.082895) (xy 120.516486 58.077369) (xy 120.509672 58.077) (xy 119.872115 58.077) (xy 119.856876 58.081475) (xy 119.855671 58.082865) (xy 119.854 58.090548) (xy 119.854 59.327885) (xy 119.346 59.327885) (xy 119.346 58.095116) (xy 119.341525 58.079877) (xy 119.340135 58.078672) (xy 119.332452 58.077001) (xy 118.690331 58.077001) (xy 118.68351 58.077371) (xy 118.632648 58.082895) (xy 118.617396 58.086521) (xy 118.496946 58.131676) (xy 118.481351 58.140214) (xy 118.379276 58.216715) (xy 118.366715 58.229276) (xy 118.290214 58.331351) (xy 118.281676 58.346946) (xy 118.246202 58.441572) (xy 118.20356 58.498336) (xy 118.136999 58.523036) (xy 118.06765 58.507828) (xy 118.03705 58.484313) (xy 117.977084 58.421452) (xy 117.977079 58.421447) (xy 117.973399 58.41759) (xy 117.786391 58.278452) (xy 117.78164 58.276036) (xy 117.781636 58.276034) (xy 117.667608 58.21806) (xy 117.578612 58.172812) (xy 117.356005 58.10369) (xy 117.312509 58.097925) (xy 117.130219 58.073764) (xy 117.130215 58.073764) (xy 117.124935 58.073064) (xy 117.119606 58.073264) (xy 117.119605 58.073264) (xy 117.024876 58.076821) (xy 116.892007 58.081809) (xy 116.663883 58.129674) (xy 116.658924 58.131632) (xy 116.658922 58.131633) (xy 116.637194 58.140214) (xy 116.447086 58.215292) (xy 116.332741 58.284678) (xy 116.300579 58.304194) (xy 116.231965 58.322433) (xy 116.164383 58.300681) (xy 116.146119 58.28557) (xy 115.564315 57.703766) (xy 115.553448 57.691375) (xy 115.539013 57.672563) (xy 115.533987 57.666013) (xy 115.502075 57.641526) (xy 115.502072 57.641523) (xy 115.502064 57.641517) (xy 115.413429 57.573504) (xy 115.413427 57.573503) (xy 115.406876 57.568476) (xy 115.258851 57.507162) (xy 115.250664 57.506084) (xy 115.250663 57.506084) (xy 115.239458 57.504609) (xy 115.208262 57.500502) (xy 115.139885 57.4915) (xy 115.139882 57.4915) (xy 115.139874 57.491499) (xy 115.108189 57.487328) (xy 115.1 57.48625) (xy 115.068307 57.490422) (xy 115.051864 57.4915) (xy 112.348136 57.4915) (xy 112.33169 57.490422) (xy 112.308188 57.487328) (xy 112.3 57.48625) (xy 112.291812 57.487328) (xy 112.260129 57.491499) (xy 112.26012 57.4915) (xy 112.260115 57.4915) (xy 112.14115 57.507162) (xy 111.993125 57.568476) (xy 111.993123 57.568477) (xy 111.993124 57.568477) (xy 111.897928 57.641523) (xy 111.897925 57.641526) (xy 111.866013 57.666013) (xy 111.860983 57.672568) (xy 111.846548 57.691379) (xy 111.835681 57.70377) (xy 111.583766 57.955685) (xy 111.571375 57.966552) (xy 111.546013 57.986013) (xy 111.521526 58.017925) (xy 111.521523 58.017928) (xy 111.521517 58.017936) (xy 111.455519 58.103946) (xy 111.448476 58.113124) (xy 111.445316 58.120753) (xy 111.445313 58.120758) (xy 111.434082 58.147872) (xy 111.389534 58.203153) (xy 111.373703 58.21251) (xy 111.37204 58.213335) (xy 111.367086 58.215292) (xy 111.362531 58.218056) (xy 111.362527 58.218058) (xy 111.172374 58.333445) (xy 111.172371 58.333447) (xy 111.167813 58.336213) (xy 111.163785 58.339708) (xy 111.163784 58.339709) (xy 110.997144 58.484313) (xy 110.991763 58.488982) (xy 110.988376 58.493113) (xy 110.847354 58.6651) (xy 110.84735 58.665106) (xy 110.84397 58.669228) (xy 110.72866 58.8718) (xy 110.726839 58.876816) (xy 110.726837 58.876821) (xy 110.664729 59.047925) (xy 110.649129 59.090903) (xy 110.64818 59.096152) (xy 110.648179 59.096155) (xy 110.60839 59.316191) (xy 110.608389 59.316198) (xy 110.607652 59.320275) (xy 110.6065 59.344702) (xy 110.6065 59.808527) (xy 110.621241 59.982257) (xy 110.622581 59.987421) (xy 110.622582 59.987425) (xy 110.676636 60.195681) (xy 110.6798 60.207873) (xy 110.681992 60.212739) (xy 110.766167 60.3996) (xy 110.775535 60.420397) (xy 110.905709 60.613752) (xy 110.909388 60.617609) (xy 110.90939 60.617611) (xy 110.965785 60.676728) (xy 111.066601 60.78241) (xy 111.253609 60.921548) (xy 111.25836 60.923964) (xy 111.258364 60.923966) (xy 111.311216 60.950837) (xy 111.461388 61.027188) (xy 111.683995 61.09631) (xy 111.689284 61.097011) (xy 111.909781 61.126236) (xy 111.909785 61.126236) (xy 111.915065 61.126936) (xy 111.920394 61.126736) (xy 111.920395 61.126736) (xy 112.015124 61.123179) (xy 112.147993 61.118191) (xy 112.376117 61.070326) (xy 112.381076 61.068368) (xy 112.381078 61.068367) (xy 112.54081 61.005285) (xy 112.592914 60.984708) (xy 112.784175 60.868649) (xy 112.787626 60.866555) (xy 112.787629 60.866553) (xy 112.792187 60.863787) (xy 112.79781 60.858908) (xy 112.964204 60.714518) (xy 112.964206 60.714516) (xy 112.968237 60.711018) (xy 113.044035 60.618576) (xy 113.112646 60.5349) (xy 113.11265 60.534894) (xy 113.11603 60.530772) (xy 113.140945 60.487002) (xy 113.192027 60.437696) (xy 113.261657 60.423834) (xy 113.327728 60.449817) (xy 113.354965 60.478965) (xy 113.374604 60.508135) (xy 113.442729 60.609325) (xy 113.445709 60.613752) (xy 113.449388 60.617609) (xy 113.44939 60.617611) (xy 113.505785 60.676728) (xy 113.606601 60.78241) (xy 113.715776 60.863638) (xy 113.758488 60.920347) (xy 113.763761 60.991147) (xy 113.737646 61.045042) (xy 113.638217 61.16523) (xy 113.635288 61.170647) (xy 113.635286 61.17065) (xy 113.542416 61.34241) (xy 113.542414 61.342415) (xy 113.539486 61.34783) (xy 113.478102 61.546129) (xy 113.477458 61.552254) (xy 113.477458 61.552255) (xy 113.457071 61.746233) (xy 113.456404 61.752575) (xy 113.461167 61.804912) (xy 113.473273 61.937928) (xy 113.475218 61.959303) (xy 113.476956 61.965209) (xy 113.476957 61.965213) (xy 113.511417 62.082297) (xy 113.533827 62.15844) (xy 113.629999 62.3424) (xy 113.633859 62.3472) (xy 113.633859 62.347201) (xy 113.653132 62.371172) (xy 113.760071 62.504177) (xy 113.764788 62.508135) (xy 113.76479 62.508137) (xy 113.812867 62.548478) (xy 113.919089 62.637609) (xy 113.924481 62.640573) (xy 113.924485 62.640576) (xy 114.079938 62.726037) (xy 114.100995 62.737613) (xy 114.298861 62.800379) (xy 114.304978 62.801065) (xy 114.304982 62.801066) (xy 114.371029 62.808474) (xy 114.460413 62.8185) (xy 114.572237 62.8185) (xy 114.575293 62.8182) (xy 114.5753 62.8182) (xy 114.720466 62.803966) (xy 114.720469 62.803965) (xy 114.726592 62.803365) (xy 114.896476 62.752075) (xy 114.919407 62.745152) (xy 114.91941 62.745151) (xy 114.925315 62.743368) (xy 114.934386 62.738545) (xy 115.103153 62.648809) (xy 115.103155 62.648808) (xy 115.108599 62.645913) (xy 115.223341 62.552332) (xy 115.264689 62.51861) (xy 115.264692 62.518607) (xy 115.269464 62.514715) (xy 115.274396 62.508754) (xy 115.397855 62.359518) (xy 115.401783 62.35477) (xy 115.408472 62.3424) (xy 115.473055 62.222954) (xy 115.494201 62.183846) (xy 115.544195 62.133438) (xy 115.613506 62.11806) (xy 115.680128 62.142596) (xy 115.694131 62.15468) (xy 116.354595 62.815144) (xy 116.388621 62.877456) (xy 116.3915 62.904239) (xy 116.3915 63.95005) (xy 116.371498 64.018171) (xy 116.354595 64.039145) (xy 116.325547 64.068193) (xy 116.321511 64.075017) (xy 116.321509 64.07502) (xy 116.269285 64.163327) (xy 116.240855 64.211399) (xy 116.238644 64.21901) (xy 116.238643 64.219012) (xy 116.233225 64.237662) (xy 116.194438 64.371169) (xy 116.193934 64.377574) (xy 116.193933 64.377579) (xy 116.191982 64.402369) (xy 116.1915 64.408498) (xy 116.1915 65.5655) (xy 116.171498 65.633621) (xy 116.117842 65.680114) (xy 116.0655 65.6915) (xy 115.833498 65.6915) (xy 115.83105 65.691693) (xy 115.831042 65.691693) (xy 115.802579 65.693933) (xy 115.802574 65.693934) (xy 115.796169 65.694438) (xy 115.702679 65.721599) (xy 115.644012 65.738643) (xy 115.64401 65.738644) (xy 115.636399 65.740855) (xy 115.625297 65.747421) (xy 115.50002 65.821509) (xy 115.500017 65.821511) (xy 115.493193 65.825547) (xy 115.375547 65.943193) (xy 115.371511 65.950017) (xy 115.371509 65.95002) (xy 115.313607 66.047928) (xy 115.290855 66.086399) (xy 115.288644 66.09401) (xy 115.288643 66.094012) (xy 115.276096 66.137199) (xy 115.244438 66.246169) (xy 115.243934 66.252574) (xy 115.243933 66.252579) (xy 115.241693 66.281042) (xy 115.2415 66.283498) (xy 115.2415 67.591502) (xy 115.241693 67.59395) (xy 115.241693 67.593958) (xy 115.243927 67.622336) (xy 115.244438 67.628831) (xy 115.267439 67.708003) (xy 115.288586 67.78079) (xy 115.290855 67.788601) (xy 115.313188 67.826363) (xy 115.330646 67.895178) (xy 115.308129 67.962509) (xy 115.252784 68.006978) (xy 115.204733 68.0165) (xy 115.0595 68.0165) (xy 114.991379 67.996498) (xy 114.944886 67.942842) (xy 114.9335 67.8905) (xy 114.9335 66.373144) (xy 114.934578 66.356698) (xy 114.937673 66.333188) (xy 114.938751 66.325) (xy 114.922492 66.201497) (xy 114.918916 66.174337) (xy 114.917838 66.166149) (xy 114.856524 66.018124) (xy 114.783478 65.922929) (xy 114.783474 65.922925) (xy 114.781557 65.920427) (xy 114.764016 65.897566) (xy 114.764013 65.897563) (xy 114.758987 65.891013) (xy 114.750383 65.884411) (xy 114.733621 65.871548) (xy 114.72123 65.860681) (xy 113.745405 64.884856) (xy 113.711379 64.822544) (xy 113.7085 64.795761) (xy 113.7085 64.512928) (xy 113.704319 64.472631) (xy 113.698419 64.415765) (xy 113.698418 64.415761) (xy 113.697707 64.408907) (xy 113.695428 64.402074) (xy 113.644972 64.250841) (xy 113.642654 64.243893) (xy 113.551116 64.095969) (xy 113.542661 64.087529) (xy 113.433184 63.978242) (xy 113.433179 63.978238) (xy 113.428003 63.973071) (xy 113.421769 63.969228) (xy 113.37693 63.941588) (xy 113.329437 63.888816) (xy 113.318125 63.850776) (xy 113.306416 63.761838) (xy 113.305338 63.75365) (xy 113.244024 63.605625) (xy 113.217882 63.571556) (xy 113.170977 63.510428) (xy 113.170974 63.510425) (xy 113.146487 63.478513) (xy 113.139932 63.473483) (xy 113.121121 63.459048) (xy 113.10873 63.448181) (xy 112.776815 63.116266) (xy 112.765948 63.103875) (xy 112.751513 63.085063) (xy 112.746487 63.078513) (xy 112.714575 63.054026) (xy 112.714572 63.054023) (xy 112.667037 63.017548) (xy 112.625929 62.986004) (xy 112.625927 62.986003) (xy 112.619376 62.980976) (xy 112.52538 62.942042) (xy 112.479963 62.909944) (xy 112.415668 62.838537) (xy 112.415666 62.838536) (xy 112.411253 62.833634) (xy 112.369706 62.803448) (xy 112.262094 62.725263) (xy 112.262093 62.725262) (xy 112.256752 62.721382) (xy 112.250724 62.718698) (xy 112.250722 62.718697) (xy 112.088319 62.646391) (xy 112.088318 62.646391) (xy 112.082288 62.643706) (xy 111.988888 62.623853) (xy 111.901944 62.605372) (xy 111.901939 62.605372) (xy 111.895487 62.604) (xy 111.704513 62.604) (xy 111.698061 62.605372) (xy 111.698056 62.605372) (xy 111.611112 62.623853) (xy 111.517712 62.643706) (xy 111.511682 62.646391) (xy 111.511681 62.646391) (xy 111.349278 62.718697) (xy 111.349276 62.718698) (xy 111.343248 62.721382) (xy 111.337907 62.725262) (xy 111.337906 62.725263) (xy 111.306715 62.747925) (xy 111.188747 62.833634) (xy 111.184326 62.838544) (xy 111.184325 62.838545) (xy 111.066533 62.969367) (xy 111.06096 62.975556) (xy 111.01918 63.047921) (xy 110.976084 63.122566) (xy 110.965473 63.140944) (xy 110.906458 63.322572) (xy 110.905768 63.329133) (xy 110.905768 63.329135) (xy 110.890597 63.473483) (xy 110.886496 63.5125) (xy 110.887186 63.519065) (xy 110.90382 63.67733) (xy 110.891048 63.747168) (xy 110.842546 63.799015) (xy 110.77851 63.8165) (xy 110.587928 63.8165) (xy 110.584682 63.816837) (xy 110.584678 63.816837) (xy 110.490765 63.826581) (xy 110.490761 63.826582) (xy 110.483907 63.827293) (xy 110.477371 63.829474) (xy 110.477369 63.829474) (xy 110.388899 63.85899) (xy 110.318893 63.882346) (xy 110.170969 63.973884) (xy 110.165796 63.979066) (xy 110.112111 64.032845) (xy 110.049829 64.066924) (xy 109.979009 64.061921) (xy 109.953356 64.047495) (xy 109.953002 64.04807) (xy 109.906579 64.019454) (xy 109.859086 63.966682) (xy 109.847774 63.928641) (xy 109.845341 63.910159) (xy 109.843608 63.896997) (xy 109.842838 63.891149) (xy 109.781524 63.743124) (xy 109.708478 63.647929) (xy 109.708474 63.647925) (xy 109.707013 63.646021) (xy 109.689016 63.622566) (xy 109.689013 63.622563) (xy 109.683987 63.616013) (xy 109.677432 63.610983) (xy 109.658621 63.596548) (xy 109.64623 63.585681) (xy 107.664315 61.603766) (xy 107.653448 61.591375) (xy 107.639013 61.572563) (xy 107.633987 61.566013) (xy 107.602075 61.541526) (xy 107.602072 61.541523) (xy 107.568544 61.515796) (xy 107.513429 61.473504) (xy 107.513427 61.473503) (xy 107.506876 61.468476) (xy 107.358851 61.407162) (xy 107.350664 61.406084) (xy 107.350663 61.406084) (xy 107.339458 61.404609) (xy 107.289796 61.398071) (xy 107.239885 61.3915) (xy 107.239882 61.3915) (xy 107.239874 61.391499) (xy 107.208189 61.387328) (xy 107.2 61.38625) (xy 107.168307 61.390422) (xy 107.151864 61.3915) (xy 105.769245 61.3915) (xy 105.701124 61.371498) (xy 105.68015 61.354595) (xy 105.657098 61.331543) (xy 105.623072 61.269231) (xy 105.628137 61.198416) (xy 105.670684 61.14158) (xy 105.728059 61.118506) (xy 105.727993 61.118191) (xy 105.729768 61.117819) (xy 105.72977 61.117818) (xy 105.750451 61.113479) (xy 105.950898 61.071421) (xy 105.950897 61.071421) (xy 105.956117 61.070326) (xy 105.961076 61.068368) (xy 105.961078 61.068367) (xy 106.12081 61.005285) (xy 106.172914 60.984708) (xy 106.364175 60.868649) (xy 106.367626 60.866555) (xy 106.367629 60.866553) (xy 106.372187 60.863787) (xy 106.37781 60.858908) (xy 106.547275 60.711854) (xy 106.611834 60.682314) (xy 106.682115 60.692368) (xy 106.735804 60.738823) (xy 106.747837 60.762789) (xy 106.781676 60.853054) (xy 106.790214 60.868649) (xy 106.866715 60.970724) (xy 106.879276 60.983285) (xy 106.981351 61.059786) (xy 106.996946 61.068324) (xy 107.117394 61.113478) (xy 107.132649 61.117105) (xy 107.183514 61.122631) (xy 107.190328 61.123) (xy 107.827885 61.123) (xy 107.843124 61.118525) (xy 107.844329 61.117135) (xy 107.846 61.109452) (xy 107.846 61.104884) (xy 108.354 61.104884) (xy 108.358475 61.120123) (xy 108.359865 61.121328) (xy 108.367548 61.122999) (xy 109.009669 61.122999) (xy 109.01649 61.122629) (xy 109.067352 61.117105) (xy 109.082604 61.113479) (xy 109.203054 61.068324) (xy 109.218649 61.059786) (xy 109.320724 60.983285) (xy 109.333285 60.970724) (xy 109.409786 60.868649) (xy 109.418324 60.853054) (xy 109.463478 60.732606) (xy 109.467105 60.717351) (xy 109.472631 60.666486) (xy 109.473 60.659672) (xy 109.473 59.872115) (xy 109.468525 59.856876) (xy 109.467135 59.855671) (xy 109.459452 59.854) (xy 108.372115 59.854) (xy 108.356876 59.858475) (xy 108.355671 59.859865) (xy 108.354 59.867548) (xy 108.354 61.104884) (xy 107.846 61.104884) (xy 107.846 59.327885) (xy 108.354 59.327885) (xy 108.358475 59.343124) (xy 108.359865 59.344329) (xy 108.367548 59.346) (xy 109.454884 59.346) (xy 109.470123 59.341525) (xy 109.471328 59.340135) (xy 109.472999 59.332452) (xy 109.472999 58.540331) (xy 109.472629 58.53351) (xy 109.467105 58.482648) (xy 109.463479 58.467396) (xy 109.418324 58.346946) (xy 109.409786 58.331351) (xy 109.333285 58.229276) (xy 109.320724 58.216715) (xy 109.218649 58.140214) (xy 109.203054 58.131676) (xy 109.082606 58.086522) (xy 109.067351 58.082895) (xy 109.016486 58.077369) (xy 109.009672 58.077) (xy 108.372115 58.077) (xy 108.356876 58.081475) (xy 108.355671 58.082865) (xy 108.354 58.090548) (xy 108.354 59.327885) (xy 107.846 59.327885) (xy 107.846 58.095116) (xy 107.841525 58.079877) (xy 107.840135 58.078672) (xy 107.832452 58.077001) (xy 107.190331 58.077001) (xy 107.18351 58.077371) (xy 107.132648 58.082895) (xy 107.117396 58.086521) (xy 106.996946 58.131676) (xy 106.981351 58.140214) (xy 106.879276 58.216715) (xy 106.866715 58.229276) (xy 106.790214 58.331351) (xy 106.781676 58.346946) (xy 106.746202 58.441572) (xy 106.70356 58.498336) (xy 106.636999 58.523036) (xy 106.56765 58.507828) (xy 106.53705 58.484313) (xy 106.477084 58.421452) (xy 106.477079 58.421447) (xy 106.473399 58.41759) (xy 106.286391 58.278452) (xy 106.28164 58.276036) (xy 106.281636 58.276034) (xy 106.167608 58.21806) (xy 106.078612 58.172812) (xy 105.856005 58.10369) (xy 105.812509 58.097925) (xy 105.630219 58.073764) (xy 105.630215 58.073764) (xy 105.624935 58.073064) (xy 105.619606 58.073264) (xy 105.619605 58.073264) (xy 105.524876 58.076821) (xy 105.392007 58.081809) (xy 105.163883 58.129674) (xy 105.158924 58.131632) (xy 105.158922 58.131633) (xy 105.137194 58.140214) (xy 104.947086 58.215292) (xy 104.832741 58.284678) (xy 104.800579 58.304194) (xy 104.731965 58.322433) (xy 104.664383 58.300681) (xy 104.646119 58.28557) (xy 104.064315 57.703766) (xy 104.053448 57.691375) (xy 104.039013 57.672563) (xy 104.033987 57.666013) (xy 104.002075 57.641526) (xy 104.002072 57.641523) (xy 104.002064 57.641517) (xy 103.913429 57.573504) (xy 103.913427 57.573503) (xy 103.906876 57.568476) (xy 103.758851 57.507162) (xy 103.750664 57.506084) (xy 103.750663 57.506084) (xy 103.739458 57.504609) (xy 103.708262 57.500502) (xy 103.639885 57.4915) (xy 103.639882 57.4915) (xy 103.639874 57.491499) (xy 103.608189 57.487328) (xy 103.6 57.48625) (xy 103.568307 57.490422) (xy 103.551864 57.4915) (xy 100.848136 57.4915) (xy 100.83169 57.490422) (xy 100.808188 57.487328) (xy 100.8 57.48625) (xy 100.791812 57.487328) (xy 100.760129 57.491499) (xy 100.76012 57.4915) (xy 100.760115 57.4915) (xy 100.64115 57.507162) (xy 100.493125 57.568476) (xy 100.493123 57.568477) (xy 100.493124 57.568477) (xy 100.397928 57.641523) (xy 100.397925 57.641526) (xy 100.366013 57.666013) (xy 100.360983 57.672568) (xy 100.346548 57.691379) (xy 100.335681 57.70377) (xy 100.083766 57.955685) (xy 100.071375 57.966552) (xy 100.046013 57.986013) (xy 100.021526 58.017925) (xy 100.021523 58.017928) (xy 100.021517 58.017936) (xy 99.955519 58.103946) (xy 99.948476 58.113124) (xy 99.945316 58.120753) (xy 99.945313 58.120758) (xy 99.934082 58.147872) (xy 99.889534 58.203153) (xy 99.873703 58.21251) (xy 99.87204 58.213335) (xy 99.867086 58.215292) (xy 99.862531 58.218056) (xy 99.862527 58.218058) (xy 99.672374 58.333445) (xy 99.672371 58.333447) (xy 99.667813 58.336213) (xy 99.663785 58.339708) (xy 99.663784 58.339709) (xy 99.497144 58.484313) (xy 99.491763 58.488982) (xy 99.488376 58.493113) (xy 99.347354 58.6651) (xy 99.34735 58.665106) (xy 99.34397 58.669228) (xy 99.22866 58.8718) (xy 99.226839 58.876816) (xy 99.226837 58.876821) (xy 99.164729 59.047925) (xy 99.149129 59.090903) (xy 99.14818 59.096152) (xy 99.148179 59.096155) (xy 99.10839 59.316191) (xy 99.108389 59.316198) (xy 99.107652 59.320275) (xy 99.1065 59.344702) (xy 99.1065 59.808527) (xy 99.121241 59.982257) (xy 99.122581 59.987421) (xy 99.122582 59.987425) (xy 99.176636 60.195681) (xy 99.1798 60.207873) (xy 99.181992 60.212739) (xy 99.266167 60.3996) (xy 99.275535 60.420397) (xy 99.405709 60.613752) (xy 99.409388 60.617609) (xy 99.40939 60.617611) (xy 99.465785 60.676728) (xy 99.566601 60.78241) (xy 99.753609 60.921548) (xy 99.75836 60.923964) (xy 99.758364 60.923966) (xy 99.811216 60.950837) (xy 99.961388 61.027188) (xy 100.183995 61.09631) (xy 100.189284 61.097011) (xy 100.409781 61.126236) (xy 100.409785 61.126236) (xy 100.415065 61.126936) (xy 100.420394 61.126736) (xy 100.420395 61.126736) (xy 100.515124 61.123179) (xy 100.647993 61.118191) (xy 100.876117 61.070326) (xy 100.881076 61.068368) (xy 100.881078 61.068367) (xy 101.04081 61.005285) (xy 101.092914 60.984708) (xy 101.284175 60.868649) (xy 101.287626 60.866555) (xy 101.287629 60.866553) (xy 101.292187 60.863787) (xy 101.29781 60.858908) (xy 101.464204 60.714518) (xy 101.464206 60.714516) (xy 101.468237 60.711018) (xy 101.544035 60.618576) (xy 101.612646 60.5349) (xy 101.61265 60.534894) (xy 101.61603 60.530772) (xy 101.640945 60.487002) (xy 101.692027 60.437696) (xy 101.761657 60.423834) (xy 101.827728 60.449817) (xy 101.854965 60.478965) (xy 101.874604 60.508135) (xy 101.942729 60.609325) (xy 101.945709 60.613752) (xy 101.949388 60.617609) (xy 101.94939 60.617611) (xy 102.005785 60.676728) (xy 102.106601 60.78241) (xy 102.215776 60.863638) (xy 102.258488 60.920347) (xy 102.263761 60.991147) (xy 102.237646 61.045042) (xy 102.138217 61.16523) (xy 102.135288 61.170647) (xy 102.135286 61.17065) (xy 102.042416 61.34241) (xy 102.042414 61.342415) (xy 102.039486 61.34783) (xy 101.978102 61.546129) (xy 101.977458 61.552254) (xy 101.977458 61.552255) (xy 101.957071 61.746233) (xy 101.956404 61.752575) (xy 101.961167 61.804912) (xy 101.973273 61.937928) (xy 101.975218 61.959303) (xy 101.976956 61.965209) (xy 101.976957 61.965213) (xy 102.011417 62.082297) (xy 102.033827 62.15844) (xy 102.129999 62.3424) (xy 102.133859 62.3472) (xy 102.133859 62.347201) (xy 102.153132 62.371172) (xy 102.260071 62.504177) (xy 102.264788 62.508135) (xy 102.26479 62.508137) (xy 102.312867 62.548478) (xy 102.419089 62.637609) (xy 102.424481 62.640573) (xy 102.424485 62.640576) (xy 102.579938 62.726037) (xy 102.600995 62.737613) (xy 102.798861 62.800379) (xy 102.804978 62.801065) (xy 102.804982 62.801066) (xy 102.871029 62.808474) (xy 102.960413 62.8185) (xy 103.072237 62.8185) (xy 103.075293 62.8182) (xy 103.0753 62.8182) (xy 103.220466 62.803966) (xy 103.220469 62.803965) (xy 103.226592 62.803365) (xy 103.396476 62.752075) (xy 103.419407 62.745152) (xy 103.41941 62.745151) (xy 103.425315 62.743368) (xy 103.434386 62.738545) (xy 103.603153 62.648809) (xy 103.603155 62.648808) (xy 103.608599 62.645913) (xy 103.723341 62.552332) (xy 103.764689 62.51861) (xy 103.764692 62.518607) (xy 103.769464 62.514715) (xy 103.774396 62.508754) (xy 103.897855 62.359518) (xy 103.901783 62.35477) (xy 103.908472 62.3424) (xy 103.973055 62.222954) (xy 103.994201 62.183846) (xy 104.044195 62.133438) (xy 104.113506 62.11806) (xy 104.180128 62.142596) (xy 104.194131 62.15468) (xy 104.954595 62.915144) (xy 104.988621 62.977456) (xy 104.9915 63.004239) (xy 104.9915 64.01255) (xy 104.971498 64.080671) (xy 104.954595 64.101645) (xy 104.925547 64.130693) (xy 104.921511 64.137517) (xy 104.921509 64.13752) (xy 104.873315 64.219012) (xy 104.840855 64.273899) (xy 104.838644 64.28151) (xy 104.838643 64.281512) (xy 104.82542 64.327028) (xy 104.794438 64.433669) (xy 104.793934 64.440074) (xy 104.793933 64.440079) (xy 104.791926 64.46558) (xy 104.7915 64.470998) (xy 104.7915 65.628) (xy 104.771498 65.696121) (xy 104.717842 65.742614) (xy 104.6655 65.754) (xy 104.433498 65.754) (xy 104.43105 65.754193) (xy 104.431042 65.754193) (xy 104.402579 65.756433) (xy 104.402574 65.756434) (xy 104.396169 65.756938) (xy 104.314902 65.780548) (xy 104.244012 65.801143) (xy 104.24401 65.801144) (xy 104.236399 65.803355) (xy 104.217437 65.814569) (xy 104.10002 65.884009) (xy 104.100017 65.884011) (xy 104.093193 65.888047) (xy 103.975547 66.005693) (xy 103.971511 66.012517) (xy 103.971509 66.01252) (xy 103.925875 66.089684) (xy 103.890855 66.148899) (xy 103.888644 66.15651) (xy 103.888643 66.156512) (xy 103.883431 66.174453) (xy 103.844438 66.308669) (xy 103.843934 66.315074) (xy 103.843933 66.315079) (xy 103.841828 66.34183) (xy 103.8415 66.345998) (xy 103.8415 67.654002) (xy 103.841693 67.65645) (xy 103.841693 67.656458) (xy 103.843927 67.684836) (xy 103.844438 67.691331) (xy 103.846232 67.697507) (xy 103.846233 67.697511) (xy 103.8892 67.845406) (xy 103.888997 67.916402) (xy 103.857298 67.969653) (xy 103.847356 67.979595) (xy 103.785044 68.013621) (xy 103.758261 68.0165) (xy 103.5345 68.0165) (xy 103.466379 67.996498) (xy 103.419886 67.942842) (xy 103.4085 67.8905) (xy 103.4085 65.935636) (xy 103.409578 65.91919) (xy 103.412672 65.895688) (xy 103.41375 65.8875) (xy 103.411851 65.873071) (xy 103.4085 65.84762) (xy 103.4085 65.847615) (xy 103.393916 65.736836) (xy 103.393915 65.736834) (xy 103.392838 65.72865) (xy 103.392276 65.727293) (xy 103.348238 65.620975) (xy 103.334684 65.588252) (xy 103.334683 65.58825) (xy 103.331524 65.580624) (xy 103.325893 65.573285) (xy 103.258477 65.485429) (xy 103.258476 65.485427) (xy 103.239017 65.460067) (xy 103.239013 65.460063) (xy 103.233987 65.453513) (xy 103.208617 65.434046) (xy 103.196232 65.423184) (xy 102.545404 64.772355) (xy 102.511379 64.710043) (xy 102.5085 64.68326) (xy 102.5085 64.312928) (xy 102.506303 64.291756) (xy 102.498419 64.215765) (xy 102.498418 64.215761) (xy 102.497707 64.208907) (xy 102.491339 64.189818) (xy 102.444972 64.050841) (xy 102.442654 64.043893) (xy 102.351116 63.895969) (xy 102.345934 63.890796) (xy 102.233184 63.778242) (xy 102.233179 63.778238) (xy 102.228003 63.773071) (xy 102.221769 63.769228) (xy 102.17693 63.741588) (xy 102.129437 63.688816) (xy 102.118125 63.650776) (xy 102.106416 63.561838) (xy 102.105338 63.55365) (xy 102.044024 63.405625) (xy 102.007864 63.3585) (xy 101.970977 63.310428) (xy 101.970974 63.310425) (xy 101.946487 63.278513) (xy 101.939932 63.273483) (xy 101.921121 63.259048) (xy 101.90873 63.248181) (xy 101.464315 62.803766) (xy 101.453448 62.791375) (xy 101.439013 62.772563) (xy 101.433987 62.766013) (xy 101.402075 62.741526) (xy 101.402072 62.741523) (xy 101.306876 62.668476) (xy 101.246981 62.643666) (xy 101.232814 62.637798) (xy 101.187397 62.6057) (xy 101.115668 62.526037) (xy 101.115666 62.526036) (xy 101.111253 62.521134) (xy 101.0705 62.491525) (xy 100.962094 62.412763) (xy 100.962093 62.412762) (xy 100.956752 62.408882) (xy 100.950724 62.406198) (xy 100.950722 62.406197) (xy 100.788319 62.333891) (xy 100.788318 62.333891) (xy 100.782288 62.331206) (xy 100.683087 62.31012) (xy 100.601944 62.292872) (xy 100.601939 62.292872) (xy 100.595487 62.2915) (xy 100.404513 62.2915) (xy 100.398061 62.292872) (xy 100.398056 62.292872) (xy 100.316913 62.31012) (xy 100.217712 62.331206) (xy 100.211682 62.333891) (xy 100.211681 62.333891) (xy 100.049278 62.406197) (xy 100.049276 62.406198) (xy 100.043248 62.408882) (xy 100.037907 62.412762) (xy 100.037906 62.412763) (xy 100.014841 62.429521) (xy 99.888747 62.521134) (xy 99.884326 62.526044) (xy 99.884325 62.526045) (xy 99.773395 62.649246) (xy 99.76096 62.663056) (xy 99.709565 62.752075) (xy 99.688239 62.789013) (xy 99.665473 62.828444) (xy 99.606458 63.010072) (xy 99.605768 63.016633) (xy 99.605768 63.016635) (xy 99.593483 63.13352) (xy 99.586496 63.2) (xy 99.587186 63.206565) (xy 99.60473 63.373483) (xy 99.606458 63.389928) (xy 99.625995 63.450054) (xy 99.626485 63.451563) (xy 99.628513 63.522531) (xy 99.59185 63.583329) (xy 99.528138 63.614655) (xy 99.506652 63.6165) (xy 99.387928 63.6165) (xy 99.384682 63.616837) (xy 99.384678 63.616837) (xy 99.290765 63.626581) (xy 99.290761 63.626582) (xy 99.283907 63.627293) (xy 99.277371 63.629474) (xy 99.277369 63.629474) (xy 99.174488 63.663798) (xy 99.118893 63.682346) (xy 98.970969 63.773884) (xy 98.965796 63.779066) (xy 98.853242 63.891816) (xy 98.853238 63.891821) (xy 98.848071 63.896997) (xy 98.844231 63.903227) (xy 98.84423 63.903228) (xy 98.761364 64.037662) (xy 98.756791 64.04508) (xy 98.702026 64.210191) (xy 98.701326 64.217027) (xy 98.701325 64.21703) (xy 98.697615 64.253242) (xy 98.6915 64.312928) (xy 98.6915 64.887072) (xy 98.691837 64.890318) (xy 98.691837 64.890322) (xy 98.701537 64.983806) (xy 98.702293 64.991093) (xy 98.704474 64.997629) (xy 98.704474 64.997631) (xy 98.735227 65.089809) (xy 98.757346 65.156107) (xy 98.848884 65.304031) (xy 98.854066 65.309204) (xy 98.966816 65.421758) (xy 98.966821 65.421762) (xy 98.971997 65.426929) (xy 98.978227 65.430769) (xy 98.978228 65.43077) (xy 99.028391 65.461691) (xy 99.075885 65.514464) (xy 99.079427 65.522568) (xy 99.085304 65.537412) (xy 99.089149 65.548642) (xy 99.098712 65.581558) (xy 99.101482 65.591093) (xy 99.105515 65.597912) (xy 99.105517 65.597917) (xy 99.111793 65.608528) (xy 99.120488 65.626276) (xy 99.127948 65.645117) (xy 99.13261 65.651533) (xy 99.13261 65.651534) (xy 99.153936 65.680887) (xy 99.160452 65.690807) (xy 99.178663 65.721599) (xy 99.182958 65.728862) (xy 99.197282 65.743186) (xy 99.210117 65.758213) (xy 99.222028 65.774607) (xy 99.228136 65.77966) (xy 99.256094 65.802789) (xy 99.264872 65.810778) (xy 99.446352 65.992258) (xy 99.453887 66.000538) (xy 99.458 66.007018) (xy 99.507182 66.053203) (xy 99.507652 66.053644) (xy 99.510494 66.056399) (xy 99.53023 66.076135) (xy 99.533427 66.078615) (xy 99.542447 66.086318) (xy 99.574679 66.116586) (xy 99.581625 66.120405) (xy 99.581628 66.120407) (xy 99.592434 66.126348) (xy 99.608953 66.137199) (xy 99.624959 66.149614) (xy 99.632228 66.152759) (xy 99.632232 66.152762) (xy 99.665537 66.167174) (xy 99.676187 66.172391) (xy 99.71494 66.193695) (xy 99.722615 66.195666) (xy 99.722616 66.195666) (xy 99.734562 66.198733) (xy 99.753266 66.205137) (xy 99.763878 66.209729) (xy 99.771855 66.213181) (xy 99.779678 66.21442) (xy 99.779688 66.214423) (xy 99.815524 66.220099) (xy 99.827144 66.222505) (xy 99.850503 66.228502) (xy 99.86997 66.2335) (xy 99.890224 66.2335) (xy 99.909934 66.235051) (xy 99.929943 66.23822) (xy 99.937835 66.237474) (xy 99.973961 66.234059) (xy 99.985819 66.2335) (xy 100.464442 66.2335) (xy 100.532563 66.253502) (xy 100.579056 66.307158) (xy 100.58916 66.377432) (xy 100.584035 66.399167) (xy 100.557926 66.477885) (xy 100.552203 66.495139) (xy 100.551503 66.501975) (xy 100.551502 66.501978) (xy 100.54996 66.51703) (xy 100.5415 66.5996) (xy 100.5415 67.3504) (xy 100.541837 67.353646) (xy 100.541837 67.35365) (xy 100.551662 67.448339) (xy 100.552474 67.456166) (xy 100.554655 67.462702) (xy 100.554655 67.462704) (xy 100.582731 67.546857) (xy 100.60845 67.623946) (xy 100.701522 67.774348) (xy 100.706704 67.779521) (xy 100.727865 67.800645) (xy 100.826697 67.899305) (xy 100.831235 67.902102) (xy 100.871824 67.959353) (xy 100.875054 68.030276) (xy 100.839428 68.091687) (xy 100.830932 68.099062) (xy 100.820793 68.107098) (xy 100.706261 68.221829) (xy 100.697249 68.23324) (xy 100.612184 68.371243) (xy 100.606037 68.384424) (xy 100.554862 68.53871) (xy 100.551995 68.552086) (xy 100.542328 68.646438) (xy 100.542 68.652855) (xy 100.542 68.752885) (xy 100.546475 68.768124) (xy 100.547865 68.769329) (xy 100.555548 68.771) (xy 101.878 68.771) (xy 101.946121 68.791002) (xy 101.992614 68.844658) (xy 102.004 68.897) (xy 102.004 70.089884) (xy 102.008475 70.105123) (xy 102.009865 70.106328) (xy 102.017548 70.107999) (xy 102.0655 70.107999) (xy 102.133621 70.128001) (xy 102.180114 70.181657) (xy 102.1915 70.233999) (xy 102.1915 71.395761) (xy 102.171498 71.463882) (xy 102.154595 71.484856) (xy 102.150307 71.489144) (xy 102.087995 71.52317) (xy 102.0286 71.521755) (xy 101.974691 71.50731) (xy 101.974685 71.507309) (xy 101.969371 71.505885) (xy 101.75 71.486693) (xy 101.530629 71.505885) (xy 101.317924 71.56288) (xy 101.23046 71.603665) (xy 101.123334 71.653618) (xy 101.123329 71.653621) (xy 101.118347 71.655944) (xy 101.11384 71.6591) (xy 101.113838 71.659101) (xy 100.942473 71.779092) (xy 100.94247 71.779094) (xy 100.937962 71.782251) (xy 100.782251 71.937962) (xy 100.779094 71.94247) (xy 100.779092 71.942473) (xy 100.662498 72.108987) (xy 100.655944 72.118347) (xy 100.653621 72.123329) (xy 100.653618 72.123334) (xy 100.62522 72.184235) (xy 100.56288 72.317924) (xy 100.505885 72.530629) (xy 100.486693 72.75) (xy 100.505885 72.969371) (xy 100.56288 73.182076) (xy 100.602005 73.265981) (xy 100.653618 73.376666) (xy 100.653621 73.376671) (xy 100.655944 73.381653) (xy 100.6591 73.38616) (xy 100.659101 73.386162) (xy 100.762051 73.533189) (xy 100.782251 73.562038) (xy 100.937962 73.717749) (xy 100.942471 73.720906) (xy 100.942473 73.720908) (xy 101.002431 73.762891) (xy 101.118346 73.844056) (xy 101.317924 73.93712) (xy 101.530629 73.994115) (xy 101.75 74.013307) (xy 101.969371 73.994115) (xy 102.182076 73.93712) (xy 102.381654 73.844056) (xy 102.497569 73.762891) (xy 102.557527 73.720908) (xy 102.557529 73.720906) (xy 102.562038 73.717749) (xy 102.717749 73.562038) (xy 102.73795 73.533189) (xy 102.840899 73.386162) (xy 102.8409 73.38616) (xy 102.844056 73.381653) (xy 102.846379 73.376671) (xy 102.846382 73.376666) (xy 102.897995 73.265981) (xy 102.93712 73.182076) (xy 102.994115 72.969371) (xy 103.013307 72.75) (xy 102.994115 72.530629) (xy 102.992691 72.525315) (xy 102.99269 72.525309) (xy 102.978245 72.4714) (xy 102.979934 72.400424) (xy 103.010856 72.349693) (xy 103.196234 72.164315) (xy 103.208625 72.153448) (xy 103.227437 72.139013) (xy 103.233987 72.133987) (xy 103.258474 72.102075) (xy 103.25848 72.102069) (xy 103.326496 72.013429) (xy 103.326497 72.013427) (xy 103.331524 72.006876) (xy 103.360069 71.937962) (xy 103.369089 71.916185) (xy 103.389678 71.86648) (xy 103.389679 71.866477) (xy 103.392838 71.85885) (xy 103.4085 71.739885) (xy 103.4085 71.739878) (xy 103.41375 71.7) (xy 103.409577 71.668302) (xy 103.4085 71.651864) (xy 103.4085 70.1095) (xy 103.428502 70.041379) (xy 103.482158 69.994886) (xy 103.5345 69.9835) (xy 103.7905 69.9835) (xy 103.858621 70.003502) (xy 103.905114 70.057158) (xy 103.9165 70.1095) (xy 103.9165 76.475743) (xy 103.896498 76.543864) (xy 103.879595 76.564838) (xy 94.035998 86.408435) (xy 93.973686 86.442461) (xy 93.946903 86.44534) (xy 87.597338 86.44534) (xy 87.529217 86.425338) (xy 87.508243 86.408435) (xy 87.004063 85.904255) (xy 86.993196 85.891864) (xy 86.978761 85.873052) (xy 86.973735 85.866502) (xy 86.941823 85.842015) (xy 86.94182 85.842012) (xy 86.935823 85.83741) (xy 86.927052 85.83068) (xy 86.885185 85.773342) (xy 86.880963 85.702471) (xy 86.914661 85.641623) (xy 98.071234 74.48505) (xy 98.083625 74.474183) (xy 98.102437 74.459748) (xy 98.108987 74.454722) (xy 98.133474 74.42281) (xy 98.13348 74.422804) (xy 98.201496 74.334164) (xy 98.201497 74.334162) (xy 98.206524 74.327611) (xy 98.267838 74.179586) (xy 98.269197 74.169268) (xy 98.273856 74.133872) (xy 98.273856 74.133871) (xy 98.2835 74.06062) (xy 98.2835 74.060615) (xy 98.287672 74.028924) (xy 98.28875 74.020735) (xy 98.284578 73.989042) (xy 98.2835 73.972599) (xy 98.2835 69.397095) (xy 100.542001 69.397095) (xy 100.542338 69.403614) (xy 100.552257 69.499206) (xy 100.555149 69.5126) (xy 100.606588 69.666784) (xy 100.612761 69.679962) (xy 100.698063 69.817807) (xy 100.707099 69.829208) (xy 100.821829 69.943739) (xy 100.83324 69.952751) (xy 100.971243 70.037816) (xy 100.984424 70.043963) (xy 101.13871 70.095138) (xy 101.152086 70.098005) (xy 101.246438 70.107672) (xy 101.252854 70.108) (xy 101.477885 70.108) (xy 101.493124 70.103525) (xy 101.494329 70.102135) (xy 101.496 70.094452) (xy 101.496 69.297115) (xy 101.491525 69.281876) (xy 101.490135 69.280671) (xy 101.482452 69.279) (xy 100.560116 69.279) (xy 100.544877 69.283475) (xy 100.543672 69.284865) (xy 100.542001 69.292548) (xy 100.542001 69.397095) (xy 98.2835 69.397095) (xy 98.2835 58.423136) (xy 98.284578 58.40669) (xy 98.287672 58.383188) (xy 98.28875 58.375) (xy 98.2835 58.335122) (xy 98.2835 58.335115) (xy 98.267838 58.21615) (xy 98.206524 58.068125) (xy 98.15425 58) (xy 98.133477 57.972928) (xy 98.133474 57.972925) (xy 98.108987 57.941013) (xy 98.102432 57.935983) (xy 98.083621 57.921548) (xy 98.07123 57.910681) (xy 97.664315 57.503766) (xy 97.653448 57.491375) (xy 97.639013 57.472563) (xy 97.633987 57.466013) (xy 97.602075 57.441526) (xy 97.602069 57.44152) (xy 97.513429 57.373504) (xy 97.513427 57.373503) (xy 97.506876 57.368476) (xy 97.358851 57.307162) (xy 97.350664 57.306084) (xy 97.350663 57.306084) (xy 97.339458 57.304609) (xy 97.308262 57.300502) (xy 97.239885 57.2915) (xy 97.239882 57.2915) (xy 97.239874 57.291499) (xy 97.208189 57.287328) (xy 97.2 57.28625) (xy 97.168307 57.290422) (xy 97.151864 57.2915) (xy 94.648144 57.2915) (xy 94.631698 57.290422) (xy 94.608188 57.287327) (xy 94.6 57.286249) (xy 94.44115 57.307162) (xy 94.433523 57.310321) (xy 94.43352 57.310322) (xy 94.367137 57.337819) (xy 94.293124 57.368476) (xy 94.269962 57.386249) (xy 94.197937 57.441515) (xy 94.197921 57.441529) (xy 94.172566 57.460984) (xy 94.172563 57.460987) (xy 94.166013 57.466013) (xy 94.160983 57.472568) (xy 94.146548 57.491379) (xy 94.135681 57.50377) (xy 91.959856 59.679595) (xy 91.897544 59.713621) (xy 91.870761 59.7165) (xy 91.6996 59.7165) (xy 91.696354 59.716837) (xy 91.69635 59.716837) (xy 91.600692 59.726762) (xy 91.600688 59.726763) (xy 91.593834 59.727474) (xy 91.587298 59.729655) (xy 91.587296 59.729655) (xy 91.48943 59.762306) (xy 91.426054 59.78345) (xy 91.275652 59.876522) (xy 91.150695 60.001697) (xy 91.066153 60.13885) (xy 91.06092 60.147339) (xy 91.008148 60.194832) (xy 90.938076 60.206256) (xy 90.872952 60.177982) (xy 90.86249 60.168195) (xy 90.757103 60.057722) (xy 90.753424 60.053865) (xy 90.568458 59.916246) (xy 90.563707 59.91383) (xy 90.563703 59.913828) (xy 90.441155 59.851522) (xy 90.362949 59.81176) (xy 90.357855 59.810178) (xy 90.357852 59.810177) (xy 90.147871 59.744976) (xy 90.142773 59.743393) (xy 90.137484 59.742692) (xy 89.919511 59.713802) (xy 89.919506 59.713802) (xy 89.914226 59.713102) (xy 89.908897 59.713302) (xy 89.908895 59.713302) (xy 89.799034 59.717427) (xy 89.683842 59.721751) (xy 89.678623 59.722846) (xy 89.656566 59.727474) (xy 89.458209 59.769093) (xy 89.45325 59.771051) (xy 89.453248 59.771052) (xy 89.248744 59.851815) (xy 89.248742 59.851816) (xy 89.243779 59.853776) (xy 89.23922 59.856543) (xy 89.239217 59.856544) (xy 89.140832 59.916246) (xy 89.046683 59.973377) (xy 89.042653 59.976874) (xy 88.949484 60.057722) (xy 88.872555 60.124477) (xy 88.869168 60.128608) (xy 88.72976 60.298627) (xy 88.729756 60.298633) (xy 88.726376 60.302755) (xy 88.723737 60.307391) (xy 88.723735 60.307394) (xy 88.669389 60.402866) (xy 88.612325 60.503114) (xy 88.533663 60.719825) (xy 88.532714 60.725074) (xy 88.532713 60.725077) (xy 88.493377 60.942608) (xy 88.493376 60.942615) (xy 88.492639 60.946692) (xy 88.4915 60.970844) (xy 88.4915 61.43289) (xy 88.50608 61.60472) (xy 88.507418 61.609875) (xy 88.507419 61.609881) (xy 88.562657 61.822703) (xy 88.563999 61.827872) (xy 88.566191 61.832738) (xy 88.566192 61.832741) (xy 88.615623 61.942473) (xy 88.658688 62.038075) (xy 88.787441 62.229319) (xy 88.79112 62.233176) (xy 88.791122 62.233178) (xy 88.824795 62.268476) (xy 88.946576 62.396135) (xy 88.950854 62.399318) (xy 88.990053 62.428483) (xy 89.131542 62.533754) (xy 89.136293 62.53617) (xy 89.136297 62.536172) (xy 89.199796 62.568456) (xy 89.337051 62.63824) (xy 89.342145 62.639822) (xy 89.342148 62.639823) (xy 89.450612 62.673502) (xy 89.557227 62.706607) (xy 89.562516 62.707308) (xy 89.78049 62.736198) (xy 89.780494 62.736198) (xy 89.785774 62.736898) (xy 89.791103 62.736698) (xy 89.791104 62.736698) (xy 89.801379 62.736312) (xy 89.866321 62.733874) (xy 89.935142 62.751306) (xy 89.960141 62.77069) (xy 90.385685 63.196234) (xy 90.396552 63.208625) (xy 90.416013 63.233987) (xy 90.422563 63.239013) (xy 90.447921 63.258471) (xy 90.447937 63.258485) (xy 90.496026 63.295384) (xy 90.543124 63.331524) (xy 90.691149 63.392838) (xy 90.85 63.413751) (xy 90.881699 63.409578) (xy 90.898144 63.4085) (xy 93.251864 63.4085) (xy 93.268307 63.409578) (xy 93.3 63.41375) (xy 93.308189 63.412672) (xy 93.339874 63.408501) (xy 93.339884 63.4085) (xy 93.339885 63.4085) (xy 93.350702 63.407076) (xy 93.439457 63.395391) (xy 93.450664 63.393916) (xy 93.450666 63.393915) (xy 93.458851 63.392838) (xy 93.606876 63.331524) (xy 93.61343 63.326495) (xy 93.702069 63.25848) (xy 93.702075 63.258474) (xy 93.727434 63.239015) (xy 93.733987 63.233987) (xy 93.747302 63.216635) (xy 93.753452 63.208621) (xy 93.764319 63.19623) (xy 94.146234 62.814315) (xy 94.158625 62.803448) (xy 94.177437 62.789013) (xy 94.183987 62.783987) (xy 94.208474 62.752075) (xy 94.208477 62.752072) (xy 94.217378 62.740472) (xy 94.276496 62.663429) (xy 94.276497 62.663427) (xy 94.281524 62.656876) (xy 94.342838 62.508851) (xy 94.344908 62.493124) (xy 94.34942 62.458853) (xy 94.34942 62.458851) (xy 94.3585 62.389885) (xy 94.3585 62.38988) (xy 94.362672 62.358189) (xy 94.36375 62.35) (xy 94.359578 62.318307) (xy 94.3585 62.301864) (xy 94.3585 60.054239) (xy 94.378502 59.986118) (xy 94.395405 59.965144) (xy 94.827644 59.532905) (xy 94.889956 59.498879) (xy 94.916739 59.496) (xy 95.44933 59.496) (xy 95.517451 59.516002) (xy 95.556474 59.555697) (xy 95.586384 59.604031) (xy 95.591566 59.609204) (xy 95.693286 59.710747) (xy 95.727365 59.77303) (xy 95.722362 59.84385) (xy 95.693441 59.888937) (xy 95.590746 59.991812) (xy 95.590742 59.991817) (xy 95.585571 59.996997) (xy 95.581731 60.003227) (xy 95.58173 60.003228) (xy 95.504445 60.128608) (xy 95.494291 60.14508) (xy 95.439526 60.310191) (xy 95.438826 60.317027) (xy 95.438825 60.31703) (xy 95.438072 60.324384) (xy 95.429 60.412928) (xy 95.429 60.783261) (xy 95.408998 60.851382) (xy 95.392095 60.872356) (xy 95.203766 61.060685) (xy 95.191375 61.071552) (xy 95.166013 61.091013) (xy 95.141526 61.122925) (xy 95.141523 61.122928) (xy 95.127211 61.14158) (xy 95.083599 61.198416) (xy 95.068476 61.218124) (xy 95.047307 61.269231) (xy 95.012312 61.353717) (xy 95.007162 61.366149) (xy 95.005726 61.377058) (xy 94.9915 61.485115) (xy 94.9915 61.48512) (xy 94.98625 61.525) (xy 94.990272 61.555548) (xy 94.990422 61.55669) (xy 94.9915 61.573136) (xy 94.9915 64.9655) (xy 94.971498 65.033621) (xy 94.917842 65.080114) (xy 94.8655 65.0915) (xy 90.198136 65.0915) (xy 90.18169 65.090422) (xy 90.158188 65.087328) (xy 90.15 65.08625) (xy 90.141812 65.087328) (xy 90.110129 65.091499) (xy 90.11012 65.0915) (xy 90.110115 65.0915) (xy 89.99115 65.107162) (xy 89.843125 65.168476) (xy 89.843123 65.168477) (xy 89.843124 65.168477) (xy 89.747928 65.241523) (xy 89.747925 65.241526) (xy 89.716013 65.266013) (xy 89.710983 65.272568) (xy 89.696548 65.291379) (xy 89.685681 65.30377) (xy 89.334856 65.654595) (xy 89.272544 65.688621) (xy 89.245761 65.6915) (xy 87.901866 65.6915) (xy 87.839684 65.698255) (xy 87.703295 65.749385) (xy 87.586739 65.836739) (xy 87.499385 65.953295) (xy 87.448255 66.089684) (xy 87.4415 66.151866) (xy 87.4415 67.948134) (xy 87.448255 68.010316) (xy 87.499385 68.146705) (xy 87.586739 68.263261) (xy 87.703295 68.350615) (xy 87.839684 68.401745) (xy 87.901866 68.4085) (xy 89.698134 68.4085) (xy 89.760316 68.401745) (xy 89.896705 68.350615) (xy 90.013261 68.263261) (xy 90.100615 68.146705) (xy 90.118476 68.099062) (xy 90.144598 68.029382) (xy 90.18724 67.972618) (xy 90.253802 67.947918) (xy 90.32315 67.963126) (xy 90.357817 67.991114) (xy 90.38625 68.023938) (xy 90.558126 68.166632) (xy 90.751 68.279338) (xy 90.959692 68.35903) (xy 90.96476 68.360061) (xy 90.964763 68.360062) (xy 91.07159 68.381796) (xy 91.178597 68.403567) (xy 91.183772 68.403757) (xy 91.183774 68.403757) (xy 91.396673 68.411564) (xy 91.396677 68.411564) (xy 91.401837 68.411753) (xy 91.406957 68.411097) (xy 91.406959 68.411097) (xy 91.49452 68.39988) (xy 91.623416 68.383368) (xy 91.62837 68.381882) (xy 91.628378 68.38188) (xy 91.697023 68.361285) (xy 91.768018 68.360867) (xy 91.822326 68.392875) (xy 92.004595 68.575144) (xy 92.038621 68.637456) (xy 92.0415 68.664239) (xy 92.0415 78.17649) (xy 92.021498 78.244611) (xy 92.004595 78.265585) (xy 85.015585 85.254595) (xy 84.953273 85.288621) (xy 84.92649 85.2915) (xy 81.498239 85.2915) (xy 81.430118 85.271498) (xy 81.383625 85.217842) (xy 81.373521 85.147568) (xy 81.403015 85.082988) (xy 81.409144 85.076405) (xy 81.715144 84.770405) (xy 81.777456 84.736379) (xy 81.804239 84.7335) (xy 82.174572 84.7335) (xy 82.177818 84.733163) (xy 82.177822 84.733163) (xy 82.271735 84.723419) (xy 82.271739 84.723418) (xy 82.278593 84.722707) (xy 82.285129 84.720526) (xy 82.285131 84.720526) (xy 82.436659 84.669972) (xy 82.443607 84.667654) (xy 82.591531 84.576116) (xy 82.596885 84.570753) (xy 82.709258 84.458184) (xy 82.709262 84.458179) (xy 82.714429 84.453003) (xy 82.7309 84.426282) (xy 82.801869 84.31115) (xy 82.80187 84.311148) (xy 82.805709 84.30492) (xy 82.860474 84.139809) (xy 82.861851 84.126375) (xy 82.868869 84.057868) (xy 82.871 84.037072) (xy 82.871 83.541739) (xy 82.891002 83.473618) (xy 82.907905 83.452644) (xy 84.349693 82.010856) (xy 84.412005 81.97683) (xy 84.4714 81.978245) (xy 84.525309 81.99269) (xy 84.525315 81.992691) (xy 84.530629 81.994115) (xy 84.75 82.013307) (xy 84.969371 81.994115) (xy 85.182076 81.93712) (xy 85.381654 81.844056) (xy 85.497525 81.762922) (xy 85.557527 81.720908) (xy 85.557529 81.720906) (xy 85.562038 81.717749) (xy 85.717749 81.562038) (xy 85.723976 81.553146) (xy 85.840899 81.386162) (xy 85.8409 81.38616) (xy 85.844056 81.381653) (xy 85.846379 81.376671) (xy 85.846382 81.376666) (xy 85.898183 81.265576) (xy 85.93712 81.182076) (xy 85.994115 80.969371) (xy 86.013307 80.75) (xy 85.994115 80.530629) (xy 85.93712 80.317924) (xy 85.870372 80.174781) (xy 85.846382 80.123334) (xy 85.846379 80.123329) (xy 85.844056 80.118347) (xy 85.836055 80.10692) (xy 85.720908 79.942473) (xy 85.720906 79.94247) (xy 85.717749 79.937962) (xy 85.562038 79.782251) (xy 85.55735 79.778968) (xy 85.454398 79.70688) (xy 85.381654 79.655944) (xy 85.182076 79.56288) (xy 84.969371 79.505885) (xy 84.75 79.486693) (xy 84.530629 79.505885) (xy 84.317924 79.56288) (xy 84.230359 79.603712) (xy 84.123334 79.653618) (xy 84.123329 79.653621) (xy 84.118347 79.655944) (xy 84.11384 79.6591) (xy 84.113838 79.659101) (xy 83.942473 79.779092) (xy 83.94247 79.779094) (xy 83.937962 79.782251) (xy 83.782251 79.937962) (xy 83.779094 79.94247) (xy 83.779092 79.942473) (xy 83.663945 80.10692) (xy 83.655944 80.118347) (xy 83.653621 80.123329) (xy 83.653618 80.123334) (xy 83.629628 80.174781) (xy 83.56288 80.317924) (xy 83.505885 80.530629) (xy 83.486693 80.75) (xy 83.505885 80.969371) (xy 83.507308 80.974681) (xy 83.50731 80.974691) (xy 83.521755 81.0286) (xy 83.520066 81.099576) (xy 83.489144 81.150307) (xy 83.044678 81.594773) (xy 82.982366 81.628799) (xy 82.938483 81.62566) (xy 82.944124 81.648534) (xy 82.921158 81.715714) (xy 82.90734 81.732111) (xy 81.909856 82.729595) (xy 81.847544 82.763621) (xy 81.820761 82.7665) (xy 81.575428 82.7665) (xy 81.572182 82.766837) (xy 81.572178 82.766837) (xy 81.478265 82.776581) (xy 81.478261 82.776582) (xy 81.471407 82.777293) (xy 81.464871 82.779474) (xy 81.464869 82.779474) (xy 81.409625 82.797905) (xy 81.306393 82.832346) (xy 81.158469 82.923884) (xy 81.153296 82.929066) (xy 81.051753 83.030786) (xy 80.98947 83.064865) (xy 80.91865 83.059862) (xy 80.873563 83.030941) (xy 80.770688 82.928246) (xy 80.770683 82.928242) (xy 80.765503 82.923071) (xy 80.759269 82.919228) (xy 80.718383 82.894025) (xy 80.67089 82.841253) (xy 80.6585 82.786766) (xy 80.6585 81.629002) (xy 80.678502 81.560881) (xy 80.695327 81.539984) (xy 80.723191 81.512072) (xy 80.811805 81.423303) (xy 80.814602 81.418765) (xy 80.871853 81.378176) (xy 80.942776 81.374946) (xy 81.004187 81.410572) (xy 81.011562 81.419068) (xy 81.019598 81.429207) (xy 81.134329 81.543739) (xy 81.14574 81.552751) (xy 81.283743 81.637816) (xy 81.296924 81.643963) (xy 81.45121 81.695138) (xy 81.464586 81.698005) (xy 81.558938 81.707672) (xy 81.565354 81.708) (xy 81.665385 81.708) (xy 81.680624 81.703525) (xy 81.681829 81.702135) (xy 81.6835 81.694452) (xy 81.6835 81.689884) (xy 82.1915 81.689884) (xy 82.195975 81.705123) (xy 82.197365 81.706328) (xy 82.205048 81.707999) (xy 82.309595 81.707999) (xy 82.316114 81.707662) (xy 82.411706 81.697743) (xy 82.4251 81.694851) (xy 82.579284 81.643412) (xy 82.592462 81.637239) (xy 82.730307 81.551937) (xy 82.739982 81.544269) (xy 82.805793 81.517633) (xy 82.832921 81.522755) (xy 82.829904 81.514667) (xy 82.844995 81.445293) (xy 82.856701 81.427586) (xy 82.865251 81.41676) (xy 82.950316 81.278757) (xy 82.956463 81.265576) (xy 83.007638 81.11129) (xy 83.010505 81.097914) (xy 83.020172 81.003562) (xy 83.0205 80.997146) (xy 83.0205 80.772115) (xy 83.016025 80.756876) (xy 83.014635 80.755671) (xy 83.006952 80.754) (xy 82.209615 80.754) (xy 82.194376 80.758475) (xy 82.193171 80.759865) (xy 82.1915 80.767548) (xy 82.1915 81.689884) (xy 81.6835 81.689884) (xy 81.6835 80.227885) (xy 82.1915 80.227885) (xy 82.195975 80.243124) (xy 82.197365 80.244329) (xy 82.205048 80.246) (xy 83.002384 80.246) (xy 83.017623 80.241525) (xy 83.018828 80.240135) (xy 83.020499 80.232452) (xy 83.020499 80.002905) (xy 83.020162 79.996386) (xy 83.010243 79.900794) (xy 83.007351 79.8874) (xy 82.955912 79.733216) (xy 82.949739 79.720038) (xy 82.864437 79.582193) (xy 82.855401 79.570792) (xy 82.740671 79.456261) (xy 82.72926 79.447249) (xy 82.591257 79.362184) (xy 82.578076 79.356037) (xy 82.42379 79.304862) (xy 82.410414 79.301995) (xy 82.316062 79.292328) (xy 82.309645 79.292) (xy 82.209615 79.292) (xy 82.194376 79.296475) (xy 82.193171 79.297865) (xy 82.1915 79.305548) (xy 82.1915 80.227885) (xy 81.6835 80.227885) (xy 81.6835 79.310116) (xy 81.679025 79.294877) (xy 81.677635 79.293672) (xy 81.669952 79.292001) (xy 81.565405 79.292001) (xy 81.558886 79.292338) (xy 81.463294 79.302257) (xy 81.4499 79.305149) (xy 81.295716 79.356588) (xy 81.282538 79.362761) (xy 81.144693 79.448063) (xy 81.133292 79.457099) (xy 81.018762 79.571828) (xy 81.011706 79.580762) (xy 80.953788 79.621823) (xy 80.882865 79.625053) (xy 80.821454 79.589426) (xy 80.814654 79.581593) (xy 80.810978 79.575652) (xy 80.685803 79.450695) (xy 80.668336 79.439928) (xy 80.541468 79.361725) (xy 80.541466 79.361724) (xy 80.535238 79.357885) (xy 80.397013 79.312038) (xy 80.373889 79.304368) (xy 80.373887 79.304368) (xy 80.367361 79.302203) (xy 80.360525 79.301503) (xy 80.360522 79.301502) (xy 80.317469 79.297091) (xy 80.2629 79.2915) (xy 79.5121 79.2915) (xy 79.508854 79.291837) (xy 79.50885 79.291837) (xy 79.413192 79.301762) (xy 79.413188 79.301763) (xy 79.406334 79.302474) (xy 79.399798 79.304655) (xy 79.399796 79.304655) (xy 79.349312 79.321498) (xy 79.238554 79.35845) (xy 79.088152 79.451522) (xy 79.082979 79.456704) (xy 79.061633 79.478087) (xy 78.963195 79.576697) (xy 78.959355 79.582927) (xy 78.959354 79.582928) (xy 78.882303 79.707928) (xy 78.870385 79.727262) (xy 78.849085 79.791479) (xy 78.824025 79.867035) (xy 78.814703 79.895139) (xy 78.814003 79.901975) (xy 78.814002 79.901978) (xy 78.809853 79.942473) (xy 78.804 79.9996) (xy 78.804 81.0004) (xy 78.804337 81.003646) (xy 78.804337 81.00365) (xy 78.814217 81.098867) (xy 78.814974 81.106166) (xy 78.817155 81.112702) (xy 78.817155 81.112704) (xy 78.849115 81.208499) (xy 78.87095 81.273946) (xy 78.964022 81.424348) (xy 78.969204 81.429521) (xy 78.998183 81.45845) (xy 79.089197 81.549305) (xy 79.095427 81.553145) (xy 79.095428 81.553146) (xy 79.232788 81.637816) (xy 79.239762 81.642115) (xy 79.311656 81.665961) (xy 79.355167 81.680393) (xy 79.413527 81.720824) (xy 79.440764 81.786388) (xy 79.4415 81.799986) (xy 79.4415 82.78683) (xy 79.421498 82.854951) (xy 79.381803 82.893974) (xy 79.333469 82.923884) (xy 79.328296 82.929066) (xy 79.215742 83.041816) (xy 79.215738 83.041821) (xy 79.210571 83.046997) (xy 79.206731 83.053227) (xy 79.20673 83.053228) (xy 79.126512 83.183366) (xy 79.119291 83.19508) (xy 79.064526 83.360191) (xy 79.063826 83.367027) (xy 79.063825 83.36703) (xy 79.059532 83.408935) (xy 79.054 83.462928) (xy 79.054 84.037072) (xy 79.054337 84.040318) (xy 79.054337 84.040322) (xy 79.063946 84.132928) (xy 79.064793 84.141093) (xy 79.066974 84.147629) (xy 79.066974 84.147631) (xy 79.092039 84.222759) (xy 79.119846 84.306107) (xy 79.151669 84.357533) (xy 79.165849 84.380447) (xy 79.184687 84.448899) (xy 79.163526 84.516669) (xy 79.109085 84.56224) (xy 79.058705 84.57275) (xy 78.538428 84.57275) (xy 78.470307 84.552748) (xy 78.423814 84.499092) (xy 78.413084 84.433907) (xy 78.413666 84.428228) (xy 78.421 84.35665) (xy 78.421 83.00585) (xy 78.419125 82.987777) (xy 78.410738 82.906943) (xy 78.410737 82.906939) (xy 78.410026 82.900085) (xy 78.405661 82.887) (xy 78.359972 82.750054) (xy 78.35405 82.732305) (xy 78.260978 82.581902) (xy 78.135803 82.456945) (xy 78.118047 82.446) (xy 77.991468 82.367975) (xy 77.991466 82.367974) (xy 77.985238 82.364135) (xy 77.868886 82.325543) (xy 77.823889 82.310618) (xy 77.823887 82.310618) (xy 77.817361 82.308453) (xy 77.810525 82.307753) (xy 77.810522 82.307752) (xy 77.76455 82.303042) (xy 77.7129 82.29775) (xy 76.941371 82.29775) (xy 76.87325 82.277748) (xy 76.852276 82.260845) (xy 76.595405 82.003974) (xy 76.561379 81.941662) (xy 76.5585 81.914879) (xy 76.5585 81.270303) (xy 76.578502 81.202182) (xy 76.632158 81.155689) (xy 76.702432 81.145585) (xy 76.724173 81.150712) (xy 76.72621 81.151388) (xy 76.739586 81.154255) (xy 76.833938 81.163922) (xy 76.840354 81.16425) (xy 77.040385 81.16425) (xy 77.055624 81.159775) (xy 77.056829 81.158385) (xy 77.0585 81.150702) (xy 77.0585 81.146134) (xy 77.5665 81.146134) (xy 77.570975 81.161373) (xy 77.572365 81.162578) (xy 77.580048 81.164249) (xy 77.784595 81.164249) (xy 77.791114 81.163912) (xy 77.886706 81.153993) (xy 77.9001 81.151101) (xy 78.054284 81.099662) (xy 78.067462 81.093489) (xy 78.205307 81.008187) (xy 78.216708 80.999151) (xy 78.331239 80.884421) (xy 78.340251 80.87301) (xy 78.425316 80.735007) (xy 78.431463 80.721826) (xy 78.482638 80.56754) (xy 78.485505 80.554164) (xy 78.495172 80.459812) (xy 78.4955 80.453396) (xy 78.4955 80.140865) (xy 78.491025 80.125626) (xy 78.489635 80.124421) (xy 78.481952 80.12275) (xy 77.584615 80.12275) (xy 77.569376 80.127225) (xy 77.568171 80.128615) (xy 77.5665 80.136298) (xy 77.5665 81.146134) (xy 77.0585 81.146134) (xy 77.0585 79.596635) (xy 77.5665 79.596635) (xy 77.570975 79.611874) (xy 77.572365 79.613079) (xy 77.580048 79.61475) (xy 78.477384 79.61475) (xy 78.492623 79.610275) (xy 78.493828 79.608885) (xy 78.495499 79.601202) (xy 78.495499 79.284155) (xy 78.495162 79.277636) (xy 78.485243 79.182044) (xy 78.482351 79.16865) (xy 78.430912 79.014466) (xy 78.424739 79.001288) (xy 78.339437 78.863443) (xy 78.330401 78.852042) (xy 78.215671 78.737511) (xy 78.20426 78.728499) (xy 78.066257 78.643434) (xy 78.053076 78.637287) (xy 77.89879 78.586112) (xy 77.885414 78.583245) (xy 77.791062 78.573578) (xy 77.784645 78.57325) (xy 77.584615 78.57325) (xy 77.569376 78.577725) (xy 77.568171 78.579115) (xy 77.5665 78.586798) (xy 77.5665 79.596635) (xy 77.0585 79.596635) (xy 77.0585 78.591366) (xy 77.054025 78.576127) (xy 77.052635 78.574922) (xy 77.044952 78.573251) (xy 76.98487 78.573251) (xy 76.916749 78.553249) (xy 76.870256 78.499593) (xy 76.860152 78.429319) (xy 76.874394 78.398134) (xy 85.3915 78.398134) (xy 85.398255 78.460316) (xy 85.449385 78.596705) (xy 85.536739 78.713261) (xy 85.653295 78.800615) (xy 85.789684 78.851745) (xy 85.851866 78.8585) (xy 89.748134 78.8585) (xy 89.810316 78.851745) (xy 89.946705 78.800615) (xy 90.063261 78.713261) (xy 90.150615 78.596705) (xy 90.201745 78.460316) (xy 90.2085 78.398134) (xy 90.2085 76.301866) (xy 90.201745 76.239684) (xy 90.150615 76.103295) (xy 90.063261 75.986739) (xy 89.946705 75.899385) (xy 89.810316 75.848255) (xy 89.748134 75.8415) (xy 85.851866 75.8415) (xy 85.789684 75.848255) (xy 85.653295 75.899385) (xy 85.536739 75.986739) (xy 85.449385 76.103295) (xy 85.398255 76.239684) (xy 85.3915 76.301866) (xy 85.3915 78.398134) (xy 76.874394 78.398134) (xy 76.889646 78.364739) (xy 76.895775 78.358156) (xy 76.927276 78.326655) (xy 76.989588 78.292629) (xy 77.016371 78.28975) (xy 77.7879 78.28975) (xy 77.791146 78.289413) (xy 77.79115 78.289413) (xy 77.886808 78.279488) (xy 77.886812 78.279487) (xy 77.893666 78.278776) (xy 77.900202 78.276595) (xy 77.900204 78.276595) (xy 78.039955 78.22997) (xy 78.061446 78.2228) (xy 78.211848 78.129728) (xy 78.336805 78.004553) (xy 78.366816 77.955866) (xy 78.425775 77.860218) (xy 78.425776 77.860216) (xy 78.429615 77.853988) (xy 78.476929 77.71134) (xy 78.483132 77.692639) (xy 78.483132 77.692637) (xy 78.485297 77.686111) (xy 78.48623 77.677012) (xy 78.492971 77.611215) (xy 78.496 77.58165) (xy 78.496 77.3845) (xy 78.516002 77.316379) (xy 78.569658 77.269886) (xy 78.622 77.2585) (xy 83.460068 77.2585) (xy 83.479018 77.259933) (xy 83.493253 77.262099) (xy 83.493257 77.262099) (xy 83.500487 77.263199) (xy 83.507779 77.262606) (xy 83.507782 77.262606) (xy 83.553156 77.258915) (xy 83.563371 77.2585) (xy 83.571431 77.2585) (xy 83.588029 77.256565) (xy 83.599645 77.255211) (xy 83.60402 77.254778) (xy 83.669477 77.249454) (xy 83.66948 77.249453) (xy 83.676775 77.24886) (xy 83.683739 77.246604) (xy 83.689698 77.245413) (xy 83.695553 77.244029) (xy 83.702819 77.243182) (xy 83.771465 77.218265) (xy 83.775593 77.216848) (xy 83.838074 77.196607) (xy 83.838076 77.196606) (xy 83.845037 77.194351) (xy 83.851292 77.190555) (xy 83.856766 77.188049) (xy 83.862196 77.18533) (xy 83.869075 77.182833) (xy 83.890136 77.169025) (xy 83.930114 77.142814) (xy 83.933818 77.140477) (xy 83.996245 77.102595) (xy 84.004622 77.095197) (xy 84.004646 77.095224) (xy 84.007638 77.092571) (xy 84.010871 77.089868) (xy 84.01699 77.085856) (xy 84.070266 77.029617) (xy 84.072644 77.027175) (xy 88.288911 72.810908) (xy 88.303323 72.798522) (xy 88.314918 72.789989) (xy 88.314923 72.789984) (xy 88.320818 72.785646) (xy 88.325557 72.780068) (xy 88.32556 72.780065) (xy 88.355035 72.74537) (xy 88.361965 72.737854) (xy 88.36766 72.732159) (xy 88.379136 72.717654) (xy 88.385281 72.709887) (xy 88.388072 72.706483) (xy 88.430591 72.656435) (xy 88.430592 72.656433) (xy 88.435333 72.650853) (xy 88.438661 72.644337) (xy 88.44202 72.6393) (xy 88.445194 72.634161) (xy 88.449734 72.628422) (xy 88.452834 72.621789) (xy 88.454993 72.618293) (xy 88.507806 72.570844) (xy 88.562197 72.5585) (xy 88.598134 72.5585) (xy 88.660316 72.551745) (xy 88.796705 72.500615) (xy 88.803892 72.495229) (xy 88.874435 72.44236) (xy 88.940942 72.417512) (xy 89.010324 72.432565) (xy 89.025565 72.44236) (xy 89.096108 72.495229) (xy 89.103295 72.500615) (xy 89.239684 72.551745) (xy 89.301866 72.5585) (xy 90.898134 72.5585) (xy 90.960316 72.551745) (xy 91.096705 72.500615) (xy 91.213261 72.413261) (xy 91.300615 72.296705) (xy 91.351745 72.160316) (xy 91.3585 72.098134) (xy 91.3585 70.001866) (xy 91.351745 69.939684) (xy 91.300615 69.803295) (xy 91.213261 69.686739) (xy 91.096705 69.599385) (xy 90.960316 69.548255) (xy 90.898134 69.5415) (xy 89.754239 69.5415) (xy 89.686118 69.521498) (xy 89.665144 69.504595) (xy 89.364315 69.203766) (xy 89.353448 69.191375) (xy 89.339013 69.172563) (xy 89.333987 69.166013) (xy 89.302075 69.141526) (xy 89.302072 69.141523) (xy 89.299931 69.13988) (xy 89.213429 69.073504) (xy 89.213427 69.073503) (xy 89.206876 69.068476) (xy 89.058851 69.007162) (xy 89.050664 69.006084) (xy 89.050663 69.006084) (xy 89.039458 69.004609) (xy 89.004448 69) (xy 88.939885 68.9915) (xy 88.939882 68.9915) (xy 88.939874 68.991499) (xy 88.908189 68.987328) (xy 88.9 68.98625) (xy 88.868307 68.990422) (xy 88.851864 68.9915) (xy 86.948136 68.9915) (xy 86.93169 68.990422) (xy 86.908188 68.987328) (xy 86.9 68.98625) (xy 86.891812 68.987328) (xy 86.860129 68.991499) (xy 86.86012 68.9915) (xy 86.860115 68.9915) (xy 86.74115 69.007162) (xy 86.593125 69.068476) (xy 86.593123 69.068477) (xy 86.593124 69.068477) (xy 86.497928 69.141523) (xy 86.497925 69.141526) (xy 86.466013 69.166013) (xy 86.460983 69.172568) (xy 86.446548 69.191379) (xy 86.435681 69.20377) (xy 86.253766 69.385685) (xy 86.241375 69.396552) (xy 86.216013 69.416013) (xy 86.191526 69.447925) (xy 86.191523 69.447928) (xy 86.157547 69.492206) (xy 86.100212 69.534071) (xy 86.057587 69.5415) (xy 84.701866 69.5415) (xy 84.639684 69.548255) (xy 84.503295 69.599385) (xy 84.386739 69.686739) (xy 84.365456 69.715137) (xy 84.346024 69.741065) (xy 84.289165 69.78358) (xy 84.245198 69.7915) (xy 83.998809 69.7915) (xy 83.930688 69.771498) (xy 83.909791 69.754673) (xy 83.899158 69.744058) (xy 83.803003 69.648071) (xy 83.784783 69.63684) (xy 83.66115 69.560631) (xy 83.661148 69.56063) (xy 83.65492 69.556791) (xy 83.489809 69.502026) (xy 83.482973 69.501326) (xy 83.48297 69.501325) (xy 83.431474 69.496049) (xy 83.387072 69.4915) (xy 82.812928 69.4915) (xy 82.809682 69.491837) (xy 82.809678 69.491837) (xy 82.715765 69.501581) (xy 82.715761 69.501582) (xy 82.708907 69.502293) (xy 82.702371 69.504474) (xy 82.702369 69.504474) (xy 82.609047 69.535609) (xy 82.543893 69.557346) (xy 82.395969 69.648884) (xy 82.390796 69.654066) (xy 82.390791 69.65407) (xy 82.302998 69.742017) (xy 82.240716 69.776097) (xy 82.213825 69.779) (xy 80.97957 69.779) (xy 80.96062 69.777567) (xy 80.946385 69.775401) (xy 80.946381 69.775401) (xy 80.939151 69.774301) (xy 80.931859 69.774894) (xy 80.931856 69.774894) (xy 80.886482 69.778585) (xy 80.876267 69.779) (xy 80.868207 69.779) (xy 80.864573 69.779424) (xy 80.864567 69.779424) (xy 80.851542 69.780943) (xy 80.83998 69.782291) (xy 80.835632 69.782721) (xy 80.762864 69.78864) (xy 80.755903 69.790895) (xy 80.749963 69.792082) (xy 80.744088 69.793471) (xy 80.736819 69.794318) (xy 80.66817 69.819236) (xy 80.664042 69.820653) (xy 80.601564 69.840893) (xy 80.601562 69.840894) (xy 80.594601 69.843149) (xy 80.588346 69.846945) (xy 80.582872 69.849451) (xy 80.577442 69.85217) (xy 80.570563 69.854667) (xy 80.564443 69.85868) (xy 80.564442 69.85868) (xy 80.509524 69.894686) (xy 80.50582 69.897023) (xy 80.443393 69.934905) (xy 80.439185 69.938621) (xy 80.439184 69.938622) (xy 80.435047 69.942276) (xy 80.435016 69.942303) (xy 80.434992 69.942276) (xy 80.432 69.944929) (xy 80.428767 69.947632) (xy 80.422648 69.951644) (xy 80.392949 69.982995) (xy 80.369372 70.007883) (xy 80.366994 70.010325) (xy 79.834827 70.542492) (xy 79.772515 70.576518) (xy 79.7017 70.571453) (xy 79.644907 70.528963) (xy 79.618644 70.493921) (xy 79.618642 70.493919) (xy 79.613261 70.486739) (xy 79.496705 70.399385) (xy 79.360316 70.348255) (xy 79.298134 70.3415) (xy 75.701866 70.3415) (xy 75.639684 70.348255) (xy 75.503295 70.399385) (xy 75.386739 70.486739) (xy 75.299385 70.603295) (xy 75.248255 70.739684) (xy 75.2415 70.801866) (xy 75.2415 72.6405) (xy 75.221498 72.708621) (xy 75.167842 72.755114) (xy 75.1155 72.7665) (xy 74.8845 72.7665) (xy 74.816379 72.746498) (xy 74.769886 72.692842) (xy 74.7585 72.6405) (xy 74.7585 70.801866) (xy 74.751745 70.739684) (xy 74.700615 70.603295) (xy 74.613261 70.486739) (xy 74.496705 70.399385) (xy 74.360316 70.348255) (xy 74.298134 70.3415) (xy 73.6345 70.3415) (xy 73.566379 70.321498) (xy 73.519886 70.267842) (xy 73.5085 70.2155) (xy 73.5085 69.63684) (xy 73.509237 69.623232) (xy 73.512659 69.591736) (xy 73.512659 69.591732) (xy 73.513324 69.585611) (xy 73.510803 69.556791) (xy 73.50895 69.535609) (xy 73.508621 69.530784) (xy 73.5085 69.528313) (xy 73.5085 69.525231) (xy 73.505948 69.499206) (xy 73.504309 69.482489) (xy 73.504187 69.481174) (xy 73.499059 69.422561) (xy 73.496087 69.388587) (xy 73.4946 69.383468) (xy 73.49408 69.378167) (xy 73.467218 69.289194) (xy 73.466862 69.287994) (xy 73.466669 69.287328) (xy 73.440909 69.198663) (xy 73.438455 69.193929) (xy 73.436916 69.188831) (xy 73.428266 69.172563) (xy 73.393316 69.106831) (xy 73.392702 69.105663) (xy 73.352726 69.028541) (xy 73.352725 69.02854) (xy 73.349892 69.023074) (xy 73.346569 69.018911) (xy 73.344066 69.014204) (xy 73.337444 69.006084) (xy 73.285263 68.942105) (xy 73.284492 68.94115) (xy 73.253261 68.902027) (xy 73.25077 68.899536) (xy 73.25012 68.898809) (xy 73.246408 68.894463) (xy 73.222955 68.865708) (xy 73.219065 68.860938) (xy 73.214323 68.857015) (xy 73.214321 68.857013) (xy 73.183727 68.831703) (xy 73.174947 68.823713) (xy 70.785405 66.434171) (xy 70.751379 66.371859) (xy 70.7485 66.345076) (xy 70.7485 64.01397) (xy 70.768502 63.945849) (xy 70.77646 63.93512) (xy 70.778096 63.933489) (xy 70.908453 63.752077) (xy 70.909776 63.753028) (xy 70.956645 63.709857) (xy 71.02658 63.697625) (xy 71.092026 63.725144) (xy 71.119875 63.756994) (xy 71.123511 63.762928) (xy 71.179987 63.855088) (xy 71.32625 64.023938) (xy 71.498126 64.166632) (xy 71.691 64.279338) (xy 71.899692 64.35903) (xy 71.90476 64.360061) (xy 71.904763 64.360062) (xy 72.012017 64.381883) (xy 72.118597 64.403567) (xy 72.123772 64.403757) (xy 72.123774 64.403757) (xy 72.336673 64.411564) (xy 72.336677 64.411564) (xy 72.341837 64.411753) (xy 72.346957 64.411097) (xy 72.346959 64.411097) (xy 72.558288 64.384025) (xy 72.558289 64.384025) (xy 72.563416 64.383368) (xy 72.568366 64.381883) (xy 72.772429 64.320661) (xy 72.772434 64.320659) (xy 72.777384 64.319174) (xy 72.977994 64.220896) (xy 73.15986 64.091173) (xy 73.170315 64.080755) (xy 73.241209 64.010107) (xy 73.318096 63.933489) (xy 73.339839 63.903231) (xy 73.445435 63.756277) (xy 73.448453 63.752077) (xy 73.456117 63.736571) (xy 73.545136 63.556453) (xy 73.545137 63.556451) (xy 73.54743 63.551811) (xy 73.589527 63.413254) (xy 73.610865 63.343023) (xy 73.610865 63.343021) (xy 73.61237 63.338069) (xy 73.641529 63.11659) (xy 73.642019 63.096548) (xy 73.643074 63.053365) (xy 73.643074 63.053361) (xy 73.643156 63.05) (xy 73.626713 62.85) (xy 75.88625 62.85) (xy 75.887328 62.858189) (xy 75.888968 62.870648) (xy 75.8915 62.88988) (xy 75.8915 62.889885) (xy 75.901965 62.969371) (xy 75.905724 62.997925) (xy 75.907162 63.008851) (xy 75.910321 63.016477) (xy 75.910321 63.016478) (xy 75.924206 63.05) (xy 75.968476 63.156876) (xy 75.973503 63.163427) (xy 75.973504 63.163429) (xy 76.04152 63.252069) (xy 76.041526 63.252075) (xy 76.066013 63.283987) (xy 76.072568 63.289017) (xy 76.091379 63.303452) (xy 76.10377 63.314319) (xy 76.335685 63.546234) (xy 76.346544 63.558615) (xy 76.363161 63.58027) (xy 76.388759 63.646489) (xy 76.38854 63.669813) (xy 76.387256 63.682346) (xy 76.379 63.762928) (xy 76.379 64.362072) (xy 76.379337 64.365318) (xy 76.379337 64.365322) (xy 76.389003 64.458477) (xy 76.389793 64.466093) (xy 76.391974 64.472629) (xy 76.391974 64.472631) (xy 76.410737 64.528869) (xy 76.444846 64.631107) (xy 76.536384 64.779031) (xy 76.541566 64.784204) (xy 76.654316 64.896758) (xy 76.654321 64.896762) (xy 76.659497 64.901929) (xy 76.665727 64.905769) (xy 76.665728 64.90577) (xy 76.793022 64.984235) (xy 76.80758 64.993209) (xy 76.972691 65.047974) (xy 76.979527 65.048674) (xy 76.97953 65.048675) (xy 77.031026 65.053951) (xy 77.075428 65.0585) (xy 77.445761 65.0585) (xy 77.513882 65.078502) (xy 77.534856 65.095405) (xy 78.038682 65.59923) (xy 78.542095 66.102643) (xy 78.57612 66.164955) (xy 78.579 66.191738) (xy 78.579 67.948134) (xy 78.585755 68.010316) (xy 78.636885 68.146705) (xy 78.724239 68.263261) (xy 78.840795 68.350615) (xy 78.977184 68.401745) (xy 79.039366 68.4085) (xy 80.835634 68.4085) (xy 80.897816 68.401745) (xy 81.034205 68.350615) (xy 81.150761 68.263261) (xy 81.238115 68.146705) (xy 81.255976 68.099062) (xy 81.282098 68.029382) (xy 81.32474 67.972618) (xy 81.391302 67.947918) (xy 81.46065 67.963126) (xy 81.495317 67.991114) (xy 81.52375 68.023938) (xy 81.695626 68.166632) (xy 81.8885 68.279338) (xy 82.097192 68.35903) (xy 82.10226 68.360061) (xy 82.102263 68.360062) (xy 82.20909 68.381796) (xy 82.316097 68.403567) (xy 82.321272 68.403757) (xy 82.321274 68.403757) (xy 82.534173 68.411564) (xy 82.534177 68.411564) (xy 82.539337 68.411753) (xy 82.544457 68.411097) (xy 82.544459 68.411097) (xy 82.755788 68.384025) (xy 82.755789 68.384025) (xy 82.760916 68.383368) (xy 82.766156 68.381796) (xy 82.969929 68.320661) (xy 82.969934 68.320659) (xy 82.974884 68.319174) (xy 83.175494 68.220896) (xy 83.35736 68.091173) (xy 83.362922 68.085631) (xy 83.456765 67.992115) (xy 83.515596 67.933489) (xy 83.531814 67.91092) (xy 83.645953 67.752077) (xy 83.647276 67.753028) (xy 83.694145 67.709857) (xy 83.76408 67.697625) (xy 83.829526 67.725144) (xy 83.857375 67.756994) (xy 83.917487 67.855088) (xy 84.06375 68.023938) (xy 84.235626 68.166632) (xy 84.4285 68.279338) (xy 84.637192 68.35903) (xy 84.64226 68.360061) (xy 84.642263 68.360062) (xy 84.74909 68.381796) (xy 84.856097 68.403567) (xy 84.861272 68.403757) (xy 84.861274 68.403757) (xy 85.074173 68.411564) (xy 85.074177 68.411564) (xy 85.079337 68.411753) (xy 85.084457 68.411097) (xy 85.084459 68.411097) (xy 85.295788 68.384025) (xy 85.295789 68.384025) (xy 85.300916 68.383368) (xy 85.306156 68.381796) (xy 85.509929 68.320661) (xy 85.509934 68.320659) (xy 85.514884 68.319174) (xy 85.715494 68.220896) (xy 85.89736 68.091173) (xy 85.902922 68.085631) (xy 85.996765 67.992115) (xy 86.055596 67.933489) (xy 86.071814 67.91092) (xy 86.182935 67.756277) (xy 86.185953 67.752077) (xy 86.189251 67.745405) (xy 86.282636 67.556453) (xy 86.282637 67.556451) (xy 86.28493 67.551811) (xy 86.338533 67.375384) (xy 86.348365 67.343023) (xy 86.348365 67.343021) (xy 86.34987 67.338069) (xy 86.379029 67.11659) (xy 86.380656 67.05) (xy 86.362352 66.827361) (xy 86.307931 66.610702) (xy 86.218854 66.40584) (xy 86.151846 66.302262) (xy 86.100322 66.222617) (xy 86.10032 66.222614) (xy 86.097514 66.218277) (xy 85.94717 66.053051) (xy 85.943119 66.049852) (xy 85.943115 66.049848) (xy 85.775914 65.9178) (xy 85.77591 65.917798) (xy 85.771859 65.914598) (xy 85.765456 65.911063) (xy 85.692836 65.870975) (xy 85.576289 65.806638) (xy 85.57142 65.804914) (xy 85.571416 65.804912) (xy 85.370587 65.733795) (xy 85.370583 65.733794) (xy 85.365712 65.732069) (xy 85.360619 65.731162) (xy 85.360616 65.731161) (xy 85.150873 65.6938) (xy 85.150867 65.693799) (xy 85.145784 65.692894) (xy 85.071952 65.691992) (xy 84.927581 65.690228) (xy 84.927579 65.690228) (xy 84.922411 65.690165) (xy 84.701591 65.723955) (xy 84.53022 65.779968) (xy 84.498465 65.790347) (xy 84.427501 65.792498) (xy 84.370225 65.759677) (xy 83.764321 65.153773) (xy 83.753452 65.141381) (xy 83.739013 65.122563) (xy 83.739012 65.122562) (xy 83.733987 65.116013) (xy 83.702075 65.091526) (xy 83.702072 65.091523) (xy 83.659036 65.0585) (xy 83.613429 65.023504) (xy 83.613427 65.023503) (xy 83.606876 65.018476) (xy 83.458851 64.957162) (xy 83.450664 64.956084) (xy 83.450663 64.956084) (xy 83.435007 64.954023) (xy 83.339893 64.941501) (xy 83.339891 64.941501) (xy 83.339885 64.9415) (xy 83.339883 64.9415) (xy 83.339874 64.941499) (xy 83.308189 64.937328) (xy 83.3 64.93625) (xy 83.268307 64.940422) (xy 83.251864 64.9415) (xy 79.719245 64.9415) (xy 79.651124 64.921498) (xy 79.63015 64.904595) (xy 78.895405 64.16985) (xy 78.861379 64.107538) (xy 78.8585 64.080755) (xy 78.8585 63.598136) (xy 78.859578 63.58169) (xy 78.862165 63.562038) (xy 78.86375 63.55) (xy 78.8585 63.510122) (xy 78.8585 63.510115) (xy 78.844867 63.406564) (xy 78.843916 63.399338) (xy 78.842838 63.39115) (xy 78.822903 63.343023) (xy 78.784684 63.250753) (xy 78.784683 63.250751) (xy 78.781524 63.243125) (xy 78.774155 63.233521) (xy 78.756161 63.210072) (xy 78.75616 63.210071) (xy 78.708477 63.147928) (xy 78.708474 63.147925) (xy 78.703275 63.141149) (xy 78.689016 63.122566) (xy 78.689013 63.122563) (xy 78.683987 63.116013) (xy 78.668169 63.103875) (xy 78.658621 63.096548) (xy 78.64623 63.085681) (xy 78.356793 62.796244) (xy 78.322767 62.733932) (xy 78.326295 62.667484) (xy 78.335474 62.639809) (xy 78.336633 62.628502) (xy 78.342501 62.571224) (xy 78.346 62.537072) (xy 78.346 61.937928) (xy 78.345599 61.934065) (xy 78.335919 61.840765) (xy 78.335918 61.840761) (xy 78.335207 61.833907) (xy 78.331178 61.821829) (xy 78.282472 61.675841) (xy 78.280154 61.668893) (xy 78.188616 61.520969) (xy 78.15428 61.486693) (xy 78.081714 61.414253) (xy 78.047635 61.35197) (xy 78.052638 61.28115) (xy 78.081559 61.236063) (xy 78.184254 61.133188) (xy 78.184258 61.133183) (xy 78.189429 61.128003) (xy 78.193544 61.121328) (xy 78.226179 61.068384) (xy 78.278952 61.02089) (xy 78.333439 61.0085) (xy 79.7655 61.0085) (xy 79.833621 61.028502) (xy 79.880114 61.082158) (xy 79.8915 61.1345) (xy 79.8915 61.40789) (xy 79.891725 61.410539) (xy 79.905473 61.572563) (xy 79.90608 61.57972) (xy 79.907418 61.584875) (xy 79.907419 61.584881) (xy 79.962657 61.797703) (xy 79.963999 61.802872) (xy 79.966191 61.807738) (xy 79.966192 61.807741) (xy 80.020845 61.929066) (xy 80.058688 62.013075) (xy 80.187441 62.204319) (xy 80.19112 62.208176) (xy 80.191122 62.208178) (xy 80.248644 62.268476) (xy 80.346576 62.371135) (xy 80.350854 62.374318) (xy 80.393221 62.40584) (xy 80.531542 62.508754) (xy 80.536293 62.51117) (xy 80.536297 62.511172) (xy 80.609673 62.548478) (xy 80.737051 62.61324) (xy 80.742145 62.614822) (xy 80.742148 62.614823) (xy 80.915898 62.668774) (xy 80.957227 62.681607) (xy 80.962516 62.682308) (xy 81.180489 62.711198) (xy 81.180494 62.711198) (xy 81.185774 62.711898) (xy 81.191103 62.711698) (xy 81.191105 62.711698) (xy 81.308038 62.707308) (xy 81.416158 62.703249) (xy 81.438802 62.698498) (xy 81.557933 62.673502) (xy 81.641791 62.655907) (xy 81.64675 62.653949) (xy 81.646752 62.653948) (xy 81.851256 62.573185) (xy 81.851258 62.573184) (xy 81.856221 62.571224) (xy 81.892343 62.549305) (xy 82.048757 62.45439) (xy 82.048756 62.45439) (xy 82.053317 62.451623) (xy 82.105666 62.406197) (xy 82.223412 62.304023) (xy 82.223414 62.304021) (xy 82.227445 62.300523) (xy 82.25667 62.26488) (xy 82.315329 62.224886) (xy 82.386299 62.222954) (xy 82.447048 62.259698) (xy 82.461248 62.278468) (xy 82.518842 62.371538) (xy 82.551522 62.424348) (xy 82.676697 62.549305) (xy 82.682927 62.553145) (xy 82.682928 62.553146) (xy 82.820976 62.63824) (xy 82.827262 62.642115) (xy 82.881531 62.660115) (xy 82.988611 62.695632) (xy 82.988613 62.695632) (xy 82.995139 62.697797) (xy 83.001975 62.698497) (xy 83.001978 62.698498) (xy 83.037663 62.702154) (xy 83.0996 62.7085) (xy 84.4004 62.7085) (xy 84.403646 62.708163) (xy 84.40365 62.708163) (xy 84.499308 62.698238) (xy 84.499312 62.698237) (xy 84.506166 62.697526) (xy 84.512702 62.695345) (xy 84.512704 62.695345) (xy 84.659613 62.646332) (xy 84.673946 62.64155) (xy 84.824348 62.548478) (xy 84.949305 62.423303) (xy 84.955802 62.412763) (xy 85.038275 62.278968) (xy 85.038276 62.278966) (xy 85.042115 62.272738) (xy 85.083808 62.147037) (xy 85.095632 62.111389) (xy 85.095632 62.111387) (xy 85.097797 62.104861) (xy 85.1085 62.0004) (xy 85.1085 60.3996) (xy 85.100696 60.324384) (xy 85.098238 60.300692) (xy 85.098237 60.300688) (xy 85.097526 60.293834) (xy 85.092759 60.279544) (xy 85.043868 60.133002) (xy 85.04155 60.126054) (xy 84.948478 59.975652) (xy 84.823303 59.850695) (xy 84.817072 59.846854) (xy 84.678968 59.761725) (xy 84.678966 59.761724) (xy 84.672738 59.757885) (xy 84.563194 59.721551) (xy 84.511389 59.704368) (xy 84.511387 59.704368) (xy 84.504861 59.702203) (xy 84.498025 59.701503) (xy 84.498022 59.701502) (xy 84.454969 59.697091) (xy 84.4004 59.6915) (xy 83.0996 59.6915) (xy 83.096354 59.691837) (xy 83.09635 59.691837) (xy 83.000692 59.701762) (xy 83.000688 59.701763) (xy 82.993834 59.702474) (xy 82.987298 59.704655) (xy 82.987296 59.704655) (xy 82.873286 59.742692) (xy 82.826054 59.75845) (xy 82.675652 59.851522) (xy 82.550695 59.976697) (xy 82.46176 60.120977) (xy 82.46092 60.122339) (xy 82.408148 60.169832) (xy 82.338076 60.181256) (xy 82.272952 60.152982) (xy 82.26249 60.143195) (xy 82.180952 60.057722) (xy 82.153424 60.028865) (xy 81.968458 59.891246) (xy 81.963707 59.88883) (xy 81.963703 59.888828) (xy 81.811355 59.811371) (xy 81.762949 59.78676) (xy 81.757855 59.785178) (xy 81.757852 59.785177) (xy 81.547871 59.719976) (xy 81.542773 59.718393) (xy 81.508134 59.713802) (xy 81.319511 59.688802) (xy 81.319506 59.688802) (xy 81.314226 59.688102) (xy 81.308897 59.688302) (xy 81.308895 59.688302) (xy 81.199034 59.692427) (xy 81.083842 59.696751) (xy 81.078623 59.697846) (xy 81.056566 59.702474) (xy 80.858209 59.744093) (xy 80.85325 59.746051) (xy 80.853248 59.746052) (xy 80.821855 59.75845) (xy 80.699283 59.806856) (xy 80.628579 59.813274) (xy 80.620392 59.811371) (xy 80.616486 59.810324) (xy 80.608851 59.807162) (xy 80.592318 59.804986) (xy 80.589458 59.804609) (xy 80.554038 59.799946) (xy 80.489885 59.7915) (xy 80.489882 59.7915) (xy 80.489874 59.791499) (xy 80.458189 59.787328) (xy 80.45 59.78625) (xy 80.418307 59.790422) (xy 80.401864 59.7915) (xy 78.317936 59.7915) (xy 78.249815 59.771498) (xy 78.210792 59.731803) (xy 78.19247 59.702195) (xy 78.192464 59.702188) (xy 78.188616 59.695969) (xy 78.183438 59.6908) (xy 78.081714 59.589253) (xy 78.047635 59.52697) (xy 78.052638 59.45615) (xy 78.081559 59.411063) (xy 78.184254 59.308188) (xy 78.184258 59.308183) (xy 78.189429 59.303003) (xy 78.280709 59.15492) (xy 78.335474 58.989809) (xy 78.338882 58.956552) (xy 78.345672 58.890271) (xy 78.346 58.887072) (xy 78.346 58.287928) (xy 78.345663 58.284678) (xy 78.335919 58.190765) (xy 78.335918 58.190761) (xy 78.335207 58.183907) (xy 78.331506 58.172812) (xy 78.282472 58.025841) (xy 78.280154 58.018893) (xy 78.188616 57.870969) (xy 78.160484 57.842886) (xy 78.070684 57.753242) (xy 78.070679 57.753238) (xy 78.065503 57.748071) (xy 77.993634 57.70377) (xy 77.92365 57.660631) (xy 77.923648 57.66063) (xy 77.91742 57.656791) (xy 77.752309 57.602026) (xy 77.745473 57.601326) (xy 77.74547 57.601325) (xy 77.693974 57.596049) (xy 77.649572 57.5915) (xy 77.075428 57.5915) (xy 77.072182 57.591837) (xy 77.072178 57.591837) (xy 76.978265 57.601581) (xy 76.978261 57.601582) (xy 76.971407 57.602293) (xy 76.964871 57.604474) (xy 76.964869 57.604474) (xy 76.947341 57.610322) (xy 76.806393 57.657346) (xy 76.658469 57.748884) (xy 76.653296 57.754066) (xy 76.540742 57.866816) (xy 76.540738 57.866821) (xy 76.535571 57.871997) (xy 76.531731 57.878227) (xy 76.53173 57.878228) (xy 76.448864 58.012662) (xy 76.444291 58.02008) (xy 76.389526 58.185191) (xy 76.388826 58.192027) (xy 76.388825 58.19203) (xy 76.385515 58.224338) (xy 76.379 58.287928) (xy 76.379 58.658261) (xy 76.358998 58.726382) (xy 76.342095 58.747356) (xy 76.103766 58.985685) (xy 76.091375 58.996552) (xy 76.066013 59.016013) (xy 76.041526 59.047925) (xy 76.041523 59.047928) (xy 75.968476 59.143124) (xy 75.907162 59.291149) (xy 75.905466 59.304031) (xy 75.8915 59.410115) (xy 75.8915 59.41012) (xy 75.88625 59.45) (xy 75.887328 59.458188) (xy 75.890422 59.48169) (xy 75.8915 59.498136) (xy 75.8915 62.801864) (xy 75.890422 62.818307) (xy 75.88625 62.85) (xy 73.626713 62.85) (xy 73.624852 62.827361) (xy 73.570431 62.610702) (xy 73.481354 62.40584) (xy 73.433071 62.331206) (xy 73.362822 62.222617) (xy 73.36282 62.222614) (xy 73.360014 62.218277) (xy 73.20967 62.053051) (xy 73.205619 62.049852) (xy 73.205615 62.049848) (xy 73.038414 61.9178) (xy 73.03841 61.917798) (xy 73.034359 61.914598) (xy 72.838789 61.806638) (xy 72.83392 61.804914) (xy 72.833916 61.804912) (xy 72.633087 61.733795) (xy 72.633083 61.733794) (xy 72.628212 61.732069) (xy 72.623119 61.731162) (xy 72.623116 61.731161) (xy 72.413373 61.6938) (xy 72.413367 61.693799) (xy 72.408284 61.692894) (xy 72.334452 61.691992) (xy 72.190081 61.690228) (xy 72.190079 61.690228) (xy 72.184911 61.690165) (xy 71.964091 61.723955) (xy 71.751756 61.793357) (xy 71.724125 61.807741) (xy 71.601023 61.871824) (xy 71.553607 61.896507) (xy 71.549474 61.89961) (xy 71.549471 61.899612) (xy 71.3791 62.02753) (xy 71.374965 62.030635) (xy 71.359875 62.046426) (xy 71.225226 62.187328) (xy 71.220629 62.192138) (xy 71.113201 62.349621) (xy 71.058293 62.394621) (xy 70.987768 62.402792) (xy 70.924021 62.371538) (xy 70.903324 62.347054) (xy 70.822822 62.222617) (xy 70.82282 62.222614) (xy 70.820014 62.218277) (xy 70.66967 62.053051) (xy 70.665619 62.049852) (xy 70.665615 62.049848) (xy 70.498414 61.9178) (xy 70.49841 61.917798) (xy 70.494359 61.914598) (xy 70.298789 61.806638) (xy 70.29392 61.804914) (xy 70.293916 61.804912) (xy 70.093087 61.733795) (xy 70.093083 61.733794) (xy 70.088212 61.732069) (xy 70.083119 61.731162) (xy 70.083116 61.731161) (xy 69.873373 61.6938) (xy 69.873367 61.693799) (xy 69.868284 61.692894) (xy 69.794452 61.691992) (xy 69.650081 61.690228) (xy 69.650079 61.690228) (xy 69.644911 61.690165) (xy 69.424091 61.723955) (xy 69.211756 61.793357) (xy 69.184125 61.807741) (xy 69.061023 61.871824) (xy 69.013607 61.896507) (xy 69.009474 61.89961) (xy 69.009471 61.899612) (xy 68.8391 62.02753) (xy 68.834965 62.030635) (xy 68.755455 62.113838) (xy 68.754283 62.115064) (xy 68.692759 62.150494) (xy 68.621846 62.147037) (xy 68.56406 62.105791) (xy 68.545207 62.072243) (xy 68.503767 61.961703) (xy 68.500615 61.953295) (xy 68.413261 61.836739) (xy 68.296705 61.749385) (xy 68.160316 61.698255) (xy 68.098134 61.6915) (xy 66.301866 61.6915) (xy 66.239684 61.698255) (xy 66.103295 61.749385) (xy 65.986739 61.836739) (xy 65.899385 61.953295) (xy 65.896233 61.961703) (xy 65.859484 62.05973) (xy 65.816842 62.116494) (xy 65.750281 62.141194) (xy 65.741502 62.1415) (xy 64.130436 62.1415) (xy 64.062315 62.121498) (xy 64.023292 62.081803) (xy 64.00497 62.052195) (xy 64.004964 62.052188) (xy 64.001116 62.045969) (xy 63.986062 62.030941) (xy 63.883184 61.928242) (xy 63.883179 61.928238) (xy 63.878003 61.923071) (xy 63.869452 61.9178) (xy 63.73615 61.835631) (xy 63.736148 61.83563) (xy 63.72992 61.831791) (xy 63.564809 61.777026) (xy 63.557973 61.776326) (xy 63.55797 61.776325) (xy 63.506474 61.771049) (xy 63.462072 61.7665) (xy 62.862928 61.7665) (xy 62.859682 61.766837) (xy 62.859678 61.766837) (xy 62.765765 61.776581) (xy 62.765761 61.776582) (xy 62.758907 61.777293) (xy 62.752371 61.779474) (xy 62.752369 61.779474) (xy 62.670949 61.806638) (xy 62.593893 61.832346) (xy 62.445969 61.923884) (xy 62.440796 61.929066) (xy 62.339253 62.030786) (xy 62.27697 62.064865) (xy 62.20615 62.059862) (xy 62.161063 62.030941) (xy 62.058188 61.928246) (xy 62.058183 61.928242) (xy 62.053003 61.923071) (xy 62.044452 61.9178) (xy 61.91115 61.835631) (xy 61.911148 61.83563) (xy 61.90492 61.831791) (xy 61.739809 61.777026) (xy 61.732973 61.776326) (xy 61.73297 61.776325) (xy 61.681474 61.771049) (xy 61.637072 61.7665) (xy 61.037928 61.7665) (xy 61.034682 61.766837) (xy 61.034678 61.766837) (xy 60.940765 61.776581) (xy 60.940761 61.776582) (xy 60.933907 61.777293) (xy 60.927371 61.779474) (xy 60.927369 61.779474) (xy 60.845949 61.806638) (xy 60.768893 61.832346) (xy 60.620969 61.923884) (xy 60.615796 61.929066) (xy 60.505153 62.039902) (xy 60.44287 62.073981) (xy 60.37205 62.068978) (xy 60.315178 62.026481) (xy 60.296456 61.990758) (xy 60.29387 61.983006) (xy 60.293868 61.983001) (xy 60.29155 61.976054) (xy 60.198478 61.825652) (xy 60.073303 61.700695) (xy 60.067072 61.696854) (xy 59.928968 61.611725) (xy 59.928966 61.611724) (xy 59.922738 61.607885) (xy 59.837823 61.57972) (xy 59.761389 61.554368) (xy 59.761387 61.554368) (xy 59.754861 61.552203) (xy 59.748025 61.551503) (xy 59.748022 61.551502) (xy 59.704969 61.547091) (xy 59.6504 61.5415) (xy 58.8996 61.5415) (xy 58.896354 61.541837) (xy 58.89635 61.541837) (xy 58.800692 61.551762) (xy 58.800688 61.551763) (xy 58.793834 61.552474) (xy 58.787298 61.554655) (xy 58.787296 61.554655) (xy 58.677234 61.591375) (xy 58.626054 61.60845) (xy 58.475652 61.701522) (xy 58.350695 61.826697) (xy 58.347898 61.831235) (xy 58.290647 61.871824) (xy 58.219724 61.875054) (xy 58.158313 61.839428) (xy 58.150938 61.830932) (xy 58.142902 61.820793) (xy 58.028171 61.706261) (xy 58.01676 61.697249) (xy 57.878757 61.612184) (xy 57.865576 61.606037) (xy 57.71129 61.554862) (xy 57.697914 61.551995) (xy 57.603562 61.542328) (xy 57.597145 61.542) (xy 57.497115 61.542) (xy 57.481876 61.546475) (xy 57.480671 61.547865) (xy 57.479 61.555548) (xy 57.479 62.878) (xy 57.458998 62.946121) (xy 57.405342 62.992614) (xy 57.353 63.004) (xy 56.160116 63.004) (xy 56.144877 63.008475) (xy 56.143672 63.009865) (xy 56.142001 63.017548) (xy 56.142001 63.227263) (xy 56.121999 63.295384) (xy 56.068343 63.341877) (xy 55.998069 63.351981) (xy 55.933489 63.322487) (xy 55.926906 63.316358) (xy 55.760856 63.150308) (xy 55.72683 63.087996) (xy 55.728245 63.028601) (xy 55.74269 62.974692) (xy 55.742692 62.974681) (xy 55.744115 62.969371) (xy 55.763307 62.75) (xy 55.744115 62.530629) (xy 55.729982 62.477885) (xy 56.142 62.477885) (xy 56.146475 62.493124) (xy 56.147865 62.494329) (xy 56.155548 62.496) (xy 56.952885 62.496) (xy 56.968124 62.491525) (xy 56.969329 62.490135) (xy 56.971 62.482452) (xy 56.971 61.560116) (xy 56.966525 61.544877) (xy 56.965135 61.543672) (xy 56.957452 61.542001) (xy 56.852905 61.542001) (xy 56.846386 61.542338) (xy 56.750794 61.552257) (xy 56.7374 61.555149) (xy 56.583216 61.606588) (xy 56.570038 61.612761) (xy 56.432193 61.698063) (xy 56.420792 61.707099) (xy 56.306261 61.821829) (xy 56.297249 61.83324) (xy 56.212184 61.971243) (xy 56.206037 61.984424) (xy 56.154862 62.13871) (xy 56.151995 62.152086) (xy 56.142328 62.246438) (xy 56.142 62.252855) (xy 56.142 62.477885) (xy 55.729982 62.477885) (xy 55.68712 62.317924) (xy 55.623784 62.182099) (xy 55.596382 62.123334) (xy 55.596379 62.123329) (xy 55.594056 62.118347) (xy 55.584613 62.104861) (xy 55.470908 61.942473) (xy 55.470906 61.94247) (xy 55.467749 61.937962) (xy 55.312038 61.782251) (xy 55.304958 61.777293) (xy 55.227666 61.723173) (xy 55.131654 61.655944) (xy 54.932076 61.56288) (xy 54.719371 61.505885) (xy 54.5 61.486693) (xy 54.280629 61.505885) (xy 54.067924 61.56288) (xy 54.020743 61.584881) (xy 53.873334 61.653618) (xy 53.873329 61.653621) (xy 53.868347 61.655944) (xy 53.86384 61.6591) (xy 53.863838 61.659101) (xy 53.692473 61.779092) (xy 53.69247 61.779094) (xy 53.687962 61.782251) (xy 53.532251 61.937962) (xy 53.529094 61.94247) (xy 53.529092 61.942473) (xy 53.415387 62.104861) (xy 53.405944 62.118347) (xy 53.403621 62.123329) (xy 53.403618 62.123334) (xy 53.376216 62.182099) (xy 53.31288 62.317924) (xy 53.255885 62.530629) (xy 53.236693 62.75) (xy 53.255885 62.969371) (xy 53.31288 63.182076) (xy 53.348505 63.258474) (xy 53.403618 63.376666) (xy 53.403621 63.376671) (xy 53.405944 63.381653) (xy 53.4091 63.38616) (xy 53.409101 63.386162) (xy 53.526378 63.55365) (xy 53.532251 63.562038) (xy 53.687962 63.717749) (xy 53.692471 63.720906) (xy 53.692473 63.720908) (xy 53.75708 63.766146) (xy 53.868346 63.844056) (xy 54.067924 63.93712) (xy 54.280629 63.994115) (xy 54.5 64.013307) (xy 54.719371 63.994115) (xy 54.724684 63.992691) (xy 54.724692 63.99269) (xy 54.778601 63.978245) (xy 54.849578 63.979934) (xy 54.900308 64.010856) (xy 55.285678 64.396226) (xy 55.296545 64.408616) (xy 55.316013 64.433987) (xy 55.322563 64.439013) (xy 55.322566 64.439016) (xy 55.355872 64.464572) (xy 55.435718 64.525841) (xy 55.443124 64.531524) (xy 55.591149 64.592838) (xy 55.599336 64.593916) (xy 55.599337 64.593916) (xy 55.610542 64.595391) (xy 55.635563 64.598685) (xy 55.710115 64.6085) (xy 55.710118 64.6085) (xy 55.710126 64.608501) (xy 55.741811 64.612672) (xy 55.75 64.61375) (xy 55.781693 64.609578) (xy 55.798136 64.6085) (xy 61.864364 64.6085) (xy 61.880807 64.609578) (xy 61.9125 64.61375) (xy 61.920689 64.612672) (xy 61.952374 64.608501) (xy 61.952384 64.6085) (xy 61.952385 64.6085) (xy 61.952401 64.608498) (xy 62.051957 64.595391) (xy 62.063164 64.593916) (xy 62.063166 64.593915) (xy 62.071351 64.592838) (xy 62.219376 64.531524) (xy 62.226783 64.525841) (xy 62.314572 64.458477) (xy 62.314575 64.458474) (xy 62.329588 64.446954) (xy 62.346487 64.433987) (xy 62.36047 64.415765) (xy 62.365949 64.408624) (xy 62.376815 64.396234) (xy 62.68552 64.087529) (xy 63.002643 63.770405) (xy 63.064956 63.73638) (xy 63.091739 63.7335) (xy 63.462072 63.7335) (xy 63.465318 63.733163) (xy 63.465322 63.733163) (xy 63.559235 63.723419) (xy 63.559239 63.723418) (xy 63.566093 63.722707) (xy 63.572629 63.720526) (xy 63.572631 63.720526) (xy 63.724159 63.669972) (xy 63.731107 63.667654) (xy 63.879031 63.576116) (xy 63.889194 63.565935) (xy 63.996758 63.458184) (xy 63.996762 63.458179) (xy 64.001929 63.453003) (xy 64.008828 63.441811) (xy 64.02327 63.418383) (xy 64.076043 63.37089) (xy 64.130529 63.3585) (xy 65.7155 63.3585) (xy 65.783621 63.378502) (xy 65.830114 63.432158) (xy 65.8415 63.4845) (xy 65.8415 63.948134) (xy 65.848255 64.010316) (xy 65.899385 64.146705) (xy 65.916327 64.169311) (xy 65.941174 64.235815) (xy 65.9415 64.244874) (xy 65.9415 67.212484) (xy 65.921498 67.280605) (xy 65.867842 67.327098) (xy 65.860131 67.330135) (xy 65.858003 67.331132) (xy 65.851055 67.33345) (xy 65.700652 67.426522) (xy 65.575695 67.551697) (xy 65.571855 67.557927) (xy 65.571854 67.557928) (xy 65.493627 67.684836) (xy 65.482885 67.702262) (xy 65.469333 67.74312) (xy 65.433385 67.851502) (xy 65.427203 67.870139) (xy 65.426503 67.876975) (xy 65.426502 67.876978) (xy 65.423148 67.909712) (xy 65.4165 67.9746) (xy 65.4165 73.0254) (xy 65.416837 73.028646) (xy 65.416837 73.02865) (xy 65.426598 73.122721) (xy 65.427474 73.131165) (xy 65.429655 73.137701) (xy 65.429655 73.137703) (xy 65.464651 73.242599) (xy 65.48345 73.298945) (xy 65.576522 73.449348) (xy 65.701697 73.574305) (xy 65.707927 73.578145) (xy 65.707928 73.578146) (xy 65.84509 73.662694) (xy 65.852262 73.667115) (xy 65.925715 73.691478) (xy 66.013611 73.720632) (xy 66.013613 73.720632) (xy 66.020139 73.722797) (xy 66.026975 73.723497) (xy 66.026978 73.723498) (xy 66.061892 73.727075) (xy 66.1246 73.7335) (xy 67.8254 73.7335) (xy 67.828646 73.733163) (xy 67.82865 73.733163) (xy 67.924307 73.723238) (xy 67.924311 73.723237) (xy 67.931165 73.722526) (xy 67.937701 73.720345) (xy 67.937703 73.720345) (xy 68.071624 73.675665) (xy 68.098945 73.66655) (xy 68.249348 73.573478) (xy 68.259957 73.562851) (xy 68.369134 73.453483) (xy 68.374305 73.448303) (xy 68.379154 73.440436) (xy 68.463275 73.303968) (xy 68.463276 73.303966) (xy 68.467115 73.297738) (xy 68.51033 73.167449) (xy 68.520632 73.136389) (xy 68.520632 73.136387) (xy 68.522797 73.129861) (xy 68.5335 73.0254) (xy 68.5335 67.9746) (xy 68.532865 67.968476) (xy 68.523238 67.875693) (xy 68.523237 67.875689) (xy 68.522526 67.868835) (xy 68.519242 67.85899) (xy 68.46655 67.701055) (xy 68.468016 67.700566) (xy 68.4585 67.657819) (xy 68.4585 64.244874) (xy 68.478502 64.176753) (xy 68.483661 64.169327) (xy 68.500615 64.146705) (xy 68.500615 64.146704) (xy 68.501771 64.147571) (xy 68.545237 64.104202) (xy 68.614628 64.089187) (xy 68.68112 64.114071) (xy 68.723604 64.170954) (xy 68.7315 64.214856) (xy 68.7315 66.753157) (xy 68.730763 66.766764) (xy 68.727667 66.795268) (xy 68.726676 66.804388) (xy 68.727213 66.810523) (xy 68.73105 66.854388) (xy 68.731379 66.859214) (xy 68.7315 66.861686) (xy 68.7315 66.864769) (xy 68.731801 66.867837) (xy 68.73569 66.907506) (xy 68.735812 66.908819) (xy 68.737695 66.930342) (xy 68.743913 67.001413) (xy 68.7454 67.006532) (xy 68.74592 67.011833) (xy 68.772791 67.100834) (xy 68.773126 67.101967) (xy 68.794166 67.174384) (xy 68.799091 67.191336) (xy 68.801544 67.196068) (xy 68.803084 67.201169) (xy 68.805978 67.206612) (xy 68.846731 67.28326) (xy 68.847343 67.284426) (xy 68.887271 67.361453) (xy 68.890108 67.366926) (xy 68.893431 67.371089) (xy 68.895934 67.375796) (xy 68.954755 67.447918) (xy 68.955446 67.448774) (xy 68.986738 67.487973) (xy 68.989242 67.490477) (xy 68.989884 67.491195) (xy 68.993585 67.495528) (xy 69.020935 67.529062) (xy 69.025682 67.532989) (xy 69.025684 67.532991) (xy 69.056262 67.558287) (xy 69.065042 67.566277) (xy 70.269766 68.771) (xy 71.454595 69.955829) (xy 71.48862 70.018141) (xy 71.4915 70.044924) (xy 71.4915 70.2155) (xy 71.471498 70.283621) (xy 71.417842 70.330114) (xy 71.3655 70.3415) (xy 70.701866 70.3415) (xy 70.639684 70.348255) (xy 70.503295 70.399385) (xy 70.386739 70.486739) (xy 70.299385 70.603295) (xy 70.248255 70.739684) (xy 70.2415 70.801866) (xy 70.2415 72.698134) (xy 70.248255 72.760316) (xy 70.299385 72.896705) (xy 70.386739 73.013261) (xy 70.503295 73.100615) (xy 70.639684 73.151745) (xy 70.701866 73.1585) (xy 71.264629 73.1585) (xy 71.33275 73.178502) (xy 71.379243 73.232158) (xy 71.389347 73.302432) (xy 71.359853 73.367012) (xy 71.353724 73.373595) (xy 70.623589 74.10373) (xy 70.609177 74.116116) (xy 70.597582 74.124649) (xy 70.597577 74.124654) (xy 70.591682 74.128992) (xy 70.586943 74.13457) (xy 70.58694 74.134573) (xy 70.557465 74.169268) (xy 70.550535 74.176784) (xy 70.54484 74.182479) (xy 70.54256 74.185361) (xy 70.527219 74.204751) (xy 70.524428 74.208155) (xy 70.486671 74.252598) (xy 70.477167 74.263785) (xy 70.473839 74.270301) (xy 70.470472 74.27535) (xy 70.467305 74.280479) (xy 70.462766 74.286216) (xy 70.431845 74.352375) (xy 70.429942 74.356269) (xy 70.396731 74.421308) (xy 70.394992 74.428416) (xy 70.392893 74.434059) (xy 70.390976 74.439822) (xy 70.387878 74.44645) (xy 70.386388 74.453612) (xy 70.386388 74.453613) (xy 70.373014 74.517912) (xy 70.372044 74.522196) (xy 70.354692 74.59311) (xy 70.354 74.604264) (xy 70.353964 74.604262) (xy 70.353725 74.608255) (xy 70.353351 74.612447) (xy 70.35186 74.619615) (xy 70.352068 74.627293) (xy 70.353954 74.697021) (xy 70.354 74.700428) (xy 70.354 74.91661) (xy 70.333998 74.984731) (xy 70.280342 75.031224) (xy 70.267877 75.036133) (xy 70.133007 75.08113) (xy 70.133005 75.081131) (xy 70.126054 75.08345) (xy 69.975652 75.176522) (xy 69.850695 75.301697) (xy 69.846855 75.307927) (xy 69.846854 75.307928) (xy 69.826145 75.341525) (xy 69.757885 75.452262) (xy 69.750343 75.475) (xy 69.705109 75.611379) (xy 69.702203 75.620139) (xy 69.701503 75.626975) (xy 69.701502 75.626978) (xy 69.6989 75.652374) (xy 69.6915 75.7246) (xy 69.6915 76.6754) (xy 69.691837 76.678646) (xy 69.691837 76.67865) (xy 69.701752 76.774206) (xy 69.702474 76.781166) (xy 69.704655 76.787702) (xy 69.704655 76.787704) (xy 69.719784 76.833051) (xy 69.75845 76.948946) (xy 69.851522 77.099348) (xy 69.976697 77.224305) (xy 69.982927 77.228145) (xy 69.982928 77.228146) (xy 70.120392 77.31288) (xy 70.127262 77.317115) (xy 70.207005 77.343564) (xy 70.288611 77.370632) (xy 70.288613 77.370632) (xy 70.295139 77.372797) (xy 70.301975 77.373497) (xy 70.301978 77.373498) (xy 70.345031 77.377909) (xy 70.3996 77.3835) (xy 71.5754 77.3835) (xy 71.578646 77.383163) (xy 71.57865 77.383163) (xy 71.674308 77.373238) (xy 71.674312 77.373237) (xy 71.681166 77.372526) (xy 71.687702 77.370345) (xy 71.687704 77.370345) (xy 71.819806 77.326272) (xy 71.848946 77.31655) (xy 71.999348 77.223478) (xy 72.124305 77.098303) (xy 72.128425 77.091619) (xy 72.213275 76.953968) (xy 72.213276 76.953966) (xy 72.217115 76.947738) (xy 72.256217 76.829848) (xy 72.270632 76.786389) (xy 72.270632 76.786387) (xy 72.272797 76.779861) (xy 72.277655 76.732452) (xy 72.281287 76.696997) (xy 72.2835 76.6754) (xy 72.2835 75.7246) (xy 72.283163 75.72135) (xy 72.273238 75.625692) (xy 72.273237 75.625688) (xy 72.272526 75.618834) (xy 72.269079 75.6085) (xy 72.218868 75.458002) (xy 72.21655 75.451054) (xy 72.123478 75.300652) (xy 71.998303 75.175695) (xy 71.953194 75.147889) (xy 71.947584 75.144431) (xy 71.90009 75.091658) (xy 71.888668 75.021587) (xy 71.916942 74.956463) (xy 71.924605 74.948076) (xy 72.552276 74.320405) (xy 72.614588 74.286379) (xy 72.641371 74.2835) (xy 76.90793 74.2835) (xy 76.92688 74.284933) (xy 76.941115 74.287099) (xy 76.941119 74.287099) (xy 76.948349 74.288199) (xy 76.955641 74.287606) (xy 76.955644 74.287606) (xy 77.001018 74.283915) (xy 77.011233 74.2835) (xy 77.019293 74.2835) (xy 77.032583 74.281951) (xy 77.047507 74.280211) (xy 77.051882 74.279778) (xy 77.117339 74.274454) (xy 77.117342 74.274453) (xy 77.124637 74.27386) (xy 77.131601 74.271604) (xy 77.13756 74.270413) (xy 77.143415 74.269029) (xy 77.150681 74.268182) (xy 77.219327 74.243265) (xy 77.223455 74.241848) (xy 77.285936 74.221607) (xy 77.285938 74.221606) (xy 77.292899 74.219351) (xy 77.299154 74.215555) (xy 77.304628 74.213049) (xy 77.310058 74.21033) (xy 77.316937 74.207833) (xy 77.323139 74.203767) (xy 77.377976 74.167814) (xy 77.38168 74.165477) (xy 77.444107 74.127595) (xy 77.452484 74.120197) (xy 77.452508 74.120224) (xy 77.4555 74.117571) (xy 77.458733 74.114868) (xy 77.464852 74.110856) (xy 77.518128 74.054617) (xy 77.520506 74.052175) (xy 77.988911 73.58377) (xy 78.003323 73.571384) (xy 78.014918 73.562851) (xy 78.014923 73.562846) (xy 78.020818 73.558508) (xy 78.025557 73.55293) (xy 78.02556 73.552927) (xy 78.055035 73.518232) (xy 78.061965 73.510716) (xy 78.06766 73.505021) (xy 78.083405 73.48512) (xy 78.085281 73.482749) (xy 78.088072 73.479345) (xy 78.130591 73.429297) (xy 78.130592 73.429295) (xy 78.135333 73.423715) (xy 78.138661 73.417199) (xy 78.142028 73.41215) (xy 78.145195 73.407021) (xy 78.149734 73.401284) (xy 78.180655 73.335125) (xy 78.182561 73.331225) (xy 78.215769 73.266192) (xy 78.217509 73.25908) (xy 78.219606 73.253442) (xy 78.221522 73.247682) (xy 78.223725 73.24297) (xy 78.223982 73.242599) (xy 78.22424 73.241868) (xy 78.224629 73.241036) (xy 78.22496 73.241191) (xy 78.262987 73.186403) (xy 78.328575 73.159224) (xy 78.342063 73.1585) (xy 79.298134 73.1585) (xy 79.360316 73.151745) (xy 79.496705 73.100615) (xy 79.613261 73.013261) (xy 79.700615 72.896705) (xy 79.751745 72.760316) (xy 79.7585 72.698134) (xy 79.7585 72.61952) (xy 79.761658 72.608766) (xy 82.117 72.608766) (xy 82.117337 72.615282) (xy 82.127075 72.709132) (xy 82.129968 72.722528) (xy 82.180488 72.873953) (xy 82.186653 72.887115) (xy 82.270426 73.022492) (xy 82.27946 73.03389) (xy 82.392129 73.146363) (xy 82.40354 73.155375) (xy 82.539063 73.238912) (xy 82.552241 73.245056) (xy 82.703766 73.295315) (xy 82.717132 73.298181) (xy 82.80977 73.307672) (xy 82.816185 73.308) (xy 82.827885 73.308) (xy 82.843124 73.303525) (xy 82.844329 73.302135) (xy 82.846 73.294452) (xy 82.846 72.534615) (xy 82.841525 72.519376) (xy 82.840135 72.518171) (xy 82.832452 72.5165) (xy 82.135115 72.5165) (xy 82.119876 72.520975) (xy 82.118671 72.522365) (xy 82.117 72.530048) (xy 82.117 72.608766) (xy 79.761658 72.608766) (xy 79.778502 72.551399) (xy 79.832158 72.504906) (xy 79.849683 72.499239) (xy 79.849568 72.498883) (xy 79.850446 72.498598) (xy 79.854188 72.497782) (xy 79.859819 72.495961) (xy 79.862557 72.495414) (xy 79.868416 72.494029) (xy 79.875681 72.493182) (xy 79.944327 72.468265) (xy 79.948455 72.466848) (xy 80.010936 72.446607) (xy 80.010938 72.446606) (xy 80.017899 72.444351) (xy 80.024154 72.440555) (xy 80.029628 72.438049) (xy 80.035058 72.43533) (xy 80.041937 72.432833) (xy 80.071789 72.413261) (xy 80.102976 72.392814) (xy 80.10668 72.390477) (xy 80.169107 72.352595) (xy 80.177484 72.345197) (xy 80.177508 72.345224) (xy 80.1805 72.342571) (xy 80.183733 72.339868) (xy 80.189852 72.335856) (xy 80.243128 72.279617) (xy 80.245506 72.277175) (xy 81.189776 71.332905) (xy 81.252088 71.298879) (xy 81.278871 71.296) (xy 82.173466 71.296) (xy 82.241587 71.316002) (xy 82.28808 71.369658) (xy 82.298184 71.439932) (xy 82.272349 71.500091) (xy 82.269625 71.50354) (xy 82.186088 71.639063) (xy 82.179944 71.652241) (xy 82.129685 71.803766) (xy 82.126819 71.817132) (xy 82.117328 71.90977) (xy 82.117 71.916185) (xy 82.117 71.990385) (xy 82.121475 72.005624) (xy 82.122865 72.006829) (xy 82.130548 72.0085) (xy 83.228 72.0085) (xy 83.296121 72.028502) (xy 83.342614 72.082158) (xy 83.354 72.1345) (xy 83.354 73.289885) (xy 83.358475 73.305124) (xy 83.359865 73.306329) (xy 83.367548 73.308) (xy 83.383766 73.308) (xy 83.390282 73.307663) (xy 83.484132 73.297925) (xy 83.497528 73.295032) (xy 83.648953 73.244512) (xy 83.662115 73.238347) (xy 83.797492 73.154574) (xy 83.80889 73.14554) (xy 83.921363 73.032871) (xy 83.930375 73.02146) (xy 84.013912 72.885937) (xy 84.020056 72.872759) (xy 84.070315 72.721234) (xy 84.073181 72.707868) (xy 84.082672 72.61523) (xy 84.083 72.608815) (xy 84.083 72.386201) (xy 84.103002 72.31808) (xy 84.156658 72.271587) (xy 84.226932 72.261483) (xy 84.291512 72.290977) (xy 84.309825 72.310634) (xy 84.386739 72.413261) (xy 84.503295 72.500615) (xy 84.639684 72.551745) (xy 84.701866 72.5585) (xy 85.526761 72.5585) (xy 85.594882 72.578502) (xy 85.641375 72.632158) (xy 85.651479 72.702432) (xy 85.621985 72.767012) (xy 85.615856 72.773595) (xy 83.234856 75.154595) (xy 83.172544 75.188621) (xy 83.145761 75.1915) (xy 74.248136 75.1915) (xy 74.231693 75.190422) (xy 74.2 75.18625) (xy 74.191811 75.187328) (xy 74.160126 75.191499) (xy 74.160117 75.1915) (xy 74.160115 75.1915) (xy 74.160109 75.191501) (xy 74.160107 75.191501) (xy 74.060543 75.204609) (xy 74.049336 75.206084) (xy 74.049334 75.206085) (xy 74.041149 75.207162) (xy 73.893124 75.268476) (xy 73.886573 75.273503) (xy 73.886571 75.273504) (xy 73.824244 75.32133) (xy 73.797928 75.341523) (xy 73.797925 75.341526) (xy 73.766013 75.366013) (xy 73.760983 75.372568) (xy 73.746548 75.391379) (xy 73.735681 75.40377) (xy 73.353766 75.785685) (xy 73.341375 75.796552) (xy 73.316013 75.816013) (xy 73.291526 75.847925) (xy 73.291523 75.847928) (xy 73.282363 75.859865) (xy 73.228596 75.929936) (xy 73.218476 75.943124) (xy 73.157162 76.091149) (xy 73.156166 76.098716) (xy 73.1415 76.210115) (xy 73.1415 76.21012) (xy 73.13625 76.25) (xy 73.137328 76.258188) (xy 73.140422 76.28169) (xy 73.1415 76.298136) (xy 73.1415 77.733114) (xy 73.140422 77.749557) (xy 73.13625 77.78125) (xy 73.137328 77.789439) (xy 73.137643 77.791828) (xy 73.1415 77.82113) (xy 73.1415 77.821135) (xy 73.148373 77.873334) (xy 73.150289 77.887888) (xy 73.150289 77.887891) (xy 73.155038 77.923963) (xy 73.157162 77.940101) (xy 73.218476 78.088126) (xy 73.223503 78.094677) (xy 73.223504 78.094679) (xy 73.29152 78.183319) (xy 73.291526 78.183325) (xy 73.316013 78.215237) (xy 73.322568 78.220267) (xy 73.341379 78.234702) (xy 73.35377 78.245569) (xy 73.692095 78.583894) (xy 73.726121 78.646206) (xy 73.729 78.672989) (xy 73.729 78.814512) (xy 73.708998 78.882633) (xy 73.692095 78.903607) (xy 72.641106 79.954595) (xy 72.578794 79.988621) (xy 72.552011 79.9915) (xy 72.341697 79.9915) (xy 72.273576 79.971498) (xy 72.227083 79.917842) (xy 72.222174 79.905377) (xy 72.206367 79.857998) (xy 72.206366 79.857996) (xy 72.20405 79.851054) (xy 72.196043 79.838114) (xy 72.114832 79.70688) (xy 72.110978 79.700652) (xy 71.985803 79.575695) (xy 71.967758 79.564572) (xy 71.841468 79.486725) (xy 71.841466 79.486724) (xy 71.835238 79.482885) (xy 71.738188 79.450695) (xy 71.673889 79.429368) (xy 71.673887 79.429368) (xy 71.667361 79.427203) (xy 71.660525 79.426503) (xy 71.660522 79.426502) (xy 71.617469 79.422091) (xy 71.5629 79.4165) (xy 70.3871 79.4165) (xy 70.383854 79.416837) (xy 70.38385 79.416837) (xy 70.288192 79.426762) (xy 70.288188 79.426763) (xy 70.281334 79.427474) (xy 70.274798 79.429655) (xy 70.274796 79.429655) (xy 70.172296 79.463852) (xy 70.113554 79.48345) (xy 69.963152 79.576522) (xy 69.838195 79.701697) (xy 69.834355 79.707927) (xy 69.834354 79.707928) (xy 69.77645 79.801866) (xy 69.745385 79.852262) (xy 69.729288 79.900794) (xy 69.707212 79.967352) (xy 69.689703 80.020139) (xy 69.689003 80.026975) (xy 69.689002 80.026978) (xy 69.686234 80.054) (xy 69.679 80.1246) (xy 69.679 81.0754) (xy 69.679337 81.078646) (xy 69.679337 81.07865) (xy 69.689252 81.174206) (xy 69.689974 81.181166) (xy 69.692155 81.187702) (xy 69.692155 81.187704) (xy 69.720525 81.272738) (xy 69.74595 81.348946) (xy 69.839022 81.499348) (xy 69.964197 81.624305) (xy 69.970427 81.628145) (xy 69.970428 81.628146) (xy 70.107788 81.712816) (xy 70.114762 81.717115) (xy 70.126198 81.720908) (xy 70.276111 81.770632) (xy 70.276113 81.770632) (xy 70.282639 81.772797) (xy 70.289475 81.773497) (xy 70.289478 81.773498) (xy 70.332531 81.777909) (xy 70.3871 81.7835) (xy 70.5155 81.7835) (xy 70.583621 81.803502) (xy 70.630114 81.857158) (xy 70.6415 81.9095) (xy 70.6415 83.03683) (xy 70.621498 83.104951) (xy 70.581803 83.143974) (xy 70.533469 83.173884) (xy 70.528296 83.179066) (xy 70.52796 83.179403) (xy 70.426399 83.281141) (xy 70.364118 83.31522) (xy 70.293298 83.310217) (xy 70.248209 83.281296) (xy 70.145371 83.178637) (xy 70.13396 83.169625) (xy 69.998437 83.086088) (xy 69.985259 83.079944) (xy 69.833734 83.029685) (xy 69.820368 83.026819) (xy 69.72773 83.017328) (xy 69.721315 83.017) (xy 69.697115 83.017) (xy 69.681876 83.021475) (xy 69.680671 83.022865) (xy 69.679 83.030548) (xy 69.679 84.128) (xy 69.658998 84.196121) (xy 69.605342 84.242614) (xy 69.553 84.254) (xy 68.447615 84.254) (xy 68.432376 84.258475) (xy 68.415553 84.277889) (xy 68.400971 84.304595) (xy 68.338659 84.33862) (xy 68.311875 84.3415) (xy 66.542587 84.3415) (xy 66.468528 84.317437) (xy 66.462098 84.312765) (xy 66.462091 84.312761) (xy 66.456752 84.308882) (xy 66.450715 84.306194) (xy 66.433251 84.298418) (xy 66.379155 84.252438) (xy 66.3585 84.183312) (xy 66.3585 83.727885) (xy 68.4295 83.727885) (xy 68.433975 83.743124) (xy 68.435365 83.744329) (xy 68.443048 83.746) (xy 69.152885 83.746) (xy 69.168124 83.741525) (xy 69.169329 83.740135) (xy 69.171 83.732452) (xy 69.171 83.035115) (xy 69.166525 83.019876) (xy 69.165135 83.018671) (xy 69.157452 83.017) (xy 69.128734 83.017) (xy 69.122218 83.017337) (xy 69.028368 83.027075) (xy 69.014972 83.029968) (xy 68.863547 83.080488) (xy 68.850385 83.086653) (xy 68.715008 83.170426) (xy 68.70361 83.17946) (xy 68.591137 83.292129) (xy 68.582125 83.30354) (xy 68.498588 83.439063) (xy 68.492444 83.452241) (xy 68.442185 83.603766) (xy 68.439319 83.617132) (xy 68.429828 83.70977) (xy 68.4295 83.716185) (xy 68.4295 83.727885) (xy 66.3585 83.727885) (xy 66.3585 81.072095) (xy 66.804501 81.072095) (xy 66.804838 81.078614) (xy 66.814757 81.174206) (xy 66.817649 81.1876) (xy 66.869088 81.341784) (xy 66.875261 81.354962) (xy 66.960563 81.492807) (xy 66.969599 81.504208) (xy 67.084329 81.618739) (xy 67.09574 81.627751) (xy 67.233743 81.712816) (xy 67.246924 81.718963) (xy 67.40121 81.770138) (xy 67.414586 81.773005) (xy 67.508938 81.782672) (xy 67.515354 81.783) (xy 67.827885 81.783) (xy 67.843124 81.778525) (xy 67.844329 81.777135) (xy 67.846 81.769452) (xy 67.846 81.764884) (xy 68.354 81.764884) (xy 68.358475 81.780123) (xy 68.359865 81.781328) (xy 68.367548 81.782999) (xy 68.684595 81.782999) (xy 68.691114 81.782662) (xy 68.786706 81.772743) (xy 68.8001 81.769851) (xy 68.954284 81.718412) (xy 68.967462 81.712239) (xy 69.105307 81.626937) (xy 69.116708 81.617901) (xy 69.231239 81.503171) (xy 69.240251 81.49176) (xy 69.325316 81.353757) (xy 69.331463 81.340576) (xy 69.382638 81.18629) (xy 69.385505 81.172914) (xy 69.395172 81.078562) (xy 69.3955 81.072146) (xy 69.3955 80.872115) (xy 69.391025 80.856876) (xy 69.389635 80.855671) (xy 69.381952 80.854) (xy 68.372115 80.854) (xy 68.356876 80.858475) (xy 68.355671 80.859865) (xy 68.354 80.867548) (xy 68.354 81.764884) (xy 67.846 81.764884) (xy 67.846 80.872115) (xy 67.841525 80.856876) (xy 67.840135 80.855671) (xy 67.832452 80.854) (xy 66.822616 80.854) (xy 66.807377 80.858475) (xy 66.806172 80.859865) (xy 66.804501 80.867548) (xy 66.804501 81.072095) (xy 66.3585 81.072095) (xy 66.3585 80.327885) (xy 66.8045 80.327885) (xy 66.808975 80.343124) (xy 66.810365 80.344329) (xy 66.818048 80.346) (xy 67.827885 80.346) (xy 67.843124 80.341525) (xy 67.844329 80.340135) (xy 67.846 80.332452) (xy 67.846 80.327885) (xy 68.354 80.327885) (xy 68.358475 80.343124) (xy 68.359865 80.344329) (xy 68.367548 80.346) (xy 69.377384 80.346) (xy 69.392623 80.341525) (xy 69.393828 80.340135) (xy 69.395499 80.332452) (xy 69.395499 80.127905) (xy 69.395162 80.121386) (xy 69.385243 80.025794) (xy 69.382351 80.0124) (xy 69.330912 79.858216) (xy 69.324739 79.845038) (xy 69.239437 79.707193) (xy 69.230401 79.695792) (xy 69.115671 79.581261) (xy 69.10426 79.572249) (xy 68.966257 79.487184) (xy 68.953076 79.481037) (xy 68.79879 79.429862) (xy 68.785414 79.426995) (xy 68.691062 79.417328) (xy 68.684645 79.417) (xy 68.372115 79.417) (xy 68.356876 79.421475) (xy 68.355671 79.422865) (xy 68.354 79.430548) (xy 68.354 80.327885) (xy 67.846 80.327885) (xy 67.846 79.435116) (xy 67.841525 79.419877) (xy 67.840135 79.418672) (xy 67.832452 79.417001) (xy 67.515405 79.417001) (xy 67.508886 79.417338) (xy 67.413294 79.427257) (xy 67.3999 79.430149) (xy 67.245716 79.481588) (xy 67.232538 79.487761) (xy 67.094693 79.573063) (xy 67.083292 79.582099) (xy 66.968761 79.696829) (xy 66.959749 79.70824) (xy 66.874684 79.846243) (xy 66.868537 79.859424) (xy 66.817362 80.01371) (xy 66.814495 80.027086) (xy 66.804828 80.121438) (xy 66.8045 80.127855) (xy 66.8045 80.327885) (xy 66.3585 80.327885) (xy 66.3585 79.36707) (xy 66.359933 79.34812) (xy 66.362099 79.333885) (xy 66.362099 79.333881) (xy 66.363199 79.326651) (xy 66.362328 79.315935) (xy 66.358915 79.273982) (xy 66.3585 79.263767) (xy 66.3585 79.255707) (xy 66.355209 79.22748) (xy 66.354778 79.223121) (xy 66.349454 79.157662) (xy 66.349453 79.157659) (xy 66.34886 79.150364) (xy 66.346604 79.1434) (xy 66.345417 79.137461) (xy 66.34403 79.13159) (xy 66.343182 79.124319) (xy 66.340686 79.117443) (xy 66.340684 79.117434) (xy 66.318275 79.055702) (xy 66.316865 79.051598) (xy 66.294352 78.982101) (xy 66.290556 78.975846) (xy 66.288057 78.970387) (xy 66.285329 78.964939) (xy 66.282833 78.958063) (xy 66.242805 78.89701) (xy 66.240481 78.893327) (xy 66.2055 78.83568) (xy 66.205499 78.835679) (xy 66.202595 78.830893) (xy 66.195198 78.822517) (xy 66.195225 78.822493) (xy 66.19257 78.819499) (xy 66.189868 78.816268) (xy 66.185856 78.810148) (xy 66.129617 78.756872) (xy 66.127175 78.754494) (xy 64.044776 76.672095) (xy 66.817001 76.672095) (xy 66.817338 76.678614) (xy 66.827257 76.774206) (xy 66.830149 76.7876) (xy 66.881588 76.941784) (xy 66.887761 76.954962) (xy 66.973063 77.092807) (xy 66.982099 77.104208) (xy 67.096829 77.218739) (xy 67.10824 77.227751) (xy 67.246243 77.312816) (xy 67.259424 77.318963) (xy 67.41371 77.370138) (xy 67.427086 77.373005) (xy 67.521438 77.382672) (xy 67.527854 77.383) (xy 67.840385 77.383) (xy 67.855624 77.378525) (xy 67.856829 77.377135) (xy 67.8585 77.369452) (xy 67.8585 77.364884) (xy 68.3665 77.364884) (xy 68.370975 77.380123) (xy 68.372365 77.381328) (xy 68.380048 77.382999) (xy 68.697095 77.382999) (xy 68.703614 77.382662) (xy 68.799206 77.372743) (xy 68.8126 77.369851) (xy 68.966784 77.318412) (xy 68.979962 77.312239) (xy 69.117807 77.226937) (xy 69.129208 77.217901) (xy 69.243739 77.103171) (xy 69.252751 77.09176) (xy 69.337816 76.953757) (xy 69.343963 76.940576) (xy 69.395138 76.78629) (xy 69.398005 76.772914) (xy 69.407672 76.678562) (xy 69.408 76.672146) (xy 69.408 76.472115) (xy 69.403525 76.456876) (xy 69.402135 76.455671) (xy 69.394452 76.454) (xy 68.384615 76.454) (xy 68.369376 76.458475) (xy 68.368171 76.459865) (xy 68.3665 76.467548) (xy 68.3665 77.364884) (xy 67.8585 77.364884) (xy 67.8585 76.472115) (xy 67.854025 76.456876) (xy 67.852635 76.455671) (xy 67.844952 76.454) (xy 66.835116 76.454) (xy 66.819877 76.458475) (xy 66.818672 76.459865) (xy 66.817001 76.467548) (xy 66.817001 76.672095) (xy 64.044776 76.672095) (xy 63.48377 76.111089) (xy 63.471384 76.096677) (xy 63.462851 76.085082) (xy 63.462846 76.085077) (xy 63.458508 76.079182) (xy 63.45293 76.074443) (xy 63.452927 76.07444) (xy 63.418232 76.044965) (xy 63.410716 76.038035) (xy 63.405021 76.03234) (xy 63.388736 76.019456) (xy 63.382749 76.014719) (xy 63.379345 76.011928) (xy 63.329297 75.969409) (xy 63.329295 75.969408) (xy 63.323715 75.964667) (xy 63.317199 75.961339) (xy 63.31215 75.957972) (xy 63.307021 75.954805) (xy 63.301284 75.950266) (xy 63.253397 75.927885) (xy 66.817 75.927885) (xy 66.821475 75.943124) (xy 66.822865 75.944329) (xy 66.830548 75.946) (xy 67.840385 75.946) (xy 67.855624 75.941525) (xy 67.856829 75.940135) (xy 67.8585 75.932452) (xy 67.8585 75.927885) (xy 68.3665 75.927885) (xy 68.370975 75.943124) (xy 68.372365 75.944329) (xy 68.380048 75.946) (xy 69.389884 75.946) (xy 69.405123 75.941525) (xy 69.406328 75.940135) (xy 69.407999 75.932452) (xy 69.407999 75.727905) (xy 69.407662 75.721386) (xy 69.397743 75.625794) (xy 69.394851 75.6124) (xy 69.343412 75.458216) (xy 69.337239 75.445038) (xy 69.251937 75.307193) (xy 69.242901 75.295792) (xy 69.128171 75.181261) (xy 69.11676 75.172249) (xy 68.978757 75.087184) (xy 68.965576 75.081037) (xy 68.81129 75.029862) (xy 68.797914 75.026995) (xy 68.703562 75.017328) (xy 68.697145 75.017) (xy 68.384615 75.017) (xy 68.369376 75.021475) (xy 68.368171 75.022865) (xy 68.3665 75.030548) (xy 68.3665 75.927885) (xy 67.8585 75.927885) (xy 67.8585 75.035116) (xy 67.854025 75.019877) (xy 67.852635 75.018672) (xy 67.844952 75.017001) (xy 67.527905 75.017001) (xy 67.521386 75.017338) (xy 67.425794 75.027257) (xy 67.4124 75.030149) (xy 67.258216 75.081588) (xy 67.245038 75.087761) (xy 67.107193 75.173063) (xy 67.095792 75.182099) (xy 66.981261 75.296829) (xy 66.972249 75.30824) (xy 66.887184 75.446243) (xy 66.881037 75.459424) (xy 66.829862 75.61371) (xy 66.826995 75.627086) (xy 66.817328 75.721438) (xy 66.817 75.727855) (xy 66.817 75.927885) (xy 63.253397 75.927885) (xy 63.235125 75.919345) (xy 63.231225 75.917439) (xy 63.166192 75.884231) (xy 63.159084 75.882492) (xy 63.153441 75.880393) (xy 63.147678 75.878476) (xy 63.14105 75.875378) (xy 63.069583 75.860513) (xy 63.065299 75.859543) (xy 62.99439 75.842192) (xy 62.988788 75.841844) (xy 62.988785 75.841844) (xy 62.983236 75.8415) (xy 62.983238 75.841464) (xy 62.979245 75.841225) (xy 62.975053 75.840851) (xy 62.967885 75.83936) (xy 62.90412 75.841085) (xy 62.890479 75.841454) (xy 62.887072 75.8415) (xy 50.41707 75.8415) (xy 50.39812 75.840067) (xy 50.383885 75.837901) (xy 50.383881 75.837901) (xy 50.376651 75.836801) (xy 50.369359 75.837394) (xy 50.369356 75.837394) (xy 50.323982 75.841085) (xy 50.313767 75.8415) (xy 50.305707 75.8415) (xy 50.302073 75.841924) (xy 50.302067 75.841924) (xy 50.289042 75.843443) (xy 50.27748 75.844791) (xy 50.273132 75.845221) (xy 50.200364 75.85114) (xy 50.193403 75.853395) (xy 50.187463 75.854582) (xy 50.181588 75.855971) (xy 50.174319 75.856818) (xy 50.10567 75.881736) (xy 50.101542 75.883153) (xy 50.039064 75.903393) (xy 50.039062 75.903394) (xy 50.032101 75.905649) (xy 50.025846 75.909445) (xy 50.020372 75.911951) (xy 50.014942 75.91467) (xy 50.008063 75.917167) (xy 50.001943 75.92118) (xy 50.001942 75.92118) (xy 49.947024 75.957186) (xy 49.94332 75.959523) (xy 49.880893 75.997405) (xy 49.872516 76.004803) (xy 49.872492 76.004776) (xy 49.8695 76.007429) (xy 49.866267 76.010132) (xy 49.860148 76.014144) (xy 49.806872 76.070383) (xy 49.804494 76.072825) (xy 48.761089 77.11623) (xy 48.746677 77.128616) (xy 48.735082 77.137149) (xy 48.735077 77.137154) (xy 48.729182 77.141492) (xy 48.724443 77.14707) (xy 48.72444 77.147073) (xy 48.694965 77.181768) (xy 48.688035 77.189284) (xy 48.68234 77.194979) (xy 48.68006 77.197861) (xy 48.664719 77.217251) (xy 48.661928 77.220655) (xy 48.629424 77.258915) (xy 48.614667 77.276285) (xy 48.611339 77.282801) (xy 48.607972 77.28785) (xy 48.604805 77.292979) (xy 48.600266 77.298716) (xy 48.569345 77.364875) (xy 48.567442 77.368769) (xy 48.534231 77.433808) (xy 48.532492 77.440916) (xy 48.530393 77.446559) (xy 48.528476 77.452322) (xy 48.525378 77.45895) (xy 48.510789 77.529092) (xy 48.510514 77.530412) (xy 48.509544 77.534696) (xy 48.492192 77.60561) (xy 48.4915 77.616764) (xy 48.491464 77.616762) (xy 48.491225 77.620755) (xy 48.490851 77.624947) (xy 48.48936 77.632115) (xy 48.489558 77.639432) (xy 48.491454 77.709521) (xy 48.4915 77.712928) (xy 48.4915 79.2155) (xy 48.471498 79.283621) (xy 48.417842 79.330114) (xy 48.3655 79.3415) (xy 47.951866 79.3415) (xy 47.889684 79.348255) (xy 47.753295 79.399385) (xy 47.636739 79.486739) (xy 47.549385 79.603295) (xy 47.498255 79.739684) (xy 47.4915 79.801866) (xy 47.4915 81.698134) (xy 47.498255 81.760316) (xy 47.549385 81.896705) (xy 47.636739 82.013261) (xy 47.753295 82.100615) (xy 47.889684 82.151745) (xy 47.951866 82.1585) (xy 50.548134 82.1585) (xy 50.610316 82.151745) (xy 50.746705 82.100615) (xy 50.863261 82.013261) (xy 50.950615 81.896705) (xy 50.953768 81.888295) (xy 50.965509 81.856976) (xy 51.00815 81.800211) (xy 51.074712 81.775511) (xy 51.144061 81.790718) (xy 51.190635 81.834902) (xy 51.233327 81.903891) (xy 51.248884 81.929031) (xy 51.254066 81.934204) (xy 51.371997 82.051929) (xy 51.369891 82.054039) (xy 51.40314 82.100903) (xy 51.406396 82.171825) (xy 51.373094 82.231002) (xy 50.434867 83.169228) (xy 49.4995 84.104595) (xy 49.437188 84.138621) (xy 49.410405 84.1415) (xy 49.287928 84.1415) (xy 49.284682 84.141837) (xy 49.284678 84.141837) (xy 49.190765 84.151581) (xy 49.190761 84.151582) (xy 49.183907 84.152293) (xy 49.177371 84.154474) (xy 49.177369 84.154474) (xy 49.064336 84.192185) (xy 49.018893 84.207346) (xy 48.870969 84.298884) (xy 48.865796 84.304066) (xy 48.753242 84.416816) (xy 48.753238 84.416821) (xy 48.748071 84.421997) (xy 48.744231 84.428227) (xy 48.74423 84.428228) (xy 48.661624 84.56224) (xy 48.656791 84.57008) (xy 48.602026 84.735191) (xy 48.601326 84.742027) (xy 48.601325 84.74203) (xy 48.597111 84.783166) (xy 48.5915 84.837928) (xy 48.5915 85.412072) (xy 48.591837 85.415318) (xy 48.591837 85.415322) (xy 48.601298 85.5065) (xy 48.602293 85.516093) (xy 48.604474 85.522629) (xy 48.604474 85.522631) (xy 48.637478 85.621556) (xy 48.657346 85.681107) (xy 48.748884 85.829031) (xy 48.754066 85.834204) (xy 48.866816 85.946758) (xy 48.866821 85.946762) (xy 48.871997 85.951929) (xy 48.878227 85.955769) (xy 48.878228 85.95577) (xy 49.010392 86.037237) (xy 49.02008 86.043209) (xy 49.185191 86.097974) (xy 49.192027 86.098674) (xy 49.19203 86.098675) (xy 49.243526 86.103951) (xy 49.287928 86.1085) (xy 49.507906 86.1085) (xy 49.576027 86.128502) (xy 49.597001 86.145405) (xy 49.979595 86.527999) (xy 50.013621 86.590311) (xy 50.0165 86.617094) (xy 50.0165 90.0255) (xy 49.996498 90.093621) (xy 49.942842 90.140114) (xy 49.8905 90.1515) (xy 48.631866 90.1515) (xy 48.569684 90.158255) (xy 48.433295 90.209385) (xy 48.335565 90.28263) (xy 48.269059 90.307478) (xy 48.199676 90.292425) (xy 48.184435 90.28263) (xy 48.086705 90.209385) (xy 47.950316 90.158255) (xy 47.888134 90.1515) (xy 46.091866 90.1515) (xy 46.029684 90.158255) (xy 45.893295 90.209385) (xy 45.867563 90.22867) (xy 45.795148 90.282942) (xy 45.728642 90.30779) (xy 45.659259 90.292737) (xy 45.644018 90.282942) (xy 45.553649 90.215214) (xy 45.538054 90.206676) (xy 45.417606 90.161522) (xy 45.402351 90.157895) (xy 45.351486 90.152369) (xy 45.344672 90.152) (xy 44.722115 90.152) (xy 44.706876 90.156475) (xy 44.705671 90.157865) (xy 44.704 90.165548) (xy 44.704 94.649884) (xy 44.708475 94.665123) (xy 44.709865 94.666328) (xy 44.717548 94.667999) (xy 45.344669 94.667999) (xy 45.35149 94.667629) (xy 45.402352 94.662105) (xy 45.417604 94.658479) (xy 45.538054 94.613324) (xy 45.553649 94.604786) (xy 45.644018 94.537058) (xy 45.710525 94.51221) (xy 45.779907 94.527263) (xy 45.795148 94.537058) (xy 45.800848 94.54133) (xy 45.893295 94.610615) (xy 46.029684 94.661745) (xy 46.091866 94.6685) (xy 46.960826 94.6685) (xy 46.965443 94.668585) (xy 47.046673 94.671564) (xy 47.046677 94.671564) (xy 47.051837 94.671753) (xy 47.056957 94.671097) (xy 47.056959 94.671097) (xy 47.069261 94.669521) (xy 47.085271 94.6685) (xy 47.888134 94.6685) (xy 47.950316 94.661745) (xy 48.086705 94.610615) (xy 48.184436 94.53737) (xy 48.250941 94.512522) (xy 48.320324 94.527575) (xy 48.335562 94.537368) (xy 48.433295 94.610615) (xy 48.569684 94.661745) (xy 48.631866 94.6685) (xy 49.500826 94.6685) (xy 49.505443 94.668585) (xy 49.586673 94.671564) (xy 49.586677 94.671564) (xy 49.591837 94.671753) (xy 49.596957 94.671097) (xy 49.596959 94.671097) (xy 49.609261 94.669521) (xy 49.625271 94.6685) (xy 50.428134 94.6685) (xy 50.490316 94.661745) (xy 50.626705 94.610615) (xy 50.724436 94.53737) (xy 50.790941 94.512522) (xy 50.860324 94.527575) (xy 50.875562 94.537368) (xy 50.973295 94.610615) (xy 51.109684 94.661745) (xy 51.171866 94.6685) (xy 52.040826 94.6685) (xy 52.045443 94.668585) (xy 52.126673 94.671564) (xy 52.126677 94.671564) (xy 52.131837 94.671753) (xy 52.136957 94.671097) (xy 52.136959 94.671097) (xy 52.149261 94.669521) (xy 52.165271 94.6685) (xy 52.968134 94.6685) (xy 53.030316 94.661745) (xy 53.166705 94.610615) (xy 53.264436 94.53737) (xy 53.330941 94.512522) (xy 53.400324 94.527575) (xy 53.415562 94.537368) (xy 53.513295 94.610615) (xy 53.649684 94.661745) (xy 53.711866 94.6685) (xy 54.580826 94.6685) (xy 54.585443 94.668585) (xy 54.666673 94.671564) (xy 54.666677 94.671564) (xy 54.671837 94.671753) (xy 54.676957 94.671097) (xy 54.676959 94.671097) (xy 54.689261 94.669521) (xy 54.705271 94.6685) (xy 55.508134 94.6685) (xy 55.570316 94.661745) (xy 55.706705 94.610615) (xy 55.804436 94.53737) (xy 55.870941 94.512522) (xy 55.940324 94.527575) (xy 55.955562 94.537368) (xy 56.053295 94.610615) (xy 56.189684 94.661745) (xy 56.251866 94.6685) (xy 57.7155 94.6685) (xy 57.783621 94.688502) (xy 57.830114 94.742158) (xy 57.8415 94.7945) (xy 57.8415 104.115749) (xy 57.821498 104.18387) (xy 57.804595 104.204844) (xy 55.254844 106.754595) (xy 55.192532 106.788621) (xy 55.165749 106.7915) (xy 43.598136 106.7915) (xy 43.58169 106.790422) (xy 43.558188 106.787328) (xy 43.55 106.78625) (xy 43.541812 106.787328) (xy 43.510129 106.791499) (xy 43.51012 106.7915) (xy 43.510115 106.7915) (xy 43.39115 106.807162) (xy 43.324581 106.834736) (xy 43.243124 106.868476) (xy 43.236573 106.873503) (xy 43.236571 106.873504) (xy 43.19711 106.903784) (xy 43.147928 106.941523) (xy 43.147925 106.941526) (xy 43.116013 106.966013) (xy 43.110983 106.972568) (xy 43.096548 106.991379) (xy 43.085681 107.00377) (xy 40.884856 109.204595) (xy 40.822544 109.238621) (xy 40.795761 109.2415) (xy 39.823136 109.2415) (xy 39.80669 109.240422) (xy 39.783188 109.237328) (xy 39.775 109.23625) (xy 39.766812 109.237328) (xy 39.735129 109.241499) (xy 39.73512 109.2415) (xy 39.735115 109.2415) (xy 39.61615 109.257162) (xy 39.468125 109.318476) (xy 39.461571 109.323505) (xy 39.455623 109.328069) (xy 39.372928 109.391523) (xy 39.372921 109.391529) (xy 39.347566 109.410984) (xy 39.347563 109.410987) (xy 39.341013 109.416013) (xy 39.335983 109.422568) (xy 39.321548 109.441379) (xy 39.310681 109.45377) (xy 39.069856 109.694595) (xy 39.007544 109.728621) (xy 38.980761 109.7315) (xy 38.471866 109.7315) (xy 38.409684 109.738255) (xy 38.273295 109.789385) (xy 38.26611 109.79477) (xy 38.266108 109.794771) (xy 38.210065 109.836773) (xy 38.143558 109.861621) (xy 38.074176 109.846568) (xy 38.023946 109.796394) (xy 38.0085 109.735947) (xy 38.0085 106.501) (xy 38.028502 106.432879) (xy 38.082158 106.386386) (xy 38.1345 106.375) (xy 43.875 106.375) (xy 43.875 106.175) (xy 44.4 106.175) (xy 52.525 106.175) (xy 52.525 103.225) (xy 44.4 103.225) (xy 44.4 106.175) (xy 43.875 106.175) (xy 43.875 98) (xy 38.1345 98) (xy 38.066379 97.979998) (xy 38.019886 97.926342) (xy 38.0085 97.874) (xy 38.0085 94.664053) (xy 38.028502 94.595932) (xy 38.082158 94.549439) (xy 38.152432 94.539335) (xy 38.210065 94.563227) (xy 38.25378 94.595989) (xy 38.273295 94.610615) (xy 38.409684 94.661745) (xy 38.471866 94.6685) (xy 39.340826 94.6685) (xy 39.345443 94.668585) (xy 39.426673 94.671564) (xy 39.426677 94.671564) (xy 39.431837 94.671753) (xy 39.436957 94.671097) (xy 39.436959 94.671097) (xy 39.449261 94.669521) (xy 39.465271 94.6685) (xy 40.268134 94.6685) (xy 40.330316 94.661745) (xy 40.466705 94.610615) (xy 40.564436 94.53737) (xy 40.630941 94.512522) (xy 40.700324 94.527575) (xy 40.715562 94.537368) (xy 40.813295 94.610615) (xy 40.949684 94.661745) (xy 41.011866 94.6685) (xy 41.880826 94.6685) (xy 41.885443 94.668585) (xy 41.966673 94.671564) (xy 41.966677 94.671564) (xy 41.971837 94.671753) (xy 41.976957 94.671097) (xy 41.976959 94.671097) (xy 41.989261 94.669521) (xy 42.005271 94.6685) (xy 42.808134 94.6685) (xy 42.870316 94.661745) (xy 43.006705 94.610615) (xy 43.099152 94.54133) (xy 43.104852 94.537058) (xy 43.171358 94.51221) (xy 43.240741 94.527263) (xy 43.255982 94.537058) (xy 43.346351 94.604786) (xy 43.361946 94.613324) (xy 43.482394 94.658478) (xy 43.497649 94.662105) (xy 43.548514 94.667631) (xy 43.555328 94.668) (xy 44.177885 94.668) (xy 44.193124 94.663525) (xy 44.194329 94.662135) (xy 44.196 94.654452) (xy 44.196 90.170116) (xy 44.191525 90.154877) (xy 44.190135 90.153672) (xy 44.182452 90.152001) (xy 43.555331 90.152001) (xy 43.54851 90.152371) (xy 43.497648 90.157895) (xy 43.482396 90.161521) (xy 43.361946 90.206676) (xy 43.346351 90.215214) (xy 43.255982 90.282942) (xy 43.189475 90.30779) (xy 43.120093 90.292737) (xy 43.104852 90.282942) (xy 43.032437 90.22867) (xy 43.006705 90.209385) (xy 42.870316 90.158255) (xy 42.808134 90.1515) (xy 42.7945 90.1515) (xy 42.726379 90.131498) (xy 42.679886 90.077842) (xy 42.6685 90.0255) (xy 42.6685 89.456371) (xy 42.688502 89.38825) (xy 42.705405 89.367276) (xy 44.976411 87.09627) (xy 44.990823 87.083884) (xy 45.002418 87.075351) (xy 45.002423 87.075346) (xy 45.008318 87.071008) (xy 45.013057 87.06543) (xy 45.01306 87.065427) (xy 45.042535 87.030732) (xy 45.049465 87.023216) (xy 45.05516 87.017521) (xy 45.066163 87.003614) (xy 45.072781 86.995249) (xy 45.075572 86.991845) (xy 45.118091 86.941797) (xy 45.118092 86.941795) (xy 45.122833 86.936215) (xy 45.126161 86.929699) (xy 45.12952 86.924662) (xy 45.132694 86.919523) (xy 45.137234 86.913784) (xy 45.148724 86.889198) (xy 45.168136 86.847663) (xy 45.170069 86.843709) (xy 45.173739 86.836521) (xy 45.203269 86.778692) (xy 45.20501 86.771576) (xy 45.207104 86.765946) (xy 45.209023 86.760179) (xy 45.212121 86.75355) (xy 45.217653 86.726957) (xy 45.226982 86.682104) (xy 45.227953 86.677815) (xy 45.239358 86.631206) (xy 45.245308 86.60689) (xy 45.246 86.595736) (xy 45.246036 86.595738) (xy 45.246275 86.591748) (xy 45.24665 86.58755) (xy 45.24814 86.580385) (xy 45.246046 86.502979) (xy 45.246 86.499572) (xy 45.246 86.089034) (xy 45.266002 86.020913) (xy 45.319658 85.97442) (xy 45.389932 85.964316) (xy 45.450091 85.990151) (xy 45.45354 85.992875) (xy 45.589063 86.076412) (xy 45.602241 86.082556) (xy 45.753766 86.132815) (xy 45.767132 86.135681) (xy 45.85977 86.145172) (xy 45.866185 86.1455) (xy 45.940385 86.1455) (xy 45.955624 86.141025) (xy 45.956829 86.139635) (xy 45.9585 86.131952) (xy 45.9585 86.127385) (xy 46.4665 86.127385) (xy 46.470975 86.142624) (xy 46.472365 86.143829) (xy 46.480048 86.1455) (xy 46.558766 86.1455) (xy 46.565282 86.145163) (xy 46.659132 86.135425) (xy 46.672528 86.132532) (xy 46.823953 86.082012) (xy 46.837115 86.075847) (xy 46.972492 85.992074) (xy 46.98389 85.98304) (xy 47.096363 85.870371) (xy 47.105375 85.85896) (xy 47.188912 85.723437) (xy 47.195056 85.710259) (xy 47.245315 85.558734) (xy 47.248181 85.545368) (xy 47.257672 85.45273) (xy 47.258 85.446315) (xy 47.258 85.434615) (xy 47.253525 85.419376) (xy 47.252135 85.418171) (xy 47.244452 85.4165) (xy 46.484615 85.4165) (xy 46.469376 85.420975) (xy 46.468171 85.422365) (xy 46.4665 85.430048) (xy 46.4665 86.127385) (xy 45.9585 86.127385) (xy 45.9585 84.890385) (xy 46.4665 84.890385) (xy 46.470975 84.905624) (xy 46.472365 84.906829) (xy 46.480048 84.9085) (xy 47.239885 84.9085) (xy 47.255124 84.904025) (xy 47.256329 84.902635) (xy 47.258 84.894952) (xy 47.258 84.878734) (xy 47.257663 84.872218) (xy 47.247925 84.778368) (xy 47.245032 84.764972) (xy 47.194512 84.613547) (xy 47.188347 84.600385) (xy 47.104574 84.465008) (xy 47.09554 84.45361) (xy 46.982871 84.341137) (xy 46.97146 84.332125) (xy 46.835937 84.248588) (xy 46.822759 84.242444) (xy 46.671234 84.192185) (xy 46.657868 84.189319) (xy 46.56523 84.179828) (xy 46.558815 84.1795) (xy 46.484615 84.1795) (xy 46.469376 84.183975) (xy 46.468171 84.185365) (xy 46.4665 84.193048) (xy 46.4665 84.890385) (xy 45.9585 84.890385) (xy 45.9585 84.537941) (xy 45.958999 84.52674) (xy 45.95915 84.52505) (xy 45.96064 84.517885) (xy 45.958546 84.440479) (xy 45.9585 84.437072) (xy 45.9585 82.2845) (xy 45.978502 82.216379) (xy 46.032158 82.169886) (xy 46.0845 82.1585) (xy 46.548134 82.1585) (xy 46.610316 82.151745) (xy 46.746705 82.100615) (xy 46.863261 82.013261) (xy 46.950615 81.896705) (xy 47.001745 81.760316) (xy 47.0085 81.698134) (xy 47.0085 79.801866) (xy 47.001745 79.739684) (xy 46.950615 79.603295) (xy 46.863261 79.486739) (xy 46.746705 79.399385) (xy 46.610316 79.348255) (xy 46.548134 79.3415) (xy 43.951866 79.3415) (xy 43.889684 79.348255) (xy 43.753295 79.399385) (xy 43.636739 79.486739) (xy 43.549385 79.603295) (xy 43.498255 79.739684) (xy 43.4915 79.801866) (xy 43.4915 81.698134) (xy 43.498255 81.760316) (xy 43.549385 81.896705) (xy 43.636739 82.013261) (xy 43.753295 82.100615) (xy 43.889684 82.151745) (xy 43.951866 82.1585) (xy 44.3155 82.1585) (xy 44.383621 82.178502) (xy 44.430114 82.232158) (xy 44.4415 82.2845) (xy 44.4415 84.053) (xy 44.421498 84.121121) (xy 44.367842 84.167614) (xy 44.3155 84.179) (xy 44.137928 84.179) (xy 44.134682 84.179337) (xy 44.134678 84.179337) (xy 44.040765 84.189081) (xy 44.040761 84.189082) (xy 44.033907 84.189793) (xy 44.027371 84.191974) (xy 44.027369 84.191974) (xy 43.898861 84.234848) (xy 43.868893 84.244846) (xy 43.720969 84.336384) (xy 43.715796 84.341566) (xy 43.603242 84.454316) (xy 43.603238 84.454321) (xy 43.598071 84.459497) (xy 43.594231 84.465727) (xy 43.59423 84.465728) (xy 43.574482 84.497765) (xy 43.521709 84.545259) (xy 43.451638 84.556681) (xy 43.386514 84.528407) (xy 43.36008 84.497954) (xy 43.351116 84.483469) (xy 43.345934 84.478296) (xy 43.233184 84.365742) (xy 43.233179 84.365738) (xy 43.228003 84.360571) (xy 43.217166 84.353891) (xy 43.08615 84.273131) (xy 43.086148 84.27313) (xy 43.07992 84.269291) (xy 42.914809 84.214526) (xy 42.907973 84.213826) (xy 42.90797 84.213825) (xy 42.856474 84.208549) (xy 42.812072 84.204) (xy 42.7345 84.204) (xy 42.666379 84.183998) (xy 42.619886 84.130342) (xy 42.6085 84.078) (xy 42.6085 80.173136) (xy 42.609578 80.15669) (xy 42.612281 80.136162) (xy 42.61375 80.125) (xy 42.6085 80.08512) (xy 42.6085 80.085115) (xy 42.593689 79.972615) (xy 42.592838 79.966149) (xy 42.531524 79.818124) (xy 42.458478 79.722929) (xy 42.458474 79.722925) (xy 42.458471 79.722921) (xy 42.439016 79.697566) (xy 42.439013 79.697563) (xy 42.433987 79.691013) (xy 42.427432 79.685983) (xy 42.408621 79.671548) (xy 42.39623 79.660681) (xy 42.346763 79.611214) (xy 42.312737 79.548902) (xy 42.317802 79.478087) (xy 42.346763 79.433024) (xy 42.467749 79.312038) (xy 42.472294 79.305548) (xy 42.590899 79.136162) (xy 42.5909 79.13616) (xy 42.594056 79.131653) (xy 42.596379 79.126671) (xy 42.596382 79.126666) (xy 42.655029 79.000896) (xy 42.68712 78.932076) (xy 42.744115 78.719371) (xy 42.763307 78.5) (xy 42.744115 78.280629) (xy 42.68712 78.067924) (xy 42.635442 77.957099) (xy 42.596382 77.873334) (xy 42.596379 77.873329) (xy 42.594056 77.868347) (xy 42.587126 77.85845) (xy 42.470908 77.692473) (xy 42.470906 77.69247) (xy 42.467749 77.687962) (xy 42.312038 77.532251) (xy 42.271358 77.503766) (xy 42.21669 77.465487) (xy 42.131654 77.405944) (xy 41.932076 77.31288) (xy 41.719371 77.255885) (xy 41.5 77.236693) (xy 41.280629 77.255885) (xy 41.067924 77.31288) (xy 40.995598 77.346606) (xy 40.873334 77.403618) (xy 40.873329 77.403621) (xy 40.868347 77.405944) (xy 40.86384 77.4091) (xy 40.863838 77.409101) (xy 40.692473 77.529092) (xy 40.69247 77.529094) (xy 40.687962 77.532251) (xy 40.532251 77.687962) (xy 40.529094 77.69247) (xy 40.529092 77.692473) (xy 40.412874 77.85845) (xy 40.405944 77.868347) (xy 40.403621 77.873329) (xy 40.403618 77.873334) (xy 40.364558 77.957099) (xy 40.31288 78.067924) (xy 40.255885 78.280629) (xy 40.236693 78.5) (xy 40.255885 78.719371) (xy 40.31288 78.932076) (xy 40.344971 79.000896) (xy 40.403618 79.126666) (xy 40.403621 79.126671) (xy 40.405944 79.131653) (xy 40.4091 79.13616) (xy 40.409101 79.136162) (xy 40.527707 79.305548) (xy 40.532251 79.312038) (xy 40.687962 79.467749) (xy 40.692471 79.470906) (xy 40.692473 79.470908) (xy 40.838166 79.572924) (xy 40.882494 79.628382) (xy 40.890817 79.65969) (xy 40.8915 79.66488) (xy 40.8915 79.664885) (xy 40.901357 79.73975) (xy 40.90156 79.741294) (xy 40.90156 79.741296) (xy 40.904785 79.765791) (xy 40.907162 79.783851) (xy 40.968476 79.931876) (xy 40.973503 79.938427) (xy 40.973504 79.938429) (xy 41.04152 80.027069) (xy 41.041526 80.027075) (xy 41.066013 80.058987) (xy 41.072568 80.064017) (xy 41.091379 80.078452) (xy 41.10377 80.089319) (xy 41.117095 80.102644) (xy 41.151121 80.164956) (xy 41.154 80.191739) (xy 41.154 81.2405) (xy 41.133998 81.308621) (xy 41.080342 81.355114) (xy 41.028 81.3665) (xy 39.710116 81.3665) (xy 39.694877 81.370975) (xy 39.693672 81.372365) (xy 39.692001 81.380048) (xy 39.692001 81.484595) (xy 39.692338 81.491114) (xy 39.702257 81.586706) (xy 39.705149 81.6001) (xy 39.756588 81.754284) (xy 39.762761 81.767462) (xy 39.848063 81.905307) (xy 39.857099 81.916708) (xy 39.971828 82.031238) (xy 39.980762 82.038294) (xy 40.021823 82.096212) (xy 40.025053 82.167135) (xy 39.989426 82.228546) (xy 39.981593 82.235346) (xy 39.975652 82.239022) (xy 39.850695 82.364197) (xy 39.846855 82.370427) (xy 39.846854 82.370428) (xy 39.7628 82.506789) (xy 39.757885 82.514762) (xy 39.702203 82.682639) (xy 39.701503 82.689475) (xy 39.701502 82.689478) (xy 39.699553 82.7085) (xy 39.6915 82.7871) (xy 39.6915 83.5379) (xy 39.691837 83.541146) (xy 39.691837 83.54115) (xy 39.70012 83.620974) (xy 39.702474 83.643666) (xy 39.704655 83.650202) (xy 39.704655 83.650204) (xy 39.739483 83.754595) (xy 39.75845 83.811446) (xy 39.851522 83.961848) (xy 39.856704 83.967021) (xy 39.885956 83.996222) (xy 39.976697 84.086805) (xy 39.982927 84.090645) (xy 39.982928 84.090646) (xy 40.022449 84.115007) (xy 40.069942 84.167779) (xy 40.081366 84.237851) (xy 40.053092 84.302975) (xy 40.022638 84.32941) (xy 39.970969 84.361384) (xy 39.965796 84.366566) (xy 39.853242 84.479316) (xy 39.853238 84.479321) (xy 39.848071 84.484497) (xy 39.844231 84.490727) (xy 39.84423 84.490728) (xy 39.761322 84.62523) (xy 39.756791 84.63258) (xy 39.702026 84.797691) (xy 39.701326 84.804527) (xy 39.701325 84.80453) (xy 39.699851 84.818922) (xy 39.6915 84.900428) (xy 39.6915 85.474572) (xy 39.691837 85.477818) (xy 39.691837 85.477822) (xy 39.701484 85.570793) (xy 39.702293 85.578593) (xy 39.704474 85.585129) (xy 39.704474 85.585131) (xy 39.73554 85.678246) (xy 39.757346 85.743607) (xy 39.848884 85.891531) (xy 39.854066 85.896704) (xy 39.966816 86.009258) (xy 39.966821 86.009262) (xy 39.971997 86.014429) (xy 39.978227 86.018269) (xy 39.978228 86.01827) (xy 40.110478 86.09979) (xy 40.12008 86.105709) (xy 40.285191 86.160474) (xy 40.292027 86.161174) (xy 40.29203 86.161175) (xy 40.343526 86.166451) (xy 40.387928 86.171) (xy 40.987072 86.171) (xy 40.990318 86.170663) (xy 40.990322 86.170663) (xy 41.084235 86.160919) (xy 41.084239 86.160918) (xy 41.091093 86.160207) (xy 41.097629 86.158026) (xy 41.097631 86.158026) (xy 41.247061 86.108172) (xy 41.256107 86.105154) (xy 41.404031 86.013616) (xy 41.421179 85.996438) (xy 41.510747 85.906714) (xy 41.57303 85.872635) (xy 41.64385 85.877638) (xy 41.688937 85.906559) (xy 41.791812 86.009254) (xy 41.791817 86.009258) (xy 41.796997 86.014429) (xy 41.803227 86.018269) (xy 41.803228 86.01827) (xy 41.935478 86.09979) (xy 41.94508 86.105709) (xy 42.110191 86.160474) (xy 42.117027 86.161174) (xy 42.11703 86.161175) (xy 42.168526 86.166451) (xy 42.212928 86.171) (xy 42.7405 86.171) (xy 42.808621 86.191002) (xy 42.855114 86.244658) (xy 42.8665 86.297) (xy 42.8665 86.345761) (xy 42.846498 86.413882) (xy 42.829595 86.434856) (xy 40.903766 88.360685) (xy 40.891375 88.371552) (xy 40.866013 88.391013) (xy 40.841526 88.422925) (xy 40.841523 88.422928) (xy 40.832866 88.43421) (xy 40.777346 88.506565) (xy 40.768476 88.518124) (xy 40.710185 88.658851) (xy 40.707162 88.66615) (xy 40.6915 88.785115) (xy 40.6915 88.78512) (xy 40.68625 88.825) (xy 40.687899 88.837522) (xy 40.690422 88.85669) (xy 40.6915 88.873136) (xy 40.6915 89.2905) (xy 40.671498 89.358621) (xy 40.617842 89.405114) (xy 40.5655 89.4165) (xy 39.773136 89.4165) (xy 39.756693 89.415422) (xy 39.725 89.41125) (xy 39.716811 89.412328) (xy 39.685126 89.416499) (xy 39.685117 89.4165) (xy 39.685115 89.4165) (xy 39.685109 89.416501) (xy 39.685107 89.416501) (xy 39.585543 89.429609) (xy 39.574336 89.431084) (xy 39.574334 89.431085) (xy 39.566149 89.432162) (xy 39.418124 89.493476) (xy 39.404709 89.50377) (xy 39.322937 89.566515) (xy 39.322921 89.566529) (xy 39.297566 89.585984) (xy 39.297563 89.585987) (xy 39.291013 89.591013) (xy 39.285983 89.597568) (xy 39.271548 89.616379) (xy 39.260681 89.62877) (xy 38.973766 89.915685) (xy 38.961375 89.926552) (xy 38.936013 89.946013) (xy 38.911526 89.977925) (xy 38.911523 89.977928) (xy 38.911517 89.977936) (xy 38.843933 90.066013) (xy 38.838476 90.073124) (xy 38.835316 90.080753) (xy 38.831185 90.087908) (xy 38.828188 90.086178) (xy 38.793688 90.128995) (xy 38.721821 90.1515) (xy 38.471866 90.1515) (xy 38.409684 90.158255) (xy 38.273295 90.209385) (xy 38.26611 90.21477) (xy 38.266108 90.214771) (xy 38.210065 90.256773) (xy 38.143558 90.281621) (xy 38.074176 90.266568) (xy 38.023946 90.216394) (xy 38.0085 90.155947) (xy 38.0085 80.840385) (xy 39.692 80.840385) (xy 39.696475 80.855624) (xy 39.697865 80.856829) (xy 39.705548 80.8585) (xy 40.627885 80.8585) (xy 40.643124 80.854025) (xy 40.644329 80.852635) (xy 40.646 80.844952) (xy 40.646 80.047616) (xy 40.641525 80.032377) (xy 40.640135 80.031172) (xy 40.632452 80.029501) (xy 40.402905 80.029501) (xy 40.396386 80.029838) (xy 40.300794 80.039757) (xy 40.2874 80.042649) (xy 40.133216 80.094088) (xy 40.120038 80.100261) (xy 39.982193 80.185563) (xy 39.970792 80.194599) (xy 39.856261 80.309329) (xy 39.847249 80.32074) (xy 39.762184 80.458743) (xy 39.756037 80.471924) (xy 39.704862 80.62621) (xy 39.701995 80.639586) (xy 39.692328 80.733938) (xy 39.692 80.740355) (xy 39.692 80.840385) (xy 38.0085 80.840385) (xy 38.0085 73.525) (xy 45.61125 73.525) (xy 45.6165 73.56488) (xy 45.6165 73.564885) (xy 45.623954 73.621498) (xy 45.62875 73.657928) (xy 45.62875 73.657931) (xy 45.63019 73.668868) (xy 45.632162 73.683851) (xy 45.635321 73.691477) (xy 45.635321 73.691478) (xy 45.648182 73.722526) (xy 45.693476 73.831876) (xy 45.698503 73.838427) (xy 45.698504 73.838429) (xy 45.76652 73.927069) (xy 45.766526 73.927075) (xy 45.791013 73.958987) (xy 45.797568 73.964017) (xy 45.816379 73.978452) (xy 45.82877 73.989319) (xy 46.485685 74.646234) (xy 46.496552 74.658625) (xy 46.516013 74.683987) (xy 46.522563 74.689013) (xy 46.547921 74.708471) (xy 46.547937 74.708485) (xy 46.595365 74.744877) (xy 46.643124 74.781524) (xy 46.791149 74.842838) (xy 46.799336 74.843916) (xy 46.799337 74.843916) (xy 46.810542 74.845391) (xy 46.818951 74.846498) (xy 46.910115 74.8585) (xy 46.910118 74.8585) (xy 46.910126 74.858501) (xy 46.941811 74.862672) (xy 46.95 74.86375) (xy 46.981693 74.859578) (xy 46.998136 74.8585) (xy 47.9615 74.8585) (xy 48.029621 74.878502) (xy 48.076114 74.932158) (xy 48.0875 74.9845) (xy 48.0875 75.002134) (xy 48.094255 75.064316) (xy 48.145385 75.200705) (xy 48.232739 75.317261) (xy 48.349295 75.404615) (xy 48.485684 75.455745) (xy 48.547866 75.4625) (xy 50.052134 75.4625) (xy 50.114316 75.455745) (xy 50.250705 75.404615) (xy 50.367261 75.317261) (xy 50.454615 75.200705) (xy 50.505745 75.064316) (xy 50.5125 75.002134) (xy 50.5125 73.497866) (xy 50.505745 73.435684) (xy 50.454615 73.299295) (xy 50.367261 73.182739) (xy 50.250705 73.095385) (xy 50.114316 73.044255) (xy 50.052134 73.0375) (xy 49.972523 73.0375) (xy 49.904402 73.017498) (xy 49.857909 72.963842) (xy 49.847805 72.893568) (xy 49.877299 72.828988) (xy 49.909525 72.80238) (xy 49.912819 72.800478) (xy 49.94412 72.778561) (xy 49.952495 72.768084) (xy 49.945426 72.754636) (xy 49.312812 72.122022) (xy 49.298868 72.114408) (xy 49.297035 72.114539) (xy 49.29042 72.11879) (xy 48.653852 72.755358) (xy 48.647422 72.767133) (xy 48.656718 72.779148) (xy 48.687181 72.800478) (xy 48.690475 72.80238) (xy 48.691636 72.803598) (xy 48.691685 72.803632) (xy 48.691678 72.803642) (xy 48.739469 72.853762) (xy 48.752907 72.923475) (xy 48.726521 72.989386) (xy 48.66869 73.030569) (xy 48.627477 73.0375) (xy 48.547866 73.0375) (xy 48.485684 73.044255) (xy 48.349295 73.095385) (xy 48.232739 73.182739) (xy 48.145385 73.299295) (xy 48.094255 73.435684) (xy 48.0875 73.497866) (xy 48.0875 73.5155) (xy 48.067498 73.583621) (xy 48.013842 73.630114) (xy 47.9615 73.6415) (xy 47.254239 73.6415) (xy 47.186118 73.621498) (xy 47.165144 73.604595) (xy 46.870405 73.309856) (xy 46.836379 73.247544) (xy 46.8335 73.220761) (xy 46.8335 71.755475) (xy 48.083849 71.755475) (xy 48.101374 71.955789) (xy 48.103276 71.966576) (xy 48.155319 72.160801) (xy 48.159067 72.171097) (xy 48.244042 72.353328) (xy 48.249525 72.362824) (xy 48.271439 72.39412) (xy 48.281916 72.402495) (xy 48.295364 72.395426) (xy 48.927978 71.762812) (xy 48.934356 71.751132) (xy 49.664408 71.751132) (xy 49.664539 71.752965) (xy 49.66879 71.75958) (xy 50.305358 72.396148) (xy 50.317133 72.402578) (xy 50.329148 72.393282) (xy 50.350475 72.362824) (xy 50.355958 72.353328) (xy 50.440933 72.171097) (xy 50.444681 72.160801) (xy 50.496724 71.966576) (xy 50.498626 71.955789) (xy 50.516151 71.755475) (xy 50.516151 71.744525) (xy 50.498626 71.544211) (xy 50.496724 71.533424) (xy 50.444681 71.339199) (xy 50.440933 71.328903) (xy 50.355958 71.146672) (xy 50.350475 71.137176) (xy 50.328561 71.10588) (xy 50.318084 71.097505) (xy 50.304636 71.104574) (xy 49.672022 71.737188) (xy 49.664408 71.751132) (xy 48.934356 71.751132) (xy 48.935592 71.748868) (xy 48.935461 71.747035) (xy 48.93121 71.74042) (xy 48.294642 71.103852) (xy 48.282867 71.097422) (xy 48.270852 71.106718) (xy 48.249525 71.137176) (xy 48.244042 71.146672) (xy 48.159067 71.328903) (xy 48.155319 71.339199) (xy 48.103276 71.533424) (xy 48.101374 71.544211) (xy 48.083849 71.744525) (xy 48.083849 71.755475) (xy 46.8335 71.755475) (xy 46.8335 70.267133) (xy 48.647422 70.267133) (xy 48.656718 70.279148) (xy 48.687176 70.300475) (xy 48.696672 70.305958) (xy 48.867905 70.385805) (xy 48.92119 70.432722) (xy 48.940651 70.501) (xy 48.920109 70.56896) (xy 48.867905 70.614195) (xy 48.696672 70.694042) (xy 48.687176 70.699525) (xy 48.65588 70.721439) (xy 48.647505 70.731916) (xy 48.654574 70.745364) (xy 49.287188 71.377978) (xy 49.301132 71.385592) (xy 49.302965 71.385461) (xy 49.30958 71.38121) (xy 49.946148 70.744642) (xy 49.952578 70.732867) (xy 49.943282 70.720852) (xy 49.912824 70.699525) (xy 49.903328 70.694042) (xy 49.732095 70.614195) (xy 49.67881 70.567278) (xy 49.659349 70.499) (xy 49.679891 70.43104) (xy 49.732095 70.385805) (xy 49.903328 70.305958) (xy 49.912824 70.300475) (xy 49.94412 70.278561) (xy 49.952495 70.268084) (xy 49.945426 70.254636) (xy 49.312812 69.622022) (xy 49.298868 69.614408) (xy 49.297035 69.614539) (xy 49.29042 69.61879) (xy 48.653852 70.255358) (xy 48.647422 70.267133) (xy 46.8335 70.267133) (xy 46.8335 69.255475) (xy 48.083849 69.255475) (xy 48.101374 69.455789) (xy 48.103276 69.466576) (xy 48.155319 69.660801) (xy 48.159067 69.671097) (xy 48.244042 69.853328) (xy 48.249525 69.862824) (xy 48.271439 69.89412) (xy 48.281916 69.902495) (xy 48.295364 69.895426) (xy 48.927978 69.262812) (xy 48.934356 69.251132) (xy 49.664408 69.251132) (xy 49.664539 69.252965) (xy 49.66879 69.25958) (xy 50.305358 69.896148) (xy 50.317133 69.902578) (xy 50.329148 69.893282) (xy 50.350475 69.862824) (xy 50.355958 69.853328) (xy 50.440933 69.671097) (xy 50.444681 69.660801) (xy 50.496724 69.466576) (xy 50.498626 69.455789) (xy 50.516151 69.255475) (xy 50.516151 69.244525) (xy 50.498626 69.044211) (xy 50.496724 69.033424) (xy 50.444681 68.839199) (xy 50.440933 68.828903) (xy 50.355958 68.646672) (xy 50.350475 68.637176) (xy 50.328561 68.60588) (xy 50.318084 68.597505) (xy 50.304636 68.604574) (xy 49.672022 69.237188) (xy 49.664408 69.251132) (xy 48.934356 69.251132) (xy 48.935592 69.248868) (xy 48.935461 69.247035) (xy 48.93121 69.24042) (xy 48.294642 68.603852) (xy 48.282867 68.597422) (xy 48.270852 68.606718) (xy 48.249525 68.637176) (xy 48.244042 68.646672) (xy 48.159067 68.828903) (xy 48.155319 68.839199) (xy 48.103276 69.033424) (xy 48.101374 69.044211) (xy 48.083849 69.244525) (xy 48.083849 69.255475) (xy 46.8335 69.255475) (xy 46.8335 66.78969) (xy 48.037037 66.78969) (xy 48.064025 67.012715) (xy 48.130082 67.227435) (xy 48.132652 67.232415) (xy 48.132654 67.232419) (xy 48.206967 67.376398) (xy 48.233118 67.427064) (xy 48.369877 67.605292) (xy 48.536036 67.756485) (xy 48.540783 67.759463) (xy 48.540786 67.759465) (xy 48.677789 67.845406) (xy 48.726344 67.875864) (xy 48.807335 67.908422) (xy 48.863079 67.952389) (xy 48.886204 68.019514) (xy 48.869367 68.088485) (xy 48.813588 68.139524) (xy 48.696672 68.194042) (xy 48.687176 68.199525) (xy 48.65588 68.221439) (xy 48.647505 68.231916) (xy 48.654574 68.245364) (xy 49.287188 68.877978) (xy 49.301132 68.885592) (xy 49.302965 68.885461) (xy 49.30958 68.88121) (xy 49.946148 68.244642) (xy 49.952578 68.232867) (xy 49.936125 68.2116) (xy 49.910261 68.145482) (xy 49.92425 68.075877) (xy 49.97365 68.024885) (xy 50.035782 68.0085) (xy 50.676523 68.0085) (xy 50.744644 68.028502) (xy 50.765618 68.045405) (xy 54.045472 71.325259) (xy 54.05634 71.337651) (xy 54.066462 71.350843) (xy 54.066469 71.350851) (xy 54.069877 71.355292) (xy 54.109669 71.3915) (xy 54.130185 71.410168) (xy 54.13448 71.414267) (xy 54.150411 71.430198) (xy 54.170427 71.446934) (xy 54.174376 71.450379) (xy 54.231879 71.502703) (xy 54.231883 71.502706) (xy 54.236036 71.506485) (xy 54.240791 71.509468) (xy 54.240794 71.50947) (xy 54.251224 71.516012) (xy 54.265097 71.526091) (xy 54.274545 71.533992) (xy 54.274552 71.533997) (xy 54.278854 71.537594) (xy 54.348458 71.577295) (xy 54.35124 71.578882) (xy 54.355759 71.581587) (xy 54.363523 71.586457) (xy 54.421596 71.622886) (xy 54.421599 71.622888) (xy 54.426344 71.625864) (xy 54.431549 71.627957) (xy 54.431552 71.627958) (xy 54.442979 71.632552) (xy 54.458411 71.640012) (xy 54.469119 71.64612) (xy 54.469128 71.646124) (xy 54.473993 71.648899) (xy 54.47927 71.650768) (xy 54.479275 71.65077) (xy 54.552542 71.676715) (xy 54.557478 71.67858) (xy 54.590394 71.691812) (xy 54.634783 71.709656) (xy 54.64027 71.710792) (xy 54.640272 71.710793) (xy 54.652349 71.713294) (xy 54.668844 71.717899) (xy 54.685759 71.723889) (xy 54.76801 71.737359) (xy 54.77318 71.738317) (xy 54.796391 71.743124) (xy 54.843912 71.752965) (xy 54.854767 71.755213) (xy 54.859379 71.755479) (xy 54.85938 71.755479) (xy 54.882548 71.756815) (xy 54.895653 71.758262) (xy 54.90191 71.759286) (xy 54.901914 71.759286) (xy 54.907457 71.760194) (xy 54.91307 71.760106) (xy 54.913072 71.760106) (xy 55.014264 71.758516) (xy 55.016243 71.7585) (xy 58.3405 71.7585) (xy 58.408621 71.778502) (xy 58.455114 71.832158) (xy 58.4665 71.8845) (xy 58.4665 73.0254) (xy 58.466837 73.028646) (xy 58.466837 73.02865) (xy 58.476598 73.122721) (xy 58.477474 73.131165) (xy 58.479655 73.137701) (xy 58.479655 73.137703) (xy 58.514651 73.242599) (xy 58.53345 73.298945) (xy 58.626522 73.449348) (xy 58.751697 73.574305) (xy 58.757927 73.578145) (xy 58.757928 73.578146) (xy 58.89509 73.662694) (xy 58.902262 73.667115) (xy 58.975715 73.691478) (xy 59.063611 73.720632) (xy 59.063613 73.720632) (xy 59.070139 73.722797) (xy 59.076975 73.723497) (xy 59.076978 73.723498) (xy 59.111892 73.727075) (xy 59.1746 73.7335) (xy 60.8754 73.7335) (xy 60.878646 73.733163) (xy 60.87865 73.733163) (xy 60.974307 73.723238) (xy 60.974311 73.723237) (xy 60.981165 73.722526) (xy 60.987701 73.720345) (xy 60.987703 73.720345) (xy 61.121624 73.675665) (xy 61.148945 73.66655) (xy 61.299348 73.573478) (xy 61.309957 73.562851) (xy 61.419134 73.453483) (xy 61.424305 73.448303) (xy 61.429154 73.440436) (xy 61.513275 73.303968) (xy 61.513276 73.303966) (xy 61.517115 73.297738) (xy 61.56033 73.167449) (xy 61.570632 73.136389) (xy 61.570632 73.136387) (xy 61.572797 73.129861) (xy 61.5835 73.0254) (xy 61.5835 67.9746) (xy 61.582865 67.968476) (xy 61.573238 67.875693) (xy 61.573237 67.875689) (xy 61.572526 67.868835) (xy 61.569242 67.85899) (xy 61.518868 67.708003) (xy 61.51655 67.701055) (xy 61.423478 67.550652) (xy 61.298303 67.425695) (xy 61.218329 67.376398) (xy 61.153968 67.336725) (xy 61.153966 67.336724) (xy 61.147738 67.332885) (xy 60.999838 67.283829) (xy 60.986389 67.279368) (xy 60.986387 67.279368) (xy 60.979861 67.277203) (xy 60.973025 67.276503) (xy 60.973022 67.276502) (xy 60.929969 67.272091) (xy 60.8754 67.2665) (xy 59.1746 67.2665) (xy 59.171354 67.266837) (xy 59.17135 67.266837) (xy 59.075693 67.276762) (xy 59.075689 67.276763) (xy 59.068835 67.277474) (xy 59.062299 67.279655) (xy 59.062297 67.279655) (xy 58.956929 67.314809) (xy 58.901055 67.33345) (xy 58.750652 67.426522) (xy 58.625695 67.551697) (xy 58.621855 67.557927) (xy 58.621854 67.557928) (xy 58.543627 67.684836) (xy 58.532885 67.702262) (xy 58.519333 67.74312) (xy 58.483385 67.851502) (xy 58.477203 67.870139) (xy 58.476503 67.876975) (xy 58.476502 67.876978) (xy 58.473148 67.909712) (xy 58.4665 67.9746) (xy 58.4665 69.1155) (xy 58.446498 69.183621) (xy 58.392842 69.230114) (xy 58.3405 69.2415) (xy 55.573477 69.2415) (xy 55.505356 69.221498) (xy 55.484382 69.204595) (xy 53.856863 67.577075) (xy 52.204525 65.924737) (xy 52.193657 65.912346) (xy 52.183533 65.899152) (xy 52.180123 65.894708) (xy 52.119826 65.839842) (xy 52.115531 65.835743) (xy 52.09959 65.819802) (xy 52.093335 65.814572) (xy 52.079577 65.803068) (xy 52.075602 65.7996) (xy 52.018112 65.747288) (xy 52.018103 65.747281) (xy 52.013964 65.743515) (xy 52.006198 65.738643) (xy 51.998775 65.733987) (xy 51.984907 65.723911) (xy 51.975451 65.716004) (xy 51.975441 65.715997) (xy 51.971146 65.712406) (xy 51.898752 65.671113) (xy 51.894232 65.668408) (xy 51.889836 65.66565) (xy 51.848268 65.639575) (xy 51.828404 65.627114) (xy 51.828401 65.627112) (xy 51.823656 65.624136) (xy 51.818451 65.622043) (xy 51.818448 65.622042) (xy 51.807021 65.617448) (xy 51.791589 65.609988) (xy 51.780881 65.60388) (xy 51.780872 65.603876) (xy 51.776007 65.601101) (xy 51.77073 65.599232) (xy 51.770725 65.59923) (xy 51.697458 65.573285) (xy 51.692522 65.57142) (xy 51.620416 65.542434) (xy 51.615217 65.540344) (xy 51.60973 65.539208) (xy 51.609728 65.539207) (xy 51.597651 65.536706) (xy 51.581156 65.532101) (xy 51.564241 65.526111) (xy 51.48199 65.512641) (xy 51.47682 65.511683) (xy 51.409797 65.497803) (xy 51.399758 65.495724) (xy 51.399757 65.495724) (xy 51.395233 65.494787) (xy 51.390621 65.494521) (xy 51.39062 65.494521) (xy 51.367452 65.493185) (xy 51.354347 65.491738) (xy 51.34809 65.490714) (xy 51.348086 65.490714) (xy 51.342543 65.489806) (xy 51.33693 65.489894) (xy 51.336928 65.489894) (xy 51.235736 65.491484) (xy 51.233757 65.4915) (xy 49.243001 65.4915) (xy 49.240214 65.491749) (xy 49.240208 65.491749) (xy 49.172376 65.497803) (xy 49.076238 65.506383) (xy 49.070824 65.507864) (xy 49.070819 65.507865) (xy 48.965397 65.536706) (xy 48.859549 65.565663) (xy 48.854491 65.568075) (xy 48.854487 65.568077) (xy 48.781264 65.603003) (xy 48.656782 65.662378) (xy 48.474346 65.793471) (xy 48.43349 65.835631) (xy 48.322347 65.950322) (xy 48.318008 65.954799) (xy 48.19271 66.141262) (xy 48.102412 66.346967) (xy 48.101103 66.352418) (xy 48.101102 66.352422) (xy 48.067033 66.494329) (xy 48.049968 66.565411) (xy 48.037037 66.78969) (xy 46.8335 66.78969) (xy 46.8335 63.754239) (xy 46.853502 63.686118) (xy 46.870405 63.665144) (xy 47.090144 63.445405) (xy 47.152456 63.411379) (xy 47.179239 63.4085) (xy 48.024141 63.4085) (xy 48.092262 63.428502) (xy 48.127354 63.46223) (xy 48.229088 63.607522) (xy 48.229092 63.607527) (xy 48.232251 63.612038) (xy 48.387962 63.767749) (xy 48.392471 63.770906) (xy 48.392473 63.770908) (xy 48.467241 63.823261) (xy 48.568346 63.894056) (xy 48.767924 63.98712) (xy 48.980629 64.044115) (xy 49.2 64.063307) (xy 49.419371 64.044115) (xy 49.632076 63.98712) (xy 49.831654 63.894056) (xy 49.932759 63.823261) (xy 50.007527 63.770908) (xy 50.007529 63.770906) (xy 50.012038 63.767749) (xy 50.167749 63.612038) (xy 50.170912 63.607522) (xy 50.290899 63.436162) (xy 50.2909 63.43616) (xy 50.294056 63.431653) (xy 50.296379 63.426671) (xy 50.296382 63.426666) (xy 50.355445 63.300004) (xy 50.38712 63.232076) (xy 50.444115 63.019371) (xy 50.463307 62.8) (xy 50.444115 62.580629) (xy 50.38712 62.367924) (xy 50.322488 62.229319) (xy 50.296382 62.173334) (xy 50.296379 62.173329) (xy 50.294056 62.168347) (xy 50.287119 62.15844) (xy 50.170908 61.992473) (xy 50.170906 61.99247) (xy 50.167749 61.987962) (xy 50.012038 61.832251) (xy 50.005785 61.827872) (xy 49.901386 61.754771) (xy 49.831654 61.705944) (xy 49.632076 61.61288) (xy 49.419371 61.555885) (xy 49.2 61.536693) (xy 48.980629 61.555885) (xy 48.767924 61.61288) (xy 48.680561 61.653618) (xy 48.573334 61.703618) (xy 48.573329 61.703621) (xy 48.568347 61.705944) (xy 48.56384 61.7091) (xy 48.563838 61.709101) (xy 48.392473 61.829092) (xy 48.39247 61.829094) (xy 48.387962 61.832251) (xy 48.232251 61.987962) (xy 48.229093 61.992472) (xy 48.229088 61.992478) (xy 48.127354 62.13777) (xy 48.071897 62.182099) (xy 48.024141 62.1915) (xy 46.923136 62.1915) (xy 46.906693 62.190422) (xy 46.875 62.18625) (xy 46.866811 62.187328) (xy 46.835126 62.191499) (xy 46.835117 62.1915) (xy 46.835115 62.1915) (xy 46.835109 62.191501) (xy 46.835107 62.191501) (xy 46.737745 62.204319) (xy 46.724337 62.206084) (xy 46.724336 62.206084) (xy 46.716149 62.207162) (xy 46.568124 62.268476) (xy 46.554451 62.278968) (xy 46.472937 62.341515) (xy 46.472921 62.341529) (xy 46.447566 62.360984) (xy 46.447563 62.360987) (xy 46.441013 62.366013) (xy 46.422696 62.389885) (xy 46.42155 62.391378) (xy 46.410682 62.403769) (xy 45.828766 62.985685) (xy 45.816375 62.996552) (xy 45.791013 63.016013) (xy 45.766526 63.047925) (xy 45.766523 63.047928) (xy 45.766517 63.047936) (xy 45.735778 63.087996) (xy 45.693476 63.143124) (xy 45.632162 63.291149) (xy 45.631085 63.299335) (xy 45.631084 63.299337) (xy 45.630997 63.3) (xy 45.630996 63.3) (xy 45.630997 63.300003) (xy 45.6165 63.410115) (xy 45.6165 63.41012) (xy 45.61125 63.45) (xy 45.614342 63.473483) (xy 45.615422 63.48169) (xy 45.6165 63.498136) (xy 45.6165 73.476864) (xy 45.615422 73.493307) (xy 45.61125 73.525) (xy 38.0085 73.525) (xy 38.0085 59.05325) (xy 38.010246 59.032345) (xy 38.01277 59.017344) (xy 38.01277 59.017341) (xy 38.013576 59.012552) (xy 38.013729 59) (xy 38.013039 58.995184) (xy 38.013039 58.995178) (xy 38.011387 58.983644) (xy 38.010234 58.960284) (xy 38.011808 58.924247) (xy 38.025352 58.614035) (xy 38.02631 58.603086) (xy 38.044174 58.467396) (xy 38.076019 58.225502) (xy 38.077927 58.214685) (xy 38.07841 58.21251) (xy 38.160353 57.842885) (xy 38.163198 57.832268) (xy 38.277718 57.469061) (xy 38.281474 57.458739) (xy 38.288606 57.441522) (xy 38.42722 57.106877) (xy 38.431862 57.096924) (xy 38.607705 56.759133) (xy 38.613201 56.749613) (xy 38.81782 56.428426) (xy 38.824124 56.419422) (xy 39.055962 56.117284) (xy 39.063028 56.108863) (xy 39.320314 55.828086) (xy 39.328086 55.820314) (xy 39.608863 55.563028) (xy 39.617284 55.555962) (xy 39.919422 55.324124) (xy 39.928426 55.31782) (xy 40.249613 55.113201) (xy 40.259133 55.107705) (xy 40.596933 54.931858) (xy 40.606877 54.92722) (xy 40.958746 54.781471) (xy 40.969061 54.777718) (xy 41.332269 54.663198) (xy 41.342886 54.660353) (xy 41.714693 54.577926) (xy 41.725502 54.576019) (xy 42.103087 54.52631) (xy 42.114035 54.525352) (xy 42.456554 54.510397) (xy 42.481429 54.511777) (xy 42.493724 54.513691) (xy 42.502626 54.512527) (xy 42.502628 54.512527) (xy 42.521399 54.510072) (xy 42.525286 54.509564) (xy 42.541621 54.5085) (xy 167.450633 54.5085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 75.113882 129.228502) (xy 75.134856 129.245405) (xy 75.479595 129.590144) (xy 75.513621 129.652456) (xy 75.5165 129.679239) (xy 75.5165 130.376864) (xy 75.515422 130.393307) (xy 75.51125 130.425) (xy 75.5165 130.46488) (xy 75.5165 130.464885) (xy 75.523349 130.516908) (xy 75.532162 130.583851) (xy 75.593476 130.731876) (xy 75.598503 130.738427) (xy 75.598504 130.738429) (xy 75.662138 130.821357) (xy 75.666523 130.827072) (xy 75.666526 130.827075) (xy 75.691013 130.858987) (xy 75.697568 130.864017) (xy 75.716379 130.878452) (xy 75.72877 130.889319) (xy 76.214416 131.374965) (xy 76.248442 131.437277) (xy 76.243377 131.508092) (xy 76.20083 131.564928) (xy 76.13431 131.589739) (xy 76.125321 131.59006) (xy 73.267805 131.59006) (xy 73.199684 131.570058) (xy 73.17871 131.553155) (xy 72.70865 131.083095) (xy 72.674624 131.020783) (xy 72.679689 130.949968) (xy 72.722236 130.893132) (xy 72.788756 130.868321) (xy 72.797745 130.868) (xy 73.413983 130.867999) (xy 73.41892 130.867805) (xy 73.447336 130.86557) (xy 73.459931 130.86327) (xy 73.60579 130.820893) (xy 73.620221 130.814648) (xy 73.749678 130.738089) (xy 73.762104 130.728449) (xy 73.868449 130.622104) (xy 73.878089 130.609678) (xy 73.954648 130.480221) (xy 73.960893 130.46579) (xy 73.999939 130.331395) (xy 73.999899 130.317294) (xy 73.99263 130.314) (xy 72.397 130.314) (xy 72.328879 130.293998) (xy 72.282386 130.240342) (xy 72.271 130.188) (xy 72.271 129.932) (xy 72.291002 129.863879) (xy 72.344658 129.817386) (xy 72.397 129.806) (xy 73.986878 129.806) (xy 74.000409 129.802027) (xy 74.001544 129.794129) (xy 73.960893 129.65421) (xy 73.954648 129.639779) (xy 73.878089 129.510323) (xy 73.872129 129.50264) (xy 73.84618 129.436556) (xy 73.860078 129.366933) (xy 73.870421 129.350839) (xy 73.874453 129.346807) (xy 73.919665 129.270358) (xy 73.971555 129.221908) (xy 74.028116 129.2085) (xy 75.045761 129.2085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.198876 130.378502) (xy 82.21985 130.395405) (xy 82.79989 130.975445) (xy 82.833916 131.037757) (xy 82.828851 131.108572) (xy 82.786304 131.165408) (xy 82.719784 131.190219) (xy 82.710795 131.19054) (xy 77.803279 131.19054) (xy 77.735158 131.170538) (xy 77.714184 131.153635) (xy 77.644144 131.083595) (xy 77.610118 131.021283) (xy 77.615183 130.950468) (xy 77.65773 130.893632) (xy 77.72425 130.868821) (xy 77.733239 130.8685) (xy 78.366502 130.8685) (xy 78.36895 130.868307) (xy 78.368958 130.868307) (xy 78.397421 130.866067) (xy 78.397426 130.866066) (xy 78.403831 130.865562) (xy 78.509371 130.8349) (xy 78.555988 130.821357) (xy 78.55599 130.821356) (xy 78.563601 130.819145) (xy 78.610346 130.7915) (xy 78.69998 130.738491) (xy 78.699983 130.738489) (xy 78.706807 130.734453) (xy 78.763324 130.677936) (xy 78.804201 130.650622) (xy 78.903048 130.609678) (xy 78.946876 130.591524) (xy 78.967547 130.575663) (xy 79.042072 130.518477) (xy 79.042075 130.518474) (xy 79.067437 130.499013) (xy 79.073987 130.493987) (xy 79.093458 130.468613) (xy 79.104316 130.456233) (xy 79.165144 130.395405) (xy 79.227456 130.361379) (xy 79.254239 130.3585) (xy 82.130755 130.3585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 99.177939 115.971462) (xy 99.22742 116.022376) (xy 99.241981 116.081176) (xy 99.241981 125.645281) (xy 99.221979 125.713402) (xy 99.205076 125.734376) (xy 98.527533 126.411918) (xy 97.853766 127.085685) (xy 97.841375 127.096552) (xy 97.816013 127.116013) (xy 97.791526 127.147925) (xy 97.791523 127.147928) (xy 97.790442 127.149337) (xy 97.725779 127.233607) (xy 97.718476 127.243124) (xy 97.657162 127.391149) (xy 97.655997 127.4) (xy 97.655414 127.404426) (xy 97.6415 127.510115) (xy 97.6415 127.51012) (xy 97.638254 127.534781) (xy 97.63625 127.55) (xy 97.637328 127.558188) (xy 97.640422 127.58169) (xy 97.6415 127.598136) (xy 97.6415 130.348105) (xy 97.621498 130.416226) (xy 97.567842 130.462719) (xy 97.497568 130.472823) (xy 97.456824 130.45872) (xy 97.456752 130.458882) (xy 97.450724 130.456198) (xy 97.450722 130.456197) (xy 97.288319 130.383891) (xy 97.288318 130.383891) (xy 97.282288 130.381206) (xy 97.188887 130.361353) (xy 97.101944 130.342872) (xy 97.101939 130.342872) (xy 97.095487 130.3415) (xy 96.904513 130.3415) (xy 96.898061 130.342872) (xy 96.898056 130.342872) (xy 96.811113 130.361353) (xy 96.717712 130.381206) (xy 96.711679 130.383892) (xy 96.711673 130.383894) (xy 96.685267 130.39565) (xy 96.6149 130.405084) (xy 96.550603 130.374976) (xy 96.512791 130.314887) (xy 96.50802 130.280543) (xy 96.50802 118.154719) (xy 96.528022 118.086598) (xy 96.544925 118.065624) (xy 98.415144 116.195405) (xy 98.477456 116.161379) (xy 98.504239 116.1585) (xy 98.595487 116.1585) (xy 98.601939 116.157128) (xy 98.601944 116.157128) (xy 98.688888 116.138647) (xy 98.782288 116.118794) (xy 98.806119 116.108184) (xy 98.950722 116.043803) (xy 98.950724 116.043802) (xy 98.956752 116.041118) (xy 99.036154 115.983429) (xy 99.04192 115.97924) (xy 99.108788 115.955381) ) ) (filled_polygon (layer "F.Cu") (pts (xy 78.800324 114.107575) (xy 78.815562 114.117368) (xy 78.913295 114.190615) (xy 79.049684 114.241745) (xy 79.111866 114.2485) (xy 79.2755 114.2485) (xy 79.343621 114.268502) (xy 79.390114 114.322158) (xy 79.4015 114.3745) (xy 79.4015 116.961864) (xy 79.400422 116.978307) (xy 79.39625 117.01) (xy 79.4015 117.04988) (xy 79.4015 117.049885) (xy 79.412262 117.131629) (xy 79.417162 117.168851) (xy 79.478476 117.316876) (xy 79.483503 117.323427) (xy 79.483504 117.323429) (xy 79.55152 117.412069) (xy 79.551526 117.412075) (xy 79.576013 117.443987) (xy 79.582568 117.449017) (xy 79.601379 117.463452) (xy 79.61377 117.474319) (xy 84.935685 122.796234) (xy 84.946552 122.808625) (xy 84.966013 122.833987) (xy 84.979359 122.844228) (xy 84.997925 122.858474) (xy 84.997928 122.858477) (xy 85.070599 122.91424) (xy 85.112466 122.971578) (xy 85.116688 123.042449) (xy 85.081923 123.104352) (xy 85.042113 123.130611) (xy 85.023125 123.138476) (xy 85.002418 123.154365) (xy 84.927928 123.211523) (xy 84.927925 123.211526) (xy 84.896013 123.236013) (xy 84.890983 123.242568) (xy 84.876548 123.261379) (xy 84.865681 123.27377) (xy 84.603766 123.535685) (xy 84.591375 123.546552) (xy 84.566013 123.566013) (xy 84.541526 123.597925) (xy 84.541523 123.597928) (xy 84.541517 123.597936) (xy 84.477168 123.681797) (xy 84.468476 123.693124) (xy 84.407162 123.841149) (xy 84.406685 123.844773) (xy 84.391855 123.957421) (xy 84.3915 123.960116) (xy 84.3915 123.96012) (xy 84.387816 123.988108) (xy 84.38625 124) (xy 84.389937 124.028003) (xy 84.390422 124.03169) (xy 84.3915 124.048136) (xy 84.3915 125.239723) (xy 84.390422 125.256166) (xy 84.38625 125.287859) (xy 84.3915 125.327739) (xy 84.3915 125.327744) (xy 84.403912 125.422019) (xy 84.407162 125.44671) (xy 84.410322 125.45434) (xy 84.410323 125.454342) (xy 84.430454 125.502942) (xy 84.468476 125.594735) (xy 84.473503 125.601286) (xy 84.473504 125.601288) (xy 84.54152 125.689928) (xy 84.541526 125.689934) (xy 84.566013 125.721846) (xy 84.572568 125.726876) (xy 84.591379 125.741311) (xy 84.60377 125.752178) (xy 84.787346 125.935754) (xy 84.798213 125.948145) (xy 84.817674 125.973507) (xy 84.849586 125.997994) (xy 84.849589 125.997997) (xy 84.914408 126.047734) (xy 84.944786 126.071044) (xy 84.96372 126.078887) (xy 85.018999 126.123435) (xy 85.0415 126.195295) (xy 85.0415 126.316694) (xy 85.021498 126.384815) (xy 84.967842 126.431308) (xy 84.897568 126.441412) (xy 84.832988 126.411918) (xy 84.806381 126.379694) (xy 84.786662 126.34554) (xy 84.73904 126.263056) (xy 84.72544 126.247951) (xy 84.615675 126.126045) (xy 84.615674 126.126044) (xy 84.611253 126.121134) (xy 84.490605 126.033478) (xy 84.462094 126.012763) (xy 84.462093 126.012762) (xy 84.456752 126.008882) (xy 84.450724 126.006198) (xy 84.450722 126.006197) (xy 84.288319 125.933891) (xy 84.288318 125.933891) (xy 84.282288 125.931206) (xy 84.188887 125.911353) (xy 84.101944 125.892872) (xy 84.101939 125.892872) (xy 84.095487 125.8915) (xy 83.904513 125.8915) (xy 83.898061 125.892872) (xy 83.898056 125.892872) (xy 83.811113 125.911353) (xy 83.717712 125.931206) (xy 83.711682 125.933891) (xy 83.711681 125.933891) (xy 83.549278 126.006197) (xy 83.549276 126.006198) (xy 83.543248 126.008882) (xy 83.537907 126.012762) (xy 83.537906 126.012763) (xy 83.509395 126.033478) (xy 83.388747 126.121134) (xy 83.384326 126.126044) (xy 83.384325 126.126045) (xy 83.274561 126.247951) (xy 83.26096 126.263056) (xy 83.213338 126.34554) (xy 83.177457 126.407688) (xy 83.165473 126.428444) (xy 83.106458 126.610072) (xy 83.105768 126.616633) (xy 83.105768 126.616635) (xy 83.099391 126.677309) (xy 83.086496 126.8) (xy 83.087186 126.806565) (xy 83.105363 126.979506) (xy 83.106458 126.989928) (xy 83.165473 127.171556) (xy 83.168776 127.177278) (xy 83.168777 127.177279) (xy 83.196143 127.224678) (xy 83.26096 127.336944) (xy 83.265378 127.341851) (xy 83.265379 127.341852) (xy 83.384325 127.473955) (xy 83.388747 127.478866) (xy 83.446172 127.520588) (xy 83.530272 127.58169) (xy 83.543248 127.591118) (xy 83.549276 127.593802) (xy 83.549278 127.593803) (xy 83.696455 127.65933) (xy 83.717712 127.668794) (xy 83.811112 127.688647) (xy 83.898056 127.707128) (xy 83.898061 127.707128) (xy 83.904513 127.7085) (xy 83.995761 127.7085) (xy 84.063882 127.728502) (xy 84.084856 127.745405) (xy 84.215685 127.876234) (xy 84.226552 127.888625) (xy 84.246013 127.913987) (xy 84.252563 127.919013) (xy 84.277925 127.938474) (xy 84.277928 127.938477) (xy 84.358106 128) (xy 84.373124 128.011524) (xy 84.419794 128.030855) (xy 84.52115 128.072838) (xy 84.640115 128.0885) (xy 84.64012 128.0885) (xy 84.640129 128.088501) (xy 84.671812 128.092672) (xy 84.68 128.09375) (xy 84.711693 128.089578) (xy 84.728136 128.0885) (xy 85.016561 128.0885) (xy 85.084682 128.108502) (xy 85.131175 128.162158) (xy 85.141279 128.232432) (xy 85.125016 128.278636) (xy 85.090855 128.336399) (xy 85.088644 128.34401) (xy 85.088643 128.344012) (xy 85.077347 128.382895) (xy 85.044438 128.496169) (xy 85.043934 128.502574) (xy 85.043933 128.502579) (xy 85.042895 128.515769) (xy 85.0415 128.533498) (xy 85.0415 128.966502) (xy 85.041693 128.96895) (xy 85.041693 128.968958) (xy 85.04208 128.973866) (xy 85.044438 129.003831) (xy 85.090855 129.163601) (xy 85.175547 129.306807) (xy 85.178487 129.309747) (xy 85.20382 129.374266) (xy 85.189921 129.443889) (xy 85.177874 129.462636) (xy 85.17191 129.470324) (xy 85.095352 129.599779) (xy 85.089107 129.61421) (xy 85.050061 129.748605) (xy 85.050101 129.762706) (xy 85.05737 129.766) (xy 87.986878 129.766) (xy 88.000409 129.762027) (xy 88.001544 129.754129) (xy 87.960893 129.61421) (xy 87.954648 129.599779) (xy 87.878089 129.470323) (xy 87.872129 129.46264) (xy 87.84618 129.396556) (xy 87.860078 129.326933) (xy 87.870421 129.310839) (xy 87.874453 129.306807) (xy 87.959145 129.163601) (xy 88.005562 129.003831) (xy 88.007921 128.973866) (xy 88.008307 128.968958) (xy 88.008307 128.96895) (xy 88.0085 128.966502) (xy 88.0085 128.904239) (xy 88.028502 128.836118) (xy 88.045405 128.815144) (xy 88.396234 128.464315) (xy 88.408625 128.453448) (xy 88.427437 128.439013) (xy 88.433987 128.433987) (xy 88.458474 128.402075) (xy 88.45848 128.402069) (xy 88.526496 128.313429) (xy 88.526497 128.313427) (xy 88.531524 128.306876) (xy 88.572826 128.207163) (xy 88.592838 128.15885) (xy 88.6085 128.039885) (xy 88.6085 128.039878) (xy 88.61375 128) (xy 88.609578 127.968307) (xy 88.6085 127.951864) (xy 88.6085 126.869245) (xy 88.628502 126.801124) (xy 88.645405 126.78015) (xy 89.936309 125.489246) (xy 89.998621 125.45522) (xy 90.069436 125.460285) (xy 90.126272 125.502832) (xy 90.151083 125.569352) (xy 90.135992 125.638726) (xy 90.128361 125.650379) (xy 90.125547 125.653193) (xy 90.040855 125.796399) (xy 90.038644 125.80401) (xy 90.038643 125.804012) (xy 90.032754 125.824282) (xy 89.994438 125.956169) (xy 89.993934 125.962574) (xy 89.993933 125.962579) (xy 89.993073 125.973507) (xy 89.9915 125.993498) (xy 89.9915 126.426502) (xy 89.991693 126.42895) (xy 89.991693 126.428958) (xy 89.993474 126.451581) (xy 89.994438 126.463831) (xy 90.011055 126.521027) (xy 90.036925 126.610072) (xy 90.040855 126.623601) (xy 90.125547 126.766807) (xy 90.128487 126.769747) (xy 90.15382 126.834266) (xy 90.139921 126.903889) (xy 90.127874 126.922636) (xy 90.12191 126.930324) (xy 90.045352 127.059779) (xy 90.039107 127.07421) (xy 90.000061 127.208605) (xy 90.000101 127.222706) (xy 90.00737 127.226) (xy 91.603 127.226) (xy 91.671121 127.246002) (xy 91.717614 127.299658) (xy 91.729 127.352) (xy 91.729 127.608) (xy 91.708998 127.676121) (xy 91.655342 127.722614) (xy 91.603 127.734) (xy 90.013122 127.734) (xy 89.999591 127.737973) (xy 89.998456 127.745872) (xy 90.001928 127.757823) (xy 90.001727 127.828819) (xy 89.963174 127.888436) (xy 89.903985 127.914018) (xy 89.904513 127.9165) (xy 89.717712 127.956206) (xy 89.711682 127.958891) (xy 89.711681 127.958891) (xy 89.549278 128.031197) (xy 89.549276 128.031198) (xy 89.543248 128.033882) (xy 89.537907 128.037762) (xy 89.537906 128.037763) (xy 89.515496 128.054045) (xy 89.388747 128.146134) (xy 89.384326 128.151044) (xy 89.384325 128.151045) (xy 89.27579 128.271586) (xy 89.26096 128.288056) (xy 89.209395 128.377369) (xy 89.176707 128.433987) (xy 89.165473 128.453444) (xy 89.106458 128.635072) (xy 89.105768 128.641633) (xy 89.105768 128.641635) (xy 89.092611 128.766821) (xy 89.086496 128.825) (xy 89.087186 128.831565) (xy 89.10575 129.008188) (xy 89.106458 129.014928) (xy 89.165473 129.196556) (xy 89.26096 129.361944) (xy 89.265378 129.366851) (xy 89.265379 129.366852) (xy 89.358544 129.470322) (xy 89.388747 129.503866) (xy 89.543248 129.616118) (xy 89.549276 129.618802) (xy 89.549278 129.618803) (xy 89.706549 129.688824) (xy 89.717712 129.693794) (xy 89.854172 129.7228) (xy 89.891697 129.730776) (xy 89.954171 129.764505) (xy 89.988492 129.826654) (xy 89.9915 129.854023) (xy 89.9915 130.236502) (xy 89.991692 130.238947) (xy 89.991693 130.238961) (xy 89.993004 130.255615) (xy 89.978407 130.325095) (xy 89.928565 130.375654) (xy 89.867392 130.3915) (xy 88.125866 130.3915) (xy 88.057745 130.371498) (xy 88.011252 130.317842) (xy 88.003051 130.280395) (xy 88.001521 130.27803) (xy 87.99263 130.274) (xy 85.063122 130.274) (xy 85.049591 130.277973) (xy 85.048806 130.283433) (xy 85.019313 130.348013) (xy 84.959586 130.386396) (xy 84.924089 130.3915) (xy 84.554239 130.3915) (xy 84.486118 130.371498) (xy 84.465144 130.354595) (xy 79.964318 125.853769) (xy 79.95345 125.841377) (xy 79.939017 125.822567) (xy 79.939013 125.822563) (xy 79.933987 125.816013) (xy 79.902075 125.791526) (xy 79.902072 125.791523) (xy 79.86488 125.762984) (xy 79.813429 125.723504) (xy 79.813427 125.723503) (xy 79.806876 125.718476) (xy 79.658851 125.657162) (xy 79.650666 125.656084) (xy 79.650664 125.656084) (xy 79.636799 125.654259) (xy 79.539893 125.641501) (xy 79.539891 125.641501) (xy 79.539885 125.6415) (xy 79.539883 125.6415) (xy 79.539874 125.641499) (xy 79.508189 125.637328) (xy 79.5 125.63625) (xy 79.468307 125.640422) (xy 79.451864 125.6415) (xy 78.983439 125.6415) (xy 78.915318 125.621498) (xy 78.868825 125.567842) (xy 78.858721 125.497568) (xy 78.874984 125.451364) (xy 78.909145 125.393601) (xy 78.911358 125.385986) (xy 78.931767 125.315734) (xy 78.955562 125.233831) (xy 78.956561 125.221148) (xy 78.958307 125.198958) (xy 78.958307 125.19895) (xy 78.9585 125.196502) (xy 78.9585 124.763498) (xy 78.958307 124.761042) (xy 78.956067 124.732579) (xy 78.956066 124.732574) (xy 78.955562 124.726169) (xy 78.919601 124.602388) (xy 78.911357 124.574012) (xy 78.911356 124.57401) (xy 78.909145 124.566399) (xy 78.864865 124.491525) (xy 78.828493 124.430024) (xy 78.828492 124.430023) (xy 78.824453 124.423193) (xy 78.821513 124.420253) (xy 78.79618 124.355734) (xy 78.810079 124.286111) (xy 78.822126 124.267364) (xy 78.82809 124.259676) (xy 78.904648 124.130221) (xy 78.910893 124.11579) (xy 78.949939 123.981395) (xy 78.949899 123.967294) (xy 78.94263 123.964) (xy 76.013122 123.964) (xy 75.98289 123.972877) (xy 75.948394 123.995048) (xy 75.877398 123.99505) (xy 75.823797 123.963248) (xy 75.320405 123.459856) (xy 75.286379 123.397544) (xy 75.2835 123.370761) (xy 75.2835 122.656502) (xy 75.9915 122.656502) (xy 75.991693 122.65895) (xy 75.991693 122.658958) (xy 75.993271 122.679) (xy 75.994438 122.693831) (xy 76.009308 122.745014) (xy 76.035615 122.835563) (xy 76.040855 122.853601) (xy 76.065265 122.894876) (xy 76.110834 122.971928) (xy 76.125547 122.996807) (xy 76.128487 122.999747) (xy 76.15382 123.064266) (xy 76.139921 123.133889) (xy 76.127874 123.152636) (xy 76.12191 123.160324) (xy 76.045352 123.289779) (xy 76.039107 123.30421) (xy 76.000061 123.438605) (xy 76.000101 123.452706) (xy 76.00737 123.456) (xy 78.936878 123.456) (xy 78.950409 123.452027) (xy 78.951544 123.444129) (xy 78.910892 123.304207) (xy 78.902382 123.284542) (xy 78.893684 123.21408) (xy 78.924461 123.150102) (xy 78.984942 123.112919) (xy 79.018018 123.1085) (xy 79.76929 123.1085) (xy 79.837411 123.128502) (xy 79.862926 123.150189) (xy 79.879908 123.169049) (xy 79.888747 123.178866) (xy 79.896331 123.184376) (xy 80.033644 123.28414) (xy 80.043248 123.291118) (xy 80.049276 123.293802) (xy 80.049278 123.293803) (xy 80.20181 123.361714) (xy 80.217712 123.368794) (xy 80.29865 123.385998) (xy 80.398056 123.407128) (xy 80.398061 123.407128) (xy 80.404513 123.4085) (xy 80.595487 123.4085) (xy 80.601939 123.407128) (xy 80.601944 123.407128) (xy 80.70135 123.385998) (xy 80.782288 123.368794) (xy 80.79819 123.361714) (xy 80.950722 123.293803) (xy 80.950724 123.293802) (xy 80.956752 123.291118) (xy 80.966357 123.28414) (xy 81.023575 123.242568) (xy 81.111253 123.178866) (xy 81.14762 123.138476) (xy 81.234621 123.041852) (xy 81.234622 123.041851) (xy 81.23904 123.036944) (xy 81.310718 122.912794) (xy 81.331223 122.877279) (xy 81.331224 122.877278) (xy 81.334527 122.871556) (xy 81.393542 122.689928) (xy 81.39487 122.677298) (xy 81.412814 122.506565) (xy 81.413504 122.5) (xy 81.407682 122.444608) (xy 81.394232 122.316635) (xy 81.394232 122.316633) (xy 81.393542 122.310072) (xy 81.334527 122.128444) (xy 81.23904 121.963056) (xy 81.231172 121.954317) (xy 81.115675 121.826045) (xy 81.115674 121.826044) (xy 81.111253 121.821134) (xy 81.00702 121.745404) (xy 80.962094 121.712763) (xy 80.962093 121.712762) (xy 80.956752 121.708882) (xy 80.950724 121.706198) (xy 80.950722 121.706197) (xy 80.788319 121.633891) (xy 80.788318 121.633891) (xy 80.782288 121.631206) (xy 80.681958 121.60988) (xy 80.601944 121.592872) (xy 80.601939 121.592872) (xy 80.595487 121.5915) (xy 80.404513 121.5915) (xy 80.398061 121.592872) (xy 80.398056 121.592872) (xy 80.318042 121.60988) (xy 80.217712 121.631206) (xy 80.211682 121.633891) (xy 80.211681 121.633891) (xy 80.049278 121.706197) (xy 80.049276 121.706198) (xy 80.043248 121.708882) (xy 80.037907 121.712762) (xy 80.037906 121.712763) (xy 79.940124 121.783806) (xy 79.888747 121.821134) (xy 79.884334 121.826036) (xy 79.884332 121.826037) (xy 79.862926 121.849811) (xy 79.80248 121.88705) (xy 79.76929 121.8915) (xy 78.88495 121.8915) (xy 78.816829 121.871498) (xy 78.795855 121.854595) (xy 78.706807 121.765547) (xy 78.699983 121.761511) (xy 78.69998 121.761509) (xy 78.573665 121.686807) (xy 78.563601 121.680855) (xy 78.555991 121.678644) (xy 78.555986 121.678642) (xy 78.485694 121.658221) (xy 78.425858 121.620008) (xy 78.39618 121.555512) (xy 78.406083 121.48521) (xy 78.452422 121.431421) (xy 78.467938 121.423945) (xy 78.467531 121.423077) (xy 78.474159 121.419972) (xy 78.481107 121.417654) (xy 78.629031 121.326116) (xy 78.644493 121.310627) (xy 78.746758 121.208184) (xy 78.746762 121.208179) (xy 78.751929 121.203003) (xy 78.759208 121.191194) (xy 78.839369 121.06115) (xy 78.83937 121.061148) (xy 78.843209 121.05492) (xy 78.897974 120.889809) (xy 78.899095 120.878873) (xy 78.904975 120.821475) (xy 78.9085 120.787072) (xy 78.9085 120.212928) (xy 78.906527 120.193913) (xy 78.898419 120.115765) (xy 78.898418 120.115761) (xy 78.897707 120.108907) (xy 78.88911 120.083137) (xy 78.844972 119.950841) (xy 78.842654 119.943893) (xy 78.751116 119.795969) (xy 78.736327 119.781206) (xy 78.633184 119.678242) (xy 78.633179 119.678238) (xy 78.628003 119.673071) (xy 78.617757 119.666755) (xy 78.48615 119.585631) (xy 78.486148 119.58563) (xy 78.47992 119.581791) (xy 78.314809 119.527026) (xy 78.307973 119.526326) (xy 78.30797 119.526325) (xy 78.256474 119.521049) (xy 78.212072 119.5165) (xy 77.512928 119.5165) (xy 77.509682 119.516837) (xy 77.509678 119.516837) (xy 77.415765 119.526581) (xy 77.415761 119.526582) (xy 77.408907 119.527293) (xy 77.402371 119.529474) (xy 77.402369 119.529474) (xy 77.310174 119.560233) (xy 77.243893 119.582346) (xy 77.095969 119.673884) (xy 77.090797 119.679065) (xy 77.088727 119.681139) (xy 77.086962 119.682105) (xy 77.085059 119.683613) (xy 77.084801 119.683287) (xy 77.026446 119.715219) (xy 76.955625 119.710218) (xy 76.91053 119.681292) (xy 76.907869 119.678636) (xy 76.89646 119.669625) (xy 76.760937 119.586088) (xy 76.747759 119.579944) (xy 76.596234 119.529685) (xy 76.582868 119.526819) (xy 76.49023 119.517328) (xy 76.483815 119.517) (xy 76.409615 119.517) (xy 76.394376 119.521475) (xy 76.393171 119.522865) (xy 76.3915 119.530548) (xy 76.3915 121.464885) (xy 76.395975 121.480124) (xy 76.397523 121.481466) (xy 76.435906 121.541192) (xy 76.435906 121.612189) (xy 76.397522 121.671915) (xy 76.37916 121.685136) (xy 76.243193 121.765547) (xy 76.125547 121.883193) (xy 76.121511 121.890017) (xy 76.121509 121.89002) (xy 76.063008 121.98894) (xy 76.040855 122.026399) (xy 76.038644 122.03401) (xy 76.038643 122.034012) (xy 76.027306 122.073034) (xy 75.994438 122.186169) (xy 75.993934 122.192574) (xy 75.993933 122.192579) (xy 75.992003 122.217102) (xy 75.9915 122.223498) (xy 75.9915 122.656502) (xy 75.2835 122.656502) (xy 75.2835 121.598136) (xy 75.284578 121.58169) (xy 75.287672 121.558188) (xy 75.28875 121.55) (xy 75.287634 121.541525) (xy 75.283949 121.513531) (xy 75.294889 121.443382) (xy 75.342017 121.390284) (xy 75.410371 121.371094) (xy 75.474987 121.389825) (xy 75.514063 121.413912) (xy 75.527241 121.420056) (xy 75.678766 121.470315) (xy 75.692132 121.473181) (xy 75.78477 121.482672) (xy 75.791185 121.483) (xy 75.865385 121.483) (xy 75.880624 121.478525) (xy 75.881829 121.477135) (xy 75.8835 121.469452) (xy 75.8835 120.772115) (xy 75.879025 120.756876) (xy 75.877635 120.755671) (xy 75.869952 120.754) (xy 75.110115 120.754) (xy 75.094876 120.758475) (xy 75.093671 120.759865) (xy 75.092 120.767548) (xy 75.092 120.783766) (xy 75.092505 120.793524) (xy 75.091724 120.793564) (xy 75.079479 120.860072) (xy 75.030915 120.911861) (xy 74.962062 120.929173) (xy 74.894779 120.906511) (xy 74.877914 120.892365) (xy 74.213434 120.227885) (xy 75.092 120.227885) (xy 75.096475 120.243124) (xy 75.097865 120.244329) (xy 75.105548 120.246) (xy 75.865385 120.246) (xy 75.880624 120.241525) (xy 75.881829 120.240135) (xy 75.8835 120.232452) (xy 75.8835 119.535115) (xy 75.879025 119.519876) (xy 75.877635 119.518671) (xy 75.869952 119.517) (xy 75.791234 119.517) (xy 75.784718 119.517337) (xy 75.690868 119.527075) (xy 75.677472 119.529968) (xy 75.526047 119.580488) (xy 75.512885 119.586653) (xy 75.377508 119.670426) (xy 75.36611 119.67946) (xy 75.253637 119.792129) (xy 75.244625 119.80354) (xy 75.161088 119.939063) (xy 75.154944 119.952241) (xy 75.104685 120.103766) (xy 75.101819 120.117132) (xy 75.092328 120.20977) (xy 75.092 120.216185) (xy 75.092 120.227885) (xy 74.213434 120.227885) (xy 73.434925 119.449376) (xy 73.400899 119.387064) (xy 73.39802 119.360281) (xy 73.39802 115.314719) (xy 73.418022 115.246598) (xy 73.434925 115.225624) (xy 74.375144 114.285405) (xy 74.437456 114.251379) (xy 74.464239 114.2485) (xy 75.828134 114.2485) (xy 75.890316 114.241745) (xy 76.026705 114.190615) (xy 76.124436 114.11737) (xy 76.190941 114.092522) (xy 76.260324 114.107575) (xy 76.275562 114.117368) (xy 76.373295 114.190615) (xy 76.509684 114.241745) (xy 76.571866 114.2485) (xy 78.368134 114.2485) (xy 78.430316 114.241745) (xy 78.566705 114.190615) (xy 78.664436 114.11737) (xy 78.730941 114.092522) ) ) (filled_polygon (layer "F.Cu") (pts (xy 124.696121 125.328502) (xy 124.742614 125.382158) (xy 124.754 125.4345) (xy 124.754 126.589885) (xy 124.758475 126.605124) (xy 124.759865 126.606329) (xy 124.767548 126.608) (xy 124.783766 126.608) (xy 124.790282 126.607663) (xy 124.884132 126.597925) (xy 124.897528 126.595032) (xy 125.048953 126.544512) (xy 125.062115 126.538347) (xy 125.197492 126.454574) (xy 125.20889 126.44554) (xy 125.321363 126.332871) (xy 125.330377 126.321457) (xy 125.394233 126.217862) (xy 125.447004 126.170368) (xy 125.501911 126.159459) (xy 125.501911 126.158) (xy 126.236576 126.158) (xy 126.304697 126.178002) (xy 126.35119 126.231658) (xy 126.361294 126.301932) (xy 126.3318 126.366512) (xy 126.325677 126.373088) (xy 125.689532 127.009234) (xy 125.689527 127.009238) (xy 125.270613 127.428152) (xy 125.260483 127.437242) (xy 125.230975 127.460968) (xy 125.227011 127.465692) (xy 125.198709 127.499421) (xy 125.195528 127.503069) (xy 125.193885 127.504881) (xy 125.191691 127.507075) (xy 125.164358 127.540349) (xy 125.163696 127.541147) (xy 125.103846 127.612474) (xy 125.101278 127.617144) (xy 125.097897 127.621261) (xy 125.089931 127.636118) (xy 125.054023 127.703086) (xy 125.053394 127.704245) (xy 125.011538 127.780381) (xy 125.011535 127.780389) (xy 125.008567 127.785787) (xy 125.006955 127.790869) (xy 125.004438 127.795563) (xy 124.977238 127.884531) (xy 124.976918 127.885559) (xy 124.948765 127.974306) (xy 124.948171 127.979602) (xy 124.946613 127.984698) (xy 124.937257 128.076807) (xy 124.937218 128.077187) (xy 124.937089 128.078393) (xy 124.935956 128.088498) (xy 124.932984 128.115) (xy 124.9315 128.128227) (xy 124.9315 128.131754) (xy 124.931445 128.132739) (xy 124.930998 128.138419) (xy 124.926626 128.181462) (xy 124.929056 128.207163) (xy 124.930941 128.227109) (xy 124.9315 128.238967) (xy 124.9315 128.548965) (xy 124.911498 128.617086) (xy 124.857842 128.663579) (xy 124.787568 128.673683) (xy 124.722988 128.644189) (xy 124.704674 128.62453) (xy 124.633285 128.529276) (xy 124.620724 128.516715) (xy 124.518649 128.440214) (xy 124.503054 128.431676) (xy 124.382606 128.386522) (xy 124.367351 128.382895) (xy 124.316486 128.377369) (xy 124.309672 128.377) (xy 123.672115 128.377) (xy 123.656876 128.381475) (xy 123.655671 128.382865) (xy 123.654 128.390548) (xy 123.654 130.028) (xy 123.633998 130.096121) (xy 123.580342 130.142614) (xy 123.528 130.154) (xy 123.272 130.154) (xy 123.203879 130.133998) (xy 123.157386 130.080342) (xy 123.146 130.028) (xy 123.146 128.395116) (xy 123.141525 128.379877) (xy 123.140135 128.378672) (xy 123.132452 128.377001) (xy 122.7345 128.377001) (xy 122.666379 128.356999) (xy 122.619886 128.303343) (xy 122.6085 128.251001) (xy 122.6085 127.604239) (xy 122.628502 127.536118) (xy 122.645405 127.515144) (xy 123.672259 126.48829) (xy 123.734571 126.454264) (xy 123.805386 126.459329) (xy 123.82747 126.470125) (xy 123.939063 126.538912) (xy 123.952241 126.545056) (xy 124.103766 126.595315) (xy 124.117132 126.598181) (xy 124.20977 126.607672) (xy 124.216185 126.608) (xy 124.227885 126.608) (xy 124.243124 126.603525) (xy 124.244329 126.602135) (xy 124.246 126.594452) (xy 124.246 125.4345) (xy 124.266002 125.366379) (xy 124.319658 125.319886) (xy 124.372 125.3085) (xy 124.628 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 136.196121 125.328502) (xy 136.242614 125.382158) (xy 136.254 125.4345) (xy 136.254 126.589885) (xy 136.258475 126.605124) (xy 136.259865 126.606329) (xy 136.267548 126.608) (xy 136.283766 126.608) (xy 136.290282 126.607663) (xy 136.384132 126.597925) (xy 136.397528 126.595032) (xy 136.548953 126.544512) (xy 136.562115 126.538347) (xy 136.697492 126.454574) (xy 136.70889 126.44554) (xy 136.821363 126.332871) (xy 136.830375 126.32146) (xy 136.864933 126.265397) (xy 136.917706 126.217903) (xy 136.9858 126.20625) (xy 136.998512 126.207631) (xy 137.005328 126.208) (xy 137.786576 126.208) (xy 137.854697 126.228002) (xy 137.90119 126.281658) (xy 137.911294 126.351932) (xy 137.8818 126.416512) (xy 137.875671 126.423095) (xy 137.339545 126.959221) (xy 137.339527 126.959238) (xy 136.870617 127.428149) (xy 136.860473 127.437251) (xy 136.859692 127.437879) (xy 136.836688 127.456375) (xy 136.830975 127.460968) (xy 136.804691 127.492292) (xy 136.798709 127.499421) (xy 136.795528 127.503069) (xy 136.793885 127.504881) (xy 136.791691 127.507075) (xy 136.764358 127.540349) (xy 136.763696 127.541147) (xy 136.703846 127.612474) (xy 136.701278 127.617144) (xy 136.697897 127.621261) (xy 136.689931 127.636118) (xy 136.654023 127.703086) (xy 136.653394 127.704245) (xy 136.611538 127.780381) (xy 136.611535 127.780389) (xy 136.608567 127.785787) (xy 136.606955 127.790869) (xy 136.604438 127.795563) (xy 136.577238 127.884531) (xy 136.576918 127.885559) (xy 136.548765 127.974306) (xy 136.548171 127.979602) (xy 136.546613 127.984698) (xy 136.537257 128.076807) (xy 136.537218 128.077187) (xy 136.537089 128.078393) (xy 136.535956 128.088498) (xy 136.532984 128.115) (xy 136.5315 128.128227) (xy 136.5315 128.131754) (xy 136.531445 128.132739) (xy 136.530998 128.138419) (xy 136.526626 128.181462) (xy 136.529056 128.207163) (xy 136.530941 128.227109) (xy 136.5315 128.238967) (xy 136.5315 128.548965) (xy 136.511498 128.617086) (xy 136.457842 128.663579) (xy 136.387568 128.673683) (xy 136.322988 128.644189) (xy 136.304674 128.62453) (xy 136.233285 128.529276) (xy 136.220724 128.516715) (xy 136.118649 128.440214) (xy 136.103054 128.431676) (xy 135.982606 128.386522) (xy 135.967351 128.382895) (xy 135.916486 128.377369) (xy 135.909672 128.377) (xy 135.272115 128.377) (xy 135.256876 128.381475) (xy 135.255671 128.382865) (xy 135.254 128.390548) (xy 135.254 130.028) (xy 135.233998 130.096121) (xy 135.180342 130.142614) (xy 135.128 130.154) (xy 134.872 130.154) (xy 134.803879 130.133998) (xy 134.757386 130.080342) (xy 134.746 130.028) (xy 134.746 128.466739) (xy 134.766002 128.398618) (xy 134.782905 128.377644) (xy 135.195754 127.964795) (xy 135.208145 127.953928) (xy 135.226957 127.939493) (xy 135.233507 127.934467) (xy 135.257994 127.902555) (xy 135.257997 127.902552) (xy 135.331043 127.807356) (xy 135.331044 127.807355) (xy 135.335929 127.795563) (xy 135.389198 127.666959) (xy 135.392358 127.65933) (xy 135.40802 127.540365) (xy 135.40802 127.540358) (xy 135.41327 127.50048) (xy 135.409098 127.468786) (xy 135.40802 127.452344) (xy 135.40802 126.704931) (xy 135.428022 126.63681) (xy 135.481678 126.590317) (xy 135.551952 126.580213) (xy 135.573688 126.585338) (xy 135.603769 126.595316) (xy 135.617132 126.598181) (xy 135.70977 126.607672) (xy 135.716185 126.608) (xy 135.727885 126.608) (xy 135.743124 126.603525) (xy 135.744329 126.602135) (xy 135.746 126.594452) (xy 135.746 125.4345) (xy 135.766002 125.366379) (xy 135.819658 125.319886) (xy 135.872 125.3085) (xy 136.128 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 101.296121 125.228502) (xy 101.342614 125.282158) (xy 101.354 125.3345) (xy 101.354 126.489885) (xy 101.358475 126.505124) (xy 101.359865 126.506329) (xy 101.367548 126.508) (xy 101.383766 126.508) (xy 101.390282 126.507663) (xy 101.484132 126.497925) (xy 101.497528 126.495032) (xy 101.648953 126.444512) (xy 101.662115 126.438347) (xy 101.797492 126.354574) (xy 101.80889 126.34554) (xy 101.921363 126.232871) (xy 101.930375 126.22146) (xy 101.950432 126.188921) (xy 102.003204 126.141428) (xy 102.073275 126.130004) (xy 102.101921 126.137055) (xy 102.132391 126.148478) (xy 102.147649 126.152105) (xy 102.198514 126.157631) (xy 102.205328 126.158) (xy 103.393775 126.158) (xy 103.461896 126.178002) (xy 103.508389 126.231658) (xy 103.518493 126.301932) (xy 103.488999 126.366512) (xy 103.48287 126.373095) (xy 102.170621 127.685344) (xy 102.160478 127.694446) (xy 102.130975 127.718167) (xy 102.117662 127.734033) (xy 102.098709 127.75662) (xy 102.095528 127.760268) (xy 102.093885 127.76208) (xy 102.091691 127.764274) (xy 102.064358 127.797548) (xy 102.063696 127.798346) (xy 102.003846 127.869673) (xy 102.001278 127.874343) (xy 101.997897 127.87846) (xy 101.976153 127.919013) (xy 101.954023 127.960285) (xy 101.953394 127.961444) (xy 101.911538 128.03758) (xy 101.911535 128.037588) (xy 101.908567 128.042986) (xy 101.906955 128.048068) (xy 101.904438 128.052762) (xy 101.877238 128.14173) (xy 101.876918 128.142758) (xy 101.848765 128.231505) (xy 101.848171 128.236801) (xy 101.846613 128.241897) (xy 101.838436 128.3224) (xy 101.837218 128.334386) (xy 101.837089 128.335592) (xy 101.833895 128.364069) (xy 101.831906 128.381809) (xy 101.8315 128.385426) (xy 101.8315 128.388953) (xy 101.831445 128.389938) (xy 101.830998 128.395618) (xy 101.829034 128.414959) (xy 101.827336 128.431676) (xy 101.826626 128.438661) (xy 101.828024 128.453448) (xy 101.830941 128.484308) (xy 101.8315 128.496166) (xy 101.8315 128.548965) (xy 101.811498 128.617086) (xy 101.757842 128.663579) (xy 101.687568 128.673683) (xy 101.622988 128.644189) (xy 101.604674 128.62453) (xy 101.533285 128.529276) (xy 101.520724 128.516715) (xy 101.418649 128.440214) (xy 101.403054 128.431676) (xy 101.282606 128.386522) (xy 101.267351 128.382895) (xy 101.216486 128.377369) (xy 101.209672 128.377) (xy 100.572115 128.377) (xy 100.556876 128.381475) (xy 100.555671 128.382865) (xy 100.554 128.390548) (xy 100.554 130.028) (xy 100.533998 130.096121) (xy 100.480342 130.142614) (xy 100.428 130.154) (xy 100.172 130.154) (xy 100.103879 130.133998) (xy 100.057386 130.080342) (xy 100.046 130.028) (xy 100.046 128.395116) (xy 100.041525 128.379877) (xy 100.040135 128.378672) (xy 100.032452 128.377001) (xy 99.6345 128.377001) (xy 99.566379 128.356999) (xy 99.519886 128.303343) (xy 99.5085 128.251001) (xy 99.5085 127.769245) (xy 99.528502 127.701124) (xy 99.545405 127.68015) (xy 100.646234 126.579321) (xy 100.658625 126.568454) (xy 100.677437 126.554019) (xy 100.683987 126.548993) (xy 100.689013 126.542443) (xy 100.689421 126.542035) (xy 100.751733 126.508009) (xy 100.791358 126.505786) (xy 100.809768 126.507672) (xy 100.816185 126.508) (xy 100.827885 126.508) (xy 100.843124 126.503525) (xy 100.844329 126.502135) (xy 100.846 126.494452) (xy 100.846 126.258096) (xy 100.847078 126.24165) (xy 100.8585 126.154891) (xy 100.8585 126.154884) (xy 100.860133 126.142483) (xy 100.86375 126.115006) (xy 100.859578 126.083313) (xy 100.8585 126.06687) (xy 100.8585 125.3345) (xy 100.878502 125.266379) (xy 100.932158 125.219886) (xy 100.9845 125.2085) (xy 101.228 125.2085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 112.896121 125.328502) (xy 112.942614 125.382158) (xy 112.954 125.4345) (xy 112.954 126.589885) (xy 112.958475 126.605124) (xy 112.959865 126.606329) (xy 112.967548 126.608) (xy 112.983766 126.608) (xy 112.990282 126.607663) (xy 113.084132 126.597925) (xy 113.097528 126.595032) (xy 113.248953 126.544512) (xy 113.262115 126.538347) (xy 113.397492 126.454574) (xy 113.40889 126.44554) (xy 113.521363 126.332871) (xy 113.530375 126.32146) (xy 113.601402 126.206232) (xy 113.654174 126.158739) (xy 113.724246 126.147315) (xy 113.737812 126.149766) (xy 113.74765 126.152106) (xy 113.798514 126.157631) (xy 113.805328 126.158) (xy 114.736576 126.158) (xy 114.804697 126.178002) (xy 114.85119 126.231658) (xy 114.861294 126.301932) (xy 114.8318 126.366512) (xy 114.825671 126.373095) (xy 113.770621 127.428145) (xy 113.760478 127.437247) (xy 113.759692 127.437879) (xy 113.736688 127.456375) (xy 113.730975 127.460968) (xy 113.704691 127.492292) (xy 113.698709 127.499421) (xy 113.695528 127.503069) (xy 113.693885 127.504881) (xy 113.691691 127.507075) (xy 113.664358 127.540349) (xy 113.663696 127.541147) (xy 113.603846 127.612474) (xy 113.601278 127.617144) (xy 113.597897 127.621261) (xy 113.589931 127.636118) (xy 113.554023 127.703086) (xy 113.553394 127.704245) (xy 113.511538 127.780381) (xy 113.511535 127.780389) (xy 113.508567 127.785787) (xy 113.506955 127.790869) (xy 113.504438 127.795563) (xy 113.477238 127.884531) (xy 113.476918 127.885559) (xy 113.448765 127.974306) (xy 113.448171 127.979602) (xy 113.446613 127.984698) (xy 113.437257 128.076807) (xy 113.437218 128.077187) (xy 113.437089 128.078393) (xy 113.435956 128.088498) (xy 113.432984 128.115) (xy 113.4315 128.128227) (xy 113.4315 128.131754) (xy 113.431445 128.132739) (xy 113.430998 128.138419) (xy 113.426626 128.181462) (xy 113.429056 128.207163) (xy 113.430941 128.227109) (xy 113.4315 128.238967) (xy 113.4315 128.548965) (xy 113.411498 128.617086) (xy 113.357842 128.663579) (xy 113.287568 128.673683) (xy 113.222988 128.644189) (xy 113.204674 128.62453) (xy 113.133285 128.529276) (xy 113.120724 128.516715) (xy 113.018649 128.440214) (xy 113.003054 128.431676) (xy 112.882606 128.386522) (xy 112.867351 128.382895) (xy 112.816486 128.377369) (xy 112.809672 128.377) (xy 112.172115 128.377) (xy 112.156876 128.381475) (xy 112.155671 128.382865) (xy 112.154 128.390548) (xy 112.154 130.028) (xy 112.133998 130.096121) (xy 112.080342 130.142614) (xy 112.028 130.154) (xy 111.772 130.154) (xy 111.703879 130.133998) (xy 111.657386 130.080342) (xy 111.646 130.028) (xy 111.646 128.395116) (xy 111.641525 128.379877) (xy 111.640135 128.378672) (xy 111.632452 128.377001) (xy 111.2345 128.377001) (xy 111.166379 128.356999) (xy 111.119886 128.303343) (xy 111.1085 128.251001) (xy 111.1085 127.704239) (xy 111.128502 127.636118) (xy 111.145405 127.615144) (xy 112.144765 126.615784) (xy 112.207077 126.581758) (xy 112.273525 126.585285) (xy 112.303767 126.595315) (xy 112.317132 126.598181) (xy 112.40977 126.607672) (xy 112.416185 126.608) (xy 112.427885 126.608) (xy 112.443124 126.603525) (xy 112.444329 126.602135) (xy 112.446 126.594452) (xy 112.446 125.4345) (xy 112.466002 125.366379) (xy 112.519658 125.319886) (xy 112.572 125.3085) (xy 112.828 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.013882 126.878502) (xy 70.034856 126.895405) (xy 70.104595 126.965144) (xy 70.138621 127.027456) (xy 70.1415 127.054239) (xy 70.1415 129.39774) (xy 70.121498 129.465861) (xy 70.067842 129.512354) (xy 69.997568 129.522458) (xy 69.967282 129.514149) (xy 69.861475 129.470322) (xy 69.861472 129.470321) (xy 69.853845 129.467162) (xy 69.845658 129.466084) (xy 69.845657 129.466084) (xy 69.823696 129.463193) (xy 69.734887 129.451501) (xy 69.734885 129.451501) (xy 69.734879 129.4515) (xy 69.734877 129.4515) (xy 69.734868 129.451499) (xy 69.703183 129.447328) (xy 69.694994 129.44625) (xy 69.663301 129.450422) (xy 69.646858 129.4515) (xy 68.483439 129.4515) (xy 68.415318 129.431498) (xy 68.368825 129.377842) (xy 68.358721 129.307568) (xy 68.374984 129.261364) (xy 68.409145 129.203601) (xy 68.455562 129.043831) (xy 68.457357 129.021033) (xy 68.458307 129.008958) (xy 68.458307 129.00895) (xy 68.4585 129.006502) (xy 68.4585 128.573498) (xy 68.457911 128.566013) (xy 68.456067 128.542579) (xy 68.456066 128.542574) (xy 68.455562 128.536169) (xy 68.41687 128.402989) (xy 68.411357 128.384012) (xy 68.411356 128.38401) (xy 68.409145 128.376399) (xy 68.362737 128.297928) (xy 68.328493 128.240024) (xy 68.328492 128.240023) (xy 68.324453 128.233193) (xy 68.321513 128.230253) (xy 68.29618 128.165734) (xy 68.310079 128.096111) (xy 68.322126 128.077364) (xy 68.32809 128.069676) (xy 68.404648 127.940221) (xy 68.410893 127.92579) (xy 68.449939 127.791395) (xy 68.449899 127.777294) (xy 68.44263 127.774) (xy 66.847 127.774) (xy 66.778879 127.753998) (xy 66.732386 127.700342) (xy 66.721 127.648) (xy 66.721 127.392) (xy 66.741002 127.323879) (xy 66.794658 127.277386) (xy 66.847 127.266) (xy 68.436878 127.266) (xy 68.450409 127.262027) (xy 68.451544 127.254129) (xy 68.410893 127.11421) (xy 68.404648 127.099779) (xy 68.374404 127.048639) (xy 68.356945 126.979823) (xy 68.379462 126.912492) (xy 68.434806 126.868022) (xy 68.482858 126.8585) (xy 69.945761 126.8585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 79.263882 126.878502) (xy 79.284856 126.895405) (xy 81.315856 128.926405) (xy 81.349882 128.988717) (xy 81.344817 129.059532) (xy 81.30227 129.116368) (xy 81.23575 129.141179) (xy 81.226761 129.1415) (xy 79.084147 129.1415) (xy 79.016026 129.121498) (xy 78.969533 129.067842) (xy 78.958244 129.010561) (xy 78.958307 129.008953) (xy 78.9585 129.006502) (xy 78.9585 128.573498) (xy 78.957911 128.566013) (xy 78.956067 128.542579) (xy 78.956066 128.542574) (xy 78.955562 128.536169) (xy 78.91687 128.402989) (xy 78.911357 128.384012) (xy 78.911356 128.38401) (xy 78.909145 128.376399) (xy 78.862737 128.297928) (xy 78.828493 128.240024) (xy 78.828492 128.240023) (xy 78.824453 128.233193) (xy 78.821513 128.230253) (xy 78.79618 128.165734) (xy 78.810079 128.096111) (xy 78.822126 128.077364) (xy 78.82809 128.069676) (xy 78.904648 127.940221) (xy 78.910893 127.92579) (xy 78.949939 127.791395) (xy 78.949899 127.777294) (xy 78.94263 127.774) (xy 77.347 127.774) (xy 77.278879 127.753998) (xy 77.232386 127.700342) (xy 77.221 127.648) (xy 77.221 127.392) (xy 77.241002 127.323879) (xy 77.294658 127.277386) (xy 77.347 127.266) (xy 78.936878 127.266) (xy 78.950409 127.262027) (xy 78.951544 127.254129) (xy 78.910893 127.11421) (xy 78.904648 127.099779) (xy 78.874404 127.048639) (xy 78.856945 126.979823) (xy 78.879462 126.912492) (xy 78.934806 126.868022) (xy 78.982858 126.8585) (xy 79.195761 126.8585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 74.172646 125.17462) (xy 74.209727 125.200288) (xy 75.129595 126.120156) (xy 75.163621 126.182468) (xy 75.1665 126.209251) (xy 75.1665 126.920761) (xy 75.146498 126.988882) (xy 75.129595 127.009856) (xy 75.084856 127.054595) (xy 75.022544 127.088621) (xy 74.995761 127.0915) (xy 74.022203 127.0915) (xy 73.954082 127.071498) (xy 73.91375 127.02964) (xy 73.878491 126.97002) (xy 73.878489 126.970017) (xy 73.874453 126.963193) (xy 73.871514 126.960254) (xy 73.84618 126.895733) (xy 73.860079 126.82611) (xy 73.872129 126.80736) (xy 73.878089 126.799677) (xy 73.954648 126.670221) (xy 73.960893 126.65579) (xy 73.999939 126.521395) (xy 73.999899 126.507294) (xy 73.99263 126.504) (xy 72.397 126.504) (xy 72.328879 126.483998) (xy 72.282386 126.430342) (xy 72.271 126.378) (xy 72.271 126.122) (xy 72.291002 126.053879) (xy 72.344658 126.007386) (xy 72.397 125.996) (xy 73.986878 125.996) (xy 74.000409 125.992027) (xy 74.001544 125.984129) (xy 73.960893 125.84421) (xy 73.954648 125.829779) (xy 73.878089 125.700323) (xy 73.872129 125.69264) (xy 73.84618 125.626556) (xy 73.860078 125.556933) (xy 73.870421 125.540839) (xy 73.874453 125.536807) (xy 73.959145 125.393601) (xy 73.999636 125.25423) (xy 74.037847 125.194395) (xy 74.102343 125.164717) ) ) (filled_polygon (layer "F.Cu") (pts (xy 64.817012 124.678015) (xy 64.823595 124.684144) (xy 65.515685 125.376234) (xy 65.526552 125.388625) (xy 65.546013 125.413987) (xy 65.550828 125.417682) (xy 65.568792 125.440839) (xy 65.614376 125.517917) (xy 65.625547 125.536807) (xy 65.628225 125.539485) (xy 65.653501 125.603856) (xy 65.639603 125.673479) (xy 65.629428 125.689312) (xy 65.625547 125.693193) (xy 65.540855 125.836399) (xy 65.538644 125.84401) (xy 65.538643 125.844012) (xy 65.528133 125.880189) (xy 65.494438 125.996169) (xy 65.493934 126.002574) (xy 65.493933 126.002579) (xy 65.492092 126.025975) (xy 65.4915 126.033498) (xy 65.4915 126.466502) (xy 65.491693 126.46895) (xy 65.491693 126.468958) (xy 65.4937 126.494452) (xy 65.494438 126.503831) (xy 65.513213 126.568454) (xy 65.538586 126.65579) (xy 65.540855 126.663601) (xy 65.544892 126.670427) (xy 65.61097 126.782158) (xy 65.625547 126.806807) (xy 65.628487 126.809747) (xy 65.65382 126.874266) (xy 65.639921 126.943889) (xy 65.627874 126.962636) (xy 65.62191 126.970325) (xy 65.596444 127.013387) (xy 65.544551 127.061841) (xy 65.474701 127.074547) (xy 65.40907 127.047473) (xy 65.398894 127.038345) (xy 64.645405 126.284856) (xy 64.611379 126.222544) (xy 64.6085 126.195761) (xy 64.6085 124.773239) (xy 64.628502 124.705118) (xy 64.682158 124.658625) (xy 64.752432 124.648521) ) ) (filled_polygon (layer "F.Cu") (pts (xy 135.804581 103.679942) (xy 135.825555 103.696845) (xy 137.555115 105.426405) (xy 137.589141 105.488717) (xy 137.584076 105.559532) (xy 137.541529 105.616368) (xy 137.475009 105.641179) (xy 137.46602 105.6415) (xy 135.73071 105.6415) (xy 135.662589 105.621498) (xy 135.637074 105.599811) (xy 135.615668 105.576037) (xy 135.615666 105.576036) (xy 135.611253 105.571134) (xy 135.496671 105.487885) (xy 135.462094 105.462763) (xy 135.462093 105.462762) (xy 135.456752 105.458882) (xy 135.450724 105.456198) (xy 135.450722 105.456197) (xy 135.288319 105.383891) (xy 135.288318 105.383891) (xy 135.282288 105.381206) (xy 135.188888 105.361353) (xy 135.101944 105.342872) (xy 135.101939 105.342872) (xy 135.095487 105.3415) (xy 134.904513 105.3415) (xy 134.898061 105.342872) (xy 134.898056 105.342872) (xy 134.811112 105.361353) (xy 134.717712 105.381206) (xy 134.711682 105.383891) (xy 134.711681 105.383891) (xy 134.549278 105.456197) (xy 134.549276 105.456198) (xy 134.543248 105.458882) (xy 134.537907 105.462762) (xy 134.537906 105.462763) (xy 134.505131 105.486576) (xy 134.388747 105.571134) (xy 134.384329 105.576041) (xy 134.384325 105.576045) (xy 134.274931 105.69754) (xy 134.26096 105.713056) (xy 134.232834 105.761772) (xy 134.193363 105.830138) (xy 134.165473 105.878444) (xy 134.106458 106.060072) (xy 134.105768 106.066633) (xy 134.105768 106.066635) (xy 134.09281 106.189928) (xy 134.086496 106.25) (xy 134.087186 106.256565) (xy 134.103606 106.412789) (xy 134.106458 106.439928) (xy 134.165473 106.621556) (xy 134.168776 106.627278) (xy 134.168777 106.627279) (xy 134.178399 106.643944) (xy 134.26096 106.786944) (xy 134.265378 106.791851) (xy 134.265379 106.791852) (xy 134.384325 106.923955) (xy 134.388747 106.928866) (xy 134.459409 106.980205) (xy 134.523123 107.026496) (xy 134.543248 107.041118) (xy 134.549276 107.043802) (xy 134.549278 107.043803) (xy 134.706383 107.11375) (xy 134.717712 107.118794) (xy 134.79268 107.134729) (xy 134.898056 107.157128) (xy 134.898061 107.157128) (xy 134.904513 107.1585) (xy 135.095487 107.1585) (xy 135.101939 107.157128) (xy 135.101944 107.157128) (xy 135.20732 107.134729) (xy 135.282288 107.118794) (xy 135.293617 107.11375) (xy 135.450722 107.043803) (xy 135.450724 107.043802) (xy 135.456752 107.041118) (xy 135.476878 107.026496) (xy 135.604205 106.933987) (xy 135.611253 106.928866) (xy 135.620263 106.91886) (xy 135.637074 106.900189) (xy 135.69752 106.86295) (xy 135.73071 106.8585) (xy 138.370014 106.8585) (xy 138.438135 106.878502) (xy 138.459109 106.895405) (xy 142.367417 110.803713) (xy 142.401443 110.866025) (xy 142.398155 110.931743) (xy 142.356458 111.060072) (xy 142.355768 111.066633) (xy 142.355768 111.066635) (xy 142.342644 111.191501) (xy 142.336496 111.25) (xy 142.337186 111.256565) (xy 142.352636 111.40356) (xy 142.356458 111.439928) (xy 142.415473 111.621556) (xy 142.418776 111.627278) (xy 142.418777 111.627279) (xy 142.427003 111.641526) (xy 142.51096 111.786944) (xy 142.515378 111.791851) (xy 142.515379 111.791852) (xy 142.594598 111.879834) (xy 142.638747 111.928866) (xy 142.793248 112.041118) (xy 142.799276 112.043802) (xy 142.799278 112.043803) (xy 142.953575 112.1125) (xy 142.967712 112.118794) (xy 143.061112 112.138647) (xy 143.148056 112.157128) (xy 143.148061 112.157128) (xy 143.154513 112.1585) (xy 143.345487 112.1585) (xy 143.351939 112.157128) (xy 143.351944 112.157128) (xy 143.438888 112.138647) (xy 143.532288 112.118794) (xy 143.538315 112.116111) (xy 143.538323 112.116108) (xy 143.557112 112.107742) (xy 143.627479 112.098307) (xy 143.691777 112.128413) (xy 143.697457 112.133753) (xy 147.642095 116.078391) (xy 147.676121 116.140703) (xy 147.679 116.167486) (xy 147.679 118.03683) (xy 147.658998 118.104951) (xy 147.619303 118.143974) (xy 147.570969 118.173884) (xy 147.565796 118.179066) (xy 147.453242 118.291816) (xy 147.453238 118.291821) (xy 147.448071 118.296997) (xy 147.444231 118.303227) (xy 147.44423 118.303228) (xy 147.360695 118.438747) (xy 147.356791 118.44508) (xy 147.302026 118.610191) (xy 147.301326 118.617027) (xy 147.301325 118.61703) (xy 147.296626 118.662895) (xy 147.2915 118.712928) (xy 147.2915 119.287072) (xy 147.291837 119.290318) (xy 147.291837 119.290322) (xy 147.301502 119.383467) (xy 147.302293 119.391093) (xy 147.304474 119.397629) (xy 147.304474 119.397631) (xy 147.333492 119.484607) (xy 147.357346 119.556107) (xy 147.448884 119.704031) (xy 147.454066 119.709204) (xy 147.535377 119.790373) (xy 147.569456 119.852655) (xy 147.564453 119.923475) (xy 147.535454 119.968642) (xy 147.188071 120.316024) (xy 146.849499 120.654596) (xy 146.787187 120.688621) (xy 146.760404 120.6915) (xy 146.679513 120.6915) (xy 146.673061 120.692872) (xy 146.673056 120.692872) (xy 146.588954 120.710749) (xy 146.492712 120.731206) (xy 146.486682 120.733891) (xy 146.486681 120.733891) (xy 146.324278 120.806197) (xy 146.324276 120.806198) (xy 146.318248 120.808882) (xy 146.312907 120.812762) (xy 146.312906 120.812763) (xy 146.281583 120.835521) (xy 146.163747 120.921134) (xy 146.159326 120.926044) (xy 146.159325 120.926045) (xy 146.04458 121.053483) (xy 146.03596 121.063056) (xy 145.988029 121.146074) (xy 145.946415 121.218153) (xy 145.940473 121.228444) (xy 145.881458 121.410072) (xy 145.880768 121.416633) (xy 145.880768 121.416635) (xy 145.86256 121.589878) (xy 145.861496 121.6) (xy 145.862186 121.606565) (xy 145.879638 121.772607) (xy 145.881458 121.789928) (xy 145.940473 121.971556) (xy 145.943776 121.977278) (xy 145.943777 121.977279) (xy 145.960978 122.007071) (xy 146.03596 122.136944) (xy 146.040378 122.141851) (xy 146.040379 122.141852) (xy 146.144887 122.25792) (xy 146.163747 122.278866) (xy 146.228781 122.326116) (xy 146.312334 122.386821) (xy 146.318248 122.391118) (xy 146.324276 122.393802) (xy 146.324278 122.393803) (xy 146.480801 122.463491) (xy 146.492712 122.468794) (xy 146.586113 122.488647) (xy 146.673056 122.507128) (xy 146.673061 122.507128) (xy 146.679513 122.5085) (xy 146.870487 122.5085) (xy 146.876939 122.507128) (xy 146.876944 122.507128) (xy 146.963887 122.488647) (xy 147.057288 122.468794) (xy 147.069199 122.463491) (xy 147.225722 122.393803) (xy 147.225724 122.393802) (xy 147.231752 122.391118) (xy 147.237667 122.386821) (xy 147.258038 122.37202) (xy 147.324905 122.348162) (xy 147.394057 122.364242) (xy 147.439243 122.407653) (xy 147.48178 122.476391) (xy 147.498884 122.504031) (xy 147.550008 122.555065) (xy 147.55249 122.557543) (xy 147.58657 122.619826) (xy 147.581567 122.690646) (xy 147.539038 122.747543) (xy 147.486739 122.786739) (xy 147.399385 122.903295) (xy 147.348255 123.039684) (xy 147.3415 123.101866) (xy 147.3415 124.098134) (xy 147.348255 124.160316) (xy 147.399385 124.296705) (xy 147.486739 124.413261) (xy 147.603295 124.500615) (xy 147.739684 124.551745) (xy 147.801866 124.5585) (xy 148.363059 124.5585) (xy 148.43118 124.578502) (xy 148.477673 124.632158) (xy 148.487777 124.702432) (xy 148.458283 124.767012) (xy 148.449995 124.774734) (xy 148.450269 124.775008) (xy 148.443919 124.781358) (xy 148.436739 124.786739) (xy 148.349385 124.903295) (xy 148.298255 125.039684) (xy 148.2915 125.101866) (xy 148.2915 126.098134) (xy 148.298255 126.160316) (xy 148.349385 126.296705) (xy 148.406637 126.373095) (xy 148.409546 126.376977) (xy 148.434393 126.443484) (xy 148.41934 126.512866) (xy 148.397814 126.541637) (xy 148.384856 126.554595) (xy 148.322544 126.588621) (xy 148.295761 126.5915) (xy 143.238925 126.5915) (xy 143.170804 126.571498) (xy 143.124311 126.517842) (xy 143.114207 126.447568) (xy 143.143701 126.382988) (xy 143.14983 126.376405) (xy 143.28083 126.245405) (xy 143.343142 126.211379) (xy 143.369925 126.2085) (xy 145.598134 126.2085) (xy 145.660316 126.201745) (xy 145.796705 126.150615) (xy 145.913261 126.063261) (xy 146.000615 125.946705) (xy 146.051745 125.810316) (xy 146.0585 125.748134) (xy 146.0585 123.851866) (xy 146.051745 123.789684) (xy 146.000615 123.653295) (xy 145.913261 123.536739) (xy 145.796705 123.449385) (xy 145.660316 123.398255) (xy 145.598134 123.3915) (xy 144.884274 123.3915) (xy 144.816153 123.371498) (xy 144.76966 123.317842) (xy 144.763277 123.300653) (xy 144.755716 123.274629) (xy 144.740909 123.223664) (xy 144.738456 123.218932) (xy 144.736916 123.213831) (xy 144.726426 123.194101) (xy 144.693269 123.13174) (xy 144.692657 123.130574) (xy 144.652729 123.053547) (xy 144.649892 123.048074) (xy 144.646569 123.043911) (xy 144.644066 123.039204) (xy 144.63756 123.031226) (xy 144.585261 122.967102) (xy 144.584433 122.966075) (xy 144.555469 122.929792) (xy 144.555464 122.929787) (xy 144.553262 122.927028) (xy 144.550761 122.924527) (xy 144.550119 122.923809) (xy 144.546406 122.919461) (xy 144.535078 122.905572) (xy 144.519065 122.885938) (xy 144.514323 122.882015) (xy 144.514321 122.882013) (xy 144.483727 122.856703) (xy 144.474947 122.848713) (xy 143.256854 121.63062) (xy 143.247752 121.620477) (xy 143.247558 121.620235) (xy 143.224032 121.590975) (xy 143.185578 121.558708) (xy 143.181931 121.555528) (xy 143.180119 121.553885) (xy 143.177925 121.551691) (xy 143.144651 121.524358) (xy 143.143853 121.523696) (xy 143.072526 121.463846) (xy 143.067856 121.461278) (xy 143.063739 121.457897) (xy 142.993165 121.420056) (xy 142.981914 121.414023) (xy 142.980755 121.413394) (xy 142.904619 121.371538) (xy 142.904611 121.371535) (xy 142.899213 121.368567) (xy 142.894131 121.366955) (xy 142.889437 121.364438) (xy 142.800469 121.337238) (xy 142.799441 121.336918) (xy 142.710694 121.308765) (xy 142.705398 121.308171) (xy 142.700302 121.306613) (xy 142.607743 121.29721) (xy 142.606607 121.297089) (xy 142.569416 121.292918) (xy 142.56027 121.291892) (xy 142.560266 121.291892) (xy 142.556773 121.2915) (xy 142.553246 121.2915) (xy 142.552261 121.291445) (xy 142.546581 121.290998) (xy 142.517175 121.288011) (xy 142.509663 121.287248) (xy 142.509661 121.287248) (xy 142.503538 121.286626) (xy 142.461259 121.290623) (xy 142.457891 121.290941) (xy 142.446033 121.2915) (xy 142.245226 121.2915) (xy 142.177105 121.271498) (xy 142.130612 121.217842) (xy 142.120508 121.147568) (xy 142.150002 121.082988) (xy 142.169661 121.064674) (xy 142.23108 121.018643) (xy 142.231081 121.018642) (xy 142.238261 121.013261) (xy 142.325615 120.896705) (xy 142.376745 120.760316) (xy 142.3835 120.698134) (xy 142.3835 118.901866) (xy 142.376745 118.839684) (xy 142.369862 118.821322) (xy 142.328767 118.711703) (xy 142.325615 118.703295) (xy 142.238261 118.586739) (xy 142.121705 118.499385) (xy 141.985316 118.448255) (xy 141.923134 118.4415) (xy 140.126866 118.4415) (xy 140.064684 118.448255) (xy 139.928295 118.499385) (xy 139.811739 118.586739) (xy 139.724385 118.703295) (xy 139.721233 118.711703) (xy 139.679919 118.821907) (xy 139.637277 118.878671) (xy 139.570716 118.903371) (xy 139.501367 118.888163) (xy 139.468743 118.862476) (xy 139.418151 118.806875) (xy 139.418142 118.806866) (xy 139.41467 118.803051) (xy 139.410619 118.799852) (xy 139.410615 118.799848) (xy 139.243414 118.6678) (xy 139.24341 118.667798) (xy 139.239359 118.664598) (xy 139.231427 118.660219) (xy 139.187136 118.635769) (xy 139.043789 118.556638) (xy 139.03892 118.554914) (xy 139.038916 118.554912) (xy 138.838087 118.483795) (xy 138.838083 118.483794) (xy 138.833212 118.482069) (xy 138.828119 118.481162) (xy 138.828116 118.481161) (xy 138.618373 118.4438) (xy 138.618367 118.443799) (xy 138.613284 118.442894) (xy 138.539452 118.441992) (xy 138.395081 118.440228) (xy 138.395079 118.440228) (xy 138.389911 118.440165) (xy 138.261987 118.45974) (xy 138.1742 118.473173) (xy 138.174197 118.473174) (xy 138.169091 118.473955) (xy 138.16418 118.47556) (xy 138.163698 118.475675) (xy 138.092797 118.472003) (xy 138.035136 118.430582) (xy 138.009022 118.364563) (xy 138.0085 118.353105) (xy 138.0085 116.5095) (xy 138.028502 116.441379) (xy 138.082158 116.394886) (xy 138.1345 116.3835) (xy 138.187072 116.3835) (xy 138.190318 116.383163) (xy 138.190322 116.383163) (xy 138.284235 116.373419) (xy 138.284239 116.373418) (xy 138.291093 116.372707) (xy 138.297629 116.370526) (xy 138.297631 116.370526) (xy 138.430395 116.326232) (xy 138.456107 116.317654) (xy 138.604031 116.226116) (xy 138.609204 116.220934) (xy 138.710747 116.119214) (xy 138.77303 116.085135) (xy 138.84385 116.090138) (xy 138.888937 116.119059) (xy 138.991812 116.221754) (xy 138.991817 116.221758) (xy 138.996997 116.226929) (xy 139.14508 116.318209) (xy 139.310191 116.372974) (xy 139.317027 116.373674) (xy 139.31703 116.373675) (xy 139.368526 116.378951) (xy 139.412928 116.3835) (xy 140.012072 116.3835) (xy 140.015318 116.383163) (xy 140.015322 116.383163) (xy 140.109235 116.373419) (xy 140.109239 116.373418) (xy 140.116093 116.372707) (xy 140.122629 116.370526) (xy 140.122631 116.370526) (xy 140.255395 116.326232) (xy 140.281107 116.317654) (xy 140.429031 116.226116) (xy 140.434204 116.220934) (xy 140.546758 116.108184) (xy 140.546762 116.108179) (xy 140.551929 116.103003) (xy 140.562943 116.085135) (xy 140.639369 115.96115) (xy 140.63937 115.961148) (xy 140.643209 115.95492) (xy 140.697974 115.789809) (xy 140.69879 115.78185) (xy 140.708172 115.690271) (xy 140.7085 115.687072) (xy 140.7085 115.112928) (xy 140.707145 115.099868) (xy 140.698419 115.015765) (xy 140.698418 115.015761) (xy 140.697707 115.008907) (xy 140.642654 114.843893) (xy 140.551116 114.695969) (xy 140.524346 114.669246) (xy 140.433184 114.578242) (xy 140.433179 114.578238) (xy 140.428003 114.573071) (xy 140.397452 114.554239) (xy 140.28615 114.485631) (xy 140.286148 114.48563) (xy 140.27992 114.481791) (xy 140.114809 114.427026) (xy 140.107973 114.426326) (xy 140.10797 114.426325) (xy 140.056474 114.421049) (xy 140.012072 114.4165) (xy 139.412928 114.4165) (xy 139.409682 114.416837) (xy 139.409678 114.416837) (xy 139.315765 114.426581) (xy 139.315761 114.426582) (xy 139.308907 114.427293) (xy 139.302373 114.429473) (xy 139.302363 114.429475) (xy 139.254528 114.445435) (xy 139.183578 114.448021) (xy 139.125556 114.415007) (xy 138.745405 114.034856) (xy 138.711379 113.972544) (xy 138.7085 113.945761) (xy 138.7085 113.9345) (xy 138.728502 113.866379) (xy 138.782158 113.819886) (xy 138.8345 113.8085) (xy 138.9004 113.8085) (xy 138.903646 113.808163) (xy 138.90365 113.808163) (xy 138.999308 113.798238) (xy 138.999312 113.798237) (xy 139.006166 113.797526) (xy 139.012702 113.795345) (xy 139.012704 113.795345) (xy 139.154205 113.748136) (xy 139.173946 113.74155) (xy 139.324348 113.648478) (xy 139.449305 113.523303) (xy 139.453146 113.517072) (xy 139.538275 113.378968) (xy 139.538276 113.378966) (xy 139.542115 113.372738) (xy 139.585636 113.241526) (xy 139.595632 113.211389) (xy 139.595632 113.211387) (xy 139.597797 113.204861) (xy 139.599984 113.183521) (xy 139.603504 113.149159) (xy 139.6085 113.1004) (xy 139.6085 112.4845) (xy 139.628502 112.416379) (xy 139.682158 112.369886) (xy 139.7345 112.3585) (xy 139.945761 112.3585) (xy 140.013882 112.378502) (xy 140.034856 112.395405) (xy 140.300281 112.66083) (xy 140.334307 112.723142) (xy 140.336841 112.746716) (xy 140.336496 112.75) (xy 140.337186 112.756565) (xy 140.353736 112.914025) (xy 140.356458 112.939928) (xy 140.415473 113.121556) (xy 140.418776 113.127278) (xy 140.418777 113.127279) (xy 140.451249 113.183521) (xy 140.51096 113.286944) (xy 140.515378 113.291851) (xy 140.515379 113.291852) (xy 140.632347 113.421758) (xy 140.638747 113.428866) (xy 140.722725 113.48988) (xy 140.780528 113.531876) (xy 140.793248 113.541118) (xy 140.799276 113.543802) (xy 140.799278 113.543803) (xy 140.961681 113.616109) (xy 140.967712 113.618794) (xy 141.028049 113.631619) (xy 141.148056 113.657128) (xy 141.148061 113.657128) (xy 141.154513 113.6585) (xy 141.345487 113.6585) (xy 141.351939 113.657128) (xy 141.351944 113.657128) (xy 141.471951 113.631619) (xy 141.532288 113.618794) (xy 141.538319 113.616109) (xy 141.700722 113.543803) (xy 141.700724 113.543802) (xy 141.706752 113.541118) (xy 141.719473 113.531876) (xy 141.777275 113.48988) (xy 141.861253 113.428866) (xy 141.867653 113.421758) (xy 141.984621 113.291852) (xy 141.984622 113.291851) (xy 141.98904 113.286944) (xy 142.048751 113.183521) (xy 142.081223 113.127279) (xy 142.081224 113.127278) (xy 142.084527 113.121556) (xy 142.143542 112.939928) (xy 142.146265 112.914025) (xy 142.162814 112.756565) (xy 142.163504 112.75) (xy 142.157895 112.696632) (xy 142.144232 112.566635) (xy 142.144232 112.566633) (xy 142.143542 112.560072) (xy 142.084527 112.378444) (xy 141.98904 112.213056) (xy 141.968127 112.189829) (xy 141.865675 112.076045) (xy 141.865674 112.076044) (xy 141.861253 112.071134) (xy 141.751647 111.9915) (xy 141.712094 111.962763) (xy 141.712093 111.962762) (xy 141.706752 111.958882) (xy 141.700724 111.956198) (xy 141.700722 111.956197) (xy 141.538319 111.883891) (xy 141.538316 111.88389) (xy 141.532288 111.881206) (xy 141.415774 111.85644) (xy 141.351944 111.842872) (xy 141.351939 111.842872) (xy 141.345487 111.8415) (xy 141.254239 111.8415) (xy 141.186118 111.821498) (xy 141.165144 111.804595) (xy 140.714315 111.353766) (xy 140.703448 111.341375) (xy 140.689013 111.322563) (xy 140.683987 111.316013) (xy 140.652075 111.291526) (xy 140.652069 111.29152) (xy 140.563429 111.223504) (xy 140.563427 111.223503) (xy 140.556876 111.218476) (xy 140.408851 111.157162) (xy 140.400664 111.156084) (xy 140.400663 111.156084) (xy 140.389458 111.154609) (xy 140.358262 111.150502) (xy 140.289885 111.1415) (xy 140.289882 111.1415) (xy 140.289874 111.141499) (xy 140.258189 111.137328) (xy 140.25 111.13625) (xy 140.218307 111.140422) (xy 140.201864 111.1415) (xy 139.734 111.1415) (xy 139.665879 111.121498) (xy 139.619386 111.067842) (xy 139.608 111.0155) (xy 139.608 110.947115) (xy 139.603525 110.931876) (xy 139.602135 110.930671) (xy 139.594452 110.929) (xy 137.210116 110.929) (xy 137.194877 110.933475) (xy 137.193672 110.934865) (xy 137.192001 110.942548) (xy 137.192001 111.0155) (xy 137.171999 111.083621) (xy 137.118343 111.130114) (xy 137.066001 111.1415) (xy 135.948136 111.1415) (xy 135.931693 111.140422) (xy 135.9 111.13625) (xy 135.891811 111.137328) (xy 135.860126 111.141499) (xy 135.860117 111.1415) (xy 135.860115 111.1415) (xy 135.860109 111.141501) (xy 135.860107 111.141501) (xy 135.760543 111.154609) (xy 135.749336 111.156084) (xy 135.749334 111.156085) (xy 135.741149 111.157162) (xy 135.593124 111.218476) (xy 135.548353 111.25283) (xy 135.497937 111.291515) (xy 135.497921 111.291529) (xy 135.472566 111.310984) (xy 135.472563 111.310987) (xy 135.466013 111.316013) (xy 135.460983 111.322568) (xy 135.446548 111.341379) (xy 135.435681 111.35377) (xy 135.003766 111.785685) (xy 134.991378 111.796549) (xy 134.98356 111.802549) (xy 134.917339 111.828147) (xy 134.889874 111.826388) (xy 134.889809 111.827026) (xy 134.787072 111.8165) (xy 134.187928 111.8165) (xy 134.184682 111.816837) (xy 134.184678 111.816837) (xy 134.090765 111.826581) (xy 134.090761 111.826582) (xy 134.083907 111.827293) (xy 134.077371 111.829474) (xy 134.077369 111.829474) (xy 133.977063 111.862939) (xy 133.918893 111.882346) (xy 133.90359 111.891816) (xy 133.848688 111.92579) (xy 133.780236 111.944628) (xy 133.712466 111.923467) (xy 133.69329 111.907741) (xy 133.145405 111.359856) (xy 133.111379 111.297544) (xy 133.1085 111.270761) (xy 133.1085 110.402885) (xy 137.192 110.402885) (xy 137.196475 110.418124) (xy 137.197865 110.419329) (xy 137.205548 110.421) (xy 138.127885 110.421) (xy 138.143124 110.416525) (xy 138.144329 110.415135) (xy 138.146 110.407452) (xy 138.146 110.402885) (xy 138.654 110.402885) (xy 138.658475 110.418124) (xy 138.659865 110.419329) (xy 138.667548 110.421) (xy 139.589884 110.421) (xy 139.605123 110.416525) (xy 139.606328 110.415135) (xy 139.607999 110.407452) (xy 139.607999 110.302905) (xy 139.607662 110.296386) (xy 139.597743 110.200794) (xy 139.594851 110.1874) (xy 139.543412 110.033216) (xy 139.537239 110.020038) (xy 139.451937 109.882193) (xy 139.442901 109.870792) (xy 139.328171 109.756261) (xy 139.31676 109.747249) (xy 139.178757 109.662184) (xy 139.165576 109.656037) (xy 139.01129 109.604862) (xy 138.997914 109.601995) (xy 138.903562 109.592328) (xy 138.897145 109.592) (xy 138.672115 109.592) (xy 138.656876 109.596475) (xy 138.655671 109.597865) (xy 138.654 109.605548) (xy 138.654 110.402885) (xy 138.146 110.402885) (xy 138.146 109.610116) (xy 138.141525 109.594877) (xy 138.140135 109.593672) (xy 138.132452 109.592001) (xy 137.902905 109.592001) (xy 137.896386 109.592338) (xy 137.800794 109.602257) (xy 137.7874 109.605149) (xy 137.633216 109.656588) (xy 137.620038 109.662761) (xy 137.482193 109.748063) (xy 137.470792 109.757099) (xy 137.356261 109.871829) (xy 137.347249 109.88324) (xy 137.262184 110.021243) (xy 137.256037 110.034424) (xy 137.204862 110.18871) (xy 137.201995 110.202086) (xy 137.192328 110.296438) (xy 137.192 110.302855) (xy 137.192 110.402885) (xy 133.1085 110.402885) (xy 133.1085 106.768414) (xy 133.109578 106.751968) (xy 133.112673 106.728458) (xy 133.113751 106.72027) (xy 133.092838 106.561419) (xy 133.031524 106.413394) (xy 132.958478 106.318199) (xy 132.958474 106.318195) (xy 132.952941 106.310984) (xy 132.939016 106.292836) (xy 132.939013 106.292833) (xy 132.933987 106.286283) (xy 132.927432 106.281253) (xy 132.908621 106.266818) (xy 132.89623 106.255951) (xy 130.515314 103.875035) (xy 130.481288 103.812723) (xy 130.486353 103.741908) (xy 130.5289 103.685072) (xy 130.59542 103.660261) (xy 130.604409 103.65994) (xy 135.73646 103.65994) ) ) (filled_polygon (layer "F.Cu") (pts (xy 69.799323 121.58007) (xy 69.850625 121.611174) (xy 70.454595 122.215144) (xy 70.488621 122.277456) (xy 70.4915 122.304239) (xy 70.4915 123.351864) (xy 70.490422 123.368307) (xy 70.48625 123.4) (xy 70.4915 123.43988) (xy 70.4915 123.439885) (xy 70.503116 123.52812) (xy 70.507162 123.558851) (xy 70.568476 123.706876) (xy 70.573503 123.713427) (xy 70.573504 123.713429) (xy 70.64152 123.802069) (xy 70.641526 123.802075) (xy 70.666013 123.833987) (xy 70.672568 123.839017) (xy 70.691379 123.853452) (xy 70.70377 123.864319) (xy 70.945685 124.106234) (xy 70.956552 124.118625) (xy 70.976013 124.143987) (xy 70.982563 124.149013) (xy 71.007925 124.168474) (xy 71.007928 124.168477) (xy 71.066513 124.213431) (xy 71.103124 124.241524) (xy 71.113444 124.245799) (xy 71.115364 124.247346) (xy 71.117907 124.248814) (xy 71.117678 124.24921) (xy 71.168725 124.290343) (xy 71.191149 124.357705) (xy 71.173682 124.426346) (xy 71.090855 124.566399) (xy 71.088644 124.57401) (xy 71.088643 124.574012) (xy 71.080399 124.602388) (xy 71.044438 124.726169) (xy 71.043934 124.732574) (xy 71.043933 124.732579) (xy 71.041693 124.761042) (xy 71.0415 124.763498) (xy 71.0415 124.845761) (xy 71.021498 124.913882) (xy 71.004595 124.934856) (xy 70.753766 125.185685) (xy 70.741375 125.196552) (xy 70.716013 125.216013) (xy 70.691526 125.247925) (xy 70.691523 125.247928) (xy 70.684498 125.257083) (xy 70.624555 125.335202) (xy 70.618476 125.343124) (xy 70.557162 125.491149) (xy 70.556084 125.499336) (xy 70.556084 125.499337) (xy 70.555528 125.503563) (xy 70.555072 125.507025) (xy 70.551629 125.533178) (xy 70.549598 125.548605) (xy 70.520875 125.613532) (xy 70.46161 125.652623) (xy 70.408232 125.65708) (xy 70.386801 125.654259) (xy 70.386799 125.654259) (xy 70.325957 125.646249) (xy 70.289893 125.641501) (xy 70.289891 125.641501) (xy 70.289885 125.6415) (xy 70.289883 125.6415) (xy 70.289874 125.641499) (xy 70.258189 125.637328) (xy 70.25 125.63625) (xy 70.218307 125.640422) (xy 70.201864 125.6415) (xy 68.483439 125.6415) (xy 68.415318 125.621498) (xy 68.368825 125.567842) (xy 68.358721 125.497568) (xy 68.374984 125.451364) (xy 68.409145 125.393601) (xy 68.411358 125.385986) (xy 68.431767 125.315734) (xy 68.455562 125.233831) (xy 68.456561 125.221148) (xy 68.458307 125.198958) (xy 68.458307 125.19895) (xy 68.4585 125.196502) (xy 68.4585 124.763498) (xy 68.458307 124.761042) (xy 68.456067 124.732579) (xy 68.456066 124.732574) (xy 68.455562 124.726169) (xy 68.419601 124.602388) (xy 68.411357 124.574012) (xy 68.411356 124.57401) (xy 68.409145 124.566399) (xy 68.364865 124.491525) (xy 68.328493 124.430024) (xy 68.328492 124.430023) (xy 68.324453 124.423193) (xy 68.321513 124.420253) (xy 68.29618 124.355734) (xy 68.310079 124.286111) (xy 68.322126 124.267364) (xy 68.32809 124.259676) (xy 68.404648 124.130221) (xy 68.410893 124.11579) (xy 68.449939 123.981395) (xy 68.449899 123.967294) (xy 68.44263 123.964) (xy 66.847 123.964) (xy 66.778879 123.943998) (xy 66.732386 123.890342) (xy 66.721 123.838) (xy 66.721 123.582) (xy 66.741002 123.513879) (xy 66.794658 123.467386) (xy 66.847 123.456) (xy 68.436878 123.456) (xy 68.450409 123.452027) (xy 68.451544 123.444129) (xy 68.410893 123.30421) (xy 68.404648 123.289779) (xy 68.328089 123.160323) (xy 68.322129 123.15264) (xy 68.29618 123.086556) (xy 68.310078 123.016933) (xy 68.320421 123.000839) (xy 68.324453 122.996807) (xy 68.409145 122.853601) (xy 68.414386 122.835563) (xy 68.440692 122.745014) (xy 68.455562 122.693831) (xy 68.45673 122.679) (xy 68.458307 122.658958) (xy 68.458307 122.65895) (xy 68.4585 122.656502) (xy 68.4585 122.223498) (xy 68.457997 122.217102) (xy 68.456067 122.192579) (xy 68.456066 122.192574) (xy 68.455562 122.186169) (xy 68.422694 122.073034) (xy 68.411357 122.034012) (xy 68.411356 122.03401) (xy 68.409145 122.026399) (xy 68.372095 121.963752) (xy 68.354636 121.894937) (xy 68.377152 121.827606) (xy 68.432497 121.783137) (xy 68.503097 121.775648) (xy 68.541209 121.789636) (xy 68.543248 121.791118) (xy 68.549276 121.793802) (xy 68.549278 121.793803) (xy 68.711115 121.865857) (xy 68.717712 121.868794) (xy 68.785454 121.883193) (xy 68.898056 121.907128) (xy 68.898061 121.907128) (xy 68.904513 121.9085) (xy 69.095487 121.9085) (xy 69.101939 121.907128) (xy 69.101944 121.907128) (xy 69.214546 121.883193) (xy 69.282288 121.868794) (xy 69.288885 121.865857) (xy 69.450722 121.793803) (xy 69.450724 121.793802) (xy 69.456752 121.791118) (xy 69.474435 121.778271) (xy 69.524862 121.741633) (xy 69.611253 121.678866) (xy 69.667897 121.615957) (xy 69.728339 121.578719) ) ) (filled_polygon (layer "F.Cu") (pts (xy 103.614197 121.828502) (xy 103.643718 121.854863) (xy 103.674702 121.892852) (xy 103.6755 121.893841) (xy 103.706738 121.932973) (xy 103.709242 121.935477) (xy 103.709884 121.936195) (xy 103.713585 121.940528) (xy 103.740935 121.974062) (xy 103.757865 121.988067) (xy 103.776264 122.003288) (xy 103.785045 122.011279) (xy 104.343145 122.569379) (xy 104.352247 122.579522) (xy 104.375968 122.609025) (xy 104.414456 122.64132) (xy 104.418074 122.644477) (xy 104.419889 122.646123) (xy 104.422075 122.648309) (xy 104.424457 122.650265) (xy 104.424464 122.650272) (xy 104.455234 122.675547) (xy 104.456218 122.676363) (xy 104.527474 122.736154) (xy 104.532144 122.738722) (xy 104.536261 122.742103) (xy 104.61812 122.785995) (xy 104.61925 122.786608) (xy 104.628571 122.791732) (xy 104.695389 122.828466) (xy 104.695394 122.828468) (xy 104.700787 122.831433) (xy 104.705865 122.833044) (xy 104.710563 122.835563) (xy 104.799498 122.862753) (xy 104.800702 122.863128) (xy 104.889306 122.891235) (xy 104.894597 122.891828) (xy 104.899698 122.893388) (xy 104.992311 122.902795) (xy 104.993431 122.902915) (xy 105.043227 122.9085) (xy 105.046756 122.9085) (xy 105.047739 122.908555) (xy 105.053426 122.909003) (xy 105.073683 122.91106) (xy 105.090336 122.912752) (xy 105.090339 122.912752) (xy 105.096463 122.913374) (xy 105.142112 122.909059) (xy 105.153969 122.9085) (xy 107.630074 122.9085) (xy 107.698195 122.928502) (xy 107.71917 122.945404) (xy 107.90017 123.126404) (xy 107.934195 123.188716) (xy 107.929131 123.259532) (xy 107.886584 123.316368) (xy 107.820064 123.341179) (xy 107.811075 123.3415) (xy 107.201866 123.3415) (xy 107.139684 123.348255) (xy 107.003295 123.399385) (xy 106.886739 123.486739) (xy 106.799385 123.603295) (xy 106.748255 123.739684) (xy 106.7415 123.801866) (xy 106.7415 125.080076) (xy 106.721498 125.148197) (xy 106.704595 125.169171) (xy 106.478692 125.395074) (xy 106.41638 125.4291) (xy 106.389597 125.431979) (xy 106.384 125.431979) (xy 106.315879 125.411977) (xy 106.269386 125.358321) (xy 106.258 125.305979) (xy 106.258 125.022115) (xy 106.253525 125.006876) (xy 106.252135 125.005671) (xy 106.244452 125.004) (xy 103.872 125.004) (xy 103.803879 124.983998) (xy 103.757386 124.930342) (xy 103.746 124.878) (xy 103.746 124.477885) (xy 104.254 124.477885) (xy 104.258475 124.493124) (xy 104.259865 124.494329) (xy 104.267548 124.496) (xy 106.239884 124.496) (xy 106.255123 124.491525) (xy 106.256328 124.490135) (xy 106.257999 124.482452) (xy 106.257999 123.805331) (xy 106.257629 123.79851) (xy 106.252105 123.747648) (xy 106.248479 123.732396) (xy 106.203324 123.611946) (xy 106.194786 123.596351) (xy 106.118285 123.494276) (xy 106.105724 123.481715) (xy 106.003649 123.405214) (xy 105.988054 123.396676) (xy 105.867606 123.351522) (xy 105.852351 123.347895) (xy 105.801486 123.342369) (xy 105.794672 123.342) (xy 104.272115 123.342) (xy 104.256876 123.346475) (xy 104.255671 123.347865) (xy 104.254 123.355548) (xy 104.254 124.477885) (xy 103.746 124.477885) (xy 103.746 123.360116) (xy 103.741525 123.344877) (xy 103.740135 123.343672) (xy 103.732452 123.342001) (xy 102.205331 123.342001) (xy 102.198507 123.342371) (xy 102.196911 123.342544) (xy 102.196539 123.342477) (xy 102.195123 123.342554) (xy 102.195105 123.34222) (xy 102.127029 123.330014) (xy 102.075014 123.281692) (xy 102.063784 123.257158) (xy 102.019974 123.125846) (xy 102.019973 123.125844) (xy 102.017654 123.118893) (xy 101.926116 122.970969) (xy 101.886602 122.931524) (xy 101.808184 122.853242) (xy 101.808179 122.853238) (xy 101.803003 122.848071) (xy 101.796769 122.844228) (xy 101.768383 122.82673) (xy 101.72089 122.773957) (xy 101.7085 122.719471) (xy 101.7085 122.304239) (xy 101.728502 122.236118) (xy 101.745405 122.215144) (xy 102.115144 121.845405) (xy 102.177456 121.811379) (xy 102.204239 121.8085) (xy 103.546076 121.8085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 137.56005 121.628502) (xy 137.603793 121.676514) (xy 137.635108 121.736926) (xy 137.638431 121.741089) (xy 137.640934 121.745796) (xy 137.699755 121.817918) (xy 137.700446 121.818774) (xy 137.731738 121.857973) (xy 137.734242 121.860477) (xy 137.734884 121.861195) (xy 137.738585 121.865528) (xy 137.765935 121.899062) (xy 137.770682 121.902989) (xy 137.770684 121.902991) (xy 137.801262 121.928287) (xy 137.810042 121.936277) (xy 138.843145 122.969379) (xy 138.852247 122.979522) (xy 138.875968 123.009025) (xy 138.911216 123.038602) (xy 138.914421 123.041291) (xy 138.918069 123.044472) (xy 138.919881 123.046115) (xy 138.922075 123.048309) (xy 138.955349 123.075642) (xy 138.956147 123.076304) (xy 139.027474 123.136154) (xy 139.032144 123.138722) (xy 139.036261 123.142103) (xy 139.079098 123.165072) (xy 139.129678 123.214887) (xy 139.145298 123.284144) (xy 139.120995 123.350852) (xy 139.064485 123.393831) (xy 139.056973 123.396363) (xy 139.055671 123.397865) (xy 139.054 123.405548) (xy 139.054 124.527885) (xy 139.058475 124.543124) (xy 139.059865 124.544329) (xy 139.067548 124.546) (xy 141.039884 124.546) (xy 141.055123 124.541525) (xy 141.056328 124.540135) (xy 141.057999 124.532452) (xy 141.057999 123.855331) (xy 141.057629 123.84851) (xy 141.052105 123.797648) (xy 141.048479 123.782396) (xy 141.003324 123.661946) (xy 140.994786 123.646351) (xy 140.918285 123.544276) (xy 140.899374 123.525365) (xy 140.901503 123.523236) (xy 140.86803 123.478474) (xy 140.863 123.407656) (xy 140.897056 123.34536) (xy 140.959385 123.311366) (xy 140.986107 123.3085) (xy 141.613059 123.3085) (xy 141.68118 123.328502) (xy 141.727673 123.382158) (xy 141.737777 123.452432) (xy 141.708283 123.517012) (xy 141.699995 123.524734) (xy 141.700269 123.525008) (xy 141.693919 123.531358) (xy 141.686739 123.536739) (xy 141.599385 123.653295) (xy 141.548255 123.789684) (xy 141.5415 123.851866) (xy 141.5415 125.080076) (xy 141.521498 125.148197) (xy 141.504595 125.169171) (xy 141.31966 125.354106) (xy 141.257348 125.388132) (xy 141.230565 125.391011) (xy 141.184 125.391011) (xy 141.115879 125.371009) (xy 141.069386 125.317353) (xy 141.058 125.265011) (xy 141.058 125.072115) (xy 141.053525 125.056876) (xy 141.052135 125.055671) (xy 141.044452 125.054) (xy 138.672 125.054) (xy 138.603879 125.033998) (xy 138.557386 124.980342) (xy 138.546 124.928) (xy 138.546 123.410116) (xy 138.541525 123.394877) (xy 138.540135 123.393672) (xy 138.532452 123.392001) (xy 137.066198 123.392001) (xy 136.998077 123.371999) (xy 136.951584 123.318343) (xy 136.946674 123.305877) (xy 136.93761 123.278707) (xy 136.917654 123.218893) (xy 136.826116 123.070969) (xy 136.804455 123.049346) (xy 136.708184 122.953242) (xy 136.708179 122.953238) (xy 136.703003 122.948071) (xy 136.696769 122.944228) (xy 136.668383 122.92673) (xy 136.62089 122.873957) (xy 136.6085 122.819471) (xy 136.6085 121.7345) (xy 136.628502 121.666379) (xy 136.682158 121.619886) (xy 136.7345 121.6085) (xy 137.491929 121.6085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 115.098195 121.728502) (xy 115.119169 121.745404) (xy 115.743149 122.369383) (xy 115.752251 122.379527) (xy 115.775968 122.409025) (xy 115.814456 122.44132) (xy 115.818075 122.444478) (xy 115.81989 122.446124) (xy 115.822075 122.448309) (xy 115.824455 122.450264) (xy 115.824465 122.450273) (xy 115.855236 122.475549) (xy 115.856251 122.476391) (xy 115.876615 122.493478) (xy 115.927474 122.536154) (xy 115.932148 122.538723) (xy 115.936261 122.542102) (xy 116.002428 122.57758) (xy 116.018047 122.585955) (xy 116.019177 122.586568) (xy 116.049482 122.603228) (xy 116.094197 122.62781) (xy 116.100787 122.631433) (xy 116.105869 122.633045) (xy 116.110563 122.635562) (xy 116.199531 122.662762) (xy 116.200559 122.663082) (xy 116.289306 122.691235) (xy 116.294602 122.691829) (xy 116.299698 122.693387) (xy 116.392257 122.70279) (xy 116.393393 122.702911) (xy 116.427008 122.706681) (xy 116.43973 122.708108) (xy 116.439734 122.708108) (xy 116.443227 122.7085) (xy 116.446754 122.7085) (xy 116.447739 122.708555) (xy 116.453419 122.709002) (xy 116.482825 122.711989) (xy 116.490337 122.712752) (xy 116.490339 122.712752) (xy 116.496462 122.713374) (xy 116.542108 122.709059) (xy 116.553967 122.7085) (xy 119.130074 122.7085) (xy 119.198195 122.728502) (xy 119.219169 122.745404) (xy 119.554595 123.080829) (xy 119.58862 123.143142) (xy 119.5915 123.169925) (xy 119.5915 123.2155) (xy 119.571498 123.283621) (xy 119.517842 123.330114) (xy 119.4655 123.3415) (xy 118.801866 123.3415) (xy 118.739684 123.348255) (xy 118.603295 123.399385) (xy 118.486739 123.486739) (xy 118.399385 123.603295) (xy 118.348255 123.739684) (xy 118.3415 123.801866) (xy 118.3415 125.215011) (xy 118.321498 125.283132) (xy 118.267842 125.329625) (xy 118.2155 125.341011) (xy 117.984 125.341011) (xy 117.915879 125.321009) (xy 117.869386 125.267353) (xy 117.858 125.215011) (xy 117.858 125.022115) (xy 117.853525 125.006876) (xy 117.852135 125.005671) (xy 117.844452 125.004) (xy 115.472 125.004) (xy 115.403879 124.983998) (xy 115.357386 124.930342) (xy 115.346 124.878) (xy 115.346 124.477885) (xy 115.854 124.477885) (xy 115.858475 124.493124) (xy 115.859865 124.494329) (xy 115.867548 124.496) (xy 117.839884 124.496) (xy 117.855123 124.491525) (xy 117.856328 124.490135) (xy 117.857999 124.482452) (xy 117.857999 123.805331) (xy 117.857629 123.79851) (xy 117.852105 123.747648) (xy 117.848479 123.732396) (xy 117.803324 123.611946) (xy 117.794786 123.596351) (xy 117.718285 123.494276) (xy 117.705724 123.481715) (xy 117.603649 123.405214) (xy 117.588054 123.396676) (xy 117.467606 123.351522) (xy 117.452351 123.347895) (xy 117.401486 123.342369) (xy 117.394672 123.342) (xy 115.872115 123.342) (xy 115.856876 123.346475) (xy 115.855671 123.347865) (xy 115.854 123.355548) (xy 115.854 124.477885) (xy 115.346 124.477885) (xy 115.346 123.360116) (xy 115.341525 123.344877) (xy 115.340135 123.343672) (xy 115.332452 123.342001) (xy 113.805331 123.342001) (xy 113.79851 123.342371) (xy 113.764716 123.346041) (xy 113.694834 123.333512) (xy 113.642819 123.28519) (xy 113.631588 123.260655) (xy 113.619975 123.225846) (xy 113.61997 123.225836) (xy 113.617654 123.218893) (xy 113.526116 123.070969) (xy 113.504455 123.049346) (xy 113.408184 122.953242) (xy 113.408179 122.953238) (xy 113.403003 122.948071) (xy 113.396769 122.944228) (xy 113.368383 122.92673) (xy 113.32089 122.873957) (xy 113.3085 122.819471) (xy 113.3085 122.004239) (xy 113.328502 121.936118) (xy 113.345405 121.915144) (xy 113.515144 121.745405) (xy 113.577456 121.711379) (xy 113.604239 121.7085) (xy 115.030074 121.7085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 126.437752 121.563502) (xy 126.468102 121.590891) (xy 126.481738 121.607973) (xy 126.484242 121.610477) (xy 126.484884 121.611195) (xy 126.488585 121.615528) (xy 126.515935 121.649062) (xy 126.551267 121.678291) (xy 126.560037 121.686272) (xy 127.243149 122.369383) (xy 127.252251 122.379527) (xy 127.275968 122.409025) (xy 127.314456 122.44132) (xy 127.318075 122.444478) (xy 127.31989 122.446124) (xy 127.322075 122.448309) (xy 127.324455 122.450264) (xy 127.324465 122.450273) (xy 127.355236 122.475549) (xy 127.356251 122.476391) (xy 127.376615 122.493478) (xy 127.427474 122.536154) (xy 127.432148 122.538723) (xy 127.436261 122.542102) (xy 127.502428 122.57758) (xy 127.518047 122.585955) (xy 127.519177 122.586568) (xy 127.549482 122.603228) (xy 127.594197 122.62781) (xy 127.600787 122.631433) (xy 127.605869 122.633045) (xy 127.610563 122.635562) (xy 127.699531 122.662762) (xy 127.700559 122.663082) (xy 127.789306 122.691235) (xy 127.794602 122.691829) (xy 127.799698 122.693387) (xy 127.892257 122.70279) (xy 127.893393 122.702911) (xy 127.927008 122.706681) (xy 127.93973 122.708108) (xy 127.939734 122.708108) (xy 127.943227 122.7085) (xy 127.946754 122.7085) (xy 127.947739 122.708555) (xy 127.953419 122.709002) (xy 127.982825 122.711989) (xy 127.990337 122.712752) (xy 127.990339 122.712752) (xy 127.996462 122.713374) (xy 128.042108 122.709059) (xy 128.053967 122.7085) (xy 130.230074 122.7085) (xy 130.298195 122.728502) (xy 130.319169 122.745404) (xy 130.592291 123.018525) (xy 130.70017 123.126404) (xy 130.734195 123.188717) (xy 130.729131 123.259532) (xy 130.686584 123.316368) (xy 130.620064 123.341179) (xy 130.611075 123.3415) (xy 130.501866 123.3415) (xy 130.439684 123.348255) (xy 130.303295 123.399385) (xy 130.186739 123.486739) (xy 130.099385 123.603295) (xy 130.048255 123.739684) (xy 130.0415 123.801866) (xy 130.0415 125.215011) (xy 130.021498 125.283132) (xy 129.967842 125.329625) (xy 129.9155 125.341011) (xy 129.684 125.341011) (xy 129.615879 125.321009) (xy 129.569386 125.267353) (xy 129.558 125.215011) (xy 129.558 125.022115) (xy 129.553525 125.006876) (xy 129.552135 125.005671) (xy 129.544452 125.004) (xy 127.172 125.004) (xy 127.103879 124.983998) (xy 127.057386 124.930342) (xy 127.046 124.878) (xy 127.046 124.477885) (xy 127.554 124.477885) (xy 127.558475 124.493124) (xy 127.559865 124.494329) (xy 127.567548 124.496) (xy 129.539884 124.496) (xy 129.555123 124.491525) (xy 129.556328 124.490135) (xy 129.557999 124.482452) (xy 129.557999 123.805331) (xy 129.557629 123.79851) (xy 129.552105 123.747648) (xy 129.548479 123.732396) (xy 129.503324 123.611946) (xy 129.494786 123.596351) (xy 129.418285 123.494276) (xy 129.405724 123.481715) (xy 129.303649 123.405214) (xy 129.288054 123.396676) (xy 129.167606 123.351522) (xy 129.152351 123.347895) (xy 129.101486 123.342369) (xy 129.094672 123.342) (xy 127.572115 123.342) (xy 127.556876 123.346475) (xy 127.555671 123.347865) (xy 127.554 123.355548) (xy 127.554 124.477885) (xy 127.046 124.477885) (xy 127.046 123.360116) (xy 127.041525 123.344877) (xy 127.040135 123.343672) (xy 127.032452 123.342001) (xy 125.549517 123.342001) (xy 125.481396 123.321999) (xy 125.434903 123.268343) (xy 125.429994 123.255878) (xy 125.419974 123.225846) (xy 125.419972 123.225841) (xy 125.417654 123.218893) (xy 125.326116 123.070969) (xy 125.304455 123.049346) (xy 125.208184 122.953242) (xy 125.208179 122.953238) (xy 125.203003 122.948071) (xy 125.196769 122.944228) (xy 125.168383 122.92673) (xy 125.12089 122.873957) (xy 125.1085 122.819471) (xy 125.1085 122.104239) (xy 125.128502 122.036118) (xy 125.145405 122.015144) (xy 125.580144 121.580405) (xy 125.642456 121.546379) (xy 125.669239 121.5435) (xy 126.369631 121.5435) ) ) (filled_polygon (layer "F.Cu") (pts (xy 63.560324 114.107575) (xy 63.575562 114.117368) (xy 63.673295 114.190615) (xy 63.809684 114.241745) (xy 63.871866 114.2485) (xy 64.0355 114.2485) (xy 64.103621 114.268502) (xy 64.150114 114.322158) (xy 64.1615 114.3745) (xy 64.1615 115.621864) (xy 64.160422 115.638307) (xy 64.15625 115.67) (xy 64.157328 115.678189) (xy 64.1615 115.70988) (xy 64.1615 115.709885) (xy 64.173637 115.802072) (xy 64.177162 115.828851) (xy 64.238476 115.976876) (xy 64.243503 115.983427) (xy 64.243504 115.983429) (xy 64.31152 116.072069) (xy 64.311526 116.072075) (xy 64.336013 116.103987) (xy 64.342568 116.109017) (xy 64.361379 116.123452) (xy 64.37377 116.134319) (xy 67.540856 119.301405) (xy 67.574882 119.363717) (xy 67.569817 119.434532) (xy 67.52727 119.491368) (xy 67.46075 119.516179) (xy 67.451761 119.5165) (xy 67.012928 119.5165) (xy 67.009682 119.516837) (xy 67.009678 119.516837) (xy 66.915765 119.526581) (xy 66.915761 119.526582) (xy 66.908907 119.527293) (xy 66.902371 119.529474) (xy 66.902369 119.529474) (xy 66.810174 119.560233) (xy 66.743893 119.582346) (xy 66.595969 119.673884) (xy 66.590797 119.679065) (xy 66.588727 119.681139) (xy 66.586962 119.682105) (xy 66.585059 119.683613) (xy 66.584801 119.683287) (xy 66.526446 119.715219) (xy 66.455625 119.710218) (xy 66.41053 119.681292) (xy 66.407869 119.678636) (xy 66.39646 119.669625) (xy 66.260937 119.586088) (xy 66.247759 119.579944) (xy 66.096234 119.529685) (xy 66.082868 119.526819) (xy 65.99023 119.517328) (xy 65.983815 119.517) (xy 65.909615 119.517) (xy 65.894376 119.521475) (xy 65.893171 119.522865) (xy 65.8915 119.530548) (xy 65.8915 121.464885) (xy 65.895975 121.480124) (xy 65.897523 121.481466) (xy 65.935906 121.541192) (xy 65.935906 121.612189) (xy 65.897522 121.671915) (xy 65.87916 121.685136) (xy 65.743193 121.765547) (xy 65.625547 121.883193) (xy 65.621511 121.890017) (xy 65.621509 121.89002) (xy 65.563008 121.98894) (xy 65.540855 122.026399) (xy 65.538644 122.03401) (xy 65.538643 122.034012) (xy 65.527306 122.073034) (xy 65.494438 122.186169) (xy 65.493934 122.192574) (xy 65.493933 122.192579) (xy 65.492003 122.217102) (xy 65.4915 122.223498) (xy 65.4915 122.656502) (xy 65.491693 122.65895) (xy 65.491693 122.658958) (xy 65.493271 122.679) (xy 65.494438 122.693831) (xy 65.509308 122.745014) (xy 65.535615 122.835563) (xy 65.540855 122.853601) (xy 65.565265 122.894876) (xy 65.610834 122.971928) (xy 65.625547 122.996807) (xy 65.628487 122.999747) (xy 65.65382 123.064266) (xy 65.639921 123.133889) (xy 65.627874 123.152636) (xy 65.62191 123.160324) (xy 65.545352 123.289779) (xy 65.539107 123.30421) (xy 65.514272 123.38969) (xy 65.476058 123.449525) (xy 65.411562 123.479202) (xy 65.341259 123.469298) (xy 65.30418 123.443631) (xy 65.044925 123.184376) (xy 65.010899 123.122064) (xy 65.00802 123.095281) (xy 65.00802 121.588223) (xy 65.028022 121.520102) (xy 65.081678 121.473609) (xy 65.151952 121.463505) (xy 65.173692 121.468631) (xy 65.178773 121.470317) (xy 65.192132 121.473181) (xy 65.28477 121.482672) (xy 65.291185 121.483) (xy 65.365385 121.483) (xy 65.380624 121.478525) (xy 65.381829 121.477135) (xy 65.3835 121.469452) (xy 65.3835 119.535115) (xy 65.379025 119.519876) (xy 65.377635 119.518671) (xy 65.369952 119.517) (xy 65.291234 119.517) (xy 65.284718 119.517337) (xy 65.190868 119.527075) (xy 65.177472 119.529968) (xy 65.026047 119.580488) (xy 65.012885 119.586653) (xy 64.877508 119.670426) (xy 64.86611 119.67946) (xy 64.753637 119.792129) (xy 64.744625 119.80354) (xy 64.661088 119.939063) (xy 64.654944 119.952241) (xy 64.604685 120.103766) (xy 64.601819 120.117132) (xy 64.592328 120.20977) (xy 64.592 120.216185) (xy 64.592 120.297249) (xy 64.571998 120.36537) (xy 64.518342 120.411863) (xy 64.448068 120.421967) (xy 64.383488 120.392473) (xy 64.376905 120.386344) (xy 60.734925 116.744364) (xy 60.700899 116.682052) (xy 60.69802 116.655269) (xy 60.69802 115.314719) (xy 60.718022 115.246598) (xy 60.734925 115.225624) (xy 61.675144 114.285405) (xy 61.737456 114.251379) (xy 61.764239 114.2485) (xy 63.128134 114.2485) (xy 63.190316 114.241745) (xy 63.326705 114.190615) (xy 63.424436 114.11737) (xy 63.490941 114.092522) ) ) (filled_polygon (layer "F.Cu") (pts (xy 66.100324 114.107575) (xy 66.115562 114.117368) (xy 66.213295 114.190615) (xy 66.349684 114.241745) (xy 66.411866 114.2485) (xy 66.5755 114.2485) (xy 66.643621 114.268502) (xy 66.690114 114.322158) (xy 66.7015 114.3745) (xy 66.7015 115.266876) (xy 66.700422 115.283319) (xy 66.69625 115.315012) (xy 66.7015 115.354892) (xy 66.7015 115.354897) (xy 66.707438 115.4) (xy 66.717162 115.473863) (xy 66.778476 115.621888) (xy 66.783503 115.628439) (xy 66.783504 115.628441) (xy 66.85152 115.717081) (xy 66.851526 115.717087) (xy 66.876013 115.748999) (xy 66.882568 115.754029) (xy 66.901379 115.768464) (xy 66.91377 115.779331) (xy 72.742095 121.607656) (xy 72.776121 121.669968) (xy 72.779 121.696751) (xy 72.779 122.568) (xy 72.758998 122.636121) (xy 72.705342 122.682614) (xy 72.653 122.694) (xy 72.397 122.694) (xy 72.328879 122.673998) (xy 72.282386 122.620342) (xy 72.271 122.568) (xy 72.271 121.650116) (xy 72.266525 121.634877) (xy 72.265135 121.633672) (xy 72.257452 121.632001) (xy 71.646757 121.632001) (xy 71.578636 121.611999) (xy 71.546794 121.582704) (xy 71.546016 121.58169) (xy 71.533987 121.566013) (xy 71.527432 121.560983) (xy 71.508621 121.546548) (xy 71.49623 121.535681) (xy 65.415405 115.454856) (xy 65.381379 115.392544) (xy 65.3785 115.365761) (xy 65.3785 114.3745) (xy 65.398502 114.306379) (xy 65.452158 114.259886) (xy 65.5045 114.2485) (xy 65.668134 114.2485) (xy 65.730316 114.241745) (xy 65.866705 114.190615) (xy 65.964436 114.11737) (xy 66.030941 114.092522) ) ) (filled_polygon (layer "F.Cu") (pts (xy 53.400324 114.107575) (xy 53.415562 114.117368) (xy 53.513295 114.190615) (xy 53.649684 114.241745) (xy 53.711866 114.2485) (xy 53.924542 114.2485) (xy 53.992663 114.268502) (xy 54.04095 114.326281) (xy 54.078476 114.416876) (xy 54.083503 114.423427) (xy 54.083504 114.423429) (xy 54.15152 114.512069) (xy 54.151526 114.512075) (xy 54.176013 114.543987) (xy 54.19882 114.561488) (xy 54.201377 114.56345) (xy 54.213767 114.574316) (xy 54.435681 114.796229) (xy 54.446549 114.808621) (xy 54.466013 114.833987) (xy 54.472559 114.83901) (xy 54.472562 114.839013) (xy 54.497927 114.858476) (xy 54.497929 114.858477) (xy 54.593124 114.931524) (xy 54.60075 114.934683) (xy 54.600752 114.934684) (xy 54.667136 114.962181) (xy 54.741149 114.992838) (xy 54.749336 114.993916) (xy 54.749337 114.993916) (xy 54.760542 114.995391) (xy 54.791738 114.999498) (xy 54.860115 115.0085) (xy 54.860118 115.0085) (xy 54.860126 115.008501) (xy 54.891811 115.012672) (xy 54.9 115.01375) (xy 54.931693 115.009578) (xy 54.948136 115.0085) (xy 58.545761 115.0085) (xy 58.613882 115.028502) (xy 58.634856 115.045405) (xy 58.645075 115.055624) (xy 58.679101 115.117936) (xy 58.68198 115.144719) (xy 58.68198 117.242344) (xy 58.680902 117.258787) (xy 58.67673 117.29048) (xy 58.68198 117.33036) (xy 58.68198 117.330365) (xy 58.692737 117.412072) (xy 58.697642 117.449331) (xy 58.758956 117.597356) (xy 58.763983 117.603907) (xy 58.763984 117.603909) (xy 58.832 117.692549) (xy 58.832006 117.692555) (xy 58.856493 117.724467) (xy 58.863048 117.729497) (xy 58.881859 117.743932) (xy 58.89425 117.754799) (xy 62.556356 121.416905) (xy 62.590382 121.479217) (xy 62.585317 121.550032) (xy 62.54277 121.606868) (xy 62.47625 121.631679) (xy 62.467261 121.632) (xy 62.297115 121.632) (xy 62.281876 121.636475) (xy 62.280671 121.637865) (xy 62.279 121.645548) (xy 62.279 122.568) (xy 62.258998 122.636121) (xy 62.205342 122.682614) (xy 62.153 122.694) (xy 61.897 122.694) (xy 61.828879 122.673998) (xy 61.782386 122.620342) (xy 61.771 122.568) (xy 61.771 121.650116) (xy 61.766525 121.634877) (xy 61.765135 121.633672) (xy 61.757452 121.632001) (xy 61.136017 121.632001) (xy 61.13108 121.632195) (xy 61.102664 121.63443) (xy 61.090069 121.63673) (xy 60.94421 121.679107) (xy 60.929779 121.685352) (xy 60.800322 121.761911) (xy 60.787896 121.771551) (xy 60.681551 121.877896) (xy 60.667048 121.896592) (xy 60.665795 121.89562) (xy 60.620566 121.937853) (xy 60.550716 121.950561) (xy 60.485084 121.923487) (xy 60.474907 121.914358) (xy 53.002849 114.4423) (xy 52.968823 114.379988) (xy 52.973888 114.309173) (xy 53.016435 114.252337) (xy 53.047714 114.235223) (xy 53.158297 114.193767) (xy 53.166705 114.190615) (xy 53.264436 114.11737) (xy 53.330941 114.092522) ) ) (filled_polygon (layer "F.Cu") (pts (xy 108.917012 112.778015) (xy 108.923595 112.784144) (xy 110.035685 113.896234) (xy 110.046552 113.908625) (xy 110.066013 113.933987) (xy 110.072563 113.939013) (xy 110.097925 113.958474) (xy 110.097928 113.958477) (xy 110.182791 114.023595) (xy 110.193124 114.031524) (xy 110.341149 114.092838) (xy 110.349336 114.093916) (xy 110.349337 114.093916) (xy 110.360542 114.095391) (xy 110.378309 114.09773) (xy 110.460115 114.1085) (xy 110.460118 114.1085) (xy 110.460126 114.108501) (xy 110.491811 114.112672) (xy 110.5 114.11375) (xy 110.531693 114.109578) (xy 110.548136 114.1085) (xy 112.551864 114.1085) (xy 112.568307 114.109578) (xy 112.6 114.11375) (xy 112.608189 114.112672) (xy 112.639874 114.108501) (xy 112.639884 114.1085) (xy 112.639885 114.1085) (xy 112.639901 114.108498) (xy 112.739457 114.095391) (xy 112.750664 114.093916) (xy 112.750666 114.093915) (xy 112.758851 114.092838) (xy 112.906876 114.031524) (xy 112.91721 114.023595) (xy 113.002072 113.958477) (xy 113.002075 113.958474) (xy 113.027434 113.939015) (xy 113.033987 113.933987) (xy 113.039013 113.927437) (xy 113.039016 113.927434) (xy 113.040539 113.925449) (xy 113.042251 113.924199) (xy 113.044855 113.921595) (xy 113.045261 113.922001) (xy 113.097878 113.883583) (xy 113.168749 113.879363) (xy 113.230651 113.914128) (xy 113.263931 113.976842) (xy 113.2665 114.002155) (xy 113.2665 117.5655) (xy 113.246498 117.633621) (xy 113.192842 117.680114) (xy 113.1405 117.6915) (xy 112.623144 117.6915) (xy 112.606698 117.690422) (xy 112.583188 117.687327) (xy 112.575 117.686249) (xy 112.41615 117.707162) (xy 112.408523 117.710321) (xy 112.40852 117.710322) (xy 112.362228 117.729497) (xy 112.268124 117.768476) (xy 112.222305 117.803634) (xy 112.172937 117.841515) (xy 112.172921 117.841529) (xy 112.147566 117.860984) (xy 112.147563 117.860987) (xy 112.141013 117.866013) (xy 112.135983 117.872568) (xy 112.121548 117.891379) (xy 112.110681 117.90377) (xy 111.403766 118.610685) (xy 111.391375 118.621552) (xy 111.366013 118.641013) (xy 111.341526 118.672925) (xy 111.341523 118.672928) (xy 111.336837 118.679035) (xy 111.281805 118.750754) (xy 111.268476 118.768124) (xy 111.207162 118.916149) (xy 111.206084 118.924338) (xy 111.204824 118.933907) (xy 111.1915 119.035115) (xy 111.191499 119.035126) (xy 111.189541 119.05) (xy 111.18625 119.075) (xy 111.187328 119.083188) (xy 111.190422 119.10669) (xy 111.1915 119.123136) (xy 111.1915 122.326761) (xy 111.171498 122.394882) (xy 111.117842 122.441375) (xy 111.047568 122.451479) (xy 110.982988 122.421985) (xy 110.976405 122.415856) (xy 109.070405 120.509856) (xy 109.036379 120.447544) (xy 109.0335 120.420761) (xy 109.0335 119.023144) (xy 109.034578 119.006698) (xy 109.037673 118.983188) (xy 109.038751 118.975) (xy 109.017838 118.816149) (xy 108.956524 118.668124) (xy 108.883478 118.572929) (xy 108.883474 118.572925) (xy 108.870752 118.556345) (xy 108.864016 118.547566) (xy 108.864013 118.547563) (xy 108.858987 118.541013) (xy 108.852432 118.535983) (xy 108.833621 118.521548) (xy 108.82123 118.510681) (xy 107.545405 117.234856) (xy 107.511379 117.172544) (xy 107.5085 117.145761) (xy 107.5085 114.004239) (xy 107.528502 113.936118) (xy 107.545405 113.915144) (xy 107.665144 113.795405) (xy 107.727456 113.761379) (xy 107.754239 113.7585) (xy 108.248134 113.7585) (xy 108.310316 113.751745) (xy 108.446705 113.700615) (xy 108.563261 113.613261) (xy 108.650615 113.496705) (xy 108.701745 113.360316) (xy 108.7085 113.298134) (xy 108.7085 112.873239) (xy 108.728502 112.805118) (xy 108.782158 112.758625) (xy 108.852432 112.748521) ) ) (filled_polygon (layer "F.Cu") (pts (xy 120.213882 112.328502) (xy 120.234856 112.345405) (xy 122.035685 114.146234) (xy 122.046552 114.158625) (xy 122.066013 114.183987) (xy 122.072563 114.189013) (xy 122.097921 114.208471) (xy 122.097937 114.208485) (xy 122.141752 114.242105) (xy 122.193124 114.281524) (xy 122.341149 114.342838) (xy 122.349336 114.343916) (xy 122.349337 114.343916) (xy 122.360542 114.345391) (xy 122.386892 114.34886) (xy 122.460115 114.3585) (xy 122.460118 114.3585) (xy 122.460126 114.358501) (xy 122.491811 114.362672) (xy 122.5 114.36375) (xy 122.531693 114.359578) (xy 122.548136 114.3585) (xy 123.851864 114.3585) (xy 123.868307 114.359578) (xy 123.9 114.36375) (xy 123.908189 114.362672) (xy 123.939874 114.358501) (xy 123.939884 114.3585) (xy 123.939885 114.3585) (xy 123.939901 114.358498) (xy 124.039457 114.345391) (xy 124.050664 114.343916) (xy 124.050666 114.343915) (xy 124.058851 114.342838) (xy 124.206876 114.281524) (xy 124.223392 114.268851) (xy 124.302069 114.20848) (xy 124.302075 114.208474) (xy 124.325349 114.190615) (xy 124.333987 114.183987) (xy 124.340168 114.175932) (xy 124.353452 114.158621) (xy 124.364319 114.14623) (xy 124.426405 114.084144) (xy 124.488717 114.050118) (xy 124.559532 114.055183) (xy 124.616368 114.09773) (xy 124.641179 114.16425) (xy 124.6415 114.173239) (xy 124.6415 117.670761) (xy 124.621498 117.738882) (xy 124.604595 117.759856) (xy 124.584856 117.779595) (xy 124.522544 117.813621) (xy 124.495761 117.8165) (xy 124.073136 117.8165) (xy 124.05669 117.815422) (xy 124.033188 117.812328) (xy 124.025 117.81125) (xy 124.016812 117.812328) (xy 123.985129 117.816499) (xy 123.98512 117.8165) (xy 123.985115 117.8165) (xy 123.86615 117.832162) (xy 123.718125 117.893476) (xy 123.718123 117.893477) (xy 123.718124 117.893477) (xy 123.622928 117.966523) (xy 123.622925 117.966526) (xy 123.591013 117.991013) (xy 123.585983 117.997568) (xy 123.571548 118.016379) (xy 123.560681 118.02877) (xy 123.003766 118.585685) (xy 122.991375 118.596552) (xy 122.966013 118.616013) (xy 122.941526 118.647925) (xy 122.941523 118.647928) (xy 122.941517 118.647936) (xy 122.873646 118.736387) (xy 122.868476 118.743124) (xy 122.81034 118.883477) (xy 122.807162 118.89115) (xy 122.806085 118.899334) (xy 122.806084 118.899336) (xy 122.799888 118.946403) (xy 122.7915 119.010115) (xy 122.7915 119.01012) (xy 122.78625 119.05) (xy 122.790257 119.080434) (xy 122.790422 119.08169) (xy 122.7915 119.098136) (xy 122.7915 122.126761) (xy 122.771498 122.194882) (xy 122.717842 122.241375) (xy 122.647568 122.251479) (xy 122.582988 122.221985) (xy 122.576405 122.215856) (xy 120.345405 119.984856) (xy 120.311379 119.922544) (xy 120.3085 119.895761) (xy 120.3085 113.498136) (xy 120.309578 113.48169) (xy 120.312672 113.458188) (xy 120.31375 113.45) (xy 120.3085 113.41012) (xy 120.3085 113.410115) (xy 120.294528 113.303987) (xy 120.292838 113.291149) (xy 120.231524 113.143124) (xy 120.158478 113.047929) (xy 120.158474 113.047925) (xy 120.149763 113.036572) (xy 120.139016 113.022566) (xy 120.139013 113.022563) (xy 120.133987 113.016013) (xy 120.127432 113.010983) (xy 120.108621 112.996548) (xy 120.09623 112.985681) (xy 119.995405 112.884856) (xy 119.961379 112.822544) (xy 119.9585 112.795761) (xy 119.9585 112.4345) (xy 119.978502 112.366379) (xy 120.032158 112.319886) (xy 120.0845 112.3085) (xy 120.145761 112.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 131.863882 112.428502) (xy 131.884856 112.445405) (xy 133.585685 114.146234) (xy 133.596552 114.158625) (xy 133.616013 114.183987) (xy 133.647925 114.208474) (xy 133.647928 114.208477) (xy 133.702042 114.25) (xy 133.743125 114.281524) (xy 133.89115 114.342838) (xy 134.010115 114.3585) (xy 134.01012 114.3585) (xy 134.010129 114.358501) (xy 134.041812 114.362672) (xy 134.05 114.36375) (xy 134.081693 114.359578) (xy 134.098136 114.3585) (xy 134.951864 114.3585) (xy 134.968307 114.359578) (xy 135 114.36375) (xy 135.008189 114.362672) (xy 135.039874 114.358501) (xy 135.039884 114.3585) (xy 135.039885 114.3585) (xy 135.039901 114.358498) (xy 135.139457 114.345391) (xy 135.150664 114.343916) (xy 135.150666 114.343915) (xy 135.158851 114.342838) (xy 135.306876 114.281524) (xy 135.323392 114.268851) (xy 135.402069 114.20848) (xy 135.402075 114.208474) (xy 135.425349 114.190615) (xy 135.433987 114.183987) (xy 135.440168 114.175932) (xy 135.453452 114.158621) (xy 135.464319 114.14623) (xy 135.796234 113.814315) (xy 135.808622 113.803451) (xy 135.816441 113.797451) (xy 135.882661 113.771853) (xy 135.910126 113.773612) (xy 135.910191 113.772974) (xy 136.012928 113.7835) (xy 136.11598 113.7835) (xy 136.184101 113.803502) (xy 136.230594 113.857158) (xy 136.24198 113.9095) (xy 136.24198 117.470281) (xy 136.221978 117.538402) (xy 136.205075 117.559377) (xy 136.034855 117.729596) (xy 135.972543 117.763621) (xy 135.94576 117.7665) (xy 135.298144 117.7665) (xy 135.281698 117.765422) (xy 135.258188 117.762327) (xy 135.25 117.761249) (xy 135.091149 117.782162) (xy 134.943124 117.843476) (xy 134.905211 117.872568) (xy 134.847937 117.916515) (xy 134.847921 117.916529) (xy 134.822566 117.935984) (xy 134.822563 117.935987) (xy 134.816013 117.941013) (xy 134.810983 117.947568) (xy 134.796548 117.966379) (xy 134.785681 117.97877) (xy 134.399255 118.365196) (xy 134.386864 118.376063) (xy 134.361502 118.395524) (xy 134.337015 118.427436) (xy 134.337012 118.427439) (xy 134.321694 118.447402) (xy 134.273138 118.510681) (xy 134.263965 118.522635) (xy 134.227368 118.610987) (xy 134.20696 118.660258) (xy 134.202651 118.67066) (xy 134.200404 118.687725) (xy 134.186989 118.789626) (xy 134.186989 118.789631) (xy 134.181739 118.829511) (xy 134.184113 118.84754) (xy 134.185911 118.861201) (xy 134.186989 118.877647) (xy 134.186989 120.228008) (xy 134.185911 120.244451) (xy 134.181739 120.276144) (xy 134.182817 120.284333) (xy 134.186989 120.316024) (xy 134.186989 120.316029) (xy 134.189942 120.33846) (xy 134.19102 120.354906) (xy 134.19102 122.126281) (xy 134.171018 122.194402) (xy 134.117362 122.240895) (xy 134.047088 122.250999) (xy 133.982508 122.221505) (xy 133.975925 122.215376) (xy 131.795405 120.034856) (xy 131.761379 119.972544) (xy 131.7585 119.945761) (xy 131.7585 113.398136) (xy 131.759578 113.38169) (xy 131.762672 113.358188) (xy 131.76375 113.35) (xy 131.7585 113.310122) (xy 131.7585 113.310115) (xy 131.742838 113.19115) (xy 131.681524 113.043125) (xy 131.672075 113.03081) (xy 131.637011 112.985115) (xy 131.608477 112.947928) (xy 131.608474 112.947925) (xy 131.602338 112.939928) (xy 131.589016 112.922566) (xy 131.589013 112.922563) (xy 131.583987 112.916013) (xy 131.577432 112.910983) (xy 131.558621 112.896548) (xy 131.54623 112.885681) (xy 131.545405 112.884856) (xy 131.511379 112.822544) (xy 131.5085 112.795761) (xy 131.5085 112.5345) (xy 131.528502 112.466379) (xy 131.582158 112.419886) (xy 131.6345 112.4085) (xy 131.795761 112.4085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 91.586025 107.928502) (xy 91.632518 107.982158) (xy 91.643904 108.0345) (xy 91.643904 118.963345) (xy 91.623902 119.031466) (xy 91.606999 119.05244) (xy 91.573404 119.086035) (xy 91.511092 119.120061) (xy 91.484309 119.12294) (xy 90.180967 119.12294) (xy 90.164521 119.121862) (xy 90.141019 119.118768) (xy 90.132831 119.11769) (xy 90.124643 119.118768) (xy 90.09296 119.122939) (xy 90.092951 119.12294) (xy 90.092946 119.12294) (xy 89.973981 119.138602) (xy 89.966352 119.141762) (xy 89.948427 119.149187) (xy 89.90647 119.166566) (xy 89.825955 119.199916) (xy 89.811203 119.211236) (xy 89.744984 119.236836) (xy 89.675436 119.222572) (xy 89.624639 119.172971) (xy 89.6085 119.111273) (xy 89.6085 114.298143) (xy 89.609578 114.281697) (xy 89.612673 114.258188) (xy 89.613751 114.25) (xy 89.592838 114.091149) (xy 89.531524 113.943124) (xy 89.458478 113.847929) (xy 89.458474 113.847925) (xy 89.446376 113.832158) (xy 89.439016 113.822566) (xy 89.439013 113.822563) (xy 89.433987 113.816013) (xy 89.427432 113.810983) (xy 89.408621 113.796548) (xy 89.39623 113.785681) (xy 89.025405 113.414856) (xy 88.991379 113.352544) (xy 88.9885 113.325761) (xy 88.9885 111.187856) (xy 88.989578 111.171409) (xy 88.991092 111.159908) (xy 88.991529 111.15659) (xy 88.992228 111.128) (xy 88.993074 111.093365) (xy 88.993074 111.093361) (xy 88.993156 111.09) (xy 88.988924 111.038524) (xy 88.9885 111.0282) (xy 88.9885 110.191866) (xy 88.981745 110.129684) (xy 88.930615 109.993295) (xy 88.843261 109.876739) (xy 88.726705 109.789385) (xy 88.590316 109.738255) (xy 88.528134 109.7315) (xy 87.644985 109.7315) (xy 87.643446 109.731491) (xy 87.540081 109.730228) (xy 87.540079 109.730228) (xy 87.534911 109.730165) (xy 87.529797 109.730948) (xy 87.526289 109.731193) (xy 87.517496 109.7315) (xy 86.731866 109.7315) (xy 86.669684 109.738255) (xy 86.533295 109.789385) (xy 86.436911 109.861621) (xy 86.435565 109.86263) (xy 86.369059 109.887478) (xy 86.299676 109.872425) (xy 86.284435 109.86263) (xy 86.283089 109.861621) (xy 86.186705 109.789385) (xy 86.050316 109.738255) (xy 85.988134 109.7315) (xy 85.104985 109.7315) (xy 85.103446 109.731491) (xy 85.000081 109.730228) (xy 85.000079 109.730228) (xy 84.994911 109.730165) (xy 84.989797 109.730948) (xy 84.986289 109.731193) (xy 84.977496 109.7315) (xy 84.191866 109.7315) (xy 84.129684 109.738255) (xy 83.993295 109.789385) (xy 83.950105 109.821754) (xy 83.895148 109.862942) (xy 83.828642 109.88779) (xy 83.759259 109.872737) (xy 83.744018 109.862942) (xy 83.653649 109.795214) (xy 83.638054 109.786676) (xy 83.517606 109.741522) (xy 83.502351 109.737895) (xy 83.451486 109.732369) (xy 83.444672 109.732) (xy 82.822115 109.732) (xy 82.806876 109.736475) (xy 82.805671 109.737865) (xy 82.804 109.745548) (xy 82.804 114.229884) (xy 82.808475 114.245123) (xy 82.809865 114.246328) (xy 82.817548 114.247999) (xy 83.444669 114.247999) (xy 83.45149 114.247629) (xy 83.502352 114.242105) (xy 83.517604 114.238479) (xy 83.638054 114.193324) (xy 83.653649 114.184786) (xy 83.744018 114.117058) (xy 83.810525 114.09221) (xy 83.879907 114.107263) (xy 83.895148 114.117058) (xy 83.896837 114.118324) (xy 83.993295 114.190615) (xy 84.129684 114.241745) (xy 84.191866 114.2485) (xy 85.988134 114.2485) (xy 86.050316 114.241745) (xy 86.186705 114.190615) (xy 86.284436 114.11737) (xy 86.350941 114.092522) (xy 86.420324 114.107575) (xy 86.435562 114.117368) (xy 86.533295 114.190615) (xy 86.669684 114.241745) (xy 86.731866 114.2485) (xy 88.085761 114.2485) (xy 88.153882 114.268502) (xy 88.174856 114.285405) (xy 88.354595 114.465144) (xy 88.388621 114.527456) (xy 88.3915 114.554239) (xy 88.3915 118.28637) (xy 88.371498 118.354491) (xy 88.317842 118.400984) (xy 88.247568 118.411088) (xy 88.225833 118.405963) (xy 88.071234 118.354685) (xy 88.057868 118.351819) (xy 87.96523 118.342328) (xy 87.958815 118.342) (xy 87.884615 118.342) (xy 87.869376 118.346475) (xy 87.868171 118.347865) (xy 87.8665 118.355548) (xy 87.8665 119.453) (xy 87.846498 119.521121) (xy 87.792842 119.567614) (xy 87.7405 119.579) (xy 87.4845 119.579) (xy 87.416379 119.558998) (xy 87.369886 119.505342) (xy 87.3585 119.453) (xy 87.3585 118.360115) (xy 87.354025 118.344876) (xy 87.352635 118.343671) (xy 87.344952 118.342) (xy 87.266234 118.342) (xy 87.259718 118.342337) (xy 87.165868 118.352075) (xy 87.152472 118.354968) (xy 87.001047 118.405488) (xy 86.987883 118.411654) (xy 86.981833 118.415398) (xy 86.913381 118.434236) (xy 86.845611 118.413075) (xy 86.80004 118.358634) (xy 86.791136 118.288198) (xy 86.806411 118.245254) (xy 86.831223 118.202279) (xy 86.831224 118.202278) (xy 86.834527 118.196556) (xy 86.893542 118.014928) (xy 86.908505 117.872568) (xy 86.912814 117.831565) (xy 86.913504 117.825) (xy 86.907563 117.768476) (xy 86.894232 117.641635) (xy 86.894232 117.641633) (xy 86.893542 117.635072) (xy 86.834527 117.453444) (xy 86.73904 117.288056) (xy 86.734291 117.282781) (xy 86.615675 117.151045) (xy 86.615674 117.151044) (xy 86.611253 117.146134) (xy 86.456752 117.033882) (xy 86.450724 117.031198) (xy 86.450722 117.031197) (xy 86.288319 116.958891) (xy 86.288318 116.958891) (xy 86.282288 116.956206) (xy 86.188887 116.936353) (xy 86.101944 116.917872) (xy 86.101939 116.917872) (xy 86.095487 116.9165) (xy 85.904513 116.9165) (xy 85.898061 116.917872) (xy 85.898056 116.917872) (xy 85.811113 116.936353) (xy 85.717712 116.956206) (xy 85.711682 116.958891) (xy 85.711681 116.958891) (xy 85.549278 117.031197) (xy 85.549276 117.031198) (xy 85.543248 117.033882) (xy 85.388747 117.146134) (xy 85.384326 117.151044) (xy 85.384325 117.151045) (xy 85.26571 117.282781) (xy 85.26096 117.288056) (xy 85.165473 117.453444) (xy 85.106458 117.635072) (xy 85.105768 117.641633) (xy 85.105768 117.641635) (xy 85.092437 117.768476) (xy 85.086496 117.825) (xy 85.087186 117.831565) (xy 85.091496 117.872568) (xy 85.106458 118.014928) (xy 85.165473 118.196556) (xy 85.168776 118.202278) (xy 85.168777 118.202279) (xy 85.221256 118.293176) (xy 85.237994 118.362172) (xy 85.214773 118.429264) (xy 85.17844 118.46332) (xy 85.120969 118.498884) (xy 85.115796 118.504066) (xy 85.003242 118.616816) (xy 85.003238 118.616821) (xy 84.998071 118.621997) (xy 84.994231 118.628227) (xy 84.99423 118.628228) (xy 84.911833 118.761901) (xy 84.906791 118.77008) (xy 84.852026 118.935191) (xy 84.851326 118.942027) (xy 84.851325 118.94203) (xy 84.848786 118.966812) (xy 84.8415 119.037928) (xy 84.8415 119.612072) (xy 84.841837 119.615318) (xy 84.841837 119.615322) (xy 84.851238 119.705923) (xy 84.852293 119.716093) (xy 84.854474 119.722629) (xy 84.854474 119.722631) (xy 84.881468 119.80354) (xy 84.907346 119.881107) (xy 84.998884 120.029031) (xy 85.004066 120.034204) (xy 85.116816 120.146758) (xy 85.116821 120.146762) (xy 85.121997 120.151929) (xy 85.128227 120.155769) (xy 85.128228 120.15577) (xy 85.263853 120.239371) (xy 85.263856 120.239372) (xy 85.27008 120.243209) (xy 85.27185 120.243796) (xy 85.323453 120.289234) (xy 85.342912 120.357512) (xy 85.322369 120.425471) (xy 85.296341 120.453685) (xy 85.293193 120.455547) (xy 85.175547 120.573193) (xy 85.171511 120.580017) (xy 85.171509 120.58002) (xy 85.127405 120.654596) (xy 85.090855 120.716399) (xy 85.088644 120.72401) (xy 85.088643 120.724012) (xy 85.079095 120.756876) (xy 85.044438 120.876169) (xy 85.043934 120.882576) (xy 85.043933 120.88258) (xy 85.043431 120.888964) (xy 85.018146 120.955306) (xy 84.961009 120.997447) (xy 84.890159 121.002006) (xy 84.828724 120.968175) (xy 80.655405 116.794856) (xy 80.621379 116.732544) (xy 80.6185 116.705761) (xy 80.6185 114.3745) (xy 80.638502 114.306379) (xy 80.692158 114.259886) (xy 80.7445 114.2485) (xy 80.908134 114.2485) (xy 80.970316 114.241745) (xy 81.106705 114.190615) (xy 81.203163 114.118324) (xy 81.204852 114.117058) (xy 81.271358 114.09221) (xy 81.340741 114.107263) (xy 81.355982 114.117058) (xy 81.446351 114.184786) (xy 81.461946 114.193324) (xy 81.582394 114.238478) (xy 81.597649 114.242105) (xy 81.648514 114.247631) (xy 81.655328 114.248) (xy 82.277885 114.248) (xy 82.293124 114.243525) (xy 82.294329 114.242135) (xy 82.296 114.234452) (xy 82.296 109.750116) (xy 82.291525 109.734877) (xy 82.290135 109.733672) (xy 82.282452 109.732001) (xy 81.655331 109.732001) (xy 81.64851 109.732371) (xy 81.597648 109.737895) (xy 81.582396 109.741521) (xy 81.461946 109.786676) (xy 81.446351 109.795214) (xy 81.355982 109.862942) (xy 81.289475 109.88779) (xy 81.220093 109.872737) (xy 81.204852 109.862942) (xy 81.149895 109.821754) (xy 81.106705 109.789385) (xy 80.970316 109.738255) (xy 80.908134 109.7315) (xy 80.024985 109.7315) (xy 80.023446 109.731491) (xy 79.920081 109.730228) (xy 79.920079 109.730228) (xy 79.914911 109.730165) (xy 79.909797 109.730948) (xy 79.906289 109.731193) (xy 79.897496 109.7315) (xy 79.111866 109.7315) (xy 79.049684 109.738255) (xy 78.913295 109.789385) (xy 78.816911 109.861621) (xy 78.815565 109.86263) (xy 78.749059 109.887478) (xy 78.679676 109.872425) (xy 78.664435 109.86263) (xy 78.663089 109.861621) (xy 78.566705 109.789385) (xy 78.430316 109.738255) (xy 78.368134 109.7315) (xy 77.484985 109.7315) (xy 77.483446 109.731491) (xy 77.380081 109.730228) (xy 77.380079 109.730228) (xy 77.374911 109.730165) (xy 77.369797 109.730948) (xy 77.366289 109.731193) (xy 77.357496 109.7315) (xy 76.571866 109.7315) (xy 76.509684 109.738255) (xy 76.373295 109.789385) (xy 76.276911 109.861621) (xy 76.275565 109.86263) (xy 76.209059 109.887478) (xy 76.139676 109.872425) (xy 76.124435 109.86263) (xy 76.123089 109.861621) (xy 76.026705 109.789385) (xy 75.890316 109.738255) (xy 75.828134 109.7315) (xy 74.944985 109.7315) (xy 74.943446 109.731491) (xy 74.840081 109.730228) (xy 74.840079 109.730228) (xy 74.834911 109.730165) (xy 74.829797 109.730948) (xy 74.826289 109.731193) (xy 74.817496 109.7315) (xy 74.031866 109.7315) (xy 73.969684 109.738255) (xy 73.833295 109.789385) (xy 73.736911 109.861621) (xy 73.735565 109.86263) (xy 73.669059 109.887478) (xy 73.599676 109.872425) (xy 73.584435 109.86263) (xy 73.583089 109.861621) (xy 73.486705 109.789385) (xy 73.350316 109.738255) (xy 73.288134 109.7315) (xy 72.404985 109.7315) (xy 72.403446 109.731491) (xy 72.300081 109.730228) (xy 72.300079 109.730228) (xy 72.294911 109.730165) (xy 72.289797 109.730948) (xy 72.286289 109.731193) (xy 72.277496 109.7315) (xy 71.491866 109.7315) (xy 71.429684 109.738255) (xy 71.293295 109.789385) (xy 71.250105 109.821754) (xy 71.195148 109.862942) (xy 71.128642 109.88779) (xy 71.059259 109.872737) (xy 71.044018 109.862942) (xy 70.953649 109.795214) (xy 70.938054 109.786676) (xy 70.817606 109.741522) (xy 70.802351 109.737895) (xy 70.751486 109.732369) (xy 70.744672 109.732) (xy 70.122115 109.732) (xy 70.106876 109.736475) (xy 70.105671 109.737865) (xy 70.104 109.745548) (xy 70.104 114.229884) (xy 70.108475 114.245123) (xy 70.109865 114.246328) (xy 70.117548 114.247999) (xy 70.744669 114.247999) (xy 70.75149 114.247629) (xy 70.802352 114.242105) (xy 70.817604 114.238479) (xy 70.938054 114.193324) (xy 70.953649 114.184786) (xy 71.044018 114.117058) (xy 71.110525 114.09221) (xy 71.179907 114.107263) (xy 71.195148 114.117058) (xy 71.196837 114.118324) (xy 71.293295 114.190615) (xy 71.429684 114.241745) (xy 71.491866 114.2485) (xy 71.6555 114.2485) (xy 71.723621 114.268502) (xy 71.770114 114.322158) (xy 71.7815 114.3745) (xy 71.7815 118.621773) (xy 71.761498 118.689894) (xy 71.707842 118.736387) (xy 71.637568 118.746491) (xy 71.572988 118.716997) (xy 71.566405 118.710868) (xy 67.955405 115.099868) (xy 67.921379 115.037556) (xy 67.9185 115.010773) (xy 67.9185 114.3745) (xy 67.938502 114.306379) (xy 67.992158 114.259886) (xy 68.0445 114.2485) (xy 68.208134 114.2485) (xy 68.270316 114.241745) (xy 68.406705 114.190615) (xy 68.503163 114.118324) (xy 68.504852 114.117058) (xy 68.571358 114.09221) (xy 68.640741 114.107263) (xy 68.655982 114.117058) (xy 68.746351 114.184786) (xy 68.761946 114.193324) (xy 68.882394 114.238478) (xy 68.897649 114.242105) (xy 68.948514 114.247631) (xy 68.955328 114.248) (xy 69.577885 114.248) (xy 69.593124 114.243525) (xy 69.594329 114.242135) (xy 69.596 114.234452) (xy 69.596 109.750116) (xy 69.591525 109.734877) (xy 69.590135 109.733672) (xy 69.582452 109.732001) (xy 68.955331 109.732001) (xy 68.94851 109.732371) (xy 68.897648 109.737895) (xy 68.882396 109.741521) (xy 68.761946 109.786676) (xy 68.746351 109.795214) (xy 68.655982 109.862942) (xy 68.589475 109.88779) (xy 68.520093 109.872737) (xy 68.504852 109.862942) (xy 68.449895 109.821754) (xy 68.406705 109.789385) (xy 68.270316 109.738255) (xy 68.208134 109.7315) (xy 67.324985 109.7315) (xy 67.323446 109.731491) (xy 67.220081 109.730228) (xy 67.220079 109.730228) (xy 67.214911 109.730165) (xy 67.209797 109.730948) (xy 67.206289 109.731193) (xy 67.197496 109.7315) (xy 66.411866 109.7315) (xy 66.349684 109.738255) (xy 66.213295 109.789385) (xy 66.116911 109.861621) (xy 66.115565 109.86263) (xy 66.049059 109.887478) (xy 65.979676 109.872425) (xy 65.964435 109.86263) (xy 65.963089 109.861621) (xy 65.866705 109.789385) (xy 65.730316 109.738255) (xy 65.668134 109.7315) (xy 64.784985 109.7315) (xy 64.783446 109.731491) (xy 64.680081 109.730228) (xy 64.680079 109.730228) (xy 64.674911 109.730165) (xy 64.669797 109.730948) (xy 64.666289 109.731193) (xy 64.657496 109.7315) (xy 63.871866 109.7315) (xy 63.809684 109.738255) (xy 63.673295 109.789385) (xy 63.576911 109.861621) (xy 63.575565 109.86263) (xy 63.509059 109.887478) (xy 63.439676 109.872425) (xy 63.424435 109.86263) (xy 63.423089 109.861621) (xy 63.326705 109.789385) (xy 63.190316 109.738255) (xy 63.128134 109.7315) (xy 62.244985 109.7315) (xy 62.243446 109.731491) (xy 62.140081 109.730228) (xy 62.140079 109.730228) (xy 62.134911 109.730165) (xy 62.129797 109.730948) (xy 62.126289 109.731193) (xy 62.117496 109.7315) (xy 61.331866 109.7315) (xy 61.269684 109.738255) (xy 61.133295 109.789385) (xy 61.036911 109.861621) (xy 61.035565 109.86263) (xy 60.969059 109.887478) (xy 60.899676 109.872425) (xy 60.884435 109.86263) (xy 60.883089 109.861621) (xy 60.786705 109.789385) (xy 60.650316 109.738255) (xy 60.588134 109.7315) (xy 59.704985 109.7315) (xy 59.703446 109.731491) (xy 59.600081 109.730228) (xy 59.600079 109.730228) (xy 59.594911 109.730165) (xy 59.589797 109.730948) (xy 59.586289 109.731193) (xy 59.577496 109.7315) (xy 58.791866 109.7315) (xy 58.729684 109.738255) (xy 58.593295 109.789385) (xy 58.550105 109.821754) (xy 58.495148 109.862942) (xy 58.428642 109.88779) (xy 58.359259 109.872737) (xy 58.344018 109.862942) (xy 58.253649 109.795214) (xy 58.238054 109.786676) (xy 58.117606 109.741522) (xy 58.102351 109.737895) (xy 58.051486 109.732369) (xy 58.044672 109.732) (xy 57.422115 109.732) (xy 57.406876 109.736475) (xy 57.405671 109.737865) (xy 57.404 109.745548) (xy 57.404 112.362) (xy 57.383998 112.430121) (xy 57.330342 112.476614) (xy 57.278 112.488) (xy 57.022 112.488) (xy 56.953879 112.467998) (xy 56.907386 112.414342) (xy 56.896 112.362) (xy 56.896 109.750116) (xy 56.891525 109.734877) (xy 56.890135 109.733672) (xy 56.882452 109.732001) (xy 56.255331 109.732001) (xy 56.24851 109.732371) (xy 56.197648 109.737895) (xy 56.182396 109.741521) (xy 56.061946 109.786676) (xy 56.046351 109.795214) (xy 55.955982 109.862942) (xy 55.889475 109.88779) (xy 55.820093 109.872737) (xy 55.804852 109.862942) (xy 55.749895 109.821754) (xy 55.706705 109.789385) (xy 55.570316 109.738255) (xy 55.508134 109.7315) (xy 54.624985 109.7315) (xy 54.623446 109.731491) (xy 54.520081 109.730228) (xy 54.520079 109.730228) (xy 54.514911 109.730165) (xy 54.509797 109.730948) (xy 54.506289 109.731193) (xy 54.497496 109.7315) (xy 53.711866 109.7315) (xy 53.649684 109.738255) (xy 53.513295 109.789385) (xy 53.416911 109.861621) (xy 53.415565 109.86263) (xy 53.349059 109.887478) (xy 53.279676 109.872425) (xy 53.264435 109.86263) (xy 53.263089 109.861621) (xy 53.166705 109.789385) (xy 53.030316 109.738255) (xy 52.968134 109.7315) (xy 52.294217 109.7315) (xy 52.226096 109.711498) (xy 52.179603 109.657842) (xy 52.169499 109.587568) (xy 52.198993 109.522988) (xy 52.205122 109.516405) (xy 52.477562 109.243965) (xy 52.539874 109.209939) (xy 52.566657 109.20706) (xy 89.853304 109.20706) (xy 89.869747 109.208138) (xy 89.90144 109.21231) (xy 89.909629 109.211232) (xy 89.941314 109.207061) (xy 89.941324 109.20706) (xy 89.941325 109.20706) (xy 89.960049 109.204595) (xy 90.040897 109.193951) (xy 90.052104 109.192476) (xy 90.052106 109.192475) (xy 90.060291 109.191398) (xy 90.208316 109.130084) (xy 90.219725 109.12133) (xy 90.303512 109.057037) (xy 90.303515 109.057034) (xy 90.328877 109.037573) (xy 90.335427 109.032547) (xy 90.354898 109.007173) (xy 90.365756 108.994793) (xy 91.415144 107.945405) (xy 91.477456 107.911379) (xy 91.504239 107.9085) (xy 91.517904 107.9085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 103.561723 113.413855) (xy 103.611555 113.459762) (xy 103.651522 113.524348) (xy 103.776697 113.649305) (xy 103.782927 113.653145) (xy 103.782928 113.653146) (xy 103.92009 113.737694) (xy 103.927262 113.742115) (xy 103.975549 113.758131) (xy 104.005167 113.767955) (xy 104.063527 113.808386) (xy 104.090764 113.87395) (xy 104.0915 113.887548) (xy 104.0915 114.2905) (xy 104.071498 114.358621) (xy 104.017842 114.405114) (xy 103.9655 114.4165) (xy 103.675428 114.4165) (xy 103.672182 114.416837) (xy 103.672178 114.416837) (xy 103.578265 114.426581) (xy 103.578261 114.426582) (xy 103.571407 114.427293) (xy 103.564871 114.429474) (xy 103.564869 114.429474) (xy 103.4904 114.454319) (xy 103.406393 114.482346) (xy 103.258469 114.573884) (xy 103.253296 114.579066) (xy 103.140742 114.691816) (xy 103.140738 114.691821) (xy 103.135571 114.696997) (xy 103.131731 114.703227) (xy 103.13173 114.703228) (xy 103.048864 114.837662) (xy 103.044291 114.84508) (xy 102.989526 115.010191) (xy 102.979 115.112928) (xy 102.979 115.687072) (xy 102.979337 115.690318) (xy 102.979337 115.690322) (xy 102.988573 115.779331) (xy 102.989793 115.791093) (xy 102.991974 115.797629) (xy 102.991974 115.797631) (xy 103.035758 115.928866) (xy 103.044846 115.956107) (xy 103.136384 116.104031) (xy 103.141566 116.109204) (xy 103.254316 116.221758) (xy 103.254321 116.221762) (xy 103.259497 116.226929) (xy 103.40758 116.318209) (xy 103.572691 116.372974) (xy 103.579527 116.373674) (xy 103.57953 116.373675) (xy 103.631026 116.378951) (xy 103.675428 116.3835) (xy 104.274572 116.3835) (xy 104.277818 116.383163) (xy 104.277822 116.383163) (xy 104.371735 116.373419) (xy 104.371739 116.373418) (xy 104.378593 116.372707) (xy 104.385129 116.370526) (xy 104.385131 116.370526) (xy 104.517895 116.326232) (xy 104.543607 116.317654) (xy 104.691531 116.226116) (xy 104.696704 116.220934) (xy 104.798247 116.119214) (xy 104.86053 116.085135) (xy 104.93135 116.090138) (xy 104.976437 116.119059) (xy 105.079312 116.221754) (xy 105.079317 116.221758) (xy 105.084497 116.226929) (xy 105.23258 116.318209) (xy 105.397691 116.372974) (xy 105.404527 116.373674) (xy 105.40453 116.373675) (xy 105.456026 116.378951) (xy 105.500428 116.3835) (xy 105.6655 116.3835) (xy 105.733621 116.403502) (xy 105.780114 116.457158) (xy 105.7915 116.5095) (xy 105.7915 117.555761) (xy 105.771498 117.623882) (xy 105.754595 117.644856) (xy 104.945048 118.454403) (xy 104.882736 118.488429) (xy 104.818287 118.484358) (xy 104.818087 118.485116) (xy 104.814256 118.484104) (xy 104.813895 118.484081) (xy 104.813089 118.483796) (xy 104.808212 118.482069) (xy 104.803123 118.481162) (xy 104.803121 118.481162) (xy 104.593373 118.4438) (xy 104.593367 118.443799) (xy 104.588284 118.442894) (xy 104.514452 118.441992) (xy 104.370081 118.440228) (xy 104.370079 118.440228) (xy 104.364911 118.440165) (xy 104.144091 118.473955) (xy 103.931756 118.543357) (xy 103.874949 118.572929) (xy 103.768721 118.628228) (xy 103.733607 118.646507) (xy 103.729474 118.64961) (xy 103.729471 118.649612) (xy 103.559769 118.777028) (xy 103.554965 118.780635) (xy 103.528055 118.808795) (xy 103.420708 118.921127) (xy 103.400629 118.942138) (xy 103.293201 119.099621) (xy 103.238293 119.144621) (xy 103.167768 119.152792) (xy 103.104021 119.121538) (xy 103.083324 119.097054) (xy 103.002822 118.972617) (xy 103.00282 118.972614) (xy 103.000014 118.968277) (xy 102.84967 118.803051) (xy 102.845619 118.799852) (xy 102.845615 118.799848) (xy 102.678414 118.6678) (xy 102.67841 118.667798) (xy 102.674359 118.664598) (xy 102.666427 118.660219) (xy 102.622136 118.635769) (xy 102.478789 118.556638) (xy 102.47392 118.554914) (xy 102.473916 118.554912) (xy 102.273087 118.483795) (xy 102.273083 118.483794) (xy 102.268212 118.482069) (xy 102.263119 118.481162) (xy 102.263116 118.481161) (xy 102.053373 118.4438) (xy 102.053367 118.443799) (xy 102.048284 118.442894) (xy 101.974452 118.441992) (xy 101.830081 118.440228) (xy 101.830079 118.440228) (xy 101.824911 118.440165) (xy 101.604091 118.473955) (xy 101.391756 118.543357) (xy 101.334949 118.572929) (xy 101.228721 118.628228) (xy 101.193607 118.646507) (xy 101.189474 118.64961) (xy 101.189471 118.649612) (xy 101.060154 118.746706) (xy 100.993669 118.771612) (xy 100.924273 118.75662) (xy 100.874 118.706489) (xy 100.858501 118.645946) (xy 100.858501 115.366738) (xy 100.878503 115.298617) (xy 100.895406 115.277643) (xy 102.552644 113.620405) (xy 102.614956 113.586379) (xy 102.641739 113.5835) (xy 103.012072 113.5835) (xy 103.015318 113.583163) (xy 103.015322 113.583163) (xy 103.109235 113.573419) (xy 103.109239 113.573418) (xy 103.116093 113.572707) (xy 103.122629 113.570526) (xy 103.122631 113.570526) (xy 103.274159 113.519972) (xy 103.281107 113.517654) (xy 103.429031 113.426116) (xy 103.429049 113.426145) (xy 103.491959 113.400683) ) ) (filled_polygon (layer "F.Cu") (pts (xy 118.083621 112.328502) (xy 118.130114 112.382158) (xy 118.1415 112.4345) (xy 118.1415 113.298134) (xy 118.148255 113.360316) (xy 118.199385 113.496705) (xy 118.286739 113.613261) (xy 118.403295 113.700615) (xy 118.539684 113.751745) (xy 118.601866 113.7585) (xy 118.9655 113.7585) (xy 119.033621 113.778502) (xy 119.080114 113.832158) (xy 119.0915 113.8845) (xy 119.0915 118.3155) (xy 119.071498 118.383621) (xy 119.017842 118.430114) (xy 118.9655 118.4415) (xy 117.376866 118.4415) (xy 117.314684 118.448255) (xy 117.178295 118.499385) (xy 117.061739 118.586739) (xy 116.974385 118.703295) (xy 116.971233 118.711703) (xy 116.929919 118.821907) (xy 116.887277 118.878671) (xy 116.820716 118.903371) (xy 116.751367 118.888163) (xy 116.718743 118.862476) (xy 116.668151 118.806875) (xy 116.668142 118.806866) (xy 116.66467 118.803051) (xy 116.660619 118.799852) (xy 116.660615 118.799848) (xy 116.493414 118.6678) (xy 116.49341 118.667798) (xy 116.489359 118.664598) (xy 116.481427 118.660219) (xy 116.437136 118.635769) (xy 116.293789 118.556638) (xy 116.28892 118.554914) (xy 116.288916 118.554912) (xy 116.088087 118.483795) (xy 116.088083 118.483794) (xy 116.083212 118.482069) (xy 116.078119 118.481162) (xy 116.078116 118.481161) (xy 115.868373 118.4438) (xy 115.868367 118.443799) (xy 115.863284 118.442894) (xy 115.789452 118.441992) (xy 115.645081 118.440228) (xy 115.645079 118.440228) (xy 115.639911 118.440165) (xy 115.503558 118.46103) (xy 115.433197 118.451562) (xy 115.379123 118.405557) (xy 115.3585 118.33648) (xy 115.3585 116.474372) (xy 115.378502 116.406251) (xy 115.432158 116.359758) (xy 115.444623 116.354849) (xy 115.549154 116.319974) (xy 115.549156 116.319973) (xy 115.556107 116.317654) (xy 115.704031 116.226116) (xy 115.709204 116.220934) (xy 115.810747 116.119214) (xy 115.87303 116.085135) (xy 115.94385 116.090138) (xy 115.988937 116.119059) (xy 116.091812 116.221754) (xy 116.091817 116.221758) (xy 116.096997 116.226929) (xy 116.24508 116.318209) (xy 116.410191 116.372974) (xy 116.417027 116.373674) (xy 116.41703 116.373675) (xy 116.468526 116.378951) (xy 116.512928 116.3835) (xy 117.112072 116.3835) (xy 117.115318 116.383163) (xy 117.115322 116.383163) (xy 117.209235 116.373419) (xy 117.209239 116.373418) (xy 117.216093 116.372707) (xy 117.222629 116.370526) (xy 117.222631 116.370526) (xy 117.355395 116.326232) (xy 117.381107 116.317654) (xy 117.529031 116.226116) (xy 117.534204 116.220934) (xy 117.646758 116.108184) (xy 117.646762 116.108179) (xy 117.651929 116.103003) (xy 117.662943 116.085135) (xy 117.739369 115.96115) (xy 117.73937 115.961148) (xy 117.743209 115.95492) (xy 117.797974 115.789809) (xy 117.79879 115.78185) (xy 117.808172 115.690271) (xy 117.8085 115.687072) (xy 117.8085 115.112928) (xy 117.807145 115.099868) (xy 117.798419 115.015765) (xy 117.798418 115.015761) (xy 117.797707 115.008907) (xy 117.742654 114.843893) (xy 117.651116 114.695969) (xy 117.624346 114.669246) (xy 117.533184 114.578242) (xy 117.533179 114.578238) (xy 117.528003 114.573071) (xy 117.497452 114.554239) (xy 117.38615 114.485631) (xy 117.386148 114.48563) (xy 117.37992 114.481791) (xy 117.214809 114.427026) (xy 117.207973 114.426326) (xy 117.20797 114.426325) (xy 117.156474 114.421049) (xy 117.112072 114.4165) (xy 116.729239 114.4165) (xy 116.661118 114.396498) (xy 116.640144 114.379595) (xy 116.284144 114.023595) (xy 116.250118 113.961283) (xy 116.255183 113.890468) (xy 116.29773 113.833632) (xy 116.36425 113.808821) (xy 116.373239 113.8085) (xy 116.4004 113.8085) (xy 116.403646 113.808163) (xy 116.40365 113.808163) (xy 116.499308 113.798238) (xy 116.499312 113.798237) (xy 116.506166 113.797526) (xy 116.512702 113.795345) (xy 116.512704 113.795345) (xy 116.654205 113.748136) (xy 116.673946 113.74155) (xy 116.824348 113.648478) (xy 116.949305 113.523303) (xy 116.953146 113.517072) (xy 117.038275 113.378968) (xy 117.038276 113.378966) (xy 117.042115 113.372738) (xy 117.085636 113.241526) (xy 117.095632 113.211389) (xy 117.095632 113.211387) (xy 117.097797 113.204861) (xy 117.099984 113.183521) (xy 117.103504 113.149159) (xy 117.1085 113.1004) (xy 117.1085 112.4345) (xy 117.128502 112.366379) (xy 117.182158 112.319886) (xy 117.2345 112.3085) (xy 118.0155 112.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 129.633621 112.428502) (xy 129.680114 112.482158) (xy 129.6915 112.5345) (xy 129.6915 113.298134) (xy 129.698255 113.360316) (xy 129.749385 113.496705) (xy 129.836739 113.613261) (xy 129.953295 113.700615) (xy 130.089684 113.751745) (xy 130.151866 113.7585) (xy 130.4155 113.7585) (xy 130.483621 113.778502) (xy 130.530114 113.832158) (xy 130.5415 113.8845) (xy 130.5415 118.3155) (xy 130.521498 118.383621) (xy 130.467842 118.430114) (xy 130.4155 118.4415) (xy 128.876866 118.4415) (xy 128.814684 118.448255) (xy 128.678295 118.499385) (xy 128.561739 118.586739) (xy 128.474385 118.703295) (xy 128.471233 118.711703) (xy 128.429919 118.821907) (xy 128.387277 118.878671) (xy 128.320716 118.903371) (xy 128.251367 118.888163) (xy 128.218743 118.862476) (xy 128.168151 118.806875) (xy 128.168142 118.806866) (xy 128.16467 118.803051) (xy 128.160619 118.799852) (xy 128.160615 118.799848) (xy 127.993414 118.6678) (xy 127.99341 118.667798) (xy 127.989359 118.664598) (xy 127.981427 118.660219) (xy 127.937136 118.635769) (xy 127.793789 118.556638) (xy 127.78892 118.554914) (xy 127.788916 118.554912) (xy 127.588087 118.483795) (xy 127.588083 118.483794) (xy 127.583212 118.482069) (xy 127.578119 118.481162) (xy 127.578116 118.481161) (xy 127.368373 118.4438) (xy 127.368367 118.443799) (xy 127.363284 118.442894) (xy 127.289452 118.441992) (xy 127.145081 118.440228) (xy 127.145079 118.440228) (xy 127.139911 118.440165) (xy 127.011987 118.45974) (xy 126.9242 118.473173) (xy 126.924197 118.473174) (xy 126.919091 118.473955) (xy 126.914176 118.475562) (xy 126.914174 118.475562) (xy 126.87989 118.486768) (xy 126.808927 118.488921) (xy 126.751648 118.456099) (xy 126.345405 118.049856) (xy 126.311379 117.987544) (xy 126.3085 117.960761) (xy 126.3085 116.5095) (xy 126.328502 116.441379) (xy 126.382158 116.394886) (xy 126.4345 116.3835) (xy 126.587072 116.3835) (xy 126.590318 116.383163) (xy 126.590322 116.383163) (xy 126.684235 116.373419) (xy 126.684239 116.373418) (xy 126.691093 116.372707) (xy 126.697629 116.370526) (xy 126.697631 116.370526) (xy 126.830395 116.326232) (xy 126.856107 116.317654) (xy 127.004031 116.226116) (xy 127.009204 116.220934) (xy 127.110747 116.119214) (xy 127.17303 116.085135) (xy 127.24385 116.090138) (xy 127.288937 116.119059) (xy 127.391812 116.221754) (xy 127.391817 116.221758) (xy 127.396997 116.226929) (xy 127.54508 116.318209) (xy 127.710191 116.372974) (xy 127.717027 116.373674) (xy 127.71703 116.373675) (xy 127.768526 116.378951) (xy 127.812928 116.3835) (xy 128.412072 116.3835) (xy 128.415318 116.383163) (xy 128.415322 116.383163) (xy 128.509235 116.373419) (xy 128.509239 116.373418) (xy 128.516093 116.372707) (xy 128.522629 116.370526) (xy 128.522631 116.370526) (xy 128.655395 116.326232) (xy 128.681107 116.317654) (xy 128.829031 116.226116) (xy 128.834204 116.220934) (xy 128.946758 116.108184) (xy 128.946762 116.108179) (xy 128.951929 116.103003) (xy 128.962943 116.085135) (xy 129.039369 115.96115) (xy 129.03937 115.961148) (xy 129.043209 115.95492) (xy 129.097974 115.789809) (xy 129.09879 115.78185) (xy 129.108172 115.690271) (xy 129.1085 115.687072) (xy 129.1085 115.112928) (xy 129.107145 115.099868) (xy 129.098419 115.015765) (xy 129.098418 115.015761) (xy 129.097707 115.008907) (xy 129.042654 114.843893) (xy 128.951116 114.695969) (xy 128.924346 114.669246) (xy 128.833184 114.578242) (xy 128.833179 114.578238) (xy 128.828003 114.573071) (xy 128.797452 114.554239) (xy 128.68615 114.485631) (xy 128.686148 114.48563) (xy 128.67992 114.481791) (xy 128.514809 114.427026) (xy 128.507973 114.426326) (xy 128.50797 114.426325) (xy 128.456474 114.421049) (xy 128.412072 114.4165) (xy 128.029239 114.4165) (xy 127.961118 114.396498) (xy 127.940144 114.379595) (xy 127.645405 114.084856) (xy 127.611379 114.022544) (xy 127.6085 113.995761) (xy 127.6085 113.9345) (xy 127.628502 113.866379) (xy 127.682158 113.819886) (xy 127.7345 113.8085) (xy 127.9004 113.8085) (xy 127.903646 113.808163) (xy 127.90365 113.808163) (xy 127.999308 113.798238) (xy 127.999312 113.798237) (xy 128.006166 113.797526) (xy 128.012702 113.795345) (xy 128.012704 113.795345) (xy 128.154205 113.748136) (xy 128.173946 113.74155) (xy 128.324348 113.648478) (xy 128.449305 113.523303) (xy 128.453146 113.517072) (xy 128.538275 113.378968) (xy 128.538276 113.378966) (xy 128.542115 113.372738) (xy 128.585636 113.241526) (xy 128.595632 113.211389) (xy 128.595632 113.211387) (xy 128.597797 113.204861) (xy 128.599984 113.183521) (xy 128.603504 113.149159) (xy 128.6085 113.1004) (xy 128.6085 112.5345) (xy 128.628502 112.466379) (xy 128.682158 112.419886) (xy 128.7345 112.4085) (xy 129.5655 112.4085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 99.833621 112.278502) (xy 99.880114 112.332158) (xy 99.8915 112.3845) (xy 99.8915 112.887072) (xy 99.891837 112.890318) (xy 99.891837 112.890322) (xy 99.901001 112.978637) (xy 99.902293 112.991093) (xy 99.904474 112.997629) (xy 99.904474 112.997631) (xy 99.923838 113.055671) (xy 99.957346 113.156107) (xy 100.048884 113.304031) (xy 100.054066 113.309204) (xy 100.166816 113.421758) (xy 100.166821 113.421762) (xy 100.171997 113.426929) (xy 100.178229 113.430771) (xy 100.178231 113.430772) (xy 100.21449 113.453123) (xy 100.261983 113.505895) (xy 100.273405 113.575967) (xy 100.245131 113.641091) (xy 100.237468 113.649477) (xy 99.454247 114.432698) (xy 99.441856 114.443565) (xy 99.416494 114.463026) (xy 99.392007 114.494938) (xy 99.392004 114.494941) (xy 99.32349 114.58423) (xy 99.266152 114.626097) (xy 99.195281 114.630318) (xy 99.129894 114.591837) (xy 99.111253 114.571134) (xy 98.989047 114.482346) (xy 98.962094 114.462763) (xy 98.962093 114.462762) (xy 98.956752 114.458882) (xy 98.950724 114.456198) (xy 98.950722 114.456197) (xy 98.788319 114.383891) (xy 98.788318 114.383891) (xy 98.782288 114.381206) (xy 98.67547 114.358501) (xy 98.601944 114.342872) (xy 98.601939 114.342872) (xy 98.595487 114.3415) (xy 98.404513 114.3415) (xy 98.398061 114.342872) (xy 98.398056 114.342872) (xy 98.32453 114.358501) (xy 98.217712 114.381206) (xy 98.211682 114.383891) (xy 98.211681 114.383891) (xy 98.049278 114.456197) (xy 98.049276 114.456198) (xy 98.043248 114.458882) (xy 98.037907 114.462762) (xy 98.037906 114.462763) (xy 97.949061 114.527313) (xy 97.882193 114.551172) (xy 97.813042 114.535091) (xy 97.800939 114.527313) (xy 97.712094 114.462763) (xy 97.712093 114.462762) (xy 97.706752 114.458882) (xy 97.700724 114.456198) (xy 97.700722 114.456197) (xy 97.538319 114.383891) (xy 97.538318 114.383891) (xy 97.532288 114.381206) (xy 97.42547 114.358501) (xy 97.351944 114.342872) (xy 97.351939 114.342872) (xy 97.345487 114.3415) (xy 97.154513 114.3415) (xy 97.148061 114.342872) (xy 97.148056 114.342872) (xy 97.07453 114.358501) (xy 96.967712 114.381206) (xy 96.961682 114.383891) (xy 96.961681 114.383891) (xy 96.799278 114.456197) (xy 96.799276 114.456198) (xy 96.793248 114.458882) (xy 96.787907 114.462762) (xy 96.787906 114.462763) (xy 96.760953 114.482346) (xy 96.638747 114.571134) (xy 96.634326 114.576044) (xy 96.634325 114.576045) (xy 96.52542 114.696997) (xy 96.51096 114.713056) (xy 96.470289 114.7835) (xy 96.427002 114.858476) (xy 96.415473 114.878444) (xy 96.356458 115.060072) (xy 96.355768 115.066633) (xy 96.355768 115.066635) (xy 96.352275 115.099868) (xy 96.336496 115.25) (xy 96.336684 115.251786) (xy 96.317184 115.318196) (xy 96.300281 115.33917) (xy 95.872635 115.766816) (xy 95.810323 115.800842) (xy 95.739508 115.795777) (xy 95.682672 115.75323) (xy 95.657861 115.68671) (xy 95.65754 115.677721) (xy 95.65754 113.755199) (xy 95.677542 113.687078) (xy 95.694445 113.666104) (xy 97.065144 112.295405) (xy 97.127456 112.261379) (xy 97.154239 112.2585) (xy 99.7655 112.2585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 97.743851 103.1109) (xy 97.800687 103.153447) (xy 97.816228 103.180737) (xy 97.868476 103.306876) (xy 97.873503 103.313427) (xy 97.873504 103.313429) (xy 97.94152 103.402069) (xy 97.941526 103.402075) (xy 97.966013 103.433987) (xy 97.972568 103.439017) (xy 97.991379 103.453452) (xy 98.00377 103.464319) (xy 98.435685 103.896234) (xy 98.446552 103.908625) (xy 98.466013 103.933987) (xy 98.472563 103.939013) (xy 98.497921 103.958471) (xy 98.497937 103.958485) (xy 98.52404 103.978514) (xy 98.593124 104.031524) (xy 98.741149 104.092838) (xy 98.749336 104.093916) (xy 98.749337 104.093916) (xy 98.760542 104.095391) (xy 98.791738 104.099498) (xy 98.860115 104.1085) (xy 98.860118 104.1085) (xy 98.860126 104.108501) (xy 98.891811 104.112672) (xy 98.9 104.11375) (xy 98.931693 104.109578) (xy 98.948136 104.1085) (xy 99.461431 104.1085) (xy 99.529552 104.128502) (xy 99.576045 104.182158) (xy 99.58497 104.23683) (xy 99.587186 104.23683) (xy 99.587186 104.243435) (xy 99.586496 104.25) (xy 99.587186 104.256565) (xy 99.587186 104.26317) (xy 99.584757 104.26317) (xy 99.573971 104.322163) (xy 99.525472 104.374012) (xy 99.461431 104.3915) (xy 98.23071 104.3915) (xy 98.162589 104.371498) (xy 98.137074 104.349811) (xy 98.115668 104.326037) (xy 98.115666 104.326036) (xy 98.111253 104.321134) (xy 98.031473 104.26317) (xy 97.962094 104.212763) (xy 97.962093 104.212762) (xy 97.956752 104.208882) (xy 97.950724 104.206198) (xy 97.950722 104.206197) (xy 97.788319 104.133891) (xy 97.788318 104.133891) (xy 97.782288 104.131206) (xy 97.680537 104.109578) (xy 97.601944 104.092872) (xy 97.601939 104.092872) (xy 97.595487 104.0915) (xy 97.404513 104.0915) (xy 97.398061 104.092872) (xy 97.398056 104.092872) (xy 97.319463 104.109578) (xy 97.217712 104.131206) (xy 97.211682 104.133891) (xy 97.211681 104.133891) (xy 97.049278 104.206197) (xy 97.049276 104.206198) (xy 97.043248 104.208882) (xy 96.888747 104.321134) (xy 96.884326 104.326044) (xy 96.884325 104.326045) (xy 96.773322 104.449327) (xy 96.76096 104.463056) (xy 96.665473 104.628444) (xy 96.606458 104.810072) (xy 96.605768 104.816633) (xy 96.605768 104.816635) (xy 96.594011 104.928502) (xy 96.586496 105) (xy 96.58697 105.004513) (xy 96.567184 105.071899) (xy 96.513528 105.118392) (xy 96.487382 105.127025) (xy 96.47417 105.129833) (xy 96.474167 105.129834) (xy 96.467712 105.131206) (xy 96.461682 105.133891) (xy 96.461681 105.133891) (xy 96.299278 105.206197) (xy 96.299276 105.206198) (xy 96.293248 105.208882) (xy 96.287907 105.212762) (xy 96.287906 105.212763) (xy 96.237843 105.249136) (xy 96.138747 105.321134) (xy 96.134326 105.326044) (xy 96.134325 105.326045) (xy 96.02542 105.446997) (xy 96.01096 105.463056) (xy 95.915473 105.628444) (xy 95.856458 105.810072) (xy 95.855768 105.816633) (xy 95.855768 105.816635) (xy 95.838125 105.9845) (xy 95.836496 106) (xy 95.837186 106.006565) (xy 95.854419 106.170525) (xy 95.856458 106.189928) (xy 95.915473 106.371556) (xy 95.918776 106.377278) (xy 95.918777 106.377279) (xy 95.939279 106.412789) (xy 96.01096 106.536944) (xy 96.015378 106.541851) (xy 96.015379 106.541852) (xy 96.134325 106.673955) (xy 96.138747 106.678866) (xy 96.215799 106.734848) (xy 96.280272 106.78169) (xy 96.293248 106.791118) (xy 96.299276 106.793802) (xy 96.299278 106.793803) (xy 96.434239 106.853891) (xy 96.467712 106.868794) (xy 96.533939 106.882871) (xy 96.648056 106.907128) (xy 96.648061 106.907128) (xy 96.654513 106.9085) (xy 96.740027 106.9085) (xy 96.808148 106.928502) (xy 96.816731 106.934538) (xy 96.847921 106.958471) (xy 96.847937 106.958485) (xy 96.890806 106.991379) (xy 96.943124 107.031524) (xy 97.091149 107.092838) (xy 97.099336 107.093916) (xy 97.099337 107.093916) (xy 97.110542 107.095391) (xy 97.141738 107.099498) (xy 97.210115 107.1085) (xy 97.210118 107.1085) (xy 97.210126 107.108501) (xy 97.241811 107.112672) (xy 97.25 107.11375) (xy 97.281693 107.109578) (xy 97.298136 107.1085) (xy 98.951864 107.1085) (xy 98.968307 107.109578) (xy 99 107.11375) (xy 99.008189 107.112672) (xy 99.039874 107.108501) (xy 99.039884 107.1085) (xy 99.039885 107.1085) (xy 99.039901 107.108498) (xy 99.139457 107.095391) (xy 99.150664 107.093916) (xy 99.150666 107.093915) (xy 99.158851 107.092838) (xy 99.306876 107.031524) (xy 99.341998 107.004574) (xy 99.402069 106.95848) (xy 99.402075 106.958474) (xy 99.427434 106.939015) (xy 99.433987 106.933987) (xy 99.441685 106.923955) (xy 99.453452 106.908621) (xy 99.464319 106.89623) (xy 99.916104 106.444445) (xy 99.978416 106.410419) (xy 100.005199 106.40754) (xy 100.883189 106.407539) (xy 101.022096 106.407539) (xy 101.038541 106.408617) (xy 101.070232 106.412789) (xy 101.078421 106.411711) (xy 101.110106 106.40754) (xy 101.110116 106.407539) (xy 101.110117 106.407539) (xy 101.209689 106.39443) (xy 101.220896 106.392955) (xy 101.220898 106.392954) (xy 101.229083 106.391877) (xy 101.377108 106.330563) (xy 101.387262 106.322772) (xy 101.472304 106.257516) (xy 101.472307 106.257513) (xy 101.490652 106.243436) (xy 101.504219 106.233026) (xy 101.523685 106.207658) (xy 101.534552 106.195268) (xy 101.635855 106.093965) (xy 101.698167 106.059939) (xy 101.72495 106.05706) (xy 106.239892 106.05706) (xy 106.308013 106.077062) (xy 106.354506 106.130718) (xy 106.36461 106.200992) (xy 106.335116 106.265572) (xy 106.3062 106.2902) (xy 106.170969 106.373884) (xy 106.170568 106.373236) (xy 106.110037 106.397736) (xy 106.046336 106.38746) (xy 106.038323 106.383892) (xy 106.038315 106.383889) (xy 106.032288 106.381206) (xy 105.938887 106.361353) (xy 105.851944 106.342872) (xy 105.851939 106.342872) (xy 105.845487 106.3415) (xy 105.654513 106.3415) (xy 105.648061 106.342872) (xy 105.648056 106.342872) (xy 105.561113 106.361353) (xy 105.467712 106.381206) (xy 105.461682 106.383891) (xy 105.461681 106.383891) (xy 105.299278 106.456197) (xy 105.299276 106.456198) (xy 105.293248 106.458882) (xy 105.287907 106.462762) (xy 105.287906 106.462763) (xy 105.250948 106.489615) (xy 105.138747 106.571134) (xy 105.134326 106.576044) (xy 105.134325 106.576045) (xy 105.020501 106.70246) (xy 105.01096 106.713056) (xy 104.966606 106.78988) (xy 104.922595 106.866109) (xy 104.915473 106.878444) (xy 104.856458 107.060072) (xy 104.855768 107.066633) (xy 104.855768 107.066635) (xy 104.847247 107.147707) (xy 104.836496 107.25) (xy 104.837186 107.256565) (xy 104.850373 107.382028) (xy 104.856458 107.439928) (xy 104.915473 107.621556) (xy 105.01096 107.786944) (xy 105.015378 107.791851) (xy 105.015379 107.791852) (xy 105.110778 107.897803) (xy 105.138747 107.928866) (xy 105.208569 107.979595) (xy 105.27422 108.027293) (xy 105.293248 108.041118) (xy 105.299276 108.043802) (xy 105.299278 108.043803) (xy 105.461681 108.116109) (xy 105.467712 108.118794) (xy 105.561112 108.138647) (xy 105.648056 108.157128) (xy 105.648061 108.157128) (xy 105.654513 108.1585) (xy 105.845487 108.1585) (xy 105.851939 108.157128) (xy 105.851944 108.157128) (xy 105.889631 108.149117) (xy 105.960422 108.154519) (xy 106.017055 108.197336) (xy 106.041548 108.263974) (xy 106.023088 108.33848) (xy 105.961088 108.439063) (xy 105.954944 108.452241) (xy 105.904685 108.603766) (xy 105.901819 108.617132) (xy 105.892328 108.70977) (xy 105.892 108.716185) (xy 105.892 108.727885) (xy 105.896475 108.743124) (xy 105.897865 108.744329) (xy 105.905548 108.746) (xy 107.0655 108.746) (xy 107.133621 108.766002) (xy 107.180114 108.819658) (xy 107.1915 108.872) (xy 107.1915 109.128) (xy 107.171498 109.196121) (xy 107.117842 109.242614) (xy 107.0655 109.254) (xy 105.910115 109.254) (xy 105.894876 109.258475) (xy 105.893671 109.259865) (xy 105.892 109.267548) (xy 105.892 109.283766) (xy 105.892337 109.290282) (xy 105.902075 109.384132) (xy 105.904968 109.397528) (xy 105.955488 109.548953) (xy 105.961653 109.562115) (xy 106.045426 109.697492) (xy 106.05446 109.70889) (xy 106.124336 109.778645) (xy 106.158415 109.840928) (xy 106.153412 109.911748) (xy 106.110883 109.968644) (xy 106.105106 109.972974) (xy 106.086739 109.986739) (xy 106.081358 109.993919) (xy 106.081357 109.99392) (xy 106.04949 110.03644) (xy 105.992631 110.078955) (xy 105.921812 110.083981) (xy 105.859519 110.049921) (xy 105.842382 110.025471) (xy 105.841094 110.026268) (xy 105.751937 109.882193) (xy 105.742901 109.870792) (xy 105.628171 109.756261) (xy 105.61676 109.747249) (xy 105.478757 109.662184) (xy 105.465576 109.656037) (xy 105.31129 109.604862) (xy 105.297914 109.601995) (xy 105.203562 109.592328) (xy 105.197145 109.592) (xy 104.972115 109.592) (xy 104.956876 109.596475) (xy 104.955671 109.597865) (xy 104.954 109.605548) (xy 104.954 110.803) (xy 104.933998 110.871121) (xy 104.880342 110.917614) (xy 104.828 110.929) (xy 103.510116 110.929) (xy 103.494877 110.933475) (xy 103.493672 110.934865) (xy 103.492059 110.942282) (xy 103.458035 111.004594) (xy 103.395723 111.03862) (xy 103.368938 111.0415) (xy 96.898136 111.0415) (xy 96.881693 111.040422) (xy 96.85 111.03625) (xy 96.841811 111.037328) (xy 96.810126 111.041499) (xy 96.810117 111.0415) (xy 96.810115 111.0415) (xy 96.810109 111.041501) (xy 96.810107 111.041501) (xy 96.710543 111.054609) (xy 96.699336 111.056084) (xy 96.699334 111.056085) (xy 96.691149 111.057162) (xy 96.543124 111.118476) (xy 96.536573 111.123503) (xy 96.536571 111.123504) (xy 96.474141 111.171409) (xy 96.447928 111.191523) (xy 96.447925 111.191526) (xy 96.416013 111.216013) (xy 96.410983 111.222568) (xy 96.396548 111.241379) (xy 96.385681 111.25377) (xy 95.473114 112.166337) (xy 95.410802 112.200363) (xy 95.339987 112.195298) (xy 95.283151 112.152751) (xy 95.25834 112.086231) (xy 95.258019 112.077242) (xy 95.258019 110.402885) (xy 103.492 110.402885) (xy 103.496475 110.418124) (xy 103.497865 110.419329) (xy 103.505548 110.421) (xy 104.427885 110.421) (xy 104.443124 110.416525) (xy 104.444329 110.415135) (xy 104.446 110.407452) (xy 104.446 109.610116) (xy 104.441525 109.594877) (xy 104.440135 109.593672) (xy 104.432452 109.592001) (xy 104.202905 109.592001) (xy 104.196386 109.592338) (xy 104.100794 109.602257) (xy 104.0874 109.605149) (xy 103.933216 109.656588) (xy 103.920038 109.662761) (xy 103.782193 109.748063) (xy 103.770792 109.757099) (xy 103.656261 109.871829) (xy 103.647249 109.88324) (xy 103.562184 110.021243) (xy 103.556037 110.034424) (xy 103.504862 110.18871) (xy 103.501995 110.202086) (xy 103.492328 110.296438) (xy 103.492 110.302855) (xy 103.492 110.402885) (xy 95.258019 110.402885) (xy 95.258019 105.544756) (xy 95.278021 105.476635) (xy 95.294924 105.455661) (xy 97.610724 103.139861) (xy 97.673036 103.105835) ) ) (filled_polygon (layer "F.Cu") (pts (xy 128.829086 104.478982) (xy 128.85006 104.495885) (xy 130.486984 106.132809) (xy 130.52101 106.195121) (xy 130.515945 106.265936) (xy 130.473398 106.322772) (xy 130.406878 106.347583) (xy 130.331773 106.329164) (xy 130.26115 106.285631) (xy 130.261148 106.28563) (xy 130.25492 106.281791) (xy 130.089809 106.227026) (xy 130.082973 106.226326) (xy 130.08297 106.226325) (xy 130.031474 106.221049) (xy 129.987072 106.2165) (xy 129.760934 106.2165) (xy 129.692813 106.196498) (xy 129.64632 106.142842) (xy 129.635624 106.10367) (xy 129.635486 106.102352) (xy 129.631042 106.060072) (xy 129.572027 105.878444) (xy 129.544138 105.830138) (xy 129.504666 105.761772) (xy 129.47654 105.713056) (xy 129.46257 105.69754) (xy 129.353175 105.576045) (xy 129.353171 105.576041) (xy 129.348753 105.571134) (xy 129.232369 105.486576) (xy 129.199594 105.462763) (xy 129.199593 105.462762) (xy 129.194252 105.458882) (xy 129.188224 105.456198) (xy 129.188222 105.456197) (xy 129.025819 105.383891) (xy 129.025818 105.383891) (xy 129.019788 105.381206) (xy 128.926388 105.361353) (xy 128.839444 105.342872) (xy 128.839439 105.342872) (xy 128.832987 105.3415) (xy 128.642013 105.3415) (xy 128.635561 105.342872) (xy 128.635556 105.342872) (xy 128.548612 105.361353) (xy 128.455212 105.381206) (xy 128.449182 105.383891) (xy 128.449181 105.383891) (xy 128.286778 105.456197) (xy 128.286776 105.456198) (xy 128.280748 105.458882) (xy 128.275407 105.462762) (xy 128.275406 105.462763) (xy 128.240829 105.487885) (xy 128.126247 105.571134) (xy 128.121834 105.576036) (xy 128.121832 105.576037) (xy 128.100426 105.599811) (xy 128.03998 105.63705) (xy 128.00679 105.6415) (xy 123.48071 105.6415) (xy 123.412589 105.621498) (xy 123.387074 105.599811) (xy 123.365668 105.576037) (xy 123.365666 105.576036) (xy 123.361253 105.571134) (xy 123.246671 105.487885) (xy 123.212094 105.462763) (xy 123.212093 105.462762) (xy 123.206752 105.458882) (xy 123.200724 105.456198) (xy 123.200722 105.456197) (xy 123.038319 105.383891) (xy 123.038318 105.383891) (xy 123.032288 105.381206) (xy 122.938888 105.361353) (xy 122.851944 105.342872) (xy 122.851939 105.342872) (xy 122.845487 105.3415) (xy 122.654513 105.3415) (xy 122.648061 105.342872) (xy 122.648056 105.342872) (xy 122.561112 105.361353) (xy 122.467712 105.381206) (xy 122.461682 105.383891) (xy 122.461681 105.383891) (xy 122.299278 105.456197) (xy 122.299276 105.456198) (xy 122.293248 105.458882) (xy 122.287907 105.462762) (xy 122.287906 105.462763) (xy 122.255131 105.486576) (xy 122.138747 105.571134) (xy 122.134329 105.576041) (xy 122.134325 105.576045) (xy 122.024931 105.69754) (xy 122.01096 105.713056) (xy 121.982834 105.761772) (xy 121.943363 105.830138) (xy 121.915473 105.878444) (xy 121.856458 106.060072) (xy 121.855768 106.066633) (xy 121.855768 106.066635) (xy 121.84281 106.189928) (xy 121.836496 106.25) (xy 121.837186 106.256565) (xy 121.853606 106.412789) (xy 121.856458 106.439928) (xy 121.915473 106.621556) (xy 121.918776 106.627278) (xy 121.918777 106.627279) (xy 121.928399 106.643944) (xy 122.01096 106.786944) (xy 122.015378 106.791851) (xy 122.015379 106.791852) (xy 122.134325 106.923955) (xy 122.138747 106.928866) (xy 122.209409 106.980205) (xy 122.273123 107.026496) (xy 122.293248 107.041118) (xy 122.299276 107.043802) (xy 122.299278 107.043803) (xy 122.456383 107.11375) (xy 122.467712 107.118794) (xy 122.54268 107.134729) (xy 122.648056 107.157128) (xy 122.648061 107.157128) (xy 122.654513 107.1585) (xy 122.845487 107.1585) (xy 122.851939 107.157128) (xy 122.851944 107.157128) (xy 122.95732 107.134729) (xy 123.032288 107.118794) (xy 123.043617 107.11375) (xy 123.200722 107.043803) (xy 123.200724 107.043802) (xy 123.206752 107.041118) (xy 123.226878 107.026496) (xy 123.354205 106.933987) (xy 123.361253 106.928866) (xy 123.370263 106.91886) (xy 123.387074 106.900189) (xy 123.44752 106.86295) (xy 123.48071 106.8585) (xy 128.00679 106.8585) (xy 128.074911 106.878502) (xy 128.100426 106.900189) (xy 128.117238 106.91886) (xy 128.126247 106.928866) (xy 128.133295 106.933987) (xy 128.260623 107.026496) (xy 128.280748 107.041118) (xy 128.286776 107.043802) (xy 128.286778 107.043803) (xy 128.443883 107.11375) (xy 128.455212 107.118794) (xy 128.554437 107.139885) (xy 128.591697 107.147805) (xy 128.65417 107.181534) (xy 128.688492 107.243683) (xy 128.6915 107.271052) (xy 128.6915 107.487072) (xy 128.691837 107.490318) (xy 128.691837 107.490322) (xy 128.699728 107.566368) (xy 128.702293 107.591093) (xy 128.704474 107.597629) (xy 128.704474 107.597631) (xy 128.727056 107.665316) (xy 128.757346 107.756107) (xy 128.848884 107.904031) (xy 128.956141 108.011101) (xy 128.99022 108.073382) (xy 128.985217 108.144202) (xy 128.956296 108.189291) (xy 128.853637 108.292129) (xy 128.844625 108.30354) (xy 128.761088 108.439063) (xy 128.754944 108.452241) (xy 128.704685 108.603766) (xy 128.701819 108.617132) (xy 128.692328 108.70977) (xy 128.692 108.716185) (xy 128.692 108.727885) (xy 128.696475 108.743124) (xy 128.697865 108.744329) (xy 128.705548 108.746) (xy 129.8655 108.746) (xy 129.933621 108.766002) (xy 129.980114 108.819658) (xy 129.9915 108.872) (xy 129.9915 109.128) (xy 129.971498 109.196121) (xy 129.917842 109.242614) (xy 129.8655 109.254) (xy 128.710115 109.254) (xy 128.694876 109.258475) (xy 128.693671 109.259865) (xy 128.692 109.267548) (xy 128.692 109.283766) (xy 128.692337 109.290282) (xy 128.702075 109.384132) (xy 128.704968 109.397528) (xy 128.755488 109.548953) (xy 128.761653 109.562115) (xy 128.845426 109.697492) (xy 128.85446 109.70889) (xy 128.924336 109.778645) (xy 128.958415 109.840928) (xy 128.953412 109.911748) (xy 128.910883 109.968644) (xy 128.905106 109.972974) (xy 128.886739 109.986739) (xy 128.799385 110.103295) (xy 128.796235 110.111697) (xy 128.794072 110.115648) (xy 128.743814 110.165793) (xy 128.674423 110.180807) (xy 128.60793 110.155921) (xy 128.564029 110.095013) (xy 128.543413 110.033218) (xy 128.537239 110.020038) (xy 128.451937 109.882193) (xy 128.442901 109.870792) (xy 128.328171 109.756261) (xy 128.31676 109.747249) (xy 128.178757 109.662184) (xy 128.165576 109.656037) (xy 128.01129 109.604862) (xy 127.997914 109.601995) (xy 127.903562 109.592328) (xy 127.897145 109.592) (xy 127.672115 109.592) (xy 127.656876 109.596475) (xy 127.655671 109.597865) (xy 127.654 109.605548) (xy 127.654 110.803) (xy 127.633998 110.871121) (xy 127.580342 110.917614) (xy 127.528 110.929) (xy 126.210116 110.929) (xy 126.194877 110.933475) (xy 126.193672 110.934865) (xy 126.192001 110.942548) (xy 126.192001 111.047095) (xy 126.192506 111.056852) (xy 126.191403 111.056909) (xy 126.179371 111.122293) (xy 126.130811 111.174086) (xy 126.066896 111.1915) (xy 124.948136 111.1915) (xy 124.931693 111.190422) (xy 124.9 111.18625) (xy 124.891811 111.187328) (xy 124.860126 111.191499) (xy 124.860117 111.1915) (xy 124.860115 111.1915) (xy 124.860109 111.191501) (xy 124.860107 111.191501) (xy 124.760543 111.204609) (xy 124.749336 111.206084) (xy 124.749334 111.206085) (xy 124.741149 111.207162) (xy 124.593124 111.268476) (xy 124.563099 111.291515) (xy 124.497937 111.341515) (xy 124.497921 111.341529) (xy 124.472566 111.360984) (xy 124.472563 111.360987) (xy 124.466013 111.366013) (xy 124.460983 111.372568) (xy 124.446548 111.391379) (xy 124.435681 111.40377) (xy 124.036858 111.802593) (xy 123.974546 111.836619) (xy 123.908099 111.833092) (xy 123.896337 111.829191) (xy 123.896335 111.829191) (xy 123.889809 111.827026) (xy 123.882973 111.826326) (xy 123.88297 111.826325) (xy 123.830349 111.820934) (xy 123.787072 111.8165) (xy 123.187928 111.8165) (xy 123.184682 111.816837) (xy 123.184678 111.816837) (xy 123.090765 111.826581) (xy 123.090761 111.826582) (xy 123.083907 111.827293) (xy 123.077371 111.829474) (xy 123.077369 111.829474) (xy 122.977063 111.862939) (xy 122.918893 111.882346) (xy 122.770969 111.973884) (xy 122.765796 111.979066) (xy 122.760059 111.983613) (xy 122.759009 111.982288) (xy 122.704592 112.012063) (xy 122.633772 112.007058) (xy 122.588609 111.97806) (xy 121.645405 111.034856) (xy 121.611379 110.972544) (xy 121.6085 110.945761) (xy 121.6085 110.402885) (xy 126.192 110.402885) (xy 126.196475 110.418124) (xy 126.197865 110.419329) (xy 126.205548 110.421) (xy 127.127885 110.421) (xy 127.143124 110.416525) (xy 127.144329 110.415135) (xy 127.146 110.407452) (xy 127.146 109.610116) (xy 127.141525 109.594877) (xy 127.140135 109.593672) (xy 127.132452 109.592001) (xy 126.902905 109.592001) (xy 126.896386 109.592338) (xy 126.800794 109.602257) (xy 126.7874 109.605149) (xy 126.633216 109.656588) (xy 126.620038 109.662761) (xy 126.482193 109.748063) (xy 126.470792 109.757099) (xy 126.356261 109.871829) (xy 126.347249 109.88324) (xy 126.262184 110.021243) (xy 126.256037 110.034424) (xy 126.204862 110.18871) (xy 126.201995 110.202086) (xy 126.192328 110.296438) (xy 126.192 110.302855) (xy 126.192 110.402885) (xy 121.6085 110.402885) (xy 121.6085 106.798136) (xy 121.609578 106.78169) (xy 121.612672 106.758188) (xy 121.61375 106.75) (xy 121.6085 106.71012) (xy 121.6085 106.710115) (xy 121.592838 106.59115) (xy 121.590979 106.586662) (xy 121.568017 106.531226) (xy 121.534684 106.450752) (xy 121.534683 106.45075) (xy 121.531524 106.443124) (xy 121.47777 106.373071) (xy 121.458477 106.347929) (xy 121.458476 106.347927) (xy 121.439017 106.322567) (xy 121.439013 106.322563) (xy 121.433987 106.316013) (xy 121.427437 106.310987) (xy 121.427434 106.310984) (xy 121.40862 106.296548) (xy 121.396229 106.285681) (xy 119.784624 104.674075) (xy 119.750598 104.611763) (xy 119.755663 104.540947) (xy 119.79821 104.484112) (xy 119.86473 104.459301) (xy 119.873719 104.45898) (xy 128.760965 104.45898) ) ) (filled_polygon (layer "F.Cu") (pts (xy 116.262922 105.677542) (xy 116.283896 105.694445) (xy 116.351223 105.761772) (xy 116.385249 105.824084) (xy 116.380184 105.894899) (xy 116.371248 105.913865) (xy 116.362528 105.928969) (xy 116.359223 105.934694) (xy 116.300208 106.116322) (xy 116.299518 106.122883) (xy 116.299518 106.122885) (xy 116.288646 106.226325) (xy 116.280246 106.30625) (xy 116.280936 106.312815) (xy 116.298607 106.480941) (xy 116.300208 106.496178) (xy 116.359223 106.677806) (xy 116.362526 106.683528) (xy 116.362527 106.683529) (xy 116.382876 106.718774) (xy 116.45471 106.843194) (xy 116.459128 106.848101) (xy 116.459129 106.848102) (xy 116.568917 106.970034) (xy 116.582497 106.985116) (xy 116.665235 107.045229) (xy 116.73051 107.092654) (xy 116.736998 107.097368) (xy 116.743026 107.100052) (xy 116.743028 107.100053) (xy 116.899877 107.169886) (xy 116.911462 107.175044) (xy 116.917917 107.176416) (xy 116.91792 107.176417) (xy 116.968306 107.187126) (xy 116.991696 107.192098) (xy 117.05417 107.225826) (xy 117.088491 107.287975) (xy 117.0915 107.315345) (xy 117.0915 107.487072) (xy 117.091837 107.490318) (xy 117.091837 107.490322) (xy 117.099728 107.566368) (xy 117.102293 107.591093) (xy 117.104474 107.597629) (xy 117.104474 107.597631) (xy 117.127056 107.665316) (xy 117.157346 107.756107) (xy 117.248884 107.904031) (xy 117.356141 108.011101) (xy 117.39022 108.073382) (xy 117.385217 108.144202) (xy 117.356296 108.189291) (xy 117.253637 108.292129) (xy 117.244625 108.30354) (xy 117.161088 108.439063) (xy 117.154944 108.452241) (xy 117.104685 108.603766) (xy 117.101819 108.617132) (xy 117.092328 108.70977) (xy 117.092 108.716185) (xy 117.092 108.727885) (xy 117.096475 108.743124) (xy 117.097865 108.744329) (xy 117.105548 108.746) (xy 118.2655 108.746) (xy 118.333621 108.766002) (xy 118.380114 108.819658) (xy 118.3915 108.872) (xy 118.3915 109.128) (xy 118.371498 109.196121) (xy 118.317842 109.242614) (xy 118.2655 109.254) (xy 117.110115 109.254) (xy 117.094876 109.258475) (xy 117.093671 109.259865) (xy 117.092 109.267548) (xy 117.092 109.283766) (xy 117.092337 109.290282) (xy 117.102075 109.384132) (xy 117.104968 109.397528) (xy 117.155488 109.548953) (xy 117.161653 109.562115) (xy 117.245426 109.697492) (xy 117.25446 109.70889) (xy 117.346331 109.800601) (xy 117.38041 109.862883) (xy 117.375407 109.933704) (xy 117.346408 109.978869) (xy 117.34392 109.981357) (xy 117.336739 109.986739) (xy 117.267272 110.079429) (xy 117.210414 110.121943) (xy 117.139596 110.126969) (xy 117.077302 110.092909) (xy 117.046924 110.043741) (xy 117.043413 110.033219) (xy 117.037239 110.020038) (xy 116.951937 109.882193) (xy 116.942901 109.870792) (xy 116.828171 109.756261) (xy 116.81676 109.747249) (xy 116.678757 109.662184) (xy 116.665576 109.656037) (xy 116.51129 109.604862) (xy 116.497914 109.601995) (xy 116.403562 109.592328) (xy 116.397145 109.592) (xy 116.172115 109.592) (xy 116.156876 109.596475) (xy 116.155671 109.597865) (xy 116.154 109.605548) (xy 116.154 110.803) (xy 116.133998 110.871121) (xy 116.080342 110.917614) (xy 116.028 110.929) (xy 114.710116 110.929) (xy 114.694877 110.933475) (xy 114.693672 110.934865) (xy 114.692001 110.942548) (xy 114.692001 110.9655) (xy 114.671999 111.033621) (xy 114.618343 111.080114) (xy 114.566001 111.0915) (xy 113.448136 111.0915) (xy 113.43169 111.090422) (xy 113.408188 111.087328) (xy 113.4 111.08625) (xy 113.391812 111.087328) (xy 113.360129 111.091499) (xy 113.36012 111.0915) (xy 113.360115 111.0915) (xy 113.28355 111.10158) (xy 113.257451 111.105016) (xy 113.24115 111.107162) (xy 113.093125 111.168476) (xy 113.093123 111.168477) (xy 113.093124 111.168477) (xy 112.997928 111.241523) (xy 112.997925 111.241526) (xy 112.966013 111.266013) (xy 112.960983 111.272568) (xy 112.946548 111.291379) (xy 112.935681 111.30377) (xy 112.636858 111.602593) (xy 112.574546 111.636619) (xy 112.508099 111.633092) (xy 112.496337 111.629191) (xy 112.496335 111.629191) (xy 112.489809 111.627026) (xy 112.482973 111.626326) (xy 112.48297 111.626325) (xy 112.42992 111.62089) (xy 112.387072 111.6165) (xy 111.787928 111.6165) (xy 111.784682 111.616837) (xy 111.784678 111.616837) (xy 111.690765 111.626581) (xy 111.690761 111.626582) (xy 111.683907 111.627293) (xy 111.677371 111.629474) (xy 111.677369 111.629474) (xy 111.560745 111.668383) (xy 111.518893 111.682346) (xy 111.370969 111.773884) (xy 111.365796 111.779066) (xy 111.253242 111.891816) (xy 111.253238 111.891821) (xy 111.248071 111.896997) (xy 111.244229 111.903229) (xy 111.244228 111.903231) (xy 111.22673 111.931617) (xy 111.173957 111.97911) (xy 111.119471 111.9915) (xy 110.654239 111.9915) (xy 110.586118 111.971498) (xy 110.565144 111.954595) (xy 110.395405 111.784856) (xy 110.361379 111.722544) (xy 110.3585 111.695761) (xy 110.3585 110.402885) (xy 114.692 110.402885) (xy 114.696475 110.418124) (xy 114.697865 110.419329) (xy 114.705548 110.421) (xy 115.627885 110.421) (xy 115.643124 110.416525) (xy 115.644329 110.415135) (xy 115.646 110.407452) (xy 115.646 109.610116) (xy 115.641525 109.594877) (xy 115.640135 109.593672) (xy 115.632452 109.592001) (xy 115.402905 109.592001) (xy 115.396386 109.592338) (xy 115.300794 109.602257) (xy 115.2874 109.605149) (xy 115.133216 109.656588) (xy 115.120038 109.662761) (xy 114.982193 109.748063) (xy 114.970792 109.757099) (xy 114.856261 109.871829) (xy 114.847249 109.88324) (xy 114.762184 110.021243) (xy 114.756037 110.034424) (xy 114.704862 110.18871) (xy 114.701995 110.202086) (xy 114.692328 110.296438) (xy 114.692 110.302855) (xy 114.692 110.402885) (xy 110.3585 110.402885) (xy 110.3585 107.2845) (xy 110.378502 107.216379) (xy 110.432158 107.169886) (xy 110.4845 107.1585) (xy 110.595487 107.1585) (xy 110.601939 107.157128) (xy 110.601944 107.157128) (xy 110.70732 107.134729) (xy 110.782288 107.118794) (xy 110.793617 107.11375) (xy 110.950722 107.043803) (xy 110.950724 107.043802) (xy 110.956752 107.041118) (xy 110.976878 107.026496) (xy 111.040591 106.980205) (xy 111.111253 106.928866) (xy 111.115675 106.923955) (xy 111.234621 106.791852) (xy 111.234622 106.791851) (xy 111.23904 106.786944) (xy 111.321601 106.643944) (xy 111.331223 106.627279) (xy 111.331224 106.627278) (xy 111.334527 106.621556) (xy 111.393542 106.439928) (xy 111.396395 106.412789) (xy 111.412814 106.256565) (xy 111.413504 106.25) (xy 111.40719 106.189928) (xy 111.394232 106.066635) (xy 111.394232 106.066633) (xy 111.393542 106.060072) (xy 111.345531 105.91231) (xy 111.343503 105.841344) (xy 111.376269 105.78428) (xy 111.466104 105.694445) (xy 111.528416 105.660419) (xy 111.555199 105.65754) (xy 116.194801 105.65754) ) ) (filled_polygon (layer "F.Cu") (pts (xy 108.814371 86.678991) (xy 108.835345 86.695894) (xy 109.034219 86.894768) (xy 109.068245 86.95708) (xy 109.06318 87.027895) (xy 109.020633 87.084731) (xy 108.954113 87.109542) (xy 108.918927 87.10711) (xy 108.851944 87.092872) (xy 108.851939 87.092872) (xy 108.845487 87.0915) (xy 108.654513 87.0915) (xy 108.648061 87.092872) (xy 108.648056 87.092872) (xy 108.561112 87.111353) (xy 108.467712 87.131206) (xy 108.461682 87.133891) (xy 108.461681 87.133891) (xy 108.299278 87.206197) (xy 108.299276 87.206198) (xy 108.293248 87.208882) (xy 108.287907 87.212762) (xy 108.287906 87.212763) (xy 108.251615 87.23913) (xy 108.138747 87.321134) (xy 108.134326 87.326044) (xy 108.134325 87.326045) (xy 108.015846 87.45763) (xy 108.01096 87.463056) (xy 107.961164 87.549305) (xy 107.927681 87.6073) (xy 107.915473 87.628444) (xy 107.856458 87.810072) (xy 107.855768 87.816633) (xy 107.855768 87.816635) (xy 107.84281 87.939928) (xy 107.836496 88) (xy 107.83697 88.004513) (xy 107.817184 88.071899) (xy 107.763528 88.118392) (xy 107.737382 88.127025) (xy 107.72417 88.129833) (xy 107.724167 88.129834) (xy 107.717712 88.131206) (xy 107.711682 88.133891) (xy 107.711681 88.133891) (xy 107.549278 88.206197) (xy 107.549276 88.206198) (xy 107.543248 88.208882) (xy 107.537907 88.212762) (xy 107.537906 88.212763) (xy 107.487843 88.249136) (xy 107.388747 88.321134) (xy 107.384326 88.326044) (xy 107.384325 88.326045) (xy 107.288249 88.432749) (xy 107.26096 88.463056) (xy 107.215891 88.541118) (xy 107.172595 88.616109) (xy 107.165473 88.628444) (xy 107.106458 88.810072) (xy 107.105768 88.816633) (xy 107.105768 88.816635) (xy 107.090231 88.964465) (xy 107.086496 89) (xy 107.087186 89.006565) (xy 107.105557 89.181351) (xy 107.106458 89.189928) (xy 107.111041 89.204031) (xy 107.112386 89.208171) (xy 107.114415 89.279138) (xy 107.077754 89.339937) (xy 107.018752 89.370356) (xy 106.974176 89.379831) (xy 106.974167 89.379834) (xy 106.967712 89.381206) (xy 106.961682 89.383891) (xy 106.961681 89.383891) (xy 106.947217 89.390331) (xy 106.801248 89.45532) (xy 106.730882 89.464754) (xy 106.698753 89.45532) (xy 106.552783 89.390331) (xy 106.538319 89.383891) (xy 106.538318 89.383891) (xy 106.532288 89.381206) (xy 106.426035 89.358621) (xy 106.351944 89.342872) (xy 106.351939 89.342872) (xy 106.345487 89.3415) (xy 106.154513 89.3415) (xy 106.148061 89.342872) (xy 106.148056 89.342872) (xy 106.073965 89.358621) (xy 105.967712 89.381206) (xy 105.961682 89.383891) (xy 105.961681 89.383891) (xy 105.799278 89.456197) (xy 105.799276 89.456198) (xy 105.793248 89.458882) (xy 105.787907 89.462762) (xy 105.787906 89.462763) (xy 105.749983 89.490316) (xy 105.638747 89.571134) (xy 105.634326 89.576044) (xy 105.634325 89.576045) (xy 105.550074 89.669616) (xy 105.51096 89.713056) (xy 105.415473 89.878444) (xy 105.356458 90.060072) (xy 105.355768 90.066633) (xy 105.355768 90.066635) (xy 105.352343 90.09922) (xy 105.33903 90.225896) (xy 105.338738 90.22867) (xy 105.311725 90.294327) (xy 105.253503 90.334957) (xy 105.213428 90.3415) (xy 105.154513 90.3415) (xy 105.148061 90.342872) (xy 105.148056 90.342872) (xy 105.061112 90.361353) (xy 104.967712 90.381206) (xy 104.961682 90.383891) (xy 104.961681 90.383891) (xy 104.799278 90.456197) (xy 104.799276 90.456198) (xy 104.793248 90.458882) (xy 104.638747 90.571134) (xy 104.624922 90.586489) (xy 104.564481 90.623727) (xy 104.505091 90.625425) (xy 104.469743 90.617911) (xy 104.351944 90.592872) (xy 104.351939 90.592872) (xy 104.345487 90.5915) (xy 104.154513 90.5915) (xy 104.148061 90.592872) (xy 104.148056 90.592872) (xy 104.061112 90.611353) (xy 103.967712 90.631206) (xy 103.961682 90.633891) (xy 103.961681 90.633891) (xy 103.799278 90.706197) (xy 103.799276 90.706198) (xy 103.793248 90.708882) (xy 103.787907 90.712762) (xy 103.787906 90.712763) (xy 103.738595 90.74859) (xy 103.638747 90.821134) (xy 103.634326 90.826044) (xy 103.634325 90.826045) (xy 103.536232 90.934989) (xy 103.51096 90.963056) (xy 103.415473 91.128444) (xy 103.356458 91.310072) (xy 103.355768 91.316633) (xy 103.355768 91.316635) (xy 103.346752 91.402422) (xy 103.336496 91.5) (xy 103.356458 91.689928) (xy 103.415473 91.871556) (xy 103.418776 91.877278) (xy 103.418777 91.877279) (xy 103.496127 92.011253) (xy 103.512865 92.080248) (xy 103.489645 92.14734) (xy 103.476103 92.163348) (xy 94.323595 101.315856) (xy 94.261283 101.349882) (xy 94.190468 101.344817) (xy 94.133632 101.30227) (xy 94.108821 101.23575) (xy 94.1085 101.226761) (xy 94.1085 100.598319) (xy 94.128502 100.530198) (xy 94.179068 100.485168) (xy 94.191932 100.478866) (xy 94.193353 100.47817) (xy 94.193357 100.478168) (xy 94.197994 100.475896) (xy 94.202198 100.472898) (xy 94.202202 100.472895) (xy 94.308678 100.396946) (xy 94.37986 100.346173) (xy 94.389122 100.336944) (xy 94.527733 100.198816) (xy 94.538096 100.188489) (xy 94.588405 100.118477) (xy 94.665435 100.011277) (xy 94.668453 100.007077) (xy 94.677634 99.988502) (xy 94.765136 99.811453) (xy 94.765137 99.811451) (xy 94.76743 99.806811) (xy 94.814344 99.652401) (xy 94.830865 99.598023) (xy 94.830865 99.598021) (xy 94.83237 99.593069) (xy 94.861529 99.37159) (xy 94.861611 99.36824) (xy 94.863074 99.308365) (xy 94.863074 99.308361) (xy 94.863156 99.305) (xy 94.844852 99.082361) (xy 94.790431 98.865702) (xy 94.701354 98.66084) (xy 94.645758 98.574901) (xy 94.582822 98.477617) (xy 94.58282 98.477614) (xy 94.580014 98.473277) (xy 94.42967 98.308051) (xy 94.425619 98.304852) (xy 94.425615 98.304848) (xy 94.258414 98.1728) (xy 94.25841 98.172798) (xy 94.254359 98.169598) (xy 94.212569 98.146529) (xy 94.162598 98.096097) (xy 94.147826 98.026654) (xy 94.172942 97.960248) (xy 94.200294 97.933641) (xy 94.375328 97.808792) (xy 94.3832 97.802139) (xy 94.534052 97.651812) (xy 94.54073 97.643965) (xy 94.665003 97.47102) (xy 94.670313 97.462183) (xy 94.76467 97.271267) (xy 94.768469 97.261672) (xy 94.830377 97.05791) (xy 94.832555 97.047837) (xy 94.833986 97.036962) (xy 94.831775 97.022778) (xy 94.818617 97.019) (xy 92.183225 97.019) (xy 92.169694 97.022973) (xy 92.168257 97.032966) (xy 92.198565 97.167446) (xy 92.201645 97.177275) (xy 92.28177 97.374603) (xy 92.286413 97.383794) (xy 92.397694 97.565388) (xy 92.403777 97.573699) (xy 92.543213 97.734667) (xy 92.55058 97.741883) (xy 92.714434 97.877916) (xy 92.722881 97.883831) (xy 92.791969 97.924203) (xy 92.840693 97.975842) (xy 92.853764 98.045625) (xy 92.827033 98.111396) (xy 92.786584 98.144752) (xy 92.773607 98.151507) (xy 92.769474 98.15461) (xy 92.769471 98.154612) (xy 92.5991 98.28253) (xy 92.594965 98.285635) (xy 92.576605 98.304848) (xy 92.446153 98.441358) (xy 92.440629 98.447138) (xy 92.437715 98.45141) (xy 92.437714 98.451411) (xy 92.419838 98.477617) (xy 92.314743 98.63168) (xy 92.283177 98.699684) (xy 92.223493 98.828263) (xy 92.220688 98.834305) (xy 92.160989 99.04957) (xy 92.137251 99.271695) (xy 92.137548 99.276848) (xy 92.137548 99.276851) (xy 92.149456 99.483367) (xy 92.15011 99.494715) (xy 92.151247 99.499761) (xy 92.151248 99.499767) (xy 92.169379 99.580219) (xy 92.199222 99.712639) (xy 92.253641 99.846657) (xy 92.271417 99.890434) (xy 92.283266 99.919616) (xy 92.316209 99.973374) (xy 92.395987 100.10356) (xy 92.399987 100.110088) (xy 92.54625 100.278938) (xy 92.718126 100.421632) (xy 92.7768 100.455918) (xy 92.82907 100.486462) (xy 92.877794 100.5381) (xy 92.8915 100.59525) (xy 92.8915 101.795761) (xy 92.871498 101.863882) (xy 92.854595 101.884856) (xy 90.773595 103.965856) (xy 90.711283 103.999882) (xy 90.640468 103.994817) (xy 90.583632 103.95227) (xy 90.558821 103.88575) (xy 90.5585 103.876761) (xy 90.5585 103.841866) (xy 90.551745 103.779684) (xy 90.500615 103.643295) (xy 90.427058 103.545148) (xy 90.40221 103.478642) (xy 90.417263 103.409259) (xy 90.427058 103.394018) (xy 90.494786 103.303649) (xy 90.503324 103.288054) (xy 90.548478 103.167606) (xy 90.552105 103.152351) (xy 90.557631 103.101486) (xy 90.558 103.094672) (xy 90.558 102.472115) (xy 90.553525 102.456876) (xy 90.552135 102.455671) (xy 90.544452 102.454) (xy 86.060116 102.454) (xy 86.044877 102.458475) (xy 86.043672 102.459865) (xy 86.042001 102.467548) (xy 86.042001 103.094669) (xy 86.042371 103.10149) (xy 86.047895 103.152352) (xy 86.051521 103.167604) (xy 86.096676 103.288054) (xy 86.105214 103.303649) (xy 86.172942 103.394018) (xy 86.19779 103.460525) (xy 86.182737 103.529907) (xy 86.172942 103.545148) (xy 86.099385 103.643295) (xy 86.048255 103.779684) (xy 86.0415 103.841866) (xy 86.0415 104.660219) (xy 86.040787 104.673607) (xy 86.037251 104.706695) (xy 86.037548 104.711848) (xy 86.037548 104.711851) (xy 86.041291 104.776763) (xy 86.0415 104.784016) (xy 86.0415 105.638134) (xy 86.048255 105.700316) (xy 86.099385 105.836705) (xy 86.186739 105.953261) (xy 86.303295 106.040615) (xy 86.439684 106.091745) (xy 86.501866 106.0985) (xy 87.370826 106.0985) (xy 87.375443 106.098585) (xy 87.456673 106.101564) (xy 87.456677 106.101564) (xy 87.461837 106.101753) (xy 87.466957 106.101097) (xy 87.466959 106.101097) (xy 87.479261 106.099521) (xy 87.495271 106.0985) (xy 89.712482 106.0985) (xy 89.780603 106.118502) (xy 89.827096 106.172158) (xy 89.837792 106.23767) (xy 89.836496 106.25) (xy 89.836684 106.251786) (xy 89.817184 106.318196) (xy 89.800281 106.33917) (xy 88.585816 107.553635) (xy 88.523504 107.587661) (xy 88.496721 107.59054) (xy 57.009193 107.59054) (xy 56.941072 107.570538) (xy 56.894579 107.516882) (xy 56.884475 107.446608) (xy 56.913969 107.382028) (xy 56.920098 107.375445) (xy 59.245754 105.049789) (xy 59.258145 105.038922) (xy 59.276957 105.024487) (xy 59.283507 105.019461) (xy 59.307994 104.987549) (xy 59.307997 104.987546) (xy 59.368447 104.908765) (xy 59.370487 104.906107) (xy 59.376019 104.898898) (xy 59.37602 104.898896) (xy 59.381044 104.892349) (xy 59.442358 104.744324) (xy 59.45802 104.625359) (xy 59.45802 104.625352) (xy 59.46327 104.585474) (xy 59.459098 104.553781) (xy 59.45802 104.537338) (xy 59.45802 99.626695) (xy 86.037251 99.626695) (xy 86.037548 99.631848) (xy 86.037548 99.631851) (xy 86.041291 99.696763) (xy 86.0415 99.704016) (xy 86.0415 100.558134) (xy 86.048255 100.620316) (xy 86.099385 100.756705) (xy 86.104771 100.763891) (xy 86.172942 100.854852) (xy 86.19779 100.921358) (xy 86.182737 100.990741) (xy 86.172942 101.005982) (xy 86.105214 101.096351) (xy 86.096676 101.111946) (xy 86.051522 101.232394) (xy 86.047895 101.247649) (xy 86.042369 101.298514) (xy 86.042 101.305328) (xy 86.042 101.927885) (xy 86.046475 101.943124) (xy 86.047865 101.944329) (xy 86.055548 101.946) (xy 90.539884 101.946) (xy 90.555123 101.941525) (xy 90.556328 101.940135) (xy 90.557999 101.932452) (xy 90.557999 101.305331) (xy 90.557629 101.29851) (xy 90.552105 101.247648) (xy 90.548479 101.232396) (xy 90.503324 101.111946) (xy 90.494786 101.096351) (xy 90.427058 101.005982) (xy 90.40221 100.939475) (xy 90.417263 100.870093) (xy 90.427058 100.854852) (xy 90.495229 100.763891) (xy 90.500615 100.756705) (xy 90.551745 100.620316) (xy 90.5585 100.558134) (xy 90.5585 100.312322) (xy 90.578502 100.244201) (xy 90.632325 100.199219) (xy 90.632092 100.198816) (xy 90.634404 100.197481) (xy 90.636278 100.195915) (xy 90.639245 100.194686) (xy 90.639252 100.194682) (xy 90.646876 100.191524) (xy 90.742072 100.118477) (xy 90.742075 100.118474) (xy 90.773987 100.093987) (xy 90.793449 100.068624) (xy 90.804315 100.056234) (xy 91.396229 99.464319) (xy 91.408621 99.453451) (xy 91.427436 99.439014) (xy 91.427437 99.439013) (xy 91.433987 99.433987) (xy 91.472078 99.384346) (xy 91.531524 99.306876) (xy 91.546097 99.271695) (xy 91.562181 99.232864) (xy 91.592838 99.158851) (xy 91.596463 99.131314) (xy 91.597803 99.121136) (xy 91.597803 99.121134) (xy 91.6085 99.039885) (xy 91.6085 99.03988) (xy 91.612672 99.008189) (xy 91.61375 99) (xy 91.609578 98.968307) (xy 91.6085 98.951864) (xy 91.6085 95.554239) (xy 91.628502 95.486118) (xy 91.645405 95.465144) (xy 91.949063 95.161486) (xy 92.011375 95.12746) (xy 92.08219 95.132525) (xy 92.139026 95.175072) (xy 92.15614 95.206351) (xy 92.187454 95.28988) (xy 92.199385 95.321705) (xy 92.286739 95.438261) (xy 92.403295 95.525615) (xy 92.411704 95.528767) (xy 92.411705 95.528768) (xy 92.52096 95.569726) (xy 92.577725 95.612367) (xy 92.602425 95.678929) (xy 92.587218 95.748278) (xy 92.567825 95.774759) (xy 92.44459 95.903717) (xy 92.438104 95.911727) (xy 92.318098 96.087649) (xy 92.313 96.096623) (xy 92.223338 96.289783) (xy 92.219775 96.29947) (xy 92.164389 96.499183) (xy 92.165912 96.507607) (xy 92.178292 96.511) (xy 94.818344 96.511) (xy 94.831875 96.507027) (xy 94.83318 96.497947) (xy 94.791214 96.330875) (xy 94.787894 96.321124) (xy 94.702972 96.125814) (xy 94.698105 96.116739) (xy 94.582426 95.937926) (xy 94.576136 95.929757) (xy 94.432293 95.771677) (xy 94.401241 95.707831) (xy 94.409635 95.637333) (xy 94.454812 95.582564) (xy 94.481256 95.568895) (xy 94.588297 95.528767) (xy 94.596705 95.525615) (xy 94.713261 95.438261) (xy 94.800615 95.321705) (xy 94.851745 95.185316) (xy 94.8585 95.123134) (xy 94.8585 93.326866) (xy 94.851745 93.264684) (xy 94.800615 93.128295) (xy 94.713261 93.011739) (xy 94.596705 92.924385) (xy 94.460316 92.873255) (xy 94.398134 92.8665) (xy 92.601866 92.8665) (xy 92.539684 92.873255) (xy 92.403295 92.924385) (xy 92.286739 93.011739) (xy 92.199385 93.128295) (xy 92.148255 93.264684) (xy 92.1415 93.326866) (xy 92.1415 93.486328) (xy 92.121498 93.554449) (xy 92.067842 93.600942) (xy 92.024873 93.610289) (xy 92.025 93.61125) (xy 91.985126 93.616499) (xy 91.985117 93.6165) (xy 91.985115 93.6165) (xy 91.985109 93.616501) (xy 91.985107 93.616501) (xy 91.885543 93.629609) (xy 91.874336 93.631084) (xy 91.874334 93.631085) (xy 91.866149 93.632162) (xy 91.718124 93.693476) (xy 91.687027 93.717338) (xy 91.622937 93.766515) (xy 91.622921 93.766529) (xy 91.597566 93.785984) (xy 91.597563 93.785987) (xy 91.591013 93.791013) (xy 91.585983 93.797568) (xy 91.571548 93.816379) (xy 91.560681 93.82877) (xy 90.603766 94.785685) (xy 90.591375 94.796552) (xy 90.566013 94.816013) (xy 90.541526 94.847925) (xy 90.541523 94.847928) (xy 90.468476 94.943124) (xy 90.457738 94.969049) (xy 90.410536 95.083005) (xy 90.409931 95.084465) (xy 90.407162 95.09115) (xy 90.3915 95.210115) (xy 90.3915 95.21012) (xy 90.38625 95.25) (xy 90.390375 95.28133) (xy 90.390422 95.28169) (xy 90.3915 95.298136) (xy 90.3915 98.213124) (xy 90.371498 98.281245) (xy 90.317842 98.327738) (xy 90.247568 98.337842) (xy 90.221273 98.331107) (xy 90.160316 98.308255) (xy 90.098134 98.3015) (xy 87.414985 98.3015) (xy 87.413446 98.301491) (xy 87.310081 98.300228) (xy 87.310079 98.300228) (xy 87.304911 98.300165) (xy 87.299797 98.300948) (xy 87.296289 98.301193) (xy 87.287496 98.3015) (xy 86.501866 98.3015) (xy 86.439684 98.308255) (xy 86.303295 98.359385) (xy 86.186739 98.446739) (xy 86.099385 98.563295) (xy 86.048255 98.699684) (xy 86.0415 98.761866) (xy 86.0415 99.580219) (xy 86.040787 99.593607) (xy 86.037251 99.626695) (xy 59.45802 99.626695) (xy 59.45802 95.4345) (xy 59.478022 95.366379) (xy 59.531678 95.319886) (xy 59.58402 95.3085) (xy 60.550886 95.3085) (xy 60.567329 95.309578) (xy 60.599022 95.31375) (xy 60.607211 95.312672) (xy 60.638896 95.308501) (xy 60.638906 95.3085) (xy 60.638907 95.3085) (xy 60.643708 95.307868) (xy 60.738479 95.295391) (xy 60.749686 95.293916) (xy 60.749688 95.293915) (xy 60.757873 95.292838) (xy 60.905898 95.231524) (xy 60.956475 95.192715) (xy 61.001094 95.158477) (xy 61.001097 95.158474) (xy 61.026456 95.139015) (xy 61.033009 95.133987) (xy 61.044221 95.119376) (xy 61.052474 95.108621) (xy 61.063341 95.09623) (xy 61.346234 94.813337) (xy 61.358625 94.80247) (xy 61.377437 94.788035) (xy 61.383987 94.783009) (xy 61.408474 94.751097) (xy 61.408478 94.751093) (xy 61.434029 94.717794) (xy 61.491366 94.675928) (xy 61.53399 94.6685) (xy 62.200826 94.6685) (xy 62.205443 94.668585) (xy 62.286673 94.671564) (xy 62.286677 94.671564) (xy 62.291837 94.671753) (xy 62.296957 94.671097) (xy 62.296959 94.671097) (xy 62.309261 94.669521) (xy 62.325271 94.6685) (xy 63.128134 94.6685) (xy 63.190316 94.661745) (xy 63.326705 94.610615) (xy 63.424436 94.53737) (xy 63.490941 94.512522) (xy 63.560324 94.527575) (xy 63.575562 94.537368) (xy 63.673295 94.610615) (xy 63.809684 94.661745) (xy 63.871866 94.6685) (xy 64.740826 94.6685) (xy 64.745443 94.668585) (xy 64.826673 94.671564) (xy 64.826677 94.671564) (xy 64.831837 94.671753) (xy 64.836957 94.671097) (xy 64.836959 94.671097) (xy 64.849261 94.669521) (xy 64.865271 94.6685) (xy 65.668134 94.6685) (xy 65.730316 94.661745) (xy 65.866705 94.610615) (xy 65.964436 94.53737) (xy 66.030941 94.512522) (xy 66.100324 94.527575) (xy 66.115562 94.537368) (xy 66.213295 94.610615) (xy 66.349684 94.661745) (xy 66.411866 94.6685) (xy 67.280826 94.6685) (xy 67.285443 94.668585) (xy 67.366673 94.671564) (xy 67.366677 94.671564) (xy 67.371837 94.671753) (xy 67.376957 94.671097) (xy 67.376959 94.671097) (xy 67.389261 94.669521) (xy 67.405271 94.6685) (xy 68.208134 94.6685) (xy 68.270316 94.661745) (xy 68.406705 94.610615) (xy 68.499152 94.54133) (xy 68.504852 94.537058) (xy 68.571358 94.51221) (xy 68.640741 94.527263) (xy 68.655982 94.537058) (xy 68.746351 94.604786) (xy 68.761946 94.613324) (xy 68.882394 94.658478) (xy 68.897649 94.662105) (xy 68.948514 94.667631) (xy 68.955328 94.668) (xy 69.577885 94.668) (xy 69.593124 94.663525) (xy 69.594329 94.662135) (xy 69.596 94.654452) (xy 69.596 90.170116) (xy 69.591525 90.154877) (xy 69.590135 90.153672) (xy 69.582452 90.152001) (xy 68.955331 90.152001) (xy 68.94851 90.152371) (xy 68.897648 90.157895) (xy 68.882396 90.161521) (xy 68.761946 90.206676) (xy 68.746351 90.215214) (xy 68.655982 90.282942) (xy 68.589475 90.30779) (xy 68.520093 90.292737) (xy 68.504852 90.282942) (xy 68.432437 90.22867) (xy 68.406705 90.209385) (xy 68.398297 90.206233) (xy 68.390425 90.201923) (xy 68.391894 90.199241) (xy 68.347334 90.165778) (xy 68.322625 90.09922) (xy 68.337821 90.029869) (xy 68.359222 90.001327) (xy 68.663704 89.696845) (xy 68.726016 89.662819) (xy 68.752799 89.65994) (xy 71.925321 89.65994) (xy 71.993442 89.679942) (xy 72.039935 89.733598) (xy 72.050039 89.803872) (xy 72.020545 89.868452) (xy 72.014416 89.875035) (xy 71.993766 89.895685) (xy 71.981375 89.906552) (xy 71.956013 89.926013) (xy 71.931526 89.957925) (xy 71.931523 89.957928) (xy 71.931517 89.957936) (xy 71.865225 90.044329) (xy 71.858476 90.053124) (xy 71.855315 90.060756) (xy 71.849946 90.073717) (xy 71.805399 90.128998) (xy 71.733537 90.1515) (xy 71.491866 90.1515) (xy 71.429684 90.158255) (xy 71.293295 90.209385) (xy 71.267563 90.22867) (xy 71.195148 90.282942) (xy 71.128642 90.30779) (xy 71.059259 90.292737) (xy 71.044018 90.282942) (xy 70.953649 90.215214) (xy 70.938054 90.206676) (xy 70.817606 90.161522) (xy 70.802351 90.157895) (xy 70.751486 90.152369) (xy 70.744672 90.152) (xy 70.122115 90.152) (xy 70.106876 90.156475) (xy 70.105671 90.157865) (xy 70.104 90.165548) (xy 70.104 94.649884) (xy 70.108475 94.665123) (xy 70.109865 94.666328) (xy 70.117548 94.667999) (xy 70.744669 94.667999) (xy 70.75149 94.667629) (xy 70.802352 94.662105) (xy 70.817604 94.658479) (xy 70.938054 94.613324) (xy 70.953649 94.604786) (xy 71.044018 94.537058) (xy 71.110525 94.51221) (xy 71.179907 94.527263) (xy 71.195148 94.537058) (xy 71.200848 94.54133) (xy 71.293295 94.610615) (xy 71.429684 94.661745) (xy 71.491866 94.6685) (xy 72.360826 94.6685) (xy 72.365443 94.668585) (xy 72.446673 94.671564) (xy 72.446677 94.671564) (xy 72.451837 94.671753) (xy 72.456957 94.671097) (xy 72.456959 94.671097) (xy 72.469261 94.669521) (xy 72.485271 94.6685) (xy 73.288134 94.6685) (xy 73.350316 94.661745) (xy 73.486705 94.610615) (xy 73.584436 94.53737) (xy 73.650941 94.512522) (xy 73.720324 94.527575) (xy 73.735562 94.537368) (xy 73.833295 94.610615) (xy 73.969684 94.661745) (xy 74.031866 94.6685) (xy 74.900826 94.6685) (xy 74.905443 94.668585) (xy 74.986673 94.671564) (xy 74.986677 94.671564) (xy 74.991837 94.671753) (xy 74.996957 94.671097) (xy 74.996959 94.671097) (xy 75.009261 94.669521) (xy 75.025271 94.6685) (xy 75.828134 94.6685) (xy 75.890316 94.661745) (xy 76.026705 94.610615) (xy 76.124436 94.53737) (xy 76.190941 94.512522) (xy 76.260324 94.527575) (xy 76.275562 94.537368) (xy 76.373295 94.610615) (xy 76.509684 94.661745) (xy 76.571866 94.6685) (xy 77.440826 94.6685) (xy 77.445443 94.668585) (xy 77.526673 94.671564) (xy 77.526677 94.671564) (xy 77.531837 94.671753) (xy 77.536957 94.671097) (xy 77.536959 94.671097) (xy 77.549261 94.669521) (xy 77.565271 94.6685) (xy 78.368134 94.6685) (xy 78.430316 94.661745) (xy 78.566705 94.610615) (xy 78.664436 94.53737) (xy 78.730941 94.512522) (xy 78.800324 94.527575) (xy 78.815562 94.537368) (xy 78.913295 94.610615) (xy 79.049684 94.661745) (xy 79.111866 94.6685) (xy 79.980826 94.6685) (xy 79.985443 94.668585) (xy 80.066673 94.671564) (xy 80.066677 94.671564) (xy 80.071837 94.671753) (xy 80.076957 94.671097) (xy 80.076959 94.671097) (xy 80.089261 94.669521) (xy 80.105271 94.6685) (xy 80.908134 94.6685) (xy 80.970316 94.661745) (xy 81.106705 94.610615) (xy 81.199152 94.54133) (xy 81.204852 94.537058) (xy 81.271358 94.51221) (xy 81.340741 94.527263) (xy 81.355982 94.537058) (xy 81.446351 94.604786) (xy 81.461946 94.613324) (xy 81.582394 94.658478) (xy 81.597649 94.662105) (xy 81.648514 94.667631) (xy 81.655328 94.668) (xy 82.277885 94.668) (xy 82.293124 94.663525) (xy 82.294329 94.662135) (xy 82.296 94.654452) (xy 82.296 92.038) (xy 82.316002 91.969879) (xy 82.369658 91.923386) (xy 82.422 91.912) (xy 82.678 91.912) (xy 82.746121 91.932002) (xy 82.792614 91.985658) (xy 82.804 92.038) (xy 82.804 94.649884) (xy 82.808475 94.665123) (xy 82.809865 94.666328) (xy 82.817548 94.667999) (xy 83.444669 94.667999) (xy 83.45149 94.667629) (xy 83.502352 94.662105) (xy 83.517604 94.658479) (xy 83.638054 94.613324) (xy 83.653649 94.604786) (xy 83.744018 94.537058) (xy 83.810525 94.51221) (xy 83.879907 94.527263) (xy 83.895148 94.537058) (xy 83.900848 94.54133) (xy 83.993295 94.610615) (xy 84.129684 94.661745) (xy 84.191866 94.6685) (xy 85.060826 94.6685) (xy 85.065443 94.668585) (xy 85.146673 94.671564) (xy 85.146677 94.671564) (xy 85.151837 94.671753) (xy 85.156957 94.671097) (xy 85.156959 94.671097) (xy 85.169261 94.669521) (xy 85.185271 94.6685) (xy 85.988134 94.6685) (xy 86.050316 94.661745) (xy 86.186705 94.610615) (xy 86.284436 94.53737) (xy 86.350941 94.512522) (xy 86.420324 94.527575) (xy 86.435562 94.537368) (xy 86.533295 94.610615) (xy 86.669684 94.661745) (xy 86.731866 94.6685) (xy 87.600826 94.6685) (xy 87.605443 94.668585) (xy 87.686673 94.671564) (xy 87.686677 94.671564) (xy 87.691837 94.671753) (xy 87.696957 94.671097) (xy 87.696959 94.671097) (xy 87.709261 94.669521) (xy 87.725271 94.6685) (xy 88.528134 94.6685) (xy 88.590316 94.661745) (xy 88.726705 94.610615) (xy 88.843261 94.523261) (xy 88.930615 94.406705) (xy 88.981745 94.270316) (xy 88.9885 94.208134) (xy 88.9885 93.407856) (xy 88.989578 93.391409) (xy 88.991092 93.379908) (xy 88.991529 93.37659) (xy 88.992169 93.350388) (xy 88.993074 93.313365) (xy 88.993074 93.313361) (xy 88.993156 93.31) (xy 88.988924 93.258524) (xy 88.9885 93.2482) (xy 88.9885 91.384018) (xy 89.008502 91.315897) (xy 89.062158 91.269404) (xy 89.1145 91.258018) (xy 96.193099 91.258018) (xy 96.209542 91.259096) (xy 96.241235 91.263268) (xy 96.249424 91.26219) (xy 96.281109 91.258019) (xy 96.281119 91.258018) (xy 96.28112 91.258018) (xy 96.349216 91.249053) (xy 96.380692 91.244909) (xy 96.391899 91.243434) (xy 96.391901 91.243433) (xy 96.400086 91.242356) (xy 96.548111 91.181042) (xy 96.555793 91.175148) (xy 96.643307 91.107995) (xy 96.64331 91.107992) (xy 96.668669 91.088533) (xy 96.675222 91.083505) (xy 96.68338 91.072874) (xy 96.694687 91.058139) (xy 96.705554 91.045748) (xy 99.355897 88.395405) (xy 99.418209 88.361379) (xy 99.444992 88.3585) (xy 100.51929 88.3585) (xy 100.587411 88.378502) (xy 100.612926 88.400189) (xy 100.633408 88.422936) (xy 100.638747 88.428866) (xy 100.644473 88.433026) (xy 100.786683 88.536348) (xy 100.793248 88.541118) (xy 100.799276 88.543802) (xy 100.799278 88.543803) (xy 100.942435 88.60754) (xy 100.967712 88.618794) (xy 101.04268 88.634729) (xy 101.148056 88.657128) (xy 101.148061 88.657128) (xy 101.154513 88.6585) (xy 101.345487 88.6585) (xy 101.351939 88.657128) (xy 101.351944 88.657128) (xy 101.45732 88.634729) (xy 101.532288 88.618794) (xy 101.557565 88.60754) (xy 101.700722 88.543803) (xy 101.700724 88.543802) (xy 101.706752 88.541118) (xy 101.713318 88.536348) (xy 101.782077 88.486391) (xy 101.861253 88.428866) (xy 101.865675 88.423955) (xy 101.984621 88.291852) (xy 101.984622 88.291851) (xy 101.98904 88.286944) (xy 102.076922 88.134729) (xy 102.081223 88.127279) (xy 102.081224 88.127278) (xy 102.084527 88.121556) (xy 102.143542 87.939928) (xy 102.155512 87.826045) (xy 102.162814 87.756565) (xy 102.163504 87.75) (xy 102.156813 87.686336) (xy 102.144232 87.566635) (xy 102.144232 87.566633) (xy 102.143542 87.560072) (xy 102.084527 87.378444) (xy 102.079134 87.369102) (xy 102.013879 87.256078) (xy 101.98904 87.213056) (xy 101.968243 87.189958) (xy 101.865675 87.076045) (xy 101.865674 87.076044) (xy 101.861253 87.071134) (xy 101.754424 86.993518) (xy 101.712094 86.962763) (xy 101.712093 86.962762) (xy 101.706752 86.958882) (xy 101.700724 86.956198) (xy 101.700722 86.956197) (xy 101.574716 86.900096) (xy 101.52062 86.854116) (xy 101.499971 86.786189) (xy 101.519323 86.717881) (xy 101.572534 86.670879) (xy 101.625965 86.658989) (xy 108.74625 86.658989) ) ) (filled_polygon (layer "F.Cu") (pts (xy 143.198195 101.528502) (xy 143.219169 101.545404) (xy 143.593149 101.919383) (xy 143.602251 101.929527) (xy 143.619554 101.951047) (xy 143.625968 101.959025) (xy 143.664421 101.991291) (xy 143.668069 101.994472) (xy 143.669881 101.996115) (xy 143.672075 101.998309) (xy 143.705349 102.025642) (xy 143.706147 102.026304) (xy 143.777474 102.086154) (xy 143.782144 102.088722) (xy 143.786261 102.092103) (xy 143.817601 102.108907) (xy 143.868086 102.135977) (xy 143.869245 102.136606) (xy 143.945381 102.178462) (xy 143.945389 102.178465) (xy 143.950787 102.181433) (xy 143.955869 102.183045) (xy 143.960563 102.185562) (xy 144.049531 102.212762) (xy 144.050559 102.213082) (xy 144.139306 102.241235) (xy 144.144602 102.241829) (xy 144.149698 102.243387) (xy 144.242257 102.25279) (xy 144.243393 102.252911) (xy 144.277008 102.256681) (xy 144.28973 102.258108) (xy 144.289734 102.258108) (xy 144.293227 102.2585) (xy 144.296754 102.2585) (xy 144.297739 102.258555) (xy 144.303419 102.259002) (xy 144.332825 102.261989) (xy 144.340337 102.262752) (xy 144.340339 102.262752) (xy 144.346462 102.263374) (xy 144.392108 102.259059) (xy 144.403967 102.2585) (xy 149.780075 102.2585) (xy 149.848196 102.278502) (xy 149.86917 102.295405) (xy 151.023151 103.449385) (xy 151.727719 104.153953) (xy 151.761744 104.216265) (xy 151.75668 104.28708) (xy 151.714133 104.343916) (xy 151.647613 104.368727) (xy 151.594395 104.36103) (xy 151.567718 104.351029) (xy 151.567712 104.351027) (xy 151.560316 104.348255) (xy 151.498134 104.3415) (xy 150.501866 104.3415) (xy 150.439684 104.348255) (xy 150.303295 104.399385) (xy 150.186739 104.486739) (xy 150.181358 104.493919) (xy 150.175008 104.500269) (xy 150.172761 104.498022) (xy 150.128456 104.531143) (xy 150.057637 104.536162) (xy 149.995347 104.502097) (xy 149.961362 104.439762) (xy 149.9585 104.413059) (xy 149.9585 103.851866) (xy 149.951745 103.789684) (xy 149.900615 103.653295) (xy 149.813261 103.536739) (xy 149.696705 103.449385) (xy 149.560316 103.398255) (xy 149.498134 103.3915) (xy 148.501866 103.3915) (xy 148.439684 103.398255) (xy 148.303295 103.449385) (xy 148.186739 103.536739) (xy 148.181358 103.543919) (xy 148.108551 103.641065) (xy 148.051692 103.68358) (xy 148.007725 103.6915) (xy 147.189964 103.6915) (xy 147.121843 103.671498) (xy 147.082821 103.631804) (xy 147.076116 103.620969) (xy 147.035863 103.580786) (xy 146.958184 103.503242) (xy 146.958179 103.503238) (xy 146.953003 103.498071) (xy 146.946772 103.49423) (xy 146.81115 103.410631) (xy 146.811148 103.41063) (xy 146.80492 103.406791) (xy 146.639809 103.352026) (xy 146.632973 103.351326) (xy 146.63297 103.351325) (xy 146.581474 103.346049) (xy 146.537072 103.3415) (xy 145.962928 103.3415) (xy 145.959682 103.341837) (xy 145.959678 103.341837) (xy 145.865765 103.351581) (xy 145.865761 103.351582) (xy 145.858907 103.352293) (xy 145.852371 103.354474) (xy 145.852369 103.354474) (xy 145.775364 103.380165) (xy 145.693893 103.407346) (xy 145.545969 103.498884) (xy 145.464209 103.580787) (xy 145.401929 103.614866) (xy 145.331108 103.609863) (xy 145.286019 103.580942) (xy 145.208184 103.503242) (xy 145.208179 103.503238) (xy 145.203003 103.498071) (xy 145.196772 103.49423) (xy 145.06115 103.410631) (xy 145.061148 103.41063) (xy 145.05492 103.406791) (xy 144.889809 103.352026) (xy 144.882973 103.351326) (xy 144.88297 103.351325) (xy 144.831474 103.346049) (xy 144.787072 103.3415) (xy 144.416739 103.3415) (xy 144.348618 103.321498) (xy 144.327644 103.304595) (xy 143.278736 102.255687) (xy 143.267869 102.243296) (xy 143.253434 102.224484) (xy 143.248408 102.217934) (xy 143.216496 102.193447) (xy 143.216493 102.193444) (xy 143.167805 102.156084) (xy 143.12785 102.125425) (xy 143.127848 102.125424) (xy 143.121297 102.120397) (xy 142.973272 102.059083) (xy 142.965085 102.058005) (xy 142.965084 102.058005) (xy 142.942576 102.055042) (xy 142.854306 102.043421) (xy 142.854297 102.04342) (xy 142.822611 102.039249) (xy 142.82261 102.039249) (xy 142.814421 102.038171) (xy 142.782728 102.042343) (xy 142.766285 102.043421) (xy 141.885603 102.043421) (xy 109.437006 102.04342) (xy 109.368885 102.023418) (xy 109.322392 101.969762) (xy 109.312288 101.899488) (xy 109.341782 101.834908) (xy 109.34791 101.828325) (xy 109.630829 101.545405) (xy 109.693142 101.51138) (xy 109.719925 101.5085) (xy 143.130074 101.5085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 159.909532 98.320869) (xy 159.966368 98.363416) (xy 159.991179 98.429936) (xy 159.9915 98.438925) (xy 159.9915 101.614364) (xy 159.990422 101.630807) (xy 159.98625 101.6625) (xy 159.9915 101.70238) (xy 159.9915 101.702385) (xy 159.999523 101.763324) (xy 160.007162 101.821351) (xy 160.068476 101.969376) (xy 160.073503 101.975927) (xy 160.073504 101.975929) (xy 160.14152 102.064569) (xy 160.141526 102.064575) (xy 160.166013 102.096487) (xy 160.172568 102.101517) (xy 160.191379 102.115952) (xy 160.20377 102.126819) (xy 160.354595 102.277644) (xy 160.388621 102.339956) (xy 160.3915 102.366739) (xy 160.3915 102.787072) (xy 160.391837 102.790318) (xy 160.391837 102.790322) (xy 160.40144 102.882868) (xy 160.402293 102.891093) (xy 160.404475 102.897633) (xy 160.404476 102.897638) (xy 160.414181 102.92673) (xy 160.416765 102.99768) (xy 160.383752 103.055699) (xy 159.284856 104.154595) (xy 159.222544 104.188621) (xy 159.195761 104.1915) (xy 156.604239 104.1915) (xy 156.536118 104.171498) (xy 156.515144 104.154595) (xy 155.449719 103.08917) (xy 155.415693 103.026858) (xy 155.413159 103.003284) (xy 155.413504 103) (xy 155.409932 102.966013) (xy 155.394232 102.816635) (xy 155.394232 102.816633) (xy 155.393542 102.810072) (xy 155.334527 102.628444) (xy 155.23904 102.463056) (xy 155.153731 102.36831) (xy 155.115675 102.326045) (xy 155.115674 102.326044) (xy 155.111253 102.321134) (xy 155.00217 102.24188) (xy 154.962094 102.212763) (xy 154.962093 102.212762) (xy 154.956752 102.208882) (xy 154.950724 102.206198) (xy 154.950722 102.206197) (xy 154.788319 102.133891) (xy 154.788318 102.133891) (xy 154.782288 102.131206) (xy 154.67738 102.108907) (xy 154.601944 102.092872) (xy 154.601939 102.092872) (xy 154.595487 102.0915) (xy 154.404513 102.0915) (xy 154.398061 102.092872) (xy 154.398056 102.092872) (xy 154.32262 102.108907) (xy 154.217712 102.131206) (xy 154.211682 102.133891) (xy 154.211681 102.133891) (xy 154.049278 102.206197) (xy 154.049276 102.206198) (xy 154.043248 102.208882) (xy 154.037907 102.212762) (xy 154.037906 102.212763) (xy 153.99783 102.24188) (xy 153.888747 102.321134) (xy 153.884326 102.326044) (xy 153.884325 102.326045) (xy 153.84627 102.36831) (xy 153.76096 102.463056) (xy 153.665473 102.628444) (xy 153.606458 102.810072) (xy 153.605768 102.816633) (xy 153.605768 102.816635) (xy 153.598866 102.882303) (xy 153.571852 102.94796) (xy 153.513631 102.988589) (xy 153.442685 102.991292) (xy 153.384461 102.958227) (xy 151.334874 100.90864) (xy 151.300848 100.846328) (xy 151.305913 100.775513) (xy 151.34846 100.718677) (xy 151.384092 100.700022) (xy 151.474154 100.669974) (xy 151.474156 100.669973) (xy 151.481107 100.667654) (xy 151.629031 100.576116) (xy 151.751929 100.453003) (xy 151.752232 100.453305) (xy 151.806464 100.414856) (xy 151.847428 100.408011) (xy 153.768851 100.408011) (xy 153.836972 100.428013) (xy 153.862483 100.449697) (xy 153.888747 100.478866) (xy 153.941776 100.517394) (xy 154.032777 100.58351) (xy 154.043248 100.591118) (xy 154.049276 100.593802) (xy 154.049278 100.593803) (xy 154.211681 100.666109) (xy 154.217712 100.668794) (xy 154.311112 100.688647) (xy 154.398056 100.707128) (xy 154.398061 100.707128) (xy 154.404513 100.7085) (xy 154.595487 100.7085) (xy 154.601939 100.707128) (xy 154.601944 100.707128) (xy 154.688887 100.688647) (xy 154.782288 100.668794) (xy 154.788319 100.666109) (xy 154.950722 100.593803) (xy 154.950724 100.593802) (xy 154.956752 100.591118) (xy 154.967224 100.58351) (xy 155.058224 100.517394) (xy 155.111253 100.478866) (xy 155.129877 100.458182) (xy 155.234621 100.341852) (xy 155.234622 100.341851) (xy 155.23904 100.336944) (xy 155.318556 100.199219) (xy 155.331223 100.177279) (xy 155.331224 100.177278) (xy 155.334527 100.171556) (xy 155.393542 99.989928) (xy 155.395736 99.969059) (xy 155.412814 99.806565) (xy 155.413504 99.8) (xy 155.412683 99.792193) (xy 155.394232 99.616635) (xy 155.394232 99.616633) (xy 155.393542 99.610072) (xy 155.334527 99.428444) (xy 155.23904 99.263056) (xy 155.174171 99.191011) (xy 155.115675 99.126045) (xy 155.115674 99.126044) (xy 155.111253 99.121134) (xy 154.999417 99.03988) (xy 154.962094 99.012763) (xy 154.962093 99.012762) (xy 154.956752 99.008882) (xy 154.950724 99.006198) (xy 154.950722 99.006197) (xy 154.788319 98.933891) (xy 154.788318 98.933891) (xy 154.782288 98.931206) (xy 154.678956 98.909242) (xy 154.601944 98.892872) (xy 154.601939 98.892872) (xy 154.595487 98.8915) (xy 154.404513 98.8915) (xy 154.398061 98.892872) (xy 154.398056 98.892872) (xy 154.321044 98.909242) (xy 154.217712 98.931206) (xy 154.211682 98.933891) (xy 154.211681 98.933891) (xy 154.049278 99.006197) (xy 154.049276 99.006198) (xy 154.043248 99.008882) (xy 154.037907 99.012762) (xy 154.037906 99.012763) (xy 153.93501 99.087522) (xy 153.888747 99.121134) (xy 153.88433 99.12604) (xy 153.884323 99.126046) (xy 153.863368 99.14932) (xy 153.802923 99.186561) (xy 153.769731 99.191011) (xy 151.911073 99.191011) (xy 151.842952 99.171009) (xy 151.803929 99.131314) (xy 151.800669 99.126045) (xy 151.751116 99.045969) (xy 151.736062 99.030941) (xy 151.633184 98.928242) (xy 151.633179 98.928238) (xy 151.628003 98.923071) (xy 151.595973 98.903327) (xy 151.521303 98.8573) (xy 151.47381 98.804528) (xy 151.462386 98.734456) (xy 151.49066 98.669332) (xy 151.521116 98.642896) (xy 151.622803 98.57997) (xy 151.629031 98.576116) (xy 151.642487 98.562637) (xy 151.746468 98.458474) (xy 151.751929 98.453003) (xy 151.755772 98.446769) (xy 151.756056 98.446409) (xy 151.813973 98.405346) (xy 151.854939 98.3985) (xy 156.008954 98.3985) (xy 156.077075 98.418502) (xy 156.116387 98.458665) (xy 156.123 98.469457) (xy 156.199987 98.595088) (xy 156.34625 98.763938) (xy 156.458469 98.857104) (xy 156.507893 98.898136) (xy 156.518126 98.906632) (xy 156.57503 98.939884) (xy 156.591445 98.949476) (xy 156.640169 99.001114) (xy 156.65324 99.070897) (xy 156.626509 99.136669) (xy 156.586055 99.170027) (xy 156.573607 99.176507) (xy 156.569474 99.17961) (xy 156.569471 99.179612) (xy 156.3991 99.30753) (xy 156.394965 99.310635) (xy 156.240629 99.472138) (xy 156.114743 99.65668) (xy 156.092502 99.704595) (xy 156.050002 99.796154) (xy 156.020688 99.859305) (xy 155.960989 100.07457) (xy 155.937251 100.296695) (xy 155.937548 100.301848) (xy 155.937548 100.301851) (xy 155.947472 100.47396) (xy 155.95011 100.519715) (xy 155.951247 100.524761) (xy 155.951248 100.524767) (xy 155.966807 100.593803) (xy 155.999222 100.737639) (xy 156.083266 100.944616) (xy 156.085965 100.94902) (xy 156.185806 101.111946) (xy 156.199987 101.135088) (xy 156.34625 101.303938) (xy 156.518126 101.446632) (xy 156.711 101.559338) (xy 156.919692 101.63903) (xy 156.92476 101.640061) (xy 156.924763 101.640062) (xy 157.003721 101.656126) (xy 157.138597 101.683567) (xy 157.143772 101.683757) (xy 157.143774 101.683757) (xy 157.356673 101.691564) (xy 157.356677 101.691564) (xy 157.361837 101.691753) (xy 157.366957 101.691097) (xy 157.366959 101.691097) (xy 157.578288 101.664025) (xy 157.578289 101.664025) (xy 157.583416 101.663368) (xy 157.613601 101.654312) (xy 157.792429 101.600661) (xy 157.792434 101.600659) (xy 157.797384 101.599174) (xy 157.997994 101.500896) (xy 158.17986 101.371173) (xy 158.245933 101.305331) (xy 158.315757 101.23575) (xy 158.338096 101.213489) (xy 158.397594 101.130689) (xy 158.465435 101.036277) (xy 158.468453 101.032077) (xy 158.473556 101.021753) (xy 158.565136 100.836453) (xy 158.565137 100.836451) (xy 158.56743 100.831811) (xy 158.617774 100.666109) (xy 158.630865 100.623023) (xy 158.630865 100.623021) (xy 158.63237 100.618069) (xy 158.661529 100.39659) (xy 158.66285 100.342529) (xy 158.663074 100.333365) (xy 158.663074 100.333361) (xy 158.663156 100.33) (xy 158.644852 100.107361) (xy 158.590431 99.890702) (xy 158.501354 99.68584) (xy 158.455849 99.6155) (xy 158.382822 99.502617) (xy 158.38282 99.502614) (xy 158.380014 99.498277) (xy 158.22967 99.333051) (xy 158.225619 99.329852) (xy 158.225615 99.329848) (xy 158.058414 99.1978) (xy 158.05841 99.197798) (xy 158.054359 99.194598) (xy 158.013053 99.171796) (xy 157.963084 99.121364) (xy 157.948312 99.051921) (xy 157.973428 98.985516) (xy 158.00078 98.958909) (xy 158.164946 98.841811) (xy 158.17986 98.831173) (xy 158.182886 98.828157) (xy 158.247588 98.79957) (xy 158.263976 98.7985) (xy 158.848157 98.7985) (xy 158.861764 98.799237) (xy 158.893262 98.802659) (xy 158.893267 98.802659) (xy 158.899388 98.803324) (xy 158.925638 98.801027) (xy 158.949388 98.79895) (xy 158.954214 98.798621) (xy 158.956686 98.7985) (xy 158.959769 98.7985) (xy 158.971738 98.797326) (xy 159.002506 98.79431) (xy 159.003819 98.794188) (xy 159.048084 98.790315) (xy 159.096413 98.786087) (xy 159.101532 98.7846) (xy 159.106833 98.78408) (xy 159.195834 98.757209) (xy 159.196967 98.756874) (xy 159.280414 98.73263) (xy 159.280418 98.732628) (xy 159.286336 98.730909) (xy 159.291068 98.728456) (xy 159.296169 98.726916) (xy 159.332611 98.70754) (xy 159.37826 98.683269) (xy 159.379426 98.682657) (xy 159.456453 98.642729) (xy 159.461926 98.639892) (xy 159.466089 98.636569) (xy 159.470796 98.634066) (xy 159.542918 98.575245) (xy 159.543774 98.574554) (xy 159.582973 98.543262) (xy 159.585477 98.540758) (xy 159.586195 98.540116) (xy 159.590528 98.536415) (xy 159.624062 98.509065) (xy 159.632117 98.499329) (xy 159.653287 98.473738) (xy 159.661277 98.464958) (xy 159.776405 98.34983) (xy 159.838717 98.315804) ) ) (filled_polygon (layer "F.Cu") (pts (xy 106.595371 96.828013) (xy 106.641864 96.881669) (xy 106.651968 96.951943) (xy 106.622474 97.016523) (xy 106.616345 97.023106) (xy 105.253766 98.385685) (xy 105.241375 98.396552) (xy 105.216013 98.416013) (xy 105.191526 98.447925) (xy 105.191523 98.447928) (xy 105.175228 98.469164) (xy 105.123639 98.536396) (xy 105.118476 98.543124) (xy 105.057162 98.691149) (xy 105.056038 98.699684) (xy 105.0415 98.810115) (xy 105.0415 98.81012) (xy 105.03625 98.85) (xy 105.037328 98.858188) (xy 105.040422 98.88169) (xy 105.0415 98.898136) (xy 105.0415 102.351864) (xy 105.040422 102.368307) (xy 105.03625 102.4) (xy 105.0415 102.43988) (xy 105.0415 102.439885) (xy 105.051175 102.513374) (xy 105.057162 102.558851) (xy 105.060321 102.566478) (xy 105.060322 102.566481) (xy 105.102473 102.668242) (xy 105.110062 102.738832) (xy 105.078283 102.802319) (xy 105.017224 102.838546) (xy 104.986064 102.84246) (xy 102.570205 102.84246) (xy 102.502084 102.822458) (xy 102.48111 102.805555) (xy 102.029321 102.353766) (xy 102.018454 102.341375) (xy 102.004019 102.322563) (xy 101.998993 102.316013) (xy 101.967081 102.291526) (xy 101.967078 102.291523) (xy 101.929583 102.262752) (xy 101.878435 102.223504) (xy 101.878433 102.223503) (xy 101.871882 102.218476) (xy 101.723857 102.157162) (xy 101.71567 102.156084) (xy 101.715669 102.156084) (xy 101.702603 102.154364) (xy 101.604891 102.1415) (xy 101.604882 102.141499) (xy 101.573196 102.137328) (xy 101.573195 102.137328) (xy 101.565006 102.13625) (xy 101.533313 102.140422) (xy 101.51687 102.1415) (xy 100.23071 102.1415) (xy 100.162589 102.121498) (xy 100.137074 102.099811) (xy 100.115668 102.076037) (xy 100.115666 102.076036) (xy 100.111253 102.071134) (xy 100.089104 102.055042) (xy 99.962094 101.962763) (xy 99.962093 101.962762) (xy 99.956752 101.958882) (xy 99.950724 101.956198) (xy 99.950722 101.956197) (xy 99.788319 101.883891) (xy 99.788318 101.883891) (xy 99.782288 101.881206) (xy 99.775833 101.879834) (xy 99.775824 101.879831) (xy 99.722362 101.868467) (xy 99.659889 101.834739) (xy 99.625568 101.772589) (xy 99.630296 101.70175) (xy 99.659465 101.656126) (xy 104.470675 96.844916) (xy 104.532987 96.81089) (xy 104.55977 96.808011) (xy 106.52725 96.808011) ) ) (filled_polygon (layer "F.Cu") (pts (xy 148.075846 93.678502) (xy 148.108551 93.708935) (xy 148.186739 93.813261) (xy 148.193919 93.818642) (xy 148.19392 93.818643) (xy 148.301372 93.899174) (xy 148.343887 93.956033) (xy 148.348913 94.026852) (xy 148.314853 94.089145) (xy 148.301372 94.100826) (xy 148.201061 94.176005) (xy 148.186739 94.186739) (xy 148.099385 94.303295) (xy 148.048255 94.439684) (xy 148.0415 94.501866) (xy 148.0415 95.398134) (xy 148.048255 95.460316) (xy 148.099385 95.596705) (xy 148.186739 95.713261) (xy 148.303295 95.800615) (xy 148.439684 95.851745) (xy 148.501866 95.8585) (xy 149.498134 95.8585) (xy 149.560316 95.851745) (xy 149.696705 95.800615) (xy 149.813261 95.713261) (xy 149.900615 95.596705) (xy 149.951745 95.460316) (xy 149.9585 95.398134) (xy 149.9585 94.836941) (xy 149.978502 94.76882) (xy 150.032158 94.722327) (xy 150.102432 94.712223) (xy 150.167012 94.741717) (xy 150.174734 94.750005) (xy 150.175008 94.749731) (xy 150.181358 94.756081) (xy 150.186739 94.763261) (xy 150.303295 94.850615) (xy 150.439684 94.901745) (xy 150.501866 94.9085) (xy 151.498134 94.9085) (xy 151.560316 94.901745) (xy 151.696705 94.850615) (xy 151.813261 94.763261) (xy 151.891449 94.658935) (xy 151.948308 94.61642) (xy 151.992275 94.6085) (xy 152.195761 94.6085) (xy 152.263882 94.628502) (xy 152.284856 94.645405) (xy 154.535681 96.896229) (xy 154.546548 96.90862) (xy 154.560984 96.927434) (xy 154.560987 96.927437) (xy 154.566013 96.933987) (xy 154.572563 96.939013) (xy 154.572567 96.939017) (xy 154.594097 96.955537) (xy 154.635965 97.012874) (xy 154.640187 97.083745) (xy 154.605424 97.145649) (xy 154.542711 97.17893) (xy 154.517394 97.1815) (xy 151.905187 97.1815) (xy 151.837066 97.161498) (xy 151.798044 97.121804) (xy 151.751116 97.045969) (xy 151.736062 97.030941) (xy 151.633184 96.928242) (xy 151.633179 96.928238) (xy 151.628003 96.923071) (xy 151.621772 96.91923) (xy 151.48615 96.835631) (xy 151.486148 96.83563) (xy 151.47992 96.831791) (xy 151.314809 96.777026) (xy 151.307973 96.776326) (xy 151.30797 96.776325) (xy 151.251416 96.770531) (xy 151.212072 96.7665) (xy 150.612928 96.7665) (xy 150.609682 96.766837) (xy 150.609678 96.766837) (xy 150.515765 96.776581) (xy 150.515761 96.776582) (xy 150.508907 96.777293) (xy 150.502371 96.779474) (xy 150.502369 96.779474) (xy 150.416834 96.808011) (xy 150.343893 96.832346) (xy 150.195969 96.923884) (xy 150.190796 96.929066) (xy 150.089253 97.030786) (xy 150.02697 97.064865) (xy 149.95615 97.059862) (xy 149.911063 97.030941) (xy 149.808188 96.928246) (xy 149.808183 96.928242) (xy 149.803003 96.923071) (xy 149.796772 96.91923) (xy 149.66115 96.835631) (xy 149.661148 96.83563) (xy 149.65492 96.831791) (xy 149.489809 96.777026) (xy 149.482973 96.776326) (xy 149.48297 96.776325) (xy 149.426416 96.770531) (xy 149.387072 96.7665) (xy 148.787928 96.7665) (xy 148.784682 96.766837) (xy 148.784678 96.766837) (xy 148.690765 96.776581) (xy 148.690761 96.776582) (xy 148.683907 96.777293) (xy 148.677371 96.779474) (xy 148.677369 96.779474) (xy 148.591834 96.808011) (xy 148.518893 96.832346) (xy 148.39734 96.907565) (xy 148.328889 96.926403) (xy 148.261119 96.905242) (xy 148.223896 96.866728) (xy 148.198478 96.825652) (xy 148.073303 96.700695) (xy 148.015691 96.665182) (xy 147.928968 96.611725) (xy 147.928966 96.611724) (xy 147.922738 96.607885) (xy 147.842995 96.581436) (xy 147.761389 96.554368) (xy 147.761387 96.554368) (xy 147.754861 96.552203) (xy 147.748025 96.551503) (xy 147.748022 96.551502) (xy 147.704969 96.547091) (xy 147.6504 96.5415) (xy 146.8996 96.5415) (xy 146.896354 96.541837) (xy 146.89635 96.541837) (xy 146.800692 96.551762) (xy 146.800688 96.551763) (xy 146.793834 96.552474) (xy 146.787298 96.554655) (xy 146.787296 96.554655) (xy 146.655194 96.598728) (xy 146.626054 96.60845) (xy 146.475652 96.701522) (xy 146.350695 96.826697) (xy 146.347898 96.831235) (xy 146.290647 96.871824) (xy 146.219724 96.875054) (xy 146.158313 96.839428) (xy 146.150938 96.830932) (xy 146.142902 96.820793) (xy 146.028171 96.706261) (xy 146.01676 96.697249) (xy 145.878757 96.612184) (xy 145.865576 96.606037) (xy 145.71129 96.554862) (xy 145.697914 96.551995) (xy 145.603562 96.542328) (xy 145.597145 96.542) (xy 145.497115 96.542) (xy 145.481876 96.546475) (xy 145.480671 96.547865) (xy 145.479 96.555548) (xy 145.479 98.939884) (xy 145.483475 98.955123) (xy 145.484865 98.956328) (xy 145.492548 98.957999) (xy 145.597095 98.957999) (xy 145.603614 98.957662) (xy 145.699206 98.947743) (xy 145.7126 98.944851) (xy 145.866784 98.893412) (xy 145.879962 98.887239) (xy 146.017807 98.801937) (xy 146.029208 98.792901) (xy 146.143738 98.678172) (xy 146.150794 98.669238) (xy 146.208712 98.628177) (xy 146.279635 98.624947) (xy 146.341046 98.660574) (xy 146.347846 98.668407) (xy 146.351522 98.674348) (xy 146.476697 98.799305) (xy 146.482927 98.803145) (xy 146.482928 98.803146) (xy 146.620288 98.887816) (xy 146.627262 98.892115) (xy 146.67103 98.906632) (xy 146.788611 98.945632) (xy 146.788613 98.945632) (xy 146.795139 98.947797) (xy 146.801975 98.948497) (xy 146.801978 98.948498) (xy 146.845031 98.952909) (xy 146.8996 98.9585) (xy 147.6504 98.9585) (xy 147.653646 98.958163) (xy 147.65365 98.958163) (xy 147.749308 98.948238) (xy 147.749312 98.948237) (xy 147.756166 98.947526) (xy 147.762702 98.945345) (xy 147.762704 98.945345) (xy 147.904205 98.898136) (xy 147.923946 98.89155) (xy 148.074348 98.798478) (xy 148.088398 98.784404) (xy 148.144248 98.728456) (xy 148.199305 98.673303) (xy 148.20406 98.66559) (xy 148.223787 98.633586) (xy 148.276559 98.586093) (xy 148.346631 98.574669) (xy 148.397163 98.592442) (xy 148.460819 98.63168) (xy 148.474142 98.639892) (xy 148.478697 98.6427) (xy 148.52619 98.695472) (xy 148.537614 98.765543) (xy 148.50934 98.830667) (xy 148.478884 98.857104) (xy 148.425919 98.88988) (xy 148.370969 98.923884) (xy 148.365796 98.929066) (xy 148.253242 99.041816) (xy 148.253238 99.041821) (xy 148.248071 99.046997) (xy 148.244231 99.053227) (xy 148.24423 99.053228) (xy 148.166326 99.179612) (xy 148.156791 99.19508) (xy 148.102026 99.360191) (xy 148.0915 99.462928) (xy 148.0915 99.6155) (xy 148.071498 99.683621) (xy 148.017842 99.730114) (xy 147.9655 99.7415) (xy 145.079239 99.7415) (xy 145.011118 99.721498) (xy 144.990144 99.704595) (xy 144.489315 99.203766) (xy 144.478448 99.191375) (xy 144.464013 99.172563) (xy 144.458987 99.166013) (xy 144.427075 99.141526) (xy 144.427072 99.141523) (xy 144.420746 99.136669) (xy 144.338429 99.073504) (xy 144.338427 99.073503) (xy 144.331876 99.068476) (xy 144.183851 99.007162) (xy 144.175664 99.006084) (xy 144.175663 99.006084) (xy 144.159171 99.003913) (xy 144.064885 98.9915) (xy 144.064876 98.991499) (xy 144.03319 98.987328) (xy 144.033189 98.987328) (xy 144.025 98.98625) (xy 143.993307 98.990422) (xy 143.976864 98.9915) (xy 142.704239 98.9915) (xy 142.636118 98.971498) (xy 142.615144 98.954595) (xy 141.907644 98.247095) (xy 144.142001 98.247095) (xy 144.142338 98.253614) (xy 144.152257 98.349206) (xy 144.155149 98.3626) (xy 144.206588 98.516784) (xy 144.212761 98.529962) (xy 144.298063 98.667807) (xy 144.307099 98.679208) (xy 144.421829 98.793739) (xy 144.43324 98.802751) (xy 144.571243 98.887816) (xy 144.584424 98.893963) (xy 144.73871 98.945138) (xy 144.752086 98.948005) (xy 144.846438 98.957672) (xy 144.852854 98.958) (xy 144.952885 98.958) (xy 144.968124 98.953525) (xy 144.969329 98.952135) (xy 144.971 98.944452) (xy 144.971 98.022115) (xy 144.966525 98.006876) (xy 144.965135 98.005671) (xy 144.957452 98.004) (xy 144.160116 98.004) (xy 144.144877 98.008475) (xy 144.143672 98.009865) (xy 144.142001 98.017548) (xy 144.142001 98.247095) (xy 141.907644 98.247095) (xy 141.399644 97.739095) (xy 141.365618 97.676783) (xy 141.370683 97.605968) (xy 141.399644 97.560905) (xy 142.190018 96.770531) (xy 142.25233 96.736505) (xy 142.323145 96.74157) (xy 142.379981 96.784117) (xy 142.398946 96.82069) (xy 142.415473 96.871556) (xy 142.418776 96.877278) (xy 142.418777 96.877279) (xy 142.445215 96.923071) (xy 142.51096 97.036944) (xy 142.515378 97.041851) (xy 142.515379 97.041852) (xy 142.587366 97.121802) (xy 142.638747 97.178866) (xy 142.712137 97.232187) (xy 142.765926 97.271267) (xy 142.793248 97.291118) (xy 142.799276 97.293802) (xy 142.799278 97.293803) (xy 142.888213 97.333399) (xy 142.967712 97.368794) (xy 143.051332 97.386568) (xy 143.148056 97.407128) (xy 143.148061 97.407128) (xy 143.154513 97.4085) (xy 143.345487 97.4085) (xy 143.351939 97.407128) (xy 143.351944 97.407128) (xy 143.448668 97.386568) (xy 143.532288 97.368794) (xy 143.611787 97.333399) (xy 143.700722 97.293803) (xy 143.700724 97.293802) (xy 143.706752 97.291118) (xy 143.734075 97.271267) (xy 143.787863 97.232187) (xy 143.861253 97.178866) (xy 143.927903 97.104844) (xy 143.988347 97.067606) (xy 144.059331 97.068958) (xy 144.118315 97.108472) (xy 144.146573 97.173602) (xy 144.146881 97.201998) (xy 144.142328 97.246438) (xy 144.142 97.252855) (xy 144.142 97.477885) (xy 144.146475 97.493124) (xy 144.147865 97.494329) (xy 144.155548 97.496) (xy 144.952885 97.496) (xy 144.968124 97.491525) (xy 144.969329 97.490135) (xy 144.971 97.482452) (xy 144.971 96.560116) (xy 144.966525 96.544877) (xy 144.965135 96.543672) (xy 144.957452 96.542001) (xy 144.852905 96.542001) (xy 144.846386 96.542338) (xy 144.750794 96.552257) (xy 144.7374 96.555149) (xy 144.583216 96.606588) (xy 144.570038 96.612761) (xy 144.432193 96.698063) (xy 144.420792 96.707099) (xy 144.360626 96.76737) (xy 144.298344 96.801449) (xy 144.227523 96.796446) (xy 144.170651 96.753949) (xy 144.145782 96.68745) (xy 144.146143 96.665182) (xy 144.162814 96.506565) (xy 144.163504 96.5) (xy 144.16136 96.479605) (xy 144.144232 96.316635) (xy 144.144232 96.316633) (xy 144.143542 96.310072) (xy 144.131791 96.273906) (xy 144.129763 96.20294) (xy 144.162529 96.145875) (xy 144.363001 95.945404) (xy 144.425313 95.911379) (xy 144.452096 95.9085) (xy 144.787072 95.9085) (xy 144.790318 95.908163) (xy 144.790322 95.908163) (xy 144.884235 95.898419) (xy 144.884239 95.898418) (xy 144.891093 95.897707) (xy 144.897629 95.895526) (xy 144.897631 95.895526) (xy 145.049159 95.844972) (xy 145.056107 95.842654) (xy 145.204031 95.751116) (xy 145.209204 95.745934) (xy 145.209209 95.74593) (xy 145.286144 95.66886) (xy 145.348426 95.63478) (xy 145.419246 95.639783) (xy 145.464335 95.668704) (xy 145.542129 95.746363) (xy 145.55354 95.755375) (xy 145.689063 95.838912) (xy 145.702241 95.845056) (xy 145.853766 95.895315) (xy 145.867132 95.898181) (xy 145.95977 95.907672) (xy 145.966185 95.908) (xy 145.977885 95.908) (xy 145.993124 95.903525) (xy 145.994329 95.902135) (xy 145.996 95.894452) (xy 145.996 95.889885) (xy 146.504 95.889885) (xy 146.508475 95.905124) (xy 146.509865 95.906329) (xy 146.517548 95.908) (xy 146.533766 95.908) (xy 146.540282 95.907663) (xy 146.634132 95.897925) (xy 146.647528 95.895032) (xy 146.798953 95.844512) (xy 146.812115 95.838347) (xy 146.947492 95.754574) (xy 146.95889 95.74554) (xy 147.071363 95.632871) (xy 147.080375 95.62146) (xy 147.163912 95.485937) (xy 147.170056 95.472759) (xy 147.220315 95.321234) (xy 147.223181 95.307868) (xy 147.232672 95.21523) (xy 147.233 95.208815) (xy 147.233 95.134615) (xy 147.228525 95.119376) (xy 147.227135 95.118171) (xy 147.219452 95.1165) (xy 146.522115 95.1165) (xy 146.506876 95.120975) (xy 146.505671 95.122365) (xy 146.504 95.130048) (xy 146.504 95.889885) (xy 145.996 95.889885) (xy 145.996 94.7345) (xy 146.016002 94.666379) (xy 146.069658 94.619886) (xy 146.122 94.6085) (xy 147.214885 94.6085) (xy 147.230124 94.604025) (xy 147.231329 94.602635) (xy 147.233 94.594952) (xy 147.233 94.516234) (xy 147.232663 94.509718) (xy 147.222925 94.415868) (xy 147.220032 94.402472) (xy 147.169512 94.251047) (xy 147.163347 94.237885) (xy 147.079574 94.102508) (xy 147.070536 94.091106) (xy 147.068861 94.089433) (xy 147.068081 94.088007) (xy 147.065993 94.085373) (xy 147.066444 94.085016) (xy 147.034781 94.027151) (xy 147.039784 93.956331) (xy 147.068701 93.911246) (xy 147.071756 93.908185) (xy 147.076929 93.903003) (xy 147.08683 93.886941) (xy 147.164369 93.76115) (xy 147.16437 93.761148) (xy 147.168209 93.75492) (xy 147.171556 93.74483) (xy 147.172849 93.742964) (xy 147.173607 93.741338) (xy 147.173885 93.741468) (xy 147.211988 93.686471) (xy 147.277553 93.659236) (xy 147.291148 93.6585) (xy 148.007725 93.6585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 111.076535 94.953186) (xy 111.121598 94.982147) (xy 111.720836 95.581385) (xy 111.754862 95.643697) (xy 111.749797 95.714512) (xy 111.705803 95.772415) (xy 111.674402 95.795229) (xy 111.662651 95.803767) (xy 111.638747 95.821134) (xy 111.634326 95.826044) (xy 111.634325 95.826045) (xy 111.540943 95.929757) (xy 111.51096 95.963056) (xy 111.415473 96.128444) (xy 111.356458 96.310072) (xy 111.355768 96.316633) (xy 111.355768 96.316635) (xy 111.33864 96.479605) (xy 111.336496 96.5) (xy 111.337186 96.506565) (xy 111.348348 96.612761) (xy 111.356458 96.689928) (xy 111.415473 96.871556) (xy 111.418776 96.877278) (xy 111.418777 96.877279) (xy 111.445215 96.923071) (xy 111.51096 97.036944) (xy 111.515378 97.041851) (xy 111.515379 97.041852) (xy 111.587366 97.121802) (xy 111.638747 97.178866) (xy 111.712137 97.232187) (xy 111.765926 97.271267) (xy 111.793248 97.291118) (xy 111.799276 97.293802) (xy 111.799278 97.293803) (xy 111.888213 97.333399) (xy 111.967712 97.368794) (xy 112.051332 97.386568) (xy 112.148056 97.407128) (xy 112.148061 97.407128) (xy 112.154513 97.4085) (xy 112.245761 97.4085) (xy 112.313882 97.428502) (xy 112.334856 97.445405) (xy 113.285685 98.396234) (xy 113.296552 98.408625) (xy 113.316013 98.433987) (xy 113.347925 98.458474) (xy 113.347928 98.458477) (xy 113.413465 98.508765) (xy 113.443125 98.531524) (xy 113.59115 98.592838) (xy 113.710115 98.6085) (xy 113.71012 98.6085) (xy 113.710129 98.608501) (xy 113.741812 98.612672) (xy 113.75 98.61375) (xy 113.781693 98.609578) (xy 113.798136 98.6085) (xy 140.495761 98.6085) (xy 140.563882 98.628502) (xy 140.584856 98.645405) (xy 141.215856 99.276405) (xy 141.249882 99.338717) (xy 141.244817 99.409532) (xy 141.20227 99.466368) (xy 141.13575 99.491179) (xy 141.126761 99.4915) (xy 109.719924 99.4915) (xy 109.651803 99.471498) (xy 109.630829 99.454595) (xy 109.006855 98.830621) (xy 108.997753 98.820478) (xy 108.977897 98.795782) (xy 108.974032 98.790975) (xy 108.935578 98.758708) (xy 108.931931 98.755528) (xy 108.930119 98.753885) (xy 108.927925 98.751691) (xy 108.894651 98.724358) (xy 108.893853 98.723696) (xy 108.822526 98.663846) (xy 108.817856 98.661278) (xy 108.813739 98.657897) (xy 108.731914 98.614023) (xy 108.730755 98.613394) (xy 108.654619 98.571538) (xy 108.654611 98.571535) (xy 108.649213 98.568567) (xy 108.644131 98.566955) (xy 108.639437 98.564438) (xy 108.550469 98.537238) (xy 108.549441 98.536918) (xy 108.460694 98.508765) (xy 108.455398 98.508171) (xy 108.450302 98.506613) (xy 108.357743 98.49721) (xy 108.356607 98.497089) (xy 108.32193 98.4932) (xy 108.31027 98.491892) (xy 108.310266 98.491892) (xy 108.306773 98.4915) (xy 108.303246 98.4915) (xy 108.302261 98.491445) (xy 108.296581 98.490998) (xy 108.267175 98.488011) (xy 108.259663 98.487248) (xy 108.259661 98.487248) (xy 108.253538 98.486626) (xy 108.211259 98.490623) (xy 108.207891 98.490941) (xy 108.196033 98.4915) (xy 107.738245 98.4915) (xy 107.670124 98.471498) (xy 107.623631 98.417842) (xy 107.613527 98.347568) (xy 107.643021 98.282988) (xy 107.64915 98.276405) (xy 110.943408 94.982147) (xy 111.00572 94.948121) ) ) (filled_polygon (layer "F.Cu") (pts (xy 160.009532 87.120869) (xy 160.066368 87.163416) (xy 160.091179 87.229936) (xy 160.0915 87.238925) (xy 160.0915 90.314364) (xy 160.090422 90.330807) (xy 160.08625 90.3625) (xy 160.0915 90.40238) (xy 160.0915 90.402385) (xy 160.103408 90.492838) (xy 160.107162 90.521351) (xy 160.168476 90.669376) (xy 160.173503 90.675927) (xy 160.173504 90.675929) (xy 160.24152 90.764569) (xy 160.241526 90.764575) (xy 160.266013 90.796487) (xy 160.272568 90.801517) (xy 160.291379 90.815952) (xy 160.30377 90.826819) (xy 160.354595 90.877644) (xy 160.388621 90.939956) (xy 160.3915 90.966739) (xy 160.3915 91.387072) (xy 160.391837 91.390318) (xy 160.391837 91.390322) (xy 160.394753 91.418423) (xy 160.381888 91.488244) (xy 160.34613 91.531389) (xy 160.301006 91.566014) (xy 160.29598 91.572564) (xy 160.281541 91.591381) (xy 160.270674 91.603772) (xy 159.01985 92.854595) (xy 158.957538 92.888621) (xy 158.930755 92.8915) (xy 155.404239 92.8915) (xy 155.336118 92.871498) (xy 155.315144 92.854595) (xy 155.145405 92.684856) (xy 155.111379 92.622544) (xy 155.1085 92.595761) (xy 155.1085 92.53029) (xy 155.128502 92.462169) (xy 155.140864 92.44598) (xy 155.234621 92.341852) (xy 155.234622 92.341851) (xy 155.23904 92.336944) (xy 155.334527 92.171556) (xy 155.393542 91.989928) (xy 155.401733 91.912) (xy 155.412814 91.806565) (xy 155.412814 91.806564) (xy 155.413504 91.8) (xy 155.399686 91.668525) (xy 155.394232 91.616635) (xy 155.394232 91.616633) (xy 155.393542 91.610072) (xy 155.334527 91.428444) (xy 155.328742 91.418423) (xy 155.242341 91.268774) (xy 155.23904 91.263056) (xy 155.231362 91.254528) (xy 155.115675 91.126045) (xy 155.115674 91.126044) (xy 155.111253 91.121134) (xy 155.012157 91.049136) (xy 154.962094 91.012763) (xy 154.962093 91.012762) (xy 154.956752 91.008882) (xy 154.950724 91.006198) (xy 154.950722 91.006197) (xy 154.788319 90.933891) (xy 154.788318 90.933891) (xy 154.782288 90.931206) (xy 154.688888 90.911353) (xy 154.601944 90.892872) (xy 154.601939 90.892872) (xy 154.595487 90.8915) (xy 154.404513 90.8915) (xy 154.398061 90.892872) (xy 154.398056 90.892872) (xy 154.311112 90.911353) (xy 154.217712 90.931206) (xy 154.211682 90.933891) (xy 154.211681 90.933891) (xy 154.049278 91.006197) (xy 154.049276 91.006198) (xy 154.043248 91.008882) (xy 154.037907 91.012762) (xy 154.037906 91.012763) (xy 153.987843 91.049136) (xy 153.888747 91.121134) (xy 153.884326 91.126044) (xy 153.884325 91.126045) (xy 153.768639 91.254528) (xy 153.76096 91.263056) (xy 153.757659 91.268774) (xy 153.671259 91.418423) (xy 153.665473 91.428444) (xy 153.606458 91.610072) (xy 153.605768 91.616633) (xy 153.605768 91.616635) (xy 153.600314 91.668525) (xy 153.586496 91.8) (xy 153.591544 91.848022) (xy 153.591616 91.848711) (xy 153.578844 91.918549) (xy 153.530342 91.970396) (xy 153.46151 91.987791) (xy 153.3942 91.96521) (xy 153.377211 91.950977) (xy 152.533947 91.107713) (xy 152.524845 91.09757) (xy 152.504989 91.072874) (xy 152.501124 91.068067) (xy 152.46267 91.0358) (xy 152.459023 91.03262) (xy 152.457211 91.030977) (xy 152.455017 91.028783) (xy 152.421743 91.00145) (xy 152.420945 91.000788) (xy 152.349618 90.940938) (xy 152.344948 90.93837) (xy 152.340831 90.934989) (xy 152.282811 90.903879) (xy 152.259006 90.891115) (xy 152.257847 90.890486) (xy 152.181711 90.84863) (xy 152.181703 90.848627) (xy 152.176305 90.845659) (xy 152.171223 90.844047) (xy 152.166529 90.84153) (xy 152.077561 90.81433) (xy 152.076533 90.81401) (xy 151.987786 90.785857) (xy 151.98249 90.785263) (xy 151.977394 90.783705) (xy 151.884835 90.774302) (xy 151.883699 90.774181) (xy 151.850084 90.770411) (xy 151.837362 90.768984) (xy 151.837358 90.768984) (xy 151.833865 90.768592) (xy 151.830338 90.768592) (xy 151.829353 90.768537) (xy 151.823673 90.76809) (xy 151.794267 90.765103) (xy 151.786755 90.76434) (xy 151.786753 90.76434) (xy 151.78063 90.763718) (xy 151.738351 90.767715) (xy 151.734983 90.768033) (xy 151.723125 90.768592) (xy 115.6745 90.768592) (xy 115.606379 90.74859) (xy 115.559886 90.694934) (xy 115.5485 90.642592) (xy 115.5485 89.900231) (xy 115.548055 89.895685) (xy 115.537488 89.787925) (xy 115.53408 89.753167) (xy 115.476916 89.563831) (xy 115.384066 89.389204) (xy 115.300098 89.286249) (xy 115.26296 89.240713) (xy 115.262957 89.24071) (xy 115.259065 89.235938) (xy 115.252724 89.230692) (xy 115.111425 89.113799) (xy 115.111421 89.113797) (xy 115.106675 89.10987) (xy 114.932701 89.015802) (xy 114.743768 88.957318) (xy 114.737643 88.956674) (xy 114.737642 88.956674) (xy 114.553204 88.937289) (xy 114.553202 88.937289) (xy 114.547075 88.936645) (xy 114.464576 88.944153) (xy 114.356251 88.954011) (xy 114.356248 88.954012) (xy 114.350112 88.95457) (xy 114.344206 88.956308) (xy 114.344202 88.956309) (xy 114.273859 88.977012) (xy 114.160381 89.01041) (xy 114.154923 89.013263) (xy 114.154919 89.013265) (xy 114.113949 89.034684) (xy 113.98511 89.10204) (xy 113.830975 89.225968) (xy 113.703846 89.377474) (xy 113.700879 89.382872) (xy 113.700875 89.382877) (xy 113.640074 89.493476) (xy 113.608567 89.550787) (xy 113.606706 89.556654) (xy 113.606705 89.556656) (xy 113.570872 89.669616) (xy 113.548765 89.739306) (xy 113.5315 89.893227) (xy 113.5315 91.148157) (xy 113.530763 91.161764) (xy 113.528326 91.184202) (xy 113.526676 91.199388) (xy 113.527576 91.209672) (xy 113.531021 91.249053) (xy 113.5315 91.260034) (xy 113.5315 91.742096) (xy 113.530855 91.754829) (xy 113.526626 91.796462) (xy 113.527206 91.802593) (xy 113.530941 91.842109) (xy 113.5315 91.853967) (xy 113.5315 92.28628) (xy 113.530855 92.299013) (xy 113.527583 92.331226) (xy 113.526626 92.340646) (xy 113.527206 92.346777) (xy 113.530941 92.386293) (xy 113.5315 92.398151) (xy 113.5315 93.649769) (xy 113.5318 93.652825) (xy 113.5318 93.652832) (xy 113.536102 93.696705) (xy 113.54592 93.796833) (xy 113.603084 93.986169) (xy 113.695934 94.160796) (xy 113.734542 94.208134) (xy 113.81704 94.309287) (xy 113.817043 94.30929) (xy 113.820935 94.314062) (xy 113.825682 94.317989) (xy 113.825684 94.317991) (xy 113.968575 94.436201) (xy 113.968579 94.436203) (xy 113.973325 94.44013) (xy 114.147299 94.534198) (xy 114.336232 94.592682) (xy 114.342357 94.593326) (xy 114.342358 94.593326) (xy 114.526796 94.612711) (xy 114.526798 94.612711) (xy 114.532925 94.613355) (xy 114.635445 94.604025) (xy 114.723749 94.595989) (xy 114.723752 94.595988) (xy 114.729888 94.59543) (xy 114.735794 94.593692) (xy 114.735798 94.593691) (xy 114.886154 94.549439) (xy 114.919619 94.53959) (xy 114.925077 94.536737) (xy 114.925081 94.536735) (xy 115.015853 94.48928) (xy 115.09489 94.44796) (xy 115.249025 94.324032) (xy 115.376154 94.172526) (xy 115.379121 94.167128) (xy 115.379125 94.167123) (xy 115.468467 94.004608) (xy 115.471433 93.999213) (xy 115.473846 93.991608) (xy 115.529373 93.816564) (xy 115.529373 93.816563) (xy 115.531235 93.810694) (xy 115.5485 93.656773) (xy 115.5485 92.911592) (xy 115.568502 92.843471) (xy 115.622158 92.796978) (xy 115.6745 92.785592) (xy 143.3905 92.785592) (xy 143.458621 92.805594) (xy 143.505114 92.85925) (xy 143.5165 92.911592) (xy 143.5165 93.387072) (xy 143.516837 93.390318) (xy 143.516837 93.390322) (xy 143.526545 93.483883) (xy 143.527293 93.491093) (xy 143.529474 93.497629) (xy 143.529474 93.497631) (xy 143.557944 93.582965) (xy 143.560528 93.653914) (xy 143.527515 93.711936) (xy 140.384856 96.854595) (xy 140.322544 96.888621) (xy 140.295761 96.8915) (xy 114.804239 96.8915) (xy 114.736118 96.871498) (xy 114.715144 96.854595) (xy 111.644445 93.783896) (xy 111.610419 93.721584) (xy 111.60754 93.694801) (xy 111.60754 87.512255) (xy 111.627542 87.444134) (xy 111.681198 87.397641) (xy 111.751472 87.387537) (xy 111.816052 87.417031) (xy 111.822635 87.42316) (xy 112.794748 88.395273) (xy 112.805615 88.407664) (xy 112.825076 88.433026) (xy 112.831626 88.438052) (xy 112.856988 88.457513) (xy 112.856991 88.457516) (xy 112.888425 88.481636) (xy 112.952187 88.530563) (xy 113.008769 88.554) (xy 113.013501 88.55596) (xy 113.092583 88.588717) (xy 113.092586 88.588718) (xy 113.100213 88.591877) (xy 113.219178 88.607539) (xy 113.219183 88.607539) (xy 113.219192 88.60754) (xy 113.250875 88.611711) (xy 113.259063 88.612789) (xy 113.290756 88.608617) (xy 113.307199 88.607539) (xy 138.390535 88.607539) (xy 138.458656 88.627541) (xy 138.47963 88.644444) (xy 138.73142 88.896234) (xy 138.742287 88.908625) (xy 138.761748 88.933987) (xy 138.768298 88.939013) (xy 138.793656 88.958471) (xy 138.793672 88.958485) (xy 138.823896 88.981676) (xy 138.888859 89.031524) (xy 139.036884 89.092838) (xy 139.045071 89.093916) (xy 139.045072 89.093916) (xy 139.056277 89.095391) (xy 139.085111 89.099187) (xy 139.15585 89.1085) (xy 139.155853 89.1085) (xy 139.155861 89.108501) (xy 139.187546 89.112672) (xy 139.195735 89.11375) (xy 139.227428 89.109578) (xy 139.243871 89.1085) (xy 148.119564 89.1085) (xy 148.187685 89.128502) (xy 148.226708 89.168197) (xy 148.24503 89.197805) (xy 148.245036 89.197812) (xy 148.248884 89.204031) (xy 148.254062 89.2092) (xy 148.366816 89.321758) (xy 148.366821 89.321762) (xy 148.371997 89.326929) (xy 148.378227 89.330769) (xy 148.378228 89.33077) (xy 148.4976 89.404352) (xy 148.52008 89.418209) (xy 148.685191 89.472974) (xy 148.692027 89.473674) (xy 148.69203 89.473675) (xy 148.743526 89.478951) (xy 148.787928 89.4835) (xy 149.387072 89.4835) (xy 149.390318 89.483163) (xy 149.390322 89.483163) (xy 149.484235 89.473419) (xy 149.484239 89.473418) (xy 149.491093 89.472707) (xy 149.497629 89.470526) (xy 149.497631 89.470526) (xy 149.630395 89.426232) (xy 149.656107 89.417654) (xy 149.804031 89.326116) (xy 149.812738 89.317394) (xy 149.910747 89.219214) (xy 149.97303 89.185135) (xy 150.04385 89.190138) (xy 150.088937 89.219059) (xy 150.191812 89.321754) (xy 150.191817 89.321758) (xy 150.196997 89.326929) (xy 150.203227 89.330769) (xy 150.203228 89.33077) (xy 150.3226 89.404352) (xy 150.34508 89.418209) (xy 150.510191 89.472974) (xy 150.517027 89.473674) (xy 150.51703 89.473675) (xy 150.568526 89.478951) (xy 150.612928 89.4835) (xy 151.212072 89.4835) (xy 151.215318 89.483163) (xy 151.215322 89.483163) (xy 151.309235 89.473419) (xy 151.309239 89.473418) (xy 151.316093 89.472707) (xy 151.322629 89.470526) (xy 151.322631 89.470526) (xy 151.455395 89.426232) (xy 151.481107 89.417654) (xy 151.629031 89.326116) (xy 151.637738 89.317394) (xy 151.746758 89.208184) (xy 151.746762 89.208179) (xy 151.751929 89.203003) (xy 151.75612 89.196204) (xy 151.77327 89.168383) (xy 151.826043 89.12089) (xy 151.880529 89.1085) (xy 153.76929 89.1085) (xy 153.837411 89.128502) (xy 153.862926 89.150189) (xy 153.879141 89.168197) (xy 153.888747 89.178866) (xy 153.894939 89.183365) (xy 154.004959 89.263299) (xy 154.043248 89.291118) (xy 154.049276 89.293802) (xy 154.049278 89.293803) (xy 154.156408 89.3415) (xy 154.217712 89.368794) (xy 154.291264 89.384428) (xy 154.398056 89.407128) (xy 154.398061 89.407128) (xy 154.404513 89.4085) (xy 154.595487 89.4085) (xy 154.601939 89.407128) (xy 154.601944 89.407128) (xy 154.708736 89.384428) (xy 154.782288 89.368794) (xy 154.843592 89.3415) (xy 154.950722 89.293803) (xy 154.950724 89.293802) (xy 154.956752 89.291118) (xy 154.995042 89.263299) (xy 155.078031 89.203003) (xy 155.111253 89.178866) (xy 155.120692 89.168383) (xy 155.234621 89.041852) (xy 155.234622 89.041851) (xy 155.23904 89.036944) (xy 155.313125 88.908625) (xy 155.331223 88.877279) (xy 155.331224 88.877278) (xy 155.334527 88.871556) (xy 155.393542 88.689928) (xy 155.39699 88.657128) (xy 155.412814 88.506565) (xy 155.413504 88.5) (xy 155.409039 88.457516) (xy 155.394232 88.316635) (xy 155.394232 88.316633) (xy 155.393542 88.310072) (xy 155.334527 88.128444) (xy 155.328724 88.118392) (xy 155.295648 88.061103) (xy 155.23904 87.963056) (xy 155.218216 87.939928) (xy 155.115675 87.826045) (xy 155.115674 87.826044) (xy 155.111253 87.821134) (xy 155.012157 87.749136) (xy 154.962094 87.712763) (xy 154.962093 87.712762) (xy 154.956752 87.708882) (xy 154.950724 87.706198) (xy 154.950722 87.706197) (xy 154.788319 87.633891) (xy 154.788318 87.633891) (xy 154.782288 87.631206) (xy 154.668898 87.607104) (xy 154.601944 87.592872) (xy 154.601939 87.592872) (xy 154.595487 87.5915) (xy 154.404513 87.5915) (xy 154.398061 87.592872) (xy 154.398056 87.592872) (xy 154.331102 87.607104) (xy 154.217712 87.631206) (xy 154.211682 87.633891) (xy 154.211681 87.633891) (xy 154.049278 87.706197) (xy 154.049276 87.706198) (xy 154.043248 87.708882) (xy 154.037907 87.712762) (xy 154.037906 87.712763) (xy 153.921969 87.796997) (xy 153.888747 87.821134) (xy 153.884334 87.826036) (xy 153.884332 87.826037) (xy 153.862926 87.849811) (xy 153.80248 87.88705) (xy 153.76929 87.8915) (xy 151.880436 87.8915) (xy 151.812315 87.871498) (xy 151.773292 87.831803) (xy 151.75497 87.802195) (xy 151.754964 87.802188) (xy 151.751116 87.795969) (xy 151.736062 87.780941) (xy 151.633184 87.678242) (xy 151.633179 87.678238) (xy 151.628003 87.673071) (xy 151.521303 87.6073) (xy 151.47381 87.554528) (xy 151.462386 87.484456) (xy 151.49066 87.419332) (xy 151.521116 87.392896) (xy 151.622803 87.32997) (xy 151.629031 87.326116) (xy 151.635049 87.320088) (xy 151.746757 87.208184) (xy 151.751929 87.203003) (xy 151.764023 87.183383) (xy 151.816794 87.135891) (xy 151.871282 87.1235) (xy 156.008954 87.1235) (xy 156.077075 87.143502) (xy 156.116387 87.183665) (xy 156.128237 87.203003) (xy 156.199987 87.320088) (xy 156.34625 87.488938) (xy 156.518126 87.631632) (xy 156.535099 87.64155) (xy 156.591445 87.674476) (xy 156.640169 87.726114) (xy 156.65324 87.795897) (xy 156.626509 87.861669) (xy 156.586055 87.895027) (xy 156.573607 87.901507) (xy 156.569474 87.90461) (xy 156.569471 87.904612) (xy 156.405287 88.027885) (xy 156.394965 88.035635) (xy 156.240629 88.197138) (xy 156.237715 88.20141) (xy 156.237714 88.201411) (xy 156.176019 88.291852) (xy 156.114743 88.38168) (xy 156.074199 88.469025) (xy 156.040735 88.541118) (xy 156.020688 88.584305) (xy 155.960989 88.79957) (xy 155.937251 89.021695) (xy 155.937548 89.026848) (xy 155.937548 89.026851) (xy 155.947356 89.196946) (xy 155.95011 89.244715) (xy 155.951247 89.249761) (xy 155.951248 89.249767) (xy 155.971922 89.3415) (xy 155.999222 89.462639) (xy 156.083266 89.669616) (xy 156.199987 89.860088) (xy 156.34625 90.028938) (xy 156.518126 90.171632) (xy 156.711 90.284338) (xy 156.715825 90.28618) (xy 156.715826 90.286181) (xy 156.788612 90.313975) (xy 156.919692 90.36403) (xy 156.92476 90.365061) (xy 156.924763 90.365062) (xy 157.004114 90.381206) (xy 157.138597 90.408567) (xy 157.143772 90.408757) (xy 157.143774 90.408757) (xy 157.356673 90.416564) (xy 157.356677 90.416564) (xy 157.361837 90.416753) (xy 157.366957 90.416097) (xy 157.366959 90.416097) (xy 157.578288 90.389025) (xy 157.578289 90.389025) (xy 157.583416 90.388368) (xy 157.588366 90.386883) (xy 157.792429 90.325661) (xy 157.792434 90.325659) (xy 157.797384 90.324174) (xy 157.997994 90.225896) (xy 158.17986 90.096173) (xy 158.206652 90.069475) (xy 158.323975 89.952561) (xy 158.338096 89.938489) (xy 158.350673 89.920987) (xy 158.465435 89.761277) (xy 158.468453 89.757077) (xy 158.487384 89.718774) (xy 158.565136 89.561453) (xy 158.565137 89.561451) (xy 158.56743 89.556811) (xy 158.611655 89.41125) (xy 158.630865 89.348023) (xy 158.630865 89.348021) (xy 158.63237 89.343069) (xy 158.661529 89.12159) (xy 158.661611 89.11824) (xy 158.663074 89.058365) (xy 158.663074 89.058361) (xy 158.663156 89.055) (xy 158.644852 88.832361) (xy 158.590431 88.615702) (xy 158.501354 88.41084) (xy 158.380014 88.223277) (xy 158.22967 88.058051) (xy 158.225619 88.054852) (xy 158.225615 88.054848) (xy 158.058414 87.9228) (xy 158.05841 87.922798) (xy 158.054359 87.919598) (xy 158.013053 87.896796) (xy 157.963084 87.846364) (xy 157.948312 87.776921) (xy 157.973428 87.710516) (xy 158.00078 87.683909) (xy 158.122148 87.597338) (xy 158.17986 87.556173) (xy 158.182886 87.553157) (xy 158.247588 87.52457) (xy 158.263976 87.5235) (xy 159.023157 87.5235) (xy 159.036764 87.524237) (xy 159.068262 87.527659) (xy 159.068267 87.527659) (xy 159.074388 87.528324) (xy 159.100638 87.526027) (xy 159.124388 87.52395) (xy 159.129214 87.523621) (xy 159.131686 87.5235) (xy 159.134769 87.5235) (xy 159.146738 87.522326) (xy 159.177506 87.51931) (xy 159.178819 87.519188) (xy 159.223084 87.515315) (xy 159.271413 87.511087) (xy 159.276532 87.5096) (xy 159.281833 87.50908) (xy 159.370834 87.482209) (xy 159.371967 87.481874) (xy 159.455414 87.45763) (xy 159.455418 87.457628) (xy 159.461336 87.455909) (xy 159.466068 87.453456) (xy 159.471169 87.451916) (xy 159.513878 87.429208) (xy 159.55326 87.408269) (xy 159.554426 87.407657) (xy 159.631453 87.367729) (xy 159.636926 87.364892) (xy 159.641089 87.361569) (xy 159.645796 87.359066) (xy 159.717918 87.300245) (xy 159.718774 87.299554) (xy 159.757973 87.268262) (xy 159.760477 87.265758) (xy 159.761195 87.265116) (xy 159.765528 87.261415) (xy 159.799062 87.234065) (xy 159.804995 87.226894) (xy 159.828287 87.198738) (xy 159.836277 87.189958) (xy 159.876405 87.14983) (xy 159.938717 87.115804) ) ) (filled_polygon (layer "F.Cu") (pts (xy 109.109532 91.180213) (xy 109.166368 91.22276) (xy 109.191179 91.28928) (xy 109.1915 91.298269) (xy 109.1915 93.830756) (xy 109.171498 93.898877) (xy 109.154595 93.919851) (xy 107.991439 95.083006) (xy 107.929129 95.117031) (xy 107.858314 95.111966) (xy 107.801478 95.069419) (xy 107.793227 95.05691) (xy 107.742342 94.968774) (xy 107.742339 94.968769) (xy 107.73904 94.963056) (xy 107.725593 94.948121) (xy 107.615675 94.826045) (xy 107.615674 94.826044) (xy 107.611253 94.821134) (xy 107.512157 94.749136) (xy 107.462094 94.712763) (xy 107.462093 94.712762) (xy 107.456752 94.708882) (xy 107.450724 94.706198) (xy 107.450722 94.706197) (xy 107.288319 94.633891) (xy 107.288318 94.633891) (xy 107.282288 94.631206) (xy 107.185416 94.610615) (xy 107.101944 94.592872) (xy 107.101939 94.592872) (xy 107.095487 94.5915) (xy 106.904513 94.5915) (xy 106.898061 94.592872) (xy 106.898056 94.592872) (xy 106.814584 94.610615) (xy 106.717712 94.631206) (xy 106.711682 94.633891) (xy 106.711681 94.633891) (xy 106.549278 94.706197) (xy 106.549276 94.706198) (xy 106.543248 94.708882) (xy 106.537907 94.712762) (xy 106.537906 94.712763) (xy 106.487024 94.749731) (xy 106.388747 94.821134) (xy 106.384334 94.826036) (xy 106.384332 94.826037) (xy 106.362926 94.849811) (xy 106.30248 94.88705) (xy 106.26929 94.8915) (xy 105.598269 94.8915) (xy 105.530148 94.871498) (xy 105.483655 94.817842) (xy 105.473551 94.747568) (xy 105.503045 94.682988) (xy 105.509174 94.676405) (xy 108.976405 91.209174) (xy 109.038717 91.175148) ) ) (filled_polygon (layer "F.Cu") (pts (xy 67.142962 89.280422) (xy 67.189455 89.334078) (xy 67.199559 89.404352) (xy 67.170065 89.468932) (xy 67.163936 89.475515) (xy 66.913766 89.725685) (xy 66.901375 89.736552) (xy 66.876013 89.756013) (xy 66.851526 89.787925) (xy 66.851523 89.787928) (xy 66.851517 89.787936) (xy 66.786459 89.872721) (xy 66.778476 89.883124) (xy 66.760711 89.926013) (xy 66.729515 90.001327) (xy 66.719709 90.025) (xy 66.717162 90.03115) (xy 66.715741 90.041946) (xy 66.714839 90.043985) (xy 66.713948 90.04731) (xy 66.713429 90.047171) (xy 66.687021 90.106871) (xy 66.627757 90.145964) (xy 66.590819 90.1515) (xy 66.411866 90.1515) (xy 66.349684 90.158255) (xy 66.213295 90.209385) (xy 66.115565 90.28263) (xy 66.049059 90.307478) (xy 65.979676 90.292425) (xy 65.964435 90.28263) (xy 65.866705 90.209385) (xy 65.730316 90.158255) (xy 65.668134 90.1515) (xy 63.871866 90.1515) (xy 63.809684 90.158255) (xy 63.673295 90.209385) (xy 63.575565 90.28263) (xy 63.509059 90.307478) (xy 63.439676 90.292425) (xy 63.424435 90.28263) (xy 63.342657 90.22134) (xy 63.300143 90.164483) (xy 63.295117 90.093665) (xy 63.329128 90.031421) (xy 64.063224 89.297325) (xy 64.125536 89.263299) (xy 64.152319 89.26042) (xy 67.074841 89.26042) ) ) (filled_polygon (layer "F.Cu") (pts (xy 53.203157 85.728502) (xy 53.242179 85.768196) (xy 53.248884 85.779031) (xy 53.254066 85.784204) (xy 53.366816 85.896758) (xy 53.366821 85.896762) (xy 53.371997 85.901929) (xy 53.378227 85.905769) (xy 53.378228 85.90577) (xy 53.512629 85.988616) (xy 53.52008 85.993209) (xy 53.685191 86.047974) (xy 53.692027 86.048674) (xy 53.69203 86.048675) (xy 53.73937 86.053525) (xy 53.787928 86.0585) (xy 54.487072 86.0585) (xy 54.490318 86.058163) (xy 54.490322 86.058163) (xy 54.584235 86.048419) (xy 54.584239 86.048418) (xy 54.591093 86.047707) (xy 54.597629 86.045526) (xy 54.597631 86.045526) (xy 54.744765 85.996438) (xy 54.756107 85.992654) (xy 54.817004 85.95497) (xy 54.897805 85.904969) (xy 54.897806 85.904968) (xy 54.904031 85.901116) (xy 54.910923 85.894212) (xy 54.912387 85.893411) (xy 54.914938 85.891389) (xy 54.915284 85.891826) (xy 54.973204 85.860134) (xy 55.044024 85.865137) (xy 55.08911 85.894056) (xy 55.091421 85.896363) (xy 55.096997 85.901929) (xy 55.103227 85.905769) (xy 55.103228 85.90577) (xy 55.237629 85.988616) (xy 55.24508 85.993209) (xy 55.410191 86.047974) (xy 55.417027 86.048674) (xy 55.41703 86.048675) (xy 55.46437 86.053525) (xy 55.512928 86.0585) (xy 56.1655 86.0585) (xy 56.233621 86.078502) (xy 56.280114 86.132158) (xy 56.2915 86.1845) (xy 56.2915 90.035507) (xy 56.271498 90.103628) (xy 56.217842 90.150121) (xy 56.196237 90.157543) (xy 56.189684 90.158255) (xy 56.182289 90.161027) (xy 56.182286 90.161028) (xy 56.080354 90.199241) (xy 56.053295 90.209385) (xy 55.955565 90.28263) (xy 55.889059 90.307478) (xy 55.819676 90.292425) (xy 55.804435 90.28263) (xy 55.706705 90.209385) (xy 55.570316 90.158255) (xy 55.508134 90.1515) (xy 53.711866 90.1515) (xy 53.649684 90.158255) (xy 53.513295 90.209385) (xy 53.415565 90.28263) (xy 53.349059 90.307478) (xy 53.279676 90.292425) (xy 53.264435 90.28263) (xy 53.166705 90.209385) (xy 53.030316 90.158255) (xy 52.968134 90.1515) (xy 51.80902 90.1515) (xy 51.740899 90.131498) (xy 51.694406 90.077842) (xy 51.68302 90.0255) (xy 51.68302 86.225117) (xy 51.703022 86.156996) (xy 51.756678 86.110503) (xy 51.796017 86.09979) (xy 51.809235 86.098419) (xy 51.809239 86.098418) (xy 51.816093 86.097707) (xy 51.822629 86.095526) (xy 51.822631 86.095526) (xy 51.97165 86.045809) (xy 51.981107 86.042654) (xy 52.129031 85.951116) (xy 52.134204 85.945934) (xy 52.246758 85.833184) (xy 52.246762 85.833179) (xy 52.251929 85.828003) (xy 52.256163 85.821134) (xy 52.288679 85.768384) (xy 52.341452 85.72089) (xy 52.395939 85.7085) (xy 53.135036 85.7085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 62.402709 83.587006) (xy 62.426147 83.600197) (xy 62.426697 83.599305) (xy 62.562068 83.682749) (xy 62.577262 83.692115) (xy 62.640012 83.712928) (xy 62.738611 83.745632) (xy 62.738613 83.745632) (xy 62.745139 83.747797) (xy 62.751975 83.748497) (xy 62.751978 83.748498) (xy 62.795031 83.752909) (xy 62.8496 83.7585) (xy 63.833261 83.7585) (xy 63.901382 83.778502) (xy 63.922356 83.795405) (xy 63.929595 83.802644) (xy 63.963621 83.864956) (xy 63.9665 83.891739) (xy 63.9665 85.576864) (xy 63.965422 85.593307) (xy 63.96125 85.625) (xy 63.9665 85.66488) (xy 63.9665 85.664885) (xy 63.979115 85.760702) (xy 63.982162 85.783851) (xy 63.985322 85.791481) (xy 63.985323 85.791483) (xy 63.991974 85.807539) (xy 64.043476 85.931876) (xy 64.048503 85.938427) (xy 64.048504 85.938429) (xy 64.11652 86.027069) (xy 64.116526 86.027075) (xy 64.141013 86.058987) (xy 64.147568 86.064017) (xy 64.166379 86.078452) (xy 64.17877 86.089319) (xy 64.785205 86.695754) (xy 64.796072 86.708145) (xy 64.815533 86.733507) (xy 64.847445 86.757994) (xy 64.847448 86.757997) (xy 64.913721 86.80885) (xy 64.942645 86.831044) (xy 65.09067 86.892358) (xy 65.209635 86.90802) (xy 65.20964 86.90802) (xy 65.209649 86.908021) (xy 65.241332 86.912192) (xy 65.24952 86.91327) (xy 65.281213 86.909098) (xy 65.297656 86.90802) (xy 78.713377 86.90802) (xy 78.781498 86.928022) (xy 78.827991 86.981678) (xy 78.838687 87.020849) (xy 78.843373 87.065427) (xy 78.845906 87.089526) (xy 78.847554 87.105209) (xy 78.834782 87.175047) (xy 78.78628 87.226894) (xy 78.722244 87.24438) (xy 63.565244 87.24438) (xy 63.548801 87.243302) (xy 63.517108 87.23913) (xy 63.508919 87.240208) (xy 63.477234 87.244379) (xy 63.477225 87.24438) (xy 63.477223 87.24438) (xy 63.477217 87.244381) (xy 63.477215 87.244381) (xy 63.388368 87.256078) (xy 63.366445 87.258964) (xy 63.366444 87.258964) (xy 63.358257 87.260042) (xy 63.210232 87.321356) (xy 63.166165 87.35517) (xy 63.115045 87.394395) (xy 63.115029 87.394409) (xy 63.089674 87.413864) (xy 63.089671 87.413867) (xy 63.083121 87.418893) (xy 63.078091 87.425448) (xy 63.063656 87.444259) (xy 63.052789 87.45665) (xy 61.254844 89.254595) (xy 61.192532 89.288621) (xy 61.165749 89.2915) (xy 59.049122 89.2915) (xy 59.032676 89.290422) (xy 59.009166 89.287327) (xy 59.000978 89.286249) (xy 58.842127 89.307162) (xy 58.694102 89.368476) (xy 58.659998 89.394645) (xy 58.598915 89.441515) (xy 58.598899 89.441529) (xy 58.573544 89.460984) (xy 58.573541 89.460987) (xy 58.566991 89.466013) (xy 58.561961 89.472568) (xy 58.547526 89.491379) (xy 58.536659 89.50377) (xy 58.053766 89.986663) (xy 58.041375 89.99753) (xy 58.016013 90.016991) (xy 57.991526 90.048903) (xy 57.991523 90.048906) (xy 57.950624 90.102206) (xy 57.893289 90.144071) (xy 57.850664 90.1515) (xy 57.6345 90.1515) (xy 57.566379 90.131498) (xy 57.519886 90.077842) (xy 57.5085 90.0255) (xy 57.5085 86.1845) (xy 57.528502 86.116379) (xy 57.582158 86.069886) (xy 57.6345 86.0585) (xy 58.137072 86.0585) (xy 58.140318 86.058163) (xy 58.140322 86.058163) (xy 58.234235 86.048419) (xy 58.234239 86.048418) (xy 58.241093 86.047707) (xy 58.247629 86.045526) (xy 58.247631 86.045526) (xy 58.394765 85.996438) (xy 58.406107 85.992654) (xy 58.554031 85.901116) (xy 58.661101 85.793859) (xy 58.723382 85.75978) (xy 58.794202 85.764783) (xy 58.839291 85.793704) (xy 58.942129 85.896363) (xy 58.95354 85.905375) (xy 59.089063 85.988912) (xy 59.102241 85.995056) (xy 59.253766 86.045315) (xy 59.267132 86.048181) (xy 59.35977 86.057672) (xy 59.366185 86.058) (xy 59.390385 86.058) (xy 59.405624 86.053525) (xy 59.406829 86.052135) (xy 59.4085 86.044452) (xy 59.4085 86.039885) (xy 59.9165 86.039885) (xy 59.920975 86.055124) (xy 59.922365 86.056329) (xy 59.930048 86.058) (xy 59.958766 86.058) (xy 59.965282 86.057663) (xy 60.059132 86.047925) (xy 60.072528 86.045032) (xy 60.223953 85.994512) (xy 60.237115 85.988347) (xy 60.372492 85.904574) (xy 60.38389 85.89554) (xy 60.496363 85.782871) (xy 60.505375 85.77146) (xy 60.588912 85.635937) (xy 60.595056 85.622759) (xy 60.645315 85.471234) (xy 60.648181 85.457868) (xy 60.657672 85.36523) (xy 60.658 85.358815) (xy 60.658 85.347115) (xy 60.653525 85.331876) (xy 60.652135 85.330671) (xy 60.644452 85.329) (xy 59.934615 85.329) (xy 59.919376 85.333475) (xy 59.918171 85.334865) (xy 59.9165 85.342548) (xy 59.9165 86.039885) (xy 59.4085 86.039885) (xy 59.4085 84.947) (xy 59.428502 84.878879) (xy 59.482158 84.832386) (xy 59.5345 84.821) (xy 60.639885 84.821) (xy 60.667798 84.812804) (xy 60.706201 84.788124) (xy 60.741699 84.78302) (xy 60.802344 84.78302) (xy 60.818787 84.784098) (xy 60.85048 84.78827) (xy 60.858669 84.787192) (xy 60.890354 84.783021) (xy 60.890364 84.78302) (xy 60.890365 84.78302) (xy 60.890373 84.783019) (xy 61.001144 84.768436) (xy 61.001146 84.768436) (xy 61.003512 84.768124) (xy 61.009331 84.767358) (xy 61.016957 84.764199) (xy 61.016958 84.764199) (xy 61.102744 84.728665) (xy 61.157356 84.706044) (xy 61.171223 84.695404) (xy 61.252552 84.632997) (xy 61.252555 84.632994) (xy 61.277917 84.613533) (xy 61.284467 84.608507) (xy 61.303938 84.583133) (xy 61.314796 84.570753) (xy 62.269582 83.615967) (xy 62.331894 83.581941) ) ) (filled_polygon (layer "F.Cu") (pts (xy 139.617501 78.803504) (xy 139.624084 78.809633) (xy 143.048181 82.233729) (xy 143.059048 82.24612) (xy 143.078513 82.271487) (xy 143.085063 82.276513) (xy 143.119636 82.303042) (xy 143.192583 82.359017) (xy 143.205624 82.369024) (xy 143.353649 82.430338) (xy 143.361837 82.431416) (xy 143.370026 82.432494) (xy 143.452684 82.443376) (xy 143.472615 82.446) (xy 143.472616 82.446) (xy 143.472626 82.446001) (xy 143.504311 82.450172) (xy 143.5125 82.45125) (xy 143.520689 82.450172) (xy 143.522178 82.449976) (xy 143.523435 82.450172) (xy 143.528945 82.450172) (xy 143.528945 82.451031) (xy 143.592327 82.460916) (xy 143.645766 82.508593) (xy 143.673884 82.554031) (xy 143.679066 82.559204) (xy 143.780786 82.660747) (xy 143.814865 82.72303) (xy 143.809862 82.79385) (xy 143.780941 82.838937) (xy 143.678246 82.941812) (xy 143.678242 82.941817) (xy 143.673071 82.946997) (xy 143.669231 82.953227) (xy 143.66923 82.953228) (xy 143.590786 83.080488) (xy 143.581791 83.09508) (xy 143.527026 83.260191) (xy 143.526326 83.267027) (xy 143.526325 83.26703) (xy 143.521599 83.313164) (xy 143.5165 83.362928) (xy 143.5165 83.697905) (xy 143.496498 83.766026) (xy 143.479595 83.787001) (xy 143.167215 84.09938) (xy 142.857741 84.408854) (xy 142.849463 84.416387) (xy 142.842982 84.4205) (xy 142.837554 84.42628) (xy 142.837552 84.426282) (xy 142.834167 84.429887) (xy 142.804073 84.451292) (xy 142.804999 84.452896) (xy 142.79929 84.456192) (xy 142.793248 84.458882) (xy 142.638747 84.571134) (xy 142.634326 84.576044) (xy 142.634325 84.576045) (xy 142.517274 84.706044) (xy 142.51096 84.713056) (xy 142.467619 84.788124) (xy 142.419068 84.872218) (xy 142.415473 84.878444) (xy 142.356458 85.060072) (xy 142.336496 85.25) (xy 142.337186 85.256565) (xy 142.35542 85.430048) (xy 142.356458 85.439928) (xy 142.415473 85.621556) (xy 142.418776 85.627278) (xy 142.418777 85.627279) (xy 142.445215 85.673071) (xy 142.51096 85.786944) (xy 142.515378 85.791851) (xy 142.515379 85.791852) (xy 142.618662 85.906559) (xy 142.638747 85.928866) (xy 142.727307 85.993209) (xy 142.785765 86.035681) (xy 142.793248 86.041118) (xy 142.799276 86.043802) (xy 142.799278 86.043803) (xy 142.942282 86.107472) (xy 142.967712 86.118794) (xy 143.047159 86.135681) (xy 143.148056 86.157128) (xy 143.148061 86.157128) (xy 143.154513 86.1585) (xy 143.345487 86.1585) (xy 143.351939 86.157128) (xy 143.351944 86.157128) (xy 143.452841 86.135681) (xy 143.532288 86.118794) (xy 143.557718 86.107472) (xy 143.700722 86.043803) (xy 143.700724 86.043802) (xy 143.706752 86.041118) (xy 143.714236 86.035681) (xy 143.772693 85.993209) (xy 143.861253 85.928866) (xy 143.927903 85.854844) (xy 143.988347 85.817606) (xy 144.059331 85.818958) (xy 144.118315 85.858472) (xy 144.146573 85.923602) (xy 144.146881 85.951998) (xy 144.142328 85.996438) (xy 144.142 86.002855) (xy 144.142 86.227885) (xy 144.146475 86.243124) (xy 144.147865 86.244329) (xy 144.155548 86.246) (xy 144.952885 86.246) (xy 144.968124 86.241525) (xy 144.969329 86.240135) (xy 144.971 86.232452) (xy 144.971 85.310116) (xy 144.966525 85.294877) (xy 144.965135 85.293672) (xy 144.957452 85.292001) (xy 144.852905 85.292001) (xy 144.846386 85.292338) (xy 144.750794 85.302257) (xy 144.7374 85.305149) (xy 144.583216 85.356588) (xy 144.570038 85.362761) (xy 144.432193 85.448063) (xy 144.420792 85.457099) (xy 144.360626 85.51737) (xy 144.298344 85.551449) (xy 144.227523 85.546446) (xy 144.170651 85.503949) (xy 144.145782 85.43745) (xy 144.146143 85.415182) (xy 144.162814 85.256565) (xy 144.163504 85.25) (xy 144.143542 85.060072) (xy 144.131791 85.023906) (xy 144.129763 84.95294) (xy 144.162529 84.895875) (xy 144.260714 84.797691) (xy 144.363001 84.695404) (xy 144.425313 84.661379) (xy 144.452096 84.6585) (xy 144.787072 84.6585) (xy 144.790318 84.658163) (xy 144.790322 84.658163) (xy 144.884235 84.648419) (xy 144.884239 84.648418) (xy 144.891093 84.647707) (xy 144.897629 84.645526) (xy 144.897631 84.645526) (xy 145.049159 84.594972) (xy 145.056107 84.592654) (xy 145.204031 84.501116) (xy 145.209204 84.495934) (xy 145.209209 84.49593) (xy 145.286144 84.41886) (xy 145.348426 84.38478) (xy 145.419246 84.389783) (xy 145.464335 84.418704) (xy 145.542129 84.496363) (xy 145.55354 84.505375) (xy 145.689063 84.588912) (xy 145.702241 84.595056) (xy 145.853766 84.645315) (xy 145.867132 84.648181) (xy 145.95977 84.657672) (xy 145.966185 84.658) (xy 145.977885 84.658) (xy 145.993124 84.653525) (xy 145.994329 84.652135) (xy 145.996 84.644452) (xy 145.996 84.639885) (xy 146.504 84.639885) (xy 146.508475 84.655124) (xy 146.509865 84.656329) (xy 146.517548 84.658) (xy 146.533766 84.658) (xy 146.540282 84.657663) (xy 146.634132 84.647925) (xy 146.647528 84.645032) (xy 146.798953 84.594512) (xy 146.812115 84.588347) (xy 146.947492 84.504574) (xy 146.95889 84.49554) (xy 147.071363 84.382871) (xy 147.080375 84.37146) (xy 147.163912 84.235937) (xy 147.170056 84.222759) (xy 147.220315 84.071234) (xy 147.223181 84.057868) (xy 147.232672 83.96523) (xy 147.233 83.958815) (xy 147.233 83.884615) (xy 147.228525 83.869376) (xy 147.227135 83.868171) (xy 147.219452 83.8665) (xy 146.522115 83.8665) (xy 146.506876 83.870975) (xy 146.505671 83.872365) (xy 146.504 83.880048) (xy 146.504 84.639885) (xy 145.996 84.639885) (xy 145.996 83.4845) (xy 146.016002 83.416379) (xy 146.069658 83.369886) (xy 146.122 83.3585) (xy 147.214885 83.3585) (xy 147.230124 83.354025) (xy 147.231329 83.352635) (xy 147.233 83.344952) (xy 147.233 83.266234) (xy 147.232663 83.259718) (xy 147.222925 83.165868) (xy 147.220032 83.152472) (xy 147.169512 83.001047) (xy 147.163347 82.987885) (xy 147.079574 82.852508) (xy 147.070536 82.841106) (xy 147.068861 82.839433) (xy 147.068081 82.838007) (xy 147.065993 82.835373) (xy 147.066444 82.835016) (xy 147.034781 82.777151) (xy 147.039784 82.706331) (xy 147.068701 82.661246) (xy 147.071756 82.658185) (xy 147.076929 82.653003) (xy 147.10329 82.610238) (xy 147.164369 82.51115) (xy 147.16437 82.511148) (xy 147.168209 82.50492) (xy 147.171556 82.49483) (xy 147.172849 82.492964) (xy 147.173607 82.491338) (xy 147.173885 82.491468) (xy 147.211988 82.436471) (xy 147.277553 82.409236) (xy 147.291148 82.4085) (xy 148.007725 82.4085) (xy 148.075846 82.428502) (xy 148.108551 82.458935) (xy 148.186739 82.563261) (xy 148.193919 82.568642) (xy 148.19392 82.568643) (xy 148.301372 82.649174) (xy 148.343887 82.706033) (xy 148.348913 82.776852) (xy 148.314853 82.839145) (xy 148.301372 82.850826) (xy 148.198071 82.928246) (xy 148.186739 82.936739) (xy 148.099385 83.053295) (xy 148.048255 83.189684) (xy 148.0415 83.251866) (xy 148.0415 84.148134) (xy 148.048255 84.210316) (xy 148.099385 84.346705) (xy 148.186739 84.463261) (xy 148.303295 84.550615) (xy 148.439684 84.601745) (xy 148.501866 84.6085) (xy 149.498134 84.6085) (xy 149.560316 84.601745) (xy 149.696705 84.550615) (xy 149.813261 84.463261) (xy 149.900615 84.346705) (xy 149.951745 84.210316) (xy 149.9585 84.148134) (xy 149.9585 83.586941) (xy 149.978502 83.51882) (xy 150.032158 83.472327) (xy 150.102432 83.462223) (xy 150.167012 83.491717) (xy 150.174734 83.500005) (xy 150.175008 83.499731) (xy 150.181358 83.506081) (xy 150.186739 83.513261) (xy 150.303295 83.600615) (xy 150.439684 83.651745) (xy 150.501866 83.6585) (xy 151.498134 83.6585) (xy 151.560316 83.651745) (xy 151.696705 83.600615) (xy 151.813261 83.513261) (xy 151.891449 83.408935) (xy 151.948308 83.36642) (xy 151.992275 83.3585) (xy 155.8155 83.3585) (xy 155.883621 83.378502) (xy 155.930114 83.432158) (xy 155.9415 83.4845) (xy 155.9415 84.873134) (xy 155.948255 84.935316) (xy 155.999385 85.071705) (xy 156.086739 85.188261) (xy 156.203295 85.275615) (xy 156.211704 85.278767) (xy 156.211705 85.278768) (xy 156.320451 85.319535) (xy 156.377216 85.362176) (xy 156.401916 85.428738) (xy 156.386709 85.498087) (xy 156.367316 85.524568) (xy 156.269926 85.626481) (xy 156.240629 85.657138) (xy 156.114743 85.84168) (xy 156.113945 85.8434) (xy 156.063589 85.892088) (xy 156.005074 85.9065) (xy 151.889717 85.9065) (xy 151.821596 85.886498) (xy 151.782573 85.846803) (xy 151.776761 85.83741) (xy 151.751116 85.795969) (xy 151.742075 85.786944) (xy 151.633184 85.678242) (xy 151.633179 85.678238) (xy 151.628003 85.673071) (xy 151.599079 85.655242) (xy 151.48615 85.585631) (xy 151.486148 85.58563) (xy 151.47992 85.581791) (xy 151.314809 85.527026) (xy 151.307973 85.526326) (xy 151.30797 85.526325) (xy 151.256474 85.521049) (xy 151.212072 85.5165) (xy 150.612928 85.5165) (xy 150.609682 85.516837) (xy 150.609678 85.516837) (xy 150.515765 85.526581) (xy 150.515761 85.526582) (xy 150.508907 85.527293) (xy 150.502371 85.529474) (xy 150.502369 85.529474) (xy 150.416474 85.558131) (xy 150.343893 85.582346) (xy 150.195969 85.673884) (xy 150.190796 85.679066) (xy 150.089253 85.780786) (xy 150.02697 85.814865) (xy 149.95615 85.809862) (xy 149.911063 85.780941) (xy 149.808188 85.678246) (xy 149.808183 85.678242) (xy 149.803003 85.673071) (xy 149.774079 85.655242) (xy 149.66115 85.585631) (xy 149.661148 85.58563) (xy 149.65492 85.581791) (xy 149.489809 85.527026) (xy 149.482973 85.526326) (xy 149.48297 85.526325) (xy 149.431474 85.521049) (xy 149.387072 85.5165) (xy 148.787928 85.5165) (xy 148.784682 85.516837) (xy 148.784678 85.516837) (xy 148.690765 85.526581) (xy 148.690761 85.526582) (xy 148.683907 85.527293) (xy 148.677371 85.529474) (xy 148.677369 85.529474) (xy 148.591474 85.558131) (xy 148.518893 85.582346) (xy 148.39734 85.657565) (xy 148.328889 85.676403) (xy 148.261119 85.655242) (xy 148.223896 85.616728) (xy 148.198478 85.575652) (xy 148.181531 85.558734) (xy 148.087442 85.464809) (xy 148.073303 85.450695) (xy 148.067072 85.446854) (xy 147.928968 85.361725) (xy 147.928966 85.361724) (xy 147.922738 85.357885) (xy 147.807116 85.319535) (xy 147.761389 85.304368) (xy 147.761387 85.304368) (xy 147.754861 85.302203) (xy 147.748025 85.301503) (xy 147.748022 85.301502) (xy 147.704969 85.297091) (xy 147.6504 85.2915) (xy 146.8996 85.2915) (xy 146.896354 85.291837) (xy 146.89635 85.291837) (xy 146.800692 85.301762) (xy 146.800688 85.301763) (xy 146.793834 85.302474) (xy 146.787298 85.304655) (xy 146.787296 85.304655) (xy 146.673718 85.342548) (xy 146.626054 85.35845) (xy 146.475652 85.451522) (xy 146.350695 85.576697) (xy 146.347898 85.581235) (xy 146.290647 85.621824) (xy 146.219724 85.625054) (xy 146.158313 85.589428) (xy 146.150938 85.580932) (xy 146.142902 85.570793) (xy 146.028171 85.456261) (xy 146.01676 85.447249) (xy 145.878757 85.362184) (xy 145.865576 85.356037) (xy 145.71129 85.304862) (xy 145.697914 85.301995) (xy 145.603562 85.292328) (xy 145.597145 85.292) (xy 145.497115 85.292) (xy 145.481876 85.296475) (xy 145.480671 85.297865) (xy 145.479 85.305548) (xy 145.479 86.628) (xy 145.458998 86.696121) (xy 145.405342 86.742614) (xy 145.353 86.754) (xy 144.160116 86.754) (xy 144.144877 86.758475) (xy 144.143672 86.759865) (xy 144.142001 86.767548) (xy 144.142001 86.997095) (xy 144.142338 87.003614) (xy 144.152257 87.099206) (xy 144.155149 87.1126) (xy 144.206588 87.266784) (xy 144.212761 87.279962) (xy 144.298063 87.417807) (xy 144.307099 87.429208) (xy 144.421829 87.543739) (xy 144.43324 87.552751) (xy 144.571243 87.637816) (xy 144.584424 87.643963) (xy 144.590285 87.645907) (xy 144.648645 87.686338) (xy 144.675881 87.751903) (xy 144.663347 87.821784) (xy 144.615022 87.873796) (xy 144.550617 87.8915) (xy 142.001471 87.8915) (xy 141.93335 87.871498) (xy 141.886857 87.817842) (xy 141.876753 87.747568) (xy 141.881638 87.726563) (xy 141.887508 87.7085) (xy 141.893542 87.689928) (xy 141.894272 87.682988) (xy 141.912814 87.506565) (xy 141.913504 87.5) (xy 141.911599 87.481874) (xy 141.894232 87.316635) (xy 141.894232 87.316633) (xy 141.893542 87.310072) (xy 141.834527 87.128444) (xy 141.82538 87.1126) (xy 141.770485 87.017521) (xy 141.73904 86.963056) (xy 141.721688 86.943784) (xy 141.615675 86.826045) (xy 141.615674 86.826044) (xy 141.611253 86.821134) (xy 141.456752 86.708882) (xy 141.450724 86.706198) (xy 141.450722 86.706197) (xy 141.288319 86.633891) (xy 141.288318 86.633891) (xy 141.282288 86.631206) (xy 141.167891 86.60689) (xy 141.101944 86.592872) (xy 141.101939 86.592872) (xy 141.095487 86.5915) (xy 140.904513 86.5915) (xy 140.898061 86.592872) (xy 140.898056 86.592872) (xy 140.832109 86.60689) (xy 140.717712 86.631206) (xy 140.711682 86.633891) (xy 140.711681 86.633891) (xy 140.549278 86.706197) (xy 140.549276 86.706198) (xy 140.543248 86.708882) (xy 140.447164 86.778692) (xy 140.440451 86.783569) (xy 140.373584 86.807427) (xy 140.304432 86.791347) (xy 140.257271 86.744633) (xy 140.242341 86.718774) (xy 140.23904 86.713056) (xy 140.228721 86.701595) (xy 140.115675 86.576045) (xy 140.115674 86.576044) (xy 140.111253 86.571134) (xy 139.956752 86.458882) (xy 139.950724 86.456198) (xy 139.950722 86.456197) (xy 139.788319 86.383891) (xy 139.788318 86.383891) (xy 139.782288 86.381206) (xy 139.676265 86.35867) (xy 139.601944 86.342872) (xy 139.601939 86.342872) (xy 139.595487 86.3415) (xy 139.404513 86.3415) (xy 139.398061 86.342872) (xy 139.398056 86.342872) (xy 139.323735 86.35867) (xy 139.217712 86.381206) (xy 139.211682 86.383891) (xy 139.211681 86.383891) (xy 139.049278 86.456197) (xy 139.049276 86.456198) (xy 139.043248 86.458882) (xy 139.037907 86.462762) (xy 139.037906 86.462763) (xy 138.982554 86.502979) (xy 138.894092 86.567251) (xy 138.893837 86.567436) (xy 138.826969 86.591294) (xy 138.819776 86.5915) (xy 129.536572 86.5915) (xy 129.468451 86.571498) (xy 129.421958 86.517842) (xy 129.411262 86.47867) (xy 129.394232 86.316635) (xy 129.394232 86.316633) (xy 129.393542 86.310072) (xy 129.334527 86.128444) (xy 129.327406 86.116109) (xy 129.258372 85.99654) (xy 129.241634 85.927545) (xy 129.264854 85.860453) (xy 129.320661 85.816566) (xy 129.367491 85.80754) (xy 137.372812 85.80754) (xy 137.389255 85.808618) (xy 137.420948 85.81279) (xy 137.429137 85.811712) (xy 137.460822 85.807541) (xy 137.460832 85.80754) (xy 137.460833 85.80754) (xy 137.463743 85.807157) (xy 137.561014 85.794351) (xy 137.571611 85.792956) (xy 137.571612 85.792956) (xy 137.579799 85.791878) (xy 137.727824 85.730564) (xy 137.740432 85.72089) (xy 137.82302 85.657517) (xy 137.823023 85.657514) (xy 137.837985 85.646033) (xy 137.854935 85.633027) (xy 137.874406 85.607653) (xy 137.885264 85.595273) (xy 139.196723 84.283814) (xy 139.209114 84.272947) (xy 139.227926 84.258512) (xy 139.234476 84.253486) (xy 139.258963 84.221574) (xy 139.258967 84.22157) (xy 139.332013 84.126375) (xy 139.393327 83.97835) (xy 139.394819 83.967021) (xy 139.408104 83.866109) (xy 139.41424 83.819499) (xy 139.410067 83.7878) (xy 139.408989 83.771355) (xy 139.408989 78.898728) (xy 139.428991 78.830607) (xy 139.482647 78.784114) (xy 139.552921 78.77401) ) ) (filled_polygon (layer "F.Cu") (pts (xy 121.653647 65.309496) (xy 121.661956 65.317081) (xy 121.741787 65.396772) (xy 121.771997 65.426929) (xy 121.778227 65.430769) (xy 121.778228 65.43077) (xy 121.910361 65.512218) (xy 121.92008 65.518209) (xy 121.977975 65.537412) (xy 121.981762 65.538668) (xy 122.042057 65.581557) (xy 122.053513 65.596487) (xy 122.060068 65.601517) (xy 122.078879 65.615952) (xy 122.09127 65.626819) (xy 122.460685 65.996234) (xy 122.471552 66.008625) (xy 122.491013 66.033987) (xy 122.522925 66.058474) (xy 122.522928 66.058477) (xy 122.58865 66.108907) (xy 122.618125 66.131524) (xy 122.76615 66.192838) (xy 122.885115 66.2085) (xy 122.88512 66.2085) (xy 122.885129 66.208501) (xy 122.916812 66.212672) (xy 122.925 66.21375) (xy 122.956693 66.209578) (xy 122.973136 66.2085) (xy 123.464442 66.2085) (xy 123.532563 66.228502) (xy 123.579056 66.282158) (xy 123.58916 66.352432) (xy 123.584035 66.374167) (xy 123.559159 66.449167) (xy 123.552203 66.470139) (xy 123.551503 66.476975) (xy 123.551502 66.476978) (xy 123.549553 66.496) (xy 123.5415 66.5746) (xy 123.5415 67.3254) (xy 123.541837 67.328646) (xy 123.541837 67.32865) (xy 123.551508 67.421854) (xy 123.552474 67.431166) (xy 123.554655 67.437702) (xy 123.554655 67.437704) (xy 123.584545 67.527293) (xy 123.60845 67.598946) (xy 123.701522 67.749348) (xy 123.826697 67.874305) (xy 123.831235 67.877102) (xy 123.871824 67.934353) (xy 123.875054 68.005276) (xy 123.839428 68.066687) (xy 123.830932 68.074062) (xy 123.820793 68.082098) (xy 123.706261 68.196829) (xy 123.697249 68.20824) (xy 123.612184 68.346243) (xy 123.606037 68.359424) (xy 123.554862 68.51371) (xy 123.551995 68.527086) (xy 123.542328 68.621438) (xy 123.542 68.627855) (xy 123.542 68.727885) (xy 123.546475 68.743124) (xy 123.547865 68.744329) (xy 123.555548 68.746) (xy 124.878 68.746) (xy 124.946121 68.766002) (xy 124.992614 68.819658) (xy 125.004 68.872) (xy 125.004 70.064884) (xy 125.008475 70.080123) (xy 125.009865 70.081328) (xy 125.017548 70.082999) (xy 125.0905 70.082999) (xy 125.158621 70.103001) (xy 125.205114 70.156657) (xy 125.2165 70.208999) (xy 125.2165 71.395761) (xy 125.196498 71.463882) (xy 125.179595 71.484856) (xy 125.150307 71.514144) (xy 125.087995 71.54817) (xy 125.0286 71.546755) (xy 124.974691 71.53231) (xy 124.974685 71.532309) (xy 124.969371 71.530885) (xy 124.75 71.511693) (xy 124.530629 71.530885) (xy 124.317924 71.58788) (xy 124.231976 71.627958) (xy 124.123334 71.678618) (xy 124.123329 71.678621) (xy 124.118347 71.680944) (xy 124.11384 71.6841) (xy 124.113838 71.684101) (xy 123.942473 71.804092) (xy 123.94247 71.804094) (xy 123.937962 71.807251) (xy 123.782251 71.962962) (xy 123.779094 71.96747) (xy 123.779092 71.967473) (xy 123.659101 72.138838) (xy 123.655944 72.143347) (xy 123.653621 72.148329) (xy 123.653618 72.148334) (xy 123.631282 72.196234) (xy 123.56288 72.342924) (xy 123.505885 72.555629) (xy 123.486693 72.775) (xy 123.505885 72.994371) (xy 123.56288 73.207076) (xy 123.584378 73.253179) (xy 123.653618 73.401666) (xy 123.653621 73.401671) (xy 123.655944 73.406653) (xy 123.6591 73.41116) (xy 123.659101 73.411162) (xy 123.776025 73.578146) (xy 123.782251 73.587038) (xy 123.937962 73.742749) (xy 123.942471 73.745906) (xy 123.942473 73.745908) (xy 123.988944 73.778447) (xy 124.118346 73.869056) (xy 124.317924 73.96212) (xy 124.530629 74.019115) (xy 124.75 74.038307) (xy 124.969371 74.019115) (xy 125.182076 73.96212) (xy 125.381654 73.869056) (xy 125.511056 73.778447) (xy 125.557527 73.745908) (xy 125.557529 73.745906) (xy 125.562038 73.742749) (xy 125.717749 73.587038) (xy 125.723976 73.578146) (xy 125.840899 73.411162) (xy 125.8409 73.41116) (xy 125.844056 73.406653) (xy 125.846379 73.401671) (xy 125.846382 73.401666) (xy 125.915622 73.253179) (xy 125.93712 73.207076) (xy 125.994115 72.994371) (xy 126.013307 72.775) (xy 125.994115 72.555629) (xy 125.992691 72.550315) (xy 125.99269 72.550309) (xy 125.978245 72.4964) (xy 125.979934 72.425424) (xy 126.010856 72.374693) (xy 126.221234 72.164315) (xy 126.233625 72.153448) (xy 126.252437 72.139013) (xy 126.258987 72.133987) (xy 126.283474 72.102075) (xy 126.283478 72.102071) (xy 126.356524 72.006876) (xy 126.417838 71.858851) (xy 126.438751 71.7) (xy 126.434578 71.668301) (xy 126.4335 71.651856) (xy 126.4335 70.1095) (xy 126.453502 70.041379) (xy 126.507158 69.994886) (xy 126.5595 69.9835) (xy 126.987072 69.9835) (xy 126.990318 69.983163) (xy 126.990322 69.983163) (xy 127.084235 69.973419) (xy 127.084239 69.973418) (xy 127.091093 69.972707) (xy 127.097629 69.970526) (xy 127.097631 69.970526) (xy 127.2471 69.920659) (xy 127.256107 69.917654) (xy 127.404031 69.826116) (xy 127.409204 69.820934) (xy 127.510747 69.719214) (xy 127.57303 69.685135) (xy 127.64385 69.690138) (xy 127.688937 69.719059) (xy 127.791812 69.821754) (xy 127.791817 69.821758) (xy 127.796997 69.826929) (xy 127.803227 69.830769) (xy 127.803228 69.83077) (xy 127.931036 69.909552) (xy 127.94508 69.918209) (xy 128.110191 69.972974) (xy 128.117027 69.973674) (xy 128.11703 69.973675) (xy 128.168526 69.978951) (xy 128.212928 69.9835) (xy 128.583261 69.9835) (xy 128.651382 70.003502) (xy 128.672356 70.020405) (xy 128.804595 70.152644) (xy 128.838621 70.214956) (xy 128.8415 70.241739) (xy 128.8415 70.745761) (xy 128.821498 70.813882) (xy 128.804595 70.834856) (xy 128.584856 71.054595) (xy 128.522544 71.088621) (xy 128.495761 71.0915) (xy 128.404513 71.0915) (xy 128.398061 71.092872) (xy 128.398056 71.092872) (xy 128.32445 71.108518) (xy 128.217712 71.131206) (xy 128.211682 71.133891) (xy 128.211681 71.133891) (xy 128.049278 71.206197) (xy 128.049276 71.206198) (xy 128.043248 71.208882) (xy 128.037907 71.212762) (xy 128.037906 71.212763) (xy 128.007135 71.23512) (xy 127.888747 71.321134) (xy 127.884326 71.326044) (xy 127.884325 71.326045) (xy 127.77089 71.452028) (xy 127.76096 71.463056) (xy 127.72707 71.521755) (xy 127.671132 71.618643) (xy 127.665473 71.628444) (xy 127.606458 71.810072) (xy 127.586496 72) (xy 127.587186 72.006565) (xy 127.603397 72.160801) (xy 127.606458 72.189928) (xy 127.665473 72.371556) (xy 127.668776 72.377278) (xy 127.668777 72.377279) (xy 127.685406 72.406081) (xy 127.76096 72.536944) (xy 127.765378 72.541851) (xy 127.765379 72.541852) (xy 127.86331 72.650615) (xy 127.888747 72.678866) (xy 127.980282 72.74537) (xy 128.037729 72.787108) (xy 128.043248 72.791118) (xy 128.049276 72.793802) (xy 128.049278 72.793803) (xy 128.211681 72.866109) (xy 128.217712 72.868794) (xy 128.298363 72.885937) (xy 128.398056 72.907128) (xy 128.398061 72.907128) (xy 128.404513 72.9085) (xy 128.595487 72.9085) (xy 128.601939 72.907128) (xy 128.601944 72.907128) (xy 128.701637 72.885937) (xy 128.782288 72.868794) (xy 128.788319 72.866109) (xy 128.950722 72.793803) (xy 128.950724 72.793802) (xy 128.956752 72.791118) (xy 128.962272 72.787108) (xy 129.019718 72.74537) (xy 129.111253 72.678866) (xy 129.189737 72.5917) (xy 129.250182 72.554462) (xy 129.321166 72.555814) (xy 129.38015 72.595328) (xy 129.390515 72.609708) (xy 129.448884 72.704031) (xy 129.454066 72.709204) (xy 129.566816 72.821758) (xy 129.566821 72.821762) (xy 129.571997 72.826929) (xy 129.667726 72.885937) (xy 129.669116 72.886794) (xy 129.716609 72.939566) (xy 129.729 72.994054) (xy 129.729 82.858261) (xy 129.708998 82.926382) (xy 129.692095 82.947356) (xy 129.284856 83.354595) (xy 129.222544 83.388621) (xy 129.195761 83.3915) (xy 128.363858 83.3915) (xy 128.347412 83.390422) (xy 128.32391 83.387328) (xy 128.315722 83.38625) (xy 128.307534 83.387328) (xy 128.275851 83.391499) (xy 128.275842 83.3915) (xy 128.275837 83.3915) (xy 128.156872 83.407162) (xy 128.149243 83.410322) (xy 128.016477 83.465315) (xy 128.016474 83.465317) (xy 128.008847 83.468476) (xy 128.002295 83.473504) (xy 128.002293 83.473505) (xy 128.0012 83.474344) (xy 128.001195 83.474348) (xy 127.91365 83.541523) (xy 127.913643 83.541529) (xy 127.888288 83.560984) (xy 127.888285 83.560987) (xy 127.881735 83.566013) (xy 127.876705 83.572568) (xy 127.86227 83.591379) (xy 127.851403 83.60377) (xy 126.901058 84.554115) (xy 126.838746 84.588141) (xy 126.811963 84.59102) (xy 119.073719 84.59102) (xy 119.005598 84.571018) (xy 118.959105 84.517362) (xy 118.949001 84.447088) (xy 118.978495 84.382508) (xy 118.984624 84.375925) (xy 119.133734 84.226815) (xy 119.146125 84.215948) (xy 119.164937 84.201513) (xy 119.171487 84.196487) (xy 119.195974 84.164575) (xy 119.195978 84.164571) (xy 119.269024 84.069376) (xy 119.330338 83.921351) (xy 119.337763 83.864956) (xy 119.350173 83.770688) (xy 119.351251 83.7625) (xy 119.347078 83.730801) (xy 119.346 83.714356) (xy 119.346 75.475) (xy 123.586496 75.475) (xy 123.587186 75.481565) (xy 123.605139 75.652374) (xy 123.606458 75.664928) (xy 123.665473 75.846556) (xy 123.668776 75.852278) (xy 123.668777 75.852279) (xy 123.69959 75.905649) (xy 123.76096 76.011944) (xy 123.765378 76.016851) (xy 123.765379 76.016852) (xy 123.876165 76.139892) (xy 123.888747 76.153866) (xy 123.962056 76.207128) (xy 124.03104 76.257248) (xy 124.043248 76.266118) (xy 124.049276 76.268802) (xy 124.049278 76.268803) (xy 124.196107 76.334175) (xy 124.217712 76.343794) (xy 124.311112 76.363647) (xy 124.398056 76.382128) (xy 124.398061 76.382128) (xy 124.404513 76.3835) (xy 124.595487 76.3835) (xy 124.601939 76.382128) (xy 124.601944 76.382128) (xy 124.688888 76.363647) (xy 124.782288 76.343794) (xy 124.803893 76.334175) (xy 124.950722 76.268803) (xy 124.950724 76.268802) (xy 124.956752 76.266118) (xy 124.968961 76.257248) (xy 125.094402 76.166109) (xy 125.111253 76.153866) (xy 125.124313 76.139362) (xy 125.137074 76.125189) (xy 125.19752 76.08795) (xy 125.23071 76.0835) (xy 126.71929 76.0835) (xy 126.787411 76.103502) (xy 126.812926 76.125189) (xy 126.825688 76.139362) (xy 126.838747 76.153866) (xy 126.855598 76.166109) (xy 126.98104 76.257248) (xy 126.993248 76.266118) (xy 126.999276 76.268802) (xy 126.999278 76.268803) (xy 127.146107 76.334175) (xy 127.167712 76.343794) (xy 127.261112 76.363647) (xy 127.348056 76.382128) (xy 127.348061 76.382128) (xy 127.354513 76.3835) (xy 127.545487 76.3835) (xy 127.551939 76.382128) (xy 127.551944 76.382128) (xy 127.638888 76.363647) (xy 127.732288 76.343794) (xy 127.753893 76.334175) (xy 127.900722 76.268803) (xy 127.900724 76.268802) (xy 127.906752 76.266118) (xy 127.918961 76.257248) (xy 127.987944 76.207128) (xy 128.061253 76.153866) (xy 128.073835 76.139892) (xy 128.184621 76.016852) (xy 128.184622 76.016851) (xy 128.18904 76.011944) (xy 128.25041 75.905649) (xy 128.281223 75.852279) (xy 128.281224 75.852278) (xy 128.284527 75.846556) (xy 128.343542 75.664928) (xy 128.344862 75.652374) (xy 128.362814 75.481565) (xy 128.363504 75.475) (xy 128.34977 75.344329) (xy 128.344232 75.291635) (xy 128.344232 75.291633) (xy 128.343542 75.285072) (xy 128.284527 75.103444) (xy 128.275473 75.087761) (xy 128.227997 75.005531) (xy 128.18904 74.938056) (xy 128.18373 74.932158) (xy 128.065675 74.801045) (xy 128.065674 74.801044) (xy 128.061253 74.796134) (xy 127.914511 74.689519) (xy 127.912094 74.687763) (xy 127.912093 74.687762) (xy 127.906752 74.683882) (xy 127.900724 74.681198) (xy 127.900722 74.681197) (xy 127.738319 74.608891) (xy 127.738318 74.608891) (xy 127.732288 74.606206) (xy 127.634503 74.585421) (xy 127.551944 74.567872) (xy 127.551939 74.567872) (xy 127.545487 74.5665) (xy 127.354513 74.5665) (xy 127.348061 74.567872) (xy 127.348056 74.567872) (xy 127.265497 74.585421) (xy 127.167712 74.606206) (xy 127.161682 74.608891) (xy 127.161681 74.608891) (xy 126.999278 74.681197) (xy 126.999276 74.681198) (xy 126.993248 74.683882) (xy 126.987907 74.687762) (xy 126.987906 74.687763) (xy 126.913254 74.742001) (xy 126.838747 74.796134) (xy 126.834334 74.801036) (xy 126.834332 74.801037) (xy 126.812926 74.824811) (xy 126.75248 74.86205) (xy 126.71929 74.8665) (xy 125.23071 74.8665) (xy 125.162589 74.846498) (xy 125.137074 74.824811) (xy 125.115668 74.801037) (xy 125.115666 74.801036) (xy 125.111253 74.796134) (xy 125.036746 74.742001) (xy 124.962094 74.687763) (xy 124.962093 74.687762) (xy 124.956752 74.683882) (xy 124.950724 74.681198) (xy 124.950722 74.681197) (xy 124.788319 74.608891) (xy 124.788318 74.608891) (xy 124.782288 74.606206) (xy 124.684503 74.585421) (xy 124.601944 74.567872) (xy 124.601939 74.567872) (xy 124.595487 74.5665) (xy 124.404513 74.5665) (xy 124.398061 74.567872) (xy 124.398056 74.567872) (xy 124.315497 74.585421) (xy 124.217712 74.606206) (xy 124.211682 74.608891) (xy 124.211681 74.608891) (xy 124.049278 74.681197) (xy 124.049276 74.681198) (xy 124.043248 74.683882) (xy 124.037907 74.687762) (xy 124.037906 74.687763) (xy 124.035489 74.689519) (xy 123.888747 74.796134) (xy 123.884326 74.801044) (xy 123.884325 74.801045) (xy 123.766271 74.932158) (xy 123.76096 74.938056) (xy 123.722003 75.005531) (xy 123.674528 75.087761) (xy 123.665473 75.103444) (xy 123.606458 75.285072) (xy 123.605768 75.291633) (xy 123.605768 75.291635) (xy 123.60023 75.344329) (xy 123.586496 75.475) (xy 119.346 75.475) (xy 119.346 72.994111) (xy 119.366002 72.92599) (xy 119.405697 72.886967) (xy 119.435064 72.868794) (xy 119.504031 72.826116) (xy 119.511274 72.818861) (xy 119.513038 72.817895) (xy 119.514941 72.816387) (xy 119.515199 72.816713) (xy 119.573554 72.784781) (xy 119.644375 72.789782) (xy 119.68947 72.818708) (xy 119.692131 72.821364) (xy 119.70354 72.830375) (xy 119.839063 72.913912) (xy 119.852241 72.920056) (xy 120.003766 72.970315) (xy 120.017132 72.973181) (xy 120.10977 72.982672) (xy 120.116185 72.983) (xy 120.190385 72.983) (xy 120.205624 72.978525) (xy 120.206829 72.977135) (xy 120.2085 72.969452) (xy 120.2085 72.964885) (xy 120.7165 72.964885) (xy 120.720975 72.980124) (xy 120.722365 72.981329) (xy 120.730048 72.983) (xy 120.808766 72.983) (xy 120.815282 72.982663) (xy 120.909132 72.972925) (xy 120.922528 72.970032) (xy 121.073953 72.919512) (xy 121.087115 72.913347) (xy 121.222492 72.829574) (xy 121.23389 72.82054) (xy 121.346363 72.707871) (xy 121.355375 72.69646) (xy 121.438912 72.560937) (xy 121.445056 72.547759) (xy 121.495315 72.396234) (xy 121.498181 72.382868) (xy 121.507672 72.29023) (xy 121.508 72.283815) (xy 121.508 72.272115) (xy 121.503525 72.256876) (xy 121.502135 72.255671) (xy 121.494452 72.254) (xy 120.734615 72.254) (xy 120.719376 72.258475) (xy 120.718171 72.259865) (xy 120.7165 72.267548) (xy 120.7165 72.964885) (xy 120.2085 72.964885) (xy 120.2085 71.727885) (xy 120.7165 71.727885) (xy 120.720975 71.743124) (xy 120.722365 71.744329) (xy 120.730048 71.746) (xy 121.489885 71.746) (xy 121.505124 71.741525) (xy 121.506329 71.740135) (xy 121.508 71.732452) (xy 121.508 71.716234) (xy 121.507663 71.709718) (xy 121.497925 71.615868) (xy 121.495032 71.602472) (xy 121.444512 71.451047) (xy 121.438347 71.437885) (xy 121.354574 71.302508) (xy 121.34554 71.29111) (xy 121.232871 71.178637) (xy 121.22146 71.169625) (xy 121.085937 71.086088) (xy 121.072759 71.079944) (xy 120.921234 71.029685) (xy 120.907868 71.026819) (xy 120.81523 71.017328) (xy 120.808815 71.017) (xy 120.734615 71.017) (xy 120.719376 71.021475) (xy 120.718171 71.022865) (xy 120.7165 71.030548) (xy 120.7165 71.727885) (xy 120.2085 71.727885) (xy 120.2085 71.035115) (xy 120.204025 71.019876) (xy 120.202635 71.018671) (xy 120.194952 71.017) (xy 120.116234 71.017) (xy 120.109718 71.017337) (xy 120.015868 71.027075) (xy 120.002472 71.029968) (xy 119.851047 71.080488) (xy 119.837885 71.086653) (xy 119.702508 71.170426) (xy 119.691106 71.179464) (xy 119.689433 71.181139) (xy 119.688007 71.181919) (xy 119.685373 71.184007) (xy 119.685016 71.183556) (xy 119.627151 71.215219) (xy 119.556331 71.210216) (xy 119.511246 71.181299) (xy 119.508185 71.178244) (xy 119.503003 71.173071) (xy 119.405884 71.113205) (xy 119.358391 71.060434) (xy 119.346 71.005946) (xy 119.346 69.986376) (xy 119.366002 69.918255) (xy 119.405697 69.879232) (xy 119.485303 69.82997) (xy 119.491531 69.826116) (xy 119.496704 69.820934) (xy 119.598247 69.719214) (xy 119.66053 69.685135) (xy 119.73135 69.690138) (xy 119.776437 69.719059) (xy 119.879312 69.821754) (xy 119.879317 69.821758) (xy 119.884497 69.826929) (xy 119.890727 69.830769) (xy 119.890728 69.83077) (xy 120.018536 69.909552) (xy 120.03258 69.918209) (xy 120.197691 69.972974) (xy 120.204527 69.973674) (xy 120.20453 69.973675) (xy 120.256026 69.978951) (xy 120.300428 69.9835) (xy 120.899572 69.9835) (xy 120.902818 69.983163) (xy 120.902822 69.983163) (xy 120.996735 69.973419) (xy 120.996739 69.973418) (xy 121.003593 69.972707) (xy 121.010129 69.970526) (xy 121.010131 69.970526) (xy 121.1596 69.920659) (xy 121.168607 69.917654) (xy 121.316531 69.826116) (xy 121.321704 69.820934) (xy 121.434258 69.708184) (xy 121.434262 69.708179) (xy 121.439429 69.703003) (xy 121.445029 69.693919) (xy 121.46077 69.668383) (xy 121.513543 69.62089) (xy 121.568029 69.6085) (xy 121.59429 69.6085) (xy 121.662411 69.628502) (xy 121.687926 69.650189) (xy 121.706752 69.671097) (xy 121.713747 69.678866) (xy 121.722376 69.685135) (xy 121.852153 69.779424) (xy 121.868248 69.791118) (xy 121.874276 69.793802) (xy 121.874278 69.793803) (xy 122.019995 69.85868) (xy 122.042712 69.868794) (xy 122.127395 69.886794) (xy 122.223056 69.907128) (xy 122.223061 69.907128) (xy 122.229513 69.9085) (xy 122.420487 69.9085) (xy 122.426939 69.907128) (xy 122.426944 69.907128) (xy 122.522605 69.886794) (xy 122.607288 69.868794) (xy 122.630005 69.85868) (xy 122.775722 69.793803) (xy 122.775724 69.793802) (xy 122.781752 69.791118) (xy 122.797848 69.779424) (xy 122.903031 69.703003) (xy 122.936253 69.678866) (xy 122.957776 69.654962) (xy 123.059621 69.541852) (xy 123.059622 69.541851) (xy 123.06404 69.536944) (xy 123.135139 69.413798) (xy 123.156223 69.377279) (xy 123.156224 69.377278) (xy 123.159216 69.372095) (xy 123.542001 69.372095) (xy 123.542338 69.378614) (xy 123.552257 69.474206) (xy 123.555149 69.4876) (xy 123.606588 69.641784) (xy 123.612761 69.654962) (xy 123.698063 69.792807) (xy 123.707099 69.804208) (xy 123.821829 69.918739) (xy 123.83324 69.927751) (xy 123.971243 70.012816) (xy 123.984424 70.018963) (xy 124.13871 70.070138) (xy 124.152086 70.073005) (xy 124.246438 70.082672) (xy 124.252854 70.083) (xy 124.477885 70.083) (xy 124.493124 70.078525) (xy 124.494329 70.077135) (xy 124.496 70.069452) (xy 124.496 69.272115) (xy 124.491525 69.256876) (xy 124.490135 69.255671) (xy 124.482452 69.254) (xy 123.560116 69.254) (xy 123.544877 69.258475) (xy 123.543672 69.259865) (xy 123.542001 69.267548) (xy 123.542001 69.372095) (xy 123.159216 69.372095) (xy 123.159527 69.371556) (xy 123.218542 69.189928) (xy 123.222935 69.148136) (xy 123.237814 69.006565) (xy 123.238504 69) (xy 123.227817 68.898315) (xy 123.219232 68.816635) (xy 123.219232 68.816633) (xy 123.218542 68.810072) (xy 123.159527 68.628444) (xy 123.146984 68.606718) (xy 123.067341 68.468774) (xy 123.06404 68.463056) (xy 123.017677 68.411564) (xy 122.940675 68.326045) (xy 122.940674 68.326044) (xy 122.936253 68.321134) (xy 122.815278 68.23324) (xy 122.787094 68.212763) (xy 122.787093 68.212762) (xy 122.781752 68.208882) (xy 122.775724 68.206198) (xy 122.775722 68.206197) (xy 122.613319 68.133891) (xy 122.613318 68.133891) (xy 122.607288 68.131206) (xy 122.50238 68.108907) (xy 122.426944 68.092872) (xy 122.426939 68.092872) (xy 122.420487 68.0915) (xy 122.229513 68.0915) (xy 122.223061 68.092872) (xy 122.223056 68.092872) (xy 122.14762 68.108907) (xy 122.042712 68.131206) (xy 122.036682 68.133891) (xy 122.036681 68.133891) (xy 121.874278 68.206197) (xy 121.874276 68.206198) (xy 121.868248 68.208882) (xy 121.862907 68.212762) (xy 121.862906 68.212763) (xy 121.746969 68.296997) (xy 121.713747 68.321134) (xy 121.709334 68.326036) (xy 121.709332 68.326037) (xy 121.687926 68.349811) (xy 121.62748 68.38705) (xy 121.59429 68.3915) (xy 121.567936 68.3915) (xy 121.499815 68.371498) (xy 121.460792 68.331803) (xy 121.44247 68.302195) (xy 121.442464 68.302188) (xy 121.438616 68.295969) (xy 121.421956 68.279338) (xy 121.320684 68.178242) (xy 121.320679 68.178238) (xy 121.315503 68.173071) (xy 121.305057 68.166632) (xy 121.17365 68.085631) (xy 121.173648 68.08563) (xy 121.16742 68.081791) (xy 121.002309 68.027026) (xy 120.995473 68.026326) (xy 120.99547 68.026325) (xy 120.908796 68.017445) (xy 120.843068 67.990604) (xy 120.802286 67.932489) (xy 120.799398 67.861551) (xy 120.832543 67.803006) (xy 120.996234 67.639315) (xy 121.008625 67.628448) (xy 121.027437 67.614013) (xy 121.033987 67.608987) (xy 121.058474 67.577075) (xy 121.058478 67.577071) (xy 121.131524 67.481876) (xy 121.134686 67.474243) (xy 121.135301 67.473177) (xy 121.178117 67.429034) (xy 121.297803 67.35497) (xy 121.304031 67.351116) (xy 121.32453 67.330581) (xy 121.421758 67.233184) (xy 121.421762 67.233179) (xy 121.426929 67.228003) (xy 121.446614 67.196068) (xy 121.514369 67.08615) (xy 121.51437 67.086148) (xy 121.518209 67.07992) (xy 121.572974 66.914809) (xy 121.573723 66.907506) (xy 121.581405 66.832522) (xy 121.5835 66.812072) (xy 121.5835 66.212928) (xy 121.583163 66.209678) (xy 121.573419 66.115765) (xy 121.573418 66.115761) (xy 121.572707 66.108907) (xy 121.566045 66.088937) (xy 121.519972 65.950841) (xy 121.517654 65.943893) (xy 121.426116 65.795969) (xy 121.409804 65.779685) (xy 121.319214 65.689253) (xy 121.285135 65.62697) (xy 121.290138 65.55615) (xy 121.319059 65.511063) (xy 121.421754 65.408188) (xy 121.421758 65.408183) (xy 121.426929 65.403003) (xy 121.43103 65.396351) (xy 121.465679 65.340139) (xy 121.518451 65.292646) (xy 121.588523 65.281222) ) ) (filled_polygon (layer "F.Cu") (pts (xy 55.047027 83.053502) (xy 55.09352 83.107158) (xy 55.103624 83.177432) (xy 55.07413 83.242012) (xy 55.068001 83.248595) (xy 55.056817 83.259779) (xy 55.041784 83.272619) (xy 55.025393 83.284528) (xy 55.020343 83.290632) (xy 55.020338 83.290637) (xy 54.997207 83.318598) (xy 54.989217 83.327379) (xy 54.261999 84.054596) (xy 54.199687 84.088621) (xy 54.172904 84.0915) (xy 53.787928 84.0915) (xy 53.784682 84.091837) (xy 53.784678 84.091837) (xy 53.690765 84.101581) (xy 53.690761 84.101582) (xy 53.683907 84.102293) (xy 53.677371 84.104474) (xy 53.677369 84.104474) (xy 53.591957 84.13297) (xy 53.518893 84.157346) (xy 53.370969 84.248884) (xy 53.365796 84.254066) (xy 53.253242 84.366816) (xy 53.253238 84.366821) (xy 53.248071 84.371997) (xy 53.244231 84.378227) (xy 53.24423 84.378228) (xy 53.242143 84.381614) (xy 53.240114 84.383441) (xy 53.239693 84.383973) (xy 53.239602 84.383901) (xy 53.189372 84.429108) (xy 53.134882 84.4415) (xy 52.323809 84.4415) (xy 52.255688 84.421498) (xy 52.234791 84.404673) (xy 52.233901 84.403784) (xy 52.128003 84.298071) (xy 52.121772 84.29423) (xy 51.98615 84.210631) (xy 51.986148 84.21063) (xy 51.97992 84.206791) (xy 51.814809 84.152026) (xy 51.807973 84.151326) (xy 51.80797 84.151325) (xy 51.756474 84.146049) (xy 51.712072 84.1415) (xy 51.558594 84.1415) (xy 51.490473 84.121498) (xy 51.44398 84.067842) (xy 51.433876 83.997568) (xy 51.46337 83.932988) (xy 51.469483 83.926421) (xy 52.325502 83.070403) (xy 52.387812 83.036379) (xy 52.414595 83.0335) (xy 54.978906 83.0335) ) ) (filled_polygon (layer "F.Cu") (pts (xy 74.983621 79.759752) (xy 75.030114 79.813408) (xy 75.0415 79.86575) (xy 75.0415 82.199962) (xy 75.021498 82.268083) (xy 74.967842 82.314576) (xy 74.897568 82.32468) (xy 74.875833 82.319555) (xy 74.848889 82.310618) (xy 74.848887 82.310618) (xy 74.842361 82.308453) (xy 74.835525 82.307753) (xy 74.835522 82.307752) (xy 74.78955 82.303042) (xy 74.7379 82.29775) (xy 73.7121 82.29775) (xy 73.708854 82.298087) (xy 73.70885 82.298087) (xy 73.613193 82.308012) (xy 73.613189 82.308013) (xy 73.606335 82.308724) (xy 73.599799 82.310905) (xy 73.599797 82.310905) (xy 73.558509 82.32468) (xy 73.438555 82.3647) (xy 73.288152 82.457772) (xy 73.163195 82.582947) (xy 73.159355 82.589177) (xy 73.159354 82.589178) (xy 73.085803 82.7085) (xy 73.070385 82.733512) (xy 73.052722 82.786766) (xy 73.017146 82.894025) (xy 73.014703 82.901389) (xy 73.014003 82.908225) (xy 73.014002 82.908228) (xy 73.013629 82.911868) (xy 73.004 83.00585) (xy 73.004 83.777379) (xy 72.983998 83.8455) (xy 72.967095 83.866474) (xy 72.528974 84.304595) (xy 72.466662 84.338621) (xy 72.439879 84.3415) (xy 72.372 84.3415) (xy 72.303879 84.321498) (xy 72.257386 84.267842) (xy 72.246 84.2155) (xy 72.246 83.712928) (xy 72.24408 83.694419) (xy 72.235919 83.615765) (xy 72.235918 83.615761) (xy 72.235207 83.608907) (xy 72.231544 83.597926) (xy 72.182472 83.450841) (xy 72.180154 83.443893) (xy 72.088616 83.295969) (xy 72.072488 83.279869) (xy 71.970684 83.178242) (xy 71.970679 83.178238) (xy 71.965503 83.173071) (xy 71.953143 83.165452) (xy 71.918383 83.144025) (xy 71.87089 83.091253) (xy 71.8585 83.036766) (xy 71.8585 81.773105) (xy 71.878502 81.704984) (xy 71.918197 81.665961) (xy 71.964611 81.637239) (xy 71.986848 81.623478) (xy 72.111805 81.498303) (xy 72.115838 81.49176) (xy 72.200775 81.353968) (xy 72.200776 81.353966) (xy 72.204615 81.347738) (xy 72.222163 81.294832) (xy 72.262594 81.236473) (xy 72.328158 81.209236) (xy 72.341756 81.2085) (xy 72.808114 81.2085) (xy 72.824557 81.209578) (xy 72.85625 81.21375) (xy 72.864439 81.212672) (xy 72.896124 81.208501) (xy 72.896134 81.2085) (xy 72.896135 81.2085) (xy 72.960897 81.199974) (xy 73.001906 81.194575) (xy 73.006914 81.193916) (xy 73.006916 81.193915) (xy 73.015101 81.192838) (xy 73.163126 81.131524) (xy 73.171694 81.12495) (xy 73.258322 81.058477) (xy 73.258325 81.058474) (xy 73.283687 81.039013) (xy 73.290237 81.033987) (xy 73.309708 81.008613) (xy 73.320566 80.996233) (xy 73.922567 80.394232) (xy 74.540143 79.776655) (xy 74.602455 79.74263) (xy 74.629238 79.73975) (xy 74.9155 79.73975) ) ) (filled_polygon (layer "F.Cu") (pts (xy 107.0316 82.928991) (xy 107.078093 82.982647) (xy 107.088789 83.021818) (xy 107.105655 83.182285) (xy 107.106458 83.189928) (xy 107.165473 83.371556) (xy 107.168776 83.377278) (xy 107.168777 83.377279) (xy 107.176365 83.390422) (xy 107.26096 83.536944) (xy 107.265378 83.541851) (xy 107.265379 83.541852) (xy 107.384325 83.673955) (xy 107.388747 83.678866) (xy 107.462502 83.732452) (xy 107.525884 83.778502) (xy 107.543248 83.791118) (xy 107.549276 83.793802) (xy 107.549278 83.793803) (xy 107.711681 83.866109) (xy 107.717712 83.868794) (xy 107.724167 83.870166) (xy 107.72417 83.870167) (xy 107.737382 83.872975) (xy 107.799855 83.906703) (xy 107.834177 83.968852) (xy 107.837036 83.99486) (xy 107.836496 84) (xy 107.837186 84.006565) (xy 107.847454 84.104261) (xy 107.834682 84.174099) (xy 107.78618 84.225946) (xy 107.722144 84.243431) (xy 102.171308 84.243431) (xy 102.103187 84.223429) (xy 102.056694 84.169773) (xy 102.04659 84.099499) (xy 102.076084 84.034919) (xy 102.082213 84.028336) (xy 103.164655 82.945894) (xy 103.226967 82.911868) (xy 103.25375 82.908989) (xy 106.963479 82.908989) ) ) (filled_polygon (layer "F.Cu") (pts (xy 110.161032 65.623012) (xy 110.183216 65.633845) (xy 110.227514 65.66115) (xy 110.313848 65.714368) (xy 110.313851 65.714369) (xy 110.32008 65.718209) (xy 110.327031 65.720515) (xy 110.327034 65.720516) (xy 110.330298 65.721599) (xy 110.332091 65.722874) (xy 110.333662 65.723607) (xy 110.333527 65.723896) (xy 110.390591 65.764487) (xy 110.42902 65.814569) (xy 110.429026 65.814575) (xy 110.453513 65.846487) (xy 110.460068 65.851517) (xy 110.478879 65.865952) (xy 110.49127 65.876819) (xy 110.685685 66.071234) (xy 110.696552 66.083625) (xy 110.716013 66.108987) (xy 110.722563 66.114013) (xy 110.747925 66.133474) (xy 110.747928 66.133477) (xy 110.832971 66.198733) (xy 110.843124 66.206524) (xy 110.991149 66.267838) (xy 110.999336 66.268916) (xy 110.999337 66.268916) (xy 111.010542 66.270391) (xy 111.041738 66.274498) (xy 111.110115 66.2835) (xy 111.110118 66.2835) (xy 111.110126 66.283501) (xy 111.141811 66.287672) (xy 111.15 66.28875) (xy 111.181693 66.284578) (xy 111.198136 66.2835) (xy 111.947858 66.2835) (xy 112.015979 66.303502) (xy 112.062472 66.357158) (xy 112.072576 66.427432) (xy 112.067451 66.449167) (xy 112.058227 66.476978) (xy 112.052203 66.495139) (xy 112.051503 66.501975) (xy 112.051502 66.501978) (xy 112.04996 66.51703) (xy 112.0415 66.5996) (xy 112.0415 67.3504) (xy 112.041837 67.353646) (xy 112.041837 67.35365) (xy 112.051662 67.448339) (xy 112.052474 67.456166) (xy 112.054655 67.462702) (xy 112.054655 67.462704) (xy 112.082731 67.546857) (xy 112.10845 67.623946) (xy 112.201522 67.774348) (xy 112.206704 67.779521) (xy 112.227865 67.800645) (xy 112.326697 67.899305) (xy 112.331235 67.902102) (xy 112.371824 67.959353) (xy 112.375054 68.030276) (xy 112.339428 68.091687) (xy 112.330932 68.099062) (xy 112.320793 68.107098) (xy 112.206261 68.221829) (xy 112.197249 68.23324) (xy 112.112184 68.371243) (xy 112.106037 68.384424) (xy 112.054862 68.53871) (xy 112.051995 68.552086) (xy 112.042328 68.646438) (xy 112.042 68.652855) (xy 112.042 68.752885) (xy 112.046475 68.768124) (xy 112.047865 68.769329) (xy 112.055548 68.771) (xy 113.378 68.771) (xy 113.446121 68.791002) (xy 113.492614 68.844658) (xy 113.504 68.897) (xy 113.504 70.089884) (xy 113.508475 70.105123) (xy 113.509865 70.106328) (xy 113.517548 70.107999) (xy 113.5905 70.107999) (xy 113.658621 70.128001) (xy 113.705114 70.181657) (xy 113.7165 70.233999) (xy 113.7165 71.370761) (xy 113.696498 71.438882) (xy 113.679595 71.459856) (xy 113.650307 71.489144) (xy 113.587995 71.52317) (xy 113.5286 71.521755) (xy 113.474691 71.50731) (xy 113.474685 71.507309) (xy 113.469371 71.505885) (xy 113.25 71.486693) (xy 113.030629 71.505885) (xy 112.817924 71.56288) (xy 112.73046 71.603665) (xy 112.623334 71.653618) (xy 112.623329 71.653621) (xy 112.618347 71.655944) (xy 112.61384 71.6591) (xy 112.613838 71.659101) (xy 112.442473 71.779092) (xy 112.44247 71.779094) (xy 112.437962 71.782251) (xy 112.282251 71.937962) (xy 112.279094 71.94247) (xy 112.279092 71.942473) (xy 112.162498 72.108987) (xy 112.155944 72.118347) (xy 112.153621 72.123329) (xy 112.153618 72.123334) (xy 112.12522 72.184235) (xy 112.06288 72.317924) (xy 112.005885 72.530629) (xy 111.986693 72.75) (xy 112.005885 72.969371) (xy 112.06288 73.182076) (xy 112.102005 73.265981) (xy 112.153618 73.376666) (xy 112.153621 73.376671) (xy 112.155944 73.381653) (xy 112.1591 73.38616) (xy 112.159101 73.386162) (xy 112.262051 73.533189) (xy 112.282251 73.562038) (xy 112.437962 73.717749) (xy 112.442471 73.720906) (xy 112.442473 73.720908) (xy 112.502431 73.762891) (xy 112.618346 73.844056) (xy 112.817924 73.93712) (xy 113.030629 73.994115) (xy 113.25 74.013307) (xy 113.469371 73.994115) (xy 113.682076 73.93712) (xy 113.881654 73.844056) (xy 113.997569 73.762891) (xy 114.057527 73.720908) (xy 114.057529 73.720906) (xy 114.062038 73.717749) (xy 114.217749 73.562038) (xy 114.23795 73.533189) (xy 114.340899 73.386162) (xy 114.3409 73.38616) (xy 114.344056 73.381653) (xy 114.346379 73.376671) (xy 114.346382 73.376666) (xy 114.397995 73.265981) (xy 114.43712 73.182076) (xy 114.494115 72.969371) (xy 114.513307 72.75) (xy 114.494115 72.530629) (xy 114.492691 72.525315) (xy 114.49269 72.525309) (xy 114.478245 72.4714) (xy 114.479934 72.400424) (xy 114.510856 72.349693) (xy 114.721234 72.139315) (xy 114.733625 72.128448) (xy 114.752437 72.114013) (xy 114.758987 72.108987) (xy 114.783474 72.077075) (xy 114.783478 72.077071) (xy 114.856524 71.981876) (xy 114.917838 71.833851) (xy 114.938751 71.675) (xy 114.934578 71.643301) (xy 114.9335 71.626856) (xy 114.9335 70.1095) (xy 114.953502 70.041379) (xy 115.007158 69.994886) (xy 115.0595 69.9835) (xy 115.587072 69.9835) (xy 115.590318 69.983163) (xy 115.590322 69.983163) (xy 115.684235 69.973419) (xy 115.684239 69.973418) (xy 115.691093 69.972707) (xy 115.697629 69.970526) (xy 115.697631 69.970526) (xy 115.8471 69.920659) (xy 115.856107 69.917654) (xy 116.004031 69.826116) (xy 116.009204 69.820934) (xy 116.110747 69.719214) (xy 116.17303 69.685135) (xy 116.24385 69.690138) (xy 116.288937 69.719059) (xy 116.391812 69.821754) (xy 116.391817 69.821758) (xy 116.396997 69.826929) (xy 116.403227 69.830769) (xy 116.403228 69.83077) (xy 116.531036 69.909552) (xy 116.54508 69.918209) (xy 116.710191 69.972974) (xy 116.717027 69.973674) (xy 116.71703 69.973675) (xy 116.768526 69.978951) (xy 116.812928 69.9835) (xy 117.0655 69.9835) (xy 117.133621 70.003502) (xy 117.180114 70.057158) (xy 117.1915 70.1095) (xy 117.1915 72.576864) (xy 117.190422 72.593307) (xy 117.18625 72.625) (xy 117.187328 72.633189) (xy 117.18829 72.6405) (xy 117.1915 72.66488) (xy 117.1915 72.664885) (xy 117.198521 72.718209) (xy 117.200461 72.732947) (xy 117.200461 72.732949) (xy 117.20303 72.75246) (xy 117.207162 72.783851) (xy 117.268476 72.931876) (xy 117.273503 72.938427) (xy 117.273504 72.938429) (xy 117.34152 73.027069) (xy 117.341526 73.027075) (xy 117.366013 73.058987) (xy 117.372568 73.064017) (xy 117.391379 73.078452) (xy 117.40377 73.089319) (xy 117.692575 73.378124) (xy 117.726601 73.440436) (xy 117.72948 73.467219) (xy 117.72948 74.499978) (xy 117.709478 74.568099) (xy 117.655822 74.614592) (xy 117.585548 74.624696) (xy 117.552232 74.615085) (xy 117.538323 74.608892) (xy 117.538315 74.608889) (xy 117.532288 74.606206) (xy 117.434503 74.585421) (xy 117.351944 74.567872) (xy 117.351939 74.567872) (xy 117.345487 74.5665) (xy 117.154513 74.5665) (xy 117.148061 74.567872) (xy 117.148056 74.567872) (xy 117.065497 74.585421) (xy 116.967712 74.606206) (xy 116.961682 74.608891) (xy 116.961681 74.608891) (xy 116.799278 74.681197) (xy 116.799276 74.681198) (xy 116.793248 74.683882) (xy 116.787907 74.687762) (xy 116.787906 74.687763) (xy 116.713254 74.742001) (xy 116.638747 74.796134) (xy 116.634334 74.801036) (xy 116.634332 74.801037) (xy 116.612926 74.824811) (xy 116.55248 74.86205) (xy 116.51929 74.8665) (xy 112.98071 74.8665) (xy 112.912589 74.846498) (xy 112.887074 74.824811) (xy 112.865668 74.801037) (xy 112.865666 74.801036) (xy 112.861253 74.796134) (xy 112.786746 74.742001) (xy 112.712094 74.687763) (xy 112.712093 74.687762) (xy 112.706752 74.683882) (xy 112.700724 74.681198) (xy 112.700722 74.681197) (xy 112.538319 74.608891) (xy 112.538318 74.608891) (xy 112.532288 74.606206) (xy 112.434503 74.585421) (xy 112.351944 74.567872) (xy 112.351939 74.567872) (xy 112.345487 74.5665) (xy 112.154513 74.5665) (xy 112.148061 74.567872) (xy 112.148056 74.567872) (xy 112.065497 74.585421) (xy 111.967712 74.606206) (xy 111.961682 74.608891) (xy 111.961681 74.608891) (xy 111.799278 74.681197) (xy 111.799276 74.681198) (xy 111.793248 74.683882) (xy 111.787907 74.687762) (xy 111.787906 74.687763) (xy 111.785489 74.689519) (xy 111.638747 74.796134) (xy 111.634326 74.801044) (xy 111.634325 74.801045) (xy 111.516271 74.932158) (xy 111.51096 74.938056) (xy 111.472003 75.005531) (xy 111.424528 75.087761) (xy 111.415473 75.103444) (xy 111.356458 75.285072) (xy 111.355768 75.291633) (xy 111.355768 75.291635) (xy 111.35023 75.344329) (xy 111.336496 75.475) (xy 111.337186 75.481565) (xy 111.355139 75.652374) (xy 111.356458 75.664928) (xy 111.415473 75.846556) (xy 111.418776 75.852278) (xy 111.418777 75.852279) (xy 111.44959 75.905649) (xy 111.51096 76.011944) (xy 111.515378 76.016851) (xy 111.515379 76.016852) (xy 111.626165 76.139892) (xy 111.638747 76.153866) (xy 111.712056 76.207128) (xy 111.78104 76.257248) (xy 111.793248 76.266118) (xy 111.799276 76.268802) (xy 111.799278 76.268803) (xy 111.946107 76.334175) (xy 111.967712 76.343794) (xy 112.061112 76.363647) (xy 112.148056 76.382128) (xy 112.148061 76.382128) (xy 112.154513 76.3835) (xy 112.345487 76.3835) (xy 112.351939 76.382128) (xy 112.351944 76.382128) (xy 112.438888 76.363647) (xy 112.532288 76.343794) (xy 112.553893 76.334175) (xy 112.700722 76.268803) (xy 112.700724 76.268802) (xy 112.706752 76.266118) (xy 112.718961 76.257248) (xy 112.844402 76.166109) (xy 112.861253 76.153866) (xy 112.874313 76.139362) (xy 112.887074 76.125189) (xy 112.94752 76.08795) (xy 112.98071 76.0835) (xy 116.51929 76.0835) (xy 116.587411 76.103502) (xy 116.612926 76.125189) (xy 116.625688 76.139362) (xy 116.638747 76.153866) (xy 116.655598 76.166109) (xy 116.78104 76.257248) (xy 116.793248 76.266118) (xy 116.799276 76.268802) (xy 116.799278 76.268803) (xy 116.946107 76.334175) (xy 116.967712 76.343794) (xy 117.061112 76.363647) (xy 117.148056 76.382128) (xy 117.148061 76.382128) (xy 117.154513 76.3835) (xy 117.345487 76.3835) (xy 117.351939 76.382128) (xy 117.351944 76.382128) (xy 117.438888 76.363647) (xy 117.532288 76.343794) (xy 117.538315 76.341111) (xy 117.538323 76.341108) (xy 117.552232 76.334915) (xy 117.622599 76.325481) (xy 117.686896 76.355588) (xy 117.724709 76.415677) (xy 117.72948 76.450022) (xy 117.72948 83.292775) (xy 117.709478 83.360896) (xy 117.692575 83.38187) (xy 117.31937 83.755075) (xy 117.257058 83.789101) (xy 117.230275 83.79198) (xy 115.049798 83.79198) (xy 114.981677 83.771978) (xy 114.960703 83.755075) (xy 108.359883 77.154255) (xy 108.349016 77.141864) (xy 108.334581 77.123052) (xy 108.329555 77.116502) (xy 108.297643 77.092015) (xy 108.29764 77.092012) (xy 108.216326 77.029617) (xy 108.208997 77.023993) (xy 108.208995 77.023992) (xy 108.202444 77.018965) (xy 108.054419 76.957651) (xy 108.046232 76.956573) (xy 108.046231 76.956573) (xy 108.035026 76.955098) (xy 107.988296 76.948946) (xy 107.935453 76.941989) (xy 107.93545 76.941989) (xy 107.935442 76.941988) (xy 107.903757 76.937817) (xy 107.895568 76.936739) (xy 107.863875 76.940911) (xy 107.847432 76.941989) (xy 105.261097 76.941989) (xy 105.192976 76.921987) (xy 105.146483 76.868331) (xy 105.136175 76.799544) (xy 105.137672 76.788172) (xy 105.137672 76.78817) (xy 105.13875 76.779982) (xy 105.134578 76.748289) (xy 105.1335 76.731846) (xy 105.1335 70.291739) (xy 105.153502 70.223618) (xy 105.170405 70.202644) (xy 105.352644 70.020405) (xy 105.414956 69.986379) (xy 105.441739 69.9835) (xy 105.812072 69.9835) (xy 105.815318 69.983163) (xy 105.815322 69.983163) (xy 105.909235 69.973419) (xy 105.909239 69.973418) (xy 105.916093 69.972707) (xy 105.922629 69.970526) (xy 105.922631 69.970526) (xy 106.0721 69.920659) (xy 106.081107 69.917654) (xy 106.229031 69.826116) (xy 106.234485 69.820653) (xy 106.258281 69.796815) (xy 106.310791 69.744213) (xy 106.373071 69.710134) (xy 106.443892 69.715137) (xy 106.488981 69.744058) (xy 106.566816 69.821758) (xy 106.566821 69.821762) (xy 106.571997 69.826929) (xy 106.578228 69.83077) (xy 106.578231 69.830772) (xy 106.619117 69.855975) (xy 106.66661 69.908747) (xy 106.679 69.963234) (xy 106.679 70.83683) (xy 106.658998 70.904951) (xy 106.619303 70.943974) (xy 106.570969 70.973884) (xy 106.565796 70.979066) (xy 106.453242 71.091816) (xy 106.453238 71.091821) (xy 106.448071 71.096997) (xy 106.444231 71.103227) (xy 106.44423 71.103228) (xy 106.362934 71.235115) (xy 106.356791 71.24508) (xy 106.302026 71.410191) (xy 106.301326 71.417027) (xy 106.301325 71.41703) (xy 106.29661 71.463056) (xy 106.2915 71.512928) (xy 106.2915 72.087072) (xy 106.291837 72.090318) (xy 106.291837 72.090322) (xy 106.30144 72.182868) (xy 106.302293 72.191093) (xy 106.304474 72.197629) (xy 106.304474 72.197631) (xy 106.331827 72.279617) (xy 106.357346 72.356107) (xy 106.448884 72.504031) (xy 106.454066 72.509204) (xy 106.566816 72.621758) (xy 106.566821 72.621762) (xy 106.571997 72.626929) (xy 106.578227 72.630769) (xy 106.578228 72.63077) (xy 106.590514 72.638343) (xy 106.646983 72.673151) (xy 106.694475 72.725922) (xy 106.705899 72.795993) (xy 106.674502 72.86472) (xy 106.611359 72.934848) (xy 106.58596 72.963056) (xy 106.490473 73.128444) (xy 106.431458 73.310072) (xy 106.430768 73.316633) (xy 106.430768 73.316635) (xy 106.41682 73.449348) (xy 106.411496 73.5) (xy 106.412186 73.506565) (xy 106.429245 73.668868) (xy 106.431458 73.689928) (xy 106.490473 73.871556) (xy 106.493776 73.877278) (xy 106.493777 73.877279) (xy 106.522525 73.927072) (xy 106.58596 74.036944) (xy 106.590378 74.041851) (xy 106.590379 74.041852) (xy 106.690864 74.153452) (xy 106.713747 74.178866) (xy 106.76947 74.219351) (xy 106.850884 74.278502) (xy 106.868248 74.291118) (xy 106.874276 74.293802) (xy 106.874278 74.293803) (xy 107.018223 74.357891) (xy 107.042712 74.368794) (xy 107.136113 74.388647) (xy 107.223056 74.407128) (xy 107.223061 74.407128) (xy 107.229513 74.4085) (xy 107.420487 74.4085) (xy 107.426939 74.407128) (xy 107.426944 74.407128) (xy 107.513887 74.388647) (xy 107.607288 74.368794) (xy 107.631777 74.357891) (xy 107.775722 74.293803) (xy 107.775724 74.293802) (xy 107.781752 74.291118) (xy 107.799117 74.278502) (xy 107.88053 74.219351) (xy 107.936253 74.178866) (xy 107.959136 74.153452) (xy 108.059621 74.041852) (xy 108.059622 74.041851) (xy 108.06404 74.036944) (xy 108.127475 73.927072) (xy 108.156223 73.877279) (xy 108.156224 73.877278) (xy 108.159527 73.871556) (xy 108.218542 73.689928) (xy 108.220756 73.668868) (xy 108.237814 73.506565) (xy 108.238504 73.5) (xy 108.23318 73.449348) (xy 108.219232 73.316635) (xy 108.219232 73.316633) (xy 108.218542 73.310072) (xy 108.159527 73.128444) (xy 108.06404 72.963056) (xy 107.984445 72.874656) (xy 107.953728 72.810649) (xy 107.962493 72.740196) (xy 108.011777 72.683205) (xy 108.104031 72.626116) (xy 108.111274 72.618861) (xy 108.113038 72.617895) (xy 108.114941 72.616387) (xy 108.115199 72.616713) (xy 108.173554 72.584781) (xy 108.244375 72.589782) (xy 108.28947 72.618708) (xy 108.292131 72.621364) (xy 108.30354 72.630375) (xy 108.439063 72.713912) (xy 108.452241 72.720056) (xy 108.603766 72.770315) (xy 108.617132 72.773181) (xy 108.70977 72.782672) (xy 108.716185 72.783) (xy 108.790385 72.783) (xy 108.805624 72.778525) (xy 108.806829 72.777135) (xy 108.8085 72.769452) (xy 108.8085 72.764885) (xy 109.3165 72.764885) (xy 109.320975 72.780124) (xy 109.322365 72.781329) (xy 109.330048 72.783) (xy 109.408766 72.783) (xy 109.415282 72.782663) (xy 109.509132 72.772925) (xy 109.522528 72.770032) (xy 109.673953 72.719512) (xy 109.687115 72.713347) (xy 109.822492 72.629574) (xy 109.83389 72.62054) (xy 109.946363 72.507871) (xy 109.955375 72.49646) (xy 110.038912 72.360937) (xy 110.045056 72.347759) (xy 110.095315 72.196234) (xy 110.098181 72.182868) (xy 110.107672 72.09023) (xy 110.108 72.083815) (xy 110.108 72.072115) (xy 110.103525 72.056876) (xy 110.102135 72.055671) (xy 110.094452 72.054) (xy 109.334615 72.054) (xy 109.319376 72.058475) (xy 109.318171 72.059865) (xy 109.3165 72.067548) (xy 109.3165 72.764885) (xy 108.8085 72.764885) (xy 108.8085 71.527885) (xy 109.3165 71.527885) (xy 109.320975 71.543124) (xy 109.322365 71.544329) (xy 109.330048 71.546) (xy 110.089885 71.546) (xy 110.105124 71.541525) (xy 110.106329 71.540135) (xy 110.108 71.532452) (xy 110.108 71.516234) (xy 110.107663 71.509718) (xy 110.097925 71.415868) (xy 110.095032 71.402472) (xy 110.044512 71.251047) (xy 110.038347 71.237885) (xy 109.954574 71.102508) (xy 109.94554 71.09111) (xy 109.832871 70.978637) (xy 109.82146 70.969625) (xy 109.685937 70.886088) (xy 109.672759 70.879944) (xy 109.521234 70.829685) (xy 109.507868 70.826819) (xy 109.41523 70.817328) (xy 109.408815 70.817) (xy 109.334615 70.817) (xy 109.319376 70.821475) (xy 109.318171 70.822865) (xy 109.3165 70.830548) (xy 109.3165 71.527885) (xy 108.8085 71.527885) (xy 108.8085 70.835115) (xy 108.804025 70.819876) (xy 108.802635 70.818671) (xy 108.794952 70.817) (xy 108.716234 70.817) (xy 108.709718 70.817337) (xy 108.615868 70.827075) (xy 108.602472 70.829968) (xy 108.451047 70.880488) (xy 108.437885 70.886653) (xy 108.302508 70.970426) (xy 108.291106 70.979464) (xy 108.289433 70.981139) (xy 108.288007 70.981919) (xy 108.285373 70.984007) (xy 108.285016 70.983556) (xy 108.227151 71.015219) (xy 108.156331 71.010216) (xy 108.111246 70.981299) (xy 108.108185 70.978244) (xy 108.103003 70.973071) (xy 108.073315 70.954771) (xy 107.955884 70.882385) (xy 107.908391 70.829612) (xy 107.896 70.775125) (xy 107.896 69.96317) (xy 107.916002 69.895049) (xy 107.955697 69.856026) (xy 107.95578 69.855975) (xy 108.004031 69.826116) (xy 108.009204 69.820934) (xy 108.110747 69.719214) (xy 108.17303 69.685135) (xy 108.24385 69.690138) (xy 108.288937 69.719059) (xy 108.391812 69.821754) (xy 108.391817 69.821758) (xy 108.396997 69.826929) (xy 108.403227 69.830769) (xy 108.403228 69.83077) (xy 108.531036 69.909552) (xy 108.54508 69.918209) (xy 108.710191 69.972974) (xy 108.717027 69.973674) (xy 108.71703 69.973675) (xy 108.768526 69.978951) (xy 108.812928 69.9835) (xy 109.412072 69.9835) (xy 109.415318 69.983163) (xy 109.415322 69.983163) (xy 109.509235 69.973419) (xy 109.509239 69.973418) (xy 109.516093 69.972707) (xy 109.522629 69.970526) (xy 109.522631 69.970526) (xy 109.6721 69.920659) (xy 109.681107 69.917654) (xy 109.829031 69.826116) (xy 109.834485 69.820653) (xy 109.946761 69.70818) (xy 109.951929 69.703003) (xy 109.955768 69.696775) (xy 109.957199 69.694963) (xy 110.015115 69.653899) (xy 110.086038 69.650667) (xy 110.1382 69.678259) (xy 110.138747 69.678866) (xy 110.144089 69.682747) (xy 110.144091 69.682749) (xy 110.279865 69.781395) (xy 110.293248 69.791118) (xy 110.299276 69.793802) (xy 110.299278 69.793803) (xy 110.444995 69.85868) (xy 110.467712 69.868794) (xy 110.552395 69.886794) (xy 110.648056 69.907128) (xy 110.648061 69.907128) (xy 110.654513 69.9085) (xy 110.845487 69.9085) (xy 110.851939 69.907128) (xy 110.851944 69.907128) (xy 110.947605 69.886794) (xy 111.032288 69.868794) (xy 111.055005 69.85868) (xy 111.200722 69.793803) (xy 111.200724 69.793802) (xy 111.206752 69.791118) (xy 111.222848 69.779424) (xy 111.328031 69.703003) (xy 111.361253 69.678866) (xy 111.382776 69.654962) (xy 111.484621 69.541852) (xy 111.484622 69.541851) (xy 111.48904 69.536944) (xy 111.560139 69.413798) (xy 111.569782 69.397095) (xy 112.042001 69.397095) (xy 112.042338 69.403614) (xy 112.052257 69.499206) (xy 112.055149 69.5126) (xy 112.106588 69.666784) (xy 112.112761 69.679962) (xy 112.198063 69.817807) (xy 112.207099 69.829208) (xy 112.321829 69.943739) (xy 112.33324 69.952751) (xy 112.471243 70.037816) (xy 112.484424 70.043963) (xy 112.63871 70.095138) (xy 112.652086 70.098005) (xy 112.746438 70.107672) (xy 112.752854 70.108) (xy 112.977885 70.108) (xy 112.993124 70.103525) (xy 112.994329 70.102135) (xy 112.996 70.094452) (xy 112.996 69.297115) (xy 112.991525 69.281876) (xy 112.990135 69.280671) (xy 112.982452 69.279) (xy 112.060116 69.279) (xy 112.044877 69.283475) (xy 112.043672 69.284865) (xy 112.042001 69.292548) (xy 112.042001 69.397095) (xy 111.569782 69.397095) (xy 111.581223 69.377279) (xy 111.581224 69.377278) (xy 111.584527 69.371556) (xy 111.643542 69.189928) (xy 111.647935 69.148136) (xy 111.662814 69.006565) (xy 111.663504 69) (xy 111.652817 68.898315) (xy 111.644232 68.816635) (xy 111.644232 68.816633) (xy 111.643542 68.810072) (xy 111.584527 68.628444) (xy 111.571984 68.606718) (xy 111.492341 68.468774) (xy 111.48904 68.463056) (xy 111.442677 68.411564) (xy 111.365675 68.326045) (xy 111.365674 68.326044) (xy 111.361253 68.321134) (xy 111.240278 68.23324) (xy 111.212094 68.212763) (xy 111.212093 68.212762) (xy 111.206752 68.208882) (xy 111.200724 68.206198) (xy 111.200722 68.206197) (xy 111.038319 68.133891) (xy 111.038318 68.133891) (xy 111.032288 68.131206) (xy 110.92738 68.108907) (xy 110.851944 68.092872) (xy 110.851939 68.092872) (xy 110.845487 68.0915) (xy 110.654513 68.0915) (xy 110.648061 68.092872) (xy 110.648056 68.092872) (xy 110.57262 68.108907) (xy 110.467712 68.131206) (xy 110.461682 68.133891) (xy 110.461681 68.133891) (xy 110.299278 68.206197) (xy 110.299276 68.206198) (xy 110.293248 68.208882) (xy 110.287907 68.212762) (xy 110.287906 68.212763) (xy 110.171969 68.296997) (xy 110.138747 68.321134) (xy 110.13838 68.321542) (xy 110.076395 68.351287) (xy 110.005942 68.342521) (xy 109.957351 68.305199) (xy 109.954964 68.302188) (xy 109.951116 68.295969) (xy 109.934456 68.279338) (xy 109.833184 68.178242) (xy 109.833179 68.178238) (xy 109.828003 68.173071) (xy 109.817557 68.166632) (xy 109.68615 68.085631) (xy 109.686148 68.08563) (xy 109.67992 68.081791) (xy 109.514809 68.027026) (xy 109.507973 68.026326) (xy 109.50797 68.026325) (xy 109.421296 68.017445) (xy 109.355568 67.990604) (xy 109.314786 67.932489) (xy 109.311898 67.861551) (xy 109.345043 67.803006) (xy 109.402644 67.745405) (xy 109.464956 67.711379) (xy 109.491739 67.7085) (xy 109.537072 67.7085) (xy 109.540318 67.708163) (xy 109.540322 67.708163) (xy 109.634235 67.698419) (xy 109.634239 67.698418) (xy 109.641093 67.697707) (xy 109.647629 67.695526) (xy 109.647631 67.695526) (xy 109.799159 67.644972) (xy 109.806107 67.642654) (xy 109.954031 67.551116) (xy 109.969455 67.535665) (xy 110.071758 67.433184) (xy 110.071762 67.433179) (xy 110.076929 67.428003) (xy 110.08077 67.421772) (xy 110.164369 67.28615) (xy 110.16437 67.286148) (xy 110.168209 67.27992) (xy 110.222974 67.114809) (xy 110.225387 67.091263) (xy 110.230615 67.04023) (xy 110.2335 67.012072) (xy 110.2335 66.412928) (xy 110.232765 66.40584) (xy 110.223419 66.315765) (xy 110.223418 66.315761) (xy 110.222707 66.308907) (xy 110.219736 66.3) (xy 110.169972 66.150841) (xy 110.167654 66.143893) (xy 110.076116 65.995969) (xy 110.04179 65.961703) (xy 109.969214 65.889253) (xy 109.935135 65.82697) (xy 109.940138 65.75615) (xy 109.969059 65.711062) (xy 110.02793 65.652088) (xy 110.090212 65.618009) ) ) (filled_polygon (layer "F.Cu") (pts (xy 61.633621 77.378502) (xy 61.680114 77.432158) (xy 61.6915 77.4845) (xy 61.6915 78.6405) (xy 61.671498 78.708621) (xy 61.617842 78.755114) (xy 61.5655 78.7665) (xy 61.333498 78.7665) (xy 61.33105 78.766693) (xy 61.331042 78.766693) (xy 61.302579 78.768933) (xy 61.302574 78.768934) (xy 61.296169 78.769438) (xy 61.219019 78.791852) (xy 61.144012 78.813643) (xy 61.14401 78.813644) (xy 61.136399 78.815855) (xy 61.129572 78.819892) (xy 61.129573 78.819892) (xy 61.00002 78.896509) (xy 61.000017 78.896511) (xy 60.993193 78.900547) (xy 60.875547 79.018193) (xy 60.871511 79.025017) (xy 60.871509 79.02502) (xy 60.827655 79.099174) (xy 60.790855 79.161399) (xy 60.788644 79.16901) (xy 60.788643 79.169012) (xy 60.784359 79.183757) (xy 60.744438 79.321169) (xy 60.743934 79.327574) (xy 60.743933 79.327579) (xy 60.741693 79.356042) (xy 60.7415 79.358498) (xy 60.7415 80.666502) (xy 60.741693 80.66895) (xy 60.741693 80.668958) (xy 60.742237 80.67586) (xy 60.744438 80.703831) (xy 60.760717 80.759865) (xy 60.788066 80.854) (xy 60.790855 80.863601) (xy 60.803168 80.884421) (xy 60.871509 80.99998) (xy 60.871511 80.999983) (xy 60.875547 81.006807) (xy 60.904595 81.035855) (xy 60.938621 81.098167) (xy 60.9415 81.12495) (xy 60.9415 81.158261) (xy 60.921498 81.226382) (xy 60.904595 81.247356) (xy 60.797356 81.354595) (xy 60.735044 81.388621) (xy 60.708261 81.3915) (xy 59.9746 81.3915) (xy 59.971354 81.391837) (xy 59.97135 81.391837) (xy 59.875692 81.401762) (xy 59.875688 81.401763) (xy 59.868834 81.402474) (xy 59.862298 81.404655) (xy 59.862296 81.404655) (xy 59.783925 81.430802) (xy 59.701054 81.45845) (xy 59.550652 81.551522) (xy 59.425695 81.676697) (xy 59.421855 81.682927) (xy 59.421854 81.682928) (xy 59.34956 81.800211) (xy 59.332885 81.827262) (xy 59.277203 81.995139) (xy 59.276503 82.001975) (xy 59.276502 82.001978) (xy 59.274795 82.018642) (xy 59.2665 82.0996) (xy 59.2665 82.797905) (xy 59.246498 82.866026) (xy 59.229595 82.887) (xy 59.037 83.079595) (xy 58.974688 83.113621) (xy 58.947905 83.1165) (xy 57.411347 83.1165) (xy 57.343226 83.096498) (xy 57.296733 83.042842) (xy 57.286629 82.972568) (xy 57.302228 82.9275) (xy 57.331223 82.877279) (xy 57.331224 82.877278) (xy 57.334527 82.871556) (xy 57.393542 82.689928) (xy 57.394909 82.676929) (xy 57.411538 82.518708) (xy 57.434912 82.457818) (xy 57.436164 82.456095) (xy 57.441586 82.450321) (xy 57.445402 82.443381) (xy 57.445405 82.443376) (xy 57.451348 82.432566) (xy 57.462199 82.416047) (xy 57.467482 82.409236) (xy 57.474614 82.400041) (xy 57.477759 82.392772) (xy 57.477762 82.392768) (xy 57.492174 82.359463) (xy 57.497391 82.348813) (xy 57.518695 82.31006) (xy 57.521772 82.298078) (xy 57.523733 82.290438) (xy 57.530137 82.271734) (xy 57.535033 82.26042) (xy 57.535033 82.260419) (xy 57.538181 82.253145) (xy 57.53942 82.245322) (xy 57.539423 82.245312) (xy 57.545099 82.209476) (xy 57.547505 82.197856) (xy 57.556528 82.162711) (xy 57.556528 82.16271) (xy 57.5585 82.15503) (xy 57.5585 82.134776) (xy 57.560051 82.115065) (xy 57.56198 82.102886) (xy 57.56322 82.095057) (xy 57.559059 82.051038) (xy 57.5585 82.039181) (xy 57.5585 80.640849) (xy 57.578502 80.572728) (xy 57.612228 80.537637) (xy 57.66081 80.50362) (xy 57.707527 80.470908) (xy 57.70753 80.470906) (xy 57.712038 80.467749) (xy 57.867749 80.312038) (xy 57.871035 80.307346) (xy 57.990899 80.136162) (xy 57.9909 80.13616) (xy 57.994056 80.131653) (xy 57.996379 80.126671) (xy 57.996382 80.126666) (xy 58.046056 80.020139) (xy 58.08712 79.932076) (xy 58.144115 79.719371) (xy 58.163307 79.5) (xy 58.144115 79.280629) (xy 58.08712 79.067924) (xy 58.023773 78.932076) (xy 57.996382 78.873334) (xy 57.996379 78.873329) (xy 57.994056 78.868347) (xy 57.986903 78.858131) (xy 57.870908 78.692473) (xy 57.870906 78.69247) (xy 57.867749 78.687962) (xy 57.712038 78.532251) (xy 57.705165 78.527438) (xy 57.598085 78.45246) (xy 57.531654 78.405944) (xy 57.332076 78.31288) (xy 57.119371 78.255885) (xy 56.9 78.236693) (xy 56.680629 78.255885) (xy 56.467924 78.31288) (xy 56.374562 78.356415) (xy 56.273334 78.403618) (xy 56.273329 78.403621) (xy 56.268347 78.405944) (xy 56.26384 78.4091) (xy 56.263838 78.409101) (xy 56.092473 78.529092) (xy 56.09247 78.529094) (xy 56.087962 78.532251) (xy 55.932251 78.687962) (xy 55.929094 78.69247) (xy 55.929092 78.692473) (xy 55.813097 78.858131) (xy 55.805944 78.868347) (xy 55.803621 78.873329) (xy 55.803618 78.873334) (xy 55.776227 78.932076) (xy 55.71288 79.067924) (xy 55.655885 79.280629) (xy 55.636693 79.5) (xy 55.655885 79.719371) (xy 55.71288 79.932076) (xy 55.753944 80.020139) (xy 55.803618 80.126666) (xy 55.803621 80.126671) (xy 55.805944 80.131653) (xy 55.8091 80.13616) (xy 55.809101 80.136162) (xy 55.928966 80.307346) (xy 55.932251 80.312038) (xy 56.087962 80.467749) (xy 56.092471 80.470906) (xy 56.092473 80.470908) (xy 56.237771 80.572647) (xy 56.282099 80.628104) (xy 56.2915 80.67586) (xy 56.2915 81.516528) (xy 56.271498 81.584649) (xy 56.216748 81.631635) (xy 56.049281 81.706195) (xy 56.049274 81.706199) (xy 56.043248 81.708882) (xy 56.037907 81.712762) (xy 56.037906 81.712763) (xy 55.997065 81.742436) (xy 55.930197 81.766294) (xy 55.923004 81.7665) (xy 55.020563 81.7665) (xy 54.952442 81.746498) (xy 54.905949 81.692842) (xy 54.895845 81.622568) (xy 54.896366 81.619658) (xy 54.897974 81.614809) (xy 54.9085 81.512072) (xy 54.9085 80.937928) (xy 54.908163 80.934678) (xy 54.898419 80.840765) (xy 54.898418 80.840761) (xy 54.897707 80.833907) (xy 54.895527 80.827373) (xy 54.895526 80.827368) (xy 54.889976 80.810734) (xy 54.8835 80.770858) (xy 54.8835 80.221311) (xy 54.903502 80.15319) (xy 54.943196 80.114167) (xy 54.943728 80.113838) (xy 55.049348 80.048478) (xy 55.071993 80.025794) (xy 55.169134 79.928483) (xy 55.174305 79.923303) (xy 55.208989 79.867035) (xy 55.263275 79.778968) (xy 55.263276 79.778966) (xy 55.267115 79.772738) (xy 55.30289 79.664879) (xy 55.320632 79.611389) (xy 55.320632 79.611387) (xy 55.322797 79.604861) (xy 55.324327 79.589934) (xy 55.327909 79.554969) (xy 55.3335 79.5004) (xy 55.3335 78.4996) (xy 55.333163 78.49635) (xy 55.323238 78.400692) (xy 55.323237 78.400688) (xy 55.322526 78.393834) (xy 55.319079 78.3835) (xy 55.268868 78.233002) (xy 55.26655 78.226054) (xy 55.173478 78.075652) (xy 55.048303 77.950695) (xy 55.038454 77.944624) (xy 54.903968 77.861725) (xy 54.903966 77.861724) (xy 54.897738 77.857885) (xy 54.786937 77.821134) (xy 54.736389 77.804368) (xy 54.736387 77.804368) (xy 54.729861 77.802203) (xy 54.723025 77.801503) (xy 54.723022 77.801502) (xy 54.676103 77.796695) (xy 54.6254 77.7915) (xy 53.8746 77.7915) (xy 53.871354 77.791837) (xy 53.87135 77.791837) (xy 53.775692 77.801762) (xy 53.775688 77.801763) (xy 53.768834 77.802474) (xy 53.762298 77.804655) (xy 53.762296 77.804655) (xy 53.635251 77.847041) (xy 53.601054 77.85845) (xy 53.450652 77.951522) (xy 53.445479 77.956704) (xy 53.397713 78.004553) (xy 53.325695 78.076697) (xy 53.322898 78.081235) (xy 53.265647 78.121824) (xy 53.194724 78.125054) (xy 53.133313 78.089428) (xy 53.125938 78.080932) (xy 53.117902 78.070793) (xy 53.003171 77.956261) (xy 52.99176 77.947249) (xy 52.853757 77.862184) (xy 52.840576 77.856037) (xy 52.68629 77.804862) (xy 52.672914 77.801995) (xy 52.578562 77.792328) (xy 52.572145 77.792) (xy 52.472115 77.792) (xy 52.456876 77.796475) (xy 52.455671 77.797865) (xy 52.454 77.805548) (xy 52.454 79.128) (xy 52.433998 79.196121) (xy 52.380342 79.242614) (xy 52.328 79.254) (xy 51.135116 79.254) (xy 51.119877 79.258475) (xy 51.118672 79.259865) (xy 51.117001 79.267548) (xy 51.117001 79.447085) (xy 51.096999 79.515206) (xy 51.043343 79.561699) (xy 50.973069 79.571803) (xy 50.908489 79.542309) (xy 50.890175 79.52265) (xy 50.868643 79.49392) (xy 50.868642 79.493919) (xy 50.863261 79.486739) (xy 50.746705 79.399385) (xy 50.610316 79.348255) (xy 50.548134 79.3415) (xy 50.1345 79.3415) (xy 50.066379 79.321498) (xy 50.019886 79.267842) (xy 50.0085 79.2155) (xy 50.0085 78.727885) (xy 51.117 78.727885) (xy 51.121475 78.743124) (xy 51.122865 78.744329) (xy 51.130548 78.746) (xy 51.927885 78.746) (xy 51.943124 78.741525) (xy 51.944329 78.740135) (xy 51.946 78.732452) (xy 51.946 77.810116) (xy 51.941525 77.794877) (xy 51.940135 77.793672) (xy 51.932452 77.792001) (xy 51.827905 77.792001) (xy 51.821386 77.792338) (xy 51.725794 77.802257) (xy 51.7124 77.805149) (xy 51.558216 77.856588) (xy 51.545038 77.862761) (xy 51.407193 77.948063) (xy 51.395792 77.957099) (xy 51.281261 78.071829) (xy 51.272249 78.08324) (xy 51.187184 78.221243) (xy 51.181037 78.234424) (xy 51.129862 78.38871) (xy 51.126995 78.402086) (xy 51.117328 78.496438) (xy 51.117 78.502855) (xy 51.117 78.727885) (xy 50.0085 78.727885) (xy 50.0085 78.066371) (xy 50.028502 77.99825) (xy 50.045405 77.977276) (xy 50.627276 77.395405) (xy 50.689588 77.361379) (xy 50.716371 77.3585) (xy 61.5655 77.3585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 150.339667 73.751556) (xy 150.390463 73.801157) (xy 150.405524 73.84641) (xy 150.406083 73.850661) (xy 150.406084 73.850666) (xy 150.407162 73.858851) (xy 150.468476 74.006876) (xy 150.473503 74.013427) (xy 150.473504 74.013429) (xy 150.54152 74.102069) (xy 150.541526 74.102075) (xy 150.566013 74.133987) (xy 150.572568 74.139017) (xy 150.591379 74.153452) (xy 150.60377 74.164319) (xy 150.650356 74.210905) (xy 150.684382 74.273217) (xy 150.679317 74.344032) (xy 150.650356 74.389095) (xy 150.516266 74.523185) (xy 150.503875 74.534052) (xy 150.478513 74.553513) (xy 150.454026 74.585425) (xy 150.454023 74.585428) (xy 150.415447 74.635702) (xy 150.355363 74.67852) (xy 150.343893 74.682346) (xy 150.337669 74.686198) (xy 150.337668 74.686198) (xy 150.244791 74.743672) (xy 150.195969 74.773884) (xy 150.190796 74.779066) (xy 150.089253 74.880786) (xy 150.02697 74.914865) (xy 149.95615 74.909862) (xy 149.911063 74.880941) (xy 149.808188 74.778246) (xy 149.808183 74.778242) (xy 149.803003 74.773071) (xy 149.76216 74.747895) (xy 149.66115 74.685631) (xy 149.661148 74.68563) (xy 149.65492 74.681791) (xy 149.489809 74.627026) (xy 149.482973 74.626326) (xy 149.48297 74.626325) (xy 149.417475 74.619615) (xy 149.387072 74.6165) (xy 148.787928 74.6165) (xy 148.784682 74.616837) (xy 148.784678 74.616837) (xy 148.690765 74.626581) (xy 148.690761 74.626582) (xy 148.683907 74.627293) (xy 148.677371 74.629474) (xy 148.677369 74.629474) (xy 148.566959 74.66631) (xy 148.518893 74.682346) (xy 148.476671 74.708474) (xy 148.378697 74.769102) (xy 148.370969 74.773884) (xy 148.370951 74.773855) (xy 148.308041 74.799317) (xy 148.238277 74.786145) (xy 148.188445 74.740238) (xy 148.183463 74.732187) (xy 148.148478 74.675652) (xy 148.023303 74.550695) (xy 148.017072 74.546854) (xy 147.878968 74.461725) (xy 147.878966 74.461724) (xy 147.872738 74.457885) (xy 147.76699 74.42281) (xy 147.711389 74.404368) (xy 147.711387 74.404368) (xy 147.704861 74.402203) (xy 147.698025 74.401503) (xy 147.698022 74.401502) (xy 147.654969 74.397091) (xy 147.6004 74.3915) (xy 146.8496 74.3915) (xy 146.846354 74.391837) (xy 146.84635 74.391837) (xy 146.750692 74.401762) (xy 146.750688 74.401763) (xy 146.743834 74.402474) (xy 146.737298 74.404655) (xy 146.737296 74.404655) (xy 146.621263 74.443367) (xy 146.576054 74.45845) (xy 146.425652 74.551522) (xy 146.300695 74.676697) (xy 146.297898 74.681235) (xy 146.240647 74.721824) (xy 146.169724 74.725054) (xy 146.108313 74.689428) (xy 146.100938 74.680932) (xy 146.092902 74.670793) (xy 145.978171 74.556261) (xy 145.96676 74.547249) (xy 145.828757 74.462184) (xy 145.815576 74.456037) (xy 145.66129 74.404862) (xy 145.647914 74.401995) (xy 145.553562 74.392328) (xy 145.547145 74.392) (xy 145.447115 74.392) (xy 145.431876 74.396475) (xy 145.430671 74.397865) (xy 145.429 74.405548) (xy 145.429 75.728) (xy 145.408998 75.796121) (xy 145.355342 75.842614) (xy 145.303 75.854) (xy 144.110116 75.854) (xy 144.094877 75.858475) (xy 144.093672 75.859865) (xy 144.092001 75.867548) (xy 144.092001 76.097095) (xy 144.092338 76.103614) (xy 144.102257 76.199206) (xy 144.105149 76.2126) (xy 144.156588 76.366784) (xy 144.162759 76.379958) (xy 144.205606 76.449196) (xy 144.224444 76.517648) (xy 144.203283 76.585418) (xy 144.148843 76.630989) (xy 144.098462 76.6415) (xy 142.48071 76.6415) (xy 142.412589 76.621498) (xy 142.387074 76.599811) (xy 142.365668 76.576037) (xy 142.365666 76.576036) (xy 142.361253 76.571134) (xy 142.263272 76.499946) (xy 142.212094 76.462763) (xy 142.212093 76.462762) (xy 142.206752 76.458882) (xy 142.200724 76.456198) (xy 142.200722 76.456197) (xy 142.038319 76.383891) (xy 142.038318 76.383891) (xy 142.032288 76.381206) (xy 141.938888 76.361353) (xy 141.851944 76.342872) (xy 141.851939 76.342872) (xy 141.845487 76.3415) (xy 141.654513 76.3415) (xy 141.648061 76.342872) (xy 141.648056 76.342872) (xy 141.561112 76.361353) (xy 141.467712 76.381206) (xy 141.461682 76.383891) (xy 141.461681 76.383891) (xy 141.299278 76.456197) (xy 141.299276 76.456198) (xy 141.293248 76.458882) (xy 141.287907 76.462762) (xy 141.287906 76.462763) (xy 141.237843 76.499136) (xy 141.138747 76.571134) (xy 141.134326 76.576044) (xy 141.134325 76.576045) (xy 141.024697 76.6978) (xy 141.01096 76.713056) (xy 140.98322 76.761103) (xy 140.949293 76.819867) (xy 140.915473 76.878444) (xy 140.856458 77.060072) (xy 140.855768 77.066633) (xy 140.855768 77.066635) (xy 140.847314 77.147073) (xy 140.836496 77.25) (xy 140.837186 77.256565) (xy 140.854671 77.422921) (xy 140.856458 77.439928) (xy 140.915473 77.621556) (xy 141.01096 77.786944) (xy 141.015378 77.791851) (xy 141.015379 77.791852) (xy 141.130005 77.919157) (xy 141.138747 77.928866) (xy 141.234345 77.998322) (xy 141.260598 78.017396) (xy 141.293248 78.041118) (xy 141.299276 78.043802) (xy 141.299278 78.043803) (xy 141.443881 78.108184) (xy 141.467712 78.118794) (xy 141.537284 78.133582) (xy 141.648056 78.157128) (xy 141.648061 78.157128) (xy 141.654513 78.1585) (xy 141.845487 78.1585) (xy 141.851939 78.157128) (xy 141.851944 78.157128) (xy 141.962716 78.133582) (xy 142.032288 78.118794) (xy 142.056119 78.108184) (xy 142.200722 78.043803) (xy 142.200724 78.043802) (xy 142.206752 78.041118) (xy 142.239403 78.017396) (xy 142.345789 77.940101) (xy 142.361253 77.928866) (xy 142.377369 77.910968) (xy 142.387074 77.900189) (xy 142.44752 77.86295) (xy 142.48071 77.8585) (xy 148.033991 77.8585) (xy 148.102112 77.878502) (xy 148.148605 77.932158) (xy 148.153515 77.944624) (xy 148.157346 77.956107) (xy 148.248884 78.104031) (xy 148.254066 78.109204) (xy 148.366816 78.221758) (xy 148.366821 78.221762) (xy 148.371997 78.226929) (xy 148.378227 78.230769) (xy 148.378228 78.23077) (xy 148.511435 78.31288) (xy 148.52008 78.318209) (xy 148.685191 78.372974) (xy 148.692027 78.373674) (xy 148.69203 78.373675) (xy 148.743526 78.378951) (xy 148.787928 78.3835) (xy 149.387072 78.3835) (xy 149.390318 78.383163) (xy 149.390322 78.383163) (xy 149.484235 78.373419) (xy 149.484239 78.373418) (xy 149.491093 78.372707) (xy 149.497629 78.370526) (xy 149.497631 78.370526) (xy 149.630395 78.326232) (xy 149.656107 78.317654) (xy 149.804031 78.226116) (xy 149.810312 78.219824) (xy 149.910747 78.119214) (xy 149.97303 78.085135) (xy 150.04385 78.090138) (xy 150.088937 78.119059) (xy 150.191812 78.221754) (xy 150.191817 78.221758) (xy 150.196997 78.226929) (xy 150.203227 78.230769) (xy 150.203228 78.23077) (xy 150.336435 78.31288) (xy 150.34508 78.318209) (xy 150.510191 78.372974) (xy 150.517027 78.373674) (xy 150.51703 78.373675) (xy 150.568526 78.378951) (xy 150.612928 78.3835) (xy 151.212072 78.3835) (xy 151.215318 78.383163) (xy 151.215322 78.383163) (xy 151.309235 78.373419) (xy 151.309239 78.373418) (xy 151.316093 78.372707) (xy 151.322629 78.370526) (xy 151.322631 78.370526) (xy 151.455395 78.326232) (xy 151.481107 78.317654) (xy 151.629031 78.226116) (xy 151.635312 78.219824) (xy 151.746758 78.108184) (xy 151.746762 78.108179) (xy 151.751929 78.103003) (xy 151.764111 78.08324) (xy 151.839369 77.96115) (xy 151.83937 77.961148) (xy 151.843209 77.95492) (xy 151.897974 77.789809) (xy 151.898854 77.781226) (xy 151.905851 77.712928) (xy 151.9085 77.687072) (xy 151.9085 77.112928) (xy 151.906663 77.095224) (xy 151.898419 77.015765) (xy 151.898418 77.015761) (xy 151.897707 77.008907) (xy 151.886866 76.976411) (xy 151.860802 76.898289) (xy 151.858218 76.82734) (xy 151.891231 76.769318) (xy 153.015144 75.645405) (xy 153.077456 75.611379) (xy 153.104239 75.6085) (xy 153.395761 75.6085) (xy 153.463882 75.628502) (xy 153.484856 75.645405) (xy 153.535685 75.696234) (xy 153.546552 75.708625) (xy 153.566013 75.733987) (xy 153.597925 75.758474) (xy 153.597928 75.758477) (xy 153.609878 75.767647) (xy 153.642289 75.804605) (xy 153.66096 75.836944) (xy 153.665378 75.841851) (xy 153.665379 75.841852) (xy 153.775962 75.964667) (xy 153.788747 75.978866) (xy 153.86793 76.036396) (xy 153.932788 76.083518) (xy 153.943248 76.091118) (xy 153.949276 76.093802) (xy 153.949278 76.093803) (xy 154.084183 76.153866) (xy 154.117712 76.168794) (xy 154.211113 76.188647) (xy 154.298056 76.207128) (xy 154.298061 76.207128) (xy 154.304513 76.2085) (xy 154.495487 76.2085) (xy 154.501939 76.207128) (xy 154.501944 76.207128) (xy 154.588887 76.188647) (xy 154.682288 76.168794) (xy 154.715817 76.153866) (xy 154.850722 76.093803) (xy 154.850724 76.093802) (xy 154.856752 76.091118) (xy 154.867213 76.083518) (xy 154.93207 76.036396) (xy 155.011253 75.978866) (xy 155.024038 75.964667) (xy 155.134621 75.841852) (xy 155.134622 75.841851) (xy 155.13904 75.836944) (xy 155.234527 75.671556) (xy 155.293542 75.489928) (xy 155.294616 75.479715) (xy 155.312814 75.306565) (xy 155.313504 75.3) (xy 155.309859 75.265316) (xy 155.297494 75.14767) (xy 155.310266 75.077832) (xy 155.358768 75.025985) (xy 155.422804 75.0085) (xy 155.823592 75.0085) (xy 155.891713 75.028502) (xy 155.938206 75.082158) (xy 155.948879 75.147888) (xy 155.937251 75.256695) (xy 155.937548 75.261848) (xy 155.937548 75.261851) (xy 155.947282 75.430676) (xy 155.95011 75.479715) (xy 155.951247 75.484761) (xy 155.951248 75.484767) (xy 155.953826 75.496206) (xy 155.999222 75.697639) (xy 156.056849 75.839558) (xy 156.074989 75.884231) (xy 156.083266 75.904616) (xy 156.116219 75.95839) (xy 156.180865 76.063883) (xy 156.199987 76.095088) (xy 156.34625 76.263938) (xy 156.518126 76.406632) (xy 156.588595 76.447811) (xy 156.591445 76.449476) (xy 156.640169 76.501114) (xy 156.65324 76.570897) (xy 156.626509 76.636669) (xy 156.586055 76.670027) (xy 156.573607 76.676507) (xy 156.569474 76.67961) (xy 156.569471 76.679612) (xy 156.3991 76.80753) (xy 156.394965 76.810635) (xy 156.240629 76.972138) (xy 156.237715 76.97641) (xy 156.237714 76.976411) (xy 156.166679 77.080544) (xy 156.114743 77.15668) (xy 156.069569 77.254) (xy 156.026583 77.346606) (xy 156.020688 77.359305) (xy 155.960989 77.57457) (xy 155.937251 77.796695) (xy 155.937548 77.801848) (xy 155.937548 77.801851) (xy 155.949236 78.004553) (xy 155.95011 78.019715) (xy 155.951247 78.024761) (xy 155.951248 78.024767) (xy 155.974903 78.129728) (xy 155.999222 78.237639) (xy 156.037461 78.331811) (xy 156.077055 78.429319) (xy 156.083266 78.444616) (xy 156.116956 78.499593) (xy 156.195202 78.627279) (xy 156.199987 78.635088) (xy 156.34625 78.803938) (xy 156.518126 78.946632) (xy 156.711 79.059338) (xy 156.715825 79.06118) (xy 156.715826 79.061181) (xy 156.788612 79.088975) (xy 156.919692 79.13903) (xy 156.92476 79.140061) (xy 156.924763 79.140062) (xy 157.029638 79.161399) (xy 157.138597 79.183567) (xy 157.143772 79.183757) (xy 157.143774 79.183757) (xy 157.356673 79.191564) (xy 157.356677 79.191564) (xy 157.361837 79.191753) (xy 157.366957 79.191097) (xy 157.366959 79.191097) (xy 157.578288 79.164025) (xy 157.578289 79.164025) (xy 157.583416 79.163368) (xy 157.613601 79.154312) (xy 157.792429 79.100661) (xy 157.792434 79.100659) (xy 157.797384 79.099174) (xy 157.997994 79.000896) (xy 158.17986 78.871173) (xy 158.192578 78.8585) (xy 158.31399 78.737511) (xy 158.338096 78.713489) (xy 158.353198 78.692473) (xy 158.465435 78.536277) (xy 158.468453 78.532077) (xy 158.481017 78.506657) (xy 158.565136 78.336453) (xy 158.565137 78.336451) (xy 158.56743 78.331811) (xy 158.612545 78.183322) (xy 158.630865 78.123023) (xy 158.630865 78.123021) (xy 158.63237 78.118069) (xy 158.661529 77.89659) (xy 158.662475 77.857885) (xy 158.663074 77.833365) (xy 158.663074 77.833361) (xy 158.663156 77.83) (xy 158.644852 77.607361) (xy 158.590431 77.390702) (xy 158.501354 77.18584) (xy 158.4404 77.091619) (xy 158.382822 77.002617) (xy 158.38282 77.002614) (xy 158.380014 76.998277) (xy 158.22967 76.833051) (xy 158.225619 76.829852) (xy 158.225615 76.829848) (xy 158.058414 76.6978) (xy 158.05841 76.697798) (xy 158.054359 76.694598) (xy 158.013053 76.671796) (xy 157.963084 76.621364) (xy 157.948312 76.551921) (xy 157.973428 76.485516) (xy 158.00078 76.458909) (xy 158.109716 76.381206) (xy 158.17986 76.331173) (xy 158.182886 76.328157) (xy 158.247588 76.29957) (xy 158.263976 76.2985) (xy 158.948157 76.2985) (xy 158.961764 76.299237) (xy 158.993262 76.302659) (xy 158.993267 76.302659) (xy 158.999388 76.303324) (xy 159.025638 76.301027) (xy 159.049388 76.29895) (xy 159.054214 76.298621) (xy 159.056686 76.2985) (xy 159.059769 76.2985) (xy 159.071738 76.297326) (xy 159.102506 76.29431) (xy 159.103819 76.294188) (xy 159.153057 76.28988) (xy 159.196413 76.286087) (xy 159.201532 76.2846) (xy 159.206833 76.28408) (xy 159.295834 76.257209) (xy 159.296967 76.256874) (xy 159.380414 76.23263) (xy 159.380418 76.232628) (xy 159.386336 76.230909) (xy 159.391068 76.228456) (xy 159.396169 76.226916) (xy 159.423094 76.2126) (xy 159.47826 76.183269) (xy 159.479426 76.182657) (xy 159.556453 76.142729) (xy 159.561926 76.139892) (xy 159.566089 76.136569) (xy 159.570796 76.134066) (xy 159.642918 76.075245) (xy 159.643774 76.074554) (xy 159.682973 76.043262) (xy 159.685477 76.040758) (xy 159.686195 76.040116) (xy 159.690528 76.036415) (xy 159.724062 76.009065) (xy 159.736116 75.994495) (xy 159.749133 75.97876) (xy 159.753288 75.973737) (xy 159.761277 75.964958) (xy 159.876405 75.84983) (xy 159.938717 75.815804) (xy 160.009532 75.820869) (xy 160.066368 75.863416) (xy 160.091179 75.929936) (xy 160.0915 75.938925) (xy 160.0915 79.114364) (xy 160.090422 79.130807) (xy 160.08625 79.1625) (xy 160.0915 79.20238) (xy 160.0915 79.202385) (xy 160.093475 79.217383) (xy 160.107162 79.321351) (xy 160.168476 79.469376) (xy 160.173503 79.475927) (xy 160.173504 79.475929) (xy 160.24152 79.564569) (xy 160.241526 79.564575) (xy 160.266013 79.596487) (xy 160.272568 79.601517) (xy 160.291379 79.615952) (xy 160.30377 79.626819) (xy 160.354595 79.677644) (xy 160.388621 79.739956) (xy 160.3915 79.766739) (xy 160.3915 80.087072) (xy 160.391837 80.090318) (xy 160.391837 80.090322) (xy 160.40144 80.182868) (xy 160.402293 80.191093) (xy 160.404474 80.197629) (xy 160.404474 80.197631) (xy 160.442643 80.312038) (xy 160.457346 80.356107) (xy 160.461202 80.362338) (xy 160.466386 80.370716) (xy 160.485222 80.439168) (xy 160.464059 80.506937) (xy 160.448335 80.526111) (xy 159.858649 81.115796) (xy 159.26937 81.705075) (xy 159.207058 81.739101) (xy 159.180275 81.74198) (xy 155.538519 81.74198) (xy 155.470398 81.721978) (xy 155.423905 81.668322) (xy 155.414898 81.613171) (xy 155.412814 81.613171) (xy 155.412814 81.606565) (xy 155.413504 81.6) (xy 155.409514 81.562038) (xy 155.394232 81.416635) (xy 155.394232 81.416633) (xy 155.393542 81.410072) (xy 155.334527 81.228444) (xy 155.326044 81.21375) (xy 155.284079 81.141065) (xy 155.23904 81.063056) (xy 155.190029 81.008623) (xy 155.115675 80.926045) (xy 155.115674 80.926044) (xy 155.111253 80.921134) (xy 155.006398 80.844952) (xy 154.962094 80.812763) (xy 154.962093 80.812762) (xy 154.956752 80.808882) (xy 154.950724 80.806198) (xy 154.950722 80.806197) (xy 154.788319 80.733891) (xy 154.788318 80.733891) (xy 154.782288 80.731206) (xy 154.68256 80.710008) (xy 154.601944 80.692872) (xy 154.601939 80.692872) (xy 154.595487 80.6915) (xy 154.404513 80.6915) (xy 154.398061 80.692872) (xy 154.398056 80.692872) (xy 154.31744 80.710008) (xy 154.217712 80.731206) (xy 154.211682 80.733891) (xy 154.211681 80.733891) (xy 154.049278 80.806197) (xy 154.049276 80.806198) (xy 154.043248 80.808882) (xy 154.037907 80.812762) (xy 154.037906 80.812763) (xy 153.993602 80.844952) (xy 153.888747 80.921134) (xy 153.884326 80.926044) (xy 153.884325 80.926045) (xy 153.809972 81.008623) (xy 153.76096 81.063056) (xy 153.715921 81.141065) (xy 153.673957 81.21375) (xy 153.665473 81.228444) (xy 153.606458 81.410072) (xy 153.605768 81.416633) (xy 153.605768 81.416635) (xy 153.590486 81.562038) (xy 153.586496 81.6) (xy 153.587186 81.606565) (xy 153.60526 81.778525) (xy 153.606458 81.789928) (xy 153.653529 81.934795) (xy 153.665473 81.971556) (xy 153.664018 81.972029) (xy 153.672412 82.034612) (xy 153.642309 82.098911) (xy 153.582222 82.136727) (xy 153.54787 82.1415) (xy 151.992275 82.1415) (xy 151.924154 82.121498) (xy 151.891449 82.091065) (xy 151.873478 82.067086) (xy 151.813261 81.986739) (xy 151.696705 81.899385) (xy 151.560316 81.848255) (xy 151.498134 81.8415) (xy 150.501866 81.8415) (xy 150.439684 81.848255) (xy 150.303295 81.899385) (xy 150.186739 81.986739) (xy 150.181358 81.993919) (xy 150.175008 82.000269) (xy 150.172761 81.998022) (xy 150.128456 82.031143) (xy 150.057637 82.036162) (xy 149.995347 82.002097) (xy 149.961362 81.939762) (xy 149.9585 81.913059) (xy 149.9585 81.351866) (xy 149.951745 81.289684) (xy 149.900615 81.153295) (xy 149.813261 81.036739) (xy 149.696705 80.949385) (xy 149.560316 80.898255) (xy 149.498134 80.8915) (xy 148.501866 80.8915) (xy 148.439684 80.898255) (xy 148.303295 80.949385) (xy 148.186739 81.036739) (xy 148.115643 81.131602) (xy 148.108551 81.141065) (xy 148.051692 81.18358) (xy 148.007725 81.1915) (xy 147.189964 81.1915) (xy 147.121843 81.171498) (xy 147.082821 81.131804) (xy 147.076116 81.120969) (xy 147.054417 81.099308) (xy 146.958184 81.003242) (xy 146.958179 81.003238) (xy 146.953003 80.998071) (xy 146.860732 80.941194) (xy 146.81115 80.910631) (xy 146.811148 80.91063) (xy 146.80492 80.906791) (xy 146.639809 80.852026) (xy 146.632973 80.851326) (xy 146.63297 80.851325) (xy 146.581474 80.846049) (xy 146.537072 80.8415) (xy 145.962928 80.8415) (xy 145.959682 80.841837) (xy 145.959678 80.841837) (xy 145.865765 80.851581) (xy 145.865761 80.851582) (xy 145.858907 80.852293) (xy 145.852371 80.854474) (xy 145.852369 80.854474) (xy 145.741389 80.8915) (xy 145.693893 80.907346) (xy 145.545969 80.998884) (xy 145.464209 81.080787) (xy 145.401929 81.114866) (xy 145.331108 81.109863) (xy 145.286019 81.080942) (xy 145.208184 81.003242) (xy 145.208179 81.003238) (xy 145.203003 80.998071) (xy 145.110732 80.941194) (xy 145.06115 80.910631) (xy 145.061148 80.91063) (xy 145.05492 80.906791) (xy 144.889809 80.852026) (xy 144.882973 80.851326) (xy 144.88297 80.851325) (xy 144.831474 80.846049) (xy 144.787072 80.8415) (xy 144.212928 80.8415) (xy 144.209682 80.841837) (xy 144.209678 80.841837) (xy 144.115765 80.851581) (xy 144.115761 80.851582) (xy 144.108907 80.852293) (xy 144.102371 80.854474) (xy 144.102369 80.854474) (xy 143.991389 80.8915) (xy 143.943893 80.907346) (xy 143.795969 80.998884) (xy 143.790796 81.004066) (xy 143.754409 81.040516) (xy 143.692126 81.074595) (xy 143.621306 81.069592) (xy 143.576141 81.040593) (xy 141.848711 79.313162) (xy 140.039315 77.503766) (xy 140.028448 77.491375) (xy 140.014013 77.472563) (xy 140.011325 77.469059) (xy 140.008987 77.466013) (xy 140.009672 77.465487) (xy 139.978936 77.4092) (xy 139.984001 77.338385) (xy 140.012962 77.293322) (xy 141.978399 75.327885) (xy 144.092 75.327885) (xy 144.096475 75.343124) (xy 144.097865 75.344329) (xy 144.105548 75.346) (xy 144.902885 75.346) (xy 144.918124 75.341525) (xy 144.919329 75.340135) (xy 144.921 75.332452) (xy 144.921 74.410116) (xy 144.916525 74.394877) (xy 144.915135 74.393672) (xy 144.907452 74.392001) (xy 144.802905 74.392001) (xy 144.796386 74.392338) (xy 144.700794 74.402257) (xy 144.6874 74.405149) (xy 144.533216 74.456588) (xy 144.520038 74.462761) (xy 144.382193 74.548063) (xy 144.370792 74.557099) (xy 144.256261 74.671829) (xy 144.247249 74.68324) (xy 144.162184 74.821243) (xy 144.156037 74.834424) (xy 144.104862 74.98871) (xy 144.101995 75.002086) (xy 144.092328 75.096438) (xy 144.092 75.102855) (xy 144.092 75.327885) (xy 141.978399 75.327885) (xy 143.160879 74.145405) (xy 143.223191 74.111379) (xy 143.249974 74.1085) (xy 149.551864 74.1085) (xy 149.568307 74.109578) (xy 149.6 74.11375) (xy 149.608189 74.112672) (xy 149.639874 74.108501) (xy 149.639884 74.1085) (xy 149.639885 74.1085) (xy 149.676117 74.10373) (xy 149.739457 74.095391) (xy 149.750664 74.093916) (xy 149.750666 74.093915) (xy 149.758851 74.092838) (xy 149.906876 74.031524) (xy 149.920937 74.020735) (xy 150.002072 73.958477) (xy 150.002075 73.958474) (xy 150.027437 73.939013) (xy 150.033987 73.933987) (xy 150.053458 73.908613) (xy 150.064316 73.896233) (xy 150.171234 73.789315) (xy 150.183616 73.778455) (xy 150.2039 73.76289) (xy 150.270118 73.737291) ) ) (filled_polygon (layer "F.Cu") (pts (xy 104.328046 78.506657) (xy 104.384882 78.549204) (xy 104.403846 78.585775) (xy 104.413429 78.615267) (xy 104.413431 78.615272) (xy 104.415473 78.621556) (xy 104.418776 78.627278) (xy 104.418777 78.627279) (xy 104.42641 78.6405) (xy 104.51096 78.786944) (xy 104.515378 78.791851) (xy 104.515379 78.791852) (xy 104.608431 78.895197) (xy 104.638747 78.928866) (xy 104.721598 78.989061) (xy 104.761695 79.018193) (xy 104.793248 79.041118) (xy 104.799276 79.043802) (xy 104.799278 79.043803) (xy 104.957762 79.114364) (xy 104.967712 79.118794) (xy 105.061113 79.138647) (xy 105.148056 79.157128) (xy 105.148061 79.157128) (xy 105.154513 79.1585) (xy 105.213428 79.1585) (xy 105.281549 79.178502) (xy 105.328042 79.232158) (xy 105.338738 79.271329) (xy 105.340945 79.292328) (xy 105.355121 79.427203) (xy 105.356458 79.439928) (xy 105.415473 79.621556) (xy 105.51096 79.786944) (xy 105.515378 79.791851) (xy 105.515379 79.791852) (xy 105.628128 79.917072) (xy 105.638747 79.928866) (xy 105.720992 79.988621) (xy 105.779559 80.031172) (xy 105.793248 80.041118) (xy 105.799276 80.043802) (xy 105.799278 80.043803) (xy 105.961681 80.116109) (xy 105.967712 80.118794) (xy 106.061112 80.138647) (xy 106.148056 80.157128) (xy 106.148061 80.157128) (xy 106.154513 80.1585) (xy 106.254702 80.1585) (xy 106.322823 80.178502) (xy 106.369316 80.232158) (xy 106.374533 80.245558) (xy 106.401482 80.328497) (xy 106.40351 80.399461) (xy 106.366848 80.460259) (xy 106.303136 80.491585) (xy 106.281649 80.493431) (xy 102.541296 80.493431) (xy 102.473175 80.473429) (xy 102.426682 80.419773) (xy 102.416578 80.349499) (xy 102.446072 80.284919) (xy 102.452201 80.278336) (xy 104.194919 78.535618) (xy 104.257231 78.501592) ) ) (filled_polygon (layer "F.Cu") (pts (xy 96.984532 65.636084) (xy 97.041368 65.678631) (xy 97.066179 65.745151) (xy 97.0665 65.75414) (xy 97.0665 73.716496) (xy 97.046498 73.784617) (xy 97.029595 73.805591) (xy 93.473595 77.361591) (xy 93.411283 77.395617) (xy 93.340468 77.390552) (xy 93.283632 77.348005) (xy 93.258821 77.281485) (xy 93.2585 77.272496) (xy 93.2585 68.449917) (xy 93.278502 68.381796) (xy 93.332158 68.335303) (xy 93.402432 68.325199) (xy 93.429449 68.332207) (xy 93.437557 68.335303) (xy 93.499692 68.35903) (xy 93.50476 68.360061) (xy 93.504763 68.360062) (xy 93.61159 68.381796) (xy 93.718597 68.403567) (xy 93.723772 68.403757) (xy 93.723774 68.403757) (xy 93.936673 68.411564) (xy 93.936677 68.411564) (xy 93.941837 68.411753) (xy 93.946957 68.411097) (xy 93.946959 68.411097) (xy 94.158288 68.384025) (xy 94.158289 68.384025) (xy 94.163416 68.383368) (xy 94.168656 68.381796) (xy 94.372429 68.320661) (xy 94.372434 68.320659) (xy 94.377384 68.319174) (xy 94.577994 68.220896) (xy 94.75986 68.091173) (xy 94.765422 68.085631) (xy 94.859265 67.992115) (xy 94.918096 67.933489) (xy 94.934314 67.91092) (xy 95.045435 67.756277) (xy 95.048453 67.752077) (xy 95.051751 67.745405) (xy 95.145136 67.556453) (xy 95.145137 67.556451) (xy 95.14743 67.551811) (xy 95.201033 67.375384) (xy 95.210865 67.343023) (xy 95.210865 67.343021) (xy 95.21237 67.338069) (xy 95.213045 67.332939) (xy 95.214138 67.327886) (xy 95.215636 67.32821) (xy 95.241552 67.269615) (xy 95.248662 67.261887) (xy 96.808734 65.701815) (xy 96.821125 65.690948) (xy 96.839937 65.676513) (xy 96.846487 65.671487) (xy 96.851448 65.665021) (xy 96.913717 65.631019) ) ) (filled_polygon (layer "F.Cu") (pts (xy 153.329119 62.403502) (xy 153.350093 62.420405) (xy 156.379595 65.449906) (xy 156.413621 65.512218) (xy 156.4165 65.539001) (xy 156.4165 71.28213) (xy 156.396498 71.350251) (xy 156.342842 71.396744) (xy 156.33473 71.400112) (xy 156.254476 71.430198) (xy 156.203295 71.449385) (xy 156.086739 71.536739) (xy 155.999385 71.653295) (xy 155.948255 71.789684) (xy 155.9415 71.851866) (xy 155.9415 73.265981) (xy 155.921498 73.334102) (xy 155.867842 73.380595) (xy 155.8155 73.391981) (xy 151.7345 73.391981) (xy 151.666379 73.371979) (xy 151.619886 73.318323) (xy 151.6085 73.265981) (xy 151.6085 72.771009) (xy 151.628502 72.702888) (xy 151.682158 72.656395) (xy 151.687694 72.654097) (xy 151.688296 72.653768) (xy 151.696705 72.650615) (xy 151.813261 72.563261) (xy 151.900615 72.446705) (xy 151.951745 72.310316) (xy 151.9585 72.248134) (xy 151.9585 71.351866) (xy 151.951745 71.289684) (xy 151.900615 71.153295) (xy 151.813261 71.036739) (xy 151.696705 70.949385) (xy 151.560316 70.898255) (xy 151.498134 70.8915) (xy 150.501866 70.8915) (xy 150.457718 70.896296) (xy 150.387835 70.883768) (xy 150.33582 70.835447) (xy 150.327701 70.81925) (xy 150.309686 70.775756) (xy 150.309683 70.775752) (xy 150.306524 70.768124) (xy 150.288506 70.744642) (xy 150.233483 70.672936) (xy 150.233477 70.672928) (xy 150.233474 70.672925) (xy 150.208987 70.641013) (xy 150.191295 70.627437) (xy 150.183621 70.621548) (xy 150.17123 70.610681) (xy 150.155306 70.594757) (xy 150.12128 70.532445) (xy 150.126345 70.46163) (xy 150.168892 70.404794) (xy 150.218204 70.382416) (xy 150.248644 70.375945) (xy 150.27583 70.370167) (xy 150.275833 70.370166) (xy 150.282288 70.368794) (xy 150.288319 70.366109) (xy 150.450722 70.293803) (xy 150.450724 70.293802) (xy 150.456752 70.291118) (xy 150.488456 70.268084) (xy 150.560831 70.2155) (xy 150.611253 70.178866) (xy 150.6581 70.126837) (xy 150.734621 70.041852) (xy 150.734622 70.041851) (xy 150.73904 70.036944) (xy 150.740414 70.034565) (xy 150.795504 69.992085) (xy 150.841216 69.9835) (xy 153.483733 69.9835) (xy 153.494916 69.984027) (xy 153.502409 69.985702) (xy 153.510335 69.985453) (xy 153.510336 69.985453) (xy 153.570486 69.983562) (xy 153.574445 69.9835) (xy 153.602356 69.9835) (xy 153.606291 69.983003) (xy 153.606356 69.982995) (xy 153.618193 69.982062) (xy 153.650451 69.981048) (xy 153.65447 69.980922) (xy 153.662389 69.980673) (xy 153.681843 69.975021) (xy 153.7012 69.971013) (xy 153.71343 69.969468) (xy 153.713431 69.969468) (xy 153.721297 69.968474) (xy 153.728668 69.965555) (xy 153.72867 69.965555) (xy 153.762412 69.952196) (xy 153.773642 69.948351) (xy 153.808483 69.938229) (xy 153.808484 69.938229) (xy 153.816093 69.936018) (xy 153.822912 69.931985) (xy 153.822917 69.931983) (xy 153.833528 69.925707) (xy 153.851276 69.917012) (xy 153.870117 69.909552) (xy 153.888922 69.89589) (xy 153.905887 69.883564) (xy 153.915807 69.877048) (xy 153.947035 69.85858) (xy 153.947038 69.858578) (xy 153.953862 69.854542) (xy 153.968183 69.840221) (xy 153.983217 69.82738) (xy 153.990955 69.821758) (xy 153.999607 69.815472) (xy 154.027798 69.781395) (xy 154.035788 69.772616) (xy 154.287999 69.520405) (xy 154.350311 69.486379) (xy 154.377094 69.4835) (xy 154.712072 69.4835) (xy 154.715318 69.483163) (xy 154.715322 69.483163) (xy 154.809235 69.473419) (xy 154.809239 69.473418) (xy 154.816093 69.472707) (xy 154.822629 69.470526) (xy 154.822631 69.470526) (xy 154.974159 69.419972) (xy 154.981107 69.417654) (xy 155.129031 69.326116) (xy 155.134204 69.320934) (xy 155.246758 69.208184) (xy 155.246762 69.208179) (xy 155.251929 69.203003) (xy 155.264034 69.183365) (xy 155.339369 69.06115) (xy 155.33937 69.061148) (xy 155.343209 69.05492) (xy 155.397974 68.889809) (xy 155.4085 68.787072) (xy 155.4085 68.212928) (xy 155.407802 68.206197) (xy 155.398419 68.115765) (xy 155.398418 68.115761) (xy 155.397707 68.108907) (xy 155.394423 68.099062) (xy 155.344972 67.950841) (xy 155.342654 67.943893) (xy 155.251116 67.795969) (xy 155.245934 67.790796) (xy 155.24593 67.790791) (xy 155.16886 67.713856) (xy 155.13478 67.651574) (xy 155.139783 67.580754) (xy 155.168704 67.535665) (xy 155.246363 67.457871) (xy 155.255375 67.44646) (xy 155.338912 67.310937) (xy 155.345056 67.297759) (xy 155.395315 67.146234) (xy 155.398181 67.132868) (xy 155.407672 67.04023) (xy 155.408 67.033815) (xy 155.408 67.022115) (xy 155.403525 67.006876) (xy 155.402135 67.005671) (xy 155.394452 67.004) (xy 154.2345 67.004) (xy 154.166379 66.983998) (xy 154.119886 66.930342) (xy 154.1085 66.878) (xy 154.1085 66.477885) (xy 154.6165 66.477885) (xy 154.620975 66.493124) (xy 154.622365 66.494329) (xy 154.630048 66.496) (xy 155.389885 66.496) (xy 155.405124 66.491525) (xy 155.406329 66.490135) (xy 155.408 66.482452) (xy 155.408 66.466234) (xy 155.407663 66.459718) (xy 155.397925 66.365868) (xy 155.395032 66.352472) (xy 155.344512 66.201047) (xy 155.338347 66.187885) (xy 155.254574 66.052508) (xy 155.24554 66.04111) (xy 155.132871 65.928637) (xy 155.12146 65.919625) (xy 154.985937 65.836088) (xy 154.972759 65.829944) (xy 154.821234 65.779685) (xy 154.807868 65.776819) (xy 154.71523 65.767328) (xy 154.708815 65.767) (xy 154.634615 65.767) (xy 154.619376 65.771475) (xy 154.618171 65.772865) (xy 154.6165 65.780548) (xy 154.6165 66.477885) (xy 154.1085 66.477885) (xy 154.1085 65.785115) (xy 154.104025 65.769876) (xy 154.102635 65.768671) (xy 154.094952 65.767) (xy 154.016234 65.767) (xy 154.009718 65.767337) (xy 153.915868 65.777075) (xy 153.902472 65.779968) (xy 153.751047 65.830488) (xy 153.737885 65.836653) (xy 153.602508 65.920426) (xy 153.591106 65.929464) (xy 153.589433 65.931139) (xy 153.588007 65.931919) (xy 153.585373 65.934007) (xy 153.585016 65.933556) (xy 153.527151 65.965219) (xy 153.456331 65.960216) (xy 153.411246 65.931299) (xy 153.408185 65.928244) (xy 153.403003 65.923071) (xy 153.396707 65.91919) (xy 153.26115 65.835631) (xy 153.261148 65.83563) (xy 153.25492 65.831791) (xy 153.089809 65.777026) (xy 153.082973 65.776326) (xy 153.08297 65.776325) (xy 153.029129 65.770809) (xy 152.987072 65.7665) (xy 152.287928 65.7665) (xy 152.284682 65.766837) (xy 152.284678 65.766837) (xy 152.190765 65.776581) (xy 152.190761 65.776582) (xy 152.183907 65.777293) (xy 152.177371 65.779474) (xy 152.177369 65.779474) (xy 152.048381 65.822508) (xy 152.018893 65.832346) (xy 151.870969 65.923884) (xy 151.865796 65.929066) (xy 151.753242 66.041816) (xy 151.753238 66.041821) (xy 151.748071 66.046997) (xy 151.744231 66.053227) (xy 151.74423 66.053228) (xy 151.669506 66.174453) (xy 151.656791 66.19508) (xy 151.602026 66.360191) (xy 151.601326 66.367027) (xy 151.601325 66.36703) (xy 151.596911 66.410115) (xy 151.5915 66.462928) (xy 151.5915 67.037072) (xy 151.591837 67.040318) (xy 151.591837 67.040322) (xy 151.60144 67.132868) (xy 151.602293 67.141093) (xy 151.604474 67.147629) (xy 151.604474 67.147631) (xy 151.622336 67.201169) (xy 151.657346 67.306107) (xy 151.748884 67.454031) (xy 151.830787 67.535791) (xy 151.864866 67.598071) (xy 151.859863 67.668892) (xy 151.830942 67.713981) (xy 151.753242 67.791816) (xy 151.753238 67.791821) (xy 151.748071 67.796997) (xy 151.744229 67.803229) (xy 151.744228 67.803231) (xy 151.72673 67.831617) (xy 151.673957 67.87911) (xy 151.619471 67.8915) (xy 149.648136 67.8915) (xy 149.631693 67.890422) (xy 149.6 67.88625) (xy 149.591811 67.887328) (xy 149.560126 67.891499) (xy 149.560117 67.8915) (xy 149.560115 67.8915) (xy 149.560109 67.891501) (xy 149.560107 67.891501) (xy 149.460543 67.904609) (xy 149.449336 67.906084) (xy 149.449334 67.906085) (xy 149.441149 67.907162) (xy 149.293124 67.968476) (xy 149.286573 67.973503) (xy 149.286571 67.973504) (xy 149.197928 68.041523) (xy 149.197925 68.041526) (xy 149.166013 68.066013) (xy 149.160983 68.072568) (xy 149.146548 68.091379) (xy 149.135681 68.10377) (xy 148.603766 68.635685) (xy 148.591375 68.646552) (xy 148.566013 68.666013) (xy 148.541526 68.697925) (xy 148.541523 68.697928) (xy 148.541517 68.697936) (xy 148.486735 68.769329) (xy 148.468476 68.793124) (xy 148.411685 68.93023) (xy 148.407162 68.94115) (xy 148.406085 68.949334) (xy 148.406084 68.949336) (xy 148.396351 69.023267) (xy 148.3915 69.060115) (xy 148.3915 69.06012) (xy 148.38625 69.1) (xy 148.388291 69.1155) (xy 148.390422 69.13169) (xy 148.3915 69.148136) (xy 148.3915 69.878991) (xy 148.371498 69.947112) (xy 148.317842 69.993605) (xy 148.312306 69.995903) (xy 148.311704 69.996232) (xy 148.303295 69.999385) (xy 148.186739 70.086739) (xy 148.099385 70.203295) (xy 148.048255 70.339684) (xy 148.0415 70.401866) (xy 148.0415 71.298134) (xy 148.048255 71.360316) (xy 148.099385 71.496705) (xy 148.186739 71.613261) (xy 148.193919 71.618642) (xy 148.19392 71.618643) (xy 148.301372 71.699174) (xy 148.343887 71.756033) (xy 148.348913 71.826852) (xy 148.314853 71.889145) (xy 148.301372 71.900826) (xy 148.203408 71.974246) (xy 148.186739 71.986739) (xy 148.099385 72.103295) (xy 148.048255 72.239684) (xy 148.0415 72.301866) (xy 148.0415 72.7655) (xy 148.021498 72.833621) (xy 147.967842 72.880114) (xy 147.9155 72.8915) (xy 145.060832 72.8915) (xy 144.992711 72.871498) (xy 144.946218 72.817842) (xy 144.936114 72.747568) (xy 144.953572 72.699384) (xy 145.038912 72.560937) (xy 145.045056 72.547759) (xy 145.095315 72.396234) (xy 145.098181 72.382868) (xy 145.107672 72.29023) (xy 145.108 72.283815) (xy 145.108 72.272115) (xy 145.103525 72.256876) (xy 145.102135 72.255671) (xy 145.094452 72.254) (xy 143.9345 72.254) (xy 143.866379 72.233998) (xy 143.819886 72.180342) (xy 143.8085 72.128) (xy 143.8085 71.727885) (xy 144.3165 71.727885) (xy 144.320975 71.743124) (xy 144.322365 71.744329) (xy 144.330048 71.746) (xy 145.089885 71.746) (xy 145.105124 71.741525) (xy 145.106329 71.740135) (xy 145.108 71.732452) (xy 145.108 71.716234) (xy 145.107663 71.709718) (xy 145.097925 71.615868) (xy 145.095032 71.602472) (xy 145.044512 71.451047) (xy 145.038347 71.437885) (xy 144.954574 71.302508) (xy 144.94554 71.29111) (xy 144.832871 71.178637) (xy 144.82146 71.169625) (xy 144.685937 71.086088) (xy 144.672759 71.079944) (xy 144.521234 71.029685) (xy 144.507868 71.026819) (xy 144.41523 71.017328) (xy 144.408815 71.017) (xy 144.334615 71.017) (xy 144.319376 71.021475) (xy 144.318171 71.022865) (xy 144.3165 71.030548) (xy 144.3165 71.727885) (xy 143.8085 71.727885) (xy 143.8085 71.035115) (xy 143.804025 71.019876) (xy 143.802635 71.018671) (xy 143.794952 71.017) (xy 143.716234 71.017) (xy 143.709718 71.017337) (xy 143.615868 71.027075) (xy 143.602472 71.029968) (xy 143.451047 71.080488) (xy 143.437885 71.086653) (xy 143.302508 71.170426) (xy 143.291106 71.179464) (xy 143.289433 71.181139) (xy 143.288007 71.181919) (xy 143.285373 71.184007) (xy 143.285016 71.183556) (xy 143.227151 71.215219) (xy 143.156331 71.210216) (xy 143.111246 71.181299) (xy 143.108185 71.178244) (xy 143.103003 71.173071) (xy 143.005884 71.113205) (xy 142.958391 71.060434) (xy 142.946 71.005946) (xy 142.946 69.93194) (xy 142.966002 69.863819) (xy 142.993736 69.833194) (xy 142.997806 69.829968) (xy 143.004031 69.826116) (xy 143.009204 69.820934) (xy 143.110747 69.719214) (xy 143.17303 69.685135) (xy 143.24385 69.690138) (xy 143.288937 69.719059) (xy 143.391812 69.821754) (xy 143.391817 69.821758) (xy 143.396997 69.826929) (xy 143.403227 69.830769) (xy 143.403228 69.83077) (xy 143.531036 69.909552) (xy 143.54508 69.918209) (xy 143.710191 69.972974) (xy 143.717027 69.973674) (xy 143.71703 69.973675) (xy 143.768526 69.978951) (xy 143.812928 69.9835) (xy 144.412072 69.9835) (xy 144.415318 69.983163) (xy 144.415322 69.983163) (xy 144.509235 69.973419) (xy 144.509239 69.973418) (xy 144.516093 69.972707) (xy 144.522629 69.970526) (xy 144.522631 69.970526) (xy 144.6721 69.920659) (xy 144.681107 69.917654) (xy 144.829031 69.826116) (xy 144.834204 69.820934) (xy 144.946758 69.708184) (xy 144.946762 69.708179) (xy 144.951929 69.703003) (xy 144.957529 69.693919) (xy 144.97327 69.668383) (xy 145.026043 69.62089) (xy 145.080529 69.6085) (xy 145.49429 69.6085) (xy 145.562411 69.628502) (xy 145.587926 69.650189) (xy 145.606752 69.671097) (xy 145.613747 69.678866) (xy 145.622376 69.685135) (xy 145.752153 69.779424) (xy 145.768248 69.791118) (xy 145.774276 69.793802) (xy 145.774278 69.793803) (xy 145.919995 69.85868) (xy 145.942712 69.868794) (xy 146.027395 69.886794) (xy 146.123056 69.907128) (xy 146.123061 69.907128) (xy 146.129513 69.9085) (xy 146.320487 69.9085) (xy 146.326939 69.907128) (xy 146.326944 69.907128) (xy 146.422605 69.886794) (xy 146.507288 69.868794) (xy 146.530005 69.85868) (xy 146.675722 69.793803) (xy 146.675724 69.793802) (xy 146.681752 69.791118) (xy 146.697848 69.779424) (xy 146.803031 69.703003) (xy 146.836253 69.678866) (xy 146.857776 69.654962) (xy 146.959621 69.541852) (xy 146.959622 69.541851) (xy 146.96404 69.536944) (xy 147.035139 69.413798) (xy 147.056223 69.377279) (xy 147.056224 69.377278) (xy 147.059527 69.371556) (xy 147.118542 69.189928) (xy 147.122935 69.148136) (xy 147.137814 69.006565) (xy 147.138504 69) (xy 147.127817 68.898315) (xy 147.119232 68.816635) (xy 147.119232 68.816633) (xy 147.118542 68.810072) (xy 147.059527 68.628444) (xy 147.046984 68.606718) (xy 146.967341 68.468774) (xy 146.96404 68.463056) (xy 146.917677 68.411564) (xy 146.840675 68.326045) (xy 146.840674 68.326044) (xy 146.836253 68.321134) (xy 146.715278 68.23324) (xy 146.687094 68.212763) (xy 146.687093 68.212762) (xy 146.681752 68.208882) (xy 146.675724 68.206198) (xy 146.675722 68.206197) (xy 146.513319 68.133891) (xy 146.513318 68.133891) (xy 146.507288 68.131206) (xy 146.40238 68.108907) (xy 146.326944 68.092872) (xy 146.326939 68.092872) (xy 146.320487 68.0915) (xy 146.129513 68.0915) (xy 146.123061 68.092872) (xy 146.123056 68.092872) (xy 146.04762 68.108907) (xy 145.942712 68.131206) (xy 145.936682 68.133891) (xy 145.936681 68.133891) (xy 145.774278 68.206197) (xy 145.774276 68.206198) (xy 145.768248 68.208882) (xy 145.762907 68.212762) (xy 145.762906 68.212763) (xy 145.646969 68.296997) (xy 145.613747 68.321134) (xy 145.609334 68.326036) (xy 145.609332 68.326037) (xy 145.587926 68.349811) (xy 145.52748 68.38705) (xy 145.49429 68.3915) (xy 145.080436 68.3915) (xy 145.012315 68.371498) (xy 144.973292 68.331803) (xy 144.95497 68.302195) (xy 144.954964 68.302188) (xy 144.951116 68.295969) (xy 144.934456 68.279338) (xy 144.833184 68.178242) (xy 144.833179 68.178238) (xy 144.828003 68.173071) (xy 144.812196 68.163327) (xy 144.766547 68.135189) (xy 144.684456 68.084587) (xy 144.636964 68.031816) (xy 144.62554 67.961744) (xy 144.653814 67.89662) (xy 144.710697 67.857804) (xy 144.749159 67.844972) (xy 144.756107 67.842654) (xy 144.904031 67.751116) (xy 144.929958 67.725144) (xy 145.021758 67.633184) (xy 145.021762 67.633179) (xy 145.026929 67.628003) (xy 145.04484 67.598946) (xy 145.114369 67.48615) (xy 145.11437 67.486148) (xy 145.118209 67.47992) (xy 145.172974 67.314809) (xy 145.174578 67.299159) (xy 145.182097 67.225765) (xy 145.1835 67.212072) (xy 145.1835 66.612928) (xy 145.183163 66.609678) (xy 145.173419 66.515765) (xy 145.173418 66.515761) (xy 145.172707 66.508907) (xy 145.170396 66.501978) (xy 145.119972 66.350841) (xy 145.117654 66.343893) (xy 145.026116 66.195969) (xy 145.011097 66.180976) (xy 144.919214 66.089253) (xy 144.885135 66.02697) (xy 144.890138 65.95615) (xy 144.919059 65.911063) (xy 145.021754 65.808188) (xy 145.021758 65.808183) (xy 145.026929 65.803003) (xy 145.032875 65.793357) (xy 145.114369 65.66115) (xy 145.11437 65.661148) (xy 145.118209 65.65492) (xy 145.172974 65.489809) (xy 145.1835 65.387072) (xy 145.1835 64.787928) (xy 145.181205 64.765811) (xy 145.173419 64.690765) (xy 145.173418 64.690761) (xy 145.172707 64.683907) (xy 145.159024 64.642892) (xy 145.119972 64.525841) (xy 145.117654 64.518893) (xy 145.026116 64.370969) (xy 145.020129 64.364992) (xy 144.908184 64.253242) (xy 144.908179 64.253238) (xy 144.903003 64.248071) (xy 144.896769 64.244228) (xy 144.868383 64.22673) (xy 144.82089 64.173957) (xy 144.8085 64.119471) (xy 144.8085 64.048136) (xy 144.809578 64.03169) (xy 144.812672 64.008188) (xy 144.81375 64) (xy 144.809382 63.966816) (xy 144.8085 63.96012) (xy 144.8085 63.960115) (xy 144.794891 63.856741) (xy 144.79489 63.856739) (xy 144.792838 63.84115) (xy 144.792838 63.841149) (xy 144.731524 63.693124) (xy 144.719502 63.677456) (xy 144.669304 63.612038) (xy 144.658477 63.597928) (xy 144.658474 63.597925) (xy 144.633987 63.566013) (xy 144.62436 63.558626) (xy 144.608621 63.546548) (xy 144.59623 63.535681) (xy 143.659144 62.598595) (xy 143.625118 62.536283) (xy 143.630183 62.465468) (xy 143.67273 62.408632) (xy 143.73925 62.383821) (xy 143.748239 62.3835) (xy 153.260998 62.3835) ) ) (filled_polygon (layer "F.Cu") (pts (xy 142.263882 62.928502) (xy 142.284856 62.945405) (xy 143.453094 64.113643) (xy 143.48712 64.175955) (xy 143.482055 64.24677) (xy 143.453172 64.291756) (xy 143.373071 64.371997) (xy 143.369231 64.378227) (xy 143.36923 64.378228) (xy 143.2862 64.512928) (xy 143.281791 64.52008) (xy 143.227026 64.685191) (xy 143.2165 64.787928) (xy 143.2165 65.387072) (xy 143.216837 65.390318) (xy 143.216837 65.390322) (xy 143.224074 65.460067) (xy 143.227293 65.491093) (xy 143.229474 65.497629) (xy 143.229474 65.497631) (xy 143.270625 65.620975) (xy 143.282346 65.656107) (xy 143.373884 65.804031) (xy 143.379066 65.809204) (xy 143.480786 65.910747) (xy 143.514865 65.97303) (xy 143.509862 66.04385) (xy 143.480941 66.088937) (xy 143.378246 66.191812) (xy 143.378242 66.191817) (xy 143.373071 66.196997) (xy 143.369231 66.203227) (xy 143.36923 66.203228) (xy 143.286364 66.337662) (xy 143.281791 66.34508) (xy 143.227026 66.510191) (xy 143.2165 66.612928) (xy 143.2165 67.158261) (xy 143.196498 67.226382) (xy 143.179595 67.247356) (xy 142.447356 67.979595) (xy 142.385044 68.013621) (xy 142.358261 68.0165) (xy 141.994686 68.0165) (xy 141.926565 67.996498) (xy 141.880072 67.942842) (xy 141.869968 67.872568) (xy 141.886232 67.826361) (xy 141.904648 67.795221) (xy 141.910893 67.78079) (xy 141.953269 67.634935) (xy 141.95557 67.622333) (xy 141.957807 67.593916) (xy 141.958 67.588986) (xy 141.958 67.209615) (xy 141.953525 67.194376) (xy 141.952135 67.193171) (xy 141.944452 67.1915) (xy 140.360116 67.1915) (xy 140.344877 67.195975) (xy 140.343672 67.197365) (xy 140.342001 67.205048) (xy 140.342001 67.588984) (xy 140.342195 67.59392) (xy 140.34443 67.622336) (xy 140.34673 67.634931) (xy 140.389107 67.78079) (xy 140.395352 67.795221) (xy 140.413768 67.826361) (xy 140.431227 67.895177) (xy 140.40871 67.962509) (xy 140.353366 68.006978) (xy 140.305314 68.0165) (xy 140.212928 68.0165) (xy 140.209682 68.016837) (xy 140.209678 68.016837) (xy 140.115767 68.026581) (xy 140.115765 68.026581) (xy 140.108907 68.027293) (xy 140.108834 68.026587) (xy 140.043186 68.02179) (xy 139.986416 67.979156) (xy 139.961707 67.912597) (xy 139.978947 67.839663) (xy 140.00418 67.796997) (xy 140.009145 67.788601) (xy 140.011415 67.78079) (xy 140.032561 67.708003) (xy 140.055562 67.628831) (xy 140.056074 67.622336) (xy 140.058307 67.593958) (xy 140.058307 67.59395) (xy 140.0585 67.591502) (xy 140.0585 66.4345) (xy 140.078502 66.366379) (xy 140.132158 66.319886) (xy 140.1845 66.3085) (xy 140.216 66.3085) (xy 140.284121 66.328502) (xy 140.330614 66.382158) (xy 140.342 66.4345) (xy 140.342 66.665385) (xy 140.346475 66.680624) (xy 140.347865 66.681829) (xy 140.355548 66.6835) (xy 140.877885 66.6835) (xy 140.893124 66.679025) (xy 140.894329 66.677635) (xy 140.896 66.669952) (xy 140.896 66.665385) (xy 141.404 66.665385) (xy 141.408475 66.680624) (xy 141.409865 66.681829) (xy 141.417548 66.6835) (xy 141.939884 66.6835) (xy 141.955123 66.679025) (xy 141.956328 66.677635) (xy 141.957999 66.669952) (xy 141.957999 66.286017) (xy 141.957805 66.28108) (xy 141.95557 66.252664) (xy 141.95327 66.240069) (xy 141.910893 66.09421) (xy 141.904648 66.079779) (xy 141.828089 65.950322) (xy 141.818449 65.937896) (xy 141.712104 65.831551) (xy 141.699678 65.821911) (xy 141.570221 65.745352) (xy 141.55579 65.739107) (xy 141.421395 65.700061) (xy 141.407294 65.700101) (xy 141.404 65.70737) (xy 141.404 66.665385) (xy 140.896 66.665385) (xy 140.896 66.054842) (xy 140.913547 65.990703) (xy 140.944961 65.937584) (xy 140.959145 65.913601) (xy 140.963699 65.897928) (xy 140.978314 65.84762) (xy 141.005562 65.753831) (xy 141.00623 65.745352) (xy 141.008307 65.718958) (xy 141.008307 65.71895) (xy 141.0085 65.716502) (xy 141.0085 64.408498) (xy 141.008018 64.402369) (xy 141.006067 64.377579) (xy 141.006066 64.377574) (xy 141.005562 64.371169) (xy 140.966775 64.237662) (xy 140.961357 64.219012) (xy 140.961356 64.21901) (xy 140.959145 64.211399) (xy 140.930715 64.163327) (xy 140.878491 64.07502) (xy 140.878489 64.075017) (xy 140.874453 64.068193) (xy 140.845405 64.039145) (xy 140.811379 63.976833) (xy 140.8085 63.95005) (xy 140.8085 63.0345) (xy 140.828502 62.966379) (xy 140.882158 62.919886) (xy 140.9345 62.9085) (xy 142.195761 62.9085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 119.063882 62.628502) (xy 119.084856 62.645405) (xy 119.954595 63.515144) (xy 119.988621 63.577456) (xy 119.9915 63.604239) (xy 119.9915 63.719564) (xy 119.971498 63.787685) (xy 119.931803 63.826708) (xy 119.902195 63.84503) (xy 119.902188 63.845036) (xy 119.895969 63.848884) (xy 119.8908 63.854062) (xy 119.778242 63.966816) (xy 119.778238 63.966821) (xy 119.773071 63.971997) (xy 119.769231 63.978227) (xy 119.76923 63.978228) (xy 119.686364 64.112662) (xy 119.681791 64.12008) (xy 119.627026 64.285191) (xy 119.626326 64.292027) (xy 119.626325 64.29203) (xy 119.621049 64.343526) (xy 119.6165 64.387928) (xy 119.6165 64.987072) (xy 119.616837 64.990318) (xy 119.616837 64.990322) (xy 119.626537 65.083806) (xy 119.627293 65.091093) (xy 119.629474 65.097629) (xy 119.629474 65.097631) (xy 119.658224 65.183806) (xy 119.682346 65.256107) (xy 119.773884 65.404031) (xy 119.779066 65.409204) (xy 119.880786 65.510747) (xy 119.914865 65.57303) (xy 119.909862 65.64385) (xy 119.880941 65.688937) (xy 119.778246 65.791812) (xy 119.778242 65.791817) (xy 119.773071 65.796997) (xy 119.769231 65.803227) (xy 119.76923 65.803228) (xy 119.686364 65.937662) (xy 119.681791 65.94508) (xy 119.627026 66.110191) (xy 119.626326 66.117027) (xy 119.626325 66.11703) (xy 119.622664 66.152762) (xy 119.6165 66.212928) (xy 119.6165 66.812072) (xy 119.616837 66.815318) (xy 119.616837 66.815322) (xy 119.623341 66.878) (xy 119.627293 66.916093) (xy 119.682346 67.081107) (xy 119.686198 67.087332) (xy 119.686199 67.087334) (xy 119.687566 67.089544) (xy 119.688039 67.091263) (xy 119.689302 67.093959) (xy 119.68884 67.094175) (xy 119.706401 67.157996) (xy 119.685237 67.225765) (xy 119.669514 67.244937) (xy 118.934856 67.979595) (xy 118.872544 68.013621) (xy 118.845761 68.0165) (xy 118.794686 68.0165) (xy 118.726565 67.996498) (xy 118.680072 67.942842) (xy 118.669968 67.872568) (xy 118.686232 67.826361) (xy 118.704648 67.795221) (xy 118.710893 67.78079) (xy 118.753269 67.634935) (xy 118.75557 67.622333) (xy 118.757807 67.593916) (xy 118.758 67.588986) (xy 118.758 67.209615) (xy 118.753525 67.194376) (xy 118.752135 67.193171) (xy 118.744452 67.1915) (xy 117.160116 67.1915) (xy 117.144877 67.195975) (xy 117.143672 67.197365) (xy 117.142001 67.205048) (xy 117.142001 67.588984) (xy 117.142195 67.59392) (xy 117.14443 67.622336) (xy 117.14673 67.634931) (xy 117.189107 67.78079) (xy 117.195352 67.795221) (xy 117.213768 67.826361) (xy 117.231227 67.895177) (xy 117.20871 67.962509) (xy 117.153366 68.006978) (xy 117.105314 68.0165) (xy 116.895267 68.0165) (xy 116.827146 67.996498) (xy 116.780653 67.942842) (xy 116.770549 67.872568) (xy 116.786812 67.826364) (xy 116.809145 67.788601) (xy 116.811415 67.78079) (xy 116.832561 67.708003) (xy 116.855562 67.628831) (xy 116.856074 67.622336) (xy 116.858307 67.593958) (xy 116.858307 67.59395) (xy 116.8585 67.591502) (xy 116.8585 66.4345) (xy 116.878502 66.366379) (xy 116.932158 66.319886) (xy 116.9845 66.3085) (xy 117.016 66.3085) (xy 117.084121 66.328502) (xy 117.130614 66.382158) (xy 117.142 66.4345) (xy 117.142 66.665385) (xy 117.146475 66.680624) (xy 117.147865 66.681829) (xy 117.155548 66.6835) (xy 117.677885 66.6835) (xy 117.693124 66.679025) (xy 117.694329 66.677635) (xy 117.696 66.669952) (xy 117.696 66.665385) (xy 118.204 66.665385) (xy 118.208475 66.680624) (xy 118.209865 66.681829) (xy 118.217548 66.6835) (xy 118.739884 66.6835) (xy 118.755123 66.679025) (xy 118.756328 66.677635) (xy 118.757999 66.669952) (xy 118.757999 66.286017) (xy 118.757805 66.28108) (xy 118.75557 66.252664) (xy 118.75327 66.240069) (xy 118.710893 66.09421) (xy 118.704648 66.079779) (xy 118.628089 65.950322) (xy 118.618449 65.937896) (xy 118.512104 65.831551) (xy 118.499678 65.821911) (xy 118.370221 65.745352) (xy 118.35579 65.739107) (xy 118.221395 65.700061) (xy 118.207294 65.700101) (xy 118.204 65.70737) (xy 118.204 66.665385) (xy 117.696 66.665385) (xy 117.696 66.054842) (xy 117.713547 65.990703) (xy 117.744961 65.937584) (xy 117.759145 65.913601) (xy 117.763699 65.897928) (xy 117.778314 65.84762) (xy 117.805562 65.753831) (xy 117.80623 65.745352) (xy 117.808307 65.718958) (xy 117.808307 65.71895) (xy 117.8085 65.716502) (xy 117.8085 64.408498) (xy 117.808018 64.402369) (xy 117.806067 64.377579) (xy 117.806066 64.377574) (xy 117.805562 64.371169) (xy 117.766775 64.237662) (xy 117.761357 64.219012) (xy 117.761356 64.21901) (xy 117.759145 64.211399) (xy 117.730715 64.163327) (xy 117.678491 64.07502) (xy 117.678489 64.075017) (xy 117.674453 64.068193) (xy 117.645405 64.039145) (xy 117.611379 63.976833) (xy 117.6085 63.95005) (xy 117.6085 62.7345) (xy 117.628502 62.666379) (xy 117.682158 62.619886) (xy 117.7345 62.6085) (xy 118.995761 62.6085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 130.363882 62.628502) (xy 130.384856 62.645405) (xy 131.354595 63.615144) (xy 131.388621 63.677456) (xy 131.3915 63.704239) (xy 131.3915 63.719564) (xy 131.371498 63.787685) (xy 131.331803 63.826708) (xy 131.302195 63.84503) (xy 131.302188 63.845036) (xy 131.295969 63.848884) (xy 131.2908 63.854062) (xy 131.178242 63.966816) (xy 131.178238 63.966821) (xy 131.173071 63.971997) (xy 131.169231 63.978227) (xy 131.16923 63.978228) (xy 131.086364 64.112662) (xy 131.081791 64.12008) (xy 131.027026 64.285191) (xy 131.026326 64.292027) (xy 131.026325 64.29203) (xy 131.021049 64.343526) (xy 131.0165 64.387928) (xy 131.0165 64.987072) (xy 131.016837 64.990318) (xy 131.016837 64.990322) (xy 131.026537 65.083806) (xy 131.027293 65.091093) (xy 131.029474 65.097629) (xy 131.029474 65.097631) (xy 131.058224 65.183806) (xy 131.082346 65.256107) (xy 131.173884 65.404031) (xy 131.179066 65.409204) (xy 131.280786 65.510747) (xy 131.314865 65.57303) (xy 131.309862 65.64385) (xy 131.280941 65.688937) (xy 131.178246 65.791812) (xy 131.178242 65.791817) (xy 131.173071 65.796997) (xy 131.169231 65.803227) (xy 131.16923 65.803228) (xy 131.086364 65.937662) (xy 131.081791 65.94508) (xy 131.027026 66.110191) (xy 131.026326 66.117027) (xy 131.026325 66.11703) (xy 131.022664 66.152762) (xy 131.0165 66.212928) (xy 131.0165 66.583261) (xy 130.996498 66.651382) (xy 130.979595 66.672356) (xy 130.3727 67.279251) (xy 130.310388 67.313277) (xy 130.239573 67.308212) (xy 130.182737 67.265665) (xy 130.162709 67.225653) (xy 130.153526 67.194376) (xy 130.152135 67.193171) (xy 130.144452 67.1915) (xy 128.560116 67.1915) (xy 128.544877 67.195975) (xy 128.543672 67.197365) (xy 128.542001 67.205048) (xy 128.542001 67.588984) (xy 128.542195 67.59392) (xy 128.54443 67.622336) (xy 128.54673 67.634931) (xy 128.589107 67.78079) (xy 128.595352 67.795221) (xy 128.613768 67.826361) (xy 128.631227 67.895177) (xy 128.60871 67.962509) (xy 128.553366 68.006978) (xy 128.505314 68.0165) (xy 128.295267 68.0165) (xy 128.227146 67.996498) (xy 128.180653 67.942842) (xy 128.170549 67.872568) (xy 128.186812 67.826364) (xy 128.209145 67.788601) (xy 128.211415 67.78079) (xy 128.232561 67.708003) (xy 128.255562 67.628831) (xy 128.256074 67.622336) (xy 128.258307 67.593958) (xy 128.258307 67.59395) (xy 128.2585 67.591502) (xy 128.2585 66.4345) (xy 128.278502 66.366379) (xy 128.332158 66.319886) (xy 128.3845 66.3085) (xy 128.416 66.3085) (xy 128.484121 66.328502) (xy 128.530614 66.382158) (xy 128.542 66.4345) (xy 128.542 66.665385) (xy 128.546475 66.680624) (xy 128.547865 66.681829) (xy 128.555548 66.6835) (xy 129.077885 66.6835) (xy 129.093124 66.679025) (xy 129.094329 66.677635) (xy 129.096 66.669952) (xy 129.096 66.665385) (xy 129.604 66.665385) (xy 129.608475 66.680624) (xy 129.609865 66.681829) (xy 129.617548 66.6835) (xy 130.139884 66.6835) (xy 130.155123 66.679025) (xy 130.156328 66.677635) (xy 130.157999 66.669952) (xy 130.157999 66.286017) (xy 130.157805 66.28108) (xy 130.15557 66.252664) (xy 130.15327 66.240069) (xy 130.110893 66.09421) (xy 130.104648 66.079779) (xy 130.028089 65.950322) (xy 130.018449 65.937896) (xy 129.912104 65.831551) (xy 129.899678 65.821911) (xy 129.770221 65.745352) (xy 129.75579 65.739107) (xy 129.621395 65.700061) (xy 129.607294 65.700101) (xy 129.604 65.70737) (xy 129.604 66.665385) (xy 129.096 66.665385) (xy 129.096 66.054842) (xy 129.113547 65.990703) (xy 129.144961 65.937584) (xy 129.159145 65.913601) (xy 129.163699 65.897928) (xy 129.178314 65.84762) (xy 129.205562 65.753831) (xy 129.20623 65.745352) (xy 129.208307 65.718958) (xy 129.208307 65.71895) (xy 129.2085 65.716502) (xy 129.2085 64.408498) (xy 129.208018 64.402369) (xy 129.206067 64.377579) (xy 129.206066 64.377574) (xy 129.205562 64.371169) (xy 129.166775 64.237662) (xy 129.161357 64.219012) (xy 129.161356 64.21901) (xy 129.159145 64.211399) (xy 129.130715 64.163327) (xy 129.078491 64.07502) (xy 129.078489 64.075017) (xy 129.074453 64.068193) (xy 129.045405 64.039145) (xy 129.011379 63.976833) (xy 129.0085 63.95005) (xy 129.0085 62.7345) (xy 129.028502 62.666379) (xy 129.082158 62.619886) (xy 129.1345 62.6085) (xy 130.295761 62.6085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 106.963882 62.628502) (xy 106.984856 62.645405) (xy 108.386346 64.046895) (xy 108.420372 64.109207) (xy 108.415307 64.180022) (xy 108.404511 64.202106) (xy 108.335631 64.31385) (xy 108.331791 64.32008) (xy 108.277026 64.485191) (xy 108.276326 64.492027) (xy 108.276325 64.49203) (xy 108.272279 64.531524) (xy 108.2665 64.587928) (xy 108.2665 65.187072) (xy 108.266837 65.190318) (xy 108.266837 65.190322) (xy 108.276269 65.281222) (xy 108.277293 65.291093) (xy 108.279474 65.297629) (xy 108.279474 65.297631) (xy 108.285963 65.317081) (xy 108.332346 65.456107) (xy 108.423884 65.604031) (xy 108.429066 65.609204) (xy 108.530786 65.710747) (xy 108.564865 65.77303) (xy 108.559862 65.84385) (xy 108.530941 65.888937) (xy 108.428246 65.991812) (xy 108.428242 65.991817) (xy 108.423071 65.996997) (xy 108.419231 66.003227) (xy 108.41923 66.003228) (xy 108.336364 66.137662) (xy 108.331791 66.14508) (xy 108.277026 66.310191) (xy 108.276326 66.317027) (xy 108.276325 66.31703) (xy 108.272699 66.352422) (xy 108.2665 66.412928) (xy 108.2665 67.012072) (xy 108.266837 67.015316) (xy 108.266837 67.015324) (xy 108.274256 67.086829) (xy 108.261391 67.15665) (xy 108.238024 67.188927) (xy 107.5462 67.880751) (xy 107.483888 67.914777) (xy 107.413073 67.909712) (xy 107.356237 67.867165) (xy 107.331426 67.800645) (xy 107.336108 67.756503) (xy 107.353268 67.697438) (xy 107.35557 67.684833) (xy 107.357807 67.656416) (xy 107.358 67.651486) (xy 107.358 67.272115) (xy 107.353525 67.256876) (xy 107.352135 67.255671) (xy 107.344452 67.254) (xy 105.760116 67.254) (xy 105.744877 67.258475) (xy 105.743672 67.259865) (xy 105.742001 67.267548) (xy 105.742001 67.651484) (xy 105.742195 67.65642) (xy 105.74443 67.684836) (xy 105.74673 67.697431) (xy 105.791318 67.8509) (xy 105.789245 67.851502) (xy 105.796579 67.91092) (xy 105.765802 67.974899) (xy 105.70532 68.012081) (xy 105.672245 68.0165) (xy 105.528304 68.0165) (xy 105.460183 67.996498) (xy 105.41369 67.942842) (xy 105.403586 67.872568) (xy 105.40962 67.851239) (xy 105.409145 67.851101) (xy 105.414848 67.831471) (xy 105.455562 67.691331) (xy 105.456074 67.684836) (xy 105.458307 67.656458) (xy 105.458307 67.65645) (xy 105.4585 67.654002) (xy 105.4585 66.497) (xy 105.478502 66.428879) (xy 105.532158 66.382386) (xy 105.5845 66.371) (xy 105.616 66.371) (xy 105.684121 66.391002) (xy 105.730614 66.444658) (xy 105.742 66.497) (xy 105.742 66.727885) (xy 105.746475 66.743124) (xy 105.747865 66.744329) (xy 105.755548 66.746) (xy 106.277885 66.746) (xy 106.293124 66.741525) (xy 106.294329 66.740135) (xy 106.296 66.732452) (xy 106.296 66.727885) (xy 106.804 66.727885) (xy 106.808475 66.743124) (xy 106.809865 66.744329) (xy 106.817548 66.746) (xy 107.339884 66.746) (xy 107.355123 66.741525) (xy 107.356328 66.740135) (xy 107.357999 66.732452) (xy 107.357999 66.348517) (xy 107.357805 66.34358) (xy 107.35557 66.315164) (xy 107.35327 66.302569) (xy 107.310893 66.15671) (xy 107.304648 66.142279) (xy 107.228089 66.012822) (xy 107.218449 66.000396) (xy 107.112104 65.894051) (xy 107.099678 65.884411) (xy 106.970221 65.807852) (xy 106.95579 65.801607) (xy 106.821395 65.762561) (xy 106.807294 65.762601) (xy 106.804 65.76987) (xy 106.804 66.727885) (xy 106.296 66.727885) (xy 106.296 66.117342) (xy 106.313547 66.053203) (xy 106.34959 65.992258) (xy 106.359145 65.976101) (xy 106.362307 65.965219) (xy 106.378132 65.910747) (xy 106.405562 65.816331) (xy 106.406129 65.809137) (xy 106.408307 65.781458) (xy 106.408307 65.78145) (xy 106.4085 65.779002) (xy 106.4085 64.470998) (xy 106.408074 64.46558) (xy 106.406067 64.440079) (xy 106.406066 64.440074) (xy 106.405562 64.433669) (xy 106.37458 64.327028) (xy 106.361357 64.281512) (xy 106.361356 64.28151) (xy 106.359145 64.273899) (xy 106.326685 64.219012) (xy 106.278491 64.13752) (xy 106.278489 64.137517) (xy 106.274453 64.130693) (xy 106.245405 64.101645) (xy 106.211379 64.039333) (xy 106.2085 64.01255) (xy 106.2085 62.748136) (xy 106.209578 62.731692) (xy 106.211373 62.718056) (xy 106.240094 62.653128) (xy 106.299359 62.614035) (xy 106.336295 62.6085) (xy 106.895761 62.6085) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (tstamp cc716bd0-4abf-43b4-b162-4586fc1a08aa) (hatch edge 0.508) (connect_pads (clearance 0)) (min_thickness 0.254) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts (xy 43.875 106.375) (xy 38.025 106.375) (xy 38.025 98) (xy 43.875 98) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (tstamp e98c5fb5-05de-4f33-a9fa-564d621425e6) (hatch edge 0.508) (connect_pads (clearance 0)) (min_thickness 0.254) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts (xy 52.525 106.175) (xy 44.4 106.175) (xy 44.4 103.225) (xy 52.525 103.225) ) ) ) (zone (net 2) (net_name "GND") (layer "B.Cu") (tstamp 66c5ea37-6f67-4eed-aa1a-903e0782e941) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 7)) (polygon (pts (xy 172.5 135.5) (xy 37.5 135.5) (xy 37.5 54) (xy 172.5 54) ) ) (filled_polygon (layer "B.Cu") (pts (xy 167.470018 54.51) (xy 167.484851 54.51231) (xy 167.484855 54.51231) (xy 167.493724 54.513691) (xy 167.514183 54.511016) (xy 167.536007 54.510072) (xy 167.885965 54.525352) (xy 167.896913 54.52631) (xy 168.274498 54.576019) (xy 168.285307 54.577926) (xy 168.657114 54.660353) (xy 168.667731 54.663198) (xy 169.030939 54.777718) (xy 169.041254 54.781471) (xy 169.393123 54.92722) (xy 169.403067 54.931858) (xy 169.740867 55.107705) (xy 169.750387 55.113201) (xy 170.071574 55.31782) (xy 170.080578 55.324124) (xy 170.382716 55.555962) (xy 170.391137 55.563028) (xy 170.671914 55.820314) (xy 170.679686 55.828086) (xy 170.936972 56.108863) (xy 170.944038 56.117284) (xy 171.175876 56.419422) (xy 171.18218 56.428426) (xy 171.238549 56.516907) (xy 171.379282 56.737813) (xy 171.386799 56.749613) (xy 171.392294 56.759132) (xy 171.561161 57.083521) (xy 171.568138 57.096924) (xy 171.57278 57.106877) (xy 171.718526 57.458739) (xy 171.722282 57.469061) (xy 171.80509 57.73169) (xy 171.836802 57.832268) (xy 171.839647 57.842885) (xy 171.91211 58.169743) (xy 171.922073 58.214685) (xy 171.923981 58.225502) (xy 171.962718 58.519746) (xy 171.97369 58.603086) (xy 171.974648 58.614035) (xy 171.985903 58.8718) (xy 171.989603 58.956552) (xy 171.988223 58.981429) (xy 171.986309 58.993724) (xy 171.987473 59.002626) (xy 171.987473 59.002628) (xy 171.990436 59.025283) (xy 171.9915 59.041621) (xy 171.9915 130.450633) (xy 171.99 130.470018) (xy 171.98769 130.484851) (xy 171.98769 130.484855) (xy 171.986309 130.493724) (xy 171.988984 130.514183) (xy 171.989928 130.536007) (xy 171.97932 130.778967) (xy 171.974648 130.885964) (xy 171.97369 130.896913) (xy 171.924478 131.270724) (xy 171.923982 131.27449) (xy 171.922074 131.285307) (xy 171.844493 131.635256) (xy 171.839647 131.657114) (xy 171.836802 131.667731) (xy 171.727309 132.014999) (xy 171.722285 132.030932) (xy 171.718529 132.041254) (xy 171.578861 132.378444) (xy 171.572784 132.393114) (xy 171.568142 132.403067) (xy 171.410343 132.706197) (xy 171.392295 132.740867) (xy 171.386799 132.750387) (xy 171.18218 133.071574) (xy 171.175876 133.080578) (xy 170.944038 133.382716) (xy 170.936972 133.391137) (xy 170.679686 133.671914) (xy 170.671914 133.679686) (xy 170.391137 133.936972) (xy 170.382716 133.944038) (xy 170.080578 134.175876) (xy 170.071574 134.18218) (xy 169.776496 134.370166) (xy 169.750387 134.386799) (xy 169.740868 134.392294) (xy 169.403067 134.568142) (xy 169.393123 134.57278) (xy 169.041254 134.718529) (xy 169.030939 134.722282) (xy 168.667732 134.836802) (xy 168.657115 134.839647) (xy 168.285307 134.922074) (xy 168.274498 134.923981) (xy 167.896914 134.97369) (xy 167.885965 134.974648) (xy 167.543446 134.989603) (xy 167.518571 134.988223) (xy 167.506276 134.986309) (xy 167.497374 134.987473) (xy 167.497372 134.987473) (xy 167.482323 134.989441) (xy 167.474714 134.990436) (xy 167.458379 134.9915) (xy 42.549367 134.9915) (xy 42.529982 134.99) (xy 42.515149 134.98769) (xy 42.515145 134.98769) (xy 42.506276 134.986309) (xy 42.485817 134.988984) (xy 42.463993 134.989928) (xy 42.114035 134.974648) (xy 42.103086 134.97369) (xy 41.725502 134.923981) (xy 41.714693 134.922074) (xy 41.342885 134.839647) (xy 41.332268 134.836802) (xy 40.969061 134.722282) (xy 40.958746 134.718529) (xy 40.606877 134.57278) (xy 40.596933 134.568142) (xy 40.259132 134.392294) (xy 40.249613 134.386799) (xy 40.223505 134.370166) (xy 39.928426 134.18218) (xy 39.919422 134.175876) (xy 39.617284 133.944038) (xy 39.608863 133.936972) (xy 39.328086 133.679686) (xy 39.320314 133.671914) (xy 39.063028 133.391137) (xy 39.055962 133.382716) (xy 38.824124 133.080578) (xy 38.81782 133.071574) (xy 38.613201 132.750387) (xy 38.607705 132.740867) (xy 38.589657 132.706197) (xy 38.431858 132.403067) (xy 38.427216 132.393114) (xy 38.42114 132.378444) (xy 38.281471 132.041254) (xy 38.277715 132.030932) (xy 38.272692 132.014999) (xy 38.163198 131.667731) (xy 38.160353 131.657114) (xy 38.155507 131.635256) (xy 38.077926 131.285307) (xy 38.076018 131.27449) (xy 38.075523 131.270724) (xy 38.02631 130.896913) (xy 38.025352 130.885964) (xy 38.02068 130.778967) (xy 38.010561 130.547206) (xy 38.012188 130.520805) (xy 38.012769 130.517352) (xy 38.01277 130.517345) (xy 38.013576 130.512552) (xy 38.013729 130.5) (xy 38.009773 130.472376) (xy 38.0085 130.454514) (xy 38.0085 125.63267) (xy 44.63216 125.63267) (xy 44.637887 125.64032) (xy 44.809042 125.745205) (xy 44.817837 125.749687) (xy 45.027988 125.836734) (xy 45.037373 125.839783) (xy 45.258554 125.892885) (xy 45.268301 125.894428) (xy 45.49507 125.912275) (xy 45.50493 125.912275) (xy 45.731699 125.894428) (xy 45.741446 125.892885) (xy 45.962627 125.839783) (xy 45.972012 125.836734) (xy 46.182163 125.749687) (xy 46.190958 125.745205) (xy 46.358445 125.642568) (xy 46.3674 125.63267) (xy 51.13216 125.63267) (xy 51.137887 125.64032) (xy 51.309042 125.745205) (xy 51.317837 125.749687) (xy 51.527988 125.836734) (xy 51.537373 125.839783) (xy 51.758554 125.892885) (xy 51.768301 125.894428) (xy 51.99507 125.912275) (xy 52.00493 125.912275) (xy 52.231699 125.894428) (xy 52.241446 125.892885) (xy 52.462627 125.839783) (xy 52.472012 125.836734) (xy 52.682163 125.749687) (xy 52.690958 125.745205) (xy 52.858445 125.642568) (xy 52.867907 125.63211) (xy 52.864124 125.623334) (xy 52.012812 124.772022) (xy 51.998868 124.764408) (xy 51.997035 124.764539) (xy 51.99042 124.76879) (xy 51.13892 125.62029) (xy 51.13216 125.63267) (xy 46.3674 125.63267) (xy 46.367907 125.63211) (xy 46.364124 125.623334) (xy 45.512812 124.772022) (xy 45.498868 124.764408) (xy 45.497035 124.764539) (xy 45.49042 124.76879) (xy 44.63892 125.62029) (xy 44.63216 125.63267) (xy 38.0085 125.63267) (xy 38.0085 124.40493) (xy 43.987725 124.40493) (xy 44.005572 124.631699) (xy 44.007115 124.641446) (xy 44.060217 124.862627) (xy 44.063266 124.872012) (xy 44.150313 125.082163) (xy 44.154795 125.090958) (xy 44.257432 125.258445) (xy 44.26789 125.267907) (xy 44.276666 125.264124) (xy 45.127978 124.412812) (xy 45.134356 124.401132) (xy 45.864408 124.401132) (xy 45.864539 124.402965) (xy 45.86879 124.40958) (xy 46.72029 125.26108) (xy 46.73267 125.26784) (xy 46.74032 125.262113) (xy 46.845205 125.090958) (xy 46.849687 125.082163) (xy 46.936734 124.872012) (xy 46.939783 124.862627) (xy 46.992885 124.641446) (xy 46.994428 124.631699) (xy 47.012275 124.40493) (xy 50.487725 124.40493) (xy 50.505572 124.631699) (xy 50.507115 124.641446) (xy 50.560217 124.862627) (xy 50.563266 124.872012) (xy 50.650313 125.082163) (xy 50.654795 125.090958) (xy 50.757432 125.258445) (xy 50.76789 125.267907) (xy 50.776666 125.264124) (xy 51.627978 124.412812) (xy 51.634356 124.401132) (xy 52.364408 124.401132) (xy 52.364539 124.402965) (xy 52.36879 124.40958) (xy 53.22029 125.26108) (xy 53.23267 125.26784) (xy 53.24032 125.262113) (xy 53.345205 125.090958) (xy 53.349687 125.082163) (xy 53.436734 124.872012) (xy 53.439783 124.862627) (xy 53.492885 124.641446) (xy 53.494428 124.631699) (xy 53.512275 124.40493) (xy 53.512275 124.39507) (xy 53.494428 124.168301) (xy 53.492885 124.158554) (xy 53.439783 123.937373) (xy 53.436734 123.927988) (xy 53.349687 123.717837) (xy 53.345205 123.709042) (xy 53.242568 123.541555) (xy 53.23211 123.532093) (xy 53.223334 123.535876) (xy 52.372022 124.387188) (xy 52.364408 124.401132) (xy 51.634356 124.401132) (xy 51.635592 124.398868) (xy 51.635461 124.397035) (xy 51.63121 124.39042) (xy 50.77971 123.53892) (xy 50.76733 123.53216) (xy 50.75968 123.537887) (xy 50.654795 123.709042) (xy 50.650313 123.717837) (xy 50.563266 123.927988) (xy 50.560217 123.937373) (xy 50.507115 124.158554) (xy 50.505572 124.168301) (xy 50.487725 124.39507) (xy 50.487725 124.40493) (xy 47.012275 124.40493) (xy 47.012275 124.39507) (xy 46.994428 124.168301) (xy 46.992885 124.158554) (xy 46.939783 123.937373) (xy 46.936734 123.927988) (xy 46.849687 123.717837) (xy 46.845205 123.709042) (xy 46.742568 123.541555) (xy 46.73211 123.532093) (xy 46.723334 123.535876) (xy 45.872022 124.387188) (xy 45.864408 124.401132) (xy 45.134356 124.401132) (xy 45.135592 124.398868) (xy 45.135461 124.397035) (xy 45.13121 124.39042) (xy 44.27971 123.53892) (xy 44.26733 123.53216) (xy 44.25968 123.537887) (xy 44.154795 123.709042) (xy 44.150313 123.717837) (xy 44.063266 123.927988) (xy 44.060217 123.937373) (xy 44.007115 124.158554) (xy 44.005572 124.168301) (xy 43.987725 124.39507) (xy 43.987725 124.40493) (xy 38.0085 124.40493) (xy 38.0085 123.16789) (xy 44.632093 123.16789) (xy 44.635876 123.176666) (xy 45.487188 124.027978) (xy 45.501132 124.035592) (xy 45.502965 124.035461) (xy 45.50958 124.03121) (xy 46.36108 123.17971) (xy 46.367534 123.16789) (xy 51.132093 123.16789) (xy 51.135876 123.176666) (xy 51.987188 124.027978) (xy 52.001132 124.035592) (xy 52.002965 124.035461) (xy 52.00958 124.03121) (xy 52.86108 123.17971) (xy 52.86784 123.16733) (xy 52.862113 123.15968) (xy 52.690958 123.054795) (xy 52.682163 123.050313) (xy 52.472012 122.963266) (xy 52.462627 122.960217) (xy 52.241446 122.907115) (xy 52.231699 122.905572) (xy 52.00493 122.887725) (xy 51.99507 122.887725) (xy 51.768301 122.905572) (xy 51.758554 122.907115) (xy 51.537373 122.960217) (xy 51.527988 122.963266) (xy 51.317837 123.050313) (xy 51.309042 123.054795) (xy 51.141555 123.157432) (xy 51.132093 123.16789) (xy 46.367534 123.16789) (xy 46.36784 123.16733) (xy 46.362113 123.15968) (xy 46.190958 123.054795) (xy 46.182163 123.050313) (xy 45.972012 122.963266) (xy 45.962627 122.960217) (xy 45.741446 122.907115) (xy 45.731699 122.905572) (xy 45.50493 122.887725) (xy 45.49507 122.887725) (xy 45.268301 122.905572) (xy 45.258554 122.907115) (xy 45.037373 122.960217) (xy 45.027988 122.963266) (xy 44.817837 123.050313) (xy 44.809042 123.054795) (xy 44.641555 123.157432) (xy 44.632093 123.16789) (xy 38.0085 123.16789) (xy 38.0085 119.9) (xy 43.986835 119.9) (xy 44.005465 120.136711) (xy 44.006619 120.141518) (xy 44.00662 120.141524) (xy 44.036611 120.266444) (xy 44.060895 120.367594) (xy 44.062788 120.372165) (xy 44.062789 120.372167) (xy 44.14762 120.576967) (xy 44.15176 120.586963) (xy 44.154346 120.591183) (xy 44.273241 120.785202) (xy 44.273245 120.785208) (xy 44.275824 120.789416) (xy 44.430031 120.969969) (xy 44.433787 120.973177) (xy 44.436683 120.97565) (xy 44.610584 121.124176) (xy 44.614792 121.126755) (xy 44.614798 121.126759) (xy 44.782342 121.22943) (xy 44.813037 121.24824) (xy 44.817607 121.250133) (xy 44.817611 121.250135) (xy 44.979749 121.317294) (xy 45.032406 121.339105) (xy 45.066166 121.34721) (xy 45.258476 121.39338) (xy 45.258482 121.393381) (xy 45.263289 121.394535) (xy 45.5 121.413165) (xy 45.736711 121.394535) (xy 45.741518 121.393381) (xy 45.741524 121.39338) (xy 45.933834 121.34721) (xy 45.967594 121.339105) (xy 46.020251 121.317294) (xy 46.182389 121.250135) (xy 46.182393 121.250133) (xy 46.186963 121.24824) (xy 46.217658 121.22943) (xy 46.385202 121.126759) (xy 46.385208 121.126755) (xy 46.389416 121.124176) (xy 46.563317 120.97565) (xy 46.566213 120.973177) (xy 46.569969 120.969969) (xy 46.724176 120.789416) (xy 46.726755 120.785208) (xy 46.726759 120.785202) (xy 46.845654 120.591183) (xy 46.84824 120.586963) (xy 46.852381 120.576967) (xy 46.937211 120.372167) (xy 46.937212 120.372165) (xy 46.939105 120.367594) (xy 46.963389 120.266444) (xy 46.99338 120.141524) (xy 46.993381 120.141518) (xy 46.994535 120.136711) (xy 47.013165 119.9) (xy 50.486835 119.9) (xy 50.505465 120.136711) (xy 50.506619 120.141518) (xy 50.50662 120.141524) (xy 50.536611 120.266444) (xy 50.560895 120.367594) (xy 50.562788 120.372165) (xy 50.562789 120.372167) (xy 50.64762 120.576967) (xy 50.65176 120.586963) (xy 50.654346 120.591183) (xy 50.773241 120.785202) (xy 50.773245 120.785208) (xy 50.775824 120.789416) (xy 50.930031 120.969969) (xy 50.933787 120.973177) (xy 50.936683 120.97565) (xy 51.110584 121.124176) (xy 51.114792 121.126755) (xy 51.114798 121.126759) (xy 51.282342 121.22943) (xy 51.313037 121.24824) (xy 51.317607 121.250133) (xy 51.317611 121.250135) (xy 51.479749 121.317294) (xy 51.532406 121.339105) (xy 51.566166 121.34721) (xy 51.758476 121.39338) (xy 51.758482 121.393381) (xy 51.763289 121.394535) (xy 52 121.413165) (xy 52.236711 121.394535) (xy 52.241518 121.393381) (xy 52.241524 121.39338) (xy 52.433834 121.34721) (xy 52.467594 121.339105) (xy 52.520251 121.317294) (xy 52.682389 121.250135) (xy 52.682393 121.250133) (xy 52.686963 121.24824) (xy 52.717658 121.22943) (xy 52.885202 121.126759) (xy 52.885208 121.126755) (xy 52.889416 121.124176) (xy 53.063317 120.97565) (xy 53.066213 120.973177) (xy 53.069969 120.969969) (xy 53.224176 120.789416) (xy 53.226755 120.785208) (xy 53.226759 120.785202) (xy 53.345654 120.591183) (xy 53.34824 120.586963) (xy 53.352381 120.576967) (xy 53.437211 120.372167) (xy 53.437212 120.372165) (xy 53.439105 120.367594) (xy 53.463389 120.266444) (xy 53.49338 120.141524) (xy 53.493381 120.141518) (xy 53.494535 120.136711) (xy 53.513165 119.9) (xy 53.494535 119.663289) (xy 53.493094 119.657284) (xy 53.450938 119.481693) (xy 53.439105 119.432406) (xy 53.423523 119.394788) (xy 53.350135 119.217611) (xy 53.350133 119.217607) (xy 53.34824 119.213037) (xy 53.329194 119.181957) (xy 53.226759 119.014798) (xy 53.226755 119.014792) (xy 53.224176 119.010584) (xy 53.069969 118.830031) (xy 53.057082 118.819024) (xy 53.040147 118.804561) (xy 52.889416 118.675824) (xy 52.885208 118.673245) (xy 52.885202 118.673241) (xy 52.691183 118.554346) (xy 52.686963 118.55176) (xy 52.682393 118.549867) (xy 52.682389 118.549865) (xy 52.472167 118.462789) (xy 52.472165 118.462788) (xy 52.467594 118.460895) (xy 52.376849 118.439109) (xy 52.241524 118.40662) (xy 52.241518 118.406619) (xy 52.236711 118.405465) (xy 52 118.386835) (xy 51.763289 118.405465) (xy 51.758482 118.406619) (xy 51.758476 118.40662) (xy 51.623151 118.439109) (xy 51.532406 118.460895) (xy 51.527835 118.462788) (xy 51.527833 118.462789) (xy 51.317611 118.549865) (xy 51.317607 118.549867) (xy 51.313037 118.55176) (xy 51.308817 118.554346) (xy 51.114798 118.673241) (xy 51.114792 118.673245) (xy 51.110584 118.675824) (xy 50.959853 118.804561) (xy 50.942919 118.819024) (xy 50.930031 118.830031) (xy 50.775824 119.010584) (xy 50.773245 119.014792) (xy 50.773241 119.014798) (xy 50.670806 119.181957) (xy 50.65176 119.213037) (xy 50.649867 119.217607) (xy 50.649865 119.217611) (xy 50.576477 119.394788) (xy 50.560895 119.432406) (xy 50.549062 119.481693) (xy 50.506907 119.657284) (xy 50.505465 119.663289) (xy 50.486835 119.9) (xy 47.013165 119.9) (xy 46.994535 119.663289) (xy 46.993094 119.657284) (xy 46.950938 119.481693) (xy 46.939105 119.432406) (xy 46.923523 119.394788) (xy 46.850135 119.217611) (xy 46.850133 119.217607) (xy 46.84824 119.213037) (xy 46.829194 119.181957) (xy 46.726759 119.014798) (xy 46.726755 119.014792) (xy 46.724176 119.010584) (xy 46.569969 118.830031) (xy 46.557082 118.819024) (xy 46.540147 118.804561) (xy 46.389416 118.675824) (xy 46.385208 118.673245) (xy 46.385202 118.673241) (xy 46.191183 118.554346) (xy 46.186963 118.55176) (xy 46.182393 118.549867) (xy 46.182389 118.549865) (xy 45.972167 118.462789) (xy 45.972165 118.462788) (xy 45.967594 118.460895) (xy 45.876849 118.439109) (xy 45.741524 118.40662) (xy 45.741518 118.406619) (xy 45.736711 118.405465) (xy 45.5 118.386835) (xy 45.263289 118.405465) (xy 45.258482 118.406619) (xy 45.258476 118.40662) (xy 45.123151 118.439109) (xy 45.032406 118.460895) (xy 45.027835 118.462788) (xy 45.027833 118.462789) (xy 44.817611 118.549865) (xy 44.817607 118.549867) (xy 44.813037 118.55176) (xy 44.808817 118.554346) (xy 44.614798 118.673241) (xy 44.614792 118.673245) (xy 44.610584 118.675824) (xy 44.459853 118.804561) (xy 44.442919 118.819024) (xy 44.430031 118.830031) (xy 44.275824 119.010584) (xy 44.273245 119.014792) (xy 44.273241 119.014798) (xy 44.170806 119.181957) (xy 44.15176 119.213037) (xy 44.149867 119.217607) (xy 44.149865 119.217611) (xy 44.076477 119.394788) (xy 44.060895 119.432406) (xy 44.049062 119.481693) (xy 44.006907 119.657284) (xy 44.005465 119.663289) (xy 43.986835 119.9) (xy 38.0085 119.9) (xy 38.0085 111.915143) (xy 38.028502 111.847022) (xy 38.082158 111.800529) (xy 38.152432 111.790425) (xy 38.217012 111.819919) (xy 38.241933 111.849308) (xy 38.269987 111.895088) (xy 38.41625 112.063938) (xy 38.588126 112.206632) (xy 38.781 112.319338) (xy 38.989692 112.39903) (xy 38.99476 112.400061) (xy 38.994763 112.400062) (xy 39.056965 112.412717) (xy 39.208597 112.443567) (xy 39.213772 112.443757) (xy 39.213774 112.443757) (xy 39.426673 112.451564) (xy 39.426677 112.451564) (xy 39.431837 112.451753) (xy 39.436957 112.451097) (xy 39.436959 112.451097) (xy 39.648288 112.424025) (xy 39.648289 112.424025) (xy 39.653416 112.423368) (xy 39.671385 112.417977) (xy 39.862429 112.360661) (xy 39.862434 112.360659) (xy 39.867384 112.359174) (xy 40.067994 112.260896) (xy 40.24986 112.131173) (xy 40.262283 112.118794) (xy 40.358479 112.022933) (xy 40.408096 111.973489) (xy 40.415804 111.962763) (xy 40.538453 111.792077) (xy 40.539776 111.793028) (xy 40.586645 111.749857) (xy 40.65658 111.737625) (xy 40.722026 111.765144) (xy 40.749875 111.796994) (xy 40.809987 111.895088) (xy 40.95625 112.063938) (xy 41.128126 112.206632) (xy 41.321 112.319338) (xy 41.529692 112.39903) (xy 41.53476 112.400061) (xy 41.534763 112.400062) (xy 41.596965 112.412717) (xy 41.748597 112.443567) (xy 41.753772 112.443757) (xy 41.753774 112.443757) (xy 41.966673 112.451564) (xy 41.966677 112.451564) (xy 41.971837 112.451753) (xy 41.976957 112.451097) (xy 41.976959 112.451097) (xy 42.188288 112.424025) (xy 42.188289 112.424025) (xy 42.193416 112.423368) (xy 42.211385 112.417977) (xy 42.402429 112.360661) (xy 42.402434 112.360659) (xy 42.407384 112.359174) (xy 42.607994 112.260896) (xy 42.78986 112.131173) (xy 42.802283 112.118794) (xy 42.898479 112.022933) (xy 42.960851 111.989017) (xy 43.031658 111.994205) (xy 43.088419 112.036851) (xy 43.105401 112.067954) (xy 43.146676 112.178054) (xy 43.155214 112.193649) (xy 43.231715 112.295724) (xy 43.244276 112.308285) (xy 43.346351 112.384786) (xy 43.361946 112.393324) (xy 43.482394 112.438478) (xy 43.497649 112.442105) (xy 43.548514 112.447631) (xy 43.555328 112.448) (xy 44.177885 112.448) (xy 44.193124 112.443525) (xy 44.194329 112.442135) (xy 44.196 112.434452) (xy 44.196 112.429884) (xy 44.704 112.429884) (xy 44.708475 112.445123) (xy 44.709865 112.446328) (xy 44.717548 112.447999) (xy 45.344669 112.447999) (xy 45.35149 112.447629) (xy 45.402352 112.442105) (xy 45.417604 112.438479) (xy 45.538054 112.393324) (xy 45.553649 112.384786) (xy 45.655724 112.308285) (xy 45.668285 112.295724) (xy 45.744786 112.193649) (xy 45.753324 112.178054) (xy 45.794225 112.068952) (xy 45.836867 112.012188) (xy 45.903428 111.987488) (xy 45.972777 112.002696) (xy 46.007444 112.030684) (xy 46.032865 112.060031) (xy 46.032869 112.060035) (xy 46.03625 112.063938) (xy 46.208126 112.206632) (xy 46.401 112.319338) (xy 46.609692 112.39903) (xy 46.61476 112.400061) (xy 46.614763 112.400062) (xy 46.676965 112.412717) (xy 46.828597 112.443567) (xy 46.833772 112.443757) (xy 46.833774 112.443757) (xy 47.046673 112.451564) (xy 47.046677 112.451564) (xy 47.051837 112.451753) (xy 47.056957 112.451097) (xy 47.056959 112.451097) (xy 47.268288 112.424025) (xy 47.268289 112.424025) (xy 47.273416 112.423368) (xy 47.291385 112.417977) (xy 47.482429 112.360661) (xy 47.482434 112.360659) (xy 47.487384 112.359174) (xy 47.687994 112.260896) (xy 47.86986 112.131173) (xy 47.882283 112.118794) (xy 47.978479 112.022933) (xy 48.028096 111.973489) (xy 48.035804 111.962763) (xy 48.158453 111.792077) (xy 48.159776 111.793028) (xy 48.206645 111.749857) (xy 48.27658 111.737625) (xy 48.342026 111.765144) (xy 48.369875 111.796994) (xy 48.429987 111.895088) (xy 48.57625 112.063938) (xy 48.748126 112.206632) (xy 48.941 112.319338) (xy 49.149692 112.39903) (xy 49.15476 112.400061) (xy 49.154763 112.400062) (xy 49.216965 112.412717) (xy 49.368597 112.443567) (xy 49.373772 112.443757) (xy 49.373774 112.443757) (xy 49.586673 112.451564) (xy 49.586677 112.451564) (xy 49.591837 112.451753) (xy 49.596957 112.451097) (xy 49.596959 112.451097) (xy 49.808288 112.424025) (xy 49.808289 112.424025) (xy 49.813416 112.423368) (xy 49.831385 112.417977) (xy 50.022429 112.360661) (xy 50.022434 112.360659) (xy 50.027384 112.359174) (xy 50.227994 112.260896) (xy 50.40986 112.131173) (xy 50.422283 112.118794) (xy 50.518479 112.022933) (xy 50.568096 111.973489) (xy 50.575804 111.962763) (xy 50.698453 111.792077) (xy 50.699776 111.793028) (xy 50.746645 111.749857) (xy 50.81658 111.737625) (xy 50.882026 111.765144) (xy 50.909875 111.796994) (xy 50.969987 111.895088) (xy 51.11625 112.063938) (xy 51.288126 112.206632) (xy 51.481 112.319338) (xy 51.689692 112.39903) (xy 51.69476 112.400061) (xy 51.694763 112.400062) (xy 51.756965 112.412717) (xy 51.908597 112.443567) (xy 51.913772 112.443757) (xy 51.913774 112.443757) (xy 52.126673 112.451564) (xy 52.126677 112.451564) (xy 52.131837 112.451753) (xy 52.136957 112.451097) (xy 52.136959 112.451097) (xy 52.348288 112.424025) (xy 52.348289 112.424025) (xy 52.353416 112.423368) (xy 52.371385 112.417977) (xy 52.562429 112.360661) (xy 52.562434 112.360659) (xy 52.567384 112.359174) (xy 52.767994 112.260896) (xy 52.94986 112.131173) (xy 52.962283 112.118794) (xy 53.058479 112.022933) (xy 53.108096 111.973489) (xy 53.115804 111.962763) (xy 53.238453 111.792077) (xy 53.239776 111.793028) (xy 53.286645 111.749857) (xy 53.35658 111.737625) (xy 53.422026 111.765144) (xy 53.449875 111.796994) (xy 53.509987 111.895088) (xy 53.65625 112.063938) (xy 53.828126 112.206632) (xy 54.021 112.319338) (xy 54.229692 112.39903) (xy 54.23476 112.400061) (xy 54.234763 112.400062) (xy 54.296965 112.412717) (xy 54.448597 112.443567) (xy 54.453772 112.443757) (xy 54.453774 112.443757) (xy 54.666673 112.451564) (xy 54.666677 112.451564) (xy 54.671837 112.451753) (xy 54.676957 112.451097) (xy 54.676959 112.451097) (xy 54.888288 112.424025) (xy 54.888289 112.424025) (xy 54.893416 112.423368) (xy 54.898373 112.421881) (xy 54.898377 112.42188) (xy 55.054292 112.375103) (xy 55.125287 112.374685) (xy 55.185238 112.412717) (xy 55.21511 112.477124) (xy 55.2165 112.495788) (xy 55.2165 129.671233) (xy 55.215973 129.682416) (xy 55.214298 129.689909) (xy 55.214547 129.697835) (xy 55.214547 129.697836) (xy 55.216438 129.757986) (xy 55.2165 129.761945) (xy 55.2165 129.789856) (xy 55.216997 129.79379) (xy 55.216997 129.793791) (xy 55.217005 129.793856) (xy 55.217938 129.805693) (xy 55.219327 129.849889) (xy 55.224978 129.869339) (xy 55.228987 129.8887) (xy 55.231526 129.908797) (xy 55.234445 129.916168) (xy 55.234445 129.91617) (xy 55.247804 129.949912) (xy 55.251649 129.961142) (xy 55.263982 130.003593) (xy 55.268015 130.010412) (xy 55.268017 130.010417) (xy 55.274293 130.021028) (xy 55.282988 130.038776) (xy 55.290448 130.057617) (xy 55.29511 130.064033) (xy 55.29511 130.064034) (xy 55.316436 130.093387) (xy 55.322952 130.103307) (xy 55.345458 130.141362) (xy 55.359779 130.155683) (xy 55.372619 130.170716) (xy 55.384528 130.187107) (xy 55.390634 130.192158) (xy 55.418605 130.215298) (xy 55.427384 130.223288) (xy 57.596343 132.392247) (xy 57.603887 132.400537) (xy 57.608 132.407018) (xy 57.613777 132.412443) (xy 57.657667 132.453658) (xy 57.660509 132.456413) (xy 57.680231 132.476135) (xy 57.683355 132.478558) (xy 57.683359 132.478562) (xy 57.683424 132.478612) (xy 57.692445 132.486317) (xy 57.724679 132.516586) (xy 57.731627 132.520405) (xy 57.731629 132.520407) (xy 57.742432 132.526346) (xy 57.758959 132.537202) (xy 57.768698 132.544757) (xy 57.7687 132.544758) (xy 57.77496 132.549614) (xy 57.81554 132.567174) (xy 57.826188 132.572391) (xy 57.86494 132.593695) (xy 57.872616 132.595666) (xy 57.872619 132.595667) (xy 57.884562 132.598733) (xy 57.903267 132.605137) (xy 57.921855 132.613181) (xy 57.929678 132.61442) (xy 57.929688 132.614423) (xy 57.965524 132.620099) (xy 57.977144 132.622505) (xy 58.005691 132.629834) (xy 58.01997 132.6335) (xy 58.040224 132.6335) (xy 58.059934 132.635051) (xy 58.079943 132.63822) (xy 58.087835 132.637474) (xy 58.123961 132.634059) (xy 58.135819 132.6335) (xy 60.761186 132.6335) (xy 60.829307 132.653502) (xy 60.8758 132.707158) (xy 60.88515 132.750141) (xy 60.886496 132.75) (xy 60.896062 132.841011) (xy 60.906458 132.939928) (xy 60.965473 133.121556) (xy 61.06096 133.286944) (xy 61.065378 133.291851) (xy 61.065379 133.291852) (xy 61.087694 133.316635) (xy 61.188747 133.428866) (xy 61.343248 133.541118) (xy 61.349276 133.543802) (xy 61.349278 133.543803) (xy 61.511681 133.616109) (xy 61.517712 133.618794) (xy 61.611112 133.638647) (xy 61.698056 133.657128) (xy 61.698061 133.657128) (xy 61.704513 133.6585) (xy 61.795762 133.6585) (xy 61.863883 133.678502) (xy 61.884857 133.695405) (xy 62.035189 133.845737) (xy 62.046056 133.858127) (xy 62.065524 133.883498) (xy 62.07207 133.888521) (xy 62.072073 133.888524) (xy 62.097438 133.907987) (xy 62.09744 133.907988) (xy 62.192635 133.981035) (xy 62.200261 133.984194) (xy 62.200263 133.984195) (xy 62.266647 134.011692) (xy 62.34066 134.042349) (xy 62.348847 134.043427) (xy 62.348848 134.043427) (xy 62.360053 134.044902) (xy 62.391249 134.049009) (xy 62.459626 134.058011) (xy 62.459629 134.058011) (xy 62.459637 134.058012) (xy 62.491322 134.062183) (xy 62.499511 134.063261) (xy 62.531204 134.059089) (xy 62.547647 134.058011) (xy 97.473831 134.058011) (xy 97.541952 134.078013) (xy 97.567463 134.099696) (xy 97.638747 134.178866) (xy 97.793248 134.291118) (xy 97.799276 134.293802) (xy 97.799278 134.293803) (xy 97.961681 134.366109) (xy 97.967712 134.368794) (xy 98.061113 134.388647) (xy 98.148056 134.407128) (xy 98.148061 134.407128) (xy 98.154513 134.4085) (xy 98.345487 134.4085) (xy 98.351939 134.407128) (xy 98.351944 134.407128) (xy 98.438887 134.388647) (xy 98.532288 134.368794) (xy 98.538319 134.366109) (xy 98.700722 134.293803) (xy 98.700724 134.293802) (xy 98.706752 134.291118) (xy 98.861253 134.178866) (xy 98.865675 134.173955) (xy 98.984621 134.041852) (xy 98.984622 134.041851) (xy 98.98904 134.036944) (xy 99.084527 133.871556) (xy 99.143542 133.689928) (xy 99.144619 133.679686) (xy 99.162814 133.506565) (xy 99.163504 133.5) (xy 99.156028 133.428866) (xy 99.144232 133.316635) (xy 99.144232 133.316633) (xy 99.143542 133.310072) (xy 99.084527 133.128444) (xy 99.056892 133.080578) (xy 98.992341 132.968774) (xy 98.98904 132.963056) (xy 98.968216 132.939928) (xy 98.865675 132.826045) (xy 98.865674 132.826044) (xy 98.861253 132.821134) (xy 98.706752 132.708882) (xy 98.700724 132.706198) (xy 98.700722 132.706197) (xy 98.538319 132.633891) (xy 98.538318 132.633891) (xy 98.532288 132.631206) (xy 98.438887 132.611353) (xy 98.351944 132.592872) (xy 98.351939 132.592872) (xy 98.345487 132.5915) (xy 98.154513 132.5915) (xy 98.14806 132.592872) (xy 98.148047 132.592873) (xy 98.030925 132.617769) (xy 97.960135 132.612368) (xy 97.903502 132.569551) (xy 97.884895 132.533459) (xy 97.854202 132.438996) (xy 97.852174 132.368029) (xy 97.88494 132.310964) (xy 98.116779 132.079126) (xy 98.125057 132.071593) (xy 98.131538 132.06748) (xy 98.17815 132.017842) (xy 98.180905 132.014999) (xy 98.197854 131.998051) (xy 98.200655 131.99525) (xy 98.203135 131.992053) (xy 98.21084 131.983031) (xy 98.235679 131.95658) (xy 98.241106 131.950801) (xy 98.244925 131.943855) (xy 98.244927 131.943852) (xy 98.250868 131.933046) (xy 98.261719 131.916527) (xy 98.269278 131.906781) (xy 98.274134 131.900521) (xy 98.277279 131.893252) (xy 98.277282 131.893248) (xy 98.291694 131.859943) (xy 98.296911 131.849293) (xy 98.318215 131.81054) (xy 98.323253 131.790917) (xy 98.329657 131.772214) (xy 98.334553 131.7609) (xy 98.334553 131.760899) (xy 98.337701 131.753625) (xy 98.33894 131.745802) (xy 98.338943 131.745792) (xy 98.344619 131.709956) (xy 98.347025 131.698336) (xy 98.356048 131.663191) (xy 98.356048 131.66319) (xy 98.35802 131.65551) (xy 98.35802 131.635256) (xy 98.359571 131.615545) (xy 98.3615 131.603366) (xy 98.36274 131.595537) (xy 98.358579 131.551518) (xy 98.35802 131.539661) (xy 98.35802 130.959669) (xy 98.927001 130.959669) (xy 98.927371 130.96649) (xy 98.932895 131.017352) (xy 98.936521 131.032604) (xy 98.981676 131.153054) (xy 98.990214 131.168649) (xy 99.066715 131.270724) (xy 99.079276 131.283285) (xy 99.181351 131.359786) (xy 99.196946 131.368324) (xy 99.317394 131.413478) (xy 99.332649 131.417105) (xy 99.383514 131.422631) (xy 99.390328 131.423) (xy 100.027885 131.423) (xy 100.043124 131.418525) (xy 100.044329 131.417135) (xy 100.046 131.409452) (xy 100.046 130.172115) (xy 100.041525 130.156876) (xy 100.040135 130.155671) (xy 100.032452 130.154) (xy 98.945116 130.154) (xy 98.929877 130.158475) (xy 98.928672 130.159865) (xy 98.927001 130.167548) (xy 98.927001 130.959669) (xy 98.35802 130.959669) (xy 98.35802 129.627885) (xy 98.927 129.627885) (xy 98.931475 129.643124) (xy 98.932865 129.644329) (xy 98.940548 129.646) (xy 100.027885 129.646) (xy 100.043124 129.641525) (xy 100.044329 129.640135) (xy 100.046 129.632452) (xy 100.046 128.395116) (xy 100.041525 128.379877) (xy 100.040135 128.378672) (xy 100.032452 128.377001) (xy 99.390331 128.377001) (xy 99.38351 128.377371) (xy 99.332648 128.382895) (xy 99.317396 128.386521) (xy 99.196946 128.431676) (xy 99.181351 128.440214) (xy 99.079276 128.516715) (xy 99.066715 128.529276) (xy 98.990214 128.631351) (xy 98.981676 128.646946) (xy 98.936522 128.767394) (xy 98.932895 128.782649) (xy 98.927369 128.833514) (xy 98.927 128.840328) (xy 98.927 129.627885) (xy 98.35802 129.627885) (xy 98.35802 127.990075) (xy 98.378022 127.921954) (xy 98.394925 127.900979) (xy 99.225501 127.070404) (xy 99.287813 127.036379) (xy 99.314596 127.0335) (xy 104.347262 127.0335) (xy 104.415383 127.053502) (xy 104.461876 127.107158) (xy 104.47198 127.177432) (xy 104.458098 127.219428) (xy 104.399486 127.32783) (xy 104.338102 127.526129) (xy 104.337458 127.532254) (xy 104.337458 127.532255) (xy 104.319079 127.707128) (xy 104.316404 127.732575) (xy 104.318313 127.753554) (xy 104.333268 127.917872) (xy 104.335218 127.939303) (xy 104.336956 127.945209) (xy 104.336957 127.945213) (xy 104.350161 127.990075) (xy 104.393827 128.13844) (xy 104.489999 128.3224) (xy 104.493859 128.3272) (xy 104.493859 128.327201) (xy 104.595336 128.453413) (xy 104.622432 128.519035) (xy 104.609749 128.58889) (xy 104.571592 128.63392) (xy 104.567813 128.636213) (xy 104.561565 128.641635) (xy 104.451424 128.737211) (xy 104.391763 128.788982) (xy 104.388376 128.793113) (xy 104.247354 128.9651) (xy 104.24735 128.965106) (xy 104.24397 128.969228) (xy 104.24133 128.973866) (xy 104.219055 129.012998) (xy 104.167973 129.062304) (xy 104.098343 129.076166) (xy 104.032272 129.050183) (xy 104.005033 129.021033) (xy 103.996505 129.008365) (xy 103.949289 128.938232) (xy 103.917271 128.890674) (xy 103.917269 128.890672) (xy 103.914291 128.886248) (xy 103.870486 128.840328) (xy 103.794979 128.761177) (xy 103.753399 128.71759) (xy 103.566391 128.578452) (xy 103.56164 128.576036) (xy 103.561636 128.576034) (xy 103.438311 128.513333) (xy 103.358612 128.472812) (xy 103.136005 128.40369) (xy 103.128379 128.402679) (xy 102.910219 128.373764) (xy 102.910215 128.373764) (xy 102.904935 128.373064) (xy 102.899606 128.373264) (xy 102.899605 128.373264) (xy 102.804876 128.376821) (xy 102.672007 128.381809) (xy 102.443883 128.429674) (xy 102.438924 128.431632) (xy 102.438922 128.431633) (xy 102.417194 128.440214) (xy 102.227086 128.515292) (xy 102.220918 128.519035) (xy 102.032374 128.633445) (xy 102.032371 128.633447) (xy 102.027813 128.636213) (xy 102.023782 128.639711) (xy 102.023778 128.639714) (xy 101.852725 128.788146) (xy 101.788166 128.817686) (xy 101.717885 128.807632) (xy 101.664196 128.761177) (xy 101.652163 128.737211) (xy 101.618324 128.646946) (xy 101.609786 128.631351) (xy 101.533285 128.529276) (xy 101.520724 128.516715) (xy 101.418649 128.440214) (xy 101.403054 128.431676) (xy 101.282606 128.386522) (xy 101.267351 128.382895) (xy 101.216486 128.377369) (xy 101.209672 128.377) (xy 100.572115 128.377) (xy 100.556876 128.381475) (xy 100.555671 128.382865) (xy 100.554 128.390548) (xy 100.554 131.404884) (xy 100.558475 131.420123) (xy 100.559865 131.421328) (xy 100.567548 131.422999) (xy 101.209669 131.422999) (xy 101.21649 131.422629) (xy 101.267352 131.417105) (xy 101.282604 131.413479) (xy 101.403054 131.368324) (xy 101.418649 131.359786) (xy 101.520724 131.283285) (xy 101.533285 131.270724) (xy 101.609786 131.168649) (xy 101.618324 131.153054) (xy 101.653798 131.058428) (xy 101.69644 131.001664) (xy 101.763001 130.976964) (xy 101.83235 130.992172) (xy 101.86295 131.015687) (xy 101.922916 131.078548) (xy 101.922921 131.078553) (xy 101.926601 131.08241) (xy 102.113609 131.221548) (xy 102.11836 131.223964) (xy 102.118364 131.223966) (xy 102.169149 131.249786) (xy 102.321388 131.327188) (xy 102.543995 131.39631) (xy 102.549284 131.397011) (xy 102.769781 131.426236) (xy 102.769785 131.426236) (xy 102.775065 131.426936) (xy 102.780394 131.426736) (xy 102.780395 131.426736) (xy 102.875124 131.423179) (xy 103.007993 131.418191) (xy 103.236117 131.370326) (xy 103.241076 131.368368) (xy 103.241078 131.368367) (xy 103.392363 131.308621) (xy 103.452914 131.284708) (xy 103.644175 131.168649) (xy 103.647626 131.166555) (xy 103.647629 131.166553) (xy 103.652187 131.163787) (xy 103.664556 131.153054) (xy 103.824204 131.014518) (xy 103.824206 131.014516) (xy 103.828237 131.011018) (xy 103.873942 130.955277) (xy 103.972646 130.8349) (xy 103.97265 130.834894) (xy 103.97603 130.830772) (xy 104.000945 130.787002) (xy 104.052027 130.737696) (xy 104.121657 130.723834) (xy 104.187728 130.749817) (xy 104.214967 130.778967) (xy 104.28617 130.884729) (xy 104.305709 130.913752) (xy 104.466601 131.08241) (xy 104.653609 131.221548) (xy 104.65836 131.223964) (xy 104.658364 131.223966) (xy 104.709149 131.249786) (xy 104.861388 131.327188) (xy 105.083995 131.39631) (xy 105.089284 131.397011) (xy 105.309781 131.426236) (xy 105.309785 131.426236) (xy 105.315065 131.426936) (xy 105.320394 131.426736) (xy 105.320395 131.426736) (xy 105.415124 131.423179) (xy 105.547993 131.418191) (xy 105.776117 131.370326) (xy 105.781076 131.368368) (xy 105.781078 131.368367) (xy 105.932363 131.308621) (xy 105.992914 131.284708) (xy 106.184175 131.168649) (xy 106.187626 131.166555) (xy 106.187629 131.166553) (xy 106.192187 131.163787) (xy 106.204556 131.153054) (xy 106.364204 131.014518) (xy 106.364206 131.014516) (xy 106.368237 131.011018) (xy 106.413942 130.955277) (xy 106.512646 130.8349) (xy 106.51265 130.834894) (xy 106.51603 130.830772) (xy 106.540945 130.787002) (xy 106.592027 130.737696) (xy 106.661657 130.723834) (xy 106.727728 130.749817) (xy 106.754967 130.778967) (xy 106.82617 130.884729) (xy 106.845709 130.913752) (xy 107.006601 131.08241) (xy 107.193609 131.221548) (xy 107.19836 131.223964) (xy 107.198364 131.223966) (xy 107.249149 131.249786) (xy 107.401388 131.327188) (xy 107.623995 131.39631) (xy 107.629284 131.397011) (xy 107.849781 131.426236) (xy 107.849785 131.426236) (xy 107.855065 131.426936) (xy 107.860394 131.426736) (xy 107.860395 131.426736) (xy 107.955124 131.423179) (xy 108.087993 131.418191) (xy 108.316117 131.370326) (xy 108.321076 131.368368) (xy 108.321078 131.368367) (xy 108.472363 131.308621) (xy 108.532914 131.284708) (xy 108.724175 131.168649) (xy 108.727626 131.166555) (xy 108.727629 131.166553) (xy 108.732187 131.163787) (xy 108.744556 131.153054) (xy 108.904204 131.014518) (xy 108.904206 131.014516) (xy 108.908237 131.011018) (xy 108.950341 130.959669) (xy 110.527001 130.959669) (xy 110.527371 130.96649) (xy 110.532895 131.017352) (xy 110.536521 131.032604) (xy 110.581676 131.153054) (xy 110.590214 131.168649) (xy 110.666715 131.270724) (xy 110.679276 131.283285) (xy 110.781351 131.359786) (xy 110.796946 131.368324) (xy 110.917394 131.413478) (xy 110.932649 131.417105) (xy 110.983514 131.422631) (xy 110.990328 131.423) (xy 111.627885 131.423) (xy 111.643124 131.418525) (xy 111.644329 131.417135) (xy 111.646 131.409452) (xy 111.646 130.172115) (xy 111.641525 130.156876) (xy 111.640135 130.155671) (xy 111.632452 130.154) (xy 110.545116 130.154) (xy 110.529877 130.158475) (xy 110.528672 130.159865) (xy 110.527001 130.167548) (xy 110.527001 130.959669) (xy 108.950341 130.959669) (xy 108.953942 130.955277) (xy 109.052646 130.8349) (xy 109.05265 130.834894) (xy 109.05603 130.830772) (xy 109.17134 130.6282) (xy 109.190272 130.576045) (xy 109.249051 130.414112) (xy 109.249052 130.414108) (xy 109.250871 130.409097) (xy 109.259817 130.359625) (xy 109.29161 130.183809) (xy 109.291611 130.183802) (xy 109.292348 130.179725) (xy 109.2935 130.155298) (xy 109.2935 129.691473) (xy 109.288105 129.627885) (xy 110.527 129.627885) (xy 110.531475 129.643124) (xy 110.532865 129.644329) (xy 110.540548 129.646) (xy 111.627885 129.646) (xy 111.643124 129.641525) (xy 111.644329 129.640135) (xy 111.646 129.632452) (xy 111.646 128.395116) (xy 111.641525 128.379877) (xy 111.640135 128.378672) (xy 111.632452 128.377001) (xy 110.990331 128.377001) (xy 110.98351 128.377371) (xy 110.932648 128.382895) (xy 110.917396 128.386521) (xy 110.796946 128.431676) (xy 110.781351 128.440214) (xy 110.679276 128.516715) (xy 110.666715 128.529276) (xy 110.590214 128.631351) (xy 110.581676 128.646946) (xy 110.536522 128.767394) (xy 110.532895 128.782649) (xy 110.527369 128.833514) (xy 110.527 128.840328) (xy 110.527 129.627885) (xy 109.288105 129.627885) (xy 109.278759 129.517743) (xy 109.27664 129.509578) (xy 109.221541 129.297292) (xy 109.221539 129.297288) (xy 109.2202 129.292127) (xy 109.189622 129.224247) (xy 109.126655 129.084464) (xy 109.126654 129.084461) (xy 109.124465 129.079603) (xy 108.994291 128.886248) (xy 108.950486 128.840328) (xy 108.874979 128.761177) (xy 108.833399 128.71759) (xy 108.646391 128.578452) (xy 108.64164 128.576036) (xy 108.641636 128.576034) (xy 108.518311 128.513333) (xy 108.438612 128.472812) (xy 108.216005 128.40369) (xy 108.208379 128.402679) (xy 107.990219 128.373764) (xy 107.990215 128.373764) (xy 107.984935 128.373064) (xy 107.979606 128.373264) (xy 107.979605 128.373264) (xy 107.884876 128.376821) (xy 107.752007 128.381809) (xy 107.523883 128.429674) (xy 107.518924 128.431632) (xy 107.518922 128.431633) (xy 107.497194 128.440214) (xy 107.307086 128.515292) (xy 107.300918 128.519035) (xy 107.112374 128.633445) (xy 107.112371 128.633447) (xy 107.107813 128.636213) (xy 107.103785 128.639708) (xy 107.103784 128.639709) (xy 106.991424 128.737211) (xy 106.931763 128.788982) (xy 106.928376 128.793113) (xy 106.787354 128.9651) (xy 106.78735 128.965106) (xy 106.78397 128.969228) (xy 106.78133 128.973866) (xy 106.759055 129.012998) (xy 106.707973 129.062304) (xy 106.638343 129.076166) (xy 106.572272 129.050183) (xy 106.545033 129.021033) (xy 106.536505 129.008365) (xy 106.489289 128.938232) (xy 106.457271 128.890674) (xy 106.457269 128.890672) (xy 106.454291 128.886248) (xy 106.410486 128.840328) (xy 106.334979 128.761177) (xy 106.293399 128.71759) (xy 106.184224 128.636362) (xy 106.141512 128.579653) (xy 106.136239 128.508853) (xy 106.162354 128.454958) (xy 106.163607 128.453444) (xy 106.261783 128.33477) (xy 106.265876 128.327201) (xy 106.357584 128.15759) (xy 106.357586 128.157585) (xy 106.360514 128.15217) (xy 106.421898 127.953871) (xy 106.423578 127.937884) (xy 106.442952 127.753554) (xy 106.442952 127.753552) (xy 106.443596 127.747425) (xy 106.424782 127.540697) (xy 106.422298 127.532255) (xy 106.367912 127.347469) (xy 106.366173 127.34156) (xy 106.301512 127.217875) (xy 106.287678 127.14824) (xy 106.313688 127.082179) (xy 106.371284 127.040667) (xy 106.413174 127.0335) (xy 115.947262 127.0335) (xy 116.015383 127.053502) (xy 116.061876 127.107158) (xy 116.07198 127.177432) (xy 116.058098 127.219428) (xy 115.999486 127.32783) (xy 115.938102 127.526129) (xy 115.937458 127.532254) (xy 115.937458 127.532255) (xy 115.919079 127.707128) (xy 115.916404 127.732575) (xy 115.918313 127.753554) (xy 115.933268 127.917872) (xy 115.935218 127.939303) (xy 115.936956 127.945209) (xy 115.936957 127.945213) (xy 115.950161 127.990075) (xy 115.993827 128.13844) (xy 116.089999 128.3224) (xy 116.093859 128.3272) (xy 116.093859 128.327201) (xy 116.195336 128.453413) (xy 116.222432 128.519035) (xy 116.209749 128.58889) (xy 116.171592 128.63392) (xy 116.167813 128.636213) (xy 116.161565 128.641635) (xy 116.051424 128.737211) (xy 115.991763 128.788982) (xy 115.988376 128.793113) (xy 115.847354 128.9651) (xy 115.84735 128.965106) (xy 115.84397 128.969228) (xy 115.84133 128.973866) (xy 115.819055 129.012998) (xy 115.767973 129.062304) (xy 115.698343 129.076166) (xy 115.632272 129.050183) (xy 115.605033 129.021033) (xy 115.596505 129.008365) (xy 115.549289 128.938232) (xy 115.517271 128.890674) (xy 115.517269 128.890672) (xy 115.514291 128.886248) (xy 115.470486 128.840328) (xy 115.394979 128.761177) (xy 115.353399 128.71759) (xy 115.166391 128.578452) (xy 115.16164 128.576036) (xy 115.161636 128.576034) (xy 115.038311 128.513333) (xy 114.958612 128.472812) (xy 114.736005 128.40369) (xy 114.728379 128.402679) (xy 114.510219 128.373764) (xy 114.510215 128.373764) (xy 114.504935 128.373064) (xy 114.499606 128.373264) (xy 114.499605 128.373264) (xy 114.404876 128.376821) (xy 114.272007 128.381809) (xy 114.043883 128.429674) (xy 114.038924 128.431632) (xy 114.038922 128.431633) (xy 114.017194 128.440214) (xy 113.827086 128.515292) (xy 113.820918 128.519035) (xy 113.632374 128.633445) (xy 113.632371 128.633447) (xy 113.627813 128.636213) (xy 113.623782 128.639711) (xy 113.623778 128.639714) (xy 113.452725 128.788146) (xy 113.388166 128.817686) (xy 113.317885 128.807632) (xy 113.264196 128.761177) (xy 113.252163 128.737211) (xy 113.218324 128.646946) (xy 113.209786 128.631351) (xy 113.133285 128.529276) (xy 113.120724 128.516715) (xy 113.018649 128.440214) (xy 113.003054 128.431676) (xy 112.882606 128.386522) (xy 112.867351 128.382895) (xy 112.816486 128.377369) (xy 112.809672 128.377) (xy 112.172115 128.377) (xy 112.156876 128.381475) (xy 112.155671 128.382865) (xy 112.154 128.390548) (xy 112.154 131.404884) (xy 112.158475 131.420123) (xy 112.159865 131.421328) (xy 112.167548 131.422999) (xy 112.809669 131.422999) (xy 112.81649 131.422629) (xy 112.867352 131.417105) (xy 112.882604 131.413479) (xy 113.003054 131.368324) (xy 113.018649 131.359786) (xy 113.120724 131.283285) (xy 113.133285 131.270724) (xy 113.209786 131.168649) (xy 113.218324 131.153054) (xy 113.253798 131.058428) (xy 113.29644 131.001664) (xy 113.363001 130.976964) (xy 113.43235 130.992172) (xy 113.46295 131.015687) (xy 113.522916 131.078548) (xy 113.522921 131.078553) (xy 113.526601 131.08241) (xy 113.713609 131.221548) (xy 113.71836 131.223964) (xy 113.718364 131.223966) (xy 113.769149 131.249786) (xy 113.921388 131.327188) (xy 114.143995 131.39631) (xy 114.149284 131.397011) (xy 114.369781 131.426236) (xy 114.369785 131.426236) (xy 114.375065 131.426936) (xy 114.380394 131.426736) (xy 114.380395 131.426736) (xy 114.475124 131.423179) (xy 114.607993 131.418191) (xy 114.836117 131.370326) (xy 114.841076 131.368368) (xy 114.841078 131.368367) (xy 114.992363 131.308621) (xy 115.052914 131.284708) (xy 115.244175 131.168649) (xy 115.247626 131.166555) (xy 115.247629 131.166553) (xy 115.252187 131.163787) (xy 115.264556 131.153054) (xy 115.424204 131.014518) (xy 115.424206 131.014516) (xy 115.428237 131.011018) (xy 115.473942 130.955277) (xy 115.572646 130.8349) (xy 115.57265 130.834894) (xy 115.57603 130.830772) (xy 115.600945 130.787002) (xy 115.652027 130.737696) (xy 115.721657 130.723834) (xy 115.787728 130.749817) (xy 115.814967 130.778967) (xy 115.88617 130.884729) (xy 115.905709 130.913752) (xy 116.066601 131.08241) (xy 116.253609 131.221548) (xy 116.25836 131.223964) (xy 116.258364 131.223966) (xy 116.309149 131.249786) (xy 116.461388 131.327188) (xy 116.683995 131.39631) (xy 116.689284 131.397011) (xy 116.909781 131.426236) (xy 116.909785 131.426236) (xy 116.915065 131.426936) (xy 116.920394 131.426736) (xy 116.920395 131.426736) (xy 117.015124 131.423179) (xy 117.147993 131.418191) (xy 117.376117 131.370326) (xy 117.381076 131.368368) (xy 117.381078 131.368367) (xy 117.532363 131.308621) (xy 117.592914 131.284708) (xy 117.784175 131.168649) (xy 117.787626 131.166555) (xy 117.787629 131.166553) (xy 117.792187 131.163787) (xy 117.804556 131.153054) (xy 117.964204 131.014518) (xy 117.964206 131.014516) (xy 117.968237 131.011018) (xy 118.013942 130.955277) (xy 118.112646 130.8349) (xy 118.11265 130.834894) (xy 118.11603 130.830772) (xy 118.140945 130.787002) (xy 118.192027 130.737696) (xy 118.261657 130.723834) (xy 118.327728 130.749817) (xy 118.354967 130.778967) (xy 118.42617 130.884729) (xy 118.445709 130.913752) (xy 118.606601 131.08241) (xy 118.793609 131.221548) (xy 118.79836 131.223964) (xy 118.798364 131.223966) (xy 118.849149 131.249786) (xy 119.001388 131.327188) (xy 119.223995 131.39631) (xy 119.229284 131.397011) (xy 119.449781 131.426236) (xy 119.449785 131.426236) (xy 119.455065 131.426936) (xy 119.460394 131.426736) (xy 119.460395 131.426736) (xy 119.555124 131.423179) (xy 119.687993 131.418191) (xy 119.916117 131.370326) (xy 119.921076 131.368368) (xy 119.921078 131.368367) (xy 120.072363 131.308621) (xy 120.132914 131.284708) (xy 120.324175 131.168649) (xy 120.327626 131.166555) (xy 120.327629 131.166553) (xy 120.332187 131.163787) (xy 120.344556 131.153054) (xy 120.504204 131.014518) (xy 120.504206 131.014516) (xy 120.508237 131.011018) (xy 120.550341 130.959669) (xy 122.027001 130.959669) (xy 122.027371 130.96649) (xy 122.032895 131.017352) (xy 122.036521 131.032604) (xy 122.081676 131.153054) (xy 122.090214 131.168649) (xy 122.166715 131.270724) (xy 122.179276 131.283285) (xy 122.281351 131.359786) (xy 122.296946 131.368324) (xy 122.417394 131.413478) (xy 122.432649 131.417105) (xy 122.483514 131.422631) (xy 122.490328 131.423) (xy 123.127885 131.423) (xy 123.143124 131.418525) (xy 123.144329 131.417135) (xy 123.146 131.409452) (xy 123.146 130.172115) (xy 123.141525 130.156876) (xy 123.140135 130.155671) (xy 123.132452 130.154) (xy 122.045116 130.154) (xy 122.029877 130.158475) (xy 122.028672 130.159865) (xy 122.027001 130.167548) (xy 122.027001 130.959669) (xy 120.550341 130.959669) (xy 120.553942 130.955277) (xy 120.652646 130.8349) (xy 120.65265 130.834894) (xy 120.65603 130.830772) (xy 120.77134 130.6282) (xy 120.790272 130.576045) (xy 120.849051 130.414112) (xy 120.849052 130.414108) (xy 120.850871 130.409097) (xy 120.859817 130.359625) (xy 120.89161 130.183809) (xy 120.891611 130.183802) (xy 120.892348 130.179725) (xy 120.8935 130.155298) (xy 120.8935 129.691473) (xy 120.888105 129.627885) (xy 122.027 129.627885) (xy 122.031475 129.643124) (xy 122.032865 129.644329) (xy 122.040548 129.646) (xy 123.127885 129.646) (xy 123.143124 129.641525) (xy 123.144329 129.640135) (xy 123.146 129.632452) (xy 123.146 128.395116) (xy 123.141525 128.379877) (xy 123.140135 128.378672) (xy 123.132452 128.377001) (xy 122.490331 128.377001) (xy 122.48351 128.377371) (xy 122.432648 128.382895) (xy 122.417396 128.386521) (xy 122.296946 128.431676) (xy 122.281351 128.440214) (xy 122.179276 128.516715) (xy 122.166715 128.529276) (xy 122.090214 128.631351) (xy 122.081676 128.646946) (xy 122.036522 128.767394) (xy 122.032895 128.782649) (xy 122.027369 128.833514) (xy 122.027 128.840328) (xy 122.027 129.627885) (xy 120.888105 129.627885) (xy 120.878759 129.517743) (xy 120.87664 129.509578) (xy 120.821541 129.297292) (xy 120.821539 129.297288) (xy 120.8202 129.292127) (xy 120.789622 129.224247) (xy 120.726655 129.084464) (xy 120.726654 129.084461) (xy 120.724465 129.079603) (xy 120.594291 128.886248) (xy 120.550486 128.840328) (xy 120.474979 128.761177) (xy 120.433399 128.71759) (xy 120.246391 128.578452) (xy 120.24164 128.576036) (xy 120.241636 128.576034) (xy 120.118311 128.513333) (xy 120.038612 128.472812) (xy 119.816005 128.40369) (xy 119.808379 128.402679) (xy 119.590219 128.373764) (xy 119.590215 128.373764) (xy 119.584935 128.373064) (xy 119.579606 128.373264) (xy 119.579605 128.373264) (xy 119.484876 128.376821) (xy 119.352007 128.381809) (xy 119.123883 128.429674) (xy 119.118924 128.431632) (xy 119.118922 128.431633) (xy 119.097194 128.440214) (xy 118.907086 128.515292) (xy 118.900918 128.519035) (xy 118.712374 128.633445) (xy 118.712371 128.633447) (xy 118.707813 128.636213) (xy 118.703785 128.639708) (xy 118.703784 128.639709) (xy 118.591424 128.737211) (xy 118.531763 128.788982) (xy 118.528376 128.793113) (xy 118.387354 128.9651) (xy 118.38735 128.965106) (xy 118.38397 128.969228) (xy 118.38133 128.973866) (xy 118.359055 129.012998) (xy 118.307973 129.062304) (xy 118.238343 129.076166) (xy 118.172272 129.050183) (xy 118.145033 129.021033) (xy 118.136505 129.008365) (xy 118.089289 128.938232) (xy 118.057271 128.890674) (xy 118.057269 128.890672) (xy 118.054291 128.886248) (xy 118.010486 128.840328) (xy 117.934979 128.761177) (xy 117.893399 128.71759) (xy 117.784224 128.636362) (xy 117.741512 128.579653) (xy 117.736239 128.508853) (xy 117.762354 128.454958) (xy 117.763607 128.453444) (xy 117.861783 128.33477) (xy 117.865876 128.327201) (xy 117.957584 128.15759) (xy 117.957586 128.157585) (xy 117.960514 128.15217) (xy 118.021898 127.953871) (xy 118.023578 127.937884) (xy 118.042952 127.753554) (xy 118.042952 127.753552) (xy 118.043596 127.747425) (xy 118.024782 127.540697) (xy 118.022298 127.532255) (xy 117.967912 127.347469) (xy 117.966173 127.34156) (xy 117.901512 127.217875) (xy 117.887678 127.14824) (xy 117.913688 127.082179) (xy 117.971284 127.040667) (xy 118.013174 127.0335) (xy 127.447262 127.0335) (xy 127.515383 127.053502) (xy 127.561876 127.107158) (xy 127.57198 127.177432) (xy 127.558098 127.219428) (xy 127.499486 127.32783) (xy 127.438102 127.526129) (xy 127.437458 127.532254) (xy 127.437458 127.532255) (xy 127.419079 127.707128) (xy 127.416404 127.732575) (xy 127.418313 127.753554) (xy 127.433268 127.917872) (xy 127.435218 127.939303) (xy 127.436956 127.945209) (xy 127.436957 127.945213) (xy 127.450161 127.990075) (xy 127.493827 128.13844) (xy 127.589999 128.3224) (xy 127.593859 128.3272) (xy 127.593859 128.327201) (xy 127.695336 128.453413) (xy 127.722432 128.519035) (xy 127.709749 128.58889) (xy 127.671592 128.63392) (xy 127.667813 128.636213) (xy 127.661565 128.641635) (xy 127.551424 128.737211) (xy 127.491763 128.788982) (xy 127.488376 128.793113) (xy 127.347354 128.9651) (xy 127.34735 128.965106) (xy 127.34397 128.969228) (xy 127.34133 128.973866) (xy 127.319055 129.012998) (xy 127.267973 129.062304) (xy 127.198343 129.076166) (xy 127.132272 129.050183) (xy 127.105033 129.021033) (xy 127.096505 129.008365) (xy 127.049289 128.938232) (xy 127.017271 128.890674) (xy 127.017269 128.890672) (xy 127.014291 128.886248) (xy 126.970486 128.840328) (xy 126.894979 128.761177) (xy 126.853399 128.71759) (xy 126.666391 128.578452) (xy 126.66164 128.576036) (xy 126.661636 128.576034) (xy 126.538311 128.513333) (xy 126.458612 128.472812) (xy 126.236005 128.40369) (xy 126.228379 128.402679) (xy 126.010219 128.373764) (xy 126.010215 128.373764) (xy 126.004935 128.373064) (xy 125.999606 128.373264) (xy 125.999605 128.373264) (xy 125.904876 128.376821) (xy 125.772007 128.381809) (xy 125.543883 128.429674) (xy 125.538924 128.431632) (xy 125.538922 128.431633) (xy 125.517194 128.440214) (xy 125.327086 128.515292) (xy 125.320918 128.519035) (xy 125.132374 128.633445) (xy 125.132371 128.633447) (xy 125.127813 128.636213) (xy 125.123782 128.639711) (xy 125.123778 128.639714) (xy 124.952725 128.788146) (xy 124.888166 128.817686) (xy 124.817885 128.807632) (xy 124.764196 128.761177) (xy 124.752163 128.737211) (xy 124.718324 128.646946) (xy 124.709786 128.631351) (xy 124.633285 128.529276) (xy 124.620724 128.516715) (xy 124.518649 128.440214) (xy 124.503054 128.431676) (xy 124.382606 128.386522) (xy 124.367351 128.382895) (xy 124.316486 128.377369) (xy 124.309672 128.377) (xy 123.672115 128.377) (xy 123.656876 128.381475) (xy 123.655671 128.382865) (xy 123.654 128.390548) (xy 123.654 131.404884) (xy 123.658475 131.420123) (xy 123.659865 131.421328) (xy 123.667548 131.422999) (xy 124.309669 131.422999) (xy 124.31649 131.422629) (xy 124.367352 131.417105) (xy 124.382604 131.413479) (xy 124.503054 131.368324) (xy 124.518649 131.359786) (xy 124.620724 131.283285) (xy 124.633285 131.270724) (xy 124.709786 131.168649) (xy 124.718324 131.153054) (xy 124.753798 131.058428) (xy 124.79644 131.001664) (xy 124.863001 130.976964) (xy 124.93235 130.992172) (xy 124.96295 131.015687) (xy 125.022916 131.078548) (xy 125.022921 131.078553) (xy 125.026601 131.08241) (xy 125.213609 131.221548) (xy 125.21836 131.223964) (xy 125.218364 131.223966) (xy 125.269149 131.249786) (xy 125.421388 131.327188) (xy 125.643995 131.39631) (xy 125.649284 131.397011) (xy 125.869781 131.426236) (xy 125.869785 131.426236) (xy 125.875065 131.426936) (xy 125.880394 131.426736) (xy 125.880395 131.426736) (xy 125.975124 131.423179) (xy 126.107993 131.418191) (xy 126.336117 131.370326) (xy 126.341076 131.368368) (xy 126.341078 131.368367) (xy 126.492363 131.308621) (xy 126.552914 131.284708) (xy 126.744175 131.168649) (xy 126.747626 131.166555) (xy 126.747629 131.166553) (xy 126.752187 131.163787) (xy 126.764556 131.153054) (xy 126.924204 131.014518) (xy 126.924206 131.014516) (xy 126.928237 131.011018) (xy 126.973942 130.955277) (xy 127.072646 130.8349) (xy 127.07265 130.834894) (xy 127.07603 130.830772) (xy 127.100945 130.787002) (xy 127.152027 130.737696) (xy 127.221657 130.723834) (xy 127.287728 130.749817) (xy 127.314967 130.778967) (xy 127.38617 130.884729) (xy 127.405709 130.913752) (xy 127.566601 131.08241) (xy 127.753609 131.221548) (xy 127.75836 131.223964) (xy 127.758364 131.223966) (xy 127.809149 131.249786) (xy 127.961388 131.327188) (xy 128.183995 131.39631) (xy 128.189284 131.397011) (xy 128.409781 131.426236) (xy 128.409785 131.426236) (xy 128.415065 131.426936) (xy 128.420394 131.426736) (xy 128.420395 131.426736) (xy 128.515124 131.423179) (xy 128.647993 131.418191) (xy 128.876117 131.370326) (xy 128.881076 131.368368) (xy 128.881078 131.368367) (xy 129.032363 131.308621) (xy 129.092914 131.284708) (xy 129.284175 131.168649) (xy 129.287626 131.166555) (xy 129.287629 131.166553) (xy 129.292187 131.163787) (xy 129.304556 131.153054) (xy 129.464204 131.014518) (xy 129.464206 131.014516) (xy 129.468237 131.011018) (xy 129.513942 130.955277) (xy 129.612646 130.8349) (xy 129.61265 130.834894) (xy 129.61603 130.830772) (xy 129.640945 130.787002) (xy 129.692027 130.737696) (xy 129.761657 130.723834) (xy 129.827728 130.749817) (xy 129.854967 130.778967) (xy 129.92617 130.884729) (xy 129.945709 130.913752) (xy 130.106601 131.08241) (xy 130.293609 131.221548) (xy 130.29836 131.223964) (xy 130.298364 131.223966) (xy 130.349149 131.249786) (xy 130.501388 131.327188) (xy 130.723995 131.39631) (xy 130.729284 131.397011) (xy 130.949781 131.426236) (xy 130.949785 131.426236) (xy 130.955065 131.426936) (xy 130.960394 131.426736) (xy 130.960395 131.426736) (xy 131.055124 131.423179) (xy 131.187993 131.418191) (xy 131.416117 131.370326) (xy 131.421076 131.368368) (xy 131.421078 131.368367) (xy 131.572363 131.308621) (xy 131.632914 131.284708) (xy 131.824175 131.168649) (xy 131.827626 131.166555) (xy 131.827629 131.166553) (xy 131.832187 131.163787) (xy 131.844556 131.153054) (xy 132.004204 131.014518) (xy 132.004206 131.014516) (xy 132.008237 131.011018) (xy 132.050341 130.959669) (xy 133.627001 130.959669) (xy 133.627371 130.96649) (xy 133.632895 131.017352) (xy 133.636521 131.032604) (xy 133.681676 131.153054) (xy 133.690214 131.168649) (xy 133.766715 131.270724) (xy 133.779276 131.283285) (xy 133.881351 131.359786) (xy 133.896946 131.368324) (xy 134.017394 131.413478) (xy 134.032649 131.417105) (xy 134.083514 131.422631) (xy 134.090328 131.423) (xy 134.727885 131.423) (xy 134.743124 131.418525) (xy 134.744329 131.417135) (xy 134.746 131.409452) (xy 134.746 130.172115) (xy 134.741525 130.156876) (xy 134.740135 130.155671) (xy 134.732452 130.154) (xy 133.645116 130.154) (xy 133.629877 130.158475) (xy 133.628672 130.159865) (xy 133.627001 130.167548) (xy 133.627001 130.959669) (xy 132.050341 130.959669) (xy 132.053942 130.955277) (xy 132.152646 130.8349) (xy 132.15265 130.834894) (xy 132.15603 130.830772) (xy 132.27134 130.6282) (xy 132.290272 130.576045) (xy 132.349051 130.414112) (xy 132.349052 130.414108) (xy 132.350871 130.409097) (xy 132.359817 130.359625) (xy 132.39161 130.183809) (xy 132.391611 130.183802) (xy 132.392348 130.179725) (xy 132.3935 130.155298) (xy 132.3935 129.691473) (xy 132.388105 129.627885) (xy 133.627 129.627885) (xy 133.631475 129.643124) (xy 133.632865 129.644329) (xy 133.640548 129.646) (xy 134.727885 129.646) (xy 134.743124 129.641525) (xy 134.744329 129.640135) (xy 134.746 129.632452) (xy 134.746 128.395116) (xy 134.741525 128.379877) (xy 134.740135 128.378672) (xy 134.732452 128.377001) (xy 134.090331 128.377001) (xy 134.08351 128.377371) (xy 134.032648 128.382895) (xy 134.017396 128.386521) (xy 133.896946 128.431676) (xy 133.881351 128.440214) (xy 133.779276 128.516715) (xy 133.766715 128.529276) (xy 133.690214 128.631351) (xy 133.681676 128.646946) (xy 133.636522 128.767394) (xy 133.632895 128.782649) (xy 133.627369 128.833514) (xy 133.627 128.840328) (xy 133.627 129.627885) (xy 132.388105 129.627885) (xy 132.378759 129.517743) (xy 132.37664 129.509578) (xy 132.321541 129.297292) (xy 132.321539 129.297288) (xy 132.3202 129.292127) (xy 132.289622 129.224247) (xy 132.226655 129.084464) (xy 132.226654 129.084461) (xy 132.224465 129.079603) (xy 132.094291 128.886248) (xy 132.050486 128.840328) (xy 131.974979 128.761177) (xy 131.933399 128.71759) (xy 131.746391 128.578452) (xy 131.74164 128.576036) (xy 131.741636 128.576034) (xy 131.618311 128.513333) (xy 131.538612 128.472812) (xy 131.316005 128.40369) (xy 131.308379 128.402679) (xy 131.090219 128.373764) (xy 131.090215 128.373764) (xy 131.084935 128.373064) (xy 131.079606 128.373264) (xy 131.079605 128.373264) (xy 130.984876 128.376821) (xy 130.852007 128.381809) (xy 130.623883 128.429674) (xy 130.618924 128.431632) (xy 130.618922 128.431633) (xy 130.597194 128.440214) (xy 130.407086 128.515292) (xy 130.400918 128.519035) (xy 130.212374 128.633445) (xy 130.212371 128.633447) (xy 130.207813 128.636213) (xy 130.203785 128.639708) (xy 130.203784 128.639709) (xy 130.091424 128.737211) (xy 130.031763 128.788982) (xy 130.028376 128.793113) (xy 129.887354 128.9651) (xy 129.88735 128.965106) (xy 129.88397 128.969228) (xy 129.88133 128.973866) (xy 129.859055 129.012998) (xy 129.807973 129.062304) (xy 129.738343 129.076166) (xy 129.672272 129.050183) (xy 129.645033 129.021033) (xy 129.636505 129.008365) (xy 129.589289 128.938232) (xy 129.557271 128.890674) (xy 129.557269 128.890672) (xy 129.554291 128.886248) (xy 129.510486 128.840328) (xy 129.434979 128.761177) (xy 129.393399 128.71759) (xy 129.284224 128.636362) (xy 129.241512 128.579653) (xy 129.236239 128.508853) (xy 129.262354 128.454958) (xy 129.263607 128.453444) (xy 129.361783 128.33477) (xy 129.365876 128.327201) (xy 129.457584 128.15759) (xy 129.457586 128.157585) (xy 129.460514 128.15217) (xy 129.521898 127.953871) (xy 129.523578 127.937884) (xy 129.542952 127.753554) (xy 129.542952 127.753552) (xy 129.543596 127.747425) (xy 129.524782 127.540697) (xy 129.522298 127.532255) (xy 129.467912 127.347469) (xy 129.466173 127.34156) (xy 129.401512 127.217875) (xy 129.387678 127.14824) (xy 129.413688 127.082179) (xy 129.471284 127.040667) (xy 129.513174 127.0335) (xy 139.047262 127.0335) (xy 139.115383 127.053502) (xy 139.161876 127.107158) (xy 139.17198 127.177432) (xy 139.158098 127.219428) (xy 139.099486 127.32783) (xy 139.038102 127.526129) (xy 139.037458 127.532254) (xy 139.037458 127.532255) (xy 139.019079 127.707128) (xy 139.016404 127.732575) (xy 139.018313 127.753554) (xy 139.033268 127.917872) (xy 139.035218 127.939303) (xy 139.036956 127.945209) (xy 139.036957 127.945213) (xy 139.050161 127.990075) (xy 139.093827 128.13844) (xy 139.189999 128.3224) (xy 139.193859 128.3272) (xy 139.193859 128.327201) (xy 139.295336 128.453413) (xy 139.322432 128.519035) (xy 139.309749 128.58889) (xy 139.271592 128.63392) (xy 139.267813 128.636213) (xy 139.261565 128.641635) (xy 139.151424 128.737211) (xy 139.091763 128.788982) (xy 139.088376 128.793113) (xy 138.947354 128.9651) (xy 138.94735 128.965106) (xy 138.94397 128.969228) (xy 138.94133 128.973866) (xy 138.919055 129.012998) (xy 138.867973 129.062304) (xy 138.798343 129.076166) (xy 138.732272 129.050183) (xy 138.705033 129.021033) (xy 138.696505 129.008365) (xy 138.649289 128.938232) (xy 138.617271 128.890674) (xy 138.617269 128.890672) (xy 138.614291 128.886248) (xy 138.570486 128.840328) (xy 138.494979 128.761177) (xy 138.453399 128.71759) (xy 138.266391 128.578452) (xy 138.26164 128.576036) (xy 138.261636 128.576034) (xy 138.138311 128.513333) (xy 138.058612 128.472812) (xy 137.836005 128.40369) (xy 137.828379 128.402679) (xy 137.610219 128.373764) (xy 137.610215 128.373764) (xy 137.604935 128.373064) (xy 137.599606 128.373264) (xy 137.599605 128.373264) (xy 137.504876 128.376821) (xy 137.372007 128.381809) (xy 137.143883 128.429674) (xy 137.138924 128.431632) (xy 137.138922 128.431633) (xy 137.117194 128.440214) (xy 136.927086 128.515292) (xy 136.920918 128.519035) (xy 136.732374 128.633445) (xy 136.732371 128.633447) (xy 136.727813 128.636213) (xy 136.723782 128.639711) (xy 136.723778 128.639714) (xy 136.552725 128.788146) (xy 136.488166 128.817686) (xy 136.417885 128.807632) (xy 136.364196 128.761177) (xy 136.352163 128.737211) (xy 136.318324 128.646946) (xy 136.309786 128.631351) (xy 136.233285 128.529276) (xy 136.220724 128.516715) (xy 136.118649 128.440214) (xy 136.103054 128.431676) (xy 135.982606 128.386522) (xy 135.967351 128.382895) (xy 135.916486 128.377369) (xy 135.909672 128.377) (xy 135.272115 128.377) (xy 135.256876 128.381475) (xy 135.255671 128.382865) (xy 135.254 128.390548) (xy 135.254 131.404884) (xy 135.258475 131.420123) (xy 135.259865 131.421328) (xy 135.267548 131.422999) (xy 135.909669 131.422999) (xy 135.91649 131.422629) (xy 135.967352 131.417105) (xy 135.982604 131.413479) (xy 136.103054 131.368324) (xy 136.118649 131.359786) (xy 136.220724 131.283285) (xy 136.233285 131.270724) (xy 136.309786 131.168649) (xy 136.318324 131.153054) (xy 136.353798 131.058428) (xy 136.39644 131.001664) (xy 136.463001 130.976964) (xy 136.53235 130.992172) (xy 136.56295 131.015687) (xy 136.622916 131.078548) (xy 136.622921 131.078553) (xy 136.626601 131.08241) (xy 136.813609 131.221548) (xy 136.81836 131.223964) (xy 136.818364 131.223966) (xy 136.869149 131.249786) (xy 137.021388 131.327188) (xy 137.243995 131.39631) (xy 137.249284 131.397011) (xy 137.469781 131.426236) (xy 137.469785 131.426236) (xy 137.475065 131.426936) (xy 137.480394 131.426736) (xy 137.480395 131.426736) (xy 137.575124 131.423179) (xy 137.707993 131.418191) (xy 137.936117 131.370326) (xy 137.941076 131.368368) (xy 137.941078 131.368367) (xy 138.092363 131.308621) (xy 138.152914 131.284708) (xy 138.344175 131.168649) (xy 138.347626 131.166555) (xy 138.347629 131.166553) (xy 138.352187 131.163787) (xy 138.364556 131.153054) (xy 138.524204 131.014518) (xy 138.524206 131.014516) (xy 138.528237 131.011018) (xy 138.573942 130.955277) (xy 138.672646 130.8349) (xy 138.67265 130.834894) (xy 138.67603 130.830772) (xy 138.700945 130.787002) (xy 138.752027 130.737696) (xy 138.821657 130.723834) (xy 138.887728 130.749817) (xy 138.914967 130.778967) (xy 138.98617 130.884729) (xy 139.005709 130.913752) (xy 139.166601 131.08241) (xy 139.353609 131.221548) (xy 139.35836 131.223964) (xy 139.358364 131.223966) (xy 139.409149 131.249786) (xy 139.561388 131.327188) (xy 139.783995 131.39631) (xy 139.789284 131.397011) (xy 140.009781 131.426236) (xy 140.009785 131.426236) (xy 140.015065 131.426936) (xy 140.020394 131.426736) (xy 140.020395 131.426736) (xy 140.115124 131.423179) (xy 140.247993 131.418191) (xy 140.476117 131.370326) (xy 140.481076 131.368368) (xy 140.481078 131.368367) (xy 140.632363 131.308621) (xy 140.692914 131.284708) (xy 140.884175 131.168649) (xy 140.887626 131.166555) (xy 140.887629 131.166553) (xy 140.892187 131.163787) (xy 140.904556 131.153054) (xy 141.064204 131.014518) (xy 141.064206 131.014516) (xy 141.068237 131.011018) (xy 141.113942 130.955277) (xy 141.212646 130.8349) (xy 141.21265 130.834894) (xy 141.21603 130.830772) (xy 141.240945 130.787002) (xy 141.292027 130.737696) (xy 141.361657 130.723834) (xy 141.427728 130.749817) (xy 141.454967 130.778967) (xy 141.52617 130.884729) (xy 141.545709 130.913752) (xy 141.706601 131.08241) (xy 141.893609 131.221548) (xy 141.89836 131.223964) (xy 141.898364 131.223966) (xy 141.949149 131.249786) (xy 142.101388 131.327188) (xy 142.323995 131.39631) (xy 142.329284 131.397011) (xy 142.549781 131.426236) (xy 142.549785 131.426236) (xy 142.555065 131.426936) (xy 142.560394 131.426736) (xy 142.560395 131.426736) (xy 142.655124 131.423179) (xy 142.787993 131.418191) (xy 143.016117 131.370326) (xy 143.021076 131.368368) (xy 143.021078 131.368367) (xy 143.172363 131.308621) (xy 143.232914 131.284708) (xy 143.424175 131.168649) (xy 143.427626 131.166555) (xy 143.427629 131.166553) (xy 143.432187 131.163787) (xy 143.444556 131.153054) (xy 143.604204 131.014518) (xy 143.604206 131.014516) (xy 143.608237 131.011018) (xy 143.653942 130.955277) (xy 143.752646 130.8349) (xy 143.75265 130.834894) (xy 143.75603 130.830772) (xy 143.87134 130.6282) (xy 143.890272 130.576045) (xy 143.949051 130.414112) (xy 143.949052 130.414108) (xy 143.950871 130.409097) (xy 143.959817 130.359625) (xy 143.99161 130.183809) (xy 143.991611 130.183802) (xy 143.992348 130.179725) (xy 143.9935 130.155298) (xy 143.9935 129.691473) (xy 143.978759 129.517743) (xy 143.97664 129.509578) (xy 143.921541 129.297292) (xy 143.921539 129.297288) (xy 143.9202 129.292127) (xy 143.889622 129.224247) (xy 143.826655 129.084464) (xy 143.826654 129.084461) (xy 143.824465 129.079603) (xy 143.694291 128.886248) (xy 143.650486 128.840328) (xy 143.574979 128.761177) (xy 143.533399 128.71759) (xy 143.346391 128.578452) (xy 143.34164 128.576036) (xy 143.341636 128.576034) (xy 143.218311 128.513333) (xy 143.138612 128.472812) (xy 142.916005 128.40369) (xy 142.908379 128.402679) (xy 142.690219 128.373764) (xy 142.690215 128.373764) (xy 142.684935 128.373064) (xy 142.679606 128.373264) (xy 142.679605 128.373264) (xy 142.584876 128.376821) (xy 142.452007 128.381809) (xy 142.223883 128.429674) (xy 142.218924 128.431632) (xy 142.218922 128.431633) (xy 142.197194 128.440214) (xy 142.007086 128.515292) (xy 142.000918 128.519035) (xy 141.812374 128.633445) (xy 141.812371 128.633447) (xy 141.807813 128.636213) (xy 141.803785 128.639708) (xy 141.803784 128.639709) (xy 141.691424 128.737211) (xy 141.631763 128.788982) (xy 141.628376 128.793113) (xy 141.487354 128.9651) (xy 141.48735 128.965106) (xy 141.48397 128.969228) (xy 141.48133 128.973866) (xy 141.459055 129.012998) (xy 141.407973 129.062304) (xy 141.338343 129.076166) (xy 141.272272 129.050183) (xy 141.245033 129.021033) (xy 141.236505 129.008365) (xy 141.189289 128.938232) (xy 141.157271 128.890674) (xy 141.157269 128.890672) (xy 141.154291 128.886248) (xy 141.110486 128.840328) (xy 141.034979 128.761177) (xy 140.993399 128.71759) (xy 140.884224 128.636362) (xy 140.841512 128.579653) (xy 140.836239 128.508853) (xy 140.862354 128.454958) (xy 140.863607 128.453444) (xy 140.961783 128.33477) (xy 140.965876 128.327201) (xy 141.057584 128.15759) (xy 141.057586 128.157585) (xy 141.060514 128.15217) (xy 141.121898 127.953871) (xy 141.123578 127.937884) (xy 141.142952 127.753554) (xy 141.142952 127.753552) (xy 141.143596 127.747425) (xy 141.124782 127.540697) (xy 141.122298 127.532255) (xy 141.067912 127.347469) (xy 141.066173 127.34156) (xy 141.001512 127.217875) (xy 140.987678 127.14824) (xy 141.013688 127.082179) (xy 141.071284 127.040667) (xy 141.113174 127.0335) (xy 141.896233 127.0335) (xy 141.907416 127.034027) (xy 141.914909 127.035702) (xy 141.922835 127.035453) (xy 141.922836 127.035453) (xy 141.982986 127.033562) (xy 141.986945 127.0335) (xy 142.014856 127.0335) (xy 142.018791 127.033003) (xy 142.018856 127.032995) (xy 142.030693 127.032062) (xy 142.062951 127.031048) (xy 142.06697 127.030922) (xy 142.074889 127.030673) (xy 142.094343 127.025021) (xy 142.1137 127.021013) (xy 142.12593 127.019468) (xy 142.125931 127.019468) (xy 142.133797 127.018474) (xy 142.141168 127.015555) (xy 142.14117 127.015555) (xy 142.174912 127.002196) (xy 142.186142 126.998351) (xy 142.220983 126.988229) (xy 142.220984 126.988229) (xy 142.228593 126.986018) (xy 142.235412 126.981985) (xy 142.235417 126.981983) (xy 142.246028 126.975707) (xy 142.263776 126.967012) (xy 142.282617 126.959552) (xy 142.318387 126.933564) (xy 142.328307 126.927048) (xy 142.359535 126.90858) (xy 142.359538 126.908578) (xy 142.366362 126.904542) (xy 142.380683 126.890221) (xy 142.395717 126.87738) (xy 142.405694 126.870131) (xy 142.412107 126.865472) (xy 142.440298 126.831395) (xy 142.448288 126.822616) (xy 145.847703 123.423202) (xy 154.305344 123.423202) (xy 154.306962 123.432036) (xy 154.308173 123.438648) (xy 154.310234 123.461248) (xy 154.310239 123.467903) (xy 154.310246 123.476952) (xy 154.31277 123.485559) (xy 154.31277 123.485561) (xy 154.321564 123.515552) (xy 154.324592 123.528305) (xy 154.330223 123.55905) (xy 154.330225 123.559056) (xy 154.331842 123.567885) (xy 154.335872 123.575905) (xy 154.335872 123.575906) (xy 154.338893 123.581918) (xy 154.347212 123.603025) (xy 154.351632 123.618099) (xy 154.356472 123.625655) (xy 154.373333 123.651978) (xy 154.379819 123.663368) (xy 154.393852 123.691297) (xy 154.393854 123.6913) (xy 154.397882 123.699316) (xy 154.403999 123.705881) (xy 154.404 123.705882) (xy 154.408583 123.7108) (xy 154.422502 123.728738) (xy 154.43097 123.741958) (xy 154.437742 123.747856) (xy 154.437743 123.747858) (xy 154.461308 123.768385) (xy 154.470732 123.777498) (xy 154.492034 123.80036) (xy 154.492038 123.800363) (xy 154.498155 123.806928) (xy 154.508734 123.813215) (xy 154.511657 123.814952) (xy 154.530043 123.828256) (xy 154.541883 123.838569) (xy 154.570228 123.851641) (xy 154.578411 123.855415) (xy 154.590011 123.861515) (xy 154.616846 123.877462) (xy 154.624603 123.882072) (xy 154.633291 123.884306) (xy 154.633298 123.884309) (xy 154.639808 123.885983) (xy 154.661194 123.893593) (xy 154.675452 123.900169) (xy 154.715255 123.906087) (xy 154.728091 123.908685) (xy 154.767058 123.918706) (xy 154.776031 123.918412) (xy 154.776033 123.918412) (xy 154.833805 123.916517) (xy 154.837073 123.916452) (xy 155.296999 123.913306) (xy 155.313081 123.913196) (xy 155.313084 123.913196) (xy 155.354284 123.912914) (xy 155.85523 123.909488) (xy 155.864324 123.909755) (xy 155.882846 123.910969) (xy 155.906237 123.912503) (xy 155.906239 123.912503) (xy 155.915195 123.91309) (xy 155.923955 123.91114) (xy 155.923956 123.91114) (xy 155.936022 123.908454) (xy 155.965152 123.90197) (xy 155.973794 123.900361) (xy 156.024411 123.892759) (xy 156.03256 123.888987) (xy 156.041153 123.88641) (xy 156.042191 123.889871) (xy 156.095393 123.881945) (xy 156.116095 123.886618) (xy 156.149922 123.897317) (xy 156.208839 123.93693) (xy 156.236987 124.002108) (xy 156.225429 124.072158) (xy 156.177834 124.124838) (xy 156.134196 124.141467) (xy 156.11677 124.144596) (xy 156.107454 124.146269) (xy 156.096311 124.14827) (xy 156.088276 124.152273) (xy 156.08743 124.152553) (xy 156.085959 124.152962) (xy 156.085152 124.15325) (xy 156.083747 124.153867) (xy 156.082931 124.154179) (xy 156.074177 124.156164) (xy 156.066336 124.160524) (xy 156.066331 124.160526) (xy 156.022558 124.184866) (xy 156.017511 124.187524) (xy 156.005854 124.193332) (xy 155.995145 124.198667) (xy 155.991169 124.201485) (xy 155.991166 124.201487) (xy 155.990179 124.202186) (xy 155.98748 124.203849) (xy 155.984537 124.204912) (xy 155.97825 124.209505) (xy 155.945624 124.227647) (xy 155.933546 124.239885) (xy 155.933284 124.24015) (xy 155.916477 124.25443) (xy 155.901055 124.265363) (xy 155.89905 124.267265) (xy 155.897427 124.268523) (xy 155.897202 124.268716) (xy 155.893274 124.271585) (xy 155.887936 124.276923) (xy 155.878275 124.284643) (xy 155.878577 124.284998) (xy 155.871742 124.290815) (xy 155.864149 124.295606) (xy 155.846533 124.315552) (xy 155.841984 124.320703) (xy 155.834247 124.328719) (xy 155.821352 124.340948) (xy 155.818513 124.345822) (xy 155.814899 124.34988) (xy 155.814378 124.350481) (xy 155.811211 124.353648) (xy 155.804847 124.36214) (xy 155.798462 124.369983) (xy 155.786818 124.383167) (xy 155.773127 124.39867) (xy 155.766781 124.405855) (xy 155.762966 124.41398) (xy 155.761633 124.41601) (xy 155.751894 124.432218) (xy 155.750723 124.434357) (xy 155.745335 124.441546) (xy 155.73469 124.469943) (xy 155.728537 124.486355) (xy 155.72461 124.495675) (xy 155.722445 124.500287) (xy 155.704269 124.539) (xy 155.702888 124.547871) (xy 155.702179 124.550189) (xy 155.697381 124.568477) (xy 155.696855 124.570868) (xy 155.693703 124.579277) (xy 155.693038 124.58823) (xy 155.693037 124.588233) (xy 155.690156 124.627001) (xy 155.689004 124.637042) (xy 155.686881 124.650678) (xy 155.686881 124.666406) (xy 155.686534 124.675744) (xy 155.682802 124.725962) (xy 155.684675 124.734737) (xy 155.685201 124.742451) (xy 155.686881 124.758371) (xy 155.686881 124.960204) (xy 155.686875 124.960351) (xy 155.686849 124.960521) (xy 155.686881 125.00019) (xy 155.686881 125.036981) (xy 155.686905 125.03715) (xy 155.68691 125.037283) (xy 155.686914 125.041519) (xy 155.686923 125.052835) (xy 155.686895 125.053599) (xy 155.686769 125.054437) (xy 155.68678 125.056798) (xy 155.68678 125.056806) (xy 155.686953 125.093038) (xy 155.686954 125.093537) (xy 155.686983 125.129267) (xy 155.686726 125.129267) (xy 155.686736 125.131542) (xy 155.686767 125.131542) (xy 155.687305 125.168363) (xy 155.687317 125.169594) (xy 155.687411 125.189193) (xy 155.687428 125.192822) (xy 155.687408 125.19392) (xy 155.686999 125.197348) (xy 155.687172 125.202196) (xy 155.687172 125.202204) (xy 155.688186 125.230565) (xy 155.688252 125.233215) (xy 155.688458 125.247247) (xy 155.688356 125.250584) (xy 155.688364 125.255285) (xy 155.687996 125.260142) (xy 155.68838 125.265001) (xy 155.68838 125.265002) (xy 155.69006 125.286261) (xy 155.690371 125.291681) (xy 155.691006 125.309426) (xy 155.690569 125.309442) (xy 155.690857 125.310614) (xy 155.689958 125.317801) (xy 155.691388 125.326659) (xy 155.691388 125.326666) (xy 155.692052 125.330778) (xy 155.692178 125.331797) (xy 155.692187 125.332735) (xy 155.692835 125.336656) (xy 155.694283 125.34542) (xy 155.695574 125.356013) (xy 155.696342 125.365728) (xy 155.697326 125.370104) (xy 155.697327 125.370112) (xy 155.700288 125.383282) (xy 155.701744 125.390824) (xy 155.703823 125.403709) (xy 155.70508 125.414377) (xy 155.706557 125.434133) (xy 155.719427 125.468417) (xy 155.720434 125.472898) (xy 155.72253 125.476684) (xy 155.724193 125.481114) (xy 155.727557 125.492722) (xy 155.72818 125.495783) (xy 155.728162 125.495996) (xy 155.728371 125.496724) (xy 155.728783 125.498748) (xy 155.728785 125.498753) (xy 155.730575 125.507547) (xy 155.734761 125.515484) (xy 155.737201 125.522315) (xy 155.738413 125.524836) (xy 155.741116 125.533393) (xy 155.746112 125.540847) (xy 155.746116 125.540856) (xy 155.747671 125.543176) (xy 155.752744 125.551412) (xy 155.756655 125.558346) (xy 155.759976 125.564646) (xy 155.784716 125.614994) (xy 155.788157 125.618753) (xy 155.789376 125.620843) (xy 155.791525 125.623987) (xy 155.795488 125.632039) (xy 155.801553 125.638657) (xy 155.823378 125.662472) (xy 155.830086 125.670585) (xy 155.831173 125.671847) (xy 155.833846 125.675439) (xy 155.836476 125.678087) (xy 155.839645 125.681978) (xy 155.851486 125.697368) (xy 155.851488 125.69737) (xy 155.85696 125.704482) (xy 155.864207 125.709771) (xy 155.86421 125.709774) (xy 155.869422 125.713577) (xy 155.873788 125.716912) (xy 155.874214 125.717253) (xy 155.884948 125.726887) (xy 155.911256 125.753372) (xy 155.919119 125.757711) (xy 155.91934 125.757878) (xy 155.928678 125.766114) (xy 155.931546 125.768325) (xy 155.937807 125.774757) (xy 155.996884 125.808146) (xy 155.99881 125.809258) (xy 156.016918 125.819923) (xy 156.049533 125.839132) (xy 156.049535 125.839133) (xy 156.057266 125.843686) (xy 156.061792 125.844831) (xy 156.06586 125.84713) (xy 156.074599 125.849175) (xy 156.074603 125.849177) (xy 156.131913 125.86259) (xy 156.134055 125.863111) (xy 156.199865 125.879759) (xy 156.208833 125.879429) (xy 156.212256 125.879792) (xy 156.215315 125.879956) (xy 156.215315 125.879938) (xy 156.21551 125.879938) (xy 156.265862 125.880031) (xy 156.275117 125.880389) (xy 156.287846 125.881351) (xy 156.292318 125.881052) (xy 156.292327 125.881052) (xy 156.302161 125.880394) (xy 156.310796 125.880113) (xy 156.35343 125.880191) (xy 156.353433 125.880191) (xy 156.362403 125.880207) (xy 156.371019 125.877705) (xy 156.379794 125.876464) (xy 156.388486 125.87462) (xy 156.397445 125.874021) (xy 156.412448 125.868523) (xy 156.445889 125.856268) (xy 156.454101 125.853574) (xy 156.466269 125.85004) (xy 156.46627 125.85004) (xy 156.470941 125.848683) (xy 156.475342 125.846626) (xy 156.475354 125.846622) (xy 156.48187 125.843577) (xy 156.491849 125.839426) (xy 156.50159 125.835856) (xy 156.512953 125.832291) (xy 156.523556 125.829508) (xy 156.530813 125.825146) (xy 156.535554 125.823409) (xy 156.5413 125.819169) (xy 156.609866 125.804706) (xy 156.663579 125.821495) (xy 156.702869 125.844419) (xy 156.704487 125.844821) (xy 156.705937 125.845655) (xy 156.775596 125.862503) (xy 156.776276 125.86267) (xy 156.845614 125.879909) (xy 156.854581 125.879543) (xy 156.858943 125.879987) (xy 156.86806 125.880262) (xy 156.871955 125.880658) (xy 156.880668 125.882822) (xy 156.889639 125.882454) (xy 156.88964 125.882454) (xy 156.919044 125.881248) (xy 156.923645 125.881181) (xy 156.927345 125.881488) (xy 156.931802 125.881223) (xy 156.931807 125.881223) (xy 156.95262 125.879985) (xy 156.957723 125.879682) (xy 156.960024 125.879566) (xy 157.027634 125.876792) (xy 157.032196 125.875252) (xy 157.036995 125.874967) (xy 157.045825 125.871805) (xy 157.100687 125.852159) (xy 157.102871 125.851399) (xy 157.13011 125.842205) (xy 157.134723 125.840648) (xy 157.138042 125.838921) (xy 157.14219 125.837296) (xy 157.167022 125.828403) (xy 157.167023 125.828403) (xy 157.175474 125.825376) (xy 157.182737 125.820098) (xy 157.190669 125.815907) (xy 157.191202 125.816915) (xy 157.194043 125.815409) (xy 157.193638 125.814647) (xy 157.20156 125.810437) (xy 157.210006 125.80739) (xy 157.215645 125.803273) (xy 157.284202 125.789171) (xy 157.338106 125.806392) (xy 157.338748 125.806773) (xy 157.345735 125.8124) (xy 157.395341 125.832994) (xy 157.411627 125.839755) (xy 157.412392 125.840075) (xy 157.423639 125.844831) (xy 157.47827 125.867934) (xy 157.479987 125.868133) (xy 157.481583 125.868796) (xy 157.490056 125.869723) (xy 157.490059 125.869724) (xy 157.535032 125.874645) (xy 157.552586 125.876566) (xy 157.553246 125.87664) (xy 157.603978 125.882531) (xy 157.615465 125.883865) (xy 157.615466 125.883865) (xy 157.624379 125.8849) (xy 157.633227 125.883391) (xy 157.642201 125.883152) (xy 157.642205 125.883314) (xy 157.651385 125.882976) (xy 157.651363 125.882516) (xy 157.660333 125.882095) (xy 157.669265 125.882949) (xy 157.741135 125.869191) (xy 157.749627 125.867578) (xy 157.804344 125.857185) (xy 157.81302 125.855537) (xy 157.813357 125.855365) (xy 157.813732 125.855293) (xy 157.878485 125.822102) (xy 157.912597 125.80468) (xy 157.982362 125.79151) (xy 158.027236 125.806801) (xy 158.027635 125.805898) (xy 158.089146 125.833043) (xy 158.091353 125.834043) (xy 158.152326 125.862409) (xy 158.157455 125.863189) (xy 158.162204 125.865285) (xy 158.171107 125.866459) (xy 158.171114 125.866461) (xy 158.228897 125.874081) (xy 158.231305 125.874422) (xy 158.297745 125.884527) (xy 158.306641 125.883332) (xy 158.306643 125.883332) (xy 158.324793 125.880894) (xy 158.332826 125.880076) (xy 158.359846 125.878197) (xy 158.365642 125.877927) (xy 158.372898 125.877757) (xy 158.386906 125.87743) (xy 158.391321 125.876692) (xy 158.391323 125.876692) (xy 158.392372 125.876517) (xy 158.404392 125.875099) (xy 158.438096 125.872755) (xy 158.447055 125.872132) (xy 158.455477 125.86902) (xy 158.455478 125.86902) (xy 158.458885 125.867761) (xy 158.459381 125.867578) (xy 158.482281 125.861491) (xy 158.486398 125.860803) (xy 158.495248 125.859324) (xy 158.533758 125.840718) (xy 158.5449 125.835981) (xy 158.548496 125.834652) (xy 158.548505 125.834648) (xy 158.553073 125.83296) (xy 158.557324 125.830591) (xy 158.559861 125.829424) (xy 158.56374 125.828468) (xy 158.571505 125.823958) (xy 158.57151 125.823956) (xy 158.582493 125.817577) (xy 158.590959 125.813081) (xy 158.610284 125.803744) (xy 158.680322 125.792119) (xy 158.723362 125.808539) (xy 158.724386 125.806501) (xy 158.732404 125.810529) (xy 158.739774 125.815655) (xy 158.748284 125.818506) (xy 158.748286 125.818507) (xy 158.761733 125.823012) (xy 158.775216 125.828412) (xy 158.823524 125.851077) (xy 158.832394 125.852456) (xy 158.837077 125.853886) (xy 158.84829 125.857899) (xy 158.852902 125.8598) (xy 158.878393 125.870308) (xy 158.9079 125.873462) (xy 158.908218 125.873496) (xy 158.925082 125.876469) (xy 158.954189 125.883669) (xy 158.988911 125.88221) (xy 158.989692 125.882205) (xy 158.990776 125.882321) (xy 158.993725 125.882179) (xy 158.995305 125.882169) (xy 158.998024 125.882793) (xy 159.053735 125.879504) (xy 159.055803 125.879399) (xy 159.096938 125.877671) (xy 159.101151 125.877494) (xy 159.101238 125.879572) (xy 159.105335 125.879989) (xy 159.105127 125.87647) (xy 159.112172 125.876054) (xy 159.144858 125.874124) (xy 159.153309 125.871102) (xy 159.153312 125.871101) (xy 159.167876 125.865892) (xy 159.186482 125.860806) (xy 159.210481 125.856185) (xy 159.210905 125.858388) (xy 159.269436 125.855641) (xy 159.27756 125.857909) (xy 159.295356 125.863528) (xy 159.298109 125.863948) (xy 159.300946 125.864705) (xy 159.334747 125.874878) (xy 159.343727 125.874949) (xy 159.343827 125.874964) (xy 159.345584 125.875611) (xy 159.368208 125.87716) (xy 159.392943 125.878854) (xy 159.403332 125.88) (xy 159.408615 125.880806) (xy 159.408621 125.880806) (xy 159.413042 125.881481) (xy 159.417518 125.881522) (xy 159.430396 125.88164) (xy 159.437848 125.881929) (xy 159.483377 125.885046) (xy 159.49233 125.885659) (xy 159.501098 125.883734) (xy 159.507515 125.883259) (xy 159.513907 125.882403) (xy 159.522882 125.882485) (xy 159.531551 125.880036) (xy 159.575423 125.867642) (xy 159.582653 125.865828) (xy 159.583318 125.865682) (xy 159.602724 125.861421) (xy 159.607261 125.859658) (xy 159.607268 125.859656) (xy 159.611208 125.858125) (xy 159.622584 125.854317) (xy 159.636706 125.850327) (xy 159.664432 125.842494) (xy 159.667469 125.840591) (xy 159.668876 125.84004) (xy 159.677616 125.837984) (xy 159.686337 125.833043) (xy 159.740807 125.80218) (xy 159.740974 125.802086) (xy 159.804495 125.766317) (xy 159.80498 125.76582) (xy 159.805591 125.765474) (xy 159.834452 125.735757) (xy 159.841219 125.72879) (xy 159.846045 125.724608) (xy 159.846016 125.724578) (xy 159.85246 125.718329) (xy 159.859726 125.713056) (xy 159.86636 125.704482) (xy 159.867601 125.702878) (xy 159.877104 125.691955) (xy 159.900985 125.667497) (xy 159.907256 125.661075) (xy 159.918993 125.639016) (xy 159.924914 125.629029) (xy 159.925908 125.627516) (xy 159.928888 125.623664) (xy 159.931242 125.619396) (xy 159.932412 125.617615) (xy 159.934084 125.614948) (xy 159.933972 125.61488) (xy 159.936296 125.611048) (xy 159.938891 125.607385) (xy 159.947498 125.590611) (xy 159.952067 125.582466) (xy 159.952634 125.581538) (xy 159.955486 125.57759) (xy 159.960094 125.568545) (xy 159.968866 125.551322) (xy 159.970809 125.547659) (xy 159.981359 125.528531) (xy 159.981362 125.528525) (xy 159.983526 125.524601) (xy 159.984107 125.523066) (xy 159.985501 125.521472) (xy 159.984834 125.521146) (xy 159.984834 125.521145) (xy 159.998605 125.492971) (xy 159.999493 125.491193) (xy 160.011826 125.466982) (xy 160.01183 125.466973) (xy 160.013853 125.463001) (xy 160.013854 125.463) (xy 160.014696 125.463429) (xy 160.015471 125.462482) (xy 160.014232 125.461892) (xy 160.029839 125.429091) (xy 160.030377 125.427973) (xy 160.045097 125.39786) (xy 160.045145 125.397712) (xy 160.047277 125.393282) (xy 160.047223 125.393257) (xy 160.062647 125.360166) (xy 160.063021 125.359364) (xy 160.063442 125.358471) (xy 160.076343 125.331357) (xy 160.076352 125.331336) (xy 160.07822 125.32741) (xy 160.07872 125.325803) (xy 160.079373 125.324278) (xy 160.080324 125.322239) (xy 160.080963 125.320983) (xy 160.081775 125.319755) (xy 160.097524 125.285343) (xy 160.097823 125.284695) (xy 160.112497 125.253212) (xy 160.112925 125.251797) (xy 160.113469 125.2505) (xy 160.115127 125.246879) (xy 160.115745 125.245644) (xy 160.116551 125.244405) (xy 160.132082 125.209835) (xy 160.132436 125.209056) (xy 160.145194 125.181179) (xy 160.145196 125.181174) (xy 160.146812 125.177643) (xy 160.147226 125.176237) (xy 160.147773 125.174909) (xy 160.148762 125.172708) (xy 160.149448 125.171312) (xy 160.15035 125.169901) (xy 160.152122 125.165872) (xy 160.152564 125.164973) (xy 160.153058 125.164049) (xy 160.202814 125.113405) (xy 160.272053 125.097702) (xy 160.338789 125.121924) (xy 160.381836 125.178382) (xy 160.384584 125.18679) (xy 160.385043 125.189193) (xy 160.386678 125.19377) (xy 160.386679 125.193772) (xy 160.390177 125.203561) (xy 160.393043 125.212655) (xy 160.403438 125.250584) (xy 160.406221 125.26074) (xy 160.410928 125.268384) (xy 160.414504 125.276617) (xy 160.414048 125.276815) (xy 160.418095 125.285259) (xy 160.419274 125.289612) (xy 160.421255 125.294061) (xy 160.421257 125.294066) (xy 160.425687 125.304014) (xy 160.429232 125.31286) (xy 160.433485 125.324764) (xy 160.433954 125.325653) (xy 160.4347 125.327873) (xy 160.444341 125.346454) (xy 160.447596 125.353214) (xy 160.450496 125.359727) (xy 160.450496 125.359729) (xy 160.449514 125.360166) (xy 160.450496 125.361605) (xy 160.45089 125.361395) (xy 160.452329 125.364092) (xy 160.452422 125.364051) (xy 160.454825 125.369448) (xy 160.45721 125.373242) (xy 160.458363 125.375404) (xy 160.460202 125.378567) (xy 160.484946 125.424734) (xy 160.485608 125.425988) (xy 160.499302 125.45238) (xy 160.500804 125.45448) (xy 160.501665 125.455981) (xy 160.501848 125.456266) (xy 160.504143 125.460549) (xy 160.508998 125.466982) (xy 160.516843 125.477378) (xy 160.523254 125.48672) (xy 160.526827 125.492463) (xy 160.530439 125.500678) (xy 160.536213 125.507551) (xy 160.536214 125.507552) (xy 160.550185 125.524181) (xy 160.556202 125.531937) (xy 160.563203 125.541725) (xy 160.567498 125.545095) (xy 160.571469 125.549764) (xy 160.583262 125.565391) (xy 160.588597 125.57069) (xy 160.596269 125.57903) (xy 160.599156 125.582466) (xy 160.603144 125.587213) (xy 160.606812 125.590414) (xy 160.617255 125.599529) (xy 160.623203 125.605067) (xy 160.661191 125.642805) (xy 160.669079 125.64709) (xy 160.676281 125.65245) (xy 160.676031 125.652786) (xy 160.686559 125.660126) (xy 160.704221 125.675627) (xy 160.708334 125.67824) (xy 160.708339 125.678243) (xy 160.731819 125.693156) (xy 160.732824 125.693801) (xy 160.770645 125.718329) (xy 160.773991 125.720738) (xy 160.774004 125.720718) (xy 160.778033 125.72345) (xy 160.781838 125.726483) (xy 160.786061 125.728893) (xy 160.786064 125.728895) (xy 160.793354 125.733055) (xy 160.792366 125.734787) (xy 160.79505 125.735757) (xy 160.795737 125.734543) (xy 160.796147 125.734665) (xy 160.801786 125.738189) (xy 160.802439 125.738425) (xy 160.805021 125.7402) (xy 160.805147 125.740287) (xy 160.805152 125.740293) (xy 160.805195 125.74032) (xy 160.816064 125.747792) (xy 160.821097 125.75021) (xy 160.8239 125.751638) (xy 160.82692 125.753556) (xy 160.831002 125.755396) (xy 160.831012 125.755402) (xy 160.832683 125.756155) (xy 160.843339 125.761582) (xy 160.846912 125.763621) (xy 160.851958 125.766501) (xy 160.865 125.771655) (xy 160.873239 125.775257) (xy 160.895786 125.786088) (xy 160.897367 125.786861) (xy 160.926955 125.801587) (xy 160.926965 125.801591) (xy 160.931313 125.803755) (xy 160.935009 125.804928) (xy 160.935679 125.80525) (xy 160.93724 125.805742) (xy 160.93725 125.805746) (xy 160.991327 125.822804) (xy 160.991451 125.822843) (xy 161.015375 125.830437) (xy 161.019144 125.8317) (xy 161.047891 125.841852) (xy 161.052665 125.842746) (xy 161.053072 125.842855) (xy 161.057448 125.843791) (xy 161.061462 125.845065) (xy 161.065866 125.845799) (xy 161.065867 125.845799) (xy 161.073856 125.84713) (xy 161.092588 125.850251) (xy 161.093044 125.850327) (xy 161.095515 125.850765) (xy 161.13353 125.85788) (xy 161.141409 125.859617) (xy 161.160434 125.864456) (xy 161.171465 125.865503) (xy 161.182728 125.867088) (xy 161.186131 125.867725) (xy 161.186134 125.867725) (xy 161.190541 125.86855) (xy 161.195018 125.868742) (xy 161.195022 125.868742) (xy 161.211036 125.869427) (xy 161.217552 125.869876) (xy 161.250629 125.873015) (xy 161.262429 125.874701) (xy 161.264508 125.875099) (xy 161.271874 125.87651) (xy 161.29276 125.877237) (xy 161.300259 125.877724) (xy 161.31792 125.8794) (xy 161.322392 125.879187) (xy 161.3224 125.879187) (xy 161.328311 125.878905) (xy 161.338696 125.878838) (xy 161.370897 125.87996) (xy 161.377301 125.880347) (xy 161.379011 125.880494) (xy 161.383815 125.881284) (xy 161.388682 125.881326) (xy 161.388686 125.881326) (xy 161.415417 125.881555) (xy 161.418693 125.881625) (xy 161.42 125.88167) (xy 161.420456 125.881686) (xy 161.420419 125.882755) (xy 161.421207 125.882632) (xy 161.42121 125.881796) (xy 161.421676 125.881798) (xy 161.421957 125.881799) (xy 161.42386 125.881836) (xy 161.423861 125.881806) (xy 161.42389 125.881806) (xy 161.424044 125.881811) (xy 161.424561 125.881829) (xy 161.425079 125.881859) (xy 161.425835 125.881874) (xy 161.42601 125.88188) (xy 161.426011 125.88188) (xy 161.427471 125.881931) (xy 161.427487 125.881932) (xy 161.442444 125.882452) (xy 161.442613 125.882458) (xy 161.442699 125.882461) (xy 161.447178 125.882617) (xy 161.451638 125.882136) (xy 161.454865 125.882019) (xy 161.460514 125.881941) (xy 161.495476 125.88224) (xy 161.496525 125.882099) (xy 161.497502 125.88207) (xy 161.544938 125.88224) (xy 161.594432 125.882417) (xy 161.606999 125.883091) (xy 161.648721 125.887431) (xy 161.657547 125.885817) (xy 161.657549 125.885817) (xy 161.707793 125.876629) (xy 161.713044 125.875783) (xy 161.714055 125.875642) (xy 161.725972 125.873979) (xy 161.763624 125.868725) (xy 161.763625 125.868725) (xy 161.772516 125.867484) (xy 161.780368 125.863947) (xy 161.78111 125.863773) (xy 161.784228 125.862801) (xy 161.784939 125.862523) (xy 161.793411 125.860974) (xy 161.803104 125.856107) (xy 161.803441 125.855938) (xy 161.805631 125.85554) (xy 161.809948 125.854095) (xy 161.810157 125.854718) (xy 161.873295 125.84325) (xy 161.8907 125.846348) (xy 161.900201 125.848737) (xy 161.909637 125.851505) (xy 161.928651 125.857899) (xy 161.956184 125.867158) (xy 161.970666 125.867736) (xy 161.978723 125.868318) (xy 161.99994 125.870535) (xy 162.013637 125.872735) (xy 162.016627 125.873386) (xy 162.016977 125.873462) (xy 162.022031 125.874562) (xy 162.026885 125.874853) (xy 162.026887 125.874853) (xy 162.041849 125.875749) (xy 162.049752 125.876473) (xy 162.061892 125.877972) (xy 162.061898 125.877972) (xy 162.066343 125.878521) (xy 162.070828 125.878434) (xy 162.074544 125.878626) (xy 162.075292 125.878764) (xy 162.075291 125.878782) (xy 162.075397 125.878778) (xy 162.080053 125.878907) (xy 162.086846 125.879617) (xy 162.086853 125.879617) (xy 162.086811 125.88002) (xy 162.089286 125.880645) (xy 162.089327 125.879164) (xy 162.089328 125.879164) (xy 162.090984 125.87921) (xy 162.105077 125.879602) (xy 162.109081 125.879776) (xy 162.135693 125.88137) (xy 162.137246 125.881242) (xy 162.13938 125.881842) (xy 162.139389 125.881065) (xy 162.14042 125.881077) (xy 162.169516 125.881406) (xy 162.171508 125.881445) (xy 162.203157 125.882323) (xy 162.203891 125.882239) (xy 162.206629 125.882289) (xy 162.206629 125.882139) (xy 162.207127 125.882141) (xy 162.243911 125.882253) (xy 162.244839 125.88226) (xy 162.27925 125.882649) (xy 162.280983 125.882421) (xy 162.282725 125.882372) (xy 162.284212 125.882377) (xy 162.29395 125.882406) (xy 162.294471 125.882427) (xy 162.295041 125.882516) (xy 162.29669 125.882517) (xy 162.2967 125.882517) (xy 162.31484 125.882523) (xy 162.315024 125.88253) (xy 162.315236 125.882563) (xy 162.315871 125.882563) (xy 162.33626 125.882549) (xy 162.339946 125.882547) (xy 162.340303 125.882548) (xy 162.360855 125.882611) (xy 162.368873 125.882635) (xy 162.368874 125.882635) (xy 162.370522 125.88264) (xy 162.371096 125.88256) (xy 162.371588 125.882543) (xy 162.378791 125.882546) (xy 162.390949 125.88255) (xy 162.391584 125.88255) (xy 162.391797 125.88252) (xy 162.391981 125.882513) (xy 162.394309 125.882511) (xy 162.404171 125.882505) (xy 162.404928 125.882533) (xy 162.405775 125.88266) (xy 162.408162 125.882649) (xy 162.408166 125.882649) (xy 162.444592 125.882479) (xy 162.445099 125.882478) (xy 162.464451 125.882466) (xy 162.477928 125.882457) (xy 162.478225 125.882466) (xy 162.480021 125.882717) (xy 162.508976 125.882269) (xy 162.516527 125.882152) (xy 162.517886 125.882138) (xy 162.524258 125.882108) (xy 162.537919 125.882044) (xy 162.540271 125.882082) (xy 162.544329 125.882549) (xy 162.549196 125.882354) (xy 162.5492 125.882354) (xy 162.576426 125.881262) (xy 162.579525 125.881176) (xy 162.592258 125.880979) (xy 162.595878 125.880923) (xy 162.602602 125.881078) (xy 162.604083 125.881055) (xy 162.608952 125.881355) (xy 162.613805 125.880903) (xy 162.613806 125.880903) (xy 162.631952 125.879213) (xy 162.638586 125.878771) (xy 162.654071 125.87815) (xy 162.654074 125.87815) (xy 162.658554 125.87797) (xy 162.662969 125.877156) (xy 162.667411 125.87666) (xy 162.667427 125.876799) (xy 162.677413 125.875643) (xy 162.678145 125.875607) (xy 162.688099 125.87552) (xy 162.702048 125.87595) (xy 162.710738 125.873697) (xy 162.71074 125.873697) (xy 162.747955 125.864049) (xy 162.758336 125.861358) (xy 162.764543 125.859915) (xy 162.770852 125.858616) (xy 162.784025 125.855904) (xy 162.789844 125.853811) (xy 162.803146 125.849838) (xy 162.810031 125.848189) (xy 162.810037 125.848187) (xy 162.818265 125.846216) (xy 162.820581 125.844891) (xy 162.826983 125.84289) (xy 162.843716 125.838997) (xy 162.844157 125.840892) (xy 162.903584 125.835815) (xy 162.92469 125.842064) (xy 162.927222 125.843062) (xy 162.935024 125.847503) (xy 162.943756 125.849575) (xy 162.943757 125.849576) (xy 162.99772 125.862384) (xy 163.000203 125.863) (xy 163.022748 125.868843) (xy 163.022976 125.868902) (xy 163.045631 125.874852) (xy 163.046131 125.87491) (xy 163.046347 125.874958) (xy 163.074067 125.882141) (xy 163.082788 125.884401) (xy 163.106741 125.88366) (xy 163.109709 125.883568) (xy 163.128001 125.884333) (xy 163.154755 125.887413) (xy 163.189587 125.881438) (xy 163.192725 125.880999) (xy 163.195757 125.880905) (xy 163.203115 125.879525) (xy 163.223223 125.877404) (xy 163.231088 125.87721) (xy 163.236559 125.877075) (xy 163.236561 125.877075) (xy 163.24553 125.876853) (xy 163.254081 125.874121) (xy 163.254083 125.874121) (xy 163.271041 125.868704) (xy 163.288082 125.864542) (xy 163.290881 125.864062) (xy 163.290883 125.864061) (xy 163.299728 125.862544) (xy 163.309278 125.857879) (xy 163.326228 125.851073) (xy 163.334041 125.848577) (xy 163.341223 125.847373) (xy 163.347851 125.844166) (xy 163.348693 125.843897) (xy 163.348694 125.843897) (xy 163.349109 125.843764) (xy 163.353194 125.842459) (xy 163.35655 125.840781) (xy 163.360733 125.839221) (xy 163.394212 125.827842) (xy 163.401558 125.822684) (xy 163.409564 125.818619) (xy 163.41046 125.820383) (xy 163.466839 125.801289) (xy 163.532293 125.816546) (xy 163.532607 125.816717) (xy 163.539801 125.822087) (xy 163.575601 125.835429) (xy 163.581286 125.837707) (xy 163.585276 125.839767) (xy 163.58952 125.841241) (xy 163.612804 125.849328) (xy 163.615469 125.850288) (xy 163.677629 125.873455) (xy 163.68349 125.873879) (xy 163.68904 125.875807) (xy 163.698006 125.876254) (xy 163.698007 125.876254) (xy 163.755365 125.879113) (xy 163.758186 125.879286) (xy 163.785502 125.881263) (xy 163.785508 125.881263) (xy 163.790358 125.881614) (xy 163.794856 125.881243) (xy 163.800759 125.881375) (xy 163.835948 125.883129) (xy 163.844682 125.881041) (xy 163.851519 125.880407) (xy 163.857076 125.880283) (xy 163.863019 125.879719) (xy 163.871982 125.880147) (xy 163.880703 125.878042) (xy 163.880707 125.878042) (xy 163.939585 125.863833) (xy 163.941099 125.863477) (xy 163.941209 125.863452) (xy 164.008998 125.847976) (xy 164.011823 125.8464) (xy 164.014967 125.845641) (xy 164.04356 125.82922) (xy 164.112592 125.812643) (xy 164.148465 125.819749) (xy 164.149444 125.820097) (xy 164.153541 125.821889) (xy 164.156015 125.822574) (xy 164.157595 125.823187) (xy 164.157913 125.823293) (xy 164.162397 125.825184) (xy 164.173044 125.827842) (xy 164.19173 125.832507) (xy 164.194834 125.833324) (xy 164.202425 125.835426) (xy 164.250749 125.848808) (xy 164.25075 125.848808) (xy 164.259402 125.851204) (xy 164.263409 125.851146) (xy 164.272711 125.853061) (xy 164.294171 125.859186) (xy 164.298994 125.859785) (xy 164.299426 125.859873) (xy 164.304233 125.860592) (xy 164.308559 125.861672) (xy 164.321055 125.862956) (xy 164.339816 125.864884) (xy 164.342466 125.865185) (xy 164.398439 125.872137) (xy 164.405165 125.873157) (xy 164.427728 125.87721) (xy 164.432593 125.877323) (xy 164.435608 125.877393) (xy 164.448216 125.87832) (xy 164.44849 125.878354) (xy 164.448492 125.878354) (xy 164.452942 125.878907) (xy 164.476818 125.878461) (xy 164.482066 125.878473) (xy 164.537442 125.87976) (xy 164.545062 125.880169) (xy 164.565734 125.881907) (xy 164.575693 125.881203) (xy 164.587492 125.880924) (xy 164.589863 125.880979) (xy 164.589871 125.880979) (xy 164.594356 125.881083) (xy 164.598803 125.880551) (xy 164.598808 125.880551) (xy 164.60895 125.879338) (xy 164.615849 125.878513) (xy 164.62191 125.877937) (xy 164.673541 125.874288) (xy 164.683412 125.873979) (xy 164.698288 125.874097) (xy 164.713825 125.871804) (xy 164.72333 125.870769) (xy 164.731396 125.870199) (xy 164.731398 125.870199) (xy 164.735864 125.869883) (xy 164.74023 125.86894) (xy 164.740242 125.868938) (xy 164.751242 125.866561) (xy 164.759438 125.865073) (xy 164.783307 125.861549) (xy 164.786382 125.861135) (xy 164.796383 125.859915) (xy 164.814373 125.857721) (xy 164.814379 125.85772) (xy 164.819214 125.85713) (xy 164.823912 125.8558) (xy 164.824344 125.855713) (xy 164.826458 125.855181) (xy 164.829296 125.854762) (xy 164.833593 125.853485) (xy 164.833604 125.853483) (xy 164.863166 125.844701) (xy 164.864722 125.844249) (xy 164.867244 125.843535) (xy 164.874907 125.841366) (xy 164.882719 125.839614) (xy 164.889388 125.839461) (xy 164.951054 125.819879) (xy 164.954854 125.818738) (xy 164.975077 125.813013) (xy 164.97508 125.813012) (xy 164.979386 125.811793) (xy 164.983477 125.809975) (xy 164.987693 125.808451) (xy 164.987736 125.80857) (xy 164.990676 125.807454) (xy 164.992482 125.806723) (xy 164.99711 125.805253) (xy 165.002433 125.802603) (xy 165.01954 125.794086) (xy 165.024531 125.791736) (xy 165.035737 125.786758) (xy 165.10611 125.777382) (xy 165.139807 125.789768) (xy 165.140403 125.788393) (xy 165.148139 125.791746) (xy 165.152787 125.794539) (xy 165.152895 125.794579) (xy 165.154695 125.795686) (xy 165.167588 125.803434) (xy 165.167646 125.803336) (xy 165.175383 125.80788) (xy 165.182403 125.813479) (xy 165.190713 125.816883) (xy 165.248562 125.84058) (xy 165.249313 125.84089) (xy 165.315162 125.868378) (xy 165.316897 125.868571) (xy 165.318515 125.869234) (xy 165.326987 125.870121) (xy 165.326988 125.870121) (xy 165.389523 125.876666) (xy 165.390357 125.876756) (xy 165.461348 125.884665) (xy 165.470188 125.883116) (xy 165.47449 125.882981) (xy 165.482491 125.882214) (xy 165.489345 125.883074) (xy 165.498209 125.881646) (xy 165.498211 125.881646) (xy 165.527703 125.876895) (xy 165.533943 125.876238) (xy 165.533932 125.876145) (xy 165.538394 125.875601) (xy 165.542861 125.875377) (xy 165.547251 125.874522) (xy 165.547257 125.874521) (xy 165.568226 125.870436) (xy 165.57228 125.869715) (xy 165.58783 125.86721) (xy 165.634563 125.859682) (xy 165.642287 125.856006) (xy 165.650678 125.854371) (xy 165.658647 125.850253) (xy 165.658654 125.850251) (xy 165.706728 125.825411) (xy 165.71042 125.823579) (xy 165.729963 125.814278) (xy 165.800069 125.803065) (xy 165.822688 125.809759) (xy 165.823116 125.808406) (xy 165.831679 125.811112) (xy 165.839765 125.815002) (xy 165.848619 125.816466) (xy 165.857177 125.819171) (xy 165.856993 125.819754) (xy 165.868266 125.822958) (xy 165.884665 125.829693) (xy 165.888819 125.831399) (xy 165.891806 125.832154) (xy 165.894228 125.833028) (xy 165.894491 125.833108) (xy 165.899021 125.834885) (xy 165.903771 125.835944) (xy 165.903774 125.835945) (xy 165.927887 125.841321) (xy 165.931327 125.842139) (xy 165.935966 125.843311) (xy 165.986612 125.856107) (xy 165.986614 125.856107) (xy 165.995317 125.858306) (xy 165.999275 125.858159) (xy 166.008303 125.859799) (xy 166.024083 125.863898) (xy 166.028925 125.864382) (xy 166.029405 125.864468) (xy 166.033949 125.865034) (xy 166.034852 125.865169) (xy 166.039225 125.866144) (xy 166.043696 125.866489) (xy 166.043706 125.866491) (xy 166.069999 125.868523) (xy 166.072829 125.868773) (xy 166.11797 125.873287) (xy 166.127952 125.874691) (xy 166.137316 125.876392) (xy 166.137327 125.876393) (xy 166.142116 125.877263) (xy 166.146983 125.877386) (xy 166.146986 125.877386) (xy 166.158288 125.877671) (xy 166.167643 125.878256) (xy 166.176153 125.879107) (xy 166.176163 125.879107) (xy 166.180621 125.879553) (xy 166.18603 125.879323) (xy 166.195832 125.878906) (xy 166.204361 125.878832) (xy 166.240769 125.879749) (xy 166.246999 125.88006) (xy 166.249833 125.880272) (xy 166.254647 125.881009) (xy 166.25951 125.880997) (xy 166.259515 125.880997) (xy 166.271996 125.880965) (xy 166.27651 125.881087) (xy 166.280233 125.881588) (xy 166.285103 125.881487) (xy 166.285105 125.881487) (xy 166.291459 125.881355) (xy 166.295747 125.881266) (xy 166.301532 125.881279) (xy 166.317273 125.881676) (xy 166.321719 125.881153) (xy 166.326189 125.880948) (xy 166.331649 125.880815) (xy 166.336358 125.880803) (xy 166.347747 125.880774) (xy 166.349027 125.880587) (xy 166.355892 125.880436) (xy 166.359548 125.880829) (xy 166.364412 125.880598) (xy 166.364413 125.880598) (xy 166.371485 125.880262) (xy 166.390953 125.879337) (xy 166.394288 125.879223) (xy 166.414267 125.87881) (xy 166.418157 125.878729) (xy 166.418158 125.878729) (xy 166.422644 125.878636) (xy 166.426129 125.878063) (xy 166.435169 125.877652) (xy 166.439301 125.877977) (xy 166.470091 125.87563) (xy 166.473654 125.87541) (xy 166.496862 125.874308) (xy 166.496863 125.874308) (xy 166.501347 125.874095) (xy 166.502974 125.873783) (xy 166.510431 125.873462) (xy 166.510418 125.873163) (xy 166.515277 125.872947) (xy 166.520147 125.873107) (xy 166.545391 125.870021) (xy 166.551089 125.869457) (xy 166.565606 125.86835) (xy 166.573332 125.867761) (xy 166.576953 125.866958) (xy 166.581431 125.866414) (xy 166.583789 125.86619) (xy 166.588646 125.866105) (xy 166.601534 125.863867) (xy 166.613221 125.862399) (xy 166.623111 125.861624) (xy 166.627839 125.860504) (xy 166.628176 125.860451) (xy 166.631834 125.859661) (xy 166.634672 125.859107) (xy 166.639118 125.858564) (xy 166.64344 125.857396) (xy 166.643452 125.857394) (xy 166.646184 125.856656) (xy 166.657478 125.854155) (xy 166.663414 125.853124) (xy 166.663416 125.853124) (xy 166.667831 125.852357) (xy 166.672087 125.850974) (xy 166.6721 125.850971) (xy 166.678024 125.849046) (xy 166.68784 125.84629) (xy 166.688152 125.846216) (xy 166.688681 125.846091) (xy 166.69464 125.844828) (xy 166.714418 125.841133) (xy 166.714419 125.841133) (xy 166.719208 125.840238) (xy 166.723802 125.838617) (xy 166.728499 125.837358) (xy 166.729123 125.839684) (xy 166.79631 125.837596) (xy 166.805031 125.840074) (xy 166.811689 125.842167) (xy 166.815255 125.843398) (xy 166.81971 125.845331) (xy 166.832344 125.848626) (xy 166.842292 125.851664) (xy 166.876772 125.863773) (xy 166.887199 125.867435) (xy 166.896162 125.867913) (xy 166.896163 125.867913) (xy 166.904362 125.86835) (xy 166.91184 125.868972) (xy 166.924761 125.870436) (xy 166.934997 125.871596) (xy 166.947114 125.873572) (xy 166.95738 125.875764) (xy 166.973374 125.87666) (xy 166.976104 125.876813) (xy 166.98443 125.877557) (xy 166.995525 125.878921) (xy 166.995526 125.878921) (xy 166.999967 125.879467) (xy 167.00284 125.87941) (xy 167.006892 125.879743) (xy 167.007035 125.879759) (xy 167.009476 125.880036) (xy 167.009479 125.880036) (xy 167.018393 125.881046) (xy 167.020912 125.880609) (xy 167.024478 125.881543) (xy 167.024515 125.879985) (xy 167.028763 125.880087) (xy 167.036884 125.880282) (xy 167.040904 125.880443) (xy 167.047389 125.880806) (xy 167.067495 125.881932) (xy 167.071958 125.881546) (xy 167.071981 125.881546) (xy 167.074994 125.881537) (xy 167.087502 125.881647) (xy 167.096626 125.881728) (xy 167.098421 125.881757) (xy 167.115578 125.882168) (xy 167.126044 125.882419) (xy 167.126048 125.882419) (xy 167.130522 125.882526) (xy 167.130523 125.882526) (xy 167.130503 125.883369) (xy 167.132721 125.883908) (xy 167.132725 125.882264) (xy 167.132726 125.882264) (xy 167.133089 125.882265) (xy 167.165308 125.882337) (xy 167.166013 125.882342) (xy 167.200782 125.882649) (xy 167.202171 125.882462) (xy 167.203495 125.882422) (xy 167.208702 125.882434) (xy 167.209036 125.882448) (xy 167.209461 125.882514) (xy 167.242667 125.882523) (xy 167.248932 125.882525) (xy 167.249174 125.882525) (xy 167.251907 125.882531) (xy 167.251903 125.884564) (xy 167.252171 125.884517) (xy 167.252169 125.882572) (xy 167.252171 125.882572) (xy 167.265052 125.882561) (xy 167.285323 125.882606) (xy 167.285748 125.882546) (xy 167.285863 125.882542) (xy 167.290068 125.882538) (xy 167.291844 125.882537) (xy 167.296446 125.882538) (xy 167.327707 125.882547) (xy 167.328437 125.882547) (xy 167.328682 125.882512) (xy 167.3289 125.882504) (xy 167.342824 125.882492) (xy 167.343658 125.882522) (xy 167.344571 125.882659) (xy 167.347137 125.882646) (xy 167.347147 125.882646) (xy 167.383204 125.882458) (xy 167.383745 125.882456) (xy 167.417442 125.882425) (xy 167.418683 125.882424) (xy 167.418692 125.882424) (xy 167.420386 125.882661) (xy 167.457021 125.882078) (xy 167.458232 125.882066) (xy 167.475091 125.881978) (xy 167.480123 125.881952) (xy 167.481738 125.881979) (xy 167.485495 125.882414) (xy 167.507264 125.881564) (xy 167.518075 125.881142) (xy 167.520982 125.881062) (xy 167.52443 125.881007) (xy 167.536169 125.88082) (xy 167.541618 125.88096) (xy 167.54431 125.880933) (xy 167.549176 125.88126) (xy 167.57364 125.879118) (xy 167.579712 125.878734) (xy 167.596639 125.878073) (xy 167.596641 125.878073) (xy 167.601116 125.877898) (xy 167.60209 125.877719) (xy 167.615576 125.877432) (xy 167.619374 125.877148) (xy 167.628323 125.877753) (xy 167.637081 125.875822) (xy 167.637085 125.875822) (xy 167.691789 125.863762) (xy 167.695591 125.862985) (xy 167.697932 125.862544) (xy 167.720867 125.858224) (xy 167.725114 125.856777) (xy 167.729444 125.855637) (xy 167.729481 125.855778) (xy 167.731317 125.855265) (xy 167.733953 125.854466) (xy 167.738696 125.853421) (xy 167.740021 125.852905) (xy 167.748965 125.850729) (xy 167.758574 125.84895) (xy 167.767399 125.847316) (xy 167.789702 125.836055) (xy 167.805853 125.829265) (xy 167.808192 125.828468) (xy 167.824841 125.822795) (xy 167.832185 125.817631) (xy 167.836405 125.815484) (xy 167.842554 125.81343) (xy 167.859624 125.80158) (xy 167.880489 125.789862) (xy 167.880702 125.789768) (xy 167.8846 125.788043) (xy 167.954989 125.77877) (xy 167.979969 125.785343) (xy 167.995273 125.791104) (xy 167.99779 125.792083) (xy 168.017471 125.799989) (xy 168.052919 125.814228) (xy 168.05292 125.814228) (xy 168.061247 125.817573) (xy 168.065289 125.817968) (xy 168.071253 125.819854) (xy 168.09776 125.830217) (xy 168.101208 125.830982) (xy 168.101589 125.831125) (xy 168.103206 125.831483) (xy 168.10321 125.831484) (xy 168.177946 125.848022) (xy 168.195535 125.851914) (xy 168.195765 125.851965) (xy 168.201771 125.85345) (xy 168.225352 125.859901) (xy 168.231515 125.860598) (xy 168.23917 125.861876) (xy 168.243233 125.862478) (xy 168.247602 125.863447) (xy 168.252063 125.863787) (xy 168.252065 125.863787) (xy 168.273233 125.865399) (xy 168.277793 125.86583) (xy 168.327373 125.871435) (xy 168.337708 125.873041) (xy 168.350789 125.875637) (xy 168.355647 125.875838) (xy 168.355654 125.875839) (xy 168.364944 125.876223) (xy 168.368014 125.87635) (xy 168.376945 125.877039) (xy 168.390961 125.878624) (xy 168.395444 125.878491) (xy 168.395446 125.878491) (xy 168.405088 125.878205) (xy 168.414041 125.878258) (xy 168.458658 125.880107) (xy 168.465262 125.88078) (xy 168.465274 125.880641) (xy 168.470136 125.881054) (xy 168.474932 125.881839) (xy 168.492149 125.881971) (xy 168.50415 125.882064) (xy 168.508393 125.882168) (xy 168.523347 125.882787) (xy 168.534452 125.883247) (xy 168.538916 125.882796) (xy 168.541902 125.882707) (xy 168.545017 125.882653) (xy 168.56643 125.88255) (xy 168.567844 125.882553) (xy 168.600743 125.882805) (xy 168.600745 125.882805) (xy 168.600744 125.882939) (xy 168.602809 125.882923) (xy 168.604767 125.883171) (xy 168.609632 125.883032) (xy 168.609638 125.883032) (xy 168.637108 125.882245) (xy 168.640107 125.882194) (xy 168.667112 125.882064) (xy 168.669397 125.882053) (xy 168.669405 125.883657) (xy 168.67191 125.88419) (xy 168.67188 125.882257) (xy 168.672786 125.882243) (xy 168.675533 125.882787) (xy 168.680046 125.882385) (xy 168.681604 125.882481) (xy 168.700982 125.880677) (xy 168.709051 125.880186) (xy 168.725369 125.879719) (xy 168.736714 125.877761) (xy 168.746953 125.876424) (xy 168.788111 125.872758) (xy 168.792837 125.871585) (xy 168.797638 125.87078) (xy 168.797645 125.870822) (xy 168.813989 125.868217) (xy 168.83306 125.866827) (xy 168.841468 125.863688) (xy 168.84147 125.863688) (xy 168.86407 125.855252) (xy 168.878777 125.850763) (xy 168.894367 125.847029) (xy 168.90216 125.842572) (xy 168.903801 125.841921) (xy 168.919496 125.834562) (xy 168.928196 125.831314) (xy 168.936122 125.828652) (xy 168.953118 125.823563) (xy 168.96065 125.818678) (xy 168.968798 125.81491) (xy 168.968869 125.815063) (xy 168.972993 125.812914) (xy 168.975331 125.811551) (xy 168.983644 125.808177) (xy 168.991665 125.801821) (xy 169.003129 125.793734) (xy 169.009105 125.789998) (xy 169.017318 125.786366) (xy 169.030239 125.775463) (xy 169.034034 125.772261) (xy 169.040079 125.767776) (xy 169.039992 125.767663) (xy 169.043858 125.764708) (xy 169.047942 125.762059) (xy 169.059278 125.751917) (xy 169.066614 125.745839) (xy 169.106148 125.715537) (xy 169.110762 125.70924) (xy 169.116711 125.704757) (xy 169.146668 125.664566) (xy 169.152579 125.657226) (xy 169.157757 125.651267) (xy 169.160699 125.647882) (xy 169.162923 125.644435) (xy 169.166564 125.639855) (xy 169.177074 125.627344) (xy 169.182852 125.620466) (xy 169.184731 125.61619) (xy 169.186083 125.614332) (xy 169.188112 125.611089) (xy 169.193903 125.604231) (xy 169.200883 125.588462) (xy 169.210234 125.571139) (xy 169.220268 125.555593) (xy 169.223208 125.545695) (xy 169.224178 125.542427) (xy 169.227658 125.533093) (xy 169.230623 125.528439) (xy 169.234743 125.514259) (xy 169.236931 125.507453) (xy 169.237679 125.505336) (xy 169.239651 125.50088) (xy 169.242855 125.488945) (xy 169.243126 125.487935) (xy 169.246192 125.478129) (xy 169.259329 125.441437) (xy 169.262355 125.432986) (xy 169.263472 125.414191) (xy 169.264156 125.406584) (xy 169.266637 125.386008) (xy 169.268624 125.374247) (xy 169.270988 125.36341) (xy 169.272089 125.34518) (xy 169.272894 125.336673) (xy 169.274832 125.321654) (xy 169.274798 125.319207) (xy 169.275091 125.315908) (xy 169.275572 125.311917) (xy 169.276647 125.303003) (xy 169.276082 125.299597) (xy 169.277018 125.296125) (xy 169.275499 125.296084) (xy 169.275799 125.28496) (xy 169.275982 125.280759) (xy 169.277291 125.259096) (xy 169.277291 125.25909) (xy 169.277561 125.254621) (xy 169.277194 125.250153) (xy 169.27718 125.24881) (xy 169.27718 125.246099) (xy 169.277392 125.226374) (xy 169.277431 125.224341) (xy 169.278161 125.197186) (xy 169.278282 125.192691) (xy 169.279012 125.192711) (xy 169.279596 125.19034) (xy 169.278009 125.190335) (xy 169.278067 125.172712) (xy 169.278109 125.159807) (xy 169.278115 125.158937) (xy 169.27816 125.154802) (xy 169.278409 125.131542) (xy 169.278442 125.128479) (xy 169.278442 125.128475) (xy 169.278486 125.124362) (xy 169.27828 125.122804) (xy 169.278236 125.121247) (xy 169.278243 125.119156) (xy 169.278263 125.118653) (xy 169.278354 125.118073) (xy 169.278357 125.113405) (xy 169.278374 125.078797) (xy 169.278375 125.078446) (xy 169.278376 125.078176) (xy 169.278493 125.042621) (xy 169.27841 125.042032) (xy 169.278393 125.041519) (xy 169.278396 125.037183) (xy 169.278414 125.002538) (xy 169.278563 124.942129) (xy 169.278586 124.941553) (xy 169.278688 124.940894) (xy 169.278662 124.901688) (xy 169.278751 124.865626) (xy 169.278659 124.864972) (xy 169.278638 124.864372) (xy 169.278635 124.859503) (xy 169.278808 124.852833) (xy 169.278817 124.852655) (xy 169.279445 124.84784) (xy 169.278643 124.815572) (xy 169.278604 124.812523) (xy 169.278588 124.78789) (xy 169.278588 124.787889) (xy 169.278585 124.783412) (xy 169.278047 124.77967) (xy 169.277766 124.771141) (xy 169.277793 124.76667) (xy 169.278046 124.759421) (xy 169.278254 124.756158) (xy 169.278254 124.756154) (xy 169.278563 124.751303) (xy 169.278122 124.746462) (xy 169.278056 124.741589) (xy 169.278109 124.741588) (xy 169.277966 124.738232) (xy 169.278074 124.72058) (xy 169.278129 124.711607) (xy 169.275662 124.702977) (xy 169.274656 124.695631) (xy 169.272385 124.683469) (xy 169.271612 124.674982) (xy 169.271562 124.674416) (xy 169.271006 124.667991) (xy 169.285061 124.598399) (xy 169.334508 124.547454) (xy 169.395884 124.53113) (xy 169.406025 124.531077) (xy 169.447247 124.530864) (xy 169.447562 124.530875) (xy 169.447929 124.530929) (xy 169.448992 124.530922) (xy 169.449003 124.530922) (xy 169.487134 124.530658) (xy 169.487353 124.530657) (xy 169.522799 124.530474) (xy 169.522808 124.530474) (xy 169.523899 124.530468) (xy 169.524276 124.530412) (xy 169.524582 124.530399) (xy 169.560552 124.53015) (xy 169.560976 124.530163) (xy 169.561465 124.530235) (xy 169.562882 124.530222) (xy 169.562884 124.530222) (xy 169.600695 124.529873) (xy 169.600987 124.529871) (xy 169.635714 124.529631) (xy 169.635718 124.529631) (xy 169.637141 124.529621) (xy 169.637634 124.529547) (xy 169.638063 124.529528) (xy 169.658981 124.529335) (xy 169.659556 124.529351) (xy 169.660219 124.529446) (xy 169.662107 124.529423) (xy 169.662119 124.529423) (xy 169.699059 124.528966) (xy 169.699455 124.528961) (xy 169.735482 124.528629) (xy 169.736145 124.528528) (xy 169.736714 124.528502) (xy 169.743793 124.528414) (xy 169.744579 124.528433) (xy 169.74548 124.528558) (xy 169.755939 124.528384) (xy 169.784141 124.527917) (xy 169.784672 124.52791) (xy 169.816965 124.527511) (xy 169.818065 124.527497) (xy 169.818087 124.529309) (xy 169.818656 124.529196) (xy 169.818619 124.52757) (xy 169.856654 124.526716) (xy 169.857387 124.526701) (xy 169.877617 124.526365) (xy 169.879936 124.526326) (xy 169.879963 124.527946) (xy 169.881216 124.527703) (xy 169.881178 124.52648) (xy 169.88118 124.52648) (xy 169.918627 124.525325) (xy 169.91945 124.525303) (xy 169.932475 124.525011) (xy 169.932649 124.525012) (xy 169.934945 124.525269) (xy 169.939812 124.52506) (xy 169.939814 124.52506) (xy 169.948992 124.524666) (xy 169.951536 124.524582) (xy 169.953713 124.524533) (xy 169.953744 124.525886) (xy 169.954382 124.52601) (xy 169.954314 124.524437) (xy 169.971081 124.523717) (xy 169.972578 124.523662) (xy 169.975269 124.523578) (xy 169.97626 124.523548) (xy 169.978532 124.523531) (xy 169.982277 124.523881) (xy 169.987141 124.523583) (xy 169.987142 124.523583) (xy 169.988643 124.523491) (xy 169.997414 124.522954) (xy 170.001025 124.522788) (xy 170.00107 124.522783) (xy 170.003568 124.522706) (xy 170.005559 124.522645) (xy 170.00558 124.523325) (xy 170.007293 124.523643) (xy 170.007214 124.522354) (xy 170.007221 124.522353) (xy 170.011856 124.522068) (xy 170.017998 124.521841) (xy 170.021541 124.521797) (xy 170.026397 124.522111) (xy 170.031243 124.521675) (xy 170.031244 124.521675) (xy 170.039836 124.520902) (xy 170.044928 124.520563) (xy 170.045184 124.520534) (xy 170.049664 124.520341) (xy 170.050765 124.520135) (xy 170.053036 124.520528) (xy 170.052963 124.519723) (xy 170.052989 124.519718) (xy 170.053715 124.519653) (xy 170.067219 124.519163) (xy 170.072769 124.51926) (xy 170.077597 124.518594) (xy 170.081044 124.518388) (xy 170.083253 124.518167) (xy 170.09208 124.517614) (xy 170.101032 124.51833) (xy 170.117999 124.514806) (xy 170.121729 124.514229) (xy 170.127413 124.514456) (xy 170.145284 124.509995) (xy 170.158589 124.507425) (xy 170.160237 124.507198) (xy 170.16024 124.507197) (xy 170.164681 124.506585) (xy 170.168992 124.505349) (xy 170.169 124.505347) (xy 170.178799 124.502537) (xy 170.187908 124.500288) (xy 170.211695 124.495348) (xy 170.215635 124.493869) (xy 170.216679 124.493635) (xy 170.221029 124.491986) (xy 170.227753 124.489881) (xy 170.227727 124.489804) (xy 170.232352 124.488262) (xy 170.237072 124.487084) (xy 170.241559 124.485192) (xy 170.246172 124.483654) (xy 170.246189 124.483705) (xy 170.25366 124.481069) (xy 170.261636 124.478782) (xy 170.261642 124.47878) (xy 170.27027 124.476305) (xy 170.27786 124.471506) (xy 170.279025 124.470984) (xy 170.288338 124.467329) (xy 170.289538 124.466825) (xy 170.293789 124.465385) (xy 170.29779 124.463359) (xy 170.297944 124.463294) (xy 170.303713 124.461036) (xy 170.305725 124.460305) (xy 170.310613 124.458642) (xy 170.327583 124.453253) (xy 170.327589 124.45325) (xy 170.336142 124.450534) (xy 170.369492 124.428109) (xy 170.382861 124.420269) (xy 170.391774 124.415754) (xy 170.392795 124.41777) (xy 170.394833 124.417082) (xy 170.393326 124.4143) (xy 170.404192 124.408412) (xy 170.404193 124.408411) (xy 170.412088 124.404133) (xy 170.418466 124.39781) (xy 170.419811 124.396811) (xy 170.439867 124.380901) (xy 170.452924 124.372711) (xy 170.458885 124.365997) (xy 170.46533 124.360542) (xy 170.471053 124.354795) (xy 170.478225 124.349396) (xy 170.484529 124.340948) (xy 170.494308 124.327843) (xy 170.497488 124.323759) (xy 170.502752 124.317278) (xy 170.514292 124.304876) (xy 170.517369 124.301985) (xy 170.529362 124.290721) (xy 170.534036 124.282786) (xy 170.537863 124.276287) (xy 170.548624 124.260797) (xy 170.548774 124.260612) (xy 170.562743 124.243412) (xy 170.568073 124.230723) (xy 170.568485 124.229741) (xy 170.571575 124.223685) (xy 170.573339 124.221539) (xy 170.578688 124.209014) (xy 170.582252 124.201965) (xy 170.582109 124.201895) (xy 170.584244 124.197532) (xy 170.586717 124.193332) (xy 170.588515 124.188802) (xy 170.595094 124.172224) (xy 170.595254 124.171849) (xy 170.595264 124.171796) (xy 170.596286 124.16922) (xy 170.596363 124.16925) (xy 170.597604 124.166341) (xy 170.5978 124.165912) (xy 170.598612 124.166283) (xy 170.599085 124.164022) (xy 170.599115 124.163979) (xy 170.60026 124.160538) (xy 170.621717 124.11368) (xy 170.624612 124.093843) (xy 170.62675 124.082717) (xy 170.626979 124.08176) (xy 170.629966 124.0713) (xy 170.634812 124.05674) (xy 170.636072 124.049264) (xy 170.637085 124.043247) (xy 170.639226 124.033104) (xy 170.640719 124.027236) (xy 170.641824 124.022893) (xy 170.642256 124.018868) (xy 170.643525 124.012819) (xy 170.644378 124.009264) (xy 170.644378 124.009261) (xy 170.646472 124.000537) (xy 170.64623 123.995601) (xy 170.646469 123.995001) (xy 170.646199 123.99497) (xy 170.647891 123.980162) (xy 170.648827 123.973535) (xy 170.651386 123.958347) (xy 170.651387 123.958341) (xy 170.652131 123.953922) (xy 170.6522 123.951126) (xy 170.652396 123.9503) (xy 170.652715 123.946258) (xy 170.652718 123.946234) (xy 170.654664 123.921574) (xy 170.655088 123.917183) (xy 170.657492 123.896144) (xy 170.657492 123.896142) (xy 170.658001 123.891689) (xy 170.657948 123.889832) (xy 170.658257 123.888925) (xy 170.657922 123.888907) (xy 170.65794 123.888591) (xy 170.658398 123.880278) (xy 170.659417 123.861789) (xy 170.659617 123.858812) (xy 170.661332 123.837078) (xy 170.66192 123.829629) (xy 170.662236 123.829654) (xy 170.662754 123.827936) (xy 170.66181 123.827899) (xy 170.66214 123.819376) (xy 170.663015 123.796829) (xy 170.66311 123.794791) (xy 170.663501 123.787699) (xy 170.664853 123.763176) (xy 170.664824 123.76284) (xy 170.664945 123.760111) (xy 170.664864 123.760109) (xy 170.665856 123.723759) (xy 170.665904 123.722314) (xy 170.666053 123.718479) (xy 170.667189 123.689173) (xy 170.666941 123.686784) (xy 170.666935 123.684244) (xy 170.667017 123.681227) (xy 170.667122 123.679529) (xy 170.667418 123.67784) (xy 170.668134 123.64045) (xy 170.668158 123.639427) (xy 170.66897 123.609634) (xy 170.669092 123.605176) (xy 170.668895 123.603464) (xy 170.668874 123.601773) (xy 170.669184 123.585514) (xy 170.669248 123.584346) (xy 170.669456 123.58312) (xy 170.669674 123.56672) (xy 170.669962 123.544957) (xy 170.669974 123.544215) (xy 170.67042 123.520943) (xy 170.670643 123.509272) (xy 170.670491 123.50804) (xy 170.670468 123.506876) (xy 170.670875 123.476185) (xy 170.670916 123.475371) (xy 170.671062 123.474486) (xy 170.6711 123.470344) (xy 170.671129 123.467095) (xy 170.671187 123.466355) (xy 170.671397 123.465654) (xy 170.671434 123.459656) (xy 170.671721 123.412734) (xy 170.67173 123.411842) (xy 170.671889 123.399793) (xy 170.673717 123.399817) (xy 170.673873 123.39914) (xy 170.671803 123.399127) (xy 170.671925 123.37915) (xy 170.671928 123.378776) (xy 170.671936 123.377958) (xy 170.672115 123.35815) (xy 170.672173 123.351781) (xy 170.672199 123.351215) (xy 170.672304 123.350568) (xy 170.672541 123.311244) (xy 170.672867 123.275268) (xy 170.672781 123.274626) (xy 170.672765 123.274054) (xy 170.673106 123.217358) (xy 170.673145 123.210917) (xy 170.673162 123.210525) (xy 170.673236 123.210061) (xy 170.673388 123.170482) (xy 170.673467 123.157432) (xy 170.673598 123.135652) (xy 170.673598 123.13565) (xy 170.673606 123.134312) (xy 170.673543 123.133849) (xy 170.67353 123.13344) (xy 170.673595 123.116635) (xy 170.673841 123.05233) (xy 170.673853 123.052046) (xy 170.673905 123.05172) (xy 170.673996 123.012047) (xy 170.674136 122.975642) (xy 170.67409 122.975308) (xy 170.674081 122.975038) (xy 170.67415 122.945381) (xy 170.674249 122.902074) (xy 170.674312 122.874745) (xy 170.67432 122.874553) (xy 170.674355 122.874328) (xy 170.674356 122.873653) (xy 170.674405 122.834073) (xy 170.674405 122.833939) (xy 170.674486 122.798662) (xy 170.674488 122.798004) (xy 170.674456 122.797779) (xy 170.67445 122.797589) (xy 170.6746 122.676969) (xy 170.674605 122.676837) (xy 170.674629 122.676684) (xy 170.674651 122.635413) (xy 170.674695 122.600179) (xy 170.674674 122.600032) (xy 170.67467 122.599913) (xy 170.674746 122.457772) (xy 170.674749 122.457705) (xy 170.674762 122.457619) (xy 170.674766 122.419457) (xy 170.674773 122.406101) (xy 170.674787 122.38125) (xy 170.674787 122.380966) (xy 170.674774 122.380874) (xy 170.674771 122.380787) (xy 170.67479 122.21604) (xy 170.674792 122.215999) (xy 170.674799 122.215952) (xy 170.674795 122.173316) (xy 170.674799 122.139198) (xy 170.674792 122.139152) (xy 170.674791 122.139113) (xy 170.674771 121.950549) (xy 170.674771 121.950541) (xy 170.674773 121.950531) (xy 170.674767 121.91061) (xy 170.674763 121.873692) (xy 170.674761 121.873676) (xy 170.674721 121.623932) (xy 170.67469 121.293471) (xy 170.67469 121.280927) (xy 170.674691 121.280918) (xy 170.674689 121.233764) (xy 170.674688 121.204069) (xy 170.674687 121.204062) (xy 170.674674 120.961091) (xy 170.674675 120.961062) (xy 170.67468 120.961031) (xy 170.674672 120.919643) (xy 170.67467 120.884241) (xy 170.674665 120.884208) (xy 170.674664 120.88418) (xy 170.67462 120.667528) (xy 170.674621 120.667493) (xy 170.674628 120.667449) (xy 170.674611 120.6248) (xy 170.674604 120.590687) (xy 170.674598 120.590645) (xy 170.674597 120.59061) (xy 170.674541 120.455571) (xy 170.674518 120.39915) (xy 170.67452 120.399095) (xy 170.67453 120.399034) (xy 170.674512 120.372167) (xy 170.674501 120.35699) (xy 170.674501 120.356954) (xy 170.674489 120.326252) (xy 170.674487 120.32231) (xy 170.674479 120.32225) (xy 170.674477 120.322202) (xy 170.674376 120.177443) (xy 170.67436 120.154794) (xy 170.674363 120.154727) (xy 170.674375 120.154649) (xy 170.674352 120.132522) (xy 170.674332 120.114241) (xy 170.674332 120.114194) (xy 170.674307 120.078216) (xy 170.674307 120.077974) (xy 170.674295 120.077894) (xy 170.674293 120.077826) (xy 170.674189 119.979975) (xy 170.674139 119.933346) (xy 170.674143 119.933256) (xy 170.674159 119.93315) (xy 170.674148 119.9256) (xy 170.674095 119.892231) (xy 170.674095 119.892168) (xy 170.674072 119.870713) (xy 170.674057 119.85654) (xy 170.674041 119.856433) (xy 170.674038 119.856345) (xy 170.673924 119.783978) (xy 170.673845 119.733656) (xy 170.67385 119.733535) (xy 170.673872 119.733392) (xy 170.673782 119.693002) (xy 170.673725 119.656865) (xy 170.673705 119.656727) (xy 170.673701 119.656612) (xy 170.673484 119.559741) (xy 170.673472 119.554558) (xy 170.673477 119.554419) (xy 170.673506 119.554232) (xy 170.673381 119.513735) (xy 170.673412 119.513628) (xy 170.673381 119.513628) (xy 170.673301 119.477805) (xy 170.673275 119.47763) (xy 170.673269 119.477463) (xy 170.673112 119.426581) (xy 170.673014 119.394938) (xy 170.673021 119.394738) (xy 170.673058 119.394494) (xy 170.672889 119.354635) (xy 170.672827 119.334297) (xy 170.672779 119.318949) (xy 170.672777 119.318215) (xy 170.67274 119.317964) (xy 170.672732 119.317766) (xy 170.672719 119.314526) (xy 170.672461 119.253613) (xy 170.67247 119.253339) (xy 170.672518 119.253022) (xy 170.672453 119.241556) (xy 170.672289 119.213037) (xy 170.672288 119.212848) (xy 170.67214 119.177849) (xy 170.67214 119.177847) (xy 170.672136 119.176922) (xy 170.67209 119.176608) (xy 170.672079 119.176333) (xy 170.67181 119.129392) (xy 170.671822 119.129029) (xy 170.671883 119.128612) (xy 170.671869 119.12668) (xy 170.671581 119.089406) (xy 170.671579 119.089159) (xy 170.671377 119.053985) (xy 170.67137 119.052765) (xy 170.671308 119.052348) (xy 170.671292 119.051971) (xy 170.671054 119.021105) (xy 170.671069 119.020607) (xy 170.67115 119.020045) (xy 170.670741 118.980606) (xy 170.67061 118.963641) (xy 170.670476 118.946176) (xy 170.670475 118.946164) (xy 170.670463 118.944547) (xy 170.670378 118.943983) (xy 170.670356 118.943491) (xy 170.670342 118.942138) (xy 170.67019 118.927495) (xy 170.670208 118.926814) (xy 170.670316 118.926051) (xy 170.669984 118.902254) (xy 170.66977 118.886988) (xy 170.669765 118.886533) (xy 170.66942 118.853228) (xy 170.66942 118.853219) (xy 170.669397 118.851043) (xy 170.669279 118.850272) (xy 170.669247 118.84961) (xy 170.669214 118.847301) (xy 170.669236 118.846341) (xy 170.669379 118.845292) (xy 170.669225 118.837139) (xy 170.668956 118.822994) (xy 170.668644 118.806547) (xy 170.668233 118.77711) (xy 170.668233 118.777109) (xy 170.669997 118.777084) (xy 170.669829 118.776258) (xy 170.668338 118.776297) (xy 170.668188 118.770518) (xy 170.667354 118.738387) (xy 170.667337 118.737601) (xy 170.66726 118.7335) (xy 170.666986 118.719055) (xy 170.666986 118.719052) (xy 170.668529 118.719023) (xy 170.668194 118.717316) (xy 170.667188 118.717352) (xy 170.666694 118.703698) (xy 170.668097 118.703647) (xy 170.668247 118.7029) (xy 170.666668 118.702957) (xy 170.666645 118.702332) (xy 170.665857 118.680528) (xy 170.66582 118.679342) (xy 170.665699 118.674654) (xy 170.665585 118.670269) (xy 170.665585 118.669359) (xy 170.665893 118.666384) (xy 170.665145 118.651802) (xy 170.665025 118.648695) (xy 170.665003 118.647868) (xy 170.664948 118.645747) (xy 170.666022 118.645719) (xy 170.666217 118.644693) (xy 170.664783 118.644767) (xy 170.664119 118.631816) (xy 170.663957 118.625207) (xy 170.66434 118.620387) (xy 170.663258 118.606011) (xy 170.663041 118.602125) (xy 170.663013 118.601864) (xy 170.662851 118.597376) (xy 170.662851 118.597373) (xy 170.66285 118.597359) (xy 170.663032 118.597352) (xy 170.663458 118.594987) (xy 170.662434 118.595064) (xy 170.66221 118.592089) (xy 170.662071 118.584289) (xy 170.662065 118.584289) (xy 170.661882 118.579418) (xy 170.662075 118.574556) (xy 170.661378 118.568506) (xy 170.660627 118.558483) (xy 170.660469 118.553967) (xy 170.661431 118.545041) (xy 170.657744 118.524443) (xy 170.657363 118.5218) (xy 170.657291 118.51954) (xy 170.656373 118.514668) (xy 170.656334 118.514241) (xy 170.655861 118.509926) (xy 170.65594 118.509917) (xy 170.654899 118.498511) (xy 170.654184 118.493353) (xy 170.654223 118.484374) (xy 170.651899 118.476295) (xy 170.65164 118.467394) (xy 170.648872 118.458858) (xy 170.648871 118.458852) (xy 170.643838 118.443332) (xy 170.642251 118.437895) (xy 170.641515 118.433785) (xy 170.639932 118.429186) (xy 170.639929 118.429176) (xy 170.633126 118.409418) (xy 170.632982 118.408997) (xy 170.632449 118.407431) (xy 170.629867 118.398859) (xy 170.625535 118.382377) (xy 170.625534 118.382375) (xy 170.623254 118.373698) (xy 170.619457 118.367384) (xy 170.61941 118.367258) (xy 170.618279 118.364515) (xy 170.616777 118.359882) (xy 170.615438 118.357234) (xy 170.614329 118.354285) (xy 170.614063 118.353502) (xy 170.611642 118.346401) (xy 170.610901 118.343858) (xy 170.61005 118.34173) (xy 170.609813 118.341036) (xy 170.607757 118.332577) (xy 170.605733 118.329065) (xy 170.605308 118.32782) (xy 170.603682 118.325509) (xy 170.589599 118.301079) (xy 170.590574 118.300517) (xy 170.589046 118.298641) (xy 170.588658 118.298877) (xy 170.582912 118.289417) (xy 170.581466 118.286973) (xy 170.576915 118.279078) (xy 170.57449 118.274669) (xy 170.565856 118.258205) (xy 170.56585 118.258195) (xy 170.563767 118.254223) (xy 170.561142 118.250586) (xy 170.559926 118.248621) (xy 170.554677 118.240505) (xy 170.551307 118.234659) (xy 170.551307 118.234658) (xy 170.551304 118.234654) (xy 170.551364 118.234619) (xy 170.548176 118.229349) (xy 170.542873 118.219361) (xy 170.542871 118.219358) (xy 170.538663 118.211433) (xy 170.529741 118.202279) (xy 170.522874 118.195234) (xy 170.510938 118.181032) (xy 170.504732 118.172434) (xy 170.499479 118.165156) (xy 170.483998 118.153114) (xy 170.465431 118.135351) (xy 170.453247 118.121042) (xy 170.445737 118.116112) (xy 170.445735 118.11611) (xy 170.443756 118.114811) (xy 170.426917 118.101579) (xy 170.422862 118.097793) (xy 170.422858 118.09779) (xy 170.416298 118.091665) (xy 170.402638 118.084784) (xy 170.391556 118.077388) (xy 170.391064 118.078152) (xy 170.383517 118.073293) (xy 170.376734 118.067411) (xy 170.360067 118.059771) (xy 170.359412 118.05944) (xy 170.358764 118.059015) (xy 170.344684 118.052618) (xy 170.336244 118.048394) (xy 170.300202 118.028633) (xy 170.300199 118.028632) (xy 170.292329 118.024317) (xy 170.283564 118.022384) (xy 170.283563 118.022384) (xy 170.276986 118.020934) (xy 170.26985 118.01914) (xy 170.242638 118.01145) (xy 170.241577 118.011146) (xy 170.232056 118.008365) (xy 170.231608 118.008234) (xy 170.225724 118.006357) (xy 170.21134 118.001378) (xy 170.211333 118.001376) (xy 170.206739 117.999786) (xy 170.201946 117.99892) (xy 170.200449 117.998528) (xy 170.189745 117.996005) (xy 170.16928 117.990026) (xy 170.160302 117.990028) (xy 170.155768 117.98938) (xy 170.1527 117.988858) (xy 170.149182 117.987877) (xy 170.144347 117.987306) (xy 170.144344 117.987305) (xy 170.128892 117.985479) (xy 170.12127 117.984341) (xy 170.10864 117.982058) (xy 170.108626 117.982057) (xy 170.104224 117.981261) (xy 170.099746 117.981098) (xy 170.096357 117.980732) (xy 170.093998 117.980172) (xy 170.070977 117.978365) (xy 170.066647 117.978025) (xy 170.061719 117.97754) (xy 170.043916 117.975436) (xy 170.037588 117.974688) (xy 170.035785 117.974732) (xy 170.035677 117.974695) (xy 170.035675 117.974735) (xy 170.023524 117.974096) (xy 170.004171 117.973078) (xy 170.000953 117.972867) (xy 169.972401 117.970626) (xy 169.9724 117.970626) (xy 169.972423 117.970335) (xy 169.970981 117.969901) (xy 169.970952 117.970719) (xy 169.936646 117.969507) (xy 169.934477 117.969412) (xy 169.932382 117.969302) (xy 169.903126 117.967763) (xy 169.901819 117.967881) (xy 169.89678 117.967673) (xy 169.896716 117.967662) (xy 169.879282 117.967251) (xy 169.860412 117.966806) (xy 169.859019 117.966765) (xy 169.825909 117.965596) (xy 169.823471 117.965858) (xy 169.820857 117.965874) (xy 169.817008 117.965783) (xy 169.813891 117.96571) (xy 169.812257 117.965615) (xy 169.810579 117.965327) (xy 169.773068 117.964745) (xy 169.772256 117.964729) (xy 169.754394 117.964308) (xy 169.742235 117.964021) (xy 169.742227 117.964021) (xy 169.737854 117.963918) (xy 169.73617 117.964119) (xy 169.734499 117.964146) (xy 169.716222 117.963862) (xy 169.712985 117.963812) (xy 169.711889 117.963756) (xy 169.710722 117.963562) (xy 169.698021 117.963435) (xy 169.67236 117.963179) (xy 169.671664 117.96317) (xy 169.639886 117.962677) (xy 169.639879 117.962677) (xy 169.636711 117.962628) (xy 169.635543 117.962777) (xy 169.634459 117.962802) (xy 169.618718 117.962645) (xy 169.596964 117.962427) (xy 169.59624 117.962393) (xy 169.59544 117.962264) (xy 169.593166 117.96225) (xy 169.556657 117.962025) (xy 169.556178 117.962021) (xy 169.540472 117.961865) (xy 169.520535 117.961666) (xy 169.519724 117.961774) (xy 169.519009 117.961794) (xy 169.481227 117.961561) (xy 169.464178 117.961456) (xy 169.463706 117.961435) (xy 169.463158 117.961348) (xy 169.461573 117.961342) (xy 169.461565 117.961342) (xy 169.423957 117.961208) (xy 169.42363 117.961207) (xy 169.387615 117.960985) (xy 169.38707 117.961059) (xy 169.386595 117.961074) (xy 169.313043 117.960811) (xy 169.312724 117.960798) (xy 169.312362 117.960741) (xy 169.311298 117.960739) (xy 169.272845 117.960667) (xy 169.272633 117.960666) (xy 169.252654 117.960595) (xy 169.236374 117.960537) (xy 169.236005 117.960589) (xy 169.23571 117.960599) (xy 169.178024 117.960491) (xy 169.142039 117.960424) (xy 169.141843 117.960416) (xy 169.141614 117.96038) (xy 169.140938 117.960379) (xy 169.140926 117.960379) (xy 169.101864 117.960349) (xy 169.101727 117.960349) (xy 169.065977 117.960282) (xy 169.06597 117.960282) (xy 169.0653 117.960281) (xy 169.065071 117.960313) (xy 169.064878 117.96032) (xy 168.990463 117.960262) (xy 168.949738 117.96023) (xy 168.94963 117.960226) (xy 168.949503 117.960206) (xy 168.916974 117.9602) (xy 168.91073 117.960199) (xy 168.910656 117.960199) (xy 168.873347 117.96017) (xy 168.872951 117.96017) (xy 168.872819 117.960189) (xy 168.8727 117.960193) (xy 168.775261 117.960177) (xy 168.734752 117.96017) (xy 168.734703 117.960168) (xy 168.734645 117.960159) (xy 168.734471 117.960159) (xy 168.699206 117.960163) (xy 168.6926 117.960163) (xy 168.658097 117.960157) (xy 168.657919 117.960157) (xy 168.65786 117.960165) (xy 168.657808 117.960167) (xy 168.495677 117.960185) (xy 168.495672 117.960184) (xy 168.495657 117.960184) (xy 168.468858 117.960188) (xy 168.468852 117.960188) (xy 168.458135 117.960189) (xy 168.418818 117.960193) (xy 168.418811 117.960194) (xy 168.418804 117.960194) (xy 168.195691 117.960224) (xy 168.195679 117.960224) (xy 168.056198 117.96023) (xy 166.301052 117.96023) (xy 166.232931 117.940228) (xy 166.203157 117.913556) (xy 166.188449 117.895405) (xy 166.170194 117.872877) (xy 166.164292 117.868793) (xy 166.155649 117.859183) (xy 166.153529 117.855297) (xy 166.145625 117.847369) (xy 166.111394 117.813037) (xy 166.107407 117.80885) (xy 166.093086 117.793098) (xy 166.088813 117.789566) (xy 166.079877 117.781426) (xy 166.077165 117.778706) (xy 166.077163 117.778705) (xy 166.073728 117.775259) (xy 166.057066 117.763049) (xy 166.051269 117.758535) (xy 166.015338 117.728836) (xy 166.008419 117.723117) (xy 166.002474 117.72056) (xy 165.994783 117.714837) (xy 165.99294 117.712637) (xy 165.942593 117.679011) (xy 165.938113 117.675876) (xy 165.920352 117.66286) (xy 165.916402 117.660752) (xy 165.916178 117.660632) (xy 165.905526 117.654254) (xy 165.903005 117.65257) (xy 165.902997 117.652566) (xy 165.898952 117.649864) (xy 165.8795 117.640839) (xy 165.873228 117.637714) (xy 165.856512 117.628794) (xy 165.823442 117.611147) (xy 165.818516 117.610119) (xy 165.812881 117.607449) (xy 165.811918 117.606672) (xy 165.754747 117.582854) (xy 165.750241 117.580871) (xy 165.741289 117.576718) (xy 165.733263 117.572994) (xy 165.733258 117.572992) (xy 165.729199 117.571109) (xy 165.724909 117.569819) (xy 165.722471 117.568892) (xy 165.713726 117.565764) (xy 165.712094 117.565084) (xy 165.712083 117.565081) (xy 165.707586 117.563207) (xy 165.685576 117.557814) (xy 165.679328 117.55611) (xy 165.624009 117.539473) (xy 165.620521 117.539447) (xy 165.616918 117.538535) (xy 165.616911 117.538531) (xy 165.555283 117.525802) (xy 165.550787 117.524788) (xy 165.531746 117.520123) (xy 165.531745 117.520123) (xy 165.527403 117.519059) (xy 165.522954 117.518621) (xy 165.518526 117.517865) (xy 165.51853 117.517844) (xy 165.511781 117.516818) (xy 165.506224 117.51567) (xy 165.482683 117.514511) (xy 165.476554 117.514058) (xy 165.463428 117.512767) (xy 165.427017 117.509186) (xy 165.427014 117.509186) (xy 165.418086 117.508308) (xy 165.41564 117.508769) (xy 165.413476 117.508649) (xy 165.413475 117.508745) (xy 165.35032 117.507909) (xy 165.345793 117.507768) (xy 165.326057 117.506796) (xy 165.32605 117.506796) (xy 165.321579 117.506576) (xy 165.317114 117.506993) (xy 165.312638 117.507091) (xy 165.312637 117.507055) (xy 165.305938 117.507322) (xy 165.305331 117.507314) (xy 165.305326 117.507314) (xy 165.300462 117.50725) (xy 165.295654 117.507934) (xy 165.295647 117.507934) (xy 165.276939 117.510594) (xy 165.27091 117.511303) (xy 165.251262 117.513136) (xy 165.212209 117.51678) (xy 165.209937 117.517681) (xy 165.207014 117.518081) (xy 165.20687 117.518066) (xy 165.206084 117.518208) (xy 165.20608 117.518209) (xy 165.20139 117.519059) (xy 165.145399 117.529206) (xy 165.140744 117.529958) (xy 165.117296 117.533292) (xy 165.112985 117.534548) (xy 165.108871 117.535435) (xy 165.101688 117.537127) (xy 165.100444 117.537352) (xy 165.100435 117.537354) (xy 165.095658 117.53822) (xy 165.091074 117.539809) (xy 165.091064 117.539812) (xy 165.0738 117.545798) (xy 165.067772 117.547719) (xy 165.011835 117.564015) (xy 165.008983 117.565835) (xy 165.004406 117.567401) (xy 165.002946 117.567534) (xy 164.995965 117.570288) (xy 164.995964 117.570288) (xy 164.94612 117.589949) (xy 164.941164 117.591785) (xy 164.924161 117.59768) (xy 164.924154 117.597683) (xy 164.919926 117.599149) (xy 164.91594 117.601204) (xy 164.915338 117.601462) (xy 164.904686 117.606293) (xy 164.902345 117.607216) (xy 164.902334 117.607222) (xy 164.897807 117.609007) (xy 164.89361 117.611467) (xy 164.8936 117.611472) (xy 164.878894 117.620093) (xy 164.872936 117.623373) (xy 164.822291 117.649481) (xy 164.81866 117.652935) (xy 164.811838 117.656895) (xy 164.808982 117.657752) (xy 164.75881 117.690331) (xy 164.753931 117.693342) (xy 164.739364 117.701881) (xy 164.739361 117.701883) (xy 164.735497 117.704148) (xy 164.731997 117.706935) (xy 164.731988 117.706941) (xy 164.731252 117.707527) (xy 164.721397 117.714625) (xy 164.718274 117.716653) (xy 164.71419 117.719305) (xy 164.709934 117.723117) (xy 164.698719 117.733161) (xy 164.693142 117.737872) (xy 164.661522 117.763049) (xy 164.649565 117.772569) (xy 164.645637 117.778143) (xy 164.637114 117.785691) (xy 164.633578 117.787589) (xy 164.591186 117.829284) (xy 164.586896 117.83331) (xy 164.577043 117.842135) (xy 164.571199 117.847369) (xy 164.568319 117.850801) (xy 164.568315 117.850805) (xy 164.567518 117.851755) (xy 164.559352 117.860594) (xy 164.552998 117.866843) (xy 164.550097 117.870746) (xy 164.550095 117.870748) (xy 164.540791 117.883265) (xy 164.536199 117.889078) (xy 164.500589 117.931512) (xy 164.4977 117.929087) (xy 164.45792 117.964554) (xy 164.424785 117.974396) (xy 164.424847 117.974691) (xy 164.421281 117.975436) (xy 164.420906 117.975548) (xy 164.4207 117.975576) (xy 164.420454 117.975609) (xy 164.420453 117.975609) (xy 164.416011 117.976212) (xy 164.407162 117.978729) (xy 164.396793 117.98121) (xy 164.384652 117.983575) (xy 164.372396 117.988005) (xy 164.369666 117.988797) (xy 164.366805 117.989013) (xy 164.358649 117.992082) (xy 164.348772 117.995339) (xy 164.310358 118.006266) (xy 164.302756 118.011049) (xy 164.294562 118.014702) (xy 164.294281 118.014071) (xy 164.292252 118.015012) (xy 164.29249 118.015505) (xy 164.288092 118.017626) (xy 164.282582 118.020122) (xy 164.279613 118.021382) (xy 164.277787 118.021594) (xy 164.277891 118.021828) (xy 164.276661 118.022374) (xy 164.275008 118.02293) (xy 164.273228 118.023853) (xy 164.269575 118.025174) (xy 164.267368 118.026349) (xy 164.265885 118.026957) (xy 164.265573 118.027103) (xy 164.261021 118.028815) (xy 164.245069 118.037829) (xy 164.233855 118.043446) (xy 164.216879 118.050917) (xy 164.21307 118.053288) (xy 164.209804 118.055012) (xy 164.199631 118.059813) (xy 164.187499 118.064891) (xy 164.175852 118.069765) (xy 164.146249 118.093744) (xy 164.133539 118.102795) (xy 164.123626 118.108966) (xy 164.12078 118.112149) (xy 164.120286 118.112522) (xy 164.108564 118.120432) (xy 164.108563 118.120433) (xy 164.101125 118.125452) (xy 164.095395 118.132356) (xy 164.089717 118.137498) (xy 164.085235 118.141122) (xy 164.082858 118.143409) (xy 164.075571 118.148653) (xy 164.070048 118.155733) (xy 164.070045 118.155736) (xy 164.065696 118.161311) (xy 164.051876 118.176338) (xy 164.046798 118.181032) (xy 164.039358 118.187909) (xy 164.034741 118.195607) (xy 164.03474 118.195609) (xy 164.032398 118.199515) (xy 164.022566 118.21223) (xy 164.022833 118.212426) (xy 164.017512 118.219664) (xy 164.011226 118.226066) (xy 164.006991 118.233974) (xy 164.006987 118.233979) (xy 163.996771 118.253055) (xy 163.990167 118.26401) (xy 163.973363 118.28893) (xy 163.973359 118.288939) (xy 163.968342 118.296379) (xy 163.965614 118.304931) (xy 163.965612 118.304935) (xy 163.962892 118.313462) (xy 163.959218 118.323174) (xy 163.957866 118.3257) (xy 163.948095 118.353566) (xy 163.946897 118.356834) (xy 163.923335 118.418349) (xy 163.922606 118.427299) (xy 163.921236 118.433325) (xy 163.919187 118.443822) (xy 163.919854 118.443977) (xy 163.918754 118.448725) (xy 163.917293 118.453365) (xy 163.914854 118.469447) (xy 163.91481 118.469736) (xy 163.913094 118.478797) (xy 163.910113 118.491895) (xy 163.909748 118.49636) (xy 163.909066 118.500792) (xy 163.909028 118.500786) (xy 163.908777 118.502689) (xy 163.908064 118.5054) (xy 163.907142 118.514332) (xy 163.905742 118.521422) (xy 163.905833 118.522433) (xy 163.905008 118.524778) (xy 163.906053 118.524886) (xy 163.905524 118.530012) (xy 163.904765 118.535969) (xy 163.901522 118.557354) (xy 163.901501 118.559862) (xy 163.90066 118.571671) (xy 163.899547 118.587313) (xy 163.899199 118.591299) (xy 163.89646 118.617842) (xy 163.896517 118.619281) (xy 163.896036 118.620743) (xy 163.896575 118.62077) (xy 163.895292 118.64668) (xy 163.895128 118.649395) (xy 163.894197 118.662478) (xy 163.892999 118.679302) (xy 163.892534 118.679269) (xy 163.892052 118.68091) (xy 163.893116 118.680947) (xy 163.892048 118.71187) (xy 163.891969 118.713754) (xy 163.890506 118.743295) (xy 163.890383 118.745778) (xy 163.8904 118.745959) (xy 163.890285 118.748843) (xy 163.890378 118.748845) (xy 163.890378 118.748846) (xy 163.889542 118.783756) (xy 163.889502 118.785412) (xy 163.889465 118.786684) (xy 163.888305 118.820262) (xy 163.888544 118.822465) (xy 163.888558 118.824764) (xy 163.888459 118.828911) (xy 163.888368 118.830452) (xy 163.888098 118.832017) (xy 163.888029 118.836221) (xy 163.887481 118.869545) (xy 163.887462 118.870492) (xy 163.886635 118.905008) (xy 163.886823 118.90659) (xy 163.886847 118.908122) (xy 163.886776 118.912448) (xy 163.886559 118.92561) (xy 163.886504 118.926653) (xy 163.886314 118.927792) (xy 163.885891 118.966208) (xy 163.885558 118.98647) (xy 163.885402 118.995988) (xy 163.885305 119.001869) (xy 163.885449 119.003012) (xy 163.885473 119.004095) (xy 163.885443 119.006825) (xy 163.885121 119.036028) (xy 163.885085 119.036788) (xy 163.884951 119.037608) (xy 163.884934 119.039933) (xy 163.884934 119.039943) (xy 163.88478 119.061631) (xy 163.864293 119.129608) (xy 163.810308 119.175717) (xy 163.739964 119.185321) (xy 163.684692 119.162648) (xy 163.680835 119.159844) (xy 163.675408 119.155433) (xy 163.675386 119.155461) (xy 163.671852 119.152689) (xy 163.668538 119.149685) (xy 163.646619 119.134878) (xy 163.643064 119.132386) (xy 163.583603 119.089159) (xy 163.490878 119.021749) (xy 163.486341 119.01829) (xy 163.466202 119.002195) (xy 163.461978 118.999778) (xy 163.461974 118.999775) (xy 163.461712 118.999625) (xy 163.456013 118.995938) (xy 163.455982 118.995988) (xy 163.452183 118.993619) (xy 163.44855 118.990978) (xy 163.424804 118.978423) (xy 163.421163 118.976419) (xy 163.324881 118.921316) (xy 163.284013 118.897927) (xy 163.278387 118.894509) (xy 163.262679 118.884395) (xy 163.262673 118.884392) (xy 163.258581 118.881757) (xy 163.251905 118.878795) (xy 163.241491 118.873522) (xy 163.24072 118.873151) (xy 163.236819 118.870918) (xy 163.232648 118.869264) (xy 163.23264 118.86926) (xy 163.214067 118.861894) (xy 163.209418 118.859942) (xy 163.072266 118.799087) (xy 163.066887 118.796547) (xy 163.048689 118.787421) (xy 163.048685 118.787419) (xy 163.044341 118.785241) (xy 163.038946 118.783511) (xy 163.032311 118.780983) (xy 163.032302 118.781007) (xy 163.028089 118.779486) (xy 163.02399 118.777667) (xy 163.019675 118.776448) (xy 163.01967 118.776446) (xy 162.998689 118.770518) (xy 162.994486 118.769251) (xy 162.854956 118.7245) (xy 162.850106 118.722835) (xy 162.828913 118.71507) (xy 162.828908 118.715069) (xy 162.82434 118.713395) (xy 162.819566 118.712443) (xy 162.816291 118.711523) (xy 162.815122 118.71122) (xy 162.815084 118.711377) (xy 162.810731 118.710315) (xy 162.806467 118.708948) (xy 162.778314 118.70417) (xy 162.77477 118.703516) (xy 162.629952 118.674654) (xy 162.623907 118.673294) (xy 162.600121 118.667322) (xy 162.593813 118.666743) (xy 162.585533 118.665541) (xy 162.581955 118.665089) (xy 162.577553 118.664212) (xy 162.563055 118.663421) (xy 162.552018 118.662819) (xy 162.547364 118.662478) (xy 162.460317 118.654488) (xy 162.403524 118.649274) (xy 162.392851 118.647832) (xy 162.385249 118.646471) (xy 162.385239 118.64647) (xy 162.380461 118.645615) (xy 162.374786 118.645487) (xy 162.362489 118.645208) (xy 162.353824 118.644712) (xy 162.352676 118.644607) (xy 162.339074 118.643358) (xy 162.332076 118.643713) (xy 162.32571 118.644036) (xy 162.316471 118.644166) (xy 162.267059 118.643047) (xy 162.262819 118.642951) (xy 162.250161 118.642024) (xy 162.247434 118.641686) (xy 162.247425 118.641686) (xy 162.242592 118.641086) (xy 162.237727 118.641237) (xy 162.237725 118.641237) (xy 162.233793 118.641359) (xy 162.219759 118.641795) (xy 162.213025 118.641824) (xy 162.193307 118.641377) (xy 162.186299 118.642219) (xy 162.184943 118.642382) (xy 162.173824 118.64322) (xy 162.069086 118.646471) (xy 162.059457 118.646402) (xy 162.050074 118.645976) (xy 162.043918 118.645696) (xy 162.028952 118.647334) (xy 162.019155 118.648021) (xy 162.007258 118.64839) (xy 161.991113 118.651216) (xy 161.983116 118.652352) (xy 161.877054 118.663963) (xy 161.86903 118.664583) (xy 161.849394 118.665469) (xy 161.84463 118.666433) (xy 161.844627 118.666433) (xy 161.842428 118.666878) (xy 161.83858 118.667657) (xy 161.827319 118.669408) (xy 161.819454 118.670269) (xy 161.799536 118.675382) (xy 161.793209 118.676833) (xy 161.772876 118.680945) (xy 161.68714 118.698285) (xy 161.679317 118.699613) (xy 161.664352 118.701669) (xy 161.664344 118.701671) (xy 161.659532 118.702332) (xy 161.654876 118.703727) (xy 161.654874 118.703727) (xy 161.651972 118.704596) (xy 161.649249 118.705412) (xy 161.638083 118.708207) (xy 161.635013 118.708828) (xy 161.635009 118.708829) (xy 161.630614 118.709718) (xy 161.62639 118.711221) (xy 161.626382 118.711223) (xy 161.610954 118.716712) (xy 161.604881 118.718701) (xy 161.499665 118.750215) (xy 161.490691 118.752546) (xy 161.479367 118.755046) (xy 161.479363 118.755047) (xy 161.474613 118.756096) (xy 161.470081 118.757863) (xy 161.470072 118.757866) (xy 161.461428 118.761237) (xy 161.451805 118.764548) (xy 161.445549 118.766422) (xy 161.445537 118.766427) (xy 161.441238 118.767714) (xy 161.437168 118.769597) (xy 161.437167 118.769597) (xy 161.425542 118.774974) (xy 161.418421 118.778006) (xy 161.313226 118.819024) (xy 161.302344 118.822704) (xy 161.296718 118.824325) (xy 161.29671 118.824328) (xy 161.292032 118.825676) (xy 161.274089 118.834015) (xy 161.266791 118.83713) (xy 161.251282 118.843177) (xy 161.247382 118.845379) (xy 161.247376 118.845382) (xy 161.241228 118.848854) (xy 161.232383 118.853397) (xy 161.161085 118.886533) (xy 161.127258 118.902254) (xy 161.121628 118.904706) (xy 161.118398 118.90602) (xy 161.113762 118.9075) (xy 161.10941 118.909675) (xy 161.109401 118.909679) (xy 161.08612 118.921316) (xy 161.082902 118.922868) (xy 161.057721 118.934571) (xy 161.053967 118.937016) (xy 161.050086 118.939167) (xy 161.044686 118.941991) (xy 160.988163 118.969837) (xy 160.98611 118.970826) (xy 160.933462 118.99559) (xy 160.931006 118.996713) (xy 160.901855 119.009655) (xy 160.889363 119.014425) (xy 160.840416 119.030191) (xy 160.837949 119.030958) (xy 160.810824 119.039085) (xy 160.807219 119.040753) (xy 160.802546 119.04239) (xy 160.766061 119.054142) (xy 160.758628 119.059185) (xy 160.748368 119.066146) (xy 160.730538 119.076231) (xy 160.711132 119.085209) (xy 160.70437 119.091113) (xy 160.704371 119.091113) (xy 160.68509 119.107949) (xy 160.672957 119.117307) (xy 160.659143 119.12668) (xy 160.64434 119.136723) (xy 160.630725 119.153212) (xy 160.616446 119.167891) (xy 160.600338 119.181957) (xy 160.595506 119.189521) (xy 160.595505 119.189522) (xy 160.581722 119.211097) (xy 160.572707 119.22348) (xy 160.550689 119.250146) (xy 160.547146 119.258395) (xy 160.542251 119.269789) (xy 160.532665 119.287886) (xy 160.525983 119.298347) (xy 160.525981 119.298351) (xy 160.521151 119.305912) (xy 160.51756 119.318215) (xy 160.511463 119.339101) (xy 160.506283 119.353522) (xy 160.49618 119.377043) (xy 160.496179 119.377046) (xy 160.492636 119.385295) (xy 160.49155 119.394208) (xy 160.49155 119.394209) (xy 160.490051 119.406514) (xy 160.485929 119.426581) (xy 160.482451 119.438495) (xy 160.48245 119.438499) (xy 160.479937 119.44711) (xy 160.479941 119.456082) (xy 160.479941 119.456085) (xy 160.479954 119.481693) (xy 160.479029 119.496992) (xy 160.474849 119.531305) (xy 160.476308 119.540161) (xy 160.476308 119.540162) (xy 160.478323 119.552391) (xy 160.479999 119.572812) (xy 160.480009 119.594199) (xy 160.489732 119.627388) (xy 160.493136 119.64232) (xy 160.498756 119.676439) (xy 160.506672 119.69292) (xy 160.508012 119.69571) (xy 160.515352 119.71484) (xy 160.521363 119.735359) (xy 160.518084 119.73632) (xy 160.525766 119.79026) (xy 160.496187 119.854801) (xy 160.43641 119.893105) (xy 160.372699 119.894925) (xy 160.360764 119.892167) (xy 160.360026 119.891994) (xy 160.303483 119.878542) (xy 160.270573 119.870712) (xy 160.267865 119.869964) (xy 160.266015 119.86922) (xy 160.250757 119.865681) (xy 160.23032 119.860941) (xy 160.229059 119.860642) (xy 160.200707 119.853758) (xy 160.200705 119.853758) (xy 160.196353 119.852701) (xy 160.194206 119.852495) (xy 160.192013 119.852056) (xy 160.10295 119.831398) (xy 160.096942 119.82961) (xy 160.096891 119.82979) (xy 160.092208 119.828478) (xy 160.087633 119.826805) (xy 160.058401 119.820999) (xy 160.05448 119.820155) (xy 160.032841 119.815136) (xy 160.032833 119.815135) (xy 160.028471 119.814123) (xy 160.024001 119.813739) (xy 160.019581 119.813041) (xy 160.019597 119.812939) (xy 160.013383 119.812058) (xy 159.969484 119.803339) (xy 159.940742 119.79763) (xy 159.927628 119.79427) (xy 159.927451 119.794229) (xy 159.922812 119.792765) (xy 159.900613 119.789384) (xy 159.89747 119.788905) (xy 159.891899 119.787928) (xy 159.874225 119.784418) (xy 159.874224 119.784418) (xy 159.869824 119.783544) (xy 159.864257 119.783244) (xy 159.852089 119.781993) (xy 159.786988 119.772077) (xy 159.775006 119.769651) (xy 159.766522 119.767498) (xy 159.750481 119.765985) (xy 159.744879 119.765456) (xy 159.737748 119.764577) (xy 159.72378 119.76245) (xy 159.723772 119.762449) (xy 159.719344 119.761775) (xy 159.709809 119.76169) (xy 159.699108 119.761138) (xy 159.660058 119.757455) (xy 159.638039 119.755378) (xy 159.626788 119.753802) (xy 159.615921 119.751776) (xy 159.596446 119.751194) (xy 159.588408 119.750696) (xy 159.572137 119.749161) (xy 159.567659 119.749377) (xy 159.567658 119.749377) (xy 159.560297 119.749732) (xy 159.550468 119.749822) (xy 159.537232 119.749427) (xy 159.49216 119.748081) (xy 159.480664 119.747209) (xy 159.470174 119.745927) (xy 159.465305 119.746087) (xy 159.465304 119.746087) (xy 159.450244 119.746582) (xy 159.442344 119.746594) (xy 159.437898 119.746461) (xy 159.425532 119.746092) (xy 159.414231 119.747368) (xy 159.404246 119.748094) (xy 159.388536 119.74861) (xy 159.351747 119.749819) (xy 159.340606 119.749562) (xy 159.338471 119.749558) (xy 159.333624 119.749175) (xy 159.328775 119.749542) (xy 159.328774 119.749542) (xy 159.326265 119.749732) (xy 159.307327 119.751165) (xy 159.301991 119.751454) (xy 159.27878 119.752217) (xy 159.27437 119.752997) (xy 159.274361 119.752998) (xy 159.27399 119.753064) (xy 159.261573 119.754628) (xy 159.257305 119.754951) (xy 159.245015 119.755279) (xy 159.241265 119.755196) (xy 159.241263 119.755196) (xy 159.236396 119.755088) (xy 159.21472 119.757972) (xy 159.20763 119.758711) (xy 159.203307 119.759038) (xy 159.193423 119.759786) (xy 159.193418 119.759787) (xy 159.188948 119.760125) (xy 159.184567 119.761095) (xy 159.184564 119.761095) (xy 159.179757 119.762159) (xy 159.169149 119.764035) (xy 159.019251 119.783979) (xy 159.012801 119.784669) (xy 159.009772 119.784914) (xy 158.993918 119.786196) (xy 158.993913 119.786197) (xy 158.989078 119.786588) (xy 158.982198 119.788236) (xy 158.97146 119.790231) (xy 158.970012 119.79053) (xy 158.965568 119.791121) (xy 158.961254 119.792336) (xy 158.961249 119.792337) (xy 158.941741 119.797831) (xy 158.936946 119.79908) (xy 158.787658 119.834852) (xy 158.784344 119.835599) (xy 158.757459 119.841279) (xy 158.757442 119.841284) (xy 158.752685 119.842289) (xy 158.748134 119.844016) (xy 158.747735 119.844133) (xy 158.745091 119.845052) (xy 158.74196 119.845802) (xy 158.709924 119.858502) (xy 158.708424 119.859084) (xy 158.58516 119.90586) (xy 158.532844 119.9256) (xy 158.532838 119.925603) (xy 158.528295 119.927317) (xy 158.499652 119.943538) (xy 158.498688 119.944077) (xy 158.43374 119.979975) (xy 158.432114 119.981614) (xy 158.430227 119.982853) (xy 158.425859 119.985327) (xy 158.422137 119.98714) (xy 158.41828 119.988122) (xy 158.376055 120.013069) (xy 158.358123 120.023663) (xy 158.356129 120.024817) (xy 158.331053 120.039017) (xy 158.32824 120.041189) (xy 158.325399 120.04297) (xy 158.325164 120.043135) (xy 158.32097 120.045612) (xy 158.298613 120.063993) (xy 158.295635 120.066365) (xy 158.291122 120.06985) (xy 158.24411 120.106149) (xy 158.241207 120.110141) (xy 158.227928 120.121019) (xy 158.22434 120.122667) (xy 158.174214 120.166204) (xy 158.171638 120.16838) (xy 158.160615 120.177443) (xy 158.150983 120.185362) (xy 158.147966 120.188663) (xy 158.145764 120.190752) (xy 158.14306 120.193207) (xy 158.142674 120.193598) (xy 158.139009 120.196782) (xy 158.135876 120.200493) (xy 158.135869 120.2005) (xy 158.12198 120.216952) (xy 158.118723 120.22066) (xy 158.076879 120.266444) (xy 158.073708 120.272909) (xy 158.062556 120.285871) (xy 158.060934 120.286995) (xy 158.055285 120.293976) (xy 158.051191 120.299034) (xy 157.992789 120.339404) (xy 157.921833 120.341791) (xy 157.86085 120.305438) (xy 157.855244 120.298963) (xy 157.845779 120.28725) (xy 157.845025 120.286308) (xy 157.822853 120.258326) (xy 157.822852 120.258325) (xy 157.819826 120.254506) (xy 157.802304 120.238304) (xy 157.737598 120.17816) (xy 157.737008 120.177865) (xy 157.736483 120.177443) (xy 157.673061 120.1188) (xy 157.672526 120.118302) (xy 157.643562 120.091207) (xy 157.64001 120.087884) (xy 157.613814 120.070054) (xy 157.613157 120.069603) (xy 157.552552 120.027782) (xy 157.549148 120.025433) (xy 157.547751 120.024971) (xy 157.546516 120.024248) (xy 157.530573 120.013396) (xy 157.530357 120.013225) (xy 157.530228 120.013069) (xy 157.436762 119.949519) (xy 157.407174 119.935493) (xy 157.405819 119.934839) (xy 157.34716 119.906114) (xy 157.34715 119.90611) (xy 157.340462 119.902835) (xy 157.3377 119.902359) (xy 157.335102 119.901327) (xy 157.261448 119.866411) (xy 157.258392 119.864911) (xy 157.233939 119.852496) (xy 157.233935 119.852494) (xy 157.229599 119.850293) (xy 157.224971 119.848783) (xy 157.224601 119.84863) (xy 157.221906 119.847666) (xy 157.218963 119.846271) (xy 157.186105 119.836091) (xy 157.184513 119.835585) (xy 157.114073 119.812606) (xy 157.110092 119.811233) (xy 157.081982 119.800999) (xy 157.077215 119.800059) (xy 157.076764 119.799933) (xy 157.072072 119.798887) (xy 157.071858 119.798834) (xy 157.0676 119.797445) (xy 157.038383 119.792337) (xy 157.036845 119.792068) (xy 157.034172 119.791571) (xy 156.981981 119.781281) (xy 156.97397 119.779701) (xy 156.966978 119.778114) (xy 156.945711 119.772646) (xy 156.940865 119.772174) (xy 156.940862 119.772173) (xy 156.937556 119.771851) (xy 156.93696 119.771793) (xy 156.92481 119.770007) (xy 156.924283 119.769903) (xy 156.919236 119.768908) (xy 156.914764 119.768673) (xy 156.914761 119.768673) (xy 156.906765 119.768254) (xy 156.896353 119.767707) (xy 156.890752 119.767287) (xy 156.85011 119.763324) (xy 156.828661 119.761232) (xy 156.817949 119.75972) (xy 156.812505 119.758712) (xy 156.810503 119.758341) (xy 156.810501 119.758341) (xy 156.805719 119.757455) (xy 156.800857 119.757315) (xy 156.800855 119.757315) (xy 156.795056 119.757148) (xy 156.78762 119.756935) (xy 156.779028 119.756393) (xy 156.764128 119.75494) (xy 156.750879 119.755537) (xy 156.741612 119.755613) (xy 156.68999 119.75413) (xy 156.682026 119.753901) (xy 156.670294 119.753014) (xy 156.665934 119.752479) (xy 156.660354 119.751794) (xy 156.639885 119.752456) (xy 156.632224 119.75247) (xy 156.614865 119.751971) (xy 156.608743 119.752669) (xy 156.604101 119.753198) (xy 156.593912 119.753942) (xy 156.587829 119.754139) (xy 156.581032 119.754359) (xy 156.5123 119.736572) (xy 156.464095 119.684449) (xy 156.450956 119.628054) (xy 156.451082 119.585223) (xy 156.451159 119.559222) (xy 156.45206 119.452514) (xy 156.452078 119.451221) (xy 156.453624 119.368605) (xy 156.453686 119.366357) (xy 156.454683 119.339101) (xy 156.455576 119.314699) (xy 156.470558 119.259558) (xy 156.471185 119.258395) (xy 156.472121 119.256656) (xy 156.482262 119.241556) (xy 156.484513 119.237856) (xy 156.49022 119.230925) (xy 156.495937 119.217566) (xy 156.503099 119.200832) (xy 156.5088 119.189201) (xy 156.509904 119.187215) (xy 156.512081 119.183298) (xy 156.513001 119.180892) (xy 156.513769 119.179361) (xy 156.513904 119.179057) (xy 156.51621 119.174773) (xy 156.51864 119.167892) (xy 156.524102 119.152426) (xy 156.527072 119.144812) (xy 156.544557 119.103953) (xy 156.544558 119.103949) (xy 156.548089 119.095698) (xy 156.549162 119.086788) (xy 156.549342 119.086117) (xy 156.549444 119.085527) (xy 156.551292 119.080691) (xy 156.553704 119.0508) (xy 156.555739 119.036247) (xy 156.563264 118.998589) (xy 156.563264 118.998581) (xy 156.565023 118.98978) (xy 156.56424 118.980835) (xy 156.56452 118.97575) (xy 156.564718 118.963641) (xy 156.564604 118.958567) (xy 156.565677 118.949662) (xy 156.563113 118.934227) (xy 156.564056 118.93407) (xy 156.564032 118.932978) (xy 156.562936 118.93316) (xy 156.557678 118.901512) (xy 156.556457 118.89186) (xy 156.552987 118.8522) (xy 156.552986 118.852194) (xy 156.552203 118.843249) (xy 156.548941 118.834882) (xy 156.547781 118.829917) (xy 156.544574 118.818248) (xy 156.543043 118.813418) (xy 156.541572 118.804561) (xy 156.520382 118.760595) (xy 156.516494 118.75166) (xy 156.515397 118.748845) (xy 156.498773 118.706207) (xy 156.493296 118.699095) (xy 156.490801 118.694676) (xy 156.484426 118.684341) (xy 156.481606 118.680142) (xy 156.47771 118.672058) (xy 156.445036 118.635812) (xy 156.438813 118.628347) (xy 156.409027 118.589669) (xy 156.401775 118.584381) (xy 156.398138 118.580838) (xy 156.389156 118.572741) (xy 156.385237 118.569474) (xy 156.379226 118.562805) (xy 156.337696 118.537188) (xy 156.329615 118.53176) (xy 156.297439 118.508296) (xy 156.297432 118.508292) (xy 156.29018 118.503004) (xy 156.281733 118.499963) (xy 156.277221 118.497569) (xy 156.266348 118.492328) (xy 156.261679 118.490296) (xy 156.254038 118.485583) (xy 156.219582 118.476113) (xy 156.21223 118.473849) (xy 156.209534 118.472928) (xy 156.201534 118.468849) (xy 156.19271 118.467179) (xy 156.186009 118.464889) (xy 156.178999 118.462976) (xy 156.160235 118.456221) (xy 156.160229 118.45622) (xy 156.151785 118.45318) (xy 156.110873 118.450678) (xy 156.095863 118.448805) (xy 156.095264 118.448739) (xy 156.090482 118.447834) (xy 156.08562 118.447676) (xy 156.085614 118.447675) (xy 156.080222 118.4475) (xy 156.076462 118.447377) (xy 156.066283 118.446632) (xy 156.055441 118.445393) (xy 156.050968 118.44552) (xy 156.050958 118.44552) (xy 156.046853 118.445637) (xy 156.041307 118.445673) (xy 156.032364 118.445534) (xy 156.027701 118.445461) (xy 156.02201 118.445242) (xy 156.00497 118.4442) (xy 156.001747 118.444932) (xy 156.001561 118.444937) (xy 155.983871 118.444361) (xy 155.976321 118.444115) (xy 155.97587 118.4441) (xy 155.975892 118.44344) (xy 155.973432 118.44282) (xy 155.97342 118.444369) (xy 155.972381 118.444361) (xy 155.943175 118.444134) (xy 155.942186 118.444123) (xy 155.91206 118.443652) (xy 155.912049 118.443652) (xy 155.907748 118.443585) (xy 155.906105 118.443795) (xy 155.904458 118.443834) (xy 155.904216 118.443832) (xy 155.901897 118.443814) (xy 155.900947 118.443772) (xy 155.899905 118.443607) (xy 155.897005 118.443599) (xy 155.896986 118.443598) (xy 155.861383 118.443497) (xy 155.860762 118.443494) (xy 155.828466 118.443243) (xy 155.828455 118.443243) (xy 155.82558 118.443221) (xy 155.824538 118.443362) (xy 155.823564 118.443392) (xy 155.80555 118.443341) (xy 155.804852 118.443313) (xy 155.804063 118.443191) (xy 155.80183 118.443193) (xy 155.801828 118.443193) (xy 155.785703 118.443208) (xy 155.765185 118.443227) (xy 155.764856 118.443226) (xy 155.758061 118.443207) (xy 155.731353 118.443131) (xy 155.731344 118.443131) (xy 155.729115 118.443125) (xy 155.728324 118.443236) (xy 155.727618 118.44326) (xy 155.711129 118.443276) (xy 155.696891 118.443289) (xy 155.696299 118.443267) (xy 155.695622 118.443165) (xy 155.684477 118.443211) (xy 155.656587 118.443325) (xy 155.656187 118.443326) (xy 155.622309 118.443357) (xy 155.622303 118.443357) (xy 155.62039 118.443359) (xy 155.619715 118.443456) (xy 155.619119 118.443479) (xy 155.578617 118.443645) (xy 155.578254 118.443633) (xy 155.577839 118.443571) (xy 155.576634 118.443578) (xy 155.576625 118.443578) (xy 155.538268 118.443811) (xy 155.538256 118.441777) (xy 155.537878 118.441845) (xy 155.537891 118.443793) (xy 155.53027 118.443843) (xy 155.529961 118.443845) (xy 155.522246 118.443877) (xy 155.501984 118.44396) (xy 155.50155 118.444024) (xy 155.501317 118.444033) (xy 155.498369 118.444053) (xy 155.498277 118.444054) (xy 155.461609 118.444276) (xy 155.461608 118.444276) (xy 155.461285 118.444278) (xy 155.461174 118.444295) (xy 155.461089 118.444298) (xy 155.199962 118.446016) (xy 154.959796 118.447596) (xy 154.957785 118.447593) (xy 154.895773 118.447011) (xy 154.895771 118.447011) (xy 154.886793 118.446927) (xy 154.878154 118.449366) (xy 154.878151 118.449366) (xy 154.854921 118.455923) (xy 154.839375 118.459268) (xy 154.836227 118.45974) (xy 154.806638 118.464176) (xy 154.79849 118.467945) (xy 154.798485 118.467947) (xy 154.785899 118.47377) (xy 154.767224 118.480676) (xy 154.745234 118.486883) (xy 154.737625 118.491649) (xy 154.737623 118.49165) (xy 154.717171 118.50446) (xy 154.703194 118.512032) (xy 154.673141 118.525936) (xy 154.666381 118.531839) (xy 154.666379 118.53184) (xy 154.655929 118.540965) (xy 154.639941 118.552836) (xy 154.628187 118.560198) (xy 154.628185 118.5602) (xy 154.620579 118.564964) (xy 154.614617 118.57167) (xy 154.614616 118.571671) (xy 154.610479 118.576324) (xy 154.598575 118.589715) (xy 154.587295 118.600895) (xy 154.562345 118.622681) (xy 154.55006 118.641912) (xy 154.550045 118.641935) (xy 154.538031 118.657817) (xy 154.52285 118.674893) (xy 154.519009 118.683005) (xy 154.519007 118.683008) (xy 154.508677 118.704823) (xy 154.50098 118.718733) (xy 154.487991 118.739065) (xy 154.48799 118.739068) (xy 154.483156 118.746634) (xy 154.48064 118.755253) (xy 154.476752 118.768569) (xy 154.469682 118.787176) (xy 154.465279 118.796476) (xy 154.459902 118.807832) (xy 154.458493 118.81669) (xy 154.454699 118.840541) (xy 154.451215 118.856053) (xy 154.446116 118.873522) (xy 154.441939 118.887831) (xy 154.441943 118.896809) (xy 154.441943 118.89681) (xy 154.441966 118.946176) (xy 154.441978 118.97126) (xy 154.439111 119.845802) (xy 154.435283 121.01324) (xy 154.435282 121.01326) (xy 154.435279 121.01328) (xy 154.43518 121.044257) (xy 154.435134 121.058589) (xy 154.435134 121.058598) (xy 154.43507 121.078302) (xy 154.435031 121.090104) (xy 154.435033 121.090119) (xy 154.435034 121.090134) (xy 154.434523 121.250135) (xy 154.434372 121.297221) (xy 154.434369 121.297242) (xy 154.434306 121.317271) (xy 154.434241 121.338204) (xy 154.434241 121.338211) (xy 154.434169 121.361) (xy 154.434127 121.37407) (xy 154.43413 121.374088) (xy 154.434099 121.384114) (xy 154.433451 121.591843) (xy 154.433451 121.591857) (xy 154.432696 121.825433) (xy 154.432696 121.825479) (xy 154.432052 122.004796) (xy 154.431937 122.036653) (xy 154.431167 122.215952) (xy 154.431133 122.223805) (xy 154.431132 122.223952) (xy 154.430266 122.382568) (xy 154.430225 122.390021) (xy 154.429221 122.528657) (xy 154.429167 122.536071) (xy 154.429164 122.536402) (xy 154.427911 122.663356) (xy 154.427905 122.66383) (xy 154.427046 122.726783) (xy 154.426619 122.758148) (xy 154.426417 122.772933) (xy 154.426406 122.773611) (xy 154.424644 122.866235) (xy 154.424622 122.867197) (xy 154.422822 122.934729) (xy 154.422574 122.94402) (xy 154.422534 122.945297) (xy 154.420748 122.99294) (xy 154.42022 123.007041) (xy 154.420133 123.008959) (xy 154.41997 123.012047) (xy 154.417952 123.050313) (xy 154.417869 123.051877) (xy 154.402424 123.103022) (xy 154.403554 123.103586) (xy 154.40268 123.105337) (xy 154.400521 123.109323) (xy 154.40051 123.109358) (xy 154.399291 123.111421) (xy 154.398993 123.112143) (xy 154.398652 123.112772) (xy 154.387403 123.131967) (xy 154.384908 123.136044) (xy 154.351318 123.188654) (xy 154.342947 123.217358) (xy 154.340055 123.227275) (xy 154.335737 123.239648) (xy 154.32052 123.276896) (xy 154.319594 123.285823) (xy 154.318901 123.292505) (xy 154.314533 123.314786) (xy 154.312651 123.321238) (xy 154.31265 123.321244) (xy 154.310137 123.329861) (xy 154.310155 123.353755) (xy 154.310167 123.3701) (xy 154.309496 123.383179) (xy 154.305344 123.423202) (xy 145.847703 123.423202) (xy 146.7255 122.545405) (xy 146.787812 122.511379) (xy 146.814595 122.5085) (xy 146.870487 122.5085) (xy 146.876939 122.507128) (xy 146.876944 122.507128) (xy 146.963887 122.488647) (xy 147.057288 122.468794) (xy 147.082044 122.457772) (xy 147.225722 122.393803) (xy 147.225724 122.393802) (xy 147.231752 122.391118) (xy 147.245972 122.380787) (xy 147.314604 122.330922) (xy 147.386253 122.278866) (xy 147.43583 122.223805) (xy 147.509621 122.141852) (xy 147.509622 122.141851) (xy 147.51404 122.136944) (xy 147.592505 122.001039) (xy 147.606223 121.977279) (xy 147.606224 121.977278) (xy 147.609527 121.971556) (xy 147.668542 121.789928) (xy 147.669741 121.778526) (xy 147.687814 121.606565) (xy 147.688504 121.6) (xy 147.682641 121.544217) (xy 147.669232 121.416635) (xy 147.669232 121.416633) (xy 147.668542 121.410072) (xy 147.609527 121.228444) (xy 147.601156 121.213944) (xy 147.549153 121.123874) (xy 147.51404 121.063056) (xy 147.498161 121.04542) (xy 147.390675 120.926045) (xy 147.390674 120.926044) (xy 147.386253 120.921134) (xy 147.287157 120.849136) (xy 147.237094 120.812763) (xy 147.237093 120.812762) (xy 147.231752 120.808882) (xy 147.225724 120.806198) (xy 147.225722 120.806197) (xy 147.063319 120.733891) (xy 147.063318 120.733891) (xy 147.057288 120.731206) (xy 146.939791 120.706231) (xy 146.876944 120.692872) (xy 146.876939 120.692872) (xy 146.870487 120.6915) (xy 146.679513 120.6915) (xy 146.673061 120.692872) (xy 146.673056 120.692872) (xy 146.610209 120.706231) (xy 146.492712 120.731206) (xy 146.486682 120.733891) (xy 146.486681 120.733891) (xy 146.324278 120.806197) (xy 146.324276 120.806198) (xy 146.318248 120.808882) (xy 146.312907 120.812762) (xy 146.312906 120.812763) (xy 146.262843 120.849136) (xy 146.163747 120.921134) (xy 146.159326 120.926044) (xy 146.159325 120.926045) (xy 146.05184 121.04542) (xy 146.03596 121.063056) (xy 146.000847 121.123874) (xy 145.948845 121.213944) (xy 145.940473 121.228444) (xy 145.881458 121.410072) (xy 145.880768 121.416633) (xy 145.880768 121.416635) (xy 145.876271 121.459426) (xy 145.865234 121.564441) (xy 145.864093 121.575293) (xy 145.83708 121.64095) (xy 145.827878 121.651218) (xy 141.7495 125.729595) (xy 141.687188 125.763621) (xy 141.660405 125.7665) (xy 99.078767 125.7665) (xy 99.067584 125.765973) (xy 99.060091 125.764298) (xy 99.052165 125.764547) (xy 99.052164 125.764547) (xy 98.992014 125.766438) (xy 98.988055 125.7665) (xy 98.960144 125.7665) (xy 98.95621 125.766997) (xy 98.956209 125.766997) (xy 98.956144 125.767005) (xy 98.944307 125.767938) (xy 98.91249 125.768938) (xy 98.908029 125.769078) (xy 98.90011 125.769327) (xy 98.882454 125.774456) (xy 98.880658 125.774978) (xy 98.861306 125.778986) (xy 98.857531 125.779463) (xy 98.841203 125.781526) (xy 98.833834 125.784443) (xy 98.833832 125.784444) (xy 98.800097 125.7978) (xy 98.788869 125.801645) (xy 98.746407 125.813982) (xy 98.739584 125.818017) (xy 98.739582 125.818018) (xy 98.728972 125.824293) (xy 98.711224 125.832988) (xy 98.692383 125.840448) (xy 98.685967 125.84511) (xy 98.685966 125.84511) (xy 98.656613 125.866436) (xy 98.646693 125.872952) (xy 98.615465 125.89142) (xy 98.615462 125.891422) (xy 98.608638 125.895458) (xy 98.594317 125.909779) (xy 98.579284 125.922619) (xy 98.562893 125.934528) (xy 98.557843 125.940632) (xy 98.557838 125.940637) (xy 98.534707 125.968598) (xy 98.526717 125.977379) (xy 98.023595 126.4805) (xy 97.961283 126.514525) (xy 97.890467 126.50946) (xy 97.833632 126.466913) (xy 97.808821 126.400393) (xy 97.8085 126.391404) (xy 97.8085 124.737395) (xy 97.809578 124.720949) (xy 97.812672 124.697447) (xy 97.81375 124.689259) (xy 97.8085 124.649381) (xy 97.8085 124.649374) (xy 97.796405 124.5575) (xy 97.793916 124.538597) (xy 97.792838 124.530409) (xy 97.789502 124.522353) (xy 97.742305 124.408412) (xy 97.731524 124.382384) (xy 97.708572 124.352472) (xy 97.658477 124.287187) (xy 97.658474 124.287184) (xy 97.657955 124.286507) (xy 97.639016 124.261825) (xy 97.639013 124.261822) (xy 97.633987 124.255272) (xy 97.621217 124.245473) (xy 97.608621 124.235807) (xy 97.59623 124.22494) (xy 97.195894 123.824604) (xy 97.161868 123.762292) (xy 97.158989 123.735509) (xy 97.158989 116.2845) (xy 97.178991 116.216379) (xy 97.232647 116.169886) (xy 97.284989 116.1585) (xy 97.345487 116.1585) (xy 97.351939 116.157128) (xy 97.351944 116.157128) (xy 97.438888 116.138647) (xy 97.532288 116.118794) (xy 97.538319 116.116109) (xy 97.700722 116.043803) (xy 97.700724 116.043802) (xy 97.706752 116.041118) (xy 97.735099 116.020523) (xy 97.800939 115.972687) (xy 97.867807 115.948828) (xy 97.936958 115.964909) (xy 97.949061 115.972687) (xy 98.014902 116.020523) (xy 98.043248 116.041118) (xy 98.049276 116.043802) (xy 98.049278 116.043803) (xy 98.211681 116.116109) (xy 98.217712 116.118794) (xy 98.311112 116.138647) (xy 98.398056 116.157128) (xy 98.398061 116.157128) (xy 98.404513 116.1585) (xy 98.595487 116.1585) (xy 98.601939 116.157128) (xy 98.601944 116.157128) (xy 98.688888 116.138647) (xy 98.782288 116.118794) (xy 98.788319 116.116109) (xy 98.950722 116.043803) (xy 98.950724 116.043802) (xy 98.956752 116.041118) (xy 98.985099 116.020523) (xy 99.061644 115.964909) (xy 99.111253 115.928866) (xy 99.23904 115.786944) (xy 99.298376 115.684171) (xy 99.331223 115.627279) (xy 99.331224 115.627278) (xy 99.334527 115.621556) (xy 99.393542 115.439928) (xy 99.396093 115.415663) (xy 99.412814 115.256565) (xy 99.413504 115.25) (xy 99.413316 115.248214) (xy 99.432816 115.181804) (xy 99.449719 115.16083) (xy 100.526405 114.084144) (xy 100.588717 114.050118) (xy 100.659532 114.055183) (xy 100.716368 114.09773) (xy 100.741179 114.16425) (xy 100.7415 114.173239) (xy 100.7415 119.084305) (xy 100.729788 119.137354) (xy 100.721203 119.15585) (xy 100.645836 119.318215) (xy 100.640688 119.329305) (xy 100.580989 119.54457) (xy 100.557251 119.766695) (xy 100.557548 119.771848) (xy 100.557548 119.771851) (xy 100.56748 119.944108) (xy 100.57011 119.989715) (xy 100.571247 119.994761) (xy 100.571248 119.994767) (xy 100.593049 120.0915) (xy 100.619222 120.207639) (xy 100.660134 120.308394) (xy 100.667918 120.33755) (xy 100.668104 120.341488) (xy 100.669354 120.346947) (xy 100.669355 120.346952) (xy 100.672108 120.35897) (xy 100.674789 120.375899) (xy 100.676383 120.393762) (xy 100.677865 120.399178) (xy 100.677865 120.39918) (xy 100.69837 120.474133) (xy 100.699656 120.479251) (xy 100.716447 120.552561) (xy 100.718258 120.56047) (xy 100.72046 120.565632) (xy 100.725294 120.576967) (xy 100.730927 120.593142) (xy 100.733793 120.603617) (xy 100.735663 120.610451) (xy 100.742082 120.623908) (xy 100.771539 120.685667) (xy 100.77371 120.690476) (xy 100.803968 120.761414) (xy 100.806397 120.767109) (xy 100.816251 120.78211) (xy 100.824654 120.797025) (xy 100.832378 120.813218) (xy 100.835648 120.817769) (xy 100.83565 120.817772) (xy 100.880999 120.880881) (xy 100.883989 120.885232) (xy 100.927196 120.95101) (xy 100.927202 120.951018) (xy 100.929735 120.954874) (xy 100.948257 120.975662) (xy 100.95649 120.985939) (xy 100.963471 120.995654) (xy 101.020311 121.050736) (xy 101.040254 121.070062) (xy 101.041664 121.071451) (xy 103.045475 123.075263) (xy 103.056342 123.087653) (xy 103.069877 123.105292) (xy 103.127178 123.157432) (xy 103.130174 123.160158) (xy 103.134469 123.164257) (xy 103.15041 123.180198) (xy 103.170436 123.196942) (xy 103.174376 123.200379) (xy 103.236036 123.256485) (xy 103.24079 123.259467) (xy 103.25123 123.266016) (xy 103.26509 123.276085) (xy 103.278853 123.287593) (xy 103.311506 123.306218) (xy 103.351218 123.328869) (xy 103.355748 123.331579) (xy 103.426344 123.375864) (xy 103.431546 123.377955) (xy 103.431548 123.377956) (xy 103.442983 123.382553) (xy 103.458413 123.390012) (xy 103.469119 123.396119) (xy 103.469128 123.396123) (xy 103.473993 123.398898) (xy 103.552546 123.426715) (xy 103.557458 123.428571) (xy 103.634783 123.459656) (xy 103.640273 123.460793) (xy 103.652349 123.463294) (xy 103.668844 123.467899) (xy 103.685759 123.473889) (xy 103.76801 123.487359) (xy 103.77318 123.488317) (xy 103.816725 123.497335) (xy 103.83875 123.501896) (xy 103.854767 123.505213) (xy 103.859379 123.505479) (xy 103.85938 123.505479) (xy 103.882548 123.506815) (xy 103.895653 123.508262) (xy 103.90191 123.509286) (xy 103.901914 123.509286) (xy 103.907457 123.510194) (xy 103.91307 123.510106) (xy 103.913072 123.510106) (xy 104.014264 123.508516) (xy 104.016243 123.5085) (xy 110.781104 123.5085) (xy 110.797551 123.509578) (xy 110.814016 123.511746) (xy 110.81402 123.511746) (xy 110.819586 123.512479) (xy 110.900989 123.50864) (xy 110.906924 123.5085) (xy 110.929499 123.5085) (xy 110.955489 123.506181) (xy 110.960748 123.505822) (xy 111.043988 123.501896) (xy 111.049447 123.500646) (xy 111.049452 123.500645) (xy 111.06147 123.497892) (xy 111.078399 123.495211) (xy 111.096262 123.493617) (xy 111.101678 123.492135) (xy 111.10168 123.492135) (xy 111.176633 123.47163) (xy 111.181751 123.470344) (xy 111.2575 123.452995) (xy 111.257502 123.452994) (xy 111.26297 123.451742) (xy 111.27347 123.447263) (xy 111.279467 123.444706) (xy 111.295642 123.439073) (xy 111.307539 123.435818) (xy 111.307543 123.435817) (xy 111.312951 123.434337) (xy 111.358243 123.412734) (xy 111.388167 123.398461) (xy 111.392976 123.39629) (xy 111.464449 123.365804) (xy 111.46445 123.365804) (xy 111.469609 123.363603) (xy 111.48461 123.353749) (xy 111.499525 123.345346) (xy 111.515718 123.337622) (xy 111.520269 123.334352) (xy 111.520272 123.33435) (xy 111.553496 123.310476) (xy 111.583392 123.288994) (xy 111.587732 123.286011) (xy 111.65351 123.242804) (xy 111.653518 123.242798) (xy 111.657374 123.240265) (xy 111.678162 123.221743) (xy 111.688439 123.21351) (xy 111.698154 123.206529) (xy 111.772563 123.129745) (xy 111.773951 123.128336) (xy 113.132182 121.770106) (xy 113.194494 121.73608) (xy 113.26531 121.741145) (xy 113.310372 121.770106) (xy 113.970099 122.429834) (xy 114.615528 123.075263) (xy 114.626395 123.087653) (xy 114.63993 123.105292) (xy 114.697231 123.157432) (xy 114.700227 123.160158) (xy 114.704522 123.164257) (xy 114.720463 123.180198) (xy 114.740491 123.196944) (xy 114.74444 123.200389) (xy 114.801941 123.252712) (xy 114.80195 123.252719) (xy 114.806089 123.256485) (xy 114.820974 123.265822) (xy 114.821281 123.266015) (xy 114.835146 123.276089) (xy 114.836111 123.276896) (xy 114.848906 123.287594) (xy 114.896579 123.314786) (xy 114.921282 123.328876) (xy 114.925811 123.331586) (xy 114.991649 123.372886) (xy 114.991652 123.372888) (xy 114.996397 123.375864) (xy 115.001592 123.377953) (xy 115.001597 123.377955) (xy 115.013045 123.382557) (xy 115.028467 123.390013) (xy 115.038352 123.39565) (xy 115.044046 123.398898) (xy 115.122599 123.426715) (xy 115.127511 123.428571) (xy 115.204836 123.459656) (xy 115.210326 123.460793) (xy 115.222402 123.463294) (xy 115.238897 123.467899) (xy 115.255812 123.473889) (xy 115.338063 123.487359) (xy 115.343233 123.488317) (xy 115.386778 123.497335) (xy 115.408803 123.501896) (xy 115.42482 123.505213) (xy 115.429432 123.505479) (xy 115.429433 123.505479) (xy 115.452601 123.506815) (xy 115.465706 123.508262) (xy 115.471963 123.509286) (xy 115.471967 123.509286) (xy 115.47751 123.510194) (xy 115.483123 123.510106) (xy 115.483125 123.510106) (xy 115.584317 123.508516) (xy 115.586296 123.5085) (xy 122.153604 123.5085) (xy 122.170051 123.509578) (xy 122.186516 123.511746) (xy 122.18652 123.511746) (xy 122.192086 123.512479) (xy 122.273489 123.50864) (xy 122.279424 123.5085) (xy 122.301999 123.5085) (xy 122.327989 123.506181) (xy 122.333248 123.505822) (xy 122.416488 123.501896) (xy 122.421947 123.500646) (xy 122.421952 123.500645) (xy 122.43397 123.497892) (xy 122.450899 123.495211) (xy 122.468762 123.493617) (xy 122.474178 123.492135) (xy 122.47418 123.492135) (xy 122.549133 123.47163) (xy 122.554251 123.470344) (xy 122.63 123.452995) (xy 122.630002 123.452994) (xy 122.63547 123.451742) (xy 122.64597 123.447263) (xy 122.651967 123.444706) (xy 122.668142 123.439073) (xy 122.680039 123.435818) (xy 122.680043 123.435817) (xy 122.685451 123.434337) (xy 122.730743 123.412734) (xy 122.760667 123.398461) (xy 122.765476 123.39629) (xy 122.836949 123.365804) (xy 122.83695 123.365804) (xy 122.842109 123.363603) (xy 122.85711 123.353749) (xy 122.872025 123.345346) (xy 122.888218 123.337622) (xy 122.892769 123.334352) (xy 122.892772 123.33435) (xy 122.925996 123.310476) (xy 122.955892 123.288994) (xy 122.960232 123.286011) (xy 123.02601 123.242804) (xy 123.026018 123.242798) (xy 123.029874 123.240265) (xy 123.050662 123.221743) (xy 123.060939 123.21351) (xy 123.070654 123.206529) (xy 123.145063 123.129745) (xy 123.146451 123.128336) (xy 124.533405 121.741382) (xy 124.595717 121.707356) (xy 124.666532 121.712421) (xy 124.711595 121.741382) (xy 125.389669 122.419457) (xy 126.045475 123.075263) (xy 126.056342 123.087653) (xy 126.069877 123.105292) (xy 126.127178 123.157432) (xy 126.130174 123.160158) (xy 126.134469 123.164257) (xy 126.15041 123.180198) (xy 126.170436 123.196942) (xy 126.174376 123.200379) (xy 126.236036 123.256485) (xy 126.24079 123.259467) (xy 126.25123 123.266016) (xy 126.26509 123.276085) (xy 126.278853 123.287593) (xy 126.311506 123.306218) (xy 126.351218 123.328869) (xy 126.355748 123.331579) (xy 126.426344 123.375864) (xy 126.431546 123.377955) (xy 126.431548 123.377956) (xy 126.442983 123.382553) (xy 126.458413 123.390012) (xy 126.469119 123.396119) (xy 126.469128 123.396123) (xy 126.473993 123.398898) (xy 126.552546 123.426715) (xy 126.557458 123.428571) (xy 126.634783 123.459656) (xy 126.640273 123.460793) (xy 126.652349 123.463294) (xy 126.668844 123.467899) (xy 126.685759 123.473889) (xy 126.742555 123.48319) (xy 126.76799 123.487355) (xy 126.773178 123.488317) (xy 126.850241 123.504276) (xy 126.850245 123.504277) (xy 126.854767 123.505213) (xy 126.882566 123.506816) (xy 126.895667 123.508263) (xy 126.897215 123.508516) (xy 126.901916 123.509286) (xy 126.901919 123.509286) (xy 126.907457 123.510193) (xy 126.913072 123.510105) (xy 126.913074 123.510105) (xy 127.01423 123.508516) (xy 127.016209 123.5085) (xy 133.403604 123.5085) (xy 133.420051 123.509578) (xy 133.436516 123.511746) (xy 133.43652 123.511746) (xy 133.442086 123.512479) (xy 133.523489 123.50864) (xy 133.529424 123.5085) (xy 133.551999 123.5085) (xy 133.577989 123.506181) (xy 133.583248 123.505822) (xy 133.666488 123.501896) (xy 133.671947 123.500646) (xy 133.671952 123.500645) (xy 133.68397 123.497892) (xy 133.700899 123.495211) (xy 133.718762 123.493617) (xy 133.724178 123.492135) (xy 133.72418 123.492135) (xy 133.799133 123.47163) (xy 133.804251 123.470344) (xy 133.88 123.452995) (xy 133.880002 123.452994) (xy 133.88547 123.451742) (xy 133.89597 123.447263) (xy 133.901967 123.444706) (xy 133.918142 123.439073) (xy 133.930039 123.435818) (xy 133.930043 123.435817) (xy 133.935451 123.434337) (xy 133.980743 123.412734) (xy 134.010667 123.398461) (xy 134.015476 123.39629) (xy 134.086949 123.365804) (xy 134.08695 123.365804) (xy 134.092109 123.363603) (xy 134.10711 123.353749) (xy 134.122025 123.345346) (xy 134.138218 123.337622) (xy 134.142769 123.334352) (xy 134.142772 123.33435) (xy 134.175996 123.310476) (xy 134.205892 123.288994) (xy 134.210232 123.286011) (xy 134.27601 123.242804) (xy 134.276018 123.242798) (xy 134.279874 123.240265) (xy 134.300662 123.221743) (xy 134.310939 123.21351) (xy 134.320654 123.206529) (xy 134.395063 123.129745) (xy 134.396451 123.128336) (xy 135.658405 121.866382) (xy 135.720717 121.832356) (xy 135.791532 121.837421) (xy 135.836595 121.866382) (xy 137.045472 123.075259) (xy 137.05634 123.087651) (xy 137.066462 123.100843) (xy 137.066467 123.100848) (xy 137.069877 123.105292) (xy 137.127178 123.157432) (xy 137.130185 123.160168) (xy 137.13447 123.164257) (xy 137.150411 123.180198) (xy 137.170408 123.196918) (xy 137.174376 123.200379) (xy 137.231879 123.252703) (xy 137.231883 123.252706) (xy 137.236036 123.256485) (xy 137.24079 123.259467) (xy 137.240794 123.25947) (xy 137.251224 123.266012) (xy 137.265097 123.276091) (xy 137.274545 123.283992) (xy 137.274552 123.283997) (xy 137.278854 123.287594) (xy 137.337839 123.321238) (xy 137.35124 123.328882) (xy 137.355758 123.331586) (xy 137.367322 123.33884) (xy 137.421596 123.372886) (xy 137.421599 123.372888) (xy 137.426344 123.375864) (xy 137.431548 123.377956) (xy 137.431552 123.377958) (xy 137.442979 123.382552) (xy 137.458411 123.390012) (xy 137.469119 123.39612) (xy 137.469128 123.396124) (xy 137.473993 123.398899) (xy 137.47927 123.400768) (xy 137.479275 123.40077) (xy 137.552542 123.426715) (xy 137.557478 123.42858) (xy 137.582523 123.438648) (xy 137.634783 123.459656) (xy 137.64027 123.460792) (xy 137.640272 123.460793) (xy 137.652349 123.463294) (xy 137.668844 123.467899) (xy 137.685759 123.473889) (xy 137.76801 123.487359) (xy 137.77318 123.488317) (xy 137.816725 123.497335) (xy 137.83875 123.501896) (xy 137.854767 123.505213) (xy 137.859379 123.505479) (xy 137.85938 123.505479) (xy 137.882548 123.506815) (xy 137.895653 123.508262) (xy 137.90191 123.509286) (xy 137.901914 123.509286) (xy 137.907457 123.510194) (xy 137.91307 123.510106) (xy 137.913072 123.510106) (xy 138.014264 123.508516) (xy 138.016243 123.5085) (xy 142.258604 123.5085) (xy 142.275051 123.509578) (xy 142.291516 123.511746) (xy 142.29152 123.511746) (xy 142.297086 123.512479) (xy 142.378489 123.50864) (xy 142.384424 123.5085) (xy 142.406999 123.5085) (xy 142.432989 123.506181) (xy 142.438248 123.505822) (xy 142.521488 123.501896) (xy 142.526947 123.500646) (xy 142.526952 123.500645) (xy 142.53897 123.497892) (xy 142.555899 123.495211) (xy 142.573762 123.493617) (xy 142.579178 123.492135) (xy 142.57918 123.492135) (xy 142.654133 123.47163) (xy 142.659251 123.470344) (xy 142.735 123.452995) (xy 142.735002 123.452994) (xy 142.74047 123.451742) (xy 142.75097 123.447263) (xy 142.756967 123.444706) (xy 142.773142 123.439073) (xy 142.785039 123.435818) (xy 142.785043 123.435817) (xy 142.790451 123.434337) (xy 142.835743 123.412734) (xy 142.865667 123.398461) (xy 142.870476 123.39629) (xy 142.941949 123.365804) (xy 142.94195 123.365804) (xy 142.947109 123.363603) (xy 142.96211 123.353749) (xy 142.977025 123.345346) (xy 142.993218 123.337622) (xy 142.997769 123.334352) (xy 142.997772 123.33435) (xy 143.030996 123.310476) (xy 143.060892 123.288994) (xy 143.065232 123.286011) (xy 143.13101 123.242804) (xy 143.131018 123.242798) (xy 143.134874 123.240265) (xy 143.155662 123.221743) (xy 143.165939 123.21351) (xy 143.175654 123.206529) (xy 143.250063 123.129745) (xy 143.251452 123.128335) (xy 148.484383 117.895405) (xy 148.546695 117.861379) (xy 148.573478 117.8585) (xy 153.908604 117.8585) (xy 153.925051 117.859578) (xy 153.941516 117.861746) (xy 153.94152 117.861746) (xy 153.947086 117.862479) (xy 154.028489 117.85864) (xy 154.034424 117.8585) (xy 154.056999 117.8585) (xy 154.082989 117.856181) (xy 154.088248 117.855822) (xy 154.171488 117.851896) (xy 154.176947 117.850646) (xy 154.176952 117.850645) (xy 154.18897 117.847892) (xy 154.205899 117.845211) (xy 154.223762 117.843617) (xy 154.229178 117.842135) (xy 154.22918 117.842135) (xy 154.304133 117.82163) (xy 154.309251 117.820344) (xy 154.385 117.802995) (xy 154.385002 117.802994) (xy 154.39047 117.801742) (xy 154.402957 117.796416) (xy 154.406967 117.794706) (xy 154.423142 117.789073) (xy 154.435039 117.785818) (xy 154.435043 117.785817) (xy 154.440451 117.784337) (xy 154.515667 117.748461) (xy 154.520476 117.74629) (xy 154.591949 117.715804) (xy 154.59195 117.715804) (xy 154.597109 117.713603) (xy 154.61211 117.703749) (xy 154.627025 117.695346) (xy 154.643218 117.687622) (xy 154.647769 117.684352) (xy 154.647772 117.68435) (xy 154.684851 117.657706) (xy 154.710892 117.638994) (xy 154.715232 117.636011) (xy 154.78101 117.592804) (xy 154.781018 117.592798) (xy 154.784874 117.590265) (xy 154.805662 117.571743) (xy 154.815939 117.56351) (xy 154.825654 117.556529) (xy 154.900063 117.479745) (xy 154.901452 117.478335) (xy 158.125259 114.254528) (xy 158.137651 114.24366) (xy 158.150843 114.233538) (xy 158.150851 114.233531) (xy 158.155292 114.230123) (xy 158.210168 114.169815) (xy 158.214267 114.16552) (xy 158.230198 114.149589) (xy 158.246934 114.129573) (xy 158.250379 114.125624) (xy 158.302703 114.068121) (xy 158.302706 114.068117) (xy 158.306485 114.063964) (xy 158.316013 114.048775) (xy 158.326091 114.034903) (xy 158.333992 114.025455) (xy 158.333997 114.025448) (xy 158.337594 114.021146) (xy 158.378887 113.948752) (xy 158.381592 113.944232) (xy 158.422886 113.878404) (xy 158.422888 113.878401) (xy 158.425864 113.873656) (xy 158.432552 113.857021) (xy 158.440012 113.841589) (xy 158.44612 113.830881) (xy 158.446124 113.830872) (xy 158.448899 113.826007) (xy 158.450768 113.82073) (xy 158.45077 113.820725) (xy 158.476715 113.747458) (xy 158.47858 113.742522) (xy 158.491787 113.709669) (xy 165.877001 113.709669) (xy 165.877371 113.71649) (xy 165.882895 113.767352) (xy 165.886521 113.782604) (xy 165.931676 113.903054) (xy 165.940214 113.918649) (xy 166.016715 114.020724) (xy 166.029276 114.033285) (xy 166.131351 114.109786) (xy 166.146946 114.118324) (xy 166.267394 114.163478) (xy 166.282649 114.167105) (xy 166.333514 114.172631) (xy 166.340328 114.173) (xy 167.127885 114.173) (xy 167.143124 114.168525) (xy 167.144329 114.167135) (xy 167.146 114.159452) (xy 167.146 114.154884) (xy 167.654 114.154884) (xy 167.658475 114.170123) (xy 167.659865 114.171328) (xy 167.667548 114.172999) (xy 168.459669 114.172999) (xy 168.46649 114.172629) (xy 168.517352 114.167105) (xy 168.532604 114.163479) (xy 168.653054 114.118324) (xy 168.668649 114.109786) (xy 168.770724 114.033285) (xy 168.783285 114.020724) (xy 168.859786 113.918649) (xy 168.868324 113.903054) (xy 168.913478 113.782606) (xy 168.917105 113.767351) (xy 168.922631 113.716486) (xy 168.923 113.709672) (xy 168.923 113.072115) (xy 168.918525 113.056876) (xy 168.917135 113.055671) (xy 168.909452 113.054) (xy 167.672115 113.054) (xy 167.656876 113.058475) (xy 167.655671 113.059865) (xy 167.654 113.067548) (xy 167.654 114.154884) (xy 167.146 114.154884) (xy 167.146 113.072115) (xy 167.141525 113.056876) (xy 167.140135 113.055671) (xy 167.132452 113.054) (xy 165.895116 113.054) (xy 165.879877 113.058475) (xy 165.878672 113.059865) (xy 165.877001 113.067548) (xy 165.877001 113.709669) (xy 158.491787 113.709669) (xy 158.501296 113.686014) (xy 158.509656 113.665217) (xy 158.513294 113.64765) (xy 158.517899 113.631156) (xy 158.523889 113.614241) (xy 158.524796 113.608703) (xy 158.537355 113.532009) (xy 158.538317 113.526819) (xy 158.554277 113.449754) (xy 158.554278 113.44975) (xy 158.555213 113.445233) (xy 158.556815 113.417452) (xy 158.558262 113.404347) (xy 158.559286 113.39809) (xy 158.559286 113.398083) (xy 158.560194 113.392542) (xy 158.558516 113.285736) (xy 158.5585 113.283757) (xy 158.5585 112.667559) (xy 158.578502 112.599438) (xy 158.605102 112.570522) (xy 158.604873 112.570265) (xy 158.604874 112.570265) (xy 158.625662 112.551743) (xy 158.635939 112.54351) (xy 158.645654 112.536529) (xy 158.720062 112.459746) (xy 158.721451 112.458336) (xy 160.825263 110.354525) (xy 160.837654 110.343657) (xy 160.850848 110.333533) (xy 160.855292 110.330123) (xy 160.910158 110.269826) (xy 160.914257 110.265531) (xy 160.930199 110.249589) (xy 160.941218 110.236411) (xy 160.946933 110.229576) (xy 160.950401 110.225601) (xy 161.002712 110.168112) (xy 161.002719 110.168103) (xy 161.006485 110.163964) (xy 161.011085 110.156632) (xy 161.016013 110.148775) (xy 161.026089 110.134907) (xy 161.033996 110.125451) (xy 161.034003 110.125441) (xy 161.037594 110.121146) (xy 161.078887 110.048752) (xy 161.081592 110.044232) (xy 161.122886 109.978404) (xy 161.122888 109.978401) (xy 161.125864 109.973656) (xy 161.131198 109.960389) (xy 161.132552 109.957021) (xy 161.140012 109.941589) (xy 161.14612 109.930881) (xy 161.146124 109.930872) (xy 161.148899 109.926007) (xy 161.150768 109.92073) (xy 161.15077 109.920725) (xy 161.176715 109.847458) (xy 161.17858 109.842522) (xy 161.207566 109.770416) (xy 161.209656 109.765217) (xy 161.213294 109.74765) (xy 161.217899 109.731156) (xy 161.223889 109.714241) (xy 161.232932 109.65902) (xy 161.237355 109.632009) (xy 161.238317 109.626819) (xy 161.254277 109.549754) (xy 161.254278 109.54975) (xy 161.255213 109.545233) (xy 161.256815 109.517452) (xy 161.258262 109.504347) (xy 161.259286 109.49809) (xy 161.259286 109.498083) (xy 161.260194 109.492542) (xy 161.259492 109.447813) (xy 161.258516 109.385706) (xy 161.2585 109.383727) (xy 161.2585 107.712575) (xy 164.176404 107.712575) (xy 164.176963 107.718715) (xy 164.194637 107.912915) (xy 164.195218 107.919303) (xy 164.196956 107.925209) (xy 164.196957 107.925213) (xy 164.231639 108.043051) (xy 164.253827 108.11844) (xy 164.349999 108.3024) (xy 164.480071 108.464177) (xy 164.484788 108.468135) (xy 164.48479 108.468137) (xy 164.561122 108.532187) (xy 164.639089 108.597609) (xy 164.644481 108.600573) (xy 164.644485 108.600576) (xy 164.815598 108.694646) (xy 164.820995 108.697613) (xy 165.018861 108.760379) (xy 165.024978 108.761065) (xy 165.024982 108.761066) (xy 165.101598 108.769659) (xy 165.180413 108.7785) (xy 165.292237 108.7785) (xy 165.295293 108.7782) (xy 165.2953 108.7782) (xy 165.440466 108.763966) (xy 165.440469 108.763965) (xy 165.446592 108.763365) (xy 165.578546 108.723526) (xy 165.639407 108.705152) (xy 165.63941 108.705151) (xy 165.645315 108.703368) (xy 165.652635 108.699476) (xy 165.823153 108.608809) (xy 165.823155 108.608808) (xy 165.828599 108.605913) (xy 165.952482 108.504876) (xy 166.017913 108.477323) (xy 166.087854 108.489518) (xy 166.13376 108.528144) (xy 166.136213 108.532187) (xy 166.172754 108.574297) (xy 166.28138 108.699476) (xy 166.288982 108.708237) (xy 166.293113 108.711624) (xy 166.4651 108.852646) (xy 166.465106 108.85265) (xy 166.469228 108.85603) (xy 166.473866 108.85867) (xy 166.512998 108.880945) (xy 166.562304 108.932027) (xy 166.576166 109.001657) (xy 166.550183 109.067728) (xy 166.521035 109.094965) (xy 166.386248 109.185709) (xy 166.382391 109.189388) (xy 166.382389 109.18939) (xy 166.345535 109.224547) (xy 166.21759 109.346601) (xy 166.214407 109.350878) (xy 166.214407 109.350879) (xy 166.179673 109.397563) (xy 166.078452 109.533609) (xy 166.076036 109.53836) (xy 166.076034 109.538364) (xy 166.041646 109.606001) (xy 165.972812 109.741388) (xy 165.971229 109.746486) (xy 165.965805 109.763955) (xy 165.90369 109.963995) (xy 165.902989 109.969284) (xy 165.878654 110.152891) (xy 165.873064 110.195065) (xy 165.873264 110.200394) (xy 165.873264 110.200395) (xy 165.87436 110.229576) (xy 165.881809 110.427993) (xy 165.929674 110.656117) (xy 166.015292 110.872914) (xy 166.136213 111.072187) (xy 166.139712 111.076219) (xy 166.139714 111.076222) (xy 166.288146 111.247275) (xy 166.317686 111.311834) (xy 166.307632 111.382115) (xy 166.261177 111.435804) (xy 166.237211 111.447837) (xy 166.146946 111.481676) (xy 166.131351 111.490214) (xy 166.029276 111.566715) (xy 166.016715 111.579276) (xy 165.940214 111.681351) (xy 165.931676 111.696946) (xy 165.886522 111.817394) (xy 165.882895 111.832649) (xy 165.877369 111.883514) (xy 165.877 111.890328) (xy 165.877 112.527885) (xy 165.881475 112.543124) (xy 165.882865 112.544329) (xy 165.890548 112.546) (xy 168.904884 112.546) (xy 168.920123 112.541525) (xy 168.921328 112.540135) (xy 168.922999 112.532452) (xy 168.922999 111.890331) (xy 168.922629 111.88351) (xy 168.917105 111.832648) (xy 168.913479 111.817396) (xy 168.868324 111.696946) (xy 168.859786 111.681351) (xy 168.783285 111.579276) (xy 168.770724 111.566715) (xy 168.668649 111.490214) (xy 168.653054 111.481676) (xy 168.558428 111.446202) (xy 168.501664 111.40356) (xy 168.476964 111.336999) (xy 168.492172 111.26765) (xy 168.515687 111.23705) (xy 168.578548 111.177084) (xy 168.578553 111.177079) (xy 168.58241 111.173399) (xy 168.721548 110.986391) (xy 168.827188 110.778612) (xy 168.89631 110.556005) (xy 168.907872 110.468774) (xy 168.926236 110.330219) (xy 168.926236 110.330215) (xy 168.926936 110.324935) (xy 168.924165 110.251114) (xy 168.921048 110.168112) (xy 168.918191 110.092007) (xy 168.870326 109.863883) (xy 168.864503 109.849137) (xy 168.822003 109.741522) (xy 168.784708 109.647086) (xy 168.722903 109.545233) (xy 168.666555 109.452374) (xy 168.666553 109.452371) (xy 168.663787 109.447813) (xy 168.64219 109.422925) (xy 168.514518 109.275796) (xy 168.514516 109.275794) (xy 168.511018 109.271763) (xy 168.442337 109.215448) (xy 168.3349 109.127354) (xy 168.334894 109.12735) (xy 168.330772 109.12397) (xy 168.287002 109.099055) (xy 168.237696 109.047973) (xy 168.223834 108.978343) (xy 168.249817 108.912272) (xy 168.278965 108.885035) (xy 168.413752 108.794291) (xy 168.418558 108.789707) (xy 168.512099 108.700472) (xy 168.58241 108.633399) (xy 168.600706 108.608809) (xy 168.700474 108.474715) (xy 168.721548 108.446391) (xy 168.725711 108.438204) (xy 168.783511 108.324519) (xy 168.827188 108.238612) (xy 168.89631 108.016005) (xy 168.907594 107.930866) (xy 168.926236 107.790219) (xy 168.926236 107.790215) (xy 168.926936 107.784935) (xy 168.923669 107.697903) (xy 168.918391 107.557338) (xy 168.918191 107.552007) (xy 168.870326 107.323883) (xy 168.862393 107.303794) (xy 168.807105 107.163799) (xy 168.784708 107.107086) (xy 168.705056 106.975823) (xy 168.666555 106.912374) (xy 168.666553 106.912371) (xy 168.663787 106.907813) (xy 168.633336 106.872721) (xy 168.514518 106.735796) (xy 168.514516 106.735794) (xy 168.511018 106.731763) (xy 168.451241 106.682749) (xy 168.3349 106.587354) (xy 168.334894 106.58735) (xy 168.330772 106.58397) (xy 168.287002 106.559055) (xy 168.237696 106.507973) (xy 168.223834 106.438343) (xy 168.249817 106.372272) (xy 168.278965 106.345035) (xy 168.413752 106.254291) (xy 168.42625 106.242369) (xy 168.541653 106.132279) (xy 168.58241 106.093399) (xy 168.597314 106.073368) (xy 168.718362 105.910673) (xy 168.721548 105.906391) (xy 168.730743 105.888307) (xy 168.776924 105.797475) (xy 168.827188 105.698612) (xy 168.89631 105.476005) (xy 168.900958 105.440935) (xy 168.926236 105.250219) (xy 168.926236 105.250215) (xy 168.926936 105.244935) (xy 168.918191 105.012007) (xy 168.870326 104.783883) (xy 168.784708 104.567086) (xy 168.689582 104.410322) (xy 168.666555 104.372374) (xy 168.666553 104.372371) (xy 168.663787 104.367813) (xy 168.628831 104.32753) (xy 168.514518 104.195796) (xy 168.514516 104.195794) (xy 168.511018 104.191763) (xy 168.437164 104.131206) (xy 168.3349 104.047354) (xy 168.334894 104.04735) (xy 168.330772 104.04397) (xy 168.1282 103.92866) (xy 168.123184 103.926839) (xy 168.123179 103.926837) (xy 167.914112 103.850949) (xy 167.914108 103.850948) (xy 167.909097 103.849129) (xy 167.903848 103.84818) (xy 167.903845 103.848179) (xy 167.683809 103.80839) (xy 167.683802 103.808389) (xy 167.679725 103.807652) (xy 167.661801 103.806807) (xy 167.656786 103.80657) (xy 167.656779 103.80657) (xy 167.655298 103.8065) (xy 167.191473 103.8065) (xy 167.017743 103.821241) (xy 167.012579 103.822581) (xy 167.012575 103.822582) (xy 166.797292 103.878459) (xy 166.797288 103.878461) (xy 166.792127 103.8798) (xy 166.787261 103.881992) (xy 166.584464 103.973345) (xy 166.584461 103.973346) (xy 166.579603 103.975535) (xy 166.386248 104.105709) (xy 166.382391 104.109388) (xy 166.382389 104.10939) (xy 166.312352 104.176203) (xy 166.21759 104.266601) (xy 166.214407 104.270878) (xy 166.214407 104.270879) (xy 166.17163 104.328373) (xy 166.078452 104.453609) (xy 166.076036 104.45836) (xy 166.076034 104.458364) (xy 166.046039 104.517361) (xy 165.972812 104.661388) (xy 165.90369 104.883995) (xy 165.902989 104.889284) (xy 165.889105 104.994041) (xy 165.873064 105.115065) (xy 165.881809 105.347993) (xy 165.929674 105.576117) (xy 166.015292 105.792914) (xy 166.075753 105.892551) (xy 166.101326 105.934694) (xy 166.136213 105.992187) (xy 166.139708 105.996215) (xy 166.139709 105.996216) (xy 166.263604 106.138991) (xy 166.288982 106.168237) (xy 166.293113 106.171624) (xy 166.4651 106.312646) (xy 166.465106 106.31265) (xy 166.469228 106.31603) (xy 166.505843 106.336872) (xy 166.512998 106.340945) (xy 166.562304 106.392027) (xy 166.576166 106.461657) (xy 166.550183 106.527728) (xy 166.521035 106.554965) (xy 166.45886 106.596824) (xy 166.411807 106.628502) (xy 166.386248 106.645709) (xy 166.382391 106.649388) (xy 166.382389 106.64939) (xy 166.351419 106.678934) (xy 166.21759 106.806601) (xy 166.214407 106.810878) (xy 166.214407 106.810879) (xy 166.136162 106.916044) (xy 166.079452 106.958757) (xy 166.008651 106.96403) (xy 165.954082 106.937352) (xy 165.845635 106.846354) (xy 165.845629 106.84635) (xy 165.840911 106.842391) (xy 165.835519 106.839427) (xy 165.835515 106.839424) (xy 165.664402 106.745354) (xy 165.659005 106.742387) (xy 165.461139 106.679621) (xy 165.455022 106.678935) (xy 165.455018 106.678934) (xy 165.378402 106.670341) (xy 165.299587 106.6615) (xy 165.187763 106.6615) (xy 165.184707 106.6618) (xy 165.1847 106.6618) (xy 165.039534 106.676034) (xy 165.039531 106.676035) (xy 165.033408 106.676635) (xy 164.912774 106.713056) (xy 164.840593 106.734848) (xy 164.84059 106.734849) (xy 164.834685 106.736632) (xy 164.82924 106.739527) (xy 164.829238 106.739528) (xy 164.656847 106.831191) (xy 164.656845 106.831192) (xy 164.651401 106.834087) (xy 164.592915 106.881787) (xy 164.495311 106.96139) (xy 164.495308 106.961393) (xy 164.490536 106.965285) (xy 164.486608 106.970033) (xy 164.486607 106.970034) (xy 164.450246 107.013987) (xy 164.358217 107.12523) (xy 164.355288 107.130647) (xy 164.355286 107.13065) (xy 164.262416 107.30241) (xy 164.262414 107.302415) (xy 164.259486 107.30783) (xy 164.198102 107.506129) (xy 164.197458 107.512254) (xy 164.197458 107.512255) (xy 164.177087 107.706081) (xy 164.176404 107.712575) (xy 161.2585 107.712575) (xy 161.2585 103.121396) (xy 161.259578 103.104949) (xy 161.261747 103.088472) (xy 161.262479 103.082914) (xy 161.25864 103.001504) (xy 161.2585 102.995569) (xy 161.2585 102.973001) (xy 161.258252 102.970218) (xy 161.258251 102.970204) (xy 161.256182 102.947023) (xy 161.255823 102.94176) (xy 161.252501 102.871328) (xy 161.251897 102.858512) (xy 161.247892 102.841023) (xy 161.245212 102.824104) (xy 161.244115 102.811821) (xy 161.243617 102.806238) (xy 161.226436 102.743435) (xy 161.221631 102.72587) (xy 161.220345 102.720752) (xy 161.202994 102.644997) (xy 161.201742 102.63953) (xy 161.194707 102.623037) (xy 161.189072 102.606855) (xy 161.18582 102.594967) (xy 161.185817 102.594958) (xy 161.184337 102.589549) (xy 161.181922 102.584486) (xy 161.181918 102.584475) (xy 161.148466 102.514343) (xy 161.146293 102.509532) (xy 161.134809 102.482606) (xy 161.113604 102.432892) (xy 161.103756 102.4179) (xy 161.099118 102.409669) (xy 165.877001 102.409669) (xy 165.877371 102.41649) (xy 165.882895 102.467352) (xy 165.886521 102.482604) (xy 165.931676 102.603054) (xy 165.940214 102.618649) (xy 166.016715 102.720724) (xy 166.029276 102.733285) (xy 166.131351 102.809786) (xy 166.146946 102.818324) (xy 166.267394 102.863478) (xy 166.282649 102.867105) (xy 166.333514 102.872631) (xy 166.340328 102.873) (xy 167.127885 102.873) (xy 167.143124 102.868525) (xy 167.144329 102.867135) (xy 167.146 102.859452) (xy 167.146 102.854884) (xy 167.654 102.854884) (xy 167.658475 102.870123) (xy 167.659865 102.871328) (xy 167.667548 102.872999) (xy 168.459669 102.872999) (xy 168.46649 102.872629) (xy 168.517352 102.867105) (xy 168.532604 102.863479) (xy 168.653054 102.818324) (xy 168.668649 102.809786) (xy 168.770724 102.733285) (xy 168.783285 102.720724) (xy 168.859786 102.618649) (xy 168.868324 102.603054) (xy 168.913478 102.482606) (xy 168.917105 102.467351) (xy 168.922631 102.416486) (xy 168.923 102.409672) (xy 168.923 101.772115) (xy 168.918525 101.756876) (xy 168.917135 101.755671) (xy 168.909452 101.754) (xy 167.672115 101.754) (xy 167.656876 101.758475) (xy 167.655671 101.759865) (xy 167.654 101.767548) (xy 167.654 102.854884) (xy 167.146 102.854884) (xy 167.146 101.772115) (xy 167.141525 101.756876) (xy 167.140135 101.755671) (xy 167.132452 101.754) (xy 165.895116 101.754) (xy 165.879877 101.758475) (xy 165.878672 101.759865) (xy 165.877001 101.767548) (xy 165.877001 102.409669) (xy 161.099118 102.409669) (xy 161.095344 102.402971) (xy 161.087622 102.386782) (xy 161.082995 102.380342) (xy 161.039003 102.319122) (xy 161.036013 102.314771) (xy 160.992805 102.248992) (xy 160.992801 102.248987) (xy 160.990265 102.245126) (xy 160.971751 102.224346) (xy 160.963506 102.214055) (xy 160.959807 102.208907) (xy 160.959803 102.208903) (xy 160.956529 102.204346) (xy 160.879777 102.129968) (xy 160.878367 102.128579) (xy 159.403883 100.654095) (xy 159.369857 100.591783) (xy 159.374922 100.520968) (xy 159.403883 100.475905) (xy 160.825263 99.054525) (xy 160.837654 99.043657) (xy 160.850848 99.033533) (xy 160.855292 99.030123) (xy 160.910158 98.969826) (xy 160.914257 98.965531) (xy 160.930198 98.94959) (xy 160.946942 98.929564) (xy 160.950401 98.925599) (xy 161.002708 98.868115) (xy 161.002709 98.868114) (xy 161.006485 98.863964) (xy 161.016016 98.84877) (xy 161.026085 98.83491) (xy 161.037593 98.821147) (xy 161.078869 98.748782) (xy 161.081579 98.744253) (xy 161.122885 98.678405) (xy 161.125864 98.673656) (xy 161.132553 98.657017) (xy 161.140012 98.641587) (xy 161.146119 98.630881) (xy 161.146123 98.630872) (xy 161.148898 98.626007) (xy 161.176715 98.547454) (xy 161.178576 98.542529) (xy 161.183257 98.530885) (xy 161.209656 98.465217) (xy 161.213294 98.44765) (xy 161.217899 98.431156) (xy 161.223889 98.414241) (xy 161.237359 98.33199) (xy 161.238319 98.326811) (xy 161.254276 98.249758) (xy 161.254276 98.249757) (xy 161.255213 98.245233) (xy 161.256815 98.217452) (xy 161.258262 98.204347) (xy 161.259286 98.19809) (xy 161.259286 98.198086) (xy 161.260194 98.192543) (xy 161.259911 98.174496) (xy 161.258516 98.085736) (xy 161.2585 98.083757) (xy 161.2585 96.412575) (xy 164.176404 96.412575) (xy 164.180634 96.45905) (xy 164.185362 96.511) (xy 164.195218 96.619303) (xy 164.196956 96.625209) (xy 164.196957 96.625213) (xy 164.220068 96.703738) (xy 164.253827 96.81844) (xy 164.349999 97.0024) (xy 164.480071 97.164177) (xy 164.484788 97.168135) (xy 164.48479 97.168137) (xy 164.561122 97.232187) (xy 164.639089 97.297609) (xy 164.644481 97.300573) (xy 164.644485 97.300576) (xy 164.771069 97.370166) (xy 164.820995 97.397613) (xy 165.018861 97.460379) (xy 165.024978 97.461065) (xy 165.024982 97.461066) (xy 165.101598 97.469659) (xy 165.180413 97.4785) (xy 165.292237 97.4785) (xy 165.295293 97.4782) (xy 165.2953 97.4782) (xy 165.440466 97.463966) (xy 165.440469 97.463965) (xy 165.446592 97.463365) (xy 165.578546 97.423526) (xy 165.639407 97.405152) (xy 165.63941 97.405151) (xy 165.645315 97.403368) (xy 165.652635 97.399476) (xy 165.823153 97.308809) (xy 165.823155 97.308808) (xy 165.828599 97.305913) (xy 165.952482 97.204876) (xy 166.017913 97.177323) (xy 166.087854 97.189518) (xy 166.13376 97.228144) (xy 166.136213 97.232187) (xy 166.139712 97.236219) (xy 166.28138 97.399476) (xy 166.288982 97.408237) (xy 166.293113 97.411624) (xy 166.4651 97.552646) (xy 166.465106 97.55265) (xy 166.469228 97.55603) (xy 166.473866 97.55867) (xy 166.512998 97.580945) (xy 166.562304 97.632027) (xy 166.576166 97.701657) (xy 166.550183 97.767728) (xy 166.521035 97.794965) (xy 166.481874 97.82133) (xy 166.393497 97.880829) (xy 166.386248 97.885709) (xy 166.21759 98.046601) (xy 166.214407 98.050878) (xy 166.214407 98.050879) (xy 166.189945 98.083757) (xy 166.078452 98.233609) (xy 166.076036 98.23836) (xy 166.076034 98.238364) (xy 166.044613 98.300165) (xy 165.972812 98.441388) (xy 165.90369 98.663995) (xy 165.902989 98.669284) (xy 165.876291 98.87072) (xy 165.873064 98.895065) (xy 165.873264 98.900394) (xy 165.873264 98.900395) (xy 165.87436 98.929578) (xy 165.881809 99.127993) (xy 165.929674 99.356117) (xy 165.931632 99.361076) (xy 165.931633 99.361078) (xy 165.959777 99.432342) (xy 166.015292 99.572914) (xy 166.066122 99.65668) (xy 166.127491 99.757813) (xy 166.136213 99.772187) (xy 166.139712 99.776219) (xy 166.139714 99.776222) (xy 166.288146 99.947275) (xy 166.317686 100.011834) (xy 166.307632 100.082115) (xy 166.261177 100.135804) (xy 166.237211 100.147837) (xy 166.146946 100.181676) (xy 166.131351 100.190214) (xy 166.029276 100.266715) (xy 166.016715 100.279276) (xy 165.940214 100.381351) (xy 165.931676 100.396946) (xy 165.886522 100.517394) (xy 165.882895 100.532649) (xy 165.877369 100.583514) (xy 165.877 100.590328) (xy 165.877 101.227885) (xy 165.881475 101.243124) (xy 165.882865 101.244329) (xy 165.890548 101.246) (xy 168.904884 101.246) (xy 168.920123 101.241525) (xy 168.921328 101.240135) (xy 168.922999 101.232452) (xy 168.922999 100.590331) (xy 168.922629 100.58351) (xy 168.917105 100.532648) (xy 168.913479 100.517396) (xy 168.868324 100.396946) (xy 168.859786 100.381351) (xy 168.783285 100.279276) (xy 168.770724 100.266715) (xy 168.668649 100.190214) (xy 168.653054 100.181676) (xy 168.558428 100.146202) (xy 168.501664 100.10356) (xy 168.476964 100.036999) (xy 168.492172 99.96765) (xy 168.515687 99.93705) (xy 168.578548 99.877084) (xy 168.578553 99.877079) (xy 168.58241 99.873399) (xy 168.721548 99.686391) (xy 168.73883 99.652401) (xy 168.776924 99.577475) (xy 168.827188 99.478612) (xy 168.89631 99.256005) (xy 168.923789 99.04868) (xy 168.926236 99.030219) (xy 168.926236 99.030215) (xy 168.926936 99.024935) (xy 168.918191 98.792007) (xy 168.870326 98.563883) (xy 168.857295 98.530885) (xy 168.813317 98.419527) (xy 168.784708 98.347086) (xy 168.702042 98.210856) (xy 168.666555 98.152374) (xy 168.666553 98.152371) (xy 168.663787 98.147813) (xy 168.632186 98.111396) (xy 168.514518 97.975796) (xy 168.514516 97.975794) (xy 168.511018 97.971763) (xy 168.445125 97.917734) (xy 168.3349 97.827354) (xy 168.334894 97.82735) (xy 168.330772 97.82397) (xy 168.287002 97.799055) (xy 168.237696 97.747973) (xy 168.223834 97.678343) (xy 168.249817 97.612272) (xy 168.278965 97.585035) (xy 168.413752 97.494291) (xy 168.432027 97.476858) (xy 168.512099 97.400472) (xy 168.58241 97.333399) (xy 168.600706 97.308809) (xy 168.70104 97.173955) (xy 168.721548 97.146391) (xy 168.724037 97.141497) (xy 168.786317 97.019) (xy 168.827188 96.938612) (xy 168.89631 96.716005) (xy 168.921665 96.524707) (xy 168.926236 96.490219) (xy 168.926236 96.490215) (xy 168.926936 96.484935) (xy 168.918191 96.252007) (xy 168.870326 96.023883) (xy 168.784708 95.807086) (xy 168.663787 95.607813) (xy 168.649631 95.5915) (xy 168.514518 95.435796) (xy 168.514516 95.435794) (xy 168.511018 95.431763) (xy 168.449699 95.381484) (xy 168.3349 95.287354) (xy 168.334894 95.28735) (xy 168.330772 95.28397) (xy 168.287002 95.259055) (xy 168.237696 95.207973) (xy 168.223834 95.138343) (xy 168.249817 95.072272) (xy 168.278965 95.045035) (xy 168.3671 94.985699) (xy 168.409326 94.957271) (xy 168.409328 94.957269) (xy 168.413752 94.954291) (xy 168.58241 94.793399) (xy 168.721548 94.606391) (xy 168.728422 94.592872) (xy 168.778764 94.493855) (xy 168.827188 94.398612) (xy 168.89631 94.176005) (xy 168.912975 94.050269) (xy 168.926236 93.950219) (xy 168.926236 93.950215) (xy 168.926936 93.944935) (xy 168.925184 93.898255) (xy 168.918391 93.717338) (xy 168.918191 93.712007) (xy 168.870326 93.483883) (xy 168.784708 93.267086) (xy 168.696616 93.121914) (xy 168.666555 93.072374) (xy 168.666553 93.072371) (xy 168.663787 93.067813) (xy 168.638696 93.038898) (xy 168.514518 92.895796) (xy 168.514516 92.895794) (xy 168.511018 92.891763) (xy 168.453705 92.844769) (xy 168.3349 92.747354) (xy 168.334894 92.74735) (xy 168.330772 92.74397) (xy 168.1282 92.62866) (xy 168.123184 92.626839) (xy 168.123179 92.626837) (xy 167.914112 92.550949) (xy 167.914108 92.550948) (xy 167.909097 92.549129) (xy 167.903848 92.54818) (xy 167.903845 92.548179) (xy 167.683809 92.50839) (xy 167.683802 92.508389) (xy 167.679725 92.507652) (xy 167.661801 92.506807) (xy 167.656786 92.50657) (xy 167.656779 92.50657) (xy 167.655298 92.5065) (xy 167.191473 92.5065) (xy 167.017743 92.521241) (xy 167.012579 92.522581) (xy 167.012575 92.522582) (xy 166.797292 92.578459) (xy 166.797288 92.578461) (xy 166.792127 92.5798) (xy 166.787261 92.581992) (xy 166.584464 92.673345) (xy 166.584461 92.673346) (xy 166.579603 92.675535) (xy 166.386248 92.805709) (xy 166.382391 92.809388) (xy 166.382389 92.80939) (xy 166.332939 92.856563) (xy 166.21759 92.966601) (xy 166.078452 93.153609) (xy 166.076036 93.15836) (xy 166.076034 93.158364) (xy 166.051162 93.207284) (xy 165.972812 93.361388) (xy 165.90369 93.583995) (xy 165.902989 93.589284) (xy 165.895988 93.642109) (xy 165.873064 93.815065) (xy 165.873264 93.820394) (xy 165.873264 93.820395) (xy 165.876155 93.897402) (xy 165.881809 94.047993) (xy 165.929674 94.276117) (xy 165.931632 94.281076) (xy 165.931633 94.281078) (xy 165.935032 94.289684) (xy 166.015292 94.492914) (xy 166.068538 94.580661) (xy 166.123699 94.671564) (xy 166.136213 94.692187) (xy 166.139708 94.696215) (xy 166.139709 94.696216) (xy 166.281885 94.860058) (xy 166.288982 94.868237) (xy 166.293113 94.871624) (xy 166.4651 95.012646) (xy 166.465106 95.01265) (xy 166.469228 95.01603) (xy 166.506941 95.037497) (xy 166.512998 95.040945) (xy 166.562304 95.092027) (xy 166.576166 95.161657) (xy 166.550183 95.227728) (xy 166.521035 95.254965) (xy 166.477953 95.28397) (xy 166.414078 95.326973) (xy 166.386248 95.345709) (xy 166.382391 95.349388) (xy 166.382389 95.34939) (xy 166.369695 95.3615) (xy 166.21759 95.506601) (xy 166.214407 95.510878) (xy 166.214407 95.510879) (xy 166.136162 95.616044) (xy 166.079452 95.658757) (xy 166.008651 95.66403) (xy 165.954082 95.637352) (xy 165.845635 95.546354) (xy 165.845629 95.54635) (xy 165.840911 95.542391) (xy 165.835519 95.539427) (xy 165.835515 95.539424) (xy 165.664402 95.445354) (xy 165.659005 95.442387) (xy 165.461139 95.379621) (xy 165.455022 95.378935) (xy 165.455018 95.378934) (xy 165.378402 95.370341) (xy 165.299587 95.3615) (xy 165.187763 95.3615) (xy 165.184707 95.3618) (xy 165.1847 95.3618) (xy 165.039534 95.376034) (xy 165.039531 95.376035) (xy 165.033408 95.376635) (xy 164.945128 95.403288) (xy 164.840593 95.434848) (xy 164.84059 95.434849) (xy 164.834685 95.436632) (xy 164.82924 95.439527) (xy 164.829238 95.439528) (xy 164.656847 95.531191) (xy 164.656845 95.531192) (xy 164.651401 95.534087) (xy 164.599097 95.576745) (xy 164.495311 95.66139) (xy 164.495308 95.661393) (xy 164.490536 95.665285) (xy 164.486608 95.670033) (xy 164.486607 95.670034) (xy 164.454469 95.708882) (xy 164.358217 95.82523) (xy 164.355288 95.830647) (xy 164.355286 95.83065) (xy 164.262416 96.00241) (xy 164.262414 96.002415) (xy 164.259486 96.00783) (xy 164.198102 96.206129) (xy 164.197458 96.212254) (xy 164.197458 96.212255) (xy 164.186488 96.316635) (xy 164.176404 96.412575) (xy 161.2585 96.412575) (xy 161.2585 91.846396) (xy 161.259578 91.829949) (xy 161.261747 91.813472) (xy 161.262479 91.807914) (xy 161.26152 91.787565) (xy 161.25864 91.726504) (xy 161.2585 91.720569) (xy 161.2585 91.698001) (xy 161.258252 91.695218) (xy 161.258251 91.695204) (xy 161.256182 91.672023) (xy 161.255823 91.66676) (xy 161.253395 91.615271) (xy 161.251897 91.583512) (xy 161.247892 91.566023) (xy 161.245212 91.549104) (xy 161.244535 91.541523) (xy 161.243617 91.531238) (xy 161.236867 91.506565) (xy 161.221631 91.45087) (xy 161.220345 91.445752) (xy 161.202994 91.369997) (xy 161.201742 91.36453) (xy 161.194707 91.348037) (xy 161.189072 91.331855) (xy 161.18582 91.319967) (xy 161.185817 91.319958) (xy 161.184337 91.314549) (xy 161.181922 91.309486) (xy 161.181918 91.309475) (xy 161.148466 91.239343) (xy 161.146293 91.234532) (xy 161.13569 91.209672) (xy 161.135689 91.209669) (xy 165.877001 91.209669) (xy 165.877371 91.21649) (xy 165.882895 91.267352) (xy 165.886521 91.282604) (xy 165.931676 91.403054) (xy 165.940214 91.418649) (xy 166.016715 91.520724) (xy 166.029276 91.533285) (xy 166.131351 91.609786) (xy 166.146946 91.618324) (xy 166.267394 91.663478) (xy 166.282649 91.667105) (xy 166.333514 91.672631) (xy 166.340328 91.673) (xy 167.127885 91.673) (xy 167.143124 91.668525) (xy 167.144329 91.667135) (xy 167.146 91.659452) (xy 167.146 91.654884) (xy 167.654 91.654884) (xy 167.658475 91.670123) (xy 167.659865 91.671328) (xy 167.667548 91.672999) (xy 168.459669 91.672999) (xy 168.46649 91.672629) (xy 168.517352 91.667105) (xy 168.532604 91.663479) (xy 168.653054 91.618324) (xy 168.668649 91.609786) (xy 168.770724 91.533285) (xy 168.783285 91.520724) (xy 168.859786 91.418649) (xy 168.868324 91.403054) (xy 168.913478 91.282606) (xy 168.917105 91.267351) (xy 168.922631 91.216486) (xy 168.923 91.209672) (xy 168.923 90.572115) (xy 168.918525 90.556876) (xy 168.917135 90.555671) (xy 168.909452 90.554) (xy 167.672115 90.554) (xy 167.656876 90.558475) (xy 167.655671 90.559865) (xy 167.654 90.567548) (xy 167.654 91.654884) (xy 167.146 91.654884) (xy 167.146 90.572115) (xy 167.141525 90.556876) (xy 167.140135 90.555671) (xy 167.132452 90.554) (xy 165.895116 90.554) (xy 165.879877 90.558475) (xy 165.878672 90.559865) (xy 165.877001 90.567548) (xy 165.877001 91.209669) (xy 161.135689 91.209669) (xy 161.113604 91.157892) (xy 161.10464 91.144245) (xy 161.103756 91.1429) (xy 161.095344 91.127971) (xy 161.087622 91.111782) (xy 161.038996 91.044111) (xy 161.036013 91.039771) (xy 160.992805 90.973992) (xy 160.992801 90.973987) (xy 160.990265 90.970126) (xy 160.971751 90.949346) (xy 160.963506 90.939055) (xy 160.959807 90.933907) (xy 160.959803 90.933903) (xy 160.956529 90.929346) (xy 160.879777 90.854968) (xy 160.878367 90.853579) (xy 159.491383 89.466595) (xy 159.457357 89.404283) (xy 159.462422 89.333468) (xy 159.491383 89.288405) (xy 160.825259 87.954528) (xy 160.837651 87.94366) (xy 160.850843 87.933538) (xy 160.850851 87.933531) (xy 160.855292 87.930123) (xy 160.910168 87.869815) (xy 160.914267 87.86552) (xy 160.930198 87.849589) (xy 160.946934 87.829573) (xy 160.950379 87.825624) (xy 161.002703 87.768121) (xy 161.002706 87.768117) (xy 161.006485 87.763964) (xy 161.011127 87.756565) (xy 161.016012 87.748776) (xy 161.026091 87.734903) (xy 161.033992 87.725455) (xy 161.033997 87.725448) (xy 161.037594 87.721146) (xy 161.078887 87.648752) (xy 161.081592 87.644232) (xy 161.084576 87.639476) (xy 161.099759 87.615271) (xy 161.122886 87.578404) (xy 161.122888 87.578401) (xy 161.125864 87.573656) (xy 161.132552 87.557021) (xy 161.140012 87.541589) (xy 161.14612 87.530881) (xy 161.146124 87.530872) (xy 161.148899 87.526007) (xy 161.150768 87.52073) (xy 161.15077 87.520725) (xy 161.176715 87.447458) (xy 161.17858 87.442522) (xy 161.207566 87.370416) (xy 161.209656 87.365217) (xy 161.213294 87.34765) (xy 161.217899 87.331156) (xy 161.223889 87.314241) (xy 161.237359 87.23199) (xy 161.238319 87.226811) (xy 161.239984 87.218774) (xy 161.255213 87.145233) (xy 161.255819 87.134729) (xy 161.256815 87.117452) (xy 161.258262 87.104347) (xy 161.259286 87.09809) (xy 161.259286 87.098086) (xy 161.260194 87.092543) (xy 161.258516 86.985736) (xy 161.2585 86.983757) (xy 161.2585 85.212575) (xy 164.176404 85.212575) (xy 164.182989 85.284935) (xy 164.191605 85.379598) (xy 164.195218 85.419303) (xy 164.196956 85.425209) (xy 164.196957 85.425213) (xy 164.226199 85.524568) (xy 164.253827 85.61844) (xy 164.349999 85.8024) (xy 164.353859 85.8072) (xy 164.353859 85.807201) (xy 164.378486 85.837831) (xy 164.480071 85.964177) (xy 164.484788 85.968135) (xy 164.48479 85.968137) (xy 164.575564 86.044305) (xy 164.639089 86.097609) (xy 164.644481 86.100573) (xy 164.644485 86.100576) (xy 164.763515 86.166013) (xy 164.820995 86.197613) (xy 165.018861 86.260379) (xy 165.024978 86.261065) (xy 165.024982 86.261066) (xy 165.101598 86.269659) (xy 165.180413 86.2785) (xy 165.292237 86.2785) (xy 165.295293 86.2782) (xy 165.2953 86.2782) (xy 165.440466 86.263966) (xy 165.440469 86.263965) (xy 165.446592 86.263365) (xy 165.605274 86.215457) (xy 165.639407 86.205152) (xy 165.63941 86.205151) (xy 165.645315 86.203368) (xy 165.652635 86.199476) (xy 165.823153 86.108809) (xy 165.823155 86.108808) (xy 165.828599 86.105913) (xy 165.952482 86.004876) (xy 166.017913 85.977323) (xy 166.087854 85.989518) (xy 166.13376 86.028144) (xy 166.136213 86.032187) (xy 166.168274 86.069134) (xy 166.28138 86.199476) (xy 166.288982 86.208237) (xy 166.301833 86.218774) (xy 166.4651 86.352646) (xy 166.465106 86.35265) (xy 166.469228 86.35603) (xy 166.473866 86.35867) (xy 166.512998 86.380945) (xy 166.562304 86.432027) (xy 166.576166 86.501657) (xy 166.550183 86.567728) (xy 166.521035 86.594965) (xy 166.440235 86.649363) (xy 166.396426 86.678857) (xy 166.386248 86.685709) (xy 166.382391 86.689388) (xy 166.382389 86.68939) (xy 166.362726 86.708148) (xy 166.21759 86.846601) (xy 166.078452 87.033609) (xy 166.076036 87.03836) (xy 166.076034 87.038364) (xy 166.02964 87.129616) (xy 165.972812 87.241388) (xy 165.90369 87.463995) (xy 165.902989 87.469284) (xy 165.874041 87.687695) (xy 165.873064 87.695065) (xy 165.873264 87.700394) (xy 165.873264 87.700395) (xy 165.875126 87.75) (xy 165.881809 87.927993) (xy 165.929674 88.156117) (xy 165.931632 88.161076) (xy 165.931633 88.161078) (xy 165.96256 88.239388) (xy 166.015292 88.372914) (xy 166.136213 88.572187) (xy 166.139712 88.576219) (xy 166.139714 88.576222) (xy 166.288146 88.747275) (xy 166.317686 88.811834) (xy 166.307632 88.882115) (xy 166.261177 88.935804) (xy 166.237211 88.947837) (xy 166.146946 88.981676) (xy 166.131351 88.990214) (xy 166.029276 89.066715) (xy 166.016715 89.079276) (xy 165.940214 89.181351) (xy 165.931676 89.196946) (xy 165.886522 89.317394) (xy 165.882895 89.332649) (xy 165.877369 89.383514) (xy 165.877 89.390328) (xy 165.877 90.027885) (xy 165.881475 90.043124) (xy 165.882865 90.044329) (xy 165.890548 90.046) (xy 168.904884 90.046) (xy 168.920123 90.041525) (xy 168.921328 90.040135) (xy 168.922999 90.032452) (xy 168.922999 89.390331) (xy 168.922629 89.38351) (xy 168.917105 89.332648) (xy 168.913479 89.317396) (xy 168.868324 89.196946) (xy 168.859786 89.181351) (xy 168.783285 89.079276) (xy 168.770724 89.066715) (xy 168.668649 88.990214) (xy 168.653054 88.981676) (xy 168.558428 88.946202) (xy 168.501664 88.90356) (xy 168.476964 88.836999) (xy 168.492172 88.76765) (xy 168.515687 88.73705) (xy 168.578548 88.677084) (xy 168.578553 88.677079) (xy 168.58241 88.673399) (xy 168.721548 88.486391) (xy 168.827188 88.278612) (xy 168.839368 88.239388) (xy 168.894727 88.061103) (xy 168.89631 88.056005) (xy 168.908182 87.966431) (xy 168.926236 87.830219) (xy 168.926236 87.830215) (xy 168.926936 87.824935) (xy 168.918191 87.592007) (xy 168.870326 87.363883) (xy 168.853444 87.321134) (xy 168.808823 87.208148) (xy 168.784708 87.147086) (xy 168.686799 86.985736) (xy 168.666555 86.952374) (xy 168.666553 86.952371) (xy 168.663787 86.947813) (xy 168.61172 86.887811) (xy 168.514518 86.775796) (xy 168.514516 86.775794) (xy 168.511018 86.771763) (xy 168.468269 86.736711) (xy 168.3349 86.627354) (xy 168.334894 86.62735) (xy 168.330772 86.62397) (xy 168.287002 86.599055) (xy 168.237696 86.547973) (xy 168.223834 86.478343) (xy 168.249817 86.412272) (xy 168.278965 86.385035) (xy 168.383733 86.314501) (xy 168.409326 86.297271) (xy 168.409328 86.297269) (xy 168.413752 86.294291) (xy 168.455372 86.254588) (xy 168.500409 86.211624) (xy 168.58241 86.133399) (xy 168.600706 86.108809) (xy 168.700474 85.974715) (xy 168.721548 85.946391) (xy 168.730459 85.928866) (xy 168.790899 85.809987) (xy 168.827188 85.738612) (xy 168.89631 85.516005) (xy 168.903034 85.465271) (xy 168.926236 85.290219) (xy 168.926236 85.290215) (xy 168.926936 85.284935) (xy 168.926705 85.278768) (xy 168.9192 85.078891) (xy 168.918191 85.052007) (xy 168.870326 84.823883) (xy 168.840329 84.747925) (xy 168.813845 84.680866) (xy 168.784708 84.607086) (xy 168.705056 84.475823) (xy 168.666555 84.412374) (xy 168.666553 84.412371) (xy 168.663787 84.407813) (xy 168.626871 84.365271) (xy 168.514518 84.235796) (xy 168.514516 84.235794) (xy 168.511018 84.231763) (xy 168.449699 84.181484) (xy 168.3349 84.087354) (xy 168.334894 84.08735) (xy 168.330772 84.08397) (xy 168.287002 84.059055) (xy 168.237696 84.007973) (xy 168.223834 83.938343) (xy 168.249817 83.872272) (xy 168.278965 83.845035) (xy 168.413752 83.754291) (xy 168.438912 83.73029) (xy 168.508187 83.664204) (xy 168.58241 83.593399) (xy 168.721548 83.406391) (xy 168.73635 83.377279) (xy 168.776924 83.297475) (xy 168.827188 83.198612) (xy 168.89631 82.976005) (xy 168.908146 82.886703) (xy 168.926236 82.750219) (xy 168.926236 82.750215) (xy 168.926936 82.744935) (xy 168.92449 82.679771) (xy 168.918391 82.517338) (xy 168.918191 82.512007) (xy 168.870326 82.283883) (xy 168.784708 82.067086) (xy 168.663787 81.867813) (xy 168.630152 81.829052) (xy 168.514518 81.695796) (xy 168.514516 81.695794) (xy 168.511018 81.691763) (xy 168.437164 81.631206) (xy 168.3349 81.547354) (xy 168.334894 81.54735) (xy 168.330772 81.54397) (xy 168.1282 81.42866) (xy 168.123184 81.426839) (xy 168.123179 81.426837) (xy 167.914112 81.350949) (xy 167.914108 81.350948) (xy 167.909097 81.349129) (xy 167.903848 81.34818) (xy 167.903845 81.348179) (xy 167.683809 81.30839) (xy 167.683802 81.308389) (xy 167.679725 81.307652) (xy 167.661801 81.306807) (xy 167.656786 81.30657) (xy 167.656779 81.30657) (xy 167.655298 81.3065) (xy 167.191473 81.3065) (xy 167.017743 81.321241) (xy 167.012579 81.322581) (xy 167.012575 81.322582) (xy 166.797292 81.378459) (xy 166.797288 81.378461) (xy 166.792127 81.3798) (xy 166.787261 81.381992) (xy 166.584464 81.473345) (xy 166.584461 81.473346) (xy 166.579603 81.475535) (xy 166.386248 81.605709) (xy 166.382391 81.609388) (xy 166.382389 81.60939) (xy 166.312352 81.676203) (xy 166.21759 81.766601) (xy 166.078452 81.953609) (xy 166.076036 81.95836) (xy 166.076034 81.958364) (xy 166.045794 82.017842) (xy 165.972812 82.161388) (xy 165.90369 82.383995) (xy 165.902989 82.389284) (xy 165.887445 82.506565) (xy 165.873064 82.615065) (xy 165.881809 82.847993) (xy 165.929674 83.076117) (xy 166.015292 83.292914) (xy 166.01806 83.297475) (xy 166.122006 83.468774) (xy 166.136213 83.492187) (xy 166.139708 83.496215) (xy 166.139709 83.496216) (xy 166.224041 83.593399) (xy 166.288982 83.668237) (xy 166.293113 83.671624) (xy 166.4651 83.812646) (xy 166.465106 83.81265) (xy 166.469228 83.81603) (xy 166.473866 83.81867) (xy 166.512998 83.840945) (xy 166.562304 83.892027) (xy 166.576166 83.961657) (xy 166.550183 84.027728) (xy 166.521035 84.054965) (xy 166.386248 84.145709) (xy 166.382391 84.149388) (xy 166.382389 84.14939) (xy 166.312352 84.216203) (xy 166.21759 84.306601) (xy 166.214407 84.310878) (xy 166.214407 84.310879) (xy 166.136162 84.416044) (xy 166.079452 84.458757) (xy 166.008651 84.46403) (xy 165.954082 84.437352) (xy 165.845635 84.346354) (xy 165.845629 84.34635) (xy 165.840911 84.342391) (xy 165.835519 84.339427) (xy 165.835515 84.339424) (xy 165.664402 84.245354) (xy 165.659005 84.242387) (xy 165.461139 84.179621) (xy 165.455022 84.178935) (xy 165.455018 84.178934) (xy 165.378402 84.170341) (xy 165.299587 84.1615) (xy 165.187763 84.1615) (xy 165.184707 84.1618) (xy 165.1847 84.1618) (xy 165.039534 84.176034) (xy 165.039531 84.176035) (xy 165.033408 84.176635) (xy 164.901454 84.216474) (xy 164.840593 84.234848) (xy 164.84059 84.234849) (xy 164.834685 84.236632) (xy 164.82924 84.239527) (xy 164.829238 84.239528) (xy 164.656847 84.331191) (xy 164.656845 84.331192) (xy 164.651401 84.334087) (xy 164.63636 84.346354) (xy 164.495311 84.46139) (xy 164.495308 84.461393) (xy 164.490536 84.465285) (xy 164.358217 84.62523) (xy 164.355288 84.630647) (xy 164.355286 84.63065) (xy 164.262416 84.80241) (xy 164.262414 84.802415) (xy 164.259486 84.80783) (xy 164.198102 85.006129) (xy 164.197458 85.012254) (xy 164.197458 85.012255) (xy 164.180382 85.174731) (xy 164.176404 85.212575) (xy 161.2585 85.212575) (xy 161.2585 80.621396) (xy 161.259578 80.604949) (xy 161.261747 80.588472) (xy 161.262479 80.582914) (xy 161.25864 80.501504) (xy 161.2585 80.495569) (xy 161.2585 80.473001) (xy 161.258252 80.470218) (xy 161.258251 80.470204) (xy 161.256182 80.447023) (xy 161.255823 80.44176) (xy 161.252501 80.371328) (xy 161.251897 80.358512) (xy 161.247892 80.341023) (xy 161.245212 80.324104) (xy 161.244115 80.311821) (xy 161.243617 80.306238) (xy 161.242137 80.300827) (xy 161.221631 80.22587) (xy 161.220345 80.220752) (xy 161.202994 80.144997) (xy 161.201742 80.13953) (xy 161.194707 80.123037) (xy 161.189072 80.106855) (xy 161.18582 80.094967) (xy 161.185817 80.094958) (xy 161.184337 80.089549) (xy 161.181922 80.084486) (xy 161.181918 80.084475) (xy 161.148466 80.014343) (xy 161.146293 80.009532) (xy 161.145028 80.006565) (xy 161.113604 79.932892) (xy 161.103756 79.9179) (xy 161.099118 79.909669) (xy 165.877001 79.909669) (xy 165.877371 79.91649) (xy 165.882895 79.967352) (xy 165.886521 79.982604) (xy 165.931676 80.103054) (xy 165.940214 80.118649) (xy 166.016715 80.220724) (xy 166.029276 80.233285) (xy 166.131351 80.309786) (xy 166.146946 80.318324) (xy 166.267394 80.363478) (xy 166.282649 80.367105) (xy 166.333514 80.372631) (xy 166.340328 80.373) (xy 167.127885 80.373) (xy 167.143124 80.368525) (xy 167.144329 80.367135) (xy 167.146 80.359452) (xy 167.146 80.354884) (xy 167.654 80.354884) (xy 167.658475 80.370123) (xy 167.659865 80.371328) (xy 167.667548 80.372999) (xy 168.459669 80.372999) (xy 168.46649 80.372629) (xy 168.517352 80.367105) (xy 168.532604 80.363479) (xy 168.653054 80.318324) (xy 168.668649 80.309786) (xy 168.770724 80.233285) (xy 168.783285 80.220724) (xy 168.859786 80.118649) (xy 168.868324 80.103054) (xy 168.913478 79.982606) (xy 168.917105 79.967351) (xy 168.922631 79.916486) (xy 168.923 79.909672) (xy 168.923 79.272115) (xy 168.918525 79.256876) (xy 168.917135 79.255671) (xy 168.909452 79.254) (xy 167.672115 79.254) (xy 167.656876 79.258475) (xy 167.655671 79.259865) (xy 167.654 79.267548) (xy 167.654 80.354884) (xy 167.146 80.354884) (xy 167.146 79.272115) (xy 167.141525 79.256876) (xy 167.140135 79.255671) (xy 167.132452 79.254) (xy 165.895116 79.254) (xy 165.879877 79.258475) (xy 165.878672 79.259865) (xy 165.877001 79.267548) (xy 165.877001 79.909669) (xy 161.099118 79.909669) (xy 161.095344 79.902971) (xy 161.087622 79.886782) (xy 161.038996 79.819111) (xy 161.036013 79.814771) (xy 160.992805 79.748992) (xy 160.992801 79.748987) (xy 160.990265 79.745126) (xy 160.971751 79.724346) (xy 160.963506 79.714055) (xy 160.959807 79.708907) (xy 160.959803 79.708903) (xy 160.956529 79.704346) (xy 160.879777 79.629968) (xy 160.878367 79.628579) (xy 158.568835 77.319047) (xy 158.542381 77.280195) (xy 158.503419 77.19059) (xy 158.501354 77.18584) (xy 158.428299 77.072914) (xy 158.382822 77.002617) (xy 158.38282 77.002614) (xy 158.380014 76.998277) (xy 158.22967 76.833051) (xy 158.225619 76.829852) (xy 158.225615 76.829848) (xy 158.058414 76.6978) (xy 158.05841 76.697798) (xy 158.054359 76.694598) (xy 158.013053 76.671796) (xy 157.963084 76.621364) (xy 157.948312 76.551921) (xy 157.973428 76.485516) (xy 158.00078 76.458909) (xy 158.04571 76.426861) (xy 158.17986 76.331173) (xy 158.213814 76.297338) (xy 158.266728 76.244608) (xy 158.338096 76.173489) (xy 158.347719 76.160098) (xy 158.465435 75.996277) (xy 158.468453 75.992077) (xy 158.474983 75.978866) (xy 158.565136 75.796453) (xy 158.565137 75.796451) (xy 158.56743 75.791811) (xy 158.63237 75.578069) (xy 158.661529 75.35659) (xy 158.661611 75.35324) (xy 158.663074 75.293365) (xy 158.663074 75.293361) (xy 158.663156 75.29) (xy 158.644852 75.067361) (xy 158.590431 74.850702) (xy 158.501354 74.64584) (xy 158.412304 74.508189) (xy 158.382822 74.462617) (xy 158.38282 74.462614) (xy 158.380014 74.458277) (xy 158.374179 74.451864) (xy 158.232798 74.296488) (xy 158.201746 74.232642) (xy 158.210141 74.162143) (xy 158.255317 74.107375) (xy 158.281761 74.093706) (xy 158.388297 74.053767) (xy 158.396705 74.050615) (xy 158.513261 73.963261) (xy 158.600615 73.846705) (xy 158.651745 73.710316) (xy 158.6585 73.648134) (xy 158.6585 71.851866) (xy 158.651745 71.789684) (xy 158.600615 71.653295) (xy 158.513261 71.536739) (xy 158.396705 71.449385) (xy 158.260316 71.398255) (xy 158.198134 71.3915) (xy 156.401866 71.3915) (xy 156.339684 71.398255) (xy 156.203295 71.449385) (xy 156.086739 71.536739) (xy 155.999385 71.653295) (xy 155.948255 71.789684) (xy 155.9415 71.851866) (xy 155.9415 73.648134) (xy 155.948255 73.710316) (xy 155.999385 73.846705) (xy 156.086739 73.963261) (xy 156.203295 74.050615) (xy 156.211704 74.053767) (xy 156.211705 74.053768) (xy 156.320451 74.094535) (xy 156.377216 74.137176) (xy 156.401916 74.203738) (xy 156.386709 74.273087) (xy 156.367316 74.299568) (xy 156.240629 74.432138) (xy 156.237715 74.43641) (xy 156.237714 74.436411) (xy 156.16869 74.537596) (xy 156.114743 74.61668) (xy 156.067715 74.717993) (xy 156.023416 74.813429) (xy 156.020688 74.819305) (xy 155.960989 75.03457) (xy 155.937251 75.256695) (xy 155.937548 75.261848) (xy 155.937548 75.261851) (xy 155.948568 75.452971) (xy 155.95011 75.479715) (xy 155.951247 75.484761) (xy 155.951248 75.484767) (xy 155.966148 75.550879) (xy 155.999222 75.697639) (xy 156.057138 75.840271) (xy 156.074743 75.883625) (xy 156.083266 75.904616) (xy 156.10095 75.933474) (xy 156.194305 76.085815) (xy 156.199987 76.095088) (xy 156.34625 76.263938) (xy 156.518126 76.406632) (xy 156.559793 76.43098) (xy 156.591445 76.449476) (xy 156.640169 76.501114) (xy 156.65324 76.570897) (xy 156.626509 76.636669) (xy 156.586055 76.670027) (xy 156.573607 76.676507) (xy 156.569474 76.67961) (xy 156.569471 76.679612) (xy 156.3991 76.80753) (xy 156.394965 76.810635) (xy 156.240629 76.972138) (xy 156.237715 76.97641) (xy 156.237714 76.976411) (xy 156.175268 77.067953) (xy 156.114743 77.15668) (xy 156.068378 77.256565) (xy 156.028953 77.3415) (xy 156.020688 77.359305) (xy 155.960989 77.57457) (xy 155.937251 77.796695) (xy 155.937548 77.801848) (xy 155.937548 77.801851) (xy 155.943031 77.896946) (xy 155.95011 78.019715) (xy 155.951247 78.024761) (xy 155.951248 78.024767) (xy 155.966024 78.090331) (xy 155.999222 78.237639) (xy 156.083266 78.444616) (xy 156.134942 78.528944) (xy 156.163806 78.576045) (xy 156.199987 78.635088) (xy 156.34625 78.803938) (xy 156.518126 78.946632) (xy 156.711 79.059338) (xy 156.715824 79.06118) (xy 156.715826 79.061181) (xy 156.748241 79.073559) (xy 156.792387 79.102174) (xy 158.704595 81.014383) (xy 158.738621 81.076695) (xy 158.7415 81.103478) (xy 158.7415 82.688059) (xy 158.721498 82.75618) (xy 158.667842 82.802673) (xy 158.597568 82.812777) (xy 158.532988 82.783283) (xy 158.525266 82.774995) (xy 158.524992 82.775269) (xy 158.518642 82.768919) (xy 158.513261 82.761739) (xy 158.396705 82.674385) (xy 158.26527 82.625112) (xy 158.208506 82.58247) (xy 158.183806 82.515909) (xy 158.1835 82.50713) (xy 158.1835 81.579457) (xy 158.185051 81.559745) (xy 158.186118 81.553008) (xy 158.18715 81.546493) (xy 158.186697 81.537835) (xy 158.183673 81.48015) (xy 158.1835 81.473555) (xy 158.1835 81.453694) (xy 158.181423 81.433931) (xy 158.180907 81.427367) (xy 158.177776 81.367623) (xy 158.177775 81.367619) (xy 158.17743 81.361029) (xy 158.173958 81.348071) (xy 158.170355 81.328628) (xy 158.169723 81.322616) (xy 158.168954 81.315298) (xy 158.148422 81.252106) (xy 158.146556 81.245804) (xy 158.131071 81.188015) (xy 158.129362 81.181637) (xy 158.126366 81.175758) (xy 158.126363 81.175749) (xy 158.123272 81.169683) (xy 158.115708 81.151421) (xy 158.113608 81.144957) (xy 158.113605 81.144949) (xy 158.111564 81.138669) (xy 158.108262 81.13295) (xy 158.10826 81.132945) (xy 158.078346 81.081133) (xy 158.075213 81.075363) (xy 158.045047 81.016161) (xy 158.03661 81.005742) (xy 158.02541 80.989446) (xy 158.022004 80.983546) (xy 158.022002 80.983543) (xy 158.018704 80.977831) (xy 158.014288 80.972926) (xy 158.014284 80.972921) (xy 157.974246 80.928453) (xy 157.969966 80.923443) (xy 157.959546 80.910576) (xy 157.959545 80.910575) (xy 157.957472 80.908015) (xy 157.943436 80.893979) (xy 157.938895 80.889194) (xy 157.898856 80.844726) (xy 157.898855 80.844725) (xy 157.894434 80.839815) (xy 157.889094 80.835935) (xy 157.889086 80.835928) (xy 157.883578 80.831927) (xy 157.868543 80.819086) (xy 152.920405 75.870947) (xy 152.886379 75.808635) (xy 152.8835 75.781852) (xy 152.8835 75.3) (xy 153.486496 75.3) (xy 153.487186 75.306565) (xy 153.505385 75.479715) (xy 153.506458 75.489928) (xy 153.565473 75.671556) (xy 153.66096 75.836944) (xy 153.665378 75.841851) (xy 153.665379 75.841852) (xy 153.75072 75.936633) (xy 153.788747 75.978866) (xy 153.943248 76.091118) (xy 153.949276 76.093802) (xy 153.949278 76.093803) (xy 154.09818 76.160098) (xy 154.117712 76.168794) (xy 154.211113 76.188647) (xy 154.298056 76.207128) (xy 154.298061 76.207128) (xy 154.304513 76.2085) (xy 154.495487 76.2085) (xy 154.501939 76.207128) (xy 154.501944 76.207128) (xy 154.588887 76.188647) (xy 154.682288 76.168794) (xy 154.70182 76.160098) (xy 154.850722 76.093803) (xy 154.850724 76.093802) (xy 154.856752 76.091118) (xy 155.011253 75.978866) (xy 155.04928 75.936633) (xy 155.134621 75.841852) (xy 155.134622 75.841851) (xy 155.13904 75.836944) (xy 155.234527 75.671556) (xy 155.293542 75.489928) (xy 155.294616 75.479715) (xy 155.312814 75.306565) (xy 155.313504 75.3) (xy 155.305366 75.222572) (xy 155.294232 75.116635) (xy 155.294232 75.116633) (xy 155.293542 75.110072) (xy 155.234527 74.928444) (xy 155.222861 74.908237) (xy 155.17647 74.827886) (xy 155.13904 74.763056) (xy 155.114876 74.736219) (xy 155.040864 74.65402) (xy 155.010146 74.590013) (xy 155.0085 74.56971) (xy 155.0085 71.204239) (xy 155.028502 71.136118) (xy 155.045405 71.115144) (xy 156.415144 69.745405) (xy 156.477456 69.711379) (xy 156.504239 69.7085) (xy 165.895761 69.7085) (xy 165.963882 69.728502) (xy 165.984856 69.745405) (xy 166.376356 70.136905) (xy 166.410382 70.199217) (xy 166.405317 70.270032) (xy 166.374233 70.317169) (xy 166.221452 70.462915) (xy 166.221442 70.462927) (xy 166.21759 70.466601) (xy 166.078452 70.653609) (xy 166.076036 70.65836) (xy 166.076034 70.658364) (xy 166.038639 70.731916) (xy 165.972812 70.861388) (xy 165.90369 71.083995) (xy 165.902989 71.089284) (xy 165.897615 71.129834) (xy 165.873064 71.315065) (xy 165.873264 71.320394) (xy 165.873264 71.320395) (xy 165.876155 71.397402) (xy 165.881809 71.547993) (xy 165.929674 71.776117) (xy 165.931632 71.781076) (xy 165.931633 71.781078) (xy 165.945675 71.816635) (xy 166.015292 71.992914) (xy 166.01806 71.997475) (xy 166.13086 72.183365) (xy 166.136213 72.192187) (xy 166.139708 72.196215) (xy 166.139709 72.196216) (xy 166.284285 72.362824) (xy 166.288982 72.368237) (xy 166.322141 72.395426) (xy 166.4651 72.512646) (xy 166.465106 72.51265) (xy 166.469228 72.51603) (xy 166.473866 72.51867) (xy 166.512998 72.540945) (xy 166.562304 72.592027) (xy 166.576166 72.661657) (xy 166.550183 72.727728) (xy 166.521035 72.754965) (xy 166.501549 72.768084) (xy 166.411085 72.828988) (xy 166.386248 72.845709) (xy 166.21759 73.006601) (xy 166.214407 73.010878) (xy 166.214407 73.010879) (xy 166.136162 73.116044) (xy 166.079452 73.158757) (xy 166.008651 73.16403) (xy 165.954082 73.137352) (xy 165.845635 73.046354) (xy 165.845629 73.04635) (xy 165.840911 73.042391) (xy 165.835519 73.039427) (xy 165.835515 73.039424) (xy 165.664402 72.945354) (xy 165.659005 72.942387) (xy 165.461139 72.879621) (xy 165.455022 72.878935) (xy 165.455018 72.878934) (xy 165.378402 72.870341) (xy 165.299587 72.8615) (xy 165.187763 72.8615) (xy 165.184707 72.8618) (xy 165.1847 72.8618) (xy 165.039534 72.876034) (xy 165.039531 72.876035) (xy 165.033408 72.876635) (xy 164.901454 72.916474) (xy 164.840593 72.934848) (xy 164.84059 72.934849) (xy 164.834685 72.936632) (xy 164.82924 72.939527) (xy 164.829238 72.939528) (xy 164.656847 73.031191) (xy 164.656845 73.031192) (xy 164.651401 73.034087) (xy 164.63998 73.043402) (xy 164.495311 73.16139) (xy 164.495308 73.161393) (xy 164.490536 73.165285) (xy 164.486608 73.170033) (xy 164.486607 73.170034) (xy 164.446823 73.218124) (xy 164.358217 73.32523) (xy 164.355288 73.330647) (xy 164.355286 73.33065) (xy 164.262416 73.50241) (xy 164.262414 73.502415) (xy 164.259486 73.50783) (xy 164.198102 73.706129) (xy 164.197458 73.712254) (xy 164.197458 73.712255) (xy 164.192323 73.761118) (xy 164.176404 73.912575) (xy 164.195218 74.119303) (xy 164.253827 74.31844) (xy 164.349999 74.5024) (xy 164.480071 74.664177) (xy 164.484788 74.668135) (xy 164.48479 74.668137) (xy 164.561122 74.732187) (xy 164.639089 74.797609) (xy 164.644481 74.800573) (xy 164.644485 74.800576) (xy 164.734129 74.849858) (xy 164.820995 74.897613) (xy 165.018861 74.960379) (xy 165.024978 74.961065) (xy 165.024982 74.961066) (xy 165.101598 74.969659) (xy 165.180413 74.9785) (xy 165.292237 74.9785) (xy 165.295293 74.9782) (xy 165.2953 74.9782) (xy 165.440466 74.963966) (xy 165.440469 74.963965) (xy 165.446592 74.963365) (xy 165.581214 74.922721) (xy 165.639407 74.905152) (xy 165.63941 74.905151) (xy 165.645315 74.903368) (xy 165.652635 74.899476) (xy 165.823153 74.808809) (xy 165.823155 74.808808) (xy 165.828599 74.805913) (xy 165.952482 74.704876) (xy 166.017913 74.677323) (xy 166.087854 74.689518) (xy 166.13376 74.728144) (xy 166.136213 74.732187) (xy 166.139712 74.736219) (xy 166.28363 74.902069) (xy 166.288982 74.908237) (xy 166.306811 74.922856) (xy 166.4651 75.052646) (xy 166.465106 75.05265) (xy 166.469228 75.05603) (xy 166.509606 75.079014) (xy 166.512998 75.080945) (xy 166.562304 75.132027) (xy 166.576166 75.201657) (xy 166.550183 75.267728) (xy 166.521035 75.294965) (xy 166.386248 75.385709) (xy 166.21759 75.546601) (xy 166.214407 75.550878) (xy 166.214407 75.550879) (xy 166.202607 75.566739) (xy 166.078452 75.733609) (xy 166.076036 75.73836) (xy 166.076034 75.738364) (xy 166.040307 75.808635) (xy 165.972812 75.941388) (xy 165.90369 76.163995) (xy 165.902989 76.169284) (xy 165.874183 76.386624) (xy 165.873064 76.395065) (xy 165.881809 76.627993) (xy 165.929674 76.856117) (xy 165.931632 76.861076) (xy 165.931633 76.861078) (xy 165.972483 76.964515) (xy 166.015292 77.072914) (xy 166.01806 77.077475) (xy 166.12275 77.25) (xy 166.136213 77.272187) (xy 166.139712 77.276219) (xy 166.139714 77.276222) (xy 166.288146 77.447275) (xy 166.317686 77.511834) (xy 166.307632 77.582115) (xy 166.261177 77.635804) (xy 166.237211 77.647837) (xy 166.146946 77.681676) (xy 166.131351 77.690214) (xy 166.029276 77.766715) (xy 166.016715 77.779276) (xy 165.940214 77.881351) (xy 165.931676 77.896946) (xy 165.886522 78.017394) (xy 165.882895 78.032649) (xy 165.877369 78.083514) (xy 165.877 78.090328) (xy 165.877 78.727885) (xy 165.881475 78.743124) (xy 165.882865 78.744329) (xy 165.890548 78.746) (xy 168.904884 78.746) (xy 168.920123 78.741525) (xy 168.921328 78.740135) (xy 168.922999 78.732452) (xy 168.922999 78.090331) (xy 168.922629 78.08351) (xy 168.917105 78.032648) (xy 168.913479 78.017396) (xy 168.868324 77.896946) (xy 168.859786 77.881351) (xy 168.783285 77.779276) (xy 168.770724 77.766715) (xy 168.668649 77.690214) (xy 168.653054 77.681676) (xy 168.558428 77.646202) (xy 168.501664 77.60356) (xy 168.476964 77.536999) (xy 168.492172 77.46765) (xy 168.515687 77.43705) (xy 168.578548 77.377084) (xy 168.578553 77.377079) (xy 168.58241 77.373399) (xy 168.721548 77.186391) (xy 168.73883 77.152401) (xy 168.776924 77.077475) (xy 168.827188 76.978612) (xy 168.89631 76.756005) (xy 168.901552 76.716452) (xy 168.926236 76.530219) (xy 168.926236 76.530215) (xy 168.926936 76.524935) (xy 168.926105 76.502786) (xy 168.921478 76.379568) (xy 168.918191 76.292007) (xy 168.870326 76.063883) (xy 168.857704 76.031921) (xy 168.796551 75.877075) (xy 168.784708 75.847086) (xy 168.690962 75.692596) (xy 168.666555 75.652374) (xy 168.666553 75.652371) (xy 168.663787 75.647813) (xy 168.626658 75.605026) (xy 168.514518 75.475796) (xy 168.514516 75.475794) (xy 168.511018 75.471763) (xy 168.468269 75.436711) (xy 168.3349 75.327354) (xy 168.334894 75.32735) (xy 168.330772 75.32397) (xy 168.287002 75.299055) (xy 168.237696 75.247973) (xy 168.223834 75.178343) (xy 168.249817 75.112272) (xy 168.278965 75.085035) (xy 168.397057 75.005531) (xy 168.409326 74.997271) (xy 168.409328 74.997269) (xy 168.413752 74.994291) (xy 168.430678 74.978145) (xy 168.512099 74.900472) (xy 168.58241 74.833399) (xy 168.600706 74.808809) (xy 168.700474 74.674715) (xy 168.721548 74.646391) (xy 168.725901 74.637831) (xy 168.791813 74.508189) (xy 168.827188 74.438612) (xy 168.89631 74.216005) (xy 168.926936 73.984935) (xy 168.918191 73.752007) (xy 168.870326 73.523883) (xy 168.858302 73.493435) (xy 168.827517 73.415485) (xy 168.784708 73.307086) (xy 168.705056 73.175823) (xy 168.666555 73.112374) (xy 168.666553 73.112371) (xy 168.663787 73.107813) (xy 168.654891 73.097561) (xy 168.514518 72.935796) (xy 168.514516 72.935794) (xy 168.511018 72.931763) (xy 168.449699 72.881484) (xy 168.3349 72.787354) (xy 168.334894 72.78735) (xy 168.330772 72.78397) (xy 168.287002 72.759055) (xy 168.237696 72.707973) (xy 168.223834 72.638343) (xy 168.249817 72.572272) (xy 168.278965 72.545035) (xy 168.413752 72.454291) (xy 168.474702 72.396148) (xy 168.578553 72.297078) (xy 168.58241 72.293399) (xy 168.721548 72.106391) (xy 168.827188 71.898612) (xy 168.89631 71.676005) (xy 168.913983 71.542662) (xy 168.926236 71.450219) (xy 168.926236 71.450215) (xy 168.926936 71.444935) (xy 168.925184 71.398255) (xy 168.918391 71.217338) (xy 168.918191 71.212007) (xy 168.870326 70.983883) (xy 168.852621 70.93905) (xy 168.786667 70.772047) (xy 168.784708 70.767086) (xy 168.663787 70.567813) (xy 168.649871 70.551776) (xy 168.514518 70.395796) (xy 168.514516 70.395794) (xy 168.511018 70.391763) (xy 168.448901 70.34083) (xy 168.3349 70.247354) (xy 168.334894 70.24735) (xy 168.330772 70.24397) (xy 168.1282 70.12866) (xy 168.014971 70.08756) (xy 167.957763 70.045515) (xy 167.941553 70.017338) (xy 167.934685 70.000756) (xy 167.934684 70.000755) (xy 167.931524 69.993125) (xy 167.926303 69.98632) (xy 167.910305 69.965472) (xy 167.894752 69.945203) (xy 167.858477 69.897928) (xy 167.858474 69.897925) (xy 167.833987 69.866013) (xy 167.815969 69.852187) (xy 167.808621 69.846548) (xy 167.79623 69.835681) (xy 166.664315 68.703766) (xy 166.653448 68.691375) (xy 166.639013 68.672563) (xy 166.633987 68.666013) (xy 166.602075 68.641526) (xy 166.602072 68.641523) (xy 166.556714 68.606718) (xy 166.513429 68.573504) (xy 166.513427 68.573503) (xy 166.506876 68.568476) (xy 166.358851 68.507162) (xy 166.350664 68.506084) (xy 166.350663 68.506084) (xy 166.339458 68.504609) (xy 166.308262 68.500502) (xy 166.239885 68.4915) (xy 166.239882 68.4915) (xy 166.239874 68.491499) (xy 166.208189 68.487328) (xy 166.2 68.48625) (xy 166.168307 68.490422) (xy 166.151864 68.4915) (xy 156.248136 68.4915) (xy 156.23169 68.490422) (xy 156.208188 68.487328) (xy 156.2 68.48625) (xy 156.191812 68.487328) (xy 156.160129 68.491499) (xy 156.16012 68.4915) (xy 156.160115 68.4915) (xy 156.04115 68.507162) (xy 155.893125 68.568476) (xy 155.893123 68.568477) (xy 155.893124 68.568477) (xy 155.797928 68.641523) (xy 155.797925 68.641526) (xy 155.766013 68.666013) (xy 155.760983 68.672568) (xy 155.746548 68.691379) (xy 155.735681 68.70377) (xy 154.003766 70.435685) (xy 153.991375 70.446552) (xy 153.966013 70.466013) (xy 153.941526 70.497925) (xy 153.941523 70.497928) (xy 153.939166 70.501) (xy 153.89099 70.563784) (xy 153.868476 70.593124) (xy 153.807162 70.741149) (xy 153.807162 70.74115) (xy 153.805414 70.754426) (xy 153.798555 70.806524) (xy 153.7915 70.860115) (xy 153.7915 70.86012) (xy 153.78625 70.9) (xy 153.787328 70.908188) (xy 153.790422 70.93169) (xy 153.7915 70.948136) (xy 153.7915 74.56971) (xy 153.771498 74.637831) (xy 153.759136 74.65402) (xy 153.685124 74.736219) (xy 153.66096 74.763056) (xy 153.62353 74.827886) (xy 153.57714 74.908237) (xy 153.565473 74.928444) (xy 153.506458 75.110072) (xy 153.505768 75.116633) (xy 153.505768 75.116635) (xy 153.494634 75.222572) (xy 153.486496 75.3) (xy 152.8835 75.3) (xy 152.8835 58.738174) (xy 152.885051 58.718462) (xy 152.886118 58.711725) (xy 152.88715 58.70521) (xy 152.885508 58.673867) (xy 152.883673 58.638867) (xy 152.8835 58.632272) (xy 152.8835 58.612411) (xy 152.881423 58.592648) (xy 152.880907 58.586084) (xy 152.877776 58.526346) (xy 152.877776 58.526345) (xy 152.87743 58.519746) (xy 152.875719 58.51336) (xy 152.873959 58.506791) (xy 152.870357 58.487356) (xy 152.869645 58.480586) (xy 152.869644 58.480582) (xy 152.868954 58.474015) (xy 152.848418 58.410809) (xy 152.846567 58.404562) (xy 152.829362 58.340355) (xy 152.826369 58.33448) (xy 152.826366 58.334473) (xy 152.823273 58.328403) (xy 152.815712 58.310148) (xy 152.813607 58.303672) (xy 152.813605 58.303668) (xy 152.811564 58.297386) (xy 152.808265 58.291671) (xy 152.80826 58.291661) (xy 152.778349 58.239856) (xy 152.775214 58.234084) (xy 152.745048 58.174878) (xy 152.736607 58.164454) (xy 152.725412 58.148166) (xy 152.722005 58.142265) (xy 152.722004 58.142264) (xy 152.718704 58.136548) (xy 152.714287 58.131642) (xy 152.714283 58.131637) (xy 152.674253 58.087179) (xy 152.669969 58.082164) (xy 152.662761 58.073264) (xy 152.657472 58.066732) (xy 152.643436 58.052696) (xy 152.638895 58.047911) (xy 152.598856 58.003443) (xy 152.598855 58.003442) (xy 152.594434 57.998532) (xy 152.589094 57.994652) (xy 152.589086 57.994645) (xy 152.583578 57.990644) (xy 152.568543 57.977803) (xy 150.622195 56.031454) (xy 150.609358 56.016426) (xy 150.601468 56.005566) (xy 150.578139 55.98456) (xy 150.552099 55.961114) (xy 150.547314 55.956573) (xy 150.533269 55.942528) (xy 150.530692 55.940441) (xy 150.517837 55.930031) (xy 150.512821 55.925747) (xy 150.468363 55.885717) (xy 150.468358 55.885713) (xy 150.463452 55.881296) (xy 150.451835 55.874589) (xy 150.435542 55.863391) (xy 150.430254 55.859109) (xy 150.425122 55.854953) (xy 150.36592 55.824787) (xy 150.36015 55.821654) (xy 150.308338 55.79174) (xy 150.308333 55.791738) (xy 150.302614 55.788436) (xy 150.296334 55.786395) (xy 150.296326 55.786392) (xy 150.289862 55.784292) (xy 150.2716 55.776728) (xy 150.265534 55.773637) (xy 150.265525 55.773634) (xy 150.259646 55.770638) (xy 150.248955 55.767773) (xy 150.195479 55.753444) (xy 150.189177 55.751578) (xy 150.125985 55.731046) (xy 150.112655 55.729645) (xy 150.093212 55.726042) (xy 150.080254 55.72257) (xy 150.073664 55.722225) (xy 150.07366 55.722224) (xy 150.02971 55.719921) (xy 150.013911 55.719093) (xy 150.007352 55.718577) (xy 149.987589 55.7165) (xy 149.967728 55.7165) (xy 149.961133 55.716327) (xy 149.901381 55.713195) (xy 149.901377 55.713195) (xy 149.89479 55.71285) (xy 149.881536 55.714949) (xy 149.861827 55.7165) (xy 131.150435 55.7165) (xy 131.130723 55.714949) (xy 131.123986 55.713882) (xy 131.123987 55.713882) (xy 131.117471 55.71285) (xy 131.110884 55.713195) (xy 131.11088 55.713195) (xy 131.051128 55.716327) (xy 131.044533 55.7165) (xy 131.024672 55.7165) (xy 131.004909 55.718577) (xy 130.99835 55.719093) (xy 130.982551 55.719921) (xy 130.938601 55.722224) (xy 130.938597 55.722225) (xy 130.932007 55.72257) (xy 130.919049 55.726042) (xy 130.899606 55.729645) (xy 130.886276 55.731046) (xy 130.823084 55.751578) (xy 130.816782 55.753444) (xy 130.763306 55.767773) (xy 130.752615 55.770638) (xy 130.746736 55.773634) (xy 130.746727 55.773637) (xy 130.740661 55.776728) (xy 130.722399 55.784292) (xy 130.715935 55.786392) (xy 130.715927 55.786395) (xy 130.709647 55.788436) (xy 130.703928 55.791738) (xy 130.703923 55.79174) (xy 130.652111 55.821654) (xy 130.646341 55.824787) (xy 130.587139 55.854953) (xy 130.582007 55.859109) (xy 130.576719 55.863391) (xy 130.560426 55.874589) (xy 130.548809 55.881296) (xy 130.543903 55.885713) (xy 130.543898 55.885717) (xy 130.49944 55.925747) (xy 130.494424 55.930031) (xy 130.481569 55.940441) (xy 130.478992 55.942528) (xy 130.464947 55.956573) (xy 130.460162 55.961114) (xy 130.434123 55.98456) (xy 130.410793 56.005566) (xy 130.402903 56.016426) (xy 130.390066 56.031454) (xy 128.352344 58.069176) (xy 128.289123 58.103396) (xy 128.163883 58.129674) (xy 128.158924 58.131632) (xy 128.158922 58.131633) (xy 128.095328 58.156748) (xy 127.947086 58.215292) (xy 127.847449 58.275753) (xy 127.752374 58.333445) (xy 127.752371 58.333447) (xy 127.747813 58.336213) (xy 127.743785 58.339708) (xy 127.743784 58.339709) (xy 127.577144 58.484313) (xy 127.571763 58.488982) (xy 127.55631 58.507828) (xy 127.427354 58.6651) (xy 127.42735 58.665106) (xy 127.42397 58.669228) (xy 127.39978 58.711725) (xy 127.399055 58.712998) (xy 127.347973 58.762304) (xy 127.278343 58.776166) (xy 127.212272 58.750183) (xy 127.185033 58.721033) (xy 127.183303 58.718462) (xy 127.105627 58.603086) (xy 127.097271 58.590674) (xy 127.097269 58.590672) (xy 127.094291 58.586248) (xy 126.933399 58.41759) (xy 126.746391 58.278452) (xy 126.74164 58.276036) (xy 126.741636 58.276034) (xy 126.618311 58.213333) (xy 126.538612 58.172812) (xy 126.316005 58.10369) (xy 126.255684 58.095695) (xy 126.090219 58.073764) (xy 126.090215 58.073764) (xy 126.084935 58.073064) (xy 126.079606 58.073264) (xy 126.079605 58.073264) (xy 125.984876 58.076821) (xy 125.852007 58.081809) (xy 125.623883 58.129674) (xy 125.618924 58.131632) (xy 125.618922 58.131633) (xy 125.555328 58.156748) (xy 125.407086 58.215292) (xy 125.307449 58.275753) (xy 125.212374 58.333445) (xy 125.212371 58.333447) (xy 125.207813 58.336213) (xy 125.203785 58.339708) (xy 125.203784 58.339709) (xy 125.037144 58.484313) (xy 125.031763 58.488982) (xy 125.01631 58.507828) (xy 124.887354 58.6651) (xy 124.88735 58.665106) (xy 124.88397 58.669228) (xy 124.85978 58.711725) (xy 124.859055 58.712998) (xy 124.807973 58.762304) (xy 124.738343 58.776166) (xy 124.672272 58.750183) (xy 124.645033 58.721033) (xy 124.643303 58.718462) (xy 124.565627 58.603086) (xy 124.557271 58.590674) (xy 124.557269 58.590672) (xy 124.554291 58.586248) (xy 124.393399 58.41759) (xy 124.206391 58.278452) (xy 124.20164 58.276036) (xy 124.201636 58.276034) (xy 124.078311 58.213333) (xy 123.998612 58.172812) (xy 123.776005 58.10369) (xy 123.715684 58.095695) (xy 123.550219 58.073764) (xy 123.550215 58.073764) (xy 123.544935 58.073064) (xy 123.539606 58.073264) (xy 123.539605 58.073264) (xy 123.444876 58.076821) (xy 123.312007 58.081809) (xy 123.083883 58.129674) (xy 123.078924 58.131632) (xy 123.078922 58.131633) (xy 123.015328 58.156748) (xy 122.867086 58.215292) (xy 122.767449 58.275753) (xy 122.672374 58.333445) (xy 122.672371 58.333447) (xy 122.667813 58.336213) (xy 122.663785 58.339708) (xy 122.663784 58.339709) (xy 122.497144 58.484313) (xy 122.491763 58.488982) (xy 122.47631 58.507828) (xy 122.347354 58.6651) (xy 122.34735 58.665106) (xy 122.34397 58.669228) (xy 122.22866 58.8718) (xy 122.226839 58.876816) (xy 122.226837 58.876821) (xy 122.162796 59.05325) (xy 122.149129 59.090903) (xy 122.14818 59.096152) (xy 122.148179 59.096155) (xy 122.10839 59.316191) (xy 122.108389 59.316198) (xy 122.107652 59.320275) (xy 122.1065 59.344702) (xy 122.1065 59.808527) (xy 122.121241 59.982257) (xy 122.122581 59.987421) (xy 122.122582 59.987425) (xy 122.176636 60.195681) (xy 122.1798 60.207873) (xy 122.181992 60.212739) (xy 122.266167 60.3996) (xy 122.275535 60.420397) (xy 122.405709 60.613752) (xy 122.409388 60.617609) (xy 122.40939 60.617611) (xy 122.451181 60.661419) (xy 122.566601 60.78241) (xy 122.753609 60.921548) (xy 122.75836 60.923964) (xy 122.758364 60.923966) (xy 122.811216 60.950837) (xy 122.961388 61.027188) (xy 123.183995 61.09631) (xy 123.189284 61.097011) (xy 123.409781 61.126236) (xy 123.409785 61.126236) (xy 123.415065 61.126936) (xy 123.420394 61.126736) (xy 123.420395 61.126736) (xy 123.515124 61.123179) (xy 123.647993 61.118191) (xy 123.876117 61.070326) (xy 123.881076 61.068368) (xy 123.881078 61.068367) (xy 124.04081 61.005285) (xy 124.092914 60.984708) (xy 124.241026 60.894832) (xy 124.287626 60.866555) (xy 124.287629 60.866553) (xy 124.292187 60.863787) (xy 124.377244 60.789978) (xy 124.464204 60.714518) (xy 124.464206 60.714516) (xy 124.468237 60.711018) (xy 124.541415 60.621771) (xy 124.612646 60.5349) (xy 124.61265 60.534894) (xy 124.61603 60.530772) (xy 124.640945 60.487002) (xy 124.692027 60.437696) (xy 124.761657 60.423834) (xy 124.827728 60.449817) (xy 124.854965 60.478965) (xy 124.874604 60.508135) (xy 124.942729 60.609325) (xy 124.945709 60.613752) (xy 124.949388 60.617609) (xy 124.94939 60.617611) (xy 124.991181 60.661419) (xy 125.106601 60.78241) (xy 125.215776 60.863638) (xy 125.258488 60.920347) (xy 125.263761 60.991147) (xy 125.237646 61.045042) (xy 125.138217 61.16523) (xy 125.135288 61.170647) (xy 125.135286 61.17065) (xy 125.042416 61.34241) (xy 125.042414 61.342415) (xy 125.039486 61.34783) (xy 124.978102 61.546129) (xy 124.977458 61.552254) (xy 124.977458 61.552255) (xy 124.957071 61.746233) (xy 124.956404 61.752575) (xy 124.9709 61.91185) (xy 124.971059 61.913601) (xy 124.957314 61.983254) (xy 124.908093 62.034419) (xy 124.845578 62.051021) (xy 123.688623 62.051021) (xy 123.672177 62.049943) (xy 123.648667 62.046848) (xy 123.640479 62.04577) (xy 123.565182 62.055683) (xy 123.519182 62.061739) (xy 123.481628 62.066683) (xy 123.333603 62.127997) (xy 123.293929 62.15844) (xy 123.238416 62.201036) (xy 123.2384 62.20105) (xy 123.213045 62.220505) (xy 123.213042 62.220508) (xy 123.206492 62.225534) (xy 123.201462 62.232089) (xy 123.187027 62.2509) (xy 123.17616 62.263291) (xy 123.003766 62.435685) (xy 122.991375 62.446552) (xy 122.966013 62.466013) (xy 122.941526 62.497925) (xy 122.941523 62.497928) (xy 122.868476 62.593124) (xy 122.865319 62.600746) (xy 122.865316 62.600751) (xy 122.840547 62.660549) (xy 122.7982 62.714266) (xy 122.788747 62.721134) (xy 122.784326 62.726044) (xy 122.784325 62.726045) (xy 122.687452 62.833634) (xy 122.66096 62.863056) (xy 122.565473 63.028444) (xy 122.506458 63.210072) (xy 122.505768 63.216633) (xy 122.505768 63.216635) (xy 122.49086 63.358477) (xy 122.486496 63.4) (xy 122.487186 63.406565) (xy 122.500967 63.53768) (xy 122.506458 63.589928) (xy 122.565473 63.771556) (xy 122.66096 63.936944) (xy 122.665378 63.941851) (xy 122.665379 63.941852) (xy 122.784325 64.073955) (xy 122.788747 64.078866) (xy 122.943248 64.191118) (xy 122.949276 64.193802) (xy 122.949278 64.193803) (xy 123.065179 64.245405) (xy 123.117712 64.268794) (xy 123.211113 64.288647) (xy 123.298056 64.307128) (xy 123.298061 64.307128) (xy 123.304513 64.3085) (xy 123.495487 64.3085) (xy 123.501939 64.307128) (xy 123.501944 64.307128) (xy 123.588887 64.288647) (xy 123.682288 64.268794) (xy 123.734821 64.245405) (xy 123.850722 64.193803) (xy 123.850724 64.193802) (xy 123.856752 64.191118) (xy 124.011253 64.078866) (xy 124.015675 64.073955) (xy 124.134621 63.941852) (xy 124.134622 63.941851) (xy 124.13904 63.936944) (xy 124.234527 63.771556) (xy 124.293542 63.589928) (xy 124.299034 63.53768) (xy 124.312814 63.406565) (xy 124.313504 63.4) (xy 124.312859 63.393866) (xy 124.332816 63.3259) (xy 124.386472 63.279407) (xy 124.438814 63.268021) (xy 127.540011 63.268021) (xy 127.608132 63.288023) (xy 127.654625 63.341679) (xy 127.666011 63.394021) (xy 127.666011 67.045536) (xy 127.646009 67.113657) (xy 127.629106 67.134631) (xy 125.370621 69.393117) (xy 125.360478 69.402219) (xy 125.330975 69.42594) (xy 125.327008 69.430668) (xy 125.298709 69.464393) (xy 125.295528 69.468041) (xy 125.293885 69.469853) (xy 125.291691 69.472047) (xy 125.264358 69.505321) (xy 125.263696 69.506119) (xy 125.203846 69.577446) (xy 125.201278 69.582116) (xy 125.197897 69.586233) (xy 125.174647 69.629595) (xy 125.154023 69.668058) (xy 125.153394 69.669217) (xy 125.111538 69.745353) (xy 125.111535 69.745361) (xy 125.108567 69.750759) (xy 125.106955 69.755841) (xy 125.104438 69.760535) (xy 125.077238 69.849503) (xy 125.076918 69.850531) (xy 125.048765 69.939278) (xy 125.048171 69.944574) (xy 125.046613 69.94967) (xy 125.045991 69.955794) (xy 125.045511 69.958173) (xy 125.012435 70.020994) (xy 124.950646 70.05596) (xy 124.879762 70.05197) (xy 124.832904 70.022355) (xy 123.414315 68.603766) (xy 123.403448 68.591375) (xy 123.389013 68.572563) (xy 123.383987 68.566013) (xy 123.352075 68.541526) (xy 123.352072 68.541523) (xy 123.352064 68.541517) (xy 123.263429 68.473504) (xy 123.263427 68.473503) (xy 123.256876 68.468476) (xy 123.108851 68.407162) (xy 123.100664 68.406084) (xy 123.100663 68.406084) (xy 123.081543 68.403567) (xy 123.047005 68.39902) (xy 122.982078 68.370298) (xy 122.969815 68.358409) (xy 122.968713 68.357185) (xy 122.936253 68.321134) (xy 122.817377 68.234765) (xy 122.787094 68.212763) (xy 122.787093 68.212762) (xy 122.781752 68.208882) (xy 122.775724 68.206198) (xy 122.775722 68.206197) (xy 122.613319 68.133891) (xy 122.613318 68.133891) (xy 122.607288 68.131206) (xy 122.513888 68.111353) (xy 122.426944 68.092872) (xy 122.426939 68.092872) (xy 122.420487 68.0915) (xy 122.229513 68.0915) (xy 122.223061 68.092872) (xy 122.223056 68.092872) (xy 122.136112 68.111353) (xy 122.042712 68.131206) (xy 122.036682 68.133891) (xy 122.036681 68.133891) (xy 121.874278 68.206197) (xy 121.874276 68.206198) (xy 121.868248 68.208882) (xy 121.862907 68.212762) (xy 121.862906 68.212763) (xy 121.780939 68.272316) (xy 121.713747 68.321134) (xy 121.709336 68.326033) (xy 121.709327 68.326041) (xy 121.666339 68.373785) (xy 121.615283 68.40507) (xy 121.61615 68.407162) (xy 121.468125 68.468476) (xy 121.468123 68.468477) (xy 121.468124 68.468477) (xy 121.372928 68.541523) (xy 121.372925 68.541526) (xy 121.341013 68.566013) (xy 121.335983 68.572568) (xy 121.321548 68.591379) (xy 121.310681 68.60377) (xy 116.853766 73.060685) (xy 116.841375 73.071552) (xy 116.816013 73.091013) (xy 116.791526 73.122925) (xy 116.791523 73.122928) (xy 116.782468 73.134729) (xy 116.740119 73.189919) (xy 116.718476 73.218124) (xy 116.667517 73.34115) (xy 116.657162 73.36615) (xy 116.6415 73.485115) (xy 116.6415 73.48512) (xy 116.63625 73.525) (xy 116.637328 73.533188) (xy 116.640422 73.55669) (xy 116.6415 73.573136) (xy 116.6415 74.74471) (xy 116.621498 74.812831) (xy 116.609136 74.82902) (xy 116.519464 74.928611) (xy 116.51096 74.938056) (xy 116.472003 75.005531) (xy 116.426103 75.085033) (xy 116.415473 75.103444) (xy 116.356458 75.285072) (xy 116.355768 75.291633) (xy 116.355768 75.291635) (xy 116.346194 75.382729) (xy 116.336496 75.475) (xy 116.337186 75.481565) (xy 116.355139 75.652374) (xy 116.356458 75.664928) (xy 116.415473 75.846556) (xy 116.51096 76.011944) (xy 116.515378 76.016851) (xy 116.515379 76.016852) (xy 116.627174 76.141013) (xy 116.638747 76.153866) (xy 116.70805 76.204218) (xy 116.78699 76.261571) (xy 116.793248 76.266118) (xy 116.799276 76.268802) (xy 116.799278 76.268803) (xy 116.942179 76.332426) (xy 116.967712 76.343794) (xy 117.061112 76.363647) (xy 117.148056 76.382128) (xy 117.148061 76.382128) (xy 117.154513 76.3835) (xy 117.345487 76.3835) (xy 117.351939 76.382128) (xy 117.351944 76.382128) (xy 117.438888 76.363647) (xy 117.532288 76.343794) (xy 117.557821 76.332426) (xy 117.700722 76.268803) (xy 117.700724 76.268802) (xy 117.706752 76.266118) (xy 117.713011 76.261571) (xy 117.79195 76.204218) (xy 117.861253 76.153866) (xy 117.872826 76.141013) (xy 117.984621 76.016852) (xy 117.984622 76.016851) (xy 117.98904 76.011944) (xy 118.084527 75.846556) (xy 118.143542 75.664928) (xy 118.144862 75.652374) (xy 118.162814 75.481565) (xy 118.163504 75.475) (xy 118.153806 75.382729) (xy 118.144232 75.291635) (xy 118.144232 75.291633) (xy 118.143542 75.285072) (xy 118.084527 75.103444) (xy 118.073898 75.085033) (xy 118.027997 75.005531) (xy 117.98904 74.938056) (xy 117.980536 74.928611) (xy 117.890864 74.82902) (xy 117.860146 74.765013) (xy 117.8585 74.74471) (xy 117.8585 73.829239) (xy 117.878502 73.761118) (xy 117.895405 73.740144) (xy 121.790534 69.845015) (xy 121.852846 69.810989) (xy 121.923661 69.816054) (xy 121.930877 69.819003) (xy 122.036677 69.866108) (xy 122.036685 69.866111) (xy 122.042712 69.868794) (xy 122.125772 69.886449) (xy 122.223056 69.907128) (xy 122.223061 69.907128) (xy 122.229513 69.9085) (xy 122.420487 69.9085) (xy 122.426939 69.907128) (xy 122.426944 69.907128) (xy 122.524228 69.886449) (xy 122.607288 69.868794) (xy 122.613315 69.866111) (xy 122.613323 69.866108) (xy 122.771018 69.795898) (xy 122.841385 69.786464) (xy 122.905682 69.816571) (xy 122.911361 69.82191) (xy 123.854595 70.765144) (xy 123.888621 70.827456) (xy 123.8915 70.854239) (xy 123.8915 74.74471) (xy 123.871498 74.812831) (xy 123.859136 74.82902) (xy 123.769464 74.928611) (xy 123.76096 74.938056) (xy 123.722003 75.005531) (xy 123.676103 75.085033) (xy 123.665473 75.103444) (xy 123.606458 75.285072) (xy 123.605768 75.291633) (xy 123.605768 75.291635) (xy 123.596194 75.382729) (xy 123.586496 75.475) (xy 123.587186 75.481565) (xy 123.605139 75.652374) (xy 123.606458 75.664928) (xy 123.665473 75.846556) (xy 123.76096 76.011944) (xy 123.765378 76.016851) (xy 123.765379 76.016852) (xy 123.877174 76.141013) (xy 123.888747 76.153866) (xy 123.95805 76.204218) (xy 124.03699 76.261571) (xy 124.043248 76.266118) (xy 124.049276 76.268802) (xy 124.049278 76.268803) (xy 124.192179 76.332426) (xy 124.217712 76.343794) (xy 124.311112 76.363647) (xy 124.398056 76.382128) (xy 124.398061 76.382128) (xy 124.404513 76.3835) (xy 124.595487 76.3835) (xy 124.601939 76.382128) (xy 124.601944 76.382128) (xy 124.688888 76.363647) (xy 124.782288 76.343794) (xy 124.854252 76.311754) (xy 124.924618 76.30232) (xy 124.988915 76.332426) (xy 125.026729 76.392515) (xy 125.0315 76.426861) (xy 125.0315 116.003157) (xy 125.030763 116.016764) (xy 125.027826 116.043803) (xy 125.026676 116.054388) (xy 125.028973 116.080638) (xy 125.03105 116.104388) (xy 125.031379 116.109214) (xy 125.0315 116.111686) (xy 125.0315 116.114769) (xy 125.031801 116.117837) (xy 125.03569 116.157506) (xy 125.035812 116.158819) (xy 125.039685 116.203084) (xy 125.043913 116.251413) (xy 125.0454 116.256532) (xy 125.04592 116.261833) (xy 125.072791 116.350834) (xy 125.073126 116.351967) (xy 125.091908 116.416612) (xy 125.099091 116.441336) (xy 125.101544 116.446068) (xy 125.103084 116.451169) (xy 125.105978 116.456612) (xy 125.146731 116.53326) (xy 125.147343 116.534426) (xy 125.176448 116.590573) (xy 125.190108 116.616926) (xy 125.193431 116.621089) (xy 125.195934 116.625796) (xy 125.254755 116.697918) (xy 125.255446 116.698774) (xy 125.286738 116.737973) (xy 125.289242 116.740477) (xy 125.289884 116.741195) (xy 125.293585 116.745528) (xy 125.320935 116.779062) (xy 125.325682 116.782989) (xy 125.325684 116.782991) (xy 125.356262 116.808287) (xy 125.365042 116.816277) (xy 126.852087 118.303322) (xy 126.886113 118.365634) (xy 126.881048 118.436449) (xy 126.838501 118.493285) (xy 126.802139 118.512181) (xy 126.706756 118.543357) (xy 126.679868 118.557354) (xy 126.513867 118.643769) (xy 126.508607 118.646507) (xy 126.504474 118.64961) (xy 126.504471 118.649612) (xy 126.3341 118.77753) (xy 126.329965 118.780635) (xy 126.3254 118.785412) (xy 126.184208 118.933161) (xy 126.175629 118.942138) (xy 126.068201 119.099621) (xy 126.013293 119.144621) (xy 125.942768 119.152792) (xy 125.879021 119.121538) (xy 125.858324 119.097054) (xy 125.777822 118.972617) (xy 125.77782 118.972614) (xy 125.775014 118.968277) (xy 125.62467 118.803051) (xy 125.620619 118.799852) (xy 125.620615 118.799848) (xy 125.453414 118.6678) (xy 125.45341 118.667798) (xy 125.449359 118.664598) (xy 125.423399 118.650267) (xy 125.383665 118.628333) (xy 125.253789 118.556638) (xy 125.24892 118.554914) (xy 125.248916 118.554912) (xy 125.048087 118.483795) (xy 125.048083 118.483794) (xy 125.043212 118.482069) (xy 125.038119 118.481162) (xy 125.038116 118.481161) (xy 124.828373 118.4438) (xy 124.828367 118.443799) (xy 124.823284 118.442894) (xy 124.749452 118.441992) (xy 124.605081 118.440228) (xy 124.605079 118.440228) (xy 124.599911 118.440165) (xy 124.379091 118.473955) (xy 124.166756 118.543357) (xy 124.139868 118.557354) (xy 123.973867 118.643769) (xy 123.968607 118.646507) (xy 123.964474 118.64961) (xy 123.964471 118.649612) (xy 123.7941 118.77753) (xy 123.789965 118.780635) (xy 123.7854 118.785412) (xy 123.644208 118.933161) (xy 123.635629 118.942138) (xy 123.63272 118.946403) (xy 123.632714 118.946411) (xy 123.569496 119.039085) (xy 123.509743 119.12668) (xy 123.467535 119.217611) (xy 123.450889 119.253471) (xy 123.425696 119.289516) (xy 121.760617 120.954595) (xy 121.698305 120.988621) (xy 121.671522 120.9915) (xy 119.721876 120.9915) (xy 119.653755 120.971498) (xy 119.607262 120.917842) (xy 119.597158 120.847568) (xy 119.603894 120.82127) (xy 119.626745 120.760316) (xy 119.6335 120.698134) (xy 119.6335 118.901866) (xy 119.626745 118.839684) (xy 119.575615 118.703295) (xy 119.488261 118.586739) (xy 119.371705 118.499385) (xy 119.235316 118.448255) (xy 119.173134 118.4415) (xy 118.394924 118.4415) (xy 118.326803 118.421498) (xy 118.305829 118.404595) (xy 115.585405 115.684171) (xy 115.551379 115.621859) (xy 115.5485 115.595076) (xy 115.5485 106.30625) (xy 116.280246 106.30625) (xy 116.280936 106.312815) (xy 116.293344 106.430866) (xy 116.300208 106.496178) (xy 116.359223 106.677806) (xy 116.45471 106.843194) (xy 116.459128 106.848101) (xy 116.459129 106.848102) (xy 116.578075 106.980205) (xy 116.582497 106.985116) (xy 116.663977 107.044315) (xy 116.698409 107.069331) (xy 116.736998 107.097368) (xy 116.743026 107.100052) (xy 116.743028 107.100053) (xy 116.874303 107.1585) (xy 116.911462 107.175044) (xy 117.004862 107.194897) (xy 117.091806 107.213378) (xy 117.091811 107.213378) (xy 117.098263 107.21475) (xy 117.289237 107.21475) (xy 117.295689 107.213378) (xy 117.295694 107.213378) (xy 117.382638 107.194897) (xy 117.476038 107.175044) (xy 117.513197 107.1585) (xy 117.644472 107.100053) (xy 117.644474 107.100052) (xy 117.650502 107.097368) (xy 117.689092 107.069331) (xy 117.723523 107.044315) (xy 117.805003 106.985116) (xy 117.881472 106.900188) (xy 117.941915 106.86295) (xy 117.975106 106.8585) (xy 122.01929 106.8585) (xy 122.087411 106.878502) (xy 122.112926 106.900189) (xy 122.138747 106.928866) (xy 122.150427 106.937352) (xy 122.255906 107.013987) (xy 122.293248 107.041118) (xy 122.299276 107.043802) (xy 122.299278 107.043803) (xy 122.431171 107.102525) (xy 122.467712 107.118794) (xy 122.54268 107.134729) (xy 122.648056 107.157128) (xy 122.648061 107.157128) (xy 122.654513 107.1585) (xy 122.845487 107.1585) (xy 122.851939 107.157128) (xy 122.851944 107.157128) (xy 122.95732 107.134729) (xy 123.032288 107.118794) (xy 123.068829 107.102525) (xy 123.200722 107.043803) (xy 123.200724 107.043802) (xy 123.206752 107.041118) (xy 123.244095 107.013987) (xy 123.30459 106.970034) (xy 123.361253 106.928866) (xy 123.372798 106.916044) (xy 123.484621 106.791852) (xy 123.484622 106.791851) (xy 123.48904 106.786944) (xy 123.584527 106.621556) (xy 123.643542 106.439928) (xy 123.644495 106.430866) (xy 123.662814 106.256565) (xy 123.663504 106.25) (xy 123.655978 106.178396) (xy 123.644232 106.066635) (xy 123.644232 106.066633) (xy 123.643542 106.060072) (xy 123.584527 105.878444) (xy 123.579418 105.869594) (xy 123.528367 105.781173) (xy 123.48904 105.713056) (xy 123.438672 105.657116) (xy 123.365675 105.576045) (xy 123.365674 105.576044) (xy 123.361253 105.571134) (xy 123.262157 105.499136) (xy 123.212094 105.462763) (xy 123.212093 105.462762) (xy 123.206752 105.458882) (xy 123.200724 105.456198) (xy 123.200722 105.456197) (xy 123.038319 105.383891) (xy 123.038318 105.383891) (xy 123.032288 105.381206) (xy 122.938888 105.361353) (xy 122.851944 105.342872) (xy 122.851939 105.342872) (xy 122.845487 105.3415) (xy 122.654513 105.3415) (xy 122.648061 105.342872) (xy 122.648056 105.342872) (xy 122.561112 105.361353) (xy 122.467712 105.381206) (xy 122.461682 105.383891) (xy 122.461681 105.383891) (xy 122.299278 105.456197) (xy 122.299276 105.456198) (xy 122.293248 105.458882) (xy 122.287907 105.462762) (xy 122.287906 105.462763) (xy 122.219522 105.512447) (xy 122.138747 105.571134) (xy 122.134334 105.576036) (xy 122.134332 105.576037) (xy 122.112926 105.599811) (xy 122.05248 105.63705) (xy 122.01929 105.6415) (xy 117.865372 105.6415) (xy 117.797251 105.621498) (xy 117.791311 105.617436) (xy 117.655844 105.519013) (xy 117.655843 105.519012) (xy 117.650502 105.515132) (xy 117.644474 105.512448) (xy 117.644472 105.512447) (xy 117.482069 105.440141) (xy 117.482068 105.440141) (xy 117.476038 105.437456) (xy 117.382638 105.417603) (xy 117.295694 105.399122) (xy 117.295689 105.399122) (xy 117.289237 105.39775) (xy 117.098263 105.39775) (xy 117.091811 105.399122) (xy 117.091806 105.399122) (xy 117.004862 105.417603) (xy 116.911462 105.437456) (xy 116.905432 105.440141) (xy 116.905431 105.440141) (xy 116.743028 105.512447) (xy 116.743026 105.512448) (xy 116.736998 105.515132) (xy 116.582497 105.627384) (xy 116.45471 105.769306) (xy 116.411208 105.844653) (xy 116.373092 105.910673) (xy 116.359223 105.934694) (xy 116.300208 106.116322) (xy 116.299518 106.122883) (xy 116.299518 106.122885) (xy 116.287116 106.240886) (xy 116.280246 106.30625) (xy 115.5485 106.30625) (xy 115.5485 94.069926) (xy 115.568502 94.001805) (xy 115.585404 93.980831) (xy 116.169383 93.396851) (xy 116.179527 93.387749) (xy 116.204218 93.367897) (xy 116.209025 93.364032) (xy 116.241292 93.325578) (xy 116.244472 93.321931) (xy 116.246115 93.320119) (xy 116.248309 93.317925) (xy 116.275642 93.284651) (xy 116.276348 93.2838) (xy 116.285797 93.27254) (xy 116.336154 93.212526) (xy 116.338722 93.207856) (xy 116.342103 93.203739) (xy 116.378047 93.136703) (xy 116.385977 93.121914) (xy 116.386606 93.120755) (xy 116.428462 93.044619) (xy 116.428465 93.044611) (xy 116.431433 93.039213) (xy 116.433045 93.034131) (xy 116.435562 93.029437) (xy 116.462762 92.940469) (xy 116.463108 92.939358) (xy 116.46615 92.929771) (xy 116.491235 92.850694) (xy 116.491829 92.845398) (xy 116.493387 92.840302) (xy 116.50279 92.747743) (xy 116.502911 92.746607) (xy 116.5085 92.696773) (xy 116.5085 92.693246) (xy 116.508555 92.692261) (xy 116.509002 92.686581) (xy 116.513374 92.643538) (xy 116.509059 92.597891) (xy 116.5085 92.586033) (xy 116.5085 91.021843) (xy 116.509237 91.008236) (xy 116.512659 90.976738) (xy 116.512659 90.976733) (xy 116.513324 90.970612) (xy 116.510113 90.933907) (xy 116.50895 90.920612) (xy 116.508621 90.915786) (xy 116.5085 90.913314) (xy 116.5085 90.910231) (xy 116.506663 90.8915) (xy 116.50431 90.867494) (xy 116.504188 90.866181) (xy 116.497685 90.791852) (xy 116.496087 90.773587) (xy 116.4946 90.768468) (xy 116.49408 90.763167) (xy 116.467209 90.674166) (xy 116.466874 90.673033) (xy 116.44263 90.589586) (xy 116.442628 90.589582) (xy 116.440909 90.583664) (xy 116.438456 90.578932) (xy 116.436916 90.573831) (xy 116.393269 90.49174) (xy 116.392657 90.490574) (xy 116.352729 90.413547) (xy 116.349892 90.408074) (xy 116.346569 90.403911) (xy 116.344066 90.399204) (xy 116.285245 90.327082) (xy 116.284554 90.326226) (xy 116.253262 90.287027) (xy 116.250758 90.284523) (xy 116.250116 90.283805) (xy 116.246415 90.279472) (xy 116.219065 90.245938) (xy 116.183733 90.216709) (xy 116.174963 90.208728) (xy 115.904392 89.938157) (xy 115.585405 89.619171) (xy 115.55138 89.556858) (xy 115.5485 89.530075) (xy 115.5485 70.429925) (xy 115.568502 70.361804) (xy 115.585405 70.34083) (xy 117.84389 68.082344) (xy 117.854033 68.073242) (xy 117.859016 68.069236) (xy 117.883536 68.049521) (xy 117.915803 68.011067) (xy 117.918983 68.00742) (xy 117.920626 68.005608) (xy 117.92282 68.003414) (xy 117.950153 67.97014) (xy 117.950859 67.969289) (xy 117.956031 67.963126) (xy 118.010665 67.898015) (xy 118.013233 67.893345) (xy 118.016614 67.889228) (xy 118.055835 67.816081) (xy 118.060488 67.807403) (xy 118.061117 67.806244) (xy 118.102973 67.730108) (xy 118.102976 67.7301) (xy 118.105944 67.724702) (xy 118.107556 67.71962) (xy 118.110073 67.714926) (xy 118.137273 67.625958) (xy 118.137619 67.624847) (xy 118.138239 67.622895) (xy 118.165746 67.536183) (xy 118.16634 67.530887) (xy 118.167898 67.525791) (xy 118.177301 67.433232) (xy 118.177422 67.432096) (xy 118.183011 67.382262) (xy 118.183011 67.378735) (xy 118.183066 67.37775) (xy 118.183513 67.37207) (xy 118.187885 67.329027) (xy 118.18357 67.28338) (xy 118.183011 67.271522) (xy 118.183011 61.088083) (xy 118.203013 61.019962) (xy 118.256669 60.973469) (xy 118.326943 60.963365) (xy 118.384576 60.987257) (xy 118.481351 61.059786) (xy 118.496946 61.068324) (xy 118.617394 61.113478) (xy 118.632649 61.117105) (xy 118.683514 61.122631) (xy 118.690328 61.123) (xy 119.327885 61.123) (xy 119.343124 61.118525) (xy 119.344329 61.117135) (xy 119.346 61.109452) (xy 119.346 61.104884) (xy 119.854 61.104884) (xy 119.858475 61.120123) (xy 119.859865 61.121328) (xy 119.867548 61.122999) (xy 120.509669 61.122999) (xy 120.51649 61.122629) (xy 120.567352 61.117105) (xy 120.582604 61.113479) (xy 120.703054 61.068324) (xy 120.718649 61.059786) (xy 120.820724 60.983285) (xy 120.833285 60.970724) (xy 120.909786 60.868649) (xy 120.918324 60.853054) (xy 120.963478 60.732606) (xy 120.967105 60.717351) (xy 120.972631 60.666486) (xy 120.973 60.659672) (xy 120.973 59.872115) (xy 120.968525 59.856876) (xy 120.967135 59.855671) (xy 120.959452 59.854) (xy 119.872115 59.854) (xy 119.856876 59.858475) (xy 119.855671 59.859865) (xy 119.854 59.867548) (xy 119.854 61.104884) (xy 119.346 61.104884) (xy 119.346 59.327885) (xy 119.854 59.327885) (xy 119.858475 59.343124) (xy 119.859865 59.344329) (xy 119.867548 59.346) (xy 120.954884 59.346) (xy 120.970123 59.341525) (xy 120.971328 59.340135) (xy 120.972999 59.332452) (xy 120.972999 58.540331) (xy 120.972629 58.53351) (xy 120.967105 58.482648) (xy 120.963479 58.467396) (xy 120.918324 58.346946) (xy 120.909786 58.331351) (xy 120.833285 58.229276) (xy 120.820724 58.216715) (xy 120.718649 58.140214) (xy 120.703054 58.131676) (xy 120.582606 58.086522) (xy 120.567351 58.082895) (xy 120.516486 58.077369) (xy 120.509672 58.077) (xy 119.872115 58.077) (xy 119.856876 58.081475) (xy 119.855671 58.082865) (xy 119.854 58.090548) (xy 119.854 59.327885) (xy 119.346 59.327885) (xy 119.346 58.095116) (xy 119.341525 58.079877) (xy 119.340135 58.078672) (xy 119.332452 58.077001) (xy 118.690331 58.077001) (xy 118.68351 58.077371) (xy 118.632648 58.082895) (xy 118.617396 58.086521) (xy 118.496946 58.131676) (xy 118.481351 58.140214) (xy 118.379276 58.216715) (xy 118.366715 58.229276) (xy 118.290214 58.331351) (xy 118.281676 58.346946) (xy 118.246202 58.441572) (xy 118.20356 58.498336) (xy 118.136999 58.523036) (xy 118.06765 58.507828) (xy 118.03705 58.484313) (xy 117.977084 58.421452) (xy 117.977079 58.421447) (xy 117.973399 58.41759) (xy 117.786391 58.278452) (xy 117.78164 58.276036) (xy 117.781636 58.276034) (xy 117.658311 58.213333) (xy 117.578612 58.172812) (xy 117.356005 58.10369) (xy 117.295684 58.095695) (xy 117.130219 58.073764) (xy 117.130215 58.073764) (xy 117.124935 58.073064) (xy 117.119606 58.073264) (xy 117.119605 58.073264) (xy 117.024876 58.076821) (xy 116.892007 58.081809) (xy 116.663883 58.129674) (xy 116.658924 58.131632) (xy 116.658922 58.131633) (xy 116.595328 58.156748) (xy 116.447086 58.215292) (xy 116.347449 58.275753) (xy 116.252374 58.333445) (xy 116.252371 58.333447) (xy 116.247813 58.336213) (xy 116.243785 58.339708) (xy 116.243784 58.339709) (xy 116.077144 58.484313) (xy 116.071763 58.488982) (xy 116.05631 58.507828) (xy 115.927354 58.6651) (xy 115.92735 58.665106) (xy 115.92397 58.669228) (xy 115.89978 58.711725) (xy 115.899055 58.712998) (xy 115.847973 58.762304) (xy 115.778343 58.776166) (xy 115.712272 58.750183) (xy 115.685033 58.721033) (xy 115.683303 58.718462) (xy 115.605627 58.603086) (xy 115.597271 58.590674) (xy 115.597269 58.590672) (xy 115.594291 58.586248) (xy 115.433399 58.41759) (xy 115.246391 58.278452) (xy 115.24164 58.276036) (xy 115.241636 58.276034) (xy 115.118311 58.213333) (xy 115.038612 58.172812) (xy 114.816005 58.10369) (xy 114.755684 58.095695) (xy 114.590219 58.073764) (xy 114.590215 58.073764) (xy 114.584935 58.073064) (xy 114.579606 58.073264) (xy 114.579605 58.073264) (xy 114.484876 58.076821) (xy 114.352007 58.081809) (xy 114.123883 58.129674) (xy 114.118924 58.131632) (xy 114.118922 58.131633) (xy 114.055328 58.156748) (xy 113.907086 58.215292) (xy 113.807449 58.275753) (xy 113.712374 58.333445) (xy 113.712371 58.333447) (xy 113.707813 58.336213) (xy 113.703785 58.339708) (xy 113.703784 58.339709) (xy 113.537144 58.484313) (xy 113.531763 58.488982) (xy 113.51631 58.507828) (xy 113.387354 58.6651) (xy 113.38735 58.665106) (xy 113.38397 58.669228) (xy 113.35978 58.711725) (xy 113.359055 58.712998) (xy 113.307973 58.762304) (xy 113.238343 58.776166) (xy 113.172272 58.750183) (xy 113.145033 58.721033) (xy 113.143303 58.718462) (xy 113.065627 58.603086) (xy 113.057271 58.590674) (xy 113.057269 58.590672) (xy 113.054291 58.586248) (xy 112.893399 58.41759) (xy 112.706391 58.278452) (xy 112.70164 58.276036) (xy 112.701636 58.276034) (xy 112.578311 58.213333) (xy 112.498612 58.172812) (xy 112.276005 58.10369) (xy 112.215684 58.095695) (xy 112.050219 58.073764) (xy 112.050215 58.073764) (xy 112.044935 58.073064) (xy 112.039606 58.073264) (xy 112.039605 58.073264) (xy 111.944876 58.076821) (xy 111.812007 58.081809) (xy 111.583883 58.129674) (xy 111.578924 58.131632) (xy 111.578922 58.131633) (xy 111.515328 58.156748) (xy 111.367086 58.215292) (xy 111.267449 58.275753) (xy 111.172374 58.333445) (xy 111.172371 58.333447) (xy 111.167813 58.336213) (xy 111.163785 58.339708) (xy 111.163784 58.339709) (xy 110.997144 58.484313) (xy 110.991763 58.488982) (xy 110.97631 58.507828) (xy 110.847354 58.6651) (xy 110.84735 58.665106) (xy 110.84397 58.669228) (xy 110.72866 58.8718) (xy 110.726839 58.876816) (xy 110.726837 58.876821) (xy 110.662796 59.05325) (xy 110.649129 59.090903) (xy 110.64818 59.096152) (xy 110.648179 59.096155) (xy 110.60839 59.316191) (xy 110.608389 59.316198) (xy 110.607652 59.320275) (xy 110.6065 59.344702) (xy 110.6065 59.808527) (xy 110.621241 59.982257) (xy 110.622581 59.987421) (xy 110.622582 59.987425) (xy 110.676636 60.195681) (xy 110.6798 60.207873) (xy 110.681992 60.212739) (xy 110.766167 60.3996) (xy 110.775535 60.420397) (xy 110.905709 60.613752) (xy 110.909388 60.617609) (xy 110.90939 60.617611) (xy 110.951181 60.661419) (xy 111.066601 60.78241) (xy 111.253609 60.921548) (xy 111.25836 60.923964) (xy 111.258364 60.923966) (xy 111.311216 60.950837) (xy 111.461388 61.027188) (xy 111.683995 61.09631) (xy 111.689284 61.097011) (xy 111.909781 61.126236) (xy 111.909785 61.126236) (xy 111.915065 61.126936) (xy 111.920394 61.126736) (xy 111.920395 61.126736) (xy 112.015124 61.123179) (xy 112.147993 61.118191) (xy 112.376117 61.070326) (xy 112.381076 61.068368) (xy 112.381078 61.068367) (xy 112.54081 61.005285) (xy 112.592914 60.984708) (xy 112.741026 60.894832) (xy 112.787626 60.866555) (xy 112.787629 60.866553) (xy 112.792187 60.863787) (xy 112.877244 60.789978) (xy 112.964204 60.714518) (xy 112.964206 60.714516) (xy 112.968237 60.711018) (xy 113.041415 60.621771) (xy 113.112646 60.5349) (xy 113.11265 60.534894) (xy 113.11603 60.530772) (xy 113.140945 60.487002) (xy 113.192027 60.437696) (xy 113.261657 60.423834) (xy 113.327728 60.449817) (xy 113.354965 60.478965) (xy 113.374604 60.508135) (xy 113.442729 60.609325) (xy 113.445709 60.613752) (xy 113.449388 60.617609) (xy 113.44939 60.617611) (xy 113.491181 60.661419) (xy 113.606601 60.78241) (xy 113.715776 60.863638) (xy 113.758488 60.920347) (xy 113.763761 60.991147) (xy 113.737646 61.045042) (xy 113.638217 61.16523) (xy 113.635288 61.170647) (xy 113.635286 61.17065) (xy 113.542416 61.34241) (xy 113.542414 61.342415) (xy 113.539486 61.34783) (xy 113.478102 61.546129) (xy 113.477458 61.552254) (xy 113.477458 61.552255) (xy 113.457071 61.746233) (xy 113.456404 61.752575) (xy 113.471441 61.9178) (xy 113.472512 61.929569) (xy 113.458767 61.999222) (xy 113.409546 62.050387) (xy 113.347031 62.066989) (xy 112.172647 62.066989) (xy 112.156204 62.065911) (xy 112.124511 62.061739) (xy 112.116322 62.062817) (xy 112.084637 62.066988) (xy 112.084628 62.066989) (xy 112.084626 62.066989) (xy 112.08462 62.06699) (xy 112.084618 62.06699) (xy 111.988912 62.07959) (xy 111.973848 62.081573) (xy 111.973847 62.081573) (xy 111.96566 62.082651) (xy 111.817635 62.143965) (xy 111.793075 62.162811) (xy 111.722448 62.217004) (xy 111.722432 62.217018) (xy 111.697077 62.236473) (xy 111.697074 62.236476) (xy 111.690524 62.241502) (xy 111.685494 62.248057) (xy 111.671059 62.266868) (xy 111.660192 62.279259) (xy 111.403766 62.535685) (xy 111.391375 62.546552) (xy 111.366013 62.566013) (xy 111.341526 62.597925) (xy 111.341523 62.597928) (xy 111.341517 62.597936) (xy 111.279753 62.678428) (xy 111.268476 62.693124) (xy 111.251752 62.7335) (xy 111.233142 62.778428) (xy 111.197491 62.823658) (xy 111.198999 62.825332) (xy 111.19409 62.829752) (xy 111.188747 62.833634) (xy 111.184326 62.838544) (xy 111.184325 62.838545) (xy 111.166675 62.858148) (xy 111.06096 62.975556) (xy 110.965473 63.140944) (xy 110.906458 63.322572) (xy 110.905768 63.329133) (xy 110.905768 63.329135) (xy 110.902684 63.358477) (xy 110.886496 63.5125) (xy 110.887186 63.519065) (xy 110.896608 63.608706) (xy 110.906458 63.702428) (xy 110.965473 63.884056) (xy 110.968776 63.889778) (xy 110.968777 63.889779) (xy 110.991589 63.929291) (xy 111.06096 64.049444) (xy 111.065378 64.054351) (xy 111.065379 64.054352) (xy 111.166476 64.166632) (xy 111.188747 64.191366) (xy 111.249926 64.235815) (xy 111.30983 64.279338) (xy 111.343248 64.303618) (xy 111.349276 64.306302) (xy 111.349278 64.306303) (xy 111.511681 64.378609) (xy 111.517712 64.381294) (xy 111.611113 64.401147) (xy 111.698056 64.419628) (xy 111.698061 64.419628) (xy 111.704513 64.421) (xy 111.895487 64.421) (xy 111.901939 64.419628) (xy 111.901944 64.419628) (xy 111.988887 64.401147) (xy 112.082288 64.381294) (xy 112.088319 64.378609) (xy 112.250722 64.306303) (xy 112.250724 64.306302) (xy 112.256752 64.303618) (xy 112.290171 64.279338) (xy 112.350074 64.235815) (xy 112.411253 64.191366) (xy 112.433524 64.166632) (xy 112.534621 64.054352) (xy 112.534622 64.054351) (xy 112.53904 64.049444) (xy 112.608411 63.929291) (xy 112.631223 63.889779) (xy 112.631224 63.889778) (xy 112.634527 63.884056) (xy 112.693542 63.702428) (xy 112.703393 63.608706) (xy 112.712814 63.519065) (xy 112.713504 63.5125) (xy 112.704114 63.423159) (xy 112.716886 63.353321) (xy 112.765388 63.301474) (xy 112.829424 63.283989) (xy 116.040011 63.283989) (xy 116.108132 63.303991) (xy 116.154625 63.357647) (xy 116.166011 63.409989) (xy 116.166011 66.855564) (xy 116.146009 66.923685) (xy 116.129106 66.944659) (xy 113.870621 69.203145) (xy 113.860478 69.212247) (xy 113.830975 69.235968) (xy 113.814607 69.255475) (xy 113.798709 69.274421) (xy 113.795528 69.278069) (xy 113.793885 69.279881) (xy 113.791691 69.282075) (xy 113.764358 69.315349) (xy 113.763696 69.316147) (xy 113.703846 69.387474) (xy 113.701278 69.392144) (xy 113.697897 69.396261) (xy 113.66686 69.454145) (xy 113.654023 69.478086) (xy 113.653394 69.479245) (xy 113.611538 69.555381) (xy 113.611535 69.555389) (xy 113.608567 69.560787) (xy 113.606955 69.565869) (xy 113.604438 69.570563) (xy 113.577238 69.659531) (xy 113.576918 69.660559) (xy 113.548765 69.749306) (xy 113.548171 69.754602) (xy 113.546613 69.759698) (xy 113.537378 69.850614) (xy 113.537218 69.852187) (xy 113.537089 69.853393) (xy 113.533403 69.886261) (xy 113.532095 69.897925) (xy 113.5315 69.903227) (xy 113.5315 69.906754) (xy 113.531445 69.907739) (xy 113.530998 69.913419) (xy 113.529466 69.928502) (xy 113.527316 69.949673) (xy 113.526626 69.956462) (xy 113.529472 69.986572) (xy 113.530941 70.002109) (xy 113.5315 70.013967) (xy 113.5315 89.938157) (xy 113.530763 89.951764) (xy 113.528689 89.970862) (xy 113.526676 89.989388) (xy 113.527213 89.995523) (xy 113.531021 90.039053) (xy 113.5315 90.050034) (xy 113.5315 93.542096) (xy 113.530855 93.554829) (xy 113.526626 93.596462) (xy 113.530623 93.638741) (xy 113.530941 93.642109) (xy 113.5315 93.653967) (xy 113.5315 116.003157) (xy 113.530763 116.016764) (xy 113.527826 116.043803) (xy 113.526676 116.054388) (xy 113.528973 116.080638) (xy 113.53105 116.104388) (xy 113.531379 116.109214) (xy 113.5315 116.111686) (xy 113.5315 116.114769) (xy 113.531801 116.117837) (xy 113.53569 116.157506) (xy 113.535812 116.158819) (xy 113.539685 116.203084) (xy 113.543913 116.251413) (xy 113.5454 116.256532) (xy 113.54592 116.261833) (xy 113.572791 116.350834) (xy 113.573126 116.351967) (xy 113.591908 116.416612) (xy 113.599091 116.441336) (xy 113.601544 116.446068) (xy 113.603084 116.451169) (xy 113.605978 116.456612) (xy 113.646731 116.53326) (xy 113.647343 116.534426) (xy 113.676448 116.590573) (xy 113.690108 116.616926) (xy 113.693431 116.621089) (xy 113.695934 116.625796) (xy 113.754755 116.697918) (xy 113.755446 116.698774) (xy 113.786738 116.737973) (xy 113.789242 116.740477) (xy 113.789884 116.741195) (xy 113.793585 116.745528) (xy 113.820935 116.779062) (xy 113.825682 116.782989) (xy 113.825684 116.782991) (xy 113.856262 116.808287) (xy 113.865042 116.816277) (xy 115.352087 118.303322) (xy 115.386113 118.365634) (xy 115.381048 118.436449) (xy 115.338501 118.493285) (xy 115.302139 118.512181) (xy 115.206756 118.543357) (xy 115.179868 118.557354) (xy 115.013867 118.643769) (xy 115.008607 118.646507) (xy 115.004474 118.64961) (xy 115.004471 118.649612) (xy 114.8341 118.77753) (xy 114.829965 118.780635) (xy 114.8254 118.785412) (xy 114.684208 118.933161) (xy 114.675629 118.942138) (xy 114.568201 119.099621) (xy 114.513293 119.144621) (xy 114.442768 119.152792) (xy 114.379021 119.121538) (xy 114.358324 119.097054) (xy 114.277822 118.972617) (xy 114.27782 118.972614) (xy 114.275014 118.968277) (xy 114.12467 118.803051) (xy 114.120619 118.799852) (xy 114.120615 118.799848) (xy 113.953414 118.6678) (xy 113.95341 118.667798) (xy 113.949359 118.664598) (xy 113.923399 118.650267) (xy 113.883665 118.628333) (xy 113.753789 118.556638) (xy 113.74892 118.554914) (xy 113.748916 118.554912) (xy 113.548087 118.483795) (xy 113.548083 118.483794) (xy 113.543212 118.482069) (xy 113.538119 118.481162) (xy 113.538116 118.481161) (xy 113.328373 118.4438) (xy 113.328367 118.443799) (xy 113.323284 118.442894) (xy 113.249452 118.441992) (xy 113.105081 118.440228) (xy 113.105079 118.440228) (xy 113.099911 118.440165) (xy 112.879091 118.473955) (xy 112.666756 118.543357) (xy 112.639868 118.557354) (xy 112.473867 118.643769) (xy 112.468607 118.646507) (xy 112.464474 118.64961) (xy 112.464471 118.649612) (xy 112.2941 118.77753) (xy 112.289965 118.780635) (xy 112.2854 118.785412) (xy 112.144208 118.933161) (xy 112.135629 118.942138) (xy 112.13272 118.946403) (xy 112.132714 118.946411) (xy 112.069496 119.039085) (xy 112.009743 119.12668) (xy 111.970558 119.211097) (xy 111.920836 119.318215) (xy 111.915688 119.329305) (xy 111.897528 119.394788) (xy 111.887053 119.432559) (xy 111.854731 119.487982) (xy 110.388117 120.954595) (xy 110.325805 120.988621) (xy 110.299022 120.9915) (xy 109.272261 120.9915) (xy 109.20414 120.971498) (xy 109.157647 120.917842) (xy 109.147543 120.847568) (xy 109.177037 120.782988) (xy 109.183166 120.776405) (xy 110.896234 119.063337) (xy 110.908625 119.05247) (xy 110.927437 119.038035) (xy 110.933987 119.033009) (xy 110.958474 119.001097) (xy 110.958477 119.001094) (xy 111.014378 118.928242) (xy 111.031524 118.905897) (xy 111.088761 118.767714) (xy 111.089678 118.765501) (xy 111.092838 118.757872) (xy 111.098694 118.713395) (xy 111.1085 118.638907) (xy 111.1085 118.6389) (xy 111.112672 118.60721) (xy 111.11375 118.599022) (xy 111.109578 118.567329) (xy 111.1085 118.550886) (xy 111.1085 106.98029) (xy 111.128502 106.912169) (xy 111.140864 106.89598) (xy 111.234621 106.791852) (xy 111.234622 106.791851) (xy 111.23904 106.786944) (xy 111.334527 106.621556) (xy 111.393542 106.439928) (xy 111.394495 106.430866) (xy 111.412814 106.256565) (xy 111.413504 106.25) (xy 111.405978 106.178396) (xy 111.394232 106.066635) (xy 111.394232 106.066633) (xy 111.393542 106.060072) (xy 111.334527 105.878444) (xy 111.329418 105.869594) (xy 111.278367 105.781173) (xy 111.23904 105.713056) (xy 111.188672 105.657116) (xy 111.115675 105.576045) (xy 111.115674 105.576044) (xy 111.111253 105.571134) (xy 111.012157 105.499136) (xy 110.962094 105.462763) (xy 110.962093 105.462762) (xy 110.956752 105.458882) (xy 110.950724 105.456198) (xy 110.950722 105.456197) (xy 110.788319 105.383891) (xy 110.788318 105.383891) (xy 110.782288 105.381206) (xy 110.688888 105.361353) (xy 110.601944 105.342872) (xy 110.601939 105.342872) (xy 110.595487 105.3415) (xy 110.404513 105.3415) (xy 110.398061 105.342872) (xy 110.398056 105.342872) (xy 110.311112 105.361353) (xy 110.217712 105.381206) (xy 110.211682 105.383891) (xy 110.211681 105.383891) (xy 110.049278 105.456197) (xy 110.049276 105.456198) (xy 110.043248 105.458882) (xy 110.037907 105.462762) (xy 110.037906 105.462763) (xy 109.987843 105.499136) (xy 109.888747 105.571134) (xy 109.884326 105.576044) (xy 109.884325 105.576045) (xy 109.811329 105.657116) (xy 109.76096 105.713056) (xy 109.721633 105.781173) (xy 109.670583 105.869594) (xy 109.665473 105.878444) (xy 109.606458 106.060072) (xy 109.605768 106.066633) (xy 109.605768 106.066635) (xy 109.594022 106.178396) (xy 109.586496 106.25) (xy 109.587186 106.256565) (xy 109.605506 106.430866) (xy 109.606458 106.439928) (xy 109.665473 106.621556) (xy 109.76096 106.786944) (xy 109.765378 106.791851) (xy 109.765379 106.791852) (xy 109.859136 106.89598) (xy 109.889854 106.959987) (xy 109.8915 106.98029) (xy 109.8915 118.294783) (xy 109.871498 118.362904) (xy 109.854595 118.383878) (xy 108.573595 119.664878) (xy 108.511283 119.698904) (xy 108.440468 119.693839) (xy 108.383632 119.651292) (xy 108.358821 119.584772) (xy 108.3585 119.575783) (xy 108.3585 118.901866) (xy 108.351745 118.839684) (xy 108.300615 118.703295) (xy 108.213261 118.586739) (xy 108.096705 118.499385) (xy 108.088296 118.496233) (xy 108.080425 118.491923) (xy 108.081336 118.490259) (xy 108.03351 118.454337) (xy 108.008807 118.387776) (xy 108.0085 118.378991) (xy 108.0085 102.219926) (xy 108.028502 102.151805) (xy 108.045404 102.130831) (xy 108.920781 101.255453) (xy 108.930583 101.246628) (xy 108.956759 101.225431) (xy 108.961548 101.221553) (xy 108.965489 101.216823) (xy 108.965495 101.216817) (xy 108.993857 101.182776) (xy 108.996506 101.179728) (xy 108.998309 101.177925) (xy 109.026829 101.143205) (xy 109.027389 101.142529) (xy 109.063602 101.099064) (xy 109.088147 101.069604) (xy 109.089849 101.066482) (xy 109.092103 101.063738) (xy 109.114616 101.021753) (xy 109.136928 100.980141) (xy 109.137346 100.979368) (xy 109.179869 100.901375) (xy 109.182822 100.895959) (xy 109.183885 100.892566) (xy 109.185563 100.889437) (xy 109.187366 100.883541) (xy 109.213315 100.798666) (xy 109.213575 100.797826) (xy 109.240121 100.713116) (xy 109.241965 100.707232) (xy 109.242348 100.703702) (xy 109.243388 100.700302) (xy 109.247732 100.657534) (xy 109.252991 100.605764) (xy 109.253083 100.60489) (xy 109.262659 100.516735) (xy 109.262659 100.516734) (xy 109.263324 100.510612) (xy 109.263015 100.507075) (xy 109.263374 100.503537) (xy 109.254428 100.408891) (xy 109.254357 100.408114) (xy 109.25318 100.394653) (xy 109.246087 100.313587) (xy 109.245097 100.310178) (xy 109.244762 100.306638) (xy 109.21757 100.215423) (xy 109.217347 100.214664) (xy 109.216591 100.212061) (xy 109.190909 100.123664) (xy 109.189278 100.120517) (xy 109.18826 100.117103) (xy 109.143839 100.032852) (xy 109.143518 100.032238) (xy 109.102723 99.953536) (xy 109.099892 99.948074) (xy 109.097677 99.945299) (xy 109.096018 99.942153) (xy 109.092148 99.937373) (xy 109.092144 99.937368) (xy 109.036243 99.868337) (xy 109.035692 99.867652) (xy 109.029029 99.859305) (xy 109.003262 99.827028) (xy 109.001446 99.825212) (xy 108.998873 99.822189) (xy 108.975432 99.793242) (xy 108.975431 99.793241) (xy 108.971553 99.788452) (xy 108.934778 99.757812) (xy 108.926338 99.750104) (xy 108.505453 99.329219) (xy 108.496628 99.319418) (xy 108.487001 99.30753) (xy 108.471553 99.288453) (xy 108.434785 99.257819) (xy 108.426345 99.250111) (xy 108.045405 98.869171) (xy 108.011379 98.806859) (xy 108.0085 98.780076) (xy 108.0085 97.561842) (xy 108.009237 97.548235) (xy 108.012659 97.516737) (xy 108.012659 97.516732) (xy 108.013324 97.510611) (xy 108.010515 97.4785) (xy 108.00895 97.460609) (xy 108.008621 97.455784) (xy 108.0085 97.453313) (xy 108.0085 97.450231) (xy 108.004309 97.407489) (xy 108.004187 97.406174) (xy 107.996623 97.319719) (xy 107.996087 97.313587) (xy 107.9946 97.308468) (xy 107.99408 97.303167) (xy 107.984343 97.270916) (xy 107.983802 97.199924) (xy 108.021729 97.139907) (xy 108.086083 97.109923) (xy 108.104965 97.1085) (xy 111.51929 97.1085) (xy 111.587411 97.128502) (xy 111.612926 97.150189) (xy 111.629087 97.168137) (xy 111.638747 97.178866) (xy 111.64685 97.184753) (xy 111.778945 97.280726) (xy 111.793248 97.291118) (xy 111.799276 97.293802) (xy 111.799278 97.293803) (xy 111.961681 97.366109) (xy 111.967712 97.368794) (xy 112.040742 97.384317) (xy 112.148056 97.407128) (xy 112.148061 97.407128) (xy 112.154513 97.4085) (xy 112.345487 97.4085) (xy 112.351939 97.407128) (xy 112.351944 97.407128) (xy 112.459258 97.384317) (xy 112.532288 97.368794) (xy 112.538319 97.366109) (xy 112.700722 97.293803) (xy 112.700724 97.293802) (xy 112.706752 97.291118) (xy 112.721056 97.280726) (xy 112.787863 97.232187) (xy 112.861253 97.178866) (xy 112.865675 97.173955) (xy 112.984621 97.041852) (xy 112.984625 97.041847) (xy 112.98904 97.036944) (xy 113.084527 96.871556) (xy 113.143542 96.689928) (xy 113.149087 96.637176) (xy 113.162814 96.506565) (xy 113.163504 96.5) (xy 113.158121 96.448782) (xy 113.144232 96.316635) (xy 113.144232 96.316633) (xy 113.143542 96.310072) (xy 113.084527 96.128444) (xy 112.98904 95.963056) (xy 112.974952 95.947409) (xy 112.865675 95.826045) (xy 112.865674 95.826044) (xy 112.861253 95.821134) (xy 112.706752 95.708882) (xy 112.700724 95.706198) (xy 112.700722 95.706197) (xy 112.538319 95.633891) (xy 112.538318 95.633891) (xy 112.532288 95.631206) (xy 112.438887 95.611353) (xy 112.351944 95.592872) (xy 112.351939 95.592872) (xy 112.345487 95.5915) (xy 112.154513 95.5915) (xy 112.148061 95.592872) (xy 112.148056 95.592872) (xy 112.061112 95.611353) (xy 111.967712 95.631206) (xy 111.961682 95.633891) (xy 111.961681 95.633891) (xy 111.799278 95.706197) (xy 111.799276 95.706198) (xy 111.793248 95.708882) (xy 111.787907 95.712762) (xy 111.787906 95.712763) (xy 111.758025 95.734473) (xy 111.638747 95.821134) (xy 111.634334 95.826036) (xy 111.634332 95.826037) (xy 111.612926 95.849811) (xy 111.55248 95.88705) (xy 111.51929 95.8915) (xy 108.304239 95.8915) (xy 108.236118 95.871498) (xy 108.215144 95.854595) (xy 107.949719 95.58917) (xy 107.915693 95.526858) (xy 107.913159 95.503284) (xy 107.913504 95.5) (xy 107.905976 95.428376) (xy 107.894232 95.316635) (xy 107.894232 95.316633) (xy 107.893542 95.310072) (xy 107.834527 95.128444) (xy 107.829489 95.119717) (xy 107.788856 95.049339) (xy 107.73904 94.963056) (xy 107.718243 94.939958) (xy 107.615675 94.826045) (xy 107.615674 94.826044) (xy 107.611253 94.821134) (xy 107.512157 94.749136) (xy 107.462094 94.712763) (xy 107.462093 94.712762) (xy 107.456752 94.708882) (xy 107.450724 94.706198) (xy 107.450722 94.706197) (xy 107.288319 94.633891) (xy 107.288318 94.633891) (xy 107.282288 94.631206) (xy 107.185416 94.610615) (xy 107.101944 94.592872) (xy 107.101939 94.592872) (xy 107.095487 94.5915) (xy 106.904513 94.5915) (xy 106.898061 94.592872) (xy 106.898056 94.592872) (xy 106.814584 94.610615) (xy 106.717712 94.631206) (xy 106.711682 94.633891) (xy 106.711681 94.633891) (xy 106.549278 94.706197) (xy 106.549276 94.706198) (xy 106.543248 94.708882) (xy 106.537907 94.712762) (xy 106.537906 94.712763) (xy 106.487843 94.749136) (xy 106.388747 94.821134) (xy 106.384326 94.826044) (xy 106.384325 94.826045) (xy 106.281758 94.939958) (xy 106.26096 94.963056) (xy 106.228851 95.01867) (xy 106.207022 95.056479) (xy 106.155639 95.105472) (xy 106.085925 95.118907) (xy 106.020014 95.09252) (xy 106.008808 95.082573) (xy 102.426235 91.5) (xy 103.336496 91.5) (xy 103.337186 91.506565) (xy 103.347403 91.60377) (xy 103.356458 91.689928) (xy 103.415473 91.871556) (xy 103.418776 91.877278) (xy 103.418777 91.877279) (xy 103.450803 91.932749) (xy 103.51096 92.036944) (xy 103.515378 92.041851) (xy 103.515379 92.041852) (xy 103.539947 92.069137) (xy 103.638747 92.178866) (xy 103.793248 92.291118) (xy 103.799276 92.293802) (xy 103.799278 92.293803) (xy 103.87716 92.328478) (xy 103.967712 92.368794) (xy 104.061113 92.388647) (xy 104.148056 92.407128) (xy 104.148061 92.407128) (xy 104.154513 92.4085) (xy 104.345487 92.4085) (xy 104.351939 92.407128) (xy 104.351944 92.407128) (xy 104.438887 92.388647) (xy 104.532288 92.368794) (xy 104.62284 92.328478) (xy 104.700722 92.293803) (xy 104.700724 92.293802) (xy 104.706752 92.291118) (xy 104.861253 92.178866) (xy 104.875078 92.163511) (xy 104.935519 92.126273) (xy 104.994909 92.124575) (xy 105.002898 92.126273) (xy 105.148056 92.157128) (xy 105.148061 92.157128) (xy 105.154513 92.1585) (xy 105.345487 92.1585) (xy 105.351939 92.157128) (xy 105.351944 92.157128) (xy 105.438888 92.138647) (xy 105.532288 92.118794) (xy 105.555701 92.10837) (xy 105.700722 92.043803) (xy 105.700724 92.043802) (xy 105.706752 92.041118) (xy 105.714792 92.035277) (xy 105.762157 92.000864) (xy 105.861253 91.928866) (xy 105.975202 91.802313) (xy 105.984621 91.791852) (xy 105.984622 91.791851) (xy 105.98904 91.786944) (xy 106.084527 91.621556) (xy 106.143542 91.439928) (xy 106.145779 91.418649) (xy 106.161262 91.27133) (xy 106.188275 91.205673) (xy 106.246497 91.165043) (xy 106.286572 91.1585) (xy 106.345487 91.1585) (xy 106.351939 91.157128) (xy 106.351944 91.157128) (xy 106.45732 91.134729) (xy 106.532288 91.118794) (xy 106.539687 91.1155) (xy 106.675235 91.05515) (xy 106.698752 91.04468) (xy 106.769118 91.035246) (xy 106.801247 91.04468) (xy 106.824765 91.05515) (xy 106.960314 91.1155) (xy 106.967712 91.118794) (xy 107.04268 91.134729) (xy 107.148056 91.157128) (xy 107.148061 91.157128) (xy 107.154513 91.1585) (xy 107.345487 91.1585) (xy 107.351939 91.157128) (xy 107.351944 91.157128) (xy 107.45732 91.134729) (xy 107.532288 91.118794) (xy 107.538319 91.116109) (xy 107.700722 91.043803) (xy 107.700724 91.043802) (xy 107.706752 91.041118) (xy 107.750001 91.009696) (xy 107.795363 90.976738) (xy 107.861253 90.928866) (xy 107.878032 90.910231) (xy 107.984621 90.791852) (xy 107.984622 90.791851) (xy 107.98904 90.786944) (xy 108.053948 90.67452) (xy 108.081223 90.627279) (xy 108.081224 90.627278) (xy 108.084527 90.621556) (xy 108.143542 90.439928) (xy 108.147268 90.404482) (xy 108.162814 90.256565) (xy 108.163504 90.25) (xy 108.143542 90.060072) (xy 108.137614 90.041827) (xy 108.135585 89.970862) (xy 108.172246 89.910063) (xy 108.231248 89.879644) (xy 108.275824 89.870169) (xy 108.275833 89.870166) (xy 108.282288 89.868794) (xy 108.301842 89.860088) (xy 108.450722 89.793803) (xy 108.450724 89.793802) (xy 108.456752 89.791118) (xy 108.611253 89.678866) (xy 108.698232 89.582266) (xy 108.734621 89.541852) (xy 108.734622 89.541851) (xy 108.73904 89.536944) (xy 108.813197 89.4085) (xy 108.831223 89.377279) (xy 108.831224 89.377278) (xy 108.834527 89.371556) (xy 108.893542 89.189928) (xy 108.894444 89.181351) (xy 108.912814 89.006565) (xy 108.913504 89) (xy 108.91303 88.995487) (xy 108.932816 88.928101) (xy 108.986472 88.881608) (xy 109.012618 88.872975) (xy 109.012628 88.872973) (xy 109.013966 88.872688) (xy 109.02583 88.870167) (xy 109.025833 88.870166) (xy 109.032288 88.868794) (xy 109.040201 88.865271) (xy 109.200722 88.793803) (xy 109.200724 88.793802) (xy 109.206752 88.791118) (xy 109.248487 88.760796) (xy 109.28117 88.73705) (xy 109.361253 88.678866) (xy 109.369753 88.669426) (xy 109.484621 88.541852) (xy 109.484622 88.541851) (xy 109.48904 88.536944) (xy 109.563197 88.4085) (xy 109.581223 88.377279) (xy 109.581224 88.377278) (xy 109.584527 88.371556) (xy 109.643542 88.189928) (xy 109.64699 88.157128) (xy 109.662814 88.006565) (xy 109.663504 88) (xy 109.65785 87.946206) (xy 109.644232 87.816635) (xy 109.644232 87.816633) (xy 109.643542 87.810072) (xy 109.584527 87.628444) (xy 109.577406 87.616109) (xy 109.534109 87.541118) (xy 109.48904 87.463056) (xy 109.470551 87.442522) (xy 109.390864 87.35402) (xy 109.360146 87.290013) (xy 109.3585 87.26971) (xy 109.3585 84.73029) (xy 109.378502 84.662169) (xy 109.390864 84.64598) (xy 109.484621 84.541852) (xy 109.484622 84.541851) (xy 109.48904 84.536944) (xy 109.584527 84.371556) (xy 109.643542 84.189928) (xy 109.64443 84.181484) (xy 109.662814 84.006565) (xy 109.663504 84) (xy 109.651361 83.884465) (xy 109.644232 83.816635) (xy 109.644232 83.816633) (xy 109.643542 83.810072) (xy 109.584527 83.628444) (xy 109.48904 83.463056) (xy 109.361253 83.321134) (xy 109.206752 83.208882) (xy 109.200724 83.206198) (xy 109.200722 83.206197) (xy 109.038319 83.133891) (xy 109.038318 83.133891) (xy 109.032288 83.131206) (xy 109.025833 83.129834) (xy 109.02583 83.129833) (xy 109.012618 83.127025) (xy 108.950145 83.093297) (xy 108.915823 83.031148) (xy 108.912964 83.00514) (xy 108.913504 83) (xy 108.901596 82.886703) (xy 108.894232 82.816635) (xy 108.894232 82.816633) (xy 108.893542 82.810072) (xy 108.834527 82.628444) (xy 108.73904 82.463056) (xy 108.672616 82.389284) (xy 108.615675 82.326045) (xy 108.615674 82.326044) (xy 108.611253 82.321134) (xy 108.456752 82.208882) (xy 108.450724 82.206198) (xy 108.450722 82.206197) (xy 108.288319 82.133891) (xy 108.288318 82.133891) (xy 108.282288 82.131206) (xy 108.188888 82.111353) (xy 108.101944 82.092872) (xy 108.101939 82.092872) (xy 108.095487 82.0915) (xy 107.9845 82.0915) (xy 107.916379 82.071498) (xy 107.869886 82.017842) (xy 107.8585 81.9655) (xy 107.8585 80.73029) (xy 107.878502 80.662169) (xy 107.890864 80.64598) (xy 107.984621 80.541852) (xy 107.984622 80.541851) (xy 107.98904 80.536944) (xy 108.084527 80.371556) (xy 108.143542 80.189928) (xy 108.148265 80.144997) (xy 108.162814 80.006565) (xy 108.163504 80) (xy 108.160073 79.967352) (xy 108.144232 79.816635) (xy 108.144232 79.816633) (xy 108.143542 79.810072) (xy 108.084527 79.628444) (xy 107.98904 79.463056) (xy 107.968216 79.439928) (xy 107.865675 79.326045) (xy 107.865674 79.326044) (xy 107.861253 79.321134) (xy 107.752076 79.241812) (xy 107.712094 79.212763) (xy 107.712093 79.212762) (xy 107.706752 79.208882) (xy 107.700724 79.206198) (xy 107.700722 79.206197) (xy 107.538319 79.133891) (xy 107.538318 79.133891) (xy 107.532288 79.131206) (xy 107.438888 79.111353) (xy 107.351944 79.092872) (xy 107.351939 79.092872) (xy 107.345487 79.0915) (xy 107.245298 79.0915) (xy 107.177177 79.071498) (xy 107.130684 79.017842) (xy 107.125465 79.004437) (xy 107.086568 78.884726) (xy 107.084527 78.878444) (xy 106.98904 78.713056) (xy 106.918838 78.635088) (xy 106.865675 78.576045) (xy 106.865674 78.576044) (xy 106.861253 78.571134) (xy 106.706752 78.458882) (xy 106.700724 78.456198) (xy 106.700722 78.456197) (xy 106.538319 78.383891) (xy 106.538318 78.383891) (xy 106.532288 78.381206) (xy 106.438888 78.361353) (xy 106.351944 78.342872) (xy 106.351939 78.342872) (xy 106.345487 78.3415) (xy 106.286572 78.3415) (xy 106.218451 78.321498) (xy 106.171958 78.267842) (xy 106.161262 78.22867) (xy 106.144232 78.066635) (xy 106.144232 78.066633) (xy 106.143542 78.060072) (xy 106.084527 77.878444) (xy 105.98904 77.713056) (xy 105.982691 77.706004) (xy 105.865675 77.576045) (xy 105.865674 77.576044) (xy 105.861253 77.571134) (xy 105.739679 77.482805) (xy 105.712094 77.462763) (xy 105.712093 77.462762) (xy 105.706752 77.458882) (xy 105.700724 77.456198) (xy 105.700722 77.456197) (xy 105.538319 77.383891) (xy 105.538318 77.383891) (xy 105.532288 77.381206) (xy 105.438887 77.361353) (xy 105.351944 77.342872) (xy 105.351939 77.342872) (xy 105.345487 77.3415) (xy 105.154513 77.3415) (xy 105.148061 77.342872) (xy 105.148056 77.342872) (xy 105.010697 77.372069) (xy 104.939906 77.366667) (xy 104.883274 77.32385) (xy 104.85878 77.257212) (xy 104.8585 77.248822) (xy 104.8585 76.879239) (xy 104.878502 76.811118) (xy 104.895405 76.790144) (xy 107.240144 74.445405) (xy 107.302456 74.411379) (xy 107.329239 74.4085) (xy 107.420487 74.4085) (xy 107.426939 74.407128) (xy 107.426944 74.407128) (xy 107.513887 74.388647) (xy 107.607288 74.368794) (xy 107.613319 74.366109) (xy 107.775722 74.293803) (xy 107.775724 74.293802) (xy 107.781752 74.291118) (xy 107.80657 74.273087) (xy 107.862237 74.232642) (xy 107.936253 74.178866) (xy 107.940675 74.173955) (xy 108.059621 74.041852) (xy 108.059622 74.041851) (xy 108.06404 74.036944) (xy 108.159527 73.871556) (xy 108.218542 73.689928) (xy 108.238504 73.5) (xy 108.223634 73.358517) (xy 108.219232 73.316635) (xy 108.219232 73.316633) (xy 108.218542 73.310072) (xy 108.159527 73.128444) (xy 108.06404 72.963056) (xy 108.038642 72.934848) (xy 107.940675 72.826045) (xy 107.940674 72.826044) (xy 107.936253 72.821134) (xy 107.837157 72.749136) (xy 107.787094 72.712763) (xy 107.787093 72.712762) (xy 107.781752 72.708882) (xy 107.775724 72.706198) (xy 107.775722 72.706197) (xy 107.613319 72.633891) (xy 107.613318 72.633891) (xy 107.607288 72.631206) (xy 107.513887 72.611353) (xy 107.426944 72.592872) (xy 107.426939 72.592872) (xy 107.420487 72.5915) (xy 107.229513 72.5915) (xy 107.223061 72.592872) (xy 107.223056 72.592872) (xy 107.136113 72.611353) (xy 107.042712 72.631206) (xy 107.036682 72.633891) (xy 107.036681 72.633891) (xy 106.874278 72.706197) (xy 106.874276 72.706198) (xy 106.868248 72.708882) (xy 106.862907 72.712762) (xy 106.862906 72.712763) (xy 106.812843 72.749136) (xy 106.713747 72.821134) (xy 106.709326 72.826044) (xy 106.709325 72.826045) (xy 106.611359 72.934848) (xy 106.58596 72.963056) (xy 106.490473 73.128444) (xy 106.431458 73.310072) (xy 106.430768 73.316633) (xy 106.430768 73.316635) (xy 106.426366 73.358517) (xy 106.411496 73.5) (xy 106.411684 73.501786) (xy 106.392184 73.568196) (xy 106.375281 73.58917) (xy 103.853766 76.110685) (xy 103.841375 76.121552) (xy 103.816013 76.141013) (xy 103.791526 76.172925) (xy 103.791523 76.172928) (xy 103.791517 76.172936) (xy 103.732708 76.249577) (xy 103.718476 76.268124) (xy 103.661104 76.406632) (xy 103.657162 76.41615) (xy 103.6415 76.535115) (xy 103.6415 76.53512) (xy 103.63625 76.575) (xy 103.637328 76.583188) (xy 103.640422 76.60669) (xy 103.6415 76.623136) (xy 103.6415 90.76971) (xy 103.621498 90.837831) (xy 103.609136 90.85402) (xy 103.515379 90.958148) (xy 103.51096 90.963056) (xy 103.465891 91.041118) (xy 103.422595 91.116109) (xy 103.415473 91.128444) (xy 103.356458 91.310072) (xy 103.355768 91.316633) (xy 103.355768 91.316635) (xy 103.343356 91.434729) (xy 103.336496 91.5) (xy 102.426235 91.5) (xy 98.745405 87.819171) (xy 98.711379 87.756859) (xy 98.7085 87.730076) (xy 98.7085 86.75) (xy 99.086496 86.75) (xy 99.087186 86.756565) (xy 99.0935 86.816635) (xy 99.106458 86.939928) (xy 99.165473 87.121556) (xy 99.168776 87.127278) (xy 99.168777 87.127279) (xy 99.177579 87.142525) (xy 99.26096 87.286944) (xy 99.265378 87.291851) (xy 99.265379 87.291852) (xy 99.285538 87.314241) (xy 99.388747 87.428866) (xy 99.477618 87.493435) (xy 99.52245 87.526007) (xy 99.543248 87.541118) (xy 99.549276 87.543802) (xy 99.549278 87.543803) (xy 99.709799 87.615271) (xy 99.717712 87.618794) (xy 99.790389 87.634242) (xy 99.898056 87.657128) (xy 99.898061 87.657128) (xy 99.904513 87.6585) (xy 100.095487 87.6585) (xy 100.101939 87.657128) (xy 100.101944 87.657128) (xy 100.184989 87.639476) (xy 100.25578 87.644878) (xy 100.312413 87.687695) (xy 100.335357 87.75012) (xy 100.336496 87.75) (xy 100.355204 87.927993) (xy 100.356458 87.939928) (xy 100.415473 88.121556) (xy 100.418776 88.127278) (xy 100.418777 88.127279) (xy 100.436803 88.1585) (xy 100.51096 88.286944) (xy 100.515378 88.291851) (xy 100.515379 88.291852) (xy 100.599429 88.385199) (xy 100.638747 88.428866) (xy 100.793248 88.541118) (xy 100.799276 88.543802) (xy 100.799278 88.543803) (xy 100.961681 88.616109) (xy 100.967712 88.618794) (xy 101.061113 88.638647) (xy 101.148056 88.657128) (xy 101.148061 88.657128) (xy 101.154513 88.6585) (xy 101.345487 88.6585) (xy 101.351939 88.657128) (xy 101.351944 88.657128) (xy 101.438887 88.638647) (xy 101.532288 88.618794) (xy 101.538319 88.616109) (xy 101.700722 88.543803) (xy 101.700724 88.543802) (xy 101.706752 88.541118) (xy 101.861253 88.428866) (xy 101.900571 88.385199) (xy 101.984621 88.291852) (xy 101.984622 88.291851) (xy 101.98904 88.286944) (xy 102.063197 88.1585) (xy 102.081223 88.127279) (xy 102.081224 88.127278) (xy 102.084527 88.121556) (xy 102.143542 87.939928) (xy 102.144797 87.927993) (xy 102.162814 87.756565) (xy 102.163504 87.75) (xy 102.156956 87.687695) (xy 102.144232 87.566635) (xy 102.144232 87.566633) (xy 102.143542 87.560072) (xy 102.084527 87.378444) (xy 102.079134 87.369102) (xy 102.033471 87.290013) (xy 101.98904 87.213056) (xy 101.973868 87.196206) (xy 101.890864 87.10402) (xy 101.860146 87.040013) (xy 101.8585 87.01971) (xy 101.8585 83.73029) (xy 101.878502 83.662169) (xy 101.890864 83.64598) (xy 101.984621 83.541852) (xy 101.984622 83.541851) (xy 101.98904 83.536944) (xy 102.063197 83.4085) (xy 102.081223 83.377279) (xy 102.081224 83.377278) (xy 102.084527 83.371556) (xy 102.143542 83.189928) (xy 102.154983 83.081078) (xy 102.162814 83.006565) (xy 102.163504 83) (xy 102.151596 82.886703) (xy 102.144232 82.816635) (xy 102.144232 82.816633) (xy 102.143542 82.810072) (xy 102.084527 82.628444) (xy 101.98904 82.463056) (xy 101.922616 82.389284) (xy 101.865675 82.326045) (xy 101.865674 82.326044) (xy 101.861253 82.321134) (xy 101.706752 82.208882) (xy 101.700724 82.206198) (xy 101.700722 82.206197) (xy 101.538319 82.133891) (xy 101.538318 82.133891) (xy 101.532288 82.131206) (xy 101.438888 82.111353) (xy 101.351944 82.092872) (xy 101.351939 82.092872) (xy 101.345487 82.0915) (xy 101.154513 82.0915) (xy 101.148061 82.092872) (xy 101.148056 82.092872) (xy 101.061112 82.111353) (xy 100.967712 82.131206) (xy 100.961682 82.133891) (xy 100.961681 82.133891) (xy 100.799278 82.206197) (xy 100.799276 82.206198) (xy 100.793248 82.208882) (xy 100.638747 82.321134) (xy 100.634326 82.326044) (xy 100.634325 82.326045) (xy 100.577385 82.389284) (xy 100.51096 82.463056) (xy 100.415473 82.628444) (xy 100.356458 82.810072) (xy 100.355768 82.816633) (xy 100.355768 82.816635) (xy 100.348404 82.886703) (xy 100.336496 83) (xy 100.333541 82.999689) (xy 100.317184 83.055398) (xy 100.263528 83.101891) (xy 100.193254 83.111995) (xy 100.184989 83.110524) (xy 100.101944 83.092872) (xy 100.101939 83.092872) (xy 100.095487 83.0915) (xy 99.904513 83.0915) (xy 99.898061 83.092872) (xy 99.898056 83.092872) (xy 99.815013 83.110524) (xy 99.717712 83.131206) (xy 99.711682 83.133891) (xy 99.711681 83.133891) (xy 99.549278 83.206197) (xy 99.549276 83.206198) (xy 99.543248 83.208882) (xy 99.388747 83.321134) (xy 99.26096 83.463056) (xy 99.165473 83.628444) (xy 99.106458 83.810072) (xy 99.105768 83.816633) (xy 99.105768 83.816635) (xy 99.098639 83.884465) (xy 99.086496 84) (xy 99.087186 84.006565) (xy 99.105571 84.181484) (xy 99.106458 84.189928) (xy 99.165473 84.371556) (xy 99.26096 84.536944) (xy 99.265378 84.541851) (xy 99.265379 84.541852) (xy 99.359136 84.64598) (xy 99.389854 84.709987) (xy 99.3915 84.73029) (xy 99.3915 86.01971) (xy 99.371498 86.087831) (xy 99.359136 86.10402) (xy 99.269683 86.203368) (xy 99.26096 86.213056) (xy 99.214733 86.293124) (xy 99.17689 86.35867) (xy 99.165473 86.378444) (xy 99.106458 86.560072) (xy 99.105768 86.566633) (xy 99.105768 86.566635) (xy 99.093253 86.685709) (xy 99.086496 86.75) (xy 98.7085 86.75) (xy 98.7085 75.61185) (xy 98.709237 75.598242) (xy 98.71089 75.583023) (xy 98.713325 75.560612) (xy 98.708978 75.510928) (xy 98.7085 75.499968) (xy 98.7085 66.269925) (xy 98.728502 66.201804) (xy 98.745405 66.18083) (xy 100.680829 64.245405) (xy 100.743141 64.21138) (xy 100.769924 64.2085) (xy 103.438157 64.2085) (xy 103.451764 64.209237) (xy 103.483262 64.212659) (xy 103.483267 64.212659) (xy 103.489388 64.213324) (xy 103.515638 64.211027) (xy 103.539388 64.20895) (xy 103.544214 64.208621) (xy 103.546686 64.2085) (xy 103.549769 64.2085) (xy 103.561738 64.207326) (xy 103.592506 64.20431) (xy 103.593819 64.204188) (xy 103.638084 64.200315) (xy 103.686413 64.196087) (xy 103.691532 64.1946) (xy 103.696833 64.19408) (xy 103.785834 64.167209) (xy 103.786967 64.166874) (xy 103.870414 64.14263) (xy 103.870418 64.142628) (xy 103.876336 64.140909) (xy 103.881068 64.138456) (xy 103.886169 64.136916) (xy 103.891612 64.134022) (xy 103.96826 64.093269) (xy 103.969426 64.092657) (xy 104.046453 64.052729) (xy 104.051926 64.049892) (xy 104.056089 64.046569) (xy 104.060796 64.044066) (xy 104.132918 63.985245) (xy 104.133774 63.984554) (xy 104.172973 63.953262) (xy 104.175477 63.950758) (xy 104.176195 63.950116) (xy 104.180528 63.946415) (xy 104.214062 63.919065) (xy 104.243288 63.883737) (xy 104.251277 63.874958) (xy 106.133757 61.992477) (xy 106.196069 61.958452) (xy 106.266884 61.963516) (xy 106.32372 62.006063) (xy 106.331304 62.01743) (xy 106.341352 62.034419) (xy 106.345458 62.041362) (xy 106.359779 62.055683) (xy 106.372619 62.070716) (xy 106.384528 62.087107) (xy 106.407113 62.105791) (xy 106.418605 62.115298) (xy 106.427384 62.123288) (xy 110.079595 65.7755) (xy 110.113621 65.837812) (xy 110.1165 65.864595) (xy 110.1165 68.297476) (xy 110.096498 68.365597) (xy 110.084142 68.381779) (xy 110.01096 68.463056) (xy 109.983671 68.510322) (xy 109.928017 68.606718) (xy 109.915473 68.628444) (xy 109.856458 68.810072) (xy 109.855768 68.816633) (xy 109.855768 68.816635) (xy 109.840895 68.958148) (xy 109.836496 69) (xy 109.837186 69.006565) (xy 109.855752 69.183207) (xy 109.856458 69.189928) (xy 109.915473 69.371556) (xy 109.918776 69.377278) (xy 109.918777 69.377279) (xy 109.92769 69.392716) (xy 110.01096 69.536944) (xy 110.015378 69.541851) (xy 110.015379 69.541852) (xy 110.109136 69.64598) (xy 110.139854 69.709987) (xy 110.1415 69.73029) (xy 110.1415 74.451864) (xy 110.140422 74.468307) (xy 110.13625 74.5) (xy 110.1415 74.53988) (xy 110.1415 74.539885) (xy 110.150653 74.609408) (xy 110.157162 74.658851) (xy 110.218476 74.806876) (xy 110.223503 74.813427) (xy 110.223504 74.813429) (xy 110.29152 74.902069) (xy 110.291526 74.902075) (xy 110.316013 74.933987) (xy 110.322568 74.939017) (xy 110.341379 74.953452) (xy 110.35377 74.964319) (xy 111.260685 75.871234) (xy 111.271552 75.883625) (xy 111.291013 75.908987) (xy 111.297563 75.914013) (xy 111.322925 75.933474) (xy 111.322928 75.933477) (xy 111.393251 75.987438) (xy 111.418124 76.006524) (xy 111.479438 76.031921) (xy 111.532056 76.053716) (xy 111.577471 76.085812) (xy 111.638747 76.153866) (xy 111.70805 76.204218) (xy 111.78699 76.261571) (xy 111.793248 76.266118) (xy 111.799276 76.268802) (xy 111.799278 76.268803) (xy 111.942179 76.332426) (xy 111.967712 76.343794) (xy 112.061112 76.363647) (xy 112.148056 76.382128) (xy 112.148061 76.382128) (xy 112.154513 76.3835) (xy 112.345487 76.3835) (xy 112.351939 76.382128) (xy 112.351944 76.382128) (xy 112.438888 76.363647) (xy 112.532288 76.343794) (xy 112.557821 76.332426) (xy 112.700722 76.268803) (xy 112.700724 76.268802) (xy 112.706752 76.266118) (xy 112.713011 76.261571) (xy 112.79195 76.204218) (xy 112.861253 76.153866) (xy 112.872826 76.141013) (xy 112.984621 76.016852) (xy 112.984622 76.016851) (xy 112.98904 76.011944) (xy 113.084527 75.846556) (xy 113.143542 75.664928) (xy 113.144862 75.652374) (xy 113.162814 75.481565) (xy 113.163504 75.475) (xy 113.153806 75.382729) (xy 113.144232 75.291635) (xy 113.144232 75.291633) (xy 113.143542 75.285072) (xy 113.084527 75.103444) (xy 113.073898 75.085033) (xy 113.027997 75.005531) (xy 112.98904 74.938056) (xy 112.980386 74.928444) (xy 112.865675 74.801045) (xy 112.865674 74.801044) (xy 112.861253 74.796134) (xy 112.735649 74.704877) (xy 112.712094 74.687763) (xy 112.712093 74.687762) (xy 112.706752 74.683882) (xy 112.700724 74.681198) (xy 112.700722 74.681197) (xy 112.538319 74.608891) (xy 112.538318 74.608891) (xy 112.532288 74.606206) (xy 112.438888 74.586353) (xy 112.351944 74.567872) (xy 112.351939 74.567872) (xy 112.345487 74.5665) (xy 112.154513 74.5665) (xy 112.148061 74.567872) (xy 112.148056 74.567872) (xy 112.061112 74.586353) (xy 111.967712 74.606206) (xy 111.877456 74.646391) (xy 111.873177 74.648296) (xy 111.80281 74.65773) (xy 111.738513 74.627624) (xy 111.732833 74.622284) (xy 111.395405 74.284856) (xy 111.361379 74.222544) (xy 111.3585 74.195761) (xy 111.3585 69.73029) (xy 111.378502 69.662169) (xy 111.390864 69.64598) (xy 111.484621 69.541852) (xy 111.484622 69.541851) (xy 111.48904 69.536944) (xy 111.57231 69.392716) (xy 111.581223 69.377279) (xy 111.581224 69.377278) (xy 111.584527 69.371556) (xy 111.643542 69.189928) (xy 111.644249 69.183207) (xy 111.662814 69.006565) (xy 111.663504 69) (xy 111.659105 68.958148) (xy 111.644232 68.816635) (xy 111.644232 68.816633) (xy 111.643542 68.810072) (xy 111.584527 68.628444) (xy 111.571984 68.606718) (xy 111.516329 68.510322) (xy 111.48904 68.463056) (xy 111.415863 68.381785) (xy 111.385147 68.317779) (xy 111.3835 68.297476) (xy 111.3835 65.628767) (xy 111.384027 65.617584) (xy 111.385702 65.610091) (xy 111.383562 65.542) (xy 111.3835 65.538043) (xy 111.3835 65.510144) (xy 111.382996 65.506153) (xy 111.382063 65.494311) (xy 111.380923 65.458036) (xy 111.380674 65.450111) (xy 111.378462 65.442497) (xy 111.378461 65.442492) (xy 111.375023 65.430659) (xy 111.371012 65.411295) (xy 111.369467 65.399064) (xy 111.368474 65.391203) (xy 111.365557 65.383836) (xy 111.365556 65.383831) (xy 111.352198 65.350092) (xy 111.348354 65.338865) (xy 111.342503 65.318728) (xy 111.336018 65.296407) (xy 111.325707 65.278972) (xy 111.317012 65.261224) (xy 111.309552 65.242383) (xy 111.283564 65.206613) (xy 111.277048 65.196693) (xy 111.25858 65.165465) (xy 111.258578 65.165462) (xy 111.254542 65.158638) (xy 111.240221 65.144317) (xy 111.22738 65.129283) (xy 111.215472 65.112893) (xy 111.181395 65.084702) (xy 111.172616 65.076712) (xy 107.520405 61.4245) (xy 107.486379 61.362188) (xy 107.4835 61.335405) (xy 107.4835 61.249) (xy 107.503502 61.180879) (xy 107.557158 61.134386) (xy 107.6095 61.123) (xy 107.827885 61.123) (xy 107.843124 61.118525) (xy 107.844329 61.117135) (xy 107.846 61.109452) (xy 107.846 61.104884) (xy 108.354 61.104884) (xy 108.358475 61.120123) (xy 108.359865 61.121328) (xy 108.367548 61.122999) (xy 109.009669 61.122999) (xy 109.01649 61.122629) (xy 109.067352 61.117105) (xy 109.082604 61.113479) (xy 109.203054 61.068324) (xy 109.218649 61.059786) (xy 109.320724 60.983285) (xy 109.333285 60.970724) (xy 109.409786 60.868649) (xy 109.418324 60.853054) (xy 109.463478 60.732606) (xy 109.467105 60.717351) (xy 109.472631 60.666486) (xy 109.473 60.659672) (xy 109.473 59.872115) (xy 109.468525 59.856876) (xy 109.467135 59.855671) (xy 109.459452 59.854) (xy 108.372115 59.854) (xy 108.356876 59.858475) (xy 108.355671 59.859865) (xy 108.354 59.867548) (xy 108.354 61.104884) (xy 107.846 61.104884) (xy 107.846 59.327885) (xy 108.354 59.327885) (xy 108.358475 59.343124) (xy 108.359865 59.344329) (xy 108.367548 59.346) (xy 109.454884 59.346) (xy 109.470123 59.341525) (xy 109.471328 59.340135) (xy 109.472999 59.332452) (xy 109.472999 58.540331) (xy 109.472629 58.53351) (xy 109.467105 58.482648) (xy 109.463479 58.467396) (xy 109.418324 58.346946) (xy 109.409786 58.331351) (xy 109.333285 58.229276) (xy 109.320724 58.216715) (xy 109.218649 58.140214) (xy 109.203054 58.131676) (xy 109.082606 58.086522) (xy 109.067351 58.082895) (xy 109.016486 58.077369) (xy 109.009672 58.077) (xy 108.372115 58.077) (xy 108.356876 58.081475) (xy 108.355671 58.082865) (xy 108.354 58.090548) (xy 108.354 59.327885) (xy 107.846 59.327885) (xy 107.846 58.095116) (xy 107.841525 58.079877) (xy 107.840135 58.078672) (xy 107.832452 58.077001) (xy 107.6095 58.077001) (xy 107.541379 58.056999) (xy 107.494886 58.003343) (xy 107.4835 57.951001) (xy 107.4835 56.528767) (xy 107.484027 56.517584) (xy 107.485702 56.510091) (xy 107.483562 56.442) (xy 107.4835 56.438043) (xy 107.4835 56.410144) (xy 107.482996 56.406153) (xy 107.482063 56.394311) (xy 107.480923 56.358036) (xy 107.480674 56.350111) (xy 107.478462 56.342497) (xy 107.478461 56.342492) (xy 107.475023 56.330659) (xy 107.471012 56.311295) (xy 107.469467 56.299064) (xy 107.468474 56.291203) (xy 107.465557 56.283836) (xy 107.465556 56.283831) (xy 107.452198 56.250092) (xy 107.448354 56.238865) (xy 107.43823 56.204022) (xy 107.436018 56.196407) (xy 107.425707 56.178972) (xy 107.417012 56.161224) (xy 107.409552 56.142383) (xy 107.388146 56.112919) (xy 107.383564 56.106613) (xy 107.377048 56.096693) (xy 107.35858 56.065465) (xy 107.358578 56.065462) (xy 107.354542 56.058638) (xy 107.340221 56.044317) (xy 107.32738 56.029283) (xy 107.320132 56.019307) (xy 107.315472 56.012893) (xy 107.281407 55.984712) (xy 107.272626 55.976722) (xy 106.819126 55.523221) (xy 106.811592 55.514942) (xy 106.807479 55.508461) (xy 106.757827 55.461835) (xy 106.754986 55.459081) (xy 106.735249 55.439344) (xy 106.732052 55.436864) (xy 106.72303 55.429159) (xy 106.709595 55.416543) (xy 106.6908 55.398893) (xy 106.683854 55.395074) (xy 106.683851 55.395072) (xy 106.673045 55.389131) (xy 106.656526 55.37828) (xy 106.656062 55.37792) (xy 106.64052 55.365865) (xy 106.633251 55.36272) (xy 106.633247 55.362717) (xy 106.599942 55.348305) (xy 106.589292 55.343088) (xy 106.550539 55.321784) (xy 106.530916 55.316746) (xy 106.512213 55.310342) (xy 106.500899 55.305446) (xy 106.500898 55.305446) (xy 106.493624 55.302298) (xy 106.485801 55.301059) (xy 106.485791 55.301056) (xy 106.449955 55.29538) (xy 106.438335 55.292974) (xy 106.40319 55.283951) (xy 106.403189 55.283951) (xy 106.395509 55.281979) (xy 106.375255 55.281979) (xy 106.355544 55.280428) (xy 106.343365 55.278499) (xy 106.335536 55.277259) (xy 106.306265 55.280026) (xy 106.291518 55.28142) (xy 106.27966 55.281979) (xy 65.163288 55.281979) (xy 65.152105 55.281452) (xy 65.144612 55.279777) (xy 65.136686 55.280026) (xy 65.136685 55.280026) (xy 65.076535 55.281917) (xy 65.072576 55.281979) (xy 65.044665 55.281979) (xy 65.040731 55.282476) (xy 65.04073 55.282476) (xy 65.040665 55.282484) (xy 65.028828 55.283417) (xy 64.997011 55.284417) (xy 64.99255 55.284557) (xy 64.984631 55.284806) (xy 64.966975 55.289935) (xy 64.965179 55.290457) (xy 64.945827 55.294465) (xy 64.938756 55.295359) (xy 64.925724 55.297005) (xy 64.918355 55.299922) (xy 64.918353 55.299923) (xy 64.884618 55.313279) (xy 64.87339 55.317124) (xy 64.830928 55.329461) (xy 64.824106 55.333495) (xy 64.8241 55.333498) (xy 64.813489 55.339773) (xy 64.795739 55.348469) (xy 64.784277 55.353007) (xy 64.784272 55.35301) (xy 64.776904 55.355927) (xy 64.759491 55.368578) (xy 64.741146 55.381906) (xy 64.731228 55.388422) (xy 64.719984 55.395072) (xy 64.693158 55.410937) (xy 64.678834 55.425261) (xy 64.663802 55.4381) (xy 64.647414 55.450007) (xy 64.619233 55.484072) (xy 64.611243 55.492852) (xy 58.583228 61.520867) (xy 58.574942 61.528407) (xy 58.568463 61.532519) (xy 58.563038 61.538296) (xy 58.521838 61.58217) (xy 58.519083 61.585012) (xy 58.499346 61.604749) (xy 58.496866 61.607946) (xy 58.489163 61.616966) (xy 58.458895 61.649198) (xy 58.455076 61.656144) (xy 58.455074 61.656147) (xy 58.449133 61.666953) (xy 58.438282 61.683472) (xy 58.425867 61.699478) (xy 58.422722 61.706747) (xy 58.422719 61.706751) (xy 58.408307 61.740056) (xy 58.40309 61.750706) (xy 58.381786 61.789459) (xy 58.379815 61.797134) (xy 58.379815 61.797135) (xy 58.376748 61.809081) (xy 58.370344 61.827785) (xy 58.3623 61.846374) (xy 58.361061 61.854197) (xy 58.361058 61.854207) (xy 58.355382 61.890043) (xy 58.352976 61.901663) (xy 58.349911 61.913601) (xy 58.341981 61.944489) (xy 58.341981 61.964743) (xy 58.34043 61.984453) (xy 58.337261 62.004462) (xy 58.338007 62.012354) (xy 58.341422 62.04848) (xy 58.341981 62.060338) (xy 58.34198 79.709925) (xy 58.321978 79.778046) (xy 58.305075 79.79902) (xy 56.5495 81.554595) (xy 56.487188 81.588621) (xy 56.460405 81.5915) (xy 56.404513 81.5915) (xy 56.398061 81.592872) (xy 56.398056 81.592872) (xy 56.311112 81.611353) (xy 56.217712 81.631206) (xy 56.211682 81.633891) (xy 56.211681 81.633891) (xy 56.049278 81.706197) (xy 56.049276 81.706198) (xy 56.043248 81.708882) (xy 55.888747 81.821134) (xy 55.884326 81.826044) (xy 55.884325 81.826045) (xy 55.773322 81.949327) (xy 55.76096 81.963056) (xy 55.729329 82.017842) (xy 55.686011 82.092872) (xy 55.665473 82.128444) (xy 55.606458 82.310072) (xy 55.605768 82.316633) (xy 55.605768 82.316635) (xy 55.591879 82.448782) (xy 55.586496 82.5) (xy 55.606458 82.689928) (xy 55.665473 82.871556) (xy 55.76096 83.036944) (xy 55.765378 83.041851) (xy 55.765379 83.041852) (xy 55.844598 83.129834) (xy 55.888747 83.178866) (xy 56.043248 83.291118) (xy 56.049276 83.293802) (xy 56.049278 83.293803) (xy 56.209799 83.365271) (xy 56.217712 83.368794) (xy 56.311113 83.388647) (xy 56.398056 83.407128) (xy 56.398061 83.407128) (xy 56.404513 83.4085) (xy 56.595487 83.4085) (xy 56.601939 83.407128) (xy 56.601944 83.407128) (xy 56.688887 83.388647) (xy 56.782288 83.368794) (xy 56.790201 83.365271) (xy 56.950722 83.293803) (xy 56.950724 83.293802) (xy 56.956752 83.291118) (xy 57.111253 83.178866) (xy 57.155402 83.129834) (xy 57.234621 83.041852) (xy 57.234622 83.041851) (xy 57.23904 83.036944) (xy 57.334527 82.871556) (xy 57.393542 82.689928) (xy 57.410907 82.524706) (xy 57.43792 82.45905) (xy 57.447122 82.448782) (xy 58.576405 81.319499) (xy 58.638717 81.285473) (xy 58.709532 81.290538) (xy 58.766368 81.333085) (xy 58.791179 81.399605) (xy 58.7915 81.408594) (xy 58.7915 91.1155) (xy 58.771498 91.183621) (xy 58.717842 91.230114) (xy 58.6655 91.2415) (xy 55.023136 91.2415) (xy 55.006693 91.240422) (xy 54.975 91.23625) (xy 54.966811 91.237328) (xy 54.935126 91.241499) (xy 54.935117 91.2415) (xy 54.935115 91.2415) (xy 54.935109 91.241501) (xy 54.935107 91.241501) (xy 54.835543 91.254609) (xy 54.824336 91.256084) (xy 54.824334 91.256085) (xy 54.816149 91.257162) (xy 54.754727 91.282604) (xy 54.675752 91.315316) (xy 54.67575 91.315317) (xy 54.668124 91.318476) (xy 54.661575 91.323502) (xy 54.661574 91.323502) (xy 54.648387 91.333621) (xy 54.606174 91.366013) (xy 54.541013 91.416013) (xy 54.535987 91.422563) (xy 54.521552 91.441375) (xy 54.510685 91.453767) (xy 54.213766 91.750685) (xy 54.201376 91.761551) (xy 54.176013 91.781013) (xy 54.151526 91.812925) (xy 54.151523 91.812928) (xy 54.151517 91.812936) (xy 54.111359 91.865271) (xy 54.078476 91.908124) (xy 54.057873 91.957865) (xy 54.018429 92.053089) (xy 53.97388 92.10837) (xy 53.960201 92.116634) (xy 53.9335 92.130534) (xy 53.883607 92.156507) (xy 53.870263 92.166526) (xy 53.709491 92.287237) (xy 53.704965 92.290635) (xy 53.550629 92.452138) (xy 53.443201 92.609621) (xy 53.388293 92.654621) (xy 53.317768 92.662792) (xy 53.254021 92.631538) (xy 53.233324 92.607054) (xy 53.152822 92.482617) (xy 53.15282 92.482614) (xy 53.150014 92.478277) (xy 52.99967 92.313051) (xy 52.995619 92.309852) (xy 52.995615 92.309848) (xy 52.828414 92.1778) (xy 52.82841 92.177798) (xy 52.824359 92.174598) (xy 52.819829 92.172097) (xy 52.768114 92.143549) (xy 52.628789 92.066638) (xy 52.62392 92.064914) (xy 52.623916 92.064912) (xy 52.423087 91.993795) (xy 52.423083 91.993794) (xy 52.418212 91.992069) (xy 52.413119 91.991162) (xy 52.413116 91.991161) (xy 52.203373 91.9538) (xy 52.203367 91.953799) (xy 52.198284 91.952894) (xy 52.124452 91.951992) (xy 51.980081 91.950228) (xy 51.980079 91.950228) (xy 51.974911 91.950165) (xy 51.754091 91.983955) (xy 51.541756 92.053357) (xy 51.511443 92.069137) (xy 51.393501 92.130534) (xy 51.343607 92.156507) (xy 51.339474 92.15961) (xy 51.339471 92.159612) (xy 51.1691 92.28753) (xy 51.164965 92.290635) (xy 51.010629 92.452138) (xy 50.903201 92.609621) (xy 50.848293 92.654621) (xy 50.777768 92.662792) (xy 50.714021 92.631538) (xy 50.693324 92.607054) (xy 50.612822 92.482617) (xy 50.61282 92.482614) (xy 50.610014 92.478277) (xy 50.45967 92.313051) (xy 50.455619 92.309852) (xy 50.455615 92.309848) (xy 50.288414 92.1778) (xy 50.28841 92.177798) (xy 50.284359 92.174598) (xy 50.279829 92.172097) (xy 50.228114 92.143549) (xy 50.088789 92.066638) (xy 50.08392 92.064914) (xy 50.083916 92.064912) (xy 49.883087 91.993795) (xy 49.883083 91.993794) (xy 49.878212 91.992069) (xy 49.873119 91.991162) (xy 49.873116 91.991161) (xy 49.663373 91.9538) (xy 49.663367 91.953799) (xy 49.658284 91.952894) (xy 49.584452 91.951992) (xy 49.440081 91.950228) (xy 49.440079 91.950228) (xy 49.434911 91.950165) (xy 49.214091 91.983955) (xy 49.001756 92.053357) (xy 48.971443 92.069137) (xy 48.853501 92.130534) (xy 48.803607 92.156507) (xy 48.799474 92.15961) (xy 48.799471 92.159612) (xy 48.6291 92.28753) (xy 48.624965 92.290635) (xy 48.470629 92.452138) (xy 48.363201 92.609621) (xy 48.308293 92.654621) (xy 48.237768 92.662792) (xy 48.174021 92.631538) (xy 48.153324 92.607054) (xy 48.072822 92.482617) (xy 48.07282 92.482614) (xy 48.070014 92.478277) (xy 47.91967 92.313051) (xy 47.915619 92.309852) (xy 47.915615 92.309848) (xy 47.748414 92.1778) (xy 47.74841 92.177798) (xy 47.744359 92.174598) (xy 47.739829 92.172097) (xy 47.688114 92.143549) (xy 47.548789 92.066638) (xy 47.54392 92.064914) (xy 47.543916 92.064912) (xy 47.343087 91.993795) (xy 47.343083 91.993794) (xy 47.338212 91.992069) (xy 47.333119 91.991162) (xy 47.333116 91.991161) (xy 47.123373 91.9538) (xy 47.123367 91.953799) (xy 47.118284 91.952894) (xy 47.044452 91.951992) (xy 46.900081 91.950228) (xy 46.900079 91.950228) (xy 46.894911 91.950165) (xy 46.674091 91.983955) (xy 46.461756 92.053357) (xy 46.431443 92.069137) (xy 46.313501 92.130534) (xy 46.263607 92.156507) (xy 46.259474 92.15961) (xy 46.259471 92.159612) (xy 46.0891 92.28753) (xy 46.084965 92.290635) (xy 46.081393 92.294373) (xy 46.003898 92.375466) (xy 45.942374 92.410895) (xy 45.871462 92.407438) (xy 45.813676 92.366192) (xy 45.794823 92.332644) (xy 45.753324 92.221946) (xy 45.744786 92.206351) (xy 45.668285 92.104276) (xy 45.655724 92.091715) (xy 45.553649 92.015214) (xy 45.538054 92.006676) (xy 45.417606 91.961522) (xy 45.402351 91.957895) (xy 45.351486 91.952369) (xy 45.344672 91.952) (xy 44.722115 91.952) (xy 44.706876 91.956475) (xy 44.705671 91.957865) (xy 44.704 91.965548) (xy 44.704 94.649884) (xy 44.708475 94.665123) (xy 44.709865 94.666328) (xy 44.717548 94.667999) (xy 45.344669 94.667999) (xy 45.35149 94.667629) (xy 45.402352 94.662105) (xy 45.417604 94.658479) (xy 45.538054 94.613324) (xy 45.553649 94.604786) (xy 45.655724 94.528285) (xy 45.668285 94.515724) (xy 45.744786 94.413649) (xy 45.753324 94.398054) (xy 45.794225 94.288952) (xy 45.836867 94.232188) (xy 45.903428 94.207488) (xy 45.972777 94.222696) (xy 46.007444 94.250684) (xy 46.032865 94.280031) (xy 46.032869 94.280035) (xy 46.03625 94.283938) (xy 46.208126 94.426632) (xy 46.401 94.539338) (xy 46.405825 94.54118) (xy 46.405826 94.541181) (xy 46.435305 94.552438) (xy 46.609692 94.61903) (xy 46.61476 94.620061) (xy 46.614763 94.620062) (xy 46.700705 94.637547) (xy 46.828597 94.663567) (xy 46.833772 94.663757) (xy 46.833774 94.663757) (xy 47.046673 94.671564) (xy 47.046677 94.671564) (xy 47.051837 94.671753) (xy 47.056957 94.671097) (xy 47.056959 94.671097) (xy 47.268288 94.644025) (xy 47.268289 94.644025) (xy 47.273416 94.643368) (xy 47.278366 94.641883) (xy 47.482429 94.580661) (xy 47.482434 94.580659) (xy 47.487384 94.579174) (xy 47.687994 94.480896) (xy 47.86986 94.351173) (xy 48.028096 94.193489) (xy 48.04066 94.176005) (xy 48.158453 94.012077) (xy 48.159776 94.013028) (xy 48.206645 93.969857) (xy 48.27658 93.957625) (xy 48.342026 93.985144) (xy 48.369875 94.016994) (xy 48.429987 94.115088) (xy 48.57625 94.283938) (xy 48.748126 94.426632) (xy 48.791224 94.451816) (xy 48.83407 94.476853) (xy 48.882794 94.528491) (xy 48.8965 94.585641) (xy 48.8965 94.851233) (xy 48.895973 94.862416) (xy 48.894298 94.869909) (xy 48.894547 94.877835) (xy 48.894547 94.877836) (xy 48.896438 94.937986) (xy 48.8965 94.941945) (xy 48.8965 94.969856) (xy 48.896997 94.97379) (xy 48.896997 94.973791) (xy 48.897005 94.973856) (xy 48.897938 94.985693) (xy 48.899327 95.029889) (xy 48.903727 95.045033) (xy 48.904978 95.049339) (xy 48.908987 95.0687) (xy 48.911526 95.088797) (xy 48.914445 95.096168) (xy 48.914445 95.09617) (xy 48.927804 95.129912) (xy 48.931649 95.141142) (xy 48.943982 95.183593) (xy 48.948015 95.190412) (xy 48.948017 95.190417) (xy 48.954293 95.201028) (xy 48.962988 95.218776) (xy 48.970448 95.237617) (xy 48.97511 95.244033) (xy 48.97511 95.244034) (xy 48.996436 95.273387) (xy 49.002952 95.283307) (xy 49.025458 95.321362) (xy 49.039779 95.335683) (xy 49.052619 95.350716) (xy 49.064528 95.367107) (xy 49.079655 95.379621) (xy 49.098605 95.395298) (xy 49.107384 95.403288) (xy 55.179595 101.475499) (xy 55.213621 101.537811) (xy 55.2165 101.564594) (xy 55.2165 109.685247) (xy 55.196498 109.753368) (xy 55.142842 109.799861) (xy 55.072568 109.809965) (xy 55.048441 109.80402) (xy 54.963091 109.773796) (xy 54.963083 109.773794) (xy 54.958212 109.772069) (xy 54.953119 109.771162) (xy 54.953116 109.771161) (xy 54.743373 109.7338) (xy 54.743367 109.733799) (xy 54.738284 109.732894) (xy 54.664452 109.731992) (xy 54.520081 109.730228) (xy 54.520079 109.730228) (xy 54.514911 109.730165) (xy 54.294091 109.763955) (xy 54.081756 109.833357) (xy 53.883607 109.936507) (xy 53.879474 109.93961) (xy 53.879471 109.939612) (xy 53.7091 110.06753) (xy 53.704965 110.070635) (xy 53.679447 110.097338) (xy 53.581842 110.199476) (xy 53.550629 110.232138) (xy 53.443201 110.389621) (xy 53.388293 110.434621) (xy 53.317768 110.442792) (xy 53.254021 110.411538) (xy 53.233324 110.387054) (xy 53.152822 110.262617) (xy 53.15282 110.262614) (xy 53.150014 110.258277) (xy 52.99967 110.093051) (xy 52.995619 110.089852) (xy 52.995615 110.089848) (xy 52.828414 109.9578) (xy 52.82841 109.957798) (xy 52.824359 109.954598) (xy 52.628789 109.846638) (xy 52.62392 109.844914) (xy 52.623916 109.844912) (xy 52.423087 109.773795) (xy 52.423083 109.773794) (xy 52.418212 109.772069) (xy 52.413119 109.771162) (xy 52.413116 109.771161) (xy 52.203373 109.7338) (xy 52.203367 109.733799) (xy 52.198284 109.732894) (xy 52.124452 109.731992) (xy 51.980081 109.730228) (xy 51.980079 109.730228) (xy 51.974911 109.730165) (xy 51.754091 109.763955) (xy 51.541756 109.833357) (xy 51.343607 109.936507) (xy 51.339474 109.93961) (xy 51.339471 109.939612) (xy 51.1691 110.06753) (xy 51.164965 110.070635) (xy 51.139447 110.097338) (xy 51.041842 110.199476) (xy 51.010629 110.232138) (xy 50.903201 110.389621) (xy 50.848293 110.434621) (xy 50.777768 110.442792) (xy 50.714021 110.411538) (xy 50.693324 110.387054) (xy 50.612822 110.262617) (xy 50.61282 110.262614) (xy 50.610014 110.258277) (xy 50.45967 110.093051) (xy 50.455619 110.089852) (xy 50.455615 110.089848) (xy 50.288414 109.9578) (xy 50.28841 109.957798) (xy 50.284359 109.954598) (xy 50.088789 109.846638) (xy 50.08392 109.844914) (xy 50.083916 109.844912) (xy 49.883087 109.773795) (xy 49.883083 109.773794) (xy 49.878212 109.772069) (xy 49.873119 109.771162) (xy 49.873116 109.771161) (xy 49.663373 109.7338) (xy 49.663367 109.733799) (xy 49.658284 109.732894) (xy 49.584452 109.731992) (xy 49.440081 109.730228) (xy 49.440079 109.730228) (xy 49.434911 109.730165) (xy 49.214091 109.763955) (xy 49.001756 109.833357) (xy 48.803607 109.936507) (xy 48.799474 109.93961) (xy 48.799471 109.939612) (xy 48.6291 110.06753) (xy 48.624965 110.070635) (xy 48.599447 110.097338) (xy 48.501842 110.199476) (xy 48.470629 110.232138) (xy 48.363201 110.389621) (xy 48.308293 110.434621) (xy 48.237768 110.442792) (xy 48.174021 110.411538) (xy 48.153324 110.387054) (xy 48.072822 110.262617) (xy 48.07282 110.262614) (xy 48.070014 110.258277) (xy 47.91967 110.093051) (xy 47.915619 110.089852) (xy 47.915615 110.089848) (xy 47.748414 109.9578) (xy 47.74841 109.957798) (xy 47.744359 109.954598) (xy 47.548789 109.846638) (xy 47.54392 109.844914) (xy 47.543916 109.844912) (xy 47.343087 109.773795) (xy 47.343083 109.773794) (xy 47.338212 109.772069) (xy 47.333119 109.771162) (xy 47.333116 109.771161) (xy 47.123373 109.7338) (xy 47.123367 109.733799) (xy 47.118284 109.732894) (xy 47.044452 109.731992) (xy 46.900081 109.730228) (xy 46.900079 109.730228) (xy 46.894911 109.730165) (xy 46.674091 109.763955) (xy 46.461756 109.833357) (xy 46.263607 109.936507) (xy 46.259474 109.93961) (xy 46.259471 109.939612) (xy 46.0891 110.06753) (xy 46.084965 110.070635) (xy 46.081393 110.074373) (xy 46.003898 110.155466) (xy 45.942374 110.190895) (xy 45.871462 110.187438) (xy 45.813676 110.146192) (xy 45.794823 110.112644) (xy 45.753324 110.001946) (xy 45.744786 109.986351) (xy 45.668285 109.884276) (xy 45.655724 109.871715) (xy 45.553649 109.795214) (xy 45.538054 109.786676) (xy 45.417606 109.741522) (xy 45.402351 109.737895) (xy 45.351486 109.732369) (xy 45.344672 109.732) (xy 44.722115 109.732) (xy 44.706876 109.736475) (xy 44.705671 109.737865) (xy 44.704 109.745548) (xy 44.704 112.429884) (xy 44.196 112.429884) (xy 44.196 109.750116) (xy 44.191525 109.734877) (xy 44.190135 109.733672) (xy 44.182452 109.732001) (xy 43.555331 109.732001) (xy 43.54851 109.732371) (xy 43.497648 109.737895) (xy 43.482396 109.741521) (xy 43.361946 109.786676) (xy 43.346351 109.795214) (xy 43.244276 109.871715) (xy 43.231715 109.884276) (xy 43.155214 109.986351) (xy 43.146676 110.001946) (xy 43.105297 110.112322) (xy 43.062655 110.169087) (xy 42.996093 110.193786) (xy 42.926744 110.178578) (xy 42.894121 110.152891) (xy 42.843151 110.096876) (xy 42.843145 110.09687) (xy 42.83967 110.093051) (xy 42.835619 110.089852) (xy 42.835615 110.089848) (xy 42.668414 109.9578) (xy 42.66841 109.957798) (xy 42.664359 109.954598) (xy 42.468789 109.846638) (xy 42.46392 109.844914) (xy 42.463916 109.844912) (xy 42.263087 109.773795) (xy 42.263083 109.773794) (xy 42.258212 109.772069) (xy 42.253119 109.771162) (xy 42.253116 109.771161) (xy 42.043373 109.7338) (xy 42.043367 109.733799) (xy 42.038284 109.732894) (xy 41.964452 109.731992) (xy 41.820081 109.730228) (xy 41.820079 109.730228) (xy 41.814911 109.730165) (xy 41.594091 109.763955) (xy 41.381756 109.833357) (xy 41.183607 109.936507) (xy 41.179474 109.93961) (xy 41.179471 109.939612) (xy 41.0091 110.06753) (xy 41.004965 110.070635) (xy 40.979447 110.097338) (xy 40.881842 110.199476) (xy 40.850629 110.232138) (xy 40.743201 110.389621) (xy 40.688293 110.434621) (xy 40.617768 110.442792) (xy 40.554021 110.411538) (xy 40.533324 110.387054) (xy 40.452822 110.262617) (xy 40.45282 110.262614) (xy 40.450014 110.258277) (xy 40.29967 110.093051) (xy 40.295619 110.089852) (xy 40.295615 110.089848) (xy 40.128414 109.9578) (xy 40.12841 109.957798) (xy 40.124359 109.954598) (xy 39.928789 109.846638) (xy 39.92392 109.844914) (xy 39.923916 109.844912) (xy 39.723087 109.773795) (xy 39.723083 109.773794) (xy 39.718212 109.772069) (xy 39.713119 109.771162) (xy 39.713116 109.771161) (xy 39.503373 109.7338) (xy 39.503367 109.733799) (xy 39.498284 109.732894) (xy 39.424452 109.731992) (xy 39.280081 109.730228) (xy 39.280079 109.730228) (xy 39.274911 109.730165) (xy 39.054091 109.763955) (xy 38.841756 109.833357) (xy 38.643607 109.936507) (xy 38.639474 109.93961) (xy 38.639471 109.939612) (xy 38.4691 110.06753) (xy 38.464965 110.070635) (xy 38.439447 110.097338) (xy 38.341842 110.199476) (xy 38.310629 110.232138) (xy 38.30772 110.236403) (xy 38.307714 110.236411) (xy 38.238588 110.337746) (xy 38.183677 110.382749) (xy 38.113152 110.39092) (xy 38.049405 110.359666) (xy 38.012675 110.298909) (xy 38.0085 110.266742) (xy 38.0085 105.6337) (xy 38.028502 105.565579) (xy 38.082158 105.519086) (xy 38.152432 105.508982) (xy 38.217012 105.538476) (xy 38.241932 105.567864) (xy 38.359501 105.759719) (xy 38.511147 105.934784) (xy 38.689349 106.08273) (xy 38.889322 106.199584) (xy 39.105694 106.282209) (xy 39.11076 106.28324) (xy 39.110761 106.28324) (xy 39.123177 106.285766) (xy 39.332656 106.328385) (xy 39.463324 106.333176) (xy 39.558949 106.336683) (xy 39.558953 106.336683) (xy 39.564113 106.336872) (xy 39.569233 106.336216) (xy 39.569235 106.336216) (xy 39.64227 106.32686) (xy 39.793847 106.307442) (xy 39.798795 106.305957) (xy 39.798802 106.305956) (xy 40.010747 106.242369) (xy 40.01569 106.240886) (xy 40.096236 106.201427) (xy 40.219049 106.141262) (xy 40.219052 106.14126) (xy 40.223684 106.138991) (xy 40.412243 106.004494) (xy 40.576303 105.841005) (xy 40.711458 105.652917) (xy 40.728077 105.619292) (xy 40.811784 105.449922) (xy 40.811785 105.44992) (xy 40.814078 105.44528) (xy 40.881408 105.223671) (xy 40.91164 104.994041) (xy 40.913327 104.925) (xy 40.903592 104.80659) (xy 40.894773 104.699318) (xy 40.894772 104.699312) (xy 40.894349 104.694167) (xy 40.876975 104.625) (xy 41.266693 104.625) (xy 41.285885 104.844371) (xy 41.34288 105.057076) (xy 41.345205 105.062061) (xy 41.433618 105.251666) (xy 41.433621 105.251671) (xy 41.435944 105.256653) (xy 41.4391 105.26116) (xy 41.439101 105.261162) (xy 41.503555 105.353211) (xy 41.562251 105.437038) (xy 41.717962 105.592749) (xy 41.722471 105.595906) (xy 41.722473 105.595908) (xy 41.774439 105.632295) (xy 41.898346 105.719056) (xy 42.097924 105.81212) (xy 42.310629 105.869115) (xy 42.53 105.888307) (xy 42.749371 105.869115) (xy 42.962076 105.81212) (xy 43.161654 105.719056) (xy 43.285561 105.632295) (xy 43.337527 105.595908) (xy 43.337529 105.595906) (xy 43.342038 105.592749) (xy 43.497749 105.437038) (xy 43.556446 105.353211) (xy 43.620899 105.261162) (xy 43.6209 105.26116) (xy 43.624056 105.256653) (xy 43.626379 105.251671) (xy 43.626382 105.251666) (xy 43.714795 105.062061) (xy 43.71712 105.057076) (xy 43.774115 104.844371) (xy 43.793307 104.625) (xy 43.774115 104.405629) (xy 43.71712 104.192924) (xy 43.658405 104.067009) (xy 43.626382 103.998334) (xy 43.626379 103.998329) (xy 43.624056 103.993347) (xy 43.611584 103.975535) (xy 43.500908 103.817473) (xy 43.500906 103.81747) (xy 43.497749 103.812962) (xy 43.342038 103.657251) (xy 43.325942 103.64598) (xy 43.201096 103.558562) (xy 43.161654 103.530944) (xy 42.962076 103.43788) (xy 42.749371 103.380885) (xy 42.53 103.361693) (xy 42.310629 103.380885) (xy 42.097924 103.43788) (xy 42.006975 103.48029) (xy 41.903334 103.528618) (xy 41.903329 103.528621) (xy 41.898347 103.530944) (xy 41.89384 103.5341) (xy 41.893838 103.534101) (xy 41.722473 103.654092) (xy 41.72247 103.654094) (xy 41.717962 103.657251) (xy 41.562251 103.812962) (xy 41.559094 103.81747) (xy 41.559092 103.817473) (xy 41.448416 103.975535) (xy 41.435944 103.993347) (xy 41.433621 103.998329) (xy 41.433618 103.998334) (xy 41.401595 104.067009) (xy 41.34288 104.192924) (xy 41.285885 104.405629) (xy 41.266693 104.625) (xy 40.876975 104.625) (xy 40.837925 104.469533) (xy 40.81252 104.411106) (xy 40.74763 104.261868) (xy 40.747628 104.261865) (xy 40.74557 104.257131) (xy 40.619764 104.062665) (xy 40.463887 103.891358) (xy 40.459836 103.888159) (xy 40.459832 103.888155) (xy 40.286177 103.751011) (xy 40.286172 103.751008) (xy 40.282123 103.74781) (xy 40.277607 103.745317) (xy 40.277604 103.745315) (xy 40.083879 103.638373) (xy 40.083875 103.638371) (xy 40.079355 103.635876) (xy 40.074486 103.634152) (xy 40.074482 103.63415) (xy 39.865903 103.560288) (xy 39.865899 103.560287) (xy 39.861028 103.558562) (xy 39.855935 103.557655) (xy 39.855932 103.557654) (xy 39.638095 103.518851) (xy 39.638089 103.51885) (xy 39.633006 103.517945) (xy 39.560096 103.517054) (xy 39.406581 103.515179) (xy 39.406579 103.515179) (xy 39.401411 103.515116) (xy 39.172464 103.55015) (xy 38.952314 103.622106) (xy 38.947726 103.624494) (xy 38.947722 103.624496) (xy 38.751461 103.726663) (xy 38.746872 103.729052) (xy 38.742739 103.732155) (xy 38.742736 103.732157) (xy 38.56579 103.865012) (xy 38.561655 103.868117) (xy 38.401639 104.035564) (xy 38.398725 104.039836) (xy 38.398724 104.039837) (xy 38.383152 104.062665) (xy 38.271119 104.226899) (xy 38.268943 104.231587) (xy 38.248788 104.275007) (xy 38.201964 104.328373) (xy 38.13372 104.347954) (xy 38.065725 104.32753) (xy 38.019565 104.273588) (xy 38.0085 104.221956) (xy 38.0085 100.1837) (xy 38.028502 100.115579) (xy 38.082158 100.069086) (xy 38.152432 100.058982) (xy 38.217012 100.088476) (xy 38.241932 100.117864) (xy 38.301768 100.215507) (xy 38.340846 100.279276) (xy 38.359501 100.309719) (xy 38.511147 100.484784) (xy 38.689349 100.63273) (xy 38.889322 100.749584) (xy 38.894147 100.751426) (xy 38.894148 100.751427) (xy 38.960363 100.776712) (xy 39.105694 100.832209) (xy 39.11076 100.83324) (xy 39.110761 100.83324) (xy 39.163846 100.84404) (xy 39.332656 100.878385) (xy 39.463324 100.883176) (xy 39.558949 100.886683) (xy 39.558953 100.886683) (xy 39.564113 100.886872) (xy 39.569233 100.886216) (xy 39.569235 100.886216) (xy 39.64227 100.87686) (xy 39.793847 100.857442) (xy 39.798795 100.855957) (xy 39.798802 100.855956) (xy 40.010747 100.792369) (xy 40.01569 100.790886) (xy 40.096236 100.751427) (xy 40.219049 100.691262) (xy 40.219052 100.69126) (xy 40.223684 100.688991) (xy 40.412243 100.554494) (xy 40.576303 100.391005) (xy 40.711458 100.202917) (xy 40.726958 100.171556) (xy 40.811784 99.999922) (xy 40.811785 99.99992) (xy 40.814078 99.99528) (xy 40.881004 99.775) (xy 41.266693 99.775) (xy 41.285885 99.994371) (xy 41.34288 100.207076) (xy 41.381954 100.290871) (xy 41.433618 100.401666) (xy 41.433621 100.401671) (xy 41.435944 100.406653) (xy 41.4391 100.41116) (xy 41.439101 100.411162) (xy 41.554285 100.575661) (xy 41.562251 100.587038) (xy 41.717962 100.742749) (xy 41.722471 100.745906) (xy 41.722473 100.745908) (xy 41.766466 100.776712) (xy 41.898346 100.869056) (xy 42.097924 100.96212) (xy 42.310629 101.019115) (xy 42.53 101.038307) (xy 42.749371 101.019115) (xy 42.962076 100.96212) (xy 43.161654 100.869056) (xy 43.293534 100.776712) (xy 43.337527 100.745908) (xy 43.337529 100.745906) (xy 43.342038 100.742749) (xy 43.497749 100.587038) (xy 43.505716 100.575661) (xy 43.620899 100.411162) (xy 43.6209 100.41116) (xy 43.624056 100.406653) (xy 43.626379 100.401671) (xy 43.626382 100.401666) (xy 43.678046 100.290871) (xy 43.71712 100.207076) (xy 43.774115 99.994371) (xy 43.793307 99.775) (xy 43.774115 99.555629) (xy 43.71712 99.342924) (xy 43.629033 99.15402) (xy 43.626382 99.148334) (xy 43.626379 99.148329) (xy 43.624056 99.143347) (xy 43.609572 99.122662) (xy 43.500908 98.967473) (xy 43.500906 98.96747) (xy 43.497749 98.962962) (xy 43.342038 98.807251) (xy 43.335672 98.802793) (xy 43.258536 98.748782) (xy 43.161654 98.680944) (xy 42.962076 98.58788) (xy 42.749371 98.530885) (xy 42.53 98.511693) (xy 42.310629 98.530885) (xy 42.097924 98.58788) (xy 42.027496 98.620721) (xy 41.903334 98.678618) (xy 41.903329 98.678621) (xy 41.898347 98.680944) (xy 41.89384 98.6841) (xy 41.893838 98.684101) (xy 41.722473 98.804092) (xy 41.72247 98.804094) (xy 41.717962 98.807251) (xy 41.562251 98.962962) (xy 41.559094 98.96747) (xy 41.559092 98.967473) (xy 41.450428 99.122662) (xy 41.435944 99.143347) (xy 41.433621 99.148329) (xy 41.433618 99.148334) (xy 41.430967 99.15402) (xy 41.34288 99.342924) (xy 41.285885 99.555629) (xy 41.266693 99.775) (xy 40.881004 99.775) (xy 40.881408 99.773671) (xy 40.91164 99.544041) (xy 40.913327 99.475) (xy 40.902905 99.348235) (xy 40.894773 99.249318) (xy 40.894772 99.249312) (xy 40.894349 99.244167) (xy 40.84676 99.054707) (xy 40.839184 99.024544) (xy 40.839183 99.02454) (xy 40.837925 99.019533) (xy 40.815289 98.967473) (xy 40.74763 98.811868) (xy 40.747628 98.811865) (xy 40.74557 98.807131) (xy 40.619764 98.612665) (xy 40.599768 98.590689) (xy 40.570134 98.558122) (xy 40.463887 98.441358) (xy 40.459836 98.438159) (xy 40.459832 98.438155) (xy 40.286177 98.301011) (xy 40.286172 98.301008) (xy 40.282123 98.29781) (xy 40.277607 98.295317) (xy 40.277604 98.295315) (xy 40.083879 98.188373) (xy 40.083875 98.188371) (xy 40.079355 98.185876) (xy 40.074486 98.184152) (xy 40.074482 98.18415) (xy 39.865903 98.110288) (xy 39.865899 98.110287) (xy 39.861028 98.108562) (xy 39.855935 98.107655) (xy 39.855932 98.107654) (xy 39.638095 98.068851) (xy 39.638089 98.06885) (xy 39.633006 98.067945) (xy 39.560096 98.067054) (xy 39.406581 98.065179) (xy 39.406579 98.065179) (xy 39.401411 98.065116) (xy 39.172464 98.10015) (xy 38.952314 98.172106) (xy 38.947726 98.174494) (xy 38.947722 98.174496) (xy 38.751461 98.276663) (xy 38.746872 98.279052) (xy 38.742739 98.282155) (xy 38.742736 98.282157) (xy 38.56579 98.415012) (xy 38.561655 98.418117) (xy 38.558083 98.421855) (xy 38.45684 98.5278) (xy 38.401639 98.585564) (xy 38.398725 98.589836) (xy 38.398724 98.589837) (xy 38.383152 98.612665) (xy 38.271119 98.776899) (xy 38.268943 98.781587) (xy 38.248788 98.825007) (xy 38.201964 98.878373) (xy 38.13372 98.897954) (xy 38.065725 98.87753) (xy 38.019565 98.823588) (xy 38.0085 98.771956) (xy 38.0085 94.135143) (xy 38.028502 94.067022) (xy 38.082158 94.020529) (xy 38.152432 94.010425) (xy 38.217012 94.039919) (xy 38.241933 94.069308) (xy 38.269987 94.115088) (xy 38.41625 94.283938) (xy 38.588126 94.426632) (xy 38.781 94.539338) (xy 38.785825 94.54118) (xy 38.785826 94.541181) (xy 38.815305 94.552438) (xy 38.989692 94.61903) (xy 38.99476 94.620061) (xy 38.994763 94.620062) (xy 39.080705 94.637547) (xy 39.208597 94.663567) (xy 39.213772 94.663757) (xy 39.213774 94.663757) (xy 39.426673 94.671564) (xy 39.426677 94.671564) (xy 39.431837 94.671753) (xy 39.436957 94.671097) (xy 39.436959 94.671097) (xy 39.648288 94.644025) (xy 39.648289 94.644025) (xy 39.653416 94.643368) (xy 39.658366 94.641883) (xy 39.862429 94.580661) (xy 39.862434 94.580659) (xy 39.867384 94.579174) (xy 40.067994 94.480896) (xy 40.24986 94.351173) (xy 40.408096 94.193489) (xy 40.42066 94.176005) (xy 40.538453 94.012077) (xy 40.539776 94.013028) (xy 40.586645 93.969857) (xy 40.65658 93.957625) (xy 40.722026 93.985144) (xy 40.749875 94.016994) (xy 40.809987 94.115088) (xy 40.95625 94.283938) (xy 41.128126 94.426632) (xy 41.321 94.539338) (xy 41.325825 94.54118) (xy 41.325826 94.541181) (xy 41.355305 94.552438) (xy 41.529692 94.61903) (xy 41.53476 94.620061) (xy 41.534763 94.620062) (xy 41.620705 94.637547) (xy 41.748597 94.663567) (xy 41.753772 94.663757) (xy 41.753774 94.663757) (xy 41.966673 94.671564) (xy 41.966677 94.671564) (xy 41.971837 94.671753) (xy 41.976957 94.671097) (xy 41.976959 94.671097) (xy 42.188288 94.644025) (xy 42.188289 94.644025) (xy 42.193416 94.643368) (xy 42.198366 94.641883) (xy 42.402429 94.580661) (xy 42.402434 94.580659) (xy 42.407384 94.579174) (xy 42.607994 94.480896) (xy 42.78986 94.351173) (xy 42.857331 94.283938) (xy 42.898479 94.242933) (xy 42.960851 94.209017) (xy 43.031658 94.214205) (xy 43.088419 94.256851) (xy 43.105401 94.287954) (xy 43.146676 94.398054) (xy 43.155214 94.413649) (xy 43.231715 94.515724) (xy 43.244276 94.528285) (xy 43.346351 94.604786) (xy 43.361946 94.613324) (xy 43.482394 94.658478) (xy 43.497649 94.662105) (xy 43.548514 94.667631) (xy 43.555328 94.668) (xy 44.177885 94.668) (xy 44.193124 94.663525) (xy 44.194329 94.662135) (xy 44.196 94.654452) (xy 44.196 91.970116) (xy 44.191525 91.954877) (xy 44.190135 91.953672) (xy 44.182452 91.952001) (xy 43.555331 91.952001) (xy 43.54851 91.952371) (xy 43.497648 91.957895) (xy 43.482396 91.961521) (xy 43.361946 92.006676) (xy 43.346351 92.015214) (xy 43.244276 92.091715) (xy 43.231715 92.104276) (xy 43.155214 92.206351) (xy 43.146676 92.221946) (xy 43.105297 92.332322) (xy 43.062655 92.389087) (xy 42.996093 92.413786) (xy 42.926744 92.398578) (xy 42.894121 92.372891) (xy 42.843151 92.316876) (xy 42.843145 92.31687) (xy 42.83967 92.313051) (xy 42.835619 92.309852) (xy 42.835615 92.309848) (xy 42.668414 92.1778) (xy 42.66841 92.177798) (xy 42.664359 92.174598) (xy 42.659829 92.172097) (xy 42.608114 92.143549) (xy 42.468789 92.066638) (xy 42.46392 92.064914) (xy 42.463916 92.064912) (xy 42.263087 91.993795) (xy 42.263083 91.993794) (xy 42.258212 91.992069) (xy 42.253119 91.991162) (xy 42.253116 91.991161) (xy 42.043373 91.9538) (xy 42.043367 91.953799) (xy 42.038284 91.952894) (xy 41.964452 91.951992) (xy 41.820081 91.950228) (xy 41.820079 91.950228) (xy 41.814911 91.950165) (xy 41.594091 91.983955) (xy 41.381756 92.053357) (xy 41.351443 92.069137) (xy 41.233501 92.130534) (xy 41.183607 92.156507) (xy 41.179474 92.15961) (xy 41.179471 92.159612) (xy 41.0091 92.28753) (xy 41.004965 92.290635) (xy 40.850629 92.452138) (xy 40.743201 92.609621) (xy 40.688293 92.654621) (xy 40.617768 92.662792) (xy 40.554021 92.631538) (xy 40.533324 92.607054) (xy 40.452822 92.482617) (xy 40.45282 92.482614) (xy 40.450014 92.478277) (xy 40.29967 92.313051) (xy 40.295619 92.309852) (xy 40.295615 92.309848) (xy 40.128414 92.1778) (xy 40.12841 92.177798) (xy 40.124359 92.174598) (xy 40.119829 92.172097) (xy 40.068114 92.143549) (xy 39.928789 92.066638) (xy 39.92392 92.064914) (xy 39.923916 92.064912) (xy 39.723087 91.993795) (xy 39.723083 91.993794) (xy 39.718212 91.992069) (xy 39.713119 91.991162) (xy 39.713116 91.991161) (xy 39.503373 91.9538) (xy 39.503367 91.953799) (xy 39.498284 91.952894) (xy 39.424452 91.951992) (xy 39.280081 91.950228) (xy 39.280079 91.950228) (xy 39.274911 91.950165) (xy 39.054091 91.983955) (xy 38.841756 92.053357) (xy 38.811443 92.069137) (xy 38.693501 92.130534) (xy 38.643607 92.156507) (xy 38.639474 92.15961) (xy 38.639471 92.159612) (xy 38.4691 92.28753) (xy 38.464965 92.290635) (xy 38.310629 92.452138) (xy 38.30772 92.456403) (xy 38.307714 92.456411) (xy 38.238588 92.557746) (xy 38.183677 92.602749) (xy 38.113152 92.61092) (xy 38.049405 92.579666) (xy 38.012675 92.518909) (xy 38.0085 92.486742) (xy 38.0085 75.002134) (xy 48.0875 75.002134) (xy 48.094255 75.064316) (xy 48.145385 75.200705) (xy 48.232739 75.317261) (xy 48.349295 75.404615) (xy 48.485684 75.455745) (xy 48.547866 75.4625) (xy 50.052134 75.4625) (xy 50.114316 75.455745) (xy 50.250705 75.404615) (xy 50.367261 75.317261) (xy 50.454615 75.200705) (xy 50.505745 75.064316) (xy 50.5125 75.002134) (xy 50.5125 73.497866) (xy 50.505745 73.435684) (xy 50.454615 73.299295) (xy 50.367261 73.182739) (xy 50.250705 73.095385) (xy 50.114316 73.044255) (xy 50.052134 73.0375) (xy 49.972523 73.0375) (xy 49.904402 73.017498) (xy 49.857909 72.963842) (xy 49.847805 72.893568) (xy 49.877299 72.828988) (xy 49.909525 72.80238) (xy 49.912819 72.800478) (xy 49.94412 72.778561) (xy 49.952495 72.768084) (xy 49.945426 72.754636) (xy 49.312812 72.122022) (xy 49.298868 72.114408) (xy 49.297035 72.114539) (xy 49.29042 72.11879) (xy 48.653852 72.755358) (xy 48.647422 72.767133) (xy 48.656718 72.779148) (xy 48.687181 72.800478) (xy 48.690475 72.80238) (xy 48.691636 72.803598) (xy 48.691685 72.803632) (xy 48.691678 72.803642) (xy 48.739469 72.853762) (xy 48.752907 72.923475) (xy 48.726521 72.989386) (xy 48.66869 73.030569) (xy 48.627477 73.0375) (xy 48.547866 73.0375) (xy 48.485684 73.044255) (xy 48.349295 73.095385) (xy 48.232739 73.182739) (xy 48.145385 73.299295) (xy 48.094255 73.435684) (xy 48.0875 73.497866) (xy 48.0875 75.002134) (xy 38.0085 75.002134) (xy 38.0085 71.755475) (xy 48.083849 71.755475) (xy 48.101374 71.955789) (xy 48.103276 71.966576) (xy 48.155319 72.160801) (xy 48.159067 72.171097) (xy 48.244042 72.353328) (xy 48.249525 72.362824) (xy 48.271439 72.39412) (xy 48.281916 72.402495) (xy 48.295364 72.395426) (xy 48.927978 71.762812) (xy 48.934356 71.751132) (xy 49.664408 71.751132) (xy 49.664539 71.752965) (xy 49.66879 71.75958) (xy 50.305358 72.396148) (xy 50.317133 72.402578) (xy 50.329148 72.393282) (xy 50.350475 72.362824) (xy 50.355958 72.353328) (xy 50.440933 72.171097) (xy 50.444681 72.160801) (xy 50.496724 71.966576) (xy 50.498626 71.955789) (xy 50.516151 71.755475) (xy 50.516151 71.744525) (xy 50.498626 71.544211) (xy 50.496724 71.533424) (xy 50.444681 71.339199) (xy 50.440933 71.328903) (xy 50.355958 71.146672) (xy 50.350475 71.137176) (xy 50.328561 71.10588) (xy 50.318084 71.097505) (xy 50.304636 71.104574) (xy 49.672022 71.737188) (xy 49.664408 71.751132) (xy 48.934356 71.751132) (xy 48.935592 71.748868) (xy 48.935461 71.747035) (xy 48.93121 71.74042) (xy 48.294642 71.103852) (xy 48.282867 71.097422) (xy 48.270852 71.106718) (xy 48.249525 71.137176) (xy 48.244042 71.146672) (xy 48.159067 71.328903) (xy 48.155319 71.339199) (xy 48.103276 71.533424) (xy 48.101374 71.544211) (xy 48.083849 71.744525) (xy 48.083849 71.755475) (xy 38.0085 71.755475) (xy 38.0085 70.267133) (xy 48.647422 70.267133) (xy 48.656718 70.279148) (xy 48.687176 70.300475) (xy 48.696672 70.305958) (xy 48.867905 70.385805) (xy 48.92119 70.432722) (xy 48.940651 70.501) (xy 48.920109 70.56896) (xy 48.867905 70.614195) (xy 48.696672 70.694042) (xy 48.687176 70.699525) (xy 48.65588 70.721439) (xy 48.647505 70.731916) (xy 48.654574 70.745364) (xy 49.287188 71.377978) (xy 49.301132 71.385592) (xy 49.302965 71.385461) (xy 49.30958 71.38121) (xy 49.946148 70.744642) (xy 49.952578 70.732867) (xy 49.943282 70.720852) (xy 49.912824 70.699525) (xy 49.903328 70.694042) (xy 49.732095 70.614195) (xy 49.67881 70.567278) (xy 49.659349 70.499) (xy 49.679891 70.43104) (xy 49.732095 70.385805) (xy 49.903328 70.305958) (xy 49.912824 70.300475) (xy 49.94412 70.278561) (xy 49.952495 70.268084) (xy 49.945426 70.254636) (xy 49.312812 69.622022) (xy 49.298868 69.614408) (xy 49.297035 69.614539) (xy 49.29042 69.61879) (xy 48.653852 70.255358) (xy 48.647422 70.267133) (xy 38.0085 70.267133) (xy 38.0085 69.255475) (xy 48.083849 69.255475) (xy 48.101374 69.455789) (xy 48.103276 69.466576) (xy 48.155319 69.660801) (xy 48.159067 69.671097) (xy 48.244042 69.853328) (xy 48.249525 69.862824) (xy 48.271439 69.89412) (xy 48.281916 69.902495) (xy 48.295364 69.895426) (xy 48.927978 69.262812) (xy 48.934356 69.251132) (xy 49.664408 69.251132) (xy 49.664539 69.252965) (xy 49.66879 69.25958) (xy 50.305358 69.896148) (xy 50.317133 69.902578) (xy 50.329148 69.893282) (xy 50.350475 69.862824) (xy 50.355958 69.853328) (xy 50.440933 69.671097) (xy 50.444681 69.660801) (xy 50.496724 69.466576) (xy 50.498626 69.455789) (xy 50.516151 69.255475) (xy 50.516151 69.244525) (xy 50.498626 69.044211) (xy 50.496724 69.033424) (xy 50.444681 68.839199) (xy 50.440933 68.828903) (xy 50.355958 68.646672) (xy 50.350475 68.637176) (xy 50.328561 68.60588) (xy 50.318084 68.597505) (xy 50.304636 68.604574) (xy 49.672022 69.237188) (xy 49.664408 69.251132) (xy 48.934356 69.251132) (xy 48.935592 69.248868) (xy 48.935461 69.247035) (xy 48.93121 69.24042) (xy 48.294642 68.603852) (xy 48.282867 68.597422) (xy 48.270852 68.606718) (xy 48.249525 68.637176) (xy 48.244042 68.646672) (xy 48.159067 68.828903) (xy 48.155319 68.839199) (xy 48.103276 69.033424) (xy 48.101374 69.044211) (xy 48.083849 69.244525) (xy 48.083849 69.255475) (xy 38.0085 69.255475) (xy 38.0085 66.75) (xy 48.082868 66.75) (xy 48.101359 66.961353) (xy 48.102783 66.966666) (xy 48.102783 66.966668) (xy 48.147789 67.134631) (xy 48.15627 67.166284) (xy 48.158592 67.171264) (xy 48.158593 67.171266) (xy 48.243607 67.353579) (xy 48.24361 67.353584) (xy 48.245933 67.358566) (xy 48.298264 67.433302) (xy 48.363037 67.525807) (xy 48.367623 67.532357) (xy 48.517643 67.682377) (xy 48.522151 67.685534) (xy 48.522154 67.685536) (xy 48.580164 67.726155) (xy 48.691434 67.804067) (xy 48.696416 67.80639) (xy 48.696421 67.806393) (xy 48.867313 67.886081) (xy 48.920598 67.932998) (xy 48.940059 68.001276) (xy 48.919517 68.069236) (xy 48.867313 68.114471) (xy 48.696672 68.194042) (xy 48.687176 68.199525) (xy 48.65588 68.221439) (xy 48.647505 68.231916) (xy 48.654574 68.245364) (xy 49.287188 68.877978) (xy 49.301132 68.885592) (xy 49.302965 68.885461) (xy 49.30958 68.88121) (xy 49.946148 68.244642) (xy 49.952578 68.232867) (xy 49.943282 68.220852) (xy 49.912824 68.199525) (xy 49.903328 68.194042) (xy 49.732687 68.114471) (xy 49.679402 68.067554) (xy 49.659941 67.999276) (xy 49.680483 67.931316) (xy 49.732687 67.886081) (xy 49.903579 67.806393) (xy 49.903584 67.80639) (xy 49.908566 67.804067) (xy 50.019836 67.726155) (xy 50.077846 67.685536) (xy 50.077849 67.685534) (xy 50.082357 67.682377) (xy 50.232377 67.532357) (xy 50.236964 67.525807) (xy 50.301736 67.433302) (xy 50.354067 67.358566) (xy 50.35639 67.353584) (xy 50.356393 67.353579) (xy 50.441407 67.171266) (xy 50.441408 67.171264) (xy 50.44373 67.166284) (xy 50.452212 67.134631) (xy 50.497217 66.966668) (xy 50.497217 66.966666) (xy 50.498641 66.961353) (xy 50.517132 66.75) (xy 50.498641 66.538647) (xy 50.497217 66.533332) (xy 50.445153 66.339026) (xy 50.445152 66.339024) (xy 50.44373 66.333716) (xy 50.422529 66.28825) (xy 50.356393 66.146421) (xy 50.35639 66.146416) (xy 50.354067 66.141434) (xy 50.232377 65.967643) (xy 50.082357 65.817623) (xy 50.077849 65.814466) (xy 50.077846 65.814464) (xy 49.980402 65.746233) (xy 49.908566 65.695933) (xy 49.903584 65.69361) (xy 49.903579 65.693607) (xy 49.721266 65.608593) (xy 49.721264 65.608592) (xy 49.716284 65.60627) (xy 49.710976 65.604848) (xy 49.710974 65.604847) (xy 49.516668 65.552783) (xy 49.516666 65.552783) (xy 49.511353 65.551359) (xy 49.3 65.532868) (xy 49.088647 65.551359) (xy 49.083334 65.552783) (xy 49.083332 65.552783) (xy 48.889026 65.604847) (xy 48.889024 65.604848) (xy 48.883716 65.60627) (xy 48.878736 65.608592) (xy 48.878734 65.608593) (xy 48.696421 65.693607) (xy 48.696416 65.69361) (xy 48.691434 65.695933) (xy 48.619598 65.746233) (xy 48.522154 65.814464) (xy 48.522151 65.814466) (xy 48.517643 65.817623) (xy 48.367623 65.967643) (xy 48.245933 66.141434) (xy 48.24361 66.146416) (xy 48.243607 66.146421) (xy 48.177471 66.28825) (xy 48.15627 66.333716) (xy 48.154848 66.339024) (xy 48.154847 66.339026) (xy 48.102783 66.533332) (xy 48.101359 66.538647) (xy 48.082868 66.75) (xy 38.0085 66.75) (xy 38.0085 59.05325) (xy 38.010246 59.032345) (xy 38.01277 59.017344) (xy 38.01277 59.017341) (xy 38.013576 59.012552) (xy 38.013729 59) (xy 38.013039 58.995184) (xy 38.013039 58.995178) (xy 38.011387 58.983644) (xy 38.010234 58.960284) (xy 38.011808 58.924247) (xy 38.025352 58.614035) (xy 38.02631 58.603086) (xy 38.037282 58.519746) (xy 38.076019 58.225502) (xy 38.077927 58.214685) (xy 38.087891 58.169743) (xy 38.160353 57.842885) (xy 38.163198 57.832268) (xy 38.19491 57.73169) (xy 38.277718 57.469061) (xy 38.281474 57.458739) (xy 38.42722 57.106877) (xy 38.431862 57.096924) (xy 38.43884 57.083521) (xy 38.607706 56.759132) (xy 38.613201 56.749613) (xy 38.620719 56.737813) (xy 38.761451 56.516907) (xy 38.81782 56.428426) (xy 38.824124 56.419422) (xy 39.055962 56.117284) (xy 39.063028 56.108863) (xy 39.320314 55.828086) (xy 39.328086 55.820314) (xy 39.608863 55.563028) (xy 39.617284 55.555962) (xy 39.919422 55.324124) (xy 39.928426 55.31782) (xy 40.249613 55.113201) (xy 40.259133 55.107705) (xy 40.596933 54.931858) (xy 40.606877 54.92722) (xy 40.958746 54.781471) (xy 40.969061 54.777718) (xy 41.332269 54.663198) (xy 41.342886 54.660353) (xy 41.714693 54.577926) (xy 41.725502 54.576019) (xy 42.103087 54.52631) (xy 42.114035 54.525352) (xy 42.456554 54.510397) (xy 42.481429 54.511777) (xy 42.493724 54.513691) (xy 42.502626 54.512527) (xy 42.502628 54.512527) (xy 42.521399 54.510072) (xy 42.525286 54.509564) (xy 42.541621 54.5085) (xy 167.450633 54.5085) ) ) (filled_polygon (layer "B.Cu") (pts (xy 106.069005 56.568981) (xy 106.08998 56.585884) (xy 106.179596 56.675501) (xy 106.213621 56.737813) (xy 106.2165 56.764596) (xy 106.2165 58.044569) (xy 106.196498 58.11269) (xy 106.142842 58.159183) (xy 106.072568 58.169287) (xy 106.053135 58.164901) (xy 105.861103 58.105273) (xy 105.856005 58.10369) (xy 105.795684 58.095695) (xy 105.630219 58.073764) (xy 105.630215 58.073764) (xy 105.624935 58.073064) (xy 105.619606 58.073264) (xy 105.619605 58.073264) (xy 105.524876 58.076821) (xy 105.392007 58.081809) (xy 105.163883 58.129674) (xy 105.158924 58.131632) (xy 105.158922 58.131633) (xy 105.095328 58.156748) (xy 104.947086 58.215292) (xy 104.847449 58.275753) (xy 104.752374 58.333445) (xy 104.752371 58.333447) (xy 104.747813 58.336213) (xy 104.743785 58.339708) (xy 104.743784 58.339709) (xy 104.577144 58.484313) (xy 104.571763 58.488982) (xy 104.55631 58.507828) (xy 104.427354 58.6651) (xy 104.42735 58.665106) (xy 104.42397 58.669228) (xy 104.39978 58.711725) (xy 104.399055 58.712998) (xy 104.347973 58.762304) (xy 104.278343 58.776166) (xy 104.212272 58.750183) (xy 104.185033 58.721033) (xy 104.183303 58.718462) (xy 104.105627 58.603086) (xy 104.097271 58.590674) (xy 104.097269 58.590672) (xy 104.094291 58.586248) (xy 103.933399 58.41759) (xy 103.746391 58.278452) (xy 103.74164 58.276036) (xy 103.741636 58.276034) (xy 103.618311 58.213333) (xy 103.538612 58.172812) (xy 103.316005 58.10369) (xy 103.255684 58.095695) (xy 103.090219 58.073764) (xy 103.090215 58.073764) (xy 103.084935 58.073064) (xy 103.079606 58.073264) (xy 103.079605 58.073264) (xy 102.984876 58.076821) (xy 102.852007 58.081809) (xy 102.623883 58.129674) (xy 102.618924 58.131632) (xy 102.618922 58.131633) (xy 102.555328 58.156748) (xy 102.407086 58.215292) (xy 102.307449 58.275753) (xy 102.212374 58.333445) (xy 102.212371 58.333447) (xy 102.207813 58.336213) (xy 102.203785 58.339708) (xy 102.203784 58.339709) (xy 102.037144 58.484313) (xy 102.031763 58.488982) (xy 102.01631 58.507828) (xy 101.887354 58.6651) (xy 101.88735 58.665106) (xy 101.88397 58.669228) (xy 101.85978 58.711725) (xy 101.859055 58.712998) (xy 101.807973 58.762304) (xy 101.738343 58.776166) (xy 101.672272 58.750183) (xy 101.645033 58.721033) (xy 101.643303 58.718462) (xy 101.565627 58.603086) (xy 101.557271 58.590674) (xy 101.557269 58.590672) (xy 101.554291 58.586248) (xy 101.393399 58.41759) (xy 101.206391 58.278452) (xy 101.20164 58.276036) (xy 101.201636 58.276034) (xy 101.078311 58.213333) (xy 100.998612 58.172812) (xy 100.776005 58.10369) (xy 100.715684 58.095695) (xy 100.550219 58.073764) (xy 100.550215 58.073764) (xy 100.544935 58.073064) (xy 100.539606 58.073264) (xy 100.539605 58.073264) (xy 100.444876 58.076821) (xy 100.312007 58.081809) (xy 100.083883 58.129674) (xy 100.078924 58.131632) (xy 100.078922 58.131633) (xy 100.015328 58.156748) (xy 99.867086 58.215292) (xy 99.767449 58.275753) (xy 99.672374 58.333445) (xy 99.672371 58.333447) (xy 99.667813 58.336213) (xy 99.663785 58.339708) (xy 99.663784 58.339709) (xy 99.497144 58.484313) (xy 99.491763 58.488982) (xy 99.47631 58.507828) (xy 99.347354 58.6651) (xy 99.34735 58.665106) (xy 99.34397 58.669228) (xy 99.22866 58.8718) (xy 99.226839 58.876816) (xy 99.226837 58.876821) (xy 99.162796 59.05325) (xy 99.149129 59.090903) (xy 99.14818 59.096152) (xy 99.148179 59.096155) (xy 99.10839 59.316191) (xy 99.108389 59.316198) (xy 99.107652 59.320275) (xy 99.1065 59.344702) (xy 99.1065 59.808527) (xy 99.121241 59.982257) (xy 99.122581 59.987421) (xy 99.122582 59.987425) (xy 99.176636 60.195681) (xy 99.1798 60.207873) (xy 99.181992 60.212739) (xy 99.266167 60.3996) (xy 99.275535 60.420397) (xy 99.405709 60.613752) (xy 99.409388 60.617609) (xy 99.40939 60.617611) (xy 99.451181 60.661419) (xy 99.566601 60.78241) (xy 99.753609 60.921548) (xy 99.75836 60.923964) (xy 99.758364 60.923966) (xy 99.811216 60.950837) (xy 99.961388 61.027188) (xy 100.183995 61.09631) (xy 100.189284 61.097011) (xy 100.409781 61.126236) (xy 100.409785 61.126236) (xy 100.415065 61.126936) (xy 100.420394 61.126736) (xy 100.420395 61.126736) (xy 100.515124 61.123179) (xy 100.647993 61.118191) (xy 100.876117 61.070326) (xy 100.881076 61.068368) (xy 100.881078 61.068367) (xy 101.04081 61.005285) (xy 101.092914 60.984708) (xy 101.241026 60.894832) (xy 101.287626 60.866555) (xy 101.287629 60.866553) (xy 101.292187 60.863787) (xy 101.377244 60.789978) (xy 101.464204 60.714518) (xy 101.464206 60.714516) (xy 101.468237 60.711018) (xy 101.541415 60.621771) (xy 101.612646 60.5349) (xy 101.61265 60.534894) (xy 101.61603 60.530772) (xy 101.640945 60.487002) (xy 101.692027 60.437696) (xy 101.761657 60.423834) (xy 101.827728 60.449817) (xy 101.854965 60.478965) (xy 101.874604 60.508135) (xy 101.942729 60.609325) (xy 101.945709 60.613752) (xy 101.949388 60.617609) (xy 101.94939 60.617611) (xy 101.991181 60.661419) (xy 102.106601 60.78241) (xy 102.215776 60.863638) (xy 102.258488 60.920347) (xy 102.263761 60.991147) (xy 102.237646 61.045042) (xy 102.138217 61.16523) (xy 102.135288 61.170647) (xy 102.135286 61.17065) (xy 102.042416 61.34241) (xy 102.042414 61.342415) (xy 102.039486 61.34783) (xy 101.978102 61.546129) (xy 101.977458 61.552254) (xy 101.977458 61.552255) (xy 101.957071 61.746233) (xy 101.956404 61.752575) (xy 101.961167 61.804912) (xy 101.972353 61.927818) (xy 101.975218 61.959303) (xy 101.976956 61.965209) (xy 101.976957 61.965213) (xy 101.996003 62.029925) (xy 101.996048 62.100922) (xy 101.957702 62.160672) (xy 101.89314 62.190206) (xy 101.875129 62.1915) (xy 100.361842 62.1915) (xy 100.348235 62.190763) (xy 100.316737 62.187341) (xy 100.316732 62.187341) (xy 100.310611 62.186676) (xy 100.292611 62.188251) (xy 100.260609 62.19105) (xy 100.255784 62.191379) (xy 100.253313 62.1915) (xy 100.250231 62.1915) (xy 100.227763 62.193703) (xy 100.207489 62.195691) (xy 100.206174 62.195813) (xy 100.173913 62.198636) (xy 100.113587 62.203913) (xy 100.108468 62.2054) (xy 100.103167 62.20592) (xy 100.014194 62.232782) (xy 100.013054 62.23312) (xy 99.923663 62.259091) (xy 99.918929 62.261545) (xy 99.913831 62.263084) (xy 99.908387 62.265978) (xy 99.908386 62.265979) (xy 99.831831 62.306684) (xy 99.830663 62.307298) (xy 99.753966 62.347054) (xy 99.748074 62.350108) (xy 99.743911 62.353431) (xy 99.739204 62.355934) (xy 99.667082 62.414755) (xy 99.666226 62.415446) (xy 99.627027 62.446738) (xy 99.624523 62.449242) (xy 99.623805 62.449884) (xy 99.619472 62.453585) (xy 99.585938 62.480935) (xy 99.582011 62.485682) (xy 99.582009 62.485684) (xy 99.556713 62.516262) (xy 99.548723 62.525042) (xy 97.030621 65.043145) (xy 97.020478 65.052247) (xy 96.990975 65.075968) (xy 96.959991 65.112893) (xy 96.958709 65.114421) (xy 96.955528 65.118069) (xy 96.953885 65.119881) (xy 96.951691 65.122075) (xy 96.924358 65.155349) (xy 96.923696 65.156147) (xy 96.863846 65.227474) (xy 96.861278 65.232144) (xy 96.857897 65.236261) (xy 96.844518 65.261213) (xy 96.814023 65.318086) (xy 96.813394 65.319245) (xy 96.771538 65.395381) (xy 96.771535 65.395389) (xy 96.768567 65.400787) (xy 96.766955 65.405869) (xy 96.764438 65.410563) (xy 96.737238 65.499531) (xy 96.736918 65.500559) (xy 96.708765 65.589306) (xy 96.708171 65.594602) (xy 96.706613 65.599698) (xy 96.697288 65.6915) (xy 96.697218 65.692187) (xy 96.697089 65.693393) (xy 96.6915 65.743227) (xy 96.6915 65.746754) (xy 96.691445 65.747739) (xy 96.690998 65.753419) (xy 96.686626 65.796462) (xy 96.688995 65.82152) (xy 96.690941 65.842109) (xy 96.6915 65.853967) (xy 96.6915 74.3655) (xy 96.671498 74.433621) (xy 96.617842 74.480114) (xy 96.5655 74.4915) (xy 81.719924 74.4915) (xy 81.651803 74.471498) (xy 81.630829 74.454595) (xy 75.124368 67.948134) (xy 78.579 67.948134) (xy 78.585755 68.010316) (xy 78.636885 68.146705) (xy 78.724239 68.263261) (xy 78.840795 68.350615) (xy 78.977184 68.401745) (xy 79.039366 68.4085) (xy 80.835634 68.4085) (xy 80.897816 68.401745) (xy 81.034205 68.350615) (xy 81.150761 68.263261) (xy 81.238115 68.146705) (xy 81.250199 68.114471) (xy 81.282098 68.029382) (xy 81.32474 67.972618) (xy 81.391302 67.947918) (xy 81.46065 67.963126) (xy 81.495317 67.991114) (xy 81.52375 68.023938) (xy 81.632798 68.114471) (xy 81.686748 68.159261) (xy 81.695626 68.166632) (xy 81.8885 68.279338) (xy 81.893325 68.28118) (xy 81.893326 68.281181) (xy 81.945308 68.301031) (xy 82.097192 68.35903) (xy 82.10226 68.360061) (xy 82.102263 68.360062) (xy 82.188038 68.377513) (xy 82.316097 68.403567) (xy 82.321272 68.403757) (xy 82.321274 68.403757) (xy 82.534173 68.411564) (xy 82.534177 68.411564) (xy 82.539337 68.411753) (xy 82.544457 68.411097) (xy 82.544459 68.411097) (xy 82.678767 68.393892) (xy 82.748877 68.405077) (xy 82.783872 68.429776) (xy 83.446343 69.092247) (xy 83.453887 69.100537) (xy 83.458 69.107018) (xy 83.463777 69.112443) (xy 83.507667 69.153658) (xy 83.510509 69.156413) (xy 83.53023 69.176134) (xy 83.533425 69.178612) (xy 83.542447 69.186318) (xy 83.574679 69.216586) (xy 83.581628 69.220406) (xy 83.592432 69.226346) (xy 83.608956 69.237199) (xy 83.624959 69.249613) (xy 83.665543 69.267176) (xy 83.676173 69.272383) (xy 83.71494 69.293695) (xy 83.722617 69.295666) (xy 83.722622 69.295668) (xy 83.734558 69.298732) (xy 83.753266 69.305137) (xy 83.771855 69.313181) (xy 83.77968 69.31442) (xy 83.779682 69.314421) (xy 83.815519 69.320097) (xy 83.82714 69.322504) (xy 83.858959 69.330673) (xy 83.86997 69.3335) (xy 83.890231 69.3335) (xy 83.90994 69.335051) (xy 83.929943 69.338219) (xy 83.937835 69.337473) (xy 83.943062 69.336979) (xy 83.973954 69.334059) (xy 83.985811 69.3335) (xy 90.071233 69.3335) (xy 90.082416 69.334027) (xy 90.089909 69.335702) (xy 90.097835 69.335453) (xy 90.097836 69.335453) (xy 90.157986 69.333562) (xy 90.161945 69.3335) (xy 90.189856 69.3335) (xy 90.193791 69.333003) (xy 90.193856 69.332995) (xy 90.205693 69.332062) (xy 90.237951 69.331048) (xy 90.24197 69.330922) (xy 90.249889 69.330673) (xy 90.269343 69.325021) (xy 90.2887 69.321013) (xy 90.30093 69.319468) (xy 90.300931 69.319468) (xy 90.308797 69.318474) (xy 90.316168 69.315555) (xy 90.31617 69.315555) (xy 90.349912 69.302196) (xy 90.361142 69.298351) (xy 90.395983 69.288229) (xy 90.395984 69.288229) (xy 90.403593 69.286018) (xy 90.410412 69.281985) (xy 90.410417 69.281983) (xy 90.421028 69.275707) (xy 90.438776 69.267012) (xy 90.457617 69.259552) (xy 90.466684 69.252965) (xy 90.493387 69.233564) (xy 90.503307 69.227048) (xy 90.534535 69.20858) (xy 90.534538 69.208578) (xy 90.541362 69.204542) (xy 90.555683 69.190221) (xy 90.570717 69.17738) (xy 90.572432 69.176134) (xy 90.587107 69.165472) (xy 90.615298 69.131395) (xy 90.623288 69.122616) (xy 91.297713 68.448191) (xy 91.360025 68.414165) (xy 91.391425 68.411371) (xy 91.394363 68.411479) (xy 91.396675 68.411564) (xy 91.396678 68.411564) (xy 91.401837 68.411753) (xy 91.406957 68.411097) (xy 91.406959 68.411097) (xy 91.618288 68.384025) (xy 91.618289 68.384025) (xy 91.623416 68.383368) (xy 91.655358 68.373785) (xy 91.832429 68.320661) (xy 91.832434 68.320659) (xy 91.837384 68.319174) (xy 92.037994 68.220896) (xy 92.21986 68.091173) (xy 92.233144 68.077936) (xy 92.363616 67.947918) (xy 92.378096 67.933489) (xy 92.385944 67.922568) (xy 92.508453 67.752077) (xy 92.509776 67.753028) (xy 92.556645 67.709857) (xy 92.62658 67.697625) (xy 92.692026 67.725144) (xy 92.719875 67.756994) (xy 92.779987 67.855088) (xy 92.92625 68.023938) (xy 93.035298 68.114471) (xy 93.089248 68.159261) (xy 93.098126 68.166632) (xy 93.291 68.279338) (xy 93.295825 68.28118) (xy 93.295826 68.281181) (xy 93.347808 68.301031) (xy 93.499692 68.35903) (xy 93.50476 68.360061) (xy 93.504763 68.360062) (xy 93.590538 68.377513) (xy 93.718597 68.403567) (xy 93.723772 68.403757) (xy 93.723774 68.403757) (xy 93.936673 68.411564) (xy 93.936677 68.411564) (xy 93.941837 68.411753) (xy 93.946957 68.411097) (xy 93.946959 68.411097) (xy 94.158288 68.384025) (xy 94.158289 68.384025) (xy 94.163416 68.383368) (xy 94.195358 68.373785) (xy 94.372429 68.320661) (xy 94.372434 68.320659) (xy 94.377384 68.319174) (xy 94.577994 68.220896) (xy 94.75986 68.091173) (xy 94.773144 68.077936) (xy 94.903616 67.947918) (xy 94.918096 67.933489) (xy 94.925944 67.922568) (xy 95.045435 67.756277) (xy 95.048453 67.752077) (xy 95.058399 67.731954) (xy 95.145136 67.556453) (xy 95.145137 67.556451) (xy 95.14743 67.551811) (xy 95.21237 67.338069) (xy 95.241529 67.11659) (xy 95.243156 67.05) (xy 95.224852 66.827361) (xy 95.170431 66.610702) (xy 95.081354 66.40584) (xy 95.005282 66.28825) (xy 94.962822 66.222617) (xy 94.96282 66.222614) (xy 94.960014 66.218277) (xy 94.80967 66.053051) (xy 94.805619 66.049852) (xy 94.805615 66.049848) (xy 94.638414 65.9178) (xy 94.63841 65.917798) (xy 94.634359 65.914598) (xy 94.438789 65.806638) (xy 94.43392 65.804914) (xy 94.433916 65.804912) (xy 94.233087 65.733795) (xy 94.233083 65.733794) (xy 94.228212 65.732069) (xy 94.223119 65.731162) (xy 94.223116 65.731161) (xy 94.013373 65.6938) (xy 94.013367 65.693799) (xy 94.008284 65.692894) (xy 93.934452 65.691992) (xy 93.790081 65.690228) (xy 93.790079 65.690228) (xy 93.784911 65.690165) (xy 93.564091 65.723955) (xy 93.351756 65.793357) (xy 93.153607 65.896507) (xy 93.149474 65.89961) (xy 93.149471 65.899612) (xy 93.052854 65.972154) (xy 92.974965 66.030635) (xy 92.935203 66.072243) (xy 92.863729 66.147037) (xy 92.820629 66.192138) (xy 92.713201 66.349621) (xy 92.658293 66.394621) (xy 92.587768 66.402792) (xy 92.524021 66.371538) (xy 92.503324 66.347054) (xy 92.422822 66.222617) (xy 92.42282 66.222614) (xy 92.420014 66.218277) (xy 92.26967 66.053051) (xy 92.265619 66.049852) (xy 92.265615 66.049848) (xy 92.098414 65.9178) (xy 92.09841 65.917798) (xy 92.094359 65.914598) (xy 91.898789 65.806638) (xy 91.89392 65.804914) (xy 91.893916 65.804912) (xy 91.693087 65.733795) (xy 91.693083 65.733794) (xy 91.688212 65.732069) (xy 91.683119 65.731162) (xy 91.683116 65.731161) (xy 91.473373 65.6938) (xy 91.473367 65.693799) (xy 91.468284 65.692894) (xy 91.394452 65.691992) (xy 91.250081 65.690228) (xy 91.250079 65.690228) (xy 91.244911 65.690165) (xy 91.024091 65.723955) (xy 90.811756 65.793357) (xy 90.613607 65.896507) (xy 90.609474 65.89961) (xy 90.609471 65.899612) (xy 90.512854 65.972154) (xy 90.434965 66.030635) (xy 90.378537 66.089684) (xy 90.354283 66.115064) (xy 90.292759 66.150494) (xy 90.221846 66.147037) (xy 90.16406 66.105791) (xy 90.145207 66.072243) (xy 90.103767 65.961703) (xy 90.100615 65.953295) (xy 90.013261 65.836739) (xy 89.896705 65.749385) (xy 89.760316 65.698255) (xy 89.698134 65.6915) (xy 87.901866 65.6915) (xy 87.839684 65.698255) (xy 87.703295 65.749385) (xy 87.586739 65.836739) (xy 87.499385 65.953295) (xy 87.448255 66.089684) (xy 87.444413 66.125051) (xy 87.442092 66.146421) (xy 87.4415 66.151866) (xy 87.4415 67.9405) (xy 87.421498 68.008621) (xy 87.367842 68.055114) (xy 87.3155 68.0665) (xy 86.205715 68.0665) (xy 86.137594 68.046498) (xy 86.091101 67.992842) (xy 86.080997 67.922568) (xy 86.103392 67.866974) (xy 86.182935 67.756277) (xy 86.185953 67.752077) (xy 86.195899 67.731954) (xy 86.282636 67.556453) (xy 86.282637 67.556451) (xy 86.28493 67.551811) (xy 86.34987 67.338069) (xy 86.379029 67.11659) (xy 86.380656 67.05) (xy 86.362352 66.827361) (xy 86.307931 66.610702) (xy 86.218854 66.40584) (xy 86.142782 66.28825) (xy 86.100322 66.222617) (xy 86.10032 66.222614) (xy 86.097514 66.218277) (xy 85.94717 66.053051) (xy 85.943119 66.049852) (xy 85.943115 66.049848) (xy 85.775914 65.9178) (xy 85.77591 65.917798) (xy 85.771859 65.914598) (xy 85.576289 65.806638) (xy 85.57142 65.804914) (xy 85.571416 65.804912) (xy 85.370587 65.733795) (xy 85.370583 65.733794) (xy 85.365712 65.732069) (xy 85.360619 65.731162) (xy 85.360616 65.731161) (xy 85.150873 65.6938) (xy 85.150867 65.693799) (xy 85.145784 65.692894) (xy 85.071952 65.691992) (xy 84.927581 65.690228) (xy 84.927579 65.690228) (xy 84.922411 65.690165) (xy 84.701591 65.723955) (xy 84.489256 65.793357) (xy 84.291107 65.896507) (xy 84.286974 65.89961) (xy 84.286971 65.899612) (xy 84.190354 65.972154) (xy 84.112465 66.030635) (xy 84.072703 66.072243) (xy 84.001229 66.147037) (xy 83.958129 66.192138) (xy 83.850701 66.349621) (xy 83.795793 66.394621) (xy 83.725268 66.402792) (xy 83.661521 66.371538) (xy 83.640824 66.347054) (xy 83.560322 66.222617) (xy 83.56032 66.222614) (xy 83.557514 66.218277) (xy 83.40717 66.053051) (xy 83.403119 66.049852) (xy 83.403115 66.049848) (xy 83.235914 65.9178) (xy 83.23591 65.917798) (xy 83.231859 65.914598) (xy 83.036289 65.806638) (xy 83.03142 65.804914) (xy 83.031416 65.804912) (xy 82.830587 65.733795) (xy 82.830583 65.733794) (xy 82.825712 65.732069) (xy 82.820619 65.731162) (xy 82.820616 65.731161) (xy 82.610873 65.6938) (xy 82.610867 65.693799) (xy 82.605784 65.692894) (xy 82.531952 65.691992) (xy 82.387581 65.690228) (xy 82.387579 65.690228) (xy 82.382411 65.690165) (xy 82.161591 65.723955) (xy 81.949256 65.793357) (xy 81.751107 65.896507) (xy 81.746974 65.89961) (xy 81.746971 65.899612) (xy 81.650354 65.972154) (xy 81.572465 66.030635) (xy 81.516037 66.089684) (xy 81.491783 66.115064) (xy 81.430259 66.150494) (xy 81.359346 66.147037) (xy 81.30156 66.105791) (xy 81.282707 66.072243) (xy 81.241267 65.961703) (xy 81.238115 65.953295) (xy 81.150761 65.836739) (xy 81.034205 65.749385) (xy 80.897816 65.698255) (xy 80.835634 65.6915) (xy 79.039366 65.6915) (xy 78.977184 65.698255) (xy 78.840795 65.749385) (xy 78.724239 65.836739) (xy 78.636885 65.953295) (xy 78.585755 66.089684) (xy 78.581913 66.125051) (xy 78.579592 66.146421) (xy 78.579 66.151866) (xy 78.579 67.948134) (xy 75.124368 67.948134) (xy 73.325405 66.149171) (xy 73.291379 66.086859) (xy 73.2885 66.060076) (xy 73.2885 64.01397) (xy 73.308502 63.945849) (xy 73.31646 63.93512) (xy 73.318096 63.933489) (xy 73.448453 63.752077) (xy 73.46932 63.709857) (xy 73.545136 63.556453) (xy 73.545137 63.556451) (xy 73.54743 63.551811) (xy 73.59537 63.394021) (xy 73.610865 63.343023) (xy 73.610865 63.343021) (xy 73.61237 63.338069) (xy 73.641529 63.11659) (xy 73.643156 63.05) (xy 73.624852 62.827361) (xy 73.570431 62.610702) (xy 73.481354 62.40584) (xy 73.407384 62.2915) (xy 73.362822 62.222617) (xy 73.36282 62.222614) (xy 73.360014 62.218277) (xy 73.20967 62.053051) (xy 73.205619 62.049852) (xy 73.205615 62.049848) (xy 73.038414 61.9178) (xy 73.03841 61.917798) (xy 73.034359 61.914598) (xy 73.014424 61.903593) (xy 72.92496 61.854207) (xy 72.838789 61.806638) (xy 72.83392 61.804914) (xy 72.833916 61.804912) (xy 72.633087 61.733795) (xy 72.633083 61.733794) (xy 72.628212 61.732069) (xy 72.623119 61.731162) (xy 72.623116 61.731161) (xy 72.413373 61.6938) (xy 72.413367 61.693799) (xy 72.408284 61.692894) (xy 72.334452 61.691992) (xy 72.190081 61.690228) (xy 72.190079 61.690228) (xy 72.184911 61.690165) (xy 71.964091 61.723955) (xy 71.751756 61.793357) (xy 71.553607 61.896507) (xy 71.549474 61.89961) (xy 71.549471 61.899612) (xy 71.386222 62.022183) (xy 71.374965 62.030635) (xy 71.325607 62.082285) (xy 71.225849 62.186676) (xy 71.220629 62.192138) (xy 71.113201 62.349621) (xy 71.058293 62.394621) (xy 70.987768 62.402792) (xy 70.924021 62.371538) (xy 70.903324 62.347054) (xy 70.822822 62.222617) (xy 70.82282 62.222614) (xy 70.820014 62.218277) (xy 70.66967 62.053051) (xy 70.665619 62.049852) (xy 70.665615 62.049848) (xy 70.498414 61.9178) (xy 70.49841 61.917798) (xy 70.494359 61.914598) (xy 70.474424 61.903593) (xy 70.38496 61.854207) (xy 70.298789 61.806638) (xy 70.29392 61.804914) (xy 70.293916 61.804912) (xy 70.093087 61.733795) (xy 70.093083 61.733794) (xy 70.088212 61.732069) (xy 70.083119 61.731162) (xy 70.083116 61.731161) (xy 69.873373 61.6938) (xy 69.873367 61.693799) (xy 69.868284 61.692894) (xy 69.794452 61.691992) (xy 69.650081 61.690228) (xy 69.650079 61.690228) (xy 69.644911 61.690165) (xy 69.424091 61.723955) (xy 69.211756 61.793357) (xy 69.013607 61.896507) (xy 69.009474 61.89961) (xy 69.009471 61.899612) (xy 68.846222 62.022183) (xy 68.834965 62.030635) (xy 68.778537 62.089684) (xy 68.754283 62.115064) (xy 68.692759 62.150494) (xy 68.621846 62.147037) (xy 68.56406 62.105791) (xy 68.545207 62.072243) (xy 68.503767 61.961703) (xy 68.500615 61.953295) (xy 68.413261 61.836739) (xy 68.296705 61.749385) (xy 68.160316 61.698255) (xy 68.098134 61.6915) (xy 66.301866 61.6915) (xy 66.239684 61.698255) (xy 66.103295 61.749385) (xy 65.986739 61.836739) (xy 65.899385 61.953295) (xy 65.848255 62.089684) (xy 65.8415 62.151866) (xy 65.8415 63.948134) (xy 65.848255 64.010316) (xy 65.899385 64.146705) (xy 65.916327 64.169311) (xy 65.941174 64.235815) (xy 65.9415 64.244874) (xy 65.9415 66.108604) (xy 65.940422 66.125051) (xy 65.938859 66.136926) (xy 65.937521 66.147086) (xy 65.939646 66.192138) (xy 65.94136 66.228488) (xy 65.9415 66.234424) (xy 65.9415 66.256999) (xy 65.943819 66.282988) (xy 65.944178 66.288248) (xy 65.948104 66.371488) (xy 65.949354 66.376947) (xy 65.949355 66.376952) (xy 65.952108 66.38897) (xy 65.954789 66.405899) (xy 65.956383 66.423762) (xy 65.957865 66.429178) (xy 65.957865 66.42918) (xy 65.97837 66.504133) (xy 65.979656 66.509251) (xy 65.998258 66.59047) (xy 66.00046 66.595632) (xy 66.005294 66.606967) (xy 66.010927 66.623142) (xy 66.014182 66.635039) (xy 66.015663 66.640451) (xy 66.018079 66.645516) (xy 66.051539 66.715667) (xy 66.05371 66.720476) (xy 66.084196 66.791949) (xy 66.086397 66.797109) (xy 66.096251 66.81211) (xy 66.104654 66.827025) (xy 66.112378 66.843218) (xy 66.157668 66.906245) (xy 66.160999 66.910881) (xy 66.163989 66.915232) (xy 66.207196 66.98101) (xy 66.207202 66.981018) (xy 66.209735 66.984874) (xy 66.228257 67.005662) (xy 66.23649 67.015939) (xy 66.243471 67.025654) (xy 66.301345 67.081738) (xy 66.320255 67.100063) (xy 66.321665 67.101452) (xy 78.785475 79.565263) (xy 78.796342 79.577653) (xy 78.809877 79.595292) (xy 78.853218 79.634729) (xy 78.870174 79.650158) (xy 78.874469 79.654257) (xy 78.89041 79.670198) (xy 78.892557 79.671993) (xy 78.892559 79.671995) (xy 78.910423 79.686932) (xy 78.914398 79.6904) (xy 78.971888 79.742712) (xy 78.971897 79.742719) (xy 78.976036 79.746485) (xy 78.980782 79.749462) (xy 78.980783 79.749463) (xy 78.991225 79.756013) (xy 79.005093 79.766089) (xy 79.014549 79.773996) (xy 79.014559 79.774003) (xy 79.018854 79.777594) (xy 79.0879 79.816977) (xy 79.09124 79.818882) (xy 79.095768 79.821592) (xy 79.161596 79.862886) (xy 79.161599 79.862888) (xy 79.166344 79.865864) (xy 79.171549 79.867957) (xy 79.171552 79.867958) (xy 79.182979 79.872552) (xy 79.198411 79.880012) (xy 79.209119 79.88612) (xy 79.209128 79.886124) (xy 79.213993 79.888899) (xy 79.21927 79.890768) (xy 79.219275 79.89077) (xy 79.292542 79.916715) (xy 79.297478 79.91858) (xy 79.374783 79.949656) (xy 79.38027 79.950792) (xy 79.380272 79.950793) (xy 79.392349 79.953294) (xy 79.408844 79.957899) (xy 79.425759 79.963889) (xy 79.50801 79.977359) (xy 79.51318 79.978317) (xy 79.594767 79.995213) (xy 79.599379 79.995479) (xy 79.59938 79.995479) (xy 79.622548 79.996815) (xy 79.635653 79.998262) (xy 79.64191 79.999286) (xy 79.641914 79.999286) (xy 79.647457 80.000194) (xy 79.65307 80.000106) (xy 79.653072 80.000106) (xy 79.754264 79.998516) (xy 79.756243 79.9985) (xy 82.266523 79.9985) (xy 82.334644 80.018502) (xy 82.355618 80.035405) (xy 100.704595 98.384382) (xy 100.738621 98.446694) (xy 100.7415 98.473477) (xy 100.7415 103.217603) (xy 100.721498 103.285724) (xy 100.667842 103.332217) (xy 100.602332 103.342913) (xy 100.601942 103.342872) (xy 100.595487 103.3415) (xy 100.42578 103.3415) (xy 100.357659 103.321498) (xy 100.311166 103.267842) (xy 100.301062 103.197568) (xy 100.316662 103.152499) (xy 100.331222 103.127281) (xy 100.331223 103.127278) (xy 100.334527 103.121556) (xy 100.393542 102.939928) (xy 100.400577 102.872999) (xy 100.412814 102.756565) (xy 100.413504 102.75) (xy 100.393542 102.560072) (xy 100.334527 102.378444) (xy 100.23904 102.213056) (xy 100.231198 102.204346) (xy 100.115675 102.076045) (xy 100.115674 102.076044) (xy 100.111253 102.071134) (xy 99.956752 101.958882) (xy 99.950724 101.956198) (xy 99.950722 101.956197) (xy 99.788319 101.883891) (xy 99.788318 101.883891) (xy 99.782288 101.881206) (xy 99.688887 101.861353) (xy 99.601944 101.842872) (xy 99.601939 101.842872) (xy 99.595487 101.8415) (xy 99.404513 101.8415) (xy 99.398061 101.842872) (xy 99.398056 101.842872) (xy 99.311112 101.861353) (xy 99.217712 101.881206) (xy 99.211682 101.883891) (xy 99.211681 101.883891) (xy 99.049278 101.956197) (xy 99.049276 101.956198) (xy 99.043248 101.958882) (xy 98.888747 102.071134) (xy 98.884326 102.076044) (xy 98.884325 102.076045) (xy 98.768803 102.204346) (xy 98.76096 102.213056) (xy 98.665473 102.378444) (xy 98.606458 102.560072) (xy 98.586496 102.75) (xy 98.587186 102.756565) (xy 98.599424 102.872999) (xy 98.606458 102.939928) (xy 98.665473 103.121556) (xy 98.668776 103.127278) (xy 98.668777 103.127279) (xy 98.683338 103.152499) (xy 98.76096 103.286944) (xy 98.765378 103.291851) (xy 98.765379 103.291852) (xy 98.859136 103.39598) (xy 98.889854 103.459987) (xy 98.8915 103.48029) (xy 98.8915 104.748822) (xy 98.871498 104.816943) (xy 98.817842 104.863436) (xy 98.747568 104.87354) (xy 98.739303 104.872069) (xy 98.601944 104.842872) (xy 98.601939 104.842872) (xy 98.595487 104.8415) (xy 98.495298 104.8415) (xy 98.427177 104.821498) (xy 98.380684 104.767842) (xy 98.375465 104.754437) (xy 98.336568 104.634726) (xy 98.334527 104.628444) (xy 98.23904 104.463056) (xy 98.226679 104.449327) (xy 98.115675 104.326045) (xy 98.115674 104.326044) (xy 98.111253 104.321134) (xy 97.956752 104.208882) (xy 97.950724 104.206198) (xy 97.950722 104.206197) (xy 97.788319 104.133891) (xy 97.788318 104.133891) (xy 97.782288 104.131206) (xy 97.688887 104.111353) (xy 97.601944 104.092872) (xy 97.601939 104.092872) (xy 97.595487 104.0915) (xy 97.404513 104.0915) (xy 97.398061 104.092872) (xy 97.398056 104.092872) (xy 97.311113 104.111353) (xy 97.217712 104.131206) (xy 97.211682 104.133891) (xy 97.211681 104.133891) (xy 97.049278 104.206197) (xy 97.049276 104.206198) (xy 97.043248 104.208882) (xy 97.037907 104.212762) (xy 97.037906 104.212763) (xy 96.963805 104.266601) (xy 96.888747 104.321134) (xy 96.884334 104.326036) (xy 96.884332 104.326037) (xy 96.862926 104.349811) (xy 96.80248 104.38705) (xy 96.76929 104.3915) (xy 92.048136 104.3915) (xy 92.031693 104.390422) (xy 92 104.38625) (xy 91.991811 104.387328) (xy 91.960126 104.391499) (xy 91.960117 104.3915) (xy 91.960115 104.3915) (xy 91.960109 104.391501) (xy 91.960107 104.391501) (xy 91.860543 104.404609) (xy 91.849336 104.406084) (xy 91.849334 104.406085) (xy 91.841149 104.407162) (xy 91.76916 104.436981) (xy 91.700752 104.465316) (xy 91.70075 104.465317) (xy 91.693124 104.468476) (xy 91.629417 104.517361) (xy 91.566013 104.566013) (xy 91.546546 104.591383) (xy 91.535684 104.603768) (xy 90.834855 105.304596) (xy 90.772543 105.338621) (xy 90.74576 105.3415) (xy 90.654513 105.3415) (xy 90.648061 105.342872) (xy 90.648056 105.342872) (xy 90.561112 105.361353) (xy 90.467712 105.381206) (xy 90.461682 105.383891) (xy 90.461681 105.383891) (xy 90.299278 105.456197) (xy 90.299276 105.456198) (xy 90.293248 105.458882) (xy 90.287907 105.462762) (xy 90.287906 105.462763) (xy 90.237843 105.499136) (xy 90.138747 105.571134) (xy 90.134326 105.576044) (xy 90.134325 105.576045) (xy 90.061329 105.657116) (xy 90.01096 105.713056) (xy 89.971633 105.781173) (xy 89.920583 105.869594) (xy 89.915473 105.878444) (xy 89.856458 106.060072) (xy 89.855768 106.066633) (xy 89.855768 106.066635) (xy 89.844022 106.178396) (xy 89.836496 106.25) (xy 89.837186 106.256565) (xy 89.855506 106.430866) (xy 89.856458 106.439928) (xy 89.915473 106.621556) (xy 90.01096 106.786944) (xy 90.015378 106.791851) (xy 90.015379 106.791852) (xy 90.127202 106.916044) (xy 90.138747 106.928866) (xy 90.19541 106.970034) (xy 90.255906 107.013987) (xy 90.293248 107.041118) (xy 90.299276 107.043802) (xy 90.299278 107.043803) (xy 90.431171 107.102525) (xy 90.467712 107.118794) (xy 90.474167 107.120166) (xy 90.47417 107.120167) (xy 90.497991 107.12523) (xy 90.520768 107.130071) (xy 90.583241 107.163799) (xy 90.614403 107.214381) (xy 90.665473 107.371556) (xy 90.76096 107.536944) (xy 90.888747 107.678866) (xy 91.043248 107.791118) (xy 91.049276 107.793802) (xy 91.049278 107.793803) (xy 91.209799 107.865271) (xy 91.217712 107.868794) (xy 91.296317 107.885502) (xy 91.398056 107.907128) (xy 91.398061 107.907128) (xy 91.404513 107.9085) (xy 91.595487 107.9085) (xy 91.601939 107.907128) (xy 91.601944 107.907128) (xy 91.703683 107.885502) (xy 91.782288 107.868794) (xy 91.790201 107.865271) (xy 91.950722 107.793803) (xy 91.950724 107.793802) (xy 91.956752 107.791118) (xy 92.111253 107.678866) (xy 92.23904 107.536944) (xy 92.334527 107.371556) (xy 92.393542 107.189928) (xy 92.395107 107.175044) (xy 92.412814 107.006565) (xy 92.413504 107) (xy 92.413316 106.998214) (xy 92.432816 106.931804) (xy 92.449719 106.91083) (xy 92.715144 106.645405) (xy 92.777456 106.611379) (xy 92.804239 106.6085) (xy 96.01929 106.6085) (xy 96.087411 106.628502) (xy 96.112926 106.650189) (xy 96.132134 106.671521) (xy 96.138747 106.678866) (xy 96.145165 106.683529) (xy 96.23026 106.745354) (xy 96.293248 106.791118) (xy 96.299276 106.793802) (xy 96.299278 106.793803) (xy 96.444591 106.8585) (xy 96.467712 106.868794) (xy 96.54268 106.884729) (xy 96.648056 106.907128) (xy 96.648061 106.907128) (xy 96.654513 106.9085) (xy 96.845487 106.9085) (xy 96.851939 106.907128) (xy 96.851944 106.907128) (xy 96.95732 106.884729) (xy 97.032288 106.868794) (xy 97.055409 106.8585) (xy 97.200722 106.793803) (xy 97.200724 106.793802) (xy 97.206752 106.791118) (xy 97.361253 106.678866) (xy 97.365675 106.673955) (xy 97.484621 106.541852) (xy 97.484622 106.541851) (xy 97.48904 106.536944) (xy 97.584527 106.371556) (xy 97.586568 106.365276) (xy 97.58869 106.360509) (xy 97.634671 106.306414) (xy 97.702599 106.285766) (xy 97.770907 106.30512) (xy 97.797428 106.327446) (xy 97.859138 106.395982) (xy 97.889854 106.459988) (xy 97.8915 106.48029) (xy 97.8915 112.445761) (xy 97.871498 112.513882) (xy 97.854595 112.534856) (xy 96.154255 114.235196) (xy 96.141864 114.246063) (xy 96.116502 114.265524) (xy 96.092015 114.297436) (xy 96.092012 114.297439) (xy 96.018965 114.392635) (xy 95.960413 114.533992) (xy 95.957651 114.540661) (xy 95.941989 114.659626) (xy 95.941989 114.659631) (xy 95.936739 114.699511) (xy 95.937817 114.707699) (xy 95.940911 114.731201) (xy 95.941989 114.747647) (xy 95.941989 123.991612) (xy 95.940911 124.008055) (xy 95.936739 124.039748) (xy 95.937817 124.047937) (xy 95.938883 124.056038) (xy 95.941989 124.079628) (xy 95.941989 124.079633) (xy 95.953924 124.170289) (xy 95.957651 124.198599) (xy 96.018965 124.346624) (xy 96.023992 124.353175) (xy 96.023993 124.353177) (xy 96.092009 124.441817) (xy 96.092015 124.441823) (xy 96.116502 124.473735) (xy 96.123057 124.478765) (xy 96.141868 124.4932) (xy 96.154259 124.504067) (xy 96.554595 124.904403) (xy 96.588621 124.966715) (xy 96.5915 124.993498) (xy 96.5915 130.359625) (xy 96.571498 130.427746) (xy 96.539562 130.46156) (xy 96.388747 130.571134) (xy 96.384326 130.576044) (xy 96.384325 130.576045) (xy 96.337365 130.6282) (xy 96.26096 130.713056) (xy 96.165473 130.878444) (xy 96.106458 131.060072) (xy 96.105768 131.066633) (xy 96.105768 131.066635) (xy 96.096685 131.153054) (xy 96.086496 131.25) (xy 96.084459 131.249786) (xy 96.067184 131.308621) (xy 96.013528 131.355114) (xy 95.961186 131.3665) (xy 94.9595 131.3665) (xy 94.891379 131.346498) (xy 94.844886 131.292842) (xy 94.8335 131.2405) (xy 94.8335 124.254154) (xy 94.834027 124.242971) (xy 94.835702 124.235478) (xy 94.835372 124.224961) (xy 94.833562 124.167388) (xy 94.8335 124.16343) (xy 94.8335 124.13553) (xy 94.832996 124.131539) (xy 94.832063 124.119697) (xy 94.832051 124.119299) (xy 94.830674 124.075497) (xy 94.826565 124.061354) (xy 94.825021 124.056038) (xy 94.821012 124.036679) (xy 94.820321 124.03121) (xy 94.818474 124.016589) (xy 94.815558 124.009223) (xy 94.815556 124.009217) (xy 94.8022 123.975484) (xy 94.798355 123.964254) (xy 94.78823 123.929403) (xy 94.78823 123.929402) (xy 94.786019 123.921793) (xy 94.780362 123.912227) (xy 94.775705 123.904352) (xy 94.767008 123.886599) (xy 94.762472 123.875144) (xy 94.759552 123.867769) (xy 94.739667 123.840399) (xy 94.733563 123.831998) (xy 94.727047 123.822078) (xy 94.726015 123.820333) (xy 94.704542 123.784024) (xy 94.690221 123.769703) (xy 94.67738 123.754669) (xy 94.675925 123.752666) (xy 94.665472 123.738279) (xy 94.631395 123.710088) (xy 94.622616 123.702098) (xy 88.378266 117.457747) (xy 88.370726 117.449461) (xy 88.366614 117.442982) (xy 88.316962 117.396356) (xy 88.314121 117.393602) (xy 88.294384 117.373865) (xy 88.291187 117.371385) (xy 88.282165 117.36368) (xy 88.255714 117.338841) (xy 88.249935 117.333414) (xy 88.242989 117.329595) (xy 88.242986 117.329593) (xy 88.23218 117.323652) (xy 88.215661 117.312801) (xy 88.215197 117.312441) (xy 88.199655 117.300386) (xy 88.192386 117.297241) (xy 88.192382 117.297238) (xy 88.159077 117.282826) (xy 88.148427 117.277609) (xy 88.109674 117.256305) (xy 88.090051 117.251267) (xy 88.071348 117.244863) (xy 88.060034 117.239967) (xy 88.060033 117.239967) (xy 88.052759 117.236819) (xy 88.044936 117.23558) (xy 88.044926 117.235577) (xy 88.00909 117.229901) (xy 87.99747 117.227495) (xy 87.962325 117.218472) (xy 87.962324 117.218472) (xy 87.954644 117.2165) (xy 87.93439 117.2165) (xy 87.914679 117.214949) (xy 87.9025 117.21302) (xy 87.894671 117.21178) (xy 87.886779 117.212526) (xy 87.850653 117.215941) (xy 87.838795 117.2165) (xy 86.73071 117.2165) (xy 86.662589 117.196498) (xy 86.637074 117.174811) (xy 86.615668 117.151037) (xy 86.615666 117.151036) (xy 86.611253 117.146134) (xy 86.456752 117.033882) (xy 86.450724 117.031198) (xy 86.450722 117.031197) (xy 86.288319 116.958891) (xy 86.288318 116.958891) (xy 86.282288 116.956206) (xy 86.188887 116.936353) (xy 86.101944 116.917872) (xy 86.101939 116.917872) (xy 86.095487 116.9165) (xy 85.904513 116.9165) (xy 85.898061 116.917872) (xy 85.898056 116.917872) (xy 85.811113 116.936353) (xy 85.717712 116.956206) (xy 85.711682 116.958891) (xy 85.711681 116.958891) (xy 85.549278 117.031197) (xy 85.549276 117.031198) (xy 85.543248 117.033882) (xy 85.388747 117.146134) (xy 85.384326 117.151044) (xy 85.384325 117.151045) (xy 85.314159 117.228973) (xy 85.26096 117.288056) (xy 85.165473 117.453444) (xy 85.106458 117.635072) (xy 85.105768 117.641633) (xy 85.105768 117.641635) (xy 85.094594 117.747951) (xy 85.086496 117.825) (xy 85.087186 117.831565) (xy 85.105755 118.008236) (xy 85.106458 118.014928) (xy 85.165473 118.196556) (xy 85.168776 118.202278) (xy 85.168777 118.202279) (xy 85.178639 118.219361) (xy 85.26096 118.361944) (xy 85.265378 118.366851) (xy 85.265379 118.366852) (xy 85.368303 118.481161) (xy 85.388747 118.503866) (xy 85.461381 118.556638) (xy 85.518581 118.598196) (xy 85.543248 118.616118) (xy 85.549276 118.618802) (xy 85.549278 118.618803) (xy 85.688857 118.680947) (xy 85.717712 118.693794) (xy 85.803449 118.712018) (xy 85.898056 118.732128) (xy 85.898061 118.732128) (xy 85.904513 118.7335) (xy 86.095487 118.7335) (xy 86.101939 118.732128) (xy 86.101944 118.732128) (xy 86.196551 118.712018) (xy 86.282288 118.693794) (xy 86.311143 118.680947) (xy 86.450722 118.618803) (xy 86.450724 118.618802) (xy 86.456752 118.616118) (xy 86.48142 118.598196) (xy 86.560722 118.540579) (xy 86.606163 118.507564) (xy 86.673031 118.483706) (xy 86.680224 118.4835) (xy 87.56002 118.4835) (xy 87.628141 118.503502) (xy 87.649115 118.520405) (xy 93.529595 124.400885) (xy 93.563621 124.463197) (xy 93.5665 124.48998) (xy 93.5665 131.2405) (xy 93.546498 131.308621) (xy 93.492842 131.355114) (xy 93.4405 131.3665) (xy 58.414594 131.3665) (xy 58.346473 131.346498) (xy 58.325499 131.329595) (xy 56.520405 129.5245) (xy 56.486379 129.462188) (xy 56.4835 129.435405) (xy 56.4835 112.574) (xy 56.503502 112.505879) (xy 56.557158 112.459386) (xy 56.6095 112.448) (xy 56.877885 112.448) (xy 56.893124 112.443525) (xy 56.894329 112.442135) (xy 56.896 112.434452) (xy 56.896 109.750116) (xy 56.891525 109.734877) (xy 56.890135 109.733672) (xy 56.882452 109.732001) (xy 56.6095 109.732001) (xy 56.541379 109.711999) (xy 56.494886 109.658343) (xy 56.4835 109.606001) (xy 56.4835 101.328768) (xy 56.484027 101.317585) (xy 56.485702 101.310092) (xy 56.483562 101.242001) (xy 56.4835 101.238044) (xy 56.4835 101.210144) (xy 56.482996 101.206153) (xy 56.482063 101.194311) (xy 56.481701 101.182776) (xy 56.480674 101.150111) (xy 56.478462 101.142497) (xy 56.478461 101.142492) (xy 56.475023 101.130659) (xy 56.471012 101.111295) (xy 56.469467 101.099064) (xy 56.468474 101.091203) (xy 56.465557 101.083836) (xy 56.465556 101.083831) (xy 56.452198 101.050092) (xy 56.448354 101.038865) (xy 56.442755 101.019594) (xy 56.436018 100.996407) (xy 56.425707 100.978972) (xy 56.417012 100.961224) (xy 56.409552 100.942383) (xy 56.383564 100.906613) (xy 56.377048 100.896693) (xy 56.35858 100.865465) (xy 56.358578 100.865462) (xy 56.354542 100.858638) (xy 56.340221 100.844317) (xy 56.32738 100.829283) (xy 56.320131 100.819306) (xy 56.315472 100.812893) (xy 56.281395 100.784702) (xy 56.272616 100.776712) (xy 50.200405 94.7045) (xy 50.166379 94.642188) (xy 50.1635 94.615405) (xy 50.1635 94.590427) (xy 50.183502 94.522306) (xy 50.224618 94.48255) (xy 50.227994 94.480896) (xy 50.40986 94.351173) (xy 50.568096 94.193489) (xy 50.58066 94.176005) (xy 50.698453 94.012077) (xy 50.699776 94.013028) (xy 50.746645 93.969857) (xy 50.81658 93.957625) (xy 50.882026 93.985144) (xy 50.909875 94.016994) (xy 50.969987 94.115088) (xy 51.11625 94.283938) (xy 51.288126 94.426632) (xy 51.481 94.539338) (xy 51.485825 94.54118) (xy 51.485826 94.541181) (xy 51.515305 94.552438) (xy 51.689692 94.61903) (xy 51.69476 94.620061) (xy 51.694763 94.620062) (xy 51.780705 94.637547) (xy 51.908597 94.663567) (xy 51.913772 94.663757) (xy 51.913774 94.663757) (xy 52.126673 94.671564) (xy 52.126677 94.671564) (xy 52.131837 94.671753) (xy 52.136957 94.671097) (xy 52.136959 94.671097) (xy 52.348288 94.644025) (xy 52.348289 94.644025) (xy 52.353416 94.643368) (xy 52.358366 94.641883) (xy 52.562429 94.580661) (xy 52.562434 94.580659) (xy 52.567384 94.579174) (xy 52.767994 94.480896) (xy 52.94986 94.351173) (xy 53.108096 94.193489) (xy 53.12066 94.176005) (xy 53.238453 94.012077) (xy 53.239776 94.013028) (xy 53.286645 93.969857) (xy 53.35658 93.957625) (xy 53.422026 93.985144) (xy 53.449875 94.016994) (xy 53.509987 94.115088) (xy 53.65625 94.283938) (xy 53.828126 94.426632) (xy 54.021 94.539338) (xy 54.025825 94.54118) (xy 54.025826 94.541181) (xy 54.055305 94.552438) (xy 54.229692 94.61903) (xy 54.23476 94.620061) (xy 54.234763 94.620062) (xy 54.320705 94.637547) (xy 54.448597 94.663567) (xy 54.453772 94.663757) (xy 54.453774 94.663757) (xy 54.666673 94.671564) (xy 54.666677 94.671564) (xy 54.671837 94.671753) (xy 54.676957 94.671097) (xy 54.676959 94.671097) (xy 54.888288 94.644025) (xy 54.888289 94.644025) (xy 54.893416 94.643368) (xy 54.898366 94.641883) (xy 55.102429 94.580661) (xy 55.102434 94.580659) (xy 55.107384 94.579174) (xy 55.307994 94.480896) (xy 55.48986 94.351173) (xy 55.598091 94.243319) (xy 55.660462 94.209404) (xy 55.731268 94.214592) (xy 55.78803 94.257238) (xy 55.805012 94.288341) (xy 55.808461 94.29754) (xy 55.849385 94.406705) (xy 55.936739 94.523261) (xy 56.053295 94.610615) (xy 56.189684 94.661745) (xy 56.251866 94.6685) (xy 58.048134 94.6685) (xy 58.110316 94.661745) (xy 58.246705 94.610615) (xy 58.363261 94.523261) (xy 58.450615 94.406705) (xy 58.459132 94.383987) (xy 58.494598 94.289382) (xy 58.53724 94.232618) (xy 58.603802 94.207918) (xy 58.67315 94.223126) (xy 58.707817 94.251114) (xy 58.73625 94.283938) (xy 58.908126 94.426632) (xy 59.101 94.539338) (xy 59.105825 94.54118) (xy 59.105826 94.541181) (xy 59.135305 94.552438) (xy 59.309692 94.61903) (xy 59.31476 94.620061) (xy 59.314763 94.620062) (xy 59.400705 94.637547) (xy 59.528597 94.663567) (xy 59.533772 94.663757) (xy 59.533774 94.663757) (xy 59.746673 94.671564) (xy 59.746677 94.671564) (xy 59.751837 94.671753) (xy 59.756957 94.671097) (xy 59.756959 94.671097) (xy 59.968288 94.644025) (xy 59.968289 94.644025) (xy 59.973416 94.643368) (xy 59.978366 94.641883) (xy 60.182429 94.580661) (xy 60.182434 94.580659) (xy 60.187384 94.579174) (xy 60.387994 94.480896) (xy 60.56986 94.351173) (xy 60.728096 94.193489) (xy 60.74066 94.176005) (xy 60.858453 94.012077) (xy 60.859776 94.013028) (xy 60.906645 93.969857) (xy 60.97658 93.957625) (xy 61.042026 93.985144) (xy 61.069875 94.016994) (xy 61.129987 94.115088) (xy 61.27625 94.283938) (xy 61.448126 94.426632) (xy 61.641 94.539338) (xy 61.645825 94.54118) (xy 61.645826 94.541181) (xy 61.675305 94.552438) (xy 61.849692 94.61903) (xy 61.85476 94.620061) (xy 61.854763 94.620062) (xy 61.940705 94.637547) (xy 62.068597 94.663567) (xy 62.073772 94.663757) (xy 62.073774 94.663757) (xy 62.286673 94.671564) (xy 62.286677 94.671564) (xy 62.291837 94.671753) (xy 62.296957 94.671097) (xy 62.296959 94.671097) (xy 62.508288 94.644025) (xy 62.508289 94.644025) (xy 62.513416 94.643368) (xy 62.518366 94.641883) (xy 62.722429 94.580661) (xy 62.722434 94.580659) (xy 62.727384 94.579174) (xy 62.927994 94.480896) (xy 63.10986 94.351173) (xy 63.268096 94.193489) (xy 63.28066 94.176005) (xy 63.398453 94.012077) (xy 63.399776 94.013028) (xy 63.446645 93.969857) (xy 63.51658 93.957625) (xy 63.582026 93.985144) (xy 63.609875 94.016994) (xy 63.669987 94.115088) (xy 63.81625 94.283938) (xy 63.988126 94.426632) (xy 64.181 94.539338) (xy 64.185825 94.54118) (xy 64.185826 94.541181) (xy 64.215305 94.552438) (xy 64.389692 94.61903) (xy 64.39476 94.620061) (xy 64.394763 94.620062) (xy 64.480705 94.637547) (xy 64.608597 94.663567) (xy 64.613772 94.663757) (xy 64.613774 94.663757) (xy 64.820597 94.671341) (xy 64.887939 94.693826) (xy 64.932435 94.749149) (xy 64.94198 94.797256) (xy 64.94198 108.984925) (xy 64.921978 109.053046) (xy 64.905075 109.07402) (xy 64.8745 109.104595) (xy 64.812188 109.138621) (xy 64.785405 109.1415) (xy 64.303767 109.1415) (xy 64.292584 109.140973) (xy 64.285091 109.139298) (xy 64.277165 109.139547) (xy 64.277164 109.139547) (xy 64.217014 109.141438) (xy 64.213055 109.1415) (xy 64.185144 109.1415) (xy 64.18121 109.141997) (xy 64.181209 109.141997) (xy 64.181144 109.142005) (xy 64.169307 109.142938) (xy 64.13749 109.143938) (xy 64.133029 109.144078) (xy 64.12511 109.144327) (xy 64.107454 109.149456) (xy 64.105658 109.149978) (xy 64.086306 109.153986) (xy 64.079235 109.15488) (xy 64.066203 109.156526) (xy 64.058834 109.159443) (xy 64.058832 109.159444) (xy 64.025097 109.1728) (xy 64.013869 109.176645) (xy 63.971407 109.188982) (xy 63.964585 109.193016) (xy 63.964579 109.193019) (xy 63.953968 109.199294) (xy 63.936218 109.20799) (xy 63.924756 109.212528) (xy 63.924751 109.212531) (xy 63.917383 109.215448) (xy 63.910968 109.220109) (xy 63.881625 109.241427) (xy 63.871707 109.247943) (xy 63.853019 109.258995) (xy 63.833637 109.270458) (xy 63.819313 109.284782) (xy 63.804281 109.297621) (xy 63.787893 109.309528) (xy 63.760267 109.342922) (xy 63.759712 109.343593) (xy 63.751722 109.352373) (xy 63.155869 109.948226) (xy 63.093557 109.982252) (xy 63.022742 109.977187) (xy 62.992906 109.960389) (xy 62.992723 109.960664) (xy 62.988993 109.958186) (xy 62.988675 109.958007) (xy 62.984359 109.954598) (xy 62.788789 109.846638) (xy 62.78392 109.844914) (xy 62.783916 109.844912) (xy 62.583087 109.773795) (xy 62.583083 109.773794) (xy 62.578212 109.772069) (xy 62.573119 109.771162) (xy 62.573116 109.771161) (xy 62.363373 109.7338) (xy 62.363367 109.733799) (xy 62.358284 109.732894) (xy 62.284452 109.731992) (xy 62.140081 109.730228) (xy 62.140079 109.730228) (xy 62.134911 109.730165) (xy 61.914091 109.763955) (xy 61.701756 109.833357) (xy 61.503607 109.936507) (xy 61.499474 109.93961) (xy 61.499471 109.939612) (xy 61.3291 110.06753) (xy 61.324965 110.070635) (xy 61.299447 110.097338) (xy 61.201842 110.199476) (xy 61.170629 110.232138) (xy 61.063201 110.389621) (xy 61.008293 110.434621) (xy 60.937768 110.442792) (xy 60.874021 110.411538) (xy 60.853324 110.387054) (xy 60.772822 110.262617) (xy 60.77282 110.262614) (xy 60.770014 110.258277) (xy 60.61967 110.093051) (xy 60.615619 110.089852) (xy 60.615615 110.089848) (xy 60.448414 109.9578) (xy 60.44841 109.957798) (xy 60.444359 109.954598) (xy 60.248789 109.846638) (xy 60.24392 109.844914) (xy 60.243916 109.844912) (xy 60.043087 109.773795) (xy 60.043083 109.773794) (xy 60.038212 109.772069) (xy 60.033119 109.771162) (xy 60.033116 109.771161) (xy 59.823373 109.7338) (xy 59.823367 109.733799) (xy 59.818284 109.732894) (xy 59.744452 109.731992) (xy 59.600081 109.730228) (xy 59.600079 109.730228) (xy 59.594911 109.730165) (xy 59.374091 109.763955) (xy 59.161756 109.833357) (xy 58.963607 109.936507) (xy 58.959474 109.93961) (xy 58.959471 109.939612) (xy 58.7891 110.06753) (xy 58.784965 110.070635) (xy 58.781393 110.074373) (xy 58.703898 110.155466) (xy 58.642374 110.190895) (xy 58.571462 110.187438) (xy 58.513676 110.146192) (xy 58.494823 110.112644) (xy 58.453324 110.001946) (xy 58.444786 109.986351) (xy 58.368285 109.884276) (xy 58.355724 109.871715) (xy 58.253649 109.795214) (xy 58.238054 109.786676) (xy 58.117606 109.741522) (xy 58.102351 109.737895) (xy 58.051486 109.732369) (xy 58.044672 109.732) (xy 57.422115 109.732) (xy 57.406876 109.736475) (xy 57.405671 109.737865) (xy 57.404 109.745548) (xy 57.404 112.429884) (xy 57.408475 112.445123) (xy 57.409865 112.446328) (xy 57.417548 112.447999) (xy 58.044669 112.447999) (xy 58.05149 112.447629) (xy 58.102352 112.442105) (xy 58.117604 112.438479) (xy 58.238054 112.393324) (xy 58.253649 112.384786) (xy 58.355724 112.308285) (xy 58.368285 112.295724) (xy 58.444786 112.193649) (xy 58.453324 112.178054) (xy 58.494225 112.068952) (xy 58.536867 112.012188) (xy 58.603428 111.987488) (xy 58.672777 112.002696) (xy 58.707444 112.030684) (xy 58.732865 112.060031) (xy 58.732869 112.060035) (xy 58.73625 112.063938) (xy 58.908126 112.206632) (xy 59.101 112.319338) (xy 59.309692 112.39903) (xy 59.31476 112.400061) (xy 59.314763 112.400062) (xy 59.376965 112.412717) (xy 59.528597 112.443567) (xy 59.533772 112.443757) (xy 59.533774 112.443757) (xy 59.746673 112.451564) (xy 59.746677 112.451564) (xy 59.751837 112.451753) (xy 59.756957 112.451097) (xy 59.756959 112.451097) (xy 59.968288 112.424025) (xy 59.968289 112.424025) (xy 59.973416 112.423368) (xy 59.991385 112.417977) (xy 60.182429 112.360661) (xy 60.182434 112.360659) (xy 60.187384 112.359174) (xy 60.387994 112.260896) (xy 60.56986 112.131173) (xy 60.582283 112.118794) (xy 60.678479 112.022933) (xy 60.728096 111.973489) (xy 60.735804 111.962763) (xy 60.858453 111.792077) (xy 60.859776 111.793028) (xy 60.906645 111.749857) (xy 60.97658 111.737625) (xy 61.042026 111.765144) (xy 61.069875 111.796994) (xy 61.129987 111.895088) (xy 61.27625 112.063938) (xy 61.448126 112.206632) (xy 61.641 112.319338) (xy 61.849692 112.39903) (xy 61.85476 112.400061) (xy 61.854763 112.400062) (xy 61.916965 112.412717) (xy 62.068597 112.443567) (xy 62.073772 112.443757) (xy 62.073774 112.443757) (xy 62.286673 112.451564) (xy 62.286677 112.451564) (xy 62.291837 112.451753) (xy 62.296957 112.451097) (xy 62.296959 112.451097) (xy 62.508288 112.424025) (xy 62.508289 112.424025) (xy 62.513416 112.423368) (xy 62.518373 112.421881) (xy 62.518377 112.42188) (xy 62.679292 112.373603) (xy 62.750287 112.373185) (xy 62.810238 112.411218) (xy 62.84011 112.475624) (xy 62.8415 112.494288) (xy 62.8415 121.710405) (xy 62.821498 121.778526) (xy 62.804595 121.7995) (xy 61.9745 122.629595) (xy 61.912188 122.663621) (xy 61.885405 122.6665) (xy 59.1082 122.6665) (xy 59.040079 122.646498) (xy 59.020853 122.630157) (xy 59.02058 122.63046) (xy 59.015668 122.626037) (xy 59.011253 122.621134) (xy 58.982045 122.599913) (xy 58.862094 122.512763) (xy 58.862093 122.512762) (xy 58.856752 122.508882) (xy 58.850724 122.506198) (xy 58.850722 122.506197) (xy 58.688319 122.433891) (xy 58.688318 122.433891) (xy 58.682288 122.431206) (xy 58.588887 122.411353) (xy 58.501944 122.392872) (xy 58.501939 122.392872) (xy 58.495487 122.3915) (xy 58.304513 122.3915) (xy 58.298061 122.392872) (xy 58.298056 122.392872) (xy 58.211113 122.411353) (xy 58.117712 122.431206) (xy 58.111682 122.433891) (xy 58.111681 122.433891) (xy 57.949278 122.506197) (xy 57.949276 122.506198) (xy 57.943248 122.508882) (xy 57.937907 122.512762) (xy 57.937906 122.512763) (xy 57.927026 122.520668) (xy 57.788747 122.621134) (xy 57.784326 122.626044) (xy 57.784325 122.626045) (xy 57.73873 122.676684) (xy 57.66096 122.763056) (xy 57.565473 122.928444) (xy 57.506458 123.110072) (xy 57.505768 123.116633) (xy 57.505768 123.116635) (xy 57.491466 123.252712) (xy 57.486496 123.3) (xy 57.487186 123.306565) (xy 57.505014 123.476185) (xy 57.506458 123.489928) (xy 57.565473 123.671556) (xy 57.568776 123.677278) (xy 57.568777 123.677279) (xy 57.600021 123.731395) (xy 57.66096 123.836944) (xy 57.665378 123.841851) (xy 57.665379 123.841852) (xy 57.781474 123.970789) (xy 57.788747 123.978866) (xy 57.881863 124.046519) (xy 57.923024 124.076424) (xy 57.943248 124.091118) (xy 57.949276 124.093802) (xy 57.949278 124.093803) (xy 58.111681 124.166109) (xy 58.117712 124.168794) (xy 58.199836 124.18625) (xy 58.298056 124.207128) (xy 58.298061 124.207128) (xy 58.304513 124.2085) (xy 58.495487 124.2085) (xy 58.501939 124.207128) (xy 58.501944 124.207128) (xy 58.600164 124.18625) (xy 58.682288 124.168794) (xy 58.688319 124.166109) (xy 58.850722 124.093803) (xy 58.850724 124.093802) (xy 58.856752 124.091118) (xy 58.876977 124.076424) (xy 58.995604 123.990236) (xy 59.011253 123.978866) (xy 59.015668 123.973963) (xy 59.02058 123.96954) (xy 59.021705 123.970789) (xy 59.075014 123.937949) (xy 59.1082 123.9335) (xy 62.121233 123.9335) (xy 62.132416 123.934027) (xy 62.139909 123.935702) (xy 62.147835 123.935453) (xy 62.147836 123.935453) (xy 62.207986 123.933562) (xy 62.211945 123.9335) (xy 62.239856 123.9335) (xy 62.243791 123.933003) (xy 62.243856 123.932995) (xy 62.255693 123.932062) (xy 62.287951 123.931048) (xy 62.29197 123.930922) (xy 62.299889 123.930673) (xy 62.319343 123.925021) (xy 62.3387 123.921013) (xy 62.35093 123.919468) (xy 62.350931 123.919468) (xy 62.358797 123.918474) (xy 62.366168 123.915555) (xy 62.36617 123.915555) (xy 62.399912 123.902196) (xy 62.411142 123.898351) (xy 62.445983 123.888229) (xy 62.445984 123.888229) (xy 62.453593 123.886018) (xy 62.460412 123.881985) (xy 62.460417 123.881983) (xy 62.471028 123.875707) (xy 62.488776 123.867012) (xy 62.507617 123.859552) (xy 62.519445 123.850959) (xy 62.543387 123.833564) (xy 62.553307 123.827048) (xy 62.584535 123.80858) (xy 62.584538 123.808578) (xy 62.591362 123.804542) (xy 62.605683 123.790221) (xy 62.620717 123.77738) (xy 62.623797 123.775142) (xy 62.637107 123.765472) (xy 62.665298 123.731395) (xy 62.673288 123.722616) (xy 63.867247 122.528657) (xy 63.875537 122.521113) (xy 63.882018 122.517) (xy 63.928659 122.467332) (xy 63.931413 122.464491) (xy 63.951134 122.44477) (xy 63.953612 122.441575) (xy 63.961318 122.432553) (xy 63.986158 122.406101) (xy 63.991586 122.400321) (xy 64.001346 122.382568) (xy 64.012199 122.366045) (xy 64.019753 122.356306) (xy 64.024613 122.350041) (xy 64.042176 122.309457) (xy 64.047383 122.298827) (xy 64.068695 122.26006) (xy 64.070666 122.252383) (xy 64.070668 122.252378) (xy 64.073732 122.240442) (xy 64.080138 122.22173) (xy 64.082601 122.21604) (xy 64.088181 122.203145) (xy 64.089421 122.195317) (xy 64.089423 122.19531) (xy 64.095099 122.159476) (xy 64.097505 122.147856) (xy 64.106528 122.112711) (xy 64.106528 122.11271) (xy 64.1085 122.10503) (xy 64.1085 122.084776) (xy 64.110051 122.065065) (xy 64.11198 122.052886) (xy 64.11322 122.045057) (xy 64.112426 122.036652) (xy 64.109059 122.001039) (xy 64.1085 121.989181) (xy 64.1085 112.474642) (xy 64.128502 112.406521) (xy 64.182158 112.360028) (xy 64.252432 112.349924) (xy 64.279448 112.356932) (xy 64.389692 112.39903) (xy 64.39476 112.400061) (xy 64.394763 112.400062) (xy 64.456965 112.412717) (xy 64.608597 112.443567) (xy 64.613772 112.443757) (xy 64.613774 112.443757) (xy 64.826673 112.451564) (xy 64.826677 112.451564) (xy 64.831837 112.451753) (xy 64.836957 112.451097) (xy 64.836959 112.451097) (xy 65.048288 112.424025) (xy 65.048289 112.424025) (xy 65.053416 112.423368) (xy 65.229293 112.370602) (xy 65.300288 112.370185) (xy 65.360238 112.408218) (xy 65.39011 112.472624) (xy 65.3915 112.491288) (xy 65.3915 117.951864) (xy 65.390422 117.968307) (xy 65.38625 118) (xy 65.3915 118.03988) (xy 65.3915 118.039885) (xy 65.403252 118.129151) (xy 65.407162 118.158851) (xy 65.468476 118.306876) (xy 65.473503 118.313427) (xy 65.473504 118.313429) (xy 65.54152 118.402069) (xy 65.541526 118.402075) (xy 65.566013 118.433987) (xy 65.572568 118.439017) (xy 65.591379 118.453452) (xy 65.60377 118.464319) (xy 68.050281 120.91083) (xy 68.084307 120.973142) (xy 68.086841 120.996716) (xy 68.086496 121) (xy 68.087186 121.006565) (xy 68.10333 121.160163) (xy 68.106458 121.189928) (xy 68.165473 121.371556) (xy 68.168776 121.377278) (xy 68.168777 121.377279) (xy 68.184086 121.403794) (xy 68.26096 121.536944) (xy 68.265378 121.541851) (xy 68.265379 121.541852) (xy 68.362967 121.650234) (xy 68.388747 121.678866) (xy 68.435402 121.712763) (xy 68.53458 121.78482) (xy 68.543248 121.791118) (xy 68.549276 121.793802) (xy 68.549278 121.793803) (xy 68.711681 121.866109) (xy 68.717712 121.868794) (xy 68.811112 121.888647) (xy 68.898056 121.907128) (xy 68.898061 121.907128) (xy 68.904513 121.9085) (xy 69.095487 121.9085) (xy 69.101939 121.907128) (xy 69.101944 121.907128) (xy 69.188888 121.888647) (xy 69.282288 121.868794) (xy 69.288319 121.866109) (xy 69.450722 121.793803) (xy 69.450724 121.793802) (xy 69.456752 121.791118) (xy 69.465421 121.78482) (xy 69.564598 121.712763) (xy 69.611253 121.678866) (xy 69.637033 121.650234) (xy 69.734621 121.541852) (xy 69.734622 121.541851) (xy 69.73904 121.536944) (xy 69.815914 121.403794) (xy 69.831223 121.377279) (xy 69.831224 121.377278) (xy 69.834527 121.371556) (xy 69.893542 121.189928) (xy 69.896671 121.160163) (xy 69.912814 121.006565) (xy 69.913504 121) (xy 69.909953 120.966213) (xy 69.894232 120.816635) (xy 69.894232 120.816633) (xy 69.893542 120.810072) (xy 69.834527 120.628444) (xy 69.812803 120.590816) (xy 69.785015 120.542687) (xy 69.73904 120.463056) (xy 69.733766 120.457198) (xy 69.615675 120.326045) (xy 69.615674 120.326044) (xy 69.611253 120.321134) (xy 69.470465 120.218845) (xy 69.462094 120.212763) (xy 69.462093 120.212762) (xy 69.456752 120.208882) (xy 69.450724 120.206198) (xy 69.450722 120.206197) (xy 69.288319 120.133891) (xy 69.288318 120.133891) (xy 69.282288 120.131206) (xy 69.188887 120.111353) (xy 69.101944 120.092872) (xy 69.101939 120.092872) (xy 69.095487 120.0915) (xy 69.004239 120.0915) (xy 68.936118 120.071498) (xy 68.915144 120.054595) (xy 66.645405 117.784856) (xy 66.611379 117.722544) (xy 66.6085 117.695761) (xy 66.6085 112.459368) (xy 66.628502 112.391247) (xy 66.682158 112.344754) (xy 66.752432 112.33465) (xy 66.779449 112.341658) (xy 66.875783 112.378444) (xy 66.929692 112.39903) (xy 66.93476 112.400061) (xy 66.934763 112.400062) (xy 66.996965 112.412717) (xy 67.148597 112.443567) (xy 67.153772 112.443757) (xy 67.153774 112.443757) (xy 67.366673 112.451564) (xy 67.366677 112.451564) (xy 67.371837 112.451753) (xy 67.376957 112.451097) (xy 67.376959 112.451097) (xy 67.588288 112.424025) (xy 67.588289 112.424025) (xy 67.593416 112.423368) (xy 67.611385 112.417977) (xy 67.802429 112.360661) (xy 67.802434 112.360659) (xy 67.807384 112.359174) (xy 68.007994 112.260896) (xy 68.18986 112.131173) (xy 68.202283 112.118794) (xy 68.298479 112.022933) (xy 68.360851 111.989017) (xy 68.431658 111.994205) (xy 68.488419 112.036851) (xy 68.505401 112.067954) (xy 68.546676 112.178054) (xy 68.555214 112.193649) (xy 68.631715 112.295724) (xy 68.644276 112.308285) (xy 68.746351 112.384786) (xy 68.761946 112.393324) (xy 68.882394 112.438478) (xy 68.897649 112.442105) (xy 68.948514 112.447631) (xy 68.955328 112.448) (xy 69.577885 112.448) (xy 69.593124 112.443525) (xy 69.594329 112.442135) (xy 69.596 112.434452) (xy 69.596 109.750116) (xy 69.591525 109.734877) (xy 69.590135 109.733672) (xy 69.582452 109.732001) (xy 68.955331 109.732001) (xy 68.94851 109.732371) (xy 68.897648 109.737895) (xy 68.882396 109.741521) (xy 68.761946 109.786676) (xy 68.746351 109.795214) (xy 68.644276 109.871715) (xy 68.631715 109.884276) (xy 68.555214 109.986351) (xy 68.546676 110.001946) (xy 68.505297 110.112322) (xy 68.462655 110.169087) (xy 68.396093 110.193786) (xy 68.326744 110.178578) (xy 68.294121 110.152891) (xy 68.243151 110.096876) (xy 68.243145 110.09687) (xy 68.23967 110.093051) (xy 68.235619 110.089852) (xy 68.235615 110.089848) (xy 68.068414 109.9578) (xy 68.06841 109.957798) (xy 68.064359 109.954598) (xy 67.868789 109.846638) (xy 67.86392 109.844914) (xy 67.863916 109.844912) (xy 67.663087 109.773795) (xy 67.663083 109.773794) (xy 67.658212 109.772069) (xy 67.653119 109.771162) (xy 67.653116 109.771161) (xy 67.443373 109.7338) (xy 67.443367 109.733799) (xy 67.438284 109.732894) (xy 67.364452 109.731992) (xy 67.220081 109.730228) (xy 67.220079 109.730228) (xy 67.214911 109.730165) (xy 66.994091 109.763955) (xy 66.781756 109.833357) (xy 66.781748 109.833333) (xy 66.712784 109.841116) (xy 66.64913 109.809673) (xy 66.61258 109.748807) (xy 66.6085 109.717002) (xy 66.6085 94.679368) (xy 66.628502 94.611247) (xy 66.682158 94.564754) (xy 66.752432 94.55465) (xy 66.779449 94.561658) (xy 66.83658 94.583474) (xy 66.929692 94.61903) (xy 66.93476 94.620061) (xy 66.934763 94.620062) (xy 67.020705 94.637547) (xy 67.148597 94.663567) (xy 67.153772 94.663757) (xy 67.153774 94.663757) (xy 67.366673 94.671564) (xy 67.366677 94.671564) (xy 67.371837 94.671753) (xy 67.376957 94.671097) (xy 67.376959 94.671097) (xy 67.588288 94.644025) (xy 67.588289 94.644025) (xy 67.593416 94.643368) (xy 67.598366 94.641883) (xy 67.802429 94.580661) (xy 67.802434 94.580659) (xy 67.807384 94.579174) (xy 68.007994 94.480896) (xy 68.18986 94.351173) (xy 68.257331 94.283938) (xy 68.298479 94.242933) (xy 68.360851 94.209017) (xy 68.431658 94.214205) (xy 68.488419 94.256851) (xy 68.505401 94.287954) (xy 68.546676 94.398054) (xy 68.555214 94.413649) (xy 68.631715 94.515724) (xy 68.644276 94.528285) (xy 68.746351 94.604786) (xy 68.761946 94.613324) (xy 68.882394 94.658478) (xy 68.897649 94.662105) (xy 68.948514 94.667631) (xy 68.955328 94.668) (xy 69.577885 94.668) (xy 69.593124 94.663525) (xy 69.594329 94.662135) (xy 69.596 94.654452) (xy 69.596 91.970116) (xy 69.591525 91.954877) (xy 69.590135 91.953672) (xy 69.582452 91.952001) (xy 68.955331 91.952001) (xy 68.94851 91.952371) (xy 68.897648 91.957895) (xy 68.882396 91.961521) (xy 68.761946 92.006676) (xy 68.746351 92.015214) (xy 68.644276 92.091715) (xy 68.631715 92.104276) (xy 68.555214 92.206351) (xy 68.546676 92.221946) (xy 68.505297 92.332322) (xy 68.462655 92.389087) (xy 68.396093 92.413786) (xy 68.326744 92.398578) (xy 68.294121 92.372891) (xy 68.243151 92.316876) (xy 68.243145 92.31687) (xy 68.23967 92.313051) (xy 68.235619 92.309852) (xy 68.235615 92.309848) (xy 68.068414 92.1778) (xy 68.06841 92.177798) (xy 68.064359 92.174598) (xy 68.059829 92.172097) (xy 68.008114 92.143549) (xy 67.868789 92.066638) (xy 67.86392 92.064914) (xy 67.863916 92.064912) (xy 67.663087 91.993795) (xy 67.663083 91.993794) (xy 67.658212 91.992069) (xy 67.653119 91.991162) (xy 67.653116 91.991161) (xy 67.443373 91.9538) (xy 67.443367 91.953799) (xy 67.438284 91.952894) (xy 67.364452 91.951992) (xy 67.220081 91.950228) (xy 67.220079 91.950228) (xy 67.214911 91.950165) (xy 66.994091 91.983955) (xy 66.781756 92.053357) (xy 66.781748 92.053333) (xy 66.712784 92.061116) (xy 66.64913 92.029673) (xy 66.61258 91.968807) (xy 66.6085 91.937002) (xy 66.6085 85.8845) (xy 66.628502 85.816379) (xy 66.682158 85.769886) (xy 66.7345 85.7585) (xy 78.745761 85.7585) (xy 78.813882 85.778502) (xy 78.834856 85.795405) (xy 79.162917 86.123466) (xy 79.196943 86.185778) (xy 79.191878 86.256593) (xy 79.14788 86.314499) (xy 79.138747 86.321134) (xy 79.134326 86.326044) (xy 79.134325 86.326045) (xy 79.023313 86.449337) (xy 79.01096 86.463056) (xy 78.98097 86.515) (xy 78.936623 86.591812) (xy 78.915473 86.628444) (xy 78.856458 86.810072) (xy 78.855768 86.816633) (xy 78.855768 86.816635) (xy 78.84281 86.939928) (xy 78.836496 87) (xy 78.837186 87.006565) (xy 78.852477 87.152047) (xy 78.856458 87.189928) (xy 78.915473 87.371556) (xy 78.918776 87.377278) (xy 78.918777 87.377279) (xy 78.936803 87.4085) (xy 79.01096 87.536944) (xy 79.015378 87.541851) (xy 79.015379 87.541852) (xy 79.109136 87.64598) (xy 79.139854 87.709987) (xy 79.1415 87.73029) (xy 79.1415 88.945761) (xy 79.121498 89.013882) (xy 79.104595 89.034856) (xy 77.929246 90.210205) (xy 77.916855 90.221072) (xy 77.891493 90.240533) (xy 77.867006 90.272445) (xy 77.867003 90.272448) (xy 77.866997 90.272456) (xy 77.825404 90.326661) (xy 77.793956 90.367644) (xy 77.767168 90.432317) (xy 77.732642 90.51567) (xy 77.71698 90.634635) (xy 77.71698 90.63464) (xy 77.71173 90.67452) (xy 77.712808 90.682708) (xy 77.715902 90.70621) (xy 77.71698 90.722656) (xy 77.71698 91.2655) (xy 77.696978 91.333621) (xy 77.643322 91.380114) (xy 77.59098 91.3915) (xy 76.923136 91.3915) (xy 76.90669 91.390422) (xy 76.883188 91.387328) (xy 76.875 91.38625) (xy 76.866812 91.387328) (xy 76.835129 91.391499) (xy 76.83512 91.3915) (xy 76.835115 91.3915) (xy 76.71615 91.407162) (xy 76.568125 91.468476) (xy 76.568123 91.468477) (xy 76.568124 91.468477) (xy 76.472928 91.541523) (xy 76.472925 91.541526) (xy 76.441013 91.566013) (xy 76.435983 91.572568) (xy 76.421548 91.591379) (xy 76.410681 91.60377) (xy 75.853766 92.160685) (xy 75.841381 92.171548) (xy 75.837465 92.174553) (xy 75.771247 92.200155) (xy 75.701698 92.185892) (xy 75.691031 92.17954) (xy 75.68842 92.177805) (xy 75.684359 92.174598) (xy 75.679832 92.172099) (xy 75.679829 92.172097) (xy 75.578406 92.116109) (xy 75.488789 92.066638) (xy 75.48392 92.064914) (xy 75.483916 92.064912) (xy 75.283087 91.993795) (xy 75.283083 91.993794) (xy 75.278212 91.992069) (xy 75.273119 91.991162) (xy 75.273116 91.991161) (xy 75.063373 91.9538) (xy 75.063367 91.953799) (xy 75.058284 91.952894) (xy 74.984452 91.951992) (xy 74.840081 91.950228) (xy 74.840079 91.950228) (xy 74.834911 91.950165) (xy 74.614091 91.983955) (xy 74.401756 92.053357) (xy 74.371443 92.069137) (xy 74.253501 92.130534) (xy 74.203607 92.156507) (xy 74.199474 92.15961) (xy 74.199471 92.159612) (xy 74.0291 92.28753) (xy 74.024965 92.290635) (xy 73.870629 92.452138) (xy 73.763201 92.609621) (xy 73.708293 92.654621) (xy 73.637768 92.662792) (xy 73.574021 92.631538) (xy 73.553324 92.607054) (xy 73.472822 92.482617) (xy 73.47282 92.482614) (xy 73.470014 92.478277) (xy 73.31967 92.313051) (xy 73.315619 92.309852) (xy 73.315615 92.309848) (xy 73.148414 92.1778) (xy 73.14841 92.177798) (xy 73.144359 92.174598) (xy 73.139829 92.172097) (xy 73.088114 92.143549) (xy 72.948789 92.066638) (xy 72.94392 92.064914) (xy 72.943916 92.064912) (xy 72.743087 91.993795) (xy 72.743083 91.993794) (xy 72.738212 91.992069) (xy 72.733119 91.991162) (xy 72.733116 91.991161) (xy 72.523373 91.9538) (xy 72.523367 91.953799) (xy 72.518284 91.952894) (xy 72.444452 91.951992) (xy 72.300081 91.950228) (xy 72.300079 91.950228) (xy 72.294911 91.950165) (xy 72.074091 91.983955) (xy 71.861756 92.053357) (xy 71.831443 92.069137) (xy 71.713501 92.130534) (xy 71.663607 92.156507) (xy 71.659474 92.15961) (xy 71.659471 92.159612) (xy 71.4891 92.28753) (xy 71.484965 92.290635) (xy 71.481393 92.294373) (xy 71.403898 92.375466) (xy 71.342374 92.410895) (xy 71.271462 92.407438) (xy 71.213676 92.366192) (xy 71.194823 92.332644) (xy 71.153324 92.221946) (xy 71.144786 92.206351) (xy 71.068285 92.104276) (xy 71.055724 92.091715) (xy 70.953649 92.015214) (xy 70.938054 92.006676) (xy 70.817606 91.961522) (xy 70.802351 91.957895) (xy 70.751486 91.952369) (xy 70.744672 91.952) (xy 70.122115 91.952) (xy 70.106876 91.956475) (xy 70.105671 91.957865) (xy 70.104 91.965548) (xy 70.104 94.649884) (xy 70.108475 94.665123) (xy 70.109865 94.666328) (xy 70.117548 94.667999) (xy 70.744669 94.667999) (xy 70.75149 94.667629) (xy 70.802352 94.662105) (xy 70.817604 94.658479) (xy 70.938054 94.613324) (xy 70.953649 94.604786) (xy 71.055724 94.528285) (xy 71.068285 94.515724) (xy 71.144786 94.413649) (xy 71.153324 94.398054) (xy 71.194225 94.288952) (xy 71.236867 94.232188) (xy 71.303428 94.207488) (xy 71.372777 94.222696) (xy 71.407444 94.250684) (xy 71.432865 94.280031) (xy 71.432869 94.280035) (xy 71.43625 94.283938) (xy 71.608126 94.426632) (xy 71.801 94.539338) (xy 71.805825 94.54118) (xy 71.805826 94.541181) (xy 71.835305 94.552438) (xy 72.009692 94.61903) (xy 72.01476 94.620061) (xy 72.014763 94.620062) (xy 72.100705 94.637547) (xy 72.228597 94.663567) (xy 72.233772 94.663757) (xy 72.233774 94.663757) (xy 72.446673 94.671564) (xy 72.446677 94.671564) (xy 72.451837 94.671753) (xy 72.456957 94.671097) (xy 72.456959 94.671097) (xy 72.668288 94.644025) (xy 72.668289 94.644025) (xy 72.673416 94.643368) (xy 72.678366 94.641883) (xy 72.882429 94.580661) (xy 72.882434 94.580659) (xy 72.887384 94.579174) (xy 73.087994 94.480896) (xy 73.26986 94.351173) (xy 73.428096 94.193489) (xy 73.44066 94.176005) (xy 73.558453 94.012077) (xy 73.559776 94.013028) (xy 73.606645 93.969857) (xy 73.67658 93.957625) (xy 73.742026 93.985144) (xy 73.769875 94.016994) (xy 73.829987 94.115088) (xy 73.97625 94.283938) (xy 74.148126 94.426632) (xy 74.341 94.539338) (xy 74.345825 94.54118) (xy 74.345826 94.541181) (xy 74.375305 94.552438) (xy 74.549692 94.61903) (xy 74.55476 94.620061) (xy 74.554763 94.620062) (xy 74.640705 94.637547) (xy 74.768597 94.663567) (xy 74.773772 94.663757) (xy 74.773774 94.663757) (xy 74.986673 94.671564) (xy 74.986677 94.671564) (xy 74.991837 94.671753) (xy 74.996957 94.671097) (xy 74.996959 94.671097) (xy 75.208288 94.644025) (xy 75.208289 94.644025) (xy 75.213416 94.643368) (xy 75.218366 94.641883) (xy 75.422429 94.580661) (xy 75.422434 94.580659) (xy 75.427384 94.579174) (xy 75.460069 94.563162) (xy 75.530041 94.551155) (xy 75.595398 94.578885) (xy 75.635388 94.637547) (xy 75.6415 94.676313) (xy 75.6415 106.556876) (xy 75.640422 106.573319) (xy 75.63625 106.605012) (xy 75.6415 106.644892) (xy 75.6415 106.644897) (xy 75.652319 106.727072) (xy 75.654874 106.74648) (xy 75.657162 106.763863) (xy 75.660321 106.771489) (xy 75.660321 106.77149) (xy 75.671085 106.797476) (xy 75.718476 106.911888) (xy 75.723503 106.918439) (xy 75.723504 106.918441) (xy 75.79152 107.007081) (xy 75.791526 107.007087) (xy 75.816013 107.038999) (xy 75.822568 107.044029) (xy 75.841379 107.058464) (xy 75.85377 107.069331) (xy 77.574586 108.790147) (xy 77.608612 108.852459) (xy 77.611491 108.879242) (xy 77.611491 109.605506) (xy 77.591489 109.673627) (xy 77.537833 109.72012) (xy 77.483952 109.731497) (xy 77.380081 109.730228) (xy 77.380079 109.730228) (xy 77.374911 109.730165) (xy 77.154091 109.763955) (xy 76.941756 109.833357) (xy 76.743607 109.936507) (xy 76.739474 109.93961) (xy 76.739471 109.939612) (xy 76.5691 110.06753) (xy 76.564965 110.070635) (xy 76.539447 110.097338) (xy 76.441842 110.199476) (xy 76.410629 110.232138) (xy 76.303201 110.389621) (xy 76.248293 110.434621) (xy 76.177768 110.442792) (xy 76.114021 110.411538) (xy 76.093324 110.387054) (xy 76.012822 110.262617) (xy 76.01282 110.262614) (xy 76.010014 110.258277) (xy 75.85967 110.093051) (xy 75.855619 110.089852) (xy 75.855615 110.089848) (xy 75.688414 109.9578) (xy 75.68841 109.957798) (xy 75.684359 109.954598) (xy 75.488789 109.846638) (xy 75.48392 109.844914) (xy 75.483916 109.844912) (xy 75.283087 109.773795) (xy 75.283083 109.773794) (xy 75.278212 109.772069) (xy 75.273119 109.771162) (xy 75.273116 109.771161) (xy 75.063373 109.7338) (xy 75.063367 109.733799) (xy 75.058284 109.732894) (xy 74.984452 109.731992) (xy 74.840081 109.730228) (xy 74.840079 109.730228) (xy 74.834911 109.730165) (xy 74.614091 109.763955) (xy 74.401756 109.833357) (xy 74.203607 109.936507) (xy 74.199474 109.93961) (xy 74.199471 109.939612) (xy 74.0291 110.06753) (xy 74.024965 110.070635) (xy 73.999447 110.097338) (xy 73.901842 110.199476) (xy 73.870629 110.232138) (xy 73.763201 110.389621) (xy 73.708293 110.434621) (xy 73.637768 110.442792) (xy 73.574021 110.411538) (xy 73.553324 110.387054) (xy 73.472822 110.262617) (xy 73.47282 110.262614) (xy 73.470014 110.258277) (xy 73.31967 110.093051) (xy 73.315619 110.089852) (xy 73.315615 110.089848) (xy 73.148414 109.9578) (xy 73.14841 109.957798) (xy 73.144359 109.954598) (xy 72.948789 109.846638) (xy 72.94392 109.844914) (xy 72.943916 109.844912) (xy 72.743087 109.773795) (xy 72.743083 109.773794) (xy 72.738212 109.772069) (xy 72.733119 109.771162) (xy 72.733116 109.771161) (xy 72.523373 109.7338) (xy 72.523367 109.733799) (xy 72.518284 109.732894) (xy 72.444452 109.731992) (xy 72.300081 109.730228) (xy 72.300079 109.730228) (xy 72.294911 109.730165) (xy 72.074091 109.763955) (xy 71.861756 109.833357) (xy 71.663607 109.936507) (xy 71.659474 109.93961) (xy 71.659471 109.939612) (xy 71.4891 110.06753) (xy 71.484965 110.070635) (xy 71.481393 110.074373) (xy 71.403898 110.155466) (xy 71.342374 110.190895) (xy 71.271462 110.187438) (xy 71.213676 110.146192) (xy 71.194823 110.112644) (xy 71.153324 110.001946) (xy 71.144786 109.986351) (xy 71.068285 109.884276) (xy 71.055724 109.871715) (xy 70.953649 109.795214) (xy 70.938054 109.786676) (xy 70.817606 109.741522) (xy 70.802351 109.737895) (xy 70.751486 109.732369) (xy 70.744672 109.732) (xy 70.122115 109.732) (xy 70.106876 109.736475) (xy 70.105671 109.737865) (xy 70.104 109.745548) (xy 70.104 112.429884) (xy 70.108475 112.445123) (xy 70.109865 112.446328) (xy 70.117548 112.447999) (xy 70.744669 112.447999) (xy 70.75149 112.447629) (xy 70.802352 112.442105) (xy 70.817604 112.438479) (xy 70.938054 112.393324) (xy 70.953649 112.384786) (xy 71.055724 112.308285) (xy 71.068285 112.295724) (xy 71.144786 112.193649) (xy 71.153324 112.178054) (xy 71.194225 112.068952) (xy 71.236867 112.012188) (xy 71.303428 111.987488) (xy 71.372777 112.002696) (xy 71.407444 112.030684) (xy 71.432865 112.060031) (xy 71.432869 112.060035) (xy 71.43625 112.063938) (xy 71.608126 112.206632) (xy 71.801 112.319338) (xy 72.009692 112.39903) (xy 72.01476 112.400061) (xy 72.014763 112.400062) (xy 72.076965 112.412717) (xy 72.228597 112.443567) (xy 72.233772 112.443757) (xy 72.233774 112.443757) (xy 72.446673 112.451564) (xy 72.446677 112.451564) (xy 72.451837 112.451753) (xy 72.456957 112.451097) (xy 72.456959 112.451097) (xy 72.668288 112.424025) (xy 72.668289 112.424025) (xy 72.673416 112.423368) (xy 72.691385 112.417977) (xy 72.882429 112.360661) (xy 72.882434 112.360659) (xy 72.887384 112.359174) (xy 73.087994 112.260896) (xy 73.26986 112.131173) (xy 73.282283 112.118794) (xy 73.378479 112.022933) (xy 73.428096 111.973489) (xy 73.435804 111.962763) (xy 73.558453 111.792077) (xy 73.559776 111.793028) (xy 73.606645 111.749857) (xy 73.67658 111.737625) (xy 73.742026 111.765144) (xy 73.769875 111.796994) (xy 73.829987 111.895088) (xy 73.97625 112.063938) (xy 74.148126 112.206632) (xy 74.341 112.319338) (xy 74.549692 112.39903) (xy 74.55476 112.400061) (xy 74.554763 112.400062) (xy 74.616965 112.412717) (xy 74.768597 112.443567) (xy 74.773772 112.443757) (xy 74.773774 112.443757) (xy 74.986673 112.451564) (xy 74.986677 112.451564) (xy 74.991837 112.451753) (xy 74.996957 112.451097) (xy 74.996959 112.451097) (xy 75.208288 112.424025) (xy 75.208289 112.424025) (xy 75.213416 112.423368) (xy 75.231385 112.417977) (xy 75.422429 112.360661) (xy 75.422434 112.360659) (xy 75.427384 112.359174) (xy 75.627994 112.260896) (xy 75.80986 112.131173) (xy 75.822283 112.118794) (xy 75.918479 112.022933) (xy 75.968096 111.973489) (xy 75.975804 111.962763) (xy 76.098453 111.792077) (xy 76.099776 111.793028) (xy 76.146645 111.749857) (xy 76.21658 111.737625) (xy 76.282026 111.765144) (xy 76.309875 111.796994) (xy 76.369987 111.895088) (xy 76.51625 112.063938) (xy 76.688126 112.206632) (xy 76.881 112.319338) (xy 77.089692 112.39903) (xy 77.09476 112.400061) (xy 77.094763 112.400062) (xy 77.156965 112.412717) (xy 77.308597 112.443567) (xy 77.313772 112.443757) (xy 77.313774 112.443757) (xy 77.526673 112.451564) (xy 77.526677 112.451564) (xy 77.531837 112.451753) (xy 77.536957 112.451097) (xy 77.536959 112.451097) (xy 77.748288 112.424025) (xy 77.748289 112.424025) (xy 77.753416 112.423368) (xy 77.929293 112.370602) (xy 78.000288 112.370185) (xy 78.060238 112.408218) (xy 78.09011 112.472624) (xy 78.0915 112.491288) (xy 78.0915 124.151864) (xy 78.090423 124.168301) (xy 78.08625 124.2) (xy 78.087328 124.208189) (xy 78.089315 124.223286) (xy 78.0915 124.23988) (xy 78.0915 124.239885) (xy 78.10378 124.333164) (xy 78.107162 124.358851) (xy 78.168476 124.506876) (xy 78.173503 124.513427) (xy 78.173504 124.513429) (xy 78.24152 124.602069) (xy 78.241526 124.602075) (xy 78.266013 124.633987) (xy 78.272568 124.639017) (xy 78.291379 124.653452) (xy 78.30377 124.664319) (xy 82.935685 129.296234) (xy 82.946552 129.308625) (xy 82.966013 129.333987) (xy 82.972563 129.339013) (xy 82.997921 129.358471) (xy 82.997937 129.358485) (xy 83.040186 129.390903) (xy 83.093124 129.431524) (xy 83.241149 129.492838) (xy 83.249336 129.493916) (xy 83.249337 129.493916) (xy 83.260542 129.495391) (xy 83.287614 129.498955) (xy 83.360115 129.5085) (xy 83.360118 129.5085) (xy 83.360126 129.508501) (xy 83.391811 129.512672) (xy 83.4 129.51375) (xy 83.408189 129.512672) (xy 83.431693 129.509578) (xy 83.448138 129.5085) (xy 89.354185 129.5085) (xy 89.422306 129.528502) (xy 89.428246 129.532564) (xy 89.543248 129.616118) (xy 89.549276 129.618802) (xy 89.549278 129.618803) (xy 89.68686 129.680058) (xy 89.717712 129.693794) (xy 89.811113 129.713647) (xy 89.898056 129.732128) (xy 89.898061 129.732128) (xy 89.904513 129.7335) (xy 90.095487 129.7335) (xy 90.101939 129.732128) (xy 90.101944 129.732128) (xy 90.188887 129.713647) (xy 90.282288 129.693794) (xy 90.31314 129.680058) (xy 90.450722 129.618803) (xy 90.450724 129.618802) (xy 90.456752 129.616118) (xy 90.611253 129.503866) (xy 90.624028 129.489678) (xy 90.734621 129.366852) (xy 90.734622 129.366851) (xy 90.73904 129.361944) (xy 90.834527 129.196556) (xy 90.893542 129.014928) (xy 90.906602 128.890674) (xy 90.912814 128.831565) (xy 90.913504 128.825) (xy 90.893542 128.635072) (xy 90.834527 128.453444) (xy 90.821935 128.431633) (xy 90.790605 128.377369) (xy 90.73904 128.288056) (xy 90.611253 128.146134) (xy 90.456752 128.033882) (xy 90.450724 128.031198) (xy 90.450722 128.031197) (xy 90.288319 127.958891) (xy 90.288318 127.958891) (xy 90.282288 127.956206) (xy 90.173885 127.933164) (xy 90.101944 127.917872) (xy 90.101939 127.917872) (xy 90.095487 127.9165) (xy 89.904513 127.9165) (xy 89.898061 127.917872) (xy 89.898056 127.917872) (xy 89.826115 127.933164) (xy 89.717712 127.956206) (xy 89.711682 127.958891) (xy 89.711681 127.958891) (xy 89.549278 128.031197) (xy 89.549276 128.031198) (xy 89.543248 128.033882) (xy 89.388747 128.146134) (xy 89.384326 128.151044) (xy 89.384325 128.151045) (xy 89.295397 128.24981) (xy 89.234951 128.28705) (xy 89.201761 128.2915) (xy 83.704239 128.2915) (xy 83.636118 128.271498) (xy 83.615144 128.254595) (xy 79.345405 123.984856) (xy 79.311379 123.922544) (xy 79.3085 123.895761) (xy 79.3085 112.459368) (xy 79.328502 112.391247) (xy 79.382158 112.344754) (xy 79.452432 112.33465) (xy 79.479449 112.341658) (xy 79.575783 112.378444) (xy 79.629692 112.39903) (xy 79.63476 112.400061) (xy 79.634763 112.400062) (xy 79.696965 112.412717) (xy 79.848597 112.443567) (xy 79.853772 112.443757) (xy 79.853774 112.443757) (xy 80.066673 112.451564) (xy 80.066677 112.451564) (xy 80.071837 112.451753) (xy 80.076957 112.451097) (xy 80.076959 112.451097) (xy 80.288288 112.424025) (xy 80.288289 112.424025) (xy 80.293416 112.423368) (xy 80.311385 112.417977) (xy 80.502438 112.360658) (xy 80.502439 112.360658) (xy 80.507384 112.359174) (xy 80.512025 112.356901) (xy 80.516838 112.355014) (xy 80.517455 112.356589) (xy 80.580056 112.345855) (xy 80.64541 112.373592) (xy 80.685393 112.43226) (xy 80.6915 112.471011) (xy 80.6915 121.4655) (xy 80.671498 121.533621) (xy 80.617842 121.580114) (xy 80.5655 121.5915) (xy 80.404513 121.5915) (xy 80.398061 121.592872) (xy 80.398056 121.592872) (xy 80.333638 121.606565) (xy 80.217712 121.631206) (xy 80.211682 121.633891) (xy 80.211681 121.633891) (xy 80.049278 121.706197) (xy 80.049276 121.706198) (xy 80.043248 121.708882) (xy 79.888747 121.821134) (xy 79.884326 121.826044) (xy 79.884325 121.826045) (xy 79.772238 121.950531) (xy 79.76096 121.963056) (xy 79.665473 122.128444) (xy 79.606458 122.310072) (xy 79.605768 122.316633) (xy 79.605768 122.316635) (xy 79.596365 122.406101) (xy 79.586496 122.5) (xy 79.587186 122.506565) (xy 79.605086 122.67687) (xy 79.606458 122.689928) (xy 79.665473 122.871556) (xy 79.668776 122.877278) (xy 79.668777 122.877279) (xy 79.695013 122.922721) (xy 79.76096 123.036944) (xy 79.765378 123.041851) (xy 79.765379 123.041852) (xy 79.84863 123.134312) (xy 79.888747 123.178866) (xy 79.97241 123.239651) (xy 80.019762 123.274054) (xy 80.043248 123.291118) (xy 80.049276 123.293802) (xy 80.049278 123.293803) (xy 80.210996 123.365804) (xy 80.217712 123.368794) (xy 80.297521 123.385758) (xy 80.398056 123.407128) (xy 80.398061 123.407128) (xy 80.404513 123.4085) (xy 80.595487 123.4085) (xy 80.601939 123.407128) (xy 80.601944 123.407128) (xy 80.702479 123.385758) (xy 80.782288 123.368794) (xy 80.789004 123.365804) (xy 80.950722 123.293803) (xy 80.950724 123.293802) (xy 80.956752 123.291118) (xy 80.979646 123.274485) (xy 81.097781 123.188654) (xy 81.111253 123.178866) (xy 81.118555 123.170757) (xy 81.187397 123.0943) (xy 81.232814 123.062202) (xy 81.246981 123.056334) (xy 81.306876 123.031524) (xy 81.402072 122.958477) (xy 81.402075 122.958474) (xy 81.433987 122.933987) (xy 81.442632 122.922721) (xy 81.453452 122.908621) (xy 81.464319 122.89623) (xy 81.696234 122.664315) (xy 81.708625 122.653448) (xy 81.727437 122.639013) (xy 81.733987 122.633987) (xy 81.758474 122.602075) (xy 81.75848 122.602069) (xy 81.826496 122.513429) (xy 81.826497 122.513427) (xy 81.831524 122.506876) (xy 81.892838 122.358851) (xy 81.896515 122.330922) (xy 81.9085 122.239885) (xy 81.9085 122.23988) (xy 81.911638 122.21604) (xy 81.912672 122.208189) (xy 81.91375 122.2) (xy 81.909578 122.168307) (xy 81.9085 122.151864) (xy 81.9085 112.574) (xy 81.928502 112.505879) (xy 81.982158 112.459386) (xy 82.0345 112.448) (xy 82.277885 112.448) (xy 82.293124 112.443525) (xy 82.294329 112.442135) (xy 82.296 112.434452) (xy 82.296 112.429884) (xy 82.804 112.429884) (xy 82.808475 112.445123) (xy 82.809865 112.446328) (xy 82.817548 112.447999) (xy 83.1155 112.447999) (xy 83.183621 112.468001) (xy 83.230114 112.521657) (xy 83.2415 112.573999) (xy 83.2415 126.263001) (xy 83.224619 126.326) (xy 83.165473 126.428444) (xy 83.106458 126.610072) (xy 83.086496 126.8) (xy 83.087186 126.806565) (xy 83.092736 126.859366) (xy 83.106458 126.989928) (xy 83.165473 127.171556) (xy 83.168776 127.177278) (xy 83.168777 127.177279) (xy 83.192215 127.217875) (xy 83.26096 127.336944) (xy 83.388747 127.478866) (xy 83.543248 127.591118) (xy 83.549276 127.593802) (xy 83.549278 127.593803) (xy 83.711681 127.666109) (xy 83.717712 127.668794) (xy 83.811112 127.688647) (xy 83.898056 127.707128) (xy 83.898061 127.707128) (xy 83.904513 127.7085) (xy 84.095487 127.7085) (xy 84.101939 127.707128) (xy 84.101944 127.707128) (xy 84.188888 127.688647) (xy 84.282288 127.668794) (xy 84.288319 127.666109) (xy 84.450722 127.593803) (xy 84.450724 127.593802) (xy 84.456752 127.591118) (xy 84.611253 127.478866) (xy 84.73904 127.336944) (xy 84.807785 127.217875) (xy 84.831223 127.177279) (xy 84.831224 127.177278) (xy 84.834527 127.171556) (xy 84.893542 126.989928) (xy 84.907265 126.859366) (xy 84.912814 126.806565) (xy 84.913504 126.8) (xy 84.893542 126.610072) (xy 84.834527 126.428444) (xy 84.73904 126.263056) (xy 84.611253 126.121134) (xy 84.510439 126.047888) (xy 84.467085 125.991666) (xy 84.4585 125.945952) (xy 84.4585 112.486098) (xy 84.478502 112.417977) (xy 84.532158 112.371484) (xy 84.602432 112.36138) (xy 84.629448 112.368388) (xy 84.709692 112.39903) (xy 84.71476 112.400061) (xy 84.714763 112.400062) (xy 84.776965 112.412717) (xy 84.928597 112.443567) (xy 84.933772 112.443757) (xy 84.933774 112.443757) (xy 85.146673 112.451564) (xy 85.146677 112.451564) (xy 85.151837 112.451753) (xy 85.156957 112.451097) (xy 85.156959 112.451097) (xy 85.368288 112.424025) (xy 85.368289 112.424025) (xy 85.373416 112.423368) (xy 85.391385 112.417977) (xy 85.582429 112.360661) (xy 85.582434 112.360659) (xy 85.587384 112.359174) (xy 85.787994 112.260896) (xy 85.96986 112.131173) (xy 85.982283 112.118794) (xy 86.078479 112.022933) (xy 86.128096 111.973489) (xy 86.135804 111.962763) (xy 86.258453 111.792077) (xy 86.259776 111.793028) (xy 86.306645 111.749857) (xy 86.37658 111.737625) (xy 86.442026 111.765144) (xy 86.469875 111.796994) (xy 86.529987 111.895088) (xy 86.67625 112.063938) (xy 86.848126 112.206632) (xy 87.041 112.319338) (xy 87.249692 112.39903) (xy 87.25476 112.400061) (xy 87.254763 112.400062) (xy 87.316965 112.412717) (xy 87.468597 112.443567) (xy 87.473772 112.443757) (xy 87.473774 112.443757) (xy 87.686673 112.451564) (xy 87.686677 112.451564) (xy 87.691837 112.451753) (xy 87.696957 112.451097) (xy 87.696959 112.451097) (xy 87.908288 112.424025) (xy 87.908289 112.424025) (xy 87.913416 112.423368) (xy 87.931385 112.417977) (xy 88.122429 112.360661) (xy 88.122434 112.360659) (xy 88.127384 112.359174) (xy 88.327994 112.260896) (xy 88.50986 112.131173) (xy 88.522283 112.118794) (xy 88.618479 112.022933) (xy 88.668096 111.973489) (xy 88.675804 111.962763) (xy 88.795435 111.796277) (xy 88.798453 111.792077) (xy 88.81932 111.749857) (xy 88.895136 111.596453) (xy 88.895137 111.596451) (xy 88.89743 111.591811) (xy 88.96237 111.378069) (xy 88.991529 111.15659) (xy 88.991611 111.15324) (xy 88.993074 111.093365) (xy 88.993074 111.093361) (xy 88.993156 111.09) (xy 88.974852 110.867361) (xy 88.920431 110.650702) (xy 88.831354 110.44584) (xy 88.758699 110.333533) (xy 88.712822 110.262617) (xy 88.71282 110.262614) (xy 88.710014 110.258277) (xy 88.55967 110.093051) (xy 88.555619 110.089852) (xy 88.555615 110.089848) (xy 88.388414 109.9578) (xy 88.38841 109.957798) (xy 88.384359 109.954598) (xy 88.188789 109.846638) (xy 88.18392 109.844914) (xy 88.183916 109.844912) (xy 87.983087 109.773795) (xy 87.983083 109.773794) (xy 87.978212 109.772069) (xy 87.973119 109.771162) (xy 87.973116 109.771161) (xy 87.763373 109.7338) (xy 87.763367 109.733799) (xy 87.758284 109.732894) (xy 87.684452 109.731992) (xy 87.540081 109.730228) (xy 87.540079 109.730228) (xy 87.534911 109.730165) (xy 87.314091 109.763955) (xy 87.101756 109.833357) (xy 86.903607 109.936507) (xy 86.899474 109.93961) (xy 86.899471 109.939612) (xy 86.7291 110.06753) (xy 86.724965 110.070635) (xy 86.699447 110.097338) (xy 86.601842 110.199476) (xy 86.570629 110.232138) (xy 86.463201 110.389621) (xy 86.408293 110.434621) (xy 86.337768 110.442792) (xy 86.274021 110.411538) (xy 86.253324 110.387054) (xy 86.172822 110.262617) (xy 86.17282 110.262614) (xy 86.170014 110.258277) (xy 86.01967 110.093051) (xy 86.015619 110.089852) (xy 86.015615 110.089848) (xy 85.848414 109.9578) (xy 85.84841 109.957798) (xy 85.844359 109.954598) (xy 85.648789 109.846638) (xy 85.64392 109.844914) (xy 85.643916 109.844912) (xy 85.443087 109.773795) (xy 85.443083 109.773794) (xy 85.438212 109.772069) (xy 85.433119 109.771162) (xy 85.433116 109.771161) (xy 85.223373 109.7338) (xy 85.223367 109.733799) (xy 85.218284 109.732894) (xy 85.158355 109.732162) (xy 85.000086 109.730228) (xy 85.000083 109.730228) (xy 84.994911 109.730165) (xy 84.992141 109.730589) (xy 84.923466 109.71554) (xy 84.873341 109.665261) (xy 84.85802 109.605044) (xy 84.85802 108.784719) (xy 84.878022 108.716598) (xy 84.894925 108.695624) (xy 86.546234 107.044315) (xy 86.558625 107.033448) (xy 86.577437 107.019013) (xy 86.583987 107.013987) (xy 86.608474 106.982075) (xy 86.608478 106.982071) (xy 86.681524 106.886876) (xy 86.742838 106.738851) (xy 86.763751 106.58) (xy 86.759578 106.548301) (xy 86.7585 106.531856) (xy 86.7585 106.132279) (xy 86.778502 106.064158) (xy 86.832158 106.017665) (xy 86.902432 106.007561) (xy 86.929443 106.014567) (xy 87.019692 106.04903) (xy 87.02476 106.050061) (xy 87.024763 106.050062) (xy 87.132017 106.071883) (xy 87.238597 106.093567) (xy 87.243772 106.093757) (xy 87.243774 106.093757) (xy 87.456673 106.101564) (xy 87.456677 106.101564) (xy 87.461837 106.101753) (xy 87.466957 106.101097) (xy 87.466959 106.101097) (xy 87.678288 106.074025) (xy 87.678289 106.074025) (xy 87.683416 106.073368) (xy 87.705858 106.066635) (xy 87.892429 106.010661) (xy 87.892434 106.010659) (xy 87.897384 106.009174) (xy 88.097994 105.910896) (xy 88.27986 105.781173) (xy 88.297473 105.763622) (xy 88.420022 105.6415) (xy 88.438096 105.623489) (xy 88.442446 105.617436) (xy 88.565435 105.446277) (xy 88.568453 105.442077) (xy 88.570944 105.437038) (xy 88.665136 105.246453) (xy 88.665137 105.246451) (xy 88.66743 105.241811) (xy 88.707544 105.109781) (xy 88.730865 105.033023) (xy 88.730865 105.033021) (xy 88.73237 105.028069) (xy 88.761529 104.80659) (xy 88.762803 104.754437) (xy 88.763074 104.743365) (xy 88.763074 104.743361) (xy 88.763156 104.74) (xy 88.744852 104.517361) (xy 88.690431 104.300702) (xy 88.601354 104.09584) (xy 88.532131 103.988838) (xy 88.482822 103.912617) (xy 88.48282 103.912614) (xy 88.480014 103.908277) (xy 88.47654 103.904459) (xy 88.476533 103.90445) (xy 88.332435 103.746088) (xy 88.301383 103.682242) (xy 88.309779 103.611744) (xy 88.354956 103.556976) (xy 88.3814 103.543307) (xy 88.488052 103.503325) (xy 88.503649 103.494786) (xy 88.605724 103.418285) (xy 88.618285 103.405724) (xy 88.694786 103.303649) (xy 88.703324 103.288054) (xy 88.748478 103.167606) (xy 88.752105 103.152351) (xy 88.757631 103.101486) (xy 88.758 103.094672) (xy 88.758 102.472115) (xy 88.753525 102.456876) (xy 88.752135 102.455671) (xy 88.744452 102.454) (xy 87.272 102.454) (xy 87.203879 102.433998) (xy 87.157386 102.380342) (xy 87.146 102.328) (xy 87.146 102.072) (xy 87.166002 102.003879) (xy 87.219658 101.957386) (xy 87.272 101.946) (xy 88.739884 101.946) (xy 88.755123 101.941525) (xy 88.756328 101.940135) (xy 88.757999 101.932452) (xy 88.757999 101.305331) (xy 88.757629 101.29851) (xy 88.752105 101.247648) (xy 88.748479 101.232396) (xy 88.703324 101.111946) (xy 88.694786 101.096351) (xy 88.618285 100.994276) (xy 88.605724 100.981715) (xy 88.503649 100.905214) (xy 88.488054 100.896676) (xy 88.377813 100.855348) (xy 88.321049 100.812706) (xy 88.296349 100.746145) (xy 88.311557 100.676796) (xy 88.333104 100.648115) (xy 88.43443 100.547144) (xy 88.43444 100.547132) (xy 88.438096 100.543489) (xy 88.461721 100.510612) (xy 88.565435 100.366277) (xy 88.568453 100.362077) (xy 88.580875 100.336944) (xy 88.665136 100.166453) (xy 88.665137 100.166451) (xy 88.66743 100.161811) (xy 88.73237 99.948069) (xy 88.761529 99.72659) (xy 88.762511 99.686391) (xy 88.763074 99.663365) (xy 88.763074 99.663361) (xy 88.763156 99.66) (xy 88.744852 99.437361) (xy 88.70324 99.271695) (xy 92.137251 99.271695) (xy 92.137548 99.276848) (xy 92.137548 99.276851) (xy 92.149456 99.483367) (xy 92.15011 99.494715) (xy 92.151247 99.499761) (xy 92.151248 99.499767) (xy 92.163838 99.555629) (xy 92.199222 99.712639) (xy 92.283266 99.919616) (xy 92.326353 99.989928) (xy 92.395987 100.10356) (xy 92.399987 100.110088) (xy 92.54625 100.278938) (xy 92.718126 100.421632) (xy 92.911 100.534338) (xy 92.915825 100.53618) (xy 92.915826 100.536181) (xy 92.963783 100.554494) (xy 93.119692 100.61403) (xy 93.12476 100.615061) (xy 93.124763 100.615062) (xy 93.19536 100.629425) (xy 93.338597 100.658567) (xy 93.343772 100.658757) (xy 93.343774 100.658757) (xy 93.556673 100.666564) (xy 93.556677 100.666564) (xy 93.561837 100.666753) (xy 93.566957 100.666097) (xy 93.566959 100.666097) (xy 93.778288 100.639025) (xy 93.778289 100.639025) (xy 93.783416 100.638368) (xy 93.793509 100.63534) (xy 93.992429 100.575661) (xy 93.992434 100.575659) (xy 93.997384 100.574174) (xy 94.197994 100.475896) (xy 94.37986 100.346173) (xy 94.389122 100.336944) (xy 94.523617 100.202917) (xy 94.538096 100.188489) (xy 94.553931 100.166453) (xy 94.665435 100.011277) (xy 94.668453 100.007077) (xy 94.672109 99.999681) (xy 94.765136 99.811453) (xy 94.765137 99.811451) (xy 94.76743 99.806811) (xy 94.827204 99.610072) (xy 94.830865 99.598023) (xy 94.830865 99.598021) (xy 94.83237 99.593069) (xy 94.861529 99.37159) (xy 94.8621 99.348235) (xy 94.863074 99.308365) (xy 94.863074 99.308361) (xy 94.863156 99.305) (xy 94.844852 99.082361) (xy 94.790431 98.865702) (xy 94.701354 98.66084) (xy 94.617282 98.530885) (xy 94.582822 98.477617) (xy 94.58282 98.477614) (xy 94.580014 98.473277) (xy 94.42967 98.308051) (xy 94.425619 98.304852) (xy 94.425615 98.304848) (xy 94.258414 98.1728) (xy 94.25841 98.172798) (xy 94.254359 98.169598) (xy 94.212569 98.146529) (xy 94.162598 98.096097) (xy 94.147826 98.026654) (xy 94.172942 97.960248) (xy 94.200294 97.933641) (xy 94.375328 97.808792) (xy 94.3832 97.802139) (xy 94.534052 97.651812) (xy 94.54073 97.643965) (xy 94.665003 97.47102) (xy 94.670313 97.462183) (xy 94.76467 97.271267) (xy 94.768469 97.261672) (xy 94.830377 97.05791) (xy 94.832555 97.047837) (xy 94.833986 97.036962) (xy 94.831775 97.022778) (xy 94.818617 97.019) (xy 92.183225 97.019) (xy 92.169694 97.022973) (xy 92.168257 97.032966) (xy 92.198565 97.167446) (xy 92.201645 97.177275) (xy 92.28177 97.374603) (xy 92.286413 97.383794) (xy 92.397694 97.565388) (xy 92.403777 97.573699) (xy 92.543213 97.734667) (xy 92.55058 97.741883) (xy 92.714434 97.877916) (xy 92.722881 97.883831) (xy 92.791969 97.924203) (xy 92.840693 97.975842) (xy 92.853764 98.045625) (xy 92.827033 98.111396) (xy 92.786584 98.144752) (xy 92.773607 98.151507) (xy 92.769474 98.15461) (xy 92.769471 98.154612) (xy 92.599597 98.282157) (xy 92.594965 98.285635) (xy 92.549537 98.333173) (xy 92.446153 98.441358) (xy 92.440629 98.447138) (xy 92.437715 98.45141) (xy 92.437714 98.451411) (xy 92.396266 98.512172) (xy 92.314743 98.63168) (xy 92.293054 98.678405) (xy 92.225663 98.823588) (xy 92.220688 98.834305) (xy 92.160989 99.04957) (xy 92.137251 99.271695) (xy 88.70324 99.271695) (xy 88.690431 99.220702) (xy 88.601354 99.01584) (xy 88.544236 98.927549) (xy 88.482822 98.832617) (xy 88.48282 98.832614) (xy 88.480014 98.828277) (xy 88.32967 98.663051) (xy 88.325619 98.659852) (xy 88.325615 98.659848) (xy 88.158414 98.5278) (xy 88.15841 98.527798) (xy 88.154359 98.524598) (xy 87.958789 98.416638) (xy 87.95392 98.414914) (xy 87.953916 98.414912) (xy 87.753087 98.343795) (xy 87.753083 98.343794) (xy 87.748212 98.342069) (xy 87.743119 98.341162) (xy 87.743116 98.341161) (xy 87.533373 98.3038) (xy 87.533367 98.303799) (xy 87.528284 98.302894) (xy 87.454452 98.301992) (xy 87.310081 98.300228) (xy 87.310079 98.300228) (xy 87.304911 98.300165) (xy 87.084091 98.333955) (xy 86.92981 98.384382) (xy 86.923645 98.386397) (xy 86.852681 98.388548) (xy 86.79182 98.351992) (xy 86.760383 98.288335) (xy 86.7585 98.266632) (xy 86.7585 95.123134) (xy 92.1415 95.123134) (xy 92.148255 95.185316) (xy 92.199385 95.321705) (xy 92.286739 95.438261) (xy 92.403295 95.525615) (xy 92.411704 95.528767) (xy 92.411705 95.528768) (xy 92.52096 95.569726) (xy 92.577725 95.612367) (xy 92.602425 95.678929) (xy 92.587218 95.748278) (xy 92.567825 95.774759) (xy 92.44459 95.903717) (xy 92.438104 95.911727) (xy 92.318098 96.087649) (xy 92.313 96.096623) (xy 92.223338 96.289783) (xy 92.219775 96.29947) (xy 92.164389 96.499183) (xy 92.165912 96.507607) (xy 92.178292 96.511) (xy 94.818344 96.511) (xy 94.831875 96.507027) (xy 94.83318 96.497947) (xy 94.791214 96.330875) (xy 94.787894 96.321124) (xy 94.702972 96.125814) (xy 94.698105 96.116739) (xy 94.582426 95.937926) (xy 94.576136 95.929757) (xy 94.432293 95.771677) (xy 94.401241 95.707831) (xy 94.409635 95.637333) (xy 94.454812 95.582564) (xy 94.481256 95.568895) (xy 94.588297 95.528767) (xy 94.596705 95.525615) (xy 94.713261 95.438261) (xy 94.800615 95.321705) (xy 94.851745 95.185316) (xy 94.8585 95.123134) (xy 94.8585 93.326866) (xy 94.851745 93.264684) (xy 94.800615 93.128295) (xy 94.713261 93.011739) (xy 94.596705 92.924385) (xy 94.460316 92.873255) (xy 94.398134 92.8665) (xy 92.601866 92.8665) (xy 92.539684 92.873255) (xy 92.403295 92.924385) (xy 92.286739 93.011739) (xy 92.199385 93.128295) (xy 92.148255 93.264684) (xy 92.1415 93.326866) (xy 92.1415 95.123134) (xy 86.7585 95.123134) (xy 86.7585 94.659863) (xy 86.778502 94.591742) (xy 86.797659 94.570917) (xy 86.796596 94.569854) (xy 86.802437 94.564013) (xy 86.808987 94.558987) (xy 86.823599 94.539944) (xy 86.880936 94.498077) (xy 86.951807 94.493855) (xy 86.987131 94.50786) (xy 87.036538 94.536731) (xy 87.036541 94.536733) (xy 87.041 94.539338) (xy 87.045825 94.54118) (xy 87.045826 94.541181) (xy 87.075305 94.552438) (xy 87.249692 94.61903) (xy 87.25476 94.620061) (xy 87.254763 94.620062) (xy 87.340705 94.637547) (xy 87.468597 94.663567) (xy 87.473772 94.663757) (xy 87.473774 94.663757) (xy 87.686673 94.671564) (xy 87.686677 94.671564) (xy 87.691837 94.671753) (xy 87.696957 94.671097) (xy 87.696959 94.671097) (xy 87.908288 94.644025) (xy 87.908289 94.644025) (xy 87.913416 94.643368) (xy 87.918366 94.641883) (xy 88.122429 94.580661) (xy 88.122434 94.580659) (xy 88.127384 94.579174) (xy 88.327994 94.480896) (xy 88.50986 94.351173) (xy 88.668096 94.193489) (xy 88.68066 94.176005) (xy 88.795435 94.016277) (xy 88.798453 94.012077) (xy 88.81932 93.969857) (xy 88.895136 93.816453) (xy 88.895137 93.816451) (xy 88.89743 93.811811) (xy 88.96237 93.598069) (xy 88.991529 93.37659) (xy 88.991611 93.37324) (xy 88.993074 93.313365) (xy 88.993074 93.313361) (xy 88.993156 93.31) (xy 88.974852 93.087361) (xy 88.920431 92.870702) (xy 88.831354 92.66584) (xy 88.729018 92.507652) (xy 88.712822 92.482617) (xy 88.71282 92.482614) (xy 88.710014 92.478277) (xy 88.55967 92.313051) (xy 88.555619 92.309852) (xy 88.555615 92.309848) (xy 88.388414 92.1778) (xy 88.38841 92.177798) (xy 88.384359 92.174598) (xy 88.379829 92.172097) (xy 88.328114 92.143549) (xy 88.188789 92.066638) (xy 88.18392 92.064914) (xy 88.183916 92.064912) (xy 87.983087 91.993795) (xy 87.983083 91.993794) (xy 87.978212 91.992069) (xy 87.973119 91.991162) (xy 87.973116 91.991161) (xy 87.763373 91.9538) (xy 87.763367 91.953799) (xy 87.758284 91.952894) (xy 87.684452 91.951992) (xy 87.540081 91.950228) (xy 87.540079 91.950228) (xy 87.534911 91.950165) (xy 87.314091 91.983955) (xy 87.202203 92.020526) (xy 87.148645 92.038031) (xy 87.077681 92.040182) (xy 87.016819 92.003626) (xy 86.985383 91.939968) (xy 86.9835 91.918266) (xy 86.9835 87.580301) (xy 87.000381 87.517301) (xy 87.081223 87.377279) (xy 87.081224 87.377278) (xy 87.084527 87.371556) (xy 87.143542 87.189928) (xy 87.147524 87.152047) (xy 87.162814 87.006565) (xy 87.163504 87) (xy 87.15719 86.939928) (xy 87.144232 86.816635) (xy 87.144232 86.816633) (xy 87.143542 86.810072) (xy 87.084527 86.628444) (xy 87.063378 86.591812) (xy 87.01903 86.515) (xy 86.98904 86.463056) (xy 86.976688 86.449337) (xy 86.865675 86.326045) (xy 86.865674 86.326044) (xy 86.861253 86.321134) (xy 86.706752 86.208882) (xy 86.700724 86.206198) (xy 86.700722 86.206197) (xy 86.538319 86.133891) (xy 86.538318 86.133891) (xy 86.532288 86.131206) (xy 86.426919 86.108809) (xy 86.351944 86.092872) (xy 86.351939 86.092872) (xy 86.345487 86.0915) (xy 86.154513 86.0915) (xy 86.148061 86.092872) (xy 86.148056 86.092872) (xy 86.073081 86.108809) (xy 85.967712 86.131206) (xy 85.961682 86.133891) (xy 85.961681 86.133891) (xy 85.799278 86.206197) (xy 85.799276 86.206198) (xy 85.793248 86.208882) (xy 85.638747 86.321134) (xy 85.634326 86.326044) (xy 85.634325 86.326045) (xy 85.523313 86.449337) (xy 85.51096 86.463056) (xy 85.48097 86.515) (xy 85.436623 86.591812) (xy 85.415473 86.628444) (xy 85.356458 86.810072) (xy 85.355768 86.816633) (xy 85.355768 86.816635) (xy 85.34281 86.939928) (xy 85.336496 87) (xy 85.337186 87.006565) (xy 85.352477 87.152047) (xy 85.356458 87.189928) (xy 85.415473 87.371556) (xy 85.418776 87.377278) (xy 85.418777 87.377279) (xy 85.436803 87.4085) (xy 85.51096 87.536944) (xy 85.515378 87.541851) (xy 85.515379 87.541852) (xy 85.593347 87.628444) (xy 85.638747 87.678866) (xy 85.644089 87.682747) (xy 85.644091 87.682749) (xy 85.714561 87.733948) (xy 85.757915 87.79017) (xy 85.7665 87.835884) (xy 85.7665 91.930036) (xy 85.746498 91.998157) (xy 85.692842 92.04465) (xy 85.622568 92.054754) (xy 85.598444 92.04881) (xy 85.503572 92.015214) (xy 85.443087 91.993795) (xy 85.443083 91.993794) (xy 85.438212 91.992069) (xy 85.433119 91.991162) (xy 85.433116 91.991161) (xy 85.223373 91.9538) (xy 85.223367 91.953799) (xy 85.218284 91.952894) (xy 85.144452 91.951992) (xy 85.000081 91.950228) (xy 85.000079 91.950228) (xy 84.994911 91.950165) (xy 84.774091 91.983955) (xy 84.561756 92.053357) (xy 84.531443 92.069137) (xy 84.413501 92.130534) (xy 84.363607 92.156507) (xy 84.359474 92.15961) (xy 84.359471 92.159612) (xy 84.1891 92.28753) (xy 84.184965 92.290635) (xy 84.181393 92.294373) (xy 84.103898 92.375466) (xy 84.042374 92.410895) (xy 83.971462 92.407438) (xy 83.913676 92.366192) (xy 83.894823 92.332644) (xy 83.853324 92.221946) (xy 83.844786 92.206351) (xy 83.768285 92.104276) (xy 83.755724 92.091715) (xy 83.653649 92.015214) (xy 83.638054 92.006676) (xy 83.517606 91.961522) (xy 83.502351 91.957895) (xy 83.451486 91.952369) (xy 83.444672 91.952) (xy 82.822115 91.952) (xy 82.806876 91.956475) (xy 82.805671 91.957865) (xy 82.804 91.965548) (xy 82.804 94.649884) (xy 82.808475 94.665123) (xy 82.809865 94.666328) (xy 82.817548 94.667999) (xy 83.444669 94.667999) (xy 83.45149 94.667629) (xy 83.502352 94.662105) (xy 83.517604 94.658479) (xy 83.638054 94.613324) (xy 83.653649 94.604786) (xy 83.755724 94.528285) (xy 83.768285 94.515724) (xy 83.844786 94.413649) (xy 83.853324 94.398054) (xy 83.894225 94.288952) (xy 83.936867 94.232188) (xy 84.003428 94.207488) (xy 84.072777 94.222696) (xy 84.107444 94.250684) (xy 84.132865 94.280031) (xy 84.132869 94.280035) (xy 84.13625 94.283938) (xy 84.308126 94.426632) (xy 84.501 94.539338) (xy 84.505825 94.54118) (xy 84.505826 94.541181) (xy 84.535305 94.552438) (xy 84.709692 94.61903) (xy 84.71476 94.620061) (xy 84.714763 94.620062) (xy 84.800705 94.637547) (xy 84.928597 94.663567) (xy 84.933771 94.663757) (xy 84.933773 94.663757) (xy 85.020598 94.666941) (xy 85.08794 94.689426) (xy 85.132435 94.744749) (xy 85.14198 94.792856) (xy 85.14198 106.110275) (xy 85.121978 106.178396) (xy 85.105075 106.19937) (xy 83.453766 107.850679) (xy 83.441375 107.861546) (xy 83.416013 107.881007) (xy 83.391526 107.912919) (xy 83.391523 107.912922) (xy 83.384213 107.922448) (xy 83.338025 107.982642) (xy 83.318476 108.008118) (xy 83.257899 108.154364) (xy 83.257162 108.156144) (xy 83.2415 108.275109) (xy 83.2415 108.275114) (xy 83.23625 108.314994) (xy 83.237328 108.323182) (xy 83.240422 108.346684) (xy 83.2415 108.36313) (xy 83.2415 109.606) (xy 83.221498 109.674121) (xy 83.167842 109.720614) (xy 83.1155 109.732) (xy 82.822115 109.732) (xy 82.806876 109.736475) (xy 82.805671 109.737865) (xy 82.804 109.745548) (xy 82.804 112.429884) (xy 82.296 112.429884) (xy 82.296 109.750116) (xy 82.291525 109.734877) (xy 82.290135 109.733672) (xy 82.282452 109.732001) (xy 81.655331 109.732001) (xy 81.64851 109.732371) (xy 81.597648 109.737895) (xy 81.582396 109.741521) (xy 81.47265 109.782663) (xy 81.401842 109.787846) (xy 81.339325 109.753776) (xy 81.014315 109.428766) (xy 81.003448 109.416375) (xy 80.989013 109.397563) (xy 80.983987 109.391013) (xy 80.952075 109.366526) (xy 80.952072 109.366523) (xy 80.863429 109.298504) (xy 80.863427 109.298503) (xy 80.856876 109.293476) (xy 80.708851 109.232162) (xy 80.700664 109.231084) (xy 80.700663 109.231084) (xy 80.689458 109.229609) (xy 80.658262 109.225502) (xy 80.589885 109.2165) (xy 80.589882 109.2165) (xy 80.589874 109.216499) (xy 80.558189 109.212328) (xy 80.55 109.21125) (xy 80.518307 109.215422) (xy 80.501864 109.2165) (xy 79.834019 109.2165) (xy 79.765898 109.196498) (xy 79.719405 109.142842) (xy 79.708019 109.0905) (xy 79.708019 108.372655) (xy 79.709097 108.356209) (xy 79.712191 108.332707) (xy 79.713269 108.324519) (xy 79.708019 108.284639) (xy 79.708019 108.284634) (xy 79.692357 108.165669) (xy 79.688412 108.156144) (xy 79.631043 108.017643) (xy 79.557997 107.922448) (xy 79.557993 107.922444) (xy 79.550693 107.91293) (xy 79.538535 107.897085) (xy 79.538532 107.897082) (xy 79.533506 107.890532) (xy 79.516235 107.877279) (xy 79.50814 107.871067) (xy 79.495749 107.8602) (xy 77.745405 106.109856) (xy 77.711379 106.047544) (xy 77.7085 106.020761) (xy 77.7085 95.879239) (xy 77.728502 95.811118) (xy 77.745405 95.790144) (xy 79.084148 94.451401) (xy 79.14646 94.417375) (xy 79.217275 94.42244) (xy 79.236811 94.431707) (xy 79.421 94.539338) (xy 79.425825 94.54118) (xy 79.425826 94.541181) (xy 79.455305 94.552438) (xy 79.629692 94.61903) (xy 79.63476 94.620061) (xy 79.634763 94.620062) (xy 79.720705 94.637547) (xy 79.848597 94.663567) (xy 79.853772 94.663757) (xy 79.853774 94.663757) (xy 80.066673 94.671564) (xy 80.066677 94.671564) (xy 80.071837 94.671753) (xy 80.076957 94.671097) (xy 80.076959 94.671097) (xy 80.288288 94.644025) (xy 80.288289 94.644025) (xy 80.293416 94.643368) (xy 80.298366 94.641883) (xy 80.502429 94.580661) (xy 80.502434 94.580659) (xy 80.507384 94.579174) (xy 80.707994 94.480896) (xy 80.88986 94.351173) (xy 80.957331 94.283938) (xy 80.998479 94.242933) (xy 81.060851 94.209017) (xy 81.131658 94.214205) (xy 81.188419 94.256851) (xy 81.205401 94.287954) (xy 81.246676 94.398054) (xy 81.255214 94.413649) (xy 81.331715 94.515724) (xy 81.344276 94.528285) (xy 81.446351 94.604786) (xy 81.461946 94.613324) (xy 81.582394 94.658478) (xy 81.597649 94.662105) (xy 81.648514 94.667631) (xy 81.655328 94.668) (xy 82.277885 94.668) (xy 82.293124 94.663525) (xy 82.294329 94.662135) (xy 82.296 94.654452) (xy 82.296 91.970116) (xy 82.291525 91.954877) (xy 82.290135 91.953672) (xy 82.282452 91.952001) (xy 81.655331 91.952001) (xy 81.64851 91.952371) (xy 81.597648 91.957895) (xy 81.582396 91.961521) (xy 81.461946 92.006676) (xy 81.446351 92.015214) (xy 81.344276 92.091715) (xy 81.331715 92.104276) (xy 81.255214 92.206351) (xy 81.246676 92.221946) (xy 81.205297 92.332322) (xy 81.162655 92.389087) (xy 81.096093 92.413786) (xy 81.026744 92.398578) (xy 80.994121 92.372891) (xy 80.943151 92.316876) (xy 80.943145 92.31687) (xy 80.93967 92.313051) (xy 80.935619 92.309852) (xy 80.935615 92.309848) (xy 80.768414 92.1778) (xy 80.76841 92.177798) (xy 80.764359 92.174598) (xy 80.759829 92.172097) (xy 80.708114 92.143549) (xy 80.568789 92.066638) (xy 80.56392 92.064914) (xy 80.563916 92.064912) (xy 80.363087 91.993795) (xy 80.363083 91.993794) (xy 80.358212 91.992069) (xy 80.353119 91.991162) (xy 80.353116 91.991161) (xy 80.143373 91.9538) (xy 80.143367 91.953799) (xy 80.138284 91.952894) (xy 80.064452 91.951992) (xy 79.920081 91.950228) (xy 79.920079 91.950228) (xy 79.914911 91.950165) (xy 79.694091 91.983955) (xy 79.498644 92.047837) (xy 79.427681 92.049988) (xy 79.36682 92.013432) (xy 79.335383 91.949775) (xy 79.3335 91.928072) (xy 79.3335 91.144245) (xy 79.353502 91.076124) (xy 79.370405 91.05515) (xy 80.896234 89.529321) (xy 80.908625 89.518454) (xy 80.927437 89.504019) (xy 80.933987 89.498993) (xy 80.958474 89.467081) (xy 80.95848 89.467075) (xy 81.026496 89.378435) (xy 81.026497 89.378433) (xy 81.031524 89.371882) (xy 81.092838 89.223857) (xy 81.097305 89.189928) (xy 81.1085 89.104891) (xy 81.1085 89.104886) (xy 81.11375 89.065006) (xy 81.109578 89.033313) (xy 81.1085 89.01687) (xy 81.1085 86.648144) (xy 81.109578 86.631698) (xy 81.112673 86.608188) (xy 81.113751 86.6) (xy 81.092838 86.441149) (xy 81.031524 86.293124) (xy 80.958478 86.197929) (xy 80.958474 86.197925) (xy 80.955958 86.194646) (xy 80.939016 86.172566) (xy 80.939013 86.172563) (xy 80.933987 86.166013) (xy 80.923336 86.15784) (xy 80.908621 86.146548) (xy 80.89623 86.135681) (xy 79.514315 84.753766) (xy 79.503448 84.741375) (xy 79.489013 84.722563) (xy 79.483987 84.716013) (xy 79.452075 84.691526) (xy 79.452072 84.691523) (xy 79.435577 84.678866) (xy 79.363429 84.623504) (xy 79.363427 84.623503) (xy 79.356876 84.618476) (xy 79.208851 84.557162) (xy 79.200664 84.556084) (xy 79.200663 84.556084) (xy 79.189458 84.554609) (xy 79.158262 84.550502) (xy 79.089885 84.5415) (xy 79.089882 84.5415) (xy 79.089874 84.541499) (xy 79.058189 84.537328) (xy 79.05 84.53625) (xy 79.018307 84.540422) (xy 79.001864 84.5415) (xy 66.775729 84.5415) (xy 66.707608 84.521498) (xy 66.682093 84.49981) (xy 66.615675 84.426045) (xy 66.615674 84.426044) (xy 66.611253 84.421134) (xy 66.456752 84.308882) (xy 66.450724 84.306198) (xy 66.450722 84.306197) (xy 66.288319 84.233891) (xy 66.288318 84.233891) (xy 66.282288 84.231206) (xy 66.188888 84.211353) (xy 66.101944 84.192872) (xy 66.101939 84.192872) (xy 66.095487 84.1915) (xy 65.904513 84.1915) (xy 65.898061 84.192872) (xy 65.898056 84.192872) (xy 65.811112 84.211353) (xy 65.717712 84.231206) (xy 65.711682 84.233891) (xy 65.711681 84.233891) (xy 65.549278 84.306197) (xy 65.549276 84.306198) (xy 65.543248 84.308882) (xy 65.388747 84.421134) (xy 65.384326 84.426044) (xy 65.384325 84.426045) (xy 65.267238 84.556084) (xy 65.26096 84.563056) (xy 65.165473 84.728444) (xy 65.106458 84.910072) (xy 65.086496 85.1) (xy 65.087186 85.106565) (xy 65.104954 85.275615) (xy 65.106458 85.289928) (xy 65.165473 85.471556) (xy 65.26096 85.636944) (xy 65.265378 85.641851) (xy 65.265379 85.641852) (xy 65.359136 85.74598) (xy 65.389854 85.809987) (xy 65.3915 85.83029) (xy 65.3915 91.910559) (xy 65.371498 91.97868) (xy 65.317842 92.025173) (xy 65.247568 92.035277) (xy 65.223441 92.029332) (xy 65.123091 91.993796) (xy 65.123083 91.993794) (xy 65.118212 91.992069) (xy 65.113119 91.991162) (xy 65.113116 91.991161) (xy 64.903373 91.9538) (xy 64.903367 91.953799) (xy 64.898284 91.952894) (xy 64.824452 91.951992) (xy 64.680081 91.950228) (xy 64.680079 91.950228) (xy 64.674911 91.950165) (xy 64.454091 91.983955) (xy 64.241756 92.053357) (xy 64.211443 92.069137) (xy 64.093501 92.130534) (xy 64.043607 92.156507) (xy 64.039474 92.15961) (xy 64.039471 92.159612) (xy 63.8691 92.28753) (xy 63.864965 92.290635) (xy 63.710629 92.452138) (xy 63.603201 92.609621) (xy 63.548293 92.654621) (xy 63.477768 92.662792) (xy 63.414021 92.631538) (xy 63.393324 92.607054) (xy 63.312822 92.482617) (xy 63.31282 92.482614) (xy 63.310014 92.478277) (xy 63.15967 92.313051) (xy 63.155619 92.309852) (xy 63.155615 92.309848) (xy 62.988414 92.1778) (xy 62.98841 92.177798) (xy 62.984359 92.174598) (xy 62.979829 92.172097) (xy 62.928114 92.143549) (xy 62.788789 92.066638) (xy 62.78392 92.064914) (xy 62.783916 92.064912) (xy 62.583087 91.993795) (xy 62.583083 91.993794) (xy 62.578212 91.992069) (xy 62.573119 91.991162) (xy 62.573116 91.991161) (xy 62.363373 91.9538) (xy 62.363367 91.953799) (xy 62.358284 91.952894) (xy 62.284452 91.951992) (xy 62.140081 91.950228) (xy 62.140079 91.950228) (xy 62.134911 91.950165) (xy 61.914091 91.983955) (xy 61.701756 92.053357) (xy 61.671443 92.069137) (xy 61.553501 92.130534) (xy 61.503607 92.156507) (xy 61.499474 92.15961) (xy 61.499471 92.159612) (xy 61.3291 92.28753) (xy 61.324965 92.290635) (xy 61.170629 92.452138) (xy 61.063201 92.609621) (xy 61.008293 92.654621) (xy 60.937768 92.662792) (xy 60.874021 92.631538) (xy 60.853324 92.607054) (xy 60.772822 92.482617) (xy 60.77282 92.482614) (xy 60.770014 92.478277) (xy 60.61967 92.313051) (xy 60.615619 92.309852) (xy 60.615615 92.309848) (xy 60.484565 92.206351) (xy 60.455928 92.183734) (xy 60.414865 92.125818) (xy 60.40802 92.084853) (xy 60.40802 62.670087) (xy 60.428022 62.601966) (xy 60.444925 62.580992) (xy 65.640993 57.384924) (xy 65.703305 57.350898) (xy 65.730088 57.348019) (xy 79.98528 57.348019) (xy 80.053401 57.368021) (xy 80.074375 57.384924) (xy 80.604595 57.915144) (xy 80.638621 57.977456) (xy 80.6415 58.004239) (xy 80.6415 59.759234) (xy 80.621498 59.827355) (xy 80.580867 59.866952) (xy 80.446683 59.948377) (xy 80.442653 59.951874) (xy 80.320674 60.057722) (xy 80.272555 60.099477) (xy 80.254926 60.120977) (xy 80.12976 60.273627) (xy 80.129756 60.273633) (xy 80.126376 60.277755) (xy 80.123737 60.282391) (xy 80.123735 60.282394) (xy 80.097661 60.3282) (xy 80.012325 60.478114) (xy 79.933663 60.694825) (xy 79.932714 60.700074) (xy 79.932713 60.700077) (xy 79.893377 60.917608) (xy 79.893376 60.917615) (xy 79.892639 60.921692) (xy 79.892444 60.925837) (xy 79.891653 60.942608) (xy 79.8915 60.945844) (xy 79.8915 61.40789) (xy 79.893396 61.43023) (xy 79.904987 61.566836) (xy 79.90608 61.57972) (xy 79.907418 61.584875) (xy 79.907419 61.584881) (xy 79.96251 61.797135) (xy 79.963999 61.802872) (xy 79.966191 61.807738) (xy 79.966192 61.807741) (xy 80.024332 61.936808) (xy 80.058688 62.013075) (xy 80.187441 62.204319) (xy 80.19112 62.208176) (xy 80.191122 62.208178) (xy 80.213932 62.232089) (xy 80.346576 62.371135) (xy 80.531542 62.508754) (xy 80.536293 62.51117) (xy 80.536297 62.511172) (xy 80.601129 62.544134) (xy 80.737051 62.61324) (xy 80.742145 62.614822) (xy 80.742148 62.614823) (xy 80.908736 62.66655) (xy 80.957227 62.681607) (xy 80.962516 62.682308) (xy 81.180489 62.711198) (xy 81.180494 62.711198) (xy 81.185774 62.711898) (xy 81.191103 62.711698) (xy 81.191105 62.711698) (xy 81.300966 62.707573) (xy 81.416158 62.703249) (xy 81.438802 62.698498) (xy 81.574209 62.670087) (xy 81.641791 62.655907) (xy 81.64675 62.653949) (xy 81.646752 62.653948) (xy 81.851256 62.573185) (xy 81.851258 62.573184) (xy 81.856221 62.571224) (xy 81.861047 62.568296) (xy 82.048757 62.45439) (xy 82.048756 62.45439) (xy 82.053317 62.451623) (xy 82.057347 62.448126) (xy 82.223412 62.304023) (xy 82.223414 62.304021) (xy 82.227445 62.300523) (xy 82.25667 62.26488) (xy 82.315329 62.224886) (xy 82.386299 62.222954) (xy 82.447048 62.259698) (xy 82.461248 62.278468) (xy 82.518842 62.371538) (xy 82.551522 62.424348) (xy 82.676697 62.549305) (xy 82.682927 62.553145) (xy 82.682928 62.553146) (xy 82.784442 62.61572) (xy 82.827262 62.642115) (xy 82.862938 62.653948) (xy 82.988611 62.695632) (xy 82.988613 62.695632) (xy 82.995139 62.697797) (xy 83.001975 62.698497) (xy 83.001978 62.698498) (xy 83.037663 62.702154) (xy 83.0996 62.7085) (xy 84.245761 62.7085) (xy 84.313882 62.728502) (xy 84.334856 62.745405) (xy 84.885685 63.296234) (xy 84.896552 63.308625) (xy 84.916013 63.333987) (xy 84.922563 63.339013) (xy 84.947921 63.358471) (xy 84.947937 63.358485) (xy 84.993486 63.393435) (xy 85.043124 63.431524) (xy 85.191149 63.492838) (xy 85.35 63.513751) (xy 85.381699 63.509578) (xy 85.398144 63.5085) (xy 90.701864 63.5085) (xy 90.718307 63.509578) (xy 90.75 63.51375) (xy 90.758189 63.512672) (xy 90.789874 63.508501) (xy 90.789884 63.5085) (xy 90.789885 63.5085) (xy 90.889457 63.495391) (xy 90.900664 63.493916) (xy 90.900666 63.493915) (xy 90.908851 63.492838) (xy 91.056876 63.431524) (xy 91.06343 63.426495) (xy 91.152069 63.35848) (xy 91.152075 63.358474) (xy 91.153153 63.357647) (xy 91.183987 63.333987) (xy 91.189017 63.327432) (xy 91.203452 63.308621) (xy 91.214319 63.29623) (xy 91.740144 62.770405) (xy 91.802456 62.736379) (xy 91.829239 62.7335) (xy 93.0004 62.7335) (xy 93.003646 62.733163) (xy 93.00365 62.733163) (xy 93.099308 62.723238) (xy 93.099312 62.723237) (xy 93.106166 62.722526) (xy 93.112702 62.720345) (xy 93.112704 62.720345) (xy 93.266998 62.668868) (xy 93.273946 62.66655) (xy 93.424348 62.573478) (xy 93.549305 62.448303) (xy 93.553146 62.442072) (xy 93.638275 62.303968) (xy 93.638276 62.303966) (xy 93.642115 62.297738) (xy 93.672399 62.206433) (xy 93.695632 62.136389) (xy 93.695632 62.136387) (xy 93.697797 62.129861) (xy 93.698578 62.122245) (xy 93.704666 62.062816) (xy 93.7085 62.0254) (xy 93.7085 60.4246) (xy 93.697526 60.318834) (xy 93.69371 60.307394) (xy 93.643868 60.158002) (xy 93.64155 60.151054) (xy 93.548478 60.000652) (xy 93.423303 59.875695) (xy 93.409121 59.866953) (xy 93.278968 59.786725) (xy 93.278966 59.786724) (xy 93.272738 59.782885) (xy 93.112254 59.729655) (xy 93.111389 59.729368) (xy 93.111387 59.729368) (xy 93.104861 59.727203) (xy 93.098025 59.726503) (xy 93.098022 59.726502) (xy 93.054969 59.722091) (xy 93.0004 59.7165) (xy 91.6996 59.7165) (xy 91.696354 59.716837) (xy 91.69635 59.716837) (xy 91.600692 59.726762) (xy 91.600688 59.726763) (xy 91.593834 59.727474) (xy 91.587298 59.729655) (xy 91.587296 59.729655) (xy 91.48943 59.762306) (xy 91.426054 59.78345) (xy 91.275652 59.876522) (xy 91.150695 60.001697) (xy 91.073296 60.127262) (xy 91.06092 60.147339) (xy 91.008148 60.194832) (xy 90.938076 60.206256) (xy 90.872952 60.177982) (xy 90.86249 60.168195) (xy 90.806113 60.109097) (xy 90.753424 60.053865) (xy 90.568458 59.916246) (xy 90.527394 59.895368) (xy 90.475737 59.846666) (xy 90.4585 59.783052) (xy 90.4585 57.298136) (xy 90.459578 57.28169) (xy 90.462672 57.258188) (xy 90.46375 57.25) (xy 90.4585 57.210122) (xy 90.4585 57.210115) (xy 90.442838 57.09115) (xy 90.381524 56.943125) (xy 90.328882 56.874521) (xy 90.308477 56.847928) (xy 90.308474 56.847925) (xy 90.308471 56.847921) (xy 90.289016 56.822566) (xy 90.289013 56.822563) (xy 90.283987 56.816013) (xy 90.277432 56.810983) (xy 90.258621 56.796548) (xy 90.24623 56.785681) (xy 90.224623 56.764074) (xy 90.190597 56.701762) (xy 90.195662 56.630947) (xy 90.238209 56.574111) (xy 90.304729 56.5493) (xy 90.313718 56.548979) (xy 106.000884 56.548979) ) ) (filled_polygon (layer "B.Cu") (pts (xy 149.591256 57.503502) (xy 149.61223 57.520405) (xy 151.079595 58.987769) (xy 151.11362 59.050081) (xy 151.1165 59.076864) (xy 151.1165 69.200735) (xy 151.096498 69.268856) (xy 151.042842 69.315349) (xy 150.972568 69.325453) (xy 150.907988 69.295959) (xy 150.870667 69.239671) (xy 150.867549 69.230073) (xy 150.834527 69.128444) (xy 150.73904 68.963056) (xy 150.611253 68.821134) (xy 150.456752 68.708882) (xy 150.450724 68.706198) (xy 150.450722 68.706197) (xy 150.288319 68.633891) (xy 150.288318 68.633891) (xy 150.282288 68.631206) (xy 150.167082 68.606718) (xy 150.101944 68.592872) (xy 150.101939 68.592872) (xy 150.095487 68.5915) (xy 149.904513 68.5915) (xy 149.898061 68.592872) (xy 149.898056 68.592872) (xy 149.832918 68.606718) (xy 149.717712 68.631206) (xy 149.711682 68.633891) (xy 149.711681 68.633891) (xy 149.549278 68.706197) (xy 149.549276 68.706198) (xy 149.543248 68.708882) (xy 149.388747 68.821134) (xy 149.384332 68.826037) (xy 149.37942 68.83046) (xy 149.378295 68.829211) (xy 149.324986 68.862051) (xy 149.2918 68.8665) (xy 147.228421 68.8665) (xy 147.1603 68.846498) (xy 147.113807 68.792842) (xy 147.108588 68.779437) (xy 147.06545 68.646672) (xy 147.059527 68.628444) (xy 147.046984 68.606718) (xy 146.991329 68.510322) (xy 146.96404 68.463056) (xy 146.920019 68.414165) (xy 146.840675 68.326045) (xy 146.840671 68.326041) (xy 146.836253 68.321134) (xy 146.717377 68.234765) (xy 146.687094 68.212763) (xy 146.687093 68.212762) (xy 146.681752 68.208882) (xy 146.675724 68.206198) (xy 146.675722 68.206197) (xy 146.513319 68.133891) (xy 146.513318 68.133891) (xy 146.507288 68.131206) (xy 146.413888 68.111353) (xy 146.326944 68.092872) (xy 146.326939 68.092872) (xy 146.320487 68.0915) (xy 146.129513 68.0915) (xy 146.123061 68.092872) (xy 146.123056 68.092872) (xy 146.036112 68.111353) (xy 145.942712 68.131206) (xy 145.936682 68.133891) (xy 145.936681 68.133891) (xy 145.774278 68.206197) (xy 145.774276 68.206198) (xy 145.768248 68.208882) (xy 145.762907 68.212762) (xy 145.762906 68.212763) (xy 145.732623 68.234765) (xy 145.613747 68.321134) (xy 145.609329 68.326041) (xy 145.609325 68.326045) (xy 145.529982 68.414165) (xy 145.48596 68.463056) (xy 145.458671 68.510322) (xy 145.403017 68.606718) (xy 145.390473 68.628444) (xy 145.331458 68.810072) (xy 145.330768 68.816633) (xy 145.330768 68.816635) (xy 145.315895 68.958148) (xy 145.311496 69) (xy 145.312186 69.006565) (xy 145.330752 69.183207) (xy 145.331458 69.189928) (xy 145.390473 69.371556) (xy 145.393776 69.377278) (xy 145.393777 69.377279) (xy 145.40269 69.392716) (xy 145.48596 69.536944) (xy 145.490378 69.541851) (xy 145.490379 69.541852) (xy 145.605059 69.669217) (xy 145.613747 69.678866) (xy 145.678577 69.725968) (xy 145.745318 69.774458) (xy 145.768248 69.791118) (xy 145.774276 69.793802) (xy 145.774278 69.793803) (xy 145.936679 69.866108) (xy 145.942712 69.868794) (xy 146.025772 69.886449) (xy 146.123056 69.907128) (xy 146.123061 69.907128) (xy 146.129513 69.9085) (xy 146.184691 69.9085) (xy 146.252812 69.928502) (xy 146.270942 69.942648) (xy 146.282651 69.953643) (xy 146.285495 69.9564) (xy 146.30523 69.976135) (xy 146.308427 69.978615) (xy 146.317447 69.986318) (xy 146.349679 70.016586) (xy 146.356625 70.020405) (xy 146.356628 70.020407) (xy 146.367434 70.026348) (xy 146.383953 70.037199) (xy 146.399959 70.049614) (xy 146.407228 70.052759) (xy 146.407232 70.052762) (xy 146.440537 70.067174) (xy 146.451187 70.072391) (xy 146.48994 70.093695) (xy 146.508464 70.098451) (xy 146.509562 70.098733) (xy 146.528267 70.105137) (xy 146.546855 70.113181) (xy 146.554678 70.11442) (xy 146.554688 70.114423) (xy 146.590524 70.120099) (xy 146.602144 70.122505) (xy 146.636413 70.131303) (xy 146.64497 70.1335) (xy 146.665224 70.1335) (xy 146.684934 70.135051) (xy 146.704943 70.13822) (xy 146.712835 70.137474) (xy 146.748961 70.134059) (xy 146.760819 70.1335) (xy 149.2405 70.1335) (xy 149.308621 70.153502) (xy 149.355114 70.207158) (xy 149.3665 70.2595) (xy 149.3665 74.485406) (xy 149.346498 74.553527) (xy 149.329595 74.574501) (xy 146.092306 77.811789) (xy 142.857747 81.046348) (xy 142.849461 81.053888) (xy 142.842982 81.058) (xy 142.837557 81.063777) (xy 142.796357 81.107651) (xy 142.793602 81.110493) (xy 142.773865 81.13023) (xy 142.771385 81.133427) (xy 142.763682 81.142447) (xy 142.733414 81.174679) (xy 142.729595 81.181625) (xy 142.729593 81.181628) (xy 142.723652 81.192434) (xy 142.712801 81.208953) (xy 142.700386 81.224959) (xy 142.697241 81.232228) (xy 142.697238 81.232232) (xy 142.682826 81.265537) (xy 142.677609 81.276187) (xy 142.656305 81.31494) (xy 142.654334 81.322615) (xy 142.654334 81.322616) (xy 142.651267 81.334562) (xy 142.644863 81.353266) (xy 142.644262 81.354656) (xy 142.636819 81.371855) (xy 142.63558 81.379678) (xy 142.635577 81.379688) (xy 142.629901 81.415524) (xy 142.627495 81.427144) (xy 142.620679 81.453694) (xy 142.6165 81.46997) (xy 142.6165 81.490224) (xy 142.614949 81.509934) (xy 142.61178 81.529943) (xy 142.612526 81.537835) (xy 142.615941 81.573961) (xy 142.6165 81.585819) (xy 142.6165 84.547476) (xy 142.596498 84.615597) (xy 142.584142 84.631779) (xy 142.51096 84.713056) (xy 142.487456 84.753766) (xy 142.420512 84.869717) (xy 142.415473 84.878444) (xy 142.356458 85.060072) (xy 142.336496 85.25) (xy 142.356458 85.439928) (xy 142.415473 85.621556) (xy 142.51096 85.786944) (xy 142.515378 85.791851) (xy 142.515379 85.791852) (xy 142.556779 85.837831) (xy 142.638747 85.928866) (xy 142.705442 85.977323) (xy 142.780956 86.032187) (xy 142.793248 86.041118) (xy 142.799276 86.043802) (xy 142.799278 86.043803) (xy 142.865588 86.073326) (xy 142.903434 86.099338) (xy 143.629595 86.825499) (xy 143.663621 86.887811) (xy 143.6665 86.914594) (xy 143.6665 95.135405) (xy 143.646498 95.203526) (xy 143.629595 95.2245) (xy 143.2995 95.554595) (xy 143.237188 95.588621) (xy 143.210405 95.5915) (xy 143.154513 95.5915) (xy 143.148061 95.592872) (xy 143.148056 95.592872) (xy 143.061112 95.611353) (xy 142.967712 95.631206) (xy 142.961682 95.633891) (xy 142.961681 95.633891) (xy 142.799278 95.706197) (xy 142.799276 95.706198) (xy 142.793248 95.708882) (xy 142.638747 95.821134) (xy 142.634326 95.826044) (xy 142.634325 95.826045) (xy 142.525049 95.947409) (xy 142.51096 95.963056) (xy 142.415473 96.128444) (xy 142.356458 96.310072) (xy 142.355768 96.316633) (xy 142.355768 96.316635) (xy 142.341879 96.448782) (xy 142.336496 96.5) (xy 142.337186 96.506565) (xy 142.350914 96.637176) (xy 142.356458 96.689928) (xy 142.415473 96.871556) (xy 142.51096 97.036944) (xy 142.584137 97.118215) (xy 142.614853 97.182221) (xy 142.6165 97.202524) (xy 142.6165 106.797476) (xy 142.596498 106.865597) (xy 142.584142 106.881779) (xy 142.51096 106.963056) (xy 142.467417 107.038474) (xy 142.422595 107.116109) (xy 142.415473 107.128444) (xy 142.356458 107.310072) (xy 142.355768 107.316633) (xy 142.355768 107.316635) (xy 142.34281 107.439928) (xy 142.336496 107.5) (xy 142.356458 107.689928) (xy 142.415473 107.871556) (xy 142.418776 107.877278) (xy 142.418777 107.877279) (xy 142.436803 107.9085) (xy 142.51096 108.036944) (xy 142.584137 108.118215) (xy 142.614853 108.182221) (xy 142.6165 108.202524) (xy 142.6165 110.547476) (xy 142.596498 110.615597) (xy 142.584142 110.631779) (xy 142.51096 110.713056) (xy 142.473111 110.778612) (xy 142.42477 110.862342) (xy 142.415473 110.878444) (xy 142.356458 111.060072) (xy 142.355768 111.066633) (xy 142.355768 111.066635) (xy 142.34281 111.189928) (xy 142.336496 111.25) (xy 142.337186 111.256565) (xy 142.352636 111.40356) (xy 142.356458 111.439928) (xy 142.415473 111.621556) (xy 142.51096 111.786944) (xy 142.515378 111.791851) (xy 142.515379 111.791852) (xy 142.619174 111.907128) (xy 142.638747 111.928866) (xy 142.726228 111.992425) (xy 142.768219 112.022933) (xy 142.793248 112.041118) (xy 142.799276 112.043802) (xy 142.799278 112.043803) (xy 142.961681 112.116109) (xy 142.967712 112.118794) (xy 143.040055 112.134171) (xy 143.148056 112.157128) (xy 143.148061 112.157128) (xy 143.154513 112.1585) (xy 143.345487 112.1585) (xy 143.351939 112.157128) (xy 143.351944 112.157128) (xy 143.459945 112.134171) (xy 143.532288 112.118794) (xy 143.538319 112.116109) (xy 143.700722 112.043803) (xy 143.700724 112.043802) (xy 143.706752 112.041118) (xy 143.731782 112.022933) (xy 143.773772 111.992425) (xy 143.861253 111.928866) (xy 143.880826 111.907128) (xy 143.984621 111.791852) (xy 143.984622 111.791851) (xy 143.98904 111.786944) (xy 144.084527 111.621556) (xy 144.143542 111.439928) (xy 144.147365 111.40356) (xy 144.162814 111.256565) (xy 144.163504 111.25) (xy 144.15719 111.189928) (xy 144.144232 111.066635) (xy 144.144232 111.066633) (xy 144.143542 111.060072) (xy 144.124023 111) (xy 153.586496 111) (xy 153.587186 111.006565) (xy 153.594732 111.078357) (xy 153.606458 111.189928) (xy 153.665473 111.371556) (xy 153.668776 111.377278) (xy 153.668777 111.377279) (xy 153.701159 111.433365) (xy 153.76096 111.536944) (xy 153.888747 111.678866) (xy 154.043248 111.791118) (xy 154.049276 111.793802) (xy 154.049278 111.793803) (xy 154.211681 111.866109) (xy 154.217712 111.868794) (xy 154.311112 111.888647) (xy 154.398056 111.907128) (xy 154.398061 111.907128) (xy 154.404513 111.9085) (xy 154.595487 111.9085) (xy 154.601939 111.907128) (xy 154.601944 111.907128) (xy 154.688887 111.888647) (xy 154.782288 111.868794) (xy 154.788319 111.866109) (xy 154.950722 111.793803) (xy 154.950724 111.793802) (xy 154.956752 111.791118) (xy 155.111253 111.678866) (xy 155.23904 111.536944) (xy 155.298841 111.433365) (xy 155.331223 111.377279) (xy 155.331224 111.377278) (xy 155.334527 111.371556) (xy 155.393542 111.189928) (xy 155.405269 111.078357) (xy 155.412814 111.006565) (xy 155.413504 111) (xy 155.400106 110.872522) (xy 155.394232 110.816635) (xy 155.394232 110.816633) (xy 155.393542 110.810072) (xy 155.334527 110.628444) (xy 155.23904 110.463056) (xy 155.213437 110.434621) (xy 155.140864 110.35402) (xy 155.110146 110.290013) (xy 155.1085 110.26971) (xy 155.1085 103.73029) (xy 155.128502 103.662169) (xy 155.140864 103.64598) (xy 155.234621 103.541852) (xy 155.234622 103.541851) (xy 155.23904 103.536944) (xy 155.329141 103.380885) (xy 155.331223 103.377279) (xy 155.331224 103.377278) (xy 155.334527 103.371556) (xy 155.393542 103.189928) (xy 155.397492 103.152351) (xy 155.412814 103.006565) (xy 155.413504 103) (xy 155.40719 102.939928) (xy 155.394232 102.816635) (xy 155.394232 102.816633) (xy 155.393542 102.810072) (xy 155.334527 102.628444) (xy 155.326843 102.615134) (xy 155.291428 102.553794) (xy 155.23904 102.463056) (xy 155.198382 102.4179) (xy 155.115675 102.326045) (xy 155.115674 102.326044) (xy 155.111253 102.321134) (xy 154.956752 102.208882) (xy 154.950724 102.206198) (xy 154.950722 102.206197) (xy 154.788319 102.133891) (xy 154.788318 102.133891) (xy 154.782288 102.131206) (xy 154.688887 102.111353) (xy 154.601944 102.092872) (xy 154.601939 102.092872) (xy 154.595487 102.0915) (xy 154.404513 102.0915) (xy 154.398061 102.092872) (xy 154.398056 102.092872) (xy 154.311112 102.111353) (xy 154.217712 102.131206) (xy 154.211682 102.133891) (xy 154.211681 102.133891) (xy 154.049278 102.206197) (xy 154.049276 102.206198) (xy 154.043248 102.208882) (xy 153.888747 102.321134) (xy 153.884326 102.326044) (xy 153.884325 102.326045) (xy 153.801619 102.4179) (xy 153.76096 102.463056) (xy 153.708572 102.553794) (xy 153.673158 102.615134) (xy 153.665473 102.628444) (xy 153.606458 102.810072) (xy 153.605768 102.816633) (xy 153.605768 102.816635) (xy 153.59281 102.939928) (xy 153.586496 103) (xy 153.587186 103.006565) (xy 153.602509 103.152351) (xy 153.606458 103.189928) (xy 153.665473 103.371556) (xy 153.668776 103.377278) (xy 153.668777 103.377279) (xy 153.670859 103.380885) (xy 153.76096 103.536944) (xy 153.765378 103.541851) (xy 153.765379 103.541852) (xy 153.859136 103.64598) (xy 153.889854 103.709987) (xy 153.8915 103.73029) (xy 153.8915 110.26971) (xy 153.871498 110.337831) (xy 153.859136 110.35402) (xy 153.786563 110.434621) (xy 153.76096 110.463056) (xy 153.665473 110.628444) (xy 153.606458 110.810072) (xy 153.605768 110.816633) (xy 153.605768 110.816635) (xy 153.599894 110.872522) (xy 153.586496 111) (xy 144.124023 111) (xy 144.084527 110.878444) (xy 144.075231 110.862342) (xy 144.026889 110.778612) (xy 143.98904 110.713056) (xy 143.915863 110.631785) (xy 143.885147 110.567779) (xy 143.8835 110.547476) (xy 143.8835 108.202524) (xy 143.903502 108.134403) (xy 143.915858 108.118221) (xy 143.98904 108.036944) (xy 144.063197 107.9085) (xy 144.081223 107.877279) (xy 144.081224 107.877278) (xy 144.084527 107.871556) (xy 144.143542 107.689928) (xy 144.163504 107.5) (xy 144.15719 107.439928) (xy 144.144232 107.316635) (xy 144.144232 107.316633) (xy 144.143542 107.310072) (xy 144.084527 107.128444) (xy 144.077406 107.116109) (xy 144.032583 107.038474) (xy 143.98904 106.963056) (xy 143.915863 106.881785) (xy 143.885147 106.817779) (xy 143.8835 106.797476) (xy 143.8835 99.8) (xy 153.586496 99.8) (xy 153.587186 99.806565) (xy 153.604117 99.96765) (xy 153.606458 99.989928) (xy 153.665473 100.171556) (xy 153.668776 100.177278) (xy 153.668777 100.177279) (xy 153.686004 100.207116) (xy 153.76096 100.336944) (xy 153.765378 100.341851) (xy 153.765379 100.341852) (xy 153.837213 100.421632) (xy 153.888747 100.478866) (xy 153.940869 100.516735) (xy 154.032777 100.58351) (xy 154.043248 100.591118) (xy 154.049276 100.593802) (xy 154.049278 100.593803) (xy 154.195168 100.658757) (xy 154.217712 100.668794) (xy 154.311112 100.688647) (xy 154.398056 100.707128) (xy 154.398061 100.707128) (xy 154.404513 100.7085) (xy 154.595487 100.7085) (xy 154.601939 100.707128) (xy 154.601944 100.707128) (xy 154.688887 100.688647) (xy 154.782288 100.668794) (xy 154.804832 100.658757) (xy 154.950722 100.593803) (xy 154.950724 100.593802) (xy 154.956752 100.591118) (xy 154.967224 100.58351) (xy 155.059131 100.516735) (xy 155.111253 100.478866) (xy 155.162787 100.421632) (xy 155.234621 100.341852) (xy 155.234622 100.341851) (xy 155.23904 100.336944) (xy 155.313996 100.207116) (xy 155.331223 100.177279) (xy 155.331224 100.177278) (xy 155.334527 100.171556) (xy 155.393542 99.989928) (xy 155.395884 99.96765) (xy 155.412814 99.806565) (xy 155.413504 99.8) (xy 155.403792 99.707596) (xy 155.394232 99.616635) (xy 155.394232 99.616633) (xy 155.393542 99.610072) (xy 155.334527 99.428444) (xy 155.23904 99.263056) (xy 155.234621 99.258148) (xy 155.140864 99.15402) (xy 155.110146 99.090013) (xy 155.1085 99.06971) (xy 155.1085 92.53029) (xy 155.128502 92.462169) (xy 155.140864 92.44598) (xy 155.234621 92.341852) (xy 155.234622 92.341851) (xy 155.23904 92.336944) (xy 155.318015 92.200155) (xy 155.331223 92.177279) (xy 155.331224 92.177278) (xy 155.334527 92.171556) (xy 155.393542 91.989928) (xy 155.396105 91.965548) (xy 155.412814 91.806565) (xy 155.413504 91.8) (xy 155.399686 91.668525) (xy 155.394232 91.616635) (xy 155.394232 91.616633) (xy 155.393542 91.610072) (xy 155.334527 91.428444) (xy 155.321618 91.406084) (xy 155.278761 91.331855) (xy 155.23904 91.263056) (xy 155.232763 91.256084) (xy 155.115675 91.126045) (xy 155.115674 91.126044) (xy 155.111253 91.121134) (xy 154.956752 91.008882) (xy 154.950724 91.006198) (xy 154.950722 91.006197) (xy 154.788319 90.933891) (xy 154.788318 90.933891) (xy 154.782288 90.931206) (xy 154.683609 90.910231) (xy 154.601944 90.892872) (xy 154.601939 90.892872) (xy 154.595487 90.8915) (xy 154.404513 90.8915) (xy 154.398061 90.892872) (xy 154.398056 90.892872) (xy 154.316391 90.910231) (xy 154.217712 90.931206) (xy 154.211682 90.933891) (xy 154.211681 90.933891) (xy 154.049278 91.006197) (xy 154.049276 91.006198) (xy 154.043248 91.008882) (xy 153.888747 91.121134) (xy 153.884326 91.126044) (xy 153.884325 91.126045) (xy 153.767238 91.256084) (xy 153.76096 91.263056) (xy 153.721239 91.331855) (xy 153.678383 91.406084) (xy 153.665473 91.428444) (xy 153.606458 91.610072) (xy 153.605768 91.616633) (xy 153.605768 91.616635) (xy 153.600314 91.668525) (xy 153.586496 91.8) (xy 153.587186 91.806565) (xy 153.603896 91.965548) (xy 153.606458 91.989928) (xy 153.665473 92.171556) (xy 153.668776 92.177278) (xy 153.668777 92.177279) (xy 153.681985 92.200155) (xy 153.76096 92.336944) (xy 153.765378 92.341851) (xy 153.765379 92.341852) (xy 153.859136 92.44598) (xy 153.889854 92.509987) (xy 153.8915 92.53029) (xy 153.8915 99.06971) (xy 153.871498 99.137831) (xy 153.859136 99.15402) (xy 153.765379 99.258148) (xy 153.76096 99.263056) (xy 153.665473 99.428444) (xy 153.606458 99.610072) (xy 153.605768 99.616633) (xy 153.605768 99.616635) (xy 153.596208 99.707596) (xy 153.586496 99.8) (xy 143.8835 99.8) (xy 143.8835 97.202524) (xy 143.903502 97.134403) (xy 143.915858 97.118221) (xy 143.98904 97.036944) (xy 144.084527 96.871556) (xy 144.143542 96.689928) (xy 144.160907 96.524706) (xy 144.18792 96.45905) (xy 144.197122 96.448782) (xy 144.692247 95.953657) (xy 144.700537 95.946113) (xy 144.707018 95.942) (xy 144.753659 95.892332) (xy 144.756413 95.889491) (xy 144.776134 95.86977) (xy 144.778612 95.866575) (xy 144.786318 95.857553) (xy 144.811158 95.831101) (xy 144.816586 95.825321) (xy 144.826346 95.807568) (xy 144.837199 95.791045) (xy 144.844753 95.781306) (xy 144.849613 95.775041) (xy 144.867176 95.734457) (xy 144.872383 95.723827) (xy 144.893695 95.68506) (xy 144.895666 95.677383) (xy 144.895668 95.677378) (xy 144.898732 95.665442) (xy 144.905138 95.64673) (xy 144.909197 95.637352) (xy 144.913181 95.628145) (xy 144.914421 95.620317) (xy 144.914423 95.62031) (xy 144.920099 95.584476) (xy 144.922505 95.572856) (xy 144.931528 95.537711) (xy 144.931528 95.53771) (xy 144.9335 95.53003) (xy 144.9335 95.509776) (xy 144.935051 95.490065) (xy 144.93698 95.477886) (xy 144.93822 95.470057) (xy 144.934059 95.426038) (xy 144.9335 95.414181) (xy 144.9335 88.5) (xy 153.586496 88.5) (xy 153.587186 88.506565) (xy 153.604181 88.66826) (xy 153.606458 88.689928) (xy 153.665473 88.871556) (xy 153.668776 88.877278) (xy 153.668777 88.877279) (xy 153.687258 88.909288) (xy 153.76096 89.036944) (xy 153.765378 89.041851) (xy 153.765379 89.041852) (xy 153.799076 89.079276) (xy 153.888747 89.178866) (xy 154.043248 89.291118) (xy 154.049276 89.293802) (xy 154.049278 89.293803) (xy 154.138368 89.333468) (xy 154.217712 89.368794) (xy 154.286964 89.383514) (xy 154.398056 89.407128) (xy 154.398061 89.407128) (xy 154.404513 89.4085) (xy 154.595487 89.4085) (xy 154.601939 89.407128) (xy 154.601944 89.407128) (xy 154.713036 89.383514) (xy 154.782288 89.368794) (xy 154.861632 89.333468) (xy 154.950722 89.293803) (xy 154.950724 89.293802) (xy 154.956752 89.291118) (xy 155.111253 89.178866) (xy 155.200924 89.079276) (xy 155.234621 89.041852) (xy 155.234622 89.041851) (xy 155.23904 89.036944) (xy 155.312742 88.909288) (xy 155.331223 88.877279) (xy 155.331224 88.877278) (xy 155.334527 88.871556) (xy 155.393542 88.689928) (xy 155.39582 88.66826) (xy 155.412814 88.506565) (xy 155.413504 88.5) (xy 155.406028 88.428866) (xy 155.394232 88.316635) (xy 155.394232 88.316633) (xy 155.393542 88.310072) (xy 155.334527 88.128444) (xy 155.327406 88.116109) (xy 155.283102 88.039373) (xy 155.23904 87.963056) (xy 155.234621 87.958148) (xy 155.140864 87.85402) (xy 155.110146 87.790013) (xy 155.1085 87.76971) (xy 155.1085 82.33029) (xy 155.128502 82.262169) (xy 155.140864 82.24598) (xy 155.234621 82.141852) (xy 155.234622 82.141851) (xy 155.23904 82.136944) (xy 155.334527 81.971556) (xy 155.393542 81.789928) (xy 155.396381 81.762922) (xy 155.412814 81.606565) (xy 155.413504 81.6) (xy 155.401966 81.490224) (xy 155.394232 81.416635) (xy 155.394232 81.416633) (xy 155.393542 81.410072) (xy 155.334527 81.228444) (xy 155.304104 81.175749) (xy 155.279628 81.133356) (xy 155.23904 81.063056) (xy 155.23119 81.054337) (xy 155.115675 80.926045) (xy 155.115674 80.926044) (xy 155.111253 80.921134) (xy 155.006087 80.844726) (xy 154.962094 80.812763) (xy 154.962093 80.812762) (xy 154.956752 80.808882) (xy 154.950724 80.806198) (xy 154.950722 80.806197) (xy 154.788319 80.733891) (xy 154.788318 80.733891) (xy 154.782288 80.731206) (xy 154.688887 80.711353) (xy 154.601944 80.692872) (xy 154.601939 80.692872) (xy 154.595487 80.6915) (xy 154.404513 80.6915) (xy 154.398061 80.692872) (xy 154.398056 80.692872) (xy 154.311113 80.711353) (xy 154.217712 80.731206) (xy 154.211682 80.733891) (xy 154.211681 80.733891) (xy 154.049278 80.806197) (xy 154.049276 80.806198) (xy 154.043248 80.808882) (xy 154.037907 80.812762) (xy 154.037906 80.812763) (xy 153.993913 80.844726) (xy 153.888747 80.921134) (xy 153.884326 80.926044) (xy 153.884325 80.926045) (xy 153.768811 81.054337) (xy 153.76096 81.063056) (xy 153.720372 81.133356) (xy 153.695897 81.175749) (xy 153.665473 81.228444) (xy 153.606458 81.410072) (xy 153.605768 81.416633) (xy 153.605768 81.416635) (xy 153.598034 81.490224) (xy 153.586496 81.6) (xy 153.587186 81.606565) (xy 153.60362 81.762922) (xy 153.606458 81.789928) (xy 153.665473 81.971556) (xy 153.76096 82.136944) (xy 153.765378 82.141851) (xy 153.765379 82.141852) (xy 153.859136 82.24598) (xy 153.889854 82.309987) (xy 153.8915 82.33029) (xy 153.8915 87.76971) (xy 153.871498 87.837831) (xy 153.859136 87.85402) (xy 153.765379 87.958148) (xy 153.76096 87.963056) (xy 153.716898 88.039373) (xy 153.672595 88.116109) (xy 153.665473 88.128444) (xy 153.606458 88.310072) (xy 153.605768 88.316633) (xy 153.605768 88.316635) (xy 153.593972 88.428866) (xy 153.586496 88.5) (xy 144.9335 88.5) (xy 144.9335 86.678767) (xy 144.934027 86.667584) (xy 144.935702 86.660091) (xy 144.935327 86.648144) (xy 144.933562 86.592014) (xy 144.9335 86.588055) (xy 144.9335 86.560144) (xy 144.932995 86.556144) (xy 144.932062 86.544301) (xy 144.930922 86.508029) (xy 144.930673 86.50011) (xy 144.925022 86.480658) (xy 144.921014 86.461306) (xy 144.919467 86.449063) (xy 144.918474 86.441203) (xy 144.914841 86.432027) (xy 144.9022 86.400097) (xy 144.898355 86.38887) (xy 144.893663 86.372721) (xy 144.886018 86.346407) (xy 144.881984 86.339585) (xy 144.881981 86.339579) (xy 144.875706 86.328968) (xy 144.86701 86.311218) (xy 144.862472 86.299756) (xy 144.862469 86.299751) (xy 144.859552 86.292383) (xy 144.846901 86.27497) (xy 144.833573 86.256625) (xy 144.827057 86.246707) (xy 144.808575 86.215457) (xy 144.804542 86.208637) (xy 144.790218 86.194313) (xy 144.777376 86.179278) (xy 144.765472 86.162893) (xy 144.731406 86.134711) (xy 144.722627 86.126722) (xy 144.171726 85.575821) (xy 144.1377 85.513509) (xy 144.140736 85.452795) (xy 144.140129 85.452666) (xy 144.140931 85.448892) (xy 144.140986 85.447797) (xy 144.141501 85.446212) (xy 144.141502 85.446205) (xy 144.143542 85.439928) (xy 144.163504 85.25) (xy 144.143542 85.060072) (xy 144.084527 84.878444) (xy 144.079489 84.869717) (xy 144.012544 84.753766) (xy 143.98904 84.713056) (xy 143.915863 84.631785) (xy 143.885147 84.567779) (xy 143.8835 84.547476) (xy 143.8835 81.864594) (xy 143.903502 81.796473) (xy 143.920405 81.775499) (xy 150.392247 75.303657) (xy 150.400537 75.296113) (xy 150.407018 75.292) (xy 150.453659 75.242332) (xy 150.456413 75.239491) (xy 150.476135 75.219769) (xy 150.478612 75.216576) (xy 150.486317 75.207555) (xy 150.511159 75.1811) (xy 150.516586 75.175321) (xy 150.520407 75.168371) (xy 150.526346 75.157568) (xy 150.537202 75.141041) (xy 150.544757 75.131302) (xy 150.544758 75.1313) (xy 150.549614 75.12504) (xy 150.567174 75.08446) (xy 150.572391 75.073812) (xy 150.589875 75.042009) (xy 150.589876 75.042007) (xy 150.593695 75.03506) (xy 150.598733 75.015437) (xy 150.605137 74.996734) (xy 150.610033 74.98542) (xy 150.610033 74.985419) (xy 150.613181 74.978145) (xy 150.61442 74.970322) (xy 150.614423 74.970312) (xy 150.620099 74.934476) (xy 150.622505 74.922856) (xy 150.631528 74.887711) (xy 150.631528 74.88771) (xy 150.6335 74.88003) (xy 150.6335 74.859776) (xy 150.635051 74.840065) (xy 150.63698 74.827886) (xy 150.63822 74.820057) (xy 150.634059 74.776038) (xy 150.6335 74.764181) (xy 150.6335 70.202524) (xy 150.653502 70.134403) (xy 150.665858 70.118221) (xy 150.73904 70.036944) (xy 150.813197 69.9085) (xy 150.831223 69.877279) (xy 150.831224 69.877278) (xy 150.834527 69.871556) (xy 150.870667 69.760329) (xy 150.910741 69.701723) (xy 150.976137 69.674086) (xy 151.046094 69.686193) (xy 151.0984 69.734199) (xy 151.1165 69.799265) (xy 151.1165 76.120543) (xy 151.114949 76.140255) (xy 151.11285 76.153507) (xy 151.113195 76.160094) (xy 151.113195 76.160098) (xy 151.116327 76.21985) (xy 151.1165 76.226445) (xy 151.1165 76.246306) (xy 151.118104 76.261571) (xy 151.118576 76.266059) (xy 151.119093 76.272628) (xy 151.119268 76.275965) (xy 151.122215 76.332195) (xy 151.12257 76.338971) (xy 151.126042 76.351929) (xy 151.129645 76.371372) (xy 151.131046 76.384702) (xy 151.151578 76.447894) (xy 151.153444 76.454196) (xy 151.162869 76.489371) (xy 151.170638 76.518363) (xy 151.173634 76.524242) (xy 151.173637 76.524251) (xy 151.176728 76.530317) (xy 151.184292 76.548579) (xy 151.186392 76.555043) (xy 151.186395 76.555051) (xy 151.188436 76.561331) (xy 151.191738 76.56705) (xy 151.19174 76.567055) (xy 151.221654 76.618867) (xy 151.224787 76.624637) (xy 151.254953 76.683839) (xy 151.259109 76.688971) (xy 151.263391 76.694259) (xy 151.274589 76.710552) (xy 151.281296 76.722169) (xy 151.285713 76.727075) (xy 151.285717 76.72708) (xy 151.325747 76.771538) (xy 151.330031 76.776554) (xy 151.340441 76.789409) (xy 151.342528 76.791986) (xy 151.356573 76.806031) (xy 151.361114 76.810816) (xy 151.405566 76.860185) (xy 151.416426 76.868075) (xy 151.431454 76.880912) (xy 156.379595 81.829052) (xy 156.413621 81.891364) (xy 156.4165 81.918147) (xy 156.4165 82.50713) (xy 156.396498 82.575251) (xy 156.342842 82.621744) (xy 156.33473 82.625112) (xy 156.203295 82.674385) (xy 156.086739 82.761739) (xy 155.999385 82.878295) (xy 155.948255 83.014684) (xy 155.9415 83.076866) (xy 155.9415 84.873134) (xy 155.948255 84.935316) (xy 155.999385 85.071705) (xy 156.086739 85.188261) (xy 156.203295 85.275615) (xy 156.211704 85.278767) (xy 156.211705 85.278768) (xy 156.320451 85.319535) (xy 156.377216 85.362176) (xy 156.401916 85.428738) (xy 156.386709 85.498087) (xy 156.367316 85.524568) (xy 156.240629 85.657138) (xy 156.114743 85.84168) (xy 156.098106 85.877522) (xy 156.032105 86.01971) (xy 156.020688 86.044305) (xy 155.960989 86.25957) (xy 155.937251 86.481695) (xy 155.937548 86.486848) (xy 155.937548 86.486851) (xy 155.943498 86.590042) (xy 155.95011 86.704715) (xy 155.951247 86.709761) (xy 155.951248 86.709767) (xy 155.961795 86.756565) (xy 155.999222 86.922639) (xy 156.024843 86.985736) (xy 156.072873 87.10402) (xy 156.083266 87.129616) (xy 156.085965 87.13402) (xy 156.19301 87.308702) (xy 156.199987 87.320088) (xy 156.34625 87.488938) (xy 156.476819 87.597338) (xy 156.502663 87.618794) (xy 156.518126 87.631632) (xy 156.564105 87.6585) (xy 156.591445 87.674476) (xy 156.640169 87.726114) (xy 156.65324 87.795897) (xy 156.626509 87.861669) (xy 156.586055 87.895027) (xy 156.573607 87.901507) (xy 156.569474 87.90461) (xy 156.569471 87.904612) (xy 156.400837 88.031226) (xy 156.394965 88.035635) (xy 156.240629 88.197138) (xy 156.237715 88.20141) (xy 156.237714 88.201411) (xy 156.179168 88.287237) (xy 156.114743 88.38168) (xy 156.102294 88.4085) (xy 156.040735 88.541118) (xy 156.020688 88.584305) (xy 155.960989 88.79957) (xy 155.937251 89.021695) (xy 155.937548 89.026848) (xy 155.937548 89.026851) (xy 155.946537 89.182749) (xy 155.95011 89.244715) (xy 155.951247 89.249761) (xy 155.951248 89.249767) (xy 155.969927 89.332648) (xy 155.999222 89.462639) (xy 156.083266 89.669616) (xy 156.199987 89.860088) (xy 156.34625 90.028938) (xy 156.518126 90.171632) (xy 156.711 90.284338) (xy 156.715824 90.28618) (xy 156.715826 90.286181) (xy 156.748241 90.298559) (xy 156.792387 90.327174) (xy 158.704595 92.239383) (xy 158.738621 92.301695) (xy 158.7415 92.328478) (xy 158.7415 93.963059) (xy 158.721498 94.03118) (xy 158.667842 94.077673) (xy 158.597568 94.087777) (xy 158.532988 94.058283) (xy 158.525266 94.049995) (xy 158.524992 94.050269) (xy 158.518642 94.043919) (xy 158.513261 94.036739) (xy 158.396705 93.949385) (xy 158.260316 93.898255) (xy 158.198134 93.8915) (xy 156.401866 93.8915) (xy 156.339684 93.898255) (xy 156.203295 93.949385) (xy 156.086739 94.036739) (xy 155.999385 94.153295) (xy 155.948255 94.289684) (xy 155.9415 94.351866) (xy 155.9415 96.148134) (xy 155.948255 96.210316) (xy 155.999385 96.346705) (xy 156.086739 96.463261) (xy 156.203295 96.550615) (xy 156.211704 96.553767) (xy 156.211705 96.553768) (xy 156.320451 96.594535) (xy 156.377216 96.637176) (xy 156.401916 96.703738) (xy 156.386709 96.773087) (xy 156.367316 96.799568) (xy 156.293054 96.877279) (xy 156.240629 96.932138) (xy 156.237715 96.93641) (xy 156.237714 96.936411) (xy 156.154833 97.05791) (xy 156.114743 97.11668) (xy 156.072542 97.207594) (xy 156.023349 97.313573) (xy 156.020688 97.319305) (xy 155.960989 97.53457) (xy 155.937251 97.756695) (xy 155.937548 97.761848) (xy 155.937548 97.761851) (xy 155.943871 97.871504) (xy 155.95011 97.979715) (xy 155.951247 97.984761) (xy 155.951248 97.984767) (xy 155.969994 98.067945) (xy 155.999222 98.197639) (xy 156.058054 98.342525) (xy 156.076742 98.388548) (xy 156.083266 98.404616) (xy 156.123591 98.47042) (xy 156.196995 98.590205) (xy 156.199987 98.595088) (xy 156.34625 98.763938) (xy 156.518126 98.906632) (xy 156.557394 98.929578) (xy 156.591445 98.949476) (xy 156.640169 99.001114) (xy 156.65324 99.070897) (xy 156.626509 99.136669) (xy 156.586055 99.170027) (xy 156.573607 99.176507) (xy 156.569474 99.17961) (xy 156.569471 99.179612) (xy 156.41813 99.293242) (xy 156.394965 99.310635) (xy 156.377206 99.329219) (xy 156.264908 99.446732) (xy 156.240629 99.472138) (xy 156.237715 99.47641) (xy 156.237714 99.476411) (xy 156.186158 99.55199) (xy 156.114743 99.65668) (xy 156.103159 99.681636) (xy 156.037917 99.822189) (xy 156.020688 99.859305) (xy 155.960989 100.07457) (xy 155.937251 100.296695) (xy 155.937548 100.301848) (xy 155.937548 100.301851) (xy 155.947583 100.475896) (xy 155.95011 100.519715) (xy 155.951247 100.524761) (xy 155.951248 100.524767) (xy 155.966351 100.591783) (xy 155.999222 100.737639) (xy 156.037623 100.832209) (xy 156.079754 100.935966) (xy 156.083266 100.944616) (xy 156.11967 101.004022) (xy 156.185806 101.111946) (xy 156.199987 101.135088) (xy 156.34625 101.303938) (xy 156.518126 101.446632) (xy 156.711 101.559338) (xy 156.715824 101.56118) (xy 156.715826 101.561181) (xy 156.748241 101.573559) (xy 156.792387 101.602174) (xy 158.704595 103.514383) (xy 158.738621 103.576695) (xy 158.7415 103.603478) (xy 158.7415 105.213059) (xy 158.721498 105.28118) (xy 158.667842 105.327673) (xy 158.597568 105.337777) (xy 158.532988 105.308283) (xy 158.525266 105.299995) (xy 158.524992 105.300269) (xy 158.518642 105.293919) (xy 158.513261 105.286739) (xy 158.396705 105.199385) (xy 158.260316 105.148255) (xy 158.198134 105.1415) (xy 156.401866 105.1415) (xy 156.339684 105.148255) (xy 156.203295 105.199385) (xy 156.086739 105.286739) (xy 155.999385 105.403295) (xy 155.948255 105.539684) (xy 155.9415 105.601866) (xy 155.9415 107.398134) (xy 155.948255 107.460316) (xy 155.999385 107.596705) (xy 156.086739 107.713261) (xy 156.203295 107.800615) (xy 156.211704 107.803767) (xy 156.211705 107.803768) (xy 156.320451 107.844535) (xy 156.377216 107.887176) (xy 156.401916 107.953738) (xy 156.386709 108.023087) (xy 156.367316 108.049568) (xy 156.248542 108.173858) (xy 156.240629 108.182138) (xy 156.237715 108.18641) (xy 156.237714 108.186411) (xy 156.225409 108.20445) (xy 156.114743 108.36668) (xy 156.098106 108.402522) (xy 156.037918 108.532187) (xy 156.020688 108.569305) (xy 155.960989 108.78457) (xy 155.937251 109.006695) (xy 155.937548 109.011848) (xy 155.937548 109.011851) (xy 155.94705 109.176645) (xy 155.95011 109.229715) (xy 155.951247 109.234761) (xy 155.951248 109.234767) (xy 155.959292 109.270458) (xy 155.999222 109.447639) (xy 156.083266 109.654616) (xy 156.129562 109.730165) (xy 156.192784 109.833333) (xy 156.199987 109.845088) (xy 156.34625 110.013938) (xy 156.518126 110.156632) (xy 156.588595 110.197811) (xy 156.591445 110.199476) (xy 156.640169 110.251114) (xy 156.65324 110.320897) (xy 156.626509 110.386669) (xy 156.586055 110.420027) (xy 156.573607 110.426507) (xy 156.569474 110.42961) (xy 156.569471 110.429612) (xy 156.3991 110.55753) (xy 156.394965 110.560635) (xy 156.36132 110.595842) (xy 156.326971 110.631787) (xy 156.240629 110.722138) (xy 156.237715 110.72641) (xy 156.237714 110.726411) (xy 156.163933 110.83457) (xy 156.114743 110.90668) (xy 156.068378 111.006565) (xy 156.035054 111.078357) (xy 156.020688 111.109305) (xy 155.960989 111.32457) (xy 155.937251 111.546695) (xy 155.937548 111.551848) (xy 155.937548 111.551851) (xy 155.944872 111.678866) (xy 155.95011 111.769715) (xy 155.951247 111.774761) (xy 155.951248 111.774767) (xy 155.966597 111.842872) (xy 155.999222 111.987639) (xy 156.022028 112.043803) (xy 156.032243 112.068961) (xy 156.0415 112.116365) (xy 156.0415 112.726522) (xy 156.021498 112.794643) (xy 156.004595 112.815617) (xy 153.515617 115.304595) (xy 153.453305 115.338621) (xy 153.426522 115.3415) (xy 148.091396 115.3415) (xy 148.074949 115.340422) (xy 148.07427 115.340333) (xy 148.052914 115.337521) (xy 148.047314 115.337785) (xy 148.047313 115.337785) (xy 147.971504 115.34136) (xy 147.965569 115.3415) (xy 147.943001 115.3415) (xy 147.940218 115.341748) (xy 147.940204 115.341749) (xy 147.917023 115.343818) (xy 147.91176 115.344177) (xy 147.882342 115.345564) (xy 147.828512 115.348103) (xy 147.811023 115.352108) (xy 147.794104 115.354788) (xy 147.789618 115.355189) (xy 147.776238 115.356383) (xy 147.77083 115.357862) (xy 147.770827 115.357863) (xy 147.69587 115.378369) (xy 147.690752 115.379655) (xy 147.633946 115.392666) (xy 147.60953 115.398258) (xy 147.593037 115.405293) (xy 147.576855 115.410928) (xy 147.564967 115.41418) (xy 147.564958 115.414183) (xy 147.559549 115.415663) (xy 147.554486 115.418078) (xy 147.554475 115.418082) (xy 147.484343 115.451534) (xy 147.479542 115.453702) (xy 147.402892 115.486396) (xy 147.398204 115.489475) (xy 147.398203 115.489476) (xy 147.3879 115.496244) (xy 147.372971 115.504656) (xy 147.356782 115.512378) (xy 147.297362 115.555076) (xy 147.289122 115.560997) (xy 147.284771 115.563987) (xy 147.218992 115.607195) (xy 147.218987 115.607199) (xy 147.215126 115.609735) (xy 147.201858 115.621556) (xy 147.194346 115.628249) (xy 147.184055 115.636494) (xy 147.178907 115.640193) (xy 147.178903 115.640197) (xy 147.174346 115.643471) (xy 147.170439 115.647503) (xy 147.099968 115.720223) (xy 147.098579 115.721633) (xy 142.598595 120.221617) (xy 142.536283 120.255643) (xy 142.465468 120.250578) (xy 142.408632 120.208031) (xy 142.383821 120.141511) (xy 142.3835 120.132522) (xy 142.3835 118.901866) (xy 142.376745 118.839684) (xy 142.325615 118.703295) (xy 142.238261 118.586739) (xy 142.121705 118.499385) (xy 141.985316 118.448255) (xy 141.923134 118.4415) (xy 141.144925 118.4415) (xy 141.076804 118.421498) (xy 141.05583 118.404595) (xy 138.295405 115.644171) (xy 138.261379 115.581859) (xy 138.2585 115.555076) (xy 138.2585 112.75) (xy 140.336496 112.75) (xy 140.337186 112.756565) (xy 140.343393 112.815617) (xy 140.356458 112.939928) (xy 140.415473 113.121556) (xy 140.51096 113.286944) (xy 140.638747 113.428866) (xy 140.667497 113.449754) (xy 140.780711 113.532009) (xy 140.793248 113.541118) (xy 140.799276 113.543802) (xy 140.799278 113.543803) (xy 140.961681 113.616109) (xy 140.967712 113.618794) (xy 141.061112 113.638647) (xy 141.148056 113.657128) (xy 141.148061 113.657128) (xy 141.154513 113.6585) (xy 141.245761 113.6585) (xy 141.313882 113.678502) (xy 141.334856 113.695405) (xy 141.760685 114.121234) (xy 141.771552 114.133625) (xy 141.791013 114.158987) (xy 141.797563 114.164013) (xy 141.822925 114.183474) (xy 141.822928 114.183477) (xy 141.878319 114.22598) (xy 141.918124 114.256524) (xy 141.979438 114.281921) (xy 142.05852 114.314678) (xy 142.058523 114.314679) (xy 142.06615 114.317838) (xy 142.185115 114.3335) (xy 142.18512 114.3335) (xy 142.185129 114.333501) (xy 142.216812 114.337672) (xy 142.225 114.33875) (xy 142.256693 114.334578) (xy 142.273136 114.3335) (xy 147.426864 114.3335) (xy 147.443307 114.334578) (xy 147.475 114.33875) (xy 147.483189 114.337672) (xy 147.514874 114.333501) (xy 147.514884 114.3335) (xy 147.514885 114.3335) (xy 147.514901 114.333498) (xy 147.614457 114.320391) (xy 147.625664 114.318916) (xy 147.625666 114.318915) (xy 147.633851 114.317838) (xy 147.781876 114.256524) (xy 147.821682 114.22598) (xy 147.877072 114.183477) (xy 147.877075 114.183474) (xy 147.894474 114.170123) (xy 147.908987 114.158987) (xy 147.914667 114.151585) (xy 147.928452 114.133621) (xy 147.939319 114.12123) (xy 148.365144 113.695405) (xy 148.427456 113.661379) (xy 148.454239 113.6585) (xy 148.545487 113.6585) (xy 148.551939 113.657128) (xy 148.551944 113.657128) (xy 148.638888 113.638647) (xy 148.732288 113.618794) (xy 148.738319 113.616109) (xy 148.900722 113.543803) (xy 148.900724 113.543802) (xy 148.906752 113.541118) (xy 148.91929 113.532009) (xy 149.032503 113.449754) (xy 149.061253 113.428866) (xy 149.18904 113.286944) (xy 149.284527 113.121556) (xy 149.343542 112.939928) (xy 149.356608 112.815617) (xy 149.362814 112.756565) (xy 149.363504 112.75) (xy 149.347815 112.600727) (xy 149.344232 112.566635) (xy 149.344232 112.566633) (xy 149.343542 112.560072) (xy 149.284527 112.378444) (xy 149.28 112.370602) (xy 149.236768 112.295724) (xy 149.18904 112.213056) (xy 149.061253 112.071134) (xy 148.948229 111.989017) (xy 148.912094 111.962763) (xy 148.912093 111.962762) (xy 148.906752 111.958882) (xy 148.900724 111.956198) (xy 148.900722 111.956197) (xy 148.738319 111.883891) (xy 148.738318 111.883891) (xy 148.732288 111.881206) (xy 148.638888 111.861353) (xy 148.551944 111.842872) (xy 148.551939 111.842872) (xy 148.545487 111.8415) (xy 148.354513 111.8415) (xy 148.348061 111.842872) (xy 148.348056 111.842872) (xy 148.261113 111.861353) (xy 148.167712 111.881206) (xy 148.161682 111.883891) (xy 148.161681 111.883891) (xy 147.999278 111.956197) (xy 147.999276 111.956198) (xy 147.993248 111.958882) (xy 147.987907 111.962762) (xy 147.987906 111.962763) (xy 147.951771 111.989017) (xy 147.838747 112.071134) (xy 147.71096 112.213056) (xy 147.663232 112.295724) (xy 147.620001 112.370602) (xy 147.615473 112.378444) (xy 147.556458 112.560072) (xy 147.555768 112.566633) (xy 147.555768 112.566635) (xy 147.552185 112.600727) (xy 147.536496 112.75) (xy 147.536684 112.751786) (xy 147.517184 112.818196) (xy 147.500281 112.83917) (xy 147.259856 113.079595) (xy 147.197544 113.113621) (xy 147.170761 113.1165) (xy 142.529239 113.1165) (xy 142.461118 113.096498) (xy 142.440144 113.079595) (xy 142.199719 112.83917) (xy 142.165693 112.776858) (xy 142.163159 112.753284) (xy 142.163504 112.75) (xy 142.147815 112.600727) (xy 142.144232 112.566635) (xy 142.144232 112.566633) (xy 142.143542 112.560072) (xy 142.084527 112.378444) (xy 142.08 112.370602) (xy 142.036768 112.295724) (xy 141.98904 112.213056) (xy 141.861253 112.071134) (xy 141.748229 111.989017) (xy 141.712094 111.962763) (xy 141.712093 111.962762) (xy 141.706752 111.958882) (xy 141.700724 111.956198) (xy 141.700722 111.956197) (xy 141.538319 111.883891) (xy 141.538318 111.883891) (xy 141.532288 111.881206) (xy 141.438888 111.861353) (xy 141.351944 111.842872) (xy 141.351939 111.842872) (xy 141.345487 111.8415) (xy 141.154513 111.8415) (xy 141.148061 111.842872) (xy 141.148056 111.842872) (xy 141.061113 111.861353) (xy 140.967712 111.881206) (xy 140.961682 111.883891) (xy 140.961681 111.883891) (xy 140.799278 111.956197) (xy 140.799276 111.956198) (xy 140.793248 111.958882) (xy 140.787907 111.962762) (xy 140.787906 111.962763) (xy 140.751771 111.989017) (xy 140.638747 112.071134) (xy 140.51096 112.213056) (xy 140.463232 112.295724) (xy 140.420001 112.370602) (xy 140.415473 112.378444) (xy 140.356458 112.560072) (xy 140.355768 112.566633) (xy 140.355768 112.566635) (xy 140.352185 112.600727) (xy 140.336496 112.75) (xy 138.2585 112.75) (xy 138.2585 87.25) (xy 138.586496 87.25) (xy 138.587186 87.256565) (xy 138.603011 87.407128) (xy 138.606458 87.439928) (xy 138.665473 87.621556) (xy 138.668776 87.627278) (xy 138.668777 87.627279) (xy 138.686803 87.6585) (xy 138.76096 87.786944) (xy 138.765378 87.791851) (xy 138.765379 87.791852) (xy 138.883161 87.922662) (xy 138.888747 87.928866) (xy 138.977618 87.993435) (xy 139.031428 88.03253) (xy 139.043248 88.041118) (xy 139.049276 88.043802) (xy 139.049278 88.043803) (xy 139.088135 88.061103) (xy 139.217712 88.118794) (xy 139.29268 88.134729) (xy 139.398056 88.157128) (xy 139.398061 88.157128) (xy 139.404513 88.1585) (xy 139.595487 88.1585) (xy 139.601939 88.157128) (xy 139.601944 88.157128) (xy 139.70732 88.134729) (xy 139.782288 88.118794) (xy 139.911865 88.061103) (xy 139.950722 88.043803) (xy 139.950724 88.043802) (xy 139.956752 88.041118) (xy 139.968573 88.03253) (xy 140.022382 87.993435) (xy 140.05955 87.966431) (xy 140.126416 87.942573) (xy 140.195568 87.958653) (xy 140.242729 88.005367) (xy 140.26096 88.036944) (xy 140.265378 88.041851) (xy 140.265379 88.041852) (xy 140.364344 88.151764) (xy 140.388747 88.178866) (xy 140.472048 88.239388) (xy 140.53258 88.283367) (xy 140.543248 88.291118) (xy 140.549276 88.293802) (xy 140.549278 88.293803) (xy 140.60056 88.316635) (xy 140.717712 88.368794) (xy 140.811113 88.388647) (xy 140.898056 88.407128) (xy 140.898061 88.407128) (xy 140.904513 88.4085) (xy 141.095487 88.4085) (xy 141.101939 88.407128) (xy 141.101944 88.407128) (xy 141.188887 88.388647) (xy 141.282288 88.368794) (xy 141.39944 88.316635) (xy 141.450722 88.293803) (xy 141.450724 88.293802) (xy 141.456752 88.291118) (xy 141.467421 88.283367) (xy 141.527952 88.239388) (xy 141.611253 88.178866) (xy 141.635656 88.151764) (xy 141.734621 88.041852) (xy 141.734622 88.041851) (xy 141.73904 88.036944) (xy 141.834527 87.871556) (xy 141.893542 87.689928) (xy 141.894495 87.680866) (xy 141.912814 87.506565) (xy 141.913504 87.5) (xy 141.90719 87.439928) (xy 141.894232 87.316635) (xy 141.894232 87.316633) (xy 141.893542 87.310072) (xy 141.834527 87.128444) (xy 141.73904 86.963056) (xy 141.723868 86.946206) (xy 141.640864 86.85402) (xy 141.610146 86.790013) (xy 141.6085 86.76971) (xy 141.6085 80.304239) (xy 141.628502 80.236118) (xy 141.645405 80.215144) (xy 142.146234 79.714315) (xy 142.158625 79.703448) (xy 142.177437 79.689013) (xy 142.183987 79.683987) (xy 142.208474 79.652075) (xy 142.20848 79.652069) (xy 142.276496 79.563429) (xy 142.276497 79.563427) (xy 142.281524 79.556876) (xy 142.329965 79.439928) (xy 142.342838 79.40885) (xy 142.3585 79.289885) (xy 142.3585 79.289878) (xy 142.36375 79.25) (xy 142.359578 79.218307) (xy 142.3585 79.201864) (xy 142.3585 77.98029) (xy 142.378502 77.912169) (xy 142.390864 77.89598) (xy 142.484621 77.791852) (xy 142.484622 77.791851) (xy 142.48904 77.786944) (xy 142.561686 77.661118) (xy 142.581223 77.627279) (xy 142.581224 77.627278) (xy 142.584527 77.621556) (xy 142.643542 77.439928) (xy 142.644604 77.42983) (xy 142.662814 77.256565) (xy 142.663504 77.25) (xy 142.644892 77.072914) (xy 142.644232 77.066635) (xy 142.644232 77.066633) (xy 142.643542 77.060072) (xy 142.584527 76.878444) (xy 142.571637 76.856117) (xy 142.542719 76.806031) (xy 142.48904 76.713056) (xy 142.475304 76.6978) (xy 142.365675 76.576045) (xy 142.365674 76.576044) (xy 142.361253 76.571134) (xy 142.252098 76.491828) (xy 142.212094 76.462763) (xy 142.212093 76.462762) (xy 142.206752 76.458882) (xy 142.200724 76.456198) (xy 142.200722 76.456197) (xy 142.038319 76.383891) (xy 142.038318 76.383891) (xy 142.032288 76.381206) (xy 141.929878 76.359438) (xy 141.851944 76.342872) (xy 141.851939 76.342872) (xy 141.845487 76.3415) (xy 141.654513 76.3415) (xy 141.648061 76.342872) (xy 141.648056 76.342872) (xy 141.570122 76.359438) (xy 141.467712 76.381206) (xy 141.461682 76.383891) (xy 141.461681 76.383891) (xy 141.299278 76.456197) (xy 141.299276 76.456198) (xy 141.293248 76.458882) (xy 141.287907 76.462762) (xy 141.287906 76.462763) (xy 141.247902 76.491828) (xy 141.138747 76.571134) (xy 141.134326 76.576044) (xy 141.134325 76.576045) (xy 141.024697 76.6978) (xy 141.01096 76.713056) (xy 140.957281 76.806031) (xy 140.928364 76.856117) (xy 140.915473 76.878444) (xy 140.856458 77.060072) (xy 140.855768 77.066633) (xy 140.855768 77.066635) (xy 140.855108 77.072914) (xy 140.836496 77.25) (xy 140.837186 77.256565) (xy 140.855397 77.42983) (xy 140.856458 77.439928) (xy 140.915473 77.621556) (xy 140.918776 77.627278) (xy 140.918777 77.627279) (xy 140.938314 77.661118) (xy 141.01096 77.786944) (xy 141.015378 77.791851) (xy 141.015379 77.791852) (xy 141.109136 77.89598) (xy 141.139854 77.959987) (xy 141.1415 77.98029) (xy 141.1415 78.945761) (xy 141.121498 79.013882) (xy 141.104595 79.034856) (xy 140.603766 79.535685) (xy 140.591375 79.546552) (xy 140.566013 79.566013) (xy 140.541526 79.597925) (xy 140.541523 79.597928) (xy 140.541517 79.597936) (xy 140.487593 79.668211) (xy 140.468476 79.693124) (xy 140.40864 79.837581) (xy 140.407162 79.84115) (xy 140.3915 79.960115) (xy 140.3915 79.96012) (xy 140.38625 80) (xy 140.387328 80.008188) (xy 140.390422 80.03169) (xy 140.3915 80.048136) (xy 140.3915 86.554139) (xy 140.371498 86.62226) (xy 140.317842 86.668753) (xy 140.247568 86.678857) (xy 140.182988 86.649363) (xy 140.171864 86.638449) (xy 140.140864 86.60402) (xy 140.110146 86.540013) (xy 140.1085 86.51971) (xy 140.1085 72.73029) (xy 140.128502 72.662169) (xy 140.140864 72.64598) (xy 140.234621 72.541852) (xy 140.234622 72.541851) (xy 140.23904 72.536944) (xy 140.297314 72.43601) (xy 140.331223 72.377279) (xy 140.331224 72.377278) (xy 140.334527 72.371556) (xy 140.393542 72.189928) (xy 140.396604 72.160801) (xy 140.412814 72.006565) (xy 140.413504 72) (xy 140.393542 71.810072) (xy 140.334527 71.628444) (xy 140.23904 71.463056) (xy 140.111253 71.321134) (xy 139.956752 71.208882) (xy 139.950724 71.206198) (xy 139.950722 71.206197) (xy 139.788319 71.133891) (xy 139.788318 71.133891) (xy 139.782288 71.131206) (xy 139.667082 71.106718) (xy 139.601944 71.092872) (xy 139.601939 71.092872) (xy 139.595487 71.0915) (xy 139.404513 71.0915) (xy 139.398061 71.092872) (xy 139.398056 71.092872) (xy 139.332918 71.106718) (xy 139.217712 71.131206) (xy 139.211682 71.133891) (xy 139.211681 71.133891) (xy 139.049278 71.206197) (xy 139.049276 71.206198) (xy 139.043248 71.208882) (xy 138.888747 71.321134) (xy 138.76096 71.463056) (xy 138.665473 71.628444) (xy 138.606458 71.810072) (xy 138.586496 72) (xy 138.587186 72.006565) (xy 138.603397 72.160801) (xy 138.606458 72.189928) (xy 138.665473 72.371556) (xy 138.668776 72.377278) (xy 138.668777 72.377279) (xy 138.702686 72.43601) (xy 138.76096 72.536944) (xy 138.765378 72.541851) (xy 138.765379 72.541852) (xy 138.859136 72.64598) (xy 138.889854 72.709987) (xy 138.8915 72.73029) (xy 138.8915 86.51971) (xy 138.871498 86.587831) (xy 138.859136 86.60402) (xy 138.76847 86.704715) (xy 138.76096 86.713056) (xy 138.665473 86.878444) (xy 138.606458 87.060072) (xy 138.605768 87.066633) (xy 138.605768 87.066635) (xy 138.59281 87.189928) (xy 138.586496 87.25) (xy 138.2585 87.25) (xy 138.2585 70.919925) (xy 138.278502 70.851804) (xy 138.295405 70.83083) (xy 140.74389 68.382344) (xy 140.754033 68.373242) (xy 140.778729 68.353386) (xy 140.783536 68.349521) (xy 140.815803 68.311067) (xy 140.818983 68.30742) (xy 140.820626 68.305608) (xy 140.82282 68.303414) (xy 140.850153 68.27014) (xy 140.850859 68.269289) (xy 140.855918 68.263261) (xy 140.910665 68.198015) (xy 140.913233 68.193345) (xy 140.916614 68.189228) (xy 140.960526 68.107331) (xy 140.961135 68.106209) (xy 140.969222 68.0915) (xy 140.982386 68.067554) (xy 141.002977 68.0301) (xy 141.002979 68.030095) (xy 141.005944 68.024702) (xy 141.007555 68.019624) (xy 141.010074 68.014926) (xy 141.037264 67.925991) (xy 141.037647 67.924761) (xy 141.045818 67.899005) (xy 141.065746 67.836183) (xy 141.066339 67.830892) (xy 141.067899 67.825791) (xy 141.077306 67.733178) (xy 141.07743 67.732024) (xy 141.083011 67.682262) (xy 141.083011 67.678733) (xy 141.083066 67.67775) (xy 141.083515 67.672045) (xy 141.087263 67.635153) (xy 141.087263 67.63515) (xy 141.087885 67.629026) (xy 141.08357 67.583377) (xy 141.083011 67.57152) (xy 141.083011 60.970397) (xy 141.103013 60.902276) (xy 141.156669 60.855783) (xy 141.226943 60.845679) (xy 141.291523 60.875173) (xy 141.309837 60.894832) (xy 141.366715 60.970724) (xy 141.379276 60.983285) (xy 141.481351 61.059786) (xy 141.496946 61.068324) (xy 141.617394 61.113478) (xy 141.632649 61.117105) (xy 141.683514 61.122631) (xy 141.690328 61.123) (xy 142.327885 61.123) (xy 142.343124 61.118525) (xy 142.344329 61.117135) (xy 142.346 61.109452) (xy 142.346 61.104884) (xy 142.854 61.104884) (xy 142.858475 61.120123) (xy 142.859865 61.121328) (xy 142.867548 61.122999) (xy 143.509669 61.122999) (xy 143.51649 61.122629) (xy 143.567352 61.117105) (xy 143.582604 61.113479) (xy 143.703054 61.068324) (xy 143.718649 61.059786) (xy 143.820724 60.983285) (xy 143.833285 60.970724) (xy 143.909786 60.868649) (xy 143.918324 60.853054) (xy 143.963478 60.732606) (xy 143.967105 60.717351) (xy 143.972631 60.666486) (xy 143.973 60.659672) (xy 143.973 59.872115) (xy 143.968525 59.856876) (xy 143.967135 59.855671) (xy 143.959452 59.854) (xy 142.872115 59.854) (xy 142.856876 59.858475) (xy 142.855671 59.859865) (xy 142.854 59.867548) (xy 142.854 61.104884) (xy 142.346 61.104884) (xy 142.346 59.327885) (xy 142.854 59.327885) (xy 142.858475 59.343124) (xy 142.859865 59.344329) (xy 142.867548 59.346) (xy 143.954884 59.346) (xy 143.970123 59.341525) (xy 143.971328 59.340135) (xy 143.972999 59.332452) (xy 143.972999 58.540331) (xy 143.972629 58.53351) (xy 143.967105 58.482648) (xy 143.963479 58.467396) (xy 143.918324 58.346946) (xy 143.909786 58.331351) (xy 143.833285 58.229276) (xy 143.820724 58.216715) (xy 143.718649 58.140214) (xy 143.703054 58.131676) (xy 143.582606 58.086522) (xy 143.567351 58.082895) (xy 143.516486 58.077369) (xy 143.509672 58.077) (xy 142.872115 58.077) (xy 142.856876 58.081475) (xy 142.855671 58.082865) (xy 142.854 58.090548) (xy 142.854 59.327885) (xy 142.346 59.327885) (xy 142.346 58.095116) (xy 142.341525 58.079877) (xy 142.340135 58.078672) (xy 142.332452 58.077001) (xy 141.690331 58.077001) (xy 141.68351 58.077371) (xy 141.632648 58.082895) (xy 141.617396 58.086521) (xy 141.496946 58.131676) (xy 141.481351 58.140214) (xy 141.379276 58.216715) (xy 141.366715 58.229276) (xy 141.290214 58.331351) (xy 141.281676 58.346946) (xy 141.246202 58.441572) (xy 141.20356 58.498336) (xy 141.136999 58.523036) (xy 141.06765 58.507828) (xy 141.03705 58.484313) (xy 140.977084 58.421452) (xy 140.977079 58.421447) (xy 140.973399 58.41759) (xy 140.786391 58.278452) (xy 140.78164 58.276036) (xy 140.781636 58.276034) (xy 140.658311 58.213333) (xy 140.578612 58.172812) (xy 140.356005 58.10369) (xy 140.295684 58.095695) (xy 140.130219 58.073764) (xy 140.130215 58.073764) (xy 140.124935 58.073064) (xy 140.119606 58.073264) (xy 140.119605 58.073264) (xy 140.024876 58.076821) (xy 139.892007 58.081809) (xy 139.663883 58.129674) (xy 139.658924 58.131632) (xy 139.658922 58.131633) (xy 139.595328 58.156748) (xy 139.447086 58.215292) (xy 139.347449 58.275753) (xy 139.252374 58.333445) (xy 139.252371 58.333447) (xy 139.247813 58.336213) (xy 139.243785 58.339708) (xy 139.243784 58.339709) (xy 139.077144 58.484313) (xy 139.071763 58.488982) (xy 139.05631 58.507828) (xy 138.927354 58.6651) (xy 138.92735 58.665106) (xy 138.92397 58.669228) (xy 138.89978 58.711725) (xy 138.899055 58.712998) (xy 138.847973 58.762304) (xy 138.778343 58.776166) (xy 138.712272 58.750183) (xy 138.685033 58.721033) (xy 138.683303 58.718462) (xy 138.605627 58.603086) (xy 138.597271 58.590674) (xy 138.597269 58.590672) (xy 138.594291 58.586248) (xy 138.433399 58.41759) (xy 138.246391 58.278452) (xy 138.24164 58.276036) (xy 138.241636 58.276034) (xy 138.118311 58.213333) (xy 138.038612 58.172812) (xy 137.816005 58.10369) (xy 137.755684 58.095695) (xy 137.590219 58.073764) (xy 137.590215 58.073764) (xy 137.584935 58.073064) (xy 137.579606 58.073264) (xy 137.579605 58.073264) (xy 137.484876 58.076821) (xy 137.352007 58.081809) (xy 137.123883 58.129674) (xy 137.118924 58.131632) (xy 137.118922 58.131633) (xy 137.055328 58.156748) (xy 136.907086 58.215292) (xy 136.807449 58.275753) (xy 136.712374 58.333445) (xy 136.712371 58.333447) (xy 136.707813 58.336213) (xy 136.703785 58.339708) (xy 136.703784 58.339709) (xy 136.537144 58.484313) (xy 136.531763 58.488982) (xy 136.51631 58.507828) (xy 136.387354 58.6651) (xy 136.38735 58.665106) (xy 136.38397 58.669228) (xy 136.35978 58.711725) (xy 136.359055 58.712998) (xy 136.307973 58.762304) (xy 136.238343 58.776166) (xy 136.172272 58.750183) (xy 136.145033 58.721033) (xy 136.143303 58.718462) (xy 136.065627 58.603086) (xy 136.057271 58.590674) (xy 136.057269 58.590672) (xy 136.054291 58.586248) (xy 135.893399 58.41759) (xy 135.706391 58.278452) (xy 135.70164 58.276036) (xy 135.701636 58.276034) (xy 135.578311 58.213333) (xy 135.498612 58.172812) (xy 135.276005 58.10369) (xy 135.215684 58.095695) (xy 135.050219 58.073764) (xy 135.050215 58.073764) (xy 135.044935 58.073064) (xy 135.039606 58.073264) (xy 135.039605 58.073264) (xy 134.944876 58.076821) (xy 134.812007 58.081809) (xy 134.583883 58.129674) (xy 134.578924 58.131632) (xy 134.578922 58.131633) (xy 134.515328 58.156748) (xy 134.367086 58.215292) (xy 134.267449 58.275753) (xy 134.172374 58.333445) (xy 134.172371 58.333447) (xy 134.167813 58.336213) (xy 134.163785 58.339708) (xy 134.163784 58.339709) (xy 133.997144 58.484313) (xy 133.991763 58.488982) (xy 133.97631 58.507828) (xy 133.847354 58.6651) (xy 133.84735 58.665106) (xy 133.84397 58.669228) (xy 133.72866 58.8718) (xy 133.726839 58.876816) (xy 133.726837 58.876821) (xy 133.662796 59.05325) (xy 133.649129 59.090903) (xy 133.64818 59.096152) (xy 133.648179 59.096155) (xy 133.60839 59.316191) (xy 133.608389 59.316198) (xy 133.607652 59.320275) (xy 133.6065 59.344702) (xy 133.6065 59.808527) (xy 133.621241 59.982257) (xy 133.622581 59.987421) (xy 133.622582 59.987425) (xy 133.676636 60.195681) (xy 133.6798 60.207873) (xy 133.681992 60.212739) (xy 133.766167 60.3996) (xy 133.775535 60.420397) (xy 133.905709 60.613752) (xy 133.909388 60.617609) (xy 133.90939 60.617611) (xy 133.951181 60.661419) (xy 134.066601 60.78241) (xy 134.253609 60.921548) (xy 134.25836 60.923964) (xy 134.258364 60.923966) (xy 134.311216 60.950837) (xy 134.461388 61.027188) (xy 134.683995 61.09631) (xy 134.689284 61.097011) (xy 134.909781 61.126236) (xy 134.909785 61.126236) (xy 134.915065 61.126936) (xy 134.920394 61.126736) (xy 134.920395 61.126736) (xy 135.015124 61.123179) (xy 135.147993 61.118191) (xy 135.376117 61.070326) (xy 135.381076 61.068368) (xy 135.381078 61.068367) (xy 135.54081 61.005285) (xy 135.592914 60.984708) (xy 135.741026 60.894832) (xy 135.787626 60.866555) (xy 135.787629 60.866553) (xy 135.792187 60.863787) (xy 135.877244 60.789978) (xy 135.964204 60.714518) (xy 135.964206 60.714516) (xy 135.968237 60.711018) (xy 136.041415 60.621771) (xy 136.112646 60.5349) (xy 136.11265 60.534894) (xy 136.11603 60.530772) (xy 136.140945 60.487002) (xy 136.192027 60.437696) (xy 136.261657 60.423834) (xy 136.327728 60.449817) (xy 136.354965 60.478965) (xy 136.374604 60.508135) (xy 136.442729 60.609325) (xy 136.445709 60.613752) (xy 136.449388 60.617609) (xy 136.44939 60.617611) (xy 136.491181 60.661419) (xy 136.606601 60.78241) (xy 136.715776 60.863638) (xy 136.758488 60.920347) (xy 136.763761 60.991147) (xy 136.737646 61.045042) (xy 136.638217 61.16523) (xy 136.635288 61.170647) (xy 136.635286 61.17065) (xy 136.542416 61.34241) (xy 136.542414 61.342415) (xy 136.539486 61.34783) (xy 136.478102 61.546129) (xy 136.477458 61.552254) (xy 136.477458 61.552255) (xy 136.457071 61.746233) (xy 136.456404 61.752575) (xy 136.471441 61.9178) (xy 136.472512 61.929569) (xy 136.458767 61.999222) (xy 136.409546 62.050387) (xy 136.347031 62.066989) (xy 135.472655 62.066989) (xy 135.456209 62.065911) (xy 135.432699 62.062816) (xy 135.424511 62.061738) (xy 135.416323 62.062816) (xy 135.288912 62.07959) (xy 135.265661 62.082651) (xy 135.258034 62.08581) (xy 135.258031 62.085811) (xy 135.20889 62.106166) (xy 135.117635 62.143965) (xy 135.093075 62.162811) (xy 135.022448 62.217004) (xy 135.022432 62.217018) (xy 134.997077 62.236473) (xy 134.997074 62.236476) (xy 134.990524 62.241502) (xy 134.985494 62.248057) (xy 134.971059 62.266868) (xy 134.960192 62.279259) (xy 134.803766 62.435685) (xy 134.791375 62.446552) (xy 134.766013 62.466013) (xy 134.741526 62.497925) (xy 134.741523 62.497928) (xy 134.727455 62.516262) (xy 134.680594 62.577332) (xy 134.668476 62.593124) (xy 134.647229 62.644419) (xy 134.633142 62.678428) (xy 134.597491 62.723658) (xy 134.598999 62.725332) (xy 134.59409 62.729752) (xy 134.588747 62.733634) (xy 134.584326 62.738544) (xy 134.584325 62.738545) (xy 134.467067 62.868774) (xy 134.46096 62.875556) (xy 134.365473 63.040944) (xy 134.306458 63.222572) (xy 134.305768 63.229133) (xy 134.305768 63.229135) (xy 134.295948 63.322572) (xy 134.286496 63.4125) (xy 134.306458 63.602428) (xy 134.365473 63.784056) (xy 134.46096 63.949444) (xy 134.465378 63.954351) (xy 134.465379 63.954352) (xy 134.550926 64.049362) (xy 134.588747 64.091366) (xy 134.687792 64.163327) (xy 134.732883 64.196087) (xy 134.743248 64.203618) (xy 134.749276 64.206302) (xy 134.749278 64.206303) (xy 134.889636 64.268794) (xy 134.917712 64.281294) (xy 135.004479 64.299737) (xy 135.098056 64.319628) (xy 135.098061 64.319628) (xy 135.104513 64.321) (xy 135.295487 64.321) (xy 135.301939 64.319628) (xy 135.301944 64.319628) (xy 135.395521 64.299737) (xy 135.482288 64.281294) (xy 135.510364 64.268794) (xy 135.650722 64.206303) (xy 135.650724 64.206302) (xy 135.656752 64.203618) (xy 135.667118 64.196087) (xy 135.712208 64.163327) (xy 135.811253 64.091366) (xy 135.849074 64.049362) (xy 135.934621 63.954352) (xy 135.934622 63.954351) (xy 135.93904 63.949444) (xy 136.034527 63.784056) (xy 136.093542 63.602428) (xy 136.113504 63.4125) (xy 136.113128 63.40892) (xy 136.132816 63.341868) (xy 136.186472 63.295375) (xy 136.238814 63.283989) (xy 138.940011 63.283989) (xy 139.008132 63.303991) (xy 139.054625 63.357647) (xy 139.066011 63.409989) (xy 139.066011 67.155565) (xy 139.046009 67.223686) (xy 139.029106 67.24466) (xy 136.580621 69.693145) (xy 136.570478 69.702247) (xy 136.540975 69.725968) (xy 136.512672 69.759698) (xy 136.508709 69.764421) (xy 136.505528 69.768069) (xy 136.503885 69.769881) (xy 136.501691 69.772075) (xy 136.474358 69.805349) (xy 136.473696 69.806147) (xy 136.413846 69.877474) (xy 136.411278 69.882144) (xy 136.407897 69.886261) (xy 136.396381 69.907739) (xy 136.364023 69.968086) (xy 136.363394 69.969245) (xy 136.321538 70.045381) (xy 136.321535 70.045389) (xy 136.318567 70.050787) (xy 136.316955 70.055869) (xy 136.314438 70.060563) (xy 136.287238 70.149531) (xy 136.286918 70.150559) (xy 136.258765 70.239306) (xy 136.258171 70.244602) (xy 136.256613 70.249698) (xy 136.247356 70.34083) (xy 136.247218 70.342187) (xy 136.247089 70.343393) (xy 136.2415 70.393227) (xy 136.2415 70.396754) (xy 136.241445 70.397739) (xy 136.240998 70.403419) (xy 136.236626 70.446462) (xy 136.238474 70.466013) (xy 136.240941 70.492109) (xy 136.2415 70.503967) (xy 136.2415 115.963157) (xy 136.240763 115.976764) (xy 136.236676 116.014388) (xy 136.237213 116.020523) (xy 136.24105 116.064388) (xy 136.241379 116.069214) (xy 136.2415 116.071686) (xy 136.2415 116.074769) (xy 136.241801 116.077837) (xy 136.24569 116.117506) (xy 136.24581 116.118794) (xy 136.253913 116.211413) (xy 136.2554 116.216532) (xy 136.25592 116.221833) (xy 136.282791 116.310834) (xy 136.283126 116.311967) (xy 136.294748 116.351967) (xy 136.309091 116.401336) (xy 136.311544 116.406068) (xy 136.313084 116.411169) (xy 136.315978 116.416612) (xy 136.356731 116.49326) (xy 136.357343 116.494426) (xy 136.400108 116.576926) (xy 136.403431 116.581089) (xy 136.405934 116.585796) (xy 136.464755 116.657918) (xy 136.465446 116.658774) (xy 136.496738 116.697973) (xy 136.499242 116.700477) (xy 136.499884 116.701195) (xy 136.503585 116.705528) (xy 136.530935 116.739062) (xy 136.535682 116.742989) (xy 136.535684 116.742991) (xy 136.566262 116.768287) (xy 136.575042 116.776277) (xy 137.414138 117.615372) (xy 138.102087 118.303321) (xy 138.136112 118.365633) (xy 138.131048 118.436448) (xy 138.088501 118.493284) (xy 138.052138 118.512181) (xy 138.023866 118.521422) (xy 137.956756 118.543357) (xy 137.929868 118.557354) (xy 137.763867 118.643769) (xy 137.758607 118.646507) (xy 137.754474 118.64961) (xy 137.754471 118.649612) (xy 137.5841 118.77753) (xy 137.579965 118.780635) (xy 137.5754 118.785412) (xy 137.434208 118.933161) (xy 137.425629 118.942138) (xy 137.318201 119.099621) (xy 137.263293 119.144621) (xy 137.192768 119.152792) (xy 137.129021 119.121538) (xy 137.108324 119.097054) (xy 137.027822 118.972617) (xy 137.02782 118.972614) (xy 137.025014 118.968277) (xy 136.87467 118.803051) (xy 136.870619 118.799852) (xy 136.870615 118.799848) (xy 136.703414 118.6678) (xy 136.70341 118.667798) (xy 136.699359 118.664598) (xy 136.673399 118.650267) (xy 136.633665 118.628333) (xy 136.503789 118.556638) (xy 136.49892 118.554914) (xy 136.498916 118.554912) (xy 136.298087 118.483795) (xy 136.298083 118.483794) (xy 136.293212 118.482069) (xy 136.288119 118.481162) (xy 136.288116 118.481161) (xy 136.078373 118.4438) (xy 136.078367 118.443799) (xy 136.073284 118.442894) (xy 135.999452 118.441992) (xy 135.855081 118.440228) (xy 135.855079 118.440228) (xy 135.849911 118.440165) (xy 135.629091 118.473955) (xy 135.416756 118.543357) (xy 135.389868 118.557354) (xy 135.223867 118.643769) (xy 135.218607 118.646507) (xy 135.214474 118.64961) (xy 135.214471 118.649612) (xy 135.0441 118.77753) (xy 135.039965 118.780635) (xy 135.0354 118.785412) (xy 134.894208 118.933161) (xy 134.885629 118.942138) (xy 134.88272 118.946403) (xy 134.882714 118.946411) (xy 134.819496 119.039085) (xy 134.759743 119.12668) (xy 134.717535 119.217611) (xy 134.700889 119.253471) (xy 134.675696 119.289516) (xy 133.010617 120.954595) (xy 132.948305 120.988621) (xy 132.921522 120.9915) (xy 131.221876 120.9915) (xy 131.153755 120.971498) (xy 131.107262 120.917842) (xy 131.097158 120.847568) (xy 131.103894 120.82127) (xy 131.126745 120.760316) (xy 131.1335 120.698134) (xy 131.1335 118.901866) (xy 131.126745 118.839684) (xy 131.075615 118.703295) (xy 130.988261 118.586739) (xy 130.871705 118.499385) (xy 130.735316 118.448255) (xy 130.673134 118.4415) (xy 129.894924 118.4415) (xy 129.826803 118.421498) (xy 129.805829 118.404595) (xy 127.085405 115.684171) (xy 127.051379 115.621859) (xy 127.0485 115.595076) (xy 127.0485 106.25) (xy 127.823996 106.25) (xy 127.824686 106.256565) (xy 127.843006 106.430866) (xy 127.843958 106.439928) (xy 127.902973 106.621556) (xy 127.99846 106.786944) (xy 128.002878 106.791851) (xy 128.002879 106.791852) (xy 128.114702 106.916044) (xy 128.126247 106.928866) (xy 128.18291 106.970034) (xy 128.243406 107.013987) (xy 128.280748 107.041118) (xy 128.286776 107.043802) (xy 128.286778 107.043803) (xy 128.418671 107.102525) (xy 128.455212 107.118794) (xy 128.53018 107.134729) (xy 128.635556 107.157128) (xy 128.635561 107.157128) (xy 128.642013 107.1585) (xy 128.832987 107.1585) (xy 128.839439 107.157128) (xy 128.839444 107.157128) (xy 128.94482 107.134729) (xy 129.019788 107.118794) (xy 129.056329 107.102525) (xy 129.188222 107.043803) (xy 129.188224 107.043802) (xy 129.194252 107.041118) (xy 129.231595 107.013987) (xy 129.337073 106.937352) (xy 129.348753 106.928866) (xy 129.374574 106.900189) (xy 129.43502 106.86295) (xy 129.46821 106.8585) (xy 134.26929 106.8585) (xy 134.337411 106.878502) (xy 134.362926 106.900189) (xy 134.388747 106.928866) (xy 134.400427 106.937352) (xy 134.505906 107.013987) (xy 134.543248 107.041118) (xy 134.549276 107.043802) (xy 134.549278 107.043803) (xy 134.681171 107.102525) (xy 134.717712 107.118794) (xy 134.79268 107.134729) (xy 134.898056 107.157128) (xy 134.898061 107.157128) (xy 134.904513 107.1585) (xy 135.095487 107.1585) (xy 135.101939 107.157128) (xy 135.101944 107.157128) (xy 135.20732 107.134729) (xy 135.282288 107.118794) (xy 135.318829 107.102525) (xy 135.450722 107.043803) (xy 135.450724 107.043802) (xy 135.456752 107.041118) (xy 135.494095 107.013987) (xy 135.55459 106.970034) (xy 135.611253 106.928866) (xy 135.622798 106.916044) (xy 135.734621 106.791852) (xy 135.734622 106.791851) (xy 135.73904 106.786944) (xy 135.834527 106.621556) (xy 135.893542 106.439928) (xy 135.894495 106.430866) (xy 135.912814 106.256565) (xy 135.913504 106.25) (xy 135.905978 106.178396) (xy 135.894232 106.066635) (xy 135.894232 106.066633) (xy 135.893542 106.060072) (xy 135.834527 105.878444) (xy 135.829418 105.869594) (xy 135.778367 105.781173) (xy 135.73904 105.713056) (xy 135.688672 105.657116) (xy 135.615675 105.576045) (xy 135.615674 105.576044) (xy 135.611253 105.571134) (xy 135.512157 105.499136) (xy 135.462094 105.462763) (xy 135.462093 105.462762) (xy 135.456752 105.458882) (xy 135.450724 105.456198) (xy 135.450722 105.456197) (xy 135.288319 105.383891) (xy 135.288318 105.383891) (xy 135.282288 105.381206) (xy 135.188888 105.361353) (xy 135.101944 105.342872) (xy 135.101939 105.342872) (xy 135.095487 105.3415) (xy 134.904513 105.3415) (xy 134.898061 105.342872) (xy 134.898056 105.342872) (xy 134.811112 105.361353) (xy 134.717712 105.381206) (xy 134.711682 105.383891) (xy 134.711681 105.383891) (xy 134.549278 105.456197) (xy 134.549276 105.456198) (xy 134.543248 105.458882) (xy 134.537907 105.462762) (xy 134.537906 105.462763) (xy 134.469522 105.512447) (xy 134.388747 105.571134) (xy 134.384334 105.576036) (xy 134.384332 105.576037) (xy 134.362926 105.599811) (xy 134.30248 105.63705) (xy 134.26929 105.6415) (xy 129.46821 105.6415) (xy 129.400089 105.621498) (xy 129.374574 105.599811) (xy 129.353168 105.576037) (xy 129.353166 105.576036) (xy 129.348753 105.571134) (xy 129.267978 105.512447) (xy 129.199594 105.462763) (xy 129.199593 105.462762) (xy 129.194252 105.458882) (xy 129.188224 105.456198) (xy 129.188222 105.456197) (xy 129.025819 105.383891) (xy 129.025818 105.383891) (xy 129.019788 105.381206) (xy 128.926388 105.361353) (xy 128.839444 105.342872) (xy 128.839439 105.342872) (xy 128.832987 105.3415) (xy 128.642013 105.3415) (xy 128.635561 105.342872) (xy 128.635556 105.342872) (xy 128.548612 105.361353) (xy 128.455212 105.381206) (xy 128.449182 105.383891) (xy 128.449181 105.383891) (xy 128.286778 105.456197) (xy 128.286776 105.456198) (xy 128.280748 105.458882) (xy 128.275407 105.462762) (xy 128.275406 105.462763) (xy 128.225343 105.499136) (xy 128.126247 105.571134) (xy 128.121826 105.576044) (xy 128.121825 105.576045) (xy 128.048829 105.657116) (xy 127.99846 105.713056) (xy 127.959133 105.781173) (xy 127.908083 105.869594) (xy 127.902973 105.878444) (xy 127.843958 106.060072) (xy 127.843268 106.066633) (xy 127.843268 106.066635) (xy 127.831522 106.178396) (xy 127.823996 106.25) (xy 127.0485 106.25) (xy 127.0485 76.474052) (xy 127.068502 76.405931) (xy 127.122158 76.359438) (xy 127.192432 76.349334) (xy 127.200691 76.350804) (xy 127.241311 76.359438) (xy 127.348056 76.382128) (xy 127.348061 76.382128) (xy 127.354513 76.3835) (xy 127.545487 76.3835) (xy 127.551939 76.382128) (xy 127.551944 76.382128) (xy 127.725833 76.345166) (xy 127.725832 76.345166) (xy 127.732288 76.343794) (xy 127.732493 76.344758) (xy 127.797536 76.342903) (xy 127.858333 76.379568) (xy 127.889655 76.443281) (xy 127.8915 76.464762) (xy 127.8915 85.76971) (xy 127.871498 85.837831) (xy 127.859136 85.85402) (xy 127.77929 85.942698) (xy 127.76096 85.963056) (xy 127.715891 86.041118) (xy 127.686011 86.092872) (xy 127.665473 86.128444) (xy 127.606458 86.310072) (xy 127.586496 86.5) (xy 127.587186 86.506565) (xy 127.599526 86.62397) (xy 127.606458 86.689928) (xy 127.665473 86.871556) (xy 127.76096 87.036944) (xy 127.765378 87.041851) (xy 127.765379 87.041852) (xy 127.849006 87.134729) (xy 127.888747 87.178866) (xy 127.958308 87.229405) (xy 128.013783 87.26971) (xy 128.043248 87.291118) (xy 128.049276 87.293802) (xy 128.049278 87.293803) (xy 128.209678 87.365217) (xy 128.217712 87.368794) (xy 128.29268 87.384729) (xy 128.398056 87.407128) (xy 128.398061 87.407128) (xy 128.404513 87.4085) (xy 128.595487 87.4085) (xy 128.601939 87.407128) (xy 128.601944 87.407128) (xy 128.70732 87.384729) (xy 128.782288 87.368794) (xy 128.790322 87.365217) (xy 128.950722 87.293803) (xy 128.950724 87.293802) (xy 128.956752 87.291118) (xy 128.986218 87.26971) (xy 129.041692 87.229405) (xy 129.111253 87.178866) (xy 129.150994 87.134729) (xy 129.234621 87.041852) (xy 129.234622 87.041851) (xy 129.23904 87.036944) (xy 129.334527 86.871556) (xy 129.393542 86.689928) (xy 129.400475 86.62397) (xy 129.412814 86.506565) (xy 129.413504 86.5) (xy 129.393542 86.310072) (xy 129.334527 86.128444) (xy 129.31399 86.092872) (xy 129.284109 86.041118) (xy 129.23904 85.963056) (xy 129.22071 85.942698) (xy 129.140864 85.85402) (xy 129.110146 85.790013) (xy 129.1085 85.76971) (xy 129.1085 72.73029) (xy 129.128502 72.662169) (xy 129.140864 72.64598) (xy 129.234621 72.541852) (xy 129.234622 72.541851) (xy 129.23904 72.536944) (xy 129.297314 72.43601) (xy 129.331223 72.377279) (xy 129.331224 72.377278) (xy 129.334527 72.371556) (xy 129.393542 72.189928) (xy 129.396604 72.160801) (xy 129.412814 72.006565) (xy 129.413504 72) (xy 129.393542 71.810072) (xy 129.334527 71.628444) (xy 129.23904 71.463056) (xy 129.111253 71.321134) (xy 128.956752 71.208882) (xy 128.950724 71.206198) (xy 128.950722 71.206197) (xy 128.809345 71.143252) (xy 128.755249 71.097272) (xy 128.7346 71.029344) (xy 128.753952 70.961036) (xy 128.771499 70.93905) (xy 128.790144 70.920405) (xy 128.852456 70.886379) (xy 128.879239 70.8835) (xy 132.701864 70.8835) (xy 132.718307 70.884578) (xy 132.75 70.88875) (xy 132.758189 70.887672) (xy 132.789874 70.883501) (xy 132.789884 70.8835) (xy 132.789885 70.8835) (xy 132.889457 70.870391) (xy 132.900664 70.868916) (xy 132.900666 70.868915) (xy 132.908851 70.867838) (xy 133.056876 70.806524) (xy 133.124262 70.754817) (xy 133.152072 70.733477) (xy 133.152075 70.733474) (xy 133.177437 70.714013) (xy 133.183987 70.708987) (xy 133.203458 70.683613) (xy 133.214316 70.671233) (xy 133.940144 69.945405) (xy 134.002456 69.911379) (xy 134.029239 69.9085) (xy 134.120487 69.9085) (xy 134.126939 69.907128) (xy 134.126944 69.907128) (xy 134.224228 69.886449) (xy 134.307288 69.868794) (xy 134.313321 69.866108) (xy 134.475722 69.793803) (xy 134.475724 69.793802) (xy 134.481752 69.791118) (xy 134.504683 69.774458) (xy 134.571423 69.725968) (xy 134.636253 69.678866) (xy 134.644941 69.669217) (xy 134.759621 69.541852) (xy 134.759622 69.541851) (xy 134.76404 69.536944) (xy 134.84731 69.392716) (xy 134.856223 69.377279) (xy 134.856224 69.377278) (xy 134.859527 69.371556) (xy 134.918542 69.189928) (xy 134.919249 69.183207) (xy 134.937814 69.006565) (xy 134.938504 69) (xy 134.934105 68.958148) (xy 134.919232 68.816635) (xy 134.919232 68.816633) (xy 134.918542 68.810072) (xy 134.859527 68.628444) (xy 134.846984 68.606718) (xy 134.791329 68.510322) (xy 134.76404 68.463056) (xy 134.720019 68.414165) (xy 134.640675 68.326045) (xy 134.640671 68.326041) (xy 134.636253 68.321134) (xy 134.517377 68.234765) (xy 134.487094 68.212763) (xy 134.487093 68.212762) (xy 134.481752 68.208882) (xy 134.475724 68.206198) (xy 134.475722 68.206197) (xy 134.313319 68.133891) (xy 134.313318 68.133891) (xy 134.307288 68.131206) (xy 134.213888 68.111353) (xy 134.126944 68.092872) (xy 134.126939 68.092872) (xy 134.120487 68.0915) (xy 133.929513 68.0915) (xy 133.923061 68.092872) (xy 133.923056 68.092872) (xy 133.836112 68.111353) (xy 133.742712 68.131206) (xy 133.736682 68.133891) (xy 133.736681 68.133891) (xy 133.574278 68.206197) (xy 133.574276 68.206198) (xy 133.568248 68.208882) (xy 133.562907 68.212762) (xy 133.562906 68.212763) (xy 133.532623 68.234765) (xy 133.413747 68.321134) (xy 133.409329 68.326041) (xy 133.409325 68.326045) (xy 133.329982 68.414165) (xy 133.28596 68.463056) (xy 133.258671 68.510322) (xy 133.203017 68.606718) (xy 133.190473 68.628444) (xy 133.131458 68.810072) (xy 133.130768 68.816633) (xy 133.130768 68.816635) (xy 133.115895 68.958148) (xy 133.111496 69) (xy 133.111684 69.001786) (xy 133.092184 69.068196) (xy 133.075281 69.08917) (xy 132.534856 69.629595) (xy 132.472544 69.663621) (xy 132.445761 69.6665) (xy 128.623136 69.6665) (xy 128.60669 69.665422) (xy 128.583188 69.662328) (xy 128.575 69.66125) (xy 128.566812 69.662328) (xy 128.535129 69.666499) (xy 128.53512 69.6665) (xy 128.535115 69.6665) (xy 128.41615 69.682162) (xy 128.268125 69.743476) (xy 128.268123 69.743477) (xy 128.268124 69.743477) (xy 128.172928 69.816523) (xy 128.172925 69.816526) (xy 128.141013 69.841013) (xy 128.135983 69.847568) (xy 128.121548 69.866379) (xy 128.110681 69.87877) (xy 127.263595 70.725856) (xy 127.201283 70.759882) (xy 127.130468 70.754817) (xy 127.073632 70.71227) (xy 127.048821 70.64575) (xy 127.0485 70.636761) (xy 127.0485 70.619897) (xy 127.068502 70.551776) (xy 127.085405 70.530802) (xy 129.34389 68.272316) (xy 129.354033 68.263214) (xy 129.378729 68.243358) (xy 129.383536 68.239493) (xy 129.415803 68.201039) (xy 129.418983 68.197392) (xy 129.420626 68.19558) (xy 129.42282 68.193386) (xy 129.450153 68.160112) (xy 129.450859 68.159261) (xy 129.494402 68.107369) (xy 129.510665 68.087987) (xy 129.513233 68.083317) (xy 129.516614 68.0792) (xy 129.558396 68.001276) (xy 129.560488 67.997375) (xy 129.561117 67.996216) (xy 129.602973 67.92008) (xy 129.602976 67.920072) (xy 129.605944 67.914674) (xy 129.607556 67.909592) (xy 129.610073 67.904898) (xy 129.637273 67.81593) (xy 129.637619 67.814819) (xy 129.640176 67.806761) (xy 129.665746 67.726155) (xy 129.66634 67.720859) (xy 129.667898 67.715763) (xy 129.677301 67.623204) (xy 129.677422 67.622068) (xy 129.683011 67.572234) (xy 129.683011 67.568707) (xy 129.683066 67.567722) (xy 129.683513 67.562042) (xy 129.686986 67.527846) (xy 129.687263 67.525124) (xy 129.687263 67.525122) (xy 129.687885 67.518999) (xy 129.68357 67.473352) (xy 129.683011 67.461494) (xy 129.683011 61.088083) (xy 129.703013 61.019962) (xy 129.756669 60.973469) (xy 129.826943 60.963365) (xy 129.884576 60.987257) (xy 129.981351 61.059786) (xy 129.996946 61.068324) (xy 130.117394 61.113478) (xy 130.132649 61.117105) (xy 130.183514 61.122631) (xy 130.190328 61.123) (xy 130.827885 61.123) (xy 130.843124 61.118525) (xy 130.844329 61.117135) (xy 130.846 61.109452) (xy 130.846 61.104884) (xy 131.354 61.104884) (xy 131.358475 61.120123) (xy 131.359865 61.121328) (xy 131.367548 61.122999) (xy 132.009669 61.122999) (xy 132.01649 61.122629) (xy 132.067352 61.117105) (xy 132.082604 61.113479) (xy 132.203054 61.068324) (xy 132.218649 61.059786) (xy 132.320724 60.983285) (xy 132.333285 60.970724) (xy 132.409786 60.868649) (xy 132.418324 60.853054) (xy 132.463478 60.732606) (xy 132.467105 60.717351) (xy 132.472631 60.666486) (xy 132.473 60.659672) (xy 132.473 59.872115) (xy 132.468525 59.856876) (xy 132.467135 59.855671) (xy 132.459452 59.854) (xy 131.372115 59.854) (xy 131.356876 59.858475) (xy 131.355671 59.859865) (xy 131.354 59.867548) (xy 131.354 61.104884) (xy 130.846 61.104884) (xy 130.846 59.327885) (xy 131.354 59.327885) (xy 131.358475 59.343124) (xy 131.359865 59.344329) (xy 131.367548 59.346) (xy 132.454884 59.346) (xy 132.470123 59.341525) (xy 132.471328 59.340135) (xy 132.472999 59.332452) (xy 132.472999 58.540331) (xy 132.472629 58.53351) (xy 132.467105 58.482648) (xy 132.463479 58.467396) (xy 132.418324 58.346946) (xy 132.409786 58.331351) (xy 132.333285 58.229276) (xy 132.320724 58.216715) (xy 132.218649 58.140214) (xy 132.203054 58.131676) (xy 132.082606 58.086522) (xy 132.067351 58.082895) (xy 132.016486 58.077369) (xy 132.009672 58.077) (xy 131.372115 58.077) (xy 131.356876 58.081475) (xy 131.355671 58.082865) (xy 131.354 58.090548) (xy 131.354 59.327885) (xy 130.846 59.327885) (xy 130.846 58.126626) (xy 130.866002 58.058505) (xy 130.882905 58.037531) (xy 131.400031 57.520405) (xy 131.462343 57.486379) (xy 131.489126 57.4835) (xy 149.523135 57.4835) ) ) (filled_polygon (layer "B.Cu") (pts (xy 71.092026 63.725144) (xy 71.119875 63.756994) (xy 71.179987 63.855088) (xy 71.210038 63.889779) (xy 71.240737 63.925219) (xy 71.27022 63.989804) (xy 71.2715 64.007717) (xy 71.2715 66.468157) (xy 71.270763 66.481764) (xy 71.268056 66.506688) (xy 71.266676 66.519388) (xy 71.267213 66.525523) (xy 71.27105 66.569388) (xy 71.271379 66.574214) (xy 71.2715 66.576686) (xy 71.2715 66.579769) (xy 71.271801 66.582837) (xy 71.27569 66.622506) (xy 71.275812 66.623819) (xy 71.279685 66.668084) (xy 71.283913 66.716413) (xy 71.2854 66.721532) (xy 71.28592 66.726833) (xy 71.312791 66.815834) (xy 71.313126 66.816967) (xy 71.317646 66.832522) (xy 71.339091 66.906336) (xy 71.341544 66.911068) (xy 71.343084 66.916169) (xy 71.345978 66.921612) (xy 71.386731 66.99826) (xy 71.387343 66.999426) (xy 71.411245 67.045536) (xy 71.430108 67.081926) (xy 71.433431 67.086089) (xy 71.435934 67.090796) (xy 71.494755 67.162918) (xy 71.495446 67.163774) (xy 71.526738 67.202973) (xy 71.529242 67.205477) (xy 71.529884 67.206195) (xy 71.533585 67.210528) (xy 71.560935 67.244062) (xy 71.565682 67.247989) (xy 71.565684 67.247991) (xy 71.596262 67.273287) (xy 71.605042 67.281277) (xy 80.493145 76.169379) (xy 80.502247 76.179522) (xy 80.525968 76.209025) (xy 80.530696 76.212992) (xy 80.564421 76.241291) (xy 80.568069 76.244472) (xy 80.569881 76.246115) (xy 80.572075 76.248309) (xy 80.605349 76.275642) (xy 80.606147 76.276304) (xy 80.677474 76.336154) (xy 80.682144 76.338722) (xy 80.686261 76.342103) (xy 80.76812 76.385995) (xy 80.76925 76.386608) (xy 80.784634 76.395065) (xy 80.845389 76.428466) (xy 80.845394 76.428468) (xy 80.850787 76.431433) (xy 80.855865 76.433044) (xy 80.860563 76.435563) (xy 80.949498 76.462753) (xy 80.950702 76.463128) (xy 81.039306 76.491235) (xy 81.044597 76.491828) (xy 81.049698 76.493388) (xy 81.142311 76.502795) (xy 81.143431 76.502915) (xy 81.193227 76.5085) (xy 81.196756 76.5085) (xy 81.197739 76.508555) (xy 81.203426 76.509003) (xy 81.223683 76.51106) (xy 81.240336 76.512752) (xy 81.240339 76.512752) (xy 81.246463 76.513374) (xy 81.292112 76.509059) (xy 81.303969 76.5085) (xy 96.5655 76.5085) (xy 96.633621 76.528502) (xy 96.680114 76.582158) (xy 96.6915 76.6345) (xy 96.6915 88.138157) (xy 96.690763 88.151764) (xy 96.688353 88.173955) (xy 96.686676 88.189388) (xy 96.687354 88.197138) (xy 96.69105 88.239388) (xy 96.691379 88.244214) (xy 96.6915 88.246686) (xy 96.6915 88.249769) (xy 96.691801 88.252837) (xy 96.69569 88.292506) (xy 96.695811 88.293803) (xy 96.703913 88.386413) (xy 96.7054 88.391532) (xy 96.70592 88.396833) (xy 96.707703 88.402738) (xy 96.707703 88.402739) (xy 96.732753 88.485709) (xy 96.733128 88.486973) (xy 96.736616 88.49898) (xy 96.759091 88.576336) (xy 96.761544 88.581068) (xy 96.763084 88.586169) (xy 96.765978 88.591612) (xy 96.806731 88.66826) (xy 96.807343 88.669426) (xy 96.821225 88.696206) (xy 96.850108 88.751926) (xy 96.853431 88.756089) (xy 96.855934 88.760796) (xy 96.914755 88.832918) (xy 96.915446 88.833774) (xy 96.946738 88.872973) (xy 96.949242 88.875477) (xy 96.949884 88.876195) (xy 96.953585 88.880528) (xy 96.980935 88.914062) (xy 96.985682 88.917989) (xy 96.985684 88.917991) (xy 97.016262 88.943287) (xy 97.025042 88.951277) (xy 105.954595 97.880829) (xy 105.988621 97.943141) (xy 105.9915 97.969924) (xy 105.9915 99.440127) (xy 105.99081 99.453297) (xy 105.98765 99.483367) (xy 105.986645 99.492925) (xy 105.987204 99.499065) (xy 105.990981 99.54057) (xy 105.9915 99.55199) (xy 105.9915 100.692096) (xy 105.990855 100.704829) (xy 105.986626 100.746462) (xy 105.987206 100.752593) (xy 105.990941 100.792109) (xy 105.9915 100.803967) (xy 105.9915 101.440127) (xy 105.99081 101.453297) (xy 105.988477 101.475499) (xy 105.986645 101.492925) (xy 105.987204 101.499065) (xy 105.990981 101.54057) (xy 105.9915 101.55199) (xy 105.9915 106.217603) (xy 105.971498 106.285724) (xy 105.917842 106.332217) (xy 105.852332 106.342913) (xy 105.851942 106.342872) (xy 105.845487 106.3415) (xy 105.654513 106.3415) (xy 105.648061 106.342872) (xy 105.648056 106.342872) (xy 105.565083 106.360509) (xy 105.467712 106.381206) (xy 105.461682 106.383891) (xy 105.461681 106.383891) (xy 105.299278 106.456197) (xy 105.299276 106.456198) (xy 105.293248 106.458882) (xy 105.287907 106.462762) (xy 105.287906 106.462763) (xy 105.250948 106.489615) (xy 105.138747 106.571134) (xy 105.134326 106.576044) (xy 105.134325 106.576045) (xy 105.038249 106.682749) (xy 105.01096 106.713056) (xy 104.965891 106.791118) (xy 104.922595 106.866109) (xy 104.915473 106.878444) (xy 104.856458 107.060072) (xy 104.855768 107.066633) (xy 104.855768 107.066635) (xy 104.84281 107.189928) (xy 104.836496 107.25) (xy 104.837186 107.256565) (xy 104.8435 107.316635) (xy 104.856458 107.439928) (xy 104.915473 107.621556) (xy 105.01096 107.786944) (xy 105.015378 107.791851) (xy 105.015379 107.791852) (xy 105.109136 107.89598) (xy 105.139854 107.959987) (xy 105.1415 107.98029) (xy 105.1415 118.421806) (xy 105.121498 118.489927) (xy 105.067842 118.53642) (xy 104.997568 118.546524) (xy 104.973441 118.540579) (xy 104.813091 118.483796) (xy 104.813083 118.483794) (xy 104.808212 118.482069) (xy 104.803119 118.481162) (xy 104.803116 118.481161) (xy 104.593373 118.4438) (xy 104.593367 118.443799) (xy 104.588284 118.442894) (xy 104.514452 118.441992) (xy 104.370081 118.440228) (xy 104.370079 118.440228) (xy 104.364911 118.440165) (xy 104.144091 118.473955) (xy 103.931756 118.543357) (xy 103.904868 118.557354) (xy 103.738867 118.643769) (xy 103.733607 118.646507) (xy 103.729474 118.64961) (xy 103.729471 118.649612) (xy 103.5591 118.77753) (xy 103.554965 118.780635) (xy 103.479178 118.859942) (xy 103.475594 118.863692) (xy 103.41407 118.899122) (xy 103.343157 118.895665) (xy 103.285371 118.854419) (xy 103.259057 118.788479) (xy 103.2585 118.776641) (xy 103.2585 97.991396) (xy 103.259578 97.974949) (xy 103.259997 97.971763) (xy 103.262479 97.952914) (xy 103.25864 97.871504) (xy 103.2585 97.865569) (xy 103.2585 97.843001) (xy 103.258252 97.840218) (xy 103.258251 97.840204) (xy 103.256182 97.817023) (xy 103.255823 97.81176) (xy 103.252815 97.747973) (xy 103.251897 97.728512) (xy 103.247892 97.711023) (xy 103.245212 97.694104) (xy 103.244115 97.681821) (xy 103.243617 97.676238) (xy 103.242137 97.670827) (xy 103.221631 97.59587) (xy 103.220345 97.590752) (xy 103.202995 97.515) (xy 103.202994 97.514998) (xy 103.201742 97.50953) (xy 103.194706 97.493033) (xy 103.189073 97.476858) (xy 103.185815 97.464953) (xy 103.184337 97.459549) (xy 103.181926 97.454494) (xy 103.181924 97.454489) (xy 103.148454 97.384317) (xy 103.146283 97.379508) (xy 103.115805 97.308053) (xy 103.115802 97.308047) (xy 103.113603 97.302892) (xy 103.103756 97.287902) (xy 103.095343 97.272971) (xy 103.094531 97.271267) (xy 103.087622 97.256782) (xy 103.08435 97.252229) (xy 103.084348 97.252225) (xy 103.03899 97.189103) (xy 103.036001 97.184753) (xy 102.992801 97.118987) (xy 102.990265 97.115126) (xy 102.971743 97.094338) (xy 102.963506 97.084056) (xy 102.959799 97.078897) (xy 102.956529 97.074346) (xy 102.879745 96.999937) (xy 102.878335 96.998548) (xy 83.794525 77.914737) (xy 83.783657 77.902346) (xy 83.779514 77.896946) (xy 83.770123 77.884708) (xy 83.709826 77.829842) (xy 83.705531 77.825743) (xy 83.68959 77.809802) (xy 83.680081 77.801851) (xy 83.669577 77.793068) (xy 83.665602 77.7896) (xy 83.608112 77.737288) (xy 83.608103 77.737281) (xy 83.603964 77.733515) (xy 83.588773 77.723986) (xy 83.574907 77.713911) (xy 83.565451 77.706004) (xy 83.565441 77.705997) (xy 83.561146 77.702406) (xy 83.488752 77.661113) (xy 83.484232 77.658408) (xy 83.467381 77.647837) (xy 83.425485 77.621556) (xy 83.418404 77.617114) (xy 83.418401 77.617112) (xy 83.413656 77.614136) (xy 83.408451 77.612043) (xy 83.408448 77.612042) (xy 83.397021 77.607448) (xy 83.381589 77.599988) (xy 83.370881 77.59388) (xy 83.370872 77.593876) (xy 83.366007 77.591101) (xy 83.36073 77.589232) (xy 83.360725 77.58923) (xy 83.287458 77.563285) (xy 83.282522 77.56142) (xy 83.210416 77.532434) (xy 83.205217 77.530344) (xy 83.19973 77.529208) (xy 83.199728 77.529207) (xy 83.187651 77.526706) (xy 83.171156 77.522101) (xy 83.154241 77.516111) (xy 83.07199 77.502641) (xy 83.06682 77.501683) (xy 82.985233 77.484787) (xy 82.980621 77.484521) (xy 82.98062 77.484521) (xy 82.957452 77.483185) (xy 82.944347 77.481738) (xy 82.93809 77.480714) (xy 82.938086 77.480714) (xy 82.932543 77.479806) (xy 82.92693 77.479894) (xy 82.926928 77.479894) (xy 82.825736 77.481484) (xy 82.823757 77.4815) (xy 80.313477 77.4815) (xy 80.245356 77.461498) (xy 80.224382 77.444595) (xy 68.495405 65.715617) (xy 68.461379 65.653305) (xy 68.4585 65.626522) (xy 68.4585 64.244874) (xy 68.478502 64.176753) (xy 68.483661 64.169327) (xy 68.500615 64.146705) (xy 68.537077 64.049444) (xy 68.544598 64.029382) (xy 68.58724 63.972618) (xy 68.653802 63.947918) (xy 68.72315 63.963126) (xy 68.757817 63.991114) (xy 68.78625 64.023938) (xy 68.958126 64.166632) (xy 69.151 64.279338) (xy 69.155825 64.28118) (xy 69.155826 64.281181) (xy 69.214583 64.303618) (xy 69.359692 64.35903) (xy 69.36476 64.360061) (xy 69.364763 64.360062) (xy 69.455925 64.378609) (xy 69.578597 64.403567) (xy 69.583772 64.403757) (xy 69.583774 64.403757) (xy 69.796673 64.411564) (xy 69.796677 64.411564) (xy 69.801837 64.411753) (xy 69.806957 64.411097) (xy 69.806959 64.411097) (xy 70.018288 64.384025) (xy 70.018289 64.384025) (xy 70.023416 64.383368) (xy 70.030329 64.381294) (xy 70.232429 64.320661) (xy 70.232434 64.320659) (xy 70.237384 64.319174) (xy 70.437994 64.220896) (xy 70.61986 64.091173) (xy 70.628314 64.082749) (xy 70.726504 63.984901) (xy 70.778096 63.933489) (xy 70.908453 63.752077) (xy 70.909776 63.753028) (xy 70.956645 63.709857) (xy 71.02658 63.697625) ) ) (filled_polygon (layer "B.Cu") (pts (xy 88.703882 56.968502) (xy 88.724856 56.985405) (xy 89.204595 57.465144) (xy 89.238621 57.527456) (xy 89.2415 57.554239) (xy 89.2415 59.784234) (xy 89.221498 59.852355) (xy 89.180867 59.891952) (xy 89.046683 59.973377) (xy 89.042653 59.976874) (xy 88.949484 60.057722) (xy 88.872555 60.124477) (xy 88.853809 60.147339) (xy 88.72976 60.298627) (xy 88.729756 60.298633) (xy 88.726376 60.302755) (xy 88.723737 60.307391) (xy 88.723735 60.307394) (xy 88.669389 60.402866) (xy 88.612325 60.503114) (xy 88.533663 60.719825) (xy 88.532714 60.725074) (xy 88.532713 60.725077) (xy 88.493377 60.942608) (xy 88.493376 60.942615) (xy 88.492639 60.946692) (xy 88.4915 60.970844) (xy 88.4915 61.43289) (xy 88.50608 61.60472) (xy 88.507418 61.609875) (xy 88.507419 61.609881) (xy 88.562657 61.822703) (xy 88.563999 61.827872) (xy 88.566191 61.832738) (xy 88.566192 61.832741) (xy 88.622821 61.958452) (xy 88.658688 62.038075) (xy 88.695099 62.092158) (xy 88.697102 62.095133) (xy 88.718553 62.162811) (xy 88.70001 62.231343) (xy 88.647359 62.27897) (xy 88.592582 62.2915) (xy 85.654239 62.2915) (xy 85.586118 62.271498) (xy 85.565144 62.254595) (xy 85.145405 61.834856) (xy 85.111379 61.772544) (xy 85.1085 61.745761) (xy 85.1085 60.3996) (xy 85.100696 60.324384) (xy 85.098238 60.300692) (xy 85.098237 60.300688) (xy 85.097526 60.293834) (xy 85.09371 60.282394) (xy 85.043868 60.133002) (xy 85.04155 60.126054) (xy 84.948478 59.975652) (xy 84.823303 59.850695) (xy 84.816767 59.846666) (xy 84.678968 59.761725) (xy 84.678966 59.761724) (xy 84.672738 59.757885) (xy 84.578121 59.726502) (xy 84.511389 59.704368) (xy 84.511387 59.704368) (xy 84.504861 59.702203) (xy 84.498025 59.701503) (xy 84.498022 59.701502) (xy 84.454969 59.697091) (xy 84.4004 59.6915) (xy 83.0996 59.6915) (xy 83.096354 59.691837) (xy 83.09635 59.691837) (xy 83.000692 59.701762) (xy 83.000688 59.701763) (xy 82.993834 59.702474) (xy 82.987298 59.704655) (xy 82.987296 59.704655) (xy 82.921034 59.726762) (xy 82.826054 59.75845) (xy 82.675652 59.851522) (xy 82.550695 59.976697) (xy 82.546855 59.982927) (xy 82.546854 59.982928) (xy 82.538478 59.996517) (xy 82.46176 60.120977) (xy 82.46092 60.122339) (xy 82.408148 60.169832) (xy 82.338076 60.181256) (xy 82.272952 60.152982) (xy 82.26249 60.143195) (xy 82.157103 60.032722) (xy 82.153424 60.028865) (xy 81.968458 59.891246) (xy 81.927394 59.870368) (xy 81.875737 59.821666) (xy 81.8585 59.758052) (xy 81.8585 57.748136) (xy 81.859578 57.73169) (xy 81.862672 57.708188) (xy 81.86375 57.7) (xy 81.8585 57.660122) (xy 81.8585 57.660115) (xy 81.842838 57.54115) (xy 81.781524 57.393125) (xy 81.781524 57.393124) (xy 81.708477 57.297928) (xy 81.708474 57.297925) (xy 81.683987 57.266013) (xy 81.677432 57.260983) (xy 81.658621 57.246548) (xy 81.64623 57.235681) (xy 81.574144 57.163595) (xy 81.540118 57.101283) (xy 81.545183 57.030468) (xy 81.58773 56.973632) (xy 81.65425 56.948821) (xy 81.663239 56.9485) (xy 88.635761 56.9485) ) ) ) ) ================================================ FILE: boards/fanpico-0804/kicad/fanpico.kicad_pro ================================================ { "board": { "design_settings": { "defaults": { "board_outline_line_width": 0.09999999999999999, "copper_line_width": 0.19999999999999998, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.049999999999999996, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.09999999999999999, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.15, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 1.02, "height": 1.73, "width": 2.03 }, "silk_line_width": 0.15, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.15, "silk_text_upright": false, "zones": { "45_degree_only": false, "min_clearance": 0.508 } }, "diff_pair_dimensions": [ { "gap": 0.0, "via_gap": 0.0, "width": 0.0 } ], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "copper_edge_clearance": "error", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint_type_mismatch": "error", "hole_clearance": "error", "hole_near_hole": "error", "invalid_outline": "error", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "error", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zone_has_empty_net": "error", "zones_intersect": "error" }, "rules": { "allow_blind_buried_vias": false, "allow_microvias": false, "max_error": 0.005, "min_clearance": 0.0, "min_copper_edge_clearance": 0.0, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.19999999999999998, "min_microvia_drill": 0.09999999999999999, "min_silk_clearance": 0.0, "min_through_hole_diameter": 0.3, "min_track_width": 0.19999999999999998, "min_via_annular_width": 0.049999999999999996, "min_via_diameter": 0.39999999999999997, "solder_mask_clearance": 0.0, "solder_mask_min_width": 0.0, "use_height_for_length_calcs": true }, "track_widths": [ 0.0, 0.2, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0 ], "via_dimensions": [ { "diameter": 0.0, "drill": 0.0 } ], "zones_allow_external_fillets": false, "zones_use_no_outline": true }, "layer_presets": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_label_syntax": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "similar_labels": "warning", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12.0, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 6.0 } ], "meta": { "version": 2 }, "net_colors": null }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "specctra_dsn": "", "step": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "drawing": { "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "ngspice": { "fix_include_paths": true, "fix_passive_vals": false, "meta": { "version": 0 }, "model_mode": 0, "workbook_filename": "" }, "page_layout_descr_file": "", "plot_directory": "", "spice_adjust_passive_values": false, "spice_external_command": "spice \"%I\"", "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", "" ], [ "4d4dd17e-947f-4b3c-bd12-d4039fccae25", "Fan Channels" ], [ "20cc4b05-e726-4b05-ab1c-64b5db072e26", "Power Rails" ], [ "cccf50bc-434f-4bd7-95d5-172f10b931f4", "Fan1" ], [ "946ef3ef-3a88-49e4-98d0-b90987606b91", "Fan2" ], [ "53d29c07-1f93-4af9-9f7c-0766d5b9c268", "Fan3" ], [ "8ed5c73d-1abe-4a73-919d-90efbbef00b1", "Fan4" ], [ "d911133f-dd4d-432b-a685-8d9b5b84e35e", "Fan5" ], [ "5ae37739-065e-4580-bde3-1038e45a286b", "Fan6" ], [ "61057e9f-bb51-4960-97cb-0865458dfe32", "Fan7" ], [ "c48058d0-f979-4ada-9996-5cab1ec255f6", "Fan8" ], [ "4e9d9bbb-bb4b-4f71-a57a-a915249deb73", "Sensors" ] ], "text_variables": {} } ================================================ FILE: boards/fanpico-0804/kicad/fanpico.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "CD74HC4050M:CD74HC4050M" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at -12.7 16.2306 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Value" "CD74HC4050M" (id 1) (at -12.7 -19.2278 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Footprint" "SOIC127P600X175-16N" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "ki_locked" "" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27))) ) (symbol "CD74HC4050M_0_0" (rectangle (start -12.7 -15.24) (end 12.7 15.24) (stroke (width 0.4064) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin power_in line (at 17.78 12.7 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016)))) (number "1" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 0 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016)))) (number "10" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "5A" (effects (font (size 1.016 1.016)))) (number "11" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 -2.54 180) (length 5.08) (name "5Y" (effects (font (size 1.016 1.016)))) (number "12" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "6A" (effects (font (size 1.016 1.016)))) (number "14" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 -5.08 180) (length 5.08) (name "6Y" (effects (font (size 1.016 1.016)))) (number "15" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016)))) (number "2" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016)))) (number "3" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016)))) (number "4" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016)))) (number "5" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016)))) (number "6" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016)))) (number "7" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 -10.16 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016)))) (number "8" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 0 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016)))) (number "9" (effects (font (size 1.016 1.016)))) ) ) ) (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "J" (id 0) (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Conn_01x03_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 3.81) (end 1.27 -3.81) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "J" (id 0) (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.635 2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_Polarized_0_1" (rectangle (start -2.286 0.508) (end 2.286 1.016) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.778 2.286) (xy -0.762 2.286) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 2.794) (xy -1.27 1.778) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start 2.286 -0.508) (end -2.286 -1.016) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) ) (symbol "C_Polarized_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.254 1.778 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Schottky diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "D_Schottky_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "D_Schottky_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "F" (id 0) (at -2.54 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "Polyfuse" (id 1) (at 2.54 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 1.27 -5.08 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "R" (id 0) (at 2.032 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "R" (id 1) (at 0 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at -1.778 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resistor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Graphic:Logo_Open_Hardware_Small" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) (property "Reference" "#LOGO" (id 0) (at 0 6.985 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "Logo_Open_Hardware_Small" (id 1) (at 0 -5.715 0) (effects (font (size 1.27 1.27)) hide) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Logo" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Open Hardware logo, small" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Logo_Open_Hardware_Small_0_1" (polyline (pts (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) ) ) (symbol "MCU_RaspberryPi_and_Boards:Pico" (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at -13.97 27.94 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Pico" (id 1) (at 0 19.05 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "RPi_Pico:RPi_Pico_SMD_TH" (id 2) (at 0 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Pico_0_0" (text "Raspberry Pi Pico" (at 0 21.59 0) (effects (font (size 1.27 1.27))) ) ) (symbol "Pico_0_1" (rectangle (start -15.24 26.67) (end 15.24 -26.67) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type background)) ) ) (symbol "Pico_1_1" (pin bidirectional line (at -17.78 24.13 0) (length 2.54) (name "GPIO0" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 1.27 0) (length 2.54) (name "GPIO7" (effects (font (size 1.27 1.27)))) (number "10" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) (name "GPIO8" (effects (font (size 1.27 1.27)))) (number "11" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) (name "GPIO9" (effects (font (size 1.27 1.27)))) (number "12" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 -6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "13" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) (name "GPIO10" (effects (font (size 1.27 1.27)))) (number "14" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) (name "GPIO11" (effects (font (size 1.27 1.27)))) (number "15" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) (name "GPIO12" (effects (font (size 1.27 1.27)))) (number "16" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) (name "GPIO13" (effects (font (size 1.27 1.27)))) (number "17" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 -19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "18" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) (name "GPIO14" (effects (font (size 1.27 1.27)))) (number "19" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 21.59 0) (length 2.54) (name "GPIO1" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) (name "GPIO15" (effects (font (size 1.27 1.27)))) (number "20" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) (name "GPIO16" (effects (font (size 1.27 1.27)))) (number "21" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) (name "GPIO17" (effects (font (size 1.27 1.27)))) (number "22" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 -19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "23" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) (name "GPIO18" (effects (font (size 1.27 1.27)))) (number "24" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) (name "GPIO19" (effects (font (size 1.27 1.27)))) (number "25" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) (name "GPIO20" (effects (font (size 1.27 1.27)))) (number "26" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) (name "GPIO21" (effects (font (size 1.27 1.27)))) (number "27" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 -6.35 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "28" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) (name "GPIO22" (effects (font (size 1.27 1.27)))) (number "29" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin input line (at 17.78 -1.27 180) (length 2.54) (name "RUN" (effects (font (size 1.27 1.27)))) (number "30" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 1.27 180) (length 2.54) (name "GPIO26_ADC0" (effects (font (size 1.27 1.27)))) (number "31" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 3.81 180) (length 2.54) (name "GPIO27_ADC1" (effects (font (size 1.27 1.27)))) (number "32" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 6.35 180) (length 2.54) (name "AGND" (effects (font (size 1.27 1.27)))) (number "33" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 8.89 180) (length 2.54) (name "GPIO28_ADC2" (effects (font (size 1.27 1.27)))) (number "34" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 11.43 180) (length 2.54) (name "ADC_VREF" (effects (font (size 1.27 1.27)))) (number "35" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 13.97 180) (length 2.54) (name "3V3" (effects (font (size 1.27 1.27)))) (number "36" (effects (font (size 1.27 1.27)))) ) (pin input line (at 17.78 16.51 180) (length 2.54) (name "3V3_EN" (effects (font (size 1.27 1.27)))) (number "37" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "38" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 21.59 180) (length 2.54) (name "VSYS" (effects (font (size 1.27 1.27)))) (number "39" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 16.51 0) (length 2.54) (name "GPIO2" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 24.13 180) (length 2.54) (name "VBUS" (effects (font (size 1.27 1.27)))) (number "40" (effects (font (size 1.27 1.27)))) ) (pin input line (at -2.54 -29.21 90) (length 2.54) (name "SWCLK" (effects (font (size 1.27 1.27)))) (number "41" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 0 -29.21 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "42" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) (name "SWDIO" (effects (font (size 1.27 1.27)))) (number "43" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 13.97 0) (length 2.54) (name "GPIO3" (effects (font (size 1.27 1.27)))) (number "5" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 11.43 0) (length 2.54) (name "GPIO4" (effects (font (size 1.27 1.27)))) (number "6" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 8.89 0) (length 2.54) (name "GPIO5" (effects (font (size 1.27 1.27)))) (number "7" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "8" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 3.81 0) (length 2.54) (name "GPIO6" (effects (font (size 1.27 1.27)))) (number "9" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "H" (id 0) (at 0 6.35 0) (effects (font (size 1.27 1.27))) ) (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "MountingHole_Pad_0_1" (circle (center 0 1.27) (radius 1.27) (stroke (width 1.27) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "MountingHole_Pad_1_1" (pin input line (at 0 -2.54 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Reference_Voltage:LM4040DBZ-3" (pin_names (offset 0.0254) hide) (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LM4040DBZ-3" (id 1) (at 0 -3.175 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 0 -5.08 0) (effects (font (size 1.27 1.27) italic) hide) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27) italic) hide) ) (property "ki_keywords" "diode device voltage reference shunt" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LM4040DBZ-3_0_1" (polyline (pts (xy -1.27 0) (xy 0 0) (xy 1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 -1.27) (xy 0.635 0) (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.2032) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 -1.27) (xy 0.635 -1.27) (xy 0.635 1.27) (xy 1.27 1.27) ) (stroke (width 0.2032) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "LM4040DBZ-3_1_1" (pin passive line (at 3.81 0 180) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -3.81 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "SN74AHCT125PW:SN74AHCT125PW" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at -12.7 18.7706 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Value" "SN74AHCT125PW" (id 1) (at -12.7 -21.7678 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Footprint" "SOP65P640X120-14N" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "ki_locked" "" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27))) ) (symbol "SN74AHCT125PW_0_0" (rectangle (start -12.7 -17.78) (end 12.7 17.78) (stroke (width 0.4064) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin input line (at -17.78 0 0) (length 5.08) (name "~{1OE}" (effects (font (size 1.016 1.016)))) (number "1" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "~{3OE}" (effects (font (size 1.016 1.016)))) (number "10" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016)))) (number "11" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016)))) (number "12" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -7.62 0) (length 5.08) (name "~{4OE}" (effects (font (size 1.016 1.016)))) (number "13" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 15.24 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016)))) (number "14" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 10.16 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016)))) (number "2" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 10.16 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016)))) (number "3" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "~{2OE}" (effects (font (size 1.016 1.016)))) (number "4" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016)))) (number "5" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016)))) (number "6" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 -15.24 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016)))) (number "7" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016)))) (number "8" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016)))) (number "9" (effects (font (size 1.016 1.016)))) ) ) ) (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "SW" (id 0) (at 1.27 2.54 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 5.08 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 5.08 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "SW_Push_0_1" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 1.27) (xy 0 3.048) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 2.54 1.27) (xy -2.54 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (pin passive line (at -5.08 0 0) (length 2.54) (name "1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+3.3V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+5V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 0 -3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) hide (name "GND" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (id 0) (at 0 1.905 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "pwr" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) ) ) (junction (at 46.99 30.48) (diameter 0) (color 0 0 0 0) (uuid 01e252bf-0d42-4ed3-90c1-6edd09d4c6f4) ) (junction (at 86.36 38.1) (diameter 0) (color 0 0 0 0) (uuid 0f2ce90f-8f5d-4cc6-ab77-e8b8d6d4b711) ) (junction (at 191.77 45.72) (diameter 0) (color 0 0 0 0) (uuid 0f766bcf-5ac5-452d-b7cb-9a1b0ed8cea9) ) (junction (at 86.36 85.09) (diameter 0) (color 0 0 0 0) (uuid 1ed5dd6d-2f7d-47ce-8bd7-72711a74d759) ) (junction (at 251.46 111.76) (diameter 0) (color 0 0 0 0) (uuid 44461bb5-3d15-48d8-b54c-29cc384038c4) ) (junction (at 256.54 111.76) (diameter 0) (color 0 0 0 0) (uuid 4ac33c7f-819a-4e40-9db8-c7158710ea25) ) (junction (at 256.54 99.06) (diameter 0) (color 0 0 0 0) (uuid 4cf7f1ed-1475-4478-97e8-e413894f7315) ) (junction (at 46.99 74.93) (diameter 0) (color 0 0 0 0) (uuid 615101fd-5b8c-4f33-abe7-18a9a2b4a2fd) ) (junction (at 86.36 87.63) (diameter 0) (color 0 0 0 0) (uuid 68ba8808-7bd0-4dd5-b77c-77c77e2f8e0a) ) (junction (at 251.46 99.06) (diameter 0) (color 0 0 0 0) (uuid 739bf354-74df-465f-9fc4-9c9002958c57) ) (junction (at 44.45 105.41) (diameter 0) (color 0 0 0 0) (uuid 8f0ff8cf-d2b8-4f71-be2e-c74361e7d1f3) ) (junction (at 91.44 135.89) (diameter 0) (color 0 0 0 0) (uuid 93693dd7-25ae-4dc7-829b-3e79a061559f) ) (junction (at 46.99 153.67) (diameter 0) (color 0 0 0 0) (uuid 998e8711-0bcd-41ef-a290-bc410f8d04b1) ) (junction (at 44.45 60.96) (diameter 0) (color 0 0 0 0) (uuid 9d867883-eced-4471-9fce-19f09daf1612) ) (junction (at 207.01 48.26) (diameter 0) (color 0 0 0 0) (uuid a499558e-ea7f-4ffb-aa5b-dccda25ab7aa) ) (junction (at 86.36 82.55) (diameter 0) (color 0 0 0 0) (uuid a5816136-ceeb-4cc8-8f78-d7f8c808f034) ) (junction (at 264.16 111.76) (diameter 0) (color 0 0 0 0) (uuid b842a3fa-7994-4673-966c-1ef6fc8631cc) ) (junction (at 86.36 40.64) (diameter 0) (color 0 0 0 0) (uuid c2759c0d-1090-43b6-8679-d9db23ac5c4b) ) (junction (at 86.36 43.18) (diameter 0) (color 0 0 0 0) (uuid c312270f-3292-440f-be58-8d5cca988f64) ) (junction (at 243.84 99.06) (diameter 0) (color 0 0 0 0) (uuid c374c009-c04c-47ed-a1c9-18363335846e) ) (junction (at 264.16 99.06) (diameter 0) (color 0 0 0 0) (uuid c7fcec21-40e0-4284-9c5f-91ce733eca2a) ) (junction (at 91.44 158.75) (diameter 0) (color 0 0 0 0) (uuid e4e73794-5f4d-4ae1-b60c-827985b0cbfd) ) (junction (at 243.84 111.76) (diameter 0) (color 0 0 0 0) (uuid f7161d64-a0dc-42e0-98d7-a0e878124a80) ) (junction (at 207.01 34.29) (diameter 0) (color 0 0 0 0) (uuid ffd5a910-b2ec-4bd2-8b36-e2794b9dae7e) ) (no_connect (at 170.18 50.8) (uuid a8b06511-83ab-4494-899d-baf6f0f7c2e2)) (no_connect (at 86.36 151.13) (uuid f604df99-7dd9-4a80-8c5b-84ef34bfd56f)) (no_connect (at 86.36 153.67) (uuid f604df99-7dd9-4a80-8c5b-84ef34bfd570)) (wire (pts (xy 134.62 78.74) (xy 93.98 78.74)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0186dde7-af63-4598-a1c1-31b08179cb47) ) (polyline (pts (xy 111.76 116.84) (xy 111.76 17.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0225b026-bc9a-4ae3-a532-98073f921f06) ) (wire (pts (xy 92.71 66.04) (xy 92.71 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 032ec224-73b8-4b34-8d58-d432ca3d53cf) ) (wire (pts (xy 251.46 99.06) (xy 251.46 101.6)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 06e94543-5813-475e-bb40-4f1f9177f3d0) ) (wire (pts (xy 170.18 43.18) (xy 177.8 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0c3a7ce4-db74-4e35-9d7f-fa6b659c8921) ) (wire (pts (xy 170.18 48.26) (xy 207.01 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0c8c3c4b-1728-4923-ab3a-fd9898e21ef5) ) (polyline (pts (xy 20.32 173.99) (xy 20.32 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0fe776ff-a40b-4d67-94d6-2b2739940cb5) ) (wire (pts (xy 134.62 58.42) (xy 90.17 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 10ec34c0-ccd5-4fdf-bbc8-5a9ce960ba1e) ) (wire (pts (xy 243.84 111.76) (xy 241.3 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 12215783-4ce1-4031-87f0-99f322f05186) ) (wire (pts (xy 201.93 34.29) (xy 207.01 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 14892be9-b654-4eef-afc5-ed428e62306e) ) (polyline (pts (xy 220.98 163.83) (xy 281.94 163.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1a3d8a35-680b-4604-99a8-0e9ae278b585) ) (wire (pts (xy 86.36 40.64) (xy 86.36 43.18)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1c03a828-53cd-4e4e-87c7-45e67cf2b53b) ) (wire (pts (xy 243.84 99.06) (xy 243.84 102.87)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1c342a1c-439d-4b5a-af2d-08ad1d109144) ) (wire (pts (xy 264.16 88.9) (xy 264.16 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1c3e2fe0-5bb0-408d-b1ba-d8b29a870098) ) (wire (pts (xy 256.54 111.76) (xy 256.54 113.03)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1d3a1626-d1ef-4f14-b28c-9b933e72b66d) ) (wire (pts (xy 86.36 85.09) (xy 86.36 87.63)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1f04ac7b-266b-4fb5-b6a4-05e08a8f98e6) ) (polyline (pts (xy 220.98 163.83) (xy 220.98 138.43)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 21f6b50f-7764-46d6-bf13-9faf7c61650f) ) (wire (pts (xy 90.17 100.33) (xy 86.36 100.33)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 227ab65b-61a7-472e-998c-7fd223fd4d26) ) (wire (pts (xy 154.94 96.52) (xy 154.94 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 228306e0-15fa-4577-bb1d-9e5aefa16ade) ) (wire (pts (xy 218.44 34.29) (xy 222.25 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 269ac787-2366-4c78-9aba-be42dac5f3a7) ) (wire (pts (xy 91.44 156.21) (xy 91.44 158.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 27a6613f-33a8-46fd-9afa-9ca2d1f73dc0) ) (wire (pts (xy 134.62 91.44) (xy 100.33 91.44)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 28274e40-2b64-4044-b68a-fe63775a6c46) ) (wire (pts (xy 191.77 45.72) (xy 201.93 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2971de2c-b7e1-482b-833e-8de569446445) ) (wire (pts (xy 207.01 34.29) (xy 210.82 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 29bcee54-aee5-4731-8f18-6d7f81cc8041) ) (wire (pts (xy 198.12 148.59) (xy 86.36 148.59)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2a8d2ef7-2f53-42c5-bb8d-e09943c6a9bb) ) (wire (pts (xy 86.36 38.1) (xy 86.36 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2f2c4fe5-08cb-4222-8c26-736039cae7f8) ) (wire (pts (xy 195.58 88.9) (xy 195.58 146.05)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3457d8d7-d7cf-4926-86dd-d7e44f98d3ca) ) (wire (pts (xy 46.99 153.67) (xy 46.99 157.48)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 36c8e91e-79e6-4d96-b66d-825fa8703e55) ) (wire (pts (xy 134.62 83.82) (xy 97.79 83.82)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 37529e5c-b830-4881-ade0-b698ed1f75a5) ) (wire (pts (xy 91.44 135.89) (xy 104.14 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 38a56da0-7cf7-4684-9a7a-4498611a94f9) ) (wire (pts (xy 264.16 111.76) (xy 264.16 114.3)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3a621a57-d1f7-4f1e-b0a9-13553c18a3fe) ) (wire (pts (xy 86.36 135.89) (xy 91.44 135.89)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3a739681-9279-41e5-ba60-3e4ef57236b2) ) (wire (pts (xy 149.86 96.52) (xy 149.86 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3b481bfb-ac98-4b41-b900-e731f117e669) ) (wire (pts (xy 251.46 109.22) (xy 251.46 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3c0044c6-c429-449b-b13a-e41678b50171) ) (wire (pts (xy 134.62 71.12) (xy 91.44 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3ea7359e-2927-45ab-a860-78cd6f6c3507) ) (wire (pts (xy 251.46 99.06) (xy 256.54 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 410a416a-c262-4325-9a55-1d9ceffdf200) ) (wire (pts (xy 201.93 34.29) (xy 201.93 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 45ca8509-4271-4614-af8a-b6e039b3db0f) ) (wire (pts (xy 97.79 83.82) (xy 97.79 140.97)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4d7eef76-255f-4ab6-90f6-c05e2137a21d) ) (polyline (pts (xy 220.98 138.43) (xy 281.94 138.43)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4d9c151c-2d5a-406d-9d23-57a742a4138e) ) (wire (pts (xy 46.99 151.13) (xy 50.8 151.13)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4e36b5f7-b3a0-474d-b89c-5462086267b9) ) (polyline (pts (xy 238.76 48.26) (xy 238.76 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4e9f99cf-d8d9-4f72-93eb-785163413a3a) ) (wire (pts (xy 92.71 76.2) (xy 92.71 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4eae0ac9-9282-4320-ba71-233828a5ef35) ) (wire (pts (xy 91.44 71.12) (xy 91.44 97.79)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 51b79a87-f344-40fe-83d6-167af76b6e80) ) (wire (pts (xy 44.45 105.41) (xy 50.8 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5292bd92-d97d-4ec6-9038-ba96fd6ba6dc) ) (wire (pts (xy 251.46 111.76) (xy 243.84 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5a66cd7f-a53d-4cb6-808e-4ba88e785316) ) (wire (pts (xy 46.99 26.67) (xy 46.99 30.48)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5a867cc6-4d32-4cf1-919b-558b5fe2d2a9) ) (wire (pts (xy 243.84 107.95) (xy 243.84 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5c707d89-acbd-4785-a874-cdebbe604627) ) (wire (pts (xy 90.17 53.34) (xy 90.17 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5df6e566-af55-4933-bd72-8f4e2c0f62f8) ) (polyline (pts (xy 111.76 17.78) (xy 20.32 17.78)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 64d2652d-c463-460c-8179-7b15d9e1b57a) ) (wire (pts (xy 50.8 74.93) (xy 46.99 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 66a4b750-6e34-494d-aadd-6e7a32a70209) ) (wire (pts (xy 207.01 44.45) (xy 207.01 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6c6d5d76-c85e-4bf4-b192-2ad09e22ff31) ) (polyline (pts (xy 220.98 132.08) (xy 281.94 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6f4d6650-5bcb-4282-924a-5cd152ed0ec9) ) (polyline (pts (xy 281.94 73.66) (xy 238.76 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 713ff1dc-4d1d-4410-a196-3d543c6b29c7) ) (wire (pts (xy 207.01 48.26) (xy 207.01 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 747a99f0-967e-4305-8b44-9440ea24853f) ) (wire (pts (xy 86.36 38.1) (xy 86.36 26.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7869295c-5420-42ce-8a98-c64844f45ce2) ) (wire (pts (xy 241.3 99.06) (xy 243.84 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7fc9a529-3f88-49e9-b0e6-e4d2ef7ceeca) ) (wire (pts (xy 134.62 76.2) (xy 92.71 76.2)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7fe0ccf4-6a56-494c-af55-e0e6a65496af) ) (polyline (pts (xy 238.76 48.26) (xy 281.94 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 81222d6f-a3e7-45b9-8ef8-8863d409d691) ) (wire (pts (xy 86.36 82.55) (xy 86.36 85.09)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 83b715d3-f602-47ea-b3a2-af22e8d6914c) ) (polyline (pts (xy 281.94 80.01) (xy 220.98 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 86813523-31f3-4ecd-8f15-d6b26bb626c9) ) (wire (pts (xy 256.54 99.06) (xy 264.16 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8b889b1e-faba-489d-8e68-d7f715c06289) ) (wire (pts (xy 243.84 99.06) (xy 251.46 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9052c1c7-0610-4c6b-bba2-a2782a39836f) ) (wire (pts (xy 276.86 62.23) (xy 276.86 66.04)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9233216e-2e08-4379-96e0-cb36b85ff99a) ) (wire (pts (xy 264.16 99.06) (xy 264.16 101.6)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 984eacb6-8323-4ded-b67b-fb5e78dc9b4f) ) (wire (pts (xy 250.19 62.23) (xy 255.27 62.23)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 99b48839-8290-446e-94cc-89a81a4f05d0) ) (wire (pts (xy 46.99 153.67) (xy 46.99 151.13)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9c5ecec4-6d4c-41d3-9cdd-3197f1b2f37d) ) (wire (pts (xy 92.71 95.25) (xy 86.36 95.25)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9c6316a6-520f-40f3-814f-24dad1d71f53) ) (polyline (pts (xy 115.57 121.92) (xy 115.57 173.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9ccebe2b-5f55-4973-bb87-39a4061c3e8f) ) (wire (pts (xy 170.18 81.28) (xy 198.12 81.28)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9da456f0-4e21-4a12-809e-e058b6d6eeb2) ) (wire (pts (xy 256.54 111.76) (xy 251.46 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9ed68298-3c09-4cbc-8d43-3d4e50b58202) ) (wire (pts (xy 97.79 140.97) (xy 86.36 140.97)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9f9c49ab-0bbb-4ccd-b2c4-cda52b6397a2) ) (wire (pts (xy 264.16 97.79) (xy 264.16 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a0c3c007-0ce9-4f18-937e-4f07a43e915c) ) (wire (pts (xy 46.99 71.12) (xy 46.99 74.93)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a1ed2e4e-ab08-4f7d-bd05-e868fe9fc854) ) (wire (pts (xy 264.16 111.76) (xy 264.16 109.22)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a2ecdf12-a15c-45bf-a0e6-4e12848b4c7a) ) (wire (pts (xy 46.99 30.48) (xy 46.99 33.02)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a80fef18-a48a-4d09-b643-a672757b1495) ) (wire (pts (xy 152.4 96.52) (xy 152.4 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a85b6f0d-e15b-4f99-88f8-f28937397fba) ) (wire (pts (xy 86.36 146.05) (xy 195.58 146.05)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a8a1e8a9-9f28-43cb-9fa6-aad380e57c24) ) (polyline (pts (xy 115.57 173.99) (xy 20.32 173.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid acf53681-a981-43c2-af30-140ab59070f1) ) (polyline (pts (xy 20.32 121.92) (xy 115.57 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid add87405-9e92-4829-9e4e-b14fd83f8344) ) (wire (pts (xy 86.36 26.67) (xy 46.99 26.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ae0c8c22-72ab-44b8-b607-478ffcda8e0f) ) (wire (pts (xy 86.36 43.18) (xy 86.36 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid aeb321a9-5237-4c78-bac4-781a3c603cc1) ) (wire (pts (xy 100.33 143.51) (xy 86.36 143.51)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid aee4df56-97bb-43f0-868d-95d701bd9ab9) ) (wire (pts (xy 93.98 92.71) (xy 86.36 92.71)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid af8a7759-363f-4c9c-b8f4-16511f11ec48) ) (wire (pts (xy 243.84 148.59) (xy 254 148.59)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b37aef7d-4af1-4e1d-8285-d96b3af286b3) ) (wire (pts (xy 91.44 63.5) (xy 134.62 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b8cc28f2-5708-4a8f-8a7f-b697b00c04bf) ) (wire (pts (xy 86.36 87.63) (xy 86.36 90.17)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bad5e497-e67c-4adf-8572-061ed6850f71) ) (wire (pts (xy 91.44 158.75) (xy 91.44 162.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c410d1ff-0d70-4c71-aeb7-e2a144eee5e6) ) (wire (pts (xy 30.48 105.41) (xy 44.45 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c5365424-5bdc-4306-98c6-fc5c6718bcc3) ) (wire (pts (xy 90.17 68.58) (xy 90.17 100.33)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c6edef24-cd36-467e-a513-07e494f21119) ) (wire (pts (xy 46.99 153.67) (xy 50.8 153.67)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c79cf7f8-53c6-4f5f-a3dd-75fc969c4c76) ) (wire (pts (xy 46.99 74.93) (xy 46.99 77.47)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c8a563ce-100a-43b5-a82f-7c2484846b23) ) (wire (pts (xy 91.44 50.8) (xy 86.36 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c99f6e0b-0f2a-4762-a218-370af9761dec) ) (polyline (pts (xy 281.94 132.08) (xy 281.94 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ca5b5b51-a7f9-4111-9194-6e0a4f01fcf0) ) (wire (pts (xy 207.01 39.37) (xy 207.01 34.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cac9a913-96ac-45e5-aaf1-cb85cd88888b) ) (wire (pts (xy 86.36 97.79) (xy 91.44 97.79)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d0a2f279-5f05-4f01-ac28-b4b42dc0e869) ) (wire (pts (xy 90.17 53.34) (xy 86.36 53.34)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d130f3e6-3e5d-4159-b2b2-7cdb6f3ed471) ) (wire (pts (xy 261.62 148.59) (xy 269.24 148.59)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d1c14097-706a-4799-8c42-01de7ef7654e) ) (wire (pts (xy 91.44 135.89) (xy 91.44 151.13)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d2a3678b-89b2-49d4-9dac-f323f451a6d2) ) (wire (pts (xy 86.36 82.55) (xy 86.36 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d3602151-9b54-4a0a-add1-4e51380180cb) ) (polyline (pts (xy 220.98 80.01) (xy 220.98 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d41d8d66-fe44-4552-8178-6068db774d34) ) (polyline (pts (xy 20.32 116.84) (xy 111.76 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d4f636a4-f5b8-49c2-a599-1577d3892675) ) (polyline (pts (xy 281.94 138.43) (xy 281.94 163.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d6d65757-102d-4196-8f6c-f48e019d6840) ) (polyline (pts (xy 20.32 17.78) (xy 20.32 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d85017d9-c128-48c8-8251-f13f61501d86) ) (wire (pts (xy 170.18 88.9) (xy 195.58 88.9)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid daf98f29-baf9-4a42-aa06-dd14a5995065) ) (wire (pts (xy 256.54 97.79) (xy 256.54 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid db7c70ec-3601-4f98-81f3-7c474fea16ba) ) (wire (pts (xy 264.16 123.19) (xy 264.16 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dbddf614-5f19-4da6-ae39-86f5812a77ad) ) (wire (pts (xy 86.36 55.88) (xy 134.62 55.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dfaa6c7c-fbe3-4455-ba4b-aab61fdaf591) ) (wire (pts (xy 44.45 60.96) (xy 50.8 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e0be14a5-755d-4de2-a11b-e47244753427) ) (wire (pts (xy 91.44 158.75) (xy 86.36 158.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e50155e3-ecc8-4718-9953-7eb737af95e6) ) (wire (pts (xy 50.8 30.48) (xy 46.99 30.48)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e5962416-b5b1-4270-a17c-cc51c70b33fd) ) (wire (pts (xy 264.16 111.76) (xy 256.54 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e5c7b78d-5fa2-422a-99f8-30d909bbcb69) ) (wire (pts (xy 86.36 71.12) (xy 46.99 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e7225a70-d6af-4523-94b9-81a6be197857) ) (wire (pts (xy 134.62 68.58) (xy 90.17 68.58)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e75391f7-af43-4ef8-a5b6-7d14eba740f7) ) (polyline (pts (xy 281.94 48.26) (xy 281.94 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eb281db5-4063-4df2-8db9-ea3803bcb333) ) (wire (pts (xy 134.62 66.04) (xy 92.71 66.04)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eec66167-3c8f-4b14-88e8-2c8d1f2c010c) ) (wire (pts (xy 93.98 78.74) (xy 93.98 92.71)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ef99e1f5-6546-41d3-87a7-3557a780ff4f) ) (wire (pts (xy 241.3 88.9) (xy 264.16 88.9)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f01ab03b-e778-424c-a5cd-50698d697993) ) (wire (pts (xy 262.89 62.23) (xy 266.7 62.23)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f04e1ab9-fbf3-46dd-b600-c260e336711a) ) (wire (pts (xy 100.33 91.44) (xy 100.33 143.51)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f23c3a6d-794d-4f86-85f0-bcc715d4675a) ) (wire (pts (xy 198.12 81.28) (xy 198.12 148.59)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f793a443-dc1b-4e5e-97fa-60fcce44bc0e) ) (wire (pts (xy 30.48 60.96) (xy 44.45 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f812f4ab-364a-493a-aa6b-459b4558f569) ) (wire (pts (xy 170.18 45.72) (xy 191.77 45.72)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fcdd6fb8-f798-4801-9e2b-fb0610776551) ) (wire (pts (xy 91.44 63.5) (xy 91.44 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fd251c52-7a99-4c7d-a722-efe3aeba8d65) ) (wire (pts (xy 92.71 48.26) (xy 86.36 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fdc24804-1714-4dcd-b084-817110d69f5e) ) (text "Reset Button" (at 252.73 52.07 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 29a9d25a-b621-4edd-b244-27b12c5a58c5) ) (text "3.3V to 5V TTL level converters (Outputs)" (at 49.53 21.59 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 7b78d401-b474-456f-b3ac-691fb2d878ca) ) (text "AUX Power Connector" (at 240.03 142.24 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 9a16a3a4-3f7d-446b-822b-f00c31a97600) ) (text "5-12V to 3.3V TTL level converters (Inputs)" (at 48.26 125.73 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid d2c3ae86-3be5-49b7-948d-8a75160b2e76) ) (text "Voltage Reference (ADC)" (at 240.03 83.82 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid dacb54d3-d3bb-452f-818e-51f80ddfb9e5) ) (label "PWM2A" (at 100.33 55.88 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 0322dd28-65a4-4fb0-b2cf-cf9968cc8c23) ) (label "PWM5A" (at 100.33 76.2 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 18f360f6-8bd9-4769-bb6f-234d98538fd4) ) (label "PWM5B" (at 100.33 78.74 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 412b49fc-79c3-4b8a-8376-dc6bcdf8affd) ) (label "PWM7B" (at 100.33 130.81 90) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 425a5e38-96af-4adb-8371-9fa47b28c2da) ) (label "PWM6B" (at 97.79 130.81 90) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 44a48c6a-ba78-4c95-b40d-d17f88689408) ) (label "GND" (at 152.4 105.41 90) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 7cb8c289-4952-434c-9d7f-51d5246d29f0) ) (label "SWCLK" (at 149.86 105.41 90) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid 8ef68ec7-7ce3-4b4c-8f85-24efca5908e3) ) (label "PWM4B" (at 100.33 71.12 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid a2127821-7749-4ff3-95b3-220795238adb) ) (label "PWM1B" (at 100.33 148.59 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid ad15de40-3f41-42ce-a2b4-b65b81e9f20c) ) (label "SWDIO" (at 154.94 105.41 90) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid c2050e57-e22d-4c9f-aba3-58a7cdd45b77) ) (label "PWM0B" (at 100.33 146.05 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid c3839004-8bcc-43d6-8e31-aaeb6aa517bd) ) (label "PWM4A" (at 100.33 68.58 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid c49ab76b-956b-4f91-9162-04575e1380aa) ) (label "PWM3A" (at 100.33 63.5 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid d7454ce4-c6e8-4c21-920a-50a741ad0d6b) ) (label "PWM3B" (at 100.33 66.04 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid ea4a4606-14a4-40ed-881a-0158186885e8) ) (label "PWM2B" (at 100.33 58.42 0) (effects (font (size 1.27 1.27)) (justify left bottom)) (uuid fe7d60c9-620b-4aeb-94b5-4bc071a2b54d) ) (global_label "GND" (shape input) (at 134.62 60.96 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 00475afc-148e-4ab8-bed4-3185ddfe90f9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.3364 61.0394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "AGND" (shape input) (at 241.3 111.76 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 04950cea-1ba0-4eb1-a373-58a2658c01e1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 233.9279 111.8394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "GND" (shape input) (at 170.18 86.36 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 04c39ef5-459c-45df-8c6c-9808a60cb4df) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.4636 86.2806 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN3_TACHO_READ" (shape input) (at 170.18 78.74 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 0618a8d4-dfec-4b96-918f-8a0783b022a4) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.0102 78.8194 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN3_TACHO_GEN" (shape output) (at 170.18 91.44 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 0f5bdeec-d99f-4b9a-9d8d-8292592bf770) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 191.7036 91.3606 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "3V3" (shape output) (at 170.18 53.34 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 125a9fd1-f4bc-41f7-815c-21c249ebe4d6) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.1007 53.2606 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN2_TACHO_READ" (shape input) (at 134.62 53.34 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 1920621a-fa42-4edc-b7c5-fba55bae481e) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.7898 53.2606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "GND" (shape input) (at 134.62 48.26 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 193fcca4-6d80-4304-87f8-05b0105b2b50) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.3364 48.3394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN2_TACHO_GEN" (shape output) (at 134.62 88.9 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 19df7d14-e3d4-4066-a136-f5eb5f33c428) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.0964 88.8206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "AGND" (shape input) (at 170.18 60.96 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 212e6a15-d7f7-4f89-9b82-d85e733f5346) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.5521 60.8806 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN1_TACHO_GEN" (shape output) (at 134.62 81.28 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 21dc7a18-7219-4cdb-90d7-6d848cf8fbd9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.0964 81.2006 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN3_PWM_GEN" (shape output) (at 50.8 50.8 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2789e3fd-df86-4401-81de-af2fe268b29e) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 50.7206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN8_PWM_GEN" (shape output) (at 50.8 92.71 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 298b31df-8c5b-43e5-a7c1-952550809118) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 92.6306 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN4_TACHO_GEN" (shape output) (at 170.18 83.82 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 2aaa9ab0-1073-4987-9698-55cc1f1e568d) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 191.7036 83.7406 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN8_TACHO_READ" (shape input) (at 134.62 43.18 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 3351cf97-d102-483a-a454-e36b64f141ed) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.7898 43.2594 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN6_TACHO_READ" (shape input) (at 170.18 66.04 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 3ef46464-e0cc-4af0-9141-dc489800243c) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.0102 65.9606 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN1_TACHO_READ" (shape input) (at 134.62 50.8 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 482b375b-f93b-4cf1-b41b-74e6a88b4bf7) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.7898 50.7206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN7_TACHO_READ" (shape input) (at 134.62 45.72 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 53bbda8d-4efa-40be-97c8-4c19cc83172c) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.7898 45.7994 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN5_TACHO_READ" (shape input) (at 170.18 71.12 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 53ed4868-d4f4-4eb8-9e1a-bcedc61524b9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.0102 71.0406 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "GND" (shape input) (at 170.18 73.66 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 56566558-85dc-401a-921f-18fece923968) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.4636 73.5806 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "GND" (shape input) (at 243.84 151.13 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 5b7320d1-9343-4048-a6ad-daa17b4ed438) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 250.1236 151.2094 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN1_PWM_GEN" (shape output) (at 50.8 55.88 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 60352681-50e4-4655-96c6-c890e1d93a48) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 55.8006 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN2_PWM_READ" (shape input) (at 50.8 143.51 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 6268cfae-5d9d-4cd7-9116-717c0dbe103a) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.0626 143.4306 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "3V3" (shape input) (at 241.3 88.9 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 81a3ba5c-5ac1-4fb0-8daf-bf67952303a1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 235.3793 88.8206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "TEMP1_READ" (shape input) (at 170.18 63.5 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 927e18f5-a7fb-4948-99d2-b9ca09bc99d5) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.386 63.4206 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "RESET" (shape input) (at 250.19 62.23 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 97592fff-296c-4436-ae38-5be0d0edebc9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 242.0317 62.1506 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "MBFAN3_PWM_READ" (shape input) (at 50.8 146.05 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 9abde801-2e8a-487f-8595-b8541beefca9) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.0626 145.9706 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "AUX5V" (shape output) (at 243.84 156.21 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid a1583059-6856-45ca-989a-c2dbd1d305cd) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 252.1798 156.1306 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "GND" (shape input) (at 134.62 73.66 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid a497be01-7bed-4cec-a987-8b665febd59b) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.3364 73.7394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "RESET" (shape input) (at 170.18 68.58 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid ac9fba16-79b8-4f37-99f5-a048f55a4fa5) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 178.3383 68.5006 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "ADC_REF" (shape input) (at 170.18 55.88 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid ae83a3f6-3f75-4909-b54e-02391a5e8602) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.6969 55.8006 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN1_PWM_READ" (shape input) (at 50.8 140.97 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid ae935457-ad04-4756-80fe-19d104b2c391) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.0626 140.8906 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN4_PWM_GEN" (shape output) (at 50.8 48.26 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid af88b0c8-541d-4d0d-9530-a0c28a3bfe6f) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 48.1806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "VBUS" (shape input) (at 177.8 43.18 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid b20f15bc-c7f5-42ac-9ab3-d6e4992b8509) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.1117 43.1006 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "GND" (shape input) (at 243.84 153.67 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid b33015dd-a67b-402d-a870-47077ac88fc1) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 250.1236 153.7494 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "GND" (shape input) (at 134.62 86.36 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid b7635d5a-eb4a-410e-9449-f1748b5bf9b7) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.3364 86.4394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN7_PWM_GEN" (shape output) (at 50.8 95.25 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid bee0df16-2712-41ea-b890-39eaf6399aba) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 95.1706 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN6_PWM_GEN" (shape output) (at 50.8 97.79 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid c51457b9-31ee-423d-bb01-1b5b54200326) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 97.7106 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "TEMP2_READ" (shape input) (at 170.18 58.42 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid d29eb170-d2f6-41b6-83eb-36e080295456) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.386 58.3406 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "FAN5_PWM_GEN" (shape output) (at 50.8 100.33 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid d75d477b-cd31-490b-9b42-737ef0e56180) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 100.2506 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN4_TACHO_READ" (shape input) (at 170.18 76.2 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid d91ef416-b47f-42aa-afac-0bca46e8a7f8) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.0102 76.2794 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "ADC_REF" (shape input) (at 241.3 99.06 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid de849800-a33b-44d7-89dc-cf35ac5f49ac) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 230.7831 99.1394 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "AUX12V" (shape output) (at 269.24 148.59 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid e094048c-7dea-42a4-8ef7-b5af67b2489d) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 278.7893 148.6694 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "MBFAN4_PWM_READ" (shape input) (at 50.8 148.59 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid f78a8906-bc23-4eb5-aa07-ed6cf611578a) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.0626 148.5106 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 50.8 53.34 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid fa6523e1-f03d-4fe2-b7ab-7059b01b96fe) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.8121 53.2606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (symbol (lib_id "Device:R") (at 264.16 118.11 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 00d03321-5580-4405-8c0a-820cab392953) (property "Reference" "R49" (id 0) (at 266.7 116.8399 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0" (id 1) (at 266.7 119.3799 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 262.382 118.11 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 264.16 118.11 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid e629e4f8-19a9-40f2-b250-b42f630b5327)) (pin "2" (uuid e42d30bd-cd0a-4349-8f61-beeea3ad8561)) ) (symbol (lib_id "Device:C_Small") (at 44.45 63.5 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0113ec05-ff50-4170-824e-aedf99bcdf74) (property "Reference" "C1" (id 0) (at 46.99 62.2362 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 46.99 64.7762 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 44.45 63.5 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 44.45 63.5 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 67e55334-eb2f-410b-b257-7b4a96741fd9)) (pin "2" (uuid 0b69a9c8-0d79-419a-beb2-f797f270c351)) ) (symbol (lib_id "power:GND") (at 46.99 157.48 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 03aaff8c-8b54-49d5-970a-5054db91686d) (property "Reference" "#PWR09" (id 0) (at 46.99 163.83 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 49.53 158.7499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 46.99 157.48 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 46.99 157.48 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 41c40d98-b45e-4229-96bf-70cc556e500f)) ) (symbol (lib_id "power:GND") (at 207.01 50.8 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 04b797da-5249-4122-a53b-b30e5069e3d7) (property "Reference" "#PWR014" (id 0) (at 207.01 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 207.01 55.88 0)) (property "Footprint" "" (id 2) (at 207.01 50.8 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 207.01 50.8 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d6c18276-1969-4455-9a42-a45e83745563)) ) (symbol (lib_id "power:GND") (at 49.53 189.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0cda9c0d-4446-4ac2-9248-7bf1aef08fda) (property "Reference" "#PWR02" (id 0) (at 49.53 195.58 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 49.53 194.31 0)) (property "Footprint" "" (id 2) (at 49.53 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 49.53 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2fc7642e-e62d-47fa-a356-d55ac2eefcf5)) ) (symbol (lib_id "power:+3.3V") (at 104.14 135.89 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0fb68177-2cf3-4057-b947-2c9b7323b465) (property "Reference" "#PWR013" (id 0) (at 100.33 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 107.95 135.8899 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 104.14 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 104.14 135.89 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a8aa6b30-ccd5-4f6f-a5be-816d1cfb2234)) ) (symbol (lib_id "power:GND") (at 97.79 189.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 12000ee0-df48-4de5-8c39-efac9b30715d) (property "Reference" "#PWR011" (id 0) (at 97.79 195.58 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 97.79 194.31 0)) (property "Footprint" "" (id 2) (at 97.79 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 97.79 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid b58279ca-1e60-49be-a910-b9ff493d04d9)) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 238.76 153.67 180) (unit 1) (in_bom yes) (on_board yes) (uuid 12249567-7763-407d-99ba-d9d9fb75ec7b) (property "Reference" "J3" (id 0) (at 236.22 153.6701 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "Floppy Power Connector" (id 1) (at 250.19 160.02 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_TE-Connectivity:TE 171826-4 Floppy 4-pin" (id 2) (at 238.76 153.67 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 238.76 153.67 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid cf49fb02-24c6-4fa6-a7f2-2ed4b4b779e2)) (pin "2" (uuid 072652e6-8b86-4a8f-8cbe-d16cff5c4e10)) (pin "3" (uuid 35fdabc1-f06e-4933-873f-0b16294cba68)) (pin "4" (uuid 743fe5e5-6fe6-4fd4-8562-29ed348f8d59)) ) (symbol (lib_id "Switch:SW_Push") (at 271.78 62.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 21c2b408-da95-4394-b5b2-e408611b3d07) (property "Reference" "SW1" (id 0) (at 271.78 54.61 0)) (property "Value" "SW_Push" (id 1) (at 271.78 57.15 0)) (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm_SMD_2" (id 2) (at 271.78 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 271.78 57.15 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 27296091-6781-4efc-a66b-9e778af17046)) (pin "2" (uuid 9d12283e-8c5a-41fb-b03b-8ecd86226e38)) ) (symbol (lib_id "power:GND") (at 91.44 162.56 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 22d7280c-be03-4b3b-a754-8a7c826a914e) (property "Reference" "#PWR012" (id 0) (at 91.44 168.91 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 93.98 163.8299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 91.44 162.56 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 91.44 162.56 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid f02c9e5e-f62d-42eb-955d-4930b2a56a6b)) ) (symbol (lib_id "power:+5V") (at 222.25 34.29 270) (unit 1) (in_bom yes) (on_board yes) (uuid 3ae20417-8153-4c5b-a17b-4c3a720ed7fc) (property "Reference" "#PWR015" (id 0) (at 218.44 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 226.06 34.29 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 222.25 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 222.25 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 309e026f-d966-461c-b853-f480206cdd87)) ) (symbol (lib_id "Reference_Voltage:LM4040DBZ-3") (at 264.16 105.41 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 424316b7-e2a3-4008-bbc5-a6a4ca971456) (property "Reference" "U6" (id 0) (at 266.7 104.1399 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LM4040DBZ-3" (id 1) (at 266.7 106.6799 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 269.24 105.41 0) (effects (font (size 1.27 1.27) italic) hide) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (id 3) (at 264.16 105.41 0) (effects (font (size 1.27 1.27) italic) hide) ) (pin "1" (uuid 05784861-7629-4a85-9935-24d25e47a54f)) (pin "2" (uuid 02fbf521-5543-40ce-b316-97d45e6714a9)) ) (symbol (lib_id "Device:C_Small") (at 44.45 107.95 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 42518183-bf63-4b15-8194-3d4f57ca461e) (property "Reference" "C2" (id 0) (at 46.99 106.6862 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 46.99 109.2262 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 44.45 107.95 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 44.45 107.95 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 74176d8e-dcfb-4fbb-a8e5-ba3f3d188662)) (pin "2" (uuid 170162eb-d3f5-4677-b587-100600a60d59)) ) (symbol (lib_id "power:PWR_FLAG") (at 191.77 45.72 0) (unit 1) (in_bom yes) (on_board yes) (uuid 46e541df-d4ae-46b6-a15f-5026d6bcbcff) (property "Reference" "#FLG01" (id 0) (at 191.77 43.815 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 191.77 40.64 0)) (property "Footprint" "" (id 2) (at 191.77 45.72 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 191.77 45.72 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid b9a1e3b4-4797-4f1c-aed6-184578a9e2f8)) ) (symbol (lib_id "Device:R") (at 264.16 93.98 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 46efb677-f647-4e2b-b34d-dc07526879da) (property "Reference" "R48" (id 0) (at 266.7 92.7099 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "330" (id 1) (at 266.7 95.2499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 262.382 93.98 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 264.16 93.98 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid ce51771f-1ce8-4835-b128-9d341ceaf2ff)) (pin "2" (uuid a421bd39-dbf7-4537-ac40-19f294144d16)) ) (symbol (lib_id "power:GND") (at 276.86 66.04 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4bdb64de-c5e2-44a1-aa92-4e88036c30fa) (property "Reference" "#PWR016" (id 0) (at 276.86 72.39 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 276.86 71.12 0)) (property "Footprint" "" (id 2) (at 276.86 66.04 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 276.86 66.04 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 295f4690-5164-4c76-a2ae-2de4b239ab6a)) ) (symbol (lib_id "MCU_RaspberryPi_and_Boards:Pico") (at 152.4 67.31 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 59ed5389-2c86-4bc9-a31e-24c4a6d03b24) (property "Reference" "U4" (id 0) (at 152.4 35.56 0)) (property "Value" "Pico" (id 1) (at 152.4 38.1 0)) (property "Footprint" "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (id 2) (at 152.4 67.31 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 152.4 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a63b44f1-ea5e-4f13-b9b3-c183c5766b10)) (pin "10" (uuid ae300eb0-4d90-4667-9ac8-30dc063fea66)) (pin "11" (uuid 7a642457-bf94-4069-aeb3-f6bdf53027ce)) (pin "12" (uuid 2a372351-0249-4dbf-b843-d1115abe6c23)) (pin "13" (uuid cab1c7ac-3cbc-4b3e-8949-a302dafe62f3)) (pin "14" (uuid 8b57cad7-714d-4a24-ac8c-022f84f02a29)) (pin "15" (uuid 0d075e9c-23a6-4ed3-b65a-edb4381a9128)) (pin "16" (uuid 1ea46041-4719-4ad7-8407-ca25f9b1e9c1)) (pin "17" (uuid 049d00e8-1a76-4940-a5fb-b3e1cf5ab1cb)) (pin "18" (uuid 62be4e75-f9e5-4e23-a56f-552f2717bd4c)) (pin "19" (uuid 4ad44b68-5278-49b8-be99-4f5740f18cbe)) (pin "2" (uuid 044ce540-1b40-47a5-ac8e-8567b3613fc6)) (pin "20" (uuid 352f3812-5061-4d56-b744-146ca85be583)) (pin "21" (uuid abd569bb-0e47-46a3-9ef3-f24815830d31)) (pin "22" (uuid 3c75c43b-77c8-490f-836c-24811ce20668)) (pin "23" (uuid 59f771eb-610c-41b4-9fe9-f4aa0cd36fb7)) (pin "24" (uuid 35f2cd52-8449-4e71-b3d3-68f55e4f212f)) (pin "25" (uuid 03afcb68-3462-4044-a799-eed9b01289ae)) (pin "26" (uuid ad255c78-9d3e-40cf-aebc-08a18736f74c)) (pin "27" (uuid 43d2ec59-1409-4fa4-9166-59df0d59b1be)) (pin "28" (uuid 8e792de5-914f-4c01-b363-c046734dca15)) (pin "29" (uuid 6ebd8e1c-3412-4e91-853a-f50ca94c1761)) (pin "3" (uuid bea30cce-6c19-462a-b123-e232df3d4b9b)) (pin "30" (uuid 3d55c6ef-b5b6-4181-98e7-56916a947575)) (pin "31" (uuid f151cb85-5b35-41dc-83e5-f5f14d11f572)) (pin "32" (uuid 12e4cbf0-c33e-4f70-b642-86eed6213bbe)) (pin "33" (uuid be50869c-2d23-4f53-9ed5-69165e5355dc)) (pin "34" (uuid 445f5899-f7fa-4000-a351-c64542952a9b)) (pin "35" (uuid b842d565-4f7f-4475-bab3-844734dd14e5)) (pin "36" (uuid f646b943-6ef8-4fa1-853f-cdc8e6c9ffe4)) (pin "37" (uuid cd845bad-2bbd-4604-bb4c-5a28fb51bb55)) (pin "38" (uuid 6c8d1982-af4a-4686-b8f0-562fb74f1a22)) (pin "39" (uuid 4a2c07c3-4fd8-4ef2-a11f-a4906d131c29)) (pin "4" (uuid 4248c574-29b7-48f6-9cb7-f1f59031b094)) (pin "40" (uuid 72633d1b-112c-4d79-8d35-50d2f80fe8c3)) (pin "41" (uuid 79a69a04-b150-4b88-8adb-e5c57776d907)) (pin "42" (uuid 255d9c0f-be4d-47fb-b2eb-60c13f7a7afb)) (pin "43" (uuid dc51d744-d6bd-4464-b94b-bd99229acf7a)) (pin "5" (uuid 8099da11-5e38-4b42-8055-cc1d73216c85)) (pin "6" (uuid 10523738-2db5-4266-b7d5-83c1545c5bb4)) (pin "7" (uuid 3a801c55-c78c-470f-8f19-6eca2b0ee295)) (pin "8" (uuid e46be3b6-e021-4b94-96af-b96e9cd4da10)) (pin "9" (uuid e67203dc-9d4c-49d5-b51e-5bfe862a3dfd)) ) (symbol (lib_id "Device:C_Small") (at 91.44 153.67 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5d5f6209-62e0-449e-9e51-2777855b3905) (property "Reference" "C3" (id 0) (at 93.98 152.4062 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 93.98 154.9462 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 91.44 153.67 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 91.44 153.67 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8ad7716f-a6f5-4a3e-b558-fbe70219d2d3)) (pin "2" (uuid 713a509f-cf7a-4fac-ac43-bc18e3e7e72b)) ) (symbol (lib_id "power:PWR_FLAG") (at 256.54 113.03 180) (unit 1) (in_bom yes) (on_board yes) (uuid 625371b5-54a4-43de-8588-11187e5d8ae2) (property "Reference" "#FLG0102" (id 0) (at 256.54 114.935 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 251.46 118.11 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "" (id 2) (at 256.54 113.03 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 256.54 113.03 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 5ee5afa1-28f8-402d-9d63-1ad6ed2abfae)) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 73.66 186.69 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 63465697-0038-4a5a-931e-e383d18d8993) (property "Reference" "H3" (id 0) (at 76.2 184.1499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "MountingHole_Pad" (id 1) (at 76.2 186.6899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 73.66 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 73.66 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 6bc4a5b6-72a7-456a-bc75-3be399593048)) ) (symbol (lib_id "SN74AHCT125PW:SN74AHCT125PW") (at 68.58 90.17 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 66392125-6956-4edb-8ca8-2997bbab50ec) (property "Reference" "U2" (id 0) (at 68.58 113.03 0)) (property "Value" "SN74AHCT125QDRQ1" (id 1) (at 68.58 110.49 0)) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 68.58 90.17 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (id 3) (at 68.58 90.17 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (pin "1" (uuid b2fb94f2-fc18-47c4-9472-8a79f65838b1)) (pin "10" (uuid bcb7933d-0d94-45b9-b30f-ee867ce46763)) (pin "11" (uuid 2e0431db-9da6-4431-9d4e-85c078d2eb1e)) (pin "12" (uuid 64d96dab-8a5c-443c-9240-d2441b583001)) (pin "13" (uuid 7e509ef5-1ff2-47a1-8119-99aa086d9413)) (pin "14" (uuid d154cdb6-0a2b-4d15-9ad6-741a6a58ccfc)) (pin "2" (uuid 0df1b466-cda8-4730-96a0-313e66419041)) (pin "3" (uuid ba44c294-e5ad-4f9e-9487-b21ac03058d4)) (pin "4" (uuid 5ba81ffe-ce47-4337-92e4-8c8c5f00718a)) (pin "5" (uuid c6edc19e-9841-496b-ac9f-1e1121f1b9fe)) (pin "6" (uuid 78bafe6a-cb85-48a3-bd72-5c8d0e3fc5bc)) (pin "7" (uuid 4c457d39-3c3e-426c-bcea-a46dde995d6b)) (pin "8" (uuid 6178156d-475b-4615-a657-a820d71e0510)) (pin "9" (uuid 80223e6b-6a90-4261-9055-030ae69cbd0c)) ) (symbol (lib_id "Device:C_Small") (at 207.01 41.91 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 685754bc-e5a9-4515-bcc4-b4a7b928d1db) (property "Reference" "C4" (id 0) (at 209.55 40.6462 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 209.55 43.1862 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 207.01 41.91 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 207.01 41.91 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid cfd3f77a-ce3d-42c6-92c3-9d6d257b448c)) (pin "2" (uuid b5c79864-0a65-49ac-af1a-336585771462)) ) (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 173.99 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 876ade33-6b93-4690-a10c-6369295dc457) (property "Reference" "#LOGO1" (id 0) (at 276.86 167.005 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "Logo_Open_Hardware_Small" (id 1) (at 276.86 179.705 0) (effects (font (size 1.27 1.27)) hide) ) (property "Footprint" "Symbol:OSHW-Logo_7.5x8mm_Copper" (id 2) (at 276.86 173.99 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 276.86 173.99 0) (effects (font (size 1.27 1.27)) hide) ) ) (symbol (lib_id "power:GND") (at 25.4 189.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 8f0d3fed-2a42-496b-9baf-a165e10a736f) (property "Reference" "#PWR01" (id 0) (at 25.4 195.58 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 25.4 194.31 0)) (property "Footprint" "" (id 2) (at 25.4 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 25.4 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 666d8b9e-fcd5-4795-b865-21337d99152f)) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 97.79 186.69 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 91796faf-4963-43e3-be77-8c6bb9373a7f) (property "Reference" "H4" (id 0) (at 100.33 184.1499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "MountingHole_Pad" (id 1) (at 100.33 186.6899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 97.79 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 97.79 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 97157546-2806-48e4-92d6-17deba114302)) ) (symbol (lib_id "power:+5V") (at 30.48 105.41 90) (unit 1) (in_bom yes) (on_board yes) (uuid 9cb62419-1ec9-453c-b5c0-0bedca31f503) (property "Reference" "#PWR04" (id 0) (at 34.29 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 26.67 105.41 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 30.48 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 30.48 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 68e8ef83-209a-46d6-8118-ffab544861ce)) ) (symbol (lib_id "Device:C_Small") (at 243.84 105.41 0) (unit 1) (in_bom yes) (on_board yes) (uuid 9fda019a-5350-4524-b5e4-0e13d75d61d1) (property "Reference" "C29" (id 0) (at 237.49 104.14 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 236.22 106.68 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 243.84 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 243.84 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid bc31c7d2-ffd7-40b0-9482-436067ae52e0)) (pin "2" (uuid 14f05954-02bf-434f-84f9-6d3672624abb)) ) (symbol (lib_id "power:GND") (at 73.66 189.23 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a17f3f6d-73e9-42f5-922d-377a07660f6a) (property "Reference" "#PWR010" (id 0) (at 73.66 195.58 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 73.66 194.31 0)) (property "Footprint" "" (id 2) (at 73.66 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 73.66 189.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 27edf7eb-87af-4101-bb4b-a66095a160b3)) ) (symbol (lib_id "power:GND") (at 46.99 33.02 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid aafb7b41-4736-44f5-ab4b-339174550157) (property "Reference" "#PWR07" (id 0) (at 46.99 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 49.53 34.2899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 46.99 33.02 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 46.99 33.02 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid cea449ce-07e5-445d-a678-0300db9013ac)) ) (symbol (lib_id "Device:R") (at 259.08 62.23 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid acf00741-1e6b-4573-832b-01221b598fad) (property "Reference" "R1" (id 0) (at 259.08 55.88 90)) (property "Value" "1k" (id 1) (at 259.08 58.42 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 259.08 64.008 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 259.08 62.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 0910a185-289b-40e3-8fb6-54d7f7286aa8)) (pin "2" (uuid ec074aab-08bf-408a-9b96-861de416ec28)) ) (symbol (lib_id "SN74AHCT125PW:SN74AHCT125PW") (at 68.58 45.72 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid adcaffeb-6e87-4ff0-afa6-7bf8442be64b) (property "Reference" "U1" (id 0) (at 68.58 68.58 0)) (property "Value" "SN74AHCT125QDRQ1" (id 1) (at 68.58 66.04 0)) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 68.58 45.72 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (id 3) (at 68.58 45.72 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (pin "1" (uuid 2f34fbfd-3312-477b-b701-121fc77d5848)) (pin "10" (uuid 79bbdbf8-f0d4-4c38-aa4f-8a3f92f69118)) (pin "11" (uuid 6b777928-5b7f-47dc-abcf-ceb2a8e18614)) (pin "12" (uuid 15f9b026-10aa-473e-84f3-da690f58bb16)) (pin "13" (uuid 1cbedb1a-9687-46f4-aca3-dc9563346a95)) (pin "14" (uuid 50ecac09-402a-41e9-b72b-55d215a9fa3e)) (pin "2" (uuid 6d1e4641-d185-4c2c-97a5-3be145b35f1d)) (pin "3" (uuid 7c56ce82-f2cf-49fa-ac6e-319f6fa584b9)) (pin "4" (uuid 0bc924c7-55c4-4c90-a881-1684ad3c9f8e)) (pin "5" (uuid 77364b93-edb6-42bb-b30c-43183d11b107)) (pin "6" (uuid 71f76554-7dac-453f-9642-3d6afe7a7617)) (pin "7" (uuid bafb999f-9f37-47b6-bfb8-9b9f66aa2220)) (pin "8" (uuid 8303d2f6-1303-4fd4-9ad6-8b36e436d400)) (pin "9" (uuid 8a38b771-684d-4edf-8d94-5a1e6ca17b30)) ) (symbol (lib_id "CD74HC4050M:CD74HC4050M") (at 68.58 148.59 0) (unit 1) (in_bom yes) (on_board yes) (uuid bdd45721-57d2-4880-b454-a09119643f5a) (property "Reference" "U3" (id 0) (at 68.58 166.37 0)) (property "Value" "CD74HC4050NSR" (id 1) (at 68.58 168.91 0)) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 68.58 148.59 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (id 3) (at 68.58 148.59 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (pin "1" (uuid 29ed350d-b134-49f7-a982-78ce01792b40)) (pin "10" (uuid f0d712ae-36eb-48e3-afb6-bd0c337e80ea)) (pin "11" (uuid 6fadd989-f881-48cb-a649-bcbe8e0250fa)) (pin "12" (uuid 3da1762f-9a08-4c53-877d-5108a5cfac8b)) (pin "14" (uuid a7135468-f11b-4e86-b776-d41d6f97de0b)) (pin "15" (uuid f9bdc9b4-91e7-42e2-a534-22d575b7f4c3)) (pin "2" (uuid 300e3404-d254-4eb5-b9f3-0d37e31021fc)) (pin "3" (uuid 3211730b-780a-4e42-a799-8399e392fa4b)) (pin "4" (uuid 2ef5e8a1-d42c-4d45-bd74-91858928c1b1)) (pin "5" (uuid f1cfc053-da86-46c0-90bb-a3fff52638fb)) (pin "6" (uuid cf69afb6-8a5c-4fa6-8321-24649a35efdd)) (pin "7" (uuid b5daeb35-2626-42b4-8f80-394177bb45f1)) (pin "8" (uuid 1866805e-88c0-4cc7-bd77-6a741dca4d9c)) (pin "9" (uuid c7c404b6-929d-4049-838f-ae8609ed3831)) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 152.4 116.84 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid c4e2a9d9-a6f9-43d1-bed9-e44c798b38ba) (property "Reference" "J2" (id 0) (at 157.48 115.5699 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "Pico Debug" (id 1) (at 157.48 118.1099 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 152.4 116.84 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 152.4 116.84 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 6459f1ee-d0da-44cf-9ca8-30b1acd8882c)) (pin "2" (uuid 8b05ab06-960e-45f5-9ab3-f362568f4501)) (pin "3" (uuid 6dd34119-e865-406d-b58e-b52d11ee2047)) ) (symbol (lib_id "power:GND") (at 44.45 110.49 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid c526abfd-2bc7-437d-99d0-a96dfe3bbc5e) (property "Reference" "#PWR06" (id 0) (at 44.45 116.84 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 46.99 111.7599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 44.45 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 44.45 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9110036a-5b83-40c2-be92-af6bd1f7fe9d)) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 25.4 186.69 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid cbfea856-81cc-4920-8136-231416e676cf) (property "Reference" "H1" (id 0) (at 27.94 184.1499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "MountingHole_Pad" (id 1) (at 27.94 186.6899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 25.4 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 25.4 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid ab36bf70-0043-4db6-aabd-62b615c4d6d2)) ) (symbol (lib_id "power:PWR_FLAG") (at 256.54 97.79 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid d62382f8-9ab4-4a55-ada9-6abd4e0cc693) (property "Reference" "#FLG0101" (id 0) (at 256.54 95.885 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 256.54 92.71 0)) (property "Footprint" "" (id 2) (at 256.54 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 256.54 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7618e572-bceb-4295-876c-15d22ba3a8a6)) ) (symbol (lib_id "Device:Polyfuse") (at 257.81 148.59 90) (unit 1) (in_bom yes) (on_board yes) (uuid d6fa37d5-c99d-42ed-a304-9560a607f338) (property "Reference" "F1" (id 0) (at 257.81 144.78 90)) (property "Value" "Polyfuse 3A" (id 1) (at 257.81 152.4 90)) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (id 2) (at 262.89 147.32 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Datasheet" "~" (id 3) (at 257.81 148.59 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 49bcf17e-17ff-404f-b614-ee25b01661c6)) (pin "2" (uuid c0c2d983-245b-428e-9305-2479779b2635)) ) (symbol (lib_id "power:GND") (at 46.99 77.47 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e00622ed-5963-4f24-8ca3-4156621128f2) (property "Reference" "#PWR08" (id 0) (at 46.99 83.82 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 49.53 78.7399 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 46.99 77.47 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 46.99 77.47 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a26fd422-6458-447b-82a1-4cc985900de7)) ) (symbol (lib_id "power:GND") (at 44.45 66.04 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid f1270d61-b904-4fb6-a21c-60838b39d33e) (property "Reference" "#PWR05" (id 0) (at 44.45 72.39 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 46.99 67.3099 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 44.45 66.04 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 44.45 66.04 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 509c0ba5-48a2-48f3-8fee-83eebe7171d5)) ) (symbol (lib_id "Device:D_Schottky") (at 214.63 34.29 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid f76a7a68-4c79-4b83-9c71-551344defaba) (property "Reference" "D1" (id 0) (at 214.3125 27.94 0)) (property "Value" "SM5819PL 1A 40V" (id 1) (at 214.3125 30.48 0)) (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 214.63 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 214.63 34.29 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c74a0cf9-b984-4429-83bc-31da56f62a2b)) (pin "2" (uuid 59edaabb-f71c-43ec-a4cb-b9954cc074c3)) ) (symbol (lib_id "power:GND") (at 264.16 123.19 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid fa2deb6c-69aa-4fd2-8dc6-262f17f64052) (property "Reference" "#PWR082" (id 0) (at 264.16 129.54 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 264.16 128.27 0)) (property "Footprint" "" (id 2) (at 264.16 123.19 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 264.16 123.19 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 60f9df87-4cdd-42a3-a9f1-65449bbcf5ce)) ) (symbol (lib_id "power:+5V") (at 30.48 60.96 90) (unit 1) (in_bom yes) (on_board yes) (uuid fb0c09fb-eb10-423d-a2ff-19df142b215b) (property "Reference" "#PWR03" (id 0) (at 34.29 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 26.67 60.96 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 30.48 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 30.48 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid b27d10aa-d70c-44e6-a702-253c6072f2d6)) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 49.53 186.69 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid fc6c8e15-a262-4b02-88cd-fdf30196bc30) (property "Reference" "H2" (id 0) (at 52.07 184.1499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "MountingHole_Pad" (id 1) (at 52.07 186.6899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 49.53 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 49.53 186.69 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a6f8bf61-c9e4-4d10-a0f0-e5e25a074e51)) ) (symbol (lib_id "Device:C_Polarized") (at 251.46 105.41 0) (unit 1) (in_bom yes) (on_board yes) (uuid fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768) (property "Reference" "C30" (id 0) (at 254 105.41 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10uF 16V" (id 1) (at 251.46 107.95 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (id 2) (at 252.4252 109.22 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 251.46 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7ea02e0b-fb26-409a-b5cd-535f77cfb691)) (pin "2" (uuid f5275cea-17a0-406c-90e1-a31fc6de4104)) ) (sheet (at 144.78 176.53) (size 26.67 3.81) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 20cc4b05-e726-4b05-ab1c-64b5db072e26) (property "Sheet name" "Power Rails" (id 0) (at 144.78 175.8184 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "power.kicad_sch" (id 1) (at 144.78 180.9246 0) (effects (font (size 1.27 1.27)) (justify left top)) ) ) (sheet (at 144.78 187.96) (size 26.67 3.81) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 4d4dd17e-947f-4b3c-bd12-d4039fccae25) (property "Sheet name" "Fan Channels" (id 0) (at 144.78 187.2484 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "fan_channels.kicad_sch" (id 1) (at 144.78 192.3546 0) (effects (font (size 1.27 1.27)) (justify left top)) ) ) (sheet (at 144.78 163.83) (size 26.67 3.81) (fields_autoplaced) (stroke (width 0.1524) (type solid) (color 0 0 0 0)) (fill (color 0 0 0 0.0000)) (uuid 4e9d9bbb-bb4b-4f71-a57a-a915249deb73) (property "Sheet name" "Sensors" (id 0) (at 144.78 163.1184 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Sheet file" "sensors.kicad_sch" (id 1) (at 144.78 168.2246 0) (effects (font (size 1.27 1.27)) (justify left top)) ) ) (sheet_instances (path "/" (page "1")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "2")) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26" (page "3")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (page "4")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (page "5")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (page "6")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (page "7")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (page "8")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (page "9")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (page "10")) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (page "11")) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (page "12")) ) (symbol_instances (path "/46e541df-d4ae-46b6-a15f-5026d6bcbcff" (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/0afd2e10-551d-403d-8ebb-a3569d0a20dd" (reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/03017935-9d7e-40b4-b57d-451e5ec91686" (reference "#FLG03") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/be6a7bdf-cba9-48c9-9015-b1568cb26ba6" (reference "#FLG04") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/631d19df-47e9-46b5-9f03-a8b36e85564d" (reference "#FLG05") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/35b8e5b7-86db-4767-83b8-139f441e0d15" (reference "#FLG06") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/d62382f8-9ab4-4a55-ada9-6abd4e0cc693" (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/625371b5-54a4-43de-8588-11187e5d8ae2" (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "") ) (path "/876ade33-6b93-4690-a10c-6369295dc457" (reference "#LOGO1") (unit 1) (value "Logo_Open_Hardware_Small") (footprint "Symbol:OSHW-Logo_7.5x8mm_Copper") ) (path "/8f0d3fed-2a42-496b-9baf-a165e10a736f" (reference "#PWR01") (unit 1) (value "GND") (footprint "") ) (path "/0cda9c0d-4446-4ac2-9248-7bf1aef08fda" (reference "#PWR02") (unit 1) (value "GND") (footprint "") ) (path "/fb0c09fb-eb10-423d-a2ff-19df142b215b" (reference "#PWR03") (unit 1) (value "+5V") (footprint "") ) (path "/9cb62419-1ec9-453c-b5c0-0bedca31f503" (reference "#PWR04") (unit 1) (value "+5V") (footprint "") ) (path "/f1270d61-b904-4fb6-a21c-60838b39d33e" (reference "#PWR05") (unit 1) (value "GND") (footprint "") ) (path "/c526abfd-2bc7-437d-99d0-a96dfe3bbc5e" (reference "#PWR06") (unit 1) (value "GND") (footprint "") ) (path "/aafb7b41-4736-44f5-ab4b-339174550157" (reference "#PWR07") (unit 1) (value "GND") (footprint "") ) (path "/e00622ed-5963-4f24-8ca3-4156621128f2" (reference "#PWR08") (unit 1) (value "GND") (footprint "") ) (path "/03aaff8c-8b54-49d5-970a-5054db91686d" (reference "#PWR09") (unit 1) (value "GND") (footprint "") ) (path "/a17f3f6d-73e9-42f5-922d-377a07660f6a" (reference "#PWR010") (unit 1) (value "GND") (footprint "") ) (path "/12000ee0-df48-4de5-8c39-efac9b30715d" (reference "#PWR011") (unit 1) (value "GND") (footprint "") ) (path "/22d7280c-be03-4b3b-a754-8a7c826a914e" (reference "#PWR012") (unit 1) (value "GND") (footprint "") ) (path "/0fb68177-2cf3-4057-b947-2c9b7323b465" (reference "#PWR013") (unit 1) (value "+3.3V") (footprint "") ) (path "/04b797da-5249-4122-a53b-b30e5069e3d7" (reference "#PWR014") (unit 1) (value "GND") (footprint "") ) (path "/3ae20417-8153-4c5b-a17b-4c3a720ed7fc" (reference "#PWR015") (unit 1) (value "+5V") (footprint "") ) (path "/4bdb64de-c5e2-44a1-aa92-4e88036c30fa" (reference "#PWR016") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/63c85907-552d-427b-b6dc-44bd6402f24b" (reference "#PWR017") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/242abfd5-7f21-493a-949c-6d41d9016bca" (reference "#PWR018") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/24f718b1-d993-465c-bf01-cb240a846711" (reference "#PWR019") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/231beb94-88a4-409d-9621-815e55e223c6" (reference "#PWR020") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d790c3d5-6cf5-4e32-8ce5-0b9652f4a2d8" (reference "#PWR021") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/f439cb10-1939-4245-a4c2-a7da433360da" (reference "#PWR022") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c3cdc302-f140-4326-b94e-dae12a3dae83" (reference "#PWR023") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/3fe83a7c-04e5-4926-a03d-3377434c80f4" (reference "#PWR024") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/e6779268-e0bd-4b5d-83c9-6f6e8d695ccc" (reference "#PWR025") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/9370a547-cff7-4cf5-b1b1-9154c18cd2f1" (reference "#PWR026") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/7ad3c56a-fe9a-4831-b136-d7236a73b27f" (reference "#PWR027") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/56c5a2e3-0b53-4216-866a-a6e240228ed3" (reference "#PWR028") (unit 1) (value "GND") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/73191297-a3db-406e-bde7-d8a9700d1092" (reference "#PWR029") (unit 1) (value "GND") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/401ebed2-9a6b-4f43-85e9-9d349e9ed2dc" (reference "#PWR030") (unit 1) (value "GND") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/d897ff9f-88ca-49e6-a493-27aafac3931d" (reference "#PWR031") (unit 1) (value "GND") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/80fe98ae-b6bb-4c4d-a328-2228685fe207" (reference "#PWR032") (unit 1) (value "+5V") (footprint "") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/c3081ad6-d8e8-417c-b4c4-67183007b70e" (reference "#PWR033") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/a4b3f899-3773-489e-a176-285651826a27" (reference "#PWR034") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/abcdd130-a350-4ca6-b21f-74c28b823a5a" (reference "#PWR035") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/63b4dbd9-7ee9-4e80-899b-e74ed06eb309" (reference "#PWR036") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/77feb705-d8e5-4f1d-9a12-f9f651741e99" (reference "#PWR037") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/497abae2-70e4-47ca-bb15-7d9dfa60d946" (reference "#PWR038") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab" (reference "#PWR039") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/82946f89-b747-42ca-bf80-b90314ffa967" (reference "#PWR040") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb" (reference "#PWR041") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/a4b3f899-3773-489e-a176-285651826a27" (reference "#PWR042") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/abcdd130-a350-4ca6-b21f-74c28b823a5a" (reference "#PWR043") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/63b4dbd9-7ee9-4e80-899b-e74ed06eb309" (reference "#PWR044") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/77feb705-d8e5-4f1d-9a12-f9f651741e99" (reference "#PWR045") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/497abae2-70e4-47ca-bb15-7d9dfa60d946" (reference "#PWR046") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab" (reference "#PWR047") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/82946f89-b747-42ca-bf80-b90314ffa967" (reference "#PWR048") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb" (reference "#PWR049") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/a4b3f899-3773-489e-a176-285651826a27" (reference "#PWR050") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/abcdd130-a350-4ca6-b21f-74c28b823a5a" (reference "#PWR051") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/63b4dbd9-7ee9-4e80-899b-e74ed06eb309" (reference "#PWR052") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/77feb705-d8e5-4f1d-9a12-f9f651741e99" (reference "#PWR053") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/497abae2-70e4-47ca-bb15-7d9dfa60d946" (reference "#PWR054") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab" (reference "#PWR055") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/82946f89-b747-42ca-bf80-b90314ffa967" (reference "#PWR056") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb" (reference "#PWR057") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/a4b3f899-3773-489e-a176-285651826a27" (reference "#PWR058") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/abcdd130-a350-4ca6-b21f-74c28b823a5a" (reference "#PWR059") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/63b4dbd9-7ee9-4e80-899b-e74ed06eb309" (reference "#PWR060") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/77feb705-d8e5-4f1d-9a12-f9f651741e99" (reference "#PWR061") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/497abae2-70e4-47ca-bb15-7d9dfa60d946" (reference "#PWR062") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab" (reference "#PWR063") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/82946f89-b747-42ca-bf80-b90314ffa967" (reference "#PWR064") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb" (reference "#PWR065") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/0aebdc55-e632-4445-9db7-ba8cc31b43b3" (reference "#PWR066") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/0acd508c-e29a-44a1-9369-7c7575a9efb9" (reference "#PWR067") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/2beabec1-a436-4b64-a488-7d07c9d15d77" (reference "#PWR068") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f" (reference "#PWR069") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/0aebdc55-e632-4445-9db7-ba8cc31b43b3" (reference "#PWR070") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/0acd508c-e29a-44a1-9369-7c7575a9efb9" (reference "#PWR071") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/2beabec1-a436-4b64-a488-7d07c9d15d77" (reference "#PWR072") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f" (reference "#PWR073") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/0aebdc55-e632-4445-9db7-ba8cc31b43b3" (reference "#PWR074") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/0acd508c-e29a-44a1-9369-7c7575a9efb9" (reference "#PWR075") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/2beabec1-a436-4b64-a488-7d07c9d15d77" (reference "#PWR076") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f" (reference "#PWR077") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/0aebdc55-e632-4445-9db7-ba8cc31b43b3" (reference "#PWR078") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/0acd508c-e29a-44a1-9369-7c7575a9efb9" (reference "#PWR079") (unit 1) (value "GND") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/2beabec1-a436-4b64-a488-7d07c9d15d77" (reference "#PWR080") (unit 1) (value "+3.3V") (footprint "") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f" (reference "#PWR081") (unit 1) (value "GND") (footprint "") ) (path "/fa2deb6c-69aa-4fd2-8dc6-262f17f64052" (reference "#PWR082") (unit 1) (value "GND") (footprint "") ) (path "/0113ec05-ff50-4170-824e-aedf99bcdf74" (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/42518183-bf63-4b15-8194-3d4f57ca461e" (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/5d5f6209-62e0-449e-9e51-2777855b3905" (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/685754bc-e5a9-4515-bcc4-b4a7b928d1db" (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/9a6664d9-b6d9-4e81-817a-45c56239601e" (reference "C5") (unit 1) (value "10uF 20V") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b1335ea9-16da-44b9-9459-ec64501666b6" (reference "C6") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1" (reference "C7") (unit 1) (value "10uF 16V") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/27625c54-6268-4c25-bed4-fca1fa7ca75b" (reference "C8") (unit 1) (value "10uF 16V") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/4c581f8a-1242-4d72-8273-f872f4434b5d" (reference "C9") (unit 1) (value "DNF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/75bd3244-7746-40bf-b41a-5ea9cec31d77" (reference "C10") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0f52885-ea56-4d9c-874e-233e54e8d5a1" (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/4c581f8a-1242-4d72-8273-f872f4434b5d" (reference "C12") (unit 1) (value "DNF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/75bd3244-7746-40bf-b41a-5ea9cec31d77" (reference "C13") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0f52885-ea56-4d9c-874e-233e54e8d5a1" (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/4c581f8a-1242-4d72-8273-f872f4434b5d" (reference "C15") (unit 1) (value "DNF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/75bd3244-7746-40bf-b41a-5ea9cec31d77" (reference "C16") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0f52885-ea56-4d9c-874e-233e54e8d5a1" (reference "C17") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/4c581f8a-1242-4d72-8273-f872f4434b5d" (reference "C18") (unit 1) (value "DNF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/75bd3244-7746-40bf-b41a-5ea9cec31d77" (reference "C19") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0f52885-ea56-4d9c-874e-233e54e8d5a1" (reference "C20") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/3cd107d3-c6a7-4254-9209-0b9ac70966b7" (reference "C21") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a" (reference "C22") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/3cd107d3-c6a7-4254-9209-0b9ac70966b7" (reference "C23") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a" (reference "C24") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/3cd107d3-c6a7-4254-9209-0b9ac70966b7" (reference "C25") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a" (reference "C26") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/3cd107d3-c6a7-4254-9209-0b9ac70966b7" (reference "C27") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a" (reference "C28") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/9fda019a-5350-4524-b5e4-0e13d75d61d1" (reference "C29") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") ) (path "/fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768" (reference "C30") (unit 1) (value "10uF 16V") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder") ) (path "/f76a7a68-4c79-4b83-9c71-551344defaba" (reference "D1") (unit 1) (value "SM5819PL 1A 40V") (footprint "Diode_SMD:D_SMA") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/ae4c6832-7e1c-4f4b-ac6d-c01372ca166a" (reference "D2") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/14a165bd-0b65-4fb0-9565-152bd6300a32" (reference "D3") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/2fe78790-cca2-409c-b93b-37aabedf28fc" (reference "D4") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6823870e-28cc-4ec1-9b5a-c8beb3288006" (reference "D5") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/e4222b25-30ab-4bc3-8190-1f6c39b74dbb" (reference "D6") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e14cb179-4962-4028-9c28-4efc70e0b4c6" (reference "D7") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/99383412-e91e-4682-9562-162d7ddf01c0" (reference "D8") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2cf2e306-59d7-456f-b02b-64fb5bbcc818" (reference "D9") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/aef1c41f-3561-4727-acbe-d50cf3c63f5d" (reference "D10") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e14cb179-4962-4028-9c28-4efc70e0b4c6" (reference "D11") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/99383412-e91e-4682-9562-162d7ddf01c0" (reference "D12") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2cf2e306-59d7-456f-b02b-64fb5bbcc818" (reference "D13") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/aef1c41f-3561-4727-acbe-d50cf3c63f5d" (reference "D14") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e14cb179-4962-4028-9c28-4efc70e0b4c6" (reference "D15") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/99383412-e91e-4682-9562-162d7ddf01c0" (reference "D16") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2cf2e306-59d7-456f-b02b-64fb5bbcc818" (reference "D17") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/aef1c41f-3561-4727-acbe-d50cf3c63f5d" (reference "D18") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e14cb179-4962-4028-9c28-4efc70e0b4c6" (reference "D19") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/99383412-e91e-4682-9562-162d7ddf01c0" (reference "D20") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2cf2e306-59d7-456f-b02b-64fb5bbcc818" (reference "D21") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/aef1c41f-3561-4727-acbe-d50cf3c63f5d" (reference "D22") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c" (reference "D23") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/b49d0204-e5c4-45fa-965e-427ea584956f" (reference "D24") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8" (reference "D25") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c" (reference "D26") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b49d0204-e5c4-45fa-965e-427ea584956f" (reference "D27") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8" (reference "D28") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c" (reference "D29") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b49d0204-e5c4-45fa-965e-427ea584956f" (reference "D30") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8" (reference "D31") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c" (reference "D32") (unit 1) (value "LED 0805 (green)") (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/b49d0204-e5c4-45fa-965e-427ea584956f" (reference "D33") (unit 1) (value "BAT54C") (footprint "Diode_SMD:D_SOT-23_ANK") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8" (reference "D34") (unit 1) (value "ES1D 1A 200V") (footprint "Diode_SMD:D_SMA_Handsoldering") ) (path "/d6fa37d5-c99d-42ed-a304-9560a607f338" (reference "F1") (unit 1) (value "Polyfuse 3A") (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986" (reference "F2") (unit 1) (value "Polyfuse 0.5A") (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder") ) (path "/cbfea856-81cc-4920-8136-231416e676cf" (reference "H1") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via") ) (path "/fc6c8e15-a262-4b02-88cd-fdf30196bc30" (reference "H2") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via") ) (path "/63465697-0038-4a5a-931e-e383d18d8993" (reference "H3") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via") ) (path "/91796faf-4963-43e3-be77-8c6bb9373a7f" (reference "H4") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via") ) (path "/c4e2a9d9-a6f9-43d1-bed9-e44c798b38ba" (reference "J2") (unit 1) (value "Pico Debug") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/12249567-7763-407d-99ba-d9d9fb75ec7b" (reference "J3") (unit 1) (value "Floppy Power Connector") (footprint "Connector_TE-Connectivity:TE 171826-4 Floppy 4-pin") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/a43df6e2-bedb-4718-8d23-6b27bc7ec28b" (reference "J4") (unit 1) (value "MB Fan1 Input") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2730ff07-61a0-45ab-a12e-c8fb75af936a" (reference "J5") (unit 1) (value "MB Fan2 Input") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/52dfc41f-11f2-4f25-9797-248cc8d74731" (reference "J6") (unit 1) (value "MB Fan3 Input") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8debfacf-b04b-4646-9300-1ff752233c77" (reference "J7") (unit 1) (value "MB Fan4 Input") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/085195bd-ef5f-4321-aa3d-5891d4b1a1f2" (reference "J8") (unit 1) (value "Fan1 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/e0ed2a0d-fc70-41a0-8770-44ea381a0936" (reference "J9") (unit 1) (value "Fan2 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2129e724-3f7f-45d3-89a3-4dd504b3fb79" (reference "J10") (unit 1) (value "Fan3 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/478255ce-6495-40e3-8f35-65ed429a01a4" (reference "J11") (unit 1) (value "Fan4 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/40b85d9e-00ff-491f-88e1-a7f34acc29cf" (reference "J12") (unit 1) (value "Fan5 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/094bbf69-e345-406c-a80f-9e08f85706fd" (reference "J13") (unit 1) (value "Fan6 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a" (reference "J14") (unit 1) (value "Fan7 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/703bdce5-9294-4717-b483-0d8ff4314a65" (reference "J15") (unit 1) (value "Fan8 Output") (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab" (reference "J16") (unit 1) (value "Sensor1") (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2ab9bb49-234a-4ed1-af89-c2604f58121c" (reference "J17") (unit 1) (value "Sensor2") (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/4ad1e273-b8c7-4692-8f20-a03965035fd5" (reference "JP1") (unit 1) (value "Power Selector") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0afb5c6-54db-4986-8460-a37daf921ef8" (reference "JP2") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0afb5c6-54db-4986-8460-a37daf921ef8" (reference "JP3") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0afb5c6-54db-4986-8460-a37daf921ef8" (reference "JP4") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0afb5c6-54db-4986-8460-a37daf921ef8" (reference "JP5") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/844cd271-058e-4a61-b648-3556ed9f378d" (reference "JP6") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/844cd271-058e-4a61-b648-3556ed9f378d" (reference "JP7") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/844cd271-058e-4a61-b648-3556ed9f378d" (reference "JP8") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/844cd271-058e-4a61-b648-3556ed9f378d" (reference "JP9") (unit 1) (value "Fan Power") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5ed15fde-520c-48b7-b7ad-f1dab65ce507" (reference "JP10") (unit 1) (value "NTC Value") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/3be7e346-edf9-40ae-ac38-cc91a8a5fddd" (reference "JP11") (unit 1) (value "NTC Value") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/537d375b-1ca6-4946-95db-66496543d0cb" (reference "Q1") (unit 1) (value "2N7002K") (footprint "Package_TO_SOT_SMD:SOT-23") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/537d375b-1ca6-4946-95db-66496543d0cb" (reference "Q2") (unit 1) (value "2N7002K") (footprint "Package_TO_SOT_SMD:SOT-23") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/537d375b-1ca6-4946-95db-66496543d0cb" (reference "Q3") (unit 1) (value "2N7002K") (footprint "Package_TO_SOT_SMD:SOT-23") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/537d375b-1ca6-4946-95db-66496543d0cb" (reference "Q4") (unit 1) (value "2N7002K") (footprint "Package_TO_SOT_SMD:SOT-23") ) (path "/acf00741-1e6b-4573-832b-01221b598fad" (reference "R1") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5de24edb-0b9c-4f50-ac3f-1caa590a2491" (reference "R2") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5a65fde0-58e9-41b7-bb45-7d350448b336" (reference "R3") (unit 1) (value "330") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/dc0edcf1-e4ae-4d13-8878-e41c43e1c18b" (reference "R4") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/536545a8-ec75-4173-afef-e4439b3a7241" (reference "R5") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/adba1fff-18c7-4fb6-97ae-324d243206c4" (reference "R6") (unit 1) (value "4.99k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1fde763e-90ef-4ddc-b2e5-d750ee01b070" (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/3fb97f3e-520c-4a3d-90e0-f35e2392af78" (reference "R8") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/09870edd-9a18-4370-90d2-0fc6c17d6715" (reference "R9") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ba9485af-39b4-4a7f-afda-f544d55bea86" (reference "R10") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/983de26c-e36c-4d87-9a48-1bbe3c867ff3" (reference "R11") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2b848deb-d45c-40f7-b1cd-3317b89f8ce0" (reference "R12") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ab1976a0-4513-4f4e-8e36-2d488d6ca030" (reference "R13") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e6e8ae2a-5894-4e68-8264-24e364417d34" (reference "R14") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/3fb97f3e-520c-4a3d-90e0-f35e2392af78" (reference "R15") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/09870edd-9a18-4370-90d2-0fc6c17d6715" (reference "R16") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ba9485af-39b4-4a7f-afda-f544d55bea86" (reference "R17") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/983de26c-e36c-4d87-9a48-1bbe3c867ff3" (reference "R18") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2b848deb-d45c-40f7-b1cd-3317b89f8ce0" (reference "R19") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ab1976a0-4513-4f4e-8e36-2d488d6ca030" (reference "R20") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e6e8ae2a-5894-4e68-8264-24e364417d34" (reference "R21") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/3fb97f3e-520c-4a3d-90e0-f35e2392af78" (reference "R22") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/09870edd-9a18-4370-90d2-0fc6c17d6715" (reference "R23") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ba9485af-39b4-4a7f-afda-f544d55bea86" (reference "R24") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/983de26c-e36c-4d87-9a48-1bbe3c867ff3" (reference "R25") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2b848deb-d45c-40f7-b1cd-3317b89f8ce0" (reference "R26") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ab1976a0-4513-4f4e-8e36-2d488d6ca030" (reference "R27") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e6e8ae2a-5894-4e68-8264-24e364417d34" (reference "R28") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/3fb97f3e-520c-4a3d-90e0-f35e2392af78" (reference "R29") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/09870edd-9a18-4370-90d2-0fc6c17d6715" (reference "R30") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ba9485af-39b4-4a7f-afda-f544d55bea86" (reference "R31") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/983de26c-e36c-4d87-9a48-1bbe3c867ff3" (reference "R32") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2b848deb-d45c-40f7-b1cd-3317b89f8ce0" (reference "R33") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ab1976a0-4513-4f4e-8e36-2d488d6ca030" (reference "R34") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e6e8ae2a-5894-4e68-8264-24e364417d34" (reference "R35") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4e28b459-dd74-4c82-9144-e285ed7f5928" (reference "R36") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/713f0faf-9b32-443b-b4b5-18ccafb68231" (reference "R37") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/df0be9dc-7024-4b62-ba66-c4ceeafe3f18" (reference "R38") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4e28b459-dd74-4c82-9144-e285ed7f5928" (reference "R39") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/713f0faf-9b32-443b-b4b5-18ccafb68231" (reference "R40") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/df0be9dc-7024-4b62-ba66-c4ceeafe3f18" (reference "R41") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4e28b459-dd74-4c82-9144-e285ed7f5928" (reference "R42") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/713f0faf-9b32-443b-b4b5-18ccafb68231" (reference "R43") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/df0be9dc-7024-4b62-ba66-c4ceeafe3f18" (reference "R44") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4e28b459-dd74-4c82-9144-e285ed7f5928" (reference "R45") (unit 1) (value "49.9k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/713f0faf-9b32-443b-b4b5-18ccafb68231" (reference "R46") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/df0be9dc-7024-4b62-ba66-c4ceeafe3f18" (reference "R47") (unit 1) (value "680") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/46efb677-f647-4e2b-b34d-dc07526879da" (reference "R48") (unit 1) (value "330") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/00d03321-5580-4405-8c0a-820cab392953" (reference "R49") (unit 1) (value "0") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6f5e15d3-8889-4380-8ba4-82af742cd899" (reference "R50") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5effda4f-f509-4c42-bf3f-632077643ed1" (reference "R51") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f421aed5-1a7c-4cf7-87bd-ce21946df0ca" (reference "R52") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/c9077187-c2d5-4e2d-80b4-68e896790b6b" (reference "R53") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") ) (path "/21c2b408-da95-4394-b5b2-e408611b3d07" (reference "SW1") (unit 1) (value "SW_Push") (footprint "Button_Switch_THT:SW_PUSH_6mm_SMD_2") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/146a1d06-dd1a-482f-b91e-93cbb733b8f4" (reference "TP1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/8fdede93-8ece-4277-83be-04c6588a07ca" (reference "TP2") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/090ff380-a13a-4ca2-90af-d2f76ab346ae" (reference "TP3") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/3d277f57-0771-4531-880e-1192a0f1e347" (reference "TP4") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1f2a473c-c5a0-4e16-b74d-1437e42fa9d1" (reference "TP5") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/db58c802-415a-494f-b94f-f7fa5e445d52" (reference "TP6") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/db58c802-415a-494f-b94f-f7fa5e445d52" (reference "TP7") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/db58c802-415a-494f-b94f-f7fa5e445d52" (reference "TP8") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/db58c802-415a-494f-b94f-f7fa5e445d52" (reference "TP9") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.5mm") ) (path "/adcaffeb-6e87-4ff0-afa6-7bf8442be64b" (reference "U1") (unit 1) (value "SN74AHCT125QDRQ1") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm") ) (path "/66392125-6956-4edb-8ca8-2997bbab50ec" (reference "U2") (unit 1) (value "SN74AHCT125QDRQ1") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm") ) (path "/bdd45721-57d2-4880-b454-a09119643f5a" (reference "U3") (unit 1) (value "CD74HC4050NSR") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm") ) (path "/59ed5389-2c86-4bc9-a31e-24c4a6d03b24" (reference "U4") (unit 1) (value "Pico") (footprint "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH") ) (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b685b9c5-84cd-4f37-a40e-eb8f5465d0dd" (reference "U5") (unit 1) (value "SPX1117-ADJ") (footprint "Package_TO_SOT_SMD:SOT-223") ) (path "/424316b7-e2a3-4008-bbc5-a6a4ca971456" (reference "U6") (unit 1) (value "LM4040DBZ-3") (footprint "Package_TO_SOT_SMD:SOT-23") ) ) ) ================================================ FILE: boards/fanpico-0804/kicad/power.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid 028ff83f-3fa5-4d87-a092-2685b6e33322) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) (property "Reference" "TP" (id 0) (at 0 6.858 0) (effects (font (size 1.27 1.27))) ) (property "Value" "TestPoint" (id 1) (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 5.08 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 5.08 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "test point tp" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "test point" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "TestPoint_0_1" (circle (center 0 3.302) (radius 0.762) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "TestPoint_1_1" (pin passive line (at 0 0 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.254 1.778 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_Polarized_Small_0_1" (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type outline)) ) (rectangle (start -1.524 0.6858) (end 1.524 0.3048) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 1.524) (xy -0.762 1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.016 1.27) (xy -1.016 1.778) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "C_Polarized_Small_1_1" (pin passive line (at 0 2.54 270) (length 1.8542) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -2.54 90) (length 1.8542) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 0.254 1.778 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "D" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "D" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LED" (id 1) (at 0 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "F" (id 0) (at -2.54 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "Polyfuse" (id 1) (at 2.54 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 1.27 -5.08 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "R" (id 0) (at 2.032 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "R" (id 1) (at 0 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at -1.778 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resistor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "JP" (id 0) (at -2.54 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Jumper_3_Bridged12" (id 1) (at 0 2.794 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Regulator_Linear:LM1117-ADJ" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at -3.81 3.175 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LM1117-ADJ" (id 1) (at 0 3.175 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "linear regulator ldo adjustable positive" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "800mA Low-Dropout Linear Regulator, adjustable output, TO-220/TO-252/TO-263/SOT-223" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "SOT?223* TO?263* TO?252* TO?220*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LM1117-ADJ_0_1" (rectangle (start -5.08 -5.08) (end 5.08 1.905) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) ) (symbol "LM1117-ADJ_1_1" (pin input line (at 0 -7.62 90) (length 2.54) (name "ADJ" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin power_out line (at 7.62 0 180) (length 2.54) (name "VO" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -7.62 0 0) (length 2.54) (name "VI" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+3.3V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 0 3.556 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) hide (name "+5V" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 0 -3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) hide (name "GND" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (id 0) (at 0 1.905 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "pwr" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) ) ) (junction (at 175.26 29.21) (diameter 0) (color 0 0 0 0) (uuid 0d6e2ce9-4a83-4614-a1c6-2896d8d965ca) ) (junction (at 72.39 35.56) (diameter 0) (color 0 0 0 0) (uuid 1324f68e-3f66-4bcb-ad20-cfa4e8d48fbe) ) (junction (at 152.4 58.42) (diameter 0) (color 0 0 0 0) (uuid 295360cf-ee4d-440e-a32b-a0ee0c9db935) ) (junction (at 237.49 29.21) (diameter 0) (color 0 0 0 0) (uuid 4c73bfaa-dea2-422d-863a-96a04d09c6a1) ) (junction (at 237.49 80.01) (diameter 0) (color 0 0 0 0) (uuid 6085b4e1-1f8b-48ec-acdb-fd85553e42d8) ) (junction (at 231.14 80.01) (diameter 0) (color 0 0 0 0) (uuid 63654d43-f757-49f5-a7a4-b2b333a03904) ) (junction (at 213.36 29.21) (diameter 0) (color 0 0 0 0) (uuid 6c57b5d5-7086-4a24-b79d-624268d804cd) ) (junction (at 196.85 29.21) (diameter 0) (color 0 0 0 0) (uuid 6f095a89-114c-4f7e-b7c9-3e7dc213e815) ) (junction (at 140.97 29.21) (diameter 0) (color 0 0 0 0) (uuid 80b6ead8-eb08-46d1-a087-4ae924840747) ) (junction (at 213.36 80.01) (diameter 0) (color 0 0 0 0) (uuid 92527673-be04-4bd1-8305-6af910966a9e) ) (junction (at 231.14 29.21) (diameter 0) (color 0 0 0 0) (uuid 97d8af26-13c9-4c5f-9489-763afbcaa5f1) ) (junction (at 184.15 58.42) (diameter 0) (color 0 0 0 0) (uuid a44e3f52-9a15-406b-8e1e-7eafe1d62cef) ) (junction (at 152.4 29.21) (diameter 0) (color 0 0 0 0) (uuid a5305bac-19bc-475a-b7b0-218d11c8a355) ) (junction (at 175.26 41.91) (diameter 0) (color 0 0 0 0) (uuid a851c512-8f77-4f46-8a15-29ba207e17d9) ) (junction (at 144.78 62.23) (diameter 0) (color 0 0 0 0) (uuid ad5081b7-9408-4c55-a07b-acc1ffa9dfca) ) (junction (at 175.26 58.42) (diameter 0) (color 0 0 0 0) (uuid c8721b86-c795-4cae-adf8-1a7a6136e421) ) (junction (at 144.78 29.21) (diameter 0) (color 0 0 0 0) (uuid d609b045-b818-413d-8bd7-c32a13cef10a) ) (junction (at 144.78 58.42) (diameter 0) (color 0 0 0 0) (uuid dab80573-24a5-4d12-bb65-ff635d54695c) ) (junction (at 213.36 124.46) (diameter 0) (color 0 0 0 0) (uuid ea9d622c-abdb-422c-a911-35ec1e1138eb) ) (junction (at 231.14 124.46) (diameter 0) (color 0 0 0 0) (uuid ebed54b1-d5a7-4f45-8b9b-5703e12747dc) ) (junction (at 93.98 35.56) (diameter 0) (color 0 0 0 0) (uuid ed5f4811-5edd-483f-b7f6-9d1e485fb88e) ) (junction (at 196.85 58.42) (diameter 0) (color 0 0 0 0) (uuid f8689401-17d4-4228-8fc1-93e983e3e6cd) ) (wire (pts (xy 184.15 50.8) (xy 184.15 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 028950f4-bef2-4cbe-9a33-a3dd6a71321d) ) (wire (pts (xy 165.1 36.83) (xy 165.1 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 061db99e-deab-4ffc-89a0-9df41413c93c) ) (wire (pts (xy 142.24 62.23) (xy 144.78 62.23)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0dbead97-c8e8-49d4-ae60-80a32c9301a0) ) (wire (pts (xy 231.14 124.46) (xy 213.36 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 13170e57-9c1c-41a7-9858-fd30d0dd0fa2) ) (wire (pts (xy 231.14 80.01) (xy 237.49 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 18ea9279-14ec-4f2d-ba83-51e05e603deb) ) (wire (pts (xy 231.14 29.21) (xy 237.49 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1fa60e24-bdb5-4b54-9ba1-242e986100e0) ) (wire (pts (xy 196.85 36.83) (xy 196.85 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2121f181-8d22-4040-b1e5-4398d7228ad2) ) (wire (pts (xy 144.78 62.23) (xy 144.78 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 21557492-85dd-41ed-9262-989cf42befd4) ) (wire (pts (xy 213.36 80.01) (xy 231.14 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2aded452-f504-4f03-a076-548465232ec2) ) (wire (pts (xy 125.73 29.21) (xy 129.54 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2bf20a9e-ba7f-4cde-94b6-20c9a0779c8e) ) (wire (pts (xy 175.26 41.91) (xy 175.26 44.45)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2f3c6d8e-581c-4b2e-bf7d-a9cdedc021a8) ) (wire (pts (xy 152.4 29.21) (xy 157.48 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 36c4922a-64f4-402a-be2e-56b47c4822ab) ) (wire (pts (xy 93.98 35.56) (xy 121.92 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3a2caa59-e3b4-48dc-93bb-785b8ec894c0) ) (wire (pts (xy 209.55 29.21) (xy 213.36 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3a5b4a82-7987-48f2-a345-4716621e4ca6) ) (wire (pts (xy 196.85 29.21) (xy 201.93 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3c79c968-ef02-4cc7-8148-1cb6969386e6) ) (wire (pts (xy 213.36 93.98) (xy 213.36 91.44)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3de98d5f-595f-4c1c-a8bc-e8320e5d4cd6) ) (wire (pts (xy 172.72 29.21) (xy 175.26 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 46ffb84b-cd87-4b66-b7a9-8725206f69c2) ) (wire (pts (xy 93.98 55.88) (xy 93.98 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 527d596f-ae05-412c-90e2-c31451909bba) ) (wire (pts (xy 63.5 35.56) (xy 72.39 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 528c3c49-6b82-432d-8a78-d054f5caf583) ) (wire (pts (xy 144.78 36.83) (xy 144.78 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5297f216-50eb-4556-be39-94fd70cc5745) ) (wire (pts (xy 175.26 39.37) (xy 175.26 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5a838764-fdbe-4c2f-8ddd-58a5aa169724) ) (wire (pts (xy 196.85 41.91) (xy 196.85 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5cb79303-dad1-4856-bee3-a66f14ec97e2) ) (wire (pts (xy 231.14 124.46) (xy 231.14 128.27)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 606ad181-be65-4215-91ef-9bd8d1bd38ad) ) (wire (pts (xy 175.26 29.21) (xy 175.26 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 662c5b79-2f9c-4dff-b8ba-21b972d1581e) ) (wire (pts (xy 213.36 139.7) (xy 213.36 137.16)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 67c2175d-daf9-4462-9d89-ff28037e0bde) ) (wire (pts (xy 213.36 101.6) (xy 213.36 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 68de57ac-038c-423d-9c01-18a694f49867) ) (wire (pts (xy 152.4 58.42) (xy 175.26 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 79d374d1-e055-4e2b-9817-91ba266ac8a0) ) (wire (pts (xy 165.1 41.91) (xy 175.26 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7c2eae6c-553a-4662-8c97-23af07dedb7c) ) (wire (pts (xy 93.98 35.56) (xy 93.98 39.37)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7d8095ea-709e-403c-967c-1f115dd03bd6) ) (wire (pts (xy 144.78 58.42) (xy 144.78 62.23)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 81b76953-fdb9-440f-b9bf-d5d88a7af884) ) (wire (pts (xy 140.97 29.21) (xy 144.78 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 82eabb8f-719a-4b79-9930-0fb8907c6cd6) ) (wire (pts (xy 231.14 82.55) (xy 231.14 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 83026252-dd5b-4063-b1c6-b0255100cfac) ) (wire (pts (xy 93.98 58.42) (xy 144.78 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 899203bc-a634-4416-b35a-271e69ef5882) ) (wire (pts (xy 254 80.01) (xy 237.49 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8c263423-237a-4eda-8162-18bd6618b21b) ) (wire (pts (xy 213.36 29.21) (xy 213.36 33.02)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8ca4aba5-7438-4fc7-929d-694f656ce194) ) (wire (pts (xy 144.78 29.21) (xy 152.4 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8e789506-b14f-4139-9fbd-4c9e4150a674) ) (wire (pts (xy 184.15 58.42) (xy 196.85 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 924ad17e-87dc-466e-9ecd-708486820e3a) ) (wire (pts (xy 72.39 35.56) (xy 93.98 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9648eae9-b473-4dc5-9551-e384fad29c1d) ) (wire (pts (xy 63.5 177.8) (xy 72.39 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9e68962c-0597-4ff5-b42d-9fc7b50bc4a0) ) (wire (pts (xy 144.78 41.91) (xy 144.78 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a1fc5aea-ea2a-4c21-9d1f-1f6fc017bdf8) ) (wire (pts (xy 93.98 46.99) (xy 93.98 48.26)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid abbf254e-6709-43b1-934f-ad896d11b8a0) ) (wire (pts (xy 152.4 29.21) (xy 152.4 36.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid acb7986d-7240-4a82-ba35-d16785b62188) ) (wire (pts (xy 237.49 29.21) (xy 252.73 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b053bfca-5141-49fb-b31d-cb039956e323) ) (wire (pts (xy 144.78 58.42) (xy 152.4 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b695eb0c-10b2-4b92-86c1-39971818c939) ) (wire (pts (xy 231.14 29.21) (xy 231.14 31.75)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b83ac7e1-ae33-48db-967e-75fa52cffd5b) ) (wire (pts (xy 213.36 29.21) (xy 231.14 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ba6eff22-dc75-426e-aa60-b634bfec783b) ) (wire (pts (xy 175.26 52.07) (xy 175.26 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c07a7704-11a1-4240-a2f0-e08014e8da61) ) (wire (pts (xy 213.36 43.18) (xy 213.36 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c7b868c9-2bb8-4cc3-b568-6a4b13859c70) ) (wire (pts (xy 137.16 29.21) (xy 140.97 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cb5e1a95-b86f-4dcc-ba68-746f23b5cb1e) ) (wire (pts (xy 213.36 50.8) (xy 213.36 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cfc6eb53-5338-45e2-b660-71655399984b) ) (wire (pts (xy 213.36 147.32) (xy 213.36 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d058f378-5aa6-4f03-8ace-ef6560686c6d) ) (wire (pts (xy 175.26 58.42) (xy 184.15 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d5082638-32c4-4781-a5ec-6b9ad17c7ab8) ) (wire (pts (xy 184.15 45.72) (xy 184.15 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d973601e-8aaa-4ed8-92ef-b86b1e281e8f) ) (wire (pts (xy 184.15 41.91) (xy 175.26 41.91)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e5f0aaba-0a61-4dbe-99d1-08926f9b9517) ) (wire (pts (xy 63.5 80.01) (xy 213.36 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e7bac6d2-644a-416a-a5d8-8a88a91ae6ec) ) (wire (pts (xy 152.4 41.91) (xy 152.4 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ec18daec-7f06-479c-8c04-4fc52233c5b4) ) (wire (pts (xy 63.5 124.46) (xy 213.36 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ec817dff-e7ef-492e-8264-380fadc5bcdb) ) (wire (pts (xy 213.36 80.01) (xy 213.36 83.82)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f071de68-a1f6-47bb-8a7a-c6e049926ec3) ) (wire (pts (xy 175.26 29.21) (xy 196.85 29.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f29dfbc1-fb05-4709-bf72-552d658008a4) ) (wire (pts (xy 213.36 124.46) (xy 213.36 129.54)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fb172360-4b51-4746-9422-75bd49ab684b) ) (wire (pts (xy 63.5 22.86) (xy 121.92 22.86)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fbacd240-e4c7-44a7-b48b-ac7aeb4ae5a7) ) (wire (pts (xy 237.49 124.46) (xy 231.14 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fc07276d-4a2d-4d1c-af4e-24eda2f5877b) ) (wire (pts (xy 213.36 58.42) (xy 196.85 58.42)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fd734556-b18c-487c-b6de-67bc81064261) ) (text "Power Rails" (at 16.51 17.78 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 7d750c9d-d7d6-4011-9a1b-8a5d88cec8a2) ) (global_label "AUX5V" (shape input) (at 63.5 177.8 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 33ecb477-2f44-4da4-9d4b-f916f0523599) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.1602 177.7206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "VBUS" (shape input) (at 63.5 124.46 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 3771d436-d487-49e5-83b7-fcd97c1f5d27) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 56.1883 124.3806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "FAN1_PWR" (shape input) (at 63.5 22.86 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 7bad1944-0108-439d-b369-761cb5c3c2be) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 51.4107 22.7806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "3V3" (shape input) (at 63.5 80.01 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid a00767bf-f242-4dfb-832c-ee8e323f4f11) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.5793 79.9306 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "AUX12V" (shape input) (at 63.5 35.56 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid a7fbbebb-dae0-474d-ba96-bdbb68d5e57f) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 53.9507 35.4806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (symbol (lib_id "power:PWR_FLAG") (at 142.24 62.23 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 03017935-9d7e-40b4-b57d-451e5ec91686) (property "Reference" "#FLG03" (id 0) (at 140.335 62.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 138.43 62.2299 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 142.24 62.23 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 142.24 62.23 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 18d7f1b2-69a6-4733-97df-00d281ff1613)) ) (symbol (lib_id "Connector:TestPoint") (at 237.49 29.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 090ff380-a13a-4ca2-90af-d2f76ab346ae) (property "Reference" "TP3" (id 0) (at 240.03 24.6379 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 240.03 27.1779 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 242.57 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 242.57 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 3992c1ff-fcae-4e80-be45-bb241ba63f36)) ) (symbol (lib_id "power:PWR_FLAG") (at 140.97 29.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0afd2e10-551d-403d-8ebb-a3569d0a20dd) (property "Reference" "#FLG02" (id 0) (at 140.97 27.305 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 140.97 24.13 0)) (property "Footprint" "" (id 2) (at 140.97 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 140.97 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid b9a9cd4b-d07a-4f35-a4df-82c7c4694f56)) ) (symbol (lib_id "Connector:TestPoint") (at 72.39 35.56 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 146a1d06-dd1a-482f-b91e-93cbb733b8f4) (property "Reference" "TP1" (id 0) (at 74.93 30.9879 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 74.93 33.5279 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 77.47 35.56 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 77.47 35.56 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid ef5d9d84-d099-4d33-a46c-424424bf98fa)) ) (symbol (lib_id "Device:D") (at 133.35 29.21 180) (unit 1) (in_bom yes) (on_board yes) (uuid 14a165bd-0b65-4fb0-9565-152bd6300a32) (property "Reference" "D3" (id 0) (at 133.35 31.75 0)) (property "Value" "ES1D 1A 200V" (id 1) (at 133.35 34.29 0)) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (id 2) (at 133.35 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 133.35 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid ba70beda-274f-468b-b8a2-3813abb44b54)) (pin "2" (uuid f3d1557e-197c-4dbe-96d6-1cac9319a82d)) ) (symbol (lib_id "Connector:TestPoint") (at 237.49 124.46 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 1f2a473c-c5a0-4e16-b74d-1437e42fa9d1) (property "Reference" "TP5" (id 0) (at 240.03 119.8879 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 240.03 122.4279 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 242.57 124.46 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 242.57 124.46 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2b83157f-2856-4fce-b599-2fd3b10333a7)) ) (symbol (lib_id "Device:R") (at 213.36 133.35 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 1fde763e-90ef-4ddc-b2e5-d750ee01b070) (property "Reference" "R7" (id 0) (at 215.9 132.0799 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10k" (id 1) (at 215.9 134.6199 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 211.582 133.35 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 133.35 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 78d336ba-1d45-453f-9418-f4cf06fef625)) (pin "2" (uuid 55707ce6-f84d-4d75-9aa2-a9ad19f844fc)) ) (symbol (lib_id "Device:C_Polarized_Small") (at 196.85 39.37 0) (unit 1) (in_bom yes) (on_board yes) (uuid 27625c54-6268-4c25-bed4-fca1fa7ca75b) (property "Reference" "C8" (id 0) (at 199.39 36.83 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10uF 16V" (id 1) (at 199.39 39.37 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (id 2) (at 196.85 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 196.85 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 22dc2c98-8d2b-431e-b86a-f393bbea74b2)) (pin "2" (uuid f497ede9-bde6-4106-aea6-35c91bbc22f6)) ) (symbol (lib_id "Device:LED") (at 213.36 46.99 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2fe78790-cca2-409c-b93b-37aabedf28fc) (property "Reference" "D4" (id 0) (at 217.17 47.3074 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 217.17 49.8474 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 213.36 46.99 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 46.99 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 51ddc963-3d30-483d-9bc2-4132f910f060)) (pin "2" (uuid 0156ed4a-ea56-4722-abd1-8c53663c89b8)) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 128.27 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 35b8e5b7-86db-4767-83b8-139f441e0d15) (property "Reference" "#FLG06" (id 0) (at 231.14 130.175 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 231.14 133.35 0)) (property "Footprint" "" (id 2) (at 231.14 128.27 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 231.14 128.27 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 4938ca89-1a60-4caa-8779-14f9b0939b54)) ) (symbol (lib_id "Connector:TestPoint") (at 237.49 80.01 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3d277f57-0771-4531-880e-1192a0f1e347) (property "Reference" "TP4" (id 0) (at 240.03 75.4379 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 240.03 77.9779 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 242.57 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 242.57 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid b9e44226-4c53-41eb-bece-b2e01f4e15cf)) ) (symbol (lib_id "power:GND") (at 213.36 105.41 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 401ebed2-9a6b-4f43-85e9-9d349e9ed2dc) (property "Reference" "#PWR030" (id 0) (at 213.36 111.76 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 213.36 110.49 0)) (property "Footprint" "" (id 2) (at 213.36 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 213.36 105.41 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7cd3cb58-bf4e-48e0-9688-82d0eaadfb11)) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 121.92 29.21 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4ad1e273-b8c7-4692-8f20-a03965035fd5) (property "Reference" "JP1" (id 0) (at 119.38 27.9399 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "Power Selector" (id 1) (at 119.38 30.4799 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 121.92 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 121.92 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 01f8a431-8f1d-484b-adfb-52bf91b14015)) (pin "2" (uuid fad53864-49be-498c-8ddb-8660fa441076)) (pin "3" (uuid bf161ecb-0a1b-4f32-b753-7de2c5acf0fc)) ) (symbol (lib_id "Device:R") (at 213.36 36.83 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 536545a8-ec75-4173-afef-e4439b3a7241) (property "Reference" "R5" (id 0) (at 215.9 35.5599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10k" (id 1) (at 215.9 38.0999 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 211.582 36.83 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 36.83 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid bb5c2178-e587-4bcb-a28a-1cc92e885dee)) (pin "2" (uuid 2590e1e1-9277-4805-91e0-0ff82117dd4b)) ) (symbol (lib_id "Device:R") (at 175.26 35.56 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5a65fde0-58e9-41b7-bb45-7d350448b336) (property "Reference" "R3" (id 0) (at 177.8 34.2899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "330" (id 1) (at 177.8 36.8299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 173.482 35.56 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 175.26 35.56 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 94fbde5b-d434-4b17-9453-e8674feca3f2)) (pin "2" (uuid 18aad770-9410-43bf-9964-de860ebb2447)) ) (symbol (lib_id "Device:C_Polarized_Small") (at 184.15 48.26 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1) (property "Reference" "C7" (id 0) (at 186.69 46.4438 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10uF 16V" (id 1) (at 186.69 48.9838 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (id 2) (at 184.15 48.26 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 184.15 48.26 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2238d5cc-8204-4d20-9342-cd574c67db3a)) (pin "2" (uuid 8d686ed2-73c8-42ff-a47d-31da8e433ade)) ) (symbol (lib_id "Device:R") (at 93.98 43.18 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5de24edb-0b9c-4f50-ac3f-1caa590a2491) (property "Reference" "R2" (id 0) (at 96.52 41.9099 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "49.9k" (id 1) (at 96.52 44.4499 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.202 43.18 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 93.98 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 884e25f2-d181-4c22-bfed-b33fe1c3f7a8)) (pin "2" (uuid 4a5a6558-8530-4ef8-95bf-a273cf95d5cb)) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 82.55 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 631d19df-47e9-46b5-9f03-a8b36e85564d) (property "Reference" "#FLG05" (id 0) (at 231.14 84.455 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 231.14 87.63 0)) (property "Footprint" "" (id 2) (at 231.14 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 231.14 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 6a852513-0ca2-449a-8391-47d4d2773d84)) ) (symbol (lib_id "Device:LED") (at 213.36 97.79 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 6823870e-28cc-4ec1-9b5a-c8beb3288006) (property "Reference" "D5" (id 0) (at 217.17 98.1074 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 217.17 100.6474 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 213.36 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 97.79 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 14af03e9-cb54-48a8-bd97-db8352bc404b)) (pin "2" (uuid f5956280-eabc-48e6-b057-01316bad4e23)) ) (symbol (lib_id "power:GND") (at 144.78 63.5 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 73191297-a3db-406e-bde7-d8a9700d1092) (property "Reference" "#PWR029" (id 0) (at 144.78 69.85 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 144.78 68.58 0)) (property "Footprint" "" (id 2) (at 144.78 63.5 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 144.78 63.5 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 72785cea-756d-4fe3-a390-f369061f060c)) ) (symbol (lib_id "power:+5V") (at 252.73 29.21 270) (unit 1) (in_bom yes) (on_board yes) (uuid 80fe98ae-b6bb-4c4d-a328-2228685fe207) (property "Reference" "#PWR032" (id 0) (at 248.92 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 256.54 29.21 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 252.73 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 252.73 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c83113b7-e000-4a47-b128-d3671363e710)) ) (symbol (lib_id "Connector:TestPoint") (at 72.39 177.8 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 8fdede93-8ece-4277-83be-04c6588a07ca) (property "Reference" "TP2" (id 0) (at 74.93 173.2279 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "TestPoint" (id 1) (at 74.93 175.7679 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 77.47 177.8 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 77.47 177.8 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 80f2eefd-1bfb-40e8-a7e3-cb02b6d95db3)) ) (symbol (lib_id "Device:Polyfuse") (at 205.74 29.21 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 957eba50-6218-4e9d-a149-15ba007c2986) (property "Reference" "F2" (id 0) (at 205.74 22.86 90)) (property "Value" "Polyfuse 0.5A" (id 1) (at 205.74 25.4 90)) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 210.82 27.94 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Datasheet" "~" (id 3) (at 205.74 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid e4b2258e-bc50-4151-87f8-7e6b714f7d85)) (pin "2" (uuid 702dd0c1-69e1-46a2-8bbf-7ea1ed37c4d2)) ) (symbol (lib_id "Device:C_Polarized_Small") (at 144.78 39.37 0) (unit 1) (in_bom yes) (on_board yes) (uuid 9a6664d9-b6d9-4e81-817a-45c56239601e) (property "Reference" "C5" (id 0) (at 139.7 38.1 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "10uF 20V" (id 1) (at 133.35 40.64 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (id 2) (at 144.78 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 144.78 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 0f7544a4-ab8e-4f9b-91e3-5ba4e92e1ac4)) (pin "2" (uuid d281f145-6fd2-4512-9610-2764ef377070)) ) (symbol (lib_id "Device:R") (at 213.36 87.63 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid adba1fff-18c7-4fb6-97ae-324d243206c4) (property "Reference" "R6" (id 0) (at 215.9 86.3599 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "4.99k" (id 1) (at 215.9 88.8999 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 211.582 87.63 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 87.63 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8ab6a180-794c-4ae0-bfa8-8c147a7fcef0)) (pin "2" (uuid 9328c8c3-dcd3-4f00-a39f-fade45afabd1)) ) (symbol (lib_id "Device:LED") (at 93.98 52.07 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid ae4c6832-7e1c-4f4b-ac6d-c01372ca166a) (property "Reference" "D2" (id 0) (at 97.79 52.3874 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 97.79 54.9274 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 93.98 52.07 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 93.98 52.07 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8dc2c278-649b-4b66-a670-554bd943e6f6)) (pin "2" (uuid 5afd1d61-5397-4e1a-9839-3af491bcebc1)) ) (symbol (lib_id "Device:C_Small") (at 152.4 39.37 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b1335ea9-16da-44b9-9459-ec64501666b6) (property "Reference" "C6" (id 0) (at 154.94 38.1062 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "0.1uF" (id 1) (at 154.94 40.6462 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 152.4 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 152.4 39.37 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2a91e0f5-8fd2-4fe3-9f2f-3caaf609a99b)) (pin "2" (uuid ff020eb8-22f7-4c53-80dd-4c5acbbe8264)) ) (symbol (lib_id "Regulator_Linear:LM1117-ADJ") (at 165.1 29.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b685b9c5-84cd-4f37-a40e-eb8f5465d0dd) (property "Reference" "U5" (id 0) (at 165.1 21.59 0)) (property "Value" "SPX1117-ADJ" (id 1) (at 165.1 24.13 0)) (property "Footprint" "Package_TO_SOT_SMD:SOT-223" (id 2) (at 165.1 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (id 3) (at 165.1 29.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a03290dc-5bf4-4876-a5ed-0f8ec60ae61c)) (pin "2" (uuid a6a10f38-3a15-4ce8-b02b-272c6aa02efd)) (pin "3" (uuid db402ed9-a87f-4cb2-b55d-934694f81f2e)) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 31.75 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid be6a7bdf-cba9-48c9-9015-b1568cb26ba6) (property "Reference" "#FLG04" (id 0) (at 231.14 33.655 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "PWR_FLAG" (id 1) (at 231.14 36.83 0)) (property "Footprint" "" (id 2) (at 231.14 31.75 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 231.14 31.75 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 70589d68-386a-47b4-abbe-9d76d68b515b)) ) (symbol (lib_id "power:+3.3V") (at 254 80.01 270) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid c3081ad6-d8e8-417c-b4c4-67183007b70e) (property "Reference" "#PWR033" (id 0) (at 250.19 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3.3V" (id 1) (at 257.81 80.0099 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "" (id 2) (at 254 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 254 80.01 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 5ea5c4e1-6059-4cb8-87a2-8a8c96f0d1b1)) ) (symbol (lib_id "power:GND") (at 213.36 152.4 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid d897ff9f-88ca-49e6-a493-27aafac3931d) (property "Reference" "#PWR031" (id 0) (at 213.36 158.75 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 213.36 157.48 0)) (property "Footprint" "" (id 2) (at 213.36 152.4 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (id 3) (at 213.36 152.4 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c40bebcb-0c29-498a-ba2a-a58d3b3289e0)) ) (symbol (lib_id "Device:R") (at 175.26 48.26 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid dc0edcf1-e4ae-4d13-8878-e41c43e1c18b) (property "Reference" "R4" (id 0) (at 177.8 46.9899 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "1k" (id 1) (at 177.8 49.5299 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 173.482 48.26 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 175.26 48.26 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 1ee86bd9-870e-432d-a2ab-540290a16777)) (pin "2" (uuid 8a0775a2-408d-4757-a8ce-641d2be1ef58)) ) (symbol (lib_id "Device:LED") (at 213.36 143.51 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e4222b25-30ab-4bc3-8190-1f6c39b74dbb) (property "Reference" "D6" (id 0) (at 217.17 143.8274 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "LED 0805 (green)" (id 1) (at 217.17 146.3674 90) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 213.36 143.51 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 213.36 143.51 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 80f557a6-2d76-417e-bf0b-8bda063ba0f9)) (pin "2" (uuid 5a420f41-f924-4d93-b20d-c5b157a32cc2)) ) ) ================================================ FILE: boards/fanpico-0804/kicad/sensors.kicad_sch ================================================ (kicad_sch (version 20211123) (generator eeschema) (uuid d585006f-9358-47f4-9303-a822a0a26736) (paper "A4") (title_block (title "FanPico-0804 v1.3") (date "2022-08-18") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "J" (id 0) (at 0 2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Conn_01x02_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) (rectangle (start -1.27 1.27) (end 1.27 -3.81) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "R" (id 0) (at 2.032 0 90) (effects (font (size 1.27 1.27))) ) (property "Value" "R" (id 1) (at 0 0 90) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at -1.778 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Resistor" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) (property "Reference" "JP" (id 0) (at -2.54 -2.54 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Jumper_3_Bridged12" (id 1) (at 0 2.794 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) (color 0 0 0 0)) (fill (type none)) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) ) ) ) (junction (at 67.31 64.77) (diameter 0) (color 0 0 0 0) (uuid 8d6d84ae-550d-4bb8-8a37-b11861e3bd19) ) (junction (at 91.44 64.77) (diameter 0) (color 0 0 0 0) (uuid 939d4274-578d-4ff5-acad-753b7ce36b72) ) (junction (at 91.44 107.95) (diameter 0) (color 0 0 0 0) (uuid d8d4ae09-0e89-46ca-a91c-f33fd37d22d0) ) (junction (at 67.31 107.95) (diameter 0) (color 0 0 0 0) (uuid ec087b1e-38da-453c-b7d3-39ceb9080c5c) ) (wire (pts (xy 67.31 54.61) (xy 135.89 54.61)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 00f410b0-15a8-4b41-9022-820ff4814c96) ) (wire (pts (xy 135.89 80.01) (xy 67.31 80.01)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 077f93c1-3305-4f8a-9a42-aa76eb0b30d1) ) (wire (pts (xy 57.15 107.95) (xy 67.31 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0e3b0446-4649-4f96-941f-62a4a86d933e) ) (wire (pts (xy 120.65 110.49) (xy 135.89 110.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 19ef21f2-d39f-47dd-a593-8ed51ac6b64a) ) (wire (pts (xy 107.95 116.84) (xy 116.84 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 21e9e787-9a7d-467f-8a1d-5fc2791834e6) ) (wire (pts (xy 67.31 54.61) (xy 67.31 64.77)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 21ed8d62-3f95-43c3-8d54-5eba4cc044ac) ) (wire (pts (xy 91.44 60.96) (xy 91.44 64.77)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 249bbe64-b288-4ede-8987-d810752beafe) ) (wire (pts (xy 67.31 64.77) (xy 91.44 64.77)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2d993955-0e92-47f4-b697-c5f53634de79) ) (wire (pts (xy 100.33 60.96) (xy 91.44 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 3ded02f6-3261-4d93-927b-60a0b8eda6be) ) (wire (pts (xy 91.44 73.66) (xy 100.33 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 41b1de41-5ad9-4bdb-9a97-c9361c02ba95) ) (wire (pts (xy 57.15 64.77) (xy 67.31 64.77)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 49d6104e-9176-4f0e-aaa8-29e669a60268) ) (wire (pts (xy 67.31 121.92) (xy 67.31 110.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4bff4d15-1446-4517-839c-9433d6f48458) ) (wire (pts (xy 67.31 107.95) (xy 91.44 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4ce5bf56-c452-4e1d-bbe1-41bcfbeccefb) ) (wire (pts (xy 67.31 97.79) (xy 135.89 97.79)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 60db9e27-0374-439a-8f9a-939b0aadab74) ) (wire (pts (xy 67.31 80.01) (xy 67.31 67.31)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6606d0e8-ac80-422e-aa4d-41d982eaa8cd) ) (wire (pts (xy 107.95 60.96) (xy 116.84 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 67d87b8d-be84-41ad-b997-4fc83a9e1381) ) (wire (pts (xy 91.44 116.84) (xy 91.44 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7e5af5d1-cb1f-4eed-976a-64077d39aa3b) ) (wire (pts (xy 67.31 97.79) (xy 67.31 107.95)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8916f103-fe47-4f1e-8585-81d31b6e452b) ) (wire (pts (xy 107.95 73.66) (xy 116.84 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 98f28219-1903-423f-8493-20aabedec9cb) ) (wire (pts (xy 67.31 67.31) (xy 57.15 67.31)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a16a9bb7-db53-4fc6-b3c4-23725deea405) ) (wire (pts (xy 57.15 110.49) (xy 67.31 110.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a435e9a5-7616-4099-96f2-ede933ae7ed2) ) (wire (pts (xy 107.95 104.14) (xy 116.84 104.14)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bd7ac43c-c4c0-4af3-b888-4db24c4cc50b) ) (wire (pts (xy 120.65 67.31) (xy 135.89 67.31)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid bdff4292-449a-408e-b737-210c242b7c9f) ) (wire (pts (xy 91.44 64.77) (xy 91.44 73.66)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cdfeb42f-6696-4573-abda-3f7515f0d439) ) (wire (pts (xy 91.44 107.95) (xy 91.44 104.14)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d20efc9b-0707-4e0d-9198-fcb9c7cd8e92) ) (wire (pts (xy 91.44 104.14) (xy 100.33 104.14)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d5580b6d-1547-4903-bbc4-fd0ab88a6689) ) (wire (pts (xy 100.33 116.84) (xy 91.44 116.84)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e078663f-f6ee-41ff-befc-1a2c87c034c5) ) (wire (pts (xy 135.89 121.92) (xy 67.31 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e63f4856-db36-46c6-9c02-2a6c34cdff98) ) (text "Temperature Sensors" (at 19.05 17.78 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 490ff861-9b1a-489c-8371-d793232cccff) ) (global_label "AGND" (shape input) (at 135.89 121.92 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 636ec398-3d70-4359-98b8-4ebd9a3143be) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.2621 121.9994 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "ADC_REF" (shape input) (at 135.89 67.31 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid 7988ac95-4624-454c-b52e-ec62e32b2c5c) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.4069 67.2306 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "ADC_REF" (shape input) (at 135.89 110.49 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid aee7a529-6ac6-4a80-9568-e26a40779fdc) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.4069 110.4106 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "TEMP1_READ" (shape input) (at 135.89 54.61 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid c05c976b-1ed4-430c-aa71-ee5c6fb1a5ed) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 150.096 54.5306 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "TEMP2_READ" (shape input) (at 135.89 97.79 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid f07b76b4-4f46-4a6e-9724-a7602f5db188) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 150.096 97.7106 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (global_label "AGND" (shape input) (at 135.89 80.01 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) (uuid fb13280b-75f6-4af9-8280-b5793cf708fe) (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.2621 79.9306 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 52.07 110.49 180) (unit 1) (in_bom yes) (on_board yes) (uuid 2ab9bb49-234a-4ed1-af89-c2604f58121c) (property "Reference" "J17" (id 0) (at 49.53 104.14 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "Sensor2" (id 1) (at 48.26 115.57 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (id 2) (at 52.07 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 52.07 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 78a9b55b-caff-4420-a6ae-19a7131d97be)) (pin "2" (uuid 30a06f66-9fee-4536-b302-01811e2778bb)) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 116.84 110.49 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3be7e346-edf9-40ae-ac38-cc91a8a5fddd) (property "Reference" "JP11" (id 0) (at 114.3 110.4899 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "NTC Value" (id 1) (at 113.03 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 116.84 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 116.84 110.49 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 7bf78f94-95ac-4ab3-bf3d-785debf049f1)) (pin "2" (uuid 832fc1dd-d97f-47a8-b089-1a01c63b87d9)) (pin "3" (uuid 61950248-00c8-472e-9ead-1d6c883cb5d8)) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 116.84 67.31 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5ed15fde-520c-48b7-b7ad-f1dab65ce507) (property "Reference" "JP10" (id 0) (at 114.3 67.3099 90) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "NTC Value" (id 1) (at 114.3 68.5799 90) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 116.84 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 116.84 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c8b2177d-d956-405f-ac31-a3d3e8631cfa)) (pin "2" (uuid d23eb086-ba4e-416f-9e49-d3cb4da12214)) (pin "3" (uuid 1a5a4d35-b646-48e3-aa61-8f8ad827f86b)) ) (symbol (lib_id "Device:R") (at 104.14 116.84 90) (unit 1) (in_bom yes) (on_board yes) (uuid 5effda4f-f509-4c42-bf3f-632077643ed1) (property "Reference" "R51" (id 0) (at 104.14 114.3 90)) (property "Value" "10k" (id 1) (at 104.14 119.38 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 104.14 118.618 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 104.14 116.84 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 23e8f6d6-dc05-413b-bdf4-3972f7aaa452)) (pin "2" (uuid a8fb4119-650e-4ac6-94c5-3cf1ab9f9325)) ) (symbol (lib_id "Device:R") (at 104.14 73.66 90) (unit 1) (in_bom yes) (on_board yes) (uuid 6f5e15d3-8889-4380-8ba4-82af742cd899) (property "Reference" "R50" (id 0) (at 104.14 71.12 90)) (property "Value" "10k" (id 1) (at 104.14 76.2 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 104.14 75.438 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 104.14 73.66 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid bb8f7dba-8ef6-4057-b135-05bf0aa71ee1)) (pin "2" (uuid 82f32688-55a7-455e-a0b9-830a1e12ca5f)) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 52.07 67.31 180) (unit 1) (in_bom yes) (on_board yes) (uuid 86718c7d-2943-402b-9e45-e521335cadab) (property "Reference" "J16" (id 0) (at 49.53 60.96 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Value" "Sensor1" (id 1) (at 48.26 72.39 0) (effects (font (size 1.27 1.27)) (justify right)) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (id 2) (at 52.07 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 52.07 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 2211dc9b-c955-4613-93c5-41b96fa1230a)) (pin "2" (uuid 4cb7a894-bb4e-4af1-ac70-43aa5cd340b6)) ) (symbol (lib_id "Device:R") (at 104.14 104.14 90) (unit 1) (in_bom yes) (on_board yes) (uuid c9077187-c2d5-4e2d-80b4-68e896790b6b) (property "Reference" "R53" (id 0) (at 104.14 101.6 90)) (property "Value" "100k" (id 1) (at 104.14 106.68 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 104.14 105.918 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 104.14 104.14 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 0a166a2e-dcb3-46ba-bce7-bef6f3b4889f)) (pin "2" (uuid d772a577-a1d6-4254-a2c8-ccc79c4a513a)) ) (symbol (lib_id "Device:R") (at 104.14 60.96 90) (unit 1) (in_bom yes) (on_board yes) (uuid f421aed5-1a7c-4cf7-87bd-ce21946df0ca) (property "Reference" "R52" (id 0) (at 104.14 58.42 90)) (property "Value" "100k" (id 1) (at 104.14 63.5 90)) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 104.14 62.738 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 104.14 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 68ba4254-9cdb-4fdf-bef0-2356c662be41)) (pin "2" (uuid dd2a7d9c-3352-4a71-b127-bdcb2b9284d3)) ) ) ================================================ FILE: boards/fanpico-0804D/README.md ================================================ # FANPICO-0804D PCB PCB Size: 135mm x 81.5mm ![PCB Render](board.png) ## Change Log v1.3 - Add QWIIC connector (to simplify connecting I2C sensors). - Add 1-Wire connector - Change J1 to a combination footprint (allows mounting either Floppy or DC connector). - Slightly improved ESD protection (TVS diodes added for most connectors) v1.2c - Add support for using either SN74AHCT125 or SN74AHCT126 (as U1 and U2). v1.2b - C5 was not derated correctly. Replace with 25V part for proper derating. v1.2 - Add alternate OLED display header with alternate pinout (J2) - Change J18 header to 2x5 pins (with extra pins often needed for SPI displays) - Change pull-ups to pull-downs on PWM signal pins on MBFAN inputs. v1.1 - Add support for direct mounting either Pico or Pico W - Remove unused footprints - Fix errata from v1.0 - Errata: - JP11 Silkscreen incorrect: 10K and 100K labels should be the otherway around. v1.0 - First Prototye - Based on 0804 v1.3, with added OLED (I2c) display module support - Errata: - U7 pin 7 (VEE) should be grounded. Workaround: add solder bridge between pins 7 & 8. ================================================ FILE: boards/fanpico-0804D/bom.csv ================================================ "Reference","Value","Datasheet","Footprint","Qty","DNP","LCSC Part Number","Mouser Part Number","Manufacturer","Manufacturer Part Number","Type" "C1,C2,C3,C4,C6,C11,C14,C17,C20,C22,C24,C26,C28,C29,C31,C32","0.1uF","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","16","","C1591","","Samsung Electro-Mechanics","CL10B104KB8NNNC","SMD" "C5","10uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder","1","","C7194","","Kyocera AVX","TAJB106K025RNJ","SMD" "C7,C8,C30","10uF 16V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","3","","C7171","","Kyocera AVX","TAJA106K016RNJ","SMD" "C10,C13,C16,C19,C21,C23,C25,C27","1nF","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","8","","C1588","","Samsung Electro-Mechanics","CL10B102KB8NNNC","SMD" "D1","SM5819PL 1A 40V","~","Diode_SMD:D_SMA","1","","C669023 or C19992592","","MCC","SM5819PL-TP","SMD" "D2,D4,D5,D6,D7,D8,D11,D12,D15,D16,D19,D20,D23,D26,D29,D32,D35","LED 0805 (green)","~","LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder","17","","C434432","","Yongyu Photoelectric","SZYY0805G","SMD" "D3,D10,D14,D18,D22,D25,D28,D31,D34","ES1D 1A 200V","~","Diode_SMD:D_SMA_Handsoldering","9","","C445494","","MDD(Microdiode Semiconductor)","ES1D","SMD" "D9,D13,D17,D21,D24,D27,D30,D33","BAT54C","~","FanPico:D_SOT-23_ANK","8","","C2844172","","FUXINSEMI","BAT54C","SMD" "D36,D37,D38,D39,D40,D41,D42,D72,D73,D74","3.3V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","10","","C78439","","Brightking","UDD32C03L01","SMD" "D43,D44,D45,D46,D47,D48,D49,D50,D51,D52,D53,D54,D55,D60,D61,D62,D63","12V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","17","","C502541 or C5199168","","ElecSuper","UDD32C12L01-ES","SMD" "D56,D57,D58,D59,D64,D65,D66,D67,D68,D69,D70,D71","5V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","12","","C5180216","","ElecSuper","PESD5V0S1BA-ES","SMD" "F1","Polyfuse 3A","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","C2977527","","BHFUSE","BSMD2920-300-24V","SMD" "F2","Polyfuse 0.5A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","C70072","","TECHFUSE","nSMD035-16V","SMD" "G1","qwiic_Logo","","sparkfun-qwiic:qwiic_5mm","1","","","","","","" "H1,H2,H3,H4","MountingHole_Pad","~","MountingHole:MountingHole_3.2mm_M3_Pad_Via","4","DNP","","","","","" "J1","Floppy / DC Connector","~","FanPico:TE 171826-4 Floppy 4-pin Combo","1","","C590635 / C381115","","TE Connectivity","171826-4","THT" "J2","I2C (OLED ALT)","~","Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical","1","DNP","C2935975","","DEALON","DM254R-11-04-85","THT" "J3","I2C (OLED)","~","Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical","1","","C2935975","","DEALON","DM254R-11-04-85","THT" "J4","MB Fan1 Input","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Red)","THT" "J5","MB Fan2 Input","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Red)","THT" "J6","MB Fan3 Input","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Red)","THT" "J7","MB Fan4 Input","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Red)","THT" "J8","Fan1 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J9","Fan2 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J10","Fan3 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J11","Fan4 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J12","Fan5 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J13","Fan6 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J14","Fan7 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J15","Fan8 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","","","","KF2510-AW 3+1P (Black)","THT" "J16","Sensor1","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","C33132 / C20079","","BOOMELE(Boom Precision Elec)","XH-2AW","THT" "J17","Sensor2","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","C33132 / C20079","","BOOMELE(Boom Precision Elec)","XH-2AW","THT" "J18","LCD (SPI)","~","Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical","1","","C492422","","XFCN","PZ254V-12-10P","THT" "J19","Serial Console (TTL)","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","C2937625","","XFCN","PZ254V-11-03P","THT" "J20","1-Wire","~","TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal","1","","C68305 or C5188443","","BOOMELE(Boom Precision Elec)","2.54-3P","THT" "J21","QWIIC","~","Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal","1","","C160404","","JST","SM04B-SRSS-TB(LF)(SN)","SMD" "JP1","Power Selector","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","C2937625","","XFCN","PZ254V-11-03P","THT" "JP2,JP3,JP4,JP5,JP6,JP7,JP8,JP9","Fan Power","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","8","","C2937625","","XFCN","PZ254V-11-03P","THT" "JP10,JP11","NTC Value","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","2","","C2937625","","XFCN","PZ254V-11-03P","THT" "JP12","1-Wire Pull-Up Enable","~","Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical","1","","C492401","","XFCN","PZ254V-11-02P","THT" "Q1,Q2,Q3,Q4","2N7002K","https://www.diodes.com/assets/Datasheets/ds30896.pdf","Package_TO_SOT_SMD:SOT-23","4","","C85047","","DIODES","2N7002K-7","SMD" "R1,R4,R8,R11,R15,R18,R22,R25,R29,R32","1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","10","","C22548","","YAGEO","RC0603FR-071KL","SMD" "R2,R10,R12,R17,R19,R24,R26,R31,R33,R36,R39,R42,R45,R58","49.9k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","14","","C114624","","YAGEO","RC0603FR-0749K9L","SMD" "R3,R48","330","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","C105881","","YAGEO","RC0603FR-07330RL","SMD" "R5,R7,R13,R20,R27,R34,R37,R40,R43,R46,R50,R51","10k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","12","","C98220","","YAGEO","RC0603FR-0710KL","SMD" "R6","4.99k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","C114621","","YAGEO","RC0603FR-074K99L","SMD" "R9,R16,R23,R30","30k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","4","","C100001","","YAGEO","RC0603FR-0730KL","SMD" "R14,R21,R28,R35,R38,R41,R44,R47","680","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","8","","C115415","","YAGEO","RC0603JR-07680RL","SMD" "R49,R55,R57","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","3","","C100044","","YAGEO","RC0603FR-070RL","SMD" "R52,R53","100k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","C14675","","YAGEO","RC0603FR-07100KL","SMD" "R54,R56","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","DNP","C100044","","YAGEO","RC0603FR-070RL","SMD" "R59","4.7k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","C99782","","YAGEO","RC0603FR-074K7L","SMD" "SW1","SW_Push","~","FanPico:SW_PUSH_6mm_SMD_2","1","","C221880","","C&K","PTS645SM43SMTR92LFS","SMD" "U1,U2","SN74AHCT126","C155176 (AHCT125), C163728 (AHCT126)","Package_SO:SOIC-14_3.9x8.7mm_P1.27mm","2","","C163728","","TI","SN74AHCT126DR","SMD" "U3","CD74HC4050NSR","","Package_SO:SOIC-16_3.9x9.9mm_P1.27mm","1","","C131932","","TI","CD74HC4050M96","SMD" "U4","Pico","","FanPico:RPi_Pico_PicoW_SMD_TH","1","","","","Raspberry Pi","Pico W","SMD" "U5","SPX1117-ADJ","http://www.diodes.com/datasheets/AP1117.pdf","Package_TO_SOT_SMD:SOT-223-3_TabPin2","1","","C67402","","MaxLinear","SPX1117M3-L/TR","SMD" "U6","LM4040DBZ-3","http://www.ti.com/lit/ds/symlink/lm4040-n.pdf","Package_TO_SOT_SMD:SOT-23","1","","C143326","","Maxim","LM4040AIM3-3.0+T","SMD" "U7","74HC4051","http://www.ti.com/lit/ds/symlink/cd74hc4051.pdf","Package_SO:SOIC-16_3.9x9.9mm_P1.27mm","1","","C9386","","Nexperia","74HC4051D,653","SMD" ================================================ FILE: boards/fanpico-0804D/kicad/extra_fan_channel.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "a3e4201d-65f6-465e-922c-6bde94345467") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS_Small" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS_Small" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_Small_0_1" (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.016) (xy 0 1.016) (xy 0 -1.016) (xy -0.508 -1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.016) (xy -1.27 -1.016) (xy 1.27 1.016) (xy 1.27 -1.016) (xy -1.27 1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_Small_1_1" (pin passive line (at -2.54 0 0) (length 1.27) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 0 180) (length 1.27) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 147.32 121.92) (diameter 0) (color 0 0 0 0) (uuid "4725c110-3918-44c6-9202-0379854f5511") ) (junction (at 146.05 74.93) (diameter 0) (color 0 0 0 0) (uuid "4934aed7-9338-49be-aee9-d617ef7b3e51") ) (junction (at 185.42 74.93) (diameter 0) (color 0 0 0 0) (uuid "82906e13-2159-412a-a5fc-86d5e6549471") ) (junction (at 167.64 121.92) (diameter 0) (color 0 0 0 0) (uuid "8f9aa02d-452d-42e7-8563-0d0082e11af4") ) (junction (at 179.07 132.08) (diameter 0) (color 0 0 0 0) (uuid "9f2e46e1-c478-4404-884b-69466fb68e1c") ) (junction (at 179.07 121.92) (diameter 0) (color 0 0 0 0) (uuid "ac05814b-dc09-4f9a-bc3a-2cb524195c3f") ) (junction (at 166.37 74.93) (diameter 0) (color 0 0 0 0) (uuid "bc3c0dfa-b464-40ed-b333-1addf7963fde") ) (junction (at 185.42 46.99) (diameter 0) (color 0 0 0 0) (uuid "ef60fb88-fca8-4ad3-9385-256e54722a99") ) (polyline (pts (xy 233.68 144.78) (xy 190.5 144.78) ) (stroke (width 0) (type default) ) (uuid "0b251daa-acb2-4563-8a00-282536baae82") ) (wire (pts (xy 147.32 143.51) (xy 147.32 148.59) ) (stroke (width 0) (type default) ) (uuid "17ea7d3f-838e-47ed-8b34-32e6dd7c52f1") ) (wire (pts (xy 101.6 135.89) (xy 101.6 128.27) ) (stroke (width 0) (type default) ) (uuid "1f024d5e-560e-405c-b664-e735dd50af4a") ) (wire (pts (xy 179.07 132.08) (xy 179.07 135.89) ) (stroke (width 0) (type default) ) (uuid "239ab539-0f2d-42cb-a59d-0f7a520a8dcf") ) (wire (pts (xy 166.37 60.96) (xy 166.37 63.5) ) (stroke (width 0) (type default) ) (uuid "29fa2cb4-25a8-4253-84f8-795855ed8080") ) (polyline (pts (xy 233.68 31.75) (xy 233.68 144.78) ) (stroke (width 0) (type default) ) (uuid "4bcd8d4b-6bb8-48f7-9029-c4c42d68bceb") ) (wire (pts (xy 167.64 129.54) (xy 167.64 132.08) ) (stroke (width 0) (type default) ) (uuid "4f0cd46e-f1ad-4a55-84d1-386ed36e8a83") ) (wire (pts (xy 166.37 71.12) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "51405f88-3b2e-4de2-9aab-1d126e774505") ) (wire (pts (xy 173.99 74.93) (xy 166.37 74.93) ) (stroke (width 0) (type default) ) (uuid "5d7c9e49-c51b-4cd3-9c74-e64da3dc723c") ) (polyline (pts (xy 90.17 34.29) (xy 137.16 34.29) ) (stroke (width 0) (type default) ) (uuid "650bf3ce-8e8e-4b15-8637-54cb9b7d608d") ) (polyline (pts (xy 190.5 31.75) (xy 233.68 31.75) ) (stroke (width 0) (type default) ) (uuid "66311f16-42b4-4a80-99aa-0e16a0305b15") ) (wire (pts (xy 171.45 46.99) (xy 185.42 46.99) ) (stroke (width 0) (type default) ) (uuid "6fb7d3a2-c7ce-44f6-80c5-edcfb3a0b63c") ) (polyline (pts (xy 137.16 90.17) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "71f1d60b-385f-4b2a-8c0f-92a6f8634db3") ) (wire (pts (xy 147.32 121.92) (xy 147.32 125.73) ) (stroke (width 0) (type default) ) (uuid "7c442b30-229b-43e2-9845-71ef86cf968a") ) (wire (pts (xy 147.32 133.35) (xy 147.32 135.89) ) (stroke (width 0) (type default) ) (uuid "80ba5a1b-364d-46ab-b340-b5f8416f381e") ) (wire (pts (xy 146.05 87.63) (xy 146.05 91.44) ) (stroke (width 0) (type default) ) (uuid "81e854b4-7131-4b2b-b926-8bd1b2e4e843") ) (wire (pts (xy 185.42 74.93) (xy 195.58 74.93) ) (stroke (width 0) (type default) ) (uuid "8270cf2e-b184-46e6-a208-33ecfb9616c2") ) (wire (pts (xy 66.04 135.89) (xy 101.6 135.89) ) (stroke (width 0) (type default) ) (uuid "8d0a11f6-388a-4c76-ab1d-fdcf7b784131") ) (polyline (pts (xy 90.17 34.29) (xy 90.17 90.17) ) (stroke (width 0) (type default) ) (uuid "90f6e54f-8e86-4885-a5e0-960086fd80b7") ) (wire (pts (xy 181.61 74.93) (xy 185.42 74.93) ) (stroke (width 0) (type default) ) (uuid "944933f5-d00b-41f1-a4d7-99d735de5748") ) (wire (pts (xy 105.41 121.92) (xy 147.32 121.92) ) (stroke (width 0) (type default) ) (uuid "949f5964-b807-4f00-82c2-692af459e0e7") ) (wire (pts (xy 185.42 46.99) (xy 195.58 46.99) ) (stroke (width 0) (type default) ) (uuid "a3f4aa7e-a567-44bb-9c2b-fc7831ba65b7") ) (wire (pts (xy 179.07 129.54) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "ac920f33-a13d-4674-8247-5663f541b13e") ) (wire (pts (xy 179.07 121.92) (xy 195.58 121.92) ) (stroke (width 0) (type default) ) (uuid "acc866f6-a83f-4072-bd5a-2f26940b907c") ) (wire (pts (xy 185.42 55.88) (xy 185.42 60.96) ) (stroke (width 0) (type default) ) (uuid "b0257a5c-5c14-4934-882d-a1fbaabc2654") ) (wire (pts (xy 146.05 74.93) (xy 132.08 74.93) ) (stroke (width 0) (type default) ) (uuid "bb43e9ed-3325-4a9f-855c-573d9e644fdb") ) (wire (pts (xy 146.05 74.93) (xy 146.05 80.01) ) (stroke (width 0) (type default) ) (uuid "c24962ac-0aa7-4b5f-8ff3-244ea83df066") ) (wire (pts (xy 185.42 46.99) (xy 185.42 50.8) ) (stroke (width 0) (type default) ) (uuid "c602ee81-e7ba-4e42-9e4e-811abb5d50fe") ) (wire (pts (xy 167.64 121.92) (xy 179.07 121.92) ) (stroke (width 0) (type default) ) (uuid "c7dc142e-31cd-4ff7-a1c4-185343ae8f78") ) (wire (pts (xy 166.37 74.93) (xy 146.05 74.93) ) (stroke (width 0) (type default) ) (uuid "cf212b08-31ad-4e19-903d-ca6ccfb8ccdd") ) (wire (pts (xy 147.32 121.92) (xy 167.64 121.92) ) (stroke (width 0) (type default) ) (uuid "d56419c1-2488-4102-8a1c-bdb708cc35ca") ) (polyline (pts (xy 190.5 31.75) (xy 190.5 144.78) ) (stroke (width 0) (type default) ) (uuid "d781a121-7dce-4e92-b9ad-3e37759ee30c") ) (wire (pts (xy 185.42 83.82) (xy 185.42 91.44) ) (stroke (width 0) (type default) ) (uuid "dfec15b5-5ddd-4e9d-b490-0c6d6c91c101") ) (wire (pts (xy 167.64 132.08) (xy 179.07 132.08) ) (stroke (width 0) (type default) ) (uuid "e0a1d798-f495-4ded-8f8a-2525b66ec0d5") ) (wire (pts (xy 185.42 74.93) (xy 185.42 78.74) ) (stroke (width 0) (type default) ) (uuid "edb02cbd-12c0-452d-b4b8-aec5d81df423") ) (wire (pts (xy 101.6 111.76) (xy 66.04 111.76) ) (stroke (width 0) (type default) ) (uuid "f0199540-f9f5-4462-b9ad-8a7ec3db8754") ) (wire (pts (xy 132.08 46.99) (xy 163.83 46.99) ) (stroke (width 0) (type default) ) (uuid "f8154772-bd77-41c1-9a1e-fcfdebcdcac4") ) (wire (pts (xy 160.02 60.96) (xy 166.37 60.96) ) (stroke (width 0) (type default) ) (uuid "fa3056d1-383c-4a6e-aa50-73d503531c9d") ) (wire (pts (xy 101.6 115.57) (xy 101.6 111.76) ) (stroke (width 0) (type default) ) (uuid "fb26119a-8b3d-4be1-a0f2-e0b7e0b76060") ) (polyline (pts (xy 137.16 34.29) (xy 137.16 90.17) ) (stroke (width 0) (type default) ) (uuid "fcf37293-f178-4396-8fee-82c7d5b494ed") ) (text "MCU Inputs/Outputs" (exclude_from_sim no) (at 104.14 38.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "53707df5-9a46-46d0-ac51-34bdb4c24446") ) (text "(Extra) Fan Channel: ${SHEETNAME}" (exclude_from_sim no) (at 17.78 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "c43db354-0f28-4995-93b5-d0b6a1ecf636") ) (text "To Fan" (exclude_from_sim no) (at 209.55 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e18bc51f-9518-468f-97da-2d26eb089a20") ) (global_label "AUX12V" (shape input) (at 66.04 111.76 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d6394367-fe41-4fed-b0a6-dc182137ecaf") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 56.4907 111.6806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (hierarchical_label "PWR_OUT" (shape output) (at 195.58 121.92 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0651f145-e5ab-45b0-a185-34b46b65decd") ) (hierarchical_label "TACHO_READ" (shape output) (at 132.08 74.93 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "17e3805c-dc66-4948-bd12-835d03937191") ) (hierarchical_label "TACHO_IN" (shape input) (at 195.58 74.93 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "44cf5094-95f1-41a4-b2b5-634803e10da1") ) (hierarchical_label "PWM_GEN" (shape input) (at 132.08 46.99 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7f09a51b-27ac-4cfb-822c-abe1268d8c50") ) (hierarchical_label "PWM_OUT" (shape output) (at 195.58 46.99 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7f310825-1f15-4d79-9bab-026cf11500fb") ) (hierarchical_label "PWR_IN" (shape input) (at 66.04 135.89 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e2014b0f-a50a-4333-81ed-31444f0ecafa") ) (symbol (lib_id "power:GND") (at 147.32 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0acd508c-e29a-44a1-9369-7c7575a9efb9") (property "Reference" "#PWR071" (at 147.32 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 147.32 153.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 147.32 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 147.32 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 147.32 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "eccb6478-c3ea-4aa1-9f07-4ad91d1bea66") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR071") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR075") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR079") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR067") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 146.05 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0aebdc55-e632-4445-9db7-ba8cc31b43b3") (property "Reference" "#PWR070" (at 146.05 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 146.05 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 146.05 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2aa46078-df7a-4f8d-b4e9-2440f4cf4d70") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR070") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR074") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR078") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR066") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 160.02 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2beabec1-a436-4b64-a488-7d07c9d15d77") (property "Reference" "#PWR072" (at 163.83 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 156.21 60.9599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 160.02 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "18527cec-a364-4293-a3ef-5550922c03aa") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR072") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR076") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR080") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR068") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 185.42 81.28 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "318dc987-8557-4ab5-9d15-e997984e64aa") (property "Reference" "D53" (at 179.832 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 175.514 82.55 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 185.42 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 185.42 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 185.42 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 185.42 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "f6b811f5-12ed-4cab-a5f0-1a4eef4d7b3c") ) (pin "1" (uuid "686d29dd-e984-4453-9f9f-c179d33e6234") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D53") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D54") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "D55") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D52") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 146.05 83.82 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3cd107d3-c6a7-4254-9209-0b9ac70966b7") (property "Reference" "C23" (at 149.86 82.5499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1nF" (at 149.86 85.0899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 147.0152 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1588" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 146.05 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "62da4944-efd6-4146-9e24-7534afda4788") ) (pin "2" (uuid "08350092-d004-4d88-ad3b-41c1eb89e443") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C23") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C25") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "C27") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "C21") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 167.64 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (property "Reference" "C24" (at 171.45 124.4599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 171.45 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 168.6052 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "34911415-9e26-4f43-9972-7ec508951cea") ) (pin "2" (uuid "c1dcf2f2-8ceb-454d-abe8-36c791deef4d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "C24") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "C26") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "C28") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "C22") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 147.32 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4e28b459-dd74-4c82-9144-e285ed7f5928") (property "Reference" "R39" (at 149.86 128.2699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 149.86 130.8099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 145.542 129.54 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 147.32 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 147.32 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 147.32 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 147.32 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9cca6172-81fb-4620-b084-c64be1867819") ) (pin "2" (uuid "98dcd480-8b0e-4075-9565-706143c76d27") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R39") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R42") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "R45") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "R36") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 166.37 67.31 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "713f0faf-9b32-443b-b4b5-18ccafb68231") (property "Reference" "R40" (at 168.91 66.0399 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 168.91 68.5799 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 168.148 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 166.37 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5155727b-4990-4c37-9beb-355f58e9803a") ) (pin "2" (uuid "e648f2dc-b928-4ff8-963a-41c0dd40a454") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R40") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R43") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "R46") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "R37") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 101.6 121.92 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "844cd271-058e-4a61-b648-3556ed9f378d") (property "Reference" "JP7" (at 99.06 120.6499 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Fan Power" (at 99.06 123.1899 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 101.6 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 101.6 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 101.6 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 101.6 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d39035c8-101d-456f-b8db-beae18ddb858") ) (pin "2" (uuid "600cf763-ad20-4049-9317-c7160df94475") ) (pin "3" (uuid "a6b750de-9da5-4f25-b201-bc371c63eff4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "JP7") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "JP8") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "JP9") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "JP6") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 179.07 125.73 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (property "Reference" "D28" (at 181.61 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "ES1D 1A 200V" (at 181.61 126.9999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3bd54a97-a49e-4cfb-ae50-ba191e3888ad") ) (pin "2" (uuid "29b4a113-5f9c-475f-a3ef-d9373376c3df") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D28") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D31") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "D34") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D25") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 185.42 53.34 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "abcfbcd1-063b-4143-944f-3f5983199a72") (property "Reference" "D69" (at 179.832 52.07 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 175.514 54.61 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 185.42 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 185.42 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 185.42 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 185.42 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "3caa37ce-a0e3-4e00-b29a-2689c85c7ce9") ) (pin "1" (uuid "6a50a1d6-1dbc-4f63-a990-69275f1de9dd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D69") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D70") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "D71") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D68") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 185.42 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "af3e6589-2f15-4a88-8bb0-ae18f9858cb4") (property "Reference" "#PWR0110" (at 185.42 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 185.42 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 185.42 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 185.42 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 185.42 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0cf6a3af-cde5-4251-a149-007ba488f019") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR0110") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR0111") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR0112") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR0109") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 177.8 74.93 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b49d0204-e5c4-45fa-965e-427ea584956f") (property "Reference" "D27" (at 177.8 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "BAT54C" (at 177.8 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2844172" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 177.8 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb1f26c8-53a2-40e5-85f5-666e138dcc60") ) (pin "2" (uuid "d5e97938-d7f8-443c-8d94-c4a4e1343555") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D27") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D30") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "D33") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D24") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 179.07 135.89 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f") (property "Reference" "#PWR073" (at 179.07 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 179.07 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 179.07 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e1a2a4db-32f0-46a2-8e44-db366ed945ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR073") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR077") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR081") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR069") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 185.42 60.96 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cd3eaaed-fe80-4c48-bde5-46d2666c712e") (property "Reference" "#PWR0126" (at 185.42 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 185.42 66.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 185.42 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 185.42 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 185.42 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2914e188-b3bd-48f3-8c25-2cb6eca85e90") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "#PWR0126") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "#PWR0127") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "#PWR0128") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "#PWR0125") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 167.64 46.99 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (property "Reference" "R41" (at 167.64 40.64 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "680" (at 167.64 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 167.64 48.768 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C115415" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3afa5a6c-ee7d-460c-ab30-cd43c75ca778") ) (pin "2" (uuid "22a5a5e7-3266-4b58-a242-890b32c355e4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "R41") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "R44") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "R47") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "R38") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 147.32 139.7 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (property "Reference" "D26" (at 151.13 140.0174 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 151.13 142.5574 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 147.32 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 147.32 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 147.32 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 147.32 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 147.32 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2de7d4bb-b01a-48ca-9b1b-ecd43e3fc6be") ) (pin "2" (uuid "45e66619-4d72-42c4-bc94-c0a456633ec2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b" (reference "D26") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32" (reference "D29") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6" (reference "D32") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e" (reference "D23") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/fan_channel.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "bbdfdd6a-c898-4a7d-9724-7451df1ad22f") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_0_1" (polyline (pts (xy -2.032 -0.762) (xy 2.032 -0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) (polyline (pts (xy -2.032 0.762) (xy 2.032 0.762) ) (stroke (width 0.508) (type default) ) (fill (type none) ) ) ) (symbol "C_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS_Small" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS_Small" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_Small_0_1" (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.016) (xy 0 1.016) (xy 0 -1.016) (xy -0.508 -1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.016) (xy -1.27 -1.016) (xy 1.27 1.016) (xy 1.27 -1.016) (xy -1.27 1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_Small_1_1" (pin passive line (at -2.54 0 0) (length 1.27) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 0 180) (length 1.27) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Transistor_FET:2N7002K" (pin_names hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "Q" (at 5.08 1.905 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "2N7002K" (at 5.08 0 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 5.08 -3.81 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "N-Channel MOSFET" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "2N7002K_0_1" (polyline (pts (xy 0.254 0) (xy -2.54 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.254 1.905) (xy 0.254 -1.905) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.27) (xy 0.762 -2.286) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 0.508) (xy 0.762 -0.508) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 2.286) (xy 0.762 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 2.54) (xy 2.54 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) (polyline (pts (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 1.651 0) (radius 2.794) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (circle (center 2.54 -1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) (circle (center 2.54 1.778) (radius 0.254) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "2N7002K_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "G" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 -5.08 90) (length 2.54) (name "S" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 5.08 270) (length 2.54) (name "D" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 218.44 71.12) (diameter 0) (color 0 0 0 0) (uuid "120e7478-b37e-4032-820e-e03b738491b0") ) (junction (at 107.95 132.08) (diameter 0) (color 0 0 0 0) (uuid "20c6208b-d9a4-4514-a980-9e5467ec871d") ) (junction (at 83.82 132.08) (diameter 0) (color 0 0 0 0) (uuid "375d8dce-b70e-40e7-81b8-8e9835ef9112") ) (junction (at 80.01 71.12) (diameter 0) (color 0 0 0 0) (uuid "622b959a-cbba-4f1b-8715-9d07cd0f6029") ) (junction (at 190.5 71.12) (diameter 0) (color 0 0 0 0) (uuid "65ffb3f5-3eaf-48d4-be07-c8535c212b4d") ) (junction (at 215.9 118.11) (diameter 0) (color 0 0 0 0) (uuid "7f3efbde-2f3a-49f8-bf7e-db781af2bed4") ) (junction (at 215.9 132.08) (diameter 0) (color 0 0 0 0) (uuid "ac631a6c-32b9-4823-a4d4-8075c9619e6b") ) (junction (at 80.01 43.18) (diameter 0) (color 0 0 0 0) (uuid "cdfbcbbf-ab77-4516-8615-c585f6c741f8") ) (junction (at 190.5 118.11) (diameter 0) (color 0 0 0 0) (uuid "d701f429-1827-425a-8d78-365a9f792c7a") ) (junction (at 204.47 118.11) (diameter 0) (color 0 0 0 0) (uuid "d87ae439-45a7-4ee3-aab0-d5825ac5606b") ) (junction (at 200.66 71.12) (diameter 0) (color 0 0 0 0) (uuid "df362961-367a-462b-a6bf-378f561fc33b") ) (junction (at 218.44 43.18) (diameter 0) (color 0 0 0 0) (uuid "eb469535-187f-408e-af70-d9f1897fd0cb") ) (junction (at 105.41 43.18) (diameter 0) (color 0 0 0 0) (uuid "f7c16af5-2248-4aa3-940a-ed21ce379515") ) (wire (pts (xy 218.44 43.18) (xy 218.44 49.53) ) (stroke (width 0) (type default) ) (uuid "046da104-e2c7-41a0-a7f7-4734d2ae5bbc") ) (wire (pts (xy 175.26 111.76) (xy 175.26 107.95) ) (stroke (width 0) (type default) ) (uuid "07759bf2-43f7-421f-af8a-055182ce7870") ) (wire (pts (xy 190.5 118.11) (xy 204.47 118.11) ) (stroke (width 0) (type default) ) (uuid "13f1fcca-a081-41c5-96ec-29d7cbeb62ea") ) (wire (pts (xy 171.45 43.18) (xy 198.12 43.18) ) (stroke (width 0) (type default) ) (uuid "16864f88-4d74-4617-bd86-d2c4ba3c9687") ) (wire (pts (xy 107.95 143.51) (xy 107.95 146.05) ) (stroke (width 0) (type default) ) (uuid "1dad0f95-8b71-4bd6-950c-0410684bf288") ) (wire (pts (xy 215.9 132.08) (xy 215.9 135.89) ) (stroke (width 0) (type default) ) (uuid "1f1278cf-f83a-4f57-99b1-a058386ff584") ) (wire (pts (xy 204.47 132.08) (xy 215.9 132.08) ) (stroke (width 0) (type default) ) (uuid "1f89f0dc-6d0b-4177-9518-3c440f6e8bf8") ) (wire (pts (xy 215.9 71.12) (xy 218.44 71.12) ) (stroke (width 0) (type default) ) (uuid "23d619e4-1568-4e91-acb8-7ac084cd0761") ) (wire (pts (xy 83.82 132.08) (xy 107.95 132.08) ) (stroke (width 0) (type default) ) (uuid "23f8bbb3-5858-464d-96df-b50f95731534") ) (wire (pts (xy 105.41 43.18) (xy 105.41 49.53) ) (stroke (width 0) (type default) ) (uuid "2a77ab06-7cb0-4285-8dea-f0fd6137bce5") ) (wire (pts (xy 205.74 43.18) (xy 218.44 43.18) ) (stroke (width 0) (type default) ) (uuid "2b90627f-facc-4b91-adc9-58e38e08b201") ) (wire (pts (xy 105.41 43.18) (xy 132.08 43.18) ) (stroke (width 0) (type default) ) (uuid "2de93c9c-ec26-4cea-9f4e-d95197e5a3c1") ) (wire (pts (xy 190.5 129.54) (xy 190.5 132.08) ) (stroke (width 0) (type default) ) (uuid "35f795a8-008a-4284-8ef9-576e5f0a678f") ) (wire (pts (xy 218.44 43.18) (xy 229.87 43.18) ) (stroke (width 0) (type default) ) (uuid "433d508b-72af-4e68-9fdf-a97c7078cb70") ) (wire (pts (xy 80.01 43.18) (xy 80.01 49.53) ) (stroke (width 0) (type default) ) (uuid "49fe1317-b9b2-465c-a1ba-828ef84ee74a") ) (wire (pts (xy 215.9 118.11) (xy 229.87 118.11) ) (stroke (width 0) (type default) ) (uuid "574a860e-8df2-42b4-9f60-0fce31739016") ) (polyline (pts (xy 175.26 87.63) (xy 128.27 87.63) ) (stroke (width 0) (type default) ) (uuid "583d6084-3a53-4056-af7e-142f327c101e") ) (wire (pts (xy 215.9 129.54) (xy 215.9 132.08) ) (stroke (width 0) (type default) ) (uuid "59177481-4df8-4399-a306-4f09f27f63aa") ) (wire (pts (xy 200.66 57.15) (xy 200.66 59.69) ) (stroke (width 0) (type default) ) (uuid "5ba02402-b6b0-45aa-9e9d-1c5ef8f9c25a") ) (wire (pts (xy 99.06 80.01) (xy 99.06 88.9) ) (stroke (width 0) (type default) ) (uuid "5e2cfdf5-a956-48d7-bdda-8ad10d82e50a") ) (wire (pts (xy 80.01 82.55) (xy 80.01 87.63) ) (stroke (width 0) (type default) ) (uuid "6129c482-fd0c-435f-88c3-09e9b1b03290") ) (wire (pts (xy 107.95 132.08) (xy 107.95 135.89) ) (stroke (width 0) (type default) ) (uuid "6161afc8-6f26-4bcc-b135-c50e6d391070") ) (wire (pts (xy 208.28 71.12) (xy 200.66 71.12) ) (stroke (width 0) (type default) ) (uuid "624a5017-2a2c-4fcd-92aa-6629e50ae26c") ) (wire (pts (xy 80.01 71.12) (xy 80.01 77.47) ) (stroke (width 0) (type default) ) (uuid "68124dfa-2fb8-43cb-82dc-0b6af133aad7") ) (wire (pts (xy 97.79 43.18) (xy 105.41 43.18) ) (stroke (width 0) (type default) ) (uuid "6e01879e-12de-4258-8b8e-7a98b3613ec0") ) (wire (pts (xy 120.65 80.01) (xy 132.08 80.01) ) (stroke (width 0) (type default) ) (uuid "70016e19-cf52-41c3-8e60-b56e787faf5e") ) (polyline (pts (xy 128.27 31.75) (xy 128.27 87.63) ) (stroke (width 0) (type default) ) (uuid "71c9ac60-325f-4505-998b-9dadfa9d9b72") ) (wire (pts (xy 179.07 118.11) (xy 190.5 118.11) ) (stroke (width 0) (type default) ) (uuid "71fcbb84-34cc-41b6-b3f4-8c3481398ae5") ) (wire (pts (xy 80.01 71.12) (xy 106.68 71.12) ) (stroke (width 0) (type default) ) (uuid "778c0383-d927-4ac3-be01-5046226013cf") ) (wire (pts (xy 190.5 118.11) (xy 190.5 121.92) ) (stroke (width 0) (type default) ) (uuid "7d2b1994-bf43-492c-8248-d556eac6a176") ) (wire (pts (xy 68.58 43.18) (xy 80.01 43.18) ) (stroke (width 0) (type default) ) (uuid "7eca3ef6-d4a5-4635-a340-bea7b216f388") ) (polyline (pts (xy 30.48 31.75) (xy 30.48 144.78) ) (stroke (width 0) (type default) ) (uuid "82ad3b9b-a9ca-44cd-bb6b-8b2de0a90b97") ) (polyline (pts (xy 73.66 144.78) (xy 30.48 144.78) ) (stroke (width 0) (type default) ) (uuid "833ffd29-83bc-48d7-8c1e-e736a93f7cb2") ) (wire (pts (xy 204.47 129.54) (xy 204.47 132.08) ) (stroke (width 0) (type default) ) (uuid "8c0b5605-a0ac-4440-98a5-9281f264756a") ) (wire (pts (xy 218.44 54.61) (xy 218.44 59.69) ) (stroke (width 0) (type default) ) (uuid "8d97fadd-a614-49f0-b2fb-f404c1a63b2a") ) (wire (pts (xy 194.31 57.15) (xy 200.66 57.15) ) (stroke (width 0) (type default) ) (uuid "8ecaf9af-82b3-4c40-b4bd-656ccc8c099b") ) (wire (pts (xy 107.95 132.08) (xy 175.26 132.08) ) (stroke (width 0) (type default) ) (uuid "904f848f-c153-46bc-93a7-406c131fdea7") ) (wire (pts (xy 68.58 132.08) (xy 83.82 132.08) ) (stroke (width 0) (type default) ) (uuid "90b4e2fb-968e-4520-ac9e-26f14a735d6d") ) (polyline (pts (xy 73.66 31.75) (xy 73.66 144.78) ) (stroke (width 0) (type default) ) (uuid "976104ea-bacc-4d01-901c-daa6f0d71dad") ) (wire (pts (xy 83.82 132.08) (xy 83.82 139.7) ) (stroke (width 0) (type default) ) (uuid "9a0f8acf-9638-4c7f-b250-46f8c656faac") ) (wire (pts (xy 218.44 71.12) (xy 229.87 71.12) ) (stroke (width 0) (type default) ) (uuid "a04c95f0-0bad-4045-9bef-f5a9609df7bc") ) (wire (pts (xy 204.47 121.92) (xy 204.47 118.11) ) (stroke (width 0) (type default) ) (uuid "a18e9c54-3811-4cd5-ab66-faad5c547c18") ) (polyline (pts (xy 267.97 144.78) (xy 224.79 144.78) ) (stroke (width 0) (type default) ) (uuid "a258ead0-0839-44e5-9743-0459a0cc109b") ) (wire (pts (xy 80.01 43.18) (xy 90.17 43.18) ) (stroke (width 0) (type default) ) (uuid "a3c30545-6c7e-47de-94d7-f2abec4b8b40") ) (wire (pts (xy 105.41 57.15) (xy 105.41 59.69) ) (stroke (width 0) (type default) ) (uuid "a9ba3c01-8919-4012-a79d-66ba83e59ee2") ) (polyline (pts (xy 224.79 31.75) (xy 224.79 144.78) ) (stroke (width 0) (type default) ) (uuid "a9ee418a-940e-4c83-971a-ec0462cf4197") ) (wire (pts (xy 80.01 54.61) (xy 80.01 59.69) ) (stroke (width 0) (type default) ) (uuid "ac93c209-5b6a-4fd4-8822-6797ff77d7cb") ) (wire (pts (xy 215.9 118.11) (xy 215.9 121.92) ) (stroke (width 0) (type default) ) (uuid "acd5d695-809b-423a-a449-a7ed5b0fd362") ) (wire (pts (xy 107.95 153.67) (xy 107.95 158.75) ) (stroke (width 0) (type default) ) (uuid "b079e633-d1f2-4f05-800b-5bacb0d2ef5b") ) (wire (pts (xy 204.47 118.11) (xy 215.9 118.11) ) (stroke (width 0) (type default) ) (uuid "b9c52eea-9a4a-4ea8-aca0-8366688311e7") ) (wire (pts (xy 175.26 132.08) (xy 175.26 124.46) ) (stroke (width 0) (type default) ) (uuid "bc12ba0f-3fe4-45c1-9abd-b4d64be56bf5") ) (polyline (pts (xy 267.97 31.75) (xy 267.97 144.78) ) (stroke (width 0) (type default) ) (uuid "bd73483a-7997-4460-9257-e60e0edc7f77") ) (wire (pts (xy 99.06 80.01) (xy 113.03 80.01) ) (stroke (width 0) (type default) ) (uuid "bdaa4825-e120-4347-85b2-a79120e5b5ab") ) (wire (pts (xy 175.26 107.95) (xy 157.48 107.95) ) (stroke (width 0) (type default) ) (uuid "c1433bed-1591-4168-9547-1be97377cad1") ) (wire (pts (xy 171.45 71.12) (xy 190.5 71.12) ) (stroke (width 0) (type default) ) (uuid "d05fac83-36d8-4309-b873-148862a436c2") ) (polyline (pts (xy 128.27 31.75) (xy 175.26 31.75) ) (stroke (width 0) (type default) ) (uuid "d38e4643-1b11-4b92-97b6-229f6b39b26f") ) (wire (pts (xy 200.66 71.12) (xy 190.5 71.12) ) (stroke (width 0) (type default) ) (uuid "d4b9ee6d-3e14-40e7-906d-b3d5768b2ea0") ) (wire (pts (xy 106.68 71.12) (xy 106.68 83.82) ) (stroke (width 0) (type default) ) (uuid "db9f7c77-a147-431a-a834-8f8e9bd07f28") ) (wire (pts (xy 200.66 67.31) (xy 200.66 71.12) ) (stroke (width 0) (type default) ) (uuid "dbdee3cc-d984-4c56-8977-b37f612659fc") ) (wire (pts (xy 190.5 71.12) (xy 190.5 76.2) ) (stroke (width 0) (type default) ) (uuid "dd96f01b-c058-4db8-a08b-d80848a5ec37") ) (polyline (pts (xy 30.48 31.75) (xy 73.66 31.75) ) (stroke (width 0) (type default) ) (uuid "e3f278d8-f449-4316-991b-510c8f4798d0") ) (wire (pts (xy 190.5 83.82) (xy 190.5 87.63) ) (stroke (width 0) (type default) ) (uuid "eb5e7856-c617-4564-b04a-b48313e49b3e") ) (wire (pts (xy 68.58 71.12) (xy 80.01 71.12) ) (stroke (width 0) (type default) ) (uuid "ed28772e-bc04-4214-a7f9-ae5af01fdda3") ) (polyline (pts (xy 175.26 31.75) (xy 175.26 87.63) ) (stroke (width 0) (type default) ) (uuid "f1927ddb-ce9a-4e06-87c7-24072c583581") ) (wire (pts (xy 218.44 81.28) (xy 218.44 87.63) ) (stroke (width 0) (type default) ) (uuid "f23be3d6-d19f-4dc7-8009-1054a6dd9c9b") ) (polyline (pts (xy 224.79 31.75) (xy 267.97 31.75) ) (stroke (width 0) (type default) ) (uuid "f5c68c37-decb-4c47-b072-77ce3acb7372") ) (wire (pts (xy 190.5 139.7) (xy 190.5 144.78) ) (stroke (width 0) (type default) ) (uuid "f8a8ea9a-4c63-4039-8c5b-50f0dba34936") ) (wire (pts (xy 83.82 144.78) (xy 83.82 147.32) ) (stroke (width 0) (type default) ) (uuid "fb2a65e1-a688-421c-a33b-01a7d5df3cf0") ) (wire (pts (xy 106.68 93.98) (xy 106.68 97.79) ) (stroke (width 0) (type default) ) (uuid "fce0ae07-9f00-4615-8747-dc563d6c9dbf") ) (wire (pts (xy 218.44 71.12) (xy 218.44 76.2) ) (stroke (width 0) (type default) ) (uuid "ffe4455d-0013-4615-ba0b-0bd349e2a8dc") ) (text "MCU Inputs/Outputs" (exclude_from_sim no) (at 142.24 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "470e5e99-b00d-4a9f-b92b-6e3da1556615") ) (text "To Motherboard Fan connector" (exclude_from_sim no) (at 36.83 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5dcb9b55-2fc8-428e-994d-d22aed72cae7") ) (text "Fan Channel: ${SHEETNAME}" (exclude_from_sim no) (at 20.32 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "6cd836a6-fb76-413b-b3b7-901783f4e949") ) (text "To Fan" (exclude_from_sim no) (at 243.84 35.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea10d4a3-4e75-4c2d-a099-0d84368a6293") ) (global_label "AUX12V" (shape input) (at 157.48 107.95 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f3969b31-ed0d-493c-b0b4-a681177a3686") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.9307 107.8706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (hierarchical_label "TACHO_GEN" (shape input) (at 132.08 80.01 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "062f3b02-c59a-4d8e-8807-5ac15aead0c2") ) (hierarchical_label "PWR_OUT" (shape output) (at 229.87 118.11 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "083154c7-a8c7-4d3e-a8f6-355b60c22ce4") ) (hierarchical_label "TACHO_OUT" (shape output) (at 68.58 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0fbd8a06-85c9-4ad4-8517-a2809baef0ce") ) (hierarchical_label "PWM_READ" (shape output) (at 132.08 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "4e33f23a-ae57-406f-a628-0cc4c2bb491c") ) (hierarchical_label "PWM_OUT" (shape output) (at 229.87 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "5217a36d-d917-4ca7-9824-071920a9d494") ) (hierarchical_label "TACHO_IN" (shape input) (at 229.87 71.12 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "53c0c07d-4ddc-4995-82a7-9e821140ff87") ) (hierarchical_label "PWR_IN" (shape input) (at 68.58 132.08 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "68c5b44b-7328-48fe-ad7b-4d7fa00deefa") ) (hierarchical_label "TACHO_READ" (shape output) (at 171.45 71.12 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c7f937ee-d6b0-4d6b-8268-5f1a55f0c45f") ) (hierarchical_label "PWM_IN" (shape input) (at 68.58 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e20a006a-7931-4393-b1c3-a53f69b60dce") ) (hierarchical_label "PWM_GEN" (shape input) (at 171.45 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "edf804ff-fd14-479d-ad14-393f22c9d5b5") ) (symbol (lib_id "Device:R") (at 105.41 53.34 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "09870edd-9a18-4370-90d2-0fc6c17d6715") (property "Reference" "R30" (at 107.95 52.0699 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "30k" (at 107.95 54.6099 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 107.188 53.34 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 105.41 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 105.41 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C100001" (at 105.41 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 105.41 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d74948b3-997d-4aea-887b-11231d89a866") ) (pin "2" (uuid "e3e0858c-16ca-4cb5-b2f5-e48cabb4f1a9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R30") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R23") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R16") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R9") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 83.82 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0c589259-40cb-4ba3-9d8b-422ffc8edb0d") (property "Reference" "#PWR0103" (at 83.82 153.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 83.82 152.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 83.82 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 83.82 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 83.82 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4ac15771-08d8-4610-b5a9-6b6039534f9c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR0103") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR0104") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR0100") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR099") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 80.01 52.07 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "16ceaaaa-e928-48f0-aa21-5f990ab7d966") (property "Reference" "D58" (at 82.55 50.7999 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 82.55 53.3399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 80.01 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 80.01 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 80.01 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 80.01 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "bed67053-2070-4d09-ac2e-812c95aedfda") ) (pin "1" (uuid "c57c8d4e-00e6-49d7-b46c-8d5b5e882747") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D58") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D59") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D57") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D56") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 215.9 135.89 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1e05f6ba-7056-4b80-b4c2-45cfc3bfdfcb") (property "Reference" "#PWR065" (at 215.9 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 215.9 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 215.9 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 215.9 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 215.9 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6dca6464-3d8e-48a1-a08d-ffc8e85bc724") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR065") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR057") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR049") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR041") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 190.5 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (property "Reference" "R33" (at 193.04 124.4599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 193.04 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 188.722 125.73 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 190.5 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 190.5 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 190.5 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 190.5 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d0f31c53-1e10-4351-8a11-c6c8cd7bd74f") ) (pin "2" (uuid "2f131aad-d61b-4019-a0f3-e7373d09ef77") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R33") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R26") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R19") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R12") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 212.09 71.12 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2cf2e306-59d7-456f-b02b-64fb5bbcc818") (property "Reference" "D21" (at 212.09 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "BAT54C" (at 212.09 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2844172" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 212.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "970ff045-d21d-4b60-9619-5876a460c064") ) (pin "2" (uuid "12bf308e-e88e-408c-9458-569aca3e1f17") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D21") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D17") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D13") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D9") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 218.44 78.74 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "31b59d93-a9a0-40d8-92f8-9879661e9475") (property "Reference" "D50" (at 212.852 77.47 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 208.534 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 218.44 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 218.44 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 218.44 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 218.44 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "162f76eb-d3c4-40aa-a913-9976ace7b33d") ) (pin "1" (uuid "605c59b3-96f3-40f2-8af7-a0e60d762ffe") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D50") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D51") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D49") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D48") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 218.44 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "38e299f1-0a29-430e-9b44-f1033afbd7c8") (property "Reference" "#PWR0123" (at 218.44 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 218.44 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 218.44 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 218.44 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 218.44 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "05838fa6-65d6-4b71-84e5-2cc5c6b9bf1c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR0123") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR0124") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR0122") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR0121") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 93.98 43.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3fb97f3e-520c-4a3d-90e0-f35e2392af78") (property "Reference" "R29" (at 93.98 36.83 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 93.98 39.37 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 93.98 41.402 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 93.98 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 93.98 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 93.98 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 93.98 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c4ffe736-e6eb-47f1-9617-5dc3d45d2dcd") ) (pin "2" (uuid "1063eed3-5129-40b3-aa3a-4e036ecc2d24") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R29") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R22") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R15") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R8") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 80.01 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "48bd489a-17d7-405f-aa69-4ea305424da2") (property "Reference" "#PWR0115" (at 80.01 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 80.01 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 80.01 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 80.01 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 80.01 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9c5b1b2c-35d3-461d-a7d5-a5d56976f035") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR0115") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR0116") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR0114") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR0113") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 190.5 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "497abae2-70e4-47ca-bb15-7d9dfa60d946") (property "Reference" "#PWR062" (at 190.5 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 190.5 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 190.5 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c9f2bef0-650c-4d5d-9bf3-e9e94c49fa90") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR062") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR054") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR046") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR038") (unit 1) ) ) ) ) (symbol (lib_id "Transistor_FET:2N7002K") (at 104.14 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "537d375b-1ca6-4946-95db-66496543d0cb") (property "Reference" "Q4" (at 110.49 87.6299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "2N7002K" (at 110.49 90.1699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 109.22 90.805 0) (effects (font (size 1.27 1.27) (italic yes) ) (justify left) (hide yes) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C85047" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 104.14 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5b316ca8-b56c-425b-93ad-f70f7598b8da") ) (pin "2" (uuid "73372508-1224-408d-bef1-763ba03b4eb1") ) (pin "3" (uuid "5ffbf02b-636b-4e66-bd03-269e3212d061") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "Q4") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "Q3") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "Q2") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "Q1") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 83.82 142.24 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6ac072df-f56f-411d-90ce-e618b6f9b3b8") (property "Reference" "D46" (at 86.36 140.9699 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 86.36 143.5099 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 83.82 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 83.82 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 83.82 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 83.82 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "fbcc6132-1bae-4c3d-8d3a-27ee4fdeb486") ) (pin "1" (uuid "54a71cb9-3572-49c4-9671-150641417a1d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D46") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D47") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D45") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D44") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 190.5 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "75bd3244-7746-40bf-b41a-5ea9cec31d77") (property "Reference" "C19" (at 194.31 78.7399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1nF" (at 194.31 81.2799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 191.4652 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1588" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 190.5 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "451f34f6-1a38-45c2-b103-42e9fe05874d") ) (pin "2" (uuid "6ba30de3-57ca-4109-977c-c84b4db2a60b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "C19") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "C16") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "C13") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "C10") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 194.31 57.15 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "82946f89-b747-42ca-bf80-b90314ffa967") (property "Reference" "#PWR064" (at 198.12 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 190.5 57.1499 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 194.31 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2373795d-998a-45a9-b72d-e69f0d7bf039") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR064") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR056") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR048") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR040") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 80.01 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "89c78abb-9359-4a80-9d1f-9f42fefbb403") (property "Reference" "#PWR0119" (at 80.01 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 80.01 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 80.01 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 80.01 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 80.01 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "dec2ca3d-5d6d-4d94-8c82-5800a2d11b24") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR0119") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR0120") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR0118") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR0117") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 80.01 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8ad39315-2c9c-416c-8930-0ac5c2b62eb9") (property "Reference" "D62" (at 82.55 78.7399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 82.55 81.2799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 80.01 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 80.01 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 80.01 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 80.01 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "1583daf1-6abc-437a-ab5e-2d4114d1f924") ) (pin "1" (uuid "401b871b-8888-47f2-b5c6-a4858d0e8277") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D62") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D63") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D61") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D60") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 190.5 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8f8d6a18-f0d1-4dbd-8a9d-5b022d87f1ab") (property "Reference" "#PWR063" (at 190.5 151.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 190.5 149.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 190.5 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 190.5 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 190.5 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a3149451-a998-4a9d-8ec2-5b6e2ff9150b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR063") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR055") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR047") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR039") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 116.84 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "983de26c-e36c-4d87-9a48-1bbe3c867ff3") (property "Reference" "R32" (at 116.84 82.55 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 116.84 85.09 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 116.84 81.788 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 116.84 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a73009a2-342a-4f8d-8ef4-4aa35f7962be") ) (pin "2" (uuid "5e29a663-d0f3-49ca-a87b-09d1aca9bdc4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R32") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R25") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R18") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R11") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 190.5 135.89 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "99383412-e91e-4682-9562-162d7ddf01c0") (property "Reference" "D20" (at 185.42 135.89 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 171.45 139.7 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 190.5 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 190.5 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 190.5 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 190.5 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 190.5 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e980367b-5fce-4964-b2f7-088ac8ddc29d") ) (pin "2" (uuid "6842c7ce-8628-4a3b-8ed6-f098d97dcd1a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D20") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D16") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D12") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D8") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 106.68 97.79 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a4b3f899-3773-489e-a176-285651826a27") (property "Reference" "#PWR058" (at 106.68 104.14 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 106.68 102.87 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 106.68 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "25545d95-113d-4e03-870d-41e225c288e2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR058") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR050") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR042") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR034") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 200.66 63.5 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ab1976a0-4513-4f4e-8e36-2d488d6ca030") (property "Reference" "R34" (at 203.2 62.2299 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "10k" (at 203.2 64.7699 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 202.438 63.5 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 200.66 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "26a2851d-5dbb-4be5-9a93-dbc06f395b46") ) (pin "2" (uuid "9291af84-86bd-4272-93af-66e75c116629") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R34") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R27") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R20") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R13") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 107.95 158.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "abcdd130-a350-4ca6-b21f-74c28b823a5a") (property "Reference" "#PWR059" (at 107.95 165.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 107.95 163.83 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 158.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 158.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 107.95 158.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3f7f5c49-b316-4ab2-94a6-eaac6f548ca7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR059") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR051") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR043") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR035") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 215.9 125.73 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aef1c41f-3561-4727-acbe-d50cf3c63f5d") (property "Reference" "D22" (at 218.44 124.4599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "ES1D 1A 200V" (at 218.44 126.9999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 215.9 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d9fd62a4-862a-4e90-8cd2-59de2ddb5b08") ) (pin "2" (uuid "ef3c528c-c9cd-4fd2-81cf-a766c0cb888c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D22") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D18") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D14") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D10") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 175.26 118.11 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b0afb5c6-54db-4986-8460-a37daf921ef8") (property "Reference" "JP5" (at 172.72 116.8399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Fan Power" (at 172.72 119.3799 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 175.26 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 175.26 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 175.26 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 175.26 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1925673c-c032-49b9-9dbc-6d99fedfd492") ) (pin "2" (uuid "0758ce77-42fb-4ae8-ba84-8f195da33c14") ) (pin "3" (uuid "a5c6605d-ac1c-41b5-a452-e595e19d3568") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "JP5") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "JP4") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "JP3") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "JP2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C") (at 204.47 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b0f52885-ea56-4d9c-874e-233e54e8d5a1") (property "Reference" "C20" (at 208.28 124.4599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 208.28 126.9999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 205.4352 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 204.47 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor" (at 204.47 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 204.47 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 204.47 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "02af3e73-e68b-4f22-9b8a-43c9d4721bec") ) (pin "2" (uuid "23b0a919-949c-4ad6-93e3-f299529be081") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "C20") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "C17") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "C14") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "C11") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 107.95 139.7 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ba9485af-39b4-4a7f-afda-f544d55bea86") (property "Reference" "R31" (at 110.49 138.4299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 110.49 140.9699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 106.172 139.7 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 107.95 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 107.95 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 107.95 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 107.95 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2cddf506-b609-4dc5-a019-c8e098a845ef") ) (pin "2" (uuid "93540b08-4785-4d0f-8948-5d8887c3c31e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R31") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R24") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R17") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R10") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 218.44 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c4fa64c6-0ea8-48b7-b4c4-07f11684d214") (property "Reference" "#PWR0107" (at 218.44 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 218.44 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 218.44 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 218.44 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 218.44 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d511fa00-351c-4499-9a40-da6c5f3e3581") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR0107") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR0108") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR0106") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR0105") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 107.95 149.86 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e14cb179-4962-4028-9c28-4efc70e0b4c6") (property "Reference" "D19" (at 111.76 150.1774 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 111.76 152.7174 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 107.95 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 107.95 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 107.95 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 107.95 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 107.95 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "06653085-78b6-4adf-8e0e-053102170d78") ) (pin "2" (uuid "d856f1be-8205-411c-8757-341f72ea2eca") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D19") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D15") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D11") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D7") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 201.93 43.18 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e6e8ae2a-5894-4e68-8264-24e364417d34") (property "Reference" "R35" (at 201.93 36.83 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "680" (at 201.93 39.37 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 201.93 44.958 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C115415" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 201.93 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "25282ca1-b24f-483c-9fff-2c5ca29d68f0") ) (pin "2" (uuid "4d53013c-0afe-4027-8d38-e16456d56bc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "R35") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "R28") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "R21") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "R14") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 105.41 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f7bc3c95-a8eb-4e12-a2ed-622395ab7d46") (property "Reference" "#PWR053" (at 105.41 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 105.41 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 105.41 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 105.41 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 105.41 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "fc68d788-d95e-41b3-b8e6-c36f0749863f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "#PWR053") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "#PWR061") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "#PWR045") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "#PWR037") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 218.44 52.07 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f93337c1-ba43-4bd7-abe4-9f429ba85e00") (property "Reference" "D66" (at 211.836 51.054 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "5V TVS" (at 209.296 53.594 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 218.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 218.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 218.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C5180216" (at 218.44 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "f7c0b2e2-390d-45f8-a0bb-1bc94138c601") ) (pin "1" (uuid "8baba88f-88f6-4257-a5cf-7f8ed63df981") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268" (reference "D66") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1" (reference "D67") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91" (reference "D65") (unit 1) ) (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4" (reference "D64") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/fan_channels.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "21c2a7bb-e53e-404f-aa6f-d468a4437c78") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 57.15 95.25) (diameter 0) (color 0 0 0 0) (uuid "2e4aac31-cff7-4000-8a3d-b271154c7919") ) (junction (at 55.88 50.8) (diameter 0) (color 0 0 0 0) (uuid "4742e577-ebea-4682-92fa-9307b2dfd870") ) (junction (at 58.42 185.42) (diameter 0) (color 0 0 0 0) (uuid "907a26ea-27cf-410b-8d70-16ca98e2b02f") ) (junction (at 58.42 139.7) (diameter 0) (color 0 0 0 0) (uuid "cce001d0-9612-4a22-ba3f-288c3c60285e") ) (wire (pts (xy 222.25 80.01) (xy 234.95 80.01) ) (stroke (width 0) (type default) ) (uuid "00bcd8b0-8b79-4470-9fae-9418c696e9b1") ) (wire (pts (xy 222.25 116.84) (xy 234.95 116.84) ) (stroke (width 0) (type default) ) (uuid "0132f4e7-fd28-433b-bb32-9f82f9dfe657") ) (wire (pts (xy 48.26 177.8) (xy 60.96 177.8) ) (stroke (width 0) (type default) ) (uuid "02888c7d-f247-4793-ad9b-f95185564dc4") ) (wire (pts (xy 222.25 39.37) (xy 241.3 39.37) ) (stroke (width 0) (type default) ) (uuid "07eae5cc-7c44-4f25-ac0d-9719670ba862") ) (wire (pts (xy 58.42 137.16) (xy 58.42 139.7) ) (stroke (width 0) (type default) ) (uuid "0b9a35b9-89da-4dd1-a442-3462c7475065") ) (wire (pts (xy 104.14 90.17) (xy 123.19 90.17) ) (stroke (width 0) (type default) ) (uuid "0cd4b0e4-b8d2-4f86-96c9-4c87651a7f52") ) (wire (pts (xy 209.55 130.81) (xy 209.55 142.24) ) (stroke (width 0) (type default) ) (uuid "0e9971e2-9239-4761-bd2e-ac457c6c846f") ) (wire (pts (xy 55.88 48.26) (xy 55.88 50.8) ) (stroke (width 0) (type default) ) (uuid "0efb17f5-e171-4121-9352-103cda26c4e1") ) (wire (pts (xy 88.9 168.91) (xy 88.9 170.18) ) (stroke (width 0) (type default) ) (uuid "10386a9a-3c8d-4117-9729-d8c9f62c332d") ) (wire (pts (xy 45.72 48.26) (xy 55.88 48.26) ) (stroke (width 0) (type default) ) (uuid "10e04af4-4ad9-4f6a-9aeb-f73cc3520e94") ) (wire (pts (xy 222.25 35.56) (xy 232.41 35.56) ) (stroke (width 0) (type default) ) (uuid "1212c748-a2ce-4531-bd0b-28df23189f1a") ) (wire (pts (xy 234.95 116.84) (xy 234.95 110.49) ) (stroke (width 0) (type default) ) (uuid "13f3e094-8561-4a83-9e47-ddbb60946697") ) (wire (pts (xy 58.42 139.7) (xy 64.77 139.7) ) (stroke (width 0) (type default) ) (uuid "14847f1a-f89a-42cc-b5dd-803f1040723f") ) (wire (pts (xy 48.26 132.08) (xy 60.96 132.08) ) (stroke (width 0) (type default) ) (uuid "15766e58-6e70-4654-ae6b-dca4cd8e4e8e") ) (wire (pts (xy 60.96 129.54) (xy 64.77 129.54) ) (stroke (width 0) (type default) ) (uuid "15f1c9df-8d6a-4d79-a044-9cf09ffdeb23") ) (wire (pts (xy 115.57 43.18) (xy 121.92 43.18) ) (stroke (width 0) (type default) ) (uuid "181de405-becb-42a2-96d2-55a8dd70da74") ) (wire (pts (xy 48.26 182.88) (xy 58.42 182.88) ) (stroke (width 0) (type default) ) (uuid "1926ddc5-eace-4346-8773-07bd4e54e6fa") ) (wire (pts (xy 58.42 182.88) (xy 58.42 185.42) ) (stroke (width 0) (type default) ) (uuid "1b243181-be6c-4bab-8052-0f4c8259a853") ) (wire (pts (xy 205.74 135.89) (xy 204.47 135.89) ) (stroke (width 0) (type default) ) (uuid "1c4427ce-9c5c-4665-b180-5a7af5d845ce") ) (wire (pts (xy 222.25 109.22) (xy 232.41 109.22) ) (stroke (width 0) (type default) ) (uuid "1cbeafd1-3c28-46e1-b594-64fee3bd8654") ) (wire (pts (xy 114.3 85.09) (xy 114.3 92.71) ) (stroke (width 0) (type default) ) (uuid "1f587120-a766-4e48-8fab-ba129aa9a228") ) (wire (pts (xy 52.07 185.42) (xy 48.26 185.42) ) (stroke (width 0) (type default) ) (uuid "1f88e638-fa41-4d4f-a84f-c00c07c1420d") ) (wire (pts (xy 232.41 78.74) (xy 241.3 78.74) ) (stroke (width 0) (type default) ) (uuid "21a592e4-7607-493b-9f82-0d6ca73ff7a2") ) (wire (pts (xy 209.55 130.81) (xy 204.47 130.81) ) (stroke (width 0) (type default) ) (uuid "29953f7a-c268-4074-8626-9594d0db9c9b") ) (wire (pts (xy 104.14 95.25) (xy 116.84 95.25) ) (stroke (width 0) (type default) ) (uuid "2b3d413f-5bdf-47e0-bb85-b01c112b65c2") ) (wire (pts (xy 205.74 135.89) (xy 205.74 142.24) ) (stroke (width 0) (type default) ) (uuid "2b40cbf0-b5fa-4dc8-8430-73fb51c3d762") ) (wire (pts (xy 124.46 129.54) (xy 120.65 129.54) ) (stroke (width 0) (type default) ) (uuid "2ceaebb9-d7da-4922-ba86-629ee723df73") ) (wire (pts (xy 236.22 147.32) (xy 242.57 147.32) ) (stroke (width 0) (type default) ) (uuid "2d42298b-c51a-450b-b357-4d5dfc1c84e5") ) (wire (pts (xy 57.15 95.25) (xy 63.5 95.25) ) (stroke (width 0) (type default) ) (uuid "2d9cb4aa-3e6b-4ac8-bac2-76b4602861dc") ) (wire (pts (xy 237.49 81.28) (xy 237.49 71.12) ) (stroke (width 0) (type default) ) (uuid "3054643b-cc74-445f-9f58-89c37bb9865e") ) (wire (pts (xy 76.2 34.29) (xy 76.2 35.56) ) (stroke (width 0) (type default) ) (uuid "311deb31-bd7b-4131-8a83-76ec9914975a") ) (wire (pts (xy 48.26 134.62) (xy 64.77 134.62) ) (stroke (width 0) (type default) ) (uuid "32022626-99b8-4601-af59-18a4c8236cd3") ) (wire (pts (xy 81.28 78.74) (xy 81.28 80.01) ) (stroke (width 0) (type default) ) (uuid "3b71748a-6d27-47eb-a6bf-cc3f33503f27") ) (wire (pts (xy 48.26 137.16) (xy 58.42 137.16) ) (stroke (width 0) (type default) ) (uuid "3f311509-04e8-494c-810e-c7481a284642") ) (wire (pts (xy 59.69 85.09) (xy 63.5 85.09) ) (stroke (width 0) (type default) ) (uuid "42ae72c1-a962-4bb5-85fd-e8d5e9ad5dbd") ) (wire (pts (xy 46.99 90.17) (xy 63.5 90.17) ) (stroke (width 0) (type default) ) (uuid "45e2808f-f00f-4135-a816-f6fe06e6d4e1") ) (wire (pts (xy 223.52 146.05) (xy 233.68 146.05) ) (stroke (width 0) (type default) ) (uuid "45f4c532-5ed2-4dbe-8d4b-9d14b3125d5e") ) (wire (pts (xy 105.41 185.42) (xy 118.11 185.42) ) (stroke (width 0) (type default) ) (uuid "463e0e29-b5cb-4168-b43a-6500d8a67934") ) (wire (pts (xy 233.68 152.4) (xy 242.57 152.4) ) (stroke (width 0) (type default) ) (uuid "4688e651-fcb8-4696-813e-69c87ec921b9") ) (wire (pts (xy 86.36 34.29) (xy 86.36 35.56) ) (stroke (width 0) (type default) ) (uuid "47cc99de-cb5c-4269-ba62-7cb2028f8fec") ) (wire (pts (xy 232.41 41.91) (xy 241.3 41.91) ) (stroke (width 0) (type default) ) (uuid "492716ee-f90f-4529-ab14-957c7f6159ed") ) (wire (pts (xy 104.14 85.09) (xy 114.3 85.09) ) (stroke (width 0) (type default) ) (uuid "4ac0014d-b88e-4312-ba53-ccb4ece4c19c") ) (wire (pts (xy 232.41 109.22) (xy 232.41 115.57) ) (stroke (width 0) (type default) ) (uuid "4cb3934b-5b6d-4bbe-b2d2-1982e1fb63d1") ) (wire (pts (xy 208.28 93.98) (xy 203.2 93.98) ) (stroke (width 0) (type default) ) (uuid "50e1ed27-1c84-4767-8b11-82b957497406") ) (wire (pts (xy 238.76 154.94) (xy 238.76 144.78) ) (stroke (width 0) (type default) ) (uuid "51649f9a-37cd-408e-9316-12a75dee2e7b") ) (wire (pts (xy 77.47 78.74) (xy 77.47 80.01) ) (stroke (width 0) (type default) ) (uuid "51c46a22-c794-4cce-806e-9764f833aad6") ) (wire (pts (xy 232.41 72.39) (xy 232.41 78.74) ) (stroke (width 0) (type default) ) (uuid "52271ddf-65dd-4e7c-9cb1-2aa361c3bc53") ) (wire (pts (xy 78.74 168.91) (xy 78.74 170.18) ) (stroke (width 0) (type default) ) (uuid "523d8548-afb1-48ec-95d1-480569465a00") ) (wire (pts (xy 208.28 93.98) (xy 208.28 105.41) ) (stroke (width 0) (type default) ) (uuid "5315c3cb-84b7-4249-8b12-328cc52c0fef") ) (wire (pts (xy 222.25 43.18) (xy 234.95 43.18) ) (stroke (width 0) (type default) ) (uuid "53ecca3d-7839-42a3-af7a-e0d1ecbb7ee6") ) (wire (pts (xy 58.42 185.42) (xy 64.77 185.42) ) (stroke (width 0) (type default) ) (uuid "57da5ad0-febc-4164-81dd-b7e17430338b") ) (wire (pts (xy 60.96 132.08) (xy 60.96 129.54) ) (stroke (width 0) (type default) ) (uuid "58272fc0-042b-4a22-9661-80b06657963c") ) (wire (pts (xy 222.25 72.39) (xy 232.41 72.39) ) (stroke (width 0) (type default) ) (uuid "58cde8d9-0ad1-44ef-9890-5578f39b2130") ) (wire (pts (xy 52.07 139.7) (xy 48.26 139.7) ) (stroke (width 0) (type default) ) (uuid "5957e0f9-27fa-4a55-a7b3-b7173cc04ed4") ) (wire (pts (xy 120.65 129.54) (xy 120.65 140.97) ) (stroke (width 0) (type default) ) (uuid "599569a8-290d-40ac-887b-49c3da08cf30") ) (wire (pts (xy 105.41 180.34) (xy 124.46 180.34) ) (stroke (width 0) (type default) ) (uuid "5af16792-e15e-496f-8dae-4d532e65dc18") ) (wire (pts (xy 204.47 25.4) (xy 204.47 31.75) ) (stroke (width 0) (type default) ) (uuid "5c6c7dd6-3b16-4078-9829-924c131b0b18") ) (wire (pts (xy 236.22 153.67) (xy 236.22 147.32) ) (stroke (width 0) (type default) ) (uuid "5c75aaaa-b039-4575-beac-5a764121c4b0") ) (wire (pts (xy 113.03 40.64) (xy 113.03 48.26) ) (stroke (width 0) (type default) ) (uuid "5ccf2f05-bb21-418d-8bdb-21f42cb1e521") ) (wire (pts (xy 234.95 110.49) (xy 241.3 110.49) ) (stroke (width 0) (type default) ) (uuid "60659308-433c-494e-991c-835bcd7e7c39") ) (wire (pts (xy 232.41 115.57) (xy 241.3 115.57) ) (stroke (width 0) (type default) ) (uuid "63d04e82-80ff-453c-a4bc-cc90dbde29f3") ) (wire (pts (xy 237.49 107.95) (xy 241.3 107.95) ) (stroke (width 0) (type default) ) (uuid "66987d47-b8b4-47c2-8a35-18def9c545eb") ) (wire (pts (xy 55.88 50.8) (xy 62.23 50.8) ) (stroke (width 0) (type default) ) (uuid "66de864f-6214-4995-a954-1c279697200b") ) (wire (pts (xy 222.25 113.03) (xy 241.3 113.03) ) (stroke (width 0) (type default) ) (uuid "680fe3a9-fb24-47d8-9f42-3417dfb35233") ) (wire (pts (xy 204.47 25.4) (xy 203.2 25.4) ) (stroke (width 0) (type default) ) (uuid "6a6167b1-a9b3-41c1-a677-a9a1f11dfa82") ) (wire (pts (xy 118.11 139.7) (xy 118.11 132.08) ) (stroke (width 0) (type default) ) (uuid "740b9947-1aaf-42f0-9756-1bffb0bf0766") ) (wire (pts (xy 102.87 50.8) (xy 115.57 50.8) ) (stroke (width 0) (type default) ) (uuid "74229260-f547-476f-b93a-1788251596e2") ) (wire (pts (xy 120.65 175.26) (xy 120.65 186.69) ) (stroke (width 0) (type default) ) (uuid "74c5d9c3-34fa-47c0-87a3-26bfe92de512") ) (wire (pts (xy 118.11 177.8) (xy 124.46 177.8) ) (stroke (width 0) (type default) ) (uuid "7f06a039-2e9a-41a5-af55-db0b97a8c921") ) (wire (pts (xy 208.28 20.32) (xy 203.2 20.32) ) (stroke (width 0) (type default) ) (uuid "83f6b0a8-feb8-41b3-bd39-8a4f597d5e47") ) (wire (pts (xy 105.41 134.62) (xy 124.46 134.62) ) (stroke (width 0) (type default) ) (uuid "8951e0f7-74e4-4b05-82b7-4ef2da117b2c") ) (wire (pts (xy 82.55 168.91) (xy 82.55 170.18) ) (stroke (width 0) (type default) ) (uuid "8954efc6-a2d7-4832-ad75-eef6f2e8eda6") ) (wire (pts (xy 45.72 43.18) (xy 58.42 43.18) ) (stroke (width 0) (type default) ) (uuid "899f7b50-d008-4317-9eaa-5dd10caa404d") ) (wire (pts (xy 102.87 40.64) (xy 113.03 40.64) ) (stroke (width 0) (type default) ) (uuid "8a55a662-598e-44e4-b2bd-93367bd36620") ) (wire (pts (xy 237.49 71.12) (xy 241.3 71.12) ) (stroke (width 0) (type default) ) (uuid "8f1e8604-5e81-471a-9eac-8ef396a859db") ) (wire (pts (xy 223.52 149.86) (xy 242.57 149.86) ) (stroke (width 0) (type default) ) (uuid "90efdffb-96d0-49d0-868f-9303190e0d24") ) (wire (pts (xy 121.92 40.64) (xy 118.11 40.64) ) (stroke (width 0) (type default) ) (uuid "92efebda-3760-4168-98c8-4a7fb7d1f508") ) (wire (pts (xy 208.28 57.15) (xy 208.28 68.58) ) (stroke (width 0) (type default) ) (uuid "9382627e-3cf0-4d33-98c9-233a96a9fd5e") ) (wire (pts (xy 58.42 40.64) (xy 62.23 40.64) ) (stroke (width 0) (type default) ) (uuid "93f87f0d-a8a4-44f0-b00c-99008532ad52") ) (wire (pts (xy 118.11 185.42) (xy 118.11 177.8) ) (stroke (width 0) (type default) ) (uuid "989478fc-a66c-4fc7-93d8-1c8d45d17eae") ) (wire (pts (xy 113.03 48.26) (xy 121.92 48.26) ) (stroke (width 0) (type default) ) (uuid "9ed41c59-f1cd-489b-afc6-57c55ef81efd") ) (wire (pts (xy 50.8 99.06) (xy 50.8 95.25) ) (stroke (width 0) (type default) ) (uuid "9f74bbea-62ca-4aea-99df-ae33272f7bf5") ) (wire (pts (xy 187.96 43.18) (xy 190.5 43.18) ) (stroke (width 0) (type default) ) (uuid "a03526ca-4a69-44fe-b037-d7d124b7d417") ) (wire (pts (xy 58.42 139.7) (xy 58.42 143.51) ) (stroke (width 0) (type default) ) (uuid "a1644bb8-5e50-4d52-8a41-a6ebaa6e37f8") ) (wire (pts (xy 208.28 57.15) (xy 203.2 57.15) ) (stroke (width 0) (type default) ) (uuid "a304b53c-89a8-44e6-8dec-80d9dcbba3a0") ) (wire (pts (xy 46.99 87.63) (xy 59.69 87.63) ) (stroke (width 0) (type default) ) (uuid "a3575f32-15ae-4c01-8d35-8573b76084bb") ) (wire (pts (xy 233.68 146.05) (xy 233.68 152.4) ) (stroke (width 0) (type default) ) (uuid "a38bc258-2b0d-4355-b700-5127aa7159b6") ) (wire (pts (xy 115.57 129.54) (xy 115.57 137.16) ) (stroke (width 0) (type default) ) (uuid "a430eb33-0c88-473b-af75-93709739a813") ) (wire (pts (xy 52.07 143.51) (xy 52.07 139.7) ) (stroke (width 0) (type default) ) (uuid "a43a53cb-2c86-4305-b8fc-8cd83304db5d") ) (wire (pts (xy 58.42 195.58) (xy 58.42 185.42) ) (stroke (width 0) (type default) ) (uuid "a7095d8a-8530-4a49-971b-3c8f4abcd227") ) (wire (pts (xy 223.52 153.67) (xy 236.22 153.67) ) (stroke (width 0) (type default) ) (uuid "a8e57a6e-af17-4af1-9ba3-198e908bda74") ) (wire (pts (xy 115.57 137.16) (xy 124.46 137.16) ) (stroke (width 0) (type default) ) (uuid "a90d1d79-15a4-437c-b230-7c75ce92b774") ) (wire (pts (xy 234.95 73.66) (xy 241.3 73.66) ) (stroke (width 0) (type default) ) (uuid "a9c190c1-86a4-4992-afc8-a74431cccd21") ) (wire (pts (xy 52.07 189.23) (xy 52.07 185.42) ) (stroke (width 0) (type default) ) (uuid "ab421d65-9933-403e-a039-b97ac3293384") ) (wire (pts (xy 123.19 85.09) (xy 119.38 85.09) ) (stroke (width 0) (type default) ) (uuid "afa30dff-7d66-428c-9366-26b75e7e2bbb") ) (wire (pts (xy 187.96 116.84) (xy 190.5 116.84) ) (stroke (width 0) (type default) ) (uuid "afbf65be-8669-458b-aaff-6186389819f6") ) (wire (pts (xy 82.55 123.19) (xy 82.55 124.46) ) (stroke (width 0) (type default) ) (uuid "b178fa74-f178-4a70-8f57-2a5118b0852a") ) (wire (pts (xy 60.96 175.26) (xy 64.77 175.26) ) (stroke (width 0) (type default) ) (uuid "b5c9d62d-b767-4899-bbbd-22ab2728ac4a") ) (wire (pts (xy 102.87 45.72) (xy 121.92 45.72) ) (stroke (width 0) (type default) ) (uuid "b5e2016a-f0bd-4b20-aba2-754426598f0b") ) (wire (pts (xy 49.53 54.61) (xy 49.53 50.8) ) (stroke (width 0) (type default) ) (uuid "b73a4998-39ef-46ac-90ad-a495c147a090") ) (wire (pts (xy 60.96 177.8) (xy 60.96 175.26) ) (stroke (width 0) (type default) ) (uuid "b934c2c1-5793-4cc2-a504-70a43b763af5") ) (wire (pts (xy 119.38 85.09) (xy 119.38 96.52) ) (stroke (width 0) (type default) ) (uuid "ba3dc369-dc12-48e0-87a9-920a5b5fb3c2") ) (wire (pts (xy 237.49 44.45) (xy 237.49 34.29) ) (stroke (width 0) (type default) ) (uuid "bb2f27f4-18c0-4030-b6e0-ca4f162344fd") ) (wire (pts (xy 92.71 168.91) (xy 92.71 170.18) ) (stroke (width 0) (type default) ) (uuid "bb323e8a-de51-4da8-9371-e7587a511f1e") ) (wire (pts (xy 124.46 175.26) (xy 120.65 175.26) ) (stroke (width 0) (type default) ) (uuid "be570213-2a38-4a91-a709-a69c6f851e04") ) (wire (pts (xy 189.23 153.67) (xy 191.77 153.67) ) (stroke (width 0) (type default) ) (uuid "c053023c-b1ee-409e-9332-064dcf62a3b0") ) (wire (pts (xy 48.26 180.34) (xy 64.77 180.34) ) (stroke (width 0) (type default) ) (uuid "c260c9c0-160d-4fad-a712-c61a5c7453e1") ) (wire (pts (xy 78.74 123.19) (xy 78.74 124.46) ) (stroke (width 0) (type default) ) (uuid "c5943653-147c-4f43-9a12-90902c13a22d") ) (wire (pts (xy 87.63 78.74) (xy 87.63 80.01) ) (stroke (width 0) (type default) ) (uuid "c71560e6-531c-4b26-a62b-93845441e8a1") ) (wire (pts (xy 57.15 95.25) (xy 57.15 99.06) ) (stroke (width 0) (type default) ) (uuid "c888dd87-2d70-45f6-b4de-20c893e453cc") ) (wire (pts (xy 88.9 123.19) (xy 88.9 124.46) ) (stroke (width 0) (type default) ) (uuid "c93f38bc-797e-40ff-9143-7684fafc29ad") ) (wire (pts (xy 57.15 92.71) (xy 57.15 95.25) ) (stroke (width 0) (type default) ) (uuid "ca1f84d0-b6cb-4a98-b7fb-5b04ee77a1f6") ) (wire (pts (xy 222.25 76.2) (xy 241.3 76.2) ) (stroke (width 0) (type default) ) (uuid "ca39a9a0-dbc9-4c89-bca0-abb108e869ab") ) (wire (pts (xy 114.3 92.71) (xy 123.19 92.71) ) (stroke (width 0) (type default) ) (uuid "ca75d035-a592-447f-aa47-71a93044cee1") ) (wire (pts (xy 115.57 50.8) (xy 115.57 43.18) ) (stroke (width 0) (type default) ) (uuid "caaa2404-ba6b-43bd-94d6-471cdcc34a7b") ) (wire (pts (xy 204.47 99.06) (xy 204.47 105.41) ) (stroke (width 0) (type default) ) (uuid "cc63e37e-3cbd-4b55-84be-dc2da2264b46") ) (wire (pts (xy 49.53 50.8) (xy 45.72 50.8) ) (stroke (width 0) (type default) ) (uuid "ce523f2f-75ae-44a0-bc64-a6db0fb0d741") ) (wire (pts (xy 238.76 144.78) (xy 242.57 144.78) ) (stroke (width 0) (type default) ) (uuid "cf0747d2-43d6-4280-adb2-ff042795c70a") ) (wire (pts (xy 59.69 195.58) (xy 58.42 195.58) ) (stroke (width 0) (type default) ) (uuid "cf49c28b-5db8-42ee-b584-032bf1a816a3") ) (wire (pts (xy 115.57 175.26) (xy 115.57 182.88) ) (stroke (width 0) (type default) ) (uuid "d32fcd47-ef7e-48f5-8f92-f59caeb64154") ) (wire (pts (xy 237.49 34.29) (xy 241.3 34.29) ) (stroke (width 0) (type default) ) (uuid "d382f5c7-7db3-4443-b14e-106921947fa3") ) (wire (pts (xy 237.49 118.11) (xy 237.49 107.95) ) (stroke (width 0) (type default) ) (uuid "d6c65298-ad4e-46ea-bd24-3cc284b70958") ) (wire (pts (xy 105.41 129.54) (xy 115.57 129.54) ) (stroke (width 0) (type default) ) (uuid "d6e492ba-023f-4fe1-a0f6-a293cbbc45b0") ) (wire (pts (xy 204.47 62.23) (xy 203.2 62.23) ) (stroke (width 0) (type default) ) (uuid "d8f3468c-042a-431a-9078-9cef94a41cf8") ) (wire (pts (xy 232.41 35.56) (xy 232.41 41.91) ) (stroke (width 0) (type default) ) (uuid "ddbcf225-79a3-4b8b-84c2-447908ab6158") ) (wire (pts (xy 187.96 80.01) (xy 190.5 80.01) ) (stroke (width 0) (type default) ) (uuid "de6c98ea-aca3-4c10-a032-8370dafc995e") ) (wire (pts (xy 116.84 87.63) (xy 123.19 87.63) ) (stroke (width 0) (type default) ) (uuid "dfacf543-3281-47d1-ae3e-4fac17bbf58e") ) (wire (pts (xy 92.71 123.19) (xy 92.71 124.46) ) (stroke (width 0) (type default) ) (uuid "e0410ade-8dfd-41b6-84cf-20a13ff79572") ) (wire (pts (xy 234.95 80.01) (xy 234.95 73.66) ) (stroke (width 0) (type default) ) (uuid "e2507488-307b-4de4-b1cf-dfb101572885") ) (wire (pts (xy 204.47 62.23) (xy 204.47 68.58) ) (stroke (width 0) (type default) ) (uuid "e5f3fba9-c47a-45b8-9de6-857957e45973") ) (wire (pts (xy 55.88 50.8) (xy 55.88 54.61) ) (stroke (width 0) (type default) ) (uuid "e737ade3-e23b-4637-a533-72099c1cee29") ) (wire (pts (xy 116.84 95.25) (xy 116.84 87.63) ) (stroke (width 0) (type default) ) (uuid "e84417be-5ff4-4ac1-b455-5ca11a6e7d88") ) (wire (pts (xy 59.69 87.63) (xy 59.69 85.09) ) (stroke (width 0) (type default) ) (uuid "e9781fff-8d37-44dc-a800-4f06d2f6df2e") ) (wire (pts (xy 45.72 45.72) (xy 62.23 45.72) ) (stroke (width 0) (type default) ) (uuid "ea38d1dc-23bd-4289-b7bc-e36c954316f0") ) (wire (pts (xy 58.42 43.18) (xy 58.42 40.64) ) (stroke (width 0) (type default) ) (uuid "ea7e799f-efac-4f29-a1b8-13d444acb4c4") ) (wire (pts (xy 234.95 36.83) (xy 241.3 36.83) ) (stroke (width 0) (type default) ) (uuid "ead990a0-eb9a-424d-b7e7-f9d04adb7d92") ) (wire (pts (xy 80.01 34.29) (xy 80.01 35.56) ) (stroke (width 0) (type default) ) (uuid "ebc70d01-95ef-40b5-b245-ff6d3c5fd9da") ) (wire (pts (xy 105.41 139.7) (xy 118.11 139.7) ) (stroke (width 0) (type default) ) (uuid "ec146d98-9ae8-4eda-826a-56c1344bb26b") ) (wire (pts (xy 90.17 34.29) (xy 90.17 35.56) ) (stroke (width 0) (type default) ) (uuid "ec27cae5-b1ca-4220-98d6-fef611e53fe5") ) (wire (pts (xy 204.47 99.06) (xy 203.2 99.06) ) (stroke (width 0) (type default) ) (uuid "eea02f8c-c157-4213-8050-6320da82d3a9") ) (wire (pts (xy 105.41 175.26) (xy 115.57 175.26) ) (stroke (width 0) (type default) ) (uuid "f0f48af1-9f27-4127-b939-ae3422096f1c") ) (wire (pts (xy 91.44 78.74) (xy 91.44 80.01) ) (stroke (width 0) (type default) ) (uuid "f1fc0499-ccf0-48f6-bf84-8607b4c2334c") ) (wire (pts (xy 118.11 132.08) (xy 124.46 132.08) ) (stroke (width 0) (type default) ) (uuid "f2ce0837-8430-46b6-9256-b68b02a4dda9") ) (wire (pts (xy 46.99 92.71) (xy 57.15 92.71) ) (stroke (width 0) (type default) ) (uuid "f42ff054-a925-4a58-9aad-8069e79db1f9") ) (wire (pts (xy 115.57 182.88) (xy 124.46 182.88) ) (stroke (width 0) (type default) ) (uuid "f6245b8e-e414-41cf-acf9-7194aae3dfc1") ) (wire (pts (xy 208.28 20.32) (xy 208.28 31.75) ) (stroke (width 0) (type default) ) (uuid "f9a34de8-9610-402c-b014-713bf31555aa") ) (wire (pts (xy 118.11 40.64) (xy 118.11 52.07) ) (stroke (width 0) (type default) ) (uuid "f9c54f80-f376-4ec3-ad93-ddc6f9876b8e") ) (wire (pts (xy 234.95 43.18) (xy 234.95 36.83) ) (stroke (width 0) (type default) ) (uuid "fa4c54c4-e1f5-448c-ba7c-9c1c54af9562") ) (wire (pts (xy 50.8 95.25) (xy 46.99 95.25) ) (stroke (width 0) (type default) ) (uuid "fe639b15-6f33-46e8-bc01-d29d5b6d150c") ) (text "Fan Channels" (exclude_from_sim no) (at 19.05 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "4a8a343e-0bd9-4ace-9df8-a918ed5fa45d") ) (global_label "FAN1_PWM_GEN" (shape input) (at 90.17 34.29 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0261b9f7-ad9a-468e-be05-539ed2837d52") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 90.0906 17.3021 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN4_PWM_READ" (shape output) (at 78.74 168.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "124a317e-b8e4-4dbd-bec0-8f8a3f9d9775") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.6606 148.1726 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN3_PWR" (shape input) (at 187.96 116.84 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1452443b-8fad-4d22-9155-7658866f1b12") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 175.8707 116.7606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN8_TACHO_READ" (shape output) (at 204.47 135.89 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2f065ac2-c00c-44af-b0d8-5e113c69bf2b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.6398 135.9694 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN3_PWR" (shape output) (at 58.42 143.51 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2f46bbcf-4511-4a38-9b18-15293f8c11b9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 58.3406 155.5993 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape output) (at 86.36 34.29 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "321bb370-cf49-4c08-b806-04189d6d64d1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.2806 14.4598 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_PWM_GEN" (shape input) (at 92.71 168.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "33e655a7-ad49-496a-b3b0-5884a9f9aa70") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.6306 151.9221 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN3_TACHO_READ" (shape output) (at 88.9 123.19 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "33f5289f-26d6-4949-a0aa-9542f5066aa3") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 88.8206 103.3598 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_PWR" (shape output) (at 59.69 195.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "34aea1bd-8efd-4a79-9679-b168bf169407") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 71.7793 195.6594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN3_PWM_GEN" (shape input) (at 92.71 123.19 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "3a24039d-f6d1-411c-842a-001586635278") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.6306 106.2021 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN3_PWM_READ" (shape output) (at 78.74 123.19 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "3b68c04f-f850-4bd0-896c-276f79388096") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.6606 102.4526 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape output) (at 87.63 78.74 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "41a27ec7-32f3-4248-91a0-c988aae4847d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 87.5506 58.9098 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_TACHO_READ" (shape output) (at 88.9 168.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "48049aab-e45b-46e7-a246-cc8afbc4dee4") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 88.8206 149.0798 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN7_TACHO_READ" (shape output) (at 203.2 99.06 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4aa1a01c-cbdf-42d3-afba-8167c577daaf") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3698 99.1394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN5_TACHO_READ" (shape output) (at 203.2 25.4 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4b59b818-7be7-470b-ac10-74c1181f131b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3698 25.4794 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_PWR" (shape output) (at 55.88 54.61 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5414b29a-25de-41ef-9cd2-5826ecbbf149") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 55.8006 66.6993 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN7_PWM_GEN" (shape output) (at 203.2 93.98 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5793e4e9-7aa5-470c-a622-e845954092f1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 186.2121 94.0594 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN6_PWM_GEN" (shape output) (at 203.2 57.15 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5872c166-5581-44f5-a134-2ee42c3def37") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 186.2121 57.2294 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN2_PWM_READ" (shape output) (at 77.47 78.74 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6ed042e9-16c0-42ee-9d19-7904bee92f70") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 77.3906 58.0026 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN4_TACHO_GEN" (shape input) (at 82.55 168.91 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "713646d8-c50b-4a4d-bdb9-493fda986906") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.4706 147.3864 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN6_TACHO_READ" (shape output) (at 203.2 62.23 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bbb9975-39da-4616-a4ec-cf4f8f4c6d2f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3698 62.3094 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN1_PWM_READ" (shape output) (at 76.2 34.29 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "81e3ce7a-88e3-428b-a5f1-66e0ca0fc2da") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.1206 13.5526 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape input) (at 91.44 78.74 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "90db3b47-bac6-45dd-b23c-25b149e2bb98") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 91.3606 61.7521 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN4_PWR" (shape input) (at 189.23 153.67 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "945bb797-53e4-4084-a18e-14d9284ea441") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.1407 153.5906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_PWR" (shape input) (at 187.96 80.01 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "999f5199-3f37-4f5d-abc7-42c46678765b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 175.8707 79.9306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN1_TACHO_GEN" (shape input) (at 80.01 34.29 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "bb417672-4c0d-4e3e-8627-fc5c4624e0ff") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.9306 12.7664 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN5_PWM_GEN" (shape output) (at 203.2 20.32 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c69fdb42-3d00-4649-a799-9ac01288b9a1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 186.2121 20.3994 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN8_PWM_GEN" (shape output) (at 204.47 130.81 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cb6789da-f151-4b2d-b790-5a222aa196c9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 187.4821 130.8894 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN2_TACHO_GEN" (shape input) (at 81.28 78.74 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d5100883-d1e0-4fcc-b8a0-582f6ffe4710") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 81.2006 57.2164 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN2_PWR" (shape output) (at 57.15 99.06 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "da2d96dd-7c6c-4fcb-939d-a5150cffe6f2") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 57.0706 111.1493 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN3_TACHO_GEN" (shape input) (at 82.55 123.19 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "dbc48b35-e2f8-4ea1-ac17-60c6d8225ed4") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.4706 101.6664 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN1_PWR" (shape input) (at 187.96 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e95737bc-698e-450e-9d7d-a5fc5761d700") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 175.8707 43.1006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 127 43.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "085195bd-ef5f-4321-aa3d-5891d4b1a1f2") (property "Reference" "J8" (at 127 34.29 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan1 Output" (at 127 36.83 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 127 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 127 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 127 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 127 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7e31fd28-894b-49ee-9058-86c2a317b7c7") ) (pin "2" (uuid "7ff71668-23ce-4739-8200-896bc2e619fb") ) (pin "3" (uuid "26e37a9c-93f1-474f-8620-4f6f773501e5") ) (pin "4" (uuid "d5afb010-83a0-47c1-bed9-942a58043ce9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J8") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "094bbf69-e345-406c-a80f-9e08f85706fd") (property "Reference" "J13" (at 246.38 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan6 Output" (at 246.38 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 246.38 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 246.38 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 246.38 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 246.38 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "85dd6ce4-16c1-431a-9b36-297bf5f965d0") ) (pin "2" (uuid "9f0ed9a6-fec4-431e-9eb9-12ce63446809") ) (pin "3" (uuid "c4bfbc89-6800-4798-8ac7-47e94a6126a9") ) (pin "4" (uuid "336c0835-35df-4312-8013-633aac76c9b9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J13") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (property "Reference" "J14" (at 246.38 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan7 Output" (at 246.38 104.14 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 246.38 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 246.38 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 246.38 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 246.38 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "45e1981c-20aa-4236-9307-b7a47f504563") ) (pin "2" (uuid "cd2dbccd-c8ff-4362-a3ef-40ddf635fac9") ) (pin "3" (uuid "770e80d2-d2c8-4d17-8be1-34a26e2fb8b9") ) (pin "4" (uuid "f27c4151-f52f-4c90-89ae-5fbd8ae50b10") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J14") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 129.54 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "2129e724-3f7f-45d3-89a3-4dd504b3fb79") (property "Reference" "J10" (at 129.54 123.19 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan3 Output" (at 129.54 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 129.54 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 129.54 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 129.54 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 129.54 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "10f0474d-ea9b-403b-84c0-ca53f5e7dc80") ) (pin "2" (uuid "a22ed3b2-4a29-4079-8e80-8bd15b251895") ) (pin "3" (uuid "1addf393-1a10-45e8-aaac-4350eb317e5c") ) (pin "4" (uuid "a9a7f11c-f4ab-4c7e-a70f-d6ccfb4abb1e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J10") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 52.07 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "231beb94-88a4-409d-9621-815e55e223c6") (property "Reference" "#PWR020" (at 52.07 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 52.07 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 52.07 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 52.07 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 52.07 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8f1c50b1-d06a-4409-b126-01b6ce740773") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR020") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 50.8 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "242abfd5-7f21-493a-949c-6d41d9016bca") (property "Reference" "#PWR018" (at 50.8 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 50.8 104.14 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 50.8 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 50.8 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 50.8 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "258b8046-f5fa-47ba-9f31-fcad559ec020") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR018") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 52.07 143.51 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "24f718b1-d993-465c-bf01-cb240a846711") (property "Reference" "#PWR019" (at 52.07 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 52.07 148.59 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 52.07 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 52.07 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 52.07 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "675350ce-24fa-40a9-bedb-1228b9e45095") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR019") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 41.91 92.71 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2730ff07-61a0-45ab-a12e-c8fb75af936a") (property "Reference" "J5" (at 41.91 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MB Fan2 Input" (at 41.91 83.82 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 41.91 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 41.91 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 41.91 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 41.91 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "56e78132-513a-47d0-9933-a26ecc857f13") ) (pin "2" (uuid "4c1fe8be-19c1-4353-9adb-f08c2efebb74") ) (pin "3" (uuid "efc3e845-254a-40ee-aee4-56bc819b9d64") ) (pin "4" (uuid "f27751e1-6777-4055-9f20-84ab917b2ee0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J5") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 120.65 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3fe83a7c-04e5-4926-a03d-3377434c80f4") (property "Reference" "#PWR024" (at 120.65 193.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 120.65 191.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 120.65 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 120.65 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 120.65 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7a739c59-7b1b-4e07-a48a-ab198fabb0d4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR024") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 246.38 36.83 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "40b85d9e-00ff-491f-88e1-a7f34acc29cf") (property "Reference" "J12" (at 246.38 27.94 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan5 Output" (at 246.38 30.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 246.38 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 246.38 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 246.38 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 246.38 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9b1b3c52-549b-4cc6-9ccd-b91131f487ea") ) (pin "2" (uuid "9c8920a5-cc80-4f77-9e6a-6ada99c4ad65") ) (pin "3" (uuid "09b17076-5f69-412b-bb35-5ab549ccfa2a") ) (pin "4" (uuid "60acc878-e7b0-4257-9d3d-b1668fd9a664") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J12") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 129.54 177.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "478255ce-6495-40e3-8f35-65ed429a01a4") (property "Reference" "J11" (at 129.54 168.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan4 Output" (at 129.54 171.45 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 129.54 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 129.54 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 129.54 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 129.54 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "963be2c6-2010-4d19-b9bc-acb819332ee2") ) (pin "2" (uuid "68c2dc2f-c5b1-4d61-a3a2-dc4bf9dfa0c2") ) (pin "3" (uuid "b8912725-1046-462b-bcff-b00d97bc82cb") ) (pin "4" (uuid "df393534-8dfc-4c5c-85bc-bdd6bf5bbf77") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J11") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 43.18 137.16 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "52dfc41f-11f2-4f25-9797-248cc8d74731") (property "Reference" "J6" (at 43.18 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MB Fan3 Input" (at 43.18 128.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "126bc9d2-3310-412b-8403-7e7c99d4d291") ) (pin "2" (uuid "f7bcf108-f69a-464b-8607-ba4ec0575eb6") ) (pin "3" (uuid "3ab77dba-513b-455a-9daf-f467e39c44f1") ) (pin "4" (uuid "df16689e-7350-46a2-8262-38c43ba29c5b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J6") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 238.76 154.94 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "56c5a2e3-0b53-4216-866a-a6e240228ed3") (property "Reference" "#PWR028" (at 238.76 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 238.76 160.02 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 238.76 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 238.76 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 238.76 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5069cfe8-6ba1-4221-abe0-4001a0b43cdc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR028") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 49.53 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "63c85907-552d-427b-b6dc-44bd6402f24b") (property "Reference" "#PWR017" (at 49.53 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 49.53 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 49.53 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 49.53 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "82763472-ddb4-4883-8595-c157d9972a97") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR017") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 247.65 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "703bdce5-9294-4717-b483-0d8ff4314a65") (property "Reference" "J15" (at 247.65 138.43 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan8 Output" (at 247.65 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 247.65 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 247.65 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 247.65 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 247.65 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "58799124-0b19-424d-ba53-d70fd52a2b7e") ) (pin "2" (uuid "9723bdb0-6bed-46fb-9d39-3957acaa7f10") ) (pin "3" (uuid "33508573-0ecd-4066-84a6-74cf9c80c68d") ) (pin "4" (uuid "16e30e75-5312-481a-b584-81da84889059") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J15") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 237.49 118.11 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7ad3c56a-fe9a-4831-b136-d7236a73b27f") (property "Reference" "#PWR027" (at 237.49 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 237.49 123.19 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 237.49 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 237.49 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 237.49 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "3c6c7d1d-a2bb-4336-815e-3e447cdde78f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR027") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 43.18 182.88 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8debfacf-b04b-4646-9300-1ff752233c77") (property "Reference" "J7" (at 43.18 171.45 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MB Fan4 Input" (at 43.18 173.99 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 43.18 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 43.18 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 43.18 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 43.18 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f9822234-ac1e-47e0-b326-00bb7c385d65") ) (pin "2" (uuid "0baa942c-da65-4f44-a102-1baa6ce6b862") ) (pin "3" (uuid "5305402e-e7a8-41ea-a725-14ce5bdbbfec") ) (pin "4" (uuid "93a68d39-6b3c-48eb-a592-c718ef718944") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J7") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 237.49 81.28 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9370a547-cff7-4cf5-b1b1-9154c18cd2f1") (property "Reference" "#PWR026" (at 237.49 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 237.49 86.36 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 237.49 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 237.49 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 237.49 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7fcb9167-b44b-4a83-99dc-ee6b2eb6958b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR026") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 40.64 48.26 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a43df6e2-bedb-4718-8d23-6b27bc7ec28b") (property "Reference" "J4" (at 40.64 36.83 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MB Fan1 Input" (at 40.64 39.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 40.64 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 40.64 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 40.64 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 40.64 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9df76adb-ac87-490d-a268-3e0deaaeded5") ) (pin "2" (uuid "9eb6d1b7-f6dc-4625-a89e-5af9ee3fe04c") ) (pin "3" (uuid "6c84c3f5-f3aa-40fc-a090-18dd9176f84f") ) (pin "4" (uuid "04a8d3d9-c9ca-4fb6-8787-3d4d49ac9184") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 120.65 140.97 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c3cdc302-f140-4326-b94e-dae12a3dae83") (property "Reference" "#PWR023" (at 120.65 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 120.65 146.05 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 120.65 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 120.65 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 120.65 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9e3deed2-82e0-4fd3-9524-d9d74767c3df") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR023") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 118.11 52.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d790c3d5-6cf5-4e32-8ce5-0b9652f4a2d8") (property "Reference" "#PWR021" (at 118.11 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 118.11 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 118.11 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 118.11 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 118.11 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8d6fb468-25cd-4ffc-8495-0abf0af0e15e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR021") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 128.27 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "e0ed2a0d-fc70-41a0-8770-44ea381a0936") (property "Reference" "J9" (at 128.27 78.74 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fan2 Output" (at 128.27 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 128.27 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 128.27 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 128.27 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 128.27 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1e6dc8ec-1b65-4121-9dd8-508ed4b1dfa0") ) (pin "2" (uuid "32611115-6155-4bda-a5f6-338437754c09") ) (pin "3" (uuid "5c5be698-425e-4023-8d7d-485d91d254d3") ) (pin "4" (uuid "ea0e5f3c-f37a-471e-a545-a21f91be7ac0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "J9") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 237.49 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "e6779268-e0bd-4b5d-83c9-6f6e8d695ccc") (property "Reference" "#PWR025" (at 237.49 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 237.49 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 237.49 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 237.49 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 237.49 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "244f1f08-d920-4e96-9307-705685b3ee35") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR025") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 119.38 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f439cb10-1939-4245-a4c2-a7da433360da") (property "Reference" "#PWR022" (at 119.38 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 119.38 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 119.38 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 119.38 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 119.38 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "89e9c028-9468-4370-9487-adbf63428b84") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (reference "#PWR022") (unit 1) ) ) ) ) (sheet (at 64.77 124.46) (size 40.64 19.05) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "53d29c07-1f93-4af9-9f7c-0766d5b9c268") (property "Sheetname" "Fan3" (at 64.77 123.7484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channel.kicad_sch" (at 64.77 144.0946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 105.41 134.62 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4bd73877-f4e1-48fc-ab3c-a95930b6bf33") ) (pin "PWM_OUT" output (at 105.41 129.54 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c3dc79e1-1614-4e15-adc0-f2096f021323") ) (pin "PWR_OUT" output (at 105.41 139.7 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0cba4a6a-3cd7-4f9d-bcc1-6a5afbcb734a") ) (pin "TACHO_READ" output (at 88.9 124.46 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "48bb7c25-cf9b-4f8f-957f-09b67378202a") ) (pin "TACHO_GEN" input (at 82.55 124.46 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d02bc68c-efb0-48e0-84f9-2ae7ca0a54d1") ) (pin "PWM_GEN" input (at 92.71 124.46 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "73d3b2c9-81c7-4fbe-a397-8489c2779181") ) (pin "PWM_READ" output (at 78.74 124.46 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f195e666-f0fb-40e5-b198-529a8f80ee36") ) (pin "PWR_IN" input (at 64.77 139.7 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f4d4f11a-669f-4958-b9c5-8e107395dff7") ) (pin "PWM_IN" input (at 64.77 129.54 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ee94f792-04eb-455c-8eeb-d68e9c8b4d29") ) (pin "TACHO_OUT" output (at 64.77 134.62 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a0738c6b-5e33-48c0-9b92-5d6a0f1e6bbc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "6") ) ) ) ) (sheet (at 190.5 68.58) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5ae37739-065e-4580-bde3-1038e45a286b") (property "Sheetname" "Fan6" (at 190.5 67.8684 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 190.5 84.4046 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 222.25 76.2 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "53b9af5e-0d1e-4798-9730-b2f66425d0e8") ) (pin "PWM_OUT" output (at 222.25 72.39 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e9717cad-e0dc-45e2-afb0-8dcba040a896") ) (pin "PWR_OUT" output (at 222.25 80.01 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8a8c9370-87f2-4203-8b7f-4a8549fd9767") ) (pin "PWM_GEN" input (at 208.28 68.58 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "51197e01-04a3-4056-a0e6-81164ad9cc72") ) (pin "TACHO_READ" output (at 204.47 68.58 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bb11d0bc-a8c0-45a1-ac7b-23c222935227") ) (pin "PWR_IN" input (at 190.5 80.01 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "8d7ef8e7-23dc-4d68-9f71-31a41a69dddd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "9") ) ) ) ) (sheet (at 190.5 105.41) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "61057e9f-bb51-4960-97cb-0865458dfe32") (property "Sheetname" "Fan7" (at 190.5 104.6984 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 190.5 121.2346 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 222.25 113.03 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "87476565-1a0d-4c16-ba90-bb7914407d9a") ) (pin "PWM_OUT" output (at 222.25 109.22 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "46f1b7fb-6428-4189-9973-637b6836e8d7") ) (pin "PWR_OUT" output (at 222.25 116.84 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9ed282dd-4c14-4f0f-bd42-1e43fd6fecbb") ) (pin "PWM_GEN" input (at 208.28 105.41 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "880b4ba4-39a0-4201-bf42-f99ce14cf754") ) (pin "TACHO_READ" output (at 204.47 105.41 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "123ba2db-1a3e-43c1-8c22-830021803414") ) (pin "PWR_IN" input (at 190.5 116.84 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "363b576f-dd0b-43f0-96c2-8f8b7a260877") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "10") ) ) ) ) (sheet (at 64.77 170.18) (size 40.64 19.05) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "8ed5c73d-1abe-4a73-919d-90efbbef00b1") (property "Sheetname" "Fan4" (at 64.77 169.4684 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channel.kicad_sch" (at 64.77 189.8146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 105.41 180.34 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6f91b55a-bd0e-43dc-b347-2d14ca262cfe") ) (pin "PWM_OUT" output (at 105.41 175.26 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bbc8e52-28ff-43e4-816d-567247d46931") ) (pin "PWR_OUT" output (at 105.41 185.42 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b1350730-3c09-4a36-9538-4249af7e5a9b") ) (pin "TACHO_READ" output (at 88.9 170.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "08463419-5656-47c6-bb91-25a4d15b82c7") ) (pin "TACHO_GEN" input (at 82.55 170.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4cba6873-0233-4ec2-8ec5-0315f74d46f1") ) (pin "PWM_GEN" input (at 92.71 170.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "45acb3c7-1c64-41ed-83be-5e9908196ec1") ) (pin "PWM_READ" output (at 78.74 170.18 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ce8e4855-1f57-480a-9c6f-f3cfea4500c7") ) (pin "PWR_IN" input (at 64.77 185.42 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "2db68fb9-d17f-4ba2-986e-9c00da6d1eb9") ) (pin "PWM_IN" input (at 64.77 175.26 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a537f1e0-538a-4f71-8865-d8f9cdc5421d") ) (pin "TACHO_OUT" output (at 64.77 180.34 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "bba5e090-68ed-4ba2-b6d7-fd53be867fd3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "7") ) ) ) ) (sheet (at 63.5 80.01) (size 40.64 19.05) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "946ef3ef-3a88-49e4-98d0-b90987606b91") (property "Sheetname" "Fan2" (at 63.5 79.2984 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channel.kicad_sch" (at 63.5 99.6446 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 104.14 90.17 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2d56982a-c49a-440f-ac65-ab3dcb5977fc") ) (pin "PWM_OUT" output (at 104.14 85.09 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cac681c2-1a17-4c59-86e8-6a176de860f8") ) (pin "PWR_OUT" output (at 104.14 95.25 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "793551dd-d874-46e3-ab21-5a34f95f8ba0") ) (pin "TACHO_READ" output (at 87.63 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e0570653-2a47-4812-81f3-00595f4cda34") ) (pin "TACHO_GEN" input (at 81.28 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2cb2415e-c176-4362-8da0-6bcff3a3bd4e") ) (pin "PWM_GEN" input (at 91.44 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "409d898a-7eb6-47e6-b53e-828c8ea4778a") ) (pin "PWM_READ" output (at 77.47 80.01 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "69e12c41-745e-426f-a36d-8ad7adced86d") ) (pin "PWR_IN" input (at 63.5 95.25 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "64f28a9e-0292-47ac-ab1e-1f3c05250b72") ) (pin "PWM_IN" input (at 63.5 85.09 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "dd1c39ed-8556-4119-90c2-6cfe0e172bdd") ) (pin "TACHO_OUT" output (at 63.5 90.17 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "cc43cc19-10c9-41bc-8130-600d0b7a6774") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "5") ) ) ) ) (sheet (at 191.77 142.24) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "c48058d0-f979-4ada-9996-5cab1ec255f6") (property "Sheetname" "Fan8" (at 191.77 141.5284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 191.77 158.0646 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 223.52 149.86 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "918059ad-2cae-4a28-affd-b4be28a7447d") ) (pin "PWM_OUT" output (at 223.52 146.05 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "51a9e323-cafa-47da-846c-9f8e6bca00a2") ) (pin "PWR_OUT" output (at 223.52 153.67 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "74cb449e-c990-473f-b575-351ef1fbe46b") ) (pin "PWM_GEN" input (at 209.55 142.24 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "29880b80-5c0b-4f47-8c22-fdcd2a90603d") ) (pin "TACHO_READ" output (at 205.74 142.24 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "39cfcb07-fd06-45ca-b68a-ed90b9224629") ) (pin "PWR_IN" input (at 191.77 153.67 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a3dac226-386a-45c7-8fe2-f4b551f936c3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "11") ) ) ) ) (sheet (at 62.23 35.56) (size 40.64 19.05) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "cccf50bc-434f-4bd7-95d5-172f10b931f4") (property "Sheetname" "Fan1" (at 62.23 34.8484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channel.kicad_sch" (at 62.23 55.1946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 102.87 45.72 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "70b00d24-842b-4041-8801-6a30faa0036a") ) (pin "PWM_OUT" output (at 102.87 40.64 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f2474d68-f701-47b6-9354-d7765fd17d6f") ) (pin "PWR_OUT" output (at 102.87 50.8 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fff92661-047d-4428-8f04-57a457c163ae") ) (pin "TACHO_READ" output (at 86.36 35.56 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "05c48375-7a48-4455-947d-490144c70f0f") ) (pin "TACHO_GEN" input (at 80.01 35.56 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8b34fa3f-d74e-486c-8988-5434b2132b51") ) (pin "PWM_GEN" input (at 90.17 35.56 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcf5ec43-9801-4dae-a1df-f86294a4aea0") ) (pin "PWM_READ" output (at 76.2 35.56 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f24d8819-95a7-4fb8-9eb7-c65bf6aa0161") ) (pin "PWR_IN" input (at 62.23 50.8 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "cdb9ebe0-ffb5-4b05-99af-2137b7a9feed") ) (pin "PWM_IN" input (at 62.23 40.64 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "11a7fbfa-3241-4539-9fbe-b2f1cb7188b0") ) (pin "TACHO_OUT" output (at 62.23 45.72 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "052a19fc-7198-4161-8653-ddc58b94f9c4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "4") ) ) ) ) (sheet (at 190.5 31.75) (size 31.75 15.24) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "d911133f-dd4d-432b-a685-8d9b5b84e35e") (property "Sheetname" "Fan5" (at 190.5 31.0384 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "extra_fan_channel.kicad_sch" (at 190.5 47.5746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "TACHO_IN" input (at 222.25 39.37 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e4118d39-91b7-4f48-99e6-196cad77a5a5") ) (pin "PWM_OUT" output (at 222.25 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b8912421-0b72-477a-9242-1db5f9d78e54") ) (pin "PWR_OUT" output (at 222.25 43.18 0) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "647821e0-82cc-490e-a6fa-e91bb827b01c") ) (pin "PWM_GEN" input (at 208.28 31.75 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2455b316-5b74-42ff-8009-62416d156687") ) (pin "TACHO_READ" output (at 204.47 31.75 90) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eb61e8d3-903d-4945-af21-7f5342bd62c8") ) (pin "PWR_IN" input (at 190.5 43.18 180) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "55b6d03a-5fb6-493b-beec-a7f34b4b7dc4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25" (page "8") ) ) ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/fanpico.kicad_pcb ================================================ (kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") (general (thickness 1.6) (legacy_teardrops no) ) (paper "A4") (layers (0 "F.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (stackup (layer "F.SilkS" (type "Top Silk Screen") ) (layer "F.Paste" (type "Top Solder Paste") ) (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01) ) (layer "F.Cu" (type "copper") (thickness 0.035) ) (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) ) (layer "B.Cu" (type "copper") (thickness 0.035) ) (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01) ) (layer "B.Paste" (type "Bottom Solder Paste") ) (layer "B.SilkS" (type "Bottom Silk Screen") ) (copper_finish "None") (dielectric_constraints no) ) (pad_to_mask_clearance 0) (allow_soldermask_bridges_in_footprints no) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) (disableapertmacros no) (usegerberextensions yes) (usegerberattributes yes) (usegerberadvancedattributes yes) (creategerberjobfile yes) (dashed_line_dash_ratio 12.000000) (dashed_line_gap_ratio 3.000000) (svgprecision 6) (plotframeref no) (viasonmask no) (mode 1) (useauxorigin no) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (pdf_front_fp_property_popups yes) (pdf_back_fp_property_popups yes) (dxfpolygonmode yes) (dxfimperialunits yes) (dxfusepcbnewfont yes) (psnegative no) (psa4output no) (plotreference yes) (plotvalue no) (plotfptext yes) (plotinvisibletext no) (sketchpadsonfab no) (subtractmaskfromsilk yes) (outputformat 1) (mirror no) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "+5V") (net 2 "GND") (net 3 "3V3") (net 4 "MBFAN1_PWM_READ") (net 5 "FAN1_TACHO_READ") (net 6 "/Power Rails/5V_REG_IN") (net 7 "Net-(U5-ADJ)") (net 8 "/Power Rails/5V_REG_OUT") (net 9 "Net-(D2-A)") (net 10 "/Fan Channels/Fan1/TACHO_IN") (net 11 "/Power Rails/5V_REG_SEL") (net 12 "Net-(D4-A)") (net 13 "/Fan Channels/Fan2/TACHO_IN") (net 14 "Net-(D5-A)") (net 15 "/Fan Channels/Fan4/TACHO_IN") (net 16 "Net-(D6-A)") (net 17 "/Fan Channels/Fan3/TACHO_IN") (net 18 "/Fan Channels/Fan5/TACHO_IN") (net 19 "/Fan Channels/Fan6/TACHO_IN") (net 20 "/Fan Channels/Fan7/TACHO_IN") (net 21 "Net-(D7-A)") (net 22 "/Fan Channels/Fan8/TACHO_IN") (net 23 "FAN1_PWR") (net 24 "/Fan Channels/Fan1/TACHO_OUT") (net 25 "/Fan Channels/Fan1/PWM_IN") (net 26 "FAN2_PWR") (net 27 "/Fan Channels/Fan2/TACHO_OUT") (net 28 "/Fan Channels/Fan2/PWM_IN") (net 29 "FAN3_PWR") (net 30 "/Fan Channels/Fan3/TACHO_OUT") (net 31 "/Fan Channels/Fan3/PWM_IN") (net 32 "FAN4_PWR") (net 33 "/Fan Channels/Fan4/TACHO_OUT") (net 34 "/Fan Channels/Fan4/PWM_IN") (net 35 "/Fan Channels/Fan1/PWR_OUT") (net 36 "/Fan Channels/Fan1/PWM_OUT") (net 37 "/Fan Channels/Fan2/PWR_OUT") (net 38 "/Fan Channels/Fan2/PWM_OUT") (net 39 "AUX12V") (net 40 "Net-(D8-A)") (net 41 "RESET") (net 42 "Net-(R1-Pad2)") (net 43 "MBFAN2_PWM_READ") (net 44 "FAN1_PWM_GEN") (net 45 "/PWM2A") (net 46 "/PWM2B") (net 47 "FAN2_PWM_GEN") (net 48 "FAN3_PWM_GEN") (net 49 "/PWM3A") (net 50 "FAN4_PWM_GEN") (net 51 "/PWM3B") (net 52 "/PWM4A") (net 53 "FAN5_PWM_GEN") (net 54 "/PWM4B") (net 55 "FAN6_PWM_GEN") (net 56 "FAN7_PWM_GEN") (net 57 "/PWM5A") (net 58 "FAN8_PWM_GEN") (net 59 "/PWM5B") (net 60 "/PWM6B") (net 61 "/PWM7B") (net 62 "MBFAN4_PWM_READ") (net 63 "/PWM0B") (net 64 "MBFAN3_PWM_READ") (net 65 "MBFAN1_TACHO_GEN") (net 66 "/PWM1B") (net 67 "Net-(D11-A)") (net 68 "Net-(D12-A)") (net 69 "FAN2_TACHO_READ") (net 70 "FAN3_TACHO_READ") (net 71 "FAN4_TACHO_READ") (net 72 "MBFAN2_TACHO_GEN") (net 73 "MBFAN4_TACHO_GEN") (net 74 "MBFAN3_TACHO_GEN") (net 75 "FAN5_TACHO_READ") (net 76 "FAN6_TACHO_READ") (net 77 "FAN7_TACHO_READ") (net 78 "FAN8_TACHO_READ") (net 79 "/Fan Channels/Fan3/PWR_OUT") (net 80 "/Fan Channels/Fan3/PWM_OUT") (net 81 "ADC_REF") (net 82 "Net-(D15-A)") (net 83 "/Fan Channels/Fan4/PWR_OUT") (net 84 "/Fan Channels/Fan4/PWM_OUT") (net 85 "/Fan Channels/Fan5/PWR_OUT") (net 86 "/Fan Channels/Fan5/PWM_OUT") (net 87 "/Fan Channels/Fan6/PWR_OUT") (net 88 "/Fan Channels/Fan6/PWM_OUT") (net 89 "/Fan Channels/Fan7/PWR_OUT") (net 90 "/Fan Channels/Fan7/PWM_OUT") (net 91 "/Fan Channels/Fan8/PWR_OUT") (net 92 "/Fan Channels/Fan8/PWM_OUT") (net 93 "Net-(D16-A)") (net 94 "Net-(D19-A)") (net 95 "Net-(D20-A)") (net 96 "Net-(D23-A)") (net 97 "VBUS") (net 98 "Net-(D26-A)") (net 99 "Net-(D29-A)") (net 100 "Net-(D32-A)") (net 101 "/Sensors & Connectors/AUX12_IN") (net 102 "Net-(JP10-A)") (net 103 "Net-(JP10-B)") (net 104 "Net-(JP11-A)") (net 105 "Net-(JP11-B)") (net 106 "AGND") (net 107 "TEMP1_READ") (net 108 "TEMP2_READ") (net 109 "Net-(Q1-G)") (net 110 "Net-(Q2-G)") (net 111 "Net-(Q3-G)") (net 112 "Net-(Q4-G)") (net 113 "SCL_MOSI") (net 114 "SDA_SCK") (net 115 "TX_MISO") (net 116 "RX_CS") (net 117 "/MPX-READ") (net 118 "/MPX-ADDR2") (net 119 "/MPX-ADDR1") (net 120 "/MPX-ADDR0") (net 121 "VSYS") (net 122 "unconnected-(U3-5Y-Pad12)") (net 123 "unconnected-(U3-6Y-Pad15)") (net 124 "unconnected-(U4-3V3_EN-Pad37)") (net 125 "Net-(U1-~{1OE})") (net 126 "Net-(U2-~{1OE})") (net 127 "unconnected-(U4-3V3_EN-Pad37)_1") (net 128 "unconnected-(U6-NC-Pad3)") (net 129 "unconnected-(J1-Pin_1-Pad1)") (net 130 "Net-(D35-A)") (net 131 "Net-(JP12-B)") (footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu") (uuid "00b018ab-882c-4b2d-8e10-e589455112c6") (at 75.7125 83.68125 180) (descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F2" (at 0 -1.82 0) (layer "F.SilkS") (uuid "f7d97877-a0e1-40cc-a30b-edd6059b940c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 0.5A" (at 0 1.82 0) (layer "F.Fab") (uuid "58171b33-25cf-40d0-a949-7d45502be3ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ad05c1d3-edd8-4064-aad8-a3b4a58b4cb1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "735fda5c-f6fb-4205-a1d5-c8492f5b4a14") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "4e2c076e-c34c-46bb-a0bc-aa929fc263c7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C70072" (at 151.425 167.3625 0) (layer "F.Fab") (hide yes) (uuid "b4013fc3-12a6-4873-96c9-f83356213acb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "63637e23-70ff-43cf-aea3-8d3bc1fa2d10") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.602064 0.91) (end 0.602064 0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5b71fb44-9675-45ec-89a5-bafc0177fbfb") ) (fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba7aae74-6620-42f6-8982-4f8435538bdf") ) (fp_line (start 2.45 1.12) (end -2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "383a4dab-b29f-47eb-b9e7-f92a60592f44") ) (fp_line (start 2.45 -1.12) (end 2.45 1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8a2d2a8d-c430-42bd-ab47-020923d86ebe") ) (fp_line (start -2.45 1.12) (end -2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ac01b64a-ac6e-4236-80ac-660b79d19b62") ) (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae4c8ebc-8ed7-4a9f-a358-ce5fac98843a") ) (fp_line (start 1.6 0.8) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b47b4d0c-8332-45e6-a114-04c468a8ca9e") ) (fp_line (start 1.6 -0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "74650724-5358-40eb-8448-165b2e7c0f1e") ) (fp_line (start -1.6 0.8) (end -1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "204236bf-5c75-42d3-b50b-0e4b766803d4") ) (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8b80567-8a60-4010-81ef-0caa034da4fb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b43e997a-42c1-4cee-ad5f-97d1899aaf00") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "18a0a3ca-df0a-4c54-b150-9cde966c7a1f") ) (pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.175439) (net 1 "+5V") (pintype "passive") (uuid "bac82281-905f-4826-94ce-45279bcc5e8c") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "00f581e5-cd74-4331-848f-de2ca93f7f36") (at 119 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R20" (at 0 1.4 0) (layer "F.SilkS") (uuid "e8b8aacb-8031-4e84-9d2a-2b5e2653ac56") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "aa6a7e4c-b765-4091-bf22-40e85859c9be") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "79e41a73-e407-4d08-86c1-aba307b476fa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "7660d8d5-8215-46b4-8359-d85d93e5bd12") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "df5efb07-f4b0-4150-bf4e-bff4116624d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 238 214.4 0) (layer "F.Fab") (hide yes) (uuid "d6eb1896-dfc8-446e-a0c8-3a2f88dacfd9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d6890e81-cfe2-4181-8dff-d1697d739251") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "80a7de80-c784-41e2-867a-d3c8e68ad982") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "793d44fd-b973-421e-a925-fe2f009712e2") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "01bc8834-429e-404d-85b6-025376bfe63c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83f840cd-06f9-4890-b928-fad975cf4a67") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "24b9bc4c-714c-49b8-a22c-230f0af42b4f") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4c3818bb-111b-4dd6-91ca-78024179224d") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b1dabfa-7978-4869-9745-4d057b7019c2") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a9873c0b-3db6-4cd3-aace-ae1296b76360") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c27cafb7-46bd-43dc-a36f-1c30727722ae") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "20c04529-9f80-4059-bcbc-0a50f00dea0f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ce1be80d-02b8-4c7e-91ce-bcaacce7344c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 69 "FAN2_TACHO_READ") (pintype "passive") (uuid "825f48b4-df17-46bb-a58c-6424b577d277") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "8c1ec7e4-9d56-4b4b-ac7e-abf1f2848612") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "02950d75-ff67-4863-9733-9bd99650b835") (at 153.5 66.75) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C27" (at -3.25 0.05 0) (layer "F.SilkS") (uuid "0daefaeb-1a1f-4211-a084-43d704af0172") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 0) (layer "F.Fab") (uuid "4ce7087d-b2bf-4acc-8003-4939c2e958c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "405021f0-15eb-42ad-84f0-1120adc4bc85") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "26db4cd6-ea00-4c08-93b2-8def209036b7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c87d3923-1151-4a6a-b599-b8ee314f9a92") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "082850cc-1c08-409e-afef-e39f6721a21e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2a4edf67-3cbe-4854-b7be-94d4cf0f7267") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0d929627-ea8c-451d-88f7-09614f5f8a11") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4716edf3-18e0-49bf-b4f2-fe41ad8385e8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f93e6df7-76d8-4e02-878f-4a7732a56593") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "345f5751-0e05-4a80-8f0a-5e0a91f4a922") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "00e12b41-78ed-47cd-8e0f-2b3ff3b45166") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "46256fc2-03d1-4e18-94d2-fce2c1cc9513") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a06a93f5-b383-4926-bcb0-cbea064f9b7d") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d624403-6180-48ac-bb42-4b7cbe09966d") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "85a922fc-a0e8-4fdc-bf38-b13cc84d68ec") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71368d3c-2ad6-4d36-8d42-8b8e3e85e4c5") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "614eeda8-1e80-44ca-8b5a-ed0fce36ab8d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 78 "FAN8_TACHO_READ") (pintype "passive") (uuid "71ab3894-35dd-4e22-8746-5cc7fc7ddca0") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "e39f36ba-a8f6-4fb2-acfa-8ee6221bbb6c") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "0426e9a3-9b22-42be-90dc-368c6839f3b5") (at 113.8 78.3) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D40" (at -3.6 0.1 0) (layer "F.SilkS") (uuid "9ffb156b-2523-4864-bc2b-4ad71cfd40ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "d2517fbc-d9dd-4ef0-bdd5-593206a2aaf6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a6614b59-dae3-467c-a508-72588e96dd0a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3ffb70c3-b66a-4dd9-9952-037897de8c70") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "59bfa2ad-7c57-4176-99ac-acd5f4ee3229") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "40d7f616-48df-40e0-bce4-cd4ec36eadcc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/8d09dbd4-ec55-4d01-8b1d-c5d7c604a592") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9001e979-40ea-4502-96c9-619a70b3dab3") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6f1fb1af-bae2-4179-a0cf-1e79dca7fd9b") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1e79b60-9c3c-4154-b6f2-d556ce96f0a9") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a8148449-b8d7-4681-8002-c5a59f572cfd") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "69b5d832-c0fe-4050-b986-03714db905ab") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1cf5342f-46cc-46c3-bae5-d208d0538798") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cf65b870-eaa8-487b-9542-28bd87710e05") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92b39703-34bc-4f8a-8e31-d9ff5b0302f4") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2114f70f-0096-43c8-8d31-ada83a3daa2e") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ab2440d-374d-494c-be7e-c10d895e3026") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d646b0a-6c28-4414-8623-2c8368cd3e35") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6cf50e75-6b47-4144-a123-2e00d342c753") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bbeebc30-0c82-4b2c-8bf0-7feca36229d8") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8d3b328d-7edd-4204-bc6c-476f402fb7d6") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "351737e8-2594-499a-9821-215135403655") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71dba556-9304-49f1-a2b4-4f775cf6d420") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "90a71a4b-f584-4ebe-a30f-e51c9bbdf2a2") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "02cf60d6-3ec3-4096-9517-62ac4763c44b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e5cd35d8-cb95-4f56-9e56-f6c7f20c3ea7") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "7793b0f2-de0d-4ec7-8af1-10a1993d0656") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "057877ef-03b8-4212-bb91-55fd22a09fa5") (at 136.75 67.975 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D15" (at -2.575 0.05 180) (layer "F.SilkS") (uuid "f7e6a93c-d86b-4db2-a503-65f842bc5403") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "bef99726-621f-4ec5-a608-2b17ed279300") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "60b91e17-2649-400a-9d93-dc5156c41506") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9001797c-cede-464c-aaed-6d1a333c35fa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "33496b11-f945-4197-822a-86d0990b24df") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 204.725 -68.775 0) (layer "F.Fab") (hide yes) (uuid "976ffb3c-c701-42d1-9547-b07f83514f7a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d88d7ee6-aab6-4294-bfab-5434bf3c23d8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e14cb179-4962-4028-9c28-4efc70e0b4c6") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "770f8f3f-a0da-4daa-97ff-152614105da8") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14234011-0e36-4e7f-a8bd-e3e64122cb7c") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "879f8911-492f-4812-a158-2d3ac8e1c6ab") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8b507c10-e855-48c4-843d-875ac30718f0") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "68c5192a-8f2b-4339-847f-6dc0f0a62018") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d77fd773-3bf2-404a-8945-f898457971c8") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09acb328-91dd-4890-bd42-a45bef073b2c") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7aeb8b6f-4217-4cee-a440-e1d6f1640976") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "591ae878-ae19-46c6-8f8b-8e755c62062c") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "242761d4-0114-4ea2-a189-8f77b38962c1") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a22e6f26-28b2-4ac0-a619-adf534d21c5e") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af88626d-ab94-4886-aafe-423f418043e1") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "0f46e061-9971-4fb6-a48c-eed00deed50e") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "d0068dac-df41-4879-9d1e-55810879a43f") ) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 82 "Net-(D15-A)") (pinfunction "A") (pintype "passive") (uuid "0a351971-09b8-4be8-a254-01fbd91387c9") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "06238c72-f351-48ec-8a71-67d629a9b0b4") (at 119.5 70.9375) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R16" (at 0 1.2625 0) (layer "F.SilkS") (uuid "edd388c4-aaa9-477f-9a8e-79cbc93758a5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "30k" (at 0 1.43 0) (layer "F.Fab") (uuid "476c0f63-aa60-4511-93cf-4b773d66d744") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "030559b8-9e81-41b7-96b1-d77b0f730f10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "017b6f0b-b90f-4f05-af4b-8a08d52889ec") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "eb9c04d4-cc54-4fca-a4a4-1e18870282a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C100001" (at 239.375 138 0) (layer "F.Fab") (hide yes) (uuid "af398049-3cb1-4e84-b607-17c2b9132b84") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0a5570b3-3ddf-47c2-8ff0-d0440d47fd38") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/09870edd-9a18-4370-90d2-0fc6c17d6715") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "54bd30bb-43b8-49be-832e-7794e30dc0e7") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "203c99c1-bc0a-41eb-963d-1aef3663902f") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b67b12e2-d32b-419d-9e31-e543ae22563f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7f150a5f-63a9-4c7b-b881-916d160c7dd4") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13f6d2f0-f48c-447a-a0f8-2f238cc5c42c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba189a57-f70a-4124-95e4-a212d6782c31") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "534a63be-7584-4d35-991f-b1aa3bcd680d") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d71ca43f-44f0-4a19-8e5f-e3476d84f686") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3969a1c5-d000-4b33-a5cb-5a4634c463d7") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d1b33739-3482-492c-83ce-7b5b966ddda5") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "0745db43-3337-4fe9-a12b-f398d1c0e27c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2d39c899-d655-4274-ad9d-e88267ea60da") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 43 "MBFAN2_PWM_READ") (pintype "passive") (uuid "5a8e39f8-dc66-4da8-b045-6a693acdae08") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "08801f4d-29f3-4989-9ccd-e1b6cf102dda") (at 83.75 61.2 180) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J16" (at 2.8 2.025 0) (layer "F.SilkS") (uuid "71a03c92-6bc0-4979-8893-d5b33427d154") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor1" (at 1.25 4.6 0) (layer "F.Fab") (uuid "0df79061-5b50-49df-9374-a1c9c5839a97") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "a540d981-257d-4e5a-8068-1b38102bb5cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "93c3f0fb-be7a-4499-ae5b-3506273c6aa7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "771087e7-3bc5-4953-9cf7-61a68713b622") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ad96bff4-f605-4474-bbf5-ff9028225f91") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c89ad592-487e-4e44-8bf6-b228a83f3511") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2c85f495-bd66-455f-9fcc-2b0adfe16856") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1654a0c-3957-4fb4-87cf-71f21a35ca23") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78c3a79b-f9ad-400a-9e42-4dd8004a7dfc") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9ae36f65-8f2d-4681-90ca-6ccfb8c43dcf") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "26b903fe-83d0-429e-b569-4b3ab7b20ac0") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6207b31a-d561-4cf6-803a-313ce22a38af") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "181fd65b-4037-45a5-a37e-6a4485f42435") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "47f18c3a-c575-432a-851b-af0e851d10f1") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f7fe608a-abfb-47ff-bd21-3b718679d0e2") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "18b319c9-b142-41d7-855e-5679fcf06076") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7112de5f-7ae3-4e6f-adb4-81e0c683ffdf") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "da47910a-0258-44da-bc14-52b6cf076f3b") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f1021b3-009e-4e70-9e89-ba9b30bb3c34") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "37646377-0725-4c7e-a0c0-d6a6fdf3caff") ) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b48c9688-9d5d-46bd-81ab-94279eae3f50") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "88ff615a-6f26-47f7-82d6-5205eda28e2c") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4d37c568-cc1b-416f-9857-5f6824ca187c") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "344be1c1-453a-4f23-ac66-e9d7725937cb") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5a18bdc7-d5c0-4207-823e-ad41074c8ba7") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e78b6e32-3daf-44fa-a813-1378b83ad7fd") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e0bf3ebd-4df0-4ffa-b291-8c2a5983a869") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "08429d59-1ab4-463b-9877-c1d8f366239c") ) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "958ae8f7-47c0-4540-b026-7398dacd12e5") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f3d310fd-e93c-42bb-a041-6c352a2b6eb8") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91f733b2-caa2-44c8-b123-ddc1ec378822") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e511a95-1945-403d-a5be-b21d9d5e0eca") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7c92bb96-5525-4dba-a813-a55d8cc9ff3c") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66a4067e-d5a4-4b40-a19e-ad8e91af7a45") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c813cf52-90fd-43b2-a3e4-332f2f1aeb79") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58e79828-a4f0-4563-a787-ed478a202289") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0dfed01-8ceb-4e8c-934c-571af469be94") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0138f9f7-9ec9-4442-b1d5-5797cda3ef69") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3349d30-19bb-46f5-b831-ac965ef849aa") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 0) (layer "F.Fab") (uuid "bcc6648b-2f2a-457d-98f9-54bb7a478d2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.147059) (net 106 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "a0fffcd7-d841-44c2-8a54-1665001af396") ) (pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 107 "TEMP1_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "7ae12b6a-d7a5-47d2-89f7-54e84c922d0a") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "08fac9fb-bd01-4e29-bb0a-a4ebc41404d7") (at 144.5 105.25 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R37" (at 0 1.5 90) (layer "F.SilkS") (uuid "47024903-9c53-481a-bc4e-4dab5d2cee2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "e4f4a066-5329-4174-b06b-22ccbdc96e03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "879ca2bc-fdd8-4715-8096-561d46c80bb5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "704ca0a1-a5f0-4d8d-9acb-25e8445079b3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9b29e3da-1499-40c7-ba99-c7fcb82fdbde") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 39.25 249.75 0) (layer "F.Fab") (hide yes) (uuid "459eb4e2-8b04-4089-bae7-b0f90248680a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0941daec-6bcc-45cb-85b7-5c351dfafef5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fc571210-4e5e-44c5-9958-8097e8feae61") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a2f3aa57-b00f-47fc-aa89-ce9866618570") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "84886eef-c5a4-4451-bd9c-4cd533443eaa") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1892408b-6600-4ce9-852d-274a8ce3e812") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "582a9fa0-5768-4f4f-9666-e824d2d873eb") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7db0ec36-dcba-45db-b39f-01acba294425") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64c4eb5b-79c5-4dbf-91c3-25f91e86f2f5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f71bf001-c068-4693-8f9e-2372737e64c4") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49c8bdd2-71f6-4a57-b7c4-932b368bbfb1") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5499bd61-acf0-492a-82a8-05150a3d4458") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d0d9bbfc-1b05-46f7-9ea6-00a4b8e89b23") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "FAN5_TACHO_READ") (pintype "passive") (uuid "6c4f45f0-4a62-4200-8cbd-1fb44c84701e") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "ad297132-0da1-41d0-bb2a-305ebdccc54f") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "09f6b727-b73b-4591-a484-7c0de0a910bf") (at 119.6 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J5" (at 7.75 2.5 0) (layer "F.SilkS") (uuid "6f1ba17f-6636-4de4-8470-cb45bfbf3091") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MB Fan2 Input" (at 4.05 4.35 0) (layer "F.Fab") (uuid "15dad06a-12e3-48c5-8aae-e9aa66ddd59d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "798e9f9e-7b42-43f9-b3cb-69a723717686") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ea3b75d3-fd4d-42cf-9e46-37b7da3e119f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "fd6f8f2a-7080-4cbd-a049-cb095f999adc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ea4069be-cadd-48d5-a713-b348337afce2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2730ff07-61a0-45ab-a12e-c8fb75af936a") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1861f877-a87e-4a35-b3f5-7192f17c126b") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f26ad474-a278-41c5-b129-a817273757ad") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "778870c3-b425-4b4d-b60f-96865aa3adf4") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ffa2f46-62ac-4188-bb7f-0a2b776458b9") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a5010f91-55b1-401c-a423-8c0452c1085b") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "91e8e8c5-8f28-4239-a7e7-ff900f7f7193") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db315d07-a50c-4cbd-ba67-6df60a9d047f") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1fef399-0e49-4916-833d-64653d3f7a38") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fc9adf3f-7850-4e58-b354-bd090a32beea") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfaf09fe-cf50-4079-8ce3-f457110150b6") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db117141-4ffc-40a3-9d2d-551aeb072508") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b1addc8-4285-4d67-a9cb-11600eeed736") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c875b878-bbab-4441-9bf3-fa6217bdd6a9") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b33169fe-fb72-45f0-b3fc-0d5fdb176444") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9a097226-315e-46c3-8e95-9a302b9feace") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05af58f5-fdaf-4189-a262-f2b09e7795d1") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d571661a-9f87-4dd0-95d2-cf9a59589fef") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d854a27-7ad6-4905-a088-ab07172356f0") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db15b405-2878-47b9-ad90-f091eebb65b3") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "35d95aa7-a450-4e26-a4b3-149d956e525d") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c49aa61c-7eb8-471e-94c2-afbd8011dae1") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "9061868a-d8aa-4da5-b595-48824165f22b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "258b0e35-d99f-478a-a8bf-1551dec57e8a") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "dc3cf584-e8a9-44c4-beb0-0acb60fff20e") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 26 "FAN2_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "835c218a-f650-4940-a2ef-94b106a3fe3d") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 27 "/Fan Channels/Fan2/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (uuid "cb2a2178-78ea-400a-a5ab-cb5543148e3d") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 28 "/Fan Channels/Fan2/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "8fa5fa27-bdef-4eac-8ab1-bcc4f8f5ccaf") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "0aa847bc-ca2b-4611-86db-a3d568857af8") (at 63.4 58.2) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D2" (at 0 1.7 0) (layer "F.SilkS") (uuid "aa7db70c-1ed5-4c46-9d8a-461898fc361a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "87785e3f-9962-4e7a-877a-451296b8e8c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cd92d3ea-96d1-4a0f-b3f8-e121a756bf6c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "33d1639f-193f-458c-b090-087bd3693315") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "97fbd0b3-3e46-4847-b652-3b8f4f3a9fbf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b3a3dcd6-028d-4f8d-855d-5ddf3d3a0a03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ebfd8e7f-beb1-42af-879d-a6ffb6cd8f70") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/ae4c6832-7e1c-4f4b-ac6d-c01372ca166a") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ee4a20f-a36d-475e-b53e-31b695bc8b12") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87f28fc7-d06d-4243-acff-2a395cdb2d64") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1d2f846-beb2-4ce1-975c-33000c5bbf4b") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6c3d3263-2783-4641-92f0-b512930cf502") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0cd48284-1a98-4e76-9b54-e8427eabfacb") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9dca2ed2-29d6-43f2-aec7-a71ef96db12a") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "488e8a1c-cf9b-460e-8ef2-c6f1409f6c42") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "52c76e15-803b-42fa-813d-f426f722fdf5") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91d261f1-d30c-4c6c-abe4-370ad7c51636") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c4839670-fb5a-4614-a278-2ff17c9fdf50") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff326a4f-7895-4597-954b-81f1ff1de65e") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0ef4e793-56a8-4f9a-a206-303b1b441e9c") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "e173f611-e77e-4ff4-87ab-466d5eb75365") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "f8b8ef55-0164-490c-b28a-86d7072cf433") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 9 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (uuid "184d9d8b-2ba6-4ed3-b355-18e1aed7a5df") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "0bdcb552-df6f-472d-bf57-4bf026eb45e9") (at 49.3 121 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D74" (at -3.2 0 -90) (layer "F.SilkS") (uuid "a0923a52-46f9-4a9f-a4a3-6ae9277230fb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "128a35ab-6959-435b-a5d3-7fbf9c9b954a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "10cc73d9-6906-4e9d-8a4d-208ef984929f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17883eb6-05e7-4cb1-8e14-b7a0a87d0e6c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04e124d9-2991-4c76-baee-115123e042e0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f56610c9-8d82-452e-b2d8-9f7e37d9eed6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/a6bcdde4-49dd-4a28-8a10-b884620f10e4") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a841e1a3-6c7c-4649-a464-78fac4cfbfee") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a968ff95-0e4a-40b3-9815-7baaf6d7a4c6") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4168a4a8-3258-4040-a452-e7c2db56f837") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13faef3d-5400-4157-a39c-7d21cc1731ac") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ae4b195-e488-4004-bb1c-2fae877e61fe") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7cdd7a92-87aa-4638-a90c-55fbb73895f0") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa3bc81e-b1cb-46df-9419-bb20c49ff86e") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71e8fb0b-9c23-4bed-a414-703ff957b5b2") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d365a912-9480-491c-a428-3444d021a1a9") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f588291-7333-44c2-980d-46ab879a217d") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9f025fc0-90d3-4c86-9256-049b8f09a244") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d57e008c-c6c6-4e9b-9958-9e8f4eb70b44") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cea2613e-a97a-469b-b60e-799d304a7b2a") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c44e186-86b0-44f2-a11c-ef863d19aebe") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b30148a-93ba-46fc-bda3-c84678b2b58d") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71343151-347a-4ca0-b32a-b83c427d8988") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88f11a84-ac7f-4c94-ac1b-22082d70afaf") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "4386df59-c7d9-4cf1-b477-acd45417c3d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "da42e287-f280-42a5-91d3-8d73280e2f34") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 114 "SDA_SCK") (pinfunction "A2") (pintype "passive") (uuid "21f5489e-59b3-4cbf-9d1f-7e45f8fd632d") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "0c7c929d-fc42-48df-9f41-c33294038cd9") (at 104.25 71) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R11" (at 0 1.4 0) (layer "F.SilkS") (uuid "f47756be-f351-42bf-9c13-0ea65c618866") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "241e9556-51af-497c-bb4e-7e03826f05e7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "92da354b-063a-4fed-96c4-3f3add0763a2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "281f0115-9ab7-4b24-8eb0-caab5425f937") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a576c22c-f64c-4050-834b-15924ab70f98") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9442ee92-3be4-481d-9018-7e2a8ea5bd0e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e8e1c3f2-83fd-4d5f-9b89-213c65cb510e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c3820fc4-03ca-4911-a8ef-402d8d40db9b") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0add3e77-a97f-4c69-adea-df1c4eb43081") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ab4ea8e8-7fee-4c65-a5a3-e302087068dc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "44aafeb4-b27a-48c2-9aa6-7d930243de07") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "41be4c15-e72d-4bed-8fbc-6264ea11eb61") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "59463171-65fc-4da4-9858-99dace4d5ab7") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7928f696-48b2-45dd-8e42-a99a48e6f675") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5d23d17c-7692-4650-a899-02113b52e7be") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0125ce5-fb32-4a55-9a68-59b92a7af33f") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "790da9b9-7b41-4a62-8346-78440331ba7e") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "8f885508-1659-4128-a39f-7ea4749a8402") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 109 "Net-(Q1-G)") (pintype "passive") (uuid "24515a0b-7b4a-44fa-b3fe-e38ad4d74f4e") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 65 "MBFAN1_TACHO_GEN") (pintype "passive") (uuid "a240b0a6-560c-4953-a7d8-28e74458e966") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "0e16f1e1-d21c-4566-aa90-2d18c0b0545f") (at 162.3 79.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C28" (at -2.15 0 -90) (layer "F.SilkS") (uuid "391f52f6-dcfb-49af-bf54-7ea5cc2afa3a") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "d2b71e6c-8fc5-4db6-85b9-1e8e2cda815b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "66557410-598c-442a-9a50-6ebea241598d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "27058cf3-4a7e-4957-8141-ea7279d9fad4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ecb8c956-7981-4325-9240-ad60af44284a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1a349d97-d544-49e2-8f1c-090f5404700d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "95bb33d9-a7a7-4bad-87e0-ffc32aa9b6fd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "79821477-c82a-4349-990b-9f596909a947") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f7a8c4a9-95d2-40fb-8712-84bb158bda93") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8582f73e-5e4c-4414-ae24-fa3029545fe8") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e3e1aa3d-60f4-4879-bd4b-b7048ed8ccd9") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "121441e7-4eb9-417f-9c67-eb9292d41b27") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7cab73c1-0e1c-4ea7-b7ac-b0b220532e92") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "40bbbc21-f697-4931-ab6d-2ed97bcac317") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3aaf0ca2-a953-4a4a-a969-41e90f82fb3b") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "129bd13b-b6e4-4738-947f-3fb344b5aca3") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a28f9aa0-1b29-4bc3-86a7-f7f79f17ea0a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "bac5cb8a-3975-4772-b2eb-aa026d882a7f") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 91 "/Fan Channels/Fan8/PWR_OUT") (pintype "passive") (uuid "6f602c89-b698-4037-8636-4984625cc074") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f1b5ec74-530e-4fd6-af8c-f841e125ab16") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (layer "F.Cu") (uuid "0eb796f4-1b93-4de6-baf9-e3051cdfca23") (at 50.644368 132.2) (descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator") (tags "connector JST SH horizontal") (property "Reference" "J21" (at -3.944368 -0.7 90) (layer "F.SilkS") (uuid "1fd1b9d4-5eed-45da-a425-b2d963d31436") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "QWIIC" (at 0 3.98 0) (layer "F.Fab") (uuid "af95872d-2c47-4827-92af-f61521f08549") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a98e84e7-a213-4ab1-920f-9caabc4841f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4d804afd-0793-43ef-8bc4-af059ca6de10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43e609a9-2b8d-45d6-9bc2-6bc239c461f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "34e58763-86e0-4c7a-901d-83038c67009c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C160404" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf024aa7-16c6-426a-82fa-81638593d6c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f3d1411d-36fc-47cc-b18e-de4759d807f2") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -3.11 -1.785) (end -2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4861717-1805-41f2-a24f-c0951e7faa11") ) (fp_line (start -3.11 0.715) (end -3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6afc6e69-8d1e-4f27-9eb4-5c36b6738b3b") ) (fp_line (start -2.06 -1.785) (end -2.06 -2.775) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "099bb1a8-2458-4af6-967d-7c16e9f25680") ) (fp_line (start -1.94 2.685) (end 1.94 2.685) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a9a0b1a8-3d4d-44d7-b13c-2f2c042584bc") ) (fp_line (start 3.11 -1.785) (end 2.06 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc7ac5b5-d594-446e-9b4e-bedf201bc8b8") ) (fp_line (start 3.11 0.715) (end 3.11 -1.785) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fba720b4-b2cf-4c00-bd73-64e1be9e0e42") ) (fp_line (start -3.9 -3.28) (end -3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c4ba0f4a-b5bd-4fbd-9b53-999581db5788") ) (fp_line (start -3.9 3.28) (end 3.9 3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc7161d8-953b-4404-8c11-b647b524fa97") ) (fp_line (start 3.9 -3.28) (end -3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "680c268d-a787-492f-ab9c-4c077dde52c5") ) (fp_line (start 3.9 3.28) (end 3.9 -3.28) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d0cc1b65-cd4d-4c7e-a39d-186584d901fe") ) (fp_line (start -3 -1.675) (end -3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef823c15-d1ba-4d9b-b83e-49a0a70c778e") ) (fp_line (start -3 -1.675) (end 3 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71edf440-d075-4b6a-bf81-8cf6b36ed885") ) (fp_line (start -3 2.575) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb19ac7d-5db5-4ac9-b075-7c47e781748a") ) (fp_line (start -2 -1.675) (end -1.5 -0.967893) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b9b60c0-8015-4bd7-9f0c-3f64443fea5a") ) (fp_line (start -1.5 -0.967893) (end -1 -1.675) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4032e32f-e8cf-4bd6-a7ce-422c29908804") ) (fp_line (start 3 -1.675) (end 3 2.575) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1fd9dc7b-7bc2-4e24-9dde-bfc3ae646de7") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "fb92966b-93be-4fb9-8d32-eae297db4a0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "8fb4aed7-9ce2-40d0-b3b7-4429a3ba0d01") ) (pad "2" smd roundrect (at -0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "d96f7d16-3591-4bdf-b966-b84a673a06af") ) (pad "3" smd roundrect (at 0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 114 "SDA_SCK") (pinfunction "Pin_3") (pintype "passive") (uuid "1e22cdd2-e5bf-4330-b2f5-08a0f8880783") ) (pad "4" smd roundrect (at 1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "SCL_MOSI") (pinfunction "Pin_4") (pintype "passive") (uuid "421cb871-ac67-473a-b4e6-2d74c92e1f85") ) (pad "MP" smd roundrect (at -2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "76cb08eb-4cfb-4673-8319-d8149f9cf1a7") ) (pad "MP" smd roundrect (at 2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (uuid "05d84aa0-5201-407a-90a8-e01800dc108c") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "12e3318b-d723-448e-80f4-0a2add1fb722") (at 167.4 112.8 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J12" (at 7.25 2.25 90) (layer "F.SilkS") (uuid "b23be124-45da-405d-a64d-08c515a6b04b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan5 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "978443bc-b605-43af-a210-85db58922b8a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f8773684-0372-4366-be54-b1905d241445") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c0c90ffa-5245-43c0-a441-aa91d287c088") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "76bb6897-6aae-4ac0-ada2-f90c8e5437db") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4b4bee1b-21a5-441b-b83c-5b622e6f9f2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/40b85d9e-00ff-491f-88e1-a7f34acc29cf") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1c5dafb8-2ae8-4e43-92ac-cc56ee89ed55") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c54c7b74-251a-4498-ae58-669880dfcc9f") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1087611-6480-4fc5-af0d-0880e2b26b36") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a5d8c8ca-2308-4847-9c42-c0961367209c") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b458892-f28f-4bd4-b177-1c193f083584") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "631e4379-1935-4302-a32b-4fe38736649b") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "200ef8d2-4987-4457-a13b-9fcae77127a4") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "695f4ed0-09e1-4366-9e82-887d41035b52") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "16aecfc5-4a72-4911-bc39-fdfcf2e6ccb8") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5801060-ea4a-4dd9-b979-722bb2ae6ca3") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3bce3f04-8e6d-4491-b633-bb146f1ad111") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b4331287-9506-4f97-88c2-7896d7108679") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aae37956-6910-4b68-b08e-9e147a94aff5") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f6680c9-e7dc-4edf-8dd4-fbb548ba3f91") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dce4d780-d189-43e3-b4bb-279969b7019c") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81dbc50b-2977-4929-9587-8ee8daad058d") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "605eef32-3163-411d-b8af-e14d45d9e7eb") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0a987393-9bd1-4ff1-98a6-94718f5345aa") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "702de19a-1a65-4a5e-9c8b-38a1109f65c1") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a8ba729-aa3a-4194-ba2e-63801105e798") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e45bf4e9-5a17-4950-8816-39b4193b573c") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "4c4ced9b-614e-4e29-b589-962c07c2f357") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "eb479c2d-5767-48fd-a73b-b896c14b6fd5") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "7a1fd5f0-08f2-4225-8940-fc0de8ba946c") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 85 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "0f87e149-9d7b-41a4-831d-ddac3f0e8f5b") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 18 "/Fan Channels/Fan5/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "5e9d9a15-0bd9-41b9-9176-17468a7e22ea") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 86 "/Fan Channels/Fan5/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "6ffc34bb-8e41-4e92-b427-39a97834a83d") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "1336502c-11bd-4ec2-9aca-20ce8fd7c351") (at 129.775 121.1 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP5" (at -0.4 -2.33 90) (layer "F.SilkS") (uuid "a7293183-7449-4fcf-91d3-4c0ac576b151") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 90) (layer "F.Fab") (uuid "8da594b1-2bac-42db-ad61-5b3ee7d96af8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "eebf33fa-e9b3-413a-b9b0-650c8ff5cd42") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "5f39daca-50f1-4f8b-922b-4d60f36eb2f3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "bc49c7e0-12ba-4e4c-8fd7-410ff78011df") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "75a3c037-1ddc-4d78-aa77-f321a70359e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0afb5c6-54db-4986-8460-a37daf921ef8") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7699906e-df58-43a6-9acc-617f3aa1b8bc") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ddc7d020-0535-4c03-b69f-d7e009e50f33") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31e55805-f88f-4580-816c-0e7a4633b5d5") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9107faa7-68b4-4d6d-b7f8-c773db7ff55d") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5a6f7df3-a244-4f22-bb90-5da007ec9fcb") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6ce6e5ae-6c23-42c7-8734-1fec2e4b74e9") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c1255ce6-d3ae-4e1d-b330-e69684a10ac1") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "171dfb30-3d43-4d31-bdb0-88245b4204fe") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "346441b5-24f6-43ad-8731-82d42814cc7c") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e00918ca-a535-4762-bebd-af00893e2763") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e4ab2247-5317-407b-8eff-ebede0f0b32f") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eab74721-ab68-448e-8179-3a2b17afe3e8") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b23d0c0-c594-4b9d-afd1-b15f3c404477") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "52e54ebd-7d0a-4103-9b23-592ccc618066") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06051552-9ac5-48f7-b018-9c39e633698e") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "60fe3a84-2bbb-4083-a090-c21830b58019") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 29 "FAN3_PWR") (pinfunction "A") (pintype "passive") (uuid "bedbc6a0-909c-4f96-b6d5-129d2979ed3e") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 79 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "d89ecf6a-9fbb-471c-8a46-00094620376d") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "c304fb28-5984-4c68-9095-13e1036bc68f") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (uuid "1605f882-81f6-454d-be37-e69a0e3e7d42") (at 63.7 70.45) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F1" (at 0 0 0) (layer "F.SilkS") (uuid "2161be11-e8d6-43c8-8f7e-47c2138065ce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 3A" (at 0 3.68 0) (layer "F.Fab") (uuid "e9cdacb2-299b-4e71-b1f6-294237ba4c89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "864e34fb-24e7-4267-8b07-d67bb90d38de") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "479bdc22-eb88-49d2-9f05-acec86940f91") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f3439d7f-58e9-449e-aac1-42d75489c055") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2977527" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "98170077-86ce-499a-bc50-1bc0f85f26f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d705e1c7-8e75-4fec-b2d5-1b90e2e64cca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/4c74a725-f10f-4273-b4be-b4c0a9315c7e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2d117c76-125f-4001-b414-854d65dff875") ) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "68677ed8-e539-42a9-9b52-4d387b8897a0") ) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa7a22dd-f3af-4e84-8810-51b02a9d3433") ) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1de07b53-6f75-4d64-9170-6c84ceffbb96") ) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89e6c77d-c6e9-400c-ab3f-811e6026bbcf") ) (fp_line (start 4.78 2.98) (end -4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f84e6a6b-90f5-4b13-9bfb-87ddf4803640") ) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a29f72b6-e341-4068-8547-a02ac0392ed5") ) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c365cc4a-438b-49b6-8a20-7307f4be91ad") ) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f1302b1-b04c-4db0-a653-3904d8c6b801") ) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1da6c348-aff6-4592-a5b7-e9d1c0ca1864") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "fb4262a2-2d3f-45ae-b7c7-25d647a43ec0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 101 "/Sensors & Connectors/AUX12_IN") (pintype "passive") (uuid "09328aa7-1390-4e89-873d-4d53ee7d2980") ) (pad "2" smd roundrect (at 3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 39 "AUX12V") (pintype "passive") (uuid "9c271dec-0154-42cb-8e55-db88df89589e") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "191ee32f-08dd-4925-8d49-812b84e6e2dc") (at 74.7125 77.83125 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R3" (at 0 1.25 90) (layer "F.SilkS") (uuid "cdfb8af1-809d-470e-9add-1df161274854") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 90) (layer "F.Fab") (uuid "7b2a9861-93da-4d03-9eae-e2a648577792") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "84832d18-e67d-46e7-980c-524402075d71") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "0bbb90f5-3863-40f0-9123-2be6f00475cf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "d5ee969d-ab2e-487b-b540-d3d6b97994f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at -3.11875 152.54375 0) (layer "F.Fab") (hide yes) (uuid "db3eea07-6ce1-4cb8-84ff-8666bd7adacc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aa480832-3cfa-4114-b9a3-217dfccac07c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5a65fde0-58e9-41b7-bb45-7d350448b336") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69eedd06-e406-491d-9520-8713458efc1d") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14e474e7-34ad-40f9-bfb9-9f02bdad913e") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "33327381-ce07-4a31-b444-a01dd827c750") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fba7c90c-84f5-457f-a81a-d5adc9ad981e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b206e766-dc7c-49c6-abf0-b8e17f2cfbe3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ed452ea0-3b11-4ffc-8c83-11197d25bec4") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e12d672-119d-46d5-a8bc-3f6434a97be3") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37f31eac-540d-472d-a9a9-42243ddab86f") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1756dc24-12f6-4029-948e-f25a8ada69d4") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ef04ce5-bcdf-47ec-841e-d31de5cd108c") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "00a79242-ca94-4bb4-828a-8d5c89c1463d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "349d3978-289d-4134-a86e-afe6ae116b54") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "0f7b5f4e-7d4d-4c9c-86af-6c9fb86fdce0") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "sparkfun-qwiic:qwiic_5mm" (layer "F.Cu") (uuid "197f783e-ab22-4446-8b46-1fd9ec02c544") (at 50.6 128.2) (tags "SparkFun") (property "Reference" "G1" (at 0 -1.27 0) (layer "F.Fab") (hide yes) (uuid "08adb4e9-f23a-46e3-8a59-07fb6fd7cfb6") (effects (font (size 0.5 0.5) (thickness 0.1) ) ) ) (property "Value" "qwiic_Logo" (at 0 1.27 0) (layer "F.Fab") (hide yes) (uuid "2c1ec841-6eb9-4014-8d51-0ee7b122ab4e") (effects (font (size 0.5 0.5) (thickness 0.1) ) ) ) (property "Footprint" "sparkfun-qwiic:qwiic_5mm" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "00ca2dec-58ba-4335-a508-3791e80db873") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02e6b8b1-ac89-4bf9-8f47-10b8a91e3d07") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e065b1d-0f5b-4268-af74-5974fd0d2513") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (path "/b0dbdcb8-5abc-4dd6-966a-a3d509c89d40") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr board_only exclude_from_pos_files) (fp_poly (pts (xy -1.585671 -0.207396) (xy -1.547301 -0.194776) (xy -1.512502 -0.172432) (xy -1.50341 -0.164656) (xy -1.472309 -0.130338) (xy -1.450325 -0.090949) (xy -1.437041 -0.045282) (xy -1.432042 0.00787) (xy -1.432667 0.040619) (xy -1.434648 0.069526) (xy -1.437816 0.091041) (xy -1.443371 0.109853) (xy -1.452516 0.130646) (xy -1.459117 0.143854) (xy -1.485013 0.184983) (xy -1.515936 0.21557) (xy -1.553121 0.236432) (xy -1.597801 0.248387) (xy -1.620947 0.2511) (xy -1.645896 0.25092) (xy -1.671603 0.247559) (xy -1.679266 0.245732) (xy -1.725431 0.227094) (xy -1.763355 0.199714) (xy -1.792851 0.163853) (xy -1.81373 0.119772) (xy -1.825805 0.06773) (xy -1.828471 0.039025) (xy -1.827548 -0.019069) (xy -1.818015 -0.06937) (xy -1.799507 -0.112911) (xy -1.771659 -0.150727) (xy -1.756028 -0.16611) (xy -1.721841 -0.190726) (xy -1.684028 -0.205458) (xy -1.640078 -0.211211) (xy -1.630528 -0.211364) ) (stroke (width 0) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "5109efe2-bc50-45e6-8529-32447469a172") ) (fp_poly (pts (xy 0.17178 -0.794125) (xy 0.334916 -0.794118) (xy 0.486803 -0.794103) (xy 0.627855 -0.794078) (xy 0.758488 -0.794039) (xy 0.879116 -0.793985) (xy 0.990154 -0.793913) (xy 1.092015 -0.793821) (xy 1.185116 -0.793705) (xy 1.269869 -0.793564) (xy 1.34669 -0.793394) (xy 1.415994 -0.793194) (xy 1.478195 -0.792961) (xy 1.533707 -0.792691) (xy 1.582945 -0.792384) (xy 1.626324 -0.792035) (xy 1.664259 -0.791644) (xy 1.697163 -0.791206) (xy 1.725452 -0.79072) (xy 1.74954 -0.790182) (xy 1.769841 -0.789591) (xy 1.786771 -0.788944) (xy 1.800743 -0.788239) (xy 1.812173 -0.787472) (xy 1.821474 -0.786642) (xy 1.829063 -0.785745) (xy 1.835352 -0.784779) (xy 1.840757 -0.783743) (xy 1.844912 -0.782816) (xy 1.943042 -0.754044) (xy 2.034791 -0.715338) (xy 2.119689 -0.667056) (xy 2.197269 -0.609559) (xy 2.26706 -0.543205) (xy 2.328593 -0.468353) (xy 2.381401 -0.385362) (xy 2.393418 -0.362933) (xy 2.431158 -0.279727) (xy 2.458064 -0.196342) (xy 2.474721 -0.110337) (xy 2.481717 -0.01927) (xy 2.482026 0.005766) (xy 2.476607 0.106134) (xy 2.460277 0.201368) (xy 2.43293 0.291735) (xy 2.394457 0.377504) (xy 2.344752 0.458941) (xy 2.283707 0.536316) (xy 2.257626 0.564592) (xy 2.18937 0.628816) (xy 2.117309 0.682854) (xy 2.039984 0.727516) (xy 1.955938 0.763611) (xy 1.863713 0.791952) (xy 1.837055 0.798417) (xy 1.778483 0.811887) (xy 0.327615 0.813696) (xy -1.123252 0.815504) (xy -1.123252 0.18431) (xy -1.123252 -0.443866) (xy -1.07377 -0.443866) (xy -0.906773 0.016504) (xy -0.739776 0.476873) (xy -0.588399 0.476977) (xy -0.437021 0.477081) (xy -0.350454 0.197777) (xy -0.333126 0.142036) (xy -0.316792 0.089813) (xy -0.301814 0.042244) (xy -0.288554 0.000464) (xy -0.277375 -0.034392) (xy -0.268639 -0.061187) (xy -0.262707 -0.078787) (xy -0.259943 -0.086056) (xy -0.259879 -0.086147) (xy -0.257377 -0.081481) (xy -0.251727 -0.066337) (xy -0.243282 -0.041793) (xy -0.232395 -0.00893) (xy -0.219419 0.031172) (xy -0.204705 0.077432) (xy -0.188607 0.12877) (xy -0.171478 0.184106) (xy -0.168698 0.19315) (xy -0.081526 0.477066) (xy 0.069485 0.477074) (xy 0.220497 0.477081) (xy 0.388042 0.019) (xy 0.414026 -0.052087) (xy 0.438776 -0.119892) (xy 0.461982 -0.18356) (xy 0.483336 -0.242238) (xy 0.502528 -0.295071) (xy 0.519247 -0.341204) (xy 0.533183 -0.379784) (xy 0.544028 -0.409957) (xy 0.55147 -0.430867) (xy 0.555201 -0.441662) (xy 0.555587 -0.442982) (xy 0.549822 -0.444063) (xy 0.533618 -0.44503) (xy 0.508616 -0.445837) (xy 0.476456 -0.446443) (xy 0.438776 -0.446803) (xy 0.408776 -0.446885) (xy 0.59786 -0.446885) (xy 0.59786 0.015098) (xy 0.59786 0.477081) (xy 0.748835 0.477081) (xy 0.89981 0.477081) (xy 0.89981 0.015098) (xy 0.89981 -0.446885) (xy 0.9602 -0.446885) (xy 0.9602 0.015098) (xy 0.9602 0.477081) (xy 1.111175 0.477081) (xy 1.262149 0.477081) (xy 1.262149 0.018117) (xy 1.325576 0.018117) (xy 1.326161 0.066487) (xy 1.328319 0.105846) (xy 1.332681 0.139222) (xy 1.339878 0.169646) (xy 1.350539 0.200146) (xy 1.365296 0.233752) (xy 1.374399 0.25265) (xy 1.409871 0.311485) (xy 1.454508 0.362598) (xy 1.507732 0.405401) (xy 1.549247 0.429828) (xy 1.604794 0.455326) (xy 1.657706 0.472746) (xy 1.711964 0.482998) (xy 1.771551 0.486991) (xy 1.79962 0.487014) (xy 1.85699 0.486139) (xy 1.858623 0.364594) (xy 1.860255 0.243049) (xy 1.80687 0.240497) (xy 1.763707 0.235363) (xy 1.728972 0.223869) (xy 1.700245 0.204967) (xy 1.682161 0.186467) (xy 1.656522 0.147728) (xy 1.638723 0.103278) (xy 1.628699 0.055302) (xy 1.626382 0.005982) (xy 1.631706 -0.042499) (xy 1.644605 -0.087956) (xy 1.665012 -0.128208) (xy 1.69274 -0.160961) (xy 1.72208 -0.183502) (xy 1.752165 -0.197389) (xy 1.786901 -0.204055) (xy 1.81333 -0.205193) (xy 1.860255 -0.205325) (xy 1.858622 -0.330634) (xy 1.85699 -0.455943) (xy 1.781503 -0.454973) (xy 1.721395 -0.451912) (xy 1.668601 -0.443779) (xy 1.61909 -0.429642) (xy 1.568829 -0.40857) (xy 1.55806 -0.403305) (xy 1.509526 -0.373656) (xy 1.462983 -0.335138) (xy 1.421419 -0.290699) (xy 1.387827 -0.243286) (xy 1.378294 -0.22612) (xy 1.359294 -0.186568) (xy 1.345279 -0.150511) (xy 1.335574 -0.114824) (xy 1.329506 -0.076379) (xy 1.326399 -0.032052) (xy 1.325576 0.018117) (xy 1.262149 0.018117) (xy 1.262149 0.015098) (xy 1.262149 -0.446885) (xy 1.111175 -0.446885) (xy 0.9602 -0.446885) (xy 0.89981 -0.446885) (xy 0.748835 -0.446885) (xy 0.59786 -0.446885) (xy 0.408776 -0.446885) (xy 0.261964 -0.446885) (xy 0.175453 -0.152484) (xy 0.158402 -0.094577) (xy 0.142192 -0.039753) (xy 0.127176 0.010809) (xy 0.113708 0.055932) (xy 0.102139 0.094439) (xy 0.092824 0.125151) (xy 0.086113 0.146891) (xy 0.082361 0.158483) (xy 0.08196 0.159573) (xy 0.080621 0.162592) (xy 0.079179 0.164327) (xy 0.077417 0.164099) (xy 0.075121 0.161229) (xy 0.072077 0.155037) (xy 0.068069 0.144845) (xy 0.062882 0.129972) (xy 0.056302 0.109741) (xy 0.048114 0.083471) (xy 0.038103 0.050484) (xy 0.026054 0.0101) (xy 0.011752 -0.038359) (xy -0.005018 -0.095574) (xy -0.02447 -0.162222) (xy -0.046819 -0.238984) (xy -0.072281 -0.326538) (xy -0.077422 -0.344222) (xy -0.106391 -0.443866) (xy -0.252084 -0.445482) (xy -0.397777 -0.447098) (xy -0.41283 -0.39717) (xy -0.417711 -0.380713) (xy -0.425491 -0.354138) (xy -0.43574 -0.318938) (xy -0.448023 -0.276604) (xy -0.461908 -0.228627) (xy -0.476964 -0.1765) (xy -0.492757 -0.121714) (xy -0.501717 -0.090584) (xy -0.517176 -0.037045) (xy -0.531711 0.012913) (xy -0.544966 0.05809) (xy -0.556583 0.097291) (xy -0.566208 0.129318) (xy -0.573482 0.152974) (xy -0.578051 0.167062) (xy -0.579456 0.170599) (xy -0.581851 0.165861) (xy -0.587288 0.150575) (xy -0.59544 0.125791) (xy -0.60598 0.092559) (xy -0.61858 0.051931) (xy -0.632913 0.004956) (xy -0.64865 -0.047316) (xy -0.665465 -0.103833) (xy -0.673002 -0.129373) (xy -0.690248 -0.187823) (xy -0.706557 -0.242836) (xy -0.721597 -0.29331) (xy -0.735035 -0.338144) (xy -0.74654 -0.376236) (xy -0.75578 -0.406483) (xy -0.762422 -0.427786) (xy -0.766136 -0.439041) (xy -0.766729 -0.440485) (xy -0.773173 -0.442745) (xy -0.789634 -0.444377) (xy -0.816586 -0.445396) (xy -0.854502 -0.445817) (xy -0.903856 -0.445655) (xy -0.922292 -0.445481) (xy -1.07377 -0.443866) (xy -1.123252 -0.443866) (xy -1.123252 -0.446885) (xy -1.277247 -0.446885) (xy -1.431241 -0.446885) (xy -1.431241 -0.388211) (xy -1.431241 -0.329537) (xy -1.462946 -0.360444) (xy -1.510075 -0.399442) (xy -1.56231 -0.428752) (xy -1.594294 -0.441434) (xy -1.625407 -0.449071) (xy -1.664602 -0.453953) (xy -1.70819 -0.456031) (xy -1.752479 -0.455252) (xy -1.793781 -0.451566) (xy -1.828407 -0.444922) (xy -1.829292 -0.444679) (xy -1.895055 -0.420458) (xy -1.954317 -0.386189) (xy -2.006503 -0.342349) (xy -2.051041 -0.289413) (xy -2.085062 -0.232501) (xy -2.10777 -0.176537) (xy -2.124255 -0.113179) (xy -2.134008 -0.045673) (xy -2.136518 0.022735) (xy -2.133188 0.074033) (xy -2.126638 0.122582) (xy -2.1185 0.163201) (xy -2.107613 0.200032) (xy -2.092818 0.237215) (xy -2.079492 0.265716) (xy -2.045359 0.32302) (xy -2.002876 0.373396) (xy -1.95355 0.415317) (xy -1.902282 0.445648) (xy -1.836439 0.471008) (xy -1.767193 0.485364) (xy -1.704519 0.489159) (xy -1.63834 0.483875) (xy -1.577706 0.468123) (xy -1.523003 0.442048) (xy -1.474619 0.4058) (xy -1.467006 0.398593) (xy -1.431241 0.363597) (xy -1.431241 0.589431) (xy -1.431241 0.815264) (xy -1.577686 0.814249) (xy -1.620018 0.813873) (xy -1.659608 0.813365) (xy -1.694435 0.812764) (xy -1.722475 0.812108) (xy -1.741706 0.811435) (xy -1.748288 0.811029) (xy -1.843287 0.796545) (xy -1.935113 0.77112) (xy -2.02285 0.735435) (xy -2.105582 0.69017) (xy -2.182395 0.636008) (xy -2.252373 0.573629) (xy -2.3146 0.503713) (xy -2.368161 0.426943) (xy -2.412141 0.343998) (xy -2.428513 0.304969) (xy -2.458128 0.213738) (xy -2.477225 0.121275) (xy -2.485535 0.029391) (xy -2.482816 -0.059801) (xy -2.467758 -0.160063) (xy -2.442118 -0.254532) (xy -2.405797 -0.343416) (xy -2.358696 -0.42692) (xy -2.300715 -0.50525) (xy -2.235838 -0.574705) (xy -2.162343 -0.637932) (xy -2.08365 -0.690675) (xy -1.998847 -0.733438) (xy -1.907022 -0.766723) (xy -1.867703 -0.777601) (xy -1.802639 -0.794127) (xy -0.003019 -0.794127) ) (stroke (width 0) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "a1aada95-e641-4015-b601-5a95f15d670b") ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "1995a1af-4656-4a47-a563-d0a3f10ab4cf") (at 157.3 106.5) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP6" (at 0 -2.33 0) (layer "F.SilkS") (uuid "45d564d4-e82c-43d5-91df-42a6463350c6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 0) (layer "F.Fab") (uuid "8c309cea-2dd5-44ba-8935-4296d4468ef8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d6ed5bee-a710-4473-98ba-d51d7d9296a5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "68f91ce9-84f3-48f4-abba-04562e2228af") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f921ad8c-cccc-48ba-855d-48bb14ecd35b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "083ae631-3eac-4177-8d7a-b151767514fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/844cd271-058e-4a61-b648-3556ed9f378d") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9038bf78-dea4-4c30-a13b-b4341f98eb0d") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f613362-3989-4f99-bee1-e9335b24ba4e") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5994802b-10e9-4968-8852-4f4932141d8f") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "035b7818-ebc6-4631-adb5-3c911135f409") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6bb16117-912e-4ff6-9ec1-29441c2d76e6") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75fdc5a6-8660-4622-b538-458387591f48") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c2558bfb-7791-49f6-bed3-f6c975e1597f") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bee9ca81-8879-4c73-97a0-145a92bb67e6") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6f1f68a7-5cd9-42dd-8113-f01f0f494a67") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b611468-ede8-4e2d-a272-5359942236d3") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3498dcc6-343d-4821-aa42-b6ec91874331") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63c4757e-ae17-4df5-a9af-0aed13c6804d") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b8f980f-09fd-400b-b701-eed48583b4c6") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b979fa89-c2ab-4912-a1bd-04b12345d8c3") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "066f3e27-fb53-4d16-be13-21109f5a4b0e") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "c264e52a-6bb9-46a1-b7c6-1ec4deb5236d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 23 "FAN1_PWR") (pinfunction "A") (pintype "passive") (uuid "3fb8feb3-91cd-483f-be16-16fe1420f885") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 85 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "8a527b96-22d8-4ee4-9ace-5ac5eb09e026") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "cc4eba44-6573-4e0f-9d24-78beefdc4264") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "19babd50-6c56-4c8a-b536-ffdb1164a3d1") (at 101.75 68 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D7" (at -2.6 -0.05 180) (layer "F.SilkS") (uuid "a72b9a15-380f-497c-b1d7-2550d5b588c4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "f6d10015-eb3e-4230-80c2-61e039190c71") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b3e33693-1cf9-4463-b254-9cdc05b8a7c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7eb96aa2-d9cf-466f-8be3-9713a4e3a2b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "8e7d7282-153d-40b2-ae72-cac9b0953c62") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 169.75 -33.75 0) (layer "F.Fab") (hide yes) (uuid "5607a2df-1ad0-4629-949d-fe8c10af3baa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f41fd5be-060b-4534-9648-bc71fdd4e3d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e14cb179-4962-4028-9c28-4efc70e0b4c6") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "89800939-c855-4dfb-93f9-3c79b8cf6132") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c33ca981-87b0-44ce-ad84-8e1f864f48db") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8ac3bce8-38f4-4c60-86f6-39cb8d87aacf") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e4e2e390-a4fc-4e23-a306-5d2ca95bdb2a") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3fe9bc17-4320-4e45-9f0d-93df007abe8a") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0664d2d3-fb74-4d0e-8681-a7ade4df28a0") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b97f09cf-b040-4d3d-8c6a-134c023b2651") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c1d3b6ee-37fe-41e5-9675-5db32023ea64") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f895d46c-f1fb-44d4-a377-84ffdf5a8fdf") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "01df6243-e0c8-4c9a-8887-caf6eb94a608") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e7cf47d6-3660-4841-a3b7-ee83aefdb65f") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8699c01f-91e4-4ba3-bef1-9185a6f78786") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "ea6fc3e5-61b5-430e-bd1e-b00688cf688c") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "520e7ddc-8ae3-4192-9459-2d1b35072d67") ) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 21 "Net-(D7-A)") (pinfunction "A") (pintype "passive") (uuid "b42e37b1-5f7e-4c30-81f9-9ef306715e70") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "1ad5c265-c931-4eb8-8d65-46519581b2c1") (at 162.3 91.1) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C26" (at -2.15 -0.05 -90) (layer "F.SilkS") (uuid "af07c76f-c114-4950-9a30-efe5c9833989") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "b8eea83e-00fd-4c27-a897-056f177422e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1e012ede-334d-4302-b6cf-6b7c51c66885") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a938b1de-a666-481d-84a0-20b5c6e03b51") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9b4a0fb3-5b13-482e-8212-85973db46a83") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ca798417-5631-4eaa-a0b5-40659f050db4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b2e7ea58-f3bf-40dc-9b67-b9ff4f857d34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9b030b8d-b37b-4113-ad79-b31960a104f5") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "88db7c7d-4de8-48ab-bad6-7e10f33fe91e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cab989ae-2414-49e4-aa33-dff115c5a98c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce031995-05c3-4366-9d9b-418aaeed9cb6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bc6143d8-6dd3-428a-a17f-671fc6444366") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b26d7a31-c0a6-483d-9028-c4271b5058ae") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c8fdcbe-ae6a-4a87-8f3f-a3a304ad2a06") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "853eec82-012f-4535-adc6-ea6d408111f2") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8642b2db-f1c6-40fc-add4-087faac9c812") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fdc2908-01e2-45ea-83c8-c507f0ee932f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "8aa1a77d-983a-45af-9d0b-44d9a9cefcf6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 89 "/Fan Channels/Fan7/PWR_OUT") (pintype "passive") (uuid "d8c9e93a-d53b-45fb-80f1-47c199e142cd") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "20f4b414-077b-4149-bfe6-cea321c69c9b") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "1cf64412-b01e-4eaf-ba50-ca0daa6994ec") (at 59.1375 58.15 180) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D4" (at -0.0625 -1.75 0) (layer "F.SilkS") (uuid "a0a2bc0a-3625-48da-8f10-8b6fbb62e2c2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "441fd771-88cf-4a6c-9d2f-2a6a239a3f38") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4740a00b-e839-418a-bc11-b95e603465f5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a329896d-7c5a-424c-bb6c-adc83265471b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "772ad8aa-98a2-49c4-b6c7-b54874072c94") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f038ada6-8de8-476c-98ee-25629f4b2e72") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a0a492da-6eed-44a2-82cd-7895077fbbe2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/2fe78790-cca2-409c-b93b-37aabedf28fc") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86f49961-3ade-4f0e-8a85-a6fd5cec75d1") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e7eacb34-c35e-427a-aab2-413504e70ca6") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "48e8ed12-b8b4-4501-b775-65f04545c5ef") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e04ca0df-6fad-4b9c-bc73-60ae5cdc3c3f") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1e07b3e2-f200-4025-880b-07bd7c7993b2") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e1efe027-4090-4722-b9c9-4e59d83c37d1") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b438bf0d-9d9c-455f-97e2-265886167a28") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "048536bc-56d8-4d1a-a918-bd75886181c8") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "55915e1f-6937-4c75-a70e-7ded91f681ae") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47d12cbe-2f53-4fe0-9a8f-b01d3b30f63a") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "488efd97-1831-464e-adc0-b72a2c50b978") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "78f4ef23-fa24-43ea-81bc-23065f248b97") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "963bdef5-129d-4475-b1af-7240d98edc48") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "527ff6ed-6702-47e6-8a22-d74b4c6e64c9") ) (pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 12 "Net-(D4-A)") (pinfunction "A") (pintype "passive") (uuid "0a607599-b18f-43eb-aa9f-4ae4e2988201") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "1e0fa736-c93b-4f04-ac49-f38ac4164c62") (at 146.075 88.5) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R44" (at 0 1.5 0) (layer "F.SilkS") (uuid "12ec3bef-7100-4229-ab8a-fe863cc11423") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "bf335fc9-842d-4ea6-b2d0-575cab52fed2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a83cf785-5508-4750-8602-650a2731f640") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "658a1410-1e7a-4497-a645-5ce7cba8230a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0e142323-facb-43dc-a599-9b342aa5b980") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "99f2544b-c980-43eb-9fd0-a3ca6e2185f9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aa2753d4-e09e-4cc6-8b95-0a4024670139") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1f0dfc5-bb28-4501-b325-3b68517a2eb5") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4f37eac-c571-4d0b-bb92-d2371d866fed") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dcb11a0e-4cde-45da-994d-7fc3992f8607") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "956462e5-40d5-4449-a42e-76fe6d56c8ec") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1432aee9-76e9-460e-842c-43fe7f46b50f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1cd5e21f-e91d-4954-8e80-226112c5d458") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47afb575-509e-49e2-b48f-e8190369e30b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "68b5e81e-f757-4540-b3f6-d052b942c1b6") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "486362a9-a96d-4844-b880-9ad9042de5e5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3db02605-fb49-41ec-977a-62bcbd100aeb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "a58a7c7f-683f-4b48-944c-6372569d5891") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "FAN7_PWM_GEN") (pintype "passive") (uuid "ed308522-83db-4674-89d7-75437c82023c") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 90 "/Fan Channels/Fan7/PWM_OUT") (pintype "passive") (uuid "9e1f7b03-7fbf-4b38-8aa3-3bbbaf970630") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "20859ee2-cbf8-46fe-9c40-f518330ff9ec") (at 162.3 97.2 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D28" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "37a995c7-7e8d-4fa1-851d-6d90d6429e5f") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "a8336df9-9cbf-4642-a2bf-ddba77790f25") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "1ba78157-0909-46cb-971b-37782650b37e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "5aeefa4a-9f39-4a93-b5fc-28e3cb92cbc2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "7b1d55a2-4e92-440d-bef2-5128091b4254") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "9362440d-7085-41aa-a135-e5796a57fe40") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "be9d7b4e-48ae-4caa-ab3a-8cec0f5bffef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 65.1 259.5 0) (layer "F.Fab") (hide yes) (uuid "215e5181-dc3f-4860-a2ec-06c8d307d005") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3c2f9c8-bcf4-4b5a-b7f4-227eb6a4a034") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e1fe91dc-cca5-45d6-a450-5a97782e03f4") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3a3a99f9-52af-4b64-af4c-f37d493d44be") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "74044213-2548-4f5b-9d18-ff560abbe34a") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c58b5ba1-2ba9-43c7-a33a-998be8f684f3") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "71460102-10cb-44fe-9281-c7275dbc8d0e") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "805fa994-3489-4a76-8032-9eae1690aba0") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e51bb59-a85c-4691-991f-d4adde773b67") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d7843896-e8c5-4af6-9b0c-0301e53c03c0") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2bbade64-8f60-4e8a-b134-8251f9b370fd") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b84624a-4bc9-4fea-b991-4ebf77f343c2") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "17ca5d81-857c-4445-818a-baab5674bf3d") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8402cce3-dbc9-4873-9f52-fb6e7c246cda") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae246d26-5bee-416d-aa90-1390f9274b55") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3901d9fb-a06c-4d11-9f3e-afdea9691097") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae5166c8-29ab-4b12-83eb-d409737e5034") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e621d5b-ad51-4312-b58d-1abc6e1e65a1") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3eacf757-5e26-4aa6-8934-a0a865005bfa") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "2014569a-8931-437e-8c77-5647e8ebb49f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 87 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "64d3d90f-cd2c-4a55-a0f3-173d38147798") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "f01e08af-5dc8-4af7-a1ae-b920ab791c76") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "2124e21d-55b0-4d80-b906-acf95e0e6e08") (at 51.7 120.9 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D73" (at -3.2 -0.1 90) (layer "F.SilkS") (uuid "64ca5e3c-0c49-4887-a5f8-ab5fb13ef191") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "1741875e-ee38-4312-a2a1-bb201d955696") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2cb51c6b-6fde-4157-b27f-a4859f484d33") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "683f85ef-90c2-4900-98e7-84977232cdd2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4f5e26a3-dc9b-4ff9-8963-45160bdcc796") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "56966444-7ad7-427d-b3a0-fe5e3f5b923d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/0ffd0e54-a376-4fb7-95dc-07d025a94cee") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1772efe6-ffc4-44f1-9c92-f798bba95498") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "70969af5-1878-46aa-bfb7-6b4a4a3c3adf") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc8c8838-9fa3-4045-8d0d-2c9041f7d873") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c136e31b-a632-458e-904c-c150e81fe490") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5348c06b-5032-4ba9-aae4-4d901a0f4c24") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1cb9bd43-25d3-4ed9-8a90-db75e1a74c1e") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "116d1de4-e8e2-467b-8299-8556f4fe8ab5") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d4c1220-9d31-483d-8d60-331732e30e37") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62e724be-239c-4590-b23d-788e4a87e55b") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "afafbcf2-8b5a-4e9e-af98-655aaaf4ca64") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6406d6d9-fed6-4332-a311-13d801123868") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a14b554a-98f4-4f68-8580-58cdeade42f5") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c152140d-e618-483d-81b6-1c4a211cb33a") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0ffa3ed5-1d7e-49fc-bd2f-4b705a31003c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15e31a67-348e-4df8-a496-43a4c410c899") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "67d33912-e8a3-4015-a3b9-e0e1587740aa") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eca8ba03-945b-47b6-8637-98cdcd5eae06") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "27746836-9d81-440a-b981-e233bbe76ecd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "23b6ff8f-c078-465d-bdc7-363c98d2793f") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "SCL_MOSI") (pinfunction "A2") (pintype "passive") (uuid "506cc7f2-69ee-412b-ad20-e7f556fa6516") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "21b476a8-00fb-40fe-a8c2-f0fd47fb087c") (at 131.7 66.55 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D58" (at -0.65 1.5 90) (layer "F.SilkS") (uuid "0fd00058-cea1-4171-bb16-a875c9aa3788") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "c10325c1-2d64-4bdf-a281-2500b39c30a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "777c24af-4249-4583-957d-131ce909f0bc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ee6df5e4-cccb-4a75-bb15-a3a9f0742c39") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "961d2d0b-d177-4822-99e5-8acb340e55bb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3b0338a4-b809-46af-ac53-25bec8bfb140") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/16ceaaaa-e928-48f0-aa21-5f990ab7d966") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c29d403d-7ab1-46ae-9e9f-376b50afb9be") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "83cc85c4-a5c7-4120-8bc4-2ac00b271018") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b8f83150-8c1c-463c-95c8-76f8a29adafe") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f647a48-4437-4c0a-b9a2-fd0408a83b52") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "002fe895-e5fa-4c93-84fc-8d7ddbb6d384") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "af0a9fae-0ca8-49ac-b07d-73f4805e65eb") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a7d529bc-61a9-4986-8b12-f599b04ecfef") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48ff44ca-870a-4d04-ae3e-bcee5f4c72ca") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70bb1a00-547f-4c13-92e8-f11e3b709efa") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f1161a5a-5f59-4188-b202-ffeab985e458") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0bd98151-f8ab-468b-85b4-7d88a7235fdd") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f0e11435-5447-4a17-99c2-acd3c0ad3280") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c56c674-eba2-41df-a9a3-d11b619914bb") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1dc72b74-347a-48a3-a885-5d1375cee38a") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b12e975-4454-42e5-a58b-a9b919f24520") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ebef4120-ffa8-4edf-ae45-b950a4c8478f") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce06cbc5-f08b-4413-b629-c853846aea36") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "85f36965-979b-4a83-9fed-1006a92b0bdc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "5c9060e8-0a2a-47d5-9ef7-61ef71cd8821") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 31 "/Fan Channels/Fan3/PWM_IN") (pinfunction "A2") (pintype "passive") (uuid "52cbf678-d482-4345-901c-a4f87e4204da") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "223b1bf5-aeb0-4409-ae26-7a05947090b1") (at 99.8 67.8 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R10" (at 3.2 0.05 90) (layer "F.SilkS") (uuid "29a4cc48-3b1a-4708-ae02-b544cb7d2b37") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "6fd95084-8422-49c5-a3d4-4c8193a00044") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "319e23e7-e149-4568-b5b0-9432372bfd72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5debba62-ab24-499a-a893-973651063622") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "681905b5-5fb4-4d55-a866-964d423fc353") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 201.2 129.2 90) (layer "F.Fab") (hide yes) (uuid "a3922a60-1b04-42e6-9bc1-7cfc39144b93") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "97941e5e-a008-46c7-adc4-71e5e9b77a1a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ba9485af-39b4-4a7f-afda-f544d55bea86") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bca1cd62-4880-4540-8af4-29dc45bbf7ff") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a66621e-14cd-4a11-a0b3-7c0129ba2825") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5736f724-6d1b-4553-888d-29a51fd234bf") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2d9225f8-6c12-421e-979b-6cb7bb56538c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83862218-4e14-47b8-a466-330545c68d7e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8704c21b-b93a-4133-97be-5aaf1bd09159") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28fce184-7b5f-45f6-bb32-bbc6fd4b33ab") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff34874e-2cfb-43a2-8da8-d457a57ed127") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d2bfe3b-673f-4c4d-9d65-2ed39d907c06") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "39cc074b-77ef-4a29-91c7-992829853ee1") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "a210fa18-ca9d-4dac-a0cf-02dbdc66b75a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 23 "FAN1_PWR") (pintype "passive") (uuid "a1519aea-b1bd-48b4-b0cc-d0724eda0510") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 21 "Net-(D7-A)") (pintype "passive") (uuid "3cdf1170-3e1a-4a3c-bd68-d6da51189cff") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "22c5ec8c-92fa-43bc-955a-ac62de3d0d1e") (at 150 94) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D27" (at 0 -2.5 0) (layer "F.SilkS") (uuid "621d4650-871d-4d8e-b6dd-cbf6e794bd1b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 0) (layer "F.Fab") (uuid "86eee6ed-fb69-42b4-a487-3d4ec2948a0c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "110365ab-d86e-4b85-ad1b-0ec753d708bb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "09ffc222-37da-4cf2-9824-a9bb28e324b5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e37836ff-0a0d-4fab-aa2f-eeaab682df00") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9f12f824-be99-4dfc-b412-3c878d030ddd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1d068733-39d9-42a6-b9fc-a436d6d488b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "beb8a61e-8179-44d3-8637-e57bbe65b8ea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2c54f1bb-fb7a-4e21-a2f4-91a5a0a4f5bc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0924b812-c4eb-4363-b031-c72154e05385") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e768eb76-7ad3-41f9-bcc1-8b5b9f41296f") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba95c05b-9d22-44d8-90ea-3a4a9f6881d0") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fe601761-0988-4cde-9770-577009cb5232") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e4bf53e-2ceb-4072-9539-0de0ec170d5c") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f8d41379-e7cf-4946-ac83-fab88ae034f6") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "07515f45-abc5-4ca6-83ba-48653cdca8f3") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4acc1f07-6324-4dee-953b-e1c789c49b91") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5dffc286-f73e-4288-81c6-f269b0868486") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47a10316-8ca9-45ec-9a21-c2d68bbc8649") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "35690c80-c0a9-4567-96e8-9be20986f633") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "17eea341-61dc-4d1c-b725-4c5490313ebb") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ec19c73-d989-4b97-966a-4a238fba7e8e") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f8118ead-bfa2-4d65-a95e-a429c2ccf18f") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e637a10e-0913-45ff-935b-4601d7daebde") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a9ad134d-16f5-4116-bfa2-0ed3230f7430") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb9ecf11-e0bb-4591-9da2-f7cb2bbedc6c") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02a2d615-ad01-4fc0-ab05-ece0691549d1") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "4cae955d-e04a-4033-9039-6dd71caa5d42") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "729b1be9-f51f-47d3-92ff-1202d204a7bb") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 19 "/Fan Channels/Fan6/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "bf7fdb80-5b20-4fa1-83d9-c0ee33c4d150") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 76 "FAN6_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "b80337db-20b4-4f33-8027-48ad2620d369") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "23416e5d-9e80-4232-bc36-57f7ae89601a") (at 127.4 113 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D20" (at -2.5 0 180) (layer "F.SilkS") (uuid "8018d5f6-3753-4d62-876b-e3a8f9e26322") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "63bc9bf6-36c2-4e2f-abe9-4bccebb37634") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "bf4c16a7-5a65-4016-8ff6-ff9845c6c144") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "fe6b3967-5920-4aad-9e2f-a6ed5d38aa54") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "77193130-f7d4-438e-907a-e192d8420cda") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 14.4 240.4 0) (layer "F.Fab") (hide yes) (uuid "6fb5c91d-ccb3-43aa-b488-e860bf7452d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "61cdfd91-6b62-4f34-bd4e-80245c120502") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/99383412-e91e-4682-9562-162d7ddf01c0") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "03d66922-a33f-4466-95bf-77f2a465837d") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6fd7897b-f397-4549-9a56-d19248173372") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53b713b1-c037-45f1-8139-01dceb918ae7") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "64571915-fce1-4d09-a266-5b9d7fc74579") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d5a986de-a0fc-476a-9c57-4a48470e4698") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1c20ad16-eec3-466e-8374-82c062e1b32a") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9b892129-2e02-4576-985b-4f05183eeef4") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f54f7e23-d556-417d-b9af-6d9866a8653c") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f256b716-01c7-4b48-b28e-60aa623981fe") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2708525-9fe3-45d5-8963-211ab68dc8d1") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e504c169-27c7-47c8-91b3-fe0692c5b90f") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "391d590d-1a1b-4d36-9a59-756a8bb064cf") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "c9c8717d-8ca3-4a5d-9c53-ca9da2f4efc5") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "f69ff8b9-806d-4328-a264-de3f66614434") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 95 "Net-(D20-A)") (pinfunction "A") (pintype "passive") (uuid "7f02425b-05e9-41e0-8266-970796750f58") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "23d75056-8ad4-462d-aa30-6d8d564b8e62") (at 167.4 101.5 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J13" (at 7.3 2.5 90) (layer "F.SilkS") (uuid "bd56eb94-47b1-4303-920d-5e7d317dd104") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan6 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "113cafdd-c30f-4510-bd90-e82917a690b2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4a9007c1-fd1a-4297-9b86-a3d0224559be") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "02c977b9-f861-4d18-9c5e-6630714ca31b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "50ea32ee-b9a4-4c88-a155-d7036425422b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "54fa40e3-233c-4959-bfa6-5fc1834577a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/094bbf69-e345-406c-a80f-9e08f85706fd") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8ef42ac7-05cd-457c-96d5-67e388d61634") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "afd4e81c-02b9-43c1-95e8-2c6e7b171c99") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7908dba4-125d-4141-afed-e37d74fb08c3") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "139726d4-ca3e-4f29-9029-d207a35e1e57") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1b13309-ccda-4ea2-90cf-cc94a6cbfbda") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "94ee9e6a-fa66-4cb2-8178-3f358a19a0d2") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "28a188bd-9a75-4653-9152-9ca10be0cb75") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4d6212f7-da56-45df-a00b-a28febdb6b1e") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "20e8c5f4-6c17-4c00-b21a-a543d1149177") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "389c24bb-e5c3-4f83-86c1-39353b91a59f") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "40b7a29b-9fc9-47e7-8572-9b215d8e20a6") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b7ecc595-17fd-4d11-8842-65305c1ac992") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c53c50b-1e11-4c12-a651-d21c3404b0ad") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3bbd745-49a5-4ef0-a1f0-f9f8738467a3") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdaa3b31-d544-43cb-8734-3d876d96fadd") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b84ea5c-de6f-404e-9cb5-f33876c7d923") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b59eff9-bcc5-48b2-86c8-7cb8cef94fad") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3d2d007-ebb9-4e49-9459-a6eb306559e4") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a084a6d-8439-4db1-8570-668f6b36e022") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "17e6d8e2-ac44-4301-8367-f5e3ab3031b1") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e692511-61ac-46c0-9139-6056ea1eef56") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "c749639c-09b6-4486-baaf-67a10b117996") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "63803eb3-fc88-4c3e-9b50-302022dab404") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "0de839a4-b935-4a65-9b1a-624216c7e9d2") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 87 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "757b622f-5611-4541-a8b9-6e86f373838f") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 19 "/Fan Channels/Fan6/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "341f0983-a2bd-40ab-82e4-9d983051ca62") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 88 "/Fan Channels/Fan6/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "f2b96c21-3cfc-4774-af3b-af1c3531fc93") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "24217754-65f8-4058-9ca8-8216e58d0e1a") (at 127.3125 71) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R32" (at -0.0125 1.3 0) (layer "F.SilkS") (uuid "a6e89a2d-19f8-4b19-a72a-3b620e908bc0") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "e0512ee0-d2d1-4e10-93a9-6ea0e7cbb112") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ccda178f-1ac6-4080-a262-d749d75418df") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6d7ec1f2-7851-4ec5-9f06-76b94af1f4cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "38d33ca4-2dd7-467c-9375-f5e8886f3d79") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bc04a673-44ae-40a6-aa4b-d041890826ed") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ef17da53-f30b-43f9-a5e3-1dfa57f968ec") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d0c06c4b-ef55-465b-bb9c-bf9ee18ddeaf") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2699cba7-665e-460e-97c6-ddd5cf97fc6c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cf505350-f85a-4b45-b3e1-e0f60cc7ce81") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13dc0459-eb22-4f4d-8e2c-a8af3d610613") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "419adfaf-d986-4808-befb-680d47d88884") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aad1c36e-5a57-4fbf-a667-5ed4f626be19") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "421026ab-1e46-4332-a570-3593b455eee4") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4855b45c-bb72-4944-b898-e89e4c3d4d0a") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "74daf153-6c7b-45f3-97ad-ec66cc550895") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2837c6b1-7fbe-46f0-be48-c69005705970") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "e387ce42-a26e-44c3-9cfe-83ea886811c9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 112 "Net-(Q4-G)") (pintype "passive") (uuid "3990b4c5-6f39-4791-ae08-98da03fc762c") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 74 "MBFAN3_TACHO_GEN") (pintype "passive") (uuid "2a504872-f06d-40a5-8baf-f75240825810") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "24506f2d-3035-4df8-b27f-83d5d79b2e33") (at 67.2 63.45 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP1" (at 0.15 7.4 90) (layer "F.SilkS") (uuid "76ccc08a-b5b5-4508-bbf8-8e0315b79a43") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Power Selector" (at 3 2.125 0) (layer "F.Fab") (uuid "97f6d411-8856-4d1d-ad50-49b6a092a3a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ab1b5cd7-93e7-45d9-87cf-aa70e176fb61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b3984a14-db52-4a22-aec8-59a6aeb313bf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "54c6133c-72e6-4d6f-a6d7-8dc67e47e360") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4347acb4-3ea0-4a75-aa29-fbb06f515173") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/4ad1e273-b8c7-4692-8f20-a03965035fd5") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "10fc000b-224e-45d3-8378-3716136bfcaa") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "51a2cea9-2cdc-4dfd-b07a-420a7243049c") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bb8bded4-1483-444f-bf79-a39cdc000fd8") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5b4b8b34-8e96-4743-b4d5-d0882dba59ed") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "751e8fee-1466-4891-aecb-f33f2291842e") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecdf3070-37e8-4b24-ae6e-0ae162c95264") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c5c1ac9c-fc1e-4381-8764-082493534953") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "33593bb6-6da1-4a80-849e-995eac51f5cb") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5bfb40ed-fcc1-43c3-b3e8-d93ae15cc69e") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a89e26df-ada9-4d0a-a290-447b47ad2885") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ca6499d-7a73-4985-8288-2b8f9fe41a97") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c52c554-6fd2-4d14-a563-934575dbbae7") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c1ae3362-c879-41fb-b239-8f62bbe2fbd1") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2544632-8a97-4a9f-8e8f-ae876eb59fd7") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd4e8a60-864e-4a67-941e-b9c3e4813ace") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "189cbc54-811f-4a50-ae84-ae703371cfe3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "A") (pintype "passive") (uuid "a33e63dc-b4db-4c08-8f13-1c90741850c4") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "/Power Rails/5V_REG_SEL") (pinfunction "C") (pintype "passive") (uuid "d35ea1a6-cb5a-4229-a508-943f41538f9a") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 23 "FAN1_PWR") (pinfunction "B") (pintype "passive") (uuid "1873f4ca-7aac-41ea-8ad1-35568fe3e783") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "25b9b6d4-722b-4fc2-8315-c355f287841f") (at 128.45 67.9625 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q4" (at 1.2125 -2.05 90) (layer "F.SilkS") (uuid "854315fe-0365-4353-9583-6bc0a21cafbf") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "43e7395c-280c-44bf-869d-b8d0f6bd6456") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b2667df3-238e-478d-80d9-609c8f5b5cd1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6ce778ad-5f39-440c-acb0-1666ed944923") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "56fe42bf-a6cf-4c89-8eb1-f14443e56789") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 194.4 -62.4 0) (layer "F.Fab") (hide yes) (uuid "9465b81f-708d-4b32-a298-e77da4a73923") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e6a97a3a-6700-4da8-9e46-24481b382371") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/537d375b-1ca6-4946-95db-66496543d0cb") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0bd5cb5-987c-4ce8-8245-68eb6614a605") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "73f437aa-9ac7-4af0-9296-eaab3f942eeb") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "27690950-89d6-4922-8e1e-bd7a14b2f0b7") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64ece7f7-30a5-480f-a090-bf7d81ff7606") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "bd2be8c6-7fe2-48a8-8c41-3e0eb1cbee78") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1f79fb74-1776-4076-929d-623853160988") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1c0dae4d-d509-437e-9d83-c0a0a85aeeed") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b144964-dbc4-43f0-972b-76f2c2701df6") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f262b211-3e31-400d-957a-5a256bb8f898") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e7d71e0-0b69-4612-aa2d-09f50485e4a5") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "462ecd1c-a946-4700-bbac-d1099d65ec54") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59641443-08e6-4ae9-b6c2-24b36a9022cb") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "438c39c4-1ad8-4d22-ab07-00106eb6542a") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b0eb6d72-9cee-48b6-b757-0c27811b6549") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d517c94b-4ae5-44bf-addb-385474811392") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 112 "Net-(Q4-G)") (pinfunction "G") (pintype "input") (uuid "dcb9e930-bbfe-4fe3-b2d6-6c0a3d057122") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (uuid "f4c9f87d-194b-4ce9-99e9-008e32948382") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 30 "/Fan Channels/Fan3/TACHO_OUT") (pinfunction "D") (pintype "passive") (uuid "7dfb3754-5fe3-4ded-a7d8-cca202a99a68") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "2aea7443-84b8-4ec0-b22a-c5fcc74a6e71") (at 138.8 115.975) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R26" (at -2.2 -0.075 90) (layer "F.SilkS") (uuid "98c01716-8028-4293-ba1f-a1dca84f4988") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "271ccb22-1b12-4262-869c-430bc75c917d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cd44ea76-f07f-4e06-ba17-b13de765c868") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "537b34e0-317c-412e-85a2-1eb43f5e8ab2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "adbb1100-afad-49a9-b339-49925a119269") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "eb46752f-6c80-4580-be0d-54fba59019dd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bae85831-356d-4bfc-8c0b-8578b05639c2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6e64ae13-fc59-46b5-b27b-90be34b387d5") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a3598c81-e6a8-429c-be7f-7d2cc0c5b5b4") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "787c4253-be00-4845-a904-eba55d50d102") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a85dc54-35f1-4aad-9df3-621c0ed3c4e8") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "52530702-d8b4-497a-9725-ccd4a217b792") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4bb1487d-78c4-4554-80a2-92d176a615d4") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "614ebe8e-67a7-442e-8d89-b09840a424a7") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2e2fa47c-2772-4fbb-9c70-42ad6d5f8ed6") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "013e3088-ca0b-4e22-ba04-36df8e405c7d") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "85c7b17c-0ea3-480f-9799-e05d089d0b04") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3df6e2cb-daaa-4a57-a567-c6bacf43ce29") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 83 "/Fan Channels/Fan4/PWR_OUT") (pintype "passive") (uuid "df09300e-8046-4d57-8086-bff417d10394") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 93 "Net-(D16-A)") (pintype "passive") (uuid "756b22fb-25d2-4f7c-add8-ba65ecc87984") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "2c9cfe7c-a42f-42b4-9eb8-94c26ddb0b21") (at 47 121 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D38" (at -2.75 -0.25 0) (layer "F.SilkS") (uuid "34af74ff-5849-42a4-8af4-f4b97fce5071") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "26bab49b-ea11-48f0-b487-6614e844ce10") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7b3ec037-7192-4b95-bc9c-9dd15f0acf71") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7e635d8d-46f7-4e36-85c6-758ec18898f2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b054044c-e694-4ea9-95df-c5fb3153e927") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b3ea963-5a51-45ec-a699-334cd7ad03cd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/7e8f922a-bb33-4f5e-826a-830407acd16a") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f7f9b66-b3fe-47c2-9be8-3e115612971f") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4dcd3727-abf8-4f54-9c8d-1514808b9a56") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b91dadce-24b7-4bc7-988c-e2c202235943") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc2f22ed-79bb-4d1a-85e1-7b64b861d24c") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7e7eb388-29e2-4718-8aca-d1be11f91e23") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "daa1a4d5-31a1-4f61-af40-309c7d3aee71") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4acc4a2-45a9-4316-a3ba-545ab1bd33e5") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a0517d7-9074-4d09-8a60-5796adaa0bd1") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e03f8efe-3860-4d99-b0fc-78295d77e5d8") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f70f60c1-859b-41d3-953a-b3df3b605271") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7a4c4e3b-6ef3-4ec3-b9e6-42cf46ffba62") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "683df2c1-8c1e-4c11-ae9d-62629182e9b8") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f53db1fc-3133-4419-97de-55d32f3c7019") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "90d627c8-3398-4999-9a41-f91499bbaa21") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fff0c500-d8b0-4d03-b03f-8c40d86a4640") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a881e4d8-63f5-4853-a0fe-3a39a5a4ccd1") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e1d12df9-648e-4c8b-ae95-fe480e3c943b") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "f87e04b0-6713-49cd-94b9-7066aeee07b3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "9de5706c-bd98-4921-873a-475b7f0d4346") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 116 "RX_CS") (pinfunction "A2") (pintype "passive") (uuid "4324944b-a535-460d-88cf-fd8198ff2b02") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "3026f5bb-1f54-47e3-9740-85922a0247d5") (at 119.65 114.7 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D49" (at -0.225 -1.55 0) (layer "F.SilkS") (uuid "c43a5c5f-47fb-4d99-a440-96a1d7186d15") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "fafe18c9-1578-4972-9f06-d6dd5b28cf6a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8c48c7c6-d788-4107-a316-4f784c8d93ef") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d7cd433d-8fe1-42e3-b958-925dc79c3a4a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ec5e052-a270-4320-91cb-34633c4b3f39") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "af6fbc25-5bb9-4d52-9afc-cd3d5016f889") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/31b59d93-a9a0-40d8-92f8-9879661e9475") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a0c4c89d-b5ab-4057-968d-aee375fa135d") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "19f94c7d-80f5-4e32-a403-93a870f2792a") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64577e45-6ea3-47e7-a4d3-7b67e0fc3cb8") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a273eacc-8849-4f14-8780-1f3d41057b0e") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc558894-3b09-4635-84ee-cdf2655b5732") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fab0c45d-967f-44b6-a36a-6a37e087cbb4") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ade4bcac-64ce-4baa-8b73-bc3e101118c4") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6a5d12f-0807-4e0e-a7bb-0e234287347c") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "55509884-046b-4744-b82f-df459a72123c") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "901dca41-0159-4f6b-82b7-90bf0af9517b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f4e872be-e5bc-488e-913d-419deb4bfc37") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b45e5b55-06a5-418f-a7ee-bc192c7d6fbb") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58ddafca-4133-4e1b-93ce-c0cf33b59368") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54ec7b63-d1ba-419c-b796-fa3c7aaa5016") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "879d006b-20f4-4b90-9c48-324c3712de25") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6a88d11-bf79-4afe-90a5-2b7f86fb95fc") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e49c2d3a-fef9-4550-bfa0-a4450da7bb39") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "109501e2-37c4-4083-93a7-8c2a7a5e153c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "be4be91f-da20-40cb-b6de-85f1521d63e5") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "9bfb0b18-8de2-4bbf-acb0-a0c3a34e3d8e") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "30d408b7-6af3-4a56-9ac7-f437419bd0d5") (at 150 105.25) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D24" (at 0 -2.5 0) (layer "F.SilkS") (uuid "d2269501-0540-4967-8dd3-c080f444d9d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 0) (layer "F.Fab") (uuid "de12910d-af56-4aec-9efb-b84022dfde60") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "86337217-31f6-45f1-8110-74ead7c3fa59") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "afe7297b-bdb4-4a89-a099-6be8489ebdee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "25bb360f-6c70-419a-b7be-63d5f4dc0eec") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ff0064a6-c4c9-4dd9-9875-af3fa491658a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a2fae525-7b9c-4c7a-9028-579191b4738b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "471f3144-a3f5-445f-896c-a5e8bee4829e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcd5297a-97bc-4c01-a5bf-aec020193788") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "20923555-1efd-44e2-849e-313f87bcc506") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8041d64d-687c-43b4-834d-e047d0ff4519") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ec33c7a3-5445-4a77-a2f1-72e7065b17d8") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6ae00f0b-2f8e-4cd8-bb4a-660741d38b14") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "38f186a7-2705-4b9e-9075-b4846e629843") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5520e911-25b3-4caa-8693-5f04e0b22b9a") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e7680664-5248-41a2-b258-72d99d29ef48") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "14bf41ae-a524-4675-b855-5305fdd5fd07") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0e3adb86-a679-4f6b-a17b-5d41dede9ea2") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "354b4c32-91ad-4fd3-b904-b128adc1de18") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "65ab54fc-99cd-4b9f-a3ce-c5748ee71ceb") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "645eaeac-b580-492c-a6bf-2217a435b45b") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c3c74eb-0880-48c6-918d-9057a89e056b") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7fbec4e-334f-420e-9457-ae0ccd35bc5c") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3fb67c6-f7b1-4857-a0c0-439ed4335528") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5236301d-3337-43a4-826a-d742e570f771") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e2b24ad1-9f5e-4cc3-ae0b-208f499ca92b") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8878a48-ca1f-42f7-b2a9-cdfdc57faf98") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "4ad27aaa-a856-472e-b84c-19864044f28e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "39baf387-6a50-49ab-9591-ab8fb91829aa") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 18 "/Fan Channels/Fan5/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "139a139c-4d9d-4ad3-a0e1-8a114e974abe") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 75 "FAN5_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "e27243bd-0103-49df-a7fa-a5430f1a9848") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "31a86e3a-51c7-4264-aeab-f26e17643994") (at 102.175 115.325 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D64" (at -0.15 -1.475 90) (layer "F.SilkS") (uuid "4be967be-0441-462d-be98-88e4582226a8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "a011e872-c556-471b-929c-fcbdc5b0fe81") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "79a33f7e-7552-4bc8-a48c-2a5b4171c784") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e523810-2dd6-4497-bc7b-a94e195aa353") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "71808868-5354-473b-96af-cbad45236079") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "40e3df92-6f5c-441b-972d-5307944e2ca9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/f93337c1-ba43-4bd7-abe4-9f429ba85e00") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9e8e091c-6b2a-4c4c-a701-ddcd97f62749") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "270d240c-908a-4054-a078-5da76595e41b") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf47a4d5-7882-4472-afec-ba5f0b48c9f0") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c6752fff-5bcf-4469-83a6-1a8be0db5139") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "784ce313-9025-4a1f-a6f7-94c8d2f9751d") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fb05f3ad-b44d-475f-a6fc-4ce4485ef967") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c91bb380-a5f2-493d-96ba-c9113aeffcc2") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ccee1ff-8c87-4164-869f-538f7f360b1d") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c3bf9ac-7ecc-4f60-ac90-a00a4c7c4bbc") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b590b20-0002-45e8-96ed-fb179de4a778") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1fa0e58-a529-450a-a084-d5dfadf7c5de") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6e2f3cc1-c331-4440-b712-9c12335733b7") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c1ff27e4-1be6-4527-b22f-5020e18e5a2c") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "96afc11f-6995-4ae7-a7f9-e52be3d39773") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f61d8f8d-bb8d-4caf-9cec-8d875fb0d7aa") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "747919db-fda5-4a17-b539-922e26b85998") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8eae70bc-c5a6-42bc-bf95-f0f83c9d8406") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "d96942a0-660e-4128-a98f-8501580ef938") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "8f2f20db-226d-48e4-9dc3-826f606f6be7") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 36 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "1af128bf-1e07-4595-9819-cb0086c97141") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "3259f80d-9863-4549-b902-9b908fd99360") (at 157.3 83.975) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP8" (at 0 -2.33 0) (layer "F.SilkS") (uuid "00b69112-d14e-411b-9cdb-7624e94d381d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 0) (layer "F.Fab") (uuid "4743dd8a-bd4b-4383-b60f-813582ebb2e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f8143b96-1474-4b23-b448-459b55e4208f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "75805c85-07d1-45a4-b4f7-199d57bb3685") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ba01edb8-9da7-4efe-a7f8-25cc2e87a8a1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "20f5d95c-bd22-4b70-9ab8-8366f3348222") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/844cd271-058e-4a61-b648-3556ed9f378d") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "292171e9-ab8f-4061-a04e-610a933a96ea") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfd3945c-43d1-4b29-8ce1-734157999f3e") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "aecb1056-bd68-4d58-87d6-672cfc8d90a0") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31d2cde9-1380-4331-a584-6aa8c5c69e68") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eece4b0f-5fe7-47f6-8aa9-4d2ff09e88ce") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c5c0a220-23fe-4a0f-8321-2308ddd2f908") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c6640864-f684-47f8-b1a7-3990345c9e2f") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6de223e5-8062-47c9-83c7-cdf758c4798a") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "868c00d4-aa52-4e47-8363-286a3d34c942") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "78ab7221-2b8f-49a1-9d66-6b9db77aae30") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6aeba39-4344-42f4-bafc-4adf131811ab") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b35733c-bc8c-4926-a346-dc30a3749c65") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "961bcd6e-22e5-4ff0-9b5a-82e2a970fba7") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b435688d-ec22-4d5b-bff7-0892ce998bfb") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b913b029-689b-4761-a0d8-12d48aec15ff") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "c064846d-7ebb-4662-8e95-f3b7c74d6e09") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 29 "FAN3_PWR") (pinfunction "A") (pintype "passive") (uuid "2cc2d201-53ac-4dd3-bb79-31caca15c730") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 89 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "6875c1f7-a48c-4478-bdb1-e4273e469df9") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "1354553a-e7b6-4e7e-acdf-284845c3a340") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "34092db8-c47c-46cf-9491-d58ba300a2f1") (at 135.05 65.05) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D47" (at -1.05 -1.45 0) (layer "F.SilkS") (uuid "573b1323-9c12-4ccd-b669-9ace947bded0") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "ab8d5634-094d-4cef-b84e-290e3a8d037b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "229c817f-d5b1-4579-97cd-5b1b354a1e05") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f34f76a9-a5df-417e-9535-e534cd400f0d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5199b24b-6a3f-4b43-995d-53945413143b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e576bba-d3b2-4008-affe-38c49b1ce86e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/6ac072df-f56f-411d-90ce-e618b6f9b3b8") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cd1ceeaa-05a6-4ceb-bc46-b2157bfb9ea9") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "39dc04c5-32fd-43f1-8810-99d39bebb3ad") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "80963643-e88a-4268-85b1-b78b00b69ec1") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "258b30e0-ffdc-4f66-af3f-5aafa7a7246c") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f6bbedf-bd1a-4797-8762-399ebf8b2827") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "98752f57-57a6-4c8b-bbc8-def80de5a1ac") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "805980da-5cb1-4149-88fd-a183fadd73d8") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e81106ef-eb81-40b7-a546-e58660b47569") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "379984cc-9c09-4eb8-a51b-0a214b49d88e") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ae17b3a-64d6-4dc6-b88e-35bf5f5116cf") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "560f215d-01cd-4417-b258-e7e2f61ecce0") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7005b55a-538b-4113-a08e-994073083461") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "65cabb6b-49cf-4a23-8aa6-7ae7bbedc950") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f5236e9-12b4-46ce-80bc-46da9cfb1b09") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "72efa49b-beb6-4008-8adb-69bd856881a6") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b46301ae-c993-4418-b070-b91c39349c87") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9897b9e5-79ce-4002-af58-1d7fa5a312c5") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "82d98aa7-94c8-4428-9f05-f6d11082619a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "b520b3cb-92e8-4e4e-bee4-00880db2a57f") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 32 "FAN4_PWR") (pinfunction "A2") (pintype "passive") (uuid "ef530663-942a-4d2e-9f45-2fac82d400ff") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "355967bb-76d7-417b-99f5-a39dd20a6464") (at 146.2 75.6) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D32" (at -3.275 1.025 0) (layer "F.SilkS") (uuid "28ba73ef-510c-4ed9-8321-5993c8975c13") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "8c08e1ad-43ea-44e7-a24d-7b763c0c17cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "928d770e-333e-4550-a1c8-ee0b1aebcdd3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "588dcc94-b659-45df-acb0-fd061d391c25") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "84ec9f96-20fd-4f34-b5d2-0b4ad91e4808") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4bfc6d72-17a1-46f8-b65d-4f4db7b41933") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0238aeb2-3a05-4ac5-a9dc-a6fd7a99bef8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "addac00e-b3e3-4224-a425-85e309d8c188") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f07ebb9-9fd3-429b-be26-081f1ac366c4") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1e36ec18-3a8b-4279-8b42-afba66219a95") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "213ad540-d1fe-4694-84dd-bb1149515895") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1fc40111-e5c0-4ae0-b6d9-5600831867d9") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "649f9cdc-f0dc-4202-8867-7c45820e30a1") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d10ca8ce-a017-488f-a6e0-a5d5c151a8b8") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02e615c8-4fd7-4e69-95a2-12305c60a929") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6cd3189e-28ab-4562-b21f-0ff4ed3b9940") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "543ad16a-d383-4723-ab56-d9468924e28c") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1476fce2-1019-4100-9362-e37446fe82c7") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e5808eac-8b45-4035-8a79-6f13fe9df8e0") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "8ab8453b-e344-4262-837e-b3672d1ce1ff") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "4d707f42-a8fc-4c0f-b6c3-347442202357") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 100 "Net-(D32-A)") (pinfunction "A") (pintype "passive") (uuid "84c5e77e-8ccd-4a75-ac6c-1c280f8b7ca0") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") (uuid "37745207-6bdf-4c7b-9911-6f752cdd4766") (at 92.35 61.225 180) (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") (tags "connector JST XH vertical") (property "Reference" "J17" (at 2.9 2 0) (layer "F.SilkS") (uuid "13ef1b73-0327-4094-8fb4-595a7fcd20eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Sensor2" (at 1.25 4.6 0) (layer "F.Fab") (uuid "cee2986e-85a7-4608-95ed-83409c0a9401") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "35a4acac-2d33-4e06-b63e-f406bb11d06e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "955c9975-dd1a-4cbb-a8e8-f2da2493b679") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "9c272d2c-27d2-4d07-8429-04fdbb494bd4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09b006da-8a39-4ed2-8075-6b38355b3da9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/2ab9bb49-234a-4ed1-af89-c2604f58121c") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 5.06 3.51) (end 5.06 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "795e5872-1fb5-45fe-97d4-54ac2b4a2fa2") ) (fp_line (start 5.06 -2.46) (end -2.56 -2.46) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d29147f2-e53e-466b-82f1-3e7f9b37272b") ) (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a00a7302-c1a7-43c8-98e4-31f20029b27b") ) (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "11f04339-1321-4592-8566-b29ff47709a1") ) (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "20640bbf-685f-41c4-8433-d9969d3d808b") ) (fp_line (start 4.3 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "32917b92-50bf-48b4-b86e-a1de05719dce") ) (fp_line (start 4.3 -0.2) (end 4.3 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c991ac76-2e0d-4c34-9841-152014b02c80") ) (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9fe74d70-fa58-46af-ba04-8970fcefe148") ) (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3e707bba-37db-414e-950f-4030100d59c0") ) (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c22964d9-ba98-450d-9db7-ccf3f97941d1") ) (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d57db2a6-db03-40bb-af7f-05b2a6bafdb1") ) (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e3d6eca3-2d4c-4933-bd50-bcedcdab94bb") ) (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42b56cb0-d39c-40b1-a4ad-95bbb78f89f0") ) (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "706d559e-8a44-40d1-948c-78a001fc65b7") ) (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3815211-d90b-4914-aca2-3e4008919fcf") ) (fp_line (start -1.6 -2.75) (end -2.85 -2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fea2f9cb-ea45-4452-ac0d-63ae30726ea2") ) (fp_line (start -1.8 2.75) (end 1.25 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "16157023-5c34-488a-ae5b-33310884c854") ) (fp_line (start -1.8 -0.2) (end -1.8 2.75) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77a0007f-b86e-4512-9220-0404f3ebe14c") ) (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b67b64d4-bfcc-41d6-8686-6e5272d03f04") ) (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "34317162-91a4-4079-a0ec-0d6dc4665cbc") ) (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "552239bb-39df-417d-ab65-450214e05a69") ) (fp_line (start -2.56 3.51) (end 5.06 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cab84948-8f32-4aa6-8904-bcee13453397") ) (fp_line (start -2.56 -2.46) (end -2.56 3.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "89dba908-5600-4d04-a485-7f1467ba423d") ) (fp_line (start -2.85 -2.75) (end -2.85 -1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14b70520-4c24-4dbc-984a-d8f0943f6bce") ) (fp_line (start 5.45 3.9) (end 5.45 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "87defd61-8c55-477d-95c5-47b5dc8754a7") ) (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "457dadb3-d384-4594-98f7-b05bb17e7822") ) (fp_line (start -2.95 3.9) (end 5.45 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f7f005f1-89d8-4398-b9d4-5f7eb0ba4a8c") ) (fp_line (start -2.95 -2.85) (end -2.95 3.9) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b345a796-03a2-439d-b9e7-047c92582482") ) (fp_line (start 4.95 3.4) (end 4.95 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "83fc7b3e-85d4-44ba-81f9-5ee9721cff86") ) (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77d89cd6-b887-40e7-8d62-e4f1e4628f4c") ) (fp_line (start 0 -1.35) (end 0.625 -2.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19dcf852-8f96-428a-8a4a-233008c0adbd") ) (fp_line (start -0.625 -2.35) (end 0 -1.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ffa92b41-6fa6-4b89-8665-7a44b31f6748") ) (fp_line (start -2.45 3.4) (end 4.95 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81168373-1298-4d6d-8d52-c8d27e6a9a4f") ) (fp_line (start -2.45 -2.35) (end -2.45 3.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bfa46052-e7cc-4976-b167-fbc8b8884611") ) (fp_text user "${REFERENCE}" (at 1.25 2.7 0) (layer "F.Fab") (uuid "99b34840-70b2-4e7d-adef-cf63f2e541d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.147059) (net 106 "AGND") (pinfunction "Pin_1") (pintype "passive") (uuid "789632f6-07fd-435a-bda0-2b786ce74b49") ) (pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 108 "TEMP2_READ") (pinfunction "Pin_2") (pintype "passive") (uuid "70d44d75-88f4-44d5-8162-62eb8440101d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") (uuid "3bdb7f50-b7c6-4e3e-90d6-4ca872bacf77") (at 84.2 74.75 -90) (descr "module CMS SOT223 4 pins") (tags "CMS SOT") (property "Reference" "U5" (at 0 -4.5 -90) (layer "F.SilkS") (uuid "4365abc9-fb92-44d2-a23f-bf1caf8e89f5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SPX1117-ADJ" (at 0 4.5 -90) (layer "F.Fab") (uuid "23e21797-822a-47f2-b914-3e31c985f2c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "feab9ab1-9107-42e1-928c-522803258229") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1168cf31-0f93-4b50-9e1b-76dd6329d726") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ec48ef3d-16ab-4c14-8d43-9cfd693496bf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C67402" (at 9.45 158.95 0) (layer "F.Fab") (hide yes) (uuid "c9702d03-d0a4-4039-bf01-6d5bb07cd6b0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "35f24b54-b926-4a20-8a49-f8284b599bfe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?223*TabPin2*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.85 3.41) (end 1.91 3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a0e382e-e4a6-497f-b4fc-9cfff548a6a7") ) (fp_line (start 1.91 3.41) (end 1.91 2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f74507f3-bb4e-4da4-8d03-211f67131631") ) (fp_line (start -1.85 -3.41) (end 1.91 -3.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1968c96-f0d8-4c19-8652-b2824956d0b1") ) (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fc0f06a5-11f5-4fd6-800f-d48fc09858c8") ) (fp_poly (pts (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cd2d6914-e264-4ead-a475-4e1cc1b59054") ) (fp_line (start -4.4 3.6) (end 4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b50f8318-c20e-437f-8896-3808ef31b814") ) (fp_line (start 4.4 3.6) (end 4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "be31b8df-7cb0-492a-88ca-19352033f54d") ) (fp_line (start -4.4 -3.6) (end -4.4 3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2a63069d-1166-478d-b771-fd908e236d76") ) (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "badd45b6-337e-4499-bba7-26fc4b01ddd4") ) (fp_line (start -1.85 3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53f7b775-cf12-478f-9b9c-5d48081f8c92") ) (fp_line (start -1.85 -2.35) (end -1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "489f1a63-b607-4651-ae6d-60e65cba1fcf") ) (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dc094b15-e499-4718-99d2-cfc48afc19fe") ) (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8917e62a-61b3-4c91-baae-7fa8dfa23887") ) (fp_line (start 1.85 -3.35) (end 1.85 3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d1257ac6-2916-4eaa-92b7-13a37a96ca32") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "aefa7a46-78c6-446a-8c49-85041206d186") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pinfunction "ADJ") (pintype "input") (uuid "4d5eaeef-779d-4a16-aa87-72ba9c70f212") ) (pad "2" smd roundrect (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "42c84f74-0f77-405f-afcc-7a278147f120") ) (pad "2" smd roundrect (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 8 "/Power Rails/5V_REG_OUT") (pinfunction "VO") (pintype "power_out") (uuid "b38b887c-3ec2-4647-a04e-de459a25c74b") ) (pad "3" smd roundrect (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "VI") (pintype "power_in") (uuid "efa995ed-9031-48f7-9001-9b06cae471fa") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "3ccd26cd-1887-4735-a3e1-4a03c07678f3") (at 112.275 115.3 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D65" (at -1.375 -1.525 90) (layer "F.SilkS") (uuid "3ff61340-dac4-44db-889c-9951562e2fe2") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "3dddb59b-77ea-455b-a953-8f114b87a9a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b62537ff-0e01-4f06-a9d1-0c769c3225bf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "422e6105-50cb-4b7b-a2e7-f0d10dd277f5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "95f54613-d29b-4a35-a756-c100958004bd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2dbb430e-1076-4dc3-8620-5cb2ad450c7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/f93337c1-ba43-4bd7-abe4-9f429ba85e00") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64f60a83-f091-4785-9ec5-4ecea4abd317") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "15c135a5-bf56-4bb5-85fb-84cc735b3cfa") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b8faba14-6ece-42a5-b165-8e2a1b69ca05") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1e3661c2-eb96-4a14-b0a0-962ee5be639c") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9006e4a9-9198-4f70-9316-69e98cf70591") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "78c190a7-f2cc-43fd-bd0f-c5a8b0414ab3") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "891c1a4c-3b8a-4dff-9861-f6621255f9a3") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa01f2db-197c-4eda-ab5c-d11f200e5f04") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7456c6f8-f5da-4ca7-a1d2-757c7aa1dceb") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3703c5db-51fc-4edc-ac97-bf36762ddc43") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b51990d-3cd9-4495-8bab-476661ad151a") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ef9aca6-9e73-43a2-a0f5-90bbc0516367") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6614cf9e-252a-4bfe-8b10-d2351e534ffb") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd988159-a77c-4b88-b292-a5d65c1a8d17") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5cb5aa07-df32-4131-9346-518782299c55") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18228d54-4415-4a16-8b30-2d172c1a012c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c5dc1297-88ad-43a6-90e7-808c45a3186d") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "a3fac19e-a83e-46fc-900b-d27409fd827b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "eae4c2e8-59bc-4387-838e-d17d5e4b3e4f") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "b6517dcb-2421-469a-9b9a-af6804375caf") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "3d288419-f477-4a4a-880d-adb6487ed637") (at 152.85 113.075 -90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D68" (at 0.975 -1.575 90) (layer "F.SilkS") (uuid "049f9e9f-4bca-4bdf-953d-650536dcd107") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "bd487b58-f153-4fd5-9f4c-c03dd3cf3945") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b324b230-2029-4c10-a436-f7b31f14470f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ca08e33a-315b-455f-b8c2-72f77fc1676f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "20f139c7-3eb5-4a9e-b1dc-9befa188a0e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a9eea5ad-d549-4f27-9a4c-d08e151e510c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/abcfbcd1-063b-4143-944f-3f5983199a72") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "03e072ea-95c5-41c0-b31a-44f1ace12abc") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0ace964d-d791-4a2f-9f8e-f3cae8e4fd01") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcae9d45-48f4-43c8-8cb7-f7ef01a8864f") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bf199f7b-f312-476c-82d5-18ea5236bd0f") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df17d693-4c6d-4047-bd9d-d26f195370e1") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8a897f9e-5281-4a53-8457-7f8f0b63931d") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "99356788-9f48-45b2-9ae6-2bf9384180ba") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0527a7df-ea3b-4c08-b55c-2187e5098673") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ee9c6c3-ab37-4068-84b4-ed81a036b9d2") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e4a4f45-4a0a-4064-8dca-a63b4a496933") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ece43a4b-a008-4e01-a931-fd74eb158bbc") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1729ec63-a9e7-48d4-b7c1-c126e367d475") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "90274a1c-7c7a-4e62-b226-78cc0d44f1fb") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0c76cb9-06b7-4a68-907a-66a80f3e392e") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "72345aa8-26fe-475c-9bcc-95b9df3afd1a") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4860f35b-a3e2-4d97-ade6-808c7ba0452a") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "44413315-2d1f-4b18-9352-6dd7328df8a4") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "bbccca19-cb48-47e7-bdc7-edfba64bb487") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "52956039-cb1a-42e1-aec0-70bc72d1c81b") ) (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 86 "/Fan Channels/Fan5/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "e32fb042-0ed4-4d68-b2cc-b3d3196e3ddd") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "3e36c75d-6613-4cb2-8e17-72b7200a7a55") (at 42.164 76.962 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C4" (at 0 1.27 0) (layer "F.SilkS") (uuid "3b6d8d94-b125-45a2-9c38-058e0d1d2cd9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "598bfe9e-bdcf-42d0-9baa-0f9934ce8fb6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "636bd072-b2bb-4e81-a583-ca15454e7b4a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9615b85a-53af-4f57-b624-f15e0bcc12a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ff7e1b1d-b63a-4208-9ec5-3125864e7536") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "78c92558-169f-4eaa-b6d1-dc1c72f226b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "36b814d0-aed5-4e95-b883-7088a1bd92cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/8d64b89a-1924-4f6c-af5f-09a59972040a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ffc88cfe-aa03-4757-b2bc-879985be9658") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f5178419-bf5e-4f33-a3c0-e4edfd9ce7f8") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "893559e7-088c-4888-95a9-f847d6879ddf") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "20c8d987-e10c-41a8-9b46-a28017acbb14") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e92e4e30-30d3-4dac-a257-488659e62e5c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "803bbc27-02f3-4753-86f1-7d6f8a0b8822") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "51b04d09-c75b-4316-bfac-510dd6dad414") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c316a89-1fad-4876-a508-7c9c7a1848a2") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e51df362-6866-4174-8bf0-1bec5aab1021") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f75b8c1-9559-43e0-985b-81d551109d4c") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "c758dd18-3d30-49e8-bd2f-d9aa6d7496bf") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 121 "VSYS") (pintype "passive") (uuid "73c6ff4f-c085-4391-bdce-762ba7f3008e") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "4e67d42b-a23c-450a-bf3d-88de13c5fa8e") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "42e0f790-f7dc-423e-a293-1d7d662fe004") (at 149.925 77.7 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D71" (at -0.075 -1.5 0) (layer "F.SilkS") (uuid "5e33520d-970a-4c55-b3ff-489060b219da") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "426555b0-dc43-46c9-bd8a-19c7820ffcc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "edc3c0f7-22bc-46c5-afb1-4fd22fd86ed0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "424f76b0-969a-4d59-b4dc-850a98010697") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2af2b6e4-eb55-4cc2-8542-c2006503e9f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08f0f83a-0aa9-49f3-893e-2843d1416b5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/abcfbcd1-063b-4143-944f-3f5983199a72") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "998d13e2-04cd-4761-87ff-77677759c56c") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14b039d9-ecee-4bc3-a193-12836f92324d") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cae1ba88-869c-44a8-9c49-8546e16bfa92") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba31e3ce-e042-47f9-adf2-353facbb996f") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "67e65582-8bd6-4d0e-9f06-c960c39f8383") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17f3ab8e-300e-4479-b88a-521f11645fac") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e04965fb-6e6c-4db5-a2a4-5e145fdd7bc2") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63af6f1a-1a59-4960-91cf-613eb68d4943") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d92311ee-e167-4436-9dcf-f4675e3a6707") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e959d8b-35ca-466b-a76d-7d66357e453a") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "edf6e9f3-421b-4ec6-9874-4b5b97707c19") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4b4cc7b-84e5-4dab-94fd-40fc4f17a4e3") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3bfa9f9-7f24-4de1-9dc1-e7131802fe13") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a5ec5dd1-efbf-465b-b746-62143e3bafc3") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a1a6a4c-2432-4938-a46c-626f0a36a7fd") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e33174eb-ffb9-4337-b3e0-0dabac61c522") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db199d0d-4121-4d0c-8614-0b521fe754ff") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "ed639cbe-3a6d-488a-9544-d72d4621ec67") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "d05773a4-4f8a-4363-b5d5-b35accf73c0e") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 92 "/Fan Channels/Fan8/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "5d2174b0-5dc1-40fe-a800-9174792025f3") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "43e0c857-5251-4b0b-98b8-2fc2d87327c7") (at 152.9 74.4 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D55" (at 3.5 0 90) (layer "F.SilkS") (uuid "7e62746f-144d-4f1a-b62e-e45f889dbde3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "47fdae20-8c3a-45b4-b1cb-b48399a948df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f5c61455-a477-4f24-99bb-da0e33d50fc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02e71a82-876b-4c15-8b63-9181be2db86a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "20164cad-a1fd-4846-aac2-6208bba8eb48") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "63309bab-14d8-46a3-84f9-5fc864dc1a49") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/318dc987-8557-4ab5-9d15-e997984e64aa") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "933c2248-81e0-49d4-a086-a356ca4d5772") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a50b1d66-c6b2-48dd-9943-5f40be133042") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f21522a7-28d8-4ec8-b452-0cc3220f9bd5") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3cd62679-31ec-4f99-827c-5e2bb5e1a3be") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c8189b69-b908-4fa5-8508-11a782650215") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ebcc9fa8-b02d-42ba-b542-588686e907d4") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "98a1b61f-00e7-4de4-9666-2b4cdb8b7fb7") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d338278-bccf-4606-85c0-fabb05a14459") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9daf3021-019c-4755-a0b7-398b9aba377b") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9eb2c030-75b8-476c-8f1f-2a1e38096a83") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3ad5b06-fec8-4981-a10f-3ef669b42881") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36db87ed-f30b-4269-a61b-d86e94c62436") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea287456-76df-488d-993b-9d10b02d3e78") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a50850ee-7b24-4a17-9eb3-d5f5a7cdb6d5") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4625a48a-2d2b-4f42-8a06-596ee4b8f780") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "294a00d5-9fd9-4503-a02d-dde0037fd3df") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62d32323-328e-419c-bda8-b0e00eb94c18") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "b9c77a58-0b07-462c-8284-56286662364a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "284552a7-8109-41a2-9892-f82dd8e2b6ca") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 22 "/Fan Channels/Fan8/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "5ac38180-1538-440f-81a2-f83b1e327ce0") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "44842254-6f58-4232-a01d-89ba77812ddb") (at 54.8 61.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R6" (at 0 -1.4 0) (layer "F.SilkS") (uuid "05914356-1855-4b03-b8bc-e4e46b1c8baa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "4.99k" (at 0 1.43 0) (layer "F.Fab") (uuid "331dcdfb-3386-4f7e-9609-31f8d5c6befb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e11d0088-ca3f-43a1-8340-d128c842b413") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ac2b22cf-4a7a-4e3e-a905-1a7f4713b0fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "51fff58f-0b9c-4ca2-a9be-cbd208f01782") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114621" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "235bd02b-2aa0-49a1-9f87-b37275d6f331") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db705f52-44de-4a25-bd6d-af334f5417da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/adba1fff-18c7-4fb6-97ae-324d243206c4") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c0b484d5-cfaa-4a2e-8453-775fd6ec5af9") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3e0bb64d-349d-4cb9-93c2-1101538f84d5") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4398fdd5-dc5c-4896-8056-7370ceec994d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1078c45-bb61-4490-a0e2-a881ee41b7ee") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a9ab0d35-3340-4939-9611-0e1a6a8e6e7a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a468bb9-8575-4ffe-a0d3-2174372c0714") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ef4c07a-a7bf-453c-930e-641d74d13c03") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b63bf92-f8e3-496e-9f4c-dd1aa56e256e") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b699fe4d-e868-41f0-8aa3-ec4667d57600") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fd18c4d2-6988-4b47-90d4-9d04536139f0") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "4aeec99d-0c49-4f74-98bc-b4064b2b895b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "676cb368-77d3-4cf1-bb14-fe7492d737af") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 14 "Net-(D5-A)") (pintype "passive") (uuid "4d667d00-227c-4aa2-9298-ad3c93660bea") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:Symbol_Barrel_Polarity" (layer "F.Cu") (uuid "44e40bf7-2850-4b9c-b522-d3e479f615eb") (at 54.295 68.63 90) (descr "Barrel connector polarity indicator") (tags "barrel polarity") (property "Reference" "REF**" (at 0 -2 90) (layer "F.SilkS") (hide yes) (uuid "6ae01fc6-9d58-4d92-b246-d034cbb97e92") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Symbol_Barrel_Polarity" (at 0 2 90) (layer "F.Fab") (uuid "8a34f404-ffd7-4063-9ac4-f2159f852608") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:Symbol_Barrel_Polarity" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b2bae13a-b90e-449b-bf2b-644714244744") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fe24d0e5-489d-46d2-ba34-fb2b1845b4e2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "403cab0d-e29d-433d-9454-8c04d7cbe5ba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_line (start 0 0.075) (end 2 0.075) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "2a034570-6308-4884-9299-1d99380a3b32") ) (fp_line (start -2 0.075) (end -1.1 0.075) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "638dccaf-3f5c-48ea-9c1a-2a3d964a281f") ) (fp_arc (start 0.75 0.75) (mid -1.007627 0.128033) (end 0.675 -0.675) (stroke (width 0.15) (type solid) ) (layer "F.SilkS") (uuid "f3bdf1eb-2b54-406e-9142-39f17fc76e25") ) (fp_circle (center 3 0.075) (end 3 1) (stroke (width 0.15) (type solid) ) (fill none) (layer "F.SilkS") (uuid "a5ed8e25-74ea-40b7-90ec-20156db14255") ) (fp_circle (center 0 0.075) (end 0 0.25) (stroke (width 0.5) (type solid) ) (fill none) (layer "F.SilkS") (uuid "f9c1262f-c717-469e-b9f1-56fd5e3b6314") ) (fp_circle (center -3 0.075) (end -3 1) (stroke (width 0.15) (type solid) ) (fill none) (layer "F.SilkS") (uuid "642ba0a9-34a5-4952-bcf7-5c87ff2e2bf5") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "4530bb88-af14-4b13-8874-7697e5b63026") (at 78.29 117.41 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R57" (at 3.2 -0.09 0) (layer "F.SilkS") (uuid "1a0ac1f2-a60a-44c1-995d-6643842add6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 0) (layer "F.Fab") (uuid "856d2837-f5a7-41fc-8243-215a779a0383") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "14626450-5bf5-4d5c-bcf4-71b629020b49") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d6895f9c-0163-4332-acbe-fa9fb94e969d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "bba74c24-2501-45b7-b91a-b226b3046da1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 148.8 234.82 0) (layer "F.Fab") (hide yes) (uuid "f1109d4f-3d19-44eb-b362-229891a0c2e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46618257-9928-428d-89e9-ae88c29d2dce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/913d23ad-63f1-4d2b-89b0-43c72670248a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dcc2369e-777f-45f8-b417-41eeeb4b9d0e") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8752c74-ad7e-4b9c-88a1-b1ea10c93e13") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d3ee361a-e69c-4ab8-a8f0-22d42a45e3f7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "de78a61d-7834-4edb-b59e-810d142eb537") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "63829894-c906-41bf-97b4-f3ed83f0764a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8a525ff3-c3dd-4b30-b42d-857aa99aa4fd") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "129ef2e4-c148-43db-9f87-9efda3f5a165") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7df55dd6-0d99-404d-a3be-678fc7646bf1") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae480790-713d-4356-bc07-8c86463a1906") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ee2e66b9-1f57-47b5-9740-2f0ba01e8518") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "4d5f5df3-c7af-4a26-a29f-bf12c3cf3eba") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "f50811a1-5d62-4912-80bd-c386871a5a10") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pintype "passive") (uuid "d91ab444-285d-4e68-b82a-bba6cc683ceb") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "45a58a3c-0ae3-4319-9136-f718ae1af278") (at 149.25 121.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C16" (at -0.15 -1.3 0) (layer "F.SilkS") (uuid "bd7d59fb-f97b-4398-b16b-b47ed2a1dbf9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 0) (layer "F.Fab") (uuid "22eb79a7-e932-4bbe-ae4a-09717493c755") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d05af250-12e3-4951-8faa-8cf9bb5fd26b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a06d10c6-30aa-4e94-b641-8d7eab11fc45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d159a3d0-4327-4a3f-bfce-32cbda0bde9a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "73317fa8-9ca5-484d-adfa-bc410e588167") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "deb8713b-1580-4da3-9ccd-315ee9596c04") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/75bd3244-7746-40bf-b41a-5ea9cec31d77") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c25fe1b5-ee6e-45d7-afaf-06fe831c3511") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6b6c51ba-c576-45ea-b652-76eb5805f72d") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dea6fe2e-df6b-48d2-b283-36d4368fd0a4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66c4bf1f-bec4-47c9-91b6-3f5ef0bf4b66") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2c8aa7da-2abb-4b68-9273-5c0114859182") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "30b66705-1a26-411a-9d8a-da21329119ea") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4b92a78-71bc-4e22-8a7f-bcdaa256a3be") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3217963f-7cc2-4a50-89a0-f88697f48174") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "041e2dbc-52b1-489a-8f65-19b9b807b08e") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9ff3885-7e9d-4fde-948e-0ecf88318965") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "636d648f-9989-4f1c-b64e-8825d35804c1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "FAN4_TACHO_READ") (pintype "passive") (uuid "4758d2af-d07c-47db-b818-489a663e071a") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "86af8f3e-f57a-4ec5-95c5-13c9e5707300") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "46a6ff72-5153-4423-b545-cb43e24882f9") (at 72 58 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R58" (at 0 -1.5 0) (layer "F.SilkS") (uuid "7a8b0cf3-2f37-4450-ac4f-b0b9d2eb50d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "b800caa3-11c2-48a5-93b1-71d2c908e68e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ead0c3bb-6f26-4342-bb35-7c33d4276c21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "baeabe08-cd3e-4ffa-b804-d4292aa66409") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5999bfbe-5dd3-42c1-8196-1cb00d077ad1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "04bc8bf8-5b0c-406b-8db9-762ae3709eb1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8242f530-50a6-4ac0-ab53-f5d89239573e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/a9765eb4-7a11-4871-96a6-95d76921901d") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7847a69e-0ddb-4bff-8aef-3787d554cd60") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a98f59b-7ba8-4b34-829c-efafc70abe03") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "31995958-e4bc-4067-9cac-407928baa904") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fbecb245-0b5b-4e6a-81ae-46cb365d9eb5") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5ff8ff81-144c-474e-8cde-5a7cc7963da1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "59fcf908-91cf-44d1-9870-723f795059c8") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f5783be-db2f-4716-9bcc-d7403aee2b09") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ae6d22e-6217-4a38-8596-4c7932091770") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f779939f-9331-4189-a5b9-8f09bd4311c5") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4ee5fa5-d112-4d51-9bff-467e75ebbdcb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5b444c46-9b72-4208-9c3c-fdf236502849") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 11 "/Power Rails/5V_REG_SEL") (pintype "passive") (uuid "a1f929d4-0c62-45f4-856c-655aa514221a") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 130 "Net-(D35-A)") (pintype "passive") (uuid "4fa127ec-8f70-456b-a340-c72767072a26") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "497a3aba-0f0c-436e-9543-aa7c20ad968e") (at 118.275 121.1 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP3" (at -0.3 -2.325 90) (layer "F.SilkS") (uuid "904d43f8-eb05-49da-94b2-88f4430359a5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 90) (layer "F.Fab") (uuid "d29282ab-6522-4c2a-9915-4db37cf273a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "4a764eed-128c-485e-b6b1-7a73ecc7892e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "34a31e6b-d513-41ca-a0eb-84c674f2dd78") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "7573bebf-3542-4bdc-b3ec-9b476cfa39c7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4028eb03-2d5e-49e7-88a9-a73d3c4cb274") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0afb5c6-54db-4986-8460-a37daf921ef8") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "089ec62b-8eac-4f62-945a-398e2fb08dee") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "37a7b193-829d-43bb-821c-7abadcab06d2") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "57b63a51-da3b-43bb-8175-20dbb54802bd") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8ec6a85e-03c5-43af-a94f-171628d158f9") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "efaecabe-8e63-4078-bee2-19b75ad8aaea") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "21e54e39-a2db-47df-9817-2d7967591198") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "acb94d86-6804-4a69-81fc-c26b48015c6c") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b92ba6eb-23a9-449e-af9b-922d1846f06c") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23c762d8-8944-4d8a-b2ee-f0863fa1fdfe") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5cf60598-adc4-430f-aa50-8f1f3f299ce0") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f5479777-5ba1-4ed8-9da3-5c89a1ef1629") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81fe78bf-7bca-4242-9224-b9f03500ad14") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c045c325-a984-4c6e-91bb-ae5164672a3d") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "82c37a28-b5b2-4422-be63-1772b76e6d8d") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a60d49ab-120d-429c-89dc-93228dfc4542") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "d9716e81-d633-4390-ab51-08caf9ec6cda") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 26 "FAN2_PWR") (pinfunction "A") (pintype "passive") (uuid "2e662407-1e40-4065-83d1-eaec39540de5") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 37 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "e477773e-53f2-4428-bc8d-de2ce7d188e2") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "d3b71342-898d-4a37-a86f-4373c19baa58") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "498ad573-90fa-4112-a3ba-3dace9d4ef29") (at 71.44375 120.5 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C1" (at -2.6 0 0) (layer "F.SilkS") (uuid "c371c381-8bc7-485a-97dd-887aa884c0c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "f7e8e792-3353-4086-b5d8-12dc10f869fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "24544626-5605-4d27-8763-6b7785a843b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "c3d288e7-e3f6-4b1d-a315-3fc5a6c47c45") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "32dd2930-a56a-4148-bd2f-382b03cad195") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 133 241 0) (layer "F.Fab") (hide yes) (uuid "a368235e-96e2-43f4-b2d5-1d7e26e650d4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e8ebc9e5-23d7-4704-bac9-b6209e73a71c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/0113ec05-ff50-4170-824e-aedf99bcdf74") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "529b65ae-66d5-4ace-a030-2d31c0955f12") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "515daa5f-5301-49f4-9309-30d46ae6c1be") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6ca9628a-b493-45c6-a3d9-281ef904ecf9") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "87a0237c-c774-436e-be33-3da6c58c6535") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3eb24cd4-55b2-4722-bb17-472c3c2cb3a7") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8f85b4e6-b1d8-4512-aada-fe1efc7ef698") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b883232b-bb07-49ef-a1a9-b4d948f4c60b") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d151b2d7-305e-426d-8865-30db171c3aee") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b3665d6-62f1-4952-b2e4-f1bff5931d61") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9219b626-f240-4a59-b921-df1d5d085b2f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5350ad60-d401-42fc-a38d-7428828e8963") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "f7c3cbb2-b126-42f0-bcfe-d2528e45ef0f") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "db8b0888-5bbe-4890-beb7-7028354b915e") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "4c0cd657-4a0d-4409-9555-bb1ce90e34ed") (at 149.2 124.6 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D17" (at 0 -2.5 -90) (layer "F.SilkS") (uuid "b1cd7560-7ad3-4b3f-85e3-151151d204d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 -90) (layer "F.Fab") (uuid "39d34bd2-788b-4441-b6ab-441da9d41567") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "2f1a7e6a-c0d4-4014-99ef-d74f498d4fa3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9f0eb0d2-5dc0-4e58-b0ec-d0cede826d99") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "de572058-4575-4824-b4a9-f243d41970e3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 24.6 273.8 0) (layer "F.Fab") (hide yes) (uuid "afa4e252-a02e-41fe-acbc-8e55fd0dcd26") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 24.6 273.8 0) (layer "F.Fab") (hide yes) (uuid "fa876f61-6cb1-4a5b-a26c-65913499f58b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 24.6 273.8 0) (layer "F.Fab") (hide yes) (uuid "d88861b2-0a0b-425f-aff4-404afe53bf59") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0c0ba83f-a10d-4f44-9bf6-6a0f07e0277e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "54bfc90f-b85a-4e76-a5e3-df553a52d866") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "daac4d09-2aa1-4701-a48b-c983d3e73d4c") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1fdf04f6-df9f-4413-8a5c-c8f435a6c914") ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a968dbec-0cf7-4bd2-a377-07d41c0f3060") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8629f26e-cf55-45da-86a0-86ccc67325b8") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b6489856-6b9b-45a5-81ac-326c16ed5116") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2b373e4d-deed-40df-8dc8-f727c36d79e1") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1128313-ba87-4ce1-9d30-41c6ce2149dd") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f57dc2d0-810b-43b7-b76b-b4cee8401c24") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2142fea4-dce4-430c-91b9-2f173277b1a6") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "137100a4-0ca9-4832-b002-29669a0923d7") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b3c46d33-88bf-47a8-b892-9f6e23f1fbfb") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2ae64e8-f9d6-45fb-9639-213719e6d802") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7687ecc1-37a7-438d-8e1b-6a4a2f6d2b19") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "914eaa9d-484b-44d1-a2af-d20bd35e4f76") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eec0a8f8-564c-4edb-8446-fb596f3ec6c8") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ae7a453-2245-4823-97cc-52e65415e302") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db5260a3-ca19-4dd9-948f-c1d77ea04229") ) (fp_text user "${REFERENCE}" (at 0 -2.5 -90) (layer "F.Fab") (uuid "863f121f-1c75-4c45-9e0b-af33a4e0b860") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "978a5e41-b2f7-447a-aaaf-ef5fbf91a472") ) (pad "1" smd rect (at 1.1 0 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "d8d5f592-f4eb-46c7-9236-607f273160b3") ) (pad "2" smd rect (at -1.1 -0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 71 "FAN4_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "e049ebcf-66de-412b-8afa-da97b1ac627c") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "4c931852-4840-4ee6-9e78-91f1070f009a") (at 63.4 61.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R2" (at 0 -1.4 0) (layer "F.SilkS") (uuid "758e503c-7925-499f-ae49-124c43809557") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "5cf9bc18-8cbe-4574-b82e-c4b2f69e0144") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "79b50330-656f-4a6a-a109-36c1119d524c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "629c6e8a-240b-48de-82c3-ae71444e9e2e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2145082d-fb0c-4de4-a28d-fcfb68434c01") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 127.6875 134.8 0) (layer "F.Fab") (hide yes) (uuid "0e1bbf98-2799-40f4-99cc-88ca76d7168b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d7c0d77f-d691-422a-93e5-b38cb32cfa8b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5de24edb-0b9c-4f50-ac3f-1caa590a2491") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7f0f5e25-6693-4948-a739-c967bcbc5b7a") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1fcb1194-e87b-44f2-9b9d-6bcfc35f09fc") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d5d744a9-ebbe-447e-8af0-45a4a46fdb7d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "46c59188-b574-4c33-8097-7a3cd8cc665f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bfc8faa0-a4eb-4d11-92f4-2f7442cb79d2") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a728f93c-c8dc-41d9-8ddb-063e203d9d71") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "081a8a94-5326-41ce-a76d-7a82337dd2f6") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0aa8b3b6-1350-4019-becc-3bc329166a9d") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3db0b48-3b90-4e59-a792-a8f9cf192563") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48b13c3d-0b63-4d0e-b10e-aa6d911652eb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d258978d-ddd7-43f3-bb8f-58d9ba5650e3") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 39 "AUX12V") (pintype "passive") (uuid "553d97c2-e71a-4b6d-b928-23887e8f8efc") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 9 "Net-(D2-A)") (pintype "passive") (uuid "ef054ec7-735f-45a0-94f6-8963a13f0bc2") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "4cee4fb9-4782-4493-a8bd-28f24d54ac17") (at 149.2 119 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R27" (at 0 1.5 0) (layer "F.SilkS") (uuid "6890ab72-c1b1-490d-bd82-60a9644d682a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "ecdea2f5-4bb0-49ca-9006-1b2f459f0212") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "5f460c6a-58bd-413b-a1f2-6f822be8d439") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "76451482-4633-416f-ba56-4dbc8aa594e2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "70654fbd-b766-4dc4-b9b7-7373e4de5e3d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 298.4 238 0) (layer "F.Fab") (hide yes) (uuid "21e7ff2e-81fc-4ed7-a8d8-189dd203a620") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "15226ee2-1d99-499d-84ff-9fcc5dbad7b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4d7e9f91-bd58-4a6d-b05b-712827988f73") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9ca16da0-894f-4a05-a405-5c2098c02c71") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "555304c0-c746-47a4-8b1f-b78256dec5b7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27da2c8c-3f80-4fdd-881a-3015e769b098") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc2e6074-c323-4694-8250-612b05ae699d") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "974789c8-bfbc-4bd9-aecf-b06a709b4e3e") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a0ca573-077a-4fa9-bff1-8e1358bdd38f") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9204530e-f782-4738-9d8a-6f0e8865d06e") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4472fe3-c413-451a-ac32-10b327593b63") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f52a366-4d76-49ea-8288-7edc601cceac") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "cef65f38-fae0-4681-b065-955db60349e2") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "FAN4_TACHO_READ") (pintype "passive") (uuid "4907844f-02f0-4bc7-bee6-0b806e23c605") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "0ee38692-3462-4aac-a1b5-d3e1f42dc8e0") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:SW_PUSH_6mm_SMD_2" (layer "F.Cu") (uuid "4d2fcf14-ba48-45f8-bec9-66e367853057") (at 152.9625 128) (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf") (tags "tact sw push 6mm") (property "Reference" "SW1" (at 3.15 2.2 0) (layer "F.SilkS") (uuid "ad06f40c-1eb2-416b-a776-e0a6035b4843") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SW_Push" (at 3.75 6.7 0) (layer "F.Fab") (uuid "bf7adc75-2101-4ca0-9727-5abf644b4573") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:SW_PUSH_6mm_SMD_2" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3ca42d74-53f4-414d-9a2c-19b84bbd473b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "14ac356d-6db3-4e9c-858c-d1ca5faa5ec8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2667d1f6-7385-4392-abbe-d11ce4d2855b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "90d54bc4-e3e8-4d5c-a2c0-fbf343d4b3ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C221880" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d735ff73-6c79-427b-af24-66cb6cdeecfa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/21c2b408-da95-4394-b5b2-e408611b3d07") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start -0.25 1.5) (end -0.25 3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "39e9bcb7-2a7f-4a63-a593-affb82ee7421") ) (fp_line (start 1 5.5) (end 5.5 5.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e06bf7fb-f7d9-4cbf-be0b-51243a454469") ) (fp_line (start 5.5 -1) (end 1 -1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1cce769-7a0a-4f90-8867-11d2580694c7") ) (fp_line (start 6.75 3) (end 6.75 1.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "93048d7a-d03a-401e-92a7-207c2a0dda48") ) (fp_line (start -2.5 -1.25) (end -2.5 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76413fcd-0168-40f6-afd3-a1ddae20693c") ) (fp_line (start -2.5 5.75) (end -2.5 -1.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f467c96f-7946-47f2-b7a6-03a3bc695a1b") ) (fp_line (start -2.5 5.75) (end -2.5 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "48770a0a-8cdb-4b44-8859-af07b49eeb22") ) (fp_line (start -1.5 -1.5) (end -2.5 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a959316-2ed5-4b36-a7bf-2ae14bba8386") ) (fp_line (start -1.5 -1.5) (end -1.25 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe25aefa-222b-40d3-9b4a-d6df38e27e72") ) (fp_line (start -1.5 6) (end -2.5 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "02bd2b36-a51d-417e-89d7-3c7df65e2371") ) (fp_line (start -1.5 6) (end -1.25 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "19ddec10-b7b6-4dd9-883a-40a4c649381f") ) (fp_line (start -1.25 -1.5) (end 7.75 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1959390d-2bc3-46ae-adfe-f151d094ba47") ) (fp_line (start 7.75 -1.5) (end 8 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6254d2c8-82bc-4986-8441-03135ce8ba94") ) (fp_line (start 7.75 6) (end -1.25 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a9c31b03-18c5-4b2a-8d11-e9166e4de826") ) (fp_line (start 7.75 6) (end 8 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89aa0c76-c932-44a9-b80e-6cb3d5acaf1b") ) (fp_line (start 8 -1.5) (end 9 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "48bd75e9-e066-4011-a1a4-c49f1bf571e9") ) (fp_line (start 9 -1.5) (end 9 -1.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17206d0b-2a41-4d58-a56c-fb3905682e2a") ) (fp_line (start 9 -1.25) (end 9 5.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f06c8587-94a4-4c2b-bf2e-a7e980ad5d02") ) (fp_line (start 9 6) (end 8 6) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fb6e9b27-ffd8-4939-8242-cf3b22126235") ) (fp_line (start 9 6) (end 9 5.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b5d3de1b-ebe4-4bf8-9e3e-b393debd1344") ) (fp_line (start 0.25 -0.75) (end 3.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdc7124b-48ef-46f7-a66c-179607984d8f") ) (fp_line (start 0.25 5.25) (end 0.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f43e6d58-3686-48a9-bbe1-50bf0b60c55c") ) (fp_line (start 3.25 -0.75) (end 6.25 -0.75) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d38b7647-7ab2-4d4c-884e-be69fa17af5c") ) (fp_line (start 6.25 -0.75) (end 6.25 5.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "463ca34c-f275-4a54-9c3e-6edfda2d4d3d") ) (fp_line (start 6.25 5.25) (end 0.25 5.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "16ddf587-97a4-44f0-9224-922399dca2f3") ) (fp_circle (center 3.25 2.25) (end 1.25 2.5) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "599fc005-8e1b-452d-b938-c20f92fc6a8c") ) (fp_text user "${REFERENCE}" (at 3.25 2.25 0) (layer "F.Fab") (uuid "4bc88f30-d66e-4d93-aac3-8906c9c67089") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -0.75 0 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 42 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "1236073d-7a88-4a85-81af-ae7aee27028e") ) (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 42 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "c1a279f3-7b59-42d4-b2a5-3ad2dba69824") ) (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 42 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "b0837c41-1810-45f6-81a0-5bf292bf98b9") ) (pad "1" smd roundrect (at 7.25 0 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 42 "Net-(R1-Pad2)") (pinfunction "1") (pintype "passive") (uuid "cd63c3f2-a533-49bd-99ce-6115c0117d60") ) (pad "2" smd roundrect (at -0.75 4.5 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "0bda5ea2-efa3-437b-a127-00d2244bc92a") ) (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "2ff10e3e-ec73-4e56-9669-3b1a2983fe14") ) (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "fc41ad1a-4224-46bd-aa68-5ddf6f595e20") ) (pad "2" smd roundrect (at 7.25 4.5 90) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "2") (pintype "passive") (uuid "8ab9e34d-4488-4288-8cd4-8bed92040a85") ) (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "4eb5fad5-8048-4c21-bf6a-ede62b9ef129") (at 162.3 102.5) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C24" (at -2.15 -0.15 -90) (layer "F.SilkS") (uuid "a3028c23-4336-42ca-a73d-01c7b9d2f17f") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "aa1fd40f-4445-408f-bb2a-3d7dcaddf6dc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0c817ba7-cbfd-4b99-816d-2a273ff7364e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "96fe5763-02cc-4a87-9fb0-6bb3749775da") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a47ca9c6-349f-42ea-b87a-ece05ebf5306") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e7c2ab60-9cb4-4d90-83c3-d08448a232d8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7f9f4f8c-86d1-48d4-9177-aa5169adf781") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87840d41-b073-4967-b78f-924685cc4785") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "88860c48-f017-418e-bd10-617b5ed6c77c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0aa290b0-6499-4cc1-965f-dd5968cfc23d") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "78ad1793-f3d8-48d9-bf64-e917a2cdd62f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ba4625f-e57b-4001-9a6f-12da410994fa") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d7340c9f-37bd-462b-baa6-eb71f028de28") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "883edbb4-aaa5-41f8-9dc9-067002d5a740") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "021e2912-44ec-4961-a504-e59fd8bc7dbf") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b4f1239-f237-4584-b2eb-78d4e2bbae46") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9a4f4e87-95aa-453b-a0f7-5084651419e1") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "9b338083-35dd-4d03-92c0-2f405c60c451") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 87 "/Fan Channels/Fan6/PWR_OUT") (pintype "passive") (uuid "950f8a2d-a50b-4ba8-978f-0e7e0d1ad344") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "68c3b944-fd3f-4b6e-bfa0-0db8eba5e5d8") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "511544ba-bbf8-4f33-a977-0fcd63e86ccc") (at 130.6 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R34" (at 0 1.45 0) (layer "F.SilkS") (uuid "0c16653e-430d-44b8-bd43-143264da028f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "d2a6218a-0c26-459f-9aef-31b34db2f83c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ded5bec8-ea32-4e2e-8c09-a3d87b63a483") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e6982411-be4f-4ff6-9cfb-37ba2aa220ad") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ece4df0b-84c8-417f-a6d0-4ae9a378febd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 261.2 214.4 0) (layer "F.Fab") (hide yes) (uuid "b0e95054-4d30-4507-b1a9-30f788e8b0c0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b0cc2c57-b7f2-4d28-bd2d-01809b2b3629") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0acb11a4-d819-42a3-8dbb-736806a92eb3") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8af6f3fa-5269-49ff-a308-11269c936336") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e26b683e-af88-4d1b-89a2-d8787cd11de7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f2899866-f763-4526-89c5-4ff49c3154a4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3c863fec-283e-4838-870f-8dabe41bc8fd") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7e59cff7-115b-4d0f-a363-12e673542378") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "255beace-0626-497c-9b56-99ffdd95de43") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a522786-71ae-4739-ba82-ec30bf28c0af") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f8a43901-b95b-446c-8a66-dc53dd0dfa52") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70f47f95-018c-4061-bda5-fc4657b0e8bc") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f00adbf1-6989-47ec-9922-d2d2265bbf1b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "FAN3_TACHO_READ") (pintype "passive") (uuid "d06cf278-4b13-455a-94e1-4dbca772a83b") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "14b9548c-27db-452c-bc4d-c15e06339ad5") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "519f6e60-eb9c-479d-80df-fda781585c2a") (at 143.925 69.425 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R22" (at -1.475 -1.925 90) (layer "F.SilkS") (uuid "13029f6b-95ab-4485-af50-33342635764d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "d97331a6-5b44-4da2-9714-d3bcd96dae27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b1ed5cde-9170-4788-8efd-5ce69e5ca83c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7ddbd1a5-61fa-44d3-a330-00babcf01757") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e225dfd9-a737-472a-ba74-5c84f80cbc61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 209.8 -78.6 90) (layer "F.Fab") (hide yes) (uuid "e339349e-5fda-459e-ad5c-1fe595a18c78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3ce9728b-8409-49f1-9032-b1f7715858b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3282f375-5ef7-4820-b0c3-d02743e76ad3") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e2f62834-fdda-48c1-8820-626ed36de494") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3ce4e048-ef60-4f0c-9acd-95188a111f70") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7483acaf-1d87-44d1-804d-b3bc1fa90b95") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d33b6f28-8cd6-4f46-b518-c037d59f068b") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "22771f77-d9df-44b5-bdb5-f695b48e1141") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3987fea3-ae92-487a-b20f-a5e2b0190270") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9960f029-e0e4-4e0c-a200-9e7ac476d35f") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7bd02015-1125-463e-9c7b-3c1d0ff858ce") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad5e4b4d-afd8-4f83-bc84-8192170bf87e") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "920efa6c-54d4-42b6-9a36-a367f4e5441a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "MBFAN4_PWM_READ") (pintype "passive") (uuid "80b62ead-cdfd-4f1c-8948-4632f0f2f667") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 34 "/Fan Channels/Fan4/PWM_IN") (pintype "passive") (uuid "59627d35-d44e-49a9-b942-c82bb4e1a606") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "51d8eba0-9b85-4f13-9f66-5cd86fcfebee") (at 129.8 124.8 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D22" (at -3.4 2.2 0) (layer "F.SilkS") (uuid "e94f7475-ecdc-4dae-bfb6-2179b99042e0") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "aead75eb-47e3-4a77-8618-4e653425384a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "74c6907c-7f2c-4a30-aecd-cc0321557249") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "acf2e0af-6c36-4d23-9ae5-701e35f9dccd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0811f51b-28ac-48ce-ab8e-af81bf23d35c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 259.6 249.5 0) (layer "F.Fab") (hide yes) (uuid "d3500063-532e-4760-9f47-c03fd302086c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 259.6 249.5 0) (layer "F.Fab") (hide yes) (uuid "4855e22f-3370-4db9-8e0e-20bd170572a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 259.6 249.5 0) (layer "F.Fab") (hide yes) (uuid "68440667-12ca-4d02-9198-b8f8e3157557") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c9a508de-06fe-408c-97b1-20d88b91f68e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b4c5b85e-fa7b-498c-927c-524fabda0bc7") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c0bd0ac7-6e49-40bd-9524-38cc29139003") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "11430a3f-37cb-47d3-840d-06cf0a77162f") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "05cee032-1907-40a9-8d84-f5f37d040e15") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aea62728-88a3-4348-9d1f-cd182b5d716b") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "da33f95e-9e03-4583-b46a-76a2fb9afa12") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "781f1ac1-12c5-4b3f-b3f8-5353f3132120") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c981c85-d447-4cfc-a19e-2c1d638ba538") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4df7d965-52a6-40cb-9d71-63cea6814b55") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41608f63-eefd-440d-88b7-6956a27f43e6") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3bd27a85-69cf-427a-9476-82bb15139720") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f15edf4-f6d6-44d4-8086-c65c9d0be242") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ec5263d-5bbe-4084-9e47-c05c01108cf0") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b1fbde4-a0c1-4e74-9f93-64f0fbc22210") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37967b82-8232-4726-8972-59e6e53fcf49") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b1ad995c-45e5-4ac0-abda-da2f4826360b") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d45cf31f-7a10-4f64-ab48-13341c3f1c73") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "40244d0b-773c-4678-a248-921fae195403") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 79 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "16b21082-1403-47b7-b0a4-dbb4d2065bb0") ) (pad "2" smd roundrect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "db687ef4-4c77-419d-8a26-431da901340d") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "522a4697-55f8-42eb-93f2-c7757952a02d") (at 106.5 124.8 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D10" (at -3.7 2.2 0) (layer "F.SilkS") (uuid "80ae3d1c-3b83-4fb3-aa3c-954c8793a3e6") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "e1ce0843-1bcb-4bc2-a25c-88af74700faa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d2987d4f-612a-4544-8fb8-487df4ca211d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "08a25064-6417-46ce-b037-513b79f3f6a3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "4458dd3d-3b01-4ec3-95f7-fc7de393d930") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 213 249.5 0) (layer "F.Fab") (hide yes) (uuid "75ced32b-87c6-456e-b87c-5503be652a72") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 213 249.5 0) (layer "F.Fab") (hide yes) (uuid "ee821735-d755-4812-9ee0-4537317ddc6a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 213 249.5 0) (layer "F.Fab") (hide yes) (uuid "a99fbc03-916e-4c4a-990c-cc82ce39b0b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9754471e-457c-43fb-88cb-afbb79aac0b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "557994f6-23f7-4ae3-b046-c7887d4b17e1") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7078e4fc-a52e-4ca8-9199-8300dd869b31") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8bf9a68e-d61e-4a0e-9e41-93b59e9b297a") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "50ef033a-bee3-4fc1-bb62-1c0c8dbf6712") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bffb2432-2730-4f9c-b89c-b451ea90cf33") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5ced928a-2dfa-4b75-838f-5108e9fa67ae") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "141a58c1-d40b-4255-8cd5-ab86e77aa674") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0862cb8e-7dab-4a35-b6a7-af057756d94e") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2f03260c-8a60-4579-96d7-77bd42fea3d0") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4631fa85-0b2f-48ad-b975-34d76827d5e0") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8372e4d2-0e3e-4a27-bcf6-c7a332f8a127") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9cb35621-8a7b-4dec-9e9a-8cfada93adbe") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb074adc-fa8b-4122-a7cf-327837609018") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9a6945d9-12a6-42e2-9288-385daa657915") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "efc7bc4b-c919-44f9-879a-b68eaf26e413") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47aecbd6-ea13-47fe-a39b-fe186111ca18") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7bf07a1e-ddb5-4d1c-9e6a-b068e2c75165") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "05210a08-6df0-4b53-9335-10cb08235a6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 35 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "71fb8a3c-2c9e-4f51-974d-316e5bb2d8c5") ) (pad "2" smd roundrect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "0ae96e78-e995-4659-81c8-4c2b4e8932a6") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "522ec98c-f663-42b7-a5dd-6f3331445a72") (at 167.4 79 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J15" (at 7.3 2.5 90) (layer "F.SilkS") (uuid "fa403023-7a31-4995-834c-094204ab8623") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan8 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "54fb0ffc-fe80-4d24-aec2-d02d21238553") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a8041ce1-b20c-4889-8dc0-ea35a7a2756e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e0917fac-57a9-4a51-acdd-5f1507356cab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d6cf1c7d-8c20-4c06-a2a7-87f7c0e06aeb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "88d45e37-0ae1-4f89-b0f3-75ee7f8fe1d3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/703bdce5-9294-4717-b483-0d8ff4314a65") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f3f98b24-4a2d-4dfb-83b4-231b02ab5d24") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "caedfe72-0071-4045-9fe6-fab65aacae21") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b809493f-7e0f-4d9c-954f-a51360385254") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "71fba4bd-da50-4eb1-adf5-4095e90e94f3") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3749d9ba-2d00-4dd4-9fd9-1fe9975c3f03") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42fb99e8-01ef-4c23-a919-c8262cb4d3d7") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9595b3fa-213f-4051-ad20-c8d7178e0521") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b1e2c775-639c-429f-9aa7-59d1028cf376") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ae9bdab-7a93-4ba4-a4fa-a3e197ca94cd") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91fae05c-e12b-4be6-8fd2-5b8858aba49a") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dadabbdf-895f-4d6f-b84d-518134c74084") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cbf6ee3c-2276-4c8c-bd36-08ea9cc108b0") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58db99bd-d871-496e-97cf-13c2fa7bf46d") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "446ab094-2b5b-46b0-b37f-04eb2b19055b") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "936d48ab-b5d5-4e4d-a8d1-505f2c0e2a67") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c03965f-4abf-4720-8d66-194ed5b3675b") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d669b28f-c2ea-40cf-bea1-7250cd29427b") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "08d0fb57-1e0d-4d95-8476-4af15f4bdf71") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f914ec66-cbf5-451a-aa46-dd007c4d3306") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ef6ada7-c2cd-4c71-a8c4-b336e62c125c") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdf5445e-1b27-4636-a49b-c4e6bb96f374") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "53961c7d-90b1-46ef-95f5-785775ee14b7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "54995a6f-7725-4431-a0a3-f233ba733acd") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "93c7a039-e925-46fd-896b-c891c4aa5d63") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 91 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "8f3c3093-2e53-4658-a7ed-43afea15daca") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 22 "/Fan Channels/Fan8/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "93a39a3e-1270-45d8-8ecc-9750c2fb4939") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 92 "/Fan Channels/Fan8/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "a865eb4a-40cf-4c0e-947c-cd05b71b0347") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "52993c55-48a5-4744-9dbb-f7eb4807ee61") (at 130.6 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C19" (at -3.1 0 180) (layer "F.SilkS") (uuid "16f76361-dab0-4d81-b27d-f373e70ac955") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 0) (layer "F.Fab") (uuid "ff756e59-fdcd-42ee-ab08-a6f4686624d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "2b9c5701-2e52-45ad-906a-93bd460203f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "2af4ff00-ea67-410d-85f2-89a57fd1954b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "6bf178f5-caf5-41d8-b7fb-83e0053380d3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 261.2 218 0) (layer "F.Fab") (hide yes) (uuid "621bed30-2a68-4555-8377-d376c5a1e667") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "db383b7d-ea1a-466c-ad30-35a7a44ae2bd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/75bd3244-7746-40bf-b41a-5ea9cec31d77") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1a31facb-647d-47a0-98d5-eeb7d399d444") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "44dc4bdc-64ee-4a77-b123-e9ee1247efc1") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8cebc77c-f6a2-43f5-bc8c-55a91f2bf9b3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f0591ca9-3db1-4fe4-ba94-8d4868aaf19a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5d2bc0e0-08e6-4a2b-832a-87dafc8f4c32") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d158e8bb-8a0a-4c5b-8ff0-a9a33c5dce89") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57cac0a7-9146-41b2-b036-939d25633475") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f5f4dee9-56cb-40d1-86d5-1d129b7ced5c") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "338a66dc-8608-45c2-879f-0c61e1aa38f2") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48512b03-e408-46a1-84f5-adeadb925e70") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "1d72d9e2-8d18-4fc0-a2ab-115ab473dd2e") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "FAN3_TACHO_READ") (pintype "passive") (uuid "17941829-11fa-4025-950d-3cd6facb573d") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "93a8453f-a017-417e-bae2-ad3137ba8c6f") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "52be7244-11c7-4e42-90d8-1f5f084f6218") (at 50.1 58.2 180) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D6" (at -0.025 -1.7 0) (layer "F.SilkS") (uuid "81488997-7592-41ea-aefc-0e55171ab83c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "5016ed52-7d47-46b5-be3c-16b535cf3188") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8a2ae909-e877-4ab7-aa0d-d985bbd63dbc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f7e52917-d2d4-46b9-ac84-f80cbf25a4c4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "879b3ead-ec36-4a8a-8c3e-ccda9eb080f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at -41.2375 123.0375 90) (layer "F.Fab") (hide yes) (uuid "64ae73bb-89a3-4e9c-9e35-8e1cd9f8353b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2e83a03f-ed08-40d5-a45d-0bf1108e1436") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1d718231-9bed-44d6-ac41-9068a6bb170e") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fa9ace74-462d-402b-86ef-92c51c97e533") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a5d1016f-649c-441e-8038-794bb3ae9f4b") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8fcc4c23-0580-4c9b-b37f-41b3b8fbd315") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3d9481a2-1813-4120-969a-07ed01a79eed") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3aec54a8-3de4-40a8-a0ff-356658768ba7") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7fd315d4-9cf8-4ea2-b322-2c9e6fedef5c") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b18b403-45b1-4cb7-8f9f-966098a7a141") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "04f66454-0e31-4304-aba2-232e43ba7b0c") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b064018-1245-4b0b-9115-5bc89b07d9a2") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed961c6d-9743-42cc-b075-934f4f06bbff") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b2c5848e-283d-46e2-a5c1-9ac9738c1fd7") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "215feb0d-4b3b-486d-bd85-93bb5124da5f") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "01410ced-9f26-495a-bf49-6b0a59829851") ) (pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 16 "Net-(D6-A)") (pinfunction "A") (pintype "passive") (uuid "96ca32e2-b5c0-44b6-8449-bb5e0713b7d9") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "53e8046a-1d59-4374-919a-be5f7cc4a4f4") (at 69.5375 80.6 180) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C7" (at 0 -1.75 180) (layer "F.SilkS") (uuid "b7928c3b-ae8f-47fd-9a2f-022a553f7905") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 180) (layer "F.Fab") (uuid "40d43266-95c6-4cbf-8f09-da1f76de3fc1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b6868628-f63c-4b91-a770-24b141f30dd6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "67931494-7fca-45a1-b259-afe4b73409e9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d2a6dcc9-e410-4faf-bf6d-3cc41f3f1ebd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 139.075 161.2 0) (layer "F.Fab") (hide yes) (uuid "d49a053d-5ef4-41d2-9402-f06a9d3b3136") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fbcdd022-87fc-4355-9a3b-56871b5f303e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "971a9efe-a557-449a-9ee6-b076bd5168c9") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8d57038-46c4-476c-916a-9787e494bc87") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "edbeee4a-cb0d-478b-9af7-b7ca8ecb26f1") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5078a08f-db60-447e-a1fc-fa23b470b3f7") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9666c751-2dae-49fa-9069-5b1d23fd4b90") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cd5d8c09-44a9-479d-8d5a-6aec0126a22e") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f865f0db-5c19-43c3-a219-408bae0510d0") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "682f33a5-6ab8-4102-965d-59e488e9b1ad") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5390632d-f26e-478e-9252-fcd4c0bc7826") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a652d671-d015-4eb9-b363-b00faa6a0147") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "01523b36-e420-4515-a65c-ed0011f21526") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fcf09fcf-0b22-4ea5-80c5-e1e37139df7d") ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (uuid "ee2ae72a-482a-4303-a856-68d72eead9cf") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "c856a6c2-7a53-46bf-8c9b-523c9893facc") ) (pad "2" smd roundrect (at 1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "63541868-99d2-4cae-95e1-c95071bf0495") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "5467a1d8-1da8-4db6-8370-a392f817657d") (at 141.025 121.1 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP4" (at -0.4 -2.375 90) (layer "F.SilkS") (uuid "fd840b22-5fe6-4612-be30-5a2744a213c3") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 90) (layer "F.Fab") (uuid "c5b6c8fa-ab58-479c-8a7f-1faa5922b5a0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "f37f0352-015e-43c3-a776-a74329a6cdb3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "440f84d0-6a2f-4dd3-99ef-b9d2fbf8f302") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "8c680835-aa51-4ef3-bf7b-17af1b94391c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "83e4b35d-9ab6-434c-a26e-b8b612d56765") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0afb5c6-54db-4986-8460-a37daf921ef8") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5bed9d26-5012-48c8-b4ac-5c4faf9aad2f") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "10a48fa9-eddf-4249-ab63-ea05906d6789") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "60e1faff-bf9e-4858-a606-3ab91c341093") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2780945-76a0-4897-b344-64151925cb1d") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac3cd9cf-be2b-495b-ac5d-fc27ab62d378") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3ac0f38-6796-4fa1-beb3-a0b4c603a214") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "51e39c21-c8c0-42fc-a06c-549293fee4f2") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f14f7fee-f771-4168-b406-f49044071f19") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9d126730-d365-44f7-bc31-3296b1de3f7c") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1c698ff7-63ac-4309-ae71-4a41247c48bc") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "81f6208f-d0af-4abf-8f0d-634dec345972") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe800211-83bc-43e1-b5e5-100e44f553e0") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa5291a9-6e11-48bd-88ef-1213128412b1") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e4152967-a77a-4c14-af7a-4d134aedfd49") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9fb047c1-8dff-4380-aa21-1a737a2dcb8e") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "45a62128-6635-4fdc-a9d8-ea3cb61a32c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 32 "FAN4_PWR") (pinfunction "A") (pintype "passive") (uuid "9b8ec902-581d-4864-b734-af9be774f43d") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 83 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "10c112cf-19bd-4f82-b8f1-663532d7b775") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "16ab7213-cf92-48be-ac41-9a6771fd3a85") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "55366e14-cec9-493d-901d-448b04d2f286") (at 167.4 90.3 90) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J14" (at 7.3 2.5 90) (layer "F.SilkS") (uuid "6e8f5170-9f91-460d-8f1c-0178d30bfcc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan7 Output" (at 4.05 4.35 90) (layer "F.Fab") (uuid "0f16ac20-4592-45c1-ac07-84a543c9afa2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5dc0ab0c-4e4a-469e-9666-653b5f521a67") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1f000b2e-7e1c-43f7-9228-3359d4a9865b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "0eb72efe-e49c-4662-95f8-61b5397ec8e1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8b7c9028-3030-469e-af69-d965d82ac30b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6aeb68a3-59d2-4548-898a-47ed3e1185c2") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69260138-8323-41e4-81b5-f382ddf86a44") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2c81eef6-c0c3-4c5f-862d-e5c9dab75f10") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ef2ec15a-9a64-407c-82b3-b6b5607228b9") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d878edda-a8c0-4ff5-b2de-680d686d630a") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0e4e1944-b3d2-4b76-a8d4-8488812f4d05") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8d5e4e5e-14a0-4ef0-a99a-de1ad6aa099c") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "998ff255-ec73-4d88-893b-274455bb53c1") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e4a83a3-28d9-4047-b4a9-e7e7a21f3a8f") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "50d930aa-cbbc-4b5b-8288-8d724fc5146e") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "40abcffb-5880-492a-a864-ee654cbeed83") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "35649943-7275-439c-b30d-a43b8ec9f0c4") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "559b36c3-243d-48f4-8aee-842b2b27f32f") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e10cc065-c19d-44c4-8215-ed8b6ddeda79") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "687875a5-ddd7-4f3c-8b5f-537d406ca019") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2bb19254-1cf2-4066-8e41-77f3cc20020c") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "78d1907c-8917-4029-babf-7aa6aaf6508d") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f8f58cb8-6d8e-43b1-b9b3-9a4ba9291199") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7f33a8d-1f84-4066-8769-e9d4e389aa45") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cfb99563-6228-48db-94ca-f2bd8201710b") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4543a177-0153-44cd-9c05-0d056a179d5c") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 90) (layer "F.Fab") (uuid "706b383c-6ef3-411a-adcc-429daff89e9b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 180) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "a0bd71eb-8928-4905-95ca-8c0faf21d9e0") ) (pad "1" thru_hole rect (at 0 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "6d204819-db6c-4ae9-ac3d-ea4cdc15a07d") ) (pad "2" thru_hole oval (at 2.54 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 89 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "4cf452b7-85af-42e2-95a2-3c01fbecda98") ) (pad "3" thru_hole oval (at 5.08 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 20 "/Fan Channels/Fan7/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "ee5e1efe-4422-4be8-bb03-c0a8f009634e") ) (pad "4" thru_hole oval (at 7.62 0 180) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 90 "/Fan Channels/Fan7/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "153dbe28-aae1-4c89-8822-f21470207bc1") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "55ee3126-63d3-41df-9fd0-eabf0dc0523b") (at 77.3625 63.15 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R50" (at 0.05 1.5 90) (layer "F.SilkS") (uuid "c5b24408-07a8-4a51-b60a-5f9e269f8c18") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "f2e55042-4359-4366-b513-d0e0fc7b7bc9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "0ffb9dd7-55b4-4fe6-ae35-7e050985948e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "47a093ab-2e92-4020-bbe0-9d87a0f85453") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "f1df8363-19ea-4aaf-9177-176195589d4d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 14.2125 140.5125 0) (layer "F.Fab") (hide yes) (uuid "a99e4d79-5698-4c9b-a039-4c8667ee055a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e6a38a9-593f-4521-9ba7-03600f9c69cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6f5e15d3-8889-4380-8ba4-82af742cd899") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eab5bb90-87ff-4a44-97a1-c31d717aab8e") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "80dadd84-0347-4645-b89f-1777a232a3c9") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "67c7c71e-f2f7-4386-ad24-c4b12181e029") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "25a3486d-499f-44e2-8b79-0a3215e68a67") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "15b80a95-6a28-4823-a5e1-f5f8e79f814b") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c49a0a10-135e-4924-ae6a-62399706b9e0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db64a2b5-6e56-4023-9d92-ab943eebffc1") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "11503d47-981c-427e-8cb9-9616e2f9cdf4") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d5c3c64b-be49-4a9e-be22-564628149819") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "acf4e82d-cfe6-4063-8779-cc9b76f4f99f") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "2c8b90bf-e2cd-4d9e-bf5d-5078292a91cb") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 107 "TEMP1_READ") (pintype "passive") (uuid "d303db69-a528-4345-8951-bbbdf561ce1a") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 102 "Net-(JP10-A)") (pintype "passive") (uuid "0e4d0afa-5040-4082-8e60-9a6ff6925ea8") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "57a1dffe-23ec-4be5-9261-f41914073183") (at 139.55 71) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R25" (at 0 1.45 0) (layer "F.SilkS") (uuid "e75e70b6-0390-48de-b672-069e8230079a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "7ab5595c-f962-4ffd-9142-3bde9c3aa523") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0cbc850a-bc55-4961-bda7-82a7b7d143bd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "20c22a55-1d4c-46ce-8362-c933df2805f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b29fc065-6701-449f-aac7-231ad74b922c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c987cf20-b8c2-4fe3-b45f-acf4e44e5929") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "81c54e89-3ad1-430b-b28d-b02ce5ef5aca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3c7b5111-943d-47b5-bcee-af1cd69f93b7") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "214cea2a-b44c-43aa-856a-80981f1c9bd5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "72ed9ffd-40e8-42db-a614-a66bba8dbf6b") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89c686b5-581f-45e5-ac43-4c87ae219146") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "02b38399-0e78-46f8-889f-750021cffbfc") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e9b332db-43a0-418d-90fc-146a8bf526ca") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e05b299-86f7-4c01-bf12-3b8dce2c8c28") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ddec6b63-2ec5-4231-bae6-fadb26ea95e8") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b8afbee-8542-4e5c-8752-7e818ba516fc") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8c2c505-9523-4ac4-bee4-3482db40c7dd") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "dd5373b0-ea27-4f0f-9bdd-f7f653d9a8fa") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 111 "Net-(Q3-G)") (pintype "passive") (uuid "3562dabc-7c5a-4a7b-b6c6-f2ff6beb0a00") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 73 "MBFAN4_TACHO_GEN") (pintype "passive") (uuid "b742c085-2c60-4023-ac8e-89432cad89d1") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (layer "F.Cu") (uuid "5a02371a-c162-4e40-a91b-6d6ba94eb216") (at 44.75 84.836 90) (descr "Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity") (tags "THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm") (property "Reference" "J20" (at 7.366 0.462 180) (layer "F.SilkS") (uuid "922a3fad-535e-4e42-84e1-c9022173c42d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire" (at 2.54 4.37 90) (layer "F.Fab") (uuid "922b5311-c1f6-47e0-8ac6-4678d1ac4673") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "959121ab-6cc9-4935-8178-62714b68fe87") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9c42bbb6-db65-47b5-a3cc-946fe4332e29") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ca0a25a2-5826-4316-93f6-fabd353149d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "13ea8ab4-9caa-4eeb-9714-41030b0d75b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C68305 or C5188443" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d3ba0bdb-9596-48c0-9e20-42c7e2a49e0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6c877e3a-824e-4899-8d98-f41a2e6f348f") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 6.7 -3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d32f9d89-f263-457c-9fff-a4f26ae84a81") ) (fp_line (start -1.62 -3.37) (end 6.7 -3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "32ee0c49-20ca-481c-b9ba-dcbb4f210d76") ) (fp_line (start -1.62 -3.37) (end -1.62 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5901aefe-5bff-4b84-92e7-39942a720dc1") ) (fp_line (start -1.62 -2.25) (end 6.7 -2.25) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b1f6f0c-e8a2-46d0-812e-62f7817ac43d") ) (fp_line (start -1.62 2.85) (end 6.7 2.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ba3394a-a232-4745-a5bd-936438b1f6eb") ) (fp_line (start -1.86 2.97) (end -1.86 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76a0c45d-8657-48ea-9c61-9f6d33aa42de") ) (fp_line (start -1.62 3.37) (end 6.7 3.37) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecff70e5-f22f-4db7-ac16-56b3c0fab610") ) (fp_line (start -1.86 3.61) (end -1.46 3.61) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ff8674d2-fc5d-4b3c-b556-155cbc68350f") ) (fp_line (start 7.08 -3.75) (end -2 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27254c44-d21f-437b-b56c-c9964e16e50e") ) (fp_line (start -2 -3.75) (end -2 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a9a0b2c-ea91-4334-a003-09d81f2bb31c") ) (fp_line (start 7.08 3.75) (end 7.08 -3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a3cedcef-fd52-4659-994d-aa1dc444f32e") ) (fp_line (start -2 3.75) (end 7.08 3.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2dd0f56f-113b-482e-85e6-b8dd4d46e4e9") ) (fp_line (start 6.58 -3.25) (end 6.58 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9f182cd8-4b6b-45ae-9caa-b2e9e07b0c1a") ) (fp_line (start -1.5 -3.25) (end 6.58 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "80d5b531-eb24-4bb4-9b7b-adda709489cb") ) (fp_line (start -1.5 -2.25) (end 6.58 -2.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e540c530-b33d-425c-9d3c-1ce5b00f3959") ) (fp_line (start 5.781 -0.835) (end 4.246 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7618a641-5ac4-4c46-97d9-71fac5d8e8ef") ) (fp_line (start 3.241 -0.835) (end 1.706 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06af0b3c-6a71-4e10-badb-03af5ed13877") ) (fp_line (start 0.701 -0.835) (end -0.835 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2fe919b7-69ce-4118-8068-18001ae4ffa1") ) (fp_line (start 5.915 -0.7) (end 4.38 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8d71602-5405-4228-9c8c-91b2ea95a02c") ) (fp_line (start 3.375 -0.7) (end 1.84 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "162b2711-06f6-4d14-8dbe-132f635751a3") ) (fp_line (start 0.835 -0.7) (end -0.701 0.835) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2d1eb48b-8007-424b-a628-321a5c8a9cc0") ) (fp_line (start -1.5 2.85) (end -1.5 -3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "850d3194-d950-454d-b20a-ae252bf84893") ) (fp_line (start -1.5 2.85) (end 6.58 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aedc7ef8-f898-486f-819e-d6f9b32b1b10") ) (fp_line (start 6.58 3.25) (end -1.1 3.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b792454-bf53-411e-a2bd-b75dd0d29d30") ) (fp_line (start -1.1 3.25) (end -1.5 2.85) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "08523c3f-a6f4-4918-8205-230653c1aaa7") ) (fp_circle (center 5.08 0) (end 6.18 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "9b132a9f-b4a2-4363-a3ec-c267365e3097") ) (fp_circle (center 2.54 0) (end 3.64 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "c6c444a3-f965-4f6d-8877-a9fef09a8e66") ) (fp_circle (center 0 0) (end 1.1 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "2cb4c7ce-4f19-4fe8-b2f8-89f438e827df") ) (fp_text user "${REFERENCE}" (at 2.54 2 90) (layer "F.Fab") (uuid "bf82e4ec-6764-497a-923e-dfc34d754b2d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "cb2fcc0e-1d0d-488d-b0b0-cd065004fb7a") ) (pad "2" thru_hole circle (at 2.54 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 115 "TX_MISO") (pinfunction "Pin_2") (pintype "passive") (uuid "79b528c7-a197-45e8-b80a-42c7f85e3543") ) (pad "3" thru_hole circle (at 5.08 0 90) (size 2.1 2.1) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_3") (pintype "passive") (uuid "46c36c63-6a2f-4ee0-bc06-933b1cd7c111") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_TE-Connectivity.3dshapes/TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "5b4e2718-8ada-44f9-b481-f1cb51d98fd9") (at 104.55 64.9) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D60" (at 2.35 -0.05 90) (layer "F.SilkS") (uuid "8e31b512-28f8-4cce-9d17-015dd5553574") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "6ae13aa9-70ec-4281-92c0-3cd45c8b376b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f912d694-c69d-4c61-bd8e-fdaf8525e0a2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a40c74d1-f1ae-48bd-aaaf-c6f43634f2a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e30a337e-2ce6-4364-a455-f05d76a19823") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7f4113ec-cede-4ed4-8ca4-1122c38a5aba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/8ad39315-2c9c-416c-8930-0ac5c2b62eb9") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "405e53aa-5b61-4c5d-a78e-4bc989af203f") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "505d817e-026e-46f5-b14e-d33c5f078280") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1802736-6068-4c8d-a6a7-64e9d2495229") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f32c84a-e64a-4778-b5cd-2a035177ecc0") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "63381b8e-894a-4913-b89d-724d7b78e809") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8ac74c96-0d48-413d-a89f-20c273ceb9f4") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "24995566-32b8-447f-8d3e-96e94da82896") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e6d37c75-b232-4392-9de1-b39147138486") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8cf6d3d5-3834-4495-9fc0-e48b79d940e9") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "837875b7-0749-42e4-a79f-f7ee2ae1d3e6") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dfca920c-2885-402c-945d-ba7740a77ff1") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6550eb59-3b77-4dea-9319-eb0c46bae3a8") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a8a5525-4bfc-4953-abf1-d3d635392204") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "96499054-bf52-4c53-99b6-ae74a384fe56") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15bc5c17-b576-438b-b44f-6cf608e12bdd") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a90e7330-c2bb-41c7-aeac-228ca13b36a6") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fd56fcd-64cc-432f-9e87-0b60aee19677") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "bf9c6369-c229-4fc1-b8d6-e693dadc89d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "261aead3-a094-4593-b653-d1cc869cf4b3") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "A2") (pintype "passive") (uuid "31d64db8-6647-421f-9746-2ce4e2042f1a") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "5c470add-b449-455e-95fc-baae46d35c85") (at 138.4 113 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D16" (at -2.5 0.1 180) (layer "F.SilkS") (uuid "ed8a2df2-11a4-4c13-a165-4c20e6af4a2b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "ef422250-5e9b-4d43-bd98-a51e74ab674b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "d7509015-319c-4d3b-b3a0-4957a220a7a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "a2e6657d-2ccf-4ecd-81f7-c2734499e010") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "d378f219-d3ef-4d67-ae8a-91d06ec02831") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 25.4 251.4 0) (layer "F.Fab") (hide yes) (uuid "9a36c8b5-ea2d-414b-99d2-568a7b5d6b79") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5a2c133f-e72c-48c6-86e4-084fc2192c6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/99383412-e91e-4682-9562-162d7ddf01c0") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f2f9a0db-53a5-41b7-9dd5-49d3bcb9a573") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bf56f91b-09fb-4c29-94be-295fb8b728ef") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9a32c2e4-d992-43f4-902b-266a332898d5") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc684755-f922-4141-a398-2c939e1c9733") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0202296f-0426-4332-bc61-765c32878a89") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ab0e48f-2b52-40a5-846e-77140624f54b") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8448413d-1828-4f3f-9612-34c9c45743f1") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b926b5dc-a0d0-4517-9aab-b446fc5a214b") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f4f9205-5b89-472f-9ea6-2f0f7873a26d") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "094aa773-8dcc-4f41-b7ba-bb86f7600977") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af47e8aa-b046-4ea5-a73b-02a48d02500e") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b17a2099-6d1b-4f9d-bf8f-60a0a98ad1cc") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "8f5fee10-b338-444a-9eb2-d4e66cc48b20") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "788cd8b3-93a7-4856-84e6-027c7954101f") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 93 "Net-(D16-A)") (pinfunction "A") (pintype "passive") (uuid "344303da-e58f-43c3-b752-38a8db209612") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "5c7f9cd1-7e82-49fd-83ae-a52e39d9d004") (at 54.7 58.2) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D5" (at 0 1.7 180) (layer "F.SilkS") (uuid "b278e63e-4325-4883-874b-aa22f72b563c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "f6688eb3-d278-4f26-99cf-e5d7a3b3c621") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e2fd9aca-9d2a-448a-85a5-87f906d5af2d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "22035932-c23b-4a55-84da-0598fb616f09") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ae1430c0-93b1-4293-abf1-a8396a98cdf6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0b2780e9-040a-4143-aaed-7c461eb8dd77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1d4075ca-215b-45a2-b28f-0a0e20b1b852") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/6823870e-28cc-4ec1-9b5a-c8beb3288006") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "61a7c4ba-52a8-4854-8c7a-fbdce4c091f8") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9f03909b-6aa0-4ca4-9504-84053e36f288") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9e4de15a-1b79-4486-9cb0-e1d72391a461") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "32b826c8-a14e-41cb-885c-dea81ad5ccda") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b095097d-fdf2-4807-8836-b2310953ea14") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "741eaffa-dae9-4531-8d06-aa05329ff73c") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c823381d-6f18-4b99-8a0e-333d15593aaf") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f2563586-ed79-4925-9b45-2cb98bee97a5") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2309e7bd-b8d3-4f65-b6ec-7c0789022d2e") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05da2389-9e4d-4878-9768-679ad45b4d42") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3e6a6246-bba4-4443-b2a3-131c36add386") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dba2ae9f-d1c0-4be9-a653-dab32dd86068") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "7b9c2cbe-544b-4205-a9ad-35733517fc6f") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "90be9e9d-846f-43b5-9061-bd878a32518b") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 14 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (uuid "957106ba-e081-4556-8f77-c3cdfa2ae2b4") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA" (layer "F.Cu") (uuid "5d97d096-994b-4e4d-91f2-4dca3f8e21c4") (at 62.6 75.35) (descr "Diode SMA (DO-214AC)") (tags "Diode SMA (DO-214AC)") (property "Reference" "D1" (at 4.4 -0.225 0) (layer "F.SilkS") (uuid "c3af13a2-0d82-4b20-a693-5348d9b2826e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SM5819PL 1A 40V" (at 0 2.6 0) (layer "F.Fab") (uuid "a9c13dd4-cc67-43e4-ae9a-f427ed4a42c2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "877a8bc7-405f-46d7-9e5b-8b781310562c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a7de803d-6075-4202-a987-e1bcf134a983") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Schottky diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1d9e608a-bf61-4fa5-ab31-48f7eafa9ff2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C669023 or C19992592" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ef4b1a36-28c9-4336-893d-f895c2f6296d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3386ce26-3b7a-4916-b8c1-4c89759dbe74") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/feba9514-0d4e-45e7-8d97-6a49db19119e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -3.51 -1.65) (end -3.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8d552c88-0f5d-40fa-8040-26e4dbb77e42") ) (fp_line (start -3.51 -1.65) (end 2 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2ff3aec6-d8f4-47d6-821c-2d6c20881f74") ) (fp_line (start -3.51 1.65) (end 2 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "18494519-8aa9-43a1-ac68-624cc3d5291e") ) (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e281f179-a1e2-401a-b4c7-4796b4b8c7a9") ) (fp_line (start -3.5 1.75) (end -3.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc7b5295-3eca-4759-ba74-28753ec1c26c") ) (fp_line (start 3.5 -1.75) (end 3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ac22ebcc-39ab-467b-a59c-9d8dcacf0377") ) (fp_line (start 3.5 1.75) (end -3.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "55080890-b3c1-4685-888b-6e2889e65ede") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7cfdc555-f498-4b38-b79a-c9079881e38a") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d4f31af3-36d5-4de7-bfc1-9eec3a487dd5") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b146eaf-a188-4444-9632-92b0f20d1a77") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "657a76de-4eb3-47e8-8492-ddb4b8455739") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49fa918e-a7ea-4c16-a754-c8b669c1c0a8") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32440e46-8ff2-4545-8129-3a1546743a11") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5eebf62f-6d4a-4827-8991-184c6299e299") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7241882-6924-4bb5-9f78-4447d8e7801b") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70b24ef0-0880-4607-b894-f325208e4819") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91e504c6-3c9e-4cf1-b9a0-dbf63e5ba20e") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "11c3128f-1a55-4e3d-a752-571e77cc26d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 121 "VSYS") (pinfunction "K") (pintype "passive") (uuid "13d50899-a343-437b-ac39-ccaa4aa31b87") ) (pad "2" smd roundrect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 1 "+5V") (pinfunction "A") (pintype "passive") (uuid "c9c4089c-afe1-4e1d-bda7-fe4cda4a62e1") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "62443830-ca1c-4968-a826-6cbee161f648") (at 50.6 80.5 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D36" (at -3.502 -0.018 0) (layer "F.SilkS") (uuid "38bdc549-68fc-4af2-b6ea-545e57e256b4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "ff865dfa-60ca-4ea3-899e-c2c453776e0c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fe3ebe65-2cf8-4157-9380-c59b5a540cf9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c1b769c6-6493-4150-a42e-dfcc53cf3cb8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "43c97c15-cca9-4618-866b-a4483ea16d27") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3ecda796-0dd8-460c-ac57-ed7ed5692bdc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/3043139a-40d2-41e6-b8e9-62d1dbd52a4d") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ccdcaf24-85cb-4c6d-aa00-acdfe8e07678") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "32e7f974-43e1-4cda-bcb7-9616b62bf959") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e5ab85a2-fc7b-4fc9-bbee-e6a4322e90be") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "deddc97c-6d85-46bf-a757-fef7068add20") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "269c5b32-d212-4362-be36-3b2443b4728a") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2b932894-0902-4872-9cdb-c47bd846bb84") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "edce111e-b596-4278-b2ba-201419598554") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1561c086-1573-4730-9de4-8f1e3c9eed99") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e168669d-a7c4-477c-8801-61720a020c16") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "52f155eb-b1ac-424b-a50e-8aafcb3d7711") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8a19a1f5-8ed8-43ff-bd4e-9bb8d8d514ac") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95dd180d-1157-49d1-8c17-7a90fae7b891") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "698f5ce6-f42c-48c3-ac12-4aa22dc951b8") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "13e879d8-0e13-428f-b7b5-10a555e0e387") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4944443f-5d4d-4f06-9f7f-f94e84afed61") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4929565-bc5f-4107-bfc3-525b43a8dc86") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ec143a5-380e-480b-be79-1a947af57b89") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "1ca482e9-b7d2-422a-9f69-68f1a67a46a9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "a911b795-0c07-4296-b979-600ce4695d36") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 115 "TX_MISO") (pinfunction "A2") (pintype "passive") (uuid "02ad6283-034d-4174-8245-bd86bb5f0de6") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "633aafcb-e7f5-4f49-b90e-2af365a07e52") (at 131.9 69.45 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R29" (at -1.25 -1.95 90) (layer "F.SilkS") (uuid "3572adbc-4bbb-4215-9874-cdb0536c8607") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "87916f7c-63be-4449-a525-8afd8c22a8d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "59c9f1fa-15b9-4f73-a931-009397fd1c6b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0f2275dd-d8fa-483f-9325-c68644f485c6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6494d321-75cc-41c2-9177-65adaa51b383") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 197.6 -66.4 90) (layer "F.Fab") (hide yes) (uuid "630509b1-7c9a-412e-ae90-78045941bd0f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6fde9a6d-d745-40b6-9300-22d5b11816c2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "84d3a94a-a3d5-48d3-aaa0-872bbb265308") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b9e323fd-f355-458d-a7aa-3e4e4412ddaf") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d2de560a-e735-48af-854f-3bed4a4ebd06") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ebff2740-6429-40ca-8e3c-88360b5e8a91") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "556dbcc9-b3c1-4acf-9ad2-0d0ba241e051") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0c41466-60f4-459c-ab9a-ea44bf4fe3c8") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdc99519-6fd2-4a3f-a448-1f4186a703fa") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c2523ee-e559-40a8-940c-6b62966c5709") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c987aa45-5ed5-4123-9285-1d04518900f8") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "042095f3-3d08-4567-be11-0348c96ed866") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b4db2365-6a51-47cd-83c5-bfc1e921233b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "MBFAN3_PWM_READ") (pintype "passive") (uuid "933a54c8-d007-4fc3-b986-302052e574d8") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 31 "/Fan Channels/Fan3/PWM_IN") (pintype "passive") (uuid "b8bb8bae-fd8b-408e-baf6-d7c67b1ab316") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "63a80e7b-5e29-492a-8025-d9ff6addda0f") (at 150 86.5 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R42" (at 0 1.25 0) (layer "F.SilkS") (uuid "a1038b8e-568e-403c-ab0c-b598b458dea0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "ebf39eef-73b0-44fe-aea9-fb6de4caf919") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e7a7794c-30f9-4774-b3f8-3839640f2f0a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d0a94463-b5e3-41a1-a953-06694db68645") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "06b42a15-a7a6-45e0-bc6b-8f4b521b0011") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 300 173 0) (layer "F.Fab") (hide yes) (uuid "097bb08c-2efd-4ed3-be39-c62287629fe2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "31bb5c52-e84d-4a27-94de-cf915cf2ccd6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/4e28b459-dd74-4c82-9144-e285ed7f5928") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "23a8f074-f31c-4133-8f42-a58831ae392d") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9e111a7e-a27a-4c9e-9b79-f7f630ee3204") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d0240dde-1129-4a3f-be6f-739cdb25ff7f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "be220a29-0c1a-4fa3-a8fe-3603240e5d9f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e07f5716-73ce-4e0b-b1a1-1d95fb1b814e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3c31e18c-0329-492e-8994-8dd722d0f326") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b4b4964f-f7e0-437f-b8a6-749a5b996805") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e7306401-6d4a-427e-8a3a-59e6a5b5e0b5") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92f47037-77a4-4b81-949f-c32b95b186fc") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dbe8d73e-dc36-478a-b414-eb87e66281b6") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "8e5892d2-14ad-4b36-aef2-82b5166eadf9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 89 "/Fan Channels/Fan7/PWR_OUT") (pintype "passive") (uuid "e36b5af1-2af9-436e-98f2-5afd7673fccc") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 99 "Net-(D29-A)") (pintype "passive") (uuid "b30d2b45-e494-4d5b-afab-89e4cbb6bd7e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "64b46f63-6e09-4261-974e-314eb1064777") (at 108.1 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J4" (at 7.75 2.5 180) (layer "F.SilkS") (uuid "98e829eb-8ce5-4ab0-9b54-245ab5f97c46") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MB Fan1 Input" (at 4.05 4.35 0) (layer "F.Fab") (uuid "d3ad3799-950b-4489-9ef5-0f3507600f96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "42760cc9-9523-4c87-8d4f-b761c0715240") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "a1e26488-d378-40df-bda3-2b6a675c68e2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "62680b90-11fd-46aa-90e2-62d9f7ee6d46") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "decca787-242d-47ba-8209-a185809e947e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/a43df6e2-bedb-4718-8d23-6b27bc7ec28b") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "788dfa74-b656-47af-9544-c9ba7ac1a7eb") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "477bcb95-b2d1-4c89-a5f9-202e1431aea5") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4f7ca22-9f83-44c5-b303-f68316e37831") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1704b3a5-0460-40b2-a6fb-582371816781") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b4f95430-1371-42b3-9a49-d5d554aeb0b7") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30d0f5e5-c027-4799-b5b5-bbaa5122d362") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "effa2f78-46f0-471f-bbbc-7cc01318c9d7") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4f3865ab-9719-4cf3-bdf6-f4da4ad53c72") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9e8aef7f-cb44-4541-ab63-a3bccae5be78") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "918625e1-20b8-4a0b-be6d-2a84142ac46b") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c3f48bcc-5ebf-4fcd-9779-b78b03028c38") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f1be3a3-aaa3-47e1-8047-f943ff896187") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07dc7666-70c2-41b5-8b9c-e0fd23209f8a") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "085a6025-6420-4419-93a7-c20b8f67f5a2") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1dbaba1-8f57-4ae1-899b-f9eb64c19d96") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6de92a32-f103-4b91-9353-f1a4b66ccf0f") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "24a7f5e9-b56b-4a87-a524-c025c5e092d3") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "654a1843-e2fe-44d7-bf48-5bca48e1297b") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77a88891-42f0-437f-b739-ac3ddeb17926") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b20e0bff-e5b3-4a07-88ae-b266a185c89c") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "728eec54-e618-4cbd-8714-85b48d599271") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "a0147d9e-f871-4843-afc8-a20cf645f89a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "ef467ee8-6e26-4e6d-bc49-738d0c235268") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "2e9b425f-2a30-4b47-88e3-27566f89bc1b") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 23 "FAN1_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "024262de-5392-4a64-9484-362c2ce73e0e") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (uuid "100d22f2-e34a-4845-9957-8d3ae4b929d9") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 25 "/Fan Channels/Fan1/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "8a62aaa5-9028-46f7-a172-9aeb17dbe268") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "65840528-ae86-4ed9-af78-7b21e0f683c8") (at 120.45 69.4 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R15" (at -1.15 -1.85 90) (layer "F.SilkS") (uuid "1f70a71f-9116-4b17-9899-917f9334c15c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "f5eb07a6-649e-4c5d-8f01-2dd838d5a930") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2d568280-a7b0-43fa-96f3-f04e52ca1485") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f21e2fb3-9d6d-4d9b-9589-7ad9c4529d92") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "89b3f69a-0e8f-4990-8cc3-2002852e1d57") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 186.2 -55 90) (layer "F.Fab") (hide yes) (uuid "22fb76c6-0d6f-4c4e-955f-6761ec86f47f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "522f909a-6358-4bd9-be8d-e172161f9812") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1b184d6e-e6f2-4fe4-9b38-549caa1561c2") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d918370d-0427-40ef-89e1-981e2da03d34") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ab1f849e-f79a-49ca-b950-e79d17383774") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "93ef2461-543a-4282-89cc-efd4038f8b08") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4df3878c-607c-4893-85f4-7435b3c2f8a1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c28a52ec-eea2-43b1-8eda-850a59d94591") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae4515ad-87b1-4bdf-bf96-6eabb86bf4f0") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9f14ae50-1d26-434d-b347-483760a1545b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bba9a792-75ab-4c50-a385-9d0d45d68fde") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a63de913-5e6c-4f18-b059-7c080b0c29cd") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "be793a9c-18aa-4667-af3a-15811ddb28e4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 43 "MBFAN2_PWM_READ") (pintype "passive") (uuid "abe45ea2-bbd1-47b4-be8a-b043beed358e") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 28 "/Fan Channels/Fan2/PWM_IN") (pintype "passive") (uuid "e516f4f6-1f9b-4b4a-ae23-0d979c4707bb") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "6592d150-1903-417a-9405-a2cb2b7854fa") (at 132.5 75.6 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D42" (at -3.65 -0.05 0) (layer "F.SilkS") (uuid "a60b49c1-e7fc-48b4-8acd-5a6f49e5c562") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "d38a4677-fc85-4470-8fcc-23b2e1c3c338") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3b6aceb-be0b-4d61-95f0-2696673c4560") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f106e35d-0df9-432f-a4ff-12017abbe0be") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7dd065a8-c0b3-4f60-8eca-f6496138b627") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "501ba470-ba55-4a13-ae73-8d17a7e62262") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f0b66849-68c7-40a2-8199-3ee6087311a6") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d361ae0b-f054-480e-a641-c4bfef26d75c") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ee0cc38-984d-4365-8377-475c351c2acb") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14773e8c-75d0-4490-8026-1bec043a9134") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc3a3aa4-e1fc-4bb9-a4fa-11c0242b456b") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfe82dec-c727-47d8-ada5-34064517a31b") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a65eeb15-891a-4789-aa1d-b1d53bed6e5e") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "687f1814-67a0-44c0-863e-d1c6ab9639c4") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "391b618c-e359-4e86-b3da-4438477005eb") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1a59a27c-9aee-4387-80e1-ab7df3d7f16f") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "178b3937-779b-4d9a-a31b-dc75db91106b") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "903236ca-708b-4b33-87c0-586a7f9d7d49") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea30a169-edbb-4760-ad7d-0ef0f57f4a75") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9480f0c0-2ff1-4b16-afd3-3a1d9af1154c") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e3f83ba-1df8-41e8-bb33-aceb2f4fbfce") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "29edae52-42ae-4d18-b8ca-05519d3897e1") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3d8e8a96-934f-4a80-9372-67308e73d237") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "76cdbfca-70c4-4f39-b6bb-f6d83e185c3a") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "4f607706-4234-44cf-b823-d2bf5a914481") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "a5f92e2a-889d-486e-a20c-997ba6c0cd00") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 114 "SDA_SCK") (pinfunction "A2") (pintype "passive") (uuid "6d167b0c-83c0-4ffa-b34c-fd518d310499") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "68749e4e-c6fe-41eb-af3a-29aeb0706aa3") (at 153.5 68.5) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R46" (at 3.15 -0.05 0) (layer "F.SilkS") (uuid "b2e97d66-8aad-4d85-b64c-ec9cb3dce4ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "83b54a49-c1b7-4e09-9e6b-f00e33159fdc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dd07dee9-4a6d-4523-a96d-56be8706d6c0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "952dc4f1-be73-4561-9914-ca2891f4efc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0d686efe-a4ad-4631-8571-a6270aae0c60") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aaf244fa-d8be-4dd5-80e9-46cd7bed834c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "27546ff6-c14f-4179-90a8-417bc19052be") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8a8b22a1-1915-40c9-b15e-0def8c1f1909") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "72511de4-a702-4e25-bd73-2dac2dff35a4") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b5bc59a7-d8ad-49df-bd68-7b249e6800ed") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "421cf5e0-21a2-444e-86b0-b59eef030042") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d963b1cd-089d-46cc-9645-3510f51d7d6d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b549de9a-7fcf-4b52-9e58-576de06ca77f") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8a7dac37-08b9-4124-8aee-9100ec8cefbb") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5267df8e-baff-4714-9c3a-416f7578bbc4") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab5d02d0-b91d-4dae-b791-47a027467813") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c85be28e-81d5-4247-a945-ca9419303d1c") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "d85a0d4f-3be5-4770-8dcc-273cc2e9d690") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 78 "FAN8_TACHO_READ") (pintype "passive") (uuid "8d7466f2-8997-4a80-8c36-2e488e757c73") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "147431cb-458e-4f3c-b833-ca2c59b89875") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:RPi_Pico_PicoW_SMD_TH" (layer "F.Cu") (uuid "69e9e663-adb6-43be-bee7-e238a2b332b0") (at 63.5 102.2 90) (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x20 2.54mm double row") (property "Reference" "U4" (at 0 0 90) (layer "F.SilkS") (uuid "fa9eee4d-e51f-43ca-a43c-8dd9bbe28d51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Pico" (at 0 2.159 90) (layer "F.Fab") (uuid "f2a9f2ea-78e0-4774-adc4-ddff337bb892") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a742ff0d-3c6c-4d87-a77e-d10ba2db435a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e6fb75df-3290-4762-9b7f-0af8be5898ab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "7bf23d31-439c-45c2-86c5-900e5ab6517f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eedc1b74-d38c-4a2a-aed7-352685c8ff12") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (fp_line (start 10.5 -25.5) (end 10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2468fce8-841f-4f19-8d8e-d23cbe7a20f2") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac8fa768-0758-476c-9783-5569d9fa1ac9") ) (fp_line (start -10.5 -25.5) (end -10.5 -25.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d9f1ca36-5a3d-4005-884e-70037b0235a4") ) (fp_line (start 10.5 -23.1) (end 10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "40f557ae-c60e-46d7-8cad-558742e68566") ) (fp_line (start -10.5 -23.1) (end -10.5 -22.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e6597bc0-3c6a-44f2-abd0-6e58ca5b4a72") ) (fp_line (start -7.493 -22.833) (end -7.493 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "274f2eaa-8498-480c-9ba4-7e483a5fb7fc") ) (fp_line (start -10.5 -22.833) (end -7.493 -22.833) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c0cb7d3d-7d30-444e-a7fa-3eba5c547d7a") ) (fp_line (start 10.5 -20.5) (end 10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f313d422-0544-480b-a4f5-bad95068c3e5") ) (fp_line (start -10.5 -20.5) (end -10.5 -20.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "da57c9cf-a8f8-433a-ae52-c66f0aed7249") ) (fp_line (start 10.5 -18) (end 10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1983de53-3ed7-42be-bf9a-5881dd384760") ) (fp_line (start -10.5 -18) (end -10.5 -17.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "920774b2-c255-46d7-b5ee-a8f5144a14b3") ) (fp_line (start 10.5 -15.4) (end 10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "67d55633-6a67-4590-bc89-29875cef3853") ) (fp_line (start -10.5 -15.4) (end -10.5 -15) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b37f8355-b477-4343-9f5d-85cbea05ef13") ) (fp_line (start 10.5 -12.9) (end 10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba703806-0a76-4ea3-a5fe-3da70cf2cc31") ) (fp_line (start -10.5 -12.9) (end -10.5 -12.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "88f277fd-fcc3-4888-b893-21f55b7a31a6") ) (fp_line (start 10.5 -10.4) (end 10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65a2ab24-aec5-40e8-b5fe-7f07f0046162") ) (fp_line (start -10.5 -10.4) (end -10.5 -10) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "682f5117-7830-437d-9f76-5f6139976dd1") ) (fp_line (start 10.5 -7.8) (end 10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "68b34ee6-07a1-441a-8f8d-f529ee0d3178") ) (fp_line (start -10.5 -7.8) (end -10.5 -7.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9cb52063-e7ef-4deb-bf0d-76bc0b988078") ) (fp_line (start 10.5 -5.3) (end 10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "693efa6f-df3e-409c-8e3e-3a3b03d68544") ) (fp_line (start -10.5 -5.3) (end -10.5 -4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53ae7fb4-06aa-418a-8d77-fa11b8fce555") ) (fp_line (start 10.5 -2.7) (end 10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db80d7d0-bd25-4849-9c65-f916d5d80693") ) (fp_line (start -10.5 -2.7) (end -10.5 -2.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c52fa1b6-5a35-4bc4-a7b1-43c82ee9fbe5") ) (fp_line (start 10.5 -0.2) (end 10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a338e436-066d-4611-a5c1-9dcda43c3f3d") ) (fp_line (start -10.5 -0.2) (end -10.5 0.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecf7df58-41f8-4b33-aea9-4e088a374ef9") ) (fp_line (start 10.5 2.3) (end 10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c5593019-f4e5-4b6e-9a16-60c0e9e2c2e3") ) (fp_line (start -10.5 2.3) (end -10.5 2.7) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2fce98b5-540a-4b92-aef5-090739614896") ) (fp_line (start 10.5 4.9) (end 10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4bcf0268-ef67-422f-a0d0-45c6203d14e6") ) (fp_line (start -10.5 4.9) (end -10.5 5.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b8425eee-8b90-4e3b-b758-3a2bdca283da") ) (fp_line (start 10.5 7.4) (end 10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ed15512-2a3b-4f17-ab29-2f593da00322") ) (fp_line (start -10.5 7.4) (end -10.5 7.8) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a83acc11-c0ab-4874-a15e-4b623b112418") ) (fp_line (start 10.5 10) (end 10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a93f07a-250c-4a5c-a39b-26dc735dc41b") ) (fp_line (start -10.5 10) (end -10.5 10.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "08131ac1-8de2-486b-aa91-ae2cfb67d761") ) (fp_line (start 10.5 12.5) (end 10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e4941f9a-1034-408e-92ae-5f6b6f446e27") ) (fp_line (start -10.5 12.5) (end -10.5 12.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dd544bb7-0f54-4cca-ad9d-195f56898744") ) (fp_line (start 10.5 15.1) (end 10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "73ea10af-69d5-41bb-8c83-c68fd8cd1c62") ) (fp_line (start -10.5 15.1) (end -10.5 15.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "125ed6f1-a002-4923-b467-f2ce39cb94a4") ) (fp_line (start 10.5 17.6) (end 10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fbad813c-4e01-418a-a0d7-e21afe2f4e3a") ) (fp_line (start -10.5 17.6) (end -10.5 18) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e6c46bc-8c66-4b13-8daa-3a4c40a4ea94") ) (fp_line (start 10.5 20.1) (end 10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4282db81-4324-4a6a-8fa2-cb07bb1d1375") ) (fp_line (start -10.5 20.1) (end -10.5 20.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "33635f20-784d-47b2-961c-c4c22a222435") ) (fp_line (start 10.5 22.7) (end 10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b8413e87-476c-4fee-ad35-ad6bfd03cb3d") ) (fp_line (start -10.5 22.7) (end -10.5 23.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bcbbc4ff-5132-4672-b94f-a3f7f86b86cf") ) (fp_line (start 10.5 25.5) (end 7.3 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cceaa68c-190a-401e-9be5-66f05720d247") ) (fp_line (start -7.3 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8195e3fa-9b9f-4825-86a1-2dd76ec2d8c5") ) (fp_line (start 7.1 17) (end 7.1 25.5) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "4be3c5d2-c565-402f-8047-07349ba21c36") ) (fp_line (start -7.1 17) (end 7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "653abb9e-0920-414e-8b42-a099fc3fac38") ) (fp_line (start -7.1 25.5) (end -7.1 17) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "d3f40279-e9bc-4d53-a9c3-6324e6ff36b3") ) (fp_poly (pts (xy 3.7 -20.2) (xy -3.7 -20.2) (xy -3.7 -24.9) (xy 3.7 -24.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "e55ba5c4-7bc1-4558-a43c-4b76d1812d8c") ) (fp_poly (pts (xy -1.5 -14.9) (xy -3.5 -14.9) (xy -3.5 -16.9) (xy -1.5 -16.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "f0014773-d369-4ade-801d-c2f8cd5050c9") ) (fp_poly (pts (xy -1.5 -12.4) (xy -3.5 -12.4) (xy -3.5 -14.4) (xy -1.5 -14.4) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "0afec6ce-61a5-49e4-97ef-fa46d55d2cb2") ) (fp_poly (pts (xy -1.5 -9.9) (xy -3.5 -9.9) (xy -3.5 -11.9) (xy -1.5 -11.9) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "a66c9b84-1eb2-4f60-8a7d-20fa4b3c8baf") ) (fp_poly (pts (xy 6.65 6.6) (xy 4.65 6.6) (xy 4.65 4.6) (xy 6.65 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "2f873c9d-ff4e-4a1a-adf8-a03ea247c055") ) (fp_poly (pts (xy 4.125 6.6) (xy 2.125 6.6) (xy 2.125 4.6) (xy 4.125 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "4366140f-e391-42d5-8e58-215d057b2c61") ) (fp_poly (pts (xy 1.575 6.6) (xy -0.425 6.6) (xy -0.425 4.6) (xy 1.575 4.6) ) (stroke (width 0.1) (type solid) ) (fill solid) (layer "Dwgs.User") (uuid "33d707ed-890e-4aab-a5e6-071503393ff6") ) (fp_line (start 11 -26) (end 11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "db1b075a-d3f3-44d2-af3d-733243d4e78e") ) (fp_line (start -11 -26) (end 11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "fd51d7c2-4b3b-46d2-9612-a4e59ff0705a") ) (fp_line (start 11 26) (end -11 26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "40bb551c-dc11-4bcb-8967-41278e5423d6") ) (fp_line (start -11 26) (end -11 -26) (stroke (width 0.12) (type solid) ) (layer "F.CrtYd") (uuid "da9819e8-f7bc-4648-9395-c5ba08e8fcbc") ) (fp_line (start 10.5 -25.5) (end 10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "f58b7314-784a-46ec-ad1a-a5bcb18bfaa8") ) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "8d88704c-40cf-4f01-ba36-85c94f78b5ff") ) (fp_line (start -10.5 -24.2) (end -9.2 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "aa7e2bc5-8b75-480b-a1dd-658fc5a3a83b") ) (fp_line (start 10.5 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "754beffb-f8c7-4f9d-8e9f-73258f07d609") ) (fp_line (start -10.5 25.5) (end -10.5 -25.5) (stroke (width 0.12) (type solid) ) (layer "F.Fab") (uuid "3b67ae38-e62e-4c66-b8de-508a158e497c") ) (fp_text user "GP12" (at -13.2 14.2925 135) (layer "F.SilkS") (uuid "01bc15e4-328f-48c9-a696-d65c71fca2bd") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 19.05 135) (layer "F.SilkS") (uuid "05f72ca1-9f35-4cee-9f08-6dd8e5a9c3e9") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 19.05 135) (layer "F.SilkS") (uuid "0b5e20a7-fb9b-4759-83bd-73d66f6c5428") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP7" (at -12.7 -1.3 135) (layer "F.SilkS") (uuid "1439837b-2690-40d0-aa7f-c6e7a11605f4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 6.35 135) (layer "F.SilkS") (uuid "195eeb2c-b99a-4e71-8a4a-c6eb96258f47") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP26" (at 13.054 -1.27 135) (layer "F.SilkS") (uuid "1e434635-c717-4219-b6a5-433447969498") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP21" (at 13.054 8.9 135) (layer "F.SilkS") (uuid "2859d42e-8d86-4549-ae11-353dcc3ae5c5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP13" (at -13.054 16.8325 135) (layer "F.SilkS") (uuid "2c839912-483d-4c71-b2dd-611c3f6fc45a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "RUN" (at 13 1.27 135) (layer "F.SilkS") (uuid "35e35d4c-aaca-47c3-b820-6fd900575a37") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP22" (at 13.054 3.81 135) (layer "F.SilkS") (uuid "37eb69fa-51db-4d43-822e-915b968517ce") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -19.05 135) (layer "F.SilkS") (uuid "3a416362-e91c-4f1e-844e-6f0616a08d05") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 6.35 135) (layer "F.SilkS") (uuid "3c2ea165-ef1a-4b16-a60b-da0be9a0146e") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP6" (at -12.8 -3.81 135) (layer "F.SilkS") (uuid "42f5c9c0-9fc5-4f3d-bea3-9c43579aeac5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "AGND" (at 13.054 -6.35 135) (layer "F.SilkS") (uuid "55280717-1702-49bf-8d38-23bf5901d1f2") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP28" (at 13.054 -9.144 135) (layer "F.SilkS") (uuid "559fb0c8-d42d-4f34-90cc-275b7c0ad986") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP20" (at 13.054 11.43 135) (layer "F.SilkS") (uuid "5dd0630d-8c97-40d1-a8c5-3bfb3c34c1e8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at -12.8 -6.35 135) (layer "F.SilkS") (uuid "5de1d1cd-dba3-4108-ba46-a85c8412b6d8") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP5" (at -12.8 -8.89 135) (layer "F.SilkS") (uuid "6274ecf6-974a-426e-ba50-35fe84d65844") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP3" (at -12.8 -13.97 135) (layer "F.SilkS") (uuid "656cf3cb-5e5a-4705-8014-d5eee9ab231c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GND" (at 12.8 -19.05 135) (layer "F.SilkS") (uuid "69598158-1fc5-4e12-b71e-108e2fb64963") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP15" (at -13.054 24.13 135) (layer "F.SilkS") (uuid "6a1ad562-e96a-4303-bc94-f863ebf2b14b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP17" (at 13.054 21.59 135) (layer "F.SilkS") (uuid "6d824111-d773-42ee-92f3-0a3cfa69fe70") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP9" (at -12.8 3.81 135) (layer "F.SilkS") (uuid "74b5f4ef-4f8a-41e8-b682-2b89a44fc344") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP27" (at 13.054 -3.8 135) (layer "F.SilkS") (uuid "7f19e784-1770-4c98-98b4-0555d7c93043") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP10" (at -13.054 8.89 135) (layer "F.SilkS") (uuid "84b48026-dec7-408c-88b1-c867a30c680f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP11" (at -13.2 11.7525 135) (layer "F.SilkS") (uuid "88abede0-be38-44e6-a112-58c0e3478093") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP0" (at -12.8 -24.13 135) (layer "F.SilkS") (uuid "9415c948-cd00-44e7-82c3-f4b256d0362d") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP1" (at -12.9 -21.6 135) (layer "F.SilkS") (uuid "9c0194cb-e3cc-425f-ab57-aca1e2025e30") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3" (at 12.9 -13.9 135) (layer "F.SilkS") (uuid "9efebb98-e90a-4fb8-b838-f816b3afde30") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP14" (at -13.1 21.59 135) (layer "F.SilkS") (uuid "a25806bd-8fc1-44bd-acaf-af58ba8ebed0") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VREF" (at 13.0675 -11.7425 135) (layer "F.SilkS") (uuid "a3a80dff-aa7a-49f1-a956-974999c1ce81") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP2" (at -12.9 -16.51 135) (layer "F.SilkS") (uuid "a5214ff8-d0b3-4dc2-b78c-36fd4dfc4fd4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP16" (at 13.054 24.13 135) (layer "F.SilkS") (uuid "af847633-5e59-4bd4-883b-442156754862") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP8" (at -12.8 1.27 135) (layer "F.SilkS") (uuid "bcdb1cda-a797-4553-afce-6616ebc5dfd5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VSYS" (at 13.2 -21.59 135) (layer "F.SilkS") (uuid "cacaaa69-490f-48fb-8499-27eea86b1347") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP19" (at 13.054 13.97 135) (layer "F.SilkS") (uuid "cacbde65-7e5b-45c3-aedb-811395c142e1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "VBUS" (at 13.3 -24.2 135) (layer "F.SilkS") (uuid "e075d6f3-9016-4fb2-9a41-2e93363b3e11") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP4" (at -12.8 -11.43 135) (layer "F.SilkS") (uuid "e99211a7-46d4-4dca-91b0-a4536833ab76") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "GP18" (at 13.054 16.51 135) (layer "F.SilkS") (uuid "f0a77e72-1d06-4164-ae80-a6e6549984bd") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "3V3_EN" (at 13.7 -17.2 135) (layer "F.SilkS") (uuid "feda0355-266c-4d74-be10-2ef73e31fea6") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2 90) (layer "Cmts.User") (uuid "4b54f88b-672b-4f37-b1db-bd6ef78099bb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") (uuid "79f898c0-7674-40c6-b8f1-fec8022b75f1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole oval (at -2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "b0449725-976c-4e00-ace3-7543d192dfe3") ) (pad "" np_thru_hole oval (at -2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers "F&B.Cu" "*.Mask") (uuid "95752c6a-67cc-45b1-b9e2-e26bfaf2602c") ) (pad "" np_thru_hole oval (at 0.5841 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "cde6b93e-9597-4824-bcc8-4eff10d8bce3") ) (pad "" np_thru_hole oval (at 2.425 -20.97 90) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (uuid "99925332-3196-41b4-91a5-5e7e4fe74bb9") ) (pad "" np_thru_hole oval (at 2.725 -24 90) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (uuid "3ba40c2c-cddb-4ccb-b3bb-e10332543fe3") ) (pad "" np_thru_hole oval (at 3.1241 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "81654e06-fb14-4482-9d87-36c1c4cba237") ) (pad "" np_thru_hole oval (at 5.6641 5.6 90) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (uuid "f6cdcb58-a046-4355-b510-0d9297f0a573") ) (pad "1" thru_hole oval (at -8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 115 "TX_MISO") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "f39ad3d2-3a28-44ce-b3bb-ba678e732590") ) (pad "1" smd rect (at -8.89 -24.13 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 115 "TX_MISO") (pinfunction "GPIO0") (pintype "bidirectional") (uuid "72149565-d0c4-46e8-9284-b21bddbf4b38") ) (pad "2" thru_hole oval (at -8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 116 "RX_CS") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "a90cda70-755f-4e61-99ae-0919688f5d76") ) (pad "2" smd rect (at -8.89 -21.59 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 116 "RX_CS") (pinfunction "GPIO1") (pintype "bidirectional") (uuid "38278308-c4b8-40a0-9960-6a7c39eaae56") ) (pad "3" thru_hole rect (at -8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "9e317a13-bc7e-49c1-b671-421f45ea221d") ) (pad "3" smd rect (at -8.89 -19.05 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "066c403a-60f7-4702-8afd-b946690e600a") ) (pad "4" thru_hole oval (at -8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 114 "SDA_SCK") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "2f3429af-6ca7-45de-b04d-31ecca859d75") ) (pad "4" smd rect (at -8.89 -16.51 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 114 "SDA_SCK") (pinfunction "GPIO2") (pintype "bidirectional") (uuid "6f862ca2-3ab2-4e63-b982-31df0b9ff9ec") ) (pad "5" thru_hole oval (at -8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 113 "SCL_MOSI") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "22d380f1-5ed3-4a63-a473-e948e4ae569a") ) (pad "5" smd rect (at -8.89 -13.97 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 113 "SCL_MOSI") (pinfunction "GPIO3") (pintype "bidirectional") (uuid "cf115727-fe8a-4067-9847-857449337f5d") ) (pad "6" thru_hole oval (at -8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 45 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (uuid "ffd5a09a-1cf8-485f-a11f-7312f6d85659") ) (pad "6" smd rect (at -8.89 -11.43 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 45 "/PWM2A") (pinfunction "GPIO4") (pintype "bidirectional") (uuid "e2bea203-8b83-411d-b0fa-ba3bee810bdf") ) (pad "7" thru_hole oval (at -8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 46 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (uuid "83556913-a9ec-4556-aadf-41a93ab384b9") ) (pad "7" smd rect (at -8.89 -8.89 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 46 "/PWM2B") (pinfunction "GPIO5") (pintype "bidirectional") (uuid "840e21e8-6654-4a08-80f9-d0922a76219b") ) (pad "8" thru_hole rect (at -8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "3e091e05-91c9-4cbc-8201-c6b6603057bf") ) (pad "8" smd rect (at -8.89 -6.35 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d32348d7-00fc-4a9a-babe-49a3e2471db0") ) (pad "9" thru_hole oval (at -8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 49 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (uuid "13025218-6e8b-460b-ae32-6f00879eef7f") ) (pad "9" smd rect (at -8.89 -3.81 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 49 "/PWM3A") (pinfunction "GPIO6") (pintype "bidirectional") (uuid "595779ed-7729-457f-beae-d735edd87217") ) (pad "10" thru_hole oval (at -8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 51 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (uuid "567b45d0-2b01-4595-8ac9-a2a08efd5785") ) (pad "10" smd rect (at -8.89 -1.27 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 51 "/PWM3B") (pinfunction "GPIO7") (pintype "bidirectional") (uuid "67e3ae71-d29f-42c7-8a02-90e0710177e6") ) (pad "11" thru_hole oval (at -8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 52 "/PWM4A") (pinfunction "GPIO8") (pintype "bidirectional") (uuid "471aa226-7718-4254-aab6-4f29a9c26a8d") ) (pad "11" smd rect (at -8.89 1.27 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 52 "/PWM4A") (pinfunction "GPIO8") (pintype "bidirectional") (uuid "ae9486ff-a645-4808-b1b1-43fe44f7615a") ) (pad "12" thru_hole oval (at -8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 54 "/PWM4B") (pinfunction "GPIO9") (pintype "bidirectional") (uuid "7d415f99-eaa2-4275-8d39-f3c78cb7d959") ) (pad "12" smd rect (at -8.89 3.81 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 54 "/PWM4B") (pinfunction "GPIO9") (pintype "bidirectional") (uuid "b8270024-5c18-420a-a29b-1bea18c84cf4") ) (pad "13" thru_hole rect (at -8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "0a7d9985-e300-4336-8fda-1dbc16e12636") ) (pad "13" smd rect (at -8.89 6.35 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "ad900961-f79f-4dd6-9bdd-db5eee99ebfb") ) (pad "14" thru_hole oval (at -8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 57 "/PWM5A") (pinfunction "GPIO10") (pintype "bidirectional") (uuid "17c5fa65-4bbe-41b4-98b7-c62d002edbf3") ) (pad "14" smd rect (at -8.89 8.89 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 57 "/PWM5A") (pinfunction "GPIO10") (pintype "bidirectional") (uuid "b571a60c-f539-433d-99c7-d2a726154aa5") ) (pad "15" thru_hole oval (at -8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 59 "/PWM5B") (pinfunction "GPIO11") (pintype "bidirectional") (uuid "ff1ef007-d86d-4ac6-9533-a3b706b7b204") ) (pad "15" smd rect (at -8.89 11.43 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 59 "/PWM5B") (pinfunction "GPIO11") (pintype "bidirectional") (uuid "e89a08df-69af-4dad-8257-2a0a87c8481a") ) (pad "16" thru_hole oval (at -8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 65 "MBFAN1_TACHO_GEN") (pinfunction "GPIO12") (pintype "bidirectional") (uuid "17796a85-cef4-45c4-b1a7-cdd00932d8ac") ) (pad "16" smd rect (at -8.89 13.97 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 65 "MBFAN1_TACHO_GEN") (pinfunction "GPIO12") (pintype "bidirectional") (uuid "4ecbc1f3-6106-4a52-b574-345b166a5788") ) (pad "17" thru_hole oval (at -8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 60 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (uuid "efd03329-368e-4ff7-9e5d-16a5fd991587") ) (pad "17" smd rect (at -8.89 16.51 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 60 "/PWM6B") (pinfunction "GPIO13") (pintype "bidirectional") (uuid "13c74492-db82-4592-ad2f-9fd3bd61a0b9") ) (pad "18" thru_hole rect (at -8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "2d3d705f-c97e-4f80-86a0-8e31ac773db2") ) (pad "18" smd rect (at -8.89 19.05 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "d71b5268-e5e8-4f9c-9ef4-dc58f313fb23") ) (pad "19" thru_hole oval (at -8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 72 "MBFAN2_TACHO_GEN") (pinfunction "GPIO14") (pintype "bidirectional") (uuid "772df23b-f172-4b38-8b9e-930bef450219") ) (pad "19" smd rect (at -8.89 21.59 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 72 "MBFAN2_TACHO_GEN") (pinfunction "GPIO14") (pintype "bidirectional") (uuid "82b2106c-d6d9-4a12-a6e0-0c2ec79801e3") ) (pad "20" thru_hole oval (at -8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 61 "/PWM7B") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "5d9ae199-afaf-4245-a27b-510c2f44bfdf") ) (pad "20" smd rect (at -8.89 24.13 90) (size 3.5 1.7) (drill (offset -0.9 0) ) (layers "F.Cu" "F.Mask") (net 61 "/PWM7B") (pinfunction "GPIO15") (pintype "bidirectional") (uuid "c3031f97-b502-47fd-b04d-6ef602cc7f46") ) (pad "21" thru_hole oval (at 8.89 24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 74 "MBFAN3_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (uuid "6f38c1d8-0136-4daa-8cbb-43ac1b5df5f6") ) (pad "21" smd rect (at 8.89 24.13 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 74 "MBFAN3_TACHO_GEN") (pinfunction "GPIO16") (pintype "bidirectional") (uuid "84337102-abb8-4a5e-ac42-8c6d988a5451") ) (pad "22" thru_hole oval (at 8.89 21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 63 "/PWM0B") (pinfunction "GPIO17") (pintype "bidirectional") (uuid "867a9945-2662-4252-9711-fe711b656e75") ) (pad "22" smd rect (at 8.89 21.59 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 63 "/PWM0B") (pinfunction "GPIO17") (pintype "bidirectional") (uuid "477b3031-6465-4040-bdba-a288e9ebb16d") ) (pad "23" thru_hole rect (at 8.89 19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "db076131-dfd8-4f2e-a899-b8b31a0d1aab") ) (pad "23" smd rect (at 8.89 19.05 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "bf9a6f8a-d90f-4bc9-a4fb-69f9b5525498") ) (pad "24" thru_hole oval (at 8.89 16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 73 "MBFAN4_TACHO_GEN") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "ead9d475-17c8-4b12-9d19-70528d72f3ad") ) (pad "24" smd rect (at 8.89 16.51 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 73 "MBFAN4_TACHO_GEN") (pinfunction "GPIO18") (pintype "bidirectional") (uuid "c072c958-5c85-4e80-a1bd-363d0b812147") ) (pad "25" thru_hole oval (at 8.89 13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 66 "/PWM1B") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "bc66649e-d8ef-4d4d-a7e1-d44b20404d88") ) (pad "25" smd rect (at 8.89 13.97 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 66 "/PWM1B") (pinfunction "GPIO19") (pintype "bidirectional") (uuid "54b734ac-f9bc-46f9-9572-b07c5422cdc3") ) (pad "26" thru_hole oval (at 8.89 11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 118 "/MPX-ADDR2") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "c6cfc2b9-b3d7-480f-910b-563601d8ff3a") ) (pad "26" smd rect (at 8.89 11.43 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 118 "/MPX-ADDR2") (pinfunction "GPIO20") (pintype "bidirectional") (uuid "6572b07f-ec2f-4ec4-852a-2a6c39a294ed") ) (pad "27" thru_hole oval (at 8.89 8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 119 "/MPX-ADDR1") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "d4128380-4fbc-46b1-ab62-f004f446a7a0") ) (pad "27" smd rect (at 8.89 8.89 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 119 "/MPX-ADDR1") (pinfunction "GPIO21") (pintype "bidirectional") (uuid "0cad0265-9b1a-4796-a950-5b49128a63e5") ) (pad "28" thru_hole rect (at 8.89 6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "50ec522a-e937-4033-8719-7f65538aa59e") ) (pad "28" smd rect (at 8.89 6.35 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "0e38451f-5b08-41cc-be70-ad4120501b26") ) (pad "29" thru_hole oval (at 8.89 3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 120 "/MPX-ADDR0") (pinfunction "GPIO22") (pintype "bidirectional") (uuid "22ecadca-4f09-4a98-b2d1-e8391533958c") ) (pad "29" smd rect (at 8.89 3.81 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 120 "/MPX-ADDR0") (pinfunction "GPIO22") (pintype "bidirectional") (uuid "3cc2bbb2-d5db-48a6-bda0-75a31fee6532") ) (pad "30" thru_hole oval (at 8.89 1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 41 "RESET") (pinfunction "RUN") (pintype "input") (uuid "0efc45d5-c713-42ed-82b8-57bbf7ef4e5b") ) (pad "30" smd rect (at 8.89 1.27 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 41 "RESET") (pinfunction "RUN") (pintype "input") (uuid "f1ada788-8099-4b39-a5c8-483b58c04875") ) (pad "31" thru_hole oval (at 8.89 -1.27 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 117 "/MPX-READ") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (uuid "1e00f363-2b55-444f-9c40-d615f9d24cc2") ) (pad "31" smd rect (at 8.89 -1.27 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 117 "/MPX-READ") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (uuid "60e9ecfa-ac28-48a1-b1ea-a021d61f57a5") ) (pad "32" thru_hole oval (at 8.89 -3.81 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 107 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "ff95a570-2f2a-4846-b794-53a99b522a5b") ) (pad "32" smd rect (at 8.89 -3.81 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 107 "TEMP1_READ") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (uuid "5d082503-f83f-40b9-b985-f30c6f38ab27") ) (pad "33" thru_hole rect (at 8.89 -6.35 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 106 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "c233b3b9-bd49-476d-b55e-f3aff70474c7") ) (pad "33" smd rect (at 8.89 -6.35 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 106 "AGND") (pinfunction "AGND") (pintype "power_in") (uuid "d850cac6-52f3-42bb-b8b7-f0eb73ae22ef") ) (pad "34" thru_hole oval (at 8.89 -8.89 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 108 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "9124dad5-7bdb-4d36-bbcf-0ed76be3f171") ) (pad "34" smd rect (at 8.89 -8.89 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 108 "TEMP2_READ") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (uuid "29f2102e-abe2-43ee-9dfe-f35048dfb40b") ) (pad "35" thru_hole oval (at 8.89 -11.43 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 81 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "8b400c44-7c64-4f66-9fdd-cc3d1ee19d4f") ) (pad "35" smd rect (at 8.89 -11.43 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 81 "ADC_REF") (pinfunction "ADC_VREF") (pintype "power_in") (uuid "a2361e13-0519-4203-ae6b-b5e0bb472bff") ) (pad "36" thru_hole oval (at 8.89 -13.97 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "e8073eff-6de2-4b2e-9755-35e1a555faf6") ) (pad "36" smd rect (at 8.89 -13.97 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 3 "3V3") (pinfunction "3V3") (pintype "power_in") (uuid "ce1dd505-4646-4824-94f5-cb02f28679b1") ) (pad "37" thru_hole oval (at 8.89 -16.51 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 127 "unconnected-(U4-3V3_EN-Pad37)_1") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "da129643-f7c1-41b7-bfa1-dbe0788bbd0d") ) (pad "37" smd rect (at 8.89 -16.51 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 124 "unconnected-(U4-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (uuid "5df904b9-e9a7-4b21-a2c2-1c9660f6d7d6") ) (pad "38" thru_hole rect (at 8.89 -19.05 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "c71652f6-f423-407d-9393-dbfa216a97af") ) (pad "38" smd rect (at 8.89 -19.05 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "e77008e2-de24-4172-9b25-f524a1582b54") ) (pad "39" thru_hole oval (at 8.89 -21.59 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 121 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "bac7a52b-2fcc-4548-b3e8-91985f9ced98") ) (pad "39" smd rect (at 8.89 -21.59 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 121 "VSYS") (pinfunction "VSYS") (pintype "power_in") (uuid "b547e5aa-d322-4054-83c1-03aa37d9dcff") ) (pad "40" thru_hole oval (at 8.89 -24.13 90) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 97 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "a83a31da-a6cf-49e0-85ad-6c4201ffe45e") ) (pad "40" smd rect (at 8.89 -24.13 90) (size 3.5 1.7) (drill (offset 0.9 0) ) (layers "F.Cu" "F.Mask") (net 97 "VBUS") (pinfunction "VBUS") (pintype "power_in") (uuid "8a0d6650-8aa3-4b01-876f-391ab2071bbd") ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "6a44edfe-2ae4-4a26-af04-29021170551e") (at 150 71.8) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D33" (at 0 -2.5 0) (layer "F.SilkS") (uuid "98478d4b-5073-4e75-b5c5-1ace67bfd01e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 0) (layer "F.Fab") (uuid "9aeb0f2c-4012-46a4-aaac-fe69fcfb6b45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9dfe7f66-5c8d-49cd-9612-ad0d67658d4f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1c317eaf-7b17-4395-8069-ec8aa87fa392") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "eff773f6-7523-41ab-a6bd-937cab95502e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aecf7881-61f7-4ca0-8e36-2e089d0227c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b900fff2-5b0d-4d31-8172-73a3a7100cc1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "63b9c9ca-809f-4b86-9060-d043b52587d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7444c781-ff4b-4cb7-9bae-b04dc59b8e3c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ce991912-52e8-450b-9418-db6d6866c25e") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "05188e8c-1cff-4ecd-a478-8a4a8565e30a") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "34d3d9bb-4012-4ff1-a86a-7826b44613c8") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d76fcd24-87fa-46ae-99a6-7f2707a1ae44") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a75b6343-39e3-4296-a09a-6488980b2c69") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e9552936-bd6c-48d7-bc5a-b5c923234c3a") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a89ae29e-7064-4e5e-b37d-9373e4a1444d") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b3b87863-e412-4bce-aeb3-2075f62c36c1") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ada930b-cf84-46e8-aa46-f60cc26afefa") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "30d2ed05-b898-4f5a-9b8f-d8e31a7ba873") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "df383fd5-068a-434e-80c0-2089be29508e") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "155b24bc-fb0d-4e49-beb5-8eb308e6f805") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02034baf-f4b5-4d00-b94e-dbaaa51d762e") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af37ad63-4d53-4e0d-bd6e-28b360d8032f") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d2f105f1-7eac-431a-919c-c834fa2dde35") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "da8d7624-86d2-4bd7-a21c-7cdb03b1b13f") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "44cdb28d-03e4-415c-a4a0-545fd9141dcc") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fe44c00a-81ef-4fd6-a095-318df0486b59") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "1757ab84-8c92-4491-abae-989e4057acda") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "fa04e0c2-2a82-49fd-b5fa-ddfa443729b3") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 22 "/Fan Channels/Fan8/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "041cb667-4cd4-4ff5-8142-c3f6115ccc86") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 78 "FAN8_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "d079d78e-688d-4cc7-9dfd-4f42045a05cd") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:OSHW-Logo_7.5x8mm_SilkScreen" (layer "F.Cu") (uuid "6a5f17df-4a1c-4a7e-acce-dda541a4ee68") (at 158.29 120.41) (descr "Open Source Hardware Logo") (tags "Logo OSHW") (property "Reference" "REF**" (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "4bd041df-990f-4fea-8981-a633dbdf2c18") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "OSHW-Logo_7.5x8mm_SilkScreen" (at 0.75 0 0) (layer "F.Fab") (hide yes) (uuid "fdab7f17-5fe6-4b7e-8be9-5ea9a838c9c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:OSHW-Logo_7.5x8mm_SilkScreen" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e06053c1-5f87-448f-b3c2-36447ba36ee0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cf90557d-40a6-43bb-b9b7-fe739dca54a0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fb75b397-af7d-4821-a501-6165909a8872") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr exclude_from_pos_files exclude_from_bom) (fp_poly (pts (xy 2.391388 1.937645) (xy 2.448865 1.955206) (xy 2.485872 1.977395) (xy 2.497927 1.994942) (xy 2.494609 2.015742) (xy 2.473079 2.048419) (xy 2.454874 2.071562) (xy 2.417344 2.113402) (xy 2.389148 2.131005) (xy 2.365111 2.129856) (xy 2.293808 2.11171) (xy 2.241442 2.112534) (xy 2.198918 2.133098) (xy 2.184642 2.145134) (xy 2.138947 2.187483) (xy 2.138947 2.740526) (xy 1.955131 2.740526) (xy 1.955131 1.938421) (xy 2.047039 1.938421) (xy 2.102219 1.940603) (xy 2.130688 1.948351) (xy 2.138943 1.963468) (xy 2.138947 1.963916) (xy 2.142845 1.979749) (xy 2.160474 1.977684) (xy 2.184901 1.966261) (xy 2.23535 1.945005) (xy 2.276316 1.932216) (xy 2.329028 1.928938) (xy 2.391388 1.937645) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "52521578-a443-4333-a4f1-f2d6532287c9") ) (fp_poly (pts (xy 2.173167 3.191447) (xy 2.237408 3.204112) (xy 2.27398 3.222864) (xy 2.312453 3.254017) (xy 2.257717 3.323127) (xy 2.223969 3.364979) (xy 2.201053 3.385398) (xy 2.178279 3.388517) (xy 2.144956 3.378472) (xy 2.129314 3.372789) (xy 2.065542 3.364404) (xy 2.00714 3.382378) (xy 1.964264 3.422982) (xy 1.957299 3.435929) (xy 1.949713 3.470224) (xy 1.943859 3.533427) (xy 1.940011 3.62106) (xy 1.938443 3.72864) (xy 1.938421 3.743944) (xy 1.938421 4.010526) (xy 1.754605 4.010526) (xy 1.754605 3.19171) (xy 1.846513 3.19171) (xy 1.899507 3.193094) (xy 1.927115 3.199252) (xy 1.937324 3.213194) (xy 1.938421 3.226344) (xy 1.938421 3.260978) (xy 1.98245 3.226344) (xy 2.032937 3.202716) (xy 2.10076 3.191033) (xy 2.173167 3.191447) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "80fd09b1-0fe4-4092-8e76-8d566e0011ef") ) (fp_poly (pts (xy -1.320119 3.193486) (xy -1.295112 3.200982) (xy -1.28705 3.217451) (xy -1.286711 3.224886) (xy -1.285264 3.245594) (xy -1.275302 3.248845) (xy -1.248388 3.234648) (xy -1.232402 3.224948) (xy -1.181967 3.204175) (xy -1.121728 3.193904) (xy -1.058566 3.193114) (xy -0.999363 3.200786) (xy -0.950998 3.215898) (xy -0.920354 3.237432) (xy -0.914311 3.264366) (xy -0.917361 3.27166) (xy -0.939594 3.301937) (xy -0.97407 3.339175) (xy -0.980306 3.345195) (xy -1.013167 3.372875) (xy -1.04152 3.381818) (xy -1.081173 3.375576) (xy -1.097058 3.371429) (xy -1.146491 3.361467) (xy -1.181248 3.365947) (xy -1.2106 3.381746) (xy -1.237487 3.402949) (xy -1.25729 3.429614) (xy -1.271052 3.466827) (xy -1.279816 3.519673) (xy -1.284626 3.593237) (xy -1.286526 3.692605) (xy -1.286711 3.752601) (xy -1.286711 4.010526) (xy -1.453816 4.010526) (xy -1.453816 3.19171) (xy -1.370264 3.19171) (xy -1.320119 3.193486) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "9eb9d4d3-6d58-4631-8da8-409d8e9b9f66") ) (fp_poly (pts (xy 1.320131 2.198533) (xy 1.32171 2.321089) (xy 1.327481 2.414179) (xy 1.338991 2.481651) (xy 1.35779 2.527355) (xy 1.385426 2.555139) (xy 1.423448 2.568854) (xy 1.470526 2.572358) (xy 1.519832 2.568432) (xy 1.557283 2.554089) (xy 1.584428 2.525478) (xy 1.602815 2.478751) (xy 1.613993 2.410058) (xy 1.619511 2.31555) (xy 1.620921 2.198533) (xy 1.620921 1.938421) (xy 1.804736 1.938421) (xy 1.804736 2.740526) (xy 1.712828 2.740526) (xy 1.657422 2.738281) (xy 1.628891 2.730396) (xy 1.620921 2.715428) (xy 1.61612 2.702097) (xy 1.597014 2.704917) (xy 1.558504 2.723783) (xy 1.470239 2.752887) (xy 1.376623 2.750825) (xy 1.286921 2.719221) (xy 1.244204 2.694257) (xy 1.211621 2.667226) (xy 1.187817 2.633405) (xy 1.171439 2.588068) (xy 1.161131 2.526489) (xy 1.155541 2.443943) (xy 1.153312 2.335705) (xy 1.153026 2.252004) (xy 1.153026 1.938421) (xy 1.320131 1.938421) (xy 1.320131 2.198533) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "e89de430-152a-48a7-ba6a-7faf8e614b17") ) (fp_poly (pts (xy -1.002043 1.952226) (xy -0.960454 1.97209) (xy -0.920175 2.000784) (xy -0.88949 2.033809) (xy -0.867139 2.075931) (xy -0.851864 2.131915) (xy -0.842408 2.206528) (xy -0.837513 2.304535) (xy -0.835919 2.430702) (xy -0.835894 2.443914) (xy -0.835527 2.740526) (xy -1.019343 2.740526) (xy -1.019343 2.467081) (xy -1.019473 2.365777) (xy -1.020379 2.292353) (xy -1.022827 2.241271) (xy -1.027586 2.20699) (xy -1.035426 2.183971) (xy -1.047115 2.166673) (xy -1.063398 2.149581) (xy -1.120366 2.112857) (xy -1.182555 2.106042) (xy -1.241801 2.129261) (xy -1.262405 2.146543) (xy -1.27753 2.162791) (xy -1.28839 2.180191) (xy -1.29569 2.204212) (xy -1.300137 2.240322) (xy -1.302436 2.293988) (xy -1.303296 2.37068) (xy -1.303422 2.464043) (xy -1.303422 2.740526) (xy -1.487237 2.740526) (xy -1.487237 1.938421) (xy -1.395329 1.938421) (xy -1.340149 1.940603) (xy -1.31168 1.948351) (xy -1.303425 1.963468) (xy -1.303422 1.963916) (xy -1.299592 1.97872) (xy -1.282699 1.97704) (xy -1.249112 1.960773) (xy -1.172937 1.93684) (xy -1.0858 1.934178) (xy -1.002043 1.952226) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "990c283a-c6ae-4236-aa25-b876ffd18036") ) (fp_poly (pts (xy 2.946576 1.945419) (xy 3.043395 1.986549) (xy 3.07389 2.006571) (xy 3.112865 2.03734) (xy 3.137331 2.061533) (xy 3.141578 2.069413) (xy 3.129584 2.086899) (xy 3.098887 2.11657) (xy 3.074312 2.137279) (xy 3.007046 2.191336) (xy 2.95393 2.146642) (xy 2.912884 2.117789) (xy 2.872863 2.107829) (xy 2.827059 2.110261) (xy 2.754324 2.128345) (xy 2.704256 2.165881) (xy 2.673829 2.226562) (xy 2.660017 2.314081) (xy 2.660013 2.314136) (xy 2.661208 2.411958) (xy 2.679772 2.48373) (xy 2.716804 2.532595) (xy 2.74205 2.549143) (xy 2.809097 2.569749) (xy 2.880709 2.569762) (xy 2.943015 2.549768) (xy 2.957763 2.54) (xy 2.99475 2.515047) (xy 3.023668 2.510958) (xy 3.054856 2.52953) (xy 3.089336 2.562887) (xy 3.143912 2.619196) (xy 3.083318 2.669142) (xy 2.989698 2.725513) (xy 2.884125 2.753293) (xy 2.773798 2.751282) (xy 2.701343 2.732862) (xy 2.616656 2.68731) (xy 2.548927 2.61565) (xy 2.518157 2.565066) (xy 2.493236 2.492488) (xy 2.480766 2.400569) (xy 2.48067 2.300948) (xy 2.49287 2.205267) (xy 2.51729 2.125169) (xy 2.521136 2.116956) (xy 2.578093 2.036413) (xy 2.655209 1.977771) (xy 2.74639 1.942247) (xy 2.845543 1.931057) (xy 2.946576 1.945419) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "5f7d4bc9-3a38-4279-9725-d6f9e059f1e2") ) (fp_poly (pts (xy 0.811669 1.94831) (xy 0.896192 1.99434) (xy 0.962321 2.067006) (xy 0.993478 2.126106) (xy 1.006855 2.178305) (xy 1.015522 2.252719) (xy 1.019237 2.338442) (xy 1.017754 2.424569) (xy 1.010831 2.500193) (xy 1.002745 2.540584) (xy 0.975465 2.59584) (xy 0.92822 2.65453) (xy 0.871282 2.705852) (xy 0.814924 2.739005) (xy 0.81355 2.739531) (xy 0.743616 2.754018) (xy 0.660737 2.754377) (xy 0.581977 2.741188) (xy 0.551566 2.730617) (xy 0.473239 2.686201) (xy 0.417143 2.628007) (xy 0.380286 2.550965) (xy 0.35968 2.450001) (xy 0.355018 2.397116) (xy 0.355613 2.330663) (xy 0.534736 2.330663) (xy 0.54077 2.42763) (xy 0.558138 2.501523) (xy 0.58574 2.548736) (xy 0.605404 2.562237) (xy 0.655787 2.571651) (xy 0.715673 2.568864) (xy 0.767449 2.555316) (xy 0.781027 2.547862) (xy 0.816849 2.504451) (xy 0.840493 2.438014) (xy 0.850558 2.357161) (xy 0.845642 2.270502) (xy 0.834655 2.218349) (xy 0.803109 2.157951) (xy 0.753311 2.120197) (xy 0.693337 2.107143) (xy 0.631264 2.120849) (xy 0.583582 2.154372) (xy 0.558525 2.182031) (xy 0.5439 2.209294) (xy 0.536929 2.24619) (xy 0.534833 2.30275) (xy 0.534736 2.330663) (xy 0.355613 2.330663) (xy 0.356282 2.255994) (xy 0.379265 2.140271) (xy 0.423972 2.049941) (xy 0.490405 1.985) (xy 0.578565 1.945445) (xy 0.597495 1.940858) (xy 0.711266 1.93009) (xy 0.811669 1.94831) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "102ea9aa-8964-4c43-9812-b0e3db4e5e5b") ) (fp_poly (pts (xy 0.37413 3.195104) (xy 0.44022 3.200066) (xy 0.526626 3.459079) (xy 0.613031 3.718092) (xy 0.640124 3.626184) (xy 0.656428 3.569384) (xy 0.677875 3.492625) (xy 0.701035 3.408251) (xy 0.71328 3.362993) (xy 0.759344 3.19171) (xy 0.949387 3.19171) (xy 0.892582 3.371349) (xy 0.864607 3.459704) (xy 0.830813 3.566281) (xy 0.79552 3.677454) (xy 0.764013 3.776579) (xy 0.69225 4.002171) (xy 0.537286 4.012253) (xy 0.49527 3.873528) (xy 0.469359 3.787351) (xy 0.441083 3.692347) (xy 0.416369 3.608441) (xy 0.415394 3.605102) (xy 0.396935 3.548248) (xy 0.380649 3.509456) (xy 0.369242 3.494787) (xy 0.366898 3.496483) (xy 0.358671 3.519225) (xy 0.343038 3.56794) (xy 0.321904 3.636502) (xy 0.29717 3.718785) (xy 0.283787 3.764046) (xy 0.211311 4.010526) (xy 0.057495 4.010526) (xy -0.065469 3.622006) (xy -0.100012 3.513022) (xy -0.131479 3.414048) (xy -0.158384 3.329736) (xy -0.179241 3.264734) (xy -0.192562 3.223692) (xy -0.196612 3.211701) (xy -0.193406 3.199423) (xy -0.168235 3.194046) (xy -0.115854 3.194584) (xy -0.107655 3.19499) (xy -0.010518 3.200066) (xy 0.0531 3.434013) (xy 0.076484 3.519333) (xy 0.097381 3.594335) (xy 0.113951 3.652507) (xy 0.124354 3.687337) (xy 0.126276 3.693016) (xy 0.134241 3.686486) (xy 0.150304 3.652654) (xy 0.172621 3.596127) (xy 0.199345 3.52151) (xy 0.221937 3.454107) (xy 0.308041 3.190143) (xy 0.37413 3.195104) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "dfbfa149-dae0-4371-a0b2-b3e71983ae78") ) (fp_poly (pts (xy -3.373216 1.947104) (xy -3.285795 1.985754) (xy -3.21943 2.05029) (xy -3.174024 2.140812) (xy -3.149482 2.257418) (xy -3.147723 2.275624) (xy -3.146344 2.403984) (xy -3.164216 2.516496) (xy -3.20025 2.607688) (xy -3.219545 2.637022) (xy -3.286755 2.699106) (xy -3.37235 2.739316) (xy -3.46811 2.756003) (xy -3.565813 2.747517) (xy -3.640083 2.72138) (xy -3.703953 2.677335) (xy -3.756154 2.619587) (xy -3.757057 2.618236) (xy -3.778256 2.582593) (xy -3.792033 2.546752) (xy -3.800376 2.501519) (xy -3.805273 2.437701) (xy -3.807431 2.385368) (xy -3.808329 2.33791) (xy -3.641257 2.33791) (xy -3.639624 2.385154) (xy -3.633696 2.448046) (xy -3.623239 2.488407) (xy -3.604381 2.517122) (xy -3.586719 2.533896) (xy -3.524106 2.569016) (xy -3.458592 2.57371) (xy -3.397579 2.54844) (xy -3.367072 2.520124) (xy -3.345089 2.491589) (xy -3.332231 2.464284) (xy -3.326588 2.42875) (xy -3.326249 2.375524) (xy -3.327988 2.326506) (xy -3.331729 2.256482) (xy -3.337659 2.211064) (xy -3.348347 2.18144) (xy -3.366361 2.158797) (xy -3.380637 2.145855) (xy -3.440349 2.11186) (xy -3.504766 2.110165) (xy -3.558781 2.130301) (xy -3.60486 2.172352) (xy -3.632311 2.241428) (xy -3.641257 2.33791) (xy -3.808329 2.33791) (xy -3.809401 2.281299) (xy -3.806036 2.203468) (xy -3.795955 2.14493) (xy -3.777774 2.098737) (xy -3.75011 2.057942) (xy -3.739854 2.045828) (xy -3.675722 1.985474) (xy -3.606934 1.95022) (xy -3.522811 1.93545) (xy -3.481791 1.934243) (xy -3.373216 1.947104) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "c7708055-f586-4947-ba06-b34d07770b6a") ) (fp_poly (pts (xy -0.267369 4.010526) (xy -0.359277 4.010526) (xy -0.412623 4.008962) (xy -0.440407 4.002485) (xy -0.45041 3.988418) (xy -0.451185 3.978906) (xy -0.452872 3.959832) (xy -0.46351 3.956174) (xy -0.491465 3.967932) (xy -0.513205 3.978906) (xy -0.596668 4.004911) (xy -0.687396 4.006416) (xy -0.761158 3.987021) (xy -0.829846 3.940165) (xy -0.882206 3.871004) (xy -0.910878 3.789427) (xy -0.911608 3.784866) (xy -0.915868 3.735101) (xy -0.917986 3.663659) (xy -0.917816 3.609626) (xy -0.73528 3.609626) (xy -0.731051 3.681441) (xy -0.721432 3.740634) (xy -0.70841 3.77406) (xy -0.659144 3.81974) (xy -0.60065 3.836115) (xy -0.540329 3.822873) (xy -0.488783 3.783373) (xy -0.469262 3.756807) (xy -0.457848 3.725106) (xy -0.452502 3.678832) (xy -0.451185 3.609328) (xy -0.453542 3.540499) (xy -0.459767 3.480026) (xy -0.468592 3.439556) (xy -0.470063 3.435929) (xy -0.505653 3.392802) (xy -0.5576 3.369124) (xy -0.615722 3.365301) (xy -0.66984 3.381738) (xy -0.709774 3.41884) (xy -0.713917 3.426222) (xy -0.726884 3.471239) (xy -0.733948 3.535967) (xy -0.73528 3.609626) (xy -0.917816 3.609626) (xy -0.917729 3.58223) (xy -0.916528 3.538405) (xy -0.908355 3.429988) (xy -0.89137 3.348588) (xy -0.863113 3.288412) (xy -0.821128 3.243666) (xy -0.780368 3.2174) (xy -0.723419 3.198935) (xy -0.652589 3.192602) (xy -0.580059 3.19776) (xy -0.518014 3.213769) (xy -0.485232 3.23292) (xy -0.451185 3.263732) (xy -0.451185 2.87421) (xy -0.267369 2.87421) (xy -0.267369 4.010526) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "b54c4c55-ae17-4882-8c92-5b206e809fe1") ) (fp_poly (pts (xy 3.558784 1.935554) (xy 3.601574 1.945949) (xy 3.683609 1.984013) (xy 3.753757 2.042149) (xy 3.802305 2.111852) (xy 3.808975 2.127502) (xy 3.818124 2.168496) (xy 3.824529 2.229138) (xy 3.82671 2.29043) (xy 3.82671 2.406316) (xy 3.584407 2.406316) (xy 3.484471 2.406693) (xy 3.414069 2.408987) (xy 3.369313 2.414938) (xy 3.346315 2.426285) (xy 3.341189 2.444771) (xy 3.350048 2.472136) (xy 3.365917 2.504155) (xy 3.410184 2.557592) (xy 3.471699 2.584215) (xy 3.546885 2.583347) (xy 3.632053 2.554371) (xy 3.705659 2.518611) (xy 3.766734 2.566904) (xy 3.82781 2.615197) (xy 3.770351 2.668285) (xy 3.693641 2.718445) (xy 3.599302 2.748688) (xy 3.497827 2.757151) (xy 3.399711 2.741974) (xy 3.383881 2.736824) (xy 3.297647 2.691791) (xy 3.233501 2.624652) (xy 3.190091 2.533405) (xy 3.166064 2.416044) (xy 3.165784 2.413529) (xy 3.163633 2.285627) (xy 3.172329 2.239997) (xy 3.342105 2.239997) (xy 3.357697 2.247013) (xy 3.400029 2.252388) (xy 3.462434 2.255457) (xy 3.501981 2.255921) (xy 3.575728 2.25563) (xy 3.62184 2.253783) (xy 3.6461 2.248912) (xy 3.654294 2.239555) (xy 3.652206 2.224245) (xy 3.650455 2.218322) (xy 3.62056 2.162668) (xy 3.573542 2.117815) (xy 3.532049 2.098105) (xy 3.476926 2.099295) (xy 3.421068 2.123875) (xy 3.374212 2.16457) (xy 3.346094 2.214108) (xy 3.342105 2.239997) (xy 3.172329 2.239997) (xy 3.185074 2.173133) (xy 3.227611 2.078727) (xy 3.288747 2.005088) (xy 3.365985 1.954893) (xy 3.45683 1.930822) (xy 3.558784 1.935554) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "45102070-dc84-4792-8288-01b6a90b72e6") ) (fp_poly (pts (xy 0.018628 1.935547) (xy 0.081908 1.947548) (xy 0.147557 1.972648) (xy 0.154572 1.975848) (xy 0.204356 2.002026) (xy 0.238834 2.026353) (xy 0.249978 2.041937) (xy 0.239366 2.067353) (xy 0.213588 2.104853) (xy 0.202146 2.118852) (xy 0.154992 2.173954) (xy 0.094201 2.138086) (xy 0.036347 2.114192) (xy -0.0305 2.10142) (xy -0.094606 2.100613) (xy -0.144236 2.112615) (xy -0.156146 2.120105) (xy -0.178828 2.15445) (xy -0.181584 2.194013) (xy -0.164612 2.22492) (xy -0.154573 2.230913) (xy -0.12449 2.238357) (xy -0.071611 2.247106) (xy -0.006425 2.255467) (xy 0.0056 2.256778) (xy 0.110297 2.274888) (xy 0.186232 2.305651) (xy 0.236592 2.351907) (xy 0.264564 2.416497) (xy 0.273278 2.495387) (xy 0.26124 2.585065) (xy 0.222151 2.655486) (xy 0.155855 2.706777) (xy 0.062194 2.739067) (xy -0.041777 2.751807) (xy -0.126562 2.751654) (xy -0.195335 2.740083) (xy -0.242303 2.724109) (xy -0.30165 2.696275) (xy -0.356494 2.663973) (xy -0.375987 2.649755) (xy -0.426119 2.608835) (xy -0.305197 2.486477) (xy -0.236457 2.531967) (xy -0.167512 2.566133) (xy -0.093889 2.584004) (xy -0.023117 2.585889) (xy 0.037274 2.572101) (xy 0.079757 2.542949) (xy 0.093474 2.518352) (xy 0.091417 2.478904) (xy 0.05733 2.448737) (xy -0.008692 2.427906) (xy -0.081026 2.418279) (xy -0.192348 2.39991) (xy -0.275048 2.365254) (xy -0.330235 2.313297) (xy -0.359012 2.243023) (xy -0.362999 2.159707) (xy -0.343307 2.072681) (xy -0.298411 2.006902) (xy -0.227909 1.962068) (xy -0.131399 1.937879) (xy -0.0599 1.933137) (xy 0.018628 1.935547) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "3d723772-50d5-4f46-81bc-f44c924ce13f") ) (fp_poly (pts (xy 2.701193 3.196078) (xy 2.781068 3.216845) (xy 2.847962 3.259705) (xy 2.880351 3.291723) (xy 2.933445 3.367413) (xy 2.963873 3.455216) (xy 2.974327 3.56315) (xy 2.97438 3.571875) (xy 2.974473 3.659605) (xy 2.469534 3.659605) (xy 2.480298 3.705559) (xy 2.499732 3.747178) (xy 2.533745 3.790544) (xy 2.54086 3.797467) (xy 2.602003 3.834935) (xy 2.671729 3.841289) (xy 2.751987 3.816638) (xy 2.765592 3.81) (xy 2.807319 3.789819) (xy 2.835268 3.778321) (xy 2.840145 3.777258) (xy 2.857168 3.787583) (xy 2.889633 3.812845) (xy 2.906114 3.82665) (xy 2.940264 3.858361) (xy 2.951478 3.879299) (xy 2.943695 3.89856) (xy 2.939535 3.903827) (xy 2.911357 3.926878) (xy 2.864862 3.954892) (xy 2.832434 3.971246) (xy 2.740385 4.000059) (xy 2.638476 4.009395) (xy 2.541963 3.998332) (xy 2.514934 3.990412) (xy 2.431276 3.945581) (xy 2.369266 3.876598) (xy 2.328545 3.782794) (xy 2.308755 3.663498) (xy 2.306582 3.601118) (xy 2.312926 3.510298) (xy 2.473157 3.510298) (xy 2.488655 3.517012) (xy 2.530312 3.52228) (xy 2.590876 3.525389) (xy 2.631907 3.525921) (xy 2.705711 3.525408) (xy 2.752293 3.523006) (xy 2.777848 3.517422) (xy 2.788569 3.507361) (xy 2.790657 3.492763) (xy 2.776331 3.447796) (xy 2.740262 3.403353) (xy 2.692815 3.369242) (xy 2.645349 3.355288) (xy 2.580879 3.367666) (xy 2.52507 3.403452) (xy 2.486374 3.455033) (xy 2.473157 3.510298) (xy 2.312926 3.510298) (xy 2.315821 3.468866) (xy 2.344336 3.363498) (xy 2.392729 3.284178) (xy 2.461604 3.230071) (xy 2.551565 3.200343) (xy 2.6003 3.194618) (xy 2.701193 3.196078) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4bfac339-896d-44b4-abce-6301e30c53f3") ) (fp_poly (pts (xy -1.802982 1.957027) (xy -1.78633 1.964866) (xy -1.728695 2.007086) (xy -1.674195 2.0687) (xy -1.633501 2.136543) (xy -1.621926 2.167734) (xy -1.611366 2.223449) (xy -1.605069 2.290781) (xy -1.604304 2.318585) (xy -1.604211 2.406316) (xy -2.10915 2.406316) (xy -2.098387 2.45227) (xy -2.071967 2.50662) (xy -2.025778 2.553591) (xy -1.970828 2.583848) (xy -1.935811 2.590131) (xy -1.888323 2.582506) (xy -1.831665 2.563383) (xy -1.812418 2.554584) (xy -1.741241 2.519036) (xy -1.680498 2.565367) (xy -1.645448 2.596703) (xy -1.626798 2.622567) (xy -1.625853 2.630158) (xy -1.642515 2.648556) (xy -1.67903 2.676515) (xy -1.712172 2.698327) (xy -1.801607 2.737537) (xy -1.901871 2.755285) (xy -2.001246 2.75067) (xy -2.080461 2.726551) (xy -2.16212 2.674884) (xy -2.220151 2.606856) (xy -2.256454 2.518843) (xy -2.272928 2.407216) (xy -2.274389 2.356138) (xy -2.268543 2.239091) (xy -2.267825 2.235686) (xy -2.100511 2.235686) (xy -2.095903 2.246662) (xy -2.076964 2.252715) (xy -2.037902 2.25531) (xy -1.972923 2.25591) (xy -1.947903 2.255921) (xy -1.871779 2.255014) (xy -1.823504 2.25172) (xy -1.79754 2.245181) (xy -1.788352 2.234537) (xy -1.788027 2.231119) (xy -1.798513 2.203956) (xy -1.824758 2.165903) (xy -1.836041 2.152579) (xy -1.877928 2.114896) (xy -1.921591 2.10008) (xy -1.945115 2.098842) (xy -2.008757 2.114329) (xy -2.062127 2.15593) (xy -2.095981 2.216353) (xy -2.096581 2.218322) (xy -2.100511 2.235686) (xy -2.267825 2.235686) (xy -2.249101 2.146928) (xy -2.214078 2.07319) (xy -2.171244 2.020848) (xy -2.092052 1.964092) (xy -1.99896 1.933762) (xy -1.899945 1.931021) (xy -1.802982 1.957027) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "daf2fb60-41b3-4d4d-9894-f73e7813ee45") ) (fp_poly (pts (xy 1.379992 3.196673) (xy 1.450427 3.21378) (xy 1.470787 3.222844) (xy 1.510253 3.246583) (xy 1.540541 3.273321) (xy 1.562952 3.307699) (xy 1.578786 3.35436) (xy 1.589343 3.417946) (xy 1.595924 3.503099) (xy 1.599828 3.614462) (xy 1.60131 3.688849) (xy 1.606765 4.010526) (xy 1.51358 4.010526) (xy 1.457047 4.008156) (xy 1.427922 4.000055) (xy 1.420394 3.986451) (xy 1.41642 3.971741) (xy 1.398652 3.974554) (xy 1.37444 3.986348) (xy 1.313828 4.004427) (xy 1.235929 4.009299) (xy 1.153995 4.00133) (xy 1.081281 3.980889) (xy 1.074759 3.978051) (xy 1.008302 3.931365) (xy 0.964491 3.866464) (xy 0.944332 3.7906) (xy 0.945872 3.763344) (xy 1.110345 3.763344) (xy 1.124837 3.800024) (xy 1.167805 3.826309) (xy 1.237129 3.840417) (xy 1.274177 3.84229) (xy 1.335919 3.837494) (xy 1.37696 3.818858) (xy 1.386973 3.81) (xy 1.4141 3.761806) (xy 1.420394 3.718092) (xy 1.420394 3.659605) (xy 1.33893 3.659605) (xy 1.244234 3.664432) (xy 1.177813 3.679613) (xy 1.135846 3.7062) (xy 1.126449 3.718052) (xy 1.110345 3.763344) (xy 0.945872 3.763344) (xy 0.948829 3.711026) (xy 0.978985 3.634995) (xy 1.020131 3.583612) (xy 1.045052 3.561397) (xy 1.069448 3.546798) (xy 1.101191 3.537897) (xy 1.148152 3.532775) (xy 1.218204 3.529515) (xy 1.24599 3.528577) (xy 1.420394 3.522879) (xy 1.420138 3.470091) (xy 1.413384 3.414603) (xy 1.388964 3.381052) (xy 1.33963 3.359618) (xy 1.338306 3.359236) (xy 1.26836 3.350808) (xy 1.199914 3.361816) (xy 1.149047 3.388585) (xy 1.128637 3.401803) (xy 1.106654 3.399974) (xy 1.072826 3.380824) (xy 1.052961 3.367308) (xy 1.014106 3.338432) (xy 0.990038 3.316786) (xy 0.986176 3.310589) (xy 1.002079 3.278519) (xy 1.049065 3.240219) (xy 1.069473 3.227297) (xy 1.128143 3.205041) (xy 1.207212 3.192432) (xy 1.295041 3.1896) (xy 1.379992 3.196673) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "442d643c-d721-464e-a8cb-8c1673df9930") ) (fp_poly (pts (xy -1.839543 3.198184) (xy -1.76093 3.21916) (xy -1.701084 3.25718) (xy -1.658853 3.306978) (xy -1.645725 3.32823) (xy -1.636032 3.350492) (xy -1.629256 3.37897) (xy -1.624877 3.418871) (xy -1.622376 3.475401) (xy -1.621232 3.553767) (xy -1.620928 3.659176) (xy -1.620922 3.687142) (xy -1.620922 4.010526) (xy -1.701132 4.010526) (xy -1.752294 4.006943) (xy -1.790123 3.997866) (xy -1.799601 3.992268) (xy -1.825512 3.982606) (xy -1.851976 3.992268) (xy -1.895548 4.00433) (xy -1.95884 4.009185) (xy -2.02899 4.007078) (xy -2.09314 3.998256) (xy -2.130593 3.986937) (xy -2.203067 3.940412) (xy -2.24836 3.875846) (xy -2.268722 3.79) (xy -2.268912 3.787796) (xy -2.267125 3.749713) (xy -2.105527 3.749713) (xy -2.091399 3.79303) (xy -2.068388 3.817408) (xy -2.022196 3.835845) (xy -1.961225 3.843205) (xy -1.899051 3.839583) (xy -1.849249 3.825074) (xy -1.835297 3.815765) (xy -1.810915 3.772753) (xy -1.804737 3.723857) (xy -1.804737 3.659605) (xy -1.897182 3.659605) (xy -1.985005 3.666366) (xy -2.051582 3.68552) (xy -2.092998 3.715376) (xy -2.105527 3.749713) (xy -2.267125 3.749713) (xy -2.26451 3.694004) (xy -2.233576 3.619847) (xy -2.175419 3.563767) (xy -2.16738 3.558665) (xy -2.132837 3.542055) (xy -2.090082 3.531996) (xy -2.030314 3.527107) (xy -1.95931 3.525983) (xy -1.804737 3.525921) (xy -1.804737 3.461125) (xy -1.811294 3.41085) (xy -1.828025 3.377169) (xy -1.829984 3.375376) (xy -1.867217 3.360642) (xy -1.92342 3.354931) (xy -1.985533 3.357737) (xy -2.04049 3.368556) (xy -2.073101 3.384782) (xy -2.090772 3.39778) (xy -2.109431 3.400262) (xy -2.135181 3.389613) (xy -2.174127 3.363218) (xy -2.23237 3.318465) (xy -2.237716 3.314273) (xy -2.234977 3.29876) (xy -2.212124 3.27296) (xy -2.177391 3.244289) (xy -2.13901 3.220166) (xy -2.126952 3.21447) (xy -2.082966 3.203103) (xy -2.018513 3.194995) (xy -1.946503 3.191743) (xy -1.943136 3.191736) (xy -1.839543 3.198184) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "9ded2c3c-3ddf-423b-ba27-6a804931fff6") ) (fp_poly (pts (xy -2.53664 1.952468) (xy -2.501408 1.969874) (xy -2.45796 2.000206) (xy -2.426294 2.033283) (xy -2.404606 2.074817) (xy -2.391097 2.130522) (xy -2.383962 2.206111) (xy -2.3814 2.307296) (xy -2.38125 2.350797) (xy -2.381688 2.446135) (xy -2.383504 2.514271) (xy -2.387455 2.561418) (xy -2.394298 2.59379) (xy -2.404789 2.6176) (xy -2.415704 2.633843) (xy -2.485381 2.702952) (xy -2.567434 2.744521) (xy -2.65595 2.757023) (xy -2.745019 2.738934) (xy -2.773237 2.726142) (xy -2.84079 2.690931) (xy -2.84079 3.2427) (xy -2.791488 3.217205) (xy -2.726527 3.19748) (xy -2.64668 3.192427) (xy -2.566948 3.201756) (xy -2.506735 3.222714) (xy -2.456792 3.262627) (xy -2.414119 3.319741) (xy -2.41091 3.325605) (xy -2.397378 3.353227) (xy -2.387495 3.381068) (xy -2.380691 3.414794) (xy -2.376399 3.460071) (xy -2.374049 3.522562) (xy -2.373072 3.607935) (xy -2.372895 3.70401) (xy -2.372895 4.010526) (xy -2.556711 4.010526) (xy -2.556711 3.445339) (xy -2.608125 3.402077) (xy -2.661534 3.367472) (xy -2.712112 3.36118) (xy -2.76297 3.377372) (xy -2.790075 3.393227) (xy -2.810249 3.41581) (xy -2.824597 3.44994) (xy -2.834224 3.500434) (xy -2.840237 3.572111) (xy -2.84374 3.669788) (xy -2.844974 3.734802) (xy -2.849145 4.002171) (xy -2.936875 4.007222) (xy -3.024606 4.012273) (xy -3.024606 2.353101) (xy -2.84079 2.353101) (xy -2.836104 2.4456) (xy -2.820312 2.509809) (xy -2.790817 2.549759) (xy -2.74502 2.56948) (xy -2.69875 2.573421) (xy -2.646372 2.568892) (xy -2.61161 2.551069) (xy -2.589872 2.527519) (xy -2.57276 2.502189) (xy -2.562573 2.473969) (xy -2.55804 2.434431) (xy -2.557891 2.375142) (xy -2.559416 2.325498) (xy -2.562919 2.25071) (xy -2.568133 2.201611) (xy -2.576913 2.170467) (xy -2.591114 2.149545) (xy -2.604516 2.137452) (xy -2.660513 2.111081) (xy -2.726789 2.106822) (xy -2.764844 2.115906) (xy -2.802523 2.148196) (xy -2.827481 2.211006) (xy -2.839578 2.303894) (xy -2.84079 2.353101) (xy -3.024606 2.353101) (xy -3.024606 1.938421) (xy -2.932698 1.938421) (xy -2.877517 1.940603) (xy -2.849048 1.948351) (xy -2.840794 1.963468) (xy -2.84079 1.963916) (xy -2.83696 1.97872) (xy -2.820067 1.977039) (xy -2.786481 1.960772) (xy -2.708222 1.935887) (xy -2.620173 1.933271) (xy -2.53664 1.952468) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "2fa1efc2-443a-4069-9828-50e0b6fc5e17") ) (fp_poly (pts (xy 0.500964 -3.601424) (xy 0.576513 -3.200678) (xy 1.134041 -2.970846) (xy 1.468465 -3.198252) (xy 1.562122 -3.261569) (xy 1.646782 -3.318104) (xy 1.718495 -3.365273) (xy 1.773311 -3.400498) (xy 1.80728 -3.421195) (xy 1.81653 -3.425658) (xy 1.833195 -3.41418) (xy 1.868806 -3.382449) (xy 1.919371 -3.334517) (xy 1.9809 -3.274438) (xy 2.049399 -3.206267) (xy 2.120879 -3.134055) (xy 2.191347 -3.061858) (xy 2.256811 -2.993727) (xy 2.31328 -2.933717) (xy 2.356763 -2.885881) (xy 2.383268 -2.854273) (xy 2.389605 -2.843695) (xy 2.380486 -2.824194) (xy 2.35492 -2.781469) (xy 2.315597 -2.719702) (xy 2.265203 -2.643069) (xy 2.206427 -2.555752) (xy 2.172368 -2.505948) (xy 2.110289 -2.415007) (xy 2.055126 -2.332941) (xy 2.009554 -2.263837) (xy 1.97625 -2.211778) (xy 1.95789 -2.18085) (xy 1.955131 -2.17435) (xy 1.961385 -2.155879) (xy 1.978434 -2.112828) (xy 2.003703 -2.051251) (xy 2.034622 -1.977201) (xy 2.068618 -1.89673) (xy 2.103118 -1.815893) (xy 2.135551 -1.740742) (xy 2.163343 -1.677329) (xy 2.183923 -1.631707) (xy 2.194719 -1.609931) (xy 2.195356 -1.609074) (xy 2.212307 -1.604916) (xy 2.257451 -1.595639) (xy 2.32611 -1.582156) (xy 2.413602 -1.565379) (xy 2.51525 -1.546219) (xy 2.574556 -1.53517) (xy 2.683172 -1.51449) (xy 2.781277 -1.494811) (xy 2.863909 -1.477211) (xy 2.926104 -1.462767) (xy 2.962899 -1.452554) (xy 2.970296 -1.449314) (xy 2.97754 -1.427383) (xy 2.983385 -1.377853) (xy 2.987835 -1.306515) (xy 2.990893 -1.219161) (xy 2.992565 -1.121583) (xy 2.992853 -1.019574) (xy 2.991761 -0.918925) (xy 2.989294 -0.825428) (xy 2.985456 -0.744875) (xy 2.98025 -0.683058) (xy 2.973681 -0.64577) (xy 2.969741 -0.638007) (xy 2.946188 -0.628702) (xy 2.896282 -0.6154) (xy 2.826623 -0.599663) (xy 2.743813 -0.583054) (xy 2.714905 -0.577681) (xy 2.575531 -0.552152) (xy 2.465436 -0.531592) (xy 2.380982 -0.515185) (xy 2.31853 -0.502113) (xy 2.274444 -0.491559) (xy 2.245085 -0.482706) (xy 2.226815 -0.474737) (xy 2.215998 -0.466835) (xy 2.214485 -0.465273) (xy 2.199377 -0.440114) (xy 2.176329 -0.39115) (xy 2.147644 -0.324379) (xy 2.115622 -0.245795) (xy 2.082565 -0.161393) (xy 2.050773 -0.07717) (xy 2.022549 0.000879) (xy 2.000193 0.066759) (xy 1.986007 0.114473) (xy 1.982293 0.138027) (xy 1.982602 0.138852) (xy 1.995189 0.158104) (xy 2.023744 0.200463) (xy 2.065267 0.261521) (xy 2.116756 0.336868) (xy 2.175211 0.422096) (xy 2.191858 0.446315) (xy 2.251215 0.534123) (xy 2.303447 0.614238) (xy 2.345708 0.682062) (xy 2.375153 0.732993) (xy 2.388937 0.762431) (xy 2.389605 0.766048) (xy 2.378024 0.785057) (xy 2.346024 0.822714) (xy 2.297718 0.874973) (xy 2.23722 0.937786) (xy 2.168644 1.007106) (xy 2.096104 1.078885) (xy 2.023712 1.149077) (xy 1.955584 1.213635) (xy 1.895832 1.26851) (xy 1.848571 1.309656) (xy 1.817913 1.333026) (xy 1.809432 1.336842) (xy 1.789691 1.327855) (xy 1.749274 1.303616) (xy 1.694763 1.268209) (xy 1.652823 1.239711) (xy 1.576829 1.187418) (xy 1.486834 1.125845) (xy 1.396564 1.06437) (xy 1.348032 1.031469) (xy 1.183762 0.920359) (xy 1.045869 0.994916) (xy 0.983049 1.027578) (xy 0.929629 1.052966) (xy 0.893484 1.067446) (xy 0.884284 1.06946) (xy 0.873221 1.054584) (xy 0.851394 1.012547) (xy 0.820434 0.947227) (xy 0.78197 0.8625) (xy 0.737632 0.762245) (xy 0.689047 0.650339) (xy 0.637846 0.530659) (xy 0.585659 0.407084) (xy 0.534113 0.283491) (xy 0.48484 0.163757) (xy 0.439467 0.051759) (xy 0.399625 -0.048623) (xy 0.366942 -0.133514) (xy 0.343049 -0.199035) (xy 0.329574 -0.24131) (xy 0.327406 -0.255828) (xy 0.344583 -0.274347) (xy 0.38219 -0.30441) (xy 0.432366 -0.339768) (xy 0.436578 -0.342566) (xy 0.566264 -0.446375) (xy 0.670834 -0.567485) (xy 0.749381 -0.702024) (xy 0.800999 -0.846118) (xy 0.824782 -0.995895) (xy 0.819823 -1.147483) (xy 0.785217 -1.297008) (xy 0.720057 -1.4406) (xy 0.700886 -1.472016) (xy 0.601174 -1.598875) (xy 0.483377 -1.700745) (xy 0.351571 -1.777096) (xy 0.209833 -1.827398) (xy 0.062242 -1.851121) (xy -0.087127 -1.847735) (xy -0.234197 -1.816712) (xy -0.374889 -1.75752) (xy -0.505127 -1.669631) (xy -0.545414 -1.633958) (xy -0.647945 -1.522294) (xy -0.722659 -1.404743) (xy -0.77391 -1.27298) (xy -0.802454 -1.142493) (xy -0.8095 -0.995784) (xy -0.786004 -0.848347) (xy -0.734351 -0.705166) (xy -0.656929 -0.571223) (xy -0.556125 -0.451502) (xy -0.434324 -0.350986) (xy -0.418316 -0.340391) (xy -0.367602 -0.305694) (xy -0.32905 -0.27563) (xy -0.310619 -0.256435) (xy -0.310351 -0.255828) (xy -0.314308 -0.235064) (xy -0.329993 -0.187938) (xy -0.355778 -0.118327) (xy -0.390031 -0.030107) (xy -0.431123 0.072844) (xy -0.477424 0.18665) (xy -0.527304 0.307435) (xy -0.579133 0.431321) (xy -0.631281 0.554432) (xy -0.682118 0.672891) (xy -0.730013 0.782823) (xy -0.773338 0.880349) (xy -0.810462 0.961593) (xy -0.839756 1.022679) (xy -0.859588 1.05973) (xy -0.867574 1.06946) (xy -0.891979 1.061883) (xy -0.937642 1.04156) (xy -0.99669 1.012125) (xy -1.02916 0.994916) (xy -1.167053 0.920359) (xy -1.331323 1.031469) (xy -1.415179 1.08839) (xy -1.506987 1.15103) (xy -1.59302 1.210011) (xy -1.636113 1.239711) (xy -1.696723 1.28041) (xy -1.748045 1.312663) (xy -1.783385 1.332384) (xy -1.794863 1.336554) (xy -1.81157 1.325307) (xy -1.848546 1.293911) (xy -1.902205 1.245624) (xy -1.968962 1.183708) (xy -2.045234 1.111421) (xy -2.093473 1.065008) (xy -2.177867 0.982087) (xy -2.250803 0.90792) (xy -2.309331 0.84568) (xy -2.350503 0.798541) (xy -2.371372 0.769673) (xy -2.373374 0.763815) (xy -2.364083 0.741532) (xy -2.338409 0.696477) (xy -2.2992 0.633211) (xy -2.249303 0.556295) (xy -2.191567 0.470292) (xy -2.175149 0.446315) (xy -2.115323 0.35917) (xy -2.06165 0.28071) (xy -2.01713 0.215345) (xy -1.984765 0.167484) (xy -1.967555 0.141535) (xy -1.965893 0.138852) (xy -1.968379 0.118172) (xy -1.981577 0.072704) (xy -2.003186 0.008444) (xy -2.030904 -0.068613) (xy -2.06243 -0.152471) (xy -2.095463 -0.237134) (xy -2.127701 -0.316608) (xy -2.156843 -0.384896) (xy -2.180588 -0.436003) (xy -2.196635 -0.463933) (xy -2.197775 -0.465273) (xy -2.207588 -0.473255) (xy -2.224161 -0.481149) (xy -2.251132 -0.489771) (xy -2.292139 -0.499938) (xy -2.35082 -0.512469) (xy -2.430813 -0.528179) (xy -2.535755 -0.547887) (xy -2.669285 -0.572408) (xy -2.698196 -0.577681) (xy -2.783882 -0.594236) (xy -2.858582 -0.610431) (xy -2.915694 -0.624704) (xy -2.948617 -0.635492) (xy -2.953031 -0.638007) (xy -2.960306 -0.660304) (xy -2.966219 -0.710131) (xy -2.970766 -0.781696) (xy -2.973945 -0.869207) (xy -2.975749 -0.966872) (xy -2.976177 -1.068899) (xy -2.975223 -1.169497) (xy -2.972884 -1.262873) (xy -2.969156 -1.343235) (xy -2.964034 -1.404791) (xy -2.957516 -1.44175) (xy -2.953586 -1.449314) (xy -2.931708 -1.456944) (xy -2.881891 -1.469358) (xy -2.809097 -1.485478) (xy -2.718289 -1.504227) (xy -2.614431 -1.524529) (xy -2.557846 -1.53517) (xy -2.450486 -1.55524) (xy -2.354746 -1.57342) (xy -2.275306 -1.588801) (xy -2.216846 -1.600469) (xy -2.184045 -1.607512) (xy -2.178646 -1.609074) (xy -2.169522 -1.626678) (xy -2.150235 -1.669082) (xy -2.123355 -1.730228) (xy -2.091454 -1.804057) (xy -2.057102 -1.884511) (xy -2.022871 -1.965532) (xy -1.991331 -2.041063) (xy -1.965054 -2.105045) (xy -1.946611 -2.15142) (xy -1.938571 -2.174131) (xy -1.938422 -2.175124) (xy -1.947535 -2.193039) (xy -1.973086 -2.234267) (xy -2.012388 -2.294709) (xy -2.062757 -2.370269) (xy -2.121506 -2.456848) (xy -2.155658 -2.506579) (xy -2.21789 -2.597764) (xy -2.273164 -2.680551) (xy -2.318782 -2.750751) (xy -2.352048 -2.804176) (xy -2.370264 -2.836639) (xy -2.372895 -2.843917) (xy -2.361586 -2.860855) (xy -2.330319 -2.897022) (xy -2.28309 -2.948365) (xy -2.223892 -3.010833) (xy -2.156719 -3.080374) (xy -2.085566 -3.152935) (xy -2.014426 -3.224465) (xy -1.947293 -3.290913) (xy -1.888161 -3.348226) (xy -1.841025 -3.392353) (xy -1.809877 -3.419241) (xy -1.799457 -3.425658) (xy -1.782491 -3.416635) (xy -1.741911 -3.391285) (xy -1.681663 -3.35219) (xy -1.605693 -3.301929) (xy -1.517946 -3.243083) (xy -1.451756 -3.198252) (xy -1.117332 -2.970846) (xy -0.838567 -3.085762) (xy -0.559803 -3.200678) (xy -0.484254 -3.601424) (xy -0.408706 -4.002171) (xy 0.425415 -4.002171) (xy 0.500964 -3.601424) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "5faca64b-9567-4c8c-b98f-d891ec7c4773") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "6b3f8bcc-3de8-4f39-8ed0-7c34895de042") (at 111.5 67.8 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R17" (at 3.15 0.15 90) (layer "F.SilkS") (uuid "67958e06-8643-4fe0-9eba-d4366d262cb3") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "5332e1cc-6c91-43c7-b848-bb3c6a3c05a0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ac0354d6-d556-48da-a2b6-5f660d990c68") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "aad98e03-12e8-4bf2-b562-6f6256de3807") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "21f39ff2-bd85-46fd-8ca7-9dad100c4641") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 223.6 129.6 90) (layer "F.Fab") (hide yes) (uuid "39f79c32-25e2-4fa1-9f4c-87fb4c2e936c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2f6e17f3-8ffc-462d-9a50-12f07e408fbd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/ba9485af-39b4-4a7f-afda-f544d55bea86") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "44c4a11f-6416-4388-910f-92880e3641d5") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8417cf95-c58e-4a9e-9b38-e81ad0e2a256") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "07051f70-d267-441d-93ef-2a24bdc622ae") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "551b71c7-4f0f-405d-ac9e-db644a5a9f6a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9569b20e-12e7-4a2a-acff-6d888ef9ca75") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bd04712d-90cf-4523-a4d6-c30668f749d1") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff913545-e164-44aa-81af-df92f454a470") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6fc44894-3ce5-4659-b127-637c386d8305") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7d7d2321-cd10-40c2-9f7b-2fe87164f9c2") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e040d7bc-84df-4b27-a70e-534bae3c718d") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "35018c5b-a28a-4db2-a62a-679a2a02156c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 26 "FAN2_PWR") (pintype "passive") (uuid "724fc04d-1468-435c-9fe5-d12b7bee921f") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 67 "Net-(D11-A)") (pintype "passive") (uuid "6b0cc93b-fd14-4ef4-8724-cae76727826b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "6be87dba-b1c4-47bc-a328-c3cb6b6b5275") (at 68.84375 117.4 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R55" (at 3.1 -0.1 0) (layer "F.SilkS") (uuid "415e59e0-b032-48c9-9af0-eb16d611c4ab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 0) (layer "F.Fab") (uuid "1014e644-48c7-4423-a1fc-098ffd36cd5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e907c0da-7c0d-4fc5-b689-ad42fa1b9778") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "212f252a-730e-4949-b508-90a24c4dd679") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b1a79bb6-8d6f-45a5-a712-0f4f77b10aab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 127.8 234.8 0) (layer "F.Fab") (hide yes) (uuid "b9120731-81fb-40dd-b912-8b13470d8c03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fb383510-8002-41f8-a8ed-d86711147b36") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/72e0c837-1ab2-470c-91ad-f34c0c878b4f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7aca23f0-e387-4cb1-a6f2-101d50196559") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ba6200d6-06da-4d36-8849-7fa6bfd0babd") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "de19506f-aa02-46c5-b949-aecfdec6a7b6") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ac293c5-43cb-4d00-b7cd-ba90d8b9269f") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce666246-7eaa-44d3-8166-26993afd4204") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dfbc4136-3545-4548-9781-0889a717d08c") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dadba6cf-45b4-49f4-a5fb-edae472ed28b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2f4f08a4-0771-4043-a15c-3527a67a84c5") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "79e2d798-8b5d-47f1-bf0e-253e9092028e") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "84a6a1b7-6206-423f-b147-c155832ebd09") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "1e5314e5-1e5e-4898-a1a8-2f6198c469d8") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "359cae59-af14-413d-a08e-677ebca405bf") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pintype "passive") (uuid "9d88f510-2a7e-4506-8553-936ca1f5f9a1") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "6d8ebf97-573b-43c6-8e4c-dd3c59c3b475") (at 162.3 113.8) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C22" (at -2.2 -0.2 -90) (layer "F.SilkS") (uuid "f4fe6169-47df-4a92-866b-5a4c010672cf") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "761dc9ab-b631-4304-b6cc-73a8d749f976") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "29beb763-aed0-4215-9365-cf6ce602c448") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8f06c7cf-4a0b-4d45-bc49-94749fd3805c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bfc427fc-411e-43fd-9fe2-cd198ccbb064") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a12b3817-7984-4024-bb80-d3caa437c3f6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "50e10e8b-3a59-43e5-b2e2-2ed695cd37e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "916480ea-4fde-4fa0-a967-7584f7c9a530") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0e943d3-4985-47f9-b035-c6c80038982e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "58d26062-ff29-417f-bdc9-98ebf077031c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "477acda3-dcf7-46dc-b4c5-7eda6d8b213d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27efac2d-0350-4584-b0f5-749bd5e40d6c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "39a66c45-8934-4146-a577-d8f122c5d14d") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c34ef9b9-2e2e-4fa1-bf4b-7a4e123edc3c") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa130493-820e-4425-8e44-087f2d1245a6") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ca5a89fc-ed66-49fc-ac1e-5a86d33e00d7") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "654181d3-56f8-4a61-82a0-ef2d9977d550") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "27d41e4c-3690-4bed-b90e-85f3f6b82fec") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 85 "/Fan Channels/Fan5/PWR_OUT") (pintype "passive") (uuid "a9957382-1556-40c9-a6e9-fc64ddd12990") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "1e279e81-c4f3-4031-ad0f-a6b1993bfc66") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "6f5f0c33-b595-427a-8f2d-635a21b1d521") (at 157.3 72.75) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP9" (at 0 -2.33 0) (layer "F.SilkS") (uuid "bf71d7b1-a569-4d32-9bc8-c9d31b5ca607") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 0) (layer "F.Fab") (uuid "b116fa09-b8c1-4bb2-991b-80e9b870851f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5c18dcf2-2d1d-414c-982d-2c0a3e68bcde") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0be13f24-b893-40cc-bb5d-2061983c7322") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dce634df-194a-4a19-8eda-961098bf8907") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "794c5436-2606-482b-80ba-484648a3222a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/844cd271-058e-4a61-b648-3556ed9f378d") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc9b989e-9116-4dcb-bd10-0d756157578f") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "96e305dc-3663-46b3-92a7-cf1c6b0ce8fa") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "83d92c97-31dc-4933-aca4-3167ab968acb") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e39b3ab8-c990-48d8-a5eb-466634516107") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5e9f6b0-fee5-4043-9b46-5a058a804484") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "44a66f82-2785-4e18-b9cf-b1f4365ea048") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5db179b4-da7f-4316-b511-9d5b2099d150") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fbc0bb96-3533-4199-bc79-b8fdd2214581") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba36b5cc-4dcf-4c6b-9f34-5fdf40bd9df2") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "26c1c567-0db7-483a-8b39-da3e3ed0d5ae") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "09efca0f-e200-4768-9180-c1a8ec0fda65") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "992f6a3e-a910-43f6-9ec0-b5840d57f995") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98c8fcda-2fa6-4a38-a7c9-4608a487ec71") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "789de79f-4117-462b-960f-2a33d3d5dedb") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ee2a07d-a5ae-495d-8fe6-f2b27f09d5e5") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "196aac6f-9fa4-498d-851d-5325a86806bd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 32 "FAN4_PWR") (pinfunction "A") (pintype "passive") (uuid "89d39b67-6615-4f78-98ca-f15e2cf0622d") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 91 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "54761a22-da46-46c9-a220-83a3cd1f93d4") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "6310472b-ab6a-4a0a-8d7f-2c5f7146e2b6") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "7185ec7a-5979-4090-8ed6-13e8ebfd50b5") (at 162.3 85.8 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D31" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "37262980-0b2e-4dd3-a27e-95ddaf9433dc") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "aae5ae01-b4ae-4e10-b661-a5f5e96a4e09") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9bdbf0e5-fe52-4e90-883d-d5bb89f0fd1c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "99cc9903-6211-4199-9061-5599183c72d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "30f9eb53-f5a6-4f2b-9ed0-a8bc7247915b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "5224d27b-195b-4b9c-bfec-b43a8de5b323") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "747d5956-fcc6-4938-9298-c79938935579") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 76.5 248.1 0) (layer "F.Fab") (hide yes) (uuid "9a89300f-7597-4682-b39b-db0e9875be2b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37fdee98-8e58-47af-8fac-97c377a3dbb9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "574e6f9c-e6c8-4f16-9d60-e00d068508e8") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2f82659-bfc7-4f69-a395-eb90152f438e") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5e6ac5f3-4be2-4cea-9808-e6bbee5011f8") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bfdd5ce1-4b55-4dda-95d3-04281e4c5a3b") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aefcffe5-4f0e-4e8f-9f7d-fc9802eeee36") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "257cd62c-16e7-46cd-99fb-bb78f6e183d8") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa87f3e2-3af4-4e73-b4a8-34bae071641f") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0066a78f-feb8-4318-a5c6-eeea59863480") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad7cbb73-e708-4445-89e3-15d4dbaa5071") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b689f2bb-8dcb-4a99-8b21-e0548be1b864") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "034c4ccc-6edd-4b95-9422-ff04ac082bba") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c10ceac1-2fd4-4ba8-8fdd-6df8b841a4ac") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "765a694b-c387-496d-a3d7-5fad85b54758") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "08593c1c-7964-494a-ae44-e61dd852b55e") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0afc960-4040-4e2d-ac39-d790b1def761") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fbd4760a-5a3b-4b8b-ad91-c50d902e6ea5") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6bf1e138-5011-422b-8180-6c29eb432436") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "85ce3463-83b8-4f10-be1b-d4c4f297a1c3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 89 "/Fan Channels/Fan7/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "fd7e04b1-8f62-4c2c-bc63-d7e38bfd90f1") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "0dcf3819-be69-4508-98b1-17b3041998f3") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "722dc221-9310-4f87-8ee1-e5a4a9b9aadb") (at 115.9 116) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R19" (at -2.1 -0.1 90) (layer "F.SilkS") (uuid "e9fb2044-82f3-49d1-a397-2fc31a1965c2") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "07ba063e-2175-4548-aa8b-64a1d8003cbf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ec4b8112-aa5f-4f0b-b5bc-3f25cfc3963b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7dd5ebdf-c560-4584-b1a9-ae7c760a5d10") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "84486a73-30b7-4f5e-a81a-6d7c662b3aa9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "58a4f88f-63a3-4be4-b764-a148b0954d06") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45c2fe7c-cf3e-4dc1-953b-a565bfde7a18") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87e5a125-1f20-4e28-b7ea-07175e090941") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bd96b936-b6d2-430a-9385-4c865c3666b8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "04e9a833-ca37-47b0-bc36-f90c9adea8c6") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "324c2ca3-2491-41de-b3ea-e299255cdb61") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1c5e7b80-958c-476a-ae92-47291877a30f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0309bcd7-4e89-4697-baed-7b25e963c069") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "67beaae5-eb9d-48d5-9a25-be233e33eb7c") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "164281ed-4444-4f49-89c2-08bc0ae7b502") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c1133638-cfff-4895-8065-91b650cb71b5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02dbded6-3081-4aa7-836c-53ff64440fee") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "a32f2f9a-b654-408b-bc3f-fbba283a7550") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 37 "/Fan Channels/Fan2/PWR_OUT") (pintype "passive") (uuid "d8e392f2-e52f-4795-8783-3dd21d502882") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 68 "Net-(D12-A)") (pintype "passive") (uuid "8d432fcd-1f4d-410f-926e-57fe9383124b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") (uuid "732e2973-4921-4615-b912-28493839045a") (at 69.4 126.25) (descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Reference" "U1" (at -1.25 -5.5 0) (layer "F.SilkS") (uuid "5cc18a9f-aed3-41bf-8151-e2762bfc657a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SN74AHCT126" (at 0 5.28 0) (layer "F.Fab") (uuid "9c369778-fb5d-4f5e-ad2d-a4af717b99a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "412d5ea9-424c-445e-9a33-449075cdc58b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "C155176 (AHCT125), C163728 (AHCT126)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a0f280f3-2454-4e18-99a3-061b043483f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "87645f56-e7e5-4cb1-952e-c77f79e6bb20") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C163728" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f1868807-8e11-404b-be39-0b8081684414") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ff21052d-656b-44aa-ae29-a7905309fe7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -4.435) (end -1.95 -4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f2d18669-cdfd-4541-a426-9b9254caa8ca") ) (fp_line (start 0 -4.435) (end 1.95 -4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "253b3228-123a-42e9-8f87-7c549d1303ee") ) (fp_line (start 0 4.435) (end -1.95 4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "413c7374-52e1-41d9-a872-69e5c1424123") ) (fp_line (start 0 4.435) (end 1.95 4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d47a2cd4-013e-41a7-ae21-c4b09439eeb2") ) (fp_poly (pts (xy -2.7 -4.37) (xy -2.94 -4.7) (xy -2.46 -4.7) (xy -2.7 -4.37) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "2c5db93e-8aeb-4424-b920-3f0d14accdaa") ) (fp_line (start -3.7 -4.58) (end -3.7 4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "964a57bc-4dfd-4230-aff5-26ac94405bd9") ) (fp_line (start -3.7 4.58) (end 3.7 4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "34a66fe6-8815-4420-8a63-c97ce911eaf3") ) (fp_line (start 3.7 -4.58) (end -3.7 -4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "902298bb-4ab4-4edd-b553-7d8c55340b4c") ) (fp_line (start 3.7 4.58) (end 3.7 -4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "287314b8-e5bc-4820-b6fe-77b71dcc09e1") ) (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be411e07-00d5-4839-b1f8-2ceceb12e2aa") ) (fp_line (start -1.95 4.325) (end -1.95 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "72bbf9af-1736-4ab9-acc3-4be29ecf2c19") ) (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37ca2583-43e6-4f6f-80dc-912a2f2a160e") ) (fp_line (start 1.95 -4.325) (end 1.95 4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0161f2a0-8d46-4eef-a1bd-490a05c60827") ) (fp_line (start 1.95 4.325) (end -1.95 4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd3c0241-bdbe-4054-98d6-abf4f497329b") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "2983ed23-6b75-460b-9b8f-3fbb4a24ae72") (effects (font (size 0.98 0.98) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pinfunction "~{1OE}") (pintype "input") (uuid "435cc237-ecff-4331-9100-510b804fa5cf") ) (pad "2" smd roundrect (at -2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 45 "/PWM2A") (pinfunction "1A") (pintype "input") (uuid "7f82ae67-e6d4-4ecc-baed-876e12e86d59") ) (pad "3" smd roundrect (at -2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 44 "FAN1_PWM_GEN") (pinfunction "1Y") (pintype "output") (uuid "98b80d35-fdf5-4196-a261-006e2952e2c0") ) (pad "4" smd roundrect (at -2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pinfunction "~{2OE}") (pintype "input") (uuid "771085f8-4a4d-46a4-94a5-4b852989aca2") ) (pad "5" smd roundrect (at -2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 46 "/PWM2B") (pinfunction "2A") (pintype "input") (uuid "f1b918fd-427f-4f76-9c54-187d959a302e") ) (pad "6" smd roundrect (at -2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 47 "FAN2_PWM_GEN") (pinfunction "2Y") (pintype "output") (uuid "8098abbd-da91-464a-8fc0-938317f7b832") ) (pad "7" smd roundrect (at -2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "af06edaf-5df6-44cc-b667-f0269113c794") ) (pad "8" smd roundrect (at 2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 48 "FAN3_PWM_GEN") (pinfunction "3Y") (pintype "output") (uuid "5f897429-d646-4509-a53c-f8c9b5763348") ) (pad "9" smd roundrect (at 2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 49 "/PWM3A") (pinfunction "3A") (pintype "input") (uuid "ee1dc538-0382-4581-8ea6-a4e42f68652b") ) (pad "10" smd roundrect (at 2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pinfunction "~{3OE}") (pintype "input") (uuid "664bb4cd-43d5-4bce-874e-08788665f235") ) (pad "11" smd roundrect (at 2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN4_PWM_GEN") (pinfunction "4Y") (pintype "output") (uuid "9dd601a4-87c5-4f34-b43d-c6b431b57723") ) (pad "12" smd roundrect (at 2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 51 "/PWM3B") (pinfunction "4A") (pintype "input") (uuid "16f8d25b-2ff0-458e-92b5-78cf8f70ba24") ) (pad "13" smd roundrect (at 2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pinfunction "~{4OE}") (pintype "input") (uuid "1579496f-5c51-40cb-ba79-be4bf26b6380") ) (pad "14" smd roundrect (at 2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (uuid "d3f9273d-1328-4b4f-af0b-05e440b2322a") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "7378d399-87fd-4f9b-a7b0-b3c727f10fc6") (at 98.3375 77.1 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C31" (at -0.0125 1.35 0) (layer "F.SilkS") (uuid "c5bbe810-5b40-482a-afd2-60e45d54fe58") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "9a35e3d1-e57c-4b9f-b6a1-35a33787c4d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "83574319-b668-4b5d-8749-9c0db4f78834") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "89bdc8e2-d043-480c-92bc-78494946e7b9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "4a0d12bd-9db2-4c6a-bb7c-b0c10ba62a08") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 196.675 154.2 0) (layer "F.Fab") (hide yes) (uuid "f2bc6352-94cd-4fb2-9ad3-9f26e078d522") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ed8240e0-3d4b-47a7-b8bd-345ad037001c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/fb32889d-5933-45b4-9953-204fa074ec4d") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "713deb38-760e-4f56-9e11-17b79ceedeee") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "98658ab6-9fa9-40c3-924e-f9a79c6d0314") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5378f4a5-47bf-49af-b061-248157154ef4") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0158cdf8-64cf-4da9-ad5c-dc7b8aadd2d9") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b6389baf-8f11-471a-acdd-8e75aab6ceef") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5d8f3f1d-deb5-4b74-8882-7bcf2504904f") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5268beaa-f144-4fca-b0c4-658727b9350f") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25272d39-f1c5-43ff-8ed2-f7f3cc333b1e") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2f041a86-61c2-4a77-af4e-4d136edb1542") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3696336-e3d5-476f-9738-ded9f5867a57") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "a8f5ab65-52aa-4ca6-bf62-47233e255731") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "c91777e3-eaa7-4e6e-93e0-3f40b4550da4") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2d6adf65-ddcd-4e9d-be46-f03e39ef04c3") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "7505eede-a417-42c3-88a2-1fe21ee21a2a") (at 157.3 95.25) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP7" (at 0 -2.33 0) (layer "F.SilkS") (uuid "9b65b5e3-da22-4c18-b439-9012301bde70") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 0) (layer "F.Fab") (uuid "792e3431-76e3-43b1-b15c-7a0eacbf08ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ee4ce700-039d-403c-a44c-ae6bc7bfd99d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "589aeb73-a07b-49fd-9a20-9538f8db3550") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "36ac9c61-1dd9-42dc-98b9-41912729ddbe") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eb059370-ef34-44b2-af88-631f0933cc7b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/844cd271-058e-4a61-b648-3556ed9f378d") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "60982a1d-4fb2-4ef7-a2c4-7351d87738f3") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "405188fb-5ebf-4717-82fa-39cc23156955") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "20d3f70f-d3a3-4dcc-b2cb-6f5e766ee1c3") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1fbd671-0c8c-47b6-bda9-9e5051b9ac35") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "84fdb0c4-02c9-4917-b69b-fbf6ab43feec") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "538428aa-1a5b-42fb-811f-020ab284369c") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c11cf679-8a5b-4065-afd6-87dcb7e83c1a") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2dd97e2b-78ae-4a50-8efc-4c866f6145ca") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "59452c47-4e46-4b0a-bda0-e36d07d0930d") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "57fea8b1-becc-4d9a-a199-1c1cfa235a39") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8828b70a-4c2a-4034-bbe5-052851734f65") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "31f270a6-8aa6-4236-b03b-2151400daf13") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fdc43dbc-9da8-45f7-8280-346a86267960") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b09d32ff-54dd-41ba-8991-c2ad8109191c") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3685aeaa-a8bc-41b9-98df-218e8dad24f4") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "12a173e9-6dfa-4d24-ad5d-c7082d54561d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 26 "FAN2_PWR") (pinfunction "A") (pintype "passive") (uuid "05a7af86-d5e2-4173-93ff-ed1079b92567") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 87 "/Fan Channels/Fan6/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "201406cd-61af-4889-b644-281cd49054c2") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "edaff5e3-e046-40ef-925f-ad26d55adb75") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "754b5411-6980-4296-853f-191c0eb30474") (at 119 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C13" (at -3.1 0 180) (layer "F.SilkS") (uuid "0f6327c9-f035-4c10-9330-17a71e5a6f8a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 0) (layer "F.Fab") (uuid "9c12c281-ea0a-4bc8-8513-07a118949444") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "c7d3b52d-071b-4de6-8d8a-1a4c950b89ee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "425d17c2-ebb6-44cc-9976-9b9c5f6f2316") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "3c978c29-a23d-45d3-b8fa-1f8522145fe6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 238 218 0) (layer "F.Fab") (hide yes) (uuid "286ce587-0efc-485f-92fd-d43443b41286") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ab34410-a1fd-44aa-9b8a-33709006d385") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/75bd3244-7746-40bf-b41a-5ea9cec31d77") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76ee0232-4c72-4764-baab-7503c0468ba4") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6245fc1-fc03-4c90-ab2d-491e2e4cbac7") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "670f9991-4bad-4b73-a03e-af9993edd35b") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cfbe19a4-71e0-4e97-8a6b-693e3139ecfd") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b04b8d17-c891-48d5-996c-19f4d6bd8c60") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9a53a09-23b7-4b4b-b304-3b82b62e9c7f") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7fb6e555-2652-46f6-b3d5-8c140071a714") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d1864ab-1a6b-4715-aa5e-c3803c08a9a4") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18e05350-f896-4f51-b7a6-a1f0c492796d") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06449d3e-975d-4a11-b471-319a36aad034") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3f5c7f69-ed13-4799-a5fb-a1285d4c7a15") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 69 "FAN2_TACHO_READ") (pintype "passive") (uuid "6cdcdec9-aaa5-4421-8fac-9cbc39e9ff49") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "53605a4d-72d4-4930-b6e2-7aed4797092c") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "76b49444-8ca7-4ee5-a251-689e897177f6") (at 141.3 124.8 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D18" (at -3.5 2.2 0) (layer "F.SilkS") (uuid "c5406747-4707-4acd-9782-49767291df12") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "f88f58eb-0171-400f-bc55-24d037b16241") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "c39d4c07-6a32-4aee-abcf-b48d6611dfe6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "9322fa22-1cdd-4636-9fe1-bb58789e47f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "38ca834c-169c-4671-b1f5-d805ff3db02e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 282.6 249.6 0) (layer "F.Fab") (hide yes) (uuid "e3ea5e00-a3a0-4588-b1d6-da2af9217f5e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 282.6 249.6 0) (layer "F.Fab") (hide yes) (uuid "6891b108-1e6f-4519-b87a-a18a7603e8aa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 282.6 249.6 0) (layer "F.Fab") (hide yes) (uuid "aebed424-0aa9-41c7-8856-c4ed1f596308") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ce9f2e28-00b2-4800-aa7a-bb103304844e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f8b2a8c3-f939-4ce2-a553-048d3f002a8c") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fea21799-746b-4c87-b1bb-8456430c96e6") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "314d214f-2c5f-43dc-85fa-b9f79a631d40") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "615f275c-5bb1-44e1-9ada-cc6065b84590") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "25b5b26f-ab15-4d54-a616-b2bc5dcf1b71") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "818d7116-ef07-4482-a417-fff5b885742d") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "11ed4f98-95e6-41f4-9601-2f919ecc20a3") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "043dfb38-bfc5-4894-9dae-0e2980846442") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3e7e6e1e-cbe3-40e1-957a-6effe4962f56") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0b7add23-b77c-44dc-9f91-957bd6331186") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1939aa8a-65d1-4a40-97a9-a8a2dcc6d48a") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7994bc9f-60e3-456e-aa68-ebf721e6b4b5") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7037ddf2-8cff-4d51-ab62-5cf75e8a43c2") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cbd04e57-bf4a-4d27-9254-d50b3f5b0a5d") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ee2b319-7705-402f-a451-44012c473521") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cfc669fb-1688-4b7d-a686-e723104a80ec") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "10e4b596-1ee6-4732-a6d9-ffdf4dd44c53") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "9a0963ac-e1ab-4944-9275-1a17e883a782") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 83 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "b1f41740-1de6-4d5f-8897-c4cdc09ad656") ) (pad "2" smd roundrect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "861b7fce-a74e-4b8c-8f94-7548c476197a") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "76d9ca26-93f4-45a6-a893-a23ea5569a70") (at 123.4 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J10" (at 7.29 2.25 0) (layer "F.SilkS") (uuid "be5464ea-6a60-4ee4-bac4-47096d2b2222") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan3 Output" (at 4.05 7.1 0) (layer "F.Fab") (uuid "f0f29d7f-80bd-4cfe-bf63-ff6cf98b0421") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "08bf7360-5e9a-497a-ab81-2a71f842e799") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "62695c31-3469-4c67-b768-10a17c9e780d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3a474df5-3394-4e06-a844-5487fa096ca0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "72177ab8-0716-40ec-8a6a-dc974b05e2b3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/2129e724-3f7f-45d3-89a3-4dd504b3fb79") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bb5a33b7-43df-49e4-81cd-b141e7ee9f74") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf469745-ff39-407e-aaeb-5bf1038399a5") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8822e100-d4aa-4e94-8a7f-cb080537dec4") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d50cccf9-1e14-47e8-82a8-98331935471a") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f899cce-9274-48ff-9588-1e057f713397") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f875e25b-88b2-4732-afab-c20515783a2c") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b9e875b1-6aba-41bc-b962-7319c4349818") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bb4109cf-9813-47a3-8931-e199eaaea0ac") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4eb5bfd6-a890-4232-9186-2e7c97fe19fe") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4b41d2f-d6eb-4d97-a76b-e8d957d5721b") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e0702057-6bc0-4e81-930e-107e025b02a4") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8c78a15d-d966-4157-b0b2-9127ab79d0b4") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e7221fe-f0d6-429e-bb96-b0a9652eb71f") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "87371a18-3d83-46c0-b428-103713d51dfb") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "208ef77e-d6b4-4dd2-a230-3cd3db77a6c4") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cbcb097f-a87c-4232-9dbb-360443dab6bb") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3fa3443f-4cea-4eaa-a322-62ffd3c87d2f") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2315780d-a7bb-4fa4-a30b-ec48227fbabb") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e96d931-9686-4609-9b7a-e8b9dd29362e") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0719d86a-9559-49b8-828d-a2bedf6b43ba") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aed4ef98-bd68-4e83-b14f-e39067633238") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "6852c96a-023f-4d1f-aa15-052ccea8384e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "de8fddce-5474-4f02-9444-2e96fe059c09") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "361929bd-6508-4502-94ff-8a436b23985c") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 79 "/Fan Channels/Fan3/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "648fc5e9-ff26-440a-b0d9-9de6a56ddb81") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "def62379-409f-4c15-99cf-6e61aa33da76") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 80 "/Fan Channels/Fan3/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "86f1bca3-3de9-42b0-856c-1428880462c2") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "77719df2-8f84-4826-86a8-648c59a1aadb") (at 62.5 79.075 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "U6" (at 0 2.45 90) (layer "F.SilkS") (uuid "3b072938-8bb8-431f-a5e0-e2d0df047443") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 2.4 90) (layer "F.Fab") (uuid "570bbec2-a794-491e-9478-54541b3a55d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fdd54360-7c59-406f-9d71-8709d5ac6e19") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "bf4994d2-fc22-47ca-af6d-c9406fe0d114") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "245b9bc3-347d-4263-8dd4-e024755d3c3b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C143326" (at 141.575 16.575 0) (layer "F.Fab") (hide yes) (uuid "6c7211cb-53ff-4fd5-b40a-d85220ffd504") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "eba3bfba-de62-4659-b9d8-898bd0f473a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/424316b7-e2a3-4008-bbc5-a6a4ca971456") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b538a1a-c685-4b5e-82ad-2dccc5e9809e") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "524855a5-16e8-416e-8055-c8f7d6b7f6ab") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12964153-f418-402d-80ac-044bbfe9c0c1") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e462fb03-b1d5-4f7b-95b1-2e428aa18114") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "6127b00d-1067-4123-a304-6114682560ca") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8cc12cc8-1c0f-4f58-965e-011c6831fd5e") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "804d9ec0-323e-4498-a9e8-421a74be439a") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "eb178aef-0f64-4ac5-a7a4-19b2e0a5308c") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f8dffd79-f09d-4339-bf6e-4267edad9b89") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ccbdd613-916a-4d34-b653-3249ab151ac2") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dba907c6-0551-40c7-abaf-b69a9ef91df4") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "680e0678-5e6e-47dc-9608-a54e97248d08") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce19be7d-d323-47e4-a249-ad8a05a533a9") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3925299-da0d-451d-9ccb-ca4bd946ece8") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "29747f49-e576-482c-abd2-8a634f0ec764") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 81 "ADC_REF") (pinfunction "K") (pintype "passive") (uuid "150f573c-b593-47ae-9a7b-c8751614fe2a") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 106 "AGND") (pinfunction "A") (pintype "passive") (uuid "e9cb8f3c-a593-4ea8-9765-19fee70aba47") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 128 "unconnected-(U6-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (uuid "886f1a2b-8800-4919-8e8d-0830b10f8153") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "77b06444-ebe9-48a9-8ca2-9ceef4ea269e") (at 116.1 70.9375) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R18" (at -0.05 1.2125 0) (layer "F.SilkS") (uuid "6e04fca9-173c-44c3-84c6-e8c85e6e119b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "7cf50c7f-32b3-415c-821c-56602eb5bec2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1aecd140-66d4-460b-a1ad-faf47520b4ba") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "760b8d03-1716-4438-93fb-dcd6c2d06c77") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "79bc81b1-4617-4623-82ca-e5969159a355") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3abc6f5e-4e27-467e-af97-e4dc86f67b3e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5edac28e-6c23-4135-9c17-45a336f0e37e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/983de26c-e36c-4d87-9a48-1bbe3c867ff3") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "81ece30a-21b7-4ee4-a5b7-203b34a9a81e") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4c3e4ffc-471d-4083-95d7-e3d594a71f81") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c7195eb0-f127-4dd3-937d-d009ba51ec05") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ab1ffe0-0020-4502-adbf-bfb3ac00982f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fc71b59c-ce72-4d32-8895-d5e3f5207353") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "be865b53-35be-41f1-a5bb-6c1ea0373065") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3cbe3a7-9385-4abe-9cac-302e0a2268e8") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37b1816f-6ded-4907-91bf-0d922a6527f7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb9adbb1-899e-494a-9927-3ef4570d8d90") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8d30b6c3-8e60-4e29-b402-c9d5a7397203") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f74532fe-1abe-47c3-9521-0fb65366ca04") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 110 "Net-(Q2-G)") (pintype "passive") (uuid "c70eeb15-8b22-4a47-aca6-72e5e8bdd4f9") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 72 "MBFAN2_TACHO_GEN") (pintype "passive") (uuid "4d303206-54cf-4760-a6df-72150f29f290") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "7949befa-57c1-44ae-a457-0485919ea370") (at 42.672 119.9) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "J19" (at 0 -2.33 0) (layer "F.SilkS") (uuid "15e19fc7-4264-44f3-aa9c-5482f1924475") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Serial Console (TTL)" (at 0 7.41 0) (layer "F.Fab") (uuid "843327dd-b873-4a2a-ab1f-9844a6e9ec99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ef9c14a2-d647-4366-b94f-7317339e16e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4778e232-95f7-4604-a37b-c58bde431bc0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5bdf64a7-6b2b-48b7-a042-ef9625949cc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bc5added-1374-40e7-bac0-cc075cf2eb08") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/b7bc6b02-4815-4959-b689-29dc65d07154") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1722cf0b-e36b-4b63-a702-2c094f5d7d49") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "73856bfd-c506-43bb-810f-236757911081") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "51641a22-7bab-454f-b4a9-cbc21235dd4c") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "227be8c7-7ce3-4882-b868-885b82ef38d1") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b3503c3f-cf42-49d2-8a55-fd1ee14017a2") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c84bce4b-8d6e-4565-a6dc-8597581d008a") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "46d89e64-f9a9-47eb-9ffd-dc99b9752a28") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "49dc111c-7ded-4b36-8669-aff2590de981") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "749b54b3-1545-4d11-89b9-5fd7776c9bd9") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e5f47d9a-5010-4436-aaa2-36b8af2ac39a") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e01c485-09ff-4f98-8262-59c3814a2081") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e12502c7-6e62-48af-99ff-46fac2a9391f") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ef75067-5ebb-4950-b392-2d84778f279d") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8860ff3d-4a7a-4737-aa38-280adb22c5cb") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b3b9969f-0dea-400e-b7ce-59421934b28b") ) (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") (uuid "e4bc168a-bc6e-4e9b-8f7c-aeeb569472b4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "21c4de67-f950-4102-b99a-cdf41c7d14cb") ) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 116 "RX_CS") (pinfunction "Pin_2") (pintype "passive") (uuid "8284538e-b20c-4f7d-9eb9-08b5542bcd3f") ) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 115 "TX_MISO") (pinfunction "Pin_3") (pintype "passive") (uuid "8373c65e-f2b6-4ba2-8fb9-444d15595a6b") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "7a89709d-a8cb-4a64-a3a3-ed263fad27d0") (at 150 82.75) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D30" (at 0.025 -2.3 0) (layer "F.SilkS") (uuid "adaf43e3-f081-4ab5-9e41-595761c692a5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 0) (layer "F.Fab") (uuid "dbd3a626-b7ba-4765-86ab-0351f053af6f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d3253ede-3d2c-4d65-a38b-06b1926938fc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d6fdb4ba-4e7a-4ec6-9b4a-c0c9d96306b0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5feb2ed0-9414-4951-8237-cecd2873a16a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0dfc2f50-c58a-4fbe-871d-bfa0551f0f0a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6c49cdac-364f-42f5-bac5-26dcf2713d4e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e7aadd10-2c23-4474-9fa9-8ef6e49dc11e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "83bdf7f2-8117-46a3-be95-73d51b38a468") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/b49d0204-e5c4-45fa-965e-427ea584956f") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3a2a8f6c-257f-4a99-a06d-44196b3ace05") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "50e9169d-7f3b-4fa5-b47c-d3a8e2ac95a7") ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "af745240-bc12-478e-8b1c-c80ac7067345") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9969e8db-f2fb-442c-aee1-9d7ef41352a9") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2897eedf-214d-4744-a12f-1e7a27ebcc33") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ecf0effd-44b1-4946-86e9-8dbca0d15427") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5d1b1342-05b7-4419-96c9-03f71349267a") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "75df8457-dcca-4da2-b505-dba3c1c00237") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "82f92a70-cb58-430d-aab5-38803f928258") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6288f16c-b94a-469b-a352-91a5a6884404") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69c09bb8-9313-47ca-a0ab-1d937391dbdf") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e08b9162-b7ba-4cf9-8a8c-45563e3045f3") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dc71cc7e-d762-4dd0-9442-d6827cb8b845") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a89f605-eb2b-4a56-a2ff-542a477c4d98") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9220c5de-3766-49f0-8d6e-3ecb6ef98020") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25b6fbae-7f66-4569-9da0-aab48ef510ac") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "157f733a-e6a1-4bf4-8eee-7d706e701d0e") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce5c6384-9acc-4de6-b279-7ee1fec9a3e8") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "4413691e-9161-4d42-945f-d711c80af0cb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "f5021526-6a5e-4651-b21d-f5716ecb5c1e") ) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 20 "/Fan Channels/Fan7/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "f2d38602-7e49-4ce4-a003-423d925eb65e") ) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 77 "FAN7_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "7c3d6b7a-f555-4b40-8be8-014e665f52e7") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "7ab7b1db-1ff2-493f-8f9c-36792ad21c73") (at 115.9 113.1 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D12" (at -2.6 0.3 180) (layer "F.SilkS") (uuid "b413ddd1-8ce6-462e-b1fa-227b90870bba") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "2579ea00-2c84-4a13-a646-152fb4ff576e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "ab9185dd-eeca-465a-9a5d-e8b811a5e4c7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "eb535bf0-4b34-48d7-aa71-7f2ff7edffbe") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "3a598f16-559e-45d7-a13a-228f11a1fd5f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 2.8 229 0) (layer "F.Fab") (hide yes) (uuid "62b4c3ba-13b0-455c-a0ef-99c071ecbd45") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a53ae044-c2e3-4d05-a58d-c8d2e30442ec") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/99383412-e91e-4682-9562-162d7ddf01c0") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "29065639-19e2-4d97-82d9-c5ed9b3e251d") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7b2b5861-bc78-4bc1-bdf2-e83d0bdefc6e") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "61939906-d8cb-4fdf-85bf-0db98b94e827") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "88646f02-ee14-4b46-8c43-c032aee8f71c") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1f73088a-516a-46f7-9942-e1cc864df320") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e5b3b519-0dd4-4bc6-b43a-46239417eb42") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5abee5ec-58a3-492b-a460-e1e1b0d366ae") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9230271-edc6-4cb8-8c26-76f12669fa2c") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1997adba-30fb-495a-9557-e27f2c239da2") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "036e6e99-0bd2-4411-90ec-d3ba12f83efd") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "839860de-bf71-4a0a-96c9-926499c32f81") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4cfc1849-e37e-4954-b71e-34c39c7e68a6") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "82951171-0c7c-42cb-a8bf-c5ad35fd5c2c") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "9791c431-98c8-44c0-a719-dddac1e1319a") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 68 "Net-(D12-A)") (pinfunction "A") (pintype "passive") (uuid "b9cd4750-7ea4-42c7-9cef-4e59f0f414c9") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "7bb94872-8dbb-49c9-ba04-f5628db9fbfd") (at 146.45 99.6) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R41" (at 0 1.5 0) (layer "F.SilkS") (uuid "681bb1c4-f690-4641-a185-fc956891ca54") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "8f5a8ce5-33b7-466f-a660-2dedea68ca7d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3fe76444-357e-43ea-b2db-1284778259a8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "018ca302-297e-4344-80af-d02fb496b445") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a32c2141-3b00-4c90-81d6-270a40175ca9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ed7b0983-91e3-41b0-ab15-0d908afa50e5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dd485add-7caf-4bce-9f2e-9472aa9249c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "17aa963a-a564-4ba8-b82d-f8e216f52c01") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ccc66878-0631-4ed1-82ea-2b5f74466329") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df7c5923-9e2b-4a3e-b5fb-44295145c012") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66c59a64-d085-41ee-861e-1eeafbc08e56") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5245168d-9495-4fab-8d32-2214a2afe342") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76f8853e-d347-4664-a1ee-aa3947e48f3b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d485d5eb-587a-41a1-bcc6-eee7bc9c3cb8") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88d7d89a-36c8-467a-9c64-63c332ef47ca") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "04dc292d-0b5e-4934-a914-81c58ba6ecf8") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a052447-2b0f-4ce2-9055-9a318009802b") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "9d067e4a-6458-4654-950c-4d827bd1b76c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 55 "FAN6_PWM_GEN") (pintype "passive") (uuid "f2dd62a1-a128-4e6f-859a-85034bafe404") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 88 "/Fan Channels/Fan6/PWM_OUT") (pintype "passive") (uuid "34df6da9-046c-4546-9df3-93f140c4a467") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "7c849e86-e149-44f3-8e6f-1e68de7023ea") (at 119.05 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D13" (at 0 -2.5 -90) (layer "F.SilkS") (uuid "b97521b4-3090-43b9-b413-edaf0f5da7ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 -90) (layer "F.Fab") (uuid "c7c5b43c-f9a5-44dc-927a-460f71fbb9db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "836f277f-01aa-4e0b-8f6a-1914d2e824a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "6c0cbd19-01f0-4e48-be3a-df3a0642e1a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "14d7e3c5-891c-46a6-9b7e-840227858dcc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 7.25 230.85 0) (layer "F.Fab") (hide yes) (uuid "6a28b6ce-6531-4927-b14e-b99304b8ef13") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 7.25 230.85 0) (layer "F.Fab") (hide yes) (uuid "d37f1549-7913-4a0d-9bac-de3fd8a4c00d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 7.25 230.85 0) (layer "F.Fab") (hide yes) (uuid "bb6f9186-f580-4987-8d10-d6c6a5f62edc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c0f397a2-8084-4fd2-9491-ee3ffdc20bb8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b399a11-50b0-49ba-9bbd-9142d745a6ad") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "df16259e-eabb-4508-8d10-c2a4df75891f") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b18e8d7b-592e-4c33-9d26-2fdaa3d39238") ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87a77feb-3ee5-4901-b869-1f37238a24df") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0a6648f-5f02-483c-a00b-096cf03b16ba") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "66b6160a-a12c-42cb-bb23-914d8798282c") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "26f9d538-0b7a-4155-b256-36e92805bf9a") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "06fd741b-568e-463c-b62a-353d7cdec195") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab32e581-f8ea-49f4-abe2-020e5c48adf0") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a4e1f8c-e805-4ac8-b5f9-77642a996ac1") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd9c98f4-dc8d-4c21-9974-af29dc42a874") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "269f4d47-b2c4-460f-b073-0cb0b9194e57") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f310f8d5-e7a6-4a77-bef9-dea053ab8046") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "beb691bb-335a-4638-acec-2e1c7ed205db") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ba1a9b9d-efce-40c9-ada3-27629125287e") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ded7329-df09-48fd-8a41-872f5ebea916") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a3f14aa7-59a5-4bae-946e-83f3f8d9bc06") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdfbe3ef-27bc-4dce-a720-eb59879cca91") ) (fp_text user "${REFERENCE}" (at 0 -2.5 -90) (layer "F.Fab") (uuid "a977d8f7-3ee2-4dda-9a13-9203f6344d4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "2d602fae-ed7f-4ab3-91bb-53a1a632b146") ) (pad "1" smd rect (at 1.1 0 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "ddba49f8-643a-4fc3-bb2c-5a4a5089e3e2") ) (pad "2" smd rect (at -1.1 -0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 69 "FAN2_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "203619e4-3e1b-4ee7-9e3f-421f658c56c5") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "7dc9f489-4156-491b-be43-4d23744698f1") (at 62 82.575) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C30" (at -0.05 1.825 0) (layer "F.SilkS") (uuid "78133988-00b3-49f9-b820-d15bc7cb9015") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 0) (layer "F.Fab") (uuid "98276d13-5c8c-474c-92c6-fa5e95ebc974") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1fe9c604-9fb2-425f-850c-b383631e0f97") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8da9f22c-5fbb-4dad-9c3f-bc1474a62f15") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "93864ada-d0ea-4a03-a432-3375d4769a0e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "a5b5c802-2fa0-4da2-86d1-1ee1c00bb2e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b4ab2da-ebe4-49cc-8d44-679613ca9041") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64d56ae6-d70b-4921-8cfd-e5efdca2c89a") ) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7d28837a-4771-4b9a-8149-a90fb8f1ad11") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9fadf06e-41c5-483e-8a93-7c04106dfbb1") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7a72cf36-ecdf-4bd9-8831-fe2924f0a081") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a61396ba-7b6e-459d-9ef0-0aa191b5efd4") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "87f7a5a0-ac4f-4e1f-b9bc-fa8ed36c5354") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c8d39c0-f3f3-4606-afac-a7c6fc88eaf4") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "63485ee1-445c-411b-9d09-85ec9eae67f7") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2f727a3-c42b-49a8-94a8-42feb6ced503") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7bb9046-25df-4e11-bd1b-ffe8bc5ff566") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fabc9d4-089f-4396-a902-ce67833e564b") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "979cd81a-7514-4e30-8609-904f8c2fc249") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ed7c47c3-bd8b-44d5-90e0-a853ecdf324a") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 81 "ADC_REF") (pintype "passive") (uuid "21506f6e-9a76-4b5b-9eb9-96557fd8d3fc") ) (pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 106 "AGND") (pintype "passive") (uuid "d8f9543d-3278-4632-a537-aca34fbcae9e") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "82393777-34e1-4bbb-88d1-89e4aa816583") (at 150 111) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R38" (at 0 1.5 0) (layer "F.SilkS") (uuid "007df1ad-a1cf-4619-aca1-4d81716783de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "532df76f-32a3-4412-8afb-83263f2bd274") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "10459453-2736-43cd-8cc5-1499a9186fd0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "505f5ec3-77f8-4165-8bcb-87b3777cbf99") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b734af19-8b26-464b-abf9-c35b79eaa9ea") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4161557f-2c08-430e-a993-4ad70453efb5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "05e03323-b59d-441c-9ecf-ca4300645d6d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8d708713-fd12-4242-9df7-90993d2776c4") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc0c82a4-dd15-4b27-a3e5-b3e597f29962") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7ba2792a-4410-46dd-9808-08af7d701088") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77b0dbeb-e3a9-4759-aefb-c9bb883196d2") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "752c3b4e-b7d8-4f34-81cb-c936111de236") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5089e255-5543-4187-8392-fad1267e2116") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ccc0c41-2f9c-41dc-b59d-b4eca17e9a45") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdf1f81d-11eb-4226-a5bf-1793453e2554") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "448a8dab-d731-41b4-abf6-83ae5c2ce5b5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f8f2f825-1264-49c4-abc6-bfd382a3d6fe") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f9fd1e53-7110-47c9-8380-441f94169c61") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "FAN5_PWM_GEN") (pintype "passive") (uuid "b10de907-4ea7-411b-83d2-1350e5d6277b") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 86 "/Fan Channels/Fan5/PWM_OUT") (pintype "passive") (uuid "155a9f81-7256-47a6-b287-1bfddd6c922e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "83388c74-5f06-4153-ad3b-c9f47fee16fa") (at 122.9 67.8 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R31" (at 3.05 0.15 90) (layer "F.SilkS") (uuid "20cc8c99-a49f-42b4-980d-db0675ef394a") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "744a28d6-1393-4d8c-9a5c-75947ebf0ed8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "41d0f98d-38da-445f-9459-3eafa7cd3dc6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1c34843b-338a-44d4-9a6f-5f1bec985e0d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d4838cfe-3ee8-4122-859c-cddcd5ddc276") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 246.8 129.2 90) (layer "F.Fab") (hide yes) (uuid "dea46a4e-3fe2-4491-9a4a-f694adf6f0d0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9f8644c5-1a3a-4f06-aea4-611bf6ed2332") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/ba9485af-39b4-4a7f-afda-f544d55bea86") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "23c8aead-e4fe-4ffa-986a-e8f9c85bf31c") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fe13c7f6-c0f8-4f9b-9cf7-347d503c1923") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6c73b095-9018-482e-a57c-f238210c4251") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8024e4ef-e56a-4726-9b1f-51876705cebd") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "645ab883-5306-4182-9e15-4b74170735c3") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "58bd3870-983a-4e02-97b8-fed6973f8d22") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "da8b884a-8201-40a8-b4cb-770cbddd6b4b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "105e4d19-3b00-4b0d-8724-35ab88dafa35") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0d67868-0d49-4f75-a735-257cf89fccda") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7d300380-f017-4900-9824-be413eb1444c") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "63e72867-e441-480f-8ad0-c126718ab5ef") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 29 "FAN3_PWR") (pintype "passive") (uuid "fb27e220-211a-49ab-8dd7-6c0434ab30a8") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 94 "Net-(D19-A)") (pintype "passive") (uuid "5e38d64e-b33b-408d-a349-528c300121c0") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "8592a031-c2f6-4bdb-b2e2-71087dbd3b1c") (at 88.8 67.05 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP11" (at 0.05 7.5875 90) (layer "F.SilkS") (uuid "a08a7848-0f95-4a3d-bb02-74f9365da003") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "NTC Value" (at 0 7.41 90) (layer "F.Fab") (uuid "bfc49d12-276b-4c9d-bd86-c55f27919b24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a8d81bd6-7943-4fb8-9bd9-96b170cdd089") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "a7dc1878-24a6-4de1-a2e0-36906ae8900a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "b6fa0481-b843-4530-bebb-b6ac93849412") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9dd8cf5e-c7ba-4062-9bc1-106932beb4bb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/3be7e346-edf9-40ae-ac38-cc91a8a5fddd") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64a3fc2c-54b3-4331-9b56-58aa435188a5") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9c1646f2-3984-4a9d-815d-4470bfe44e46") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c7c5bab0-f0f7-47bd-acee-d260219f7844") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d4f29d40-8da7-41ee-aa59-bbb611a35c10") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "70d933f6-dedf-4ff7-81a6-8ecae0385cb6") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b5547298-11bb-4efb-b9ea-92f17b9803e5") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e794ca8b-3463-43ba-9c1f-ac490411a625") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9cc3a301-8d84-4677-9c1b-132700cb1105") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7fffbce5-0038-483d-b63a-ba6047c7b507") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a1617ef2-bb2b-4b44-a0cd-57341732c513") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f9e84b5e-30c4-4245-bbcd-e2b97cfd96fc") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a87455bd-e007-4514-802a-f3d759e2e055") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "175c6ea4-cc30-49a0-aed7-8a582f159866") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "34c0ce80-7f63-4cc5-8f13-0cbd60ce6e2c") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "21db94e5-9704-4599-997a-eed490e9e63a") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "a51110c5-61c1-4645-ae71-1a5f8113205e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 104 "Net-(JP11-A)") (pinfunction "A") (pintype "passive") (uuid "a75ac397-71f6-4111-9c7d-5b68a1cb1e39") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 81 "ADC_REF") (pinfunction "C") (pintype "passive") (uuid "da9de9db-c568-4090-8499-4b7f72a35b4d") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 105 "Net-(JP11-B)") (pinfunction "B") (pintype "passive") (uuid "7202db5c-6010-475f-a473-82b457648c64") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "866fcabf-fb8f-4309-9f82-35b7b782cf70") (at 146.25 82.75 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C25" (at 0 -1.43 90) (layer "F.SilkS") (uuid "a18de098-2817-4bdc-a6ee-9fd646924901") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "d2c309bc-6fbb-4a6b-901e-7a1032cf3437") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "3adfbe34-21da-4c61-89ce-0c74ff7d12db") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "a0ffeaa0-e7e7-4c9f-8623-b870d8ae6c23") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "033e740d-17ef-497e-b33a-7190cfc03498") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 63.5 229 0) (layer "F.Fab") (hide yes) (uuid "42ddc1e1-2af5-4832-84f2-4074c89d678a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1dce9bc2-2249-45d0-9ee9-131afaeb4bbf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12c7791f-4196-4e22-9359-c37c302e1583") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "06f3ada3-e8dc-4856-bd99-bed5498ee838") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "25b8d75a-1d10-4ae5-92ff-f1f943500565") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "42483938-267d-4b74-ba9a-6747d1deb975") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2cf6da16-427c-4a9e-98e6-cb22e69a062c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d8826535-9869-46b7-b9fb-0a78432a31b5") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "244bf05f-a778-445e-9f59-bc0c70c583e3") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a0ce440-e238-4b32-bdff-b6411eb8a601") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eb49ddd4-d193-4608-93ca-73afbfb012b6") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4da28ee6-250f-4e77-97ad-eef5fda20258") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "068d9ddb-f3b1-4baf-9573-51c0880a2970") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 77 "FAN7_TACHO_READ") (pintype "passive") (uuid "3d0037ad-8a31-49ce-9b23-c92a58f84497") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f3da8189-14fa-4a69-87d2-b60025829691") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "897c79e5-3d91-4f46-8ead-84d2a2b4a77c") (at 146.25 97.75) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D26" (at -3.425 0.025 0) (layer "F.SilkS") (uuid "9f5a1aaa-1b33-46bb-ba56-7f4dcc00c20d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "4f0c7f55-e6fe-4d02-bb3e-ce47d80698ae") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4cdf4fd3-aa13-4a85-b534-c4956d97964b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "96921811-8a48-4003-9460-1cf7892cc8a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "912e9c62-af83-4a3f-81e1-69505b2a2cd0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ef4ca552-a096-4eea-863b-52b6563543e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "82c969f9-7afb-4292-94fd-f23868400483") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d89082ac-ee90-48c5-bd1e-80d2da15ba50") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "385914bb-3e82-405c-b703-974832f712a4") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6f1582f-fc59-4fa1-b72c-c190c013f6d0") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ba1503b-fbfa-47aa-916b-df2b58ee377c") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "eeca00bc-f87d-4012-96cf-f507cfa41ca2") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "094636e2-6470-4a87-8209-9b4cef6396c4") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8d8684ef-050c-4f5d-9342-e4eae57c6542") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a0855122-ba86-4ee2-8f30-5c3d1f92c6ad") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00e99697-135c-4316-936a-1d8764b7ee06") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac3d0348-dcd4-497d-b6d1-78c78e064fb2") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4feb2adf-68f7-418c-a98b-43a106a59029") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8af308e6-854e-43cd-b1f6-487e8908ed00") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "192db36f-4950-457b-8cb9-9254e95de393") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "30b3e691-bedf-4552-8146-38b2d8bd0e30") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 98 "Net-(D26-A)") (pinfunction "A") (pintype "passive") (uuid "06647982-6db4-43c8-86c9-e01359d00de2") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "8c412f01-bba7-48e8-b847-df07ecccd1d3") (at 107.8 109 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C10" (at -3.2 0 0) (layer "F.SilkS") (uuid "29643ee5-1b4f-48f8-96ff-404f6ba44848") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 0) (layer "F.Fab") (uuid "bc26da90-0b5b-48da-98ca-79edb255db42") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "43342c5f-d9eb-4746-a08d-ce9259d68e66") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ef9e4e4b-119b-419f-bab5-df3c6de4b6ec") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0ee0556d-260b-41c3-af4f-4a84c047be0c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 215.6 218 0) (layer "F.Fab") (hide yes) (uuid "86b54698-297f-4716-a773-ccf162467d13") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2807ecad-3581-4d37-b59d-90fe8af033b0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/75bd3244-7746-40bf-b41a-5ea9cec31d77") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "74954a1b-e2d2-42bc-8ab1-18c4fe5a3406") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65e1b638-38f4-4ee2-889b-b3678da7df5a") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6394c6e7-f21a-49c4-9da3-42a3f0cbe7db") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3aaacaa6-efff-4eab-b317-2aa63ac7878e") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "506619ef-4eef-41e4-9f84-a4ff5345ca14") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ddf9584e-616a-4a1a-97e6-8e7f55d89e4a") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8b2cc05e-c142-4e25-9b93-24239f6759e1") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8bb01acc-1744-4e98-bd6d-893ef7c1ee93") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2c8986d5-b9ea-46a7-93a6-74de85cfd40e") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0647093-a070-4577-bd10-ecc793d87942") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "652bf4e1-8f9f-49b8-adaf-d1986109ad14") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "988b66a5-4726-4139-902b-3a43b9461dc5") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "874e103d-d8f2-4c95-a379-ae47ca14fdec") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "8cafa022-1765-45c2-9583-76b4937e7798") (at 150.05 88.725 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D70" (at -0.025 -1.525 0) (layer "F.SilkS") (uuid "020e59ce-78f7-46ed-be14-4603e333a42b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "4b69f785-43c8-48f8-b0c9-9339bb4f67b8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4d27c31f-4000-4717-b7ad-9e08dcb6c6e5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "871cdb61-c47b-425f-9681-8e4e7e14997a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0be4a983-142e-4f2e-86d6-478600f65a08") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "61ce8b39-e535-427d-97c2-b74492ff09d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/abcfbcd1-063b-4143-944f-3f5983199a72") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "118904c3-857c-4d7c-b550-c74cfde64b2a") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3832151e-dd28-4d1e-b37b-56377786068d") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fbbaccfd-1cbb-4006-babb-894ac4b8f3bc") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ce67ca82-697b-4354-b066-c0dd35cb5123") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "75aba052-98de-4323-b32f-c928a4ccb62f") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "447b5d8d-f217-4756-90a2-0f240696bb21") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1cbf742a-7e52-46a8-be4d-7824f532e5fc") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92c5287d-ff83-4d7e-895f-f49ee621fee4") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "57c2a714-65c0-4c9d-a2a6-2a706b55b333") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64872318-a171-4941-9cdc-8758aed21614") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "412b990c-6eb6-4f86-898e-914b7917fc08") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "08628a16-3765-46eb-b4b1-b623b379d5e0") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1739d0f6-5b64-4bbb-81b9-597f7c8f91e1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc69b886-1120-4a91-b87a-1c68d92f6113") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6c8f9420-15b6-40fc-87cf-3d238ed05aa2") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4bc3ff34-723a-4446-8006-ac46c65f029d") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f712a6e-d7bb-43bc-8ebd-8b2f183ee1ad") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "2f707130-747e-4e65-86c0-db0c4c487fce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e34a3b95-830e-413a-819a-3f00246f985e") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 90 "/Fan Channels/Fan7/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "9bd6191d-cf17-4373-bab6-5f7b9c4398ae") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8d9ed836-03c9-469d-b64c-e961bc8ffbda") (at 70.3375 84 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R4" (at 0 -1.43 0) (layer "F.SilkS") (uuid "291e20f5-3bc5-438a-b0d4-6518421e6084") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "a07d859b-79a9-4788-8325-ddc502553565") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "f7846d0d-5f5f-469d-b68b-eff8fbadc378") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "a348edee-d4ae-43a2-9b72-f4fa1aff8e52") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0e2cde40-3b95-4ef2-be69-014d55a969f7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 140.675 168 0) (layer "F.Fab") (hide yes) (uuid "9c52ef07-1169-4bd5-92ef-ea8d15346d38") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48bc4e0a-7a42-41eb-a843-34d0fc7e17e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5ed553a1-07d7-45a4-acc0-1e0f909ed793") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a3a08b3f-a80d-49b5-b33d-74f710b862a2") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c09c4475-59ac-4fc4-8f52-69c3871de311") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fdedc051-36d3-46f2-be54-2ab3a4086f73") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f258df7-3e66-4d07-8543-856285cad653") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ac85c64c-88f6-4947-b490-ca379a3b1ae1") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88831132-97fc-4e41-b9d0-beb7fedde391") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "45d516b3-5ad0-41b0-b821-ffb8cb1720a1") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "78e4a347-51fe-4f45-a255-1f045f607a7a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70e06ac2-c026-42ff-ae6e-dd39467de22f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "436eb520-3268-4540-bde6-0f51239f804a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 7 "Net-(U5-ADJ)") (pintype "passive") (uuid "43bdaab4-0eb3-4512-82a6-5aa827d835bd") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "7f442f83-e468-4cb4-84cf-19f68cd3a8bc") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8dfa8eb2-f6af-4814-9c8a-167c232aaec4") (at 59.1875 61.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R5" (at -0.0125 -1.4 0) (layer "F.SilkS") (uuid "6c2a40af-8a74-46d4-8a36-0e6e4f204d01") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "22741592-d547-4655-bfae-fcf2a3c4ef5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "6e67b22f-ab1c-465f-8bb5-46175b509ff9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "a01df139-ae3e-44e9-a281-31e9644ff19b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "f1f202dd-ad97-43d9-8e84-cb2659e22e73") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 161.925 167.5 0) (layer "F.Fab") (hide yes) (uuid "cc5b466f-b09f-421d-9b6b-c8a1ebad56fd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b3200c8a-7f86-4bf2-becc-2e5e57d3f4b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/536545a8-ec75-4173-afef-e4439b3a7241") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c3b3a246-f07b-464e-bc80-8b02ad92ba83") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8439efb1-ce53-4f35-82fb-15ba69beffcb") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d50eb8a5-c2e0-4f28-b58c-0681b8e4781c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4638dd62-ac5f-46d0-b7e4-7d37a4ef6777") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76174dc1-be75-4ca6-8805-bed46cba3ae1") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8fadd5b5-08c0-4fb9-ac83-1b56bf766d5b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8113dc41-a1c4-43ce-810e-ed45914199f8") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59156097-e671-4bb3-b87a-77032de525c4") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6a95d53-0fb4-4fb6-9257-225493779fb5") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bff81ac8-8589-4fc9-80d0-432e0a75c73f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b1f165a2-7061-4cb9-9226-e92b647a8f76") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "1efa3cbf-7a4b-4b25-b2fd-cd1b670e5b87") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 12 "Net-(D4-A)") (pintype "passive") (uuid "11adb332-a021-4efd-b983-fd8f439a5d4b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "8fca82dc-76fc-4c97-bdbc-ecc655347bdd") (at 150 109 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R36" (at 0 1.25 0) (layer "F.SilkS") (uuid "b9ad568b-eaa2-487d-84c1-be2be4be3a68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "6ad3ba5a-258c-4a9f-8508-9e85742dfb48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b658be55-fede-4630-a132-4dc3a34d5940") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d95d048a-9d91-4f36-b0a2-cec8964df71e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b9d3630b-9117-451f-8f3c-4cbd19b5abaf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 300 218 0) (layer "F.Fab") (hide yes) (uuid "d7739bd8-05e3-415d-8f80-02793735417b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fee685ac-0f4c-4649-961f-a5864a628cc8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/4e28b459-dd74-4c82-9144-e285ed7f5928") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0fdaaee9-633b-468e-ae5f-e0e66834d8b6") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e5f05820-37b6-4bb6-8df7-8d9020433ce5") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4156421b-dd44-41d0-9c6f-2440529ee70f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7ea8e19b-bd7f-41a3-918e-3f7735b2df5d") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "babb46e5-7a56-42b0-92d4-b0ee296582c8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "78160b23-7517-433c-b093-fac67e00d47e") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02947f22-4021-4e82-957b-0e4c76282a44") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "12a12724-6648-40b5-9350-a1f8599c5c9a") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a187a1e5-56c7-492e-8077-0ef851aa461d") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed9c8765-f959-48d9-b6b6-d59d33186f56") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "54fce94c-b527-4c39-96f9-11034fc54be6") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 85 "/Fan Channels/Fan5/PWR_OUT") (pintype "passive") (uuid "87d60592-cf0b-450c-adf4-c9686a464bec") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 96 "Net-(D23-A)") (pintype "passive") (uuid "8731d494-b5c6-4c15-b091-698b1ea1d2a9") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "915226b4-fe40-4872-bc2a-395b435a2e92") (at 142.6 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J7" (at 7.75 2.5 0) (layer "F.SilkS") (uuid "18adf380-0d19-4dec-94be-50a6b7758817") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MB Fan4 Input" (at 4.05 4.35 0) (layer "F.Fab") (uuid "47b97dfe-1ca6-457d-ad33-2f558a843d0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b027876d-e506-41aa-b2b1-3bcaf6402c5b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "c9b84c26-2dc4-4321-8f54-4fc2e386c712") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e6b60fb9-c71b-4b84-b62a-9374e5f66778") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c85e8c73-2b2b-4b7c-b6e6-35c5de8af6ea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8debfacf-b04b-4646-9300-1ff752233c77") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3d592b90-981e-4f5f-beb9-a207ef5c59b1") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "77dfbb5b-33cc-4858-96a1-a58c3b11325e") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "afed3e93-0591-499b-990e-8d65105698b2") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ef61f602-23a5-42d6-9d84-9298b7b94393") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8656fea1-ac7f-4b99-ade6-930f2943f89b") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f58d7d1-ae6e-4bc0-8de1-718bccbfe599") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3020f8c5-9777-47c3-af29-e7bd2f7f2c2f") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d08b9d66-d00b-4055-80ad-e5ad8e5d9ae6") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0ca4946-1bbb-44cb-aaee-1cbed8db9e56") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "214c7a24-be45-4b21-bd08-59c623e99c7b") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77056714-237c-4b0e-b533-828c4e00dd65") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "32df79d0-9530-4320-8444-18ca439b3eac") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9e2d9153-d537-4b36-a936-f1cb24389156") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d557d458-b267-4d4d-8361-a85e8e87ec3d") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db450bdc-83d0-4f5c-9ec5-dc026a968f54") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2008c539-2a8e-4d9f-adfc-29102b9b425e") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d06da9ce-3165-45c3-8c2c-f1b11fce02b6") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "02e81ffc-f4ee-42c5-9b8b-21b551b99a61") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9fbd36fe-4dc5-46f0-988c-a8712e85f087") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0a6181b5-6b2e-4aa7-a095-323778b5e31e") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "76fff01b-c8db-4932-b9ba-5470a99aa4c9") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "7242f4dc-3619-4f90-9326-512b6741343b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "4a6d8f5b-12f5-438d-8e3f-53100d8ee97a") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "5e70809c-1087-4e34-98c6-864cc8c578d5") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 32 "FAN4_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "e02fa62c-f370-4051-85a3-09ecbae8603e") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 33 "/Fan Channels/Fan4/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (uuid "d7550be4-9307-4d15-9d58-4fef89eb7f5d") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 34 "/Fan Channels/Fan4/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "2ff6bfe1-1541-437a-97a8-9ee04b9a6015") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "95a5897c-87ac-4090-90e1-a5277e78f242") (at 54.45 81.8 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R59" (at -3.05 0 0) (layer "F.SilkS") (uuid "edadd336-065e-4c93-925f-9a66da2879b7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "4.7k" (at 0 1.43 0) (layer "F.Fab") (uuid "5607e3db-7f5c-4c4b-8616-4c0a9057b70b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "54a21b3b-f562-4954-bfc9-27d7e375d8bb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ae1f16be-8212-40d6-8b0a-7eef20eff6e8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3ed658d9-032d-47f5-9b81-63021769a0f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C99782" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "80201054-d053-4e35-8864-7089eae53a6e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3dbe29b4-afb5-4e80-b563-7e2e7faad9b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/1d1a8301-2e8c-4a8b-81b4-2a651297c3c3") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "97012528-dca5-46fa-a675-8cda46dca68f") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2cf4eb11-7e13-4623-aa1d-9be6d645ff7d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a8ada15e-d164-45b1-a65a-cb7d0c8a8529") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "382d136f-4e7c-4ccf-a12f-94ad3cc96b31") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "41bf1d0a-2ce7-4d44-86d1-a75b41dccff6") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b1a6b92-ba4b-45e0-ab61-c70b82cd9334") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "46d46cf4-055d-420f-a505-20754993872d") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0a2e04e2-9daf-4a0c-ac9b-0bb8eba3bd7f") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1cd1df0c-dc79-47cb-8d0d-d4a5f925dc34") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c338db6-76e9-4a01-9682-e6cecda57bc3") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b028136d-4d3a-4b71-a7ac-e0582f887c37") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 131 "Net-(JP12-B)") (pintype "passive") (uuid "915bde6f-4c56-4622-a832-84b3d8428fe9") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "9a967e06-2876-4b44-8e05-f7d146207cfe") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "96cf7b18-bb06-488f-a1bd-6e1efbf0b9be") (at 100.4 64.9) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D44" (at -0.55 -1.5 0) (layer "F.SilkS") (uuid "230d7db5-36fb-4490-b89f-4bcf4aff8027") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "3d2427c2-6bcb-4b87-bf46-a3f04ecf0f9c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "291b2142-6970-48cb-a447-6951fa02c8aa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aae057be-8681-41b0-8e16-dfe855119fdf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3779a9e4-2060-4b4b-ba33-d475a652b6ee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0c21983f-5e4e-42c9-be3c-37046fd9a04e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/6ac072df-f56f-411d-90ce-e618b6f9b3b8") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "01ac1152-8dab-402d-ad85-39e5a37ce592") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b264a611-304c-48a2-ac9c-2983fcae4691") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5854ed1f-8163-4bde-af99-4a6effd3cb13") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "67dfa688-de3c-4df1-ab70-9164d955d31f") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dcce3500-6668-4cd3-9cc4-7b297a43bbc2") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83c881a6-e3c1-4605-90a4-bc6d2111c8c8") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "973d2452-a6d8-4cfd-882f-b5785fb994b0") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22481017-31e5-4056-bf16-b11afbcadc71") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f7ec1143-9037-4173-abb1-8084035dbdc6") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8573d8aa-0980-446e-a352-a341085c33ae") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "356f0428-d9e9-44b3-bf8c-bf003819cbee") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a22b01db-bf6b-4d14-932e-a3ae86b7bdc5") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "75063933-0782-4680-a5d4-94874576142f") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5d032888-c7ef-48c3-811e-3ef9ef3b6157") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f532a9f-d45e-4421-be3f-b2c88677d52e") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f1b2e03-1fdc-440c-8fb3-e752ba976a81") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00a499db-ce0e-4b51-ac17-524ed3600e34") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "8afd6b9d-e01e-4261-9e7b-b9ae01455b27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "7b7c58db-f985-44e0-95d7-63c1db7a7f61") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 23 "FAN1_PWR") (pinfunction "A2") (pintype "passive") (uuid "7d4dab8e-6bf7-4b44-b0b4-00be24f680eb") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "97d8cb9c-7796-4f3e-9cd3-d41043b797fa") (at 107.8 107.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R13" (at 0 1.4 0) (layer "F.SilkS") (uuid "dc0be9d7-aad3-40b3-892b-c5ee5351bd03") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "4d9a5be9-ef76-4fe3-8203-0a0bcaad6b72") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "29a176b2-ec37-4619-aa5e-128e14c4d0a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "7ecf6583-4b57-4bcb-a27b-de41d23470fb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "434897af-b407-4afb-b831-9655552a250b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 215.6 214.4 0) (layer "F.Fab") (hide yes) (uuid "d9be239a-9831-476c-ad7f-dff57e1976c4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8cf6c1c9-88da-4acc-9b96-8aa7f8d2548c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/ab1976a0-4513-4f4e-8e36-2d488d6ca030") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "261bb5d4-c804-484f-af9a-97c6431b9007") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "04a1ee90-6ee0-482b-9bdb-5640a76546c3") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0b1090ae-2e39-4a7d-aba4-33f5ba01c684") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "635a20e1-2621-4077-b176-ea745db915d4") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "751315b6-f21f-4083-a957-b398f3b445b2") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "55074a3e-a0c3-4484-bc11-fdac12965b26") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5eaff699-376e-440e-bfd4-fc9f3ef90df9") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "115622f6-d234-4197-b921-6e866a6e333f") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b326214-5a97-48b2-964f-d9369250ccd3") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "de8b4a1c-5d48-4890-9e4c-a8b8456f95ee") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "dcc97ddb-a661-4a13-bc4b-df87fa61369f") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pintype "passive") (uuid "16645eb8-98db-4dbf-8aca-c1b43abe7b68") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "002e26a4-f257-4ef7-8a07-418b3e05d22a") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "983c6f9b-ab5a-42af-bd5a-759d76f91388") (at 117 67.9375 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q2" (at 1.05 -2.2 90) (layer "F.SilkS") (uuid "477d3983-80ba-498c-ac35-d958e56815cb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "006e2a57-e021-4cca-92ab-87d65e7fd4b2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f14a2c33-8ff7-4b36-8c21-4fdc1bff6bce") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "61fe0734-0c7f-4cd5-b1da-8922ff6b5038") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1f1eda1a-788b-41ae-8c73-63c6ff5b853f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 183 -51 0) (layer "F.Fab") (hide yes) (uuid "0a8e5338-8aea-4cca-a122-a8a93d6c9545") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6a3ec522-5b30-4ef2-bd37-b0e2fcffd464") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/537d375b-1ca6-4946-95db-66496543d0cb") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "542d7966-e72d-4681-b726-e11cee9f9e44") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1a36686e-b81a-4777-9470-8e6cf1eadef8") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6db80fff-8c74-49cf-916d-68daa280a886") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e28ecec-8991-4907-b409-88be9bd92fb8") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4d6f7f93-8a07-4dce-9ac8-6a321a015e36") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9431a801-d2ff-4843-a613-0b2cff93462d") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09c8a2eb-27c9-4d82-885b-e36da8bc1e69") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5964767f-888a-48c5-a3a8-cc89ca075cc9") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "341529b5-8e10-4b50-8187-96553fcc9a34") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "475578dc-2cb4-423b-8c68-d79b9b0abfbb") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3126f993-c08d-4fb0-936c-de741761609d") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac956a60-1215-4514-be82-eba5c5228849") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "34bd3e78-aabe-4fdf-8ea7-768ef5e9ba77") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7489103-31bb-462e-922b-79c153a6abd1") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "14318a6b-39ed-4aae-b1f1-ef04ae49d262") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 110 "Net-(Q2-G)") (pinfunction "G") (pintype "input") (uuid "2bf8e5bc-b378-4a46-aac7-7100ea4f3ca8") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (uuid "d4e1f329-0c61-4f49-9e0d-9bb41f97407b") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 27 "/Fan Channels/Fan2/TACHO_OUT") (pinfunction "D") (pintype "passive") (uuid "7d84b1f8-71cd-4fdc-b32b-b0663b676ab0") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "98735419-6747-4f38-ba11-a4622001b501") (at 117.7 74.2 90) (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") (tags "Through hole socket strip THT 1x04 2.54mm single row") (property "Reference" "J3" (at 0 -2.2 90) (layer "F.SilkS") (uuid "d0217ef0-4330-44de-9f0d-31d56457a05e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "I2C (OLED)" (at 0 10.39 90) (layer "F.Fab") (uuid "daf2327e-b3b8-4bc1-9776-c4a028d68e96") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f4e2fb3d-e476-405e-bf8c-646ed5806461") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "16a42e5d-145d-4bbf-bb7f-ec6010c63ba5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e180a63e-c187-47c5-9399-48141087700c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "84827cdd-5a18-48c2-bb60-7085044a2ae4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/4d8b05b1-f18d-4998-9d6d-a27d459de37e") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 1.33 -1.33) (end 1.33 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eec304b8-7205-4589-8459-2feec46f7bec") ) (fp_line (start 0 -1.33) (end 1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db7d6443-8ed5-465c-93c4-b46f5a54cf5c") ) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "93b37330-57bc-4656-89aa-e38665e57ea6") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "816a89e6-8fe9-4ba3-ab77-6f317c4c865b") ) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fc0d360b-d826-4fe3-8070-e6a8eb47b1ba") ) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3b139a4e-6c9b-4d10-8311-2d2dc84eda1e") ) (fp_line (start 1.75 -1.8) (end 1.75 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4610ec6f-6232-4a49-b26a-280ef3e763fb") ) (fp_line (start -1.8 -1.8) (end 1.75 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "30b68ad1-e82e-48d0-818c-8622aa6688b0") ) (fp_line (start 1.75 9.4) (end -1.8 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2dc81f88-102e-45c5-af41-71a1651f2687") ) (fp_line (start -1.8 9.4) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d119e31b-4401-47b5-af83-d8e0510809af") ) (fp_line (start 0.635 -1.27) (end 1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "942912f1-b246-428a-a1bd-cbd34eba78a8") ) (fp_line (start -1.27 -1.27) (end 0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c2b96ed-fcd8-449f-8ba0-18d45d6dbba9") ) (fp_line (start 1.27 -0.635) (end 1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f892fe0f-e542-4dd4-a1c1-cdca4da08ded") ) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0af9f44b-602c-427e-980d-a077f68f2b3e") ) (fp_line (start -1.27 8.89) (end -1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "07d60a15-3b4d-41b2-8a65-d8c093ce8fc4") ) (fp_text user "${REFERENCE}" (at 0 3.81 180) (layer "F.Fab") (uuid "f13c6be6-2153-4a43-9450-a623fe1f1310") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "45d5cc6a-40bf-4824-9816-b56fa842000b") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "676890c3-8b06-4126-8be0-6c845327f0ef") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 113 "SCL_MOSI") (pinfunction "Pin_3") (pintype "passive") (uuid "63d65d16-f1ea-44ee-a478-dfba7dfa2b11") ) (pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 114 "SDA_SCK") (pinfunction "Pin_4") (pintype "passive") (uuid "429491d5-7a9d-436f-ad57-d218359a434d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "997cd6e2-0825-4c4f-8cd3-c2068b8a18f7") (at 118.1 124.8 180) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D14" (at -3.5 2.2 0) (layer "F.SilkS") (uuid "19a97d3a-3419-470d-8fdc-92533a4275e2") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 0) (layer "F.Fab") (uuid "e69e7337-a4c7-47df-8141-df1d54588e8d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "35d2199f-b2af-4cd7-954e-12c146a87802") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d83dbeeb-8e87-44e2-835d-7ca0b83f5286") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "665e6df7-9252-4e56-93ef-23c2ab9e2d35") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 236.2 249.5 0) (layer "F.Fab") (hide yes) (uuid "38b592f0-76e3-4958-aa16-57aefbb79a10") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 236.2 249.5 0) (layer "F.Fab") (hide yes) (uuid "1e566923-c6ec-4924-87c6-f5bc09068b2b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 236.2 249.5 0) (layer "F.Fab") (hide yes) (uuid "acdf2da6-85eb-4ac3-87e6-a6888d94f27d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2fc2e828-ec76-499d-b84d-d239a2d7c8d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/aef1c41f-3561-4727-acbe-d50cf3c63f5d") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "998e666a-a09c-4b61-93a9-afbfea387b8a") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9b2d5a27-124e-4154-aaa4-d7da95ee2436") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eb86e134-9ab3-422b-92c3-fcdc5f968ff8") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7ba1633b-102f-485a-9d95-7fd1adbcd45a") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9593fbe0-44f7-4712-b0f8-69e4143d8c40") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c147fd82-dad5-4ffb-948a-4e5cd25335ac") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d550125d-17e6-4cfa-b92c-47acb6cfd2e3") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b88eb528-466b-4562-82ab-2d60138c2ec7") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7506b9e-bf43-418b-9cec-795303e45f8b") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4e787823-a10a-4ec3-aa39-7d5bd274f094") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4d93b0d9-81d0-4374-9bc1-6270a965dcf6") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "10d7111b-0a57-4046-8847-fd3a5538e88f") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98da6a52-3c58-48c6-b668-28b2a61a87a1") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b6154542-800c-4670-a4e9-4b146d80b7cb") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e203fec2-78c2-41c1-a7cc-feed6017f1be") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "668ee61f-bcd5-46af-9f21-c91f95b9530e") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6418b27d-be6d-44f2-8261-c8892b231609") ) (fp_text user "${REFERENCE}" (at 0 -2.5 0) (layer "F.Fab") (uuid "074be34b-404e-434b-a4fc-9e99c6c61c2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 37 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "b3c6ebdf-a217-46c1-9087-17b29aa3cda5") ) (pad "2" smd roundrect (at 2.5 0 180) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "5cc7369e-cd57-4530-8c43-86364a12ce6f") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "9a6de1d2-5329-4889-8840-66035c0c0145") (at 47 126.238 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D39" (at 2.578 0.08 180) (layer "F.SilkS") (uuid "e2f1ecea-4377-4a25-9843-7fcd45a3412c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "88f70046-3a47-41a1-aed3-6d85fc38c92e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ceb3d9d1-6a8e-42fd-9c8f-1049e41519fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "210fd5a7-9cc0-46df-b122-376df617c7dd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "70fddd67-05bc-4d1e-904f-dc16b1090d2b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a54275a3-cea9-4720-a0bd-73e2a92df43c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/97837558-d0f9-46d2-a819-7a11ef6794b2") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6f57f89d-85e3-4684-90b8-6ac9d57a7a4e") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8041eec7-af1c-4398-b895-847441d6abbf") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb58cb4a-b7d7-432a-99ff-0b45ec4a9b57") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e476e9d7-4df4-46cf-91cc-a3ca91b2f04b") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8b017a23-e875-4397-a222-8e6b0c0ca95f") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "720edf8d-122d-4dff-8030-d8dfb6d36580") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "30b01c3f-380b-4695-882e-4f028a3e6d90") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7282eff-194e-4444-b84d-ca3eadae22d7") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d02f96af-d1fd-4d77-a7e3-98b63e9a1e2c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f75d9278-8189-4a91-9b3a-7402e28e2329") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d633bc1d-c485-4040-b8c4-2614dc840120") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a026e03-c411-4718-943b-20c2c3e27fbf") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f310928b-643b-4984-8b95-bd7ec259e213") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6aaea461-fa6a-4bdc-b88a-975f9f98e3d2") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8052f4f-6c8b-4fbe-9aa7-9b420dcb0869") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4998db86-ce1e-4174-8ffb-ce0ab893571b") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c755daf-1c21-4c9f-ab75-bc81cba9116b") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "bbc6508b-3fd6-401b-b797-96be8693350a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "b0f241ee-1828-444e-b946-3248dbb12aa9") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 115 "TX_MISO") (pinfunction "A2") (pintype "passive") (uuid "d78df033-7f3b-4570-a1d5-80687e58f77e") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "9b5d8fad-a9d5-4261-94ae-888d349a7fb4") (at 124.4 112.375) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R35" (at 0 -1.43 0) (layer "F.SilkS") (uuid "ac21b713-2b8c-4184-8c00-68568f802cfe") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "09556990-2b7a-4c78-be66-0420655fb9c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e0bda8e8-ffbc-41ee-92dc-51282632c49b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c924cc2d-365e-496d-85dc-f9842e616c94") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "38ac5e1e-fc30-4fe3-9aff-94a807f86151") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "473b5f32-4880-4b42-8e99-e8259b4e9a1c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3b1e4851-557f-4220-ad1c-42f99e272529") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e6e8ae2a-5894-4e68-8264-24e364417d34") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2c9dc04c-c1ff-481c-becd-4b2b38538fdd") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2dbee2a-5347-49cd-987f-d3b916426132") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9762b0c1-2e6b-49a0-89f4-eab0abed3b06") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9b3f5e51-7f2f-435c-aff9-113ec90f4586") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5099ac2-61f2-4c7e-a8b9-00cd775c2fc4") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2d463ecc-d835-4817-b8da-833b8fd0bb0a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d305e92c-fd63-41b4-bff2-c5e72b4b3191") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ccfe164-da96-405a-b7d1-25e3830b62e4") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "60fdde75-d7e1-42e6-966d-94cd52de0097") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "34811fd0-406e-45ed-a259-d13617eba463") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "bde8aa0f-3f8a-4974-9bcb-9351fd305610") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 48 "FAN3_PWM_GEN") (pintype "passive") (uuid "1002f222-53a0-45bf-b7d3-d23287d83040") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 80 "/Fan Channels/Fan3/PWM_OUT") (pintype "passive") (uuid "7239deb8-5b63-4b78-9994-600a4368b2b6") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "9bbfb08d-99f6-488c-9cb1-4f610e8a9435") (at 107.65 71) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R9" (at -0.1 1.45 0) (layer "F.SilkS") (uuid "1f78ff46-c3d5-4aa1-b47f-b0318e078969") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "30k" (at 0 1.43 0) (layer "F.Fab") (uuid "d30bfc6d-0ff5-4d8c-ae0a-7efa21394612") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "55799e1e-42c6-41c7-be4a-97111cb746b1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "450698af-db8c-40f7-9860-f903075f388d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2c419ad2-d513-498a-92eb-27d71967d1c3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C100001" (at 216.4 138 0) (layer "F.Fab") (hide yes) (uuid "b2531e22-7ea3-4f9b-869e-7d87eb0ff62e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6efb18f1-7b3f-435c-ba53-17ba30e9bbe2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/09870edd-9a18-4370-90d2-0fc6c17d6715") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac0c6033-b583-40fb-ae65-e71eab4a9b05") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ee3bdc18-923b-4968-8bda-b48b22538645") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a31badcc-2564-4eda-8715-1d5eb47c90cd") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1a960233-083a-40c7-baaf-6a7f743cf871") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9c66728b-5c75-4817-a154-770509e9d139") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a7278f8-f089-4ae0-8072-e0b52e1a55d4") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2bb5865d-4fd8-43fc-9449-f414a17753af") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3742285-1e43-4542-b26c-24f74e1182b1") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9d3ef5fd-d569-4411-b1d4-fc154a5e4a29") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58fa6699-772a-47c5-839f-a440c7158166") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "1c772d69-ecec-4316-adb5-2d3d25aba29c") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "1ba03375-155c-4109-b410-f377e079ee07") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pintype "passive") (uuid "7bd3b4c9-d4eb-4398-a07c-684cd4b0072e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "9c9582be-7bea-4043-b621-c796bf47b478") (at 150.45 99.55 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D69" (at -0.025 -1.575 0) (layer "F.SilkS") (uuid "bde99cdc-3e77-4d45-9d5d-3c27fb952339") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "1033b512-36f3-4e00-89bb-ad0bd21b549e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a77b8a50-9659-49b3-94ab-139e0cc6dd8e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9a77b79d-bbd1-486f-b2ad-7df3e80c60a7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "da52f171-9837-464c-afaf-d350512fff8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9ce57f88-5fff-4fbd-9803-b1069a02f5ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/abcfbcd1-063b-4143-944f-3f5983199a72") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7b330404-4bd1-4cf7-831f-227b08ca1a79") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f22c6212-283b-438b-9ac4-84e54b0fc249") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e88cad9e-0ca8-44d2-9bdf-904c4a3fc82e") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13df90ad-9f58-4ccd-ae73-35b1bf45f10b") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "17c72570-1a24-4f77-9f3d-9a4f47e7b50c") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e48aa007-7212-49cf-805a-f9e17c6101c9") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e5ecd27c-09c0-4e69-8f8c-de8f10e4b377") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98a0f6b2-ac16-4a3f-85c9-3ab88864825d") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77c89837-34f8-44b5-b7d7-9c71a2b7c4a3") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88509145-faef-4063-a342-1eec89df8d67") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "71c9d42b-74de-4079-aa86-4a1ff1eb1f9a") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b34e487-c04e-4a65-be3f-ace9e7efe5a0") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "89f3bfa6-e770-49b7-8594-f6f6a8b6daeb") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91b7f830-7352-42af-9639-40bd5a8a4bbf") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "06946225-4f8a-4931-ab7e-5401521a55b9") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "76f1c523-3b89-42f9-a7a1-247648e8d8e9") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8a023ce-f7c6-4dc1-97a3-f4fa837f2992") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "ea4efcfa-1073-47b3-a743-a7508b91818f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "10a3ad70-ddc8-460c-837e-545b8c7fad0a") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 88 "/Fan Channels/Fan6/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "522f64c0-a089-414b-aa59-c5452328b2a9") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "9d70d401-de1e-4aaa-b6dd-55e1aa68b559") (at 51.6 85.125) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R48" (at 0 -1.43 0) (layer "F.SilkS") (uuid "c74bf66b-f942-44ab-abe6-eb6a415978cc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "330" (at 0 1.43 0) (layer "F.Fab") (uuid "67d14ef1-611d-4a2a-8628-cebbd968452a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4756d8bd-9fe4-4204-8b49-a7cbda77f943") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bba1ab64-df7c-432c-b25a-92ee980f2c09") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "eaf3ed0a-f82e-4811-a3a4-b476df91e256") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C105881" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2c3f3daa-761c-4484-8bc4-7b178f35325b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87ee4319-7c29-481f-b541-7c9f6dd926d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/46efb677-f647-4e2b-b34d-dc07526879da") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5ffaf1f-ddc1-4597-ab86-bd2a53ee589d") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7cfa1b67-156a-402c-addc-2a5c40361303") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bc76527a-dc09-4ae2-8778-401cca50ccf7") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4372558e-da6c-47e9-a3fc-c510aaa8ba43") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8d210d18-843f-4e69-9664-59a135ba56c3") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0b68c1c2-dce1-4fdd-a5cd-26e1987e4bcf") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88f17f08-9e83-4ffd-ae48-fbee9e872115") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b3a8eb7-4505-479d-bbd6-644f8c3e2ec4") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "186791d1-0280-4bd2-a0cc-3c66ccb94ee0") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "21192eeb-fb66-4fc1-878a-f0d3c2be8694") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "4e99bed5-7f60-45ea-8ae8-3de084b02a03") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "342b6cfe-8a2f-49df-9094-2e5152366a07") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 81 "ADC_REF") (pintype "passive") (uuid "b0a80dbb-c50a-44c6-9965-d43c6254674d") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (layer "F.Cu") (uuid "9e297fb5-7dd6-4bff-9d58-a869619f5ca6") (at 69.7 77.4 180) (descr "Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C5" (at 3.3 0 -90) (layer "F.SilkS") (uuid "c82e44e4-478f-4559-9e55-f554ba397ab8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 25V" (at 0 2.35 180) (layer "F.Fab") (uuid "8adecbac-67b2-4aa7-954c-fdc46b42f3bf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "7c5a356e-ca3e-40cb-a8dd-fba32b05ecf2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "02962800-fc48-4f8d-8c85-3eab0c780f7b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "08dfb0a5-c329-4fe6-bf48-f28242b384fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7194" (at 139.4 154.8 0) (layer "F.Fab") (hide yes) (uuid "99e5f12b-7b75-4300-8620-56dc1fca893f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7058d43e-b3bf-41da-bb88-997d4c849abc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/9a6664d9-b6d9-4e81-817a-45c56239601e") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start 1.75 -1.51) (end -2.635 -1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6f539df8-0c5c-4c36-8024-9150279ff3a6") ) (fp_line (start -2.635 1.51) (end 1.75 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a87b838-0647-4ab3-a9d4-8abe2cccb2e9") ) (fp_line (start -2.635 -1.51) (end -2.635 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "11ec085d-364c-48d7-9494-83b4703c41d6") ) (fp_line (start 2.62 1.65) (end -2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e618de63-a474-4159-bde1-774fec00db6c") ) (fp_line (start 2.62 -1.65) (end 2.62 1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc2df0c0-7e8f-4211-a7f1-c3e4f8dd42e5") ) (fp_line (start -2.62 1.65) (end -2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1e9427c1-5411-4681-8680-a3c8903eccb0") ) (fp_line (start -2.62 -1.65) (end 2.62 -1.65) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2acbecf2-3bfc-4cfb-a30f-f6b76a107c5a") ) (fp_line (start 1.75 1.4) (end 1.75 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d997afdb-b102-4f83-9313-68f869ed0b2d") ) (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ef96446-6e3a-4135-aea8-ebea670c834b") ) (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "315a9226-9efe-43f2-9327-61228c7e5c61") ) (fp_line (start -1.75 1.4) (end 1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "24da3dab-1ee7-403a-8f70-d0445eeca0a5") ) (fp_line (start -1.75 -0.7) (end -1.75 1.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e7930155-3b11-4b19-9854-01eaef667573") ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (uuid "188b6d34-ed9c-4fe7-b31d-abb498e48ba8") (effects (font (size 0.88 0.88) (thickness 0.13) ) ) ) (pad "1" smd roundrect (at -1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "342f519e-407a-4637-9278-827c66fb4ef3") ) (pad "2" smd roundrect (at 1.625 0 180) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.166667) (net 2 "GND") (pintype "passive") (uuid "9a052feb-73a5-4d6a-8e06-25bdaa62ec91") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-12_Kemet-T.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "9e5655ae-0d0c-4ba1-8041-9f9f50581e3f") (at 134.95 115.25 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D67" (at -1.6 -1.425 90) (layer "F.SilkS") (uuid "2e4c665a-67c6-42ac-8a90-27cbd4e1116c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "bc04f191-be13-409b-ad3e-52f99525b088") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "220163b8-4bc6-4e7b-ab23-e9aa0153a7ca") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d98cae20-854f-4956-a1ee-b1848be0be09") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c48d4dbb-22f0-43c3-a812-d53c08faddc4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "83b6f3ed-0a20-4363-8745-55b47b040cb9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/f93337c1-ba43-4bd7-abe4-9f429ba85e00") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ed8c37f0-35d1-4d6a-b5c5-e5cb825e8ffd") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "85ad4e60-1633-4162-bd87-75f565652a76") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3b740086-c833-4b3a-9395-cd99c467bf99") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3d2133c0-3e9a-45c1-bf2d-a0938a79b9cf") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a695f5e8-0b77-473f-896d-bcf8abad594e") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "72738d64-6794-4787-9e49-f35bb2baee6a") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c40244b3-eb7e-43e3-a6fd-47b2c94d7c7f") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b64a0d45-73d4-4c33-a039-94909ebd8729") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c0e7527-1b76-450a-9b03-c232051f5d86") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "756e8d40-04d6-40bb-a6ba-52c9b0b219df") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a40813a9-e65e-49be-9488-11856c2014c8") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e039c151-0f50-4d10-9e37-37a26a2b65f1") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e54c7ed-0a18-4229-8f77-b2bfa85d291b") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "999513eb-91a6-4743-8ae2-2794e2d005a7") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "363cc9f9-e271-4ff0-8918-60c16e3c2aae") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "33a641c5-4efe-40fd-b126-d1d2ca2d7560") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c4afddb-cfb3-44b1-b24c-56af5acb04e0") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "8285a92c-5f29-4c1d-8dd5-05685ec25f2d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "4850b3e0-641d-48fd-82f3-919a07282eb1") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 84 "/Fan Channels/Fan4/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "a133fb99-3939-4603-a0c9-ed97fa9a236c") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu") (uuid "9f1f62b9-462e-449b-9b52-c6c443e7a2e4") (at 89 125.575) (descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Reference" "U3" (at 1.2 -5.9 0) (layer "F.SilkS") (uuid "e0c2b986-0e7e-4894-bbc5-4534c91b9b39") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "CD74HC4050NSR" (at 0 5.9 0) (layer "F.Fab") (uuid "1e9b70dd-7745-4511-8356-bf5ac827b183") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ab6dc14d-e383-495e-aff8-28816a205770") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ea8495dd-3b3b-40ac-9f50-51adceec81e9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3c398a54-2ff4-4922-9c05-48a3d50a50e7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C131932" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "fb78449d-d62c-4253-b01b-f52cb7ec960b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7750a435-a1b1-4272-94b1-dcc48863e801") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/bdd45721-57d2-4880-b454-a09119643f5a") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -5.06) (end -1.95 -5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "52f9a2ab-2029-4d04-abf9-dc0065d3720d") ) (fp_line (start 0 -5.06) (end 1.95 -5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "555d1d97-8a1f-4e89-96a7-8dd5436e35ed") ) (fp_line (start 0 5.06) (end -1.95 5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4d251889-3028-4a20-bc82-f84459ec9c8b") ) (fp_line (start 0 5.06) (end 1.95 5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1bda1037-a56a-4cd6-9571-aa999a1d0bbd") ) (fp_poly (pts (xy -2.7 -5.005) (xy -2.94 -5.335) (xy -2.46 -5.335) (xy -2.7 -5.005) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "d848dec3-9937-493c-9441-71f9013c16bc") ) (fp_line (start -3.7 -5.2) (end -3.7 5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "00fa3121-ceea-4d76-8721-abce517d4905") ) (fp_line (start -3.7 5.2) (end 3.7 5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa262fc0-c2e2-4ed0-9641-e2ab0019da9e") ) (fp_line (start 3.7 -5.2) (end -3.7 -5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "70234364-3b8b-4229-9757-366a15d13d1b") ) (fp_line (start 3.7 5.2) (end 3.7 -5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "709cfde4-5eda-489c-ba30-244abf24252a") ) (fp_line (start -1.95 -3.975) (end -0.975 -4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41ac0e45-2401-412f-9ec9-9c7a6def7db1") ) (fp_line (start -1.95 4.95) (end -1.95 -3.975) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "420be68a-e81b-4349-95eb-e1b51a3d2dd3") ) (fp_line (start -0.975 -4.95) (end 1.95 -4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd268660-31ef-49de-b78d-8176205d6ddf") ) (fp_line (start 1.95 -4.95) (end 1.95 4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aeab8638-cab5-4f82-baea-883bd969b213") ) (fp_line (start 1.95 4.95) (end -1.95 4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dfb4ed6d-a075-41ab-a411-31f7727e8fe8") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f5ad87ae-cdcb-4fef-a964-a71cac35766e") (effects (font (size 0.98 0.98) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "VCC") (pintype "power_in") (uuid "e4ac28a4-4292-44af-8826-84b7c5565b76") ) (pad "2" smd roundrect (at -2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 60 "/PWM6B") (pinfunction "1Y") (pintype "output") (uuid "260e61c9-1fdd-4edf-9dcb-aa6673dcf471") ) (pad "3" smd roundrect (at -2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pinfunction "1A") (pintype "input") (uuid "3479a98d-b472-4632-a601-aafcc80adf91") ) (pad "4" smd roundrect (at -2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 61 "/PWM7B") (pinfunction "2Y") (pintype "output") (uuid "f77ffb98-0fe7-4f7e-9e9f-1dbbb975ca3f") ) (pad "5" smd roundrect (at -2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 43 "MBFAN2_PWM_READ") (pinfunction "2A") (pintype "input") (uuid "183b122c-8c4b-4664-bf76-3a0a4118203e") ) (pad "6" smd roundrect (at -2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 63 "/PWM0B") (pinfunction "3Y") (pintype "output") (uuid "f78bfd4e-a8ef-41ad-8b11-3da2bcb5b9f8") ) (pad "7" smd roundrect (at -2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "MBFAN3_PWM_READ") (pinfunction "3A") (pintype "input") (uuid "1a43c4fc-4b22-4da2-9251-37fff76b2c69") ) (pad "8" smd roundrect (at -2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "eae585f2-b0e9-4e28-a45d-b21f70dc8b16") ) (pad "9" smd roundrect (at 2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "MBFAN4_PWM_READ") (pinfunction "4A") (pintype "input") (uuid "62006624-5a8d-4e00-a40f-e9d5156ea28b") ) (pad "10" smd roundrect (at 2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 66 "/PWM1B") (pinfunction "4Y") (pintype "output") (uuid "dcaf1bbb-c882-4634-991c-69e04f9fa9eb") ) (pad "11" smd roundrect (at 2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "5A") (pintype "input") (uuid "da4c1ae7-0d2b-491c-bf99-31861b9c0845") ) (pad "12" smd roundrect (at 2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 122 "unconnected-(U3-5Y-Pad12)") (pinfunction "5Y") (pintype "output+no_connect") (uuid "0a39f1f5-71de-4c5a-ab16-d338f3bd456a") ) (pad "13" smd roundrect (at 2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (uuid "f5f94c55-5fd4-4f5a-998b-6ff170a9ae1f") ) (pad "14" smd roundrect (at 2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "6A") (pintype "input") (uuid "7cb03e6a-a078-47d9-99a9-dedb5c34342c") ) (pad "15" smd roundrect (at 2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 123 "unconnected-(U3-6Y-Pad15)") (pinfunction "6Y") (pintype "output+no_connect") (uuid "a29ad9c0-d050-4612-af6a-d4639a4883e1") ) (pad "16" smd roundrect (at 2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (uuid "1ba11d6b-0f22-4629-a895-baf5017e00f8") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a06d311f-43c7-41c3-8b29-06d1c159da03") (at 50.65 78.5 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D37" (at -0.05 1.65 0) (layer "F.SilkS") (uuid "fcc1f90d-e679-4da7-9ee3-7787d0cf1505") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "25129daf-79a5-4f0f-bc07-887cfd378d7a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fa611b80-7a53-4683-8dd2-74c5570f77e5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8b294de6-9ef3-4eb9-ae3a-ad4940d7aaa9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9957d873-d8f1-4122-bb95-0d5907365309") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "13e2076b-64fb-4211-948c-6ec67d5e50af") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/a1de4de3-d1d5-4bf2-82cc-caf80e12a622") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2d9a3603-7263-42ab-979a-fb3a4fd3ffe0") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "420baaf9-2edb-424f-883d-88d50810cb29") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e80084c3-e733-43e0-a287-28bab6d89111") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e6b8e4c-d9f4-4210-a0d4-e29078544cdd") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "14675612-aaa7-459b-82fa-538cb35d0e3d") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ab289597-8d97-4a86-aa0c-d89ec4b3f0bc") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83204282-7e4b-4d02-a476-a65a94579417") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e952082-1d85-4807-9f82-ed39d9ba4171") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b67b7045-f7f4-4ca8-9fe1-4d16f261189f") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa1579f5-61f7-4493-ac39-03bdc0b501c4") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "35ca3842-6eb0-4cbf-ad29-acd1ba100d8b") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38b83ad6-af37-43e6-a576-68919fd5882d") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f32162cd-eaa0-4a00-9d4e-4e0dbf431b47") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8c08ed5e-5c94-413a-933d-07beaabd0307") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14479a9a-7d43-45a2-8af6-bbe3ec009bdf") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b1d46c4a-89f4-485b-b793-5693c5cc0684") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a5a73722-6b46-48dc-b6ee-4f08a77da293") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "45ad235e-49a1-4adb-8a7b-d1233f1e01c8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "30473bc4-a950-4c16-a450-82396f520966") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "ebb564d4-2b42-443c-a171-0534556d5b6b") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "a103e322-082e-4ef6-b79f-47cebf258ece") (at 167.5 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H2" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "4fb6c016-5270-4a9e-9296-48c81d23306d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 2.7 0) (layer "F.Fab") (uuid "51ca36f0-ad3d-4057-9a08-ec47152857ad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ccd25c9b-dade-4caf-b9ae-f2a132204abc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b37c6291-8c53-492a-8703-d34427eb665a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d5fe56ae-27d9-4e97-b84d-7682d75e4ace") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cb0b18c3-d210-4659-b0ad-bfc6c030c8c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/fc6c8e15-a262-4b02-88cd-fdf30196bc30") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "3bc43c80-e3f6-4d2f-bf93-4a1da5d255b4") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "1e4a2833-99a7-40a1-8a81-7fb90c2869bc") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "bea460d5-e068-487a-9811-d97458a090cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "05f837eb-b7ef-400b-8b06-353a40a9801d") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b7fdeefc-70fb-4c09-8111-fc815bb8de80") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "1021e64e-dceb-416e-9572-3f04dfc8cc21") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b1ec2230-e687-49a3-90ae-5d0374de7fb0") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "5701c75a-e13e-48ef-9afa-846baf0a2924") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d0ca5cd3-63d4-4bb5-8eac-37e2e362f49e") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b3fe5f39-e5a1-4546-8b3b-929520954901") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "8f291f90-c7e6-4ab8-9be9-fc1462254054") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f2778dd4-87c9-4587-9fd7-d845ae27b30f") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "a28caf18-fdd6-4a0c-871f-ca6a401f0fb2") (at 127.2 115.95) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R33" (at -2.2 -0.05 90) (layer "F.SilkS") (uuid "d14d8c82-560f-45e2-b94d-c0e31d0c1277") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "0a516a2e-a6be-488f-8421-8650b1e8c7f6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ebf403b0-c698-4b01-bd98-5e367ecdfa0b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c0d1280e-b7cb-46a6-9806-3291011f0a06") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2a39ec17-4793-409a-a4fa-2672ab9763ad") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0ba4a8c9-76d7-4466-b7de-02a223f3ffeb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ba71427e-cc3e-499d-acaf-eafd39d087ad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9b1d3296-5b40-4e13-aa3b-8cb3f22d6eb0") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b24a8f40-ea93-4a52-ade0-32bbbcb8aa8a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b0d3241c-7333-4638-b40d-91603f246355") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "540681a8-063b-4be7-be5c-96a28c5a957f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e23165f5-835e-4a7f-b04d-de5d75f81805") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0054e48b-db30-43ac-b1c2-60bd92c28f99") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "61be3f5f-7ca9-493b-a6c5-e9351e5aeb1b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c869741f-27e2-45aa-af14-9788c9480e24") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d21183a-4116-47c3-8993-2b557c4daccf") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7ec718fc-6179-4d1b-8dd8-97686a407f2a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "e98a60c6-bbe6-4d7b-a60a-ff25f9a202fe") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 79 "/Fan Channels/Fan3/PWR_OUT") (pintype "passive") (uuid "0df1a358-de75-489a-84d8-2364e59d230c") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 95 "Net-(D20-A)") (pintype "passive") (uuid "736ead21-5285-4b2b-a707-22d4581fe222") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a3ffabff-8cdc-46cb-a429-431e0f21323f") (at 145.45 128.65 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D51" (at -3.55 -0.05 90) (layer "F.SilkS") (uuid "f8b14ef4-88d4-48b9-bdc9-57c05b5d22a8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "11d9c010-3072-41e1-946a-a38e21c0fe41") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "16d3e954-4a61-4d7c-81e5-af3ba81af542") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "88e018a4-095e-45d8-862b-e070a9073cd3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "64e501a2-cbe7-4e90-8b07-3304241df4c8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "046a5f90-86a5-48fa-8bc5-c40fe2663d27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/31b59d93-a9a0-40d8-92f8-9879661e9475") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a830ba64-cb8a-4cd3-963a-2f7d02efbf43") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fb4a385b-54a2-4a38-b98d-6887774763d5") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "716c7df7-ee15-4f5f-a3f2-9b4e0acefe84") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2e17c589-e808-4f9c-942b-553150f34e64") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df2ca8ff-ee8e-4546-ac21-8af1c6d81381") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba34712d-78e2-41a2-b40f-8a3dd519f893") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8956d319-6795-4e85-80b3-4f29b5558e57") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9bbe6bec-2630-48da-a9d8-c557cd1c54f8") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3404053f-a5fb-49af-8bfe-201f2679be7d") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c331fa61-4ac5-4894-abee-2ced6d1071c1") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "956bb741-7822-461e-909d-a4606eab3420") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a80e9dd0-1edd-45d3-831d-efc5b4d3dc96") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c83ae36f-3652-47f6-9c28-1970bcedd305") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "291d96b6-3a14-4332-bc92-89fd53830886") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "78dd5ae5-d66c-4343-91a1-06a71725ae53") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ca033bc-07fa-4382-870c-32386c64bfde") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "092f9a10-21eb-481e-9dbf-320c197d0d87") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "1b364e8b-0fe4-48bc-8b95-82ea885d95f4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e2b443e0-89fd-43e4-b0a2-c9ac76264ce0") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "4702f30c-7b22-4739-99a0-99dedcb4afc8") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "a57a044f-1e0a-4f57-b98f-7a871f824575") (at 144.5 94 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R40" (at 0 1.5 90) (layer "F.SilkS") (uuid "e9709903-71d4-4621-a270-906dd9cca47a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "5d993a34-9101-4801-a288-14569279d981") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "524a8994-b22e-4fa4-b928-d2f13f0153a6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "de1a8f80-75c0-4bc8-b80c-13c40dd9c705") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "dd0e70db-6de8-4c09-a332-e76b294af3db") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 50.5 238.5 0) (layer "F.Fab") (hide yes) (uuid "131d05ae-4766-424f-a8fd-d19d4344fe34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2c475541-3574-4cdf-951d-b0b5b523de55") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b9adebfe-e763-4ddf-91e0-fc678f612c60") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2bc70707-dfdc-4390-aabb-305fe7f4d42c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2a390a0c-edef-45a1-bbcc-67a61f5174c9") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b99fa3d-cc9b-49ef-809c-0cee51ec148c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0bde4929-ee3e-44af-8b35-bedb5d895101") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "372961ad-6162-4cca-a25c-bfba80d6942b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ccd367cc-53ec-45fa-9f11-5b3eb959d83b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0860f828-9030-4850-b1e6-ede0f01d0b57") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e5836baa-6e4a-42d1-91cf-9bcada858bc7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b606bb8b-4c08-4a17-af14-1d62ba5d4f28") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "4037f1c6-2c4f-4799-a7af-4c8beb3cfdab") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "FAN6_TACHO_READ") (pintype "passive") (uuid "7390bf7a-10a3-42fe-a9f6-d7cffe9e14ef") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "2ab0af4a-1461-4110-a005-a15276b1edf8") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "a754218b-fe65-43a8-a7a7-e9bb3dd9945d") (at 79.9375 67.05 90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP10" (at 0 -2.33 90) (layer "F.SilkS") (uuid "ea81f12a-9192-4614-947b-3df2346662d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "NTC Value" (at 0 7.41 90) (layer "F.Fab") (uuid "3fe05355-1a7c-4569-8ca5-04693964095e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "df993df9-47e4-400d-a0fe-665c9512055e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1a8601fc-d7de-40dc-b9d2-673febbf72d7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "c19c68ec-93e8-4af3-91a3-8808ec23b1a4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d8dbbf1b-4974-4076-af00-d1098c53eba6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5ed15fde-520c-48b7-b7ad-f1dab65ce507") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "76af8d48-544d-4366-bca4-8c98b6197188") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a666f85-7302-4d98-b506-488fc28909e4") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7955fb11-f789-4cae-a659-d80c602c2309") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "987e528d-8025-485a-8ce2-62c32dc6e296") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "672c5bd6-0fec-46b9-9367-5d5f79449233") ) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7ddcfea7-bec7-4950-a8df-c618e8a15f8c") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f58a868-a198-431b-ab3c-7a2c3cfe09ad") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1b8929aa-d7d6-4d5a-bfe2-45565dfdb738") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e7bbe38c-94e1-4261-9fcb-06ce0ee15b4d") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6662e6f5-b38c-4b4c-af72-fefbf460dfc5") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5e09ff8d-4a90-4941-b75b-a827f5c786be") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f936c380-b4a8-492c-959a-1379c876bd8e") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "12e2ad1a-11a7-497b-9762-1b3704f4cb27") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0aabfe06-5e42-431c-93b2-87c4aaa69a8b") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b572989-ecde-44a0-ba58-5f086f08a889") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "ff8adbf3-b9d1-4dfb-b944-3b810388aa03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 102 "Net-(JP10-A)") (pinfunction "A") (pintype "passive") (uuid "b6cc6709-6b60-4e77-86b6-d6fd09fe79f9") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 81 "ADC_REF") (pinfunction "C") (pintype "passive") (uuid "cc4c6f96-0149-42e5-be02-010dd3765bf8") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 103 "Net-(JP10-B)") (pinfunction "B") (pintype "passive") (uuid "37cdd717-7a4a-486c-8d88-5b53344eb6e8") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "a771c02c-8b53-42d8-99ed-0a81252d0009") (at 111.9 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J9" (at 7.75 2.25 0) (layer "F.SilkS") (uuid "59bdaa10-fcbf-4ce2-a1f8-c2e3b3a3c0ea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan2 Output" (at 4.05 7.1 0) (layer "F.Fab") (uuid "74354faa-4e27-4120-8037-1330cc82a1fd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5da6a717-a2ab-459d-a697-cd664d54bd72") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "42381874-0b1d-41fe-8b09-ca2c76770076") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2819a05d-5b9a-43f5-b8c1-05c1c9906eec") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "74af2082-daeb-4593-86d4-38427ad85c5f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/e0ed2a0d-fc70-41a0-8770-44ea381a0936") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "28113155-c4da-4415-96d1-37a27e9ed1bd") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7eed4b80-4d4a-4ee2-9428-6c41e1ff1a07") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5f1e9dd1-0232-4db3-a61f-5ed924cd7af6") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5b66895f-a6be-4a79-adf2-0e8c8c4db8de") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a076d9aa-8fff-4d45-ba31-fce662a276e9") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a2c209c7-ac84-454b-bee0-fe625c78df9b") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2eeba64e-46ad-4523-9962-6b5865c60a5f") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9654d96c-772f-47db-b818-5df8253fd921") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "80d16204-7667-41f8-a585-7c5eb0c825a6") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f18f7a2c-b203-412f-ac6b-21f8f64e33a8") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "23d19dea-862d-42cb-b07a-3b776b0c5afa") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f908bfd3-43e0-4b63-ba61-36278e5510cf") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c01dd99c-b7eb-435b-84f7-1f25f16a7927") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b8a82358-6637-4486-87b9-9a9098152c2c") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "824c8d6e-4735-46e7-b509-78c084604f30") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e6619b22-5452-4b95-ac7f-3159bfa4b01c") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4b40e8e7-d9d8-4ed7-9fbe-2db57cf7914a") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "edcb3d07-7b8d-4126-84d8-20ea111a4e44") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1f2ef58a-8046-4bd7-839b-6d7e35def8ab") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ab157488-bf43-4162-b60c-d5f3f195f793") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea23fad3-f9e6-4d67-8763-322b85e4ede7") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "96791d4f-512c-4b70-919d-6ae2e6abc6c8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "0427bf9f-c8b6-4b48-8c14-7507cfcbe933") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "1c5743b5-ae15-4e98-99b5-2d17d24c9638") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 37 "/Fan Channels/Fan2/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "12c6a7bd-1b0b-4780-8fab-36e8de312ce2") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 13 "/Fan Channels/Fan2/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "17b0d128-5b5b-4e67-a66d-c570f4a18023") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 38 "/Fan Channels/Fan2/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "d4168318-8b82-40e6-ad1b-3157111f5ab7") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "a7b10037-0242-494d-a441-dc48bef50b50") (at 130.9125 71) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R30" (at -0.1125 1.35 0) (layer "F.SilkS") (uuid "ad4f2514-ca1f-4ddc-97f1-6ac62a65c90b") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "30k" (at 0 1.43 0) (layer "F.Fab") (uuid "cdd7f52e-967e-4746-afee-266fba193367") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "93eb2b90-fb48-4375-ba75-9e820c6a8eb8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7d050fa2-5eac-4660-befa-8bed7541ac3f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "be6c4612-9a0a-4c98-aa2e-6b2dc68a5df5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C100001" (at 262.4 138 0) (layer "F.Fab") (hide yes) (uuid "009aeead-79d2-4b45-8283-61870d9a4f0b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7cc6ecd-69fb-4730-aaf0-20681b3ba86f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/09870edd-9a18-4370-90d2-0fc6c17d6715") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2fcd8518-cc72-4993-9804-e00af31674e5") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69bc8602-eb7b-42be-a65d-0d198c320a1e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9cb334c8-b184-44b7-bddf-98a52dfb00dd") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a7141ad0-9fdb-4f38-af56-6524b39e3595") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2fc40c1f-dee9-487a-acb8-0c6bc91b22af") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a16bad7-5673-439f-90e5-3c8297dffb8b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "79bd987d-90d7-40f0-b788-a2d39a601bb3") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "50717d55-2586-4b3e-aba7-accda56cc77b") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "961ba695-9dad-44df-a21f-7b3733ec57c7") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "214c9283-4f3e-4b8f-8b79-b915642ca276") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "af1fb997-fdd9-4aac-a808-261aded980ef") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "f7f68c57-aaa8-494c-a1eb-288b078622a8") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 64 "MBFAN3_PWM_READ") (pintype "passive") (uuid "d095e0b4-e1f0-4e8c-bd2b-9e8c1e236c7b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "a8d72738-ff46-4892-b964-836bda92cacc") (at 116.225 65) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D61" (at 2.275 -0.175 90) (layer "F.SilkS") (uuid "01df7e62-592d-4d1c-abfb-5412f5dccf61") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "e33c7e2e-1ed4-4500-91e0-5b35a07f5c6e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b0aa5df-7648-4027-8cea-06ed202f05c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8757461e-f8b7-4b26-8d6b-8f097ebf7f8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0ee41195-da97-4993-91f2-26eb79b9b546") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9cc24a9e-8bd8-4f28-a0ba-e7f4504aeba0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/8ad39315-2c9c-416c-8930-0ac5c2b62eb9") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1c625183-4f96-42a7-b2ef-9874ef2c2501") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1a4845c7-e4e3-451d-97f7-67918837a62f") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "16cecdef-05aa-4319-a849-eebf6923c361") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89c6bf57-0e79-4bcb-a756-cdf192844a08") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9dfe01ee-c1ce-4a08-8f77-c58aae4bbf05") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "63aa2e88-cf8f-44fc-863e-aa0d12cac54f") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4be158d6-d72e-4318-8a2f-a4456984c065") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea8e5dcc-e50d-42aa-ab13-b07d95548ae0") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c04eed6a-58ff-4996-b81f-6360925954e2") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a508e05c-3c84-4043-9558-92d2ff71430f") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15b28d91-dfb3-4e4e-a537-91bc7113a86d") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "466a7f64-862d-427f-a05a-58b2362b2ee5") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a58210f6-d092-49e9-a7ae-250f613f6fd6") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "03d12c6b-2908-4703-b03b-5c742af4b60e") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b5cbb99-6b36-4a57-b44a-1e0af536bf7e") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3eaa294-9209-4071-bb5c-e1cdabbdfa3c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "caca8be1-4b51-4632-a983-7edac055c016") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "6f7cb757-65f1-402d-aa1b-995723679b67") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "a353d7bd-c2ad-42b8-8cad-030e63864160") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 27 "/Fan Channels/Fan2/TACHO_OUT") (pinfunction "A2") (pintype "passive") (uuid "694a1429-41ec-4073-b6e0-3906940691ee") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "ac2dd344-9bcd-43ef-97cf-410a56901723") (at 70.65 71.05 90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D3" (at 0 2.45 90) (layer "F.SilkS") (uuid "73145371-3a74-4c20-bef7-d460d3ec4fbe") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "29cd717c-fff1-49ff-aea5-6cd60a105174") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "da5f262e-70e3-4872-bab7-5168fedfdc8f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d1fdc170-4c44-496c-9ab4-f7a6602cb359") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "83c5507b-2c0c-4a06-8109-ea01ea7e21c6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 141.7 0.4 0) (layer "F.Fab") (hide yes) (uuid "59eb1d6e-3e20-40c5-9e0f-e9e3ba3e3f05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 141.7 0.4 0) (layer "F.Fab") (hide yes) (uuid "3ff1ba5c-ee71-4beb-b6e0-3944528a024c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 141.7 0.4 0) (layer "F.Fab") (hide yes) (uuid "4aca1887-b9ff-4f4b-844f-328073a1e3e0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7218ad5-d0c5-4fee-9d32-4812f5569ad7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/14a165bd-0b65-4fb0-9565-152bd6300a32") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac318489-841d-4fce-98dd-29458df567f9") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c97e4c7d-dd86-42e2-a9df-8fa0e5efc407") ) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "953dd9e1-d635-419e-86fa-89b48ab50b41") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "04f09a27-348d-4916-a6e1-2a4685a7f62f") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a745ec53-bf25-4e93-acc8-2236c6fbb41b") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e71c2f00-5c81-4241-a45b-c8fad24d7e08") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c9583e89-341f-40b7-9ffc-4cf5fae787a7") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d76524e7-68eb-4f5b-9c19-06dfb1f1f93a") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8f67450-5f91-4ba6-9206-556cfc59b276") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0b0d8e17-0a1a-4e88-949a-8e9ee71ed924") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e810c2ea-983a-4fb7-a1d2-9bc49fe8ba59") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48cecdab-0498-45e6-907b-2c3e2125733b") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a5c2a69-b517-4dd9-a8f1-534c340ef795") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "34507753-b8b2-422e-9f18-7266f90bf153") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f2a0eaa7-24ac-4217-97a8-09cb6c22a286") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f7af2ef-9b69-4e4e-b904-a1680f87bc50") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "da70002e-c505-4292-83cc-fcefd9834277") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "1cfe17be-d008-4d3c-bf30-893e7da0c353") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 90) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 6 "/Power Rails/5V_REG_IN") (pinfunction "K") (pintype "passive") (uuid "1937f1ae-0712-4562-aaa2-37b56d0a85f4") ) (pad "2" smd roundrect (at 2.5 0 90) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 11 "/Power Rails/5V_REG_SEL") (pinfunction "A") (pintype "passive") (uuid "9a6c2363-04dc-42af-96f3-67e49ae2e0c7") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "af0195d7-cc0c-4c8f-8c98-bcbd04e6f648") (at 80.89 120.5 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C2" (at -0.21 1.5 0) (layer "F.SilkS") (uuid "7354268f-ccba-49a0-8824-eb4a190300eb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "ecf894c2-965d-44db-97b0-ae29b54b1fe6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "53c3597d-aa16-4d93-8cf5-0c2a7d1e97d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "4b792d38-0e06-40b9-95f9-a776a077c623") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "ad4aa8a2-a8e3-4dbd-9a50-c3bc2a016532") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 154 241 0) (layer "F.Fab") (hide yes) (uuid "f8e51f0b-5663-427b-940a-f01b67bab115") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3b3fdc6a-a74c-4403-a7d9-19c55cc6b910") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/42518183-bf63-4b15-8194-3d4f57ca461e") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "56cbe5ef-a83f-4042-9f48-ec64b7856937") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "02a4e677-db60-476d-94fd-6daae3339f4c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5000b630-c39f-4a7a-a591-632657e9026f") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "91a136ad-4b2e-44e9-8bd3-e8160fb06369") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dec61e00-3b1d-4cf7-bd8f-0c6bd0b4a467") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a725893e-d531-456f-8457-0314809e6e84") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ebbf0d40-08a1-4592-9d40-684585389c3c") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3521b02-7124-4b0c-bb3a-d8ff1afb3a6a") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e094b614-25ed-4f01-8dcb-db7dacf45d2a") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9aa45977-fb85-492d-94ca-7c2e7c9c614d") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "bad41773-2db8-4b3b-a284-00070e43e39b") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pintype "passive") (uuid "edb51a0a-606c-42a8-a4ac-dbbf8eefa8a8") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "affc6e1e-c349-4f58-8867-bc0c3dd5a15a") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "af8aea25-16d2-4ce7-b8b7-f1d052140612") (at 108.65 114.55 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D48" (at 0 -1.575 0) (layer "F.SilkS") (uuid "79fc9620-999b-4641-a8bc-056acabe6523") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "fa3b92b7-008c-496b-9bd4-cde68f583e0d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "344550d0-eb12-40de-8d20-3a00fe9e88bc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "219e5bfb-c6e5-4ecc-bccc-c5e1c60497b1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2348080-d2f9-4482-9ab6-fe97b7d4bd2e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "45b34315-a95a-4141-86b3-48131a77a105") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/31b59d93-a9a0-40d8-92f8-9879661e9475") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e30f470-7c29-4557-a348-c7e1c48ed456") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7e0b4144-3a2e-4cea-9258-c362ea9cf2c0") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e8a94c16-8e33-41b8-a624-2c700ad3bc98") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e2e08878-caa0-4171-aca6-b3ba8d997005") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1de452cc-83e7-46f9-8f6b-8511209e1802") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5ffa1a2a-e9f8-44db-88f2-283258801959") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e276b14a-b668-4ce4-a5ff-9e5e3ecb315e") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "287cf1c6-3253-480e-bc57-02a0951cd0d0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6200100f-6e44-4a2d-bea2-96ebc5575c3c") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2336a006-883d-4113-add9-5bdb10eff2ba") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6192fbff-6c1f-4561-b394-376c31715f04") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "df2ebbea-c409-438b-9679-742d82d428bb") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff217cb2-cbf5-4666-8c86-a3269d6291a2") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c2b607ec-35a0-44f5-a050-6fbe4f6fd372") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8dcf226c-d44a-4be0-9cc4-584fcb54b81a") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6fa15b39-a3bd-40d9-a5b3-a878396565cb") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2579f7e9-1521-4c35-8d8a-c0e868665b89") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "47b7010b-aca6-4310-9b6c-06971118e396") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "ff19eb38-97a1-4273-9ae2-02ebcaef4291") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "e94e4115-265b-416d-b251-985881e5afe4") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "b0cead16-6461-4e3e-9ca3-2e43f46ff1b9") (at 105.6 68.0625 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q1" (at 1.0125 -2.2 90) (layer "F.SilkS") (uuid "ecf7f4b0-dbd1-4169-83e3-62a6c948be52") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "3299112c-d74b-4bae-8ba4-d0cdbfd945ad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "643b3fe2-d84a-49d0-98ec-10e1e91c4ae7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "914d16fd-f42e-478f-8b96-14ae05c7c586") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d5604f56-d8cc-49b9-91bb-ec49038667d8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 171.6625 -39.5375 0) (layer "F.Fab") (hide yes) (uuid "1b8eb86a-f1b5-4c1a-9274-4ea5d6f4b811") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46410d42-f8a7-43b2-9b35-434a85953779") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/537d375b-1ca6-4946-95db-66496543d0cb") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00e91f3c-9789-4275-bb59-773b07de9b54") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "059ba6bc-aa87-4c5b-8e77-81ea065c11aa") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "01b8091a-6ea5-4284-9ed5-be4f0fde00fb") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ef4ad697-9e44-4a85-8197-319e555a4c0d") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "8f43e30e-4799-445b-a67a-c68f1f1398c6") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7c3636b3-9470-44fd-b2cd-9fd59a4803a3") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae642263-0622-442b-ace1-5e2e7e2e603d") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "caa20092-0ad6-461c-acba-1859eff164a3") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1b43ace-3496-403c-980b-8bcbaa5062ad") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ec55bc6b-6275-4a95-97aa-30fc2cc1ca8c") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c11420c0-2474-4279-ac3c-484d99cf2173") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "45bbff1d-d81f-4d35-9372-8d861e4098dd") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "686558f5-c450-4621-8ff8-db2906e4a2f2") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0b9d4f4-ec90-4c56-8fa7-021885ca7a79") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "6ad3c1cc-a87b-44f7-89ba-d369751f0d6f") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 109 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (uuid "87dee29d-4ad7-421b-918b-9adc8fd0010d") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (uuid "81d90f00-4437-45e7-809c-68ab728117cb") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 24 "/Fan Channels/Fan1/TACHO_OUT") (pinfunction "D") (pintype "passive") (uuid "8a658d13-2539-4b69-900e-fbc6b6673379") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "b4c58576-acd8-47ff-b38e-364e7d1ff447") (at 123.45 115.3 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D66" (at -1.5 -1.4 90) (layer "F.SilkS") (uuid "ef284679-2bdd-4253-bac1-439ee3f3bc8f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "78bb6ff0-c01d-4ebb-b972-1ff012c03e61") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "74ff01dc-6f38-4060-81d3-f9aedc7276d4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a99b8308-6d30-4960-a7de-f081b0ec5e47") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "886ecf5a-f886-4dfc-9fcf-13ccaa11177b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7ca4e29-8ad8-4721-b67f-3683e41e103e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/f93337c1-ba43-4bd7-abe4-9f429ba85e00") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9c2624b1-5b06-4667-a9dc-384be55e4f44") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "aeda00d4-1017-4d43-a113-ee26a7074ae5") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ac4f7c6-57c6-4674-b55e-3c0600874e35") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "53ec2ad8-e087-49ed-baad-cf4f0b370136") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8990642c-cab1-44c1-ae45-67971e777258") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c4dc9203-12b2-4554-bac6-83cb20f5dd27") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4721c31f-d967-4988-bb90-7a3f47404590") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ff7ab03-3057-4f49-80c6-c949b76c6d75") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6cfd76fc-163d-4924-b47a-68146d9b2a3d") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e20adbe-9d70-440e-8218-9ce17ed050b2") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e85714f-fc32-44f3-8f5b-2502285af562") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3d8c60e-5d20-4df2-8c08-265577f77f2c") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9313ec06-766b-4605-8e14-2eb28bf892b1") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73ef679b-098f-4370-b34e-d2c31aaba464") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa4018e5-46eb-4940-9b35-aee5ef1ad805") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fce8a166-ad85-4715-aac2-9e02a696daa7") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1ff3e26-0936-457b-bfa4-13ac9977fd09") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "846b88a2-5ec1-4da7-bf52-2dc6dcd287a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "eb013958-07c6-497e-b825-6207acba13bb") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 80 "/Fan Channels/Fan3/PWM_OUT") (pinfunction "A2") (pintype "passive") (uuid "0c3756ce-6340-43c0-bee4-8593a0f142f1") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "b53297b9-b708-4ab8-87e2-5856dafbf067") (at 109.05 69.35 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R8" (at -0.9 -1.55 90) (layer "F.SilkS") (uuid "244f3980-a43f-4165-92a8-26f573d4fddb") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 0) (layer "F.Fab") (uuid "51978619-0018-4c64-adfe-427fec50289b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "0a248305-d9ba-407b-becf-afbaa8326a84") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6126303b-301f-4865-8d65-05c9806832b1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "24fccecd-1677-4f54-9f26-c43e7ec88a0b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 175.05 -43.45 90) (layer "F.Fab") (hide yes) (uuid "92f5c96b-a627-458e-bf0e-cb95eda7076b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b651c8f2-cd35-4af1-b690-9f0fb7906e7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/3fb97f3e-520c-4a3d-90e0-f35e2392af78") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "efdc5769-df60-4634-983d-7c22051c0f42") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a015c1f2-0ce4-4477-820b-3cbad3e6c429") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8423ee24-b9c8-4518-85af-44710072505b") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "55fbf0ea-108b-4322-b501-751503b66759") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "996f5ef7-e7bc-4ae4-ab85-12ebf665c566") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c153bea4-d7d8-4e4c-a535-67f2f62ccac5") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6548d3f6-fd4f-4467-959b-796c65b8f630") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9adb9211-a5ac-4ed7-8606-e51af0bb33aa") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f9b566ac-24e4-44ac-a6fb-5a0bac51451b") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "047a0422-4331-41ec-a25e-daba8b717234") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5340374a-9af2-4342-abcb-09a1ff3ad523") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 4 "MBFAN1_PWM_READ") (pintype "passive") (uuid "702c88b7-6681-4982-9046-320b34c4dd66") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 25 "/Fan Channels/Fan1/PWM_IN") (pintype "passive") (uuid "03839358-d72e-460e-9cc9-3b950c2793af") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "b545b689-8c4b-4bf7-b660-bb5fc415c13b") (at 101.1 124.6 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C11" (at 0 1.2 90) (layer "F.SilkS") (uuid "4e7c6e00-5dc7-4846-b428-fe4f99047537") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "72b10127-3692-4c25-a8c2-18e64ffcbbd8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "5cd72486-3c90-4959-a59e-a6ecd0e67c61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "89b45010-f9c3-4ae6-b61e-437b12ee03de") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "7febd9ef-8abe-40c4-ae27-9673bcac5dc7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at -23.5 225.7 0) (layer "F.Fab") (hide yes) (uuid "ede688fc-a24b-41be-a17e-31746378fe11") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c5f78682-4b2f-4231-998f-bbc599f91846") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c009d8f0-fdcf-4ecf-95ce-76f093bd79ec") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ce9a2314-0a1c-4c57-9de0-d3454b90db05") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "159a137c-3d64-4836-8adf-55ebb38f0766") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3b3ecf2b-d025-4172-8122-d790ed4f2497") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5ba80d37-ab39-4022-b527-69f69914c256") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "eb053544-2be6-4acf-a1b7-62d5df5622ce") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8380775-9bd4-40ad-b1bf-1a71511b4f3e") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a2e7933b-bfe0-4ece-b1f9-3f530d877c61") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b04d2bda-ac4d-4801-bf3c-37d85137fdb3") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9f3d3fb0-8b65-4d70-aaaf-2e877c997e68") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "4d59adf0-99da-4e0b-9e46-f9c52943e240") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "/Fan Channels/Fan1/PWR_OUT") (pintype "passive") (uuid "4c5cec36-b609-4f83-ac22-081fff8395fd") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "416c043f-64ca-4564-bdaf-d4af2639f422") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "b6faa3d1-9cab-4cf0-bbf1-abc808bc9059") (at 42.5 59) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H1" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "44eb562a-650b-426b-84c5-6ddfbbf0e195") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "1056d181-7505-43a9-97e4-88a3a0497a27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f145e16d-0208-4bc0-8f79-2567ec7ed7ee") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6844b57a-282d-4248-a2cb-6b5e2c87b323") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "125a6367-8782-4891-8f73-e8df72c83f76") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "05535b1f-b051-412a-b53d-40c561a26cd8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/cbfea856-81cc-4920-8136-231416e676cf") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "cf025e40-8574-4505-8085-42150a8ffb72") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "45cfffb5-71e3-4df3-bed6-2995b7567bd1") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "c337620a-216f-4601-b382-cb7e07d63c19") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "32bf9366-bbdc-477c-aa96-3bfe7cb62dfb") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "e72216c7-4f56-469c-9228-4aae9bfecd8f") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "4d0e0f48-fedc-4470-b59e-317babbe1615") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "97569a57-dd4c-4224-be55-af8ee90fd20b") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "84a92d04-0653-41d0-8032-18cd8e5c2a51") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "930ef3c5-061f-4b95-8907-e72b0b3ce0bc") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f5f48b41-ca8e-4b72-b0db-74074ab53043") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "a37656d4-aee1-4bf8-a977-b34fa2bf39f8") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "93ba0aff-0e04-423f-8265-89dfeedf4e8a") ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "b73189eb-ce33-4fd6-899f-a0fe6fefce38") (at 104.7 113.1 -90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D8" (at -2.6 0.1 180) (layer "F.SilkS") (uuid "7d215dfd-90a7-4aaf-b130-4711ed2b1c7f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "c14516e1-7a15-49ac-b860-382104421b98") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "ec020c7d-7e1c-4441-9bb2-6a1cb6036ebc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "d949a44e-2eb8-4b9e-830c-da4285521a75") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "01c87f92-08f8-4fbc-9ee4-8a6967b11f55") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at -8.4 217.8 0) (layer "F.Fab") (hide yes) (uuid "b0211bed-1b52-4be4-94dc-24416775c4ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6e1bf8e0-988c-4064-8e2a-7b853a80aa87") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/99383412-e91e-4682-9562-162d7ddf01c0") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "75dd1560-44c8-4980-b67d-c8961cb3ba79") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6bdf5769-9fa6-4807-93a3-ea5e9ff7ec7d") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "17453e0c-add4-47bf-8000-e54e6b04d6ab") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "696e0a94-3c55-49c5-a9b5-7528b14a53e3") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a560d57-dd53-4e6a-ba9c-374fa3172484") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b8f5ede9-7427-4d98-b6d5-d507bcc03b89") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c78d86a8-a3e4-4df7-9dd0-c7d9b34c44d8") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f42bc31c-d929-43c6-8dc4-f2b0d92da598") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "20eb6ac7-d2e3-4295-b936-35507a13071e") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "746eb059-a708-402a-871d-57c876593010") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8cb50ff4-84a1-4051-bedc-af083e9bdcca") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a8449dc2-a4ea-42ba-8b84-72404a0f7a76") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "3a5896d3-3f10-43fc-8699-8935aecadfe3") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "c10a195e-1b4b-434e-8e76-580c85268e4d") ) (pad "2" smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 40 "Net-(D8-A)") (pinfunction "A") (pintype "passive") (uuid "bef11ee2-5338-4d54-b782-74969e902378") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "b7b0924b-a534-453f-b03b-3088a452d2d5") (at 113.25 68 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D11" (at -2.55 0.05 180) (layer "F.SilkS") (uuid "2e181b06-87b6-4f52-890f-d98d0fc5cc96") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "f4960896-943e-4953-bfd6-4d4868dd3a69") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "94ac6397-9c76-403c-a44a-ae4b577bf127") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "61b72706-f510-43f7-a692-d80c374bd68c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f4b7bb74-e60b-49e3-863d-7d71ae82d2af") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 181.25 -45.25 0) (layer "F.Fab") (hide yes) (uuid "900602c8-feb4-4a18-9098-c49b686698cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3d1832a6-0987-4f17-b285-7a6c002863e9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e14cb179-4962-4028-9c28-4efc70e0b4c6") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8fd2f377-a84e-43e4-8f9d-e11a0a01d6dd") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "05d63994-1afb-4568-9228-44bdf0f79482") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53dcd00d-94a4-4789-b827-6802f70ea0a5") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ef99a4a7-b1a7-4f3d-8e5d-16e7286240c8") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "296ea657-5ead-4887-ac74-6a8b4a4f1bac") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "206eb33e-f526-4fb1-9c97-a1ce89a1e00b") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d91459fd-5110-4a24-8a06-f9b96e5e262a") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0ef2ce40-1fd7-49cc-a976-6a60c205a51b") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8826a73a-e3b3-4a0e-8b90-79ef3fd2b941") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4dd36f18-845c-4acf-87a4-d2d42efe4767") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "767261f8-4894-45a2-8f51-b21cbc242cd8") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62056d3f-a9c3-460d-9b58-6603e6f51326") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "7de1af3d-936f-432e-89a4-ad7793748596") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "33afb512-052e-41ef-843b-5f9c52020abd") ) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 67 "Net-(D11-A)") (pinfunction "A") (pintype "passive") (uuid "c4949cf6-cf78-4e46-a4b6-a3c3f1651021") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu") (uuid "b8242cbb-5428-4e3e-b188-16e38bf924a9") (at 96.3 83.1) (descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Reference" "U7" (at -2.05 -6.1 0) (layer "F.SilkS") (uuid "29a77039-fa6f-4001-b498-05888725c32f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "74HC4051" (at 0 5.9 0) (layer "F.Fab") (uuid "de6ab4cb-9cbf-43c0-9215-fdc3f1076951") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5b291682-5411-419f-aecb-8fba9c7daa73") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/cd74hc4051.pdf" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "fb169da8-615f-4d94-80c4-a4a7223ff7f6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "8-channel analog multiplexer/demultiplexer, DIP-16/SOIC-16/TSSOP-16" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "83b72f2d-79ed-47c4-8fb5-69ada53893f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C9386" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "990c004d-a86c-4f87-a904-3e229560db94") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0c9df5e3-f867-452e-8a5d-06a79dd673d1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "DIP*W7.62mm* SOIC*3.9x9.9mm*P1.27mm* SOIC*5.3x10.2mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm*") (path "/69b8b1e7-58a4-4f61-8e10-e1966c50bf8e") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -5.06) (end -1.95 -5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dea7173c-7d4b-4f01-8e26-d9c5fa1b980a") ) (fp_line (start 0 -5.06) (end 1.95 -5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8f949150-52ec-494c-b41d-0f0cd7a7f2c5") ) (fp_line (start 0 5.06) (end -1.95 5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b115cd89-c59e-499c-b41d-9521a82e7850") ) (fp_line (start 0 5.06) (end 1.95 5.06) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a06bd7c-1a67-468d-8767-873d16e2d2ce") ) (fp_poly (pts (xy -2.7 -5.005) (xy -2.94 -5.335) (xy -2.46 -5.335) (xy -2.7 -5.005) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "219f645a-f6c9-42bc-8f22-1c8aa996041b") ) (fp_line (start -3.7 -5.2) (end -3.7 5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6ca01c8c-596b-492a-8af0-5948d6f5c6f9") ) (fp_line (start -3.7 5.2) (end 3.7 5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8aacf02d-c3d8-4dfa-aa85-f44dc142604e") ) (fp_line (start 3.7 -5.2) (end -3.7 -5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "21f06fba-d32e-4a08-9e2f-f882994e5462") ) (fp_line (start 3.7 5.2) (end 3.7 -5.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "70e3f37a-99b2-4a52-98a3-bc94b20b518d") ) (fp_line (start -1.95 -3.975) (end -0.975 -4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "628629fd-69b3-4539-87af-1f4991be8ed2") ) (fp_line (start -1.95 4.95) (end -1.95 -3.975) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b54b94c8-9711-4c8e-a698-a5e9b246f8b8") ) (fp_line (start -0.975 -4.95) (end 1.95 -4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "29c1df7f-b218-4f0f-b086-2efed9052ccd") ) (fp_line (start 1.95 -4.95) (end 1.95 4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9d569618-8114-4fea-801c-8a14a9e6e5e8") ) (fp_line (start 1.95 4.95) (end -1.95 4.95) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b7c9cba-a02e-48c8-bbfb-0edcab0d96bb") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "874a8ada-31e8-416c-94fe-738b2dd2340d") (effects (font (size 0.98 0.98) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 78 "FAN8_TACHO_READ") (pinfunction "A4") (pintype "passive") (uuid "bc64233f-8d94-403b-8c93-d7548e2a2729") ) (pad "2" smd roundrect (at -2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 77 "FAN7_TACHO_READ") (pinfunction "A6") (pintype "passive") (uuid "bf402ce7-9bbe-4a06-a9b2-fcf64137a172") ) (pad "3" smd roundrect (at -2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 117 "/MPX-READ") (pinfunction "A") (pintype "passive") (uuid "5f16de98-e4cd-4509-881e-16f23df2e6f3") ) (pad "4" smd roundrect (at -2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 5 "FAN1_TACHO_READ") (pinfunction "A7") (pintype "passive") (uuid "b5bcbdd7-ada8-4a35-b9b1-d41618ef8932") ) (pad "5" smd roundrect (at -2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 69 "FAN2_TACHO_READ") (pinfunction "A5") (pintype "passive") (uuid "156a68b0-d72c-4cb0-8a2a-2af891625efb") ) (pad "6" smd roundrect (at -2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "~{E}") (pintype "input") (uuid "74486023-f468-4aee-a35f-7bef7365749b") ) (pad "7" smd roundrect (at -2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "VEE") (pintype "power_in") (uuid "8ff6e0cd-b792-49bd-abec-18a2cf301264") ) (pad "8" smd roundrect (at -2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "05f1b66c-da22-4055-a28e-89a830dfb6d0") ) (pad "9" smd roundrect (at 2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 118 "/MPX-ADDR2") (pinfunction "S2") (pintype "input") (uuid "22ba73f6-e179-4f2d-8ec5-f163372b6803") ) (pad "10" smd roundrect (at 2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 119 "/MPX-ADDR1") (pinfunction "S1") (pintype "input") (uuid "8b7d8d7b-d111-4f85-9049-71aa0bc3d5b4") ) (pad "11" smd roundrect (at 2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 120 "/MPX-ADDR0") (pinfunction "S0") (pintype "input") (uuid "3a460ee9-5af9-40be-b89f-ae593f3d520c") ) (pad "12" smd roundrect (at 2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 70 "FAN3_TACHO_READ") (pinfunction "A3") (pintype "passive") (uuid "120ddc76-c3bf-4051-bb96-3fd7b6cde359") ) (pad "13" smd roundrect (at 2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 71 "FAN4_TACHO_READ") (pinfunction "A0") (pintype "passive") (uuid "0f886653-434b-4146-a918-ceac0a3d0250") ) (pad "14" smd roundrect (at 2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "FAN5_TACHO_READ") (pinfunction "A1") (pintype "passive") (uuid "53fdc657-fb75-43e4-85bb-97cdf757a0c2") ) (pad "15" smd roundrect (at 2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "FAN6_TACHO_READ") (pinfunction "A2") (pintype "passive") (uuid "38215ffe-be87-440e-9a21-030a520baea3") ) (pad "16" smd roundrect (at 2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "VCC") (pintype "power_in") (uuid "05b5a736-de6e-499d-9fdf-4962404bd844") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "b82e91c8-d9cc-4258-b967-0bdb6a082bea") (at 61.52 66.05 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D43" (at -2.84 0.07 90) (layer "F.SilkS") (uuid "c209ff37-4b54-4d37-b1fd-8292df05ca77") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "dcb57717-8f20-4316-bd3f-47386b606b00") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "faa4b08b-4c73-430b-8320-f8b98ef12dfd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a299d0f5-01a8-4de4-a3a9-43cca5f77401") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f1ad6509-d459-4ef2-8006-010d7da1d98f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "01952bf1-8ee4-4f88-ae18-7c63ec7d5253") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/45dbcc60-092e-4979-8b7d-84dc92a5cc97") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f55ee315-6509-4607-a795-dacb8d82e427") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7a2ee041-68c5-4ab7-8c73-d8b35e7c5f64") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "191157ca-8002-4b12-ba13-e55fc0ad8e72") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f53e020-50f1-41ff-8670-081dc43ae484") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "57623cbd-c3d4-4f82-a22a-556f1d3b1d3d") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d810ea1b-3088-4984-9621-ad25e5f5f8ba") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "86c10537-6ffc-4a14-ae0d-34343866de46") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c4847163-1671-4e8c-8002-0553fa5c6958") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "14195415-3600-417d-b50c-5cb8c3e92d53") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c13d6413-81e8-442e-9780-374ed908fcc5") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "050b436e-da44-4716-b88c-65df07321533") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2a2e4ff2-0d7b-40b2-9eea-7c46533c0e6e") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "093c9943-d961-414e-a654-aa3f64a7e012") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a7fd64a-e7e0-4037-a4f1-80172ebeab1b") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48deb5c0-aa2a-4c94-9b0c-fb3db7d85e8c") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc3b516b-0e8b-4095-be52-dcaedae55d8e") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac697cb5-f3b0-4a2d-9ef1-4cc9c15fdfaa") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "cc6e860f-cf62-42a6-8b46-5f641d83391a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "bb281961-668e-447f-ac24-0527e44f9e1c") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 101 "/Sensors & Connectors/AUX12_IN") (pinfunction "A2") (pintype "passive") (uuid "e8f77157-3d69-4910-8773-059faf560437") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "b84e5c3c-d5ba-45dc-a996-457d3d15ea34") (at 131.1 59.6 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J6" (at 7.75 2.5 0) (layer "F.SilkS") (uuid "0ed266a1-836d-4125-9556-695a04dfe9f3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MB Fan3 Input" (at 4.05 4.35 0) (layer "F.Fab") (uuid "db5b0159-490b-493a-ab44-b7663cda6baf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0245faba-e567-47c7-b905-685de5016e99") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "7ae04bff-87bf-4476-bec2-af7581c30bd5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e63feea3-9703-4df6-94aa-32abc2a8c641") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "77f80d12-1c2c-4a60-b9ca-7ecfb79c448b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/52dfc41f-11f2-4f25-9797-248cc8d74731") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "edb66f9a-71cc-49b2-b57d-82eab0eebb41") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30013178-50bb-4421-a715-1030e158782f") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9b3b6c81-246d-46d9-8663-cb560dca6277") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a82d8c3e-050e-4f68-a1ae-ddaf69784b70") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ac51b4f4-16de-49da-8ebe-87875fc2fedc") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d2b8a56e-5777-4504-aa35-d738f24b7632") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f41c9cf-b4bf-4a09-b7d0-aee551e29576") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9bcd72b8-60f2-43bc-ba92-0cfdce0817bd") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3f503d77-d6d5-40cc-96bf-f0ae4185f463") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "22f84e7a-606e-482a-a30e-8cbd24b15b61") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7997c890-9fcf-428b-a6ee-23df8a2d769d") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9da4a2a2-7fc5-40b4-b286-23798ea99a03") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "16f12952-2655-48f3-a377-c721d5ff742e") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26ad7ac7-4763-471b-a630-21b735cab02f") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc061b49-57e2-4ebe-994d-ce47037f2389") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ca5ccc5-5209-4808-8473-6a684f026f9d") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ca58cfcf-c525-4d57-bb88-83b5416bef51") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "47cf85ac-0390-458e-91ed-1361543c9853") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "26387745-4986-4ca1-9000-57dbb055c333") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53434db2-9810-4092-94a4-d915641816b1") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d6b8f3e7-c24d-4b02-86d8-5c2b5163d49d") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "fddcbe17-b3a6-4f4f-bc15-3d5b52728a51") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "5dc2c4c8-be54-4932-a0ab-f3226436f13f") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "82ab6e83-e467-4d54-85ee-46d98ca81331") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 29 "FAN3_PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "aef0990b-59e7-45f4-8b75-fc44d9c9f16a") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 30 "/Fan Channels/Fan3/TACHO_OUT") (pinfunction "Pin_3") (pintype "passive") (uuid "76cbebe6-0e03-431e-b832-37d99e29c652") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 31 "/Fan Channels/Fan3/PWM_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "067967b1-2b46-4d39-ba56-02eaef6d0ca3") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "ba566fd6-3c00-4758-b55e-90b7e219eb11") (at 79.5 71.95 90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C6" (at -0.05 -1.5 90) (layer "F.SilkS") (uuid "aeca128a-a04a-48c7-875b-e47b396a0f24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "6dc4b47e-3462-4aea-bd69-3fb988ebb513") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "fa369e09-75af-4b97-8225-c396ff45bb82") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "e14d738d-d925-4a4a-89b2-a1f7932bdb47") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "294ccc39-990f-4c8c-84ad-1e6f0d7eb067") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 151.45 -7.55 0) (layer "F.Fab") (hide yes) (uuid "7577f69f-3702-4935-8d2b-e9c1292eac44") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "09b09d51-b9dc-4c62-8d99-41aace606a83") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/b1335ea9-16da-44b9-9459-ec64501666b6") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fb62bd14-24ab-44dc-97da-4d58735e10db") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87a73b0a-152a-4226-964f-0800db522961") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62b385e6-8316-4de2-b6e9-a62ccd57d538") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13378482-4d2b-4578-8d94-aba6ffe45e5d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6f0b4a07-ca9b-4879-9201-543013339e93") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1d367cd9-884f-4e1d-8387-88af349b2f94") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b5c01f60-1b12-4904-b2db-23852af9cdae") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fcf6f0bd-66df-4479-8e09-c8981a0f95a5") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bf3e7671-3f2a-4569-a007-d2ed5f6bf090") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c50f2f63-60a5-450d-a157-2e649dd3439f") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "68a87bb1-7dc8-4daa-a33e-893302b5ddd9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 6 "/Power Rails/5V_REG_IN") (pintype "passive") (uuid "23a4260b-9843-4d1b-9044-f568b0893a2f") ) (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "25c1172a-dbbd-40f8-97ec-ed74ab90d3ad") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "bb504713-e5b7-4ed9-8870-06ffee60d198") (at 130.6 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D21" (at 0 -2.5 -90) (layer "F.SilkS") (uuid "84d02768-2823-42c0-8e2e-da00d6014e4b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 -90) (layer "F.Fab") (uuid "09ee3f5f-223a-4a14-abd9-5d392552c595") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "98e0a45a-f9ab-4ed9-96ce-17b0299e7252") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "f94cd8a5-209c-4ef8-b651-b9066068368e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9e588c29-938f-49ff-ad18-d7891344023a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at 18.8 242.4 0) (layer "F.Fab") (hide yes) (uuid "45868d34-17c0-407f-9087-846f6366ef1a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 18.8 242.4 0) (layer "F.Fab") (hide yes) (uuid "0a0ff093-c8fe-443f-9df2-3496d34803b3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 18.8 242.4 0) (layer "F.Fab") (hide yes) (uuid "8810b6db-3749-43ba-b0f4-6a053d9bbac1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "689d76c3-36fe-4003-a3e7-75470f0cfd48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d64060c5-33b9-4ba8-a5e1-5702e7631ca5") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f59b684d-af5d-42fc-be3d-1d3216df4b4e") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "19e878be-2e89-4977-b59f-09c13fbc471b") ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ce6263bd-dbf4-4d58-978a-24f92c3c2052") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b1cb908f-4fc0-4170-bd50-bc719d7744e4") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e8c8cf52-4ea9-4963-a2d0-64da09820007") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "662f7c89-f4b2-4c6a-b58b-9392e6d29e40") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "942c3b52-0495-47f7-bfc1-34b38ddc30d3") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b94a0257-4faf-4b49-99fa-2cf291cba970") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ea0c45c-9950-4cf5-a0b8-88ffca790767") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ddcc509-c9c4-442f-adbe-65d3a68725d3") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "85746ff9-acfb-41a8-9ace-3145c9ee1b2a") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fce0f98b-b1ab-4993-99e8-067acaa0a286") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22c6f9c2-a952-4b53-811a-1ad457ac00aa") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa95f113-4e67-4799-badc-1b4fcfd22410") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "76d73f04-c55b-45e4-a069-383b921b07f2") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a911ed99-1dc8-4f95-bb55-2cafbf6c88d1") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "236beebd-eb98-4944-8737-851c11fa9236") ) (fp_text user "${REFERENCE}" (at 0 -2.5 -90) (layer "F.Fab") (uuid "7853713d-dbff-4056-8672-ce1acca7f228") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "90e4f86f-5df8-484b-a5d8-5c016215f05f") ) (pad "1" smd rect (at 1.1 0 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "6c622f91-a61a-47d4-a817-1f128dfa4d24") ) (pad "2" smd rect (at -1.1 -0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 70 "FAN3_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "64d2b0b0-f6b5-4371-abc6-b29041e3694b") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "bbfc380b-a351-4b9d-a575-294a2dc5b3c1") (at 49.9 61.2 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R7" (at 2.76 -0.15 0) (layer "F.SilkS") (uuid "13618db7-e903-4dfa-b40e-235cd69a52aa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 0) (layer "F.Fab") (uuid "72c7d822-f32d-4f08-9953-2b6b2e286f67") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "71473e2b-28e6-4efc-b8eb-16836d2c83c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "58574c30-6e25-4f78-9336-5989e9bb6e5c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "54bf14e0-fe50-4eb0-92bc-c68f04e15bd8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 83.2 170.375 0) (layer "F.Fab") (hide yes) (uuid "16180312-b69e-419e-8d9b-9275c81bbb68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ec88fcc-4ac6-4058-9088-1a2bff5d707d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/1fde763e-90ef-4ddc-b2e5-d750ee01b070") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ad6371d9-6841-44c6-9a08-b68216ed3509") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "22394dfa-404c-4881-96f3-35d8d5188cf5") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cc5034ff-6616-46f0-896a-d542a68d570d") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c38bdd5a-303d-425e-a33d-1966fc6fc733") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d28d53b4-3849-4e1c-8397-a1a2ca28233c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "af14865d-3cb9-42f2-9d17-39ecb7caba2b") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ebc55e6-a045-4ddc-8963-46ff643fbfde") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3b51bd9-11a2-4033-ae34-44b1177001eb") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fbe97550-eb54-4012-9718-9b197d3de0f8") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "608ab519-367b-493c-b670-5c394df5a312") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "3bde2c3f-c60e-42cf-bf25-a916696b7cc0") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 97 "VBUS") (pintype "passive") (uuid "1b3d1336-a3e5-4ee9-b074-1304775ae097") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 16 "Net-(D6-A)") (pintype "passive") (uuid "9c5b715e-07d1-4b10-8d54-2e25371835d1") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "bd3ea258-67f1-4a57-8e53-64a23bea3ea9") (at 68.3 58.2) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D35" (at 0 1.7 0) (layer "F.SilkS") (uuid "75ce094d-dda6-40ef-b20c-f6215caf3333") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "909d3cab-f1f2-4ba3-9afa-6eb6f9e5b932") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7bc62ac-44c1-49e3-9dc5-5ecc30985751") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37d63fde-185f-4d18-a80b-3bdc9e760966") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5d047a41-89ab-4d98-bb18-14bf002da33d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "31edd168-2f39-45ea-bbd3-bd1d2776bf71") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6b134717-d4b4-44a1-9c40-c4e397c42a2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/20071802-f4ee-4e33-9790-71f90550e35d") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e92e5dd9-8b10-475f-8aec-fe482afa6165") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "74dc83b9-7bc4-4352-bc59-6d294b21c356") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b85a9471-5464-4c06-b2f1-8367b46a7b67") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b48b7de-e6e4-460d-b93b-6d349d73ff63") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "065abf1e-cb3d-401c-bdc0-0a5db3e77893") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "92b82435-d619-4fcd-9984-e96cbbb1ea83") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ea89f69b-42cf-4444-b9d8-24f506e288e5") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2e356b17-a104-44a7-90f4-01eefa46b006") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6d61460-4029-4e28-ae54-2cddc40706e5") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "090d9178-b23f-4a43-a429-f2e46e43c5c4") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b68e445-6b2c-4024-b4ab-1563c22b2222") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "96a5502f-b4e2-483f-8f68-76f1f1ff51a4") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5838daf6-c0e5-4298-82dc-860c03c614ec") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "d664583c-d1e2-4925-b580-45188e8774c3") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 130 "Net-(D35-A)") (pinfunction "A") (pintype "passive") (uuid "f6dff85c-4d96-4f08-ab43-10320d5b31c4") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "bd8cd43f-9baf-4e7c-bcf2-e58aa7d9c4bd") (at 152.9 96.4 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D53" (at 3.45 -0.05 90) (layer "F.SilkS") (uuid "94db2a1c-695f-42f1-8b61-4cb95d46c3d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "ef0239fa-231c-4e4b-a9b0-5aa250ab5280") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c69f65ca-9119-426c-bf6e-29b7f4fc69d9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e1555e95-dbca-43bc-8624-32cbc750ae6e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e953877f-7901-484a-92d2-b0b11fc77c0b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6122084e-0450-4646-9a20-1eeb4cdae346") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/318dc987-8557-4ab5-9d15-e997984e64aa") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3d5f9aed-757d-4d89-8227-f26fd31917bc") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9553a0c4-1485-4407-b9d7-138e81a52025") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59f332df-0744-4221-b4a0-765e07cd477f") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "05a37470-55db-4d89-b084-786a84376511") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2349c172-f6bc-42ac-8db9-481b220fc9d3") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8c695a28-367e-4c9b-94c1-fc9598082ddd") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d232ddca-774c-4e81-bd84-7bce448fa285") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be8277ec-3189-4b86-9ba0-5ef5bf3dcf8a") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e4aba6f5-29a6-4e90-ac3a-bbbf368e1829") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a50015dc-1242-494c-9873-e5cf6627e1f3") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1db56c4-e01b-496e-a957-f086f3cd7d15") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22e30324-bb15-4946-96da-6d3c3e31625c") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "feda6012-7ee6-411a-8cf4-994885a4f62a") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f1c1965f-0284-4fce-8e37-4e74c6a73dc7") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd93e8a6-cb58-4f90-83d4-0ad004d9a2ea") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ec4096d-d48d-4427-8c1e-ca62ace87676") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a24c363-534f-453e-96e2-c3fe5210d5bc") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "28825e37-c2c5-4e5e-a4f1-7c4aa16ea0ed") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "a98f27a6-2d4f-4ef9-a749-1ceddea58cfa") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 19 "/Fan Channels/Fan6/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "317b6508-3991-4698-bae9-90b667c3999c") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c06e5e7c-c9d3-4ec8-9cbe-adebe02c2230") (at 104.8875 115.9625 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R12" (at 0.3125 -1.2125 180) (layer "F.SilkS") (uuid "5946eef3-76c8-404e-a622-d12a8e557a6d") (effects (font (size 0.7 0.7) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "f8ff7abe-d58d-4955-a068-7f01af606559") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "0d2c7e18-8bf6-4e41-acfe-417bdcb6e370") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "998bd27b-8071-4fb4-a6d8-63d82fa4a908") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "73459c8b-34ee-4e34-9c2e-60e0e9943c5e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 209.775 231.925 0) (layer "F.Fab") (hide yes) (uuid "101e4739-5b6d-460a-a903-3bd416c35c2d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37a548df-d61e-4076-8257-4695a8a2c46f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2b848deb-d45c-40f7-b1cd-3317b89f8ce0") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f153c117-2531-4052-a465-344745d046a3") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8823219-c7c3-4b7d-88b9-390737370482") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a291985-a401-4861-b305-639c6e3ad4ff") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c70615bb-ca42-4f4d-8c89-866db08c11dc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9e1d5bd0-f539-4d2c-90c9-e9615e59bf62") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7ec8e62b-68b4-46a3-a554-9e68287a963f") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f7ef3d3-0ef9-4a8d-90cd-029de6e431e7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f26f9e5e-5080-4899-920c-d15e4738cbea") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7d09b151-f29a-4d68-bb5f-6a0090c52c47") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa386041-26f5-4cab-9cfd-f54bd5f08880") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "e9c08e05-3d60-45f0-ab9f-08bb6e8945c9") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 35 "/Fan Channels/Fan1/PWR_OUT") (pintype "passive") (uuid "9762011b-178b-48e7-80fd-c2e2c51834c7") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 40 "Net-(D8-A)") (pintype "passive") (uuid "b7e45fbe-afa6-4b3a-8b2a-233b6847fe23") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c0e42a22-59ee-4a79-b22d-300f6c3f03db") (at 55 85.075) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C29" (at 0 -1.43 0) (layer "F.SilkS") (uuid "3c17cd51-356b-4a53-9094-ae0c42e14a21") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "ba7a333b-5454-4e20-b8a5-b4bfddf1eb64") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "53a83e1a-5cf6-4fa5-944c-ec09e5b3e1f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4d2b6c5c-0790-4681-8a8f-e6976bb8f857") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e82f0a9e-fb4a-47d4-9483-ceb535bec3a1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e89d0f98-47e6-4e93-b757-5dd323dab0fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1cb378b0-ad4c-42df-93cf-3a5afb1a28ca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/9fda019a-5350-4524-b5e4-0e13d75d61d1") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a7c893df-2c42-4b06-9659-de96f981a053") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "79f9a5d8-4704-4ea3-8727-97fd8a4254db") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e380635d-76f1-4369-8834-b936c1431b90") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "60e10784-19e8-4dc0-96b1-cb79f35f1faf") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "20990572-7f34-4d3e-afde-a627bf9e3951") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "38bfb1f5-e4d6-47ac-b0d2-609c80d5fe65") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "65b39249-0821-4ccc-9af7-face25d966cd") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c022886-a9d1-4130-942a-b58079822a3f") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c38ab2fc-c08b-4365-a09d-f71e8bd9b3c0") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6a5940b1-e7b5-4a2b-ba74-1e2f469e85d7") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f1d7c582-82db-4d62-985a-b5f4daefb5e4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 81 "ADC_REF") (pintype "passive") (uuid "4cf7540a-70f3-40bd-9304-4f9b962ff1b6") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 106 "AGND") (pintype "passive") (uuid "20c856cf-2a97-42b6-bd69-844198d976fc") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "c173dca6-6ab6-465e-85ec-e09c8c8bfdd9") (at 167.5 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H4" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "64525a29-0abd-40c0-a7ca-4c20a6974b14") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "f35f68d0-a20e-461b-9b35-2ee2f7ea1ebb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "042a7bc8-88e1-42ce-b8de-37143db56581") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "f58460f7-5558-4ccd-85ac-1cb0f1a2e864") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "72a5be6c-08c7-4b0b-b586-664d7ad724f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "64177dda-2e72-4a6e-90b1-ba9b8df29ced") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/91796faf-4963-43e3-be77-8c6bb9373a7f") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "b833cd11-917a-4aa3-a44e-07e27c180819") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "7a8a421a-ebec-4954-958c-599225b7d1f2") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "6d856a5f-6e36-4f33-8d7f-7ebb4255ae4b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f17bcbcc-d6c8-4b1d-a2de-d7c0da1e9a1b") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "a0f956af-eaa7-4c7b-aa39-0a9d7be9ec73") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d4eea701-455a-4788-85ec-0f0b7dd762bd") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "189090da-0b18-4efb-99bf-1667f15f9015") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "8099a77e-f8c9-460a-b605-ed6b514380ba") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "229282a1-03ae-4a33-8cbc-2beb337b0c81") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "e798eccb-70f0-4bf4-a5c6-23a532f83c53") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f79e266b-e2b1-4543-925e-2e88459c9d70") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "8e835645-6e25-4c3f-af21-20347eece786") ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c45cb596-ae76-4b57-9a45-2e61e05fb385") (at 78.29 119 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R56" (at 3.2 -0.1 0) (layer "F.SilkS") (uuid "faf78525-0b57-443d-b24c-7d05ae983ea3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "DNF" (at 0 1.43 0) (layer "F.Fab") (uuid "36ae1d05-420b-4e52-a95f-ded71f4547de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "109e36fc-ee7b-4097-b327-6a0cae661660") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "3fc72630-98cd-4f4f-88ee-784b32a3b18f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "b15346a4-354a-4a18-9324-6931a200d331") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b10ab240-2d61-4125-932d-979d63ee105d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/1b08df99-72aa-4d1e-8b04-106a447108a3") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dc51c20d-385c-4698-b38f-8f6bb7f091b4") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "098c08b0-01c8-4201-8d21-84e7749fb67d") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "79fdbec3-dee0-48ab-be6c-a359c9254b8a") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d683e7f0-592b-42ff-ab86-7260625a1d9a") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad4e53e5-f67d-4485-bc14-b110fc9e90c5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d079f0ba-f330-45a4-adcc-9cfd6e07ab92") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "45200fd1-9f3a-4d90-bd5c-cbacae151608") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7d7debe-0ee0-4599-80a2-a3f68e0a9a3b") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "95c63837-1fdd-4e42-8fc3-c6c24a27e41c") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "03286e6d-20bd-43b9-9c1f-694cd39c25c5") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "6cf941a6-9fe9-471a-8091-8d1a444d9e14") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "e6b02f59-b535-41d8-ab5f-63f4762e696a") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pintype "passive") (uuid "10d7c27a-ef41-4fe1-a2eb-9e6589462b66") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c49de291-4f40-4b4a-a42d-a9218ebf31a4") (at 96.4125 59.8 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R51" (at 0 -1.3875 90) (layer "F.SilkS") (uuid "33487b38-b45e-4854-9075-6d686160e6de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "1dad0d24-3ad3-45ca-bebe-cedf02dff808") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "14d7ff4d-d887-456d-8568-9b2d9ae75bfb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "a5d3ce62-b76b-4150-a759-8d87d35d611f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "286ab49d-e103-4bfd-a29d-cdc187a479f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 36.6125 156.2125 0) (layer "F.Fab") (hide yes) (uuid "5bea1cc1-0c5a-4edd-82b3-38b00a13af99") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f6ee3148-64a3-4699-9e76-151efb43ef0b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/5effda4f-f509-4c42-bf3f-632077643ed1") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "af39d56f-32fa-4cbf-8468-4f2ab0cce43c") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e24dfd52-153d-44bb-899b-a321085d9c02") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77e01f98-5f12-4618-9b98-3b8a9141f6cb") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bd68450b-a434-4c5e-a232-f4ab297ea239") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0a55325c-928d-4ce4-849b-f3a887d03242") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dfd8bdc6-86b4-4482-b06d-f1040927fc81") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ad77d53-e861-4d55-af38-db422702e762") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1b4113a3-085f-4cd5-919e-afc379186f35") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8eebb756-d6a1-4524-b2b2-47b4f724f975") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6851d24-e876-471e-b73a-011a4a6e9158") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "9250b7de-127f-41b4-a548-ef40b03525a3") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 108 "TEMP2_READ") (pintype "passive") (uuid "bcfbef5d-e7cf-4abe-8dda-b7062f297bee") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 104 "Net-(JP11-A)") (pintype "passive") (uuid "b35fadeb-ba8f-4d30-848d-f212528425b1") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "c6561626-87e4-49aa-8e4f-de2eeb417f5d") (at 162.3 108.5 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D25" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "548d4ac1-0fd3-4f15-bb18-04abcc6896c3") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "a954d84d-d28e-4018-adbf-acf24083f8a6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "4897cd04-d521-41fe-be65-bdd9c919c8b4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "b2c8de47-4616-4f65-b13d-e06b0b13542c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "992814b1-fae8-42f0-a4e2-9ab3e4ab8517") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "c28716b4-6828-4055-a220-8767e8a4ead8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "514bc12a-dfc4-408e-a074-7b91c38d729a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 53.8 270.8 0) (layer "F.Fab") (hide yes) (uuid "35c391c6-51bb-41d9-b188-323057bb4ffd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b7365212-6827-4863-a115-4a3e41db7f67") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "98e18ea5-ae0f-4f3b-9419-02fb8497d840") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "04d0fa73-2202-4bc7-b62b-1910f9d650e1") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78755afe-62e7-4006-b755-ddca1319f501") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d29ed338-0811-4f8f-ac74-ec8f96e453b4") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9b6d4da-e50b-4810-b8ef-588e4c2cd59d") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c2254823-6a61-429f-acf1-5d91d5b2ab36") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "98f87a5d-5e4f-4b0a-b950-bf2b733f98aa") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6a05a83-9c7c-46fa-96fc-47ed6b1c2c96") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b3b0817-0b95-4e5a-9437-78d2bcb1842f") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "40587a06-dcd1-4f8c-bddd-14f022198eaa") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa1603cb-bc37-4235-b0ed-c941108e4ebc") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73fc8285-305b-4e16-b9a4-8dd0b941b8a6") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "23a54596-e880-4afa-8508-834fc1751027") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e768c3eb-90c3-49c0-91c5-9a40820cebfc") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f1c3c41d-baff-4882-8a36-35dc5be163ed") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb25d010-70e8-4352-b104-9ca286615020") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38f981d1-ba40-4fd6-b87d-aa08d1e04e82") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "0e7a516e-26f9-4d21-a158-3c2ae6c79213") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 85 "/Fan Channels/Fan5/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "47ac9ad0-acf0-42fc-ae93-486346573941") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "fac77b93-edcd-41f6-9219-34a84693b4e1") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "c6755a81-7c14-4c1b-9e7c-b1323e38f892") (at 146.25 94 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C23" (at 0 -1.43 90) (layer "F.SilkS") (uuid "20c24c6a-c175-4322-81be-b89241f4791e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "b3a5391a-9150-47dd-86d6-559f7de04640") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "123a4c37-7415-4ed4-a2da-54e219754750") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9181009c-b8a3-4999-a900-466c62dadcd7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "b546c7a8-e898-43f9-b2f2-eb1bd8e5235a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 52.25 240.25 0) (layer "F.Fab") (hide yes) (uuid "ab2976e3-5d94-49da-8176-78465d56fefd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7ebf47c1-edc6-491a-a760-e3ac06277996") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3c9fa668-a0f5-44b9-b6e1-df0fbfb8ae90") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f797c6a8-6c9c-4b7b-b361-932b6f00182c") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f768eb72-e3b1-4a0c-abc5-4204f4f8ea92") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aa9d8308-81b8-45fe-8aa8-308e007d0123") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ccd05ac8-1111-468f-8a4c-3ecfd9fb25e1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4160b1c1-317b-41d5-980c-0db621e6bef3") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "159ffaa3-9b06-4261-9107-e4e8097a834c") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a8cb1973-e6d9-4fa8-91d1-278e2f3e2bc3") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f62762a-f2a3-4e7c-a9e8-95c9d96e401a") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "83bb184c-1b41-4db1-a3c1-2f444955ecbb") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "d638dc90-6eee-40e1-9abd-0351f30da570") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 76 "FAN6_TACHO_READ") (pintype "passive") (uuid "5904424f-8628-4dd1-900e-a044fc661a60") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "538ebcb9-20db-43e5-b7ca-6a9f2dad63e7") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "c85cb13d-e33c-4140-b869-4d812a7dc1d2") (at 119.875 66.5 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D57" (at -0.7 1.55 90) (layer "F.SilkS") (uuid "65ecf9d5-9e0c-4f2c-9e8f-cb1ce9b9b779") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "238bbe0f-6762-4f71-b313-4f0455988a89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a7bf4cdf-8ac9-4ed2-bc79-88d75fba077e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d1050621-05f0-4656-b10b-dcbbb2f80d00") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5cfc0995-28b7-4878-b9b9-491504ddcc61") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f276c168-5114-498e-aceb-2aa980e9502d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/16ceaaaa-e928-48f0-aa21-5f990ab7d966") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fccf5b74-2523-4ab6-82e5-912600aa1dae") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "46725861-4c0e-4b2b-99cd-62b6cb96433d") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cf5e22b5-e35f-4b48-94ac-ccb9bcaa296c") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "30c5f0c4-9b54-43bd-ba24-6e9d8f6b0fef") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "532f5c33-bc3f-474e-aacf-bde2450492df") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "954710d6-0b86-4ddd-9d49-e009c9c173c2") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6fd87adb-2fc2-4132-9341-88d1e4ca5c4a") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3c5a3ef2-e01d-45e6-9eec-82009aea714e") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1a627e6c-e126-4dc0-adff-ef7f7c036dd0") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "87afaede-68bd-45a7-814e-c65f63401739") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ff96183-145d-4497-b4e3-41fe19ad25c9") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "44ac606c-36d0-45de-9c4b-0a7522138759") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f0da4182-d106-4466-8c18-21956790a1d3") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "569230ff-b215-4da5-95f7-d2b1bc293375") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cc8a14dd-021e-4c9b-b598-c7b8826ef04d") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "50121e0b-5cfc-41de-be44-496d31e3871d") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4856a271-a28d-4709-baef-f9cb606995d3") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "18151b12-66f2-4215-8900-072aa255b993") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "2695ae60-8ab7-48ac-bcea-de54adeef161") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 28 "/Fan Channels/Fan2/PWM_IN") (pinfunction "A2") (pintype "passive") (uuid "8c6edeb1-91b0-4d58-93af-966bd1777d2a") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") (uuid "c85e71f7-5bfc-49b5-8f40-97fc793fe4f6") (at 162.3 74.5 -90) (descr "Diode SMA (DO-214AC) Handsoldering") (tags "Diode SMA (DO-214AC) Handsoldering") (property "Reference" "D34" (at -3.4 2.3 90) (layer "F.SilkS") (uuid "5a5ba211-964b-41f1-b0ac-d9702af5c703") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "ES1D 1A 200V" (at 0 2.6 90) (layer "F.Fab") (uuid "d0f57e1d-4112-496d-99d0-8841cd518336") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "ca68e20c-3706-40bf-b73f-ccd36cd7764e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "4a887950-4d52-47ea-9fb3-0555aeb039b8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "bc1ec2a3-7eef-428c-83d6-32f749bdc5a5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C445494" (at 87.8 236.8 0) (layer "F.Fab") (hide yes) (uuid "983b3302-3aca-41b0-a2e0-47d9fc08dcf6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at 87.8 236.8 0) (layer "F.Fab") (hide yes) (uuid "ad4ff12f-76b5-4cd6-bab6-ab41006d7cd9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at 87.8 236.8 0) (layer "F.Fab") (hide yes) (uuid "aa3656bb-70a3-4a7f-9cd9-663771d09f62") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "480da62e-2697-4bfc-9e95-7ae0682acac2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -4.51 1.65) (end 2.5 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eca705b9-fdd9-4859-a82c-3fef1368acb2") ) (fp_line (start -4.51 -1.65) (end -4.51 1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "06a2a530-3431-44e4-bda1-3b879d8f0778") ) (fp_line (start -4.51 -1.65) (end 2.5 -1.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a363785-374f-4d3b-bbb6-8a87322510c7") ) (fp_line (start -4.5 1.75) (end -4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d4c53c39-7181-4905-8d32-b0eb925cf811") ) (fp_line (start 4.5 1.75) (end -4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c904d5fd-0b53-40ee-9613-0c74be95594e") ) (fp_line (start -4.5 -1.75) (end 4.5 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4bd648d1-b35e-4db5-83e2-9472f6ca2e3c") ) (fp_line (start 4.5 -1.75) (end 4.5 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e52686d0-79bc-4b3e-87fd-d3d9b5118011") ) (fp_line (start -2.3 1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f70f4e3d-9eed-4e6e-b764-d0d8cc328fc6") ) (fp_line (start 2.3 1.5) (end -2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "468f5b9c-8e6e-4eb2-aa1a-308b4d7de28e") ) (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a41c66b7-72b7-4d25-a9c0-8ca408be0be7") ) (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5c1cbc59-77ca-4d8c-a884-47002841658a") ) (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "17664520-90ff-499e-9e99-6d051d307da2") ) (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9531b76d-7269-4bbe-b049-161fa9b2a5af") ) (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4bde2658-76b3-44cd-aba7-51fc4fcd5ed1") ) (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ff373276-9314-450f-9319-91c744839c7f") ) (fp_line (start 2.3 -1.5) (end 2.3 1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f36b876c-69c3-400c-9f2a-f03a6880e41e") ) (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "637f103a-330d-4022-b568-3a57edc3bb55") ) (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") (uuid "3babac46-07ff-450d-b98b-1158f72725cd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 91 "/Fan Channels/Fan8/PWR_OUT") (pinfunction "K") (pintype "passive") (uuid "acaeb393-a42e-48fb-93cc-99b7ec3d3354") ) (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) (net 2 "GND") (pinfunction "A") (pintype "passive") (uuid "93e89fa8-682c-4a5d-8588-dc04827042aa") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c8ad63a6-4c52-4182-9d59-39ad3082bcd7") (at 148.6 130.2 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R1" (at 0 -1.4 90) (layer "F.SilkS") (uuid "2b7797cd-810a-469b-b5d4-ced8fa142931") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1k" (at 0 1.43 90) (layer "F.Fab") (uuid "1ff31552-23f6-4052-b934-1628fa5d9cf1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "5e2540db-a29f-4122-b47c-0b8081b53f46") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "44aebbe5-29d9-4722-a374-3d21d6c3f56e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "729ea15f-9813-4467-b53f-b307f18a56e1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22548" (at 127.4 124.4 90) (layer "F.Fab") (hide yes) (uuid "fa97e4c9-8f29-4b01-8098-5fb6cebb2df4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "494f7900-8984-421a-91ec-2c5d5e439112") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/acf00741-1e6b-4573-832b-01221b598fad") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f49b3711-fd80-4de4-9654-b5b002cbe88f") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a7ebb8f5-3370-4432-8971-a1376f73a0e0") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2e84dc98-32ec-4e7a-93d1-78548ac694a5") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fe188f6a-d6c1-4ff5-83aa-e01a0c9e4ca4") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62dc7f4b-c4a2-4ff2-862c-1d619cc61a01") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6387ee10-3b6e-4643-85a1-161a30d7beb3") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8109325e-1d73-4550-b5b0-586c8267f07a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f17cc718-c2db-4717-b8fb-4b72669f6ac2") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a6037605-7989-4874-818c-7abf5a581cc0") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a1cb30b8-3000-4307-b97e-30916570315b") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "c6e28c82-fa96-4d2b-aa06-dfdd7dfe7876") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 41 "RESET") (pintype "passive") (uuid "e284e039-f27f-4616-946f-5b295a806ef4") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 42 "Net-(R1-Pad2)") (pintype "passive") (uuid "2873e7a9-8f95-4035-8392-74e8b167dc09") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "c9b3e5ec-1d31-4947-883b-ccd69cc095fb") (at 117.7 80.9 90) (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") (tags "Through hole socket strip THT 1x04 2.54mm single row") (property "Reference" "J2" (at 0 -2.3 90) (layer "F.SilkS") (uuid "00b79ced-4282-492d-aa69-cec6a8f54df9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "I2C (OLED ALT)" (at 0 10.39 90) (layer "F.Fab") (uuid "f590c4e1-4e85-482a-a56a-b31b29ce21d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "9ef3da4c-33a4-4ea5-a5c1-05ea38b1b979") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "f4ff78e9-d1c0-4fb1-a259-1d5e87a7c2d2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "554cee0c-c268-46eb-8944-cde55bea34f5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "476b87ca-71a0-41e9-b23f-50dd7c41f323") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/918d6622-f969-49f5-8a3a-f4b4a9270800") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start 1.33 -1.33) (end 1.33 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64654304-2032-4be0-a933-30588e0093d6") ) (fp_line (start 0 -1.33) (end 1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14cda64f-7827-4913-ab48-c0eea32f4ba2") ) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "476fb982-3b24-480e-8167-388cf41d0a57") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "864a3556-63f4-4cc2-8053-44f9989b21fb") ) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8d2d9496-b8de-4253-960f-b3ed56a0c2e3") ) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c822b811-c75d-4a3e-b2bd-408a5f7c397d") ) (fp_line (start 1.75 -1.8) (end 1.75 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2dd1b345-1de8-4c04-a68f-7414bf65afc4") ) (fp_line (start -1.8 -1.8) (end 1.75 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "68e873a0-8280-4ab8-989d-d3530606e686") ) (fp_line (start 1.75 9.4) (end -1.8 9.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "25da2a30-e9d8-4fc5-b24e-66d7075b5714") ) (fp_line (start -1.8 9.4) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "35c4788f-54fa-48ac-8b27-3db8e578b88c") ) (fp_line (start 0.635 -1.27) (end 1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27e4a3ae-179b-452d-98ec-f8f93d5c6e90") ) (fp_line (start -1.27 -1.27) (end 0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d3a6e8a-078d-46bf-b7ad-517ea56e0306") ) (fp_line (start 1.27 -0.635) (end 1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ca197e2a-854c-4bf9-8481-8c3381d2ebab") ) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc91ded7-b190-4e13-a5f9-72aefef98335") ) (fp_line (start -1.27 8.89) (end -1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e9561a5c-bc45-4e02-85db-7952794fdde0") ) (fp_text user "${REFERENCE}" (at 0 3.81 0) (layer "F.Fab") (uuid "b231175b-338b-4fa7-a5a0-62907ecc8609") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_1") (pintype "passive") (uuid "21f1d322-f842-418b-a723-23afb0353df4") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "5bbc7166-379b-48a0-a79a-0baf803ba25d") ) (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 113 "SCL_MOSI") (pinfunction "Pin_3") (pintype "passive") (uuid "92c5005b-207c-424a-83f3-51cdd43918ee") ) (pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 114 "SDA_SCK") (pinfunction "Pin_4") (pintype "passive") (uuid "4e29b9b7-d004-4ea4-bad3-3ae9e95d4d69") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "c9fcd7f4-1ee6-4857-82fd-9c21d04b714b") (at 101.8 112.525) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R14" (at 0 -1.43 0) (layer "F.SilkS") (uuid "f9b17b7b-41cc-4232-89f0-5fcff5e5b388") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "43b447d1-1276-4873-8e38-556d163037e2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2daee013-44b8-4af6-b63a-96140ff02991") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ba25fd62-f611-4fcf-b89b-e79df1989391") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bc43234e-8478-43a8-bb1c-ee0c45ed402e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2ed13d69-88c9-46b8-aeb1-4070cc87833a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "424a6dea-e0ac-430c-b2fb-897af4030eab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/e6e8ae2a-5894-4e68-8264-24e364417d34") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "22828e9c-0315-4698-9b8c-9acbc2ebdbb2") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7717d2b-014a-4790-9858-3ac77408730d") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8bdb5f8b-0e4e-4345-a046-0bf5bb237507") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "13c529d7-9e5e-413e-9731-9a4ecc26291e") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2ad33d86-d5e2-4b87-bd22-2c9807f1ad15") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "001e2b59-dbf0-4af0-90d2-7c9e153d57fd") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b1450cf5-34fa-42e3-b2d7-873bef5220e7") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "829e6e3a-d2e2-4005-b35f-c4cd3f9420c7") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f52f37b-f975-4dd5-8a3d-e0a6c8252285") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ab9b3a5-8001-4eca-8dc5-c0c6a1cc59dd") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "81c3400f-b9ca-492a-9a85-267e5b205eb7") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 44 "FAN1_PWM_GEN") (pintype "passive") (uuid "82f88e2d-324b-484f-a2c0-86282f8f018e") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 36 "/Fan Channels/Fan1/PWM_OUT") (pintype "passive") (uuid "19c616f9-94a5-46a1-88a1-13257881be7c") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") (uuid "cc28128d-dda5-4a0d-848a-18ff95d24656") (at 140.45 68.0125 90) (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOT TO_SOT_SMD") (property "Reference" "Q3" (at 1.1625 -2.075 90) (layer "F.SilkS") (uuid "47d9fce3-3c43-4cd6-bc3b-040d319389b9") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "2N7002K" (at 0 2.4 90) (layer "F.Fab") (uuid "5eed7e51-673f-437b-bcaf-c9dca1bdc691") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "307ff7f2-0069-46bf-adaf-d033dbf517f7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30896.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "68e135f0-c31c-4b8b-bf33-2bc89c3a3d4b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "0.38A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2e0ebf30-bd06-4c29-9262-8e4ae4e18962") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C85047" (at 206.2 -74.2 0) (layer "F.Fab") (hide yes) (uuid "5a127303-dc1d-49bb-beff-f94e6f251f9b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "da042a09-c905-4a48-972c-f60fd4df9de5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "SOT?23*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/537d375b-1ca6-4946-95db-66496543d0cb") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0 -1.56) (end 0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f00ed048-fa79-4c96-9adc-f9ce0af1f0f8") ) (fp_line (start 0 -1.56) (end -0.65 -1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0979763f-caa6-4549-a9c9-a50b0240d520") ) (fp_line (start 0 1.56) (end 0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8cc4a406-7ebf-46b8-9b47-81963bd80045") ) (fp_line (start 0 1.56) (end -0.65 1.56) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc27a984-d4ce-49c5-acbe-afabbb85f910") ) (fp_poly (pts (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "658046a0-8eb7-49b6-b312-59c1c9dbfb67") ) (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "28f791eb-0731-48f3-9166-b28ce29d7aa3") ) (fp_line (start -1.92 -1.7) (end -1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "89a0e46a-6f63-49a0-8193-e65aa26e80a7") ) (fp_line (start 1.92 1.7) (end 1.92 -1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9a5b4950-5f41-43ee-9362-a8bd505e5b2c") ) (fp_line (start -1.92 1.7) (end 1.92 1.7) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b11d8231-836d-49af-bede-361adc232fda") ) (fp_line (start 0.65 -1.45) (end 0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f33e8e6-af4f-47e5-a251-f0bc966d4555") ) (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7cb8e9ce-4e1a-4ff5-b451-e9c3f4d17d18") ) (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8cd5900-9355-4999-a61b-095e4e53c034") ) (fp_line (start 0.65 1.45) (end -0.65 1.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "757f8f67-613e-4aa4-9ad1-16b55135f464") ) (fp_line (start -0.65 1.45) (end -0.65 -1.125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22304a38-3fa6-4718-8714-958c3487a8f9") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "0a4f63ac-5ecf-4aec-a404-4f533af6919f") (effects (font (size 0.32 0.32) (thickness 0.05) ) ) ) (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 111 "Net-(Q3-G)") (pinfunction "G") (pintype "input") (uuid "7e38f45e-98b8-4e9c-ab3f-c4dc3a8ed2b6") ) (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "S") (pintype "passive") (uuid "f20749ac-1831-4f67-b2c5-72c3932c8f1c") ) (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 33 "/Fan Channels/Fan4/TACHO_OUT") (pinfunction "D") (pintype "passive") (uuid "412866d9-9fd1-404c-9c76-c2c2f6aa4a9c") ) (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "cc36d85c-cd5e-42f9-b79c-1544f558218e") (at 124.5 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C20" (at 0 1.1 90) (layer "F.SilkS") (uuid "6675caec-3c3a-4eac-8b62-56620fd19c89") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "86e6a200-c728-4171-bddc-812793ae010a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "83db6247-a14b-440f-98d3-b1c41d325360") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "aca8adfa-6e24-40bd-aa5b-aa1199f6c615") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "c006410c-bf63-4a19-8c29-d8e1c615b586") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at -0.2 249.2 0) (layer "F.Fab") (hide yes) (uuid "31dbc172-98cc-4c99-a3d9-ecf624091bf2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "492964b1-bb6a-421c-b8b8-63b7af95ab94") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f20fbf8-b449-4c49-9c46-f0dee78c7f22") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d969e25e-0273-4f8c-a980-3bcd7f434cdc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cee8dcef-bb6a-4876-b406-d2a93e04f298") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5d38d781-d5bf-416e-a31c-5fb10714542b") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f9209c22-8098-43f4-b36e-bb62682c5eb7") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "77750e8f-e3e3-44c4-a597-c394ff8cb864") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ec6a1f5b-ed02-4b4f-bd51-8ef28f35575e") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce6de907-af29-46bf-a3d3-5e8a2d5a4245") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3509998-0567-44d9-af7a-d46089964c87") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef9744c6-5c82-4ed2-aaaf-d05c9771e779") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "8948efac-f613-4378-8cc9-588423d9d0be") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 79 "/Fan Channels/Fan3/PWR_OUT") (pintype "passive") (uuid "09de05d0-5f4c-4320-b05d-921f4a6c6a03") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "48c1f680-074d-4d12-8eb7-87408a14d040") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "cd44de01-fc19-4ee0-8246-662045ddc021") (at 112.7 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C14" (at 0 1.1 90) (layer "F.SilkS") (uuid "be8c47e5-3a9d-4e44-9891-9cffc6d46d54") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "2525e76a-729d-4a07-81fe-324b1237eeab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "edea522f-89ca-4793-bde8-b9f4b1c5067e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "39abcdfd-8a14-418e-a3a9-ae3e03da9584") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "39372a5a-a258-4ac2-832f-d96af8e103ff") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at -12 237.4 0) (layer "F.Fab") (hide yes) (uuid "6c621984-654d-4a5e-889e-6f19542d5c05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d62f37cb-814e-4be4-a1b2-0653ee53f174") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d7ae35d9-c079-4e97-bd31-ae6d08ec42d1") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c5295c7-ba90-460e-8475-7c06c04e407b") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5c8edc68-7fcf-4900-a34c-e6383fb6c33c") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c67e394-1cd7-4e98-9217-1af5dcd954e8") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "aaa740be-b013-44b3-a382-adf855a66896") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5270fe2b-ad25-4ba9-9ad0-aeaa23ab29bc") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "038ff487-3864-4c1f-be41-cc8202b0d54c") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d72ef5d1-b85d-41e8-a175-02996110f811") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd9f0402-2637-46b6-8c2f-6a7f6687a868") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3498b4a2-768e-44a9-9cc2-dd6a1b1ca59e") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "e6c466f5-14f3-4f10-a3e0-cf088fd2c0c4") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 37 "/Fan Channels/Fan2/PWR_OUT") (pintype "passive") (uuid "d71b44f4-fa6d-4ef2-8006-5b7cf628a623") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "9a837804-cd3b-446c-babf-eea0f0025143") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "ce1d4c31-a2d4-4852-849e-0e281377f354") (at 150 75.6 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R45" (at 0 1.4 0) (layer "F.SilkS") (uuid "aa1d9799-e951-4351-98bb-92dd916898c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "0dd117cd-65f4-4064-b33d-eb80fdf9ace6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "8a47f818-f665-49c7-a25f-b5dde2b7527c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "481bce72-e9f6-41ad-9483-7810edd3961f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "31c0777c-e30c-4a63-bca4-caada57da4f4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 300 151.2 0) (layer "F.Fab") (hide yes) (uuid "0bb96aca-8896-472b-b7f3-6f7bf3a946bc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a5d3ff7c-2a9f-4812-b23f-1abbfe0b9483") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/4e28b459-dd74-4c82-9144-e285ed7f5928") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e83fc65-f007-40c8-a0a4-54440375873e") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7ba09d8e-9808-473a-a2b8-481d47bf5491") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b847369-6e5c-429b-8cc6-722309a11e95") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a6466bf3-0511-4364-a476-b8d72561d9fe") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e0bfaad-9fcc-417e-a876-50290ca28ddb") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7b6e2301-9d40-4c59-a03a-b3fd597afe27") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "56e7da0b-1b57-4ccc-84cd-d4a9f566e952") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "65dcbdfe-f451-4c43-bfaa-ecd4e286bc72") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f97ba06c-c6b4-4547-afeb-c173f4a8c9fd") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "77a6a314-278d-4fe4-99c0-8457dd4f7c32") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "c8215773-f1c7-481e-9570-c55e995c44e1") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 91 "/Fan Channels/Fan8/PWR_OUT") (pintype "passive") (uuid "ab8551a6-1440-476d-b227-5fe36f08f645") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 100 "Net-(D32-A)") (pintype "passive") (uuid "e9dc82b8-738e-4a18-a7d2-7a40823aa15e") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "cf7d446e-281f-4012-9e4a-cb3db9bd5a66") (at 86.75 119.325) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C3" (at 0.75 -1.425 0) (layer "F.SilkS") (uuid "c4d14067-1e9e-4a75-97bf-c9867601555a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "44b2bb1f-6b80-42fc-bbdb-567e9a2ddbd0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "717e64b7-3473-4f0a-84f0-3820129534f3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "41b74d74-5e78-4951-81dd-2e9737808022") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8e8d479c-72f1-45ec-bc57-c632dfda9806") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bae98d19-6aff-40d2-84b2-40dfc662929c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b9cedd31-20c4-4200-9bb9-e315bed4f659") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/5d5f6209-62e0-449e-9e51-2777855b3905") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59ef3af6-21f5-4726-976d-ad7dcfc88df1") ) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b243a199-5abe-4819-919a-163593fe7c3a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "899076d0-afc7-45e0-a1a5-0e1010423eda") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "622792cf-cdd4-4768-a920-b0d58008688c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "76eb9dcd-736f-45ce-bf66-3c2462c6cf25") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7d3dbe66-69f7-42d8-bbe2-19ff653af017") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "db1b08f3-1a57-40f4-8c08-e2d0f93d43ef") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e873bf7-5790-492e-b4f1-a10e3e689eb9") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c73b1d4-1599-4572-9f87-ee90c63519a8") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e644e37b-10f9-464d-ac8f-a28295f830f3") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "f0d956aa-5124-484a-8f53-384abd92ad91") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "503a9b48-e60a-459c-8472-443dd45f719a") ) (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "7d876aa8-68e6-4c70-a7bd-e737905e277a") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") (uuid "cfb7388f-f5f6-4dda-89ae-f63594c6086e") (at 54.625 78.25 90) (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x02 2.54mm single row") (property "Reference" "JP12" (at 2.5 1.225 180) (layer "F.SilkS") (uuid "68fffb0a-8061-4698-bab7-535622af7868") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1-Wire Pull-Up Enable" (at 0 4.87 90) (layer "F.Fab") (uuid "a8e64b7a-047f-48be-927e-2407dc85c733") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "afaff69c-a51a-4913-8185-a455f094f821") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d1bc38be-f543-40f9-92f3-22dc3d0f7a9e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d226a06d-f5c0-4784-ab39-fa97bab2b365") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e25ca6e7-5960-435d-99ee-1ea09cf4d9e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*2Pads* TestPoint*Bridge*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/972e63ce-6f99-4302-98b3-4b1b150a5c46") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a8dd47e3-579f-436b-847f-9116ebf265f7") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "571516df-91a2-4e31-8aed-8ad17fed913d") ) (fp_line (start 1.33 1.27) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e307146-0645-4366-9664-24b0cf7bb71f") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "25cd1282-f740-4588-a725-f358c97c6873") ) (fp_line (start -1.33 1.27) (end -1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c9ad514a-addb-4ae8-beb8-6e45b3f3a285") ) (fp_line (start -1.33 3.87) (end 1.33 3.87) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f74b8521-0f0d-4a0d-8031-300d54957695") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1cd8d392-6089-40b3-a8fe-d6d426fc6d90") ) (fp_line (start -1.8 -1.8) (end -1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "75d47d04-9990-41c9-bae2-b4ccb4bea825") ) (fp_line (start 1.8 4.35) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e08c91f4-ff7f-4d78-90e1-7f6e73c74618") ) (fp_line (start -1.8 4.35) (end 1.8 4.35) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "05d57874-39c8-4e55-84e9-c8f1e7438afd") ) (fp_line (start 1.27 -1.27) (end 1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8bc13b3-9326-4af5-b721-a0a72b35213c") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5c987231-6abc-4fec-b4e4-8bed65912422") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f01f3905-b6a5-4733-8849-ecfd55bfee96") ) (fp_line (start 1.27 3.81) (end -1.27 3.81) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "84eefce6-557a-4ede-b359-423f09d08735") ) (fp_line (start -1.27 3.81) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91fb9656-8922-4988-9631-698d8662a9fc") ) (fp_text user "${REFERENCE}" (at 0 1.27 0) (layer "F.Fab") (uuid "57333509-b1ed-4bde-a540-7e6982672cc3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 115 "TX_MISO") (pinfunction "A") (pintype "passive") (uuid "2c31b5a9-1d53-473d-90fc-32351f24df4e") ) (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 131 "Net-(JP12-B)") (pinfunction "B") (pintype "passive") (uuid "3b6c506b-73e0-4de4-ab93-7e510feffdba") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "cffab4f5-85f3-407b-a649-74bb72009e9b") (at 144.5 82.75 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R43" (at 0 1.5 90) (layer "F.SilkS") (uuid "f0c6fa93-29c2-43a6-b43a-a16cbafb9434") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10k" (at 0 1.43 90) (layer "F.Fab") (uuid "72e679ad-f614-47df-b399-9c0325aba2ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "3d477411-b000-4c92-aead-7a7643a99e3b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9066f268-355e-478e-ba42-3fefcba5a6d3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "3dde8f0d-28ae-4f7a-b295-f39c076af146") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C98220" (at 61.75 227.25 0) (layer "F.Fab") (hide yes) (uuid "9fb84e7d-247c-4c8f-b6ef-e0918345595c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b4aa1a78-a9b3-420a-88f0-ef92b10fb8b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/713f0faf-9b32-443b-b4b5-18ccafb68231") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86c2ad36-a633-4dd5-b6cc-e31d4e6f4deb") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "953f91e1-c6e9-4815-a3c1-5a5a4c8b9e19") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f0f0033d-5f93-4de5-9b56-520a1134ac22") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad2800b5-f94e-45c3-a559-a855dcc8d22a") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5241bcff-dcfb-467d-9348-17f724480f64") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8b0a19e6-f6ad-4537-91b4-98de7a538726") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "258b6877-875a-4273-8434-fa4e204f57e9") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6431ab55-c472-47ae-b2ad-4f43b64d1410") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d258fd43-fadd-47a2-8171-0ac1df3c759e") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "586ef379-9b95-4725-b837-14cc8bc491ce") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "313eab76-8595-45cc-8c4d-5864f0808566") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 77 "FAN7_TACHO_READ") (pintype "passive") (uuid "d9f3980e-f6ac-4e51-b644-60e141478e28") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "93ed47cc-4046-4e85-b0e8-c4b5a7daba5a") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "d06649aa-99de-4335-8fbc-320bd5cabf74") (at 108.325 66.4 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D56" (at -0.85 1.45 90) (layer "F.SilkS") (uuid "493b2f65-523c-4353-9e9b-724bc5cfe6d5") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "2588ae1d-2f3b-480c-bea2-ebb78e1b4525") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fd393440-50a8-4846-b92b-b82333f86ccf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "92e4923e-3dd0-4f99-8259-45d874f836b7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c65f7422-7bc8-479d-b882-071e100fb101") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "932a87d4-a0f4-4d1c-a2cc-d92651e7e7ed") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/16ceaaaa-e928-48f0-aa21-5f990ab7d966") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d56c712f-59a2-4307-bf18-6d7a05f5bb06") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "236ec724-a37a-4913-8b58-84384be0f8d2") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a729ec7f-7da0-473b-b2f6-77dd46568d09") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "edd4d26f-1764-4c16-9b14-ea5828f2beab") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bfd9f333-ddae-4930-a6a5-d52aaa5aa788") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "06e3b000-5f97-4b42-82a0-72f1a3c1737b") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a9c8599c-17aa-4106-8f56-cfb18162fe21") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64fbeffc-1942-4f7a-9a1f-ef3c3830cf4c") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b9d89caf-0fd6-47fa-ba90-ef87cad89240") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "38125753-2389-4c3c-a5e3-6a59ae79d32b") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cedb763d-e80f-42ac-9b2f-21062959f1e3") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f1303365-1298-45fb-82e3-84564c42bf9a") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2883258d-0d0d-4794-80b8-76ca761dd60b") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a26e4d9b-ddd2-4763-940e-6ebc0441df29") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f0f0a99d-86d5-4f36-bec5-ec3b0062cde8") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70a3a265-b83f-431d-934f-6c958dae5350") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ec770a5-e40b-42ca-a46c-284e6a5a2809") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "86fae18d-187f-4d0a-9539-3bc349c5e5c8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "7fd97f28-00fa-4f90-a6b3-f621793b9816") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 25 "/Fan Channels/Fan1/PWM_IN") (pinfunction "A2") (pintype "passive") (uuid "759e2de7-736f-4327-b046-eee7483a46c4") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "d0e7d358-e644-427e-81d4-cce48150d609") (at 143.15 71 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R23" (at 0 -1.45 0) (layer "F.SilkS") (uuid "713ae10a-6180-474a-8980-9ca807f29ffd") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "30k" (at 0 1.43 0) (layer "F.Fab") (uuid "4822c99b-33b5-4c80-9896-5d820720b312") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "7b6af653-7c95-49bf-baaa-cb3a9fa8007e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d5bef871-83bb-459d-8b05-a57bda2ff6d2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "34ae12e1-aa36-4519-b2ed-11c5b328a512") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C100001" (at 286.4 138 0) (layer "F.Fab") (hide yes) (uuid "0d35f417-2b4d-4e0b-98b3-4acae43f60fc") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cb6dedfa-b6c6-4020-8ddd-72d47cd81da8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/09870edd-9a18-4370-90d2-0fc6c17d6715") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "104da3b3-8c08-4a82-84a2-b59c792d94c7") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "52978115-d0d4-4ccf-817b-7e840319c6f0") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "118213d6-aa09-49f2-b3a1-da98a558107c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8fffce01-d14c-4c09-9a0d-654168b183f8") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "612f7b4f-886e-428f-9ca3-10f522b50638") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f671da0c-9a67-4a66-8f9b-fff237172817") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0caa089-383a-4bb6-9d6d-70d8943fcf62") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0dea3347-c823-49c5-86ac-a6c9170b1041") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e005b4a1-f4fa-4c00-a4f8-0e6ff83ad94a") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6ddcda61-57e2-40e3-a53b-9a85acd3b307") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "a4a8d9e3-616e-4aaf-bb06-1f96be66b3ca") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "2adad4b0-8a3c-4c47-b034-e800c19cc3ad") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 62 "MBFAN4_PWM_READ") (pintype "passive") (uuid "8185ea98-3920-40c0-bf61-596654cbd188") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "d162cdf7-ae32-417a-828f-b8bb6c98dc12") (at 68.84375 118.98 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R54" (at 3 -0.12 0) (layer "F.SilkS") (uuid "d2605e65-ea6b-40d1-a7ce-307710820567") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "DNF" (at 0 1.43 0) (layer "F.Fab") (uuid "c55a5591-07be-45a0-93e7-9435b851e1da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "86ba8588-9180-4e11-82a4-c75c7aadbfa7") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "3e9b4428-6cf1-4292-8b16-7a7ca49af97e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "73a03cba-c0bb-4b1b-ba4f-9e65da09865e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "151516cd-5f13-40e7-b972-ddf132da6ac0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/68788af4-cd69-4bb0-8b00-fc6856411aae") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dabaa729-e26a-4be4-9f5d-8eccdce7f31e") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "774ade09-c97b-45b9-a77d-b8d0f377e2d9") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a154fcd-fd7d-4bbe-a545-a3e2e07da593") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d919304d-1d97-4b48-afc8-9789eafa0f9b") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "72779583-295f-4c3e-b717-327c54e8df1f") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "306275b5-bc09-438f-9d06-998fafe97075") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e43540b5-f746-419f-acc8-cb9b06e48b73") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c1d9eadc-4500-4b1f-9aae-8d6d7774202a") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cb5cf66d-1155-42e7-af4a-5d49d21458c8") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "54d02206-5896-4640-bd89-22a55a203948") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "931b7738-8611-4c3e-b0d1-8fbf2c1770ec") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "9d53d070-6879-43d8-94b1-9dcedff60815") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 125 "Net-(U1-~{1OE})") (pintype "passive") (uuid "30c56b26-ca8b-4390-ae73-b4d3754f59d8") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "d1a00a8c-9cf2-43de-a7b4-443ee44fd646") (at 50.3 125.9) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D72" (at 0 -1.7 0) (layer "F.SilkS") (uuid "b4740943-c49a-459c-87a0-d4e0eb7d9992") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "b61dcd60-94d0-4d8e-b0d6-1324561d3360") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "378c7e0e-dac2-4702-821b-4f64233c14d1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e350820e-a4a9-42d3-82d3-74adec8cc679") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9b038589-74a1-4a85-b6b3-1113b43e563e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c7ba8ff4-a8ae-47aa-986c-79bea1e22732") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/b47cbb4c-d804-4fbf-ad7a-580558e6d29b") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0c9504f2-5910-4b99-b58c-8d606e774be0") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ccab7983-abba-43cf-8f98-0388b8703ee9") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f521f603-71ca-4828-b5ca-eb0fa80c575e") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "52a41a62-ffdc-4c20-80ac-b00db4dcdaa1") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae89d710-7f40-4094-91df-6c3fe63dbf2f") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c89abad-924b-4446-b2ff-d3922773ab6f") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3877a099-ce96-4f75-abae-c845c5287bcf") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dfd46a4d-a40c-43ea-8454-606720c0bf0e") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "aa3646a7-31af-438f-b7c5-87e53fbc7217") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5632713b-66c3-4130-80bd-1611c6eb9125") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cdfd9ff5-76dd-4d32-9073-61a8b8cefe11") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2228307e-6f35-4524-8f6b-44c28b87fa70") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "88432f82-ac05-4436-9d17-d9c21bebc0f5") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "736ec80e-3986-4c26-bd5a-8a45c7386edc") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "18b4e567-a9ac-4a1b-b5a9-17bc4349e530") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "080969ee-9d1d-4bca-8c47-aa272be916ca") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce3b3339-0ab9-4f57-a46e-3fb8a3b77b16") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "78c00588-7174-44b4-a3e9-36fea6e57c31") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "b32ce067-38a1-42c2-9a23-1d86100a3ee4") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pinfunction "A2") (pintype "passive") (uuid "cc7e5fda-69c9-43b6-94d6-154113b484bd") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "d205a3ef-6fc7-4793-884a-a92f50059f45") (at 146.25 105.25 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C21" (at 0 -1.43 90) (layer "F.SilkS") (uuid "1f0a33dd-1283-484f-bb98-6021326d73d2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "1nF" (at 0 1.43 90) (layer "F.Fab") (uuid "bd11b77e-80b4-44b2-9ae0-d82245b8e351") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "5a26bf63-9c28-45f3-aded-bc2efa67833f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "1be778df-9916-4125-96a8-e080c8561230") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "9f928afe-8471-4ba0-930e-10239a90c0cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1588" (at 41 251.5 0) (layer "F.Fab") (hide yes) (uuid "2878eb60-197b-411f-9672-6c6a31e08856") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcdb6f71-30e9-4f70-b343-f388907302c1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/3cd107d3-c6a7-4254-9209-0b9ac70966b7") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0990dcb5-e40b-4df4-9d9b-d0e758efe935") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f5ce8c89-6be9-4e8a-91fc-6b2739d85801") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c7960194-68ad-418f-9925-55bb08485944") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "447cebe0-25cd-4b45-a2a5-635fe59e519e") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f5b81a62-93c4-4ede-8cd9-18054aee52b1") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fbb25298-d745-4e91-95ff-ce3acc178891") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15914908-cdd2-4630-9508-6b563d910fcd") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91cee073-c7d5-4b1a-90ee-b7545be33266") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7341866f-aab2-4fef-bec5-56424bf11638") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ddd7ed6-a7a1-41ee-b5a1-dcd2bcb9055c") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "15fe6ed1-8eb4-4c1e-984d-e0248d0049bd") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 75 "FAN5_TACHO_READ") (pintype "passive") (uuid "e3f3f866-9179-4b4b-864a-0093ecccffa4") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "899265db-763c-4431-9042-2a4b87c8dfda") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d") (at 150 97.75 180) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R39" (at 0 1.25 0) (layer "F.SilkS") (uuid "802f4616-7276-4313-a03d-b65b9e5fc396") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 0) (layer "F.Fab") (uuid "06369479-95e6-469f-813b-b6cb3e68c81d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "3ecfdc0a-473f-404b-9a99-701a5889a3f0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "f1f8eacc-1027-45b6-a4b0-8953b291014c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "a3d96a52-d81b-4fc3-8ecf-fb5b1d08c4ab") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 300 195.5 0) (layer "F.Fab") (hide yes) (uuid "c9ef13ab-ae50-4b78-813e-d003e28aa98e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "15cd60b3-fa4e-4b54-8c26-7a68f684e27b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b/4e28b459-dd74-4c82-9144-e285ed7f5928") (sheetname "Fan6") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e0e570df-1198-4046-a4c0-2f6822f7f7aa") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "912ce1fa-f4af-4eb2-8d13-647ac83fdb0f") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0e9afad3-fce4-4952-b35e-24a3cf569848") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c0e2f7cb-031b-41b7-8533-21451d8e7442") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b5558419-75f2-4e44-a4c2-73cf24ee37b6") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0a0eb52e-27dd-47f0-9090-67f6cfe848b4") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "66d2b98c-b8bf-4a85-8785-b510f89c8026") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "62633f9b-c4f4-4f21-a6ae-12104fce0518") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "084ff0bf-c5ee-4ca3-9e39-ffc996854dde") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7c28399a-ff6f-4454-b805-a07ea4646a0a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "21c81184-92a9-48c3-a371-d72330723686") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 87 "/Fan Channels/Fan6/PWR_OUT") (pintype "passive") (uuid "beb730a6-d2d2-4301-810f-87979b4081dd") ) (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 98 "Net-(D26-A)") (pintype "passive") (uuid "4f75ca8b-3798-417f-9da3-be30207cc1c4") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "d477b005-312c-49d6-9daa-9d09f8b1b229") (at 146.25 86.5) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D29" (at -3.4 1.05 0) (layer "F.SilkS") (uuid "1ea647a6-e878-40b4-8dd5-e77d9b03734d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "ad6e2826-27bd-4d89-83ea-84c50da45508") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2e22579c-63ee-4979-b7b4-75e168ec23ca") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8890773a-61d1-4c41-8bd6-37a19c40756d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4da658bf-99e7-4f5c-a776-82b7250b30d4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8b62f940-ac93-4901-9cec-f37a3afab649") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "228e4938-9811-41f7-9be5-59ba7e13718b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b05f977b-40e0-4b2c-afcc-e7449b4d9682") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "10191be1-a80e-4d09-952d-3268ea37838f") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c988182e-0fac-46fe-8aad-aa8de54068ee") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6e5beeb5-0a64-491e-a441-af77d99dce1c") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "933d6987-578a-4fb7-89c6-43feed325d61") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d5d020eb-74cd-45b8-a943-93a50f910d49") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a482808-1e4e-4ee0-b9db-374154770037") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f72467a-288d-4219-858c-2c25110e7bb7") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c5494733-e072-4a88-afce-4ff1d5add3ce") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6bb641db-d308-4b97-a1aa-210b365366b4") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fa659d9f-0a33-4839-925a-de640f28cd2b") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "244e6f30-7a9b-4ed6-8e36-e62686a86450") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "9bd92daa-d518-4b6a-8fb5-7c15492ff9b5") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "7a439a25-7803-45ef-87b7-f9ce5b838bd1") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 99 "Net-(D29-A)") (pinfunction "A") (pintype "passive") (uuid "db6b3297-8887-4c54-985f-687e6a2807fd") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (layer "F.Cu") (uuid "d49843fb-dd4c-4989-905c-a51d971b0559") (at 57.3 119.775) (descr "Through hole straight pin header, 2x05, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x05 2.54mm double row") (property "Reference" "J18" (at 1.27 -2.33 0) (layer "F.SilkS") (uuid "d3395fe1-729e-45bd-9a05-9102fc134bad") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LCD (SPI)" (at 1.27 12.49 0) (layer "F.Fab") (uuid "0d484bc4-89f3-463e-83fd-f1f40adb906c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "aa90cb2b-67a1-47b0-9de8-4e441bb186c5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "26b4b130-f460-4318-a4c9-499e727d386c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "c2e6409b-3c3b-46a6-b2e1-51a04895e3b1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "140940d3-7e7c-4401-8ef2-1a66de8a6c90") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_2x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/6c8ccf28-571a-4874-954d-04889ea48734") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6b4a4385-f4c3-42a1-8663-410f3125e426") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1cfaf03d-ced1-4863-bcb7-8bf77a770d9b") ) (fp_line (start -1.33 1.27) (end -1.33 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "91c5767b-5c62-4b4c-86bd-bba9a583ef7c") ) (fp_line (start -1.33 1.27) (end 1.27 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "30a54467-8b7c-4bfd-b71b-ee861e2d986d") ) (fp_line (start -1.33 11.49) (end 3.87 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0d79ebfa-f96a-49c5-a893-e09bdb54e821") ) (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "47b5783a-ad09-4c73-a576-49c91528475a") ) (fp_line (start 1.27 1.27) (end 1.27 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fb15473b-091b-40ca-9e13-89e0ddfa9800") ) (fp_line (start 3.87 -1.33) (end 3.87 11.49) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8268da09-dbaf-4d18-bd59-922b8c518383") ) (fp_line (start -1.8 -1.8) (end -1.8 11.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4fd72123-615f-477a-9a18-2d57572f6785") ) (fp_line (start -1.8 11.95) (end 4.35 11.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d3a5c6a6-f7e3-4056-b9b0-1faa2e9246f2") ) (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e5c84168-6513-47f2-9955-17e605aa0e7b") ) (fp_line (start 4.35 11.95) (end 4.35 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e430d79e-4a6f-426b-bdfa-924864130072") ) (fp_line (start -1.27 0) (end 0 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94429ba0-60b8-426b-ba31-96309761bbc3") ) (fp_line (start -1.27 11.43) (end -1.27 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "de083ccc-7a95-48cd-8ac3-d19ac279bde2") ) (fp_line (start 0 -1.27) (end 3.81 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00897769-0110-4fe5-909c-9d0da34ff83a") ) (fp_line (start 3.81 -1.27) (end 3.81 11.43) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b9b532f-465e-43f7-a0a4-50c018cca49d") ) (fp_line (start 3.81 11.43) (end -1.27 11.43) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f9c2e9e-e4fe-4dcc-a136-b283f6a2bedd") ) (fp_text user "${REFERENCE}" (at 1.27 5.08 90) (layer "F.Fab") (uuid "cd56ab14-9b17-42b9-8dfb-8527ed94b9aa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 115 "TX_MISO") (pinfunction "Pin_1") (pintype "passive") (uuid "495c3c86-a89f-43b3-9e0f-a093db3595da") ) (pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_2") (pintype "passive") (uuid "f5fe7d5d-c4a7-4a34-95ca-cd9ce410f0ac") ) (pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 114 "SDA_SCK") (pinfunction "Pin_3") (pintype "passive") (uuid "4ef4b2e3-24ed-4bf2-a408-1f84236af5a7") ) (pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 113 "SCL_MOSI") (pinfunction "Pin_4") (pintype "passive") (uuid "0c8c6c2e-907b-4421-99b2-45fc97baea0a") ) (pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 116 "RX_CS") (pinfunction "Pin_5") (pintype "passive") (uuid "82813d4b-573a-487b-bb90-f4480b73a123") ) (pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (uuid "54f6eb49-a7e5-45c4-8b45-72c75280cdcb") ) (pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_7") (pintype "passive") (uuid "45200494-29ed-4947-b425-bd6f3a5bf8f2") ) (pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "3V3") (pinfunction "Pin_8") (pintype "passive") (uuid "b3182a92-814d-4322-8975-bb1bcde55a58") ) (pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 121 "VSYS") (pinfunction "Pin_9") (pintype "passive") (uuid "a9d14c02-2d18-46df-8e00-01e59f960437") ) (pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (uuid "54d6a6fa-8be5-4818-b547-21ff41455558") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "d4f5a569-9cac-4fbe-a81c-74560f87a017") (at 131 114.7 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D50" (at -0.525 -1.6 0) (layer "F.SilkS") (uuid "57280440-c92a-4b9a-94bc-f6aa7195af88") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "f620409b-1010-477a-95d6-da182b73ef76") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3e24f9be-e73b-491d-adc1-d1de7aa38a12") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02c63301-0f02-4af0-9712-e58acb456567") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c2e8145a-2b1d-4266-86dc-05016f9c5650") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6110a29b-9005-4b2c-ae5d-b28aa1d6e629") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/31b59d93-a9a0-40d8-92f8-9879661e9475") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eb1285d3-1f0b-4745-ac73-230a5b9e8980") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42a2e723-5c11-4651-8238-2b7a2433c13b") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "87db4dbd-493c-4cdf-b65f-b3bef77adc4a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ba244412-3c61-423b-975f-3ca651dcd0e6") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9f216d61-dd5f-4537-b604-59ad2f0f03de") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "abfacfdd-a94f-4114-a928-1000ab8eb140") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "712d7f46-2018-47b9-9bed-1207c50cdbed") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2bb74750-e4cd-4460-a9d3-f1e538b574f0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a39c4d7-f151-4e58-a876-a6175a072d18") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1e8bd1c8-9baf-4365-8579-b6bf014a22d4") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "539e3a76-be19-4991-932e-740a31233370") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8689b147-8f9b-4fcc-9c26-282b368221ac") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "358489a5-8906-490f-ad38-cd583e4923a9") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ddec6ae-ee30-4929-b492-59353aaecde9") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19517ee4-d90e-43c4-ae6c-9e8c807d5c8f") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "310224a4-a2ca-4fe9-8e13-be39725e25bc") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd18e69f-27ac-4c40-8cf7-2d57f6acb831") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "eb71c921-88aa-4adf-a4b8-a74043fc061a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "c56158e9-4eb6-43e9-baf4-a84ef6c1e1aa") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 17 "/Fan Channels/Fan3/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "9e455040-12f2-415a-9810-3d558e7fa4b4") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "d5126669-5cc9-4360-8716-aea7e95ac812") (at 114.0625 76.4 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C32" (at 3.2625 0 180) (layer "F.SilkS") (uuid "8a79360e-0420-4e83-a0bf-f06aae7f442b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 0) (layer "F.Fab") (uuid "250f9877-7b97-4a3d-8bdd-fa42460e31e6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "e2461f90-1ccf-4aa5-a339-a81f84b602d6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "5ee0d5a6-52fc-4664-9f14-c3c1777b7762") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 180) (layer "F.Fab") (hide yes) (uuid "d8a7a038-9bdc-471f-8bd5-1067be6423c6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 228.4 158.2 0) (layer "F.Fab") (hide yes) (uuid "857d1607-e58b-4424-84e6-ca8f8343be42") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "534e2d86-6583-4524-a311-1d7eff65750e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/28dd9e1e-dbf3-4782-9cbc-a3a86d1241f2") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12735b26-8a67-4bde-9328-c5c90ad33960") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "533fdd1e-af66-48d7-ab35-281281761d8b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b8590264-5e9b-4fbd-a77a-91c487f24cf8") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4a63d4c6-12db-4606-a3c2-0edb720997d3") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f6bce785-3721-4d07-8b67-47c3ebdec585") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c3e018b2-b469-4b94-8554-d0a40ada5c63") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d25e373-6064-4d16-a1d9-549c4886a203") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7db413fd-0a2d-4927-9e11-6d81f092c6ec") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be8b9f77-e39d-432b-9929-3ba337cf1bd7") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9b06ebc-d560-4e99-8aeb-4eb678995e22") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "87881288-4035-4ede-a894-91809ccb490a") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "3V3") (pintype "passive") (uuid "aaa01e6d-f3c4-4baa-8b0d-332040bf63af") ) (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "95a1dfe3-219b-471b-a661-3494b4d2a14c") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:D_SOT-23_ANK" (layer "F.Cu") (uuid "d698e8ba-f846-4664-9811-56600cef7a13") (at 107.8 111.8 -90) (descr "SOT-23, Single Diode") (tags "SOT-23") (property "Reference" "D9" (at 0 -2.5 -90) (layer "F.SilkS") (uuid "282844d5-c288-47d1-96be-edd2429456aa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "BAT54C" (at 0 2.5 -90) (layer "F.Fab") (uuid "85ee437c-8f29-4bd8-aba7-5f5aeb5f66d8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:D_SOT-23_ANK" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "b22b413a-f256-49ff-a463-1840d24673bf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "89c2d829-e6be-47cc-befd-b13dda46ccfa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Diode" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "f1dbe8d0-afcc-4f8e-8289-b853c9ffc931") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C2844172" (at -4 219.6 0) (layer "F.Fab") (hide yes) (uuid "cdffbdca-41c2-41f2-b695-c8521520515d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Device" "D" (at -4 219.6 0) (layer "F.Fab") (hide yes) (uuid "8cbb6ecc-8611-4025-8843-0e537c1c1c07") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Sim.Pins" "1=K 2=A" (at -4 219.6 0) (layer "F.Fab") (hide yes) (uuid "970b65a6-f8de-4763-91d2-e638a2495bf9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a4f7d65b-cb82-4ab4-9d4a-3c973e08ec4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/2cf2e306-59d7-456f-b02b-64fb5bbcc818") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6d6b709d-916d-4688-aaf3-bb933bce5e59") ) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5e236ed5-218b-4ee9-a79e-9fc40b6aa4c8") ) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0b0ad87d-6d51-4fb8-8e17-e2bfb1e80df3") ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "46e76430-64b2-466a-9308-7aed333794fe") ) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6421c795-b671-4e12-b5f6-0f53186675af") ) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8740d5eb-263b-4212-97cd-7fb7ada702b8") ) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "bf54cee6-76ee-4068-8fc9-21e585292c8f") ) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "54bae51b-90ed-46d1-9f26-c03866920236") ) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cc558584-0c0b-429b-b96a-ce298738042e") ) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4ed8d1a1-462b-4b9d-b832-febe523de59c") ) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6e8b5e9b-9241-4479-843d-e25ac2ec602d") ) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "802c0a92-9145-4955-968d-81f5a3b616cd") ) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27481f1e-0bca-4b37-84e7-151300ccc8ca") ) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "70d6b213-f91f-4bbd-a670-a1086ca83d88") ) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c3a55ad-3852-4667-bf9f-55f52b5dd13a") ) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19f80b89-6b46-4d58-a008-3a38d665c480") ) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b24893c-ed1b-448f-8edb-962bac7fdab3") ) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32230916-7084-43fe-bca6-17719dcb70ec") ) (fp_text user "${REFERENCE}" (at 0 -2.5 -90) (layer "F.Fab") (uuid "ef89271a-ef4f-4925-a54f-6e99f7d15f90") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" smd rect (at -1.1 0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "e85e31bb-eb33-4a8d-be22-cf8d9f92d204") ) (pad "1" smd rect (at 1.1 0 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "K") (pintype "passive") (uuid "cedbd618-6c9b-47dd-8953-5e431ddb68cc") ) (pad "2" smd rect (at -1.1 -0.95 270) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "FAN1_TACHO_READ") (pinfunction "A") (pintype "passive") (uuid "f69967d6-a31b-41b8-9056-5cde90474d5d") ) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "da052ba6-8510-4f5d-804b-cb987f9a5bcb") (at 96.4125 63.45 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R53" (at 0 -1.2875 90) (layer "F.SilkS") (uuid "5aabc98e-131a-447e-a8b0-80da78a186a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "100k" (at 0 1.43 90) (layer "F.Fab") (uuid "50c907d7-34f5-49d6-a7f6-52288e049bff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "e88bbdcf-a3f0-42d9-a155-283390c4f863") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "1b6741df-f7e8-48fc-9d6a-1e847f87fe8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "50992fba-7660-4282-91c4-ee0c6c455865") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C14675" (at 32.9625 159.8625 0) (layer "F.Fab") (hide yes) (uuid "c194d72a-4ae7-448c-b94e-791f52d62d03") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "76a01d7f-6037-428b-953f-af1dd6c79da5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/c9077187-c2d5-4e2d-80b4-68e896790b6b") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69b5905a-f660-4ef4-8b7c-dbd6b51d7ac7") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e0a75c6-f4e4-431b-a136-df8c6bba7dcb") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8e2c5bf8-d46f-4c0e-8892-5c2baf1acc16") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "15ce0022-0cef-4f25-9cb2-ae6f0b34b19c") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c6a5b273-370c-4e11-8b48-cc3226aae4c2") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6f469ef5-966d-4477-a1e5-dd999759e46a") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "03e81813-b890-48fd-9c07-f037c66fad5d") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9faa4709-cf96-4a3e-8257-b46f7136bbb4") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f6b0d3c-6987-4c73-a6d5-9905be4b3d21") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92b25cfe-96c8-46fb-bc41-6644179a2857") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "3e12846f-b979-4dc7-afd8-3eebe50c39c2") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 108 "TEMP2_READ") (pintype "passive") (uuid "8262d6d8-2f41-48de-8d1d-82a37b820eca") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 105 "Net-(JP11-B)") (pintype "passive") (uuid "87eb75de-10af-4f01-9cec-ee7b8274ad97") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") (uuid "da760ace-b0ff-47e6-aaac-39646b7c0bf4") (at 78.849999 126.25) (descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SOIC SO") (property "Reference" "U2" (at -1.25 -5.5 0) (layer "F.SilkS") (uuid "69e3b599-f7e4-4e6d-a0d8-0cab25c883c0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SN74AHCT126" (at 0 5.28 0) (layer "F.Fab") (uuid "5e69f26e-471c-47c4-90a6-8f7c9ad01988") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "6d8a5562-c3b2-49f6-a455-61853b60edf5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "C155176 (AHCT125), C163728 (AHCT126)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d39d5276-ac63-47d6-a74c-7b22d6c2c53f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5dfd290e-90ce-478e-bc05-7bfb4a7aa2ef") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C163728" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "adb02ec5-5c84-4d8c-a052-366d9e3e1ae6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bf7ce648-f2aa-4801-be6f-19fad2ad5d89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (path "/66392125-6956-4edb-8ca8-2997bbab50ec") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start 0 -4.435) (end -1.95 -4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f5db48f-9bba-41aa-b1ab-e6acbc98d253") ) (fp_line (start 0 -4.435) (end 1.95 -4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "05550a38-1a92-4f0e-a76c-6bb9c8d7a0aa") ) (fp_line (start 0 4.435) (end -1.95 4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9bffb12f-e05d-44a1-898e-4561b61cfdc3") ) (fp_line (start 0 4.435) (end 1.95 4.435) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "06140630-bcd2-441d-8cd1-3d038a934ea1") ) (fp_poly (pts (xy -2.7 -4.37) (xy -2.94 -4.7) (xy -2.46 -4.7) (xy -2.7 -4.37) ) (stroke (width 0.12) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "570f220b-98b2-4123-b208-119fe72cf50f") ) (fp_line (start -3.7 -4.58) (end -3.7 4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "998e6651-19f9-4eb9-b85e-1218baa2e965") ) (fp_line (start -3.7 4.58) (end 3.7 4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "151be9ee-81b8-4a9e-9f43-ab075459bd31") ) (fp_line (start 3.7 -4.58) (end -3.7 -4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "93969aae-4cdd-4fb1-9019-6fc5c9ad405f") ) (fp_line (start 3.7 4.58) (end 3.7 -4.58) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "56da6566-4585-4878-a4b2-bc2e58df653b") ) (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "59de8fdc-5cd6-413b-ad02-16f671714431") ) (fp_line (start -1.95 4.325) (end -1.95 -3.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bd5dcaa0-5915-4236-b435-a9fa7cd9fa41") ) (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7793747-9c11-485d-82d7-204e7ed33fea") ) (fp_line (start 1.95 -4.325) (end 1.95 4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48598c26-7736-4128-9fb5-3bcce31df3de") ) (fp_line (start 1.95 4.325) (end -1.95 4.325) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e450eea7-0a75-42e5-8ba2-345d75ee84d9") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b529093e-8b1f-4243-8903-0f509c30a9a0") (effects (font (size 0.98 0.98) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pinfunction "~{1OE}") (pintype "input") (uuid "73fcc900-e783-4799-93a1-18105dfaed4b") ) (pad "2" smd roundrect (at -2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 52 "/PWM4A") (pinfunction "1A") (pintype "input") (uuid "3ba48475-2d54-45df-b57c-44448b7451cd") ) (pad "3" smd roundrect (at -2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 53 "FAN5_PWM_GEN") (pinfunction "1Y") (pintype "output") (uuid "4baf7bbc-3b56-423f-b025-7499879ac293") ) (pad "4" smd roundrect (at -2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pinfunction "~{2OE}") (pintype "input") (uuid "1cb554d6-00a7-4538-bb60-0d4ee3549d48") ) (pad "5" smd roundrect (at -2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 54 "/PWM4B") (pinfunction "2A") (pintype "input") (uuid "ac5ba8d0-6a33-47f9-a90b-0f33a6e45758") ) (pad "6" smd roundrect (at -2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 55 "FAN6_PWM_GEN") (pinfunction "2Y") (pintype "output") (uuid "3c1d039a-17ae-4856-ad27-461ca492e616") ) (pad "7" smd roundrect (at -2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "GND") (pintype "power_in") (uuid "7ee5d6cc-7e3e-42c5-9169-ac7e8be27fcb") ) (pad "8" smd roundrect (at 2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 56 "FAN7_PWM_GEN") (pinfunction "3Y") (pintype "output") (uuid "2b5ede67-ba26-4be5-a294-72aed3b3ed3e") ) (pad "9" smd roundrect (at 2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 57 "/PWM5A") (pinfunction "3A") (pintype "input") (uuid "62ee781c-8b7b-4eaf-ba1b-01abe611faf6") ) (pad "10" smd roundrect (at 2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pinfunction "~{3OE}") (pintype "input") (uuid "d228df04-b369-48ac-8b32-bb1bb9db794c") ) (pad "11" smd roundrect (at 2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 58 "FAN8_PWM_GEN") (pinfunction "4Y") (pintype "output") (uuid "30ef3bd2-2d8b-4dcd-ae19-1921d3074a4e") ) (pad "12" smd roundrect (at 2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 59 "/PWM5B") (pinfunction "4A") (pintype "input") (uuid "8ade015c-b182-43f9-9f8b-1bc24f564d1e") ) (pad "13" smd roundrect (at 2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 126 "Net-(U2-~{1OE})") (pinfunction "~{4OE}") (pintype "input") (uuid "5f352d96-f627-4331-a08d-44d74abaed29") ) (pad "14" smd roundrect (at 2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (uuid "19668c29-3c14-488e-9bf1-59d2a08a2894") ) (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "db88ec96-ede5-4e8a-8ed4-226875331dce") (at 135.4 112.25) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R28" (at 0 -1.43 0) (layer "F.SilkS") (uuid "7c2f80d9-80bb-47a6-83ca-b0592759187c") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "55220648-4d1e-4a6f-84c2-47a51790eeea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1b133dfc-7d47-4cd5-8408-407474eb9e62") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4544c216-49c9-4787-ab3e-2845b7e503f1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "bf26ff6b-8f09-4205-8cba-55739b1342c4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "65241470-cd07-4a18-8ac1-05dff8b8eeb4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "28cdf29d-5e8d-4dae-931b-94df6d47739e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/e6e8ae2a-5894-4e68-8264-24e364417d34") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2e3413d7-cd85-49ed-bed3-1b5055460997") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "028e4041-4bae-4396-a2c5-da2537b7a2de") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2b9a78b0-8cd4-4f33-accc-c286f335b0b6") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5e3bc0ea-51de-4701-b01f-93c66e3d7e33") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d0513f87-79cd-492c-b57f-8fcb63e29e53") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6d90148b-f25a-4819-bda5-6ac4315f0630") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19400d1c-466d-4a8a-b393-d3ed4ab7c401") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd759581-fa83-472e-8a6f-b145102e48a9") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ea30717f-184b-4c4c-9bc4-9a5e45268dd0") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f978177b-e98b-49d4-b1f2-3c392265e9b6") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "70819a7e-d9fc-44eb-892b-88bde91d3f91") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 50 "FAN4_PWM_GEN") (pintype "passive") (uuid "a42ad86f-6a80-4a8d-a9d9-85371838b9ac") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 84 "/Fan Channels/Fan4/PWM_OUT") (pintype "passive") (uuid "b2eac793-d46d-4b91-b0a2-c20003a7f815") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:TE 171826-4 Floppy 4-pin Combo" (layer "F.Cu") (uuid "dcd43ccc-598c-47af-887a-29a8f1c661e1") (at 44.85 69.7325 -90) (descr "Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf") (tags "connector barrel jack") (property "Reference" "J1" (at 5.7675 -2.9 0) (layer "F.SilkS") (uuid "3dc588bb-fa0c-490f-92e9-fff9b5d5dffb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Floppy / DC Connector" (at 1.29 8.5 -90) (layer "F.Fab") (hide yes) (uuid "68f29581-ecad-4567-a4d7-8b809605173e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:TE 171826-4 Floppy 4-pin Combo" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "684c0f04-dec2-424e-9ab3-159b027f5edd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f7049a64-4644-4016-8a47-8c9f93eaf133") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 1.29 -7 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "41df2923-1c0a-467a-854f-aad368126171") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e249ea67-bb1a-41bf-b931-d71864020612") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C590635 / C720558" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "15a6c751-81b7-4d98-aa38-98c836fbe4a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/32d11869-f2aa-448e-999e-866b16c452b4") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr through_hole) (fp_line (start -4.98 6.718) (end -4.98 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "67afddaf-8efb-4c87-97ca-35eb9c82c797") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "ff1f7f0a-ebbf-494f-90a4-2ea923dc7cdd") ) (fp_line (start -5.92 6.7) (end -5.3 6.7) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "2cae21ce-4887-4ac5-bf91-ffb045f5a851") ) (fp_line (start -1.25 2) (end 1.29 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "47715b0d-5388-4b7c-9738-11459816f75e") ) (fp_line (start 1.29 2) (end 1.29 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "70cc97c3-71cc-4639-bc5c-f69185cb3930") ) (fp_line (start -4.98 0) (end 5.02 0) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "3c258216-de4a-443a-bd80-f64edeffb68c") ) (fp_line (start -1.25 0) (end -1.25 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6d2cbb4b-cdee-44c3-836f-6e0630dd6305") ) (fp_line (start -4.98 -0.782) (end -4.98 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "1bbe022e-1636-40be-892a-15ee04f1cd0f") ) (fp_line (start 5.02 -0.782) (end 5.02 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "a9d5ad44-8d58-4bc1-aaa2-d865ba91bd44") ) (fp_line (start -4.98 -2.182) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "51d09d49-273c-401c-99aa-09ee5509d1d5") ) (fp_line (start 5.02 -2.182) (end 5.02 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "92031ee4-c08c-4d9d-b8ba-3fc3b366d7e9") ) (fp_line (start -4.98 -6.782) (end -3.5 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "d265c32c-eab0-4162-a2b3-e94465031bbc") ) (fp_line (start 5.02 -6.782) (end 5.02 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "1026165c-ff46-4220-ac16-47265e08ed1e") ) (fp_line (start 5.02 -6.782) (end 1.4 -6.782) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "64c05dcb-04d5-4206-b06f-08bce9a1509d") ) (fp_line (start -5.92 -8) (end -5.92 6.7) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "75c8a34f-ed2c-41e4-a8b2-1737faac227c") ) (fp_line (start -5.92 -8) (end -3.5 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "0326e093-fb20-4d1c-92cc-22c114d2d93c") ) (fp_line (start 1.4 -8) (end 3.57 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "b477e2f4-dd76-4f13-956f-4e7b6536b2d2") ) (fp_line (start 3.57 -8) (end 3.57 -7.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4dd5dcd1-7430-4713-861e-f352ee9f8a86") ) (fp_line (start -5.3 7.1) (end 6.29 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f90a30a-7637-449d-b224-af32f489f399") ) (fp_line (start 6.29 7.1) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8136989c-4b4a-45b3-b276-aec4cc8f3e3d") ) (fp_line (start 7.49 -1.5) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9bd30e91-0139-4d36-8cdb-cbab3e77b88c") ) (fp_line (start 6.29 -6.5) (end 6.29 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e64e7aca-5439-4090-9248-9f48221f857c") ) (fp_line (start 7.49 -6.5) (end 7.49 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a82d484c-252a-4fc4-9cb7-76070c8e37a7") ) (fp_line (start 7.49 -6.5) (end 6.29 -6.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c037d5ee-62f8-4f6b-880c-df40276d3188") ) (fp_line (start -5.3 -8.4) (end -5.3 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "09a98f69-2c1b-45b5-9aeb-7f08d3237a59") ) (fp_line (start 6.29 -8.4) (end -5.3 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e90e33cc-b903-46ad-a62f-3575851c4858") ) (fp_line (start -4.98 6.718) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "22d34af8-887c-4747-96ea-a4550a086a3a") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "023c2364-ce5c-4a81-b7db-f4a0f5f88997") ) (fp_line (start 5.02 6.718) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "2f8c3625-146d-4160-a3d2-5fd67da2ce69") ) (fp_line (start -5.6 6.6) (end -5.6 -6.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28c356f9-c000-4f06-b5ab-e9a4920eccd9") ) (fp_line (start 3.4 6.6) (end -5.6 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bdc44a7a-44b0-4f1e-8f27-7ea3f6b17ac1") ) (fp_line (start -4.98 -6.782) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "f05d0e62-3e65-44a5-9c44-2ebbe1049897") ) (fp_line (start -5.6 -6.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d92a11c-7682-44c8-b156-bfa1d38f8fa5") ) (fp_line (start 3.4 -7.9) (end 3.4 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48d7a5bf-2717-41a8-a42a-90e4eab5aff1") ) (fp_line (start 3.4 -7.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a676ca70-76ce-413f-b887-d68352ff87e9") ) (fp_text user "${REFERENCE}" (at 0.7 3.4 -90) (layer "F.Fab") (uuid "b737decf-7f05-4b1d-ab78-b4372916b910") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole oval (at 3.77 -4) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 129 "unconnected-(J1-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (uuid "bb7e16de-c4a4-4536-9beb-711293a02f4a") ) (pad "2" thru_hole oval (at -1.03 -1.2 270) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "dadf0525-2c8c-4287-9576-cf2a12437970") ) (pad "2" thru_hole circle (at 1.27 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "6e310d6a-33c6-4ccb-a48c-918ed4c75c1b") ) (pad "3" thru_hole circle (at -1.23 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (uuid "c9513da5-7189-499b-ae8c-406d7679f27a") ) (pad "4" thru_hole circle (at -3.73 -4.582 270) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 101 "/Sensors & Connectors/AUX12_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "dbe3b436-c655-458a-849c-d66bc3ebd7bc") ) (pad "4" thru_hole rect (at -1.03 -7 270) (size 4.4 1.8) (drill oval 3.4 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 101 "/Sensors & Connectors/AUX12_IN") (pinfunction "Pin_4") (pintype "passive") (uuid "2834c9df-7d45-44c7-8b72-12e4c522a202") ) (model "${KICAD8_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Wuerth_6941xx301002.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "dd84530f-c5fe-45e5-8faf-e2719fcb14cd") (at 42.5 130.5) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H3" (at 0 -4.2 0) (layer "F.SilkS") (hide yes) (uuid "476dd382-c969-4491-a3b0-c8e6646827d9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "4df554c0-8e38-4a93-ad77-10d82d1fbec1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "dceca658-a36f-4ad8-818a-510cadeda07a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "05dcb32d-13fe-402c-903c-8c417f70c37b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1273eb36-4230-425e-aace-ce470458906e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46ca4d25-8dd8-417e-be9d-3d5abb31dd1f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/63465697-0038-4a5a-931e-e383d18d8993") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "c25f8093-dbee-4d15-a806-fca95d0a1372") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "8d9bab25-a0fc-4bc0-a3f7-7a8c2693a9a5") ) (fp_text user "${REFERENCE}" (at 0.3 0 0) (layer "F.Fab") (uuid "9953a1b5-67f0-4df0-b2b2-28b25c0e7a4b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "7dc23e91-a826-4ca8-a82c-6c3063558475") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "ee533a57-b7ab-442e-b85c-892aae9be719") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6f2e0221-4b0c-40a4-aa5a-95a7c6bf5dfc") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "71e8e4e0-9763-4ccd-a171-01e1d5b0a3fa") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (uuid "a096957f-abbb-48ba-b46b-1546549ded78") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "6f4dcd03-bd1a-4de2-a673-609547fc9b95") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "41cc0c72-bb53-47ce-b181-437044cc60a8") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "58c68dcd-8795-4106-b243-88c05891fd0d") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "016a3203-0af6-4e94-90e4-ec8b819524bb") ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "dfe42563-2e79-4529-a8e0-7efbbc955946") (at 127.75 65) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D62" (at 2.5 0.25 90) (layer "F.SilkS") (uuid "80e9d9ad-95a6-4788-a117-c2379154b313") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "2b13ecec-c702-49aa-8af9-91179e5cd739") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1675d122-dda7-4983-9eb9-d3d9003d4f31") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "00feb3c1-3915-45d3-b4a6-301698a998b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "47952a08-ccc8-44da-8207-b3b6656c17cd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "20275baa-c167-4fe8-8fbf-f4da3f30afca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/8ad39315-2c9c-416c-8930-0ac5c2b62eb9") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3220ff8b-ae58-4b0d-9d11-3a76edaaca0e") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a2af7c63-eba7-4364-a459-8b30a350ca44") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "65e3c99d-80f9-4ae6-b0cb-e79a86d40112") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "df84e344-1e96-4fe2-a8f8-df4952c45e3e") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "64d84511-9245-468d-bfce-ff36954483bd") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "628b57d2-b4ae-4194-ae12-a1c585e9ef93") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f1b1d2df-04e9-4cf4-9060-483bf602a6d4") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3cc679af-77fe-46d3-9b92-35e398922d60") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3608c7a7-514b-4015-b288-30e4200faf36") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bc9d525e-43ec-48ba-99f5-7fe35fe2c50b") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d42ce581-7e49-451c-a2ae-a6e72d6e01cf") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "205c7f15-d987-4d1d-a850-e74510884aa4") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2e4d549e-0313-4c91-9822-f020f3855266") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19acedd8-e496-423a-88b5-61922bb03578") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f24f5de5-5b05-4e6d-83cb-1f91f82cd210") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "452f15eb-3cd3-4855-b8d8-6c667584b9c6") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "737b38d6-bb44-4e92-9cdc-2fd44cfd382b") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "a4148a93-9276-4189-b2b1-15bca7b846f2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "d842628a-2e50-4163-8d52-0b638ee56e81") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 30 "/Fan Channels/Fan3/TACHO_OUT") (pinfunction "A2") (pintype "passive") (uuid "e11c428c-b55b-4c7c-a997-70eb759cb6d4") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e52b82df-9c78-4427-aff0-111199235a03") (at 58.75 85.075) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R49" (at 0 1.425 0) (layer "F.SilkS") (uuid "e51f3fb0-5aa8-4d17-93b1-d59453af9712") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "0" (at 0 1.43 0) (layer "F.Fab") (uuid "1c0cf593-5f7b-4981-8bf2-c178622682b7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "7d7f496b-4924-48f4-8e5a-e5b52a350ca4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3b48180c-5093-4ad3-8c1b-56ce5ce3add5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "3a64399a-5f9c-47bf-95d3-ff1f8318f97a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C21189" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9432d88a-b944-4e7a-9406-361a09f6e356") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "27c1d672-922e-4978-bbb8-2bd19a4de968") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/00d03321-5580-4405-8c0a-820cab392953") (sheetname "Root") (sheetfile "fanpico.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "88e1c408-af39-447b-b778-2a434b068f21") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dfcd3dec-d007-4caa-be0e-2fe483b14e68") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d4036b0e-737f-48f6-baa3-081d4cf8bccc") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "46c8312c-b19d-4a20-988c-8de1d03277d0") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3436c8db-9b0f-4a5c-a913-ac3a8d6e70bc") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c6adc60c-245b-42ec-ac4f-47d78e955546") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "880b6de4-996c-49c2-833f-a300299c6a4c") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5fcb57aa-2dd8-4784-bbb2-3e6e4a326db8") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5bd1d23c-c6e7-4858-b7bd-ee7cf1061eed") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d189a9ac-1f3d-4eea-8234-208c58ed78cf") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "ae89bfad-7541-4322-98e1-431e8c94a9bc") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 106 "AGND") (pintype "passive") (uuid "4dc46189-b7e2-4990-b121-7a08ed0c5e4b") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "536824ad-4cdc-4a21-bc59-621d19f1d755") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "e5d84e46-21b0-4df6-aaf4-6a6e6dd15986") (at 152.85 84 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D54" (at 3.5 0.1 90) (layer "F.SilkS") (uuid "784bb9f1-8da6-4b34-b508-21c2a04b3536") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "b2be2298-82a9-4b38-abc8-04e1bbf11804") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6c71326d-1709-4e1e-a769-6d908f36291b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "37f0d4f4-723c-418f-8b9a-f6746c5fdeed") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f3cbddc9-52cd-40c9-9296-891e0c2a8b20") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "51a46fb4-80c1-47ba-81c4-151be42fcb6d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/318dc987-8557-4ab5-9d15-e997984e64aa") (sheetname "Fan7") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "daca215e-7af3-4906-99c7-a9e68934c6a9") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b8cabebf-afaa-4b76-ae40-e33c37e6db46") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ccce2ee5-b232-48ec-88d9-329c372a3716") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "84a67430-5360-440c-b16e-115f108bd2a1") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "45882f66-ef09-4eea-82dd-cd0095aac684") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4b651387-350f-482e-907d-fd4dd7e453a7") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "19faf8e9-0280-42d1-ad4e-cceb2f0df868") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a191fc7b-3872-4186-9d2e-f8b6eed12591") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f98ecbf-d7ab-4347-9a4d-aea9ad7fa646") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7e40bda3-43ba-4da9-914d-faea29f3dfd9") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "21f8ad52-e82f-46c3-ac2a-6dede8af1b17") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5c8f9a0d-3fcf-4691-8ab2-ad5287cb5ec8") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f30b1398-468b-420e-a8da-cb93f1961554") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d55f3a21-e899-4a2d-9c87-17a15844080b") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a10a3f07-8208-422e-a3db-18b6b2579d31") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7b5f734e-7694-42c4-bcd3-e725366ed55f") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1521dafe-064b-4ba3-a756-657f15be23e5") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "c2b5d0f4-9ec3-4afc-93dc-a8cad79d0864") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "f2c6a56d-e374-40e0-9dbe-119065fa76f9") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 20 "/Fan Channels/Fan7/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "fb9ba69b-4cf6-47e1-ae8e-67c1bd8f73ec") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "e69c376f-0145-4dad-8d57-6f88c3b8a73e") (at 113 112.475) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R21" (at 0 -1.43 0) (layer "F.SilkS") (uuid "60dcc427-e4e4-45a7-8496-9b5955886ca7") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "e5dfe6d5-cb58-4d5e-819d-818751470d69") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "8c34c5c3-7506-40d9-9b24-4ee8ab5464ff") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "2139abf2-b886-41a3-9103-feff0b52a4e9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1b59d651-0585-476d-8caa-c7f4dd1c3ee4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4cdf9b5d-83bc-42a7-8c10-d53529d3e4a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "31cc1261-ad15-421b-be77-9164d0df1a19") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/e6e8ae2a-5894-4e68-8264-24e364417d34") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a2b9cc2-ca2f-47b0-b1f0-e054d033c73e") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4021d48b-f42c-4ad5-a0a2-46a9448c9411") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "113237e1-b099-4b54-841d-67a6a1cf3e50") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5c5e9ece-fc40-4c99-bebc-58d3a8610aeb") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "03054386-6494-4684-92c3-e49d000ccf99") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5dccb506-2a65-4c88-b0ba-f9a04b433920") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cc642b37-a5b9-4059-a970-9b25198cc40c") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "eff627f2-a520-4b4d-a041-ed4ee4621968") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0a6b9b37-5643-4546-b6a3-e2b6451370f6") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94bdc4f7-b2a1-4dfd-be3e-fc9130d9c00a") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "86d13b49-c8dc-4bed-8acb-411ff8938d2e") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 47 "FAN2_PWM_GEN") (pintype "passive") (uuid "10d6c967-85f1-475c-be63-b4d328324015") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 38 "/Fan Channels/Fan2/PWM_OUT") (pintype "passive") (uuid "7ffbcada-50a9-4a3e-b6f9-fe5c0c99298d") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "e7b9820c-ebd4-46c0-8732-cafc559c4fbc") (at 135 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J11" (at 7.25 2.25 0) (layer "F.SilkS") (uuid "9d2b802a-927f-47e3-882e-581d6be8a882") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan4 Output" (at 4.05 7.1 0) (layer "F.Fab") (uuid "85cdcf2b-4c5e-4ba9-9910-25d9c1ec38b6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d2511b91-07d1-4f0d-85de-4d00a5db55b6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "4966cfaf-22cf-4ac4-bb5d-04eaf3d27282") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "1c191244-da5a-453a-bf45-690b94619a15") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4e17eb56-2ee2-41c4-8302-6b1b474e671a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/478255ce-6495-40e3-8f35-65ed429a01a4") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "003995e0-caf4-4343-9760-3c276144dd71") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "102ac073-bf15-4499-99db-bdbea58f7355") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "de43f62d-7afe-41b6-a97b-7d659f9f9ef9") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0758cd0f-089e-4acd-a153-7994f8b0b922") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c8782ebc-d621-4d62-9fa0-21edbc219115") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "40df3305-7451-4197-b997-f70b0620b4fc") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bdee7097-e4e5-4cf8-a5e6-91c8272f43d5") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5af301b1-3983-4d25-845f-6395cbf8e808") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "008d9ace-ab81-4b04-86f1-29ad2066453b") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9ff0154c-1490-48ad-a62d-8c0c8ff12e95") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "537cc6af-624a-4b4a-b6fe-fcbad3d7bb3f") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5c73fcc1-28a9-4513-8f09-0279bdf09d7a") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c5ff726a-c7bf-4f55-a994-d7d373c57bdb") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cdaf92d0-8d42-41fb-a8b0-e6ca80dfaa7d") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0f5499fe-ce73-4d03-b08e-b8053a739cf4") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8437c241-2ec4-4ff4-a8e3-637aa316d6c2") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae8cb299-9f27-4633-8d71-6ded3c4d913b") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "89b068ba-e75c-4409-9ea9-428308ff922c") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c6a5271f-8c83-40a0-a489-9b1aedb14d96") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "92bbed33-fb8b-4a2f-b6ae-d5aed787022d") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a4f3ae80-8d84-41d0-88dd-4a2cbd573103") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "326f5143-f2e4-4004-b92c-db0aa19613ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "7a09de1e-4c55-40cf-b21e-5398cd6b12ef") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "b85f2ef2-39ca-418c-bfd2-3b2950caca94") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 83 "/Fan Channels/Fan4/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "443f2051-981e-414b-b722-6a2621f36edf") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 15 "/Fan Channels/Fan4/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "b1690fd8-e306-48ca-be68-92d0fa57b9bb") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 84 "/Fan Channels/Fan4/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "37a1abf7-0a4f-45ad-9244-44353a08bbd7") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "e9b3c7ab-9a7d-41ab-b41f-c521c2f31bd3") (at 124.75 67.975 90) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D19" (at -2.625 -0.05 180) (layer "F.SilkS") (uuid "b2f02429-72a3-4741-87f5-f6c0a905c688") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 90) (layer "F.Fab") (uuid "1147b179-f5b4-4d20-ac3e-9724b3a27315") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "d8e5784b-480b-413b-8865-ca263bb12a6e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "1588c354-e08a-48e5-a5e6-d2aedb595753") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "23c46903-7c7a-4699-aba6-1a468accf263") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 192.725 -56.775 0) (layer "F.Fab") (hide yes) (uuid "d416c196-c546-498d-b403-4eb3b967a2ce") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6c9e7b4b-e960-4c89-8338-7b3a0ad9470e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/e14cb179-4962-4028-9c28-4efc70e0b4c6") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cace1444-d618-4859-86c4-4ddf39b33f64") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2ba6202-f5d7-40b0-afbe-5ee6f89f564a") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "22402e75-b1b8-4c0f-b0d3-e7abf3cc2c7b") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "03d954f4-b143-4ba2-8258-dac89c1f5250") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e0c91113-e849-4bf0-ba7e-4792756d909d") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7edbdaf6-2432-4985-aefd-fc7e24aa1238") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8fe62e6d-dd01-4233-8fff-97a6faa977ae") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "01e4f7ba-7e89-471a-a900-a045cce9b66d") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0d4a5375-736a-40ce-b8a2-b0f7bf567863") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3bc7c40-1108-4bbe-9271-f76ca0e88dec") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "217e1197-67d9-452d-8e97-12445b3f2836") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6b84dea8-ee95-43bb-b1ee-6577e0756dda") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "c3358c6e-858f-4b4f-bbbc-0e5e3aab30d1") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "b15633d9-8f6e-4ca3-86ab-d63167cdcd26") ) (pad "2" smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 94 "Net-(D19-A)") (pinfunction "A") (pintype "passive") (uuid "3d035089-58b2-4662-abee-503d7aea9624") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "eba3257b-e259-4c27-ad47-b813857ff306") (at 152.95 107.75 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D52" (at 3.45 0.05 90) (layer "F.SilkS") (uuid "7bf7b3f0-9814-4d68-ae69-a41c9ce960da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "929665e3-cddf-4668-8f03-3958f8b16703") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "46396b71-1ca3-47c9-bb6b-5ec2ca6d3596") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "78672a13-dfbf-4ce8-9990-da91e7200427") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "84731163-f217-4249-b1b2-4a58a3a90e9e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1731e56e-f0ef-403b-a3ae-602433463477") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/318dc987-8557-4ab5-9d15-e997984e64aa") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a22bd57-9a28-4bf7-b7bb-aea4b9796dbe") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "944ebf46-4a4e-4318-98ac-6289cc71bc66") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bf325690-9b07-4d82-a2f3-cdb9b44c869a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "69f94de6-ce60-495c-91d1-79576ee313d8") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "27aaee42-9018-441a-895b-1054b29d8251") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ae8719e7-de62-4fac-87d5-1d0766c73d01") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "8e69340e-a920-464b-9df0-608849d2dfd5") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3f04a38-4f16-452a-ade5-b011faf55158") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "24148b1e-7017-4b52-a1c3-6da25f4cdf4f") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b52736f-f7ee-4f2e-a9b1-3e950e8f8c05") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "99b23cb3-5170-4a8d-a166-3ca6246aa9a2") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8d215452-699f-4aef-bda8-21a615631213") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ee6178f-29d9-4447-b6d2-3b44e7bc85e5") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0e28c461-1fe5-4834-a628-26da19598b3c") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e8f87fe3-661c-4789-9715-ab72993d8205") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f18fa049-b897-4760-8ade-ff9c3402dcd7") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e3823551-2f55-459b-aadc-5dd395110106") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "be199fe2-7aae-47b5-8d5d-d1b0653c60c7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "adc1b062-a1b5-46be-90b8-3dbdc7745ea0") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 18 "/Fan Channels/Fan5/TACHO_IN") (pinfunction "A2") (pintype "passive") (uuid "3f364b0a-4e30-4bd7-b40a-3612dfaa5bb3") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "ebec4df3-120d-4b89-9b64-701338ca1c5f") (at 136 124.7 -90) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "capacitor handsolder") (property "Reference" "C17" (at 0 1.1 90) (layer "F.SilkS") (uuid "bacc58d5-2207-45d8-b6ff-a34ada634480") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (property "Value" "0.1uF" (at 0 1.43 90) (layer "F.Fab") (uuid "2ecab0f0-49af-4d69-a364-f33b0a566f6c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "4ea5fd7e-694a-453f-a13e-2d06b8b87ffa") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "0fed5fe7-3b49-401c-b17e-84af0eaf34dd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Unpolarized capacitor" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "68b63dd7-ae41-40b0-8387-a5a34547de84") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1591" (at 11.3 260.7 0) (layer "F.Fab") (hide yes) (uuid "b69ef6b8-5409-4afb-9c4c-0cb0387fb101") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2c335b5-e534-47e2-be4e-4fc68d33470a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "C_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/b0f52885-ea56-4d9c-874e-233e54e8d5a1") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8735206e-aa40-4796-ad03-15abf92730ff") ) (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4dbaf8ee-b3a3-4ed0-9d50-032350b86882") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "990ee6ac-d1f8-49ce-9529-4d0e9160faec") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "953f54c7-222f-4512-ac8b-2c3b3fba026d") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5f579d16-6991-402e-b0e9-f0b6390d160c") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad0bab23-0ac2-4c97-914f-aa5c9c35131f") ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a9e21d83-995f-442d-8629-39199ebb0176") ) (fp_line (start 0.8 0.4) (end -0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce0fb81f-ff01-48b7-87db-15f066fc2025") ) (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bb24339a-c7a4-40c4-b718-1e6238de5b03") ) (fp_line (start 0.8 -0.4) (end 0.8 0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c4b016df-86cb-4841-91d7-9cd97f41f45c") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "321785fe-03ed-4a60-8275-a5da9b556114") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 83 "/Fan Channels/Fan4/PWR_OUT") (pintype "passive") (uuid "8a575518-2081-4ab4-9780-e84671f44450") ) (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pintype "passive") (uuid "cc80ab67-b904-4972-a4c6-744eb2430039") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "ede4fe08-9f98-400f-94ec-0296c9debddf") (at 77.3625 59.5 90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R52" (at 0 -1.55 90) (layer "F.SilkS") (uuid "1ea5fbd5-0832-499a-874b-f60eb2db798a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "100k" (at 0 1.43 90) (layer "F.Fab") (uuid "668333b2-f756-47eb-bf39-2eca220aa1db") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6540bdc4-29a1-4cb6-aa74-42503a1315f5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "ced607bd-45a1-4e6b-9bea-58b5d97a64dd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "2262c6f6-9971-4ba6-b051-705ede59bbb3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C14675" (at 136.8625 -17.8625 0) (layer "F.Fab") (hide yes) (uuid "bc136299-c94d-4481-a8f9-631b18528c16") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "66c06d98-d578-4754-baea-d0bf7e4ce953") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f421aed5-1a7c-4cf7-87bd-ce21946df0ca") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2e3cec84-94ec-4c41-8190-fbf15c4983cd") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f48c8066-70c7-4ff8-9a55-b51e6e23de01") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "73e88bec-42af-40d8-b312-a7b4ea808ae2") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "87e93f31-1bf4-44fb-9772-949d07a943a3") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5783dd06-bfa6-481e-993c-9b0dab110b59") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cdb99745-4778-40c6-ac93-fc9c53dd3555") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a3e1b1ec-7a85-4ee4-b8ac-dbdaf7124a46") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a453644a-c23b-445f-921e-50fbd43719f3") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "790990fa-5dec-4b58-9ee0-ba097a03c6d4") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9558f44e-123a-4d83-ad1a-4ccd4e2faa1a") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "a3835161-7939-416c-a025-09f434da509e") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 107 "TEMP1_READ") (pintype "passive") (uuid "6a5f2337-3f8f-4ee1-a5a9-36d62a764a00") ) (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 103 "Net-(JP10-B)") (pintype "passive") (uuid "904cbe6e-b159-4652-bad1-c8dcddb44bd4") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "edfc95e4-3152-4f7a-83a0-0a5e55ff7d31") (at 143.625 66.5 90) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D59" (at 0.05 1.65 90) (layer "F.SilkS") (uuid "8e3191ca-232f-41fd-8b67-81bed4458262") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "5V TVS" (at 0.1 1.9 90) (layer "F.Fab") (uuid "750fc95c-d665-4937-a9f9-59c4e7b1a560") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1beda2db-a277-47f4-97d7-16a03066e85c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fcef0288-b8a7-4045-a858-bea14117bbaf") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7067cc3a-e157-4d60-ad2a-1bb085e0380d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C5180216" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d653a746-c323-4e26-93a9-a18b58a7da10") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/16ceaaaa-e928-48f0-aa21-5f990ab7d966") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12b15ebb-7b00-4e23-9176-d9809de10d19") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f1b640a1-55ca-4c18-bfd4-a20e720ab5b4") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f507e69-ba90-485b-98c6-3c0914f426eb") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a14a09c6-06f3-4af8-9342-a40bde79a26d") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2991c7a7-1545-493c-9d0d-34e70645a8d6") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9378dd9-225f-43e1-8efa-177389e2cf17") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7365fa85-1b35-4739-92e8-55d3a80047b1") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36e70d68-0beb-4efb-98ca-6fc2eebe7dca") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2983f126-c12c-4e82-a903-747c23bee005") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9275ce32-b777-43d3-b5fe-30ead0f8867f") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "68b5a5c7-210a-4230-8d5c-04ca3e748483") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58126849-4c32-45a9-86cd-b64a2ea3b35e") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bfe6c267-a7c3-4ab5-a3dc-977498503679") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e5f7a34c-cd80-4963-a036-246370e97db2") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5af8402b-3933-4f99-8707-56b38a7e9631") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ffda3c1-bc87-4a8c-a84b-c54b01fee5ca") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1253470e-7955-4594-82fc-5196a67df85b") ) (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") (uuid "7d8fface-bee8-4961-8675-566fca77cc94") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "543fa90e-7aa6-4701-9fab-dad84d3bb9eb") ) (pad "2" smd roundrect (at 1.25 0 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 34 "/Fan Channels/Fan4/PWM_IN") (pinfunction "A2") (pintype "passive") (uuid "a2e741a6-fdc4-4f77-80db-7ce37dc7784d") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "f39b0eb5-f655-4dfe-9c6d-ee6c2a809fde") (at 112.1 65) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D45" (at -1.2 -1.55 0) (layer "F.SilkS") (uuid "f3ab7981-0c1a-416d-a3cb-51994fbdff1f") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "58852770-579e-43d8-b71d-c221ef866eee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e15a56e8-e26f-4743-9ec6-16b0b478bec2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0c133d70-5cbe-4974-b709-694b02249406") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48e34b25-092b-4b1f-9f93-615a6075abad") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ac977785-eef5-4435-ade8-aa1a12eeafb6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/946ef3ef-3a88-49e4-98d0-b90987606b91/6ac072df-f56f-411d-90ce-e618b6f9b3b8") (sheetname "Fan2") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "658c5eba-24b6-4a36-819c-38aade92f341") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0c423537-896c-45e4-b545-82985927441d") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31de36f1-1cf7-4c50-a7de-01c730e1da49") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7aca8367-a82f-4efb-84a0-87841c7935da") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c82a9a8d-59b7-4be7-bc3d-6a037e878948") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "37a9fe90-f3a8-4c26-a5b8-61d9fd2184b6") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ef736489-7654-4dbf-bdbf-00b5d5f5b6a2") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ee4ae1cf-027c-4fe9-8f0e-5f34f6236bf9") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "844547f5-d46d-4afd-9dc3-1f164c20ee6f") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "01bb47d5-2c42-4b99-90e1-973c12e0c9ae") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9746c7a2-39be-488d-a978-5407112ff802") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "664a6e90-4709-44ba-85b0-e0e86b78f67c") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "237e3e21-f3aa-4429-9b95-c04430e76073") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e61eb07a-c30f-4981-9ef1-dd131b0508a5") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c996e363-f980-4f4d-b80a-b3f6d9429482") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af2c6b36-8c83-4512-b50e-202bbb2dfdde") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8b74ae88-3e71-4c30-8cb1-cf546bf2aa05") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "023d8eca-03fa-4583-8221-e847f8a9088d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "e2034c41-f119-4f6e-818d-da7e01af19a9") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 26 "FAN2_PWR") (pinfunction "A2") (pintype "passive") (uuid "db7d3b07-74ff-4caf-988e-332807470d30") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "f73cb70c-f0c3-4e14-bfff-1b8fa6c53129") (at 139.3 65.05) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D63" (at 2.525 0.1 90) (layer "F.SilkS") (uuid "0b0f4ccf-7dc8-42e4-aeef-95a1577133f1") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "514fe8ba-6ce9-4910-b823-fe14ad40ed2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2b424a4c-ecc9-4010-b7bc-808b8c8a0e81") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c4621fef-4659-4188-a22e-808378c30d54") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3b008da6-a975-464c-a261-c88c0fa6c4f9") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e994da4-302c-4542-9db7-42990b689878") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/8ad39315-2c9c-416c-8930-0ac5c2b62eb9") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d87b9717-3ff5-4d2e-a53a-bed14fe0ea7c") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "90932c61-2a70-4dd6-9ec7-1242b5df1c65") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1c4ba097-ca9f-4312-934c-cee124da9a9b") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b4bc3991-12df-4a7a-9f2d-18ba090d2a66") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ad31331b-3529-4f05-8975-9fc8c39f4e30") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d9edfe45-301f-4d1c-84d7-615e2b15a64d") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4f1f0475-5820-44d3-83ae-d9b418f35349") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1161a57a-8571-4370-bde4-7fc97fb50e1b") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "69cfad6d-2533-4a2b-ae36-f4e18aef4039") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "893c9e66-4aae-4a93-b99b-10bfa9c05989") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "366956ff-84e4-4888-b7c1-feef3f6a565b") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "545e546f-c6fc-472a-8775-04975283fe46") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9bafe567-2c1e-42ce-b8c3-7681f3a1e1e8") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0a666d1-30e3-4a51-b8fb-d6456f4956e9") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "642bfca0-a7d9-4dd7-b031-e932eb793c52") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41be49bf-9fa7-44fa-902f-1c820553705c") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7f32c1d7-d2dd-4b34-aad6-05fdbdae28f2") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "4e02fd5a-52d9-4048-9016-67f9e36912c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "0d510572-fab0-48b3-8f18-a0f138cea135") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 33 "/Fan Channels/Fan4/TACHO_OUT") (pinfunction "A2") (pintype "passive") (uuid "79d4463f-c236-4a75-8910-7e62e3935909") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "f75b1982-3a9b-4320-860b-11f601b61a62") (at 123.625 65.05) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D46" (at -1.05 -1.4 0) (layer "F.SilkS") (uuid "b19d5af9-81df-481d-8959-38dd0c9b27c2") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "12V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "12d989dc-f404-4b41-9c8e-3d7f284f557d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7175e507-ea8a-4984-ab07-6b26f0a8a9a0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3592098f-dac3-4631-9cfe-0abddd641bf6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0005e560-ff89-4cb9-b9f9-052b8dc1805d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "56bb5b83-0edd-4948-adee-37178d8d027e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/53d29c07-1f93-4af9-9f7c-0766d5b9c268/6ac072df-f56f-411d-90ce-e618b6f9b3b8") (sheetname "Fan3") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a6555a0b-480b-4182-a42b-edebe37c0164") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c95fe545-1f55-464d-ba07-20a3bce99ca3") ) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69d7b65e-e634-48a8-9421-6b53070d58f5") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4050ff15-ec52-4093-b040-8653295153e0") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1f15fecb-0fc3-4c05-b923-32919e32565f") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9e3a80db-2c7d-4eb6-9a3e-57e2bf766f3a") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9c89cb08-15da-475f-9968-46d69c5c438d") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e58f1ed-049a-4b18-97e0-886f412bb8b2") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a9fa8116-09e8-4499-a28e-f2e9043a68f4") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6cd4040b-cca6-4c61-9617-c829c138d849") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a47da994-179f-4eb2-8f4d-884e3bb0b39b") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5c5c8827-2842-4a09-a78e-6f44bcc11403") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "130d6962-3e82-43ca-83bc-07302f8f8c26") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3743071-ae2e-400b-8af4-f73bf44bbb14") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ca313df2-f576-425a-96c9-69b2ea7c5152") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2b46184d-4498-4b36-a88d-668fa15fe05f") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b1ec89f7-4f76-4a61-9878-39bfcc482b8d") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "a89ac011-5647-486d-acb5-e3c654396f55") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "159069dd-6c5b-406c-8b28-5fa59c8400e3") ) (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 29 "FAN3_PWR") (pinfunction "A2") (pintype "passive") (uuid "7ce60615-2788-4839-bdf3-85c94ad5e8e3") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "f8a44a9a-da73-4156-bb86-1da0e2ac4330") (at 146.25 109) (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "LED handsolder") (property "Reference" "D23" (at -3.4 0.025 0) (layer "F.SilkS") (uuid "a38875b5-d2bb-423b-b6f9-77e8a0963c11") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED 0805 (green)" (at 0 1.65 0) (layer "F.Fab") (uuid "48f9ac73-1373-442f-9772-ca9e6e768f93") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "076d1e8f-5d53-4ad0-b884-4e0dee06092b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ddf0ba87-fc7d-4a6b-bd16-b0c76ac9da20") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e4d67d4a-4627-4f19-8f2b-c870da306fe5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "17418e90-6c67-4730-b3c3-93e3fd2eb9f7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "357267f1-e1de-48df-9c99-15304f714764") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/d911133f-dd4d-432b-a685-8d9b5b84e35e/e71c48c0-bfa1-45a6-b74d-c5c4cc91c89c") (sheetname "Fan5") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b4c9682f-3084-4253-9869-50a0e200eb25") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1f51eace-06c9-4ea4-b60d-ee290a6f392d") ) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "58a00721-bd2f-47c5-9a2f-1c1c3abc6b94") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "db31139b-cab7-4162-91a0-d3547fdc6891") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c83796e8-5c7c-47d6-95f8-7778ab6bb1c8") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7cf0a23a-6ca2-4314-9ea7-4da6d4ae7799") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0c0b0a66-834d-4d93-8815-56d6955db10a") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c9b3b9e9-0446-451e-9370-2c9d63817dc9") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "33074dd1-b2dd-4b08-991e-b95ab34b23b1") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "217047f9-d7fa-4f08-a1ae-046089c32850") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "41656445-bbfe-4880-8d46-15ad33da67d5") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9df2e492-8cbe-4487-a310-482e1645b3b9") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "52578ccf-8cda-483a-a4c5-f4b8a0ec1b13") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "GND") (pinfunction "K") (pintype "passive") (uuid "be2b566e-7bc2-4993-bf2e-f0da08bf82e5") ) (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 96 "Net-(D23-A)") (pinfunction "A") (pintype "passive") (uuid "d1e25b21-fd2e-44f9-9a59-f53bd7d4e213") ) (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") (uuid "f94190a8-d1d4-465e-a40d-536aca5c7176") (at 132.5 77.65 180) (descr "SOD-323") (tags "SOD-323") (property "Reference" "D41" (at -3.55 0.05 0) (layer "F.SilkS") (uuid "f61c839a-008b-4159-9290-a49287df4538") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "3.3V TVS" (at 0.1 1.9 0) (layer "F.Fab") (uuid "a81e5966-e314-4c7d-8545-58adf30f3e4d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "28045aae-05bd-4140-a1a5-6d823bc86bc5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "85754664-3871-481c-bb0e-ac3ce9eae123") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "265cf112-1304-41dd-b198-5a199da1386f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C78439" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0834cc33-704e-4883-afb1-8a1749d36aaa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") (path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/9bf37cb9-fb14-4d24-bc94-69a470072f85") (sheetname "Sensors & Connectors") (sheetfile "sensors.kicad_sch") (attr smd) (fp_line (start -2.01 0.85) (end 1.25 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "633fb86f-ee98-418a-9b0f-39560724a509") ) (fp_line (start -2.01 -0.85) (end 1.25 -0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "73a3daba-d1a5-4e9f-85e8-6c46b78dd7ff") ) (fp_line (start -2.01 -0.85) (end -2.01 0.85) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "101a7820-5043-457c-8756-580d28ec2d1d") ) (fp_line (start 2 -0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "daec84e5-e488-40f9-983d-a087adfdcfcb") ) (fp_line (start -2 0.95) (end 2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f4a0cf3b-5f48-4a74-9bb7-6b40f75a39e8") ) (fp_line (start -2 -0.95) (end 2 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "14724aa1-eb4c-4242-a88a-08f32b8b33b3") ) (fp_line (start -2 -0.95) (end -2 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "12816ee1-6b3a-4620-83ee-88624c6768ab") ) (fp_line (start 0.9 0.7) (end -0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bab80ddb-075f-42ae-8ea6-ccbef7e08ce0") ) (fp_line (start 0.9 -0.7) (end 0.9 0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "319bd6d3-8ddb-4dcd-a7ce-75c788b630db") ) (fp_line (start 0.2 0.35) (end -0.3 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4720f6d7-9f6b-45bd-8026-64ceade2cbe0") ) (fp_line (start 0.2 0) (end 0.45 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "98d8950b-b22c-4a46-83d6-b982835f99af") ) (fp_line (start 0.2 -0.35) (end 0.2 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c238e72-92ef-43f2-b19e-575e31874b02") ) (fp_line (start -0.3 0) (end 0.2 -0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "23ec3a34-ee6e-4500-950e-bde326cb9477") ) (fp_line (start -0.3 0) (end -0.5 0) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a38de49-b905-4a61-b0df-b3f5ba7c559c") ) (fp_line (start -0.3 -0.35) (end -0.3 0.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0b14d6f0-db65-4b25-85f8-011e5389d6c4") ) (fp_line (start -0.9 0.7) (end -0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "27c1743c-8338-4223-96c3-e27a0bb8c1e9") ) (fp_line (start -0.9 -0.7) (end 0.9 -0.7) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e93bfb15-e874-48bb-9dad-43c3847ebdae") ) (fp_text user "${REFERENCE}" (at 0 -1.85 0) (layer "F.Fab") (uuid "ee175ec2-7f17-43fb-a5fb-dcf7e92bd55d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "GND") (pinfunction "A1") (pintype "passive") (uuid "867f5fe8-4ce2-40ba-97ab-f2937ff30036") ) (pad "2" smd roundrect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 113 "SCL_MOSI") (pinfunction "A2") (pintype "passive") (uuid "b9a108bd-ea2b-40cd-a62a-8205c27db433") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "f9e0bea6-50ed-4b88-8560-81986c691846") (at 134.85 67.8875 -90) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R24" (at 3.1125 0.1 90) (layer "F.SilkS") (uuid "5783abd3-07c1-4484-86df-117856f74b85") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "49.9k" (at 0 1.43 90) (layer "F.Fab") (uuid "2d1aa9e9-6ab1-4e3c-8dd2-129eee8659ab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "6a3f3413-bed1-425c-8df4-43596f6a95da") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "4833fd2d-4707-498b-8ba6-ebc8f56ce227") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) (uuid "744a3ada-2252-48f0-9c3d-af560c69755c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 270.4 129.6 90) (layer "F.Fab") (hide yes) (uuid "0b814c91-fd7b-449d-8358-0250c59a48be") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5eb097f0-ab22-4e69-bca2-20fb60361e55") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/8ed5c73d-1abe-4a73-919d-90efbbef00b1/ba9485af-39b4-4a7f-afda-f544d55bea86") (sheetname "Fan4") (sheetfile "fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "68a7bc2d-64ac-41e8-91c6-0b8f60954ae2") ) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "794caa54-06a1-49cb-a6ec-12ccafa69b85") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1d4824b8-b305-4975-b510-d1d2b3c15756") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "135167a1-acf3-4dae-8ee4-2b179ccb95af") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6cc9b146-d358-4065-becc-4dbf73900177") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2cafb739-9926-43fa-96f5-ac89e4172aa3") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d51901be-e12a-446a-becc-cbb522cbe731") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "416cf68b-32c0-4948-8d2b-91fa1007e3cf") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ae386b5f-1c60-4c46-bd1e-8cf6003b620f") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "785b377a-46c2-4620-a491-acbb87672de8") ) (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (uuid "0f36bca4-1f5d-4a5a-b2d5-ccf15c13b395") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 32 "FAN4_PWR") (pintype "passive") (uuid "05945fae-90ac-4a3b-8868-49c42748b371") ) (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 82 "Net-(D15-A)") (pintype "passive") (uuid "ef00022d-add0-4d96-a72d-aa3c056b975b") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu") (uuid "fa029060-e57f-4aa6-a571-1f23e687032b") (at 107 121.1 -90) (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x03 2.54mm single row") (property "Reference" "JP2" (at -0.4 -2.33 90) (layer "F.SilkS") (uuid "a5cf822e-b76f-49ec-903e-5d2caec3b130") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (property "Value" "Fan Power" (at 0 7.41 90) (layer "F.Fab") (uuid "368904ae-0b05-4b5e-a0f3-1bb088ba4d27") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "11d89834-0899-4263-82c7-3945c169c558") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "cd5dcf51-0f2f-4a26-8699-b1638d6e3ff6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "70b8a7a5-c6bf-4cba-9ff8-020e5922bea6") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0ae93f0-bf82-40fb-9658-80bbdf2c2f32") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Jumper* TestPoint*3Pads* TestPoint*Bridge*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/cccf50bc-434f-4bd7-95d5-172f10b931f4/b0afb5c6-54db-4986-8460-a37daf921ef8") (sheetname "Fan1") (sheetfile "fan_channel.kicad_sch") (attr through_hole) (fp_line (start -1.33 6.41) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2c30f2ee-650f-4808-b677-76ebf19ce68c") ) (fp_line (start -1.33 1.27) (end -1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31f8a72a-3479-48f2-8645-114b05a896e1") ) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1edfa14f-c80e-4c78-81a8-85f91e814639") ) (fp_line (start 1.33 1.27) (end 1.33 6.41) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "755cf9a8-9bb9-4e89-bf4d-7877ab32feda") ) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9eedf465-c2c0-4663-be50-3f078c781915") ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6e3eaf12-8146-497e-9fcc-f7fac4ffb027") ) (fp_line (start -1.8 6.85) (end 1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cd2135a4-e190-483f-84db-738d7e2d0bc0") ) (fp_line (start 1.8 6.85) (end 1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "36a0f797-039a-4513-932f-3b5f83106be4") ) (fp_line (start -1.8 -1.8) (end -1.8 6.85) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4e538b36-89d7-4287-9370-447162e5b323") ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3a7b298f-a0cb-47a9-87f5-d68bfd665942") ) (fp_line (start -1.27 6.35) (end -1.27 -0.635) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8af1e337-7ef1-470b-97a1-c42f065bf7d1") ) (fp_line (start 1.27 6.35) (end -1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be7b15a0-f557-4fb4-b1b7-8ec1b79430bb") ) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1435edcf-e6e0-4cb7-a257-aedf5242e2ba") ) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "78d51d98-8c92-40c0-8a46-cb7057edbdc6") ) (fp_line (start 1.27 -1.27) (end 1.27 6.35) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d57b1306-9bab-4b78-bc44-173e6e103002") ) (fp_text user "${REFERENCE}" (at 0 2.54 0) (layer "F.Fab") (uuid "49067d70-9e69-43c7-ad01-7859935c6408") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 23 "FAN1_PWR") (pinfunction "A") (pintype "passive") (uuid "e4ecfa84-4880-4a8f-b26d-848ecdc70aaa") ) (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 35 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "C") (pintype "passive") (uuid "26649979-8971-4153-95c9-04c4ff9fedeb") ) (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 39 "AUX12V") (pinfunction "B") (pintype "passive") (uuid "c123c931-a6a2-4c84-b34f-0c798f771c5e") ) (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu") (uuid "fa36be4e-7de9-478f-a4ef-c229ac16c103") (at 77.3125 78.43125 -90) (descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") (property "Reference" "C8" (at 0 -1.75 -90) (layer "F.SilkS") (uuid "e1d7070e-a8e4-4882-87ea-d1ca05bc0ef5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10uF 16V" (at 0 1.75 -90) (layer "F.Fab") (uuid "76808743-d9b4-41fd-9b8c-1ad8e82dc8b9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "4c3769b5-ee1a-498a-91ce-422c7b6ddab0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "1546a089-3ce0-4e34-9fc9-756801d17131") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 -90) (layer "F.Fab") (hide yes) (uuid "30f60920-b993-4547-bcdf-455ed9e86c21") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C7171" (at -1.11875 155.74375 0) (layer "F.Fab") (hide yes) (uuid "fac41692-56cd-4917-9bde-20a36d8107d7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8a99d1cc-0e32-4715-a891-56892f9a5a40") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "CP_*") (path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/27625c54-6268-4c25-bed4-fca1fa7ca75b") (sheetname "Power Rails") (sheetfile "power.kicad_sch") (attr smd) (fp_line (start -2.485 0.935) (end 1.6 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e22d43c5-abe7-42a5-ab82-2f13b74efc21") ) (fp_line (start -2.485 -0.935) (end -2.485 0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "919e9ee5-90ce-441e-8e58-ee54789d689d") ) (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d5f592cc-a3a8-40ac-850d-9241bb7a3d42") ) (fp_line (start -2.48 1.05) (end -2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2b99690f-715b-49b3-94bd-9ff7ba42c1d9") ) (fp_line (start 2.48 1.05) (end -2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d2b94d87-99ef-4950-91a1-60c39b7f22f6") ) (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "96601308-4bfc-40d3-8828-5ea7a7831856") ) (fp_line (start 2.48 -1.05) (end 2.48 1.05) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "ef7e2bf6-e3f9-481a-8491-20d09b588fea") ) (fp_line (start -1.6 0.8) (end 1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e13d17d8-87d4-49e7-9c3a-e43f51bd24ed") ) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7640bde2-a789-461d-9c53-c2de2c5f0b66") ) (fp_line (start -1.6 -0.4) (end -1.6 0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef23a403-e1bf-4ac5-89d4-1d5d7e72e31c") ) (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a5e5cd7a-4f89-40f0-976f-f8423faa350a") ) (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9654d32-5e88-47dc-93dd-014a474ce164") ) (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") (uuid "18567ae6-946f-4cf2-86b3-097e751cfd30") (effects (font (size 0.8 0.8) (thickness 0.12) ) ) ) (pad "1" smd roundrect (at -1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 8 "/Power Rails/5V_REG_OUT") (pintype "passive") (uuid "89e3225f-f1ff-4f2a-8334-78acd237f52d") ) (pad "2" smd roundrect (at 1.4375 0 270) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185) (net 2 "GND") (pintype "passive") (uuid "a0a01976-066c-4b34-8828-98381b73d615") ) (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "fb527929-5a76-4386-92c7-ed3f3a2f2a66") (at 100.3 129.9) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J8" (at 7.55 2.3 0) (layer "F.SilkS") (uuid "9418e677-f42e-4c5e-9cb1-b0386d9ed496") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fan1 Output" (at 4.05 7.1 0) (layer "F.Fab") (uuid "306dcbb1-797f-4217-b377-08ef1399d539") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "46dc2379-7041-4dad-8221-38c929c28832") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "5af4049a-864f-456a-8c3f-a9c9aee5ef7d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "efa574cc-612e-43be-bbd0-4156caf7a984") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "00591745-bda8-42d4-b1b2-2b20f0993fb5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/085195bd-ef5f-4321-aa3d-5891d4b1a1f2") (sheetname "Fan Channels") (sheetfile "fan_channels.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c64054c7-0a24-40e5-a34c-50aabc341854") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f6307a40-ee2b-4c02-ba6b-a61cbb317987") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c2399037-40d2-4771-b63c-e31066e5b93a") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "360480f2-10f6-46b9-86e7-f16b6c7c2fc5") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8fd71ffb-7928-4f13-9c68-7f58b40fbb81") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e9c03b6f-1306-497d-acf6-aea61299fa00") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5a465ee8-7b78-48b2-8d6b-126def90e1f5") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fa86f2fe-1b15-466f-88bf-e9f1df831292") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4ec3bd4e-a543-4e4d-93b0-6ea72ebd0d59") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4324ca5a-c886-457b-83e6-ebbfd94dbb1f") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6cfdaeee-bbce-492d-932a-546f761d13b2") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "af509645-5185-4d5f-9ca1-1ae5f0c65ee0") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9ee11340-6ffb-436c-82bf-f655966ff495") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4f47dc3d-f435-46c0-afe6-c94ad0c72e5f") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a7e98da7-cbdb-475b-8d41-3fa2e322ad30") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2ed2ad8a-b09e-4cac-a00d-b3d72fd73722") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4da4461a-5230-4d10-b706-a638bedd5d43") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "58ab9940-9fe4-4cab-b810-4d950d77bfe4") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4161080f-3b2f-48f5-8b54-caea8e8b3f1c") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "16040cd8-60fc-4339-833b-f3b67d556897") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd2b7bb1-e253-4a1b-8369-525df1428f02") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "b7104a3a-0211-443b-9a8c-ac2180fcb095") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "3909ed18-9c5b-489b-9c57-ee6a04657f65") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "d76471d3-f533-44b6-b1b8-8238e6ed2efb") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 35 "/Fan Channels/Fan1/PWR_OUT") (pinfunction "Pin_2") (pintype "passive") (uuid "41e2fdfd-b69c-4321-b4b4-f9753e491091") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 10 "/Fan Channels/Fan1/TACHO_IN") (pinfunction "Pin_3") (pintype "passive") (uuid "c063ee63-b89b-41d3-a651-819e7d949788") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 36 "/Fan Channels/Fan1/PWM_OUT") (pinfunction "Pin_4") (pintype "passive") (uuid "c8b5a5ed-2b6a-4fcf-9d47-869f4efede85") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "ffa3077b-4b8f-4457-b85f-2611ac6fe647") (at 146.025 77.525) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R47" (at 0 1.6 0) (layer "F.SilkS") (uuid "6051994b-9895-41de-83fb-decc491669cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "680" (at 0 1.43 0) (layer "F.Fab") (uuid "78ef9c96-116d-4d60-bd5e-e867c0869d9a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "90115a2f-8a10-4924-a0fa-ef27f93256f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "954b99e3-9b3d-4ee6-a0d1-9d3c2f712b0c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "90e09630-9af8-47c5-8c4c-766d175a1e82") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C115415" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "cf0c22be-a0b7-401e-89ac-2aad4376160a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b7e528b1-0b4a-46c7-b833-697315571f7f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/c48058d0-f979-4ada-9996-5cab1ec255f6/df0be9dc-7024-4b62-ba66-c4ceeafe3f18") (sheetname "Fan8") (sheetfile "extra_fan_channel.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "57bdb4c8-6dc0-4113-9aac-df868ccfaa7c") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b2c06439-2168-4c5d-a3a1-32a0b3dbf2e0") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1094f42e-cd11-4819-831d-6664830769ea") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c66b295b-ac57-40b2-95a6-16740ed18734") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3dbb2ddb-268c-473f-a72e-d6286e86284b") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1e2a16c4-3d89-46cd-8607-603a8b23c09f") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce7f21f0-1180-437a-8d9a-7da5fd811ada") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "747923de-4655-43fe-b3ab-4f3a76c852b3") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2063e22c-a4ea-43aa-ba2d-7037cc905f44") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "60ee2bc7-61fd-4006-840a-99be6ab30f8f") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "1a8ac821-7089-497b-b77c-984ee7e1bb0d") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 58 "FAN8_PWM_GEN") (pintype "passive") (uuid "96241c5c-af2b-42f1-8e04-4a9a571177c3") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 92 "/Fan Channels/Fan8/PWM_OUT") (pintype "passive") (uuid "04b9ccfa-9204-4870-80e9-8f8524fac44f") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:KiCad-Logo2_6mm_Copper" (layer "B.Cu") (uuid "a21b31e9-694f-4d11-b09a-9529dce23b85") (at 162.007487 121.054848 180) (descr "KiCad Logo") (tags "Logo KiCad") (property "Reference" "REF**" (at 0 5.08 0) (layer "B.SilkS") (hide yes) (uuid "3fe20b0d-e845-4459-8532-5f1c8fd4e2bf") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Value" "KiCad-Logo2_6mm_Copper" (at 0 -6.35 0) (layer "B.Fab") (hide yes) (uuid "e21a15ca-8ef5-4c7c-a947-ff4226f22323") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Footprint" "Symbol:KiCad-Logo2_6mm_Copper" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "d6eca74e-2ff0-4e4b-95e5-5777c2f41109") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "18da3da8-ae4b-457a-9cc9-de584b2eda68") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "64103327-8dd6-411d-aec6-af6cf76e246c") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_poly (pts (xy 4.200322 -3.642069) (xy 4.224035 -3.656839) (xy 4.250686 -3.678419) (xy 4.250686 -3.999965) (xy 4.250601 -4.094022) (xy 4.250237 -4.168124) (xy 4.249432 -4.224896) (xy 4.248021 -4.26696) (xy 4.245841 -4.29694) (xy 4.242729 -4.317459) (xy 4.238522 -4.331141) (xy 4.233056 -4.340608) (xy 4.22918 -4.345274) (xy 4.197742 -4.365767) (xy 4.161941 -4.364931) (xy 4.130581 -4.347456) (xy 4.10393 -4.325876) (xy 4.10393 -3.678419) (xy 4.130581 -3.656839) (xy 4.156302 -3.641141) (xy 4.177308 -3.635259) (xy 4.200322 -3.642069) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "97c3b6bf-857f-4c5f-b2a7-68113b58d170") ) (fp_poly (pts (xy -2.912114 -3.657837) (xy -2.905534 -3.66541) (xy -2.900371 -3.675179) (xy -2.896456 -3.689763) (xy -2.893616 -3.711777) (xy -2.891679 -3.74384) (xy -2.890475 -3.788567) (xy -2.889831 -3.848577) (xy -2.889576 -3.926486) (xy -2.889537 -4.002148) (xy -2.889606 -4.095994) (xy -2.88993 -4.169881) (xy -2.890678 -4.226424) (xy -2.892024 -4.268241) (xy -2.894138 -4.297949) (xy -2.897192 -4.318165) (xy -2.901358 -4.331506) (xy -2.906808 -4.34059) (xy -2.912114 -4.346459) (xy -2.945118 -4.366139) (xy -2.980283 -4.364373) (xy -3.011747 -4.342909) (xy -3.018976 -4.334529) (xy -3.024626 -4.324806) (xy -3.028891 -4.311053) (xy -3.031965 -4.290581) (xy -3.034044 -4.260704) (xy -3.035322 -4.218733) (xy -3.035993 -4.161981) (xy -3.036251 -4.087759) (xy -3.036292 -4.003729) (xy -3.036292 -3.690677) (xy -3.008583 -3.662968) (xy -2.974429 -3.639655) (xy -2.941298 -3.638815) (xy -2.912114 -3.657837) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "294d2430-9fd2-49c2-ab39-edb1f887a193") ) (fp_poly (pts (xy -2.726079 2.96351) (xy -2.622973 2.927762) (xy -2.526978 2.871493) (xy -2.441247 2.794712) (xy -2.36893 2.697427) (xy -2.336445 2.636108) (xy -2.308332 2.55034) (xy -2.294705 2.451323) (xy -2.296214 2.349529) (xy -2.312969 2.257286) (xy -2.358763 2.144568) (xy -2.425168 2.046793) (xy -2.508809 1.965885) (xy -2.606312 1.903768) (xy -2.7143 1.862366) (xy -2.829399 1.843603) (xy -2.948234 1.849402) (xy -3.006811 1.861794) (xy -3.120972 1.906203) (xy -3.222365 1.973967) (xy -3.308545 2.062999) (xy -3.377066 2.171209) (xy -3.382864 2.183027) (xy -3.402904 2.227372) (xy -3.415487 2.26472) (xy -3.422319 2.30412) (xy -3.425105 2.354619) (xy -3.425568 2.409567) (xy -3.424803 2.475585) (xy -3.421352 2.523311) (xy -3.413477 2.561897) (xy -3.399443 2.600494) (xy -3.38212 2.638574) (xy -3.317505 2.746672) (xy -3.237934 2.834197) (xy -3.14656 2.901159) (xy -3.046536 2.947564) (xy -2.941012 2.973419) (xy -2.833142 2.978732) (xy -2.726079 2.96351) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "1ba02427-2bd7-4e51-8776-4418f2dc0949") ) (fp_poly (pts (xy 4.974773 -3.635355) (xy 5.05348 -3.635734) (xy 5.114571 -3.636525) (xy 5.160525 -3.637862) (xy 5.193822 -3.639875) (xy 5.216944 -3.642698) (xy 5.23237 -3.646461) (xy 5.242579 -3.651297) (xy 5.247521 -3.655014) (xy 5.273165 -3.68755) (xy 5.276267 -3.72133) (xy 5.260419 -3.752018) (xy 5.250056 -3.764281) (xy 5.238904 -3.772642) (xy 5.222743 -3.777849) (xy 5.19735 -3.780649) (xy 5.158506 -3.781788) (xy 5.101988 -3.782013) (xy 5.090888 -3.782014) (xy 4.944952 -3.782014) (xy 4.944952 -4.052948) (xy 4.944856 -4.138346) (xy 4.944419 -4.204056) (xy 4.94342 -4.252966) (xy 4.941636 -4.287965) (xy 4.938845 -4.311941) (xy 4.934825 -4.327785) (xy 4.929353 -4.338383) (xy 4.922374 -4.346459) (xy 4.889442 -4.366304) (xy 4.855062 -4.36474) (xy 4.823884 -4.342098) (xy 4.821594 -4.339292) (xy 4.814137 -4.328684) (xy 4.808455 -4.316273) (xy 4.804309 -4.299042) (xy 4.801458 -4.273976) (xy 4.799662 -4.238059) (xy 4.79868 -4.188275) (xy 4.798272 -4.121609) (xy 4.798197 -4.045781) (xy 4.798197 -3.782014) (xy 4.658835 -3.782014) (xy 4.59903 -3.78161) (xy 4.557626 -3.780032) (xy 4.530456 -3.776739) (xy 4.513354 -3.771184) (xy 4.502151 -3.762823) (xy 4.500791 -3.76137) (xy 4.484433 -3.728131) (xy 4.48588 -3.690554) (xy 4.504686 -3.657837) (xy 4.511958 -3.65149) (xy 4.521335 -3.646458) (xy 4.535317 -3.642588) (xy 4.556404 -3.639729) (xy 4.587097 -3.637727) (xy 4.629897 -3.636431) (xy 4.687303 -3.63569) (xy 4.761818 -3.63535) (xy 4.855941 -3.63526) (xy 4.875968 -3.635259) (xy 4.974773 -3.635355) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "4538699b-6420-4de4-b265-bbfb568d5998") ) (fp_poly (pts (xy 6.240531 -3.640725) (xy 6.27191 -3.662968) (xy 6.299619 -3.690677) (xy 6.299619 -4.000112) (xy 6.299546 -4.091991) (xy 6.299203 -4.164032) (xy 6.2984 -4.218972) (xy 6.296949 -4.259552) (xy 6.29466 -4.288509) (xy 6.291344 -4.308583) (xy 6.286813 -4.322513) (xy 6.280877 -4.333037) (xy 6.276222 -4.339292) (xy 6.245491 -4.363865) (xy 6.210204 -4.366533) (xy 6.177953 -4.351463) (xy 6.167296 -4.342566) (xy 6.160172 -4.330749) (xy 6.155875 -4.311718) (xy 6.153699 -4.281184) (xy 6.152936 -4.234854) (xy 6.152863 -4.199063) (xy 6.152863 -4.064237) (xy 5.656152 -4.064237) (xy 5.656152 -4.186892) (xy 5.655639 -4.242979) (xy 5.653584 -4.281525) (xy 5.649216 -4.307553) (xy 5.641764 -4.326089) (xy 5.632755 -4.339292) (xy 5.601852 -4.363796) (xy 5.566904 -4.366698) (xy 5.533446 -4.349281) (xy 5.524312 -4.340151) (xy 5.51786 -4.328047) (xy 5.513605 -4.309193) (xy 5.51106 -4.279812) (xy 5.509737 -4.236129) (xy 5.509151 -4.174367) (xy 5.509083 -4.160192) (xy 5.508599 -4.043823) (xy 5.508349 -3.947919) (xy 5.508431 -3.870369) (xy 5.508939 -3.809061) (xy 5.50997 -3.761882) (xy 5.511621 -3.726722) (xy 5.513987 -3.701468) (xy 5.517165 -3.684009) (xy 5.521252 -3.672233) (xy 5.526342 -3.664027) (xy 5.531974 -3.657837) (xy 5.563836 -3.638036) (xy 5.597065 -3.640725) (xy 5.628443 -3.662968) (xy 5.641141 -3.677318) (xy 5.649234 -3.69317) (xy 5.65375 -3.715746) (xy 5.655714 -3.75027) (xy 5.656152 -3.801968) (xy 5.656152 -3.917481) (xy 6.152863 -3.917481) (xy 6.152863 -3.798948) (xy 6.15337 -3.74434) (xy 6.155406 -3.707467) (xy 6.159743 -3.683499) (xy 6.167155 -3.667607) (xy 6.175441 -3.657837) (xy 6.207302 -3.638036) (xy 6.240531 -3.640725) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "0c32e71b-3b9b-49a9-9890-dc17b737bfea") ) (fp_poly (pts (xy 1.030017 -3.635467) (xy 1.158996 -3.639828) (xy 1.268699 -3.653053) (xy 1.360934 -3.675933) (xy 1.43751 -3.709262) (xy 1.500235 -3.75383) (xy 1.55092 -3.810428) (xy 1.591371 -3.87985) (xy 1.592167 -3.881543) (xy 1.616309 -3.943675) (xy 1.624911 -3.998701) (xy 1.617939 -4.054079) (xy 1.595362 -4.117265) (xy 1.59108 -4.126881) (xy 1.56188 -4.183158) (xy 1.529064 -4.226643) (xy 1.48671 -4.263609) (xy 1.428898 -4.300327) (xy 1.425539 -4.302244) (xy 1.375212 -4.326419) (xy 1.318329 -4.344474) (xy 1.251235 -4.357031) (xy 1.170273 -4.364714) (xy 1.07179 -4.368145) (xy 1.036994 -4.368443) (xy 0.871302 -4.369037) (xy 0.847905 -4.339292) (xy 0.840965 -4.329511) (xy 0.83555 -4.318089) (xy 0.831473 -4.302287) (xy 0.828545 -4.279367) (xy 0.826575 -4.246588) (xy 0.825933 -4.222281) (xy 0.982552 -4.222281) (xy 1.076434 -4.222281) (xy 1.131372 -4.220675) (xy 1.187768 -4.216447) (xy 1.234053 -4.210484) (xy 1.236847 -4.209982) (xy 1.319056 -4.187928) (xy 1.382822 -4.154792) (xy 1.43016 -4.109039) (xy 1.46309 -4.049131) (xy 1.468816 -4.033253) (xy 1.474429 -4.008525) (xy 1.471999 -3.984094) (xy 1.460175 -3.951592) (xy 1.453048 -3.935626) (xy 1.429708 -3.893198) (xy 1.401588 -3.863432) (xy 1.370648 -3.842703) (xy 1.308674 -3.815729) (xy 1.229359 -3.79619) (xy 1.136961 -3.784938) (xy 1.070041 -3.782462) (xy 0.982552 -3.782014) (xy 0.982552 -4.222281) (xy 0.825933 -4.222281) (xy 0.825376 -4.201213) (xy 0.824758 -4.140503) (xy 0.824533 -4.061718) (xy 0.824508 -4.000112) (xy 0.824508 -3.690677) (xy 0.852217 -3.662968) (xy 0.864514 -3.651736) (xy 0.877811 -3.644045) (xy 0.89638 -3.639232) (xy 0.924494 -3.636638) (xy 0.966425 -3.635602) (xy 1.026445 -3.635462) (xy 1.030017 -3.635467) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "da4fb033-178e-44eb-9b73-b74c51da7178") ) (fp_poly (pts (xy -6.109663 -3.635258) (xy -6.070181 -3.635659) (xy -5.954492 -3.638451) (xy -5.857603 -3.646742) (xy -5.776211 -3.661424) (xy -5.707015 -3.683385) (xy -5.646712 -3.713514) (xy -5.592 -3.752702) (xy -5.572459 -3.769724) (xy -5.540042 -3.809555) (xy -5.510812 -3.863605) (xy -5.488283 -3.923515) (xy -5.475971 -3.980931) (xy -5.474692 -4.002148) (xy -5.482709 -4.060961) (xy -5.504191 -4.125205) (xy -5.535291 -4.186013) (xy -5.572158 -4.234522) (xy -5.578146 -4.240374) (xy -5.628871 -4.281513) (xy -5.684417 -4.313627) (xy -5.747988 -4.337557) (xy -5.822786 -4.354145) (xy -5.912014 -4.364233) (xy -6.018874 -4.368661) (xy -6.06782 -4.369037) (xy -6.130054 -4.368737) (xy -6.17382 -4.367484) (xy -6.203223 -4.364746) (xy -6.222371 -4.359993) (xy -6.235369 -4.352693) (xy -6.242337 -4.346459) (xy -6.248918 -4.338886) (xy -6.25408 -4.329116) (xy -6.257995 -4.314532) (xy -6.260835 -4.292518) (xy -6.262772 -4.260456) (xy -6.263976 -4.215728) (xy -6.26462 -4.155718) (xy -6.264875 -4.077809) (xy -6.264914 -4.002148) (xy -6.265162 -3.901233) (xy -6.265109 -3.820619) (xy -6.264149 -3.782014) (xy -6.118159 -3.782014) (xy -6.118159 -4.222281) (xy -6.025026 -4.222196) (xy -5.968985 -4.220588) (xy -5.910291 -4.216448) (xy -5.86132 -4.210656) (xy -5.85983 -4.210418) (xy -5.780684 -4.191282) (xy -5.719294 -4.161479) (xy -5.672597 -4.11907) (xy -5.642927 -4.073153) (xy -5.624645 -4.022218) (xy -5.626063 -3.974392) (xy -5.64728 -3.923125) (xy -5.688781 -3.870091) (xy -5.74629 -3.830792) (xy -5.821042 -3.804523) (xy -5.871 -3.795227) (xy -5.927708 -3.788699) (xy -5.987811 -3.783974) (xy -6.038931 -3.782009) (xy -6.041959 -3.782) (xy -6.118159 -3.782014) (xy -6.264149 -3.782014) (xy -6.263552 -3.758043) (xy -6.25929 -3.711247) (xy -6.251122 -3.67797) (xy -6.237848 -3.655951) (xy -6.218266 -3.642931) (xy -6.191175 -3.636649) (xy -6.155374 -3.634845) (xy -6.109663 -3.635258) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "85f55b1a-9403-41a5-a0b5-999a5574df80") ) (fp_poly (pts (xy -1.288406 -3.63964) (xy -1.26484 -3.653465) (xy -1.234027 -3.676073) (xy -1.19437 -3.70853) (xy -1.144272 -3.7519) (xy -1.082135 -3.80725) (xy -1.006364 -3.875643) (xy -0.919626 -3.954276) (xy -0.739003 -4.11807) (xy -0.733359 -3.898221) (xy -0.731321 -3.822543) (xy -0.729355 -3.766186) (xy -0.727026 -3.725898) (xy -0.723898 -3.698427) (xy -0.719537 -3.680521) (xy -0.713508 -3.668929) (xy -0.705376 -3.6604) (xy -0.701064 -3.656815) (xy -0.666533 -3.637862) (xy -0.633675 -3.640633) (xy -0.60761 -3.656825) (xy -0.580959 -3.678391) (xy -0.577644 -3.993343) (xy -0.576727 -4.085971) (xy -0.57626 -4.158736) (xy -0.576405 -4.214353) (xy -0.577324 -4.255534) (xy -0.579179 -4.284995) (xy -0.582131 -4.305447) (xy -0.586342 -4.319605) (xy -0.591974 -4.330183) (xy -0.598219 -4.338666) (xy -0.611731 -4.354399) (xy -0.625175 -4.364828) (xy -0.640416 -4.368831) (xy -0.659318 -4.365286) (xy -0.683747 -4.353071) (xy -0.715565 -4.331063) (xy -0.75664 -4.298141) (xy -0.808834 -4.253183) (xy -0.874014 -4.195067) (xy -0.947848 -4.128291) (xy -1.213137 -3.88765) (xy -1.218781 -4.106781) (xy -1.220823 -4.18232) (xy -1.222794 -4.238546) (xy -1.225131 -4.278716) (xy -1.228273 -4.306088) (xy -1.232656 -4.32392) (xy -1.238716 -4.335471) (xy -1.246892 -4.343999) (xy -1.251076 -4.347474) (xy -1.288057 -4.366564) (xy -1.323 -4.363685) (xy -1.353428 -4.339292) (xy -1.360389 -4.329478) (xy -1.365815 -4.318018) (xy -1.369895 -4.30216) (xy -1.372821 -4.279155) (xy -1.374784 -4.246254) (xy -1.375975 -4.200708) (xy -1.376584 -4.139765) (xy -1.376803 -4.060678) (xy -1.376826 -4.002148) (xy -1.376752 -3.910599) (xy -1.376405 -3.838879) (xy -1.375593 -3.784237) (xy -1.374125 -3.743924) (xy -1.371811 -3.71519) (xy -1.368459 -3.695285) (xy -1.36388 -3.68146) (xy -1.357881 -3.670964) (xy -1.353428 -3.665003) (xy -1.342142 -3.650883) (xy -1.331593 -3.640221) (xy -1.320185 -3.634084) (xy -1.306322 -3.633535) (xy -1.288406 -3.63964) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "660d50e3-9344-4b27-a8fa-5ec1b8e42c67") ) (fp_poly (pts (xy -1.938373 -3.640791) (xy -1.869857 -3.652287) (xy -1.817235 -3.670159) (xy -1.783 -3.693691) (xy -1.773671 -3.707116) (xy -1.764185 -3.73834) (xy -1.770569 -3.766587) (xy -1.790722 -3.793374) (xy -1.822037 -3.805905) (xy -1.867475 -3.804888) (xy -1.902618 -3.798098) (xy -1.980711 -3.785163) (xy -2.060518 -3.783934) (xy -2.149847 -3.794433) (xy -2.174521 -3.798882) (xy -2.257583 -3.8223) (xy -2.322565 -3.857137) (xy -2.368753 -3.902796) (xy -2.395437 -3.958686) (xy -2.400955 -3.98758) (xy -2.397343 -4.046204) (xy -2.374021 -4.098071) (xy -2.333116 -4.14217) (xy -2.276751 -4.177491) (xy -2.207052 -4.203021) (xy -2.126144 -4.217751) (xy -2.036152 -4.22067) (xy -1.939202 -4.210767) (xy -1.933728 -4.209833) (xy -1.895167 -4.202651) (xy -1.873786 -4.195713) (xy -1.864519 -4.185419) (xy -1.862298 -4.168168) (xy -1.862248 -4.159033) (xy -1.862248 -4.120681) (xy -1.930723 -4.120681) (xy -1.991192 -4.116539) (xy -2.032457 -4.103339) (xy -2.056467 -4.079922) (xy -2.065169 -4.045128) (xy -2.065275 -4.040586) (xy -2.060184 -4.010846) (xy -2.042725 -3.989611) (xy -2.010231 -3.975558) (xy -1.960035 -3.967365) (xy -1.911415 -3.964353) (xy -1.840748 -3.962625) (xy -1.78949 -3.965262) (xy -1.754531 -3.974992) (xy -1.732762 -3.994545) (xy -1.721072 -4.026648) (xy -1.716352 -4.07403) (xy -1.715492 -4.136263) (xy -1.716901 -4.205727) (xy -1.72114 -4.252978) (xy -1.728228 -4.278204) (xy -1.729603 -4.28018) (xy -1.76852 -4.3117) (xy -1.825578 -4.336662) (xy -1.897161 -4.354532) (xy -1.97965 -4.364778) (xy -2.069431 -4.366865) (xy -2.162884 -4.36026) (xy -2.217848 -4.352148) (xy -2.304058 -4.327746) (xy -2.384184 -4.287854) (xy -2.451269 -4.236079) (xy -2.461465 -4.225731) (xy -2.494594 -4.182227) (xy -2.524486 -4.12831) (xy -2.547649 -4.071784) (xy -2.56059 -4.020451) (xy -2.56215 -4.000736) (xy -2.55551 -3.959611) (xy -2.53786 -3.908444) (xy -2.512589 -3.854586) (xy -2.483081 -3.805387) (xy -2.457011 -3.772526) (xy -2.396057 -3.723644) (xy -2.317261 -3.684737) (xy -2.223449 -3.656686) (xy -2.117442 -3.640371) (xy -2.020292 -3.636384) (xy -1.938373 -3.640791) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "72a985be-dec6-4ade-a8b7-5bad968c431a") ) (fp_poly (pts (xy 0.242051 -3.635452) (xy 0.318409 -3.636366) (xy 0.376925 -3.638503) (xy 0.419963 -3.642367) (xy 0.449891 -3.648459) (xy 0.469076 -3.657282) (xy 0.479884 -3.669338) (xy 0.484681 -3.685131) (xy 0.485835 -3.705162) (xy 0.485841 -3.707527) (xy 0.484839 -3.730184) (xy 0.480104 -3.747695) (xy 0.469041 -3.760766) (xy 0.449056 -3.770105) (xy 0.417554 -3.776419) (xy 0.37194 -3.780414) (xy 0.309621 -3.782798) (xy 0.228001 -3.784278) (xy 0.202985 -3.784606) (xy -0.039092 -3.787659) (xy -0.042478 -3.85257) (xy -0.045863 -3.917481) (xy 0.122284 -3.917481) (xy 0.187974 -3.917723) (xy 0.23488 -3.918748) (xy 0.266791 -3.921003) (xy 0.287499 -3.924934) (xy 0.300792 -3.93099) (xy 0.310463 -3.939616) (xy 0.310525 -3.939685) (xy 0.328064 -3.973304) (xy 0.32743 -4.00964) (xy 0.309022 -4.040615) (xy 0.305379 -4.043799) (xy 0.292449 -4.052004) (xy 0.274732 -4.057713) (xy 0.248278 -4.061354) (xy 0.20914 -4.063359) (xy 0.15337 -4.064156) (xy 0.117702 -4.064237) (xy -0.044737 -4.064237) (xy -0.044737 -4.222281) (xy 0.201869 -4.222281) (xy 0.283288 -4.222423) (xy 0.345118 -4.223006) (xy 0.390345 -4.22426) (xy 0.421956 -4.226419) (xy 0.442939 -4.229715) (xy 0.456281 -4.234381) (xy 0.464969 -4.240649) (xy 0.467158 -4.242925) (xy 0.483322 -4.274472) (xy 0.484505 -4.31036) (xy 0.471244 -4.341477) (xy 0.460751 -4.351463) (xy 0.449837 -4.356961) (xy 0.432925 -4.361214) (xy 0.407341 -4.364372) (xy 0.370409 -4.366584) (xy 0.319454 -4.367998) (xy 0.251802 -4.368764) (xy 0.164777 -4.36903) (xy 0.145102 -4.369037) (xy 0.056619 -4.368979) (xy -0.012065 -4.368659) (xy -0.063728 -4.367859) (xy -0.101147 -4.366359) (xy -0.127102 -4.363941) (xy -0.14437 -4.360386) (xy -0.15573 -4.355474) (xy -0.16396 -4.348987) (xy -0.168475 -4.34433) (xy -0.175271 -4.336081) (xy -0.18058 -4.325861) (xy -0.184586 -4.310992) (xy -0.187471 -4.288794) (xy -0.189418 -4.256585) (xy -0.190611 -4.211688) (xy -0.191231 -4.15142) (xy -0.191463 -4.073103) (xy -0.191492 -4.007186) (xy -0.191421 -3.91482) (xy -0.191084 -3.842309) (xy -0.190294 -3.786929) (xy -0.188866 -3.745957) (xy -0.186613 -3.71667) (xy -0.183349 -3.696345) (xy -0.178888 -3.682258) (xy -0.173044 -3.671687) (xy -0.168095 -3.665003) (xy -0.144698 -3.635259) (xy 0.145482 -3.635259) (xy 0.242051 -3.635452) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "f7c4bc07-4e0e-4f8a-8fde-baf15aace889") ) (fp_poly (pts (xy -4.701086 -3.635338) (xy -4.631678 -3.63571) (xy -4.579289 -3.636577) (xy -4.541139 -3.638138) (xy -4.514451 -3.640595) (xy -4.496445 -3.644149) (xy -4.484341 -3.649002) (xy -4.475361 -3.655353) (xy -4.47211 -3.658276) (xy -4.452335 -3.689334) (xy -4.448774 -3.72502) (xy -4.461783 -3.756702) (xy -4.467798 -3.763105) (xy -4.477527 -3.769313) (xy -4.493193 -3.774102) (xy -4.5177 -3.777706) (xy -4.553953 -3.780356) (xy -4.604857 -3.782287) (xy -4.673318 -3.783731) (xy -4.735909 -3.78461) (xy -4.983626 -3.787659) (xy -4.987011 -3.85257) (xy -4.990397 -3.917481) (xy -4.82225 -3.917481) (xy -4.749251 -3.918111) (xy -4.695809 -3.920745) (xy -4.65892 -3.926501) (xy -4.63558 -3.936496) (xy -4.622786 -3.951848) (xy -4.617534 -3.973674) (xy -4.616737 -3.99393) (xy -4.619215 -4.018784) (xy -4.628569 -4.037098) (xy -4.647675 -4.049829) (xy -4.67941 -4.057933) (xy -4.726651 -4.062368) (xy -4.792275 -4.064091) (xy -4.828093 -4.064237) (xy -4.98927 -4.064237) (xy -4.98927 -4.222281) (xy -4.740914 -4.222281) (xy -4.659505 -4.222394) (xy -4.597634 -4.222904) (xy -4.55226 -4.224062) (xy -4.520346 -4.226122) (xy -4.498851 -4.229338) (xy -4.484735 -4.233964) (xy -4.47496 -4.240251) (xy -4.469981 -4.244859) (xy -4.452902 -4.271752) (xy -4.447403 -4.295659) (xy -4.455255 -4.324859) (xy -4.469981 -4.346459) (xy -4.477838 -4.353258) (xy -4.48798 -4.358538) (xy -4.503136 -4.36249) (xy -4.526033 -4.365305) (xy -4.559401 -4.367174) (xy -4.605967 -4.36829) (xy -4.668459 -4.368843) (xy -4.749606 -4.369025) (xy -4.791714 -4.369037) (xy -4.88189 -4.368957) (xy -4.952216 -4.36859) (xy -5.005421 -4.367744) (xy -5.044232 -4.366228) (xy -5.071379 -4.363851) (xy -5.08959 -4.360421) (xy -5.101592 -4.355746) (xy -5.110114 -4.349636) (xy -5.113448 -4.346459) (xy -5.120047 -4.338862) (xy -5.125219 -4.329062) (xy -5.129138 -4.314431) (xy -5.131976 -4.292344) (xy -5.133907 -4.260174) (xy -5.135104 -4.215295) (xy -5.13574 -4.155081) (xy -5.135989 -4.076905) (xy -5.136026 -4.004115) (xy -5.135992 -3.910899) (xy -5.135757 -3.837623) (xy -5.135122 -3.78165) (xy -5.133886 -3.740343) (xy -5.131848 -3.711064) (xy -5.128809 -3.691176) (xy -5.124569 -3.678042) (xy -5.118927 -3.669024) (xy -5.111683 -3.661485) (xy -5.109898 -3.659804) (xy -5.101237 -3.652364) (xy -5.091174 -3.646601) (xy -5.076917 -3.642304) (xy -5.055675 -3.639256) (xy -5.024656 -3.637243) (xy -4.981069 -3.636052) (xy -4.922123 -3.635467) (xy -4.845026 -3.635275) (xy -4.790293 -3.635259) (xy -4.701086 -3.635338) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "b6e2e295-40b7-4907-a3f5-9e24e49d9123") ) (fp_poly (pts (xy 3.756373 -3.637226) (xy 3.775963 -3.644227) (xy 3.776718 -3.644569) (xy 3.803321 -3.66487) (xy 3.817978 -3.685753) (xy 3.820846 -3.695544) (xy 3.820704 -3.708553) (xy 3.816669 -3.727087) (xy 3.807854 -3.753449) (xy 3.793377 -3.789944) (xy 3.772353 -3.838879) (xy 3.743896 -3.902557) (xy 3.707123 -3.983285) (xy 3.686883 -4.027408) (xy 3.650333 -4.106177) (xy 3.616023 -4.178615) (xy 3.58526 -4.242072) (xy 3.559356 -4.2939) (xy 3.539618 -4.331451) (xy 3.527358 -4.352076) (xy 3.524932 -4.354925) (xy 3.493891 -4.367494) (xy 3.458829 -4.365811) (xy 3.430708 -4.350524) (xy 3.429562 -4.349281) (xy 3.418376 -4.332346) (xy 3.399612 -4.299362) (xy 3.375583 -4.254572) (xy 3.348605 -4.202224) (xy 3.338909 -4.182934) (xy 3.265722 -4.036342) (xy 3.185948 -4.195585) (xy 3.157475 -4.250607) (xy 3.131058 -4.298324) (xy 3.108856 -4.335085) (xy 3.093027 -4.357236) (xy 3.087662 -4.361933) (xy 3.045965 -4.368294) (xy 3.011557 -4.354925) (xy 3.001436 -4.340638) (xy 2.983922 -4.308884) (xy 2.960443 -4.262789) (xy 2.932428 -4.205477) (xy 2.901307 -4.140072) (xy 2.868507 -4.069699) (xy 2.835458 -3.997483) (xy 2.803589 -3.926547) (xy 2.774327 -3.860017) (xy 2.749103 -3.801018) (xy 2.729344 -3.752673) (xy 2.71648 -3.718107) (xy 2.711939 -3.700445) (xy 2.711985 -3.699805) (xy 2.723034 -3.67758) (xy 2.745118 -3.654945) (xy 2.746418 -3.65396) (xy 2.773561 -3.638617) (xy 2.798666 -3.638766) (xy 2.808076 -3.641658) (xy 2.819542 -3.64791) (xy 2.831718 -3.660206) (xy 2.846065 -3.6811) (xy 2.864044 -3.713141) (xy 2.887115 -3.75888) (xy 2.916738 -3.820869) (xy 2.943453 -3.87809) (xy 2.974188 -3.944418) (xy 3.001729 -4.004066) (xy 3.024646 -4.053917) (xy 3.041506 -4.090856) (xy 3.050881 -4.111765) (xy 3.052248 -4.115037) (xy 3.058397 -4.109689) (xy 3.07253 -4.087301) (xy 3.092765 -4.051138) (xy 3.117223 -4.004469) (xy 3.126956 -3.985214) (xy 3.159925 -3.920196) (xy 3.185351 -3.872846) (xy 3.20532 -3.840411) (xy 3.221918 -3.820138) (xy 3.237232 -3.809274) (xy 3.253348 -3.805067) (xy 3.263851 -3.804592) (xy 3.282378 -3.806234) (xy 3.298612 -3.813023) (xy 3.314743 -3.827758) (xy 3.332959 -3.853236) (xy 3.355447 -3.892253) (xy 3.384397 -3.947606) (xy 3.40037 -3.979095) (xy 3.426278 -4.029279) (xy 3.448875 -4.070896) (xy 3.466166 -4.100434) (xy 3.476158 -4.114381) (xy 3.477517 -4.114962) (xy 3.483969 -4.103985) (xy 3.498416 -4.075482) (xy 3.519411 -4.032436) (xy 3.545505 -3.97783) (xy 3.575254 -3.914646) (xy 3.589888 -3.883263) (xy 3.627958 -3.80227) (xy 3.658613 -3.739948) (xy 3.683445 -3.694263) (xy 3.704045 -3.663181) (xy 3.722006 -3.64467) (xy 3.738918 -3.636696) (xy 3.756373 -3.637226) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "9bb0c1ec-17c2-4ac6-8faa-592752f20dbc") ) (fp_poly (pts (xy -3.679995 -3.636543) (xy -3.60518 -3.641773) (xy -3.535598 -3.649942) (xy -3.475294 -3.660742) (xy -3.428312 -3.673865) (xy -3.398698 -3.689005) (xy -3.394152 -3.693461) (xy -3.378346 -3.728042) (xy -3.383139 -3.763543) (xy -3.407656 -3.793917) (xy -3.408826 -3.794788) (xy -3.423246 -3.804146) (xy -3.4383 -3.809068) (xy -3.459297 -3.809665) (xy -3.491549 -3.806053) (xy -3.540365 -3.798346) (xy -3.544292 -3.797697) (xy -3.617031 -3.788761) (xy -3.695509 -3.784353) (xy -3.774219 -3.784311) (xy -3.847653 -3.788471) (xy -3.910303 -3.796671) (xy -3.956662 -3.808749) (xy -3.959708 -3.809963) (xy -3.99334 -3.828807) (xy -4.005156 -3.847877) (xy -3.995906 -3.866631) (xy -3.966339 -3.884529) (xy -3.917203 -3.901029) (xy -3.849249 -3.915588) (xy -3.803937 -3.922598) (xy -3.709748 -3.936081) (xy -3.634836 -3.948406) (xy -3.576009 -3.960641) (xy -3.530077 -3.973853) (xy -3.493847 -3.989109) (xy -3.46413 -4.007477) (xy -3.437734 -4.030023) (xy -3.416522 -4.052163) (xy -3.391357 -4.083011) (xy -3.378973 -4.109537) (xy -3.3751 -4.142218) (xy -3.374959 -4.154187) (xy -3.377868 -4.193904) (xy -3.389494 -4.223451) (xy -3.409615 -4.249678) (xy -3.450508 -4.289768) (xy -3.496109 -4.320341) (xy -3.549805 -4.342395) (xy -3.614984 -4.356927) (xy -3.695036 -4.364933) (xy -3.793349 -4.36741) (xy -3.809581 -4.367369) (xy -3.875141 -4.36601) (xy -3.940158 -4.362922) (xy -3.997544 -4.358548) (xy -4.040214 -4.353332) (xy -4.043664 -4.352733) (xy -4.086088 -4.342683) (xy -4.122072 -4.329988) (xy -4.142442 -4.318382) (xy -4.161399 -4.287764) (xy -4.162719 -4.25211) (xy -4.146377 -4.220336) (xy -4.142721 -4.216743) (xy -4.127607 -4.206068) (xy -4.108707 -4.201468) (xy -4.079454 -4.202251) (xy -4.043943 -4.206319) (xy -4.004262 -4.209954) (xy -3.948637 -4.21302) (xy -3.883698 -4.215245) (xy -3.816077 -4.216356) (xy -3.798292 -4.216429) (xy -3.73042 -4.216156) (xy -3.680746 -4.214838) (xy -3.644902 -4.212019) (xy -3.618516 -4.207242) (xy -3.597218 -4.200049) (xy -3.584418 -4.194059) (xy -3.556292 -4.177425) (xy -3.53836 -4.16236) (xy -3.535739 -4.158089) (xy -3.541268 -4.140455) (xy -3.567552 -4.123384) (xy -3.61277 -4.10765) (xy -3.6751 -4.09403) (xy -3.693463 -4.090996) (xy -3.789382 -4.07593) (xy -3.865933 -4.063338) (xy -3.926072 -4.052303) (xy -3.972752 -4.041912) (xy -4.008929 -4.031248) (xy -4.037557 -4.019397) (xy -4.06159 -4.005443) (xy -4.083984 -3.988473) (xy -4.107694 -3.96757) (xy -4.115672 -3.960241) (xy -4.143645 -3.932891) (xy -4.158452 -3.911221) (xy -4.164244 -3.886424) (xy -4.165181 -3.855175) (xy -4.154867 -3.793897) (xy -4.124044 -3.741832) (xy -4.072887 -3.69915) (xy -4.001575 -3.666017) (xy -3.950692 -3.651156) (xy -3.895392 -3.641558) (xy -3.829145 -3.636128) (xy -3.755998 -3.634559) (xy -3.679995 -3.636543) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "7e996e80-1355-4a2a-9c92-69cddd58e50f") ) (fp_poly (pts (xy 0.439962 1.839501) (xy 0.588014 1.823293) (xy 0.731452 1.794282) (xy 0.87611 1.750955) (xy 1.027824 1.691799) (xy 1.192428 1.6153) (xy 1.222071 1.600483) (xy 1.290098 1.566969) (xy 1.354256 1.536792) (xy 1.408215 1.512834) (xy 1.44564 1.497976) (xy 1.451389 1.496105) (xy 1.506486 1.479598) (xy 1.259851 1.120799) (xy 1.199552 1.033107) (xy 1.144422 0.952988) (xy 1.096336 0.883164) (xy 1.057168 0.826353) (xy 1.028794 0.785277) (xy 1.013087 0.762654) (xy 1.010536 0.759072) (xy 1.000171 0.766562) (xy 0.97466 0.789082) (xy 0.938563 0.822539) (xy 0.918642 0.84145) (xy 0.805773 0.931222) (xy 0.679014 0.999439) (xy 0.569783 1.036805) (xy 0.504214 1.04854) (xy 0.422116 1.055692) (xy 0.333144 1.058126) (xy 0.246956 1.055712) (xy 0.173205 1.048317) (xy 0.143776 1.042653) (xy 0.011133 0.997018) (xy -0.108394 0.927337) (xy -0.214717 0.83374) (xy -0.307747 0.716351) (xy -0.387395 0.5753) (xy -0.453574 0.410714) (xy -0.506194 0.22272) (xy -0.537467 0.061783) (xy -0.545626 -0.009263) (xy -0.551185 -0.101046) (xy -0.554198 -0.206968) (xy -0.554719 -0.320434) (xy -0.5528 -0.434849) (xy -0.548497 -0.543617) (xy -0.541863 -0.640143) (xy -0.532951 -0.717831) (xy -0.531021 -0.729817) (xy -0.488501 -0.922892) (xy -0.430567 -1.093773) (xy -0.356867 -1.243224) (xy -0.267049 -1.372011) (xy -0.203293 -1.441639) (xy -0.088714 -1.536173) (xy 0.036942 -1.606246) (xy 0.171557 -1.651477) (xy 0.313011 -1.671484) (xy 0.459183 -1.665885) (xy 0.607955 -1.6343) (xy 0.695911 -1.603394) (xy 0.817629 -1.541506) (xy 0.94308 -1.452729) (xy 1.013353 -1.392694) (xy 1.052811 -1.357947) (xy 1.083812 -1.332454) (xy 1.101458 -1.32017) (xy 1.103648 -1.319795) (xy 1.111524 -1.332347) (xy 1.131932 -1.365516) (xy 1.163132 -1.416458) (xy 1.203386 -1.482331) (xy 1.250957 -1.560289) (xy 1.304104 -1.64749) (xy 1.333687 -1.696067) (xy 1.559648 -2.067215) (xy 1.277527 -2.206639) (xy 1.175522 -2.256719) (xy 1.092889 -2.29621) (xy 1.024578 -2.327073) (xy 0.965537 -2.351268) (xy 0.910714 -2.370758) (xy 0.85506 -2.387503) (xy 0.793523 -2.403465) (xy 0.73454 -2.417482) (xy 0.682115 -2.428329) (xy 0.627288 -2.436526) (xy 0.564572 -2.442528) (xy 0.488477 -2.44679) (xy 0.393516 -2.449767) (xy 0.329513 -2.451052) (xy 0.238192 -2.45193) (xy 0.150627 -2.451487) (xy 0.072612 -2.449852) (xy 0.009942 -2.447149) (xy -0.031587 -2.443505) (xy -0.034048 -2.443142) (xy -0.249697 -2.396487) (xy -0.452207 -2.325729) (xy -0.641505 -2.230914) (xy -0.817521 -2.112089) (xy -0.980184 -1.9693) (xy -1.129422 -1.802594) (xy -1.237504 -1.654433) (xy -1.352566 -1.460502) (xy -1.445577 -1.255699) (xy -1.516987 -1.038383) (xy -1.567244 -0.806912) (xy -1.596799 -0.559643) (xy -1.606111 -0.308559) (xy -1.598452 -0.06567) (xy -1.574387 0.15843) (xy -1.533148 0.367523) (xy -1.473973 0.565387) (xy -1.396096 0.755804) (xy -1.386797 0.775532) (xy -1.284352 0.959941) (xy -1.158528 1.135424) (xy -1.012888 1.29835) (xy -0.850999 1.445086) (xy -0.676424 1.571999) (xy -0.513756 1.665095) (xy -0.349427 1.738009) (xy -0.184749 1.790826) (xy -0.013348 1.824985) (xy 0.171153 1.841922) (xy 0.281459 1.84442) (xy 0.439962 1.839501) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "e4b900f6-7bba-4a2a-ae9a-f5f929ec3812") ) (fp_poly (pts (xy 6.84227 2.043175) (xy 6.959041 2.042696) (xy 6.998729 2.042455) (xy 7.544486 2.038865) (xy 7.551351 -0.054919) (xy 7.552258 -0.338842) (xy 7.553062 -0.59664) (xy 7.553815 -0.829646) (xy 7.554569 -1.039194) (xy 7.555375 -1.226618) (xy 7.556285 -1.39325) (xy 7.557351 -1.540425) (xy 7.558624 -1.669477) (xy 7.560156 -1.781739) (xy 7.561998 -1.878544) (xy 7.564203 -1.961226) (xy 7.566822 -2.031119) (xy 7.569906 -2.089557) (xy 7.573508 -2.137872) (xy 7.577678 -2.1774) (xy 7.582469 -2.209473) (xy 7.587931 -2.235424) (xy 7.594118 -2.256589) (xy 7.60108 -2.274299) (xy 7.608869 -2.289889) (xy 7.617537 -2.304693) (xy 7.627135 -2.320044) (xy 7.637715 -2.337276) (xy 7.639884 -2.340946) (xy 7.676268 -2.403031) (xy 7.150431 -2.399434) (xy 6.624594 -2.395838) (xy 6.617729 -2.280331) (xy 6.613992 -2.224899) (xy 6.610097 -2.192851) (xy 6.604811 -2.180135) (xy 6.596903 -2.182696) (xy 6.59027 -2.190024) (xy 6.561374 -2.216714) (xy 6.514279 -2.251021) (xy 6.45562 -2.288846) (xy 6.392031 -2.32609) (xy 6.330149 -2.358653) (xy 6.282634 -2.380077) (xy 6.171316 -2.415283) (xy 6.043596 -2.440222) (xy 5.908901 -2.453941) (xy 5.776663 -2.455486) (xy 5.656308 -2.443906) (xy 5.654326 -2.443574) (xy 5.489641 -2.40225) (xy 5.335479 -2.336412) (xy 5.193328 -2.247474) (xy 5.064675 -2.136852) (xy 4.951007 -2.005961) (xy 4.85381 -1.856216) (xy 4.774572 -1.689033) (xy 4.73143 -1.56519) (xy 4.702979 -1.461581) (xy 4.68188 -1.361252) (xy 4.667488 -1.258109) (xy 4.659158 -1.146057) (xy 4.656245 -1.019001) (xy 4.657535 -0.915252) (xy 5.67065 -0.915252) (xy 5.675444 -1.089222) (xy 5.690568 -1.238895) (xy 5.716485 -1.365597) (xy 5.753663 -1.470658) (xy 5.802565 -1.555406) (xy 5.863658 -1.621169) (xy 5.934177 -1.667659) (xy 5.970871 -1.685014) (xy 6.002696 -1.695419) (xy 6.038177 -1.700179) (xy 6.085841 -1.700601) (xy 6.137189 -1.698748) (xy 6.238169 -1.689841) (xy 6.318035 -1.672398) (xy 6.343135 -1.663661) (xy 6.400448 -1.637857) (xy 6.460897 -1.605453) (xy 6.487297 -1.589233) (xy 6.555946 -1.544205) (xy 6.555946 -0.116982) (xy 6.480432 -0.071718) (xy 6.375121 -0.020572) (xy 6.267525 0.009676) (xy 6.161581 0.019205) (xy 6.061224 0.008193) (xy 5.970387 -0.023181) (xy 5.893007 -0.07474) (xy 5.868039 -0.099488) (xy 5.807856 -0.180577) (xy 5.759145 -0.278734) (xy 5.721499 -0.395643) (xy 5.694512 -0.532985) (xy 5.677775 -0.692444) (xy 5.670883 -0.8757) (xy 5.67065 -0.915252) (xy 4.657535 -0.915252) (xy 4.658073 -0.872067) (xy 4.669647 -0.646053) (xy 4.69292 -0.442192) (xy 4.728504 -0.257513) (xy 4.777013 -0.089048) (xy 4.83906 0.066174) (xy 4.861201 0.112192) (xy 4.950385 0.262261) (xy 5.058159 0.395623) (xy 5.18199 0.510123) (xy 5.319342 0.603611) (xy 5.467683 0.673932) (xy 5.556604 0.70294) (xy 5.643933 0.72016) (xy 5.749011 0.730406) (xy 5.863029 0.733682) (xy 5.977177 0.729991) (xy 6.082648 0.71934) (xy 6.167334 0.70263) (xy 6.268128 0.66986) (xy 6.365822 0.627721) (xy 6.451296 0.580481) (xy 6.496789 0.548419) (xy 6.528169 0.524578) (xy 6.550142 0.510061) (xy 6.555141 0.508) (xy 6.55669 0.521282) (xy 6.558135 0.559337) (xy 6.559443 0.619481) (xy 6.560583 0.699027) (xy 6.561521 0.795289) (xy 6.562226 0.905581) (xy 6.562667 1.027219) (xy 6.562811 1.151115) (xy 6.56273 1.309804) (xy 6.562335 1.443592) (xy 6.561395 1.55504) (xy 6.55968 1.646705) (xy 6.556957 1.721147) (xy 6.552997 1.780925) (xy 6.547569 1.828598) (xy 6.540441 1.866726) (xy 6.531384 1.897866) (xy 6.520167 1.924579) (xy 6.506558 1.949423) (xy 6.490328 1.974957) (xy 6.48824 1.978119) (xy 6.467306 2.01119) (xy 6.454667 2.033931) (xy 6.452973 2.038728) (xy 6.466216 2.040241) (xy 6.504002 2.041472) (xy 6.563416 2.042401) (xy 6.641542 2.043008) (xy 6.735465 2.043273) (xy 6.84227 2.043175) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "16d46805-c165-4314-9b65-3a41c4c804ee") ) (fp_poly (pts (xy 3.167505 0.735771) (xy 3.235531 0.730622) (xy 3.430163 0.704727) (xy 3.602529 0.663425) (xy 3.75347 0.606147) (xy 3.883825 0.532326) (xy 3.994434 0.441392) (xy 4.086135 0.332778) (xy 4.15977 0.205915) (xy 4.213539 0.068648) (xy 4.227187 0.024863) (xy 4.239073 -0.016141) (xy 4.249334 -0.056569) (xy 4.258113 -0.09863) (xy 4.265548 -0.144531) (xy 4.27178 -0.19648) (xy 4.27695 -0.256685) (xy 4.281196 -0.327352) (xy 4.28466 -0.410689) (xy 4.287481 -0.508905) (xy 4.2898 -0.624205) (xy 4.291757 -0.758799) (xy 4.293491 -0.914893) (xy 4.295143 -1.094695) (xy 4.296324 -1.235676) (xy 4.30427 -2.203622) (xy 4.355756 -2.29677) (xy 4.380137 -2.341645) (xy 4.39828 -2.376501) (xy 4.406935 -2.395054) (xy 4.407243 -2.396311) (xy 4.394014 -2.397749) (xy 4.356326 -2.399074) (xy 4.297183 -2.400249) (xy 4.219586 -2.401237) (xy 4.126536 -2.401999) (xy 4.021035 -2.4025) (xy 3.906084 -2.402701) (xy 3.892378 -2.402703) (xy 3.377513 -2.402703) (xy 3.377513 -2.286) (xy 3.376635 -2.23326) (xy 3.374292 -2.192926) (xy 3.370921 -2.1713) (xy 3.369431 -2.169298) (xy 3.355804 -2.177683) (xy 3.327757 -2.199692) (xy 3.291303 -2.230601) (xy 3.290485 -2.231316) (xy 3.223962 -2.280843) (xy 3.139948 -2.330575) (xy 3.047937 -2.375626) (xy 2.957421 -2.41111) (xy 2.917567 -2.423236) (xy 2.838255 -2.438637) (xy 2.740935 -2.448465) (xy 2.634516 -2.45258) (xy 2.527907 -2.450841) (xy 2.430017 -2.443108) (xy 2.361513 -2.431981) (xy 2.19352 -2.382648) (xy 2.042281 -2.312342) (xy 1.908782 -2.221933) (xy 1.794006 -2.112295) (xy 1.698937 -1.984299) (xy 1.62456 -1.838818) (xy 1.592474 -1.750541) (xy 1.572365 -1.664739) (xy 1.559038 -1.561736) (xy 1.552872 -1.451034) (xy 1.553074 -1.434925) (xy 2.481648 -1.434925) (xy 2.489348 -1.517184) (xy 2.514989 -1.585546) (xy 2.562378 -1.64897) (xy 2.580579 -1.667567) (xy 2.645282 -1.717846) (xy 2.720066 -1.750056) (xy 2.809662 -1.765648) (xy 2.904012 -1.766796) (xy 2.993501 -1.759216) (xy 3.062018 -1.744389) (xy 3.091775 -1.733253) (xy 3.145408 -1.702904) (xy 3.202235 -1.660221) (xy 3.254082 -1.612317) (xy 3.292778 -1.566301) (xy 3.303054 -1.549421) (xy 3.311042 -1.525782) (xy 3.316721 -1.488168) (xy 3.320356 -1.432985) (xy 3.322211 -1.35664) (xy 3.322594 -1.283981) (xy 3.322335 -1.19927) (xy 3.321287 -1.138018) (xy 3.319045 -1.096227) (xy 3.315206 -1.069899) (xy 3.309365 -1.055035) (xy 3.301118 -1.047639) (xy 3.298567 -1.046461) (xy 3.2764 -1.042833) (xy 3.23268 -1.039866) (xy 3.173311 -1.037827) (xy 3.104196 -1.036983) (xy 3.089189 -1.036982) (xy 2.996805 -1.038457) (xy 2.925432 -1.042842) (xy 2.868719 -1.050738) (xy 2.821872 -1.06227) (xy 2.705669 -1.106215) (xy 2.614543 -1.160243) (xy 2.547705 -1.225219) (xy 2.504365 -1.302005) (xy 2.483734 -1.391467) (xy 2.481648 -1.434925) (xy 1.553074 -1.434925) (xy 1.554244 -1.342133) (xy 1.563532 -1.244536) (xy 1.570777 -1.205105) (xy 1.617039 -1.058701) (xy 1.687384 -0.923995) (xy 1.780484 -0.80228) (xy 1.895012 -0.694847) (xy 2.02964 -0.602988) (xy 2.18304 -0.527996) (xy 2.313459 -0.482458) (xy 2.400623 -0.458533) (xy 2.483996 -0.439943) (xy 2.568976 -0.426084) (xy 2.660965 -0.416351) (xy 2.765362 -0.410141) (xy 2.887568 -0.406851) (xy 2.998055 -0.405924) (xy 3.325677 -0.405027) (xy 3.319401 -0.306547) (xy 3.301579 -0.199695) (xy 3.263667 -0.107852) (xy 3.20728 -0.03331) (xy 3.134031 0.021636) (xy 3.069535 0.048448) (xy 2.977123 0.065346) (xy 2.867111 0.067773) (xy 2.744656 0.056622) (xy 2.614914 0.03279) (xy 2.483042 -0.00283) (xy 2.354198 -0.049343) (xy 2.260566 -0.091883) (xy 2.215517 -0.113728) (xy 2.181156 -0.128984) (xy 2.163681 -0.134937) (xy 2.162733 -0.134746) (xy 2.156703 -0.121412) (xy 2.141645 -0.086068) (xy 2.118977 -0.032101) (xy 2.090115 0.037104) (xy 2.056477 0.11816) (xy 2.022284 0.200882) (xy 1.885586 0.532197) (xy 1.98282 0.548167) (xy 2.024964 0.55618) (xy 2.088319 0.569639) (xy 2.167457 0.587321) (xy 2.256951 0.608004) (xy 2.351373 0.630468) (xy 2.388973 0.639597) (xy 2.551637 0.677326) (xy 2.69405 0.705612) (xy 2.821527 0.725028) (xy 2.939384 0.736146) (xy 3.052938 0.739536) (xy 3.167505 0.735771) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "08f053ca-1cab-4aca-be4d-ac8071dc52ff") ) (fp_poly (pts (xy -5.955743 2.526311) (xy -5.69122 2.526275) (xy -5.568088 2.52627) (xy -3.597189 2.52627) (xy -3.597189 2.41009) (xy -3.584789 2.268709) (xy -3.547364 2.138316) (xy -3.484577 2.018138) (xy -3.396094 1.907398) (xy -3.366157 1.877489) (xy -3.258466 1.792652) (xy -3.139725 1.730779) (xy -3.01346 1.691841) (xy -2.883197 1.67581) (xy -2.752465 1.682658) (xy -2.624788 1.712357) (xy -2.503695 1.76488) (xy -2.392712 1.840197) (xy -2.342868 1.885637) (xy -2.249983 1.997048) (xy -2.181873 2.119565) (xy -2.139129 2.251785) (xy -2.122347 2.392308) (xy -2.122124 2.406133) (xy -2.121244 2.526266) (xy -2.068443 2.526268) (xy -2.021604 2.519911) (xy -1.978817 2.504444) (xy -1.975989 2.502846) (xy -1.966325 2.497832) (xy -1.957451 2.493927) (xy -1.949335 2.489993) (xy -1.941943 2.484894) (xy -1.935245 2.477492) (xy -1.929208 2.466649) (xy -1.923801 2.451228) (xy -1.91899 2.430091) (xy -1.914745 2.402101) (xy -1.911032 2.366121) (xy -1.907821 2.321013) (xy -1.905078 2.26564) (xy -1.902772 2.198863) (xy -1.900871 2.119547) (xy -1.899342 2.026553) (xy -1.898154 1.918743) (xy -1.897274 1.794981) (xy -1.89667 1.654129) (xy -1.896311 1.49505) (xy -1.896165 1.316605) (xy -1.896198 1.117658) (xy -1.89638 0.897071) (xy -1.896677 0.653707) (xy -1.897059 0.386428) (xy -1.897492 0.094097) (xy -1.897945 -0.224424) (xy -1.897998 -0.26323) (xy -1.898404 -0.583782) (xy -1.898749 -0.878012) (xy -1.899069 -1.147056) (xy -1.8994 -1.392052) (xy -1.899779 -1.614137) (xy -1.900243 -1.814447) (xy -1.900828 -1.994119) (xy -1.90157 -2.15429) (xy -1.902506 -2.296098) (xy -1.903673 -2.420679) (xy -1.905107 -2.52917) (xy -1.906844 -2.622707) (xy -1.908922 -2.702429) (xy -1.911376 -2.769472) (xy -1.914244 -2.824973) (xy -1.917561 -2.870068) (xy -1.921364 -2.905895) (xy -1.92569 -2.933591) (xy -1.930575 -2.954293) (xy -1.936055 -2.969137) (xy -1.942168 -2.97926) (xy -1.94895 -2.9858) (xy -1.956437 -2.989893) (xy -1.964666 -2.992676) (xy -1.973673 -2.995287) (xy -1.983495 -2.998862) (xy -1.985894 -2.99995) (xy -1.993435 -3.002396) (xy -2.006056 -3.004642) (xy -2.024859 -3.006698) (xy -2.050947 -3.008572) (xy -2.085422 -3.010271) (xy -2.129385 -3.011803) (xy -2.183939 -3.013177) (xy -2.250185 -3.0144) (xy -2.329226 -3.015481) (xy -2.422163 -3.016427) (xy -2.530099 -3.017247) (xy -2.654136 -3.017947) (xy -2.795376 -3.018538) (xy -2.954921 -3.019025) (xy -3.133872 -3.019419) (xy -3.333332 -3.019725) (xy -3.554404 -3.019953) (xy -3.798188 -3.02011) (xy -4.065787 -3.020205) (xy -4.358303 -3.020245) (xy -4.676839 -3.020238) (xy -4.780021 -3.020228) (xy -5.105623 -3.020176) (xy -5.404881 -3.020091) (xy -5.678909 -3.019963) (xy -5.928824 -3.019785) (xy -6.15574 -3.019548) (xy -6.360773 -3.019242) (xy -6.545038 -3.01886) (xy -6.70965 -3.018392) (xy -6.855725 -3.01783) (xy -6.984376 -3.017165) (xy -7.096721 -3.016388) (xy -7.193874 -3.015491) (xy -7.27695 -3.014465) (xy -7.347064 -3.013301) (xy -7.405332 -3.011991) (xy -7.452869 -3.010525) (xy -7.49079 -3.008896) (xy -7.52021 -3.007093) (xy -7.542245 -3.00511) (xy -7.55801 -3.002936) (xy -7.56862 -3.000563) (xy -7.574404 -2.998391) (xy -7.584684 -2.994056) (xy -7.594122 -2.990859) (xy -7.602755 -2.987665) (xy -7.610619 -2.983338) (xy -7.617748 -2.976744) (xy -7.624179 -2.966747) (xy -7.629947 -2.952212) (xy -7.635089 -2.932003) (xy -7.63964 -2.904985) (xy -7.643635 -2.870023) (xy -7.647111 -2.825981) (xy -7.650102 -2.771724) (xy -7.652646 -2.706117) (xy -7.654777 -2.628024) (xy -7.656532 -2.53631) (xy -7.657945 -2.42984) (xy -7.658315 -2.388973) (xy -7.291884 -2.388973) (xy -5.996734 -2.388973) (xy -6.021655 -2.351217) (xy -6.046447 -2.312417) (xy -6.06744 -2.275469) (xy -6.084935 -2.237788) (xy -6.09923 -2.196788) (xy -6.110623 -2.149883) (xy -6.119413 -2.094487) (xy -6.125898 -2.028016) (xy -6.130377 -1.947883) (xy -6.13315 -1.851502) (xy -6.134513 -1.736289) (xy -6.134767 -1.599657) (xy -6.134209 -1.43902) (xy -6.133893 -1.379382) (xy -6.130325 -0.740041) (xy -5.725298 -1.291449) (xy -5.610554 -1.447876) (xy -5.511143 -1.584088) (xy -5.42599 -1.70189) (xy -5.354022 -1.803084) (xy -5.294166 -1.889477) (xy -5.245348 -1.962874) (xy -5.206495 -2.025077) (xy -5.176534 -2.077893) (xy -5.154391 -2.123125) (xy -5.138993 -2.162578) (xy -5.129266 -2.198058) (xy -5.124137 -2.231368) (xy -5.122532 -2.264313) (xy -5.123379 -2.298697) (xy -5.123595 -2.303019) (xy -5.128054 -2.389031) (xy -3.708692 -2.388973) (xy -3.814265 -2.282522) (xy -3.842913 -2.253406) (xy -3.87009 -2.225076) (xy -3.896989 -2.195968) (xy -3.924803 -2.16452) (xy -3.954725 -2.129169) (xy -3.987946 -2.088354) (xy -4.025661 -2.040511) (xy -4.06906 -1.984079) (xy -4.119338 -1.917494) (xy -4.177688 -1.839195) (xy -4.2453 -1.747619) (xy -4.323369 -1.641204) (xy -4.413088 -1.518387) (xy -4.515648 -1.377605) (xy -4.632242 -1.217297) (xy -4.727809 -1.085798) (xy -4.847749 -0.920596) (xy -4.95238 -0.776152) (xy -5.042648 -0.651094) (xy -5.119503 -0.544052) (xy -5.183891 -0.453654) (xy -5.236761 -0.378529) (xy -5.27906 -0.317304) (xy -5.311736 -0.26861) (xy -5.335738 -0.231074) (xy -5.352013 -0.203325) (xy -5.361508 -0.183992) (xy -5.365173 -0.171703) (xy -5.364071 -0.165242) (xy -5.350724 -0.148048) (xy -5.321866 -0.111655) (xy -5.27924 -0.058224) (xy -5.224585 0.010081) (xy -5.159644 0.091097) (xy -5.086158 0.18266) (xy -5.005868 0.282608) (xy -4.920515 0.388776) (xy -4.83184 0.499003) (xy -4.741586 0.611124) (xy -4.691944 0.672756) (xy -3.459373 0.672756) (xy -3.408146 0.580081) (xy -3.356919 0.487405) (xy -3.356919 -2.203622) (xy -3.408146 -2.296298) (xy -3.459373 -2.388973) (xy -2.853396 -2.388973) (xy -2.708734 -2.388931) (xy -2.589244 -2.388741) (xy -2.492642 -2.388308) (xy -2.416642 -2.387536) (xy -2.358957 -2.38633) (xy -2.317301 -2.384594) (xy -2.289389 -2.382232) (xy -2.272935 -2.37915) (xy -2.265652 -2.375251) (xy -2.265255 -2.37044) (xy -2.269458 -2.364622) (xy -2.269501 -2.364574) (xy -2.286813 -2.339532) (xy -2.309736 -2.298815) (xy -2.329981 -2.258168) (xy -2.368379 -2.176162) (xy -2.376211 0.672756) (xy -3.459373 0.672756) (xy -4.691944 0.672756) (xy -4.651493 0.722976) (xy -4.563302 0.832396) (xy -4.478754 0.937222) (xy -4.399592 1.035289) (xy -4.327556 1.124434) (xy -4.264387 1.202495) (xy -4.211827 1.267308) (xy -4.171617 1.31671) (xy -4.148 1.345513) (xy -4.05629 1.453222) (xy -3.96806 1.55042) (xy -3.886403 1.633924) (xy -3.81441 1.700552) (xy -3.763319 1.741401) (xy -3.702907 1.784865) (xy -5.092298 1.784865) (xy -5.091908 1.703334) (xy -5.095791 1.643394) (xy -5.11039 1.587823) (xy -5.132988 1.535145) (xy -5.147678 1.505385) (xy -5.163472 1.475897) (xy -5.181814 1.444724) (xy -5.204145 1.409907) (xy -5.231909 1.36949) (xy -5.266549 1.321514) (xy -5.309507 1.264022) (xy -5.362227 1.195057) (xy -5.426151 1.112661) (xy -5.502721 1.014876) (xy -5.593381 0.899745) (xy -5.699574 0.76531) (xy -5.711568 0.750141) (xy -6.130325 0.220588) (xy -6.134378 0.807078) (xy -6.135195 0.982749) (xy -6.135021 1.131468) (xy -6.133849 1.253725) (xy -6.131669 1.350011) (xy -6.128474 1.420817) (xy -6.124256 1.466631) (xy -6.122838 1.475321) (xy -6.100591 1.566865) (xy -6.071443 1.649392) (xy -6.038182 1.715747) (xy -6.0182 1.74389) (xy -5.983722 1.784865) (xy -6.637914 1.784865) (xy -6.793969 1.784731) (xy -6.924467 1.784297) (xy -7.03131 1.783511) (xy -7.116398 1.782324) (xy -7.181635 1.780683) (xy -7.228921 1.778539) (xy -7.260157 1.775841) (xy -7.277246 1.772538) (xy -7.282088 1.768579) (xy -7.281753 1.767702) (xy -7.267885 1.746769) (xy -7.244732 1.713588) (xy -7.232754 1.696807) (xy -7.220369 1.68006) (xy -7.209237 1.665085) (xy -7.199288 1.650406) (xy -7.190451 1.634551) (xy -7.182657 1.616045) (xy -7.175835 1.593415) (xy -7.169916 1.565187) (xy -7.164829 1.529887) (xy -7.160504 1.486042) (xy -7.156871 1.432178) (xy -7.15386 1.36682) (xy -7.151401 1.288496) (xy -7.149423 1.195732) (xy -7.147858 1.087053) (xy -7.146634 0.960987) (xy -7.145681 0.816058) (xy -7.14493 0.650794) (xy -7.144311 0.463721) (xy -7.143752 0.253365) (xy -7.143185 0.018252) (xy -7.142655 -0.197741) (xy -7.142155 -0.438535) (xy -7.141895 -0.668274) (xy -7.141868 -0.885493) (xy -7.142067 -1.088722) (xy -7.142486 -1.276496) (xy -7.143118 -1.447345) (xy -7.143956 -1.599803) (xy -7.144992 -1.732403) (xy -7.14622 -1.843676) (xy -7.147633 -1.932156) (xy -7.149225 -1.996375) (xy -7.150987 -2.034865) (xy -7.151321 -2.038933) (xy -7.163466 -2.132248) (xy -7.182427 -2.20719) (xy -7.211302 -2.272594) (xy -7.25319 -2.337293) (xy -7.258429 -2.344352) (xy -7.291884 -2.388973) (xy -7.658315 -2.388973) (xy -7.659054 -2.307479) (xy -7.659893 -2.16809) (xy -7.660498 -2.010539) (xy -7.660905 -1.833691) (xy -7.66115 -1.63641) (xy -7.661267 -1.41756) (xy -7.661295 -1.176007) (xy -7.661267 -0.910615) (xy -7.66122 -0.620249) (xy -7.66119 -0.303773) (xy -7.661189 -0.240946) (xy -7.661172 0.078863) (xy -7.661112 0.372339) (xy -7.661002 0.64061) (xy -7.660833 0.884802) (xy -7.660597 1.106043) (xy -7.660284 1.30546) (xy -7.659885 1.48418) (xy -7.659393 1.643329) (xy -7.658797 1.784034) (xy -7.65809 1.907424) (xy -7.657263 2.014624) (xy -7.656307 2.106762) (xy -7.655213 2.184965) (xy -7.653973 2.250359) (xy -7.652578 2.304072) (xy -7.651018 2.347231) (xy -7.649286 2.380963) (xy -7.647372 2.406395) (xy -7.645268 2.424653) (xy -7.642966 2.436866) (xy -7.640455 2.444159) (xy -7.640363 2.444341) (xy -7.635192 2.455482) (xy -7.630885 2.465569) (xy -7.626121 2.474654) (xy -7.619578 2.482788) (xy -7.609935 2.490024) (xy -7.595871 2.496414) (xy -7.576063 2.502011) (xy -7.549191 2.506867) (xy -7.513933 2.511034) (xy -7.468968 2.514564) (xy -7.412974 2.517509) (xy -7.344629 2.519923) (xy -7.262614 2.521856) (xy -7.165605 2.523362) (xy -7.052282 2.524492) (xy -6.921323 2.525298) (xy -6.771407 2.525834) (xy -6.601213 2.526151) (xy -6.409418 2.526301) (xy -6.194702 2.526337) (xy -5.955743 2.526311) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "a81fc762-9bb9-48c0-8cd4-3f399fb1e6a9") ) ) (gr_rect (start 164.41 117.09) (end 166.135 118.665) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a") ) (gr_rect (start 167.185 119.74) (end 170.66 121.34) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "4f929ae2-48f5-4477-ae85-53b87595350b") ) (gr_rect (start 164.31 116.99) (end 170.71 121.39) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.SilkS") (uuid "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e") ) (gr_rect (start 167.185 117.09) (end 170.66 118.69) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cbfcf842-ae79-48e8-8439-be79bc4d3d3b") ) (gr_rect (start 164.41 119.74) (end 166.135 121.34) (stroke (width 0.15) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "cf7a1173-45eb-49f7-92cb-0fcb446fcd83") ) (gr_rect (start 103.75 72.6) (end 139.25 119.6) (stroke (width 0.15) (type default) ) (fill none) (layer "Dwgs.User") (uuid "693e3c5b-fe60-4339-a5ea-dc1e8a9f1d2a") ) (gr_line (start 167.5 135.5) (end 42.5 135.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "2c7b3573-bac5-47d3-b299-6dfb2ac5593e") ) (gr_line (start 80.4 95) (end 88.7 95) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "306e60d7-6bad-4f84-ab78-5e252d0cdaec") ) (gr_line (start 37.5 130.5) (end 37.5 59) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "3a341901-4599-44f7-b5f7-bd505a2243f0") ) (gr_arc (start 80.4 109.4) (mid 79.834315 109.165685) (end 79.6 108.6) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "42680025-3ddd-4ce9-812b-6c53966adcf8") ) (gr_arc (start 37.5 59) (mid 38.964466 55.464466) (end 42.5 54) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "6ff94a57-ef21-4e17-8509-208328b9cad1") ) (gr_arc (start 88.7 95) (mid 89.265685 95.234315) (end 89.5 95.8) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "84186294-131c-441e-a634-b464a4262ee9") ) (gr_line (start 42.5 54) (end 167.5 54) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "91128ecb-2649-4d0f-96ca-569df696b34f") ) (gr_arc (start 172.5 130.5) (mid 171.035534 134.035534) (end 167.5 135.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "9f4ca102-edda-484d-9e77-9169b2b32a8f") ) (gr_line (start 89.5 95.8) (end 89.5 108.6) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "b28dd4d8-0b33-4c9e-a730-ec162ed73550") ) (gr_arc (start 42.5 135.5) (mid 38.964466 134.035534) (end 37.5 130.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "d890b947-ae68-4d42-96d5-05f405e8578c") ) (gr_line (start 79.6 108.6) (end 79.6 95.8) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db6d91d4-3bed-48a0-ad10-421190cd937a") ) (gr_line (start 88.7 109.4) (end 80.4 109.4) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "db736a94-38b1-4c57-9ace-a27bfb574f55") ) (gr_line (start 172.5 59) (end 172.5 130.5) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "e45ac9f9-41a4-4dff-bb00-c5ae46a84260") ) (gr_arc (start 79.6 95.8) (mid 79.834315 95.234315) (end 80.4 95) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "edc3c0d1-6a9a-42cb-b5b2-5a42e4aa0055") ) (gr_arc (start 89.5 108.6) (mid 89.265685 109.165685) (end 88.7 109.4) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "ee0b9580-0014-44b0-9235-2368f5c231a1") ) (gr_arc (start 167.5 54) (mid 171.035534 55.464466) (end 172.5 59) (stroke (width 0.1) (type solid) ) (layer "Edge.Cuts") (uuid "fc9f96fb-a5c2-4557-81ab-8e77de99e21c") ) (gr_text "3.3V" (at 54.7 55.9 180) (layer "F.SilkS") (uuid "005e0d8d-b943-464e-af2c-f96930a8ff84") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 117.7 77.2 270) (layer "F.SilkS") (uuid "007d30f6-86c1-49e3-a5f9-b749566f6bca") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 63.6 55.9 180) (layer "F.SilkS") (uuid "07e9c79f-3c76-46e7-aa40-281cd164254e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN4" (at 139 55.1 180) (layer "F.SilkS") (uuid "09d46638-717b-4f06-8956-78beef429796") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MOSI" (at 62.85 122.3 0) (layer "F.SilkS") (uuid "0e4ef755-d9fd-48c8-9488-bc6c5c2a8ac9") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "FAN3" (at 155.15 83.9 90) (layer "F.SilkS") (uuid "0f08db72-3aa7-48d6-ab52-ba1cc6a7be0e") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 107.1 118.4 0) (layer "F.SilkS") (uuid "11a5c39c-67a1-4a35-a620-07830da62f1a") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "BL" (at 62 127.4 0) (layer "F.SilkS") (uuid "1336eb56-8228-44d2-93dd-7580fb59ac5f") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "DC" (at 55 119.75 0) (layer "F.SilkS") (uuid "193bd39b-325a-4c18-b482-f13f84a4ca53") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "5V" (at 59.1 55.9 180) (layer "F.SilkS") (uuid "1a0ae3a6-83b0-4211-b4fd-9efadc0316e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "LCD (SPI)" (at 58.55 132.45 0) (layer "F.SilkS") (uuid "1d5d486f-d490-46c7-b170-3c9283908ef2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 155.15 78.1 90) (layer "F.SilkS") (uuid "1f75ab75-4b08-4b8f-9cf7-c51aadce2209") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FanPico-0804D v1.3(b)\nby Timo Kokkonen \n\n2024-08-29\n" (at 154.31 59.43 0) (layer "F.SilkS") (uuid "21b2d000-a302-44cb-bc67-350475ec7fc7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "I2C (OLED)" (at 128 77.4 90) (layer "F.SilkS") (uuid "221f59e5-7968-4694-b589-cb77729039b5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN6" (at 159.7 97.75 90) (layer "F.SilkS") (uuid "24da94ac-4f72-42af-a3fd-d82c2aa7a4c5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCL" (at 122.8 77.2 270) (layer "F.SilkS") (uuid "2676dea4-7bcf-4e80-a607-17f77dca3c53") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 62.6 129.95 0) (layer "F.SilkS") (uuid "2752f2ed-b451-453d-b473-4e5067f7a7f4") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "TX" (at 39.878 125 0) (layer "F.SilkS") (uuid "27faad38-2e22-45fb-a99c-5be64b840c33") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 103.7 108.9 0) (layer "F.SilkS") (uuid "293c96f8-a9f5-4847-9ff2-69da0a5bc600") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "-" (at 53.68 72.14 0) (layer "F.SilkS") (uuid "2b55741a-854a-49e9-885e-7cbc331cdd75") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "100k" (at 85.05 69.25 180) (layer "F.SilkS") (uuid "2bfb7be8-f767-41db-a14a-fc33aa1433e4") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (gr_text "100k" (at 93.9 69.25 180) (layer "F.SilkS") (uuid "2f39447e-493d-4968-8852-b8800a708731") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (gr_text "kokkonen.net/fanpico/" (at 92.2 102.2 90) (layer "F.SilkS") (uuid "31e38805-9300-46a1-ae3d-e0445fabc435") (effects (font (size 1.2 1.2) (thickness 0.15) ) ) ) (gr_text "GND" (at 39.37 119.9 0) (layer "F.SilkS") (uuid "3ce321c4-e665-475a-93bf-17b3c0502f24") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 118.4 118.4 0) (layer "F.SilkS") (uuid "3f417c48-d3f8-42c4-bf5b-06aefa175d4e") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 117.6 83.7 270) (layer "F.SilkS") (uuid "420b1770-969f-4a00-a46e-4c51690adcc6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RX" (at 39.878 122.4 0) (layer "F.SilkS") (uuid "42125ff3-0237-4fef-b843-40aa0ddb4ce6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 82.3 56.6 180) (layer "F.SilkS") (uuid "4416ed46-3141-4f6f-ac61-feb10f872ed6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "VDD" (at 39.6 79.7 0) (layer "F.SilkS") (uuid "4a194de1-6a0f-4d35-89c8-764c3dab239e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 39.5 84.8 0) (layer "F.SilkS") (uuid "4a611a01-3e11-4e6e-88b3-e35555780307") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX POWER" (at 48.63 63.01 180) (layer "F.SilkS") (uuid "4d864871-6255-4aed-9ed6-3bed961863e1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN8" (at 171.75 75.25 90) (layer "F.SilkS") (uuid "4dba8982-b778-4f6b-a90e-5fb42497c964") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN3\n" (at 127.5 63 180) (layer "F.SilkS") (uuid "4ea1b991-35dc-4395-9155-35b9725ef261") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MAIN" (at 68.3 55.9 180) (layer "F.SilkS") (uuid "505dc531-e51f-4ba8-a306-ccf4559d5432") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "GND" (at 62.6 124.85 0) (layer "F.SilkS") (uuid "527dbd45-2e9d-40a3-b552-180a78071de5") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 104.1 134.5 0) (layer "F.SilkS") (uuid "52f85727-5cd9-4c74-8650-a3c0fa37a688") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCL" (at 122.7 83.7 270) (layer "F.SilkS") (uuid "5751fc55-595d-46bf-9868-259462c3d843") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "RST" (at 54.55 127.4 0) (layer "F.SilkS") (uuid "5cc6ca66-4f00-47f3-aa0f-c7bb5a4eb1c9") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "AUX" (at 67 65.7 180) (layer "F.SilkS") (uuid "5d057e35-b67e-4817-b3c2-a0faa509c19c") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN3" (at 127.1 134.5 0) (layer "F.SilkS") (uuid "5e499852-b518-49d2-a1ed-8042c9891343") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 155.15 100.6 90) (layer "F.SilkS") (uuid "5e9abfec-56ff-444e-9cb7-102616692681") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "GND" (at 120.1 83.7 270) (layer "F.SilkS") (uuid "6391ca69-bd03-4296-acae-3e34074f3c4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SENSOR1" (at 82.3 64.6 180) (layer "F.SilkS") (uuid "66dd6af7-4245-4df4-9421-4f19ff9b02b1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "SCK" (at 54.55 122.3 0) (layer "F.SilkS") (uuid "6c280c69-12c9-4318-884e-366e922855fe") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "FAN7" (at 171.75 86.5 90) (layer "F.SilkS") (uuid "6d7a4604-f694-46e1-a968-2fdc0236f281") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN6" (at 171.75 97.75 90) (layer "F.SilkS") (uuid "6fd223b5-d34a-4711-8e81-84e4179ec501") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 135.7 118.4 0) (layer "F.SilkS") (uuid "72c5ec79-e9f0-4bdd-95ee-dc4dcc32d957") (effects (font (size 0.74 0.75) (thickness 0.15) ) ) ) (gr_text "5V" (at 55 129.95 0) (layer "F.SilkS") (uuid "76541060-2f2b-4887-a2bc-2422e3edb0e4") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "FAN3" (at 129.9 118.4 0) (layer "F.SilkS") (uuid "77420fc6-2d27-4b9f-9f9d-f4f27745e35a") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN8" (at 159.7 75.25 90) (layer "F.SilkS") (uuid "784ec69c-e809-470f-b569-03b089dc58ec") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "10k" (at 88.45 69.25 180) (layer "F.SilkS") (uuid "7bfdc9ed-85ce-48c6-9880-10ab6eb6c9af") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (gr_text "AUX" (at 101.6 118.4 0) (layer "F.SilkS") (uuid "7d3704b4-fc17-4b2a-ac4d-0e31a099b6b7") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 115.2 108.9 0) (layer "F.SilkS") (uuid "7d929019-0653-48b0-b8c3-fe7247739f05") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 138.3 108.9 0) (layer "F.SilkS") (uuid "7fe752dd-4bbf-4450-b28b-0b0a16fded4a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "DQ" (at 39.9 82.3 0) (layer "F.SilkS") (uuid "81c48956-7627-480f-854f-ba447c5ab7e4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 62.5 119.75 0) (layer "F.SilkS") (uuid "8338491e-fd34-4b0a-b60a-c02fb7a2d7a1") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "SDA" (at 125.2 83.7 270) (layer "F.SilkS") (uuid "8353de0a-06d2-4ccf-a8b6-3012880c7e68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN4" (at 139 63 180) (layer "F.SilkS") (uuid "88ae8354-f5e2-46bd-9219-b43b2c65fd78") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "1-WIRE" (at 48.514 81.534 270) (layer "F.SilkS") (uuid "8f4991e8-dc19-4b53-a487-54d392c6de4b") (effects (font (size 1 0.9) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "RESET" (at 156.2 134.4 0) (layer "F.SilkS") (uuid "916e8d4c-532d-4061-9c96-c2e65884e105") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 72.35 65.7 180) (layer "F.SilkS") (uuid "9254a345-3c96-4aab-ab4c-c4747c02eb39") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "MB FAN1" (at 104.5 55.1 180) (layer "F.SilkS") (uuid "9467ef23-52d1-4b0c-a385-f3384107a043") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "10k" (at 79.6 69.25 180) (layer "F.SilkS") (uuid "9e3863f9-4fac-4ea3-a937-dec002d7bc1e") (effects (font (size 0.8 0.8) (thickness 0.15) ) ) ) (gr_text "SENSOR2" (at 91.1 56.6 180) (layer "F.SilkS") (uuid "a0c22e18-cc4b-46fd-8af9-c6618f778cf6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Vcc" (at 120.2 77.3 270) (layer "F.SilkS") (uuid "a14d324c-efcf-4b64-b370-05bb3d3c125e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 141.1 118.4 0) (layer "F.SilkS") (uuid "a6563a89-59f1-4ce1-a80e-2dae1dfbbb77") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN5" (at 159.7 109 90) (layer "F.SilkS") (uuid "aebcf015-6cd1-44b0-a980-1232d83d75fa") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "CS" (at 55 124.85 0) (layer "F.SilkS") (uuid "af88dd25-87d0-45e5-88f7-bea88f57ac49") (effects (font (size 0.9 0.9) (thickness 0.15) ) ) ) (gr_text "FAN5" (at 171.75 109 90) (layer "F.SilkS") (uuid "afdeb3aa-3922-4312-add7-d7b04b7cb4e3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 138.7 134.5 0) (layer "F.SilkS") (uuid "b37072bc-4cc6-449d-8ad2-cadefb35af34") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 115.6 134.5 0) (layer "F.SilkS") (uuid "b7a4a365-c104-4c82-86fb-5b19560a6eb0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN3" (at 126.7 108.9 0) (layer "F.SilkS") (uuid "bcaf5622-a67d-42c9-bc38-f553924017a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "+" (at 53.67 66.13 0) (layer "F.SilkS") (uuid "bcc0281b-b4f5-4240-95c6-62cc18a71cfe") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "SDA" (at 125.3 77.2 270) (layer "F.SilkS") (uuid "c036e583-b1a3-4250-8952-b3e83cab65c9") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 113 118.4 0) (layer "F.SilkS") (uuid "c9da14dd-a2f6-496d-accb-9527cd6e9c3a") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "MB FAN3\n" (at 127.5 55.1 180) (layer "F.SilkS") (uuid "ce5ed2dc-0c8c-4975-881e-ef9c87e4f2d6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN1" (at 104.95 63 180) (layer "F.SilkS") (uuid "ce7d8359-3eaa-47be-b682-6f8f43d6c2a7") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "12V 3A" (at 55.8 66.05 -90) (layer "F.SilkS") (uuid "cfe8001a-58e7-4914-bbb1-408bc6b36b56") (effects (font (size 1 1) (thickness 0.15) ) (justify left bottom) ) ) (gr_text "SENSOR2" (at 91.1 64.6 180) (layer "F.SilkS") (uuid "d3168e5a-881c-4c53-a21f-a85a6828c456") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "MB FAN2" (at 116 55.1 180) (layer "F.SilkS") (uuid "d52b3d32-801d-4524-8c5e-561d010e2806") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FanPico-0804D" (at 65 107.2 0) (layer "F.SilkS") (uuid "debf45ec-e862-4f94-8c02-30d17d9a3c5d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "Main Power" (at 69.8 61.3 180) (layer "F.SilkS") (uuid "df574e9b-8f32-40e3-99f8-a0619b978e00") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 124.5 118.4 0) (layer "F.SilkS") (uuid "dfb43a58-960b-4fd3-8dff-c9399c3f7bb7") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "Serial (TTL)" (at 45.212 122.428 270) (layer "F.SilkS") (uuid "e2a98e6b-c242-4852-88b0-912e1ae71965") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN1" (at 155.15 106.45 90) (layer "F.SilkS") (uuid "e35f9582-cd8e-4f05-a05a-9113aa4ee893") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "USB" (at 50.2 55.9 180) (layer "F.SilkS") (uuid "eaece356-bd32-4b59-977f-c84615c36577") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN4" (at 155.15 72.75 90) (layer "F.SilkS") (uuid "eccb0fdd-7dae-49e4-868a-c4ac45cbddec") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "AUX" (at 155.15 111.9 90) (layer "F.SilkS") (uuid "ef345b7f-b1c0-4be2-ab00-624df87f1ad9") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "MB FAN2" (at 116 63 180) (layer "F.SilkS") (uuid "f40bd020-88ef-4007-ae6b-4e6572e8be48") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "FAN7" (at 159.7 86.5 90) (layer "F.SilkS") (uuid "fbc280c6-fe68-4714-ab83-c2c8c136047a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (gr_text "AUX" (at 155.15 89.3 90) (layer "F.SilkS") (uuid "fbe7d685-962d-4fc0-8357-884fe30d4460") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (gr_text "FAN2" (at 155.15 95.2 90) (layer "F.SilkS") (uuid "fc84f0b4-f5ed-4f4e-a6a2-d863a0189320") (effects (font (size 0.75 0.75) (thickness 0.15) ) ) ) (segment (start 66 85.1) (end 72.80625 85.1) (width 0.5) (layer "F.Cu") (net 1) (uuid "046c6fc2-ab16-40fe-8421-f518a309ee11") ) (segment (start 81.549999 122.215) (end 81.324999 122.44) (width 0.2) (layer "F.Cu") (net 1) (uuid "15ad9043-9739-4ccb-bf51-f23f62597bfd") ) (segment (start 57.7 74) (end 63.25 74) (width 0.25) (layer "F.Cu") (net 1) (uuid "38bcddfe-3e32-4633-84a1-173ec36b7a61") ) (segment (start 65.6 77.4) (end 64.6 76.4) (width 0.5) (layer "F.Cu") (net 1) (uuid "6ff808ec-3f68-44b7-a0f3-a07d86688516") ) (segment (start 57 73.3) (end 57.7 74) (width 0.25) (layer "F.Cu") (net 1) (uuid "793b9f41-0a2c-457e-bc56-c672d6f7ff68") ) (segment (start 60.1 62.1) (end 57 65.2) (width 0.25) (layer "F.Cu") (net 1) (uuid "7d09b660-0636-403a-a6fc-fdc01de78336") ) (segment (start 65.6 84.7) (end 65.6 77.4) (width 0.5) (layer "F.Cu") (net 1) (uuid "7e7bf0c1-bf18-45ed-b3d8-a14bdc162789") ) (segment (start 81.7525 120.5) (end 81.7525 119.2625) (width 0.2) (layer "F.Cu") (net 1) (uuid "8086d434-631a-4e04-9bd5-0dc07e5cda0b") ) (segment (start 81.712499 120.5) (end 81.549999 120.6625) (width 0.2) (layer "F.Cu") (net 1) (uuid "99d85977-9fd3-4b28-8efa-96c12ddde8e5") ) (segment (start 63.25 74) (end 64.6 75.35) (width 0.25) (layer "F.Cu") (net 1) (uuid "a10401c4-3339-4d79-accc-673382f1b712") ) (segment (start 72.30625 122.00875) (end 72.30625 120.5) (width 0.2) (layer "F.Cu") (net 1) (uuid "a2926176-fd8c-4495-82b3-b58aac979931") ) (segment (start 79.9 117.41) (end 81.69 119.2) (width 0.2) (layer "F.Cu") (net 1) (uuid "bd7326f2-1de9-4b9d-88db-628ad53bdf18") ) (segment (start 71.875 122.44) (end 72.30625 122.00875) (width 0.2) (layer "F.Cu") (net 1) (uuid "c29bcaee-7155-4468-914a-426e0bee26de") ) (segment (start 72.30625 120.5) (end 72.14375 120.6625) (width 0.2) (layer "F.Cu") (net 1) (uuid "c3c463cc-72b6-43ee-9094-59f322a8e54d") ) (segment (start 81.549999 120.6625) (end 81.549999 122.215) (width 0.2) (layer "F.Cu") (net 1) (uuid "d75a383f-098e-45c6-9197-06e96473f14c") ) (segment (start 64.6 76.4) (end 64.6 75.35) (width 0.5) (layer "F.Cu") (net 1) (uuid "d832311a-c5cd-409d-a562-e7228c1c2e4f") ) (segment (start 70.15625 117.4) (end 70.44375 117.4) (width 0.2) (layer "F.Cu") (net 1) (uuid "d9da01dc-9332-4d21-af6e-b3a1daf89b0b") ) (segment (start 72.80625 85.1) (end 74.225 83.68125) (width 0.5) (layer "F.Cu") (net 1) (uuid "e6fb3a2d-5ccd-40df-abae-c4ef7310642f") ) (segment (start 66 85.1) (end 65.6 84.7) (width 0.5) (layer "F.Cu") (net 1) (uuid "e7eb2d8c-337b-4c19-9f4f-9032760d9043") ) (segment (start 79.2025 117.41) (end 79.9 117.41) (width 0.2) (layer "F.Cu") (net 1) (uuid "ea15906d-cf65-437b-a94b-f822328d6a73") ) (segment (start 72.2 119.15625) (end 72.2 120.39375) (width 0.2) (layer "F.Cu") (net 1) (uuid "f6723d2a-066c-4ff4-8d1c-adfe13bdb928") ) (segment (start 70.44375 117.4) (end 72.2 119.15625) (width 0.2) (layer "F.Cu") (net 1) (uuid "fb8f2d9d-1e59-4873-aa69-13c9858e1ea1") ) (segment (start 72.2 120.39375) (end 72.30625 120.5) (width 0.2) (layer "F.Cu") (net 1) (uuid "fc486227-3ce3-4cc1-8bfa-ebc537cebd2d") ) (segment (start 60.1 61.2) (end 60.1 62.1) (width 0.25) (layer "F.Cu") (net 1) (uuid "fe08f715-781b-4ee5-94c7-b40755aaf429") ) (via (at 66 85.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "672d0c93-ed4d-4107-b8cf-5762ca8183de") ) (via (at 57 65.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "a8530c74-f391-4b14-97d6-80d3bcc4a46a") ) (via (at 72.2 119.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "c68e048d-404c-4820-82a9-8bcc65442202") ) (via (at 81.7 119.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "c8123484-427b-47da-851f-ebdd1dd4c093") ) (via (at 57 73.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (uuid "e007ddf8-fccd-4e26-908c-e14f72f89c4b") ) (segment (start 57 65.2) (end 57 73.3) (width 0.25) (layer "B.Cu") (net 1) (uuid "70201fc0-1906-45ad-9731-2b3523b021d8") ) (segment (start 66 118) (end 67.2 119.2) (width 0.2) (layer "B.Cu") (net 1) (uuid "9182124a-5193-49ea-ae38-efa0149aa470") ) (segment (start 67.2 119.2) (end 67.3 119.2) (width 0.2) (layer "B.Cu") (net 1) (uuid "96adde74-10e5-463c-a088-a662d93a5a67") ) (segment (start 67.3 119.2) (end 81.7 119.2) (width 0.2) (layer "B.Cu") (net 1) (uuid "98dab920-64c9-4fdc-b786-2ef9008b5fce") ) (segment (start 66 85.1) (end 66 118) (width 0.2) (layer "B.Cu") (net 1) (uuid "cb271538-6c9b-4330-a2dc-ed8e4d7e5d7b") ) (segment (start 83.62 128.45) (end 83.62 125.27) (width 0.2) (layer "F.Cu") (net 2) (uuid "061ab7aa-f1bb-4a58-8fc4-5e94e5da8645") ) (segment (start 167.4 112.8) (end 165.6 112.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "06885a45-a66d-44df-b205-7ec231120acf") ) (segment (start 89.77 127.48) (end 88.5 128.75) (width 0.2) (layer "F.Cu") (net 2) (uuid "07134f05-32a7-4b7e-898e-a0f125b6fec9") ) (segment (start 166 101.5) (end 164.1 99.6) (width 0.75) (layer "F.Cu") (net 2) (uuid "0937504a-8530-43f8-bc50-850c676548b8") ) (segment (start 150.0625 121.8) (end 150.1125 121.75) (width 0.2) (layer "F.Cu") (net 2) (uuid "093ac6ba-2b65-4394-92d4-3269b170d78b") ) (segment (start 99.3 114.2) (end 99.3 123.7) (width 0.2) (layer "F.Cu") (net 2) (uuid "0a7785b4-90b7-41b5-953d-a6a3bd3cfbac") ) (segment (start 101.1 125.4625) (end 101.1 125.6) (width 0.2) (layer "F.Cu") (net 2) (uuid "0b5fd824-4a92-4bf6-b4ab-559ada7a39c6") ) (segment (start 112.7 125.5625) (end 112.7 125.7) (width 0.2) (layer "F.Cu") (net 2) (uuid "0ca01653-aa62-4d07-868d-e1a06431a578") ) (segment (start 89.3 126.8) (end 89.6 126.8) (width 0.2) (layer "F.Cu") (net 2) (uuid "0f34dd56-395e-44f3-9c6d-4c2a867dc5f2") ) (segment (start 123.4 129.9) (end 123.4 128.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "108391f9-62c6-40fa-a7b6-45855f29a944") ) (segment (start 93.825 87.545) (end 92.245 87.545) (width 0.25) (layer "F.Cu") (net 2) (uuid "13f8518d-006b-4614-8720-b16fc7efa144") ) (segment (start 111.9 129.9) (end 111.9 128.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "147567de-3fb3-4acd-be2a-96e10ee48944") ) (segment (start 164 77.1) (end 162.3 77.1) (width 0.75) (layer "F.Cu") (net 2) (uuid "1535ed48-0341-4ec2-85f1-42d350ba9802") ) (segment (start 111.9 128.8) (end 115.6 125.1) (width 0.75) (layer "F.Cu") (net 2) (uuid "156f558f-d44b-4023-8e48-5a5847b9c220") ) (segment (start 103.95 124.75) (end 104 124.75) (width 0.5) (layer "F.Cu") (net 2) (uuid "1644df5e-3a6e-44da-aab1-a0e851091059") ) (segment (start 89.8 126.3) (end 89.3 126.8) (width 0.2) (layer "F.Cu") (net 2) (uuid "19e75bbd-eb47-4cba-a367-c23d2477335c") ) (segment (start 90.28 127.48) (end 91.475 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "1b7e4124-42cd-4ef6-92bb-ecd53e91e25e") ) (segment (start 76.434999 130) (end 76.374999 130.06) (width 0.2) (layer "F.Cu") (net 2) (uuid "216445e2-3ed8-4a36-b8ed-212755df2bfd") ) (segment (start 96.25 113.5) (end 98.6 113.5) (width 0.2) (layer "F.Cu") (net 2) (uuid "22457644-6369-4f0c-8c10-5846c78704f4") ) (segment (start 84.049999 122.649999) (end 83.3 121.9) (width 0.2) (layer "F.Cu") (net 2) (uuid "244642e6-9052-4fe8-9757-97e44d36d0d1") ) (segment (start 91.475 123.67) (end 90.33 123.67) (width 0.2) (layer "F.Cu") (net 2) (uuid "270cd822-7461-4379-848f-cd56676380cb") ) (segment (start 93.825 86.275) (end 92.175 86.275) (width 0.25) (layer "F.Cu") (net 2) (uuid "2a0e57bc-0fd6-40f1-8579-6827f2301b72") ) (segment (start 135 128.85) (end 138.8 125.05) (width 0.75) (layer "F.Cu") (net 2) (uuid "313fa803-5666-4f4e-9393-e7de4b5268c1") ) (segment (start 91.9 87.2) (end 91.9 85) (width 0.25) (layer "F.Cu") (net 2) (uuid "325ce83f-9ec1-47c6-a89c-766837bd0e7a") ) (segment (start 70.18125 120.1) (end 69.4 120.1) (width 0.5) (layer "F.Cu") (net 2) (uuid "36e2fc3a-3ff4-4500-9cfd-e701a3ee26b1") ) (segment (start 91.9 86) (end 91.9 85) (width 0.25) (layer "F.Cu") (net 2) (uuid "38cdcecb-312e-49e0-92ba-57cc9934bbc4") ) (segment (start 147.5 96) (end 147.4 96.1) (width 0.2) (layer "F.Cu") (net 2) (uuid "3e817f95-5c41-4fb8-9cf6-d26aab3a8c44") ) (segment (start 117.95 69.75) (end 117.95 68.875) (width 0.25) (layer "F.Cu") (net 2) (uuid "418c11a2-feb1-4219-b114-bdb329a37ef8") ) (segment (start 96.25 110.3) (end 96.25 109.55) (width 0.2) (layer "F.Cu") (net 2) (uuid "44160b65-81ff-4e4c-aca1-a1e937b77afc") ) (segment (start 96.8 109) (end 106.9375 109) (width 0.2) (layer "F.Cu") (net 2) (uuid "457b39e7-6203-4b70-b6cf-068552eac331") ) (segment (start 79.1 119.8) (end 79.1 119.1025) (width 0.2) (layer "F.Cu") (net 2) (uuid "46d20a9c-1cc0-41a4-bcd2-06c526f84bc3") ) (segment (start 136 125.5625) (end 136 125.7) (width 0.2) (layer "F.Cu") (net 2) (uuid "49881167-11ef-4fe3-9774-6c788b2a1d7c") ) (segment (start 166 90.3) (end 164 88.3) (width 0.75) (layer "F.Cu") (net 2) (uuid "4cb6780c-0f2f-4058-9096-17d6eeacc5f5") ) (segment (start 79.1 119.1025) (end 79.2025 119) (width 0.2) (layer "F.Cu") (net 2) (uuid "52a10e7e-488d-4d3e-9d06-99c04a17710d") ) (segment (start 68.1 77.1625) (end 68.1125 77.15) (width 0.25) (layer "F.Cu") (net 2) (uuid "52dc25d7-c12a-48a3-9ed7-b400117f32c2") ) (segment (start 80.0275 120.5) (end 80.0275 120.3375) (width 0.2) (layer "F.Cu") (net 2) (uuid "57c589d4-c878-4f02-ba7b-122ed769cf39") ) (segment (start 91.5 127.48) (end 90.12 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "581298b6-6907-4afd-b906-2e0fd9b7d6e8") ) (segment (start 68.45 84) (end 68.1 83.65) (width 0.25) (layer "F.Cu") (net 2) (uuid "589912af-1e22-46b6-99a6-edbe31ecbe90") ) (segment (start 146.25 106.1125) (end 146.25 107.05) (width 0.2) (layer "F.Cu") (net 2) (uuid "59881b23-aa27-433b-8ba3-4d3b0f08a494") ) (segment (start 86.425 130.02) (end 88.48 130.02) (width 0.2) (layer "F.Cu") (net 2) (uuid "59e7da81-e65d-4030-8d99-3951b1cb95cd") ) (segment (start 147.5 94.9) (end 147.5 96) (width 0.2) (layer "F.Cu") (net 2) (uuid "5a525ab1-9e37-4420-9f18-17cb0ff0db32") ) (segment (start 167.4 79) (end 165.9 79) (width 0.75) (layer "F.Cu") (net 2) (uuid "5d0faf66-7016-4a71-8edc-f6e67a9346b5") ) (segment (start 145.225 110.325) (end 145.65 110.75) (width 0.2) (layer "F.Cu") (net 2) (uuid "6106e15a-c1a6-4624-a176-c0b59d88494b") ) (segment (start 163.7 110.9) (end 162.3 110.9) (width 0.75) (layer "F.Cu") (net 2) (uuid "61578522-fe65-433c-9616-b02ce435c004") ) (segment (start 145.65 110.75) (end 146.75 110.75) (width 0.2) (layer "F.Cu") (net 2) (uuid "693ce9ab-1e1a-4d9e-94c8-efb57c78cfbb") ) (segment (start 91.475 127.48) (end 89.92 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "69f4292f-5769-46da-9e74-fb416021292c") ) (segment (start 89.92 127.48) (end 89.77 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "6acb3d86-49ba-499b-a660-b728e6bf5106") ) (segment (start 123.4 128.8) (end 127.3 124.9) (width 0.75) (layer "F.Cu") (net 2) (uuid "6b3f2909-804b-49a9-9cfd-319833d918d2") ) (segment (start 78.7 120.2) (end 79.1 119.8) (width 0.2) (layer "F.Cu") (net 2) (uuid "6d8cb9c7-06ee-4225-ab03-93d196d64cfa") ) (segment (start 85.19 130.02) (end 83.62 128.45) (width 0.2) (layer "F.Cu") (net 2) (uuid "6e405c82-f562-4ce3-8750-45dfdeaca7e4") ) (segment (start 145.5 96.1) (end 145.225 96.375) (width 0.2) (layer "F.Cu") (net 2) (uuid "6ffa7518-cf14-40f0-8ba9-819492a4cce4") ) (segment (start 146.25 94.8625) (end 147.4625 94.8625) (width 0.2) (layer "F.Cu") (net 2) (uuid "7262d29f-1a64-46fe-ba4b-10f87ac28be4") ) (segment (start 145.225 108.075) (end 145.225 109) (width 0.2) (layer "F.Cu") (net 2) (uuid "795863a6-eb3f-49e9-82e6-1da6369085ed") ) (segment (start 89.8 124.2) (end 89.8 126.3) (width 0.2) (layer "F.Cu") (net 2) (uuid "7a3aa996-6814-40ad-bafc-9b44a79a8a2f") ) (segment (start 88.5 128.75) (end 88.5 130) (width 0.2) (layer "F.Cu") (net 2) (uuid "7b587927-d800-479c-b5ac-ee4cce9529fa") ) (segment (start 124.5 125.5625) (end 124.5 125.6) (width 0.2) (layer "F.Cu") (net 2) (uuid "7f709e13-92f5-4982-93cc-d63eb3e17626") ) (segment (start 118.5875 70.3875) (end 117.95 69.75) (width 0.25) (layer "F.Cu") (net 2) (uuid "809001e8-d263-47b8-9455-3535afb72769") ) (segment (start 127.3 124.9) (end 127.3 124.75) (width 0.75) (layer "F.Cu") (net 2) (uuid "82f66f7e-5ab8-4823-b8f6-a0c289118be8") ) (segment (start 93.825 85.005) (end 91.905 85.005) (width 0.25) (layer "F.Cu") (net 2) (uuid "878733d6-514d-4950-b7b7-60475e11bf8e") ) (segment (start 146.25 107.05) (end 145.225 108.075) (width 0.2) (layer "F.Cu") (net 2) (uuid "8dfd8470-6002-4732-9e7e-55479d8d392e") ) (segment (start 150.15 121.8875) (end 150.0625 121.8) (width 0.2) (layer "F.Cu") (net 2) (uuid "8f3d3b5b-759a-4bc1-9874-0f95d690cf85") ) (segment (start 125.9 109) (end 124.5 107.6) (width 0.2) (layer "F.Cu") (net 2) (uuid "922d3dfe-8d1e-4bcd-b555-e72832a96d06") ) (segment (start 121.4 79.74) (end 121.4 77.4) (width 1) (layer "F.Cu") (net 2) (uuid "9362fb11-d211-4b52-a728-e435e1792262") ) (segment (start 92.245 87.545) (end 91.9 87.2) (width 0.25) (layer "F.Cu") (net 2) (uuid "94068fa5-b6a7-41a9-bac7-dc8eda5e020c") ) (segment (start 146.25 83.6125) (end 146.25 85.475) (width 0.2) (layer "F.Cu") (net 2) (uuid "9682003a-0c83-4f28-8e09-cf4418629b3e") ) (segment (start 68.1 80.6) (end 68.1 77.1625) (width 0.25) (layer "F.Cu") (net 2) (uuid "99a7f166-b0cc-400d-9f84-64637a6d3228") ) (segment (start 103.95 125.45) (end 103.95 124.75) (width 0.75) (layer "F.Cu") (net 2) (uuid "9a0457c8-a7fc-4cf4-bb75-75458675354d") ) (segment (start 100.3 129.1) (end 103.95 125.45) (width 0.75) (layer "F.Cu") (net 2) (uuid "9df28715-5199-4dc9-8046-8f1614c17862") ) (segment (start 165.9 79) (end 164 77.1) (width 0.75) (layer "F.Cu") (net 2) (uuid "a0fe25a4-b0be-4591-8732-29b4c18b73c8") ) (segment (start 90.33 123.67) (end 89.8 124.2) (width 0.2) (layer "F.Cu") (net 2) (uuid "a2d45059-8ff5-44cf-9ef3-ceb02d0aac08") ) (segment (start 70.58125 120.5) (end 70.18125 120.1) (width 0.5) (layer "F.Cu") (net 2) (uuid "ac08a9e7-d059-434d-93fb-67ce40e0c174") ) (segment (start 99.3 123.7) (end 98.5 124.5) (width 0.2) (layer "F.Cu") (net 2) (uuid "ad2f22f5-b995-4f4d-84b2-ea902ab5e522") ) (segment (start 86.525 130.02) (end 85.19 130.02) (width 0.2) (layer "F.Cu") (net 2) (uuid "b10145f0-6470-42dd-8c30-27af2f4978e8") ) (segment (start 100.3 129.9) (end 100.3 129.1) (width 0.75) (layer "F.Cu") (net 2) (uuid "b2dc15e8-9bf6-47a2-b53d-4d6b74badf66") ) (segment (start 68.1 83.65) (end 68.1 80.725) (width 0.25) (layer "F.Cu") (net 2) (uuid "b3e4c3a7-ebf2-43fa-93b4-dd8b3a51e5c4") ) (segment (start 72.6 116.3) (end 69.85 113.55) (width 0.2) (layer "F.Cu") (net 2) (uuid "b42d6565-160e-4a40-9d4d-a012652beda7") ) (segment (start 80.0275 120.5) (end 79.7275 120.2) (width 0.2) (layer "F.Cu") (net 2) (uuid "b4734c59-a054-4b71-930c-de432c1c8016") ) (segment (start 167.4 90.3) (end 166 90.3) (width 0.75) (layer "F.Cu") (net 2) (uuid "b9b28b1a-9916-4b2b-8f76-2de885928ff1") ) (segment (start 118.5875 70.9375) (end 118.5875 70.3875) (width 0.25) (layer "F.Cu") (net 2) (uuid "b9d0dbeb-7917-4b52-8ea3-4940da654448") ) (segment (start 83.62 125.27) (end 84.049999 124.840001) (width 0.2) (layer "F.Cu") (net 2) (uuid "bb99654b-2567-4f21-8215-d95ef87c2b57") ) (segment (start 92.175 86.275) (end 91.9 86) (width 0.25) (layer "F.Cu") (net 2) (uuid "bc27d1d1-245e-49e3-9e7e-e4e9e5116234") ) (segment (start 164 88.3) (end 162.3 88.3) (width 0.75) (layer "F.Cu") (net 2) (uuid "be0c81eb-d3e4-430c-bd94-390bf0d0cecb") ) (segment (start 78.349999 130) (end 76.434999 130) (width 0.2) (layer "F.Cu") (net 2) (uuid "c03a9187-0894-45ee-920f-1c9fee44839e") ) (segment (start 79.4125 71.0875) (end 79.5 71.0875) (width 0.5) (layer "F.Cu") (net 2) (uuid "c0d83325-304e-4ae3-b1c4-d4a6baba51e8") ) (segment (start 129.7375 109) (end 125.9 109) (width 0.2) (layer "F.Cu") (net 2) (uuid "c1b75659-cb0d-4581-bc09-ddd48c91ebf7") ) (segment (start 68.1 80.725) (end 67.975 80.6) (width 0.25) (layer "F.Cu") (net 2) (uuid "c29d22ca-d98a-4dd9-a54c-dbdb18561510") ) (segment (start 164.1 99.6) (end 162.3 99.6) (width 0.75) (layer "F.Cu") (net 2) (uuid "c2b2e09a-c05a-40cf-8861-65a79e33ee01") ) (segment (start 91.905 85.005) (end 91.9 85) (width 0.25) (layer "F.Cu") (net 2) (uuid "c3aaaf02-e88d-46ce-b568-6146f29b5d05") ) (segment (start 138.8 125.05) (end 138.8 124.8) (width 0.75) (layer "F.Cu") (net 2) (uuid "c3f70607-8759-4132-91fb-95b9cfb0e156") ) (segment (start 69.9 119.12375) (end 69.75625 118.98) (width 0.5) (layer "F.Cu") (net 2) (uuid "c43ec202-3bf2-4d27-a573-841ea271d294") ) (segment (start 147.4625 94.8625) (end 147.5 94.9) (width 0.2) (layer "F.Cu") (net 2) (uuid "c4ecdae2-3f94-462a-8c04-fb07d56e0e68") ) (segment (start 69.425 84) (end 68.45 84) (width 0.25) (layer "F.Cu") (net 2) (uuid "c542e123-6182-4963-afb0-d49dde0ccebe") ) (segment (start 165.6 112.8) (end 163.7 110.9) (width 0.75) (layer "F.Cu") (net 2) (uuid "c6069d6e-92da-4499-96d4-96d2c970f667") ) (segment (start 167.4 101.5) (end 166 101.5) (width 0.75) (layer "F.Cu") (net 2) (uuid "c626282a-584e-4267-9651-4543d9fed3c7") ) (segment (start 120.24 80.9) (end 121.4 79.74) (width 1) (layer "F.Cu") (net 2) (uuid "c8f5a799-8ca9-4024-ab2c-9beeae0399af") ) (segment (start 74.21 116.3) (end 72.6 116.3) (width 0.2) (layer "F.Cu") (net 2) (uuid "ca227d14-4c3c-4e74-aa5b-3e39acea95ef") ) (segment (start 145.225 96.375) (end 145.225 97.75) (width 0.2) (layer "F.Cu") (net 2) (uuid "cbbd2589-52bc-476f-8739-0314ca044a69") ) (segment (start 69.85 113.55) (end 69.85 111.09) (width 0.2) (layer "F.Cu") (net 2) (uuid "cc33e7eb-d0e0-4fba-a7c4-4498785d6d5f") ) (segment (start 98.6 113.5) (end 99.3 114.2) (width 0.2) (layer "F.Cu") (net 2) (uuid "ccb69639-9788-4cf4-9250-4229991e8f3d") ) (segment (start 69.4 120.1) (end 69.9 119.81875) (width 0.5) (layer "F.Cu") (net 2) (uuid "cd23ac08-b245-4955-9f95-bd2b9a6f2718") ) (segment (start 147.4 96.1) (end 145.5 96.1) (width 0.2) (layer "F.Cu") (net 2) (uuid "ce38dfde-1805-4e5a-9a03-88112d5f190f") ) (segment (start 88.48 130.02) (end 88.5 130) (width 0.2) (layer "F.Cu") (net 2) (uuid "d1015b7d-6305-44c9-b523-77e177fc2090") ) (segment (start 90.12 127.48) (end 89.92 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "d28e3e4c-f9fa-4b79-8543-98b8e4219783") ) (segment (start 89.6 126.8) (end 90.28 127.48) (width 0.2) (layer "F.Cu") (net 2) (uuid "d302c522-2676-478a-aa5d-1f7d9301f9d7") ) (segment (start 115.6 125.1) (end 115.6 124.75) (width 0.75) (layer "F.Cu") (net 2) (uuid "d4e23bf3-41ca-4dc3-b4c4-72c836a6e740") ) (segment (start 84.049999 124.840001) (end 84.049999 122.649999) (width 0.2) (layer "F.Cu") (net 2) (uuid "d9f49414-5584-42f4-aae1-2a498adf62a5") ) (segment (start 145.225 109) (end 145.225 110.325) (width 0.2) (layer "F.Cu") (net 2) (uuid "e8ceb9fa-ae2b-46cb-8f16-9e31c12e54b0") ) (segment (start 146.25 85.475) (end 145.225 86.5) (width 0.2) (layer "F.Cu") (net 2) (uuid "eac35615-8fed-49fd-aaa1-96977c5d8435") ) (segment (start 145.225 86.5) (end 142.5 86.5) (width 0.2) (layer "F.Cu") (net 2) (uuid "ed3c0f3d-ea9c-4d7f-a7b5-14628de82965") ) (segment (start 69.9 119.81875) (end 69.9 119.12375) (width 0.5) (layer "F.Cu") (net 2) (uuid "f23c6912-4bb9-4501-97c0-30efd18760dd") ) (segment (start 135 129.9) (end 135 128.85) (width 0.75) (layer "F.Cu") (net 2) (uuid "f945da3b-0865-48c1-8664-7c2454870ab1") ) (segment (start 79.7275 120.2) (end 78.7 120.2) (width 0.2) (layer "F.Cu") (net 2) (uuid "fc8301f7-6df8-43b1-8904-aa9477fb8216") ) (segment (start 96.25 109.55) (end 96.8 109) (width 0.2) (layer "F.Cu") (net 2) (uuid "fd0ce01a-429d-44c4-b0c0-e1f96b5b6ad0") ) (via (at 75.3 121) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "006f966d-ed09-4913-9cae-4754ee9c2204") ) (via (at 123.6 71.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "0d520082-c374-494a-aa2c-d05b67948a67") ) (via (at 116.1 107.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "165e826c-7662-4490-be04-064a60862fd4") ) (via (at 135.5 71.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "1eb8d544-dfe2-4a78-a619-e248392ba409") ) (via (at 53.48 115.58) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "1f8f5901-c87d-4d11-8f53-d3714bba2ce8") ) (via (at 74.5 59.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "24ade65e-f9c9-4a2a-bf58-613e55b6af9b") ) (via (at 111.5 98.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "26a7b9b2-ac40-4e1d-a585-fb389c72c54a") ) (via (at 125 93.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "2a1e5548-355e-441d-8462-84f0b2ffc86c") ) (via (at 124.5 107.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "2ba97e04-7f41-434b-bdda-aefd54c5cf2b") ) (via (at 133.8 80.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "2cc4be88-af29-4a9e-a0b9-be5b383f0edb") ) (via (at 78.35 81.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "2f1232e4-e7d7-4730-9096-d90c7ecdeb56") ) (via (at 118.7 66.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "2ff3666e-ed7b-468f-aaf6-aaa5f9fe60a3") ) (via (at 118.7 77.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "30f54183-9057-4ae2-8ca9-7e2db7040f75") ) (via (at 152.9 101.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "31609567-cf2f-4c8d-b6d1-5bfe6298b0e2") ) (via (at 60.83 117.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3507e6bf-6567-4098-8a73-e524ce567031") ) (via (at 83.7 83.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "363702df-c808-4669-82ee-658de40305fb") ) (via (at 103.8 73.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3bbe7de0-daba-4143-bee2-0394b2d14ad7") ) (via (at 90 71) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3c1411d9-c326-4dfa-bc2d-ced4568ddb37") ) (via (at 134.75 93.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "3e34752f-fa2d-45a5-8e21-21138fad4881") ) (via (at 121.4 77.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "415efaa4-235f-4401-8db3-471b0769b607") ) (via (at 121.825 119.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "41bff422-0a13-4e9e-96ce-ae4a5cc0f72c") ) (via (at 100.4 93.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4200efda-fee1-4f37-be00-d9a61e9c4125") ) (via (at 112.6 71.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "420d5b3b-14a3-46c4-b044-af27cf6559a2") ) (via (at 78.7 120.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "49dc5e41-1c42-4470-bc57-7f7598bdac94") ) (via (at 95.55 77) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4a5d7080-a286-4a9b-872e-fa17bed5764c") ) (via (at 98.5 124.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4ab19f91-9203-4118-9318-c961ca69e66d") ) (via (at 142.5 86.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4c653dc0-fd57-4433-b0c5-c064af7f32db") ) (via (at 125 98.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "4cb50c93-ab4e-46ff-bcd5-30337d3b340d") ) (via (at 100.8 89) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5028252a-60f4-4c13-b188-c29ab681a517") ) (via (at 68.075 74.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "506bbaaf-b119-44ac-a4be-9a98ba423048") ) (via (at 143.25 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "521e5049-6e44-40f0-93c6-0c403c190eeb") ) (via (at 156.6 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "53c8cbae-7e82-4dac-bde3-0e3bf7d9c7aa") ) (via (at 141 89.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "586b87f3-8bc7-4f89-93c4-d54f7da3b8e4") ) (via (at 133.3 119.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5c029b14-54d1-401f-80ef-d88a1cb0f497") ) (via (at 153.15 90.075) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5e3970d9-b804-487e-af60-87405f969a67") ) (via (at 96.25 110.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5ea6f1eb-8cf2-41a7-a62b-635d88e009d3") ) (via (at 129.5 78.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "5f504115-f2bd-42c0-8616-48d01812ca91") ) (via (at 74.7 71.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "61a70e89-9c0e-4cdd-862b-04784470d548") ) (via (at 103.975 117.975) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "61abb23f-9c20-4a32-bbf4-6df54931082d") ) (via (at 91.9 85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6574ee75-7717-4cef-a8fb-1c8f3d401888") ) (via (at 74.25 81.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "66e71069-ba7f-405d-82df-1138a41a2db5") ) (via (at 90.3 93.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "67f6e51a-72ed-41ce-bf30-005c7fb7afc7") ) (via (at 102.8 78.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6868542e-0b00-4747-82d6-b6a496b3fe83") ) (via (at 146.5 60) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6890b43f-9dc6-4578-b06b-7b3fb9386054") ) (via (at 130.275 66.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "6a717d72-8f67-4f4b-a618-e0ac18a261a4") ) (via (at 124 77.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "72568a57-56f3-4e02-8106-02ab5c388389") ) (via (at 106.8 66.325) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "74e22fb2-b89f-479f-ba4d-d41ca7129066") ) (via (at 147.5 96) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "77468ce4-6d90-4a2e-a5c0-64c1cca173e2") ) (via (at 125 89.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "7b655872-208e-4b68-a4d0-00f11da2c786") ) (via (at 108 93.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "80f12ad1-5790-4380-aed7-1f52e1bc1bb0") ) (via (at 146.5 64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "87a2dc5c-543b-4d5f-aa0b-39f707f553f4") ) (via (at 98.75 57.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8b2cbfe4-b86e-4c88-9f54-fc9d5c3b676e") ) (via (at 134.7 98.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8c2967e1-4641-4a09-8ea3-f3e05c87d982") ) (via (at 90.6 117.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8ca49ea2-1a77-4241-9fbd-5f95128a736b") ) (via (at 68.86 115.81) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8e205a13-76ee-4eb4-960b-a64d870f0b11") ) (via (at 134.75 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8e7be43b-f462-4632-ab80-ab4cdd47fd64") ) (via (at 78.349999 130) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8e7c5398-75f9-446c-bb12-0646d4212fd7") ) (via (at 141 93.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "8fd7708d-de4e-42c6-ae08-2fe48d96d1bb") ) (via (at 74.21 116.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "905d2a86-508c-4b21-b1ae-cf898de5cbf1") ) (via (at 69.4 120.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (uuid "946acc49-4c15-49b1-8363-ec8e32055531") ) (via (at 111 77.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "97d31cc7-7d9e-413d-84c6-8f1971ca9626") ) (via (at 147.475 79.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "980318fb-cb33-4d4d-9608-40aea5f2c416") ) (via (at 96.25 113.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "9dc20cb5-c245-47e7-b8a2-19055e627f32") ) (via (at 147.15 128.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "9f84b3ee-3527-4939-a341-62b1c53b2be6") ) (via (at 140.2 110.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "a07971f3-beed-47c7-bb95-e78fef8838f8") ) (via (at 86.8 57.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "a33f4501-f5c6-4d27-b806-6b1120ee8588") ) (via (at 98 70) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "a484cb02-c1d2-4172-a231-c528c00fd63a") ) (via (at 54.1 122.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "a81c76c6-8bcb-46d3-af75-3f124bbdf253") ) (via (at 94 93.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "a9139311-82de-46eb-888e-a362d69294b2") ) (via (at 121.4 84) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "ba8e53c6-bde8-4945-a170-2bb356e7bd1e") ) (via (at 83.3 121.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "bbc4e728-5167-4a39-adab-1d3c3b310dea") ) (via (at 53.8 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "bec8539f-5fe0-4972-9bbc-14d46658d6fa") ) (via (at 104 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "c25e3e91-31a5-4765-a5a7-1b3f4023d359") ) (via (at 89.3 126.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "c71aeabf-eff1-4f20-97e1-054caab05c2c") ) (via (at 86.9 80.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cae2e650-ffc2-4541-a154-bcf6407e1a67") ) (via (at 118.5 116.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cbb6afd4-c68e-4ea2-b441-469135385b55") ) (via (at 129.5 75.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cc785e15-b6f7-40a2-9e6a-178c706e3fe8") ) (via (at 89.3 77.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "cf9a2b78-2a03-4639-9e3e-ec269c853cf7") ) (via (at 53.3 118.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d3538d15-419c-4e4d-8637-708ff3e18ba8") ) (via (at 108.95 116.975) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d6f02f9f-e1ce-463a-b612-8a1a5c06a631") ) (via (at 96.3 83.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d747c0ab-7131-4303-8d8d-c176e5bb4c81") ) (via (at 62.2 86.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "d80670fe-b7ab-4005-9f2e-5a99fed6f180") ) (via (at 54.4 86.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "da91ac02-5cc6-474e-a2ff-02d71bc8c6ba") ) (via (at 155.9 66.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "db6011c3-29e9-4ad3-9c14-74505b606d61") ) (via (at 152.85 110.45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "dbee8b69-11f7-4694-8a03-8aa4e9129344") ) (via (at 69.4 130) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "dc5ee24e-f401-4b67-875f-153e4e8b237d") ) (via (at 134.75 89.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "dd52541e-7afc-4db6-826a-a0eed6207773") ) (via (at 85.8 88.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "dfa0fcc5-4c05-488b-bfcf-65b85d9c9b4f") ) (via (at 129.75 116.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "e35e0a45-5fdf-4cf0-bde3-444add41676b") ) (via (at 146.75 110.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "e9e207b8-99b5-493c-8368-f00e681f9935") ) (via (at 147.5 103) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "eb012f85-130a-462c-ae8d-11664b93120c") ) (via (at 54.1 126) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (uuid "ed1483d3-dc6e-48a7-8fe6-c69e82643fbe") ) (via (at 141 98.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "f09ba869-53ba-453f-ada0-86e7235fa27f") ) (via (at 141 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "f946f8f9-2606-4bac-95f2-8afe08f4b7b7") ) (via (at 141.875 66.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 2) (uuid "ffe21ea2-e614-4dba-8ed1-ec0ceda910f1") ) (segment (start 54.2 126.1) (end 54.1 126) (width 0.2) (layer "B.Cu") (net 2) (uuid "5243ef52-da18-40ec-b6e1-01113cb97afb") ) (segment (start 59.84 124.855) (end 58.595 126.1) (width 0.2) (layer "B.Cu") (net 2) (uuid "71a9f5ac-0b9c-4170-9180-6954fb8fc322") ) (segment (start 58.595 126.1) (end 54.2 126.1) (width 0.2) (layer "B.Cu") (net 2) (uuid "8819e9fc-0326-444e-ae0d-24c4aa434353") ) (segment (start 99.2 77.1) (end 99.05 77.25) (width 0.25) (layer "F.Cu") (net 3) (uuid "01d8c29e-c262-46c3-b9b7-6865b40b0ef2") ) (segment (start 111.25096 105.04904) (end 110.5 105.8) (width 0.2) (layer "F.Cu") (net 3) (uuid "0b9bf403-a149-4360-9826-b6aee55908b6") ) (segment (start 50.6875 85.125) (end 50.6875 85.0125) (width 0.5) (layer "F.Cu") (net 3) (uuid "0bb3b03f-8370-439a-a9ec-cfd21d84b5fa") ) (segment (start 51.2 82.8375) (end 50.65 82.2875) (width 0.5) (layer "F.Cu") (net 3) (uuid "104212b9-bdd3-423a-9c04-8c56f735ea11") ) (segment (start 50.52452 90.67548) (end 50.52452 85.28798) (width 0.5) (layer "F.Cu") (net 3) (uuid "11918904-cba2-4e7e-9701-7122727354bb") ) (segment (start 117.6 79.1) (end 115.85 79.1) (width 0.3) (layer "F.Cu") (net 3) (uuid "12072c25-ff8d-4413-b70e-1666540bc8cc") ) (segment (start 50.6875 84.2875) (end 50.6875 83.4125) (width 0.5) (layer "F.Cu") (net 3) (uuid "16482e86-58b7-44c5-8deb-a6884092b795") ) (segment (start 148.2875 116.2875) (end 143.25 111.25) (width 0.3) (layer "F.Cu") (net 3) (uuid "1867f1eb-96fc-4f2e-83b9-cb3eff9f32a6") ) (segment (start 143.25 107.5) (end 143.25 107.4125) (width 0.25) (layer "F.Cu") (net 3) (uuid "1d2d936f-bab9-4d09-b548-907127705cad") ) (segment (start 143.25 84.9125) (end 144.5 83.6625) (width 0.25) (layer "F.Cu") (net 3) (uuid "24a9564a-68d6-4fb7-ac50-e97b683e82e0") ) (segment (start 118.0875 107.2) (end 117.19375 106.30625) (width 0.2) (layer "F.Cu") (net 3) (uuid "2597631c-03ac-4321-8142-733c9c1d4ebe") ) (segment (start 153.5625 69.35) (end 150.15 69.35) (width 0.25) (layer "F.Cu") (net 3) (uuid "2864d819-0c4c-4cee-9a60-110b4fc39587") ) (segment (start 117.6 79.1) (end 117.7 79.2) (width 0.3) (layer "F.Cu") (net 3) (uuid "2fb544c4-c3d9-45bd-ade5-24e23d8a1dbc") ) (segment (start 117.19375 105.74375) (end 116.49904 105.04904) (width 0.2) (layer "F.Cu") (net 3) (uuid "34b0a9ec-3303-4c93-a154-32970eb3a7b2") ) (segment (start 122.75 106.25) (end 128.7375 106.25) (width 0.2) (layer "F.Cu") (net 3) (uuid "34c29911-9f95-4242-b290-698e423ad33e") ) (segment (start 50.65 82.2875) (end 50.65 79.75) (width 0.5) (layer "F.Cu") (net 3) (uuid "3c495ecf-998f-4d90-ba82-8455f5c4218e") ) (segment (start 86.525 120.625) (end 85.8875 119.9875) (width 0.25) (layer "F.Cu") (net 3) (uuid "41a12d01-358c-4577-b0b5-59b5d2c550e4") ) (segment (start 110.5 105.8) (end 110.5 106.25) (width 0.2) (layer "F.Cu") (net 3) (uuid "4a11573f-3bc8-458a-a856-3203fbaea9fc") ) (segment (start 99.05 78.38) (end 98.775 78.655) (width 0.25) (layer "F.Cu") (net 3) (uuid "4abf3bdb-2014-4ee1-97cf-6f3a54a0c9e2") ) (segment (start 119.9 79.1) (end 117.6 79.1) (width 0.3) (layer "F.Cu") (net 3) (uuid "4ce739a2-6f8b-4401-a63c-36a0c73ae8a2") ) (segment (start 120.24 78.76) (end 120.24 74.2) (width 0.3) (layer "F.Cu") (net 3) (uuid "4d9c97bd-a98d-4824-8eb9-b92f7cabc04d") ) (segment (start 50.52452 85.28798) (end 50.6875 85.125) (width 0.5) (layer "F.Cu") (net 3) (uuid "4f1c2b92-a2bd-4eda-a3af-87fd49e798a9") ) (segment (start 50.6875 83.4125) (end 51.2 82.9) (width 0.5) (layer "F.Cu") (net 3) (uuid "50b56e07-8723-4e6e-ad6b-b9c3487e116e") ) (segment (start 50.4 131.4) (end 52.43063 131.4) (width 0.3) (layer "F.Cu") (net 3) (uuid "5660f4bb-7235-43d2-892e-5b59efef3597") ) (segment (start 154.4125 68.5) (end 153.5625 69.35) (width 0.25) (layer "F.Cu") (net 3) (uuid "57355a2d-6582-4ade-9484-c7887cc751f0") ) (segment (start 116.49904 105.04904) (end 111.25096 105.04904) (width 0.2) (layer "F.Cu") (net 3) (uuid "5d58c0d5-0dce-4c1d-9118-569d63850b41") ) (segment (start 49.53 93.31) (end 49.53 91.67) (width 0.5) (layer "F.Cu") (net 3) (uuid "5d59ddee-dcf2-422b-8a75-f428503afe9e") ) (segment (start 143.25 96.5) (end 143.25 96.1625) (width 0.25) (layer "F.Cu") (net 3) (uuid "5dbba69b-3347-4983-bccc-e4195e6adc31") ) (segment (start 85.8875 119.9875) (end 85.8875 119.325) (width 0.25) (layer "F.Cu") (net 3) (uuid "5e7d7f60-1702-41cf-a4fb-a8a1efc4bd77") ) (segment (start 50.65 79.75) (end 49.4 78.5) (width 0.5) (layer "F.Cu") (net 3) (uuid "62fd83cf-4e96-4776-bcc7-bb3cb7496783") ) (segment (start 52.2375 81.8) (end 53.5375 81.8) (width 0.5) (layer "F.Cu") (net 3) (uuid "64b1799e-15de-41fd-969a-996f8a1802e0") ) (segment (start 128.7375 106.25) (end 129.6875 107.2) (width 0.2) (layer "F.Cu") (net 3) (uuid "685b7c55-b185-4077-b403-f5b10877ccc2") ) (segment (start 120.24 78.76) (end 119.9 79.1) (width 0.3) (layer "F.Cu") (net 3) (uuid "775951d1-e633-47c2-b28e-f457bb38d15f") ) (segment (start 49.53 91.67) (end 50.52452 90.67548) (width 0.5) (layer "F.Cu") (net 3) (uuid "7c1c2566-924d-4a1f-be04-0bcf02032f4a") ) (segment (start 53.1 127.45) (end 53.045 127.395) (width 0.3) (layer "F.Cu") (net 3) (uuid "7c6f347f-c32f-4516-bf1c-d958b91282b1") ) (segment (start 51.2 82.8375) (end 52.2375 81.8) (width 0.5) (layer "F.Cu") (net 3) (uuid "7cc2901d-f89b-4839-9e33-adcdd9bb557d") ) (segment (start 117.19375 106.30625) (end 117.19375 105.74375) (width 0.2) (layer "F.Cu") (net 3) (uuid "82605cdb-ee63-46b9-8c47-49feb9579a06") ) (segment (start 150.15 69.35) (end 150 69.5) (width 0.25) (layer "F.Cu") (net 3) (uuid "85223a9e-76a8-47d6-979a-85a70dc4322d") ) (segment (start 48.4 79.5) (end 49.4 78.5) (width 0.5) (layer "F.Cu") (net 3) (uuid "8951d125-60df-4ad0-a2e3-7e6485078397") ) (segment (start 57.3 127.395) (end 53.045 127.395) (width 0.3) (layer "F.Cu") (net 3) (uuid "95411635-5eaa-49e7-91be-e59ee0f4c5f0") ) (segment (start 146.775 121.625) (end 148.2875 120.1125) (width 0.3) (layer "F.Cu") (net 3) (uuid "981ff1f7-a52b-4c15-8186-6cd00ecd75e5") ) (segment (start 100.4 77.1) (end 99.2 77.1) (width 0.25) (layer "F.Cu") (net 3) (uuid "9baad48d-5237-4626-897c-eeb94ec93253") ) (segment (start 135 106.25) (end 138.25 106.25) (width 0.2) (layer "F.Cu") (net 3) (uuid "9f590c8a-e84c-43b9-9b47-ffcf54bc0f42") ) (segment (start 115.85 79.1) (end 115.05 78.3) (width 0.3) (layer "F.Cu") (net 3) (uuid "a1cb5d70-e5e4-4cc9-9709-0c3e48abe5e1") ) (segment (start 148.2875 119) (end 148.2875 116.2875) (width 0.3) (layer "F.Cu") (net 3) (uuid "a7bc0485-05ac-4d76-8766-fda344ecc1cd") ) (segment (start 51.2 82.9) (end 51.2 82.8375) (width 0.5) (layer "F.Cu") (net 3) (uuid "a849a1ea-bc4e-40b7-a53c-f07fd82e6378") ) (segment (start 146.775 121.6) (end 146.775 121.625) (width 0.3) (layer "F.Cu") (net 3) (uuid "a9cf158d-6ee5-40d2-b65b-b25f6fdfbca9") ) (segment (start 106.8375 107.25) (end 106.8875 107.2) (width 0.2) (layer "F.Cu") (net 3) (uuid "a9e929de-146a-4ccf-bdbc-108539bc5db3") ) (segment (start 143.25 96.1625) (end 144.5 94.9125) (width 0.25) (layer "F.Cu") (net 3) (uuid "ae2650b8-8437-45ee-893a-99d0b93ccdc7") ) (segment (start 53.1 130.73063) (end 53.1 127.45) (width 0.3) (layer "F.Cu") (net 3) (uuid "b70142b0-a29a-4c30-87b7-f95b171b0853") ) (segment (start 85.8875 117.9375) (end 86 117.825) (width 0.2) (layer "F.Cu") (net 3) (uuid "b885d23a-488a-4891-b3b5-aaff4fbcfae9") ) (segment (start 86.525 121.13) (end 86.525 120.625) (width 0.25) (layer "F.Cu") (net 3) (uuid "b8be5fd4-1ddb-4be1-9509-cf380fd0813e") ) (segment (start 148.2875 120.1125) (end 148.2875 119) (width 0.3) (layer "F.Cu") (net 3) (uuid "b913bfba-bb49-422b-bcab-8cfcf3e3e7cc") ) (segment (start 115.05 76.525) (end 114.925 76.4) (width 0.3) (layer "F.Cu") (net 3) (uuid "be11f380-60ba-41e7-962c-585916155df2") ) (segment (start 50.144368 131.144368) (end 50.4 131.4) (width 0.3) (layer "F.Cu") (net 3) (uuid "c1b56fad-d1fc-47d4-beb6-ea053274e5d0") ) (segment (start 143.25 85.25) (end 143.25 84.9125) (width 0.25) (layer "F.Cu") (net 3) (uuid "c215d5c5-5181-4977-b475-c11e95bf24ee") ) (segment (start 105.75 107.25) (end 106.8375 107.25) (width 0.2) (layer "F.Cu") (net 3) (uuid "c7f2b7bf-207b-404f-b09c-a4fed76e7512") ) (segment (start 143.25 107.4125) (end 144.5 106.1625) (width 0.25) (layer "F.Cu") (net 3) (uuid "cbd40dbd-00cf-4a6e-935c-8fd77f530561") ) (segment (start 114 75.475) (end 114.925 76.4) (width 0.5) (layer "F.Cu") (net 3) (uuid "ccb2776c-4d73-460a-80ef-72bdfd8e1ec5") ) (segment (start 53.045 127.395) (end 51.55 125.9) (width 0.3) (layer "F.Cu") (net 3) (uuid "d20afae3-683a-451e-a1b8-a9da68dcf9fa") ) (segment (start 52.43063 131.4) (end 53.1 130.73063) (width 0.3) (layer "F.Cu") (net 3) (uuid "d76a9022-9c7a-4283-8109-d197f11bf001") ) (segment (start 138.25 106.25) (end 143.25 111.25) (width 0.2) (layer "F.Cu") (net 3) (uuid "d8aca00a-ae49-4144-a7ce-0a65de4a7b69") ) (segment (start 100.9 77.1) (end 100.4 77.1) (width 0.25) (layer "F.Cu") (net 3) (uuid "db0a1b85-3527-495c-9070-c360c163c07f") ) (segment (start 117.7 79.2) (end 117.7 80.9) (width 0.3) (layer "F.Cu") (net 3) (uuid "dfaef90d-90e3-40c1-8cb9-8aca54feb02a") ) (segment (start 50.6875 85.125) (end 50.6875 84.2875) (width 0.5) (layer "F.Cu") (net 3) (uuid "e139df4e-78b2-478f-b05c-3c93bd52c3c1") ) (segment (start 112.25 75.475) (end 114 75.475) (width 0.5) (layer "F.Cu") (net 3) (uuid "e8a37a3e-3460-4a9f-96c5-fce5d3556923") ) (segment (start 99.05 77.25) (end 99.05 78.38) (width 0.25) (layer "F.Cu") (net 3) (uuid "e97209cb-0cd5-493b-8d44-6cde4f4ced4d") ) (segment (start 44.75 79.5) (end 48.4 79.5) (width 0.5) (layer "F.Cu") (net 3) (uuid "ed210f0b-0c70-47c1-abc2-aa43eaa68b3b") ) (segment (start 85.8875 119.325) (end 85.8875 117.9375) (width 0.2) (layer "F.Cu") (net 3) (uuid "f0944eb1-a144-4963-bb16-f0cae6a3de52") ) (segment (start 50.144368 130.2) (end 50.144368 131.144368) (width 0.3) (layer "F.Cu") (net 3) (uuid "f120690a-bd33-431e-be92-b6ca13a35f1b") ) (segment (start 56.2 61.6875) (end 55.7125 61.2) (width 0.25) (layer "F.Cu") (net 3) (uuid "f3f550b3-a272-46e4-87d1-f83fdcd2a3d2") ) (segment (start 56.2 62.6) (end 56.2 61.6875) (width 0.25) (layer "F.Cu") (net 3) (uuid "f7a1d7e2-1eda-4bb9-90c6-e22e542a5ebe") ) (segment (start 115.05 78.3) (end 115.05 76.525) (width 0.3) (layer "F.Cu") (net 3) (uuid "fb01842a-077b-4a8a-a652-4d0d417fb2ed") ) (via (at 100.9 77.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "2822264d-df8c-4ddb-b758-263928ad4bef") ) (via (at 143.25 111.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "315e9917-b85f-4889-9f73-4f3f215935ce") ) (via (at 143.25 96.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "33755310-8527-49e2-9f75-2ad7e0a82c85") ) (via (at 150 69.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "3f18e1ec-bfed-46ea-83fd-d58bef2ab3d5") ) (via (at 143.25 85.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "4aeedd07-cbac-487a-af32-a23be117bf17") ) (via (at 56.2 62.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 3) (uuid "4b3a723d-044e-4254-8703-c3eca45a28ff") ) (via (at 51.2 82.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "4f7bf07f-4e76-4d1e-9e4f-477fa2cee505") ) (via (at 122.75 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "63a9c099-4117-4b1a-a6be-c8f4525b0b6d") ) (via (at 86 117.825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 3) (uuid "879ef088-b267-418b-b2b5-0ad6b2a08b53") ) (via (at 135 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "a124ab0d-6cf9-431d-83ee-a0d346f74025") ) (via (at 105.75 107.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "bb2c1bb6-a43d-438d-af19-e84287f077fb") ) (via (at 146.775 121.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "bd7b9e8f-0452-4624-9d0d-deab166af117") ) (via (at 143.25 107.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "c67f0421-55e2-4333-8aab-1eba7b61e70a") ) (via (at 112.25 75.475) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "c8fc1705-8c2f-4f32-af0e-0fffd514c5e5") ) (via (at 117.19375 106.30625) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "ecd5d63e-bd3d-4d99-8f7f-07e3660a39f5") ) (via (at 128.7375 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "f15d1fdb-ebf0-4b31-aa6f-75278825f836") ) (via (at 110.5 106.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (uuid "f1685b5c-ade7-495b-acf0-23d0d80531b7") ) (segment (start 102.5 77.1) (end 106.85 72.75) (width 0.25) (layer "B.Cu") (net 3) (uuid "00d52b1e-a55d-4a03-acd9-8272be10e16d") ) (segment (start 86.025 117.85) (end 87.874614 117.85) (width 0.25) (layer "B.Cu") (net 3) (uuid "037f9e4d-ae02-4b3f-b8a0-60d77723c5d7") ) (segment (start 49.53 93.88) (end 55.8 100.15) (width 0.3) (layer "B.Cu") (net 3) (uuid "07be2965-7129-4cac-ae28-cf1d93de741e") ) (segment (start 100.9 77.1) (end 102.5 77.1) (width 0.25) (layer "B.Cu") (net 3) (uuid "0e185979-bb54-4756-921f-aa52aa11eaab") ) (segment (start 51.3 82.8) (end 51.2 82.9) (width 0.5) (layer "B.Cu") (net 3) (uuid "11e7df9e-6ed7-4cf8-ae12-868ac07516bf") ) (segment (start 59.7 118.5) (end 59.7 119.635) (width 0.3) (layer "B.Cu") (net 3) (uuid "12455ba9-d3a2-4354-a921-bbc6453b0fdf") ) (segment (start 60.828248 63.628248) (end 59.8 62.6) (width 0.25) (layer "B.Cu") (net 3) (uuid "163a2100-4a89-4151-add9-be6c40c7d8a8") ) (segment (start 143.25 111.25) (end 143.25 107.5) (width 0.3) (layer "B.Cu") (net 3) (uuid "1848d6d2-e757-443f-9a25-e21af521ace6") ) (segment (start 143.25 85.55) (end 143.25 85.25) (width 0.25) (layer "B.Cu") (net 3) (uuid "1c16c3cb-2dbd-4d11-afb3-856b7b681548") ) (segment (start 61.005 127.395) (end 59.84 127.395) (width 0.3) (layer "B.Cu") (net 3) (uuid "218eb186-48d4-4b5b-bc26-ebdd0a752a74") ) (segment (start 49.53 93.31) (end 49.53 93.88) (width 0.3) (layer "B.Cu") (net 3) (uuid "24a95b28-19c7-4d3c-8cae-ab49e243cab8") ) (segment (start 107.069999 55.789999) (end 109.415 58.135) (width 0.5) (layer "B.Cu") (net 3) (uuid "2a584976-fad8-4b75-b0dc-271430b55878") ) (segment (start 150 74.8) (end 150 69.5) (width 0.25) (layer "B.Cu") (net 3) (uuid "2e7deae8-3a70-46a7-9ea5-ffed0b530854") ) (segment (start 144.3 86.6) (end 143.25 85.55) (width 0.25) (layer "B.Cu") (net 3) (uuid "2f531bc7-a7b2-49f2-927f-c4068b67e55b") ) (segment (start 58.6 131.4) (end 58.6 127.395) (width 0.3) (layer "B.Cu") (net 3) (uuid "36c4afb0-6d26-47c2-b9aa-ac905946fecd") ) (segment (start 143.25 96.5) (end 144.3 95.45) (width 0.25) (layer "B.Cu") (net 3) (uuid "383010d2-5309-4ab3-957f-4ae1c4adc4a3") ) (segment (start 109.415 58.135) (end 109.415 67.665) (width 0.5) (layer "B.Cu") (net 3) (uuid "383ca042-635a-4c45-9609-050e0ca28fcd") ) (segment (start 98 131.6) (end 97.6 132) (width 0.3) (layer "B.Cu") (net 3) (uuid "3953a000-6b70-43ca-8cdd-08bf87aba2b7") ) (segment (start 59.7 119.635) (end 61.6 121.535) (width 0.3) (layer "B.Cu") (net 3) (uuid "39b436d8-d046-4858-bfc4-8c7753f70a41") ) (segment (start 143.25 81.55) (end 150 74.8) (width 0.25) (layer "B.Cu") (net 3) (uuid "3cc15682-9f03-482a-a5ef-10a8cedadff0") ) (segment (start 55.8 110.582943) (end 55.81 110.592943) (width 0.3) (layer "B.Cu") (net 3) (uuid "427a5006-aa5e-44bb-975a-0efe9409ef37") ) (segment (start 55.81 114.61) (end 59.7 118.5) (width 0.3) (layer "B.Cu") (net 3) (uuid "43660793-680d-413d-8ff0-d132a0b1386d") ) (segment (start 110.75 72.75) (end 110.75 69) (width 0.5) (layer "B.Cu") (net 3) (uuid "4f65dd01-1ce9-4c5c-b796-b556f042c8e1") ) (segment (start 60.828248 63.628248) (end 68.666496 55.79) (width 0.5) (layer "B.Cu") (net 3) (uuid "4f94c792-ae2b-4933-a07c-cd6bbdc932d3") ) (segment (start 143.25 85.25) (end 143.25 81.55) (width 0.25) (layer "B.Cu") (net 3) (uuid "51d5e294-f700-48d9-aeca-9314d903a5ab") ) (segment (start 68.666496 55.79) (end 107.069999 55.789999) (width 0.5) (layer "B.Cu") (net 3) (uuid "51e06c0a-5358-414d-87e1-d90487fc2f0c") ) (segment (start 128.7375 106.25) (end 128.75 106.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "55beca6f-fd2a-4103-bd74-f0a0c4905856") ) (segment (start 99 126.4) (end 98 127.4) (width 0.3) (layer "B.Cu") (net 3) (uuid "5646631d-9242-438a-b48b-0eafa6832033") ) (segment (start 108.05 122.25) (end 110.5 119.8) (width 0.2) (layer "B.Cu") (net 3) (uuid "56a2a017-02cb-4a23-8adb-89f47a168f9f") ) (segment (start 110.75 74.5) (end 110.75 72.75) (width 0.5) (layer "B.Cu") (net 3) (uuid "5c43af0a-2a7e-44e8-848a-a9cd5143f15a") ) (segment (start 97.6 132) (end 59.2 132) (width 0.3) (layer "B.Cu") (net 3) (uuid "5e331640-52e4-4570-8b96-c8a385dc8773") ) (segment (start 58.6 127.395) (end 57.3 127.395) (width 0.3) (layer "B.Cu") (net 3) (uuid "67553a19-e327-4462-8fc1-49357299ceea") ) (segment (start 60 64.456496) (end 60 79.775) (width 0.5) (layer "B.Cu") (net 3) (uuid "6825a73f-3223-4d1e-beb4-ce9ce5cff676") ) (segment (start 59.2 132) (end 58.6 131.4) (width 0.3) (layer "B.Cu") (net 3) (uuid "68d120b9-f894-4684-b1ef-53f65e930f5e") ) (segment (start 143.25 107.5) (end 143.25 96.5) (width 0.25) (layer "B.Cu") (net 3) (uuid "6a82d338-1a03-4242-9b25-8f9d14418cef") ) (segment (start 146.775 121.6) (end 141.975 126.4) (width 0.3) (layer "B.Cu") (net 3) (uuid "7850e557-39c6-40ad-abff-427b2f5f8752") ) (segment (start 61.6 121.535) (end 61.6 126.8) (width 0.3) (layer "B.Cu") (net 3) (uuid "82e1cfec-3390-4334-9a00-4802334dbf23") ) (segment (start 59.8 119.735) (end 59.84 119.775) (width 0.3) (layer "B.Cu") (net 3) (uuid "885af214-7d47-462d-b03c-8b7ab282591b") ) (segment (start 60.828248 63.628248) (end 60 64.456496) (width 0.5) (layer "B.Cu") (net 3) (uuid "8a5ef35f-56de-4abd-bc00-537275a2b0f9") ) (segment (start 60 79.775) (end 56.975 82.8) (width 0.5) (layer "B.Cu") (net 3) (uuid "8b107442-0277-49e5-a5e1-2df7ac1eacfc") ) (segment (start 87.874614 117.85) (end 94.2 124.175386) (width 0.25) (layer "B.Cu") (net 3) (uuid "90fa5569-b6ac-4eed-b1a7-b4a156858714") ) (segment (start 59.84 127.395) (end 58.6 127.395) (width 0.3) (layer "B.Cu") (net 3) (uuid "99e04427-365f-4fc1-8c0d-0cbc85453049") ) (segment (start 105.75 122.05) (end 105.95 122.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "9a3de5df-ee0d-4849-8e2d-1fb6f8bc26f6") ) (segment (start 106.85 72.75) (end 110.75 72.75) (width 0.25) (layer "B.Cu") (net 3) (uuid "a41362c6-c96c-49bc-be99-1fa98ccdce93") ) (segment (start 105.95 122.25) (end 108.05 122.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "a4b18bf2-c221-4cc2-9206-6f350f8960b5") ) (segment (start 55.81 110.592943) (end 55.81 114.61) (width 0.3) (layer "B.Cu") (net 3) (uuid "a52e08e9-35cd-4f61-96c4-45d8d422dc4a") ) (segment (start 144.3 95.45) (end 144.3 86.6) (width 0.25) (layer "B.Cu") (net 3) (uuid "af64a3ec-cd42-4c89-90ba-2c63ce00652d") ) (segment (start 110.5 119.8) (end 110.5 106.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "b049b6d2-46d8-415a-8540-ef594b1a05d5") ) (segment (start 117.19375 106.30625) (end 117.25 106.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "b7274cb2-8aa8-4036-abb7-fa39c31dd2af") ) (segment (start 56.975 82.8) (end 51.3 82.8) (width 0.5) (layer "B.Cu") (net 3) (uuid "b7a2b1e8-b187-40a1-a0a2-bc939f80b102") ) (segment (start 59.8 62.6) (end 56.2 62.6) (width 0.25) (layer "B.Cu") (net 3) (uuid "bc0eee1d-5c9d-4e11-a165-b52cbcdf6c50") ) (segment (start 98 127.4) (end 98 131.6) (width 0.3) (layer "B.Cu") (net 3) (uuid "c011fbc9-523e-44fb-9801-6ad091b431a0") ) (segment (start 105.75 107.25) (end 105.75 122.05) (width 0.2) (layer "B.Cu") (net 3) (uuid "d5d58a62-7a54-43c0-b4fb-64d587fa7004") ) (segment (start 111.725 75.475) (end 110.75 74.5) (width 0.5) (layer "B.Cu") (net 3) (uuid "d63581a7-46d8-41e6-a98e-99aa47bf17c5") ) (segment (start 117.25 106.25) (end 122.75 106.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "d6523196-abf5-4b27-9562-d6af52aa9d46") ) (segment (start 109.415 67.665) (end 110.75 69) (width 0.5) (layer "B.Cu") (net 3) (uuid "dda189aa-bf06-49f6-a870-f16fe934f1ef") ) (segment (start 141.975 126.4) (end 99 126.4) (width 0.3) (layer "B.Cu") (net 3) (uuid "e714dda4-dfe3-4ca8-840d-744250600204") ) (segment (start 55.8 100.15) (end 55.8 110.582943) (width 0.3) (layer "B.Cu") (net 3) (uuid "e796c71c-2c6e-4a02-b014-0a413a5d31c3") ) (segment (start 94.2 124.175386) (end 94.2 132) (width 0.25) (layer "B.Cu") (net 3) (uuid "f0cadc68-2940-4a4b-abfc-ea102552d548") ) (segment (start 86 117.825) (end 86.025 117.85) (width 0.25) (layer "B.Cu") (net 3) (uuid "f211f33f-2fbc-4e3b-aa65-8e8ef06f4398") ) (segment (start 61.6 126.8) (end 61.005 127.395) (width 0.3) (layer "B.Cu") (net 3) (uuid "f3eb9271-f8e3-4770-90df-4c32d4b97604") ) (segment (start 128.75 106.25) (end 135 106.25) (width 0.2) (layer "B.Cu") (net 3) (uuid "f6258b66-7375-4b54-99b0-80abd776e7d6") ) (segment (start 112.25 75.475) (end 111.725 75.475) (width 0.5) (layer "B.Cu") (net 3) (uuid "f8e1ec71-c4dc-4c44-8763-5bcdc8f70b0a") ) (segment (start 88.3 120.900001) (end 89.800001 119.4) (width 0.2) (layer "F.Cu") (net 4) (uuid "0bb69ce5-d6e4-4342-a2dd-a423bcf351de") ) (segment (start 104.25 92.24932) (end 104.25 91.5) (width 0.2) (layer "F.Cu") (net 4) (uuid "22436e36-6e43-4036-b738-e020bd80c64f") ) (segment (start 108.5625 72.2625) (end 108.5625 71) (width 0.2) (layer "F.Cu") (net 4) (uuid "2ac8ffda-79ce-4d52-a063-a6fdbd5d0fd3") ) (segment (start 85.251661 125.53952) (end 87.536876 125.53952) (width 0.2) (layer "F.Cu") (net 4) (uuid "306431f0-a4d4-4cc7-a19a-99beca8bfae9") ) (segment (start 85 124) (end 85 125.287859) (width 0.2) (layer "F.Cu") (net 4) (uuid "3cf49d5a-4a9d-4563-826b-7fee1b6fa31f") ) (segment (start 86.5 123.67) (end 85.33 123.67) (width 0.2) (layer "F.Cu") (net 4) (uuid "6654aea7-49c4-47de-a0ae-6135fe1537a0") ) (segment (start 107.325 73.5) (end 108.5625 72.2625) (width 0.2) (layer "F.Cu") (net 4) (uuid "78bc6c12-6189-4eb5-bac9-d292b7eaa258") ) (segment (start 108.5625 71) (end 108.5625 70.75) (width 0.2) (layer "F.Cu") (net 4) (uuid "87b771cc-1299-43fa-9d18-30367cc2d128") ) (segment (start 85 125.287859) (end 85.251661 125.53952) (width 0.2) (layer "F.Cu") (net 4) (uuid "881db5ec-ea23-405a-908e-f8d0cca6045f") ) (segment (start 92.251923 119.048077) (end 92.251923 104.247397) (width 0.2) (layer "F.Cu") (net 4) (uuid "94ed9c60-998f-4834-9702-0de231c59a3b") ) (segment (start 89.800001 119.4) (end 91.9 119.4) (width 0.2) (layer "F.Cu") (net 4) (uuid "95b913fd-18e5-419e-95c3-418e106ade04") ) (segment (start 108.5625 70.75) (end 109.9625 69.35) (width 0.2) (layer "F.Cu") (net 4) (uuid "9ef33cfc-d00a-460d-a39e-38478cfc6e37") ) (segment (start 92.251923 104.247397) (end 104.25 92.24932) (width 0.2) (layer "F.Cu") (net 4) (uuid "b6db015d-12bd-40f3-9aae-7b00933fd4f7") ) (segment (start 91.9 119.4) (end 92.251923 119.048077) (width 0.2) (layer "F.Cu") (net 4) (uuid "ba8d75e9-785c-4871-95d7-3c0b9d0776d9") ) (segment (start 88.3 124.776396) (end 88.3 120.900001) (width 0.2) (layer "F.Cu") (net 4) (uuid "bed34c51-4f75-45ef-870d-9fd7017419ee") ) (segment (start 87.536876 125.53952) (end 88.3 124.776396) (width 0.2) (layer "F.Cu") (net 4) (uuid "f718a888-8f4e-4689-b12d-4ac85beab982") ) (segment (start 85.33 123.67) (end 85 124) (width 0.2) (layer "F.Cu") (net 4) (uuid "fba1752f-ea5f-4add-9bb0-a626ed721325") ) (via (at 104.25 91.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (uuid "024ccfcb-5ba2-4e8f-a4cf-74aff70d7184") ) (via (at 107.325 73.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (uuid "67e163da-bd92-416b-86d3-1e4575ada78c") ) (segment (start 104.25 76.575) (end 107.325 73.5) (width 0.2) (layer "B.Cu") (net 4) (uuid "b0cd0797-c9c7-406d-b785-57fa12e7e715") ) (segment (start 104.25 91.5) (end 104.25 76.575) (width 0.2) (layer "B.Cu") (net 4) (uuid "d7eda969-71de-43a0-af02-8fd40b8be816") ) (segment (start 90.494801 82.465) (end 93.825 82.465) (width 0.2) (layer "F.Cu") (net 5) (uuid "07261736-e8fe-486a-a645-1a98fe0357ba") ) (segment (start 108.6625 107.25) (end 108.7125 107.2) (width 0.2) (layer "F.Cu") (net 5) (uuid "343f5ec6-e4b7-4a78-87b0-79b41fad069a") ) (segment (start 108.7125 106.0125) (end 108.7125 107.2) (width 0.2) (layer "F.Cu") (net 5) (uuid "36a53479-4520-4d42-9661-f614f34bb253") ) (segment (start 99 106.5) (end 99.70096 105.79904) (width 0.2) (layer "F.Cu") (net 5) (uuid "36b24910-9f1f-4038-815e-56a10905993e") ) (segment (start 96.75 106) (end 97.25 106.5) (width 0.2) (layer "F.Cu") (net 5) (uuid "36d718cb-de1e-401a-9653-bb04e05af03f") ) (segment (start 97.25 106.5) (end 99 106.5) (width 0.2) (layer "F.Cu") (net 5) (uuid "70e75db2-f375-4066-9a94-91e2b84dd52c") ) (segment (start 101.420711 105.44856) (end 108.14856 105.44856) (width 0.2) (layer "F.Cu") (net 5) (uuid "7606de0e-1134-4d19-a02f-d608b0ef7076") ) (segment (start 88.3 84.659801) (end 90.494801 82.465) (width 0.2) (layer "F.Cu") (net 5) (uuid "76e6ef05-87ba-4232-b365-5f744723143d") ) (segment (start 88.3 86.8) (end 88.3 84.659801) (width 0.2) (layer "F.Cu") (net 5) (uuid "8b5bb2bb-95d1-4146-9183-ab63c148efa5") ) (segment (start 108.75 109.0875) (end 108.6625 109) (width 0.2) (layer "F.Cu") (net 5) (uuid "a300ec23-5556-400c-b579-590f48a56526") ) (segment (start 101.070232 105.799039) (end 101.420711 105.44856) (width 0.2) (layer "F.Cu") (net 5) (uuid "a30de5a7-9f52-4754-ade3-4d228f657fa4") ) (segment (start 108.6625 109) (end 108.6625 107.25) (width 0.2) (layer "F.Cu") (net 5) (uuid "af45f9b6-c632-4d7e-a5a7-39b0ef767e94") ) (segment (start 99.70096 105.79904) (end 101.070232 105.799039) (width 0.2) (layer "F.Cu") (net 5) (uuid "bb3ab929-4d87-4bab-be1d-35c79e1eb44b") ) (segment (start 108.14856 105.44856) (end 108.7125 106.0125) (width 0.2) (layer "F.Cu") (net 5) (uuid "be4a4793-df80-48d6-afbd-9d945a7e1509") ) (segment (start 108.75 110.8) (end 108.75 109.0875) (width 0.2) (layer "F.Cu") (net 5) (uuid "f9bcb067-066c-4817-b1cd-ebb202abb507") ) (via (at 96.75 106) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (uuid "92fc9a63-9aad-4c70-be90-efd92e93cd0f") ) (via (at 88.3 86.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (uuid "f8278219-562d-46ce-8978-2930e1fe8797") ) (segment (start 96.35 105.6) (end 93.465686 105.6) (width 0.2) (layer "B.Cu") (net 5) (uuid "1b1e8734-c8b2-4e49-98d6-9446bfcb74f2") ) (segment (start 93.465686 105.6) (end 92.5 104.634314) (width 0.2) (layer "B.Cu") (net 5) (uuid "6544a023-ca16-48ad-90ae-b27300a520a3") ) (segment (start 88.3 87.8) (end 88.3 86.8) (width 0.2) (layer "B.Cu") (net 5) (uuid "72ec5219-e0ab-405a-a398-72d3ac2e3012") ) (segment (start 92.5 104.634314) (end 92.5 92) (width 0.2) (layer "B.Cu") (net 5) (uuid "943cdfbe-cde6-44e8-a5d4-16c4199927d1") ) (segment (start 92.5 92) (end 88.3 87.8) (width 0.2) (layer "B.Cu") (net 5) (uuid "997aad07-40fe-4bcf-b148-6a69ae026667") ) (segment (start 96.75 106) (end 96.35 105.6) (width 0.2) (layer "B.Cu") (net 5) (uuid "a366b441-53a3-4142-b997-68dc6e0c740a") ) (segment (start 79.7375 72.8125) (end 80.95 71.6) (width 0.5) (layer "F.Cu") (net 6) (uuid "1c2779db-5802-4fe7-af2a-f7d7ad907868") ) (segment (start 80.95 71.6) (end 81.9 71.6) (width 0.5) (layer "F.Cu") (net 6) (uuid "20a58e23-954c-4021-b6d2-f068df4a6001") ) (segment (start 78.7625 73.55) (end 79.5 72.8125) (width 0.5) (layer "F.Cu") (net 6) (uuid "2ed4cc2f-4a00-44bf-a138-f60f0681447b") ) (segment (start 71 74.55) (end 71.325 74.225) (width 0.5) (layer "F.Cu") (net 6) (uuid "4c05ef73-bd66-4be4-8bab-a876b72dee45") ) (segment (start 71.325 77.4) (end 71 77.075) (width 0.5) (layer "F.Cu") (net 6) (uuid "69b5837f-0046-4104-a39b-b97d53ccae08") ) (segment (start 70.65 73.55) (end 78.7625 73.55) (width 0.5) (layer "F.Cu") (net 6) (uuid "b12f87d1-ec9a-49f2-a023-f06ea374affb") ) (segment (start 71 77.075) (end 71 74.55) (width 0.5) (layer "F.Cu") (net 6) (uuid "e64057d4-a495-4849-9b6f-7d9ae48139c4") ) (segment (start 71.325 74.225) (end 70.65 73.55) (width 0.25) (layer "F.Cu") (net 6) (uuid "ef689c4c-1984-47a4-8203-667cd4c56b4a") ) (segment (start 79.5 72.8125) (end 79.7375 72.8125) (width 0.5) (layer "F.Cu") (net 6) (uuid "fc6170c2-b62f-4820-ba15-b1692d66acbc") ) (segment (start 73.75 77.78125) (end 73.75 76.25) (width 0.2) (layer "F.Cu") (net 7) (uuid "100dbb95-f292-43d1-8637-4ccc903ac7bf") ) (segment (start 83.05 70.4) (end 83.3 70.15) (width 0.2) (layer "F.Cu") (net 7) (uuid "1ec81ea1-047e-45e3-882a-48894483e35b") ) (segment (start 74.7125 78.74375) (end 73.75 77.78125) (width 0.2) (layer "F.Cu") (net 7) (uuid "3aaf5e83-7933-4848-96ca-88da6f6665ba") ) (segment (start 80.05 75.8) (end 74.2 75.8) (width 0.2) (layer "F.Cu") (net 7) (uuid "80695058-63b3-4d8a-89a7-e6a35dcb08bd") ) (segment (start 72.85625 80.6) (end 74.7125 78.74375) (width 0.2) (layer "F.Cu") (net 7) (uuid "8f98a732-b59e-4c5c-a090-057142e75a38") ) (segment (start 71.1 80.6) (end 72.85625 80.6) (width 0.2) (layer "F.Cu") (net 7) (uuid "b1104dbf-57da-460e-8838-06407acee66d") ) (segment (start 83.3 70.15) (end 85.3 70.15) (width 0.2) (layer "F.Cu") (net 7) (uuid "b739381b-feaf-4277-9b44-15fd31be318c") ) (segment (start 71.25 80.75) (end 71.1 80.6) (width 0.2) (layer "F.Cu") (net 7) (uuid "c63fa0d2-88c0-4659-8009-146f065bcb3a") ) (segment (start 73.75 76.25) (end 74.2 75.8) (width 0.2) (layer "F.Cu") (net 7) (uuid "cbcbaf6b-f8f3-4ad0-aaca-b6166254e3b9") ) (segment (start 85.3 70.15) (end 86.5 71.35) (width 0.2) (layer "F.Cu") (net 7) (uuid "d92028f9-5954-43ac-958a-83fe7f890c39") ) (segment (start 83.05 70.4) (end 83.05 72.8) (width 0.2) (layer "F.Cu") (net 7) (uuid "d9813308-d88e-40bb-ac0a-8fd3e05075b2") ) (segment (start 71.25 84) (end 71.25 80.75) (width 0.2) (layer "F.Cu") (net 7) (uuid "e27f9369-eaa6-4383-9ffc-7178def0150c") ) (segment (start 83.05 72.8) (end 80.05 75.8) (width 0.2) (layer "F.Cu") (net 7) (uuid "f06b1389-fb47-4713-835a-dcf8d9d2c472") ) (segment (start 77.3125 76.86875) (end 74.7625 76.86875) (width 0.25) (layer "F.Cu") (net 8) (uuid "43dca504-1029-4acb-849b-9234a54bd763") ) (segment (start 80.790318 77.9) (end 84.2 77.9) (width 0.5) (layer "F.Cu") (net 8) (uuid "5fd00a77-84ea-46b9-b748-05d13aa3e249") ) (segment (start 84.2 71.6) (end 84.2 72.427818) (width 0.5) (layer "F.Cu") (net 8) (uuid "66319df6-8e5a-471f-b692-c62bf8030ae4") ) (segment (start 77.2 83.68125) (end 75.8 82.28125) (width 0.5) (layer "F.Cu") (net 8) (uuid "97a37185-f4fa-4619-ba0f-d623cdcb05e5") ) (segment (start 79.759068 76.86875) (end 80.790318 77.9) (width 0.5) (layer "F.Cu") (net 8) (uuid "bcb950c2-3bbf-460a-b2de-48506db1aabd") ) (segment (start 79.759068 76.86875) (end 77.3125 76.86875) (width 0.5) (layer "F.Cu") (net 8) (uuid "cc552713-ef4a-4dde-a1c7-04059dd1a3b5") ) (segment (start 75.8 82.28125) (end 75.8 78.38125) (width 0.5) (layer "F.Cu") (net 8) (uuid "d4445238-34c2-442c-aa07-80f9135e94e8") ) (segment (start 75.8 78.38125) (end 77.3125 76.86875) (width 0.5) (layer "F.Cu") (net 8) (uuid "f2a4818c-9fd5-450c-a9d8-afd666593368") ) (segment (start 84.2 72.427818) (end 79.759068 76.86875) (width 0.5) (layer "F.Cu") (net 8) (uuid "fd1e038c-378e-4dca-97b2-9eafe22423be") ) (segment (start 74.7625 76.86875) (end 74.7125 76.91875) (width 0.25) (layer "F.Cu") (net 8) (uuid "fe8cd6bb-3908-486b-85d0-7c111ccb81fe") ) (segment (start 64.2 58.425) (end 64.425 58.2) (width 0.25) (layer "F.Cu") (net 9) (uuid "48a6b7ef-0656-4d1f-b7ef-fdb27e8134f2") ) (segment (start 62.4875 61.2) (end 64.2 59.4875) (width 0.25) (layer "F.Cu") (net 9) (uuid "b3d28d58-77a3-4552-8c47-5d5c80c2f3ea") ) (segment (start 64.2 59.4875) (end 64.2 58.425) (width 0.25) (layer "F.Cu") (net 9) (uuid "e2f536b4-b7af-483c-bd0d-c3a5dceb5de6") ) (segment (start 108.8 120.5) (end 106.9 118.6) (width 0.2) (layer "F.Cu") (net 10) (uuid "002289a0-c37b-459e-8fdc-26cc166dbfd8") ) (segment (start 105.38 129.42) (end 108.7 126.1) (width 0.2) (layer "F.Cu") (net 10) (uuid "077da0d1-684e-424d-aa6d-94dc5bf1f47a") ) (segment (start 107.4 113.3) (end 107.4 114.55) (width 0.2) (layer "F.Cu") (net 10) (uuid "366aceaa-3036-4fc3-94f7-f70e5a7aac7c") ) (segment (start 110.7 123.4) (end 109.4 123.4) (width 0.2) (layer "F.Cu") (net 10) (uuid "5dd4255a-d2f9-443f-91e2-792aafa5aa70") ) (segment (start 107.8 112.9) (end 107.4 113.3) (width 0.2) (layer "F.Cu") (net 10) (uuid "6475fbd1-e56c-452f-95dc-6e1952455c30") ) (segment (start 106.9 118.6) (end 106.9 115.05) (width 0.2) (layer "F.Cu") (net 10) (uuid "664b22f8-6c3c-4ac3-b96d-17e9355ee662") ) (segment (start 109.4 123.4) (end 108.8 122.8) (width 0.2) (layer "F.Cu") (net 10) (uuid "72f281b9-a6d9-433b-a852-8023a15d4cc2") ) (segment (start 110.9 126.1) (end 111.4 125.6) (width 0.2) (layer "F.Cu") (net 10) (uuid "7b60a701-3642-41b3-8c43-63960ead0b97") ) (segment (start 108.7 126.1) (end 110.9 126.1) (width 0.2) (layer "F.Cu") (net 10) (uuid "80bffa38-50ff-499f-834e-89378dcd8583") ) (segment (start 105.38 129.9) (end 105.38 129.42) (width 0.2) (layer "F.Cu") (net 10) (uuid "997df812-b402-43a5-8f02-dfe13b277c7d") ) (segment (start 108.8 122.8) (end 108.8 120.5) (width 0.2) (layer "F.Cu") (net 10) (uuid "b23d70ca-0b4c-446e-9b1a-24e5092d7783") ) (segment (start 106.9 115.05) (end 107.4 114.55) (width 0.2) (layer "F.Cu") (net 10) (uuid "bc99b622-2fb0-47da-ac00-8a4a3e8965e9") ) (segment (start 111.4 124.1) (end 110.7 123.4) (width 0.2) (layer "F.Cu") (net 10) (uuid "c8bbe128-fedc-4b0a-b3c6-de08f81cfcb3") ) (segment (start 111.4 125.6) (end 111.4 124.1) (width 0.2) (layer "F.Cu") (net 10) (uuid "dbb362d5-01cf-4981-af4d-445ebe5c59f2") ) (segment (start 107.8 112.8) (end 107.8 112.9) (width 0.2) (layer "F.Cu") (net 10) (uuid "e10e5d55-05aa-4b98-88d8-81685b53b06d") ) (segment (start 69.74 63.45) (end 70.2 63.91) (width 0.75) (layer "F.Cu") (net 11) (uuid "119f4d4c-0884-48bb-a60a-6a2d0d9acb91") ) (segment (start 72.9125 58) (end 72.9125 59.0875) (width 0.25) (layer "F.Cu") (net 11) (uuid "5587a3f6-1ecc-439e-a3f2-9b67c89307a8") ) (segment (start 69.74 62.26) (end 69.74 63.45) (width 0.25) (layer "F.Cu") (net 11) (uuid "61a6f710-7822-42c1-b6c8-ea01bd405218") ) (segment (start 70.2 68.1) (end 70.65 68.55) (width 0.75) (layer "F.Cu") (net 11) (uuid "708f03af-ce0a-418f-b46e-72dad61913af") ) (segment (start 70.2 63.91) (end 70.2 68.1) (width 0.75) (layer "F.Cu") (net 11) (uuid "e2925668-c39a-4dd8-87f9-e6ef0460c7d1") ) (segment (start 72.9125 59.0875) (end 69.74 62.26) (width 0.25) (layer "F.Cu") (net 11) (uuid "fbc83f42-1841-4d32-84be-f6158ccd881b") ) (segment (start 58.275 61.2) (end 58.275 58.3125) (width 0.25) (layer "F.Cu") (net 12) (uuid "1e5fd8a4-0553-4184-8f58-3e5c4d42c14f") ) (segment (start 58.275 58.3125) (end 58.1125 58.15) (width 0.25) (layer "F.Cu") (net 12) (uuid "a035e7c9-e4d2-4e98-a060-47c59ab5170d") ) (segment (start 120.78 126.1) (end 116.98 129.9) (width 0.2) (layer "F.Cu") (net 13) (uuid "4dcdb14d-d01f-4a53-bde9-1ca7335ae85a") ) (segment (start 119.7 116) (end 119.7 122.1) (width 0.2) (layer "F.Cu") (net 13) (uuid "5c0ff5ca-6018-48cd-b7c0-86b51142be87") ) (segment (start 123 124) (end 123 125.55) (width 0.2) (layer "F.Cu") (net 13) (uuid "68335343-1c24-440e-a515-e1bf2db8bed6") ) (segment (start 120.9 123.3) (end 122.3 123.3) (width 0.2) (layer "F.Cu") (net 13) (uuid "76e826c9-31be-4887-b8b8-7741a517d13f") ) (segment (start 118.4 114.7) (end 118.4 113.55) (width 0.2) (layer "F.Cu") (net 13) (uuid "8aba011e-385a-465d-b3ae-a5713ec1f511") ) (segment (start 118.4 114.7) (end 119.7 116) (width 0.2) (layer "F.Cu") (net 13) (uuid "8b3e14b8-aabc-4f8f-bda0-8c70e761843e") ) (segment (start 118.4 113.55) (end 119.05 112.9) (width 0.2) (layer "F.Cu") (net 13) (uuid "a4fcf1f4-c81a-4ae6-b1e3-2433e3b45cbd") ) (segment (start 123 125.55) (end 122.45 126.1) (width 0.2) (layer "F.Cu") (net 13) (uuid "bb570f31-6a53-4490-8720-63c2c8bc50c5") ) (segment (start 122.3 123.3) (end 123 124) (width 0.2) (layer "F.Cu") (net 13) (uuid "e2fcf56f-6009-40d7-9929-8e120e5d3c83") ) (segment (start 122.45 126.1) (end 120.78 126.1) (width 0.2) (layer "F.Cu") (net 13) (uuid "e96e1009-9813-418d-b069-f8409a4bf1e3") ) (segment (start 119.7 122.1) (end 120.9 123.3) (width 0.2) (layer "F.Cu") (net 13) (uuid "f70fa01b-34ba-437c-80ed-075062036b37") ) (segment (start 55.725 59.375) (end 55.725 58.2) (width 0.25) (layer "F.Cu") (net 14) (uuid "2339da56-6f52-4bde-ac02-d790cf604e8a") ) (segment (start 53.9 61.2) (end 55.725 59.375) (width 0.25) (layer "F.Cu") (net 14) (uuid "3c5bf6cb-7e1c-4d5a-8911-fade51cacf7c") ) (segment (start 53.8875 61.2) (end 53.9 61.2) (width 0.25) (layer "F.Cu") (net 14) (uuid "628de893-403e-4ebb-a0d4-dfe8d0ade1b7") ) (segment (start 142.25 127.2) (end 140.08 129.37) (width 0.2) (layer "F.Cu") (net 15) (uuid "5b9abff5-6bad-411b-97a2-d72a2327247f") ) (segment (start 147.6 127.2) (end 142.25 127.2) (width 0.2) (layer "F.Cu") (net 15) (uuid "6faeacb6-82ad-43ba-89d3-6db6379a456e") ) (segment (start 149.2 125.6) (end 147.6 127.2) (width 0.2) (layer "F.Cu") (net 15) (uuid "9d1c2596-afa6-4afa-a420-ab53d6386900") ) (segment (start 140.08 129.37) (end 140.08 129.9) (width 0.2) (layer "F.Cu") (net 15) (uuid "f12ebc8a-a960-47d2-a740-047f1881ab20") ) (segment (start 48.9875 61.2) (end 48.9875 58.2875) (width 0.25) (layer "F.Cu") (net 16) (uuid "8f7fc351-901f-43e3-8a71-9ddcfec05590") ) (segment (start 129.75 114.7) (end 129.75 113.75) (width 0.25) (layer "F.Cu") (net 17) (uuid "003e2c0f-0e8a-4e86-876f-64cb12909efe") ) (segment (start 129.75 114.7) (end 131.15 116.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "0f600ce7-ad02-4090-bbd0-accf6c8f9c54") ) (segment (start 129.75 113.75) (end 130.6 112.9) (width 0.25) (layer "F.Cu") (net 17) (uuid "32414f73-fd3b-477b-b21b-aa81dee533ee") ) (segment (start 132.28 126.1) (end 128.48 129.9) (width 0.2) (layer "F.Cu") (net 17) (uuid "4885755f-1600-4b1f-b699-038038f296dd") ) (segment (start 133.8 123.1) (end 134.39952 123.69952) (width 0.2) (layer "F.Cu") (net 17) (uuid "73ce3e78-c9e2-4853-8e47-45a4fafd189e") ) (segment (start 132.5 123.1) (end 133.8 123.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "7455bcab-85bb-47d8-beb8-ebdde30d5eb0") ) (segment (start 131.15 121.75) (end 132.5 123.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "88aec441-7366-441a-8334-5ccfc0ba67a9") ) (segment (start 134.2 126.1) (end 132.28 126.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "95644a7a-1d6f-4a9a-98f6-6033f67d6db4") ) (segment (start 131.15 116.1) (end 131.15 121.75) (width 0.2) (layer "F.Cu") (net 17) (uuid "9dde1247-8d48-4ee1-8088-863a8ba76075") ) (segment (start 134.4 125.9) (end 134.2 126.1) (width 0.2) (layer "F.Cu") (net 17) (uuid "c4d12c9e-44a4-4ea9-845c-6a9be38bd7f2") ) (segment (start 134.39952 123.69952) (end 134.39952 123.7) (width 0.2) (layer "F.Cu") (net 17) (uuid "c5500c15-1a8f-4151-8953-e4c4d18cc7ff") ) (segment (start 134.4 123.7) (end 134.4 125.9) (width 0.2) (layer "F.Cu") (net 17) (uuid "d829752a-784c-4267-b38c-f55e2bfe2057") ) (segment (start 163.1 103.8) (end 167.02 107.72) (width 0.2) (layer "F.Cu") (net 18) (uuid "04e57794-6d38-4151-a7d3-257ae177fdd5") ) (segment (start 158.4 107.8) (end 159 107.2) (width 0.2) (layer "F.Cu") (net 18) (uuid "2f776d73-0337-4f89-b66b-e1d85f2ec225") ) (segment (start 159 107.2) (end 159 106) (width 0.2) (layer "F.Cu") (net 18) (uuid "5900dc36-9a64-4620-b281-392e4ecfdecb") ) (segment (start 159 106) (end 161.2 103.8) (width 0.2) (layer "F.Cu") (net 18) (uuid "631cad2b-af3d-41be-8d93-e2d15576846f") ) (segment (start 167.02 107.72) (end 167.4 107.72) (width 0.2) (layer "F.Cu") (net 18) (uuid "6c77a541-5d6b-4fa7-a302-9531416a3bc2") ) (segment (start 154.8 107.8) (end 158.4 107.8) (width 0.2) (layer "F.Cu") (net 18) (uuid "7b2966da-6346-44fe-88a3-dc853153587f") ) (segment (start 153.5 106.5) (end 154.8 107.8) (width 0.2) (layer "F.Cu") (net 18) (uuid "93517567-d5b5-42a3-9ceb-27c789d6ba47") ) (segment (start 151.1 105.25) (end 151.7 105.25) (width 0.25) (layer "F.Cu") (net 18) (uuid "d2e372cd-7ec0-48f4-b7bd-0fa87b16258a") ) (segment (start 161.2 103.8) (end 163.1 103.8) (width 0.2) (layer "F.Cu") (net 18) (uuid "dae3d0be-5fd8-429f-b420-88d5475df722") ) (segment (start 152.95 106.5) (end 153.5 106.5) (width 0.2) (layer "F.Cu") (net 18) (uuid "eb2f08f2-cce9-472c-9706-963367cbf3e1") ) (segment (start 151.7 105.25) (end 152.95 106.5) (width 0.25) (layer "F.Cu") (net 18) (uuid "f17878d0-5de6-46e6-a688-4ecff84944d1") ) (segment (start 167.12 96.42) (end 163.09952 92.39952) (width 0.2) (layer "F.Cu") (net 19) (uuid "23d775dc-d48c-49d3-8ed2-e9d05f79777e") ) (segment (start 154.85 96.5) (end 153.5 95.15) (width 0.2) (layer "F.Cu") (net 19) (uuid "263fdef6-cba0-463d-9042-905bdfd5c5eb") ) (segment (start 163.09952 92.39952) (end 160.90048 92.39952) (width 0.2) (layer "F.Cu") (net 19) (uuid "2dd0ad89-b442-40a1-8180-51ed5ba2eb3d") ) (segment (start 158.85 96.15) (end 158.5 96.5) (width 0.2) (layer "F.Cu") (net 19) (uuid "3369d089-60d7-4264-b22a-59462206ace0") ) (segment (start 160.90048 92.39952) (end 158.85 94.45) (width 0.2) (layer "F.Cu") (net 19) (uuid "3dafe9ef-ae7c-463a-8de1-a6c615451fa3") ) (segment (start 153.5 95.15) (end 152.9 95.15) (width 0.2) (layer "F.Cu") (net 19) (uuid "557c2a08-e13f-471d-9828-cfb9f25bb547") ) (segment (start 152.1 94) (end 151 94) (width 0.2) (layer "F.Cu") (net 19) (uuid "5d47bb41-0b2f-41cc-840e-967b6c410014") ) (segment (start 152.9 94.8) (end 152.1 94) (width 0.2) (layer "F.Cu") (net 19) (uuid "8001222c-c434-4443-a298-3cb5faadac9a") ) (segment (start 152.9 95.15) (end 152.9 94.8) (width 0.2) (layer "F.Cu") (net 19) (uuid "8cc78f0a-cc45-4bfd-b1ae-698ad2cc6855") ) (segment (start 167.4 96.42) (end 167.12 96.42) (width 0.2) (layer "F.Cu") (net 19) (uuid "ba2a3e8f-7fa0-45da-9882-ce99a59af76b") ) (segment (start 158.85 94.45) (end 158.85 96.15) (width 0.2) (layer "F.Cu") (net 19) (uuid "e8ca6436-c704-437b-ade6-64d5aa09fdd4") ) (segment (start 158.5 96.5) (end 154.85 96.5) (width 0.2) (layer "F.Cu") (net 19) (uuid "f3c748c8-18e9-43be-8835-8ce1c7dcc61a") ) (segment (start 163.2 81.1) (end 167.32 85.22) (width 0.2) (layer "F.Cu") (net 20) (uuid "1a8dfbf3-f4ec-40ce-ad04-2b60fb8ac0f7") ) (segment (start 161.3 81.1) (end 163.2 81.1) (width 0.2) (layer "F.Cu") (net 20) (uuid "671ca334-3ce9-4508-9f40-28c5286c8077") ) (segment (start 167.32 85.22) (end 167.4 85.22) (width 0.2) (layer "F.Cu") (net 20) (uuid "9d25b2dd-4dfb-4d14-afba-0b65dd8a119e") ) (segment (start 159.65 82.75) (end 161.3 81.1) (width 0.2) (layer "F.Cu") (net 20) (uuid "a63e1e92-7386-416f-8899-c01499ffd698") ) (segment (start 151 82.75) (end 159.65 82.75) (width 0.2) (layer "F.Cu") (net 20) (uuid "e08e4028-e35f-47fc-b5d6-f3a26de4ffa2") ) (segment (start 100.0125 68.7125) (end 101.75 66.975) (width 0.25) (layer "F.Cu") (net 21) (uuid "a4348402-e995-406a-851e-2c0c27231012") ) (segment (start 99.8 68.7125) (end 100.0125 68.7125) (width 0.25) (layer "F.Cu") (net 21) (uuid "c372e3eb-0fff-4dca-a0e2-3fdbb2951781") ) (segment (start 161.2 69.9) (end 163.3 69.9) (width 0.2) (layer "F.Cu") (net 22) (uuid "0520ce96-e9d9-4060-b368-bdfaadbe9af8") ) (segment (start 151.5 71.8) (end 152.85 73.15) (width 0.2) (layer "F.Cu") (net 22) (uuid "45126be4-3e9e-476d-bc42-1ae7e57166b4") ) (segment (start 152.85 73.15) (end 152.9 73.15) (width 0.2) (layer "F.Cu") (net 22) (uuid "462ad43d-b810-4616-a689-fcdb24515c36") ) (segment (start 158.399519 74.000481) (end 153.750481 74.000481) (width 0.2) (layer "F.Cu") (net 22) (uuid "4a6bd4af-73e4-4ce0-96c0-83249c617543") ) (segment (start 163.3 69.9) (end 167.32 73.92) (width 0.2) (layer "F.Cu") (net 22) (uuid "5b26d2e7-4663-4a3a-b968-615e3d800a76") ) (segment (start 153.750481 74.000481) (end 152.9 73.15) (width 0.2) (layer "F.Cu") (net 22) (uuid "94e53240-a308-4850-9115-4141a56278b1") ) (segment (start 158.9 73.5) (end 158.9 72.2) (width 0.2) (layer "F.Cu") (net 22) (uuid "b71ca44b-11d2-45dd-882b-79276a6ceaa8") ) (segment (start 158.9 72.2) (end 161.2 69.9) (width 0.2) (layer "F.Cu") (net 22) (uuid "d285a735-3f20-48e8-9b2b-6361ee91a378") ) (segment (start 167.32 73.92) (end 167.4 73.92) (width 0.2) (layer "F.Cu") (net 22) (uuid "dc3ec309-b83e-4543-8403-b16f8eaddffe") ) (segment (start 151 71.8) (end 151.5 71.8) (width 0.2) (layer "F.Cu") (net 22) (uuid "e05c98f1-87e5-4772-b45d-5221c4b3e459") ) (segment (start 158.399519 74.000481) (end 158.9 73.5) (width 0.2) (layer "F.Cu") (net 22) (uuid "fa522c78-e933-4d1a-b81d-f169e54e7138") ) (segment (start 101.65 63.35) (end 101.5 63.2) (width 0.25) (layer "F.Cu") (net 23) (uuid "2c62830b-2c3a-461a-95c8-5bffd935cd13") ) (segment (start 108.25 99.5) (end 107 99.5) (width 1) (layer "F.Cu") (net 23) (uuid "2cadef4c-118a-4e7e-8e7b-6a38c20185b6") ) (segment (start 99.8 66.8875) (end 99.8 66.75) (width 0.25) (layer "F.Cu") (net 23) (uuid "2e5c5971-7921-45b4-a127-25ea7b87395f") ) (segment (start 107 99.510704) (end 107.005352 99.505352) (width 1) (layer "F.Cu") (net 23) (uuid "34625ac4-46ab-4f69-bc98-210bbb1e2ac2") ) (segment (start 109.25 100.5) (end 143.6 100.5) (width 1) (layer "F.Cu") (net 23) (uuid "35454187-fb7a-4f5d-865b-08989b2bee7e") ) (segment (start 108.25 101.5) (end 107 101.5) (width 1) (layer "F.Cu") (net 23) (uuid "36c9b23f-c6ad-4f05-abad-b55f10880ae8") ) (segment (start 155.5 106.5) (end 157.3 106.5) (width 1) (layer "F.Cu") (net 23) (uuid "45501701-b3f1-4748-bcfe-eba40bc80b83") ) (segment (start 108.25 101.5) (end 109.25 100.5) (width 1) (layer "F.Cu") (net 23) (uuid "481d06c8-fc2e-42e1-a1e3-5567e3947eee") ) (segment (start 107 101.5) (end 107 100.25) (width 1) (layer "F.Cu") (net 23) (uuid "6b6b551a-bca9-4c1f-aedb-bb83de8ea23b") ) (segment (start 109.25 100.5) (end 108.25 100.5) (width 1) (layer "F.Cu") (net 23) (uuid "70b7113c-4c76-4ea8-ab0d-356e78a304cb") ) (segment (start 143.6 100.5) (end 144.4 101.3) (width 1) (layer "F.Cu") (net 23) (uuid "7297443a-01ac-4b58-9229-44a58622f839") ) (segment (start 107 100.75) (end 107.75 100) (width 1) (layer "F.Cu") (net 23) (uuid "78340aa3-6783-4e28-b1cf-13a5c32569f0") ) (segment (start 108.25 100.5) (end 107.75 100) (width 1) (layer "F.Cu") (net 23) (uuid "83e5f566-0809-489d-b352-6131e6208e8a") ) (segment (start 107.25 99.5) (end 107 99.5) (width 1) (layer "F.Cu") (net 23) (uuid "8947a6bb-b27a-4693-9fce-e74ed046b245") ) (segment (start 150.3 101.3) (end 155.5 106.5) (width 1) (layer "F.Cu") (net 23) (uuid "b3142f63-a861-4fec-b7ab-8f32d977a2a4") ) (segment (start 107.75 100) (end 107.25 99.5) (width 1) (layer "F.Cu") (net 23) (uuid "b3bbcd58-41ac-439b-9645-52e5b4f84510") ) (segment (start 108.25 101.5) (end 107 100.25) (width 1) (layer "F.Cu") (net 23) (uuid "bced524c-4c34-42ed-a144-8bde0a1ce7de") ) (segment (start 101.65 64.9) (end 101.65 63.35) (width 0.25) (layer "F.Cu") (net 23) (uuid "bdc2695f-8d85-4971-af91-24166cb1518b") ) (segment (start 109.25 100.5) (end 108.25 99.5) (width 1) (layer "F.Cu") (net 23) (uuid "bf1a5f6b-b00c-4fd6-b59b-8207d3f53dc1") ) (segment (start 144.4 101.3) (end 150.3 101.3) (width 1) (layer "F.Cu") (net 23) (uuid "d8ca36a4-fa8a-484a-b31c-2d146cd8e08f") ) (segment (start 99.8 66.75) (end 101.65 64.9) (width 0.25) (layer "F.Cu") (net 23) (uuid "e9001721-28a4-493e-8e70-11260dc7b1f5") ) (segment (start 107 101.5) (end 107 100.75) (width 1) (layer "F.Cu") (net 23) (uuid "f0c6b2dd-c539-4827-8171-f3dde7c374f0") ) (segment (start 107 100.5) (end 107 99.510704) (width 1) (layer "F.Cu") (net 23) (uuid "f97e4c23-353a-4d5a-a45a-7e84999122cf") ) (via (at 108.25 100.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (uuid "469a31ec-41ed-4a75-8e77-b53b41645b9d") ) (via (at 107 101.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (uuid "726f5d34-8c77-4fc3-9f19-2aaea1aaf872") ) (via (at 107 99.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (uuid "ad849708-95fd-4d71-96ff-61f3ee5291fb") ) (via (at 101.5 63.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (uuid "e231a08c-b478-485f-8b6d-dfeb8467ba02") ) (segment (start 107 100.75) (end 107.75 100) (width 1) (layer "B.Cu") (net 23) (uuid "14f01ff5-1099-4e2c-bca5-ff63e802c947") ) (segment (start 107 101.5) (end 107.25 101.5) (width 1) (layer "B.Cu") (net 23) (uuid "1dde1fc1-e2db-478d-9fe9-8fc6e4d71e3e") ) (segment (start 107 97.5) (end 107 99.5) (width 1) (layer "B.Cu") (net 23) (uuid "25c7ce10-b0e2-480f-93f3-f810e0e41c10") ) (segment (start 87.15 77.55) (end 87.15 77.65) (width 1) (layer "B.Cu") (net 23) (uuid "3ee9fb69-bdd9-41aa-9f81-97bee5717e71") ) (segment (start 85 75.5) (end 87.15 77.65) (width 1) (layer "B.Cu") (net 23) (uuid "403f9ad2-02ad-45af-b6c6-1f8c34c57aea") ) (segment (start 72.28 66.53) (end 81.25 75.5) (width 1) (layer "B.Cu") (net 23) (uuid "45ba378e-cafc-46a9-947d-413f7615a11d") ) (segment (start 101.5 63.2) (end 103.5 63.2) (width 1) (layer "B.Cu") (net 23) (uuid "5a6f6c6b-982c-45b0-a608-0b721353189e") ) (segment (start 105.56 61.14) (end 105.56 59.6) (width 1) (layer "B.Cu") (net 23) (uuid "725a37c7-7e8a-43e2-ae62-f36afb2bd6eb") ) (segment (start 81.25 75.5) (end 85 75.5) (width 1) (layer "B.Cu") (net 23) (uuid "7994463d-9259-4268-8a04-741cfcdf2a96") ) (segment (start 103.5 63.2) (end 105.56 61.14) (width 1) (layer "B.Cu") (net 23) (uuid "81a53248-b45a-401b-b32e-4e09b7bdd56c") ) (segment (start 101.5 63.2) (end 87.15 77.55) (width 1) (layer "B.Cu") (net 23) (uuid "8721ad38-e1dd-42fd-80ec-31fccba4cc1e") ) (segment (start 107 99.5) (end 107 100.75) (width 1) (layer "B.Cu") (net 23) (uuid "952d9736-80b2-49ce-98c4-fc342426459f") ) (segment (start 107.75 100) (end 108.25 100.5) (width 1) (layer "B.Cu") (net 23) (uuid "95c6be3b-604b-4ef8-8734-3446b7e3b8f7") ) (segment (start 107.25 101.5) (end 108.25 100.5) (width 1) (layer "B.Cu") (net 23) (uuid "9ddc8b20-4d4c-444f-83c1-bb37ed62fcde") ) (segment (start 72.28 63.05) (end 72.28 66.53) (width 1) (layer "B.Cu") (net 23) (uuid "a142db0b-84ea-429e-abbb-8d0cf9d281e1") ) (segment (start 87.15 77.65) (end 107 97.5) (width 1) (layer "B.Cu") (net 23) (uuid "abff6976-b795-4eaf-bd94-55ce83a0c5ae") ) (segment (start 107 101.5) (end 107 120.65) (width 1) (layer "B.Cu") (net 23) (uuid "b284ca59-ab58-4008-a232-0a70a130527f") ) (segment (start 107.25 99.5) (end 107.75 100) (width 1) (layer "B.Cu") (net 23) (uuid "bd960078-8775-4334-b2c9-b36db48cf9bd") ) (segment (start 107 99.5) (end 107.25 99.5) (width 1) (layer "B.Cu") (net 23) (uuid "ccc64233-1427-4f84-b1aa-c1296ac0b406") ) (segment (start 107 101.5) (end 107 100.75) (width 1) (layer "B.Cu") (net 23) (uuid "e8b5d6f7-d58c-4c5c-a209-317bc69aa523") ) (segment (start 105.6 65.1) (end 105.8 64.9) (width 0.25) (layer "F.Cu") (net 24) (uuid "0cd65ad8-4368-4cf4-b567-328b3d36abc6") ) (segment (start 105.8 62.95) (end 103.02 60.17) (width 0.2) (layer "F.Cu") (net 24) (uuid "239bfd88-6303-4a7e-b2ee-79282ead8c35") ) (segment (start 105.8 64.9) (end 105.8 62.95) (width 0.2) (layer "F.Cu") (net 24) (uuid "56bf7229-4099-4d43-926c-352e59e40ee9") ) (segment (start 105.6 67.125) (end 105.6 65.1) (width 0.25) (layer "F.Cu") (net 24) (uuid "596c95d8-e564-4818-94e9-c5a96d436173") ) (segment (start 103.02 60.17) (end 103.02 59.6) (width 0.2) (layer "F.Cu") (net 24) (uuid "6ff26d89-4e74-4f6e-a4a8-b0c05413d4b4") ) (segment (start 100.48 59.6) (end 100.48 58.42) (width 0.2) (layer "F.Cu") (net 25) (uuid "026ff4d1-cb46-479c-a478-9b009724a023") ) (segment (start 109.125 65.95) (end 108.325 65.15) (width 0.2) (layer "F.Cu") (net 25) (uuid "3488bb13-8335-4b20-8273-789e9ecc65ee") ) (segment (start 108.325 63.425) (end 108.325 65.15) (width 0.2) (layer "F.Cu") (net 25) (uuid "43533968-7cf6-4ff5-b23f-4af542150d0d") ) (segment (start 103.6 58.1) (end 104.3 58.8) (width 0.2) (layer "F.Cu") (net 25) (uuid "52618de2-fc19-4bdc-9c74-ce78b0d68524") ) (segment (start 100.48 58.42) (end 100.8 58.1) (width 0.2) (layer "F.Cu") (net 25) (uuid "8640dba7-9597-43ca-b591-b9b1f33cd9bd") ) (segment (start 105.415686 62) (end 106.9 62) (width 0.2) (layer "F.Cu") (net 25) (uuid "89a77506-baf3-4989-b60d-919f17eedf1c") ) (segment (start 108.1375 69.35) (end 108.35 69.35) (width 0.2) (layer "F.Cu") (net 25) (uuid "b1715d8b-68dd-4292-9969-5198930c2cf9") ) (segment (start 108.35 69.35) (end 109.125 68.575) (width 0.2) (layer "F.Cu") (net 25) (uuid "b187b5a5-356c-4dfd-ac0c-4809134ee72a") ) (segment (start 106.9 62) (end 108.325 63.425) (width 0.2) (layer "F.Cu") (net 25) (uuid "bce6069e-c5de-4a15-ae68-606447dea2af") ) (segment (start 104.3 60.884314) (end 105.415686 62) (width 0.2) (layer "F.Cu") (net 25) (uuid "bee60c66-ff2b-42de-9c60-7823024437ea") ) (segment (start 109.125 68.575) (end 109.125 65.95) (width 0.2) (layer "F.Cu") (net 25) (uuid "ca358a99-ed2a-4265-be55-c2712d6b1aba") ) (segment (start 104.3 58.8) (end 104.3 60.884314) (width 0.2) (layer "F.Cu") (net 25) (uuid "faaa20c2-0a72-4357-8ee2-24cdac5998ce") ) (segment (start 100.8 58.1) (end 103.6 58.1) (width 0.2) (layer "F.Cu") (net 25) (uuid "fe643636-ef16-4abc-b1aa-7dc2d01c5f4e") ) (segment (start 114.54 92.54) (end 114.54 92.344184) (width 1) (layer "F.Cu") (net 26) (uuid "03c690f4-1f2d-4fa7-a300-5535186f870a") ) (segment (start 114.54 89.95) (end 114.54 91.21) (width 1) (layer "F.Cu") (net 26) (uuid "03fcc04b-4cb9-4467-9431-d94f25d9f4e7") ) (segment (start 114.562908 91.777092) (end 114.54 91.8) (width 1) (layer "F.Cu") (net 26) (uuid "1b009169-6902-4dbb-a000-8d067bdedd26") ) (segment (start 113.35 65) (end 113.35 64.45) (width 0.25) (layer "F.Cu") (net 26) (uuid "281315f1-70b7-4c1a-8427-1a8ed0d9c000") ) (segment (start 114.54 91.21) (end 114.54 92.54) (width 1) (layer "F.Cu") (net 26) (uuid "41d47713-bb77-4177-8a9d-1b39ba32d73e") ) (segment (start 113.35 64.45) (end 112.4 63.5) (width 0.25) (layer "F.Cu") (net 26) (uuid "5e5daabd-8152-499a-9261-c1b66b932640") ) (segment (start 157.3 95.25) (end 155.25 95.25) (width 1) (layer "F.Cu") (net 26) (uuid "67d61a94-e09d-4fa9-a982-a35317c715ac") ) (segment (start 114.54 92.54) (end 114.54 93.6) (width 1) (layer "F.Cu") (net 26) (uuid "90f50ea3-336d-4d9d-a561-d893bf6e3be2") ) (segment (start 114.54 92.344184) (end 115.107092 91.777092) (width 1) (layer "F.Cu") (net 26) (uuid "a2c35c50-801d-4030-ae73-fb0d09fc321e") ) (segment (start 151.777092 91.777092) (end 115.107092 91.777092) (width 1) (layer "F.Cu") (net 26) (uuid "ae631bcb-a2a9-4a8a-9c15-39c7de54ae2a") ) (segment (start 115.107092 91.777092) (end 114.54 91.21) (width 1) (layer "F.Cu") (net 26) (uuid "cec99afc-23ee-4368-b3e0-ed620092ff72") ) (segment (start 111.5 66.8875) (end 111.5 66.85) (width 0.25) (layer "F.Cu") (net 26) (uuid "f23d73ce-72da-4bfa-93f3-8c3baa3926ea") ) (segment (start 111.5 66.85) (end 113.35 65) (width 0.25) (layer "F.Cu") (net 26) (uuid "f2cf4c31-1e9a-43c0-a2db-48ee0515b39c") ) (segment (start 155.25 95.25) (end 151.777092 91.777092) (width 1) (layer "F.Cu") (net 26) (uuid "f8509d29-4c0e-4238-af07-109803eb5246") ) (via (at 114.54 93.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (uuid "0e265a86-732d-4f57-9175-850c40c1048b") ) (via (at 114.54 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (uuid "91d86378-bf36-4361-b5a2-1b33eb3abe25") ) (via (at 112.4 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (uuid "94baed06-289f-4eb7-9dfa-e0b1087d6b79") ) (via (at 115.5 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (uuid "f3bddeac-211c-4202-9ab6-00570bd4d4a5") ) (segment (start 114.54 69.96) (end 117.174511 67.325489) (width 1) (layer "B.Cu") (net 26) (uuid "0a5b4900-58ea-479e-acc5-af00d5a241b2") ) (segment (start 115.5 91.8) (end 115.5 90.96) (width 1) (layer "B.Cu") (net 26) (uuid "124f7f4f-4f10-4e25-8841-5e63aeebf8fa") ) (segment (start 117.174511 62.325489) (end 116.824511 62.675489) (width 0.2) (layer "B.Cu") (net 26) (uuid "1a0b8653-6adb-40c1-a4eb-68ff7ce4b9cd") ) (segment (start 114.54 93.6) (end 114.54 90) (width 1) (layer "B.Cu") (net 26) (uuid "20116783-0a72-4a8b-9fa6-594a5110ad8b") ) (segment (start 117.174511 59.714511) (end 117.06 59.6) (width 1) (layer "B.Cu") (net 26) (uuid "28eb1323-ae8b-48bc-b103-f4f91f7766d8") ) (segment (start 115.5 92.64) (end 114.54 93.6) (width 1) (layer "B.Cu") (net 26) (uuid "3565194d-069e-4f01-8c5c-2d8b3e1d7675") ) (segment (start 114.54 115.94) (end 118.275 119.675) (width 1) (layer "B.Cu") (net 26) (uuid "4c14cb16-0656-43a5-9a1e-5a60a59efcd8") ) (segment (start 117.174511 62.325489) (end 117.174511 59.714511) (width 1) (layer "B.Cu") (net 26) (uuid "4f26044f-9eb2-475b-8f22-e8588cbce09c") ) (segment (start 115.5 90.96) (end 114.54 90) (width 1) (layer "B.Cu") (net 26) (uuid "5876f61a-c741-43dc-8338-78cd5c69ac71") ) (segment (start 116.824511 62.675489) (end 113.124511 62.675489) (width 0.2) (layer "B.Cu") (net 26) (uuid "82ae41f7-3174-405b-bac5-92d455795151") ) (segment (start 118.275 119.675) (end 118.275 121.1) (width 1) (layer "B.Cu") (net 26) (uuid "aaf9fb87-de75-4583-b573-e2c0a394f2c4") ) (segment (start 113.124511 62.675489) (end 112.4 63.4) (width 0.2) (layer "B.Cu") (net 26) (uuid "c1cdef7a-fe44-4c80-9fbb-ee620fe90cce") ) (segment (start 117.174511 67.325489) (end 117.174511 62.325489) (width 1) (layer "B.Cu") (net 26) (uuid "cc78ce05-8d00-4724-9342-46de376a79ff") ) (segment (start 112.4 63.4) (end 112.4 63.5) (width 0.2) (layer "B.Cu") (net 26) (uuid "d142f2dd-273c-44bb-abb9-edf9f53a2896") ) (segment (start 114.54 90) (end 114.54 69.96) (width 1) (layer "B.Cu") (net 26) (uuid "e0030702-1128-4bea-ad73-01fd794d881f") ) (segment (start 114.54 93.6) (end 114.54 115.94) (width 1) (layer "B.Cu") (net 26) (uuid "e2b61c35-5742-4612-b191-8780ce728406") ) (segment (start 115.5 91.8) (end 115.5 92.64) (width 1) (layer "B.Cu") (net 26) (uuid "fa01019f-3383-40a6-93ff-18eb3a34e97b") ) (segment (start 114.52 59.6) (end 114.52 60.12) (width 0.2) (layer "F.Cu") (net 27) (uuid "26d172fd-59cd-46e5-b4b3-dd8f67d9da39") ) (segment (start 114.52 60.12) (end 117.5 63.1) (width 0.2) (layer "F.Cu") (net 27) (uuid "69daf017-34fe-42d6-ab8d-c9c6fcf08a38") ) (segment (start 117 65.5) (end 117.5 65) (width 0.2) (layer "F.Cu") (net 27) (uuid "7014cbf8-337d-4df6-b67f-1c306e52d7c0") ) (segment (start 117.5 63.1) (end 117.5 65) (width 0.2) (layer "F.Cu") (net 27) (uuid "99bce8c2-c5ba-4b3a-bc01-e2ae0b604956") ) (segment (start 117 67) (end 117 65.5) (width 0.2) (layer "F.Cu") (net 27) (uuid "e6a6bf23-111f-4dce-bc2e-ea54ee9453d1") ) (segment (start 119.5375 69.372244) (end 120.675 68.234744) (width 0.2) (layer "F.Cu") (net 28) (uuid "015c93ee-f99e-4f8f-82ad-e9e7ccec92c2") ) (segment (start 119.5375 69.4) (end 119.5375 69.372244) (width 0.2) (layer "F.Cu") (net 28) (uuid "0f44385b-911d-4471-88bc-2831d7be79f7") ) (segment (start 115.8 58.8) (end 115.8 60.834994) (width 0.2) (layer "F.Cu") (net 28) (uuid "244fd835-b0c3-4a39-8000-30a272e845f1") ) (segment (start 115.1 58.1) (end 115.8 58.8) (width 0.2) (layer "F.Cu") (net 28) (uuid "29244d07-e68c-4e54-ac5f-399a961d957e") ) (segment (start 116.965006 62) (end 118.925 62) (width 0.2) (layer "F.Cu") (net 28) (uuid "29e141b4-12e1-4526-b95e-b59d236cc465") ) (segment (start 120.675 68.234744) (end 120.675 66.05) (width 0.2) (layer "F.Cu") (net 28) (uuid "48e67fb2-8db6-4359-8b84-e7d479dd4dee") ) (segment (start 112.3 58.1) (end 115.1 58.1) (width 0.2) (layer "F.Cu") (net 28) (uuid "4d013761-b242-4ead-8343-510ea780902a") ) (segment (start 115.8 60.834994) (end 116.965006 62) (width 0.2) (layer "F.Cu") (net 28) (uuid "69ec5199-57e5-4138-a78a-a6caa99a817b") ) (segment (start 111.98 58.42) (end 112.3 58.1) (width 0.2) (layer "F.Cu") (net 28) (uuid "8a185942-b6ef-4f3a-a349-7ec1ff8085ef") ) (segment (start 120.675 66.05) (end 119.875 65.25) (width 0.2) (layer "F.Cu") (net 28) (uuid "95301d5e-5356-49a7-9707-32846b6fec8a") ) (segment (start 118.925 62) (end 119.875 62.95) (width 0.2) (layer "F.Cu") (net 28) (uuid "9d384af3-143f-40be-921b-f318a602e150") ) (segment (start 119.875 62.95) (end 119.875 65.25) (width 0.2) (layer "F.Cu") (net 28) (uuid "ba8b0676-0ecd-4f4b-b9b7-2f1bc2d61c09") ) (segment (start 111.98 59.6) (end 111.98 58.42) (width 0.2) (layer "F.Cu") (net 28) (uuid "c9f81fa8-e9b1-41fd-b21e-a90f66edea64") ) (segment (start 123.0375 66.8875) (end 124.875 65.05) (width 0.2) (layer "F.Cu") (net 29) (uuid "2c1782de-e8c6-4239-bc7b-be8b9fbdd61d") ) (segment (start 122.9 66.8875) (end 123.0375 66.8875) (width 0.2) (layer "F.Cu") (net 29) (uuid "6ad437db-7053-4bae-89b2-9663c7fb5abf") ) (segment (start 123.9 63.35) (end 124.875 64.325) (width 0.25) (layer "F.Cu") (net 29) (uuid "b44be632-6fe2-4c30-a9cb-75ecda854269") ) (segment (start 124.875 64.325) (end 124.875 65.05) (width 0.25) (layer "F.Cu") (net 29) (uuid "cb698e8c-185a-48bf-af07-19356db9aec5") ) (via (at 123.9 63.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 29) (uuid "62c48053-cf46-4429-8426-7d56de54f287") ) (segment (start 152.1 76.3) (end 152.1 58.758717) (width 0.75) (layer "B.Cu") (net 29) (uuid "1f8e284d-0c3e-4b80-98f5-a7600146b5d5") ) (segment (start 128 102.8) (end 128 63.249022) (width 1) (layer "B.Cu") (net 29) (uuid "2c4f222d-efcf-4903-a806-b5905ed1054f") ) (segment (start 128.674511 62.574511) (end 128.589501 62.659521) (width 0.2) (layer "B.Cu") (net 29) (uuid "335499c0-03a3-4c58-b734-ea46721d0df4") ) (segment (start 126.4 116.2) (end 126.4 104.4) (width 1) (layer "B.Cu") (net 29) (uuid "4fd0e0d7-901c-4f45-bf91-496ad5d0c43f") ) (segment (start 124.590479 62.659521) (end 123.9 63.35) (width 0.2) (layer "B.Cu") (net 29) (uuid "50a82a82-67d2-46b6-968b-8e185c4a2b2b") ) (segment (start 157.3 81.5) (end 152.1 76.3) (width 0.75) (layer "B.Cu") (net 29) (uuid "559a56a3-0c5d-42b7-ad24-72354d586d24") ) (segment (start 128.56 59.110978) (end 128.56 59.6) (width 0.75) (layer "B.Cu") (net 29) (uuid "5c973e7c-b41f-4a2d-9039-9e8ba0fd6ae2") ) (segment (start 152.1 58.758717) (end 149.941283 56.6) (width 0.75) (layer "B.Cu") (net 29) (uuid "727d5bdd-9e99-490c-a76d-6399fd79f848") ) (segment (start 126.4 104.4) (end 128 102.8) (width 1) (layer "B.Cu") (net 29) (uuid "7397dbf3-d5de-4209-8302-e44a2acdfc63") ) (segment (start 131.070978 56.6) (end 128.56 59.110978) (width 0.75) (layer "B.Cu") (net 29) (uuid "910796ac-c0d0-4d9b-a9e2-707a396666d7") ) (segment (start 129.775 119.575) (end 126.4 116.2) (width 1) (layer "B.Cu") (net 29) (uuid "a4541769-8b54-4968-b8e6-0094f4ca21b8") ) (segment (start 157.3 83.975) (end 157.3 81.5) (width 0.75) (layer "B.Cu") (net 29) (uuid "ac27d78f-9d3c-4513-91f3-1673a4f3cd6d") ) (segment (start 128 63.249022) (end 128.674511 62.574511) (width 1) (layer "B.Cu") (net 29) (uuid "b4c81ba6-747b-4370-9af6-656d527b28bf") ) (segment (start 128.674511 59.714511) (end 128.56 59.6) (width 1) (layer "B.Cu") (net 29) (uuid "c89c194d-ba47-444f-8961-255202a8f1c4") ) (segment (start 128.674511 62.574511) (end 128.674511 59.714511) (width 1) (layer "B.Cu") (net 29) (uuid "c9d51be4-bf85-478c-8356-4f02c675d93c") ) (segment (start 149.941283 56.6) (end 131.070978 56.6) (width 0.75) (layer "B.Cu") (net 29) (uuid "d3a1c13d-a390-42de-bc4d-20c43f7f3db4") ) (segment (start 129.775 119.575) (end 129.775 121.1) (width 1) (layer "B.Cu") (net 29) (uuid "e18779d4-aec5-4cc6-af2f-a23a6152db7b") ) (segment (start 128.589501 62.659521) (end 124.590479 62.659521) (width 0.2) (layer "B.Cu") (net 29) (uuid "ed303143-3f73-457c-9b78-1d21ba9e99f4") ) (segment (start 128.45 65.55) (end 129 65) (width 0.2) (layer "F.Cu") (net 30) (uuid "213035d6-cc51-4598-ae26-18a74cd2d28e") ) (segment (start 126.02 60.02) (end 126.02 59.6) (width 0.2) (layer "F.Cu") (net 30) (uuid "56180b8b-5c26-4d82-a9ca-6569e6cbc696") ) (segment (start 128.45 67.025) (end 128.45 65.55) (width 0.2) (layer "F.Cu") (net 30) (uuid "d9e5b78c-f523-443c-8257-db2db061e985") ) (segment (start 129 65) (end 129 63) (width 0.2) (layer "F.Cu") (net 30) (uuid "e595956e-2f67-4925-847f-b6f277a15e87") ) (segment (start 129 63) (end 126.02 60.02) (width 0.2) (layer "F.Cu") (net 30) (uuid "fb309037-8a61-42be-b937-94ae5a20ff60") ) (segment (start 123.9 58) (end 123.48 58.42) (width 0.2) (layer "F.Cu") (net 31) (uuid "236f32af-868c-4a47-a38d-4e400bf76ecb") ) (segment (start 130.3 61.85) (end 128.575 61.85) (width 0.2) (layer "F.Cu") (net 31) (uuid "2c6e0c7d-b2f0-4199-b896-a420b56d84a7") ) (segment (start 131.7 63.25) (end 130.3 61.85) (width 0.2) (layer "F.Cu") (net 31) (uuid "378df637-9c3d-4b74-bf44-433d83fac26a") ) (segment (start 130.9875 69.45) (end 131.475 69.45) (width 0.2) (layer "F.Cu") (net 31) (uuid "5dc92c46-74fc-4f50-b953-6d32e6c3beac") ) (segment (start 132.525 68.4) (end 132.525 66.125) (width 0.2) (layer "F.Cu") (net 31) (uuid "6dedd7ab-6865-4cde-9e38-38313da40728") ) (segment (start 126.8 58) (end 123.9 58) (width 0.2) (layer "F.Cu") (net 31) (uuid "834bfc44-3eef-4947-b903-3b68026c3818") ) (segment (start 128.575 61.85) (end 127.325 60.6) (width 0.2) (layer "F.Cu") (net 31) (uuid "89cbcc18-38cf-4826-a8d3-a5e1b783280c") ) (segment (start 123.48 58.42) (end 123.48 59.6) (width 0.2) (layer "F.Cu") (net 31) (uuid "b48fce37-f3a6-4900-9344-6bb3318a02f8") ) (segment (start 131.475 69.45) (end 132.525 68.4) (width 0.2) (layer "F.Cu") (net 31) (uuid "beec2800-75cf-4fa8-b8e8-d3917717072d") ) (segment (start 127.325 58.525) (end 126.8 58) (width 0.2) (layer "F.Cu") (net 31) (uuid "c3541265-4373-45b6-b05b-0489fc5e3cfc") ) (segment (start 127.325 60.6) (end 127.325 58.525) (width 0.2) (layer "F.Cu") (net 31) (uuid "d8d52c61-1440-4010-ad2a-6e0892142055") ) (segment (start 131.7 65.3) (end 131.7 63.25) (width 0.2) (layer "F.Cu") (net 31) (uuid "db36fa93-5ca0-43d3-ace1-58390ceca476") ) (segment (start 132.525 66.125) (end 131.7 65.3) (width 0.2) (layer "F.Cu") (net 31) (uuid "e7b782d5-7842-4a70-860f-c8b9d2ccb50c") ) (segment (start 140.06 60.26) (end 140.06 59.6) (width 0.75) (layer "F.Cu") (net 32) (uuid "07a07afa-692f-421f-abb2-ebda8efb2876") ) (segment (start 134.85 66.5) (end 134.85 66.975) (width 0.25) (layer "F.Cu") (net 32) (uuid "4ea8fa64-e5f8-4b71-8f19-ffa3a8d3260e") ) (segment (start 136.3 65.05) (end 134.85 66.5) (width 0.25) (layer "F.Cu") (net 32) (uuid "77934e73-e6cb-4ada-bf07-ccd579af37a0") ) (segment (start 136.3 64.4) (end 135.5 63.6) (width 0.25) (layer "F.Cu") (net 32) (uuid "86334d9e-d336-4115-b4bd-8db8efafd2bc") ) (segment (start 157.3 72.75) (end 157.3 65.120854) (width 0.75) (layer "F.Cu") (net 32) (uuid "9cfdd78d-fd33-436d-b913-6b03f10dc782") ) (segment (start 153.679146 61.5) (end 141.3 61.5) (width 0.75) (layer "F.Cu") (net 32) (uuid "bab5f029-13ce-4815-919e-db3d74112091") ) (segment (start 141.3 61.5) (end 140.06 60.26) (width 0.75) (layer "F.Cu") (net 32) (uuid "bdd2627d-610a-46ed-8461-bf3d129ebed8") ) (segment (start 157.3 65.120854) (end 153.679146 61.5) (width 0.75) (layer "F.Cu") (net 32) (uuid "cd878986-fa25-4712-b791-86962523180e") ) (segment (start 136.3 65.05) (end 136.3 64.4) (width 0.25) (layer "F.Cu") (net 32) (uuid "d06b84eb-4601-4c88-a3df-99ad68ca6c6a") ) (via (at 135.5 63.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 32) (uuid "662053cb-abc2-486b-85b2-79792c9779b6") ) (segment (start 141.025 119.6125) (end 137.25 115.8375) (width 1) (layer "B.Cu") (net 32) (uuid "0123e9fd-e9f8-4a14-9ba5-0644ab30ad0d") ) (segment (start 135.5 63.4) (end 135.5 63.6) (width 0.2) (layer "B.Cu") (net 32) (uuid "2d703219-d5a5-473a-ab2d-19ef08765879") ) (segment (start 139.724511 62.675489) (end 136.224511 62.675489) (width 0.2) (layer "B.Cu") (net 32) (uuid "33799257-05f6-4070-9522-a4395cdcad83") ) (segment (start 140.074511 67.625489) (end 140.074511 62.325489) (width 1) (layer "B.Cu") (net 32) (uuid "3c0b835d-f316-465b-9ffa-bb45d42771a2") ) (segment (start 137.25 115.8375) (end 137.25 70.45) (width 1) (layer "B.Cu") (net 32) (uuid "3d961e83-16f3-4e46-a699-594e9beab056") ) (segment (start 140.074511 59.614511) (end 140.06 59.6) (width 1) (layer "B.Cu") (net 32) (uuid "6919d1e8-e408-4482-b0fa-8495d4760989") ) (segment (start 137.25 70.45) (end 140.074511 67.625489) (width 1) (layer "B.Cu") (net 32) (uuid "a3a3a23d-3329-4228-918d-20a73bced3b1") ) (segment (start 141.025 119.6125) (end 141.025 121.1) (width 1) (layer "B.Cu") (net 32) (uuid "adcb55c1-fb89-4454-8ab4-412556583244") ) (segment (start 140.074511 62.325489) (end 139.724511 62.675489) (width 0.2) (layer "B.Cu") (net 32) (uuid "bb340918-91c9-45d2-89dd-8bc1e211e3b8") ) (segment (start 136.224511 62.675489) (end 135.5 63.4) (width 0.2) (layer "B.Cu") (net 32) (uuid "dbb431bc-6f6b-4c86-9a34-42e134a5f148") ) (segment (start 140.074511 62.325489) (end 140.074511 59.614511) (width 1) (layer "B.Cu") (net 32) (uuid "eca6eb85-b22d-4c71-9427-4892e02a474f") ) (segment (start 140.45 65.15) (end 140.55 65.05) (width 0.2) (layer "F.Cu") (net 33) (uuid "1246d64b-6e9e-4560-b222-17aa950c3a91") ) (segment (start 140.55 65.05) (end 140.55 63.05) (width 0.2) (layer "F.Cu") (net 33) (uuid "2ad2b825-904c-4875-b1fd-da4f787f93ad") ) (segment (start 137.52 60.02) (end 137.52 59.6) (width 0.2) (layer "F.Cu") (net 33) (uuid "4a0f5bb4-4b44-44f9-8d3c-d095cfb12c94") ) (segment (start 140.45 67.075) (end 140.45 65.15) (width 0.2) (layer "F.Cu") (net 33) (uuid "8b70b9f0-841a-4338-8371-294be962f920") ) (segment (start 140.55 63.05) (end 137.52 60.02) (width 0.2) (layer "F.Cu") (net 33) (uuid "baf23a2f-756d-4d46-9043-f2ab8168117c") ) (segment (start 138.3 58.2) (end 135.5 58.2) (width 0.2) (layer "F.Cu") (net 34) (uuid "2dd62dfe-c912-419c-992f-9e81fd40d83e") ) (segment (start 138.8 58.7) (end 138.3 58.2) (width 0.2) (layer "F.Cu") (net 34) (uuid "61080529-b147-4cb9-bc31-a57d125d7a3b") ) (segment (start 142.5 62.3) (end 140.365006 62.3) (width 0.2) (layer "F.Cu") (net 34) (uuid "74b039fe-8987-4aac-a6c5-be29c1d91834") ) (segment (start 134.98 58.72) (end 134.98 59.6) (width 0.2) (layer "F.Cu") (net 34) (uuid "76e3da5d-633e-4554-86ed-ec0af301cebc") ) (segment (start 135.5 58.2) (end 134.98 58.72) (width 0.2) (layer "F.Cu") (net 34) (uuid "7ce42249-dc0e-47ab-914a-4d0d2cc90455") ) (segment (start 144.425 66.05) (end 143.625 65.25) (width 0.2) (layer "F.Cu") (net 34) (uuid "7f09a246-90ac-4432-a78a-ff7a0cc8fa68") ) (segment (start 138.8 60.734994) (end 138.8 58.7) (width 0.2) (layer "F.Cu") (net 34) (uuid "88379031-b0cf-409e-9f73-118ef3ada8df") ) (segment (start 143.625 63.425) (end 143.625 65.25) (width 0.2) (layer "F.Cu") (net 34) (uuid "8c7080db-03f0-485e-bfe3-58f4f0d36350") ) (segment (start 142.5 62.3) (end 143.625 63.425) (width 0.2) (layer "F.Cu") (net 34) (uuid "a5f6a008-4e5a-4c20-9d09-16654a4f21df") ) (segment (start 143.5 69.425) (end 144.425 68.5) (width 0.2) (layer "F.Cu") (net 34) (uuid "ae7d5f88-4cef-4f77-8c80-6f235207e95b") ) (segment (start 140.365006 62.3) (end 138.8 60.734994) (width 0.2) (layer "F.Cu") (net 34) (uuid "b2cc939e-9677-4d14-bbce-bd529f090524") ) (segment (start 143.0125 69.425) (end 143.5 69.425) (width 0.2) (layer "F.Cu") (net 34) (uuid "b4facb6c-6e1c-4e61-94c8-556148f77571") ) (segment (start 144.425 68.5) (end 144.425 66.05) (width 0.2) (layer "F.Cu") (net 34) (uuid "cc363959-936d-46b0-b33e-b5af0a4a5499") ) (segment (start 106.4 116.5625) (end 106.4 119.16) (width 0.2) (layer "F.Cu") (net 35) (uuid "035b3fa1-3c28-4f82-bb57-ff583378b44a") ) (segment (start 105.8 115.9625) (end 106.4 116.5625) (width 0.2) (layer "F.Cu") (net 35) (uuid "19f9f5de-8672-4791-87e0-926cdb5d0793") ) (segment (start 102.9 122.3) (end 104.1 121.1) (width 0.2) (layer "F.Cu") (net 35) (uuid "293086a1-58ec-44e7-82b6-988ab180d71c") ) (segment (start 108.55 124.75) (end 109 124.75) (width 1) (layer "F.Cu") (net 35) (uuid "2c0c4ac3-ed5d-4612-800a-45530a7bf67e") ) (segment (start 104.1 121.1) (end 104.46 121.1) (width 0.2) (layer "F.Cu") (net 35) (uuid "2e7e61ed-87a8-4281-8471-8b5abee3f1fc") ) (segment (start 107.1 122.9) (end 105.4 122.9) (width 1) (layer "F.Cu") (net 35) (uuid "307e63ab-faf6-491a-9f29-5e206e58e406") ) (segment (start 101.1 122.9) (end 101.7 122.3) (width 0.2) (layer "F.Cu") (net 35) (uuid "357fa08d-921b-437b-a6ef-2274b8c48183") ) (segment (start 105.4 122.9) (end 104.46 121.96) (width 1) (layer "F.Cu") (net 35) (uuid "39fcbf5c-28f9-4d64-a447-f8ad25404676") ) (segment (start 102.84 128.442199) (end 104.84172 126.440479) (width 1) (layer "F.Cu") (net 35) (uuid "5f83d5fc-d760-4258-8e84-46c06a724407") ) (segment (start 101.1 123.7375) (end 101.1 122.9) (width 0.2) (layer "F.Cu") (net 35) (uuid "6654dd49-a260-4254-ab13-ca20cbf95795") ) (segment (start 104.46 121.96) (end 104.46 121.1) (width 1) (layer "F.Cu") (net 35) (uuid "7e48f687-88a5-4ef2-9486-3f4a9b4927a4") ) (segment (start 101.7 122.3) (end 102.9 122.3) (width 0.2) (layer "F.Cu") (net 35) (uuid "9e392e04-ac88-4712-abd5-39279aee4b22") ) (segment (start 102.84 129.9) (end 102.84 128.442199) (width 1) (layer "F.Cu") (net 35) (uuid "a457e548-c6ea-474c-9491-8af92bd27b9c") ) (segment (start 106.859521 126.440479) (end 108.55 124.75) (width 1) (layer "F.Cu") (net 35) (uuid "bab8956c-7d75-41d5-9361-4f463fca8256") ) (segment (start 109 124.8) (end 107.1 122.9) (width 1) (layer "F.Cu") (net 35) (uuid "c66eecb5-2cf7-4250-8d03-16f731b43150") ) (segment (start 106.4 119.16) (end 104.46 121.1) (width 0.2) (layer "F.Cu") (net 35) (uuid "d1a6e82b-a68d-4976-9ae6-8a7039bca975") ) (segment (start 104.84172 126.440479) (end 106.859521 126.440479) (width 1) (layer "F.Cu") (net 35) (uuid "fdbe2c40-cae7-4bf4-b7ce-015b78fdee4d") ) (segment (start 106.32 131.5) (end 107.92 129.9) (width 0.2) (layer "F.Cu") (net 36) (uuid "0381d01f-50d9-4a5f-ba3b-24fce693802c") ) (segment (start 98.9 131) (end 99.4 131.5) (width 0.2) (layer "F.Cu") (net 36) (uuid "05513f70-b9d3-4848-90ed-f020284c211a") ) (segment (start 100.25 126.115006) (end 98.9 127.465006) (width 0.2) (layer "F.Cu") (net 36) (uuid "078082d5-5d28-4a5f-8fd7-58366b61ecbb") ) (segment (start 98.9 127.465006) (end 98.9 131) (width 0.2) (layer "F.Cu") (net 36) (uuid "192b4f47-dbfc-42e5-938d-795c1ca5cb86") ) (segment (start 102.175 114.075) (end 101.23818 114.075) (width 0.2) (layer "F.Cu") (net 36) (uuid "662c9548-d974-46cb-9a98-0687347e11b4") ) (segment (start 99.4 131.5) (end 106.32 131.5) (width 0.2) (layer "F.Cu") (net 36) (uuid "78238f26-4588-4487-84dd-cf1585b491fb") ) (segment (start 100.250001 115.062499) (end 100.25 126.115006) (width 0.2) (layer "F.Cu") (net 36) (uuid "8597f660-352d-4ede-b2e8-9257d8fbe082") ) (segment (start 101.23818 114.075) (end 100.250341 115.062839) (width 0.2) (layer "F.Cu") (net 36) (uuid "a06f0589-cb5a-4d65-a6a5-16677b2fc4cf") ) (segment (start 102.175 113.0625) (end 102.7125 112.525) (width 0.2) (layer "F.Cu") (net 36) (uuid "bec588b6-78db-418b-bbee-09a786f6c3d7") ) (segment (start 102.175 114.075) (end 102.175 113.0625) (width 0.2) (layer "F.Cu") (net 36) (uuid "e62897cf-d5c5-4342-b25e-cf5fa276b083") ) (segment (start 114.44 129.9) (end 114.44 128.185) (width 1) (layer "F.Cu") (net 37) (uuid "02891aa7-e708-4145-9f46-718640c774bf") ) (segment (start 115.735 121.1) (end 115.735 122.335) (width 1) (layer "F.Cu") (net 37) (uuid "2f2445d1-6a1f-4c9f-b7fb-368ca1b235b0") ) (segment (start 114.675 116.3125) (end 114.675 120.04) (width 0.2) (layer "F.Cu") (net 37) (uuid "4a01cf68-5fff-4604-aeb4-039767241b37") ) (segment (start 114.675 120.04) (end 115.735 121.1) (width 0.2) (layer "F.Cu") (net 37) (uuid "4a38fccb-6f37-40dd-8984-04ad101e32d7") ) (segment (start 118.9 123.1) (end 120.6 124.8) (width 1) (layer "F.Cu") (net 37) (uuid "52f4e838-d17e-43c7-8080-50436f133c0d") ) (segment (start 118.7 126.4) (end 120.35 124.75) (width 1) (layer "F.Cu") (net 37) (uuid "5aae47db-4e2a-47e0-bde4-ae6669b0cf5f") ) (segment (start 120.6 124.75) (end 120.6 124.665) (width 0.75) (layer "F.Cu") (net 37) (uuid "7d0457e0-7613-478b-9cf8-aa66c6453ada") ) (segment (start 120.35 124.75) (end 120.6 124.75) (width 1) (layer "F.Cu") (net 37) (uuid "8057c400-fe27-49f5-a520-d82bbc34256a") ) (segment (start 112.9 122.5) (end 114.335 122.5) (width 0.2) (layer "F.Cu") (net 37) (uuid "8541e13c-f450-454c-9f3a-24f1e5785e8b") ) (segment (start 112.7 122.7) (end 112.9 122.5) (width 0.2) (layer "F.Cu") (net 37) (uuid "98d67c33-20b3-4966-a4bf-27130bdfa04a") ) (segment (start 112.7 123.8375) (end 112.7 122.7) (width 0.2) (layer "F.Cu") (net 37) (uuid "9f7610df-a41d-4133-b419-4899289e1d4f") ) (segment (start 115.735 122.335) (end 116.5 123.1) (width 1) (layer "F.Cu") (net 37) (uuid "ad786fe1-1f86-4ea7-8459-41be7091e801") ) (segment (start 116.5 123.1) (end 118.9 123.1) (width 1) (layer "F.Cu") (net 37) (uuid "b2a16d47-116d-401e-96d9-c1caaaeea8c5") ) (segment (start 114.335 122.5) (end 115.735 121.1) (width 0.2) (layer "F.Cu") (net 37) (uuid "d224229e-a9d3-41fd-93cf-0fa06d80b4b9") ) (segment (start 116.225 126.4) (end 118.7 126.4) (width 1) (layer "F.Cu") (net 37) (uuid "dab736ee-3f97-428b-8f4e-9bdac3157d3c") ) (segment (start 114.9875 116) (end 114.675 116.3125) (width 0.2) (layer "F.Cu") (net 37) (uuid "e62e214d-0ec3-458d-9a47-947353c07f25") ) (segment (start 114.44 128.185) (end 116.225 126.4) (width 1) (layer "F.Cu") (net 37) (uuid "f84335ae-d6b3-4873-bea6-3d098b36feb1") ) (segment (start 110.5 127.4) (end 111.8 126.1) (width 0.2) (layer "F.Cu") (net 38) (uuid "1159d11c-5d89-4256-8edf-949b9ed68cca") ) (segment (start 110.920978 131.4) (end 110.5 130.979022) (width 0.2) (layer "F.Cu") (net 38) (uuid "740e8b42-941b-4134-bdac-95c914658fa4") ) (segment (start 111.8 126.1) (end 111.8 120.15) (width 0.2) (layer "F.Cu") (net 38) (uuid "8e47a665-9c08-4768-a398-659dc70c61d1") ) (segment (start 112.275 114.05) (end 112.3375 114.05) (width 0.2) (layer "F.Cu") (net 38) (uuid "9c955e68-1bff-4e76-81ab-bf054e90be27") ) (segment (start 114.15 115.3) (end 112.9 114.05) (width 0.2) (layer "F.Cu") (net 38) (uuid "b9fdb35e-e301-4a7a-a4c3-2a7befd5b3fc") ) (segment (start 112.3375 114.05) (end 113.9125 112.475) (width 0.2) (layer "F.Cu") (net 38) (uuid "be458c79-07f5-4488-8e88-c4b31af30827") ) (segment (start 113.9125 112.6) (end 113.875 112.6375) (width 0.2) (layer "F.Cu") (net 38) (uuid "c98eb0de-e689-4a68-87ec-9e870d507aec") ) (segment (start 114.15 117.8) (end 114.15 115.3) (width 0.2) (layer "F.Cu") (net 38) (uuid "ce073a10-e358-497d-b8c5-f632d53fbcfe") ) (segment (start 111.8 120.15) (end 114.15 117.8) (width 0.2) (layer "F.Cu") (net 38) (uuid "d0b057bd-18af-4651-953d-f06d8af34fd9") ) (segment (start 119.52 129.9) (end 118.02 131.4) (width 0.2) (layer "F.Cu") (net 38) (uuid "e0a74de3-3e7d-4205-bc97-af26ebed3fd4") ) (segment (start 110.5 130.979022) (end 110.5 127.4) (width 0.2) (layer "F.Cu") (net 38) (uuid "e7ad3959-5e58-47f8-9ca1-65f4f7b79845") ) (segment (start 112.9 114.05) (end 112.275 114.05) (width 0.2) (layer "F.Cu") (net 38) (uuid "eebeab5c-a196-429e-965f-43540541d83e") ) (segment (start 118.02 131.4) (end 110.920978 131.4) (width 0.2) (layer "F.Cu") (net 38) (uuid "ff94bf26-758b-438b-b4f4-9f1a0f4109ea") ) (segment (start 67.2 70.275) (end 67.2 63.45) (width 1.5) (layer "F.Cu") (net 39) (uuid "8038658e-e673-4a7f-8115-34289cc48676") ) (segment (start 64.3125 61.2) (end 64.3125 61.1875) (width 0.25) (layer "F.Cu") (net 39) (uuid "9a8c2cde-2746-4369-861b-e99d72c7cfda") ) (segment (start 66.975 70.5) (end 67.2 70.275) (width 1.5) (layer "F.Cu") (net 39) (uuid "ad869d90-8251-4456-8c02-f2cfea18eeff") ) (segment (start 65.35 61.2) (end 67.2 63.05) (width 0.25) (layer "F.Cu") (net 39) (uuid "b959eaca-cb07-4858-b10b-3b6884bde834") ) (segment (start 64.3125 61.2) (end 65.35 61.2) (width 0.25) (layer "F.Cu") (net 39) (uuid "f2039a59-24b7-4fad-bca3-56e65ce7c8bf") ) (segment (start 102.1 98) (end 102.1 120.6) (width 1.5) (layer "B.Cu") (net 39) (uuid "0912038f-3351-4914-be29-5dcfe48bd32e") ) (segment (start 157.945 89.055) (end 160 87) (width 1.5) (layer "B.Cu") (net 39) (uuid "0c809f1d-45fc-4c92-9364-7704bb4f5940") ) (segment (start 111.1 123.5) (end 113.195 121.405) (width 1.5) (layer "B.Cu") (net 39) (uuid "12eb061c-1353-4a3e-a0dd-9c50e4e24eb8") ) (segment (start 67.2 66.2) (end 79.74 78.74) (width 1.5) (layer "B.Cu") (net 39) (uuid "29762ecc-87f3-4410-adb8-8832b5a27f44") ) (segment (start 149.125 116.6) (end 142.425 123.3) (width 1.5) (layer "B.Cu") (net 39) (uuid "2c514be5-11d8-4b2b-ae6a-e1691302fd04") ) (segment (start 160 80.53) (end 157.3 77.83) (width 1.5) (layer "B.Cu") (net 39) (uuid "2d201ab2-34a3-4b03-b9ff-bdaa6548e59a") ) (segment (start 67.2 63.45) (end 67.2 66.2) (width 1.5) (layer "B.Cu") (net 39) (uuid "32e10420-9ea1-4d3b-ad56-6ea76abf24a7") ) (segment (start 126.317919 123.1) (end 124.695 121.477081) (width 1.5) (layer "B.Cu") (net 39) (uuid "33060168-5554-40cf-ba6e-bd94bab85bb1") ) (segment (start 157.3 89.055) (end 157.945 89.055) (width 1.5) (layer "B.Cu") (net 39) (uuid "340ae1c7-1063-4a45-8bd7-b2c774e9cb04") ) (segment (start 154 116.6) (end 149.125 116.6) (width 1.5) (layer "B.Cu") (net 39) (uuid "3e6b7838-6b57-4ce3-88da-0965b19eeb32") ) (segment (start 79.74 78.74) (end 82.84 78.74) (width 1.5) (layer "B.Cu") (net 39) (uuid "4dfa039b-01bb-40f0-b289-9f43e3791990") ) (segment (start 157.3 113.3) (end 154 116.6) (width 1.5) (layer "B.Cu") (net 39) (uuid "4ecb8dbe-9bdf-46c9-81c1-2ca70841c808") ) (segment (start 160 103.03) (end 157.3 100.33) (width 1.5) (layer "B.Cu") (net 39) (uuid "5eea41ad-4b51-4bf0-9bc4-186096182b0b") ) (segment (start 114.717919 123) (end 122.7 123) (width 1.5) (layer "B.Cu") (net 39) (uuid "65e0372d-192d-41e3-ac3e-5013582c45b2") ) (segment (start 157.77 100.33) (end 160 98.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "6721b285-34e3-48c4-b169-d24d9cdc7908") ) (segment (start 126.317919 123.1) (end 133.945 123.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "67f90d5c-757e-4dae-a246-c6fef8b2f57d") ) (segment (start 122.7 123) (end 124.695 121.005) (width 1.5) (layer "B.Cu") (net 39) (uuid "76f151b7-5f48-4f8b-9937-ca487a00905c") ) (segment (start 142.425 123.3) (end 137.9 123.3) (width 1.5) (layer "B.Cu") (net 39) (uuid "83f9a85e-1979-4a9f-9a67-6378cdac4f7b") ) (segment (start 133.945 123.1) (end 135.945 121.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "85dff736-37dd-4d62-8b2b-29aa20d833c6") ) (segment (start 137.9 123.3) (end 135.945 121.345) (width 1.5) (layer "B.Cu") (net 39) (uuid "8aab3096-d8cb-48b1-9055-34292658fab0") ) (segment (start 157.3 100.33) (end 157.77 100.33) (width 1.5) (layer "B.Cu") (net 39) (uuid "8d04f3d1-63ff-47bf-94a7-e7f935c30dd0") ) (segment (start 101.92 121.1) (end 101.92 120.78) (width 1.5) (layer "B.Cu") (net 39) (uuid "97c5a02a-2666-49e9-9e98-604e9f286465") ) (segment (start 101.92 121.52) (end 103.9 123.5) (width 1.5) (layer "B.Cu") (net 39) (uuid "9f8dda7c-5750-430d-afb8-425ac19854e0") ) (segment (start 113.195 121.1) (end 113.195 121.477081) (width 1.5) (layer "B.Cu") (net 39) (uuid "a0ef383b-5126-4877-a527-6b1e19fd2ee7") ) (segment (start 103.9 123.5) (end 111.1 123.5) (width 1.5) (layer "B.Cu") (net 39) (uuid "a31cb735-ac22-48b5-8c89-9bd6e96f0d87") ) (segment (start 157.82 111.58) (end 160 109.4) (width 1.5) (layer "B.Cu") (net 39) (uuid "a4657d74-169a-4285-a16d-ce01e423fe33") ) (segment (start 101.92 120.78) (end 102.1 120.6) (width 1.5) (layer "B.Cu") (net 39) (uuid "ab641efd-e444-4771-965a-82de9760a098") ) (segment (start 157.3 111.58) (end 157.3 113.3) (width 1.5) (layer "B.Cu") (net 39) (uuid "ada741bb-24cb-4f1f-b972-cee15dae86ec") ) (segment (start 124.695 121.477081) (end 124.695 121.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "bb3f3325-c267-441e-834e-85f2e0e8f951") ) (segment (start 101.92 121.1) (end 101.92 121.52) (width 1.5) (layer "B.Cu") (net 39) (uuid "bce346ee-5b06-4819-8799-03f95e66552e") ) (segment (start 82.84 78.74) (end 102.1 98) (width 1.5) (layer "B.Cu") (net 39) (uuid "c02fd5b7-1ad3-4b3c-9fbb-012ffcd9e2fa") ) (segment (start 157.3 111.58) (end 157.82 111.58) (width 1.5) (layer "B.Cu") (net 39) (uuid "cb354f3b-7743-4bc2-907f-a7c10291e9b5") ) (segment (start 113.195 121.477081) (end 114.717919 123) (width 1.5) (layer "B.Cu") (net 39) (uuid "d3bd8b94-173b-4281-812c-d35a1365827c") ) (segment (start 160 91.755) (end 157.3 89.055) (width 1.5) (layer "B.Cu") (net 39) (uuid "d7e437c4-3ec1-4eac-a5ad-60907770d88b") ) (segment (start 135.945 121.345) (end 135.945 121.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "d8f3d185-bf0b-4c4c-b68e-ce7a649d63cb") ) (segment (start 160 87) (end 160 80.53) (width 1.5) (layer "B.Cu") (net 39) (uuid "e5bf59be-7cb5-41a8-93e5-7cc87e7572f1") ) (segment (start 160 98.1) (end 160 91.755) (width 1.5) (layer "B.Cu") (net 39) (uuid "ebf75106-e55a-4d18-b983-09253d90dc99") ) (segment (start 113.195 121.405) (end 113.195 121.1) (width 1.5) (layer "B.Cu") (net 39) (uuid "f450484a-27ce-46ff-8725-5a1894c0fa16") ) (segment (start 160 109.4) (end 160 103.03) (width 1.5) (layer "B.Cu") (net 39) (uuid "f4824d88-13eb-4d9e-87c7-240e1e21e0c9") ) (segment (start 103.975 115.9625) (end 104.7 115.2375) (width 0.2) (layer "F.Cu") (net 40) (uuid "a03dfce1-346c-4044-a2ce-ca449db813c8") ) (segment (start 104.7 115.2375) (end 104.7 114.125) (width 0.2) (layer "F.Cu") (net 40) (uuid "e5b73727-3fc2-4de9-9af3-f73920909a3d") ) (segment (start 65.41005 133.45) (end 146.2625 133.45) (width 0.2) (layer "F.Cu") (net 41) (uuid "1d328fd8-23e8-40c2-9b38-525911deaebd") ) (segment (start 63.6 131.63995) (end 65.41005 133.45) (width 0.2) (layer "F.Cu") (net 41) (uuid "6bade008-8512-4c54-9457-8c2366f9ea46") ) (segment (start 146.2625 133.45) (end 148.6 131.1125) (width 0.2) (layer "F.Cu") (net 41) (uuid "d1dafdab-15ab-437d-9b08-b1dc3d9f70af") ) (segment (start 63.597395 121) (end 63.6 131.63995) (width 0.2) (layer "F.Cu") (net 41) (uuid "f0fe046c-9324-4d69-8dcd-efdbb1a14db7") ) (via (at 63.597395 121) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41) (uuid "35c72cb1-6396-4428-ab37-830444950891") ) (segment (start 63.597395 121) (end 63.595 119.805) (width 0.25) (layer "B.Cu") (net 41) (uuid "13b961ce-4964-4ffd-a816-c603beb6ffc7") ) (segment (start 65.575 94.115) (end 64.77 93.31) (width 0.25) (layer "B.Cu") (net 41) (uuid "1ffda9f1-ea38-4c1b-888e-0c2613ee73ab") ) (segment (start 63.595 119.805) (end 63.595 110.404149) (width 0.25) (layer "B.Cu") (net 41) (uuid "62e96122-7ddd-4b6b-ad85-f30c56f42cc7") ) (segment (start 65.575 108.424149) (end 65.575 94.115) (width 0.25) (layer "B.Cu") (net 41) (uuid "71f0e71f-09fa-4f54-ab11-2092ec398ef8") ) (segment (start 63.595 110.404149) (end 65.575 108.424149) (width 0.25) (layer "B.Cu") (net 41) (uuid "c794be6f-35d9-48b5-b7e7-45cfa9f54e56") ) (segment (start 149.2 128) (end 151.9625 128) (width 0.25) (layer "F.Cu") (net 42) (uuid "0548973c-7c6f-4e70-873c-ca5380fc6ebb") ) (segment (start 148.6 128.6) (end 149.2 128) (width 0.25) (layer "F.Cu") (net 42) (uuid "2ce56069-55b1-406c-a4b0-4ebff74aa979") ) (segment (start 148.6 129.2875) (end 148.6 128.6) (width 0.25) (layer "F.Cu") (net 42) (uuid "5108ce08-e0d9-432a-8ca9-365a2c388c41") ) (segment (start 152.9625 128) (end 159.4625 128) (width 0.25) (layer "F.Cu") (net 42) (uuid "e85000e8-eede-4884-acdb-a0c555449d7b") ) (segment (start 116.175735 72.2) (end 119.15 72.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "06540c38-7be5-4bcc-927a-4bf12fcfdb27") ) (segment (start 108.365686 76.2) (end 111.365686 73.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "07fdcbf8-af09-4593-891a-7710ebd8afa1") ) (segment (start 107.7 76.3) (end 107.8 76.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "1c93293d-6db3-4fb0-b360-df42d919e856") ) (segment (start 120.4125 70.35) (end 121.3625 69.4) (width 0.2) (layer "F.Cu") (net 43) (uuid "21945ce5-0eca-4563-a06c-3ce4491bc782") ) (segment (start 119.15 72.2) (end 120.4125 70.9375) (width 0.2) (layer "F.Cu") (net 43) (uuid "2dcb5fb3-4bb7-4d1c-a4c0-4de06334cf81") ) (segment (start 92.651923 104.413083) (end 105.25 91.815006) (width 0.2) (layer "F.Cu") (net 43) (uuid "3170172d-991b-4f0a-942a-b5cc0037f2ed") ) (segment (start 92.651923 119.248077) (end 92.651923 104.413083) (width 0.2) (layer "F.Cu") (net 43) (uuid "6349bdeb-d938-4dde-b4d7-4b277cdc413f") ) (segment (start 88.7 124.942081) (end 88.7 121.065686) (width 0.2) (layer "F.Cu") (net 43) (uuid "635fbcc6-d4f2-4b83-9fd8-13a41b666709") ) (segment (start 105.25 91.815006) (end 105.25 91.25) (width 0.2) (layer "F.Cu") (net 43) (uuid "68a7c5ea-d1c9-4c8b-a46e-bda8ffae6bb3") ) (segment (start 89.965686 119.8) (end 92.1 119.8) (width 0.2) (layer "F.Cu") (net 43) (uuid "81d20f32-d8fb-4d4b-a217-3b5af738fafc") ) (segment (start 107.8 76.2) (end 108.365686 76.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "9411be4d-65f7-4cdf-aca6-3bf8ff57bdb6") ) (segment (start 92.1 119.8) (end 92.651923 119.248077) (width 0.2) (layer "F.Cu") (net 43) (uuid "9f503326-73d2-4a78-adfe-76db306d9bb7") ) (segment (start 120.4125 70.9375) (end 120.4125 70.35) (width 0.2) (layer "F.Cu") (net 43) (uuid "a6cf1758-8b70-4088-a092-ddd0c0fa45cc") ) (segment (start 115.175735 73.2) (end 116.175735 72.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "c33dde9d-3202-4f93-9fb3-b28799226446") ) (segment (start 87.245012 126.21) (end 87.432081 126.21) (width 0.2) (layer "F.Cu") (net 43) (uuid "cbf2ed2a-3b45-415f-beb5-c8973bb94e9a") ) (segment (start 88.7 121.065686) (end 89.965686 119.8) (width 0.2) (layer "F.Cu") (net 43) (uuid "dbf9fee6-126c-477b-9442-7aca96dcc7ff") ) (segment (start 87.432081 126.21) (end 88.7 124.942081) (width 0.2) (layer "F.Cu") (net 43) (uuid "efacc739-84a5-488e-b852-a8c1a65c3e9b") ) (segment (start 111.365686 73.2) (end 115.175735 73.2) (width 0.2) (layer "F.Cu") (net 43) (uuid "f864eb46-fd78-4c86-a001-800a58f7ed23") ) (via (at 107.7 76.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (uuid "f68b5365-0e32-4e66-839f-cd54fd480a21") ) (via (at 105.25 91.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (uuid "f87817af-6ea2-4e52-bba8-d01cbb32a15e") ) (segment (start 105.25 78.25) (end 107.2 76.3) (width 0.2) (layer "B.Cu") (net 43) (uuid "897e3230-8b31-4b47-b4f3-55407baddfc5") ) (segment (start 105.25 91.25) (end 105.25 78.25) (width 0.2) (layer "B.Cu") (net 43) (uuid "a7bbff94-76cb-4e03-bb7a-297cbc737a17") ) (segment (start 107.2 76.3) (end 107.7 76.3) (width 0.2) (layer "B.Cu") (net 43) (uuid "c9315e93-5b71-4ff5-99d3-0a99d1c39d8c") ) (segment (start 64.4 131.45) (end 64.4 126.01005) (width 0.2) (layer "F.Cu") (net 44) (uuid "19bccba6-2538-4a42-9153-028f63274ed6") ) (segment (start 100.8875 113.859994) (end 99.850481 114.897013) (width 0.2) (layer "F.Cu") (net 44) (uuid "25a95d1f-604e-472d-a0ca-4c796b1cd9d0") ) (segment (start 65.7 132.75) (end 64.4 131.45) (width 0.2) (layer "F.Cu") (net 44) (uuid "3717059c-14bd-4fbe-ade6-53844883f0d7") ) (segment (start 64.4 126.01005) (end 65.43005 124.98) (width 0.2) (layer "F.Cu") (net 44) (uuid "56948d8b-2f48-40d6-8d15-3df49455ca93") ) (segment (start 98.25 132.6) (end 98.25 127.55) (width 0.2) (layer "F.Cu") (net 44) (uuid "b4ac0791-4c19-457f-ac3e-d77651964a12") ) (segment (start 99.850481 125.949519) (end 98.25 127.55) (width 0.2) (layer "F.Cu") (net 44) (uuid "b90c7c99-be47-4813-bff6-471b92d5ebc2") ) (segment (start 100.8875 113.859994) (end 100.8875 112.525) (width 0.2) (layer "F.Cu") (net 44) (uuid "bc762c60-07d0-4137-84b8-5e645e2f9e36") ) (segment (start 65.43005 124.98) (end 66.925 124.98) (width 0.2) (layer "F.Cu") (net 44) (uuid "c2aaf959-a637-420d-bda8-9bf7b160b53e") ) (segment (start 99.850481 114.897013) (end 99.850481 125.949519) (width 0.2) (layer "F.Cu") (net 44) (uuid "e0ea306a-e0c7-4cd1-adcd-5c8491d12153") ) (via (at 65.7 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 44) (uuid "b255769a-2b3e-48c5-a306-bdca26e95745") ) (via (at 98.25 132.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 44) (uuid "bf8a6ea2-bd06-4699-8f7a-9211ffae1ed0") ) (segment (start 65.7 132.75) (end 66.399511 133.449511) (width 0.2) (layer "B.Cu") (net 44) (uuid "311f7ad9-ef0e-4abc-a4f8-7379d5aa986a") ) (segment (start 66.399511 133.449511) (end 97.400489 133.449511) (width 0.2) (layer "B.Cu") (net 44) (uuid "47ce0af5-f046-4cae-8585-909d390d39d0") ) (segment (start 97.400489 133.449511) (end 98.25 132.6) (width 0.2) (layer "B.Cu") (net 44) (uuid "b5a96823-be04-4a45-8447-e061640e5072") ) (segment (start 58.684314 114.8) (end 59.634314 115.75) (width 0.2) (layer "F.Cu") (net 45) (uuid "399bcefe-4537-4205-9917-c0eda69d9b7c") ) (segment (start 66.579448 123.71) (end 66.925 123.71) (width 0.2) (layer "F.Cu") (net 45) (uuid "3ba5fd3f-58f7-4c85-9dc8-dbf9e43cc18d") ) (segment (start 62.252942 115.75) (end 65.65 119.147058) (width 0.2) (layer "F.Cu") (net 45) (uuid "4aa5bae9-b3d6-4699-80e5-f3a637e67ce6") ) (segment (start 54.22 114.8) (end 58.684314 114.8) (width 0.2) (layer "F.Cu") (net 45) (uuid "52bed6d4-e1b1-4304-83c5-4017400084b0") ) (segment (start 52.07 111.09) (end 52.07 112.65) (width 0.2) (layer "F.Cu") (net 45) (uuid "62096995-50dd-40cc-95f1-76336d906675") ) (segment (start 66.31 123.71) (end 66.925 123.71) (width 0.2) (layer "F.Cu") (net 45) (uuid "7653c879-e2bf-4879-a02b-ddbe0fa0c197") ) (segment (start 65.65 119.147058) (end 65.65 122.780552) (width 0.2) (layer "F.Cu") (net 45) (uuid "886f88ca-af7f-4fb8-b662-fd0fba6af4c2") ) (segment (start 65.65 122.780552) (end 66.579448 123.71) (width 0.2) (layer "F.Cu") (net 45) (uuid "a0ec4b81-eabf-4bd6-bdcd-c795d85e274f") ) (segment (start 59.634314 115.75) (end 62.252942 115.75) (width 0.2) (layer "F.Cu") (net 45) (uuid "a79b8981-9e3d-4457-8ae0-32bc2e1377ef") ) (segment (start 52.07 112.65) (end 54.22 114.8) (width 0.2) (layer "F.Cu") (net 45) (uuid "b0c2b161-7e45-4811-aada-61c4745f1e4b") ) (segment (start 66.34375 119.9) (end 66.34375 119.275122) (width 0.2) (layer "F.Cu") (net 46) (uuid "07a0e3a8-f6c7-4fb7-b94f-18e76adb04aa") ) (segment (start 66.925 127.52) (end 67.88 127.52) (width 0.2) (layer "F.Cu") (net 46) (uuid "0f8a0542-85b0-4834-be1e-80aad58f4838") ) (segment (start 66.34375 119.275122) (end 62.418628 115.35) (width 0.2) (layer "F.Cu") (net 46) (uuid "173b791a-2fef-4eb8-92a9-145f2bc5f14c") ) (segment (start 58.85 114.4) (end 54.9 114.4) (width 0.2) (layer "F.Cu") (net 46) (uuid "268c1b7e-101e-435d-83ee-a174efceb0f9") ) (segment (start 62.418628 115.35) (end 59.8 115.35) (width 0.2) (layer "F.Cu") (net 46) (uuid "3388522f-6228-4001-8d2a-92856e87699b") ) (segment (start 59.8 115.35) (end 58.85 114.4) (width 0.2) (layer "F.Cu") (net 46) (uuid "5f693be3-01ca-44fd-a733-d92cba09002f") ) (segment (start 67.88 127.52) (end 68.7 126.7) (width 0.2) (layer "F.Cu") (net 46) (uuid "7703347d-d204-44ec-8c24-3a3a759f10b0") ) (segment (start 68.7 122.25625) (end 66.34375 119.9) (width 0.2) (layer "F.Cu") (net 46) (uuid "86430537-28fb-4188-9464-54dc736977d8") ) (segment (start 54.61 114.11) (end 54.61 111.09) (width 0.2) (layer "F.Cu") (net 46) (uuid "c9fb2620-d9ba-4760-93d8-2dc81b6ab708") ) (segment (start 68.7 126.7) (end 68.7 122.25625) (width 0.2) (layer "F.Cu") (net 46) (uuid "de70c514-3a26-44b2-ab31-bfa0b1a3ca7e") ) (segment (start 54.9 114.4) (end 54.61 114.11) (width 0.2) (layer "F.Cu") (net 46) (uuid "ec82e962-f621-4c63-8c55-9d9f893bab8f") ) (segment (start 101.255225 105.04904) (end 108.314047 105.049041) (width 0.2) (layer "F.Cu") (net 47) (uuid "156c8711-c6c8-4cdf-9ef7-46c0f9b5f5f2") ) (segment (start 65.4 129.2) (end 65.4 131.4) (width 0.2) (layer "F.Cu") (net 47) (uuid "24a81bbb-6e26-4f74-9437-21b136270d6f") ) (segment (start 100.904745 105.39952) (end 101.255225 105.04904) (width 0.2) (layer "F.Cu") (net 47) (uuid "2627734a-dcdb-4ec6-b060-c3c9d9c04a7a") ) (segment (start 66.925 128.79) (end 65.81 128.79) (width 0.2) (layer "F.Cu") (net 47) (uuid "3b7b6d54-1a17-4232-a88a-c2d5427db678") ) (segment (start 97.2 132.55) (end 97.2 131.2) (width 0.2) (layer "F.Cu") (net 47) (uuid "4f1d929f-7a5f-4040-a4d1-ecea3ad8f7d2") ) (segment (start 66.965 128.75) (end 67.65 128.75) (width 0.2) (layer "F.Cu") (net 47) (uuid "5d485ad9-0cbd-4be4-9cd3-c8d5fb89a32e") ) (segment (start 65.4 131.4) (end 66.75 132.75) (width 0.2) (layer "F.Cu") (net 47) (uuid "5fe8a4eb-e027-4967-87b1-ac92629275a3") ) (segment (start 98.85048 105.39952) (end 100.904745 105.39952) (width 0.2) (layer "F.Cu") (net 47) (uuid "656f466a-2aba-44bb-b333-eb15f65f7cbb") ) (segment (start 97 132.75) (end 97.2 132.55) (width 0.2) (layer "F.Cu") (net 47) (uuid "6da23b3e-ce2d-46e8-bd32-cab5417f074a") ) (segment (start 65.81 128.79) (end 65.4 129.2) (width 0.2) (layer "F.Cu") (net 47) (uuid "6fac3e73-fd25-4791-b6b6-ca4a1282e99d") ) (segment (start 108.314047 105.049041) (end 109.75 106.484994) (width 0.2) (layer "F.Cu") (net 47) (uuid "78c2a600-42bc-443a-8369-7df445e83cb7") ) (segment (start 66.75 132.75) (end 71.7 132.75) (width 0.2) (layer "F.Cu") (net 47) (uuid "7aac1419-2540-4706-9fd2-7072c2f22799") ) (segment (start 98.5 105.75) (end 98.85048 105.39952) (width 0.2) (layer "F.Cu") (net 47) (uuid "b77681b7-a566-4e44-879f-195e0fe5edcc") ) (segment (start 66.925 128.79) (end 66.965 128.75) (width 0.2) (layer "F.Cu") (net 47) (uuid "ba5604d1-0434-4d3d-9082-2d2bb6f5c34b") ) (segment (start 109.75 106.484994) (end 109.75 112.025) (width 0.2) (layer "F.Cu") (net 47) (uuid "c9e87371-75d6-4aea-a458-743836d0edc8") ) (segment (start 110.2 112.475) (end 112.0875 112.475) (width 0.2) (layer "F.Cu") (net 47) (uuid "e4c35c08-6b62-4ec1-92cf-d04d1ed8fc06") ) (segment (start 109.75 112.025) (end 110.2 112.475) (width 0.2) (layer "F.Cu") (net 47) (uuid "eac907f6-dfc4-4e37-9edb-757275d82e0f") ) (via (at 97.2 131.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (uuid "669ba372-9a88-44e0-8c02-83b4fe141d4b") ) (via (at 97 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 47) (uuid "6f503123-f066-45c0-9435-36c4c52d9b9a") ) (via (at 71.7 132.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (uuid "a658e1ab-8fe5-44b4-bbe1-b408d39ccd3e") ) (via (at 98.5 105.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (uuid "cf149601-9408-4973-ab00-26c17e339c53") ) (segment (start 97.2 131.2) (end 97.2 124.689259) (width 0.2) (layer "B.Cu") (net 47) (uuid "681884c3-dc9e-4913-9a7f-4d8b0bd40793") ) (segment (start 96.550489 114.699511) (end 98.5 112.75) (width 0.2) (layer "B.Cu") (net 47) (uuid "7381ff41-6569-4079-b1d8-b251ba3cff55") ) (segment (start 98.5 112.75) (end 98.5 105.75) (width 0.2) (layer "B.Cu") (net 47) (uuid "a81f6a02-fce8-4f4a-976e-21d4974dca42") ) (segment (start 97.2 124.689259) (end 96.550489 124.039748) (width 0.2) (layer "B.Cu") (net 47) (uuid "aefae422-c3b6-4aee-ac42-fbaa7e8ad57c") ) (segment (start 71.7 132.75) (end 97 132.75) (width 0.2) (layer "B.Cu") (net 47) (uuid "e0cb0a7a-d743-4cdf-8214-28e655b0d4d7") ) (segment (start 96.550489 124.039748) (end 96.550489 114.699511) (width 0.2) (layer "B.Cu") (net 47) (uuid "ffe2b564-057c-40b3-94a1-2d740f080a4e") ) (segment (start 97.65 116.1) (end 96.965686 116.1) (width 0.2) (layer "F.Cu") (net 48) (uuid "0bcf8ecd-1958-49d7-9042-82a7f697585c") ) (segment (start 93.401921 132.998079) (end 75.432393 132.998079) (width 0.2) (layer "F.Cu") (net 48) (uuid "0cf6e8ae-df56-4997-8745-634adbfab786") ) (segment (start 95.849519 117.216167) (end 95.849519 120.713222) (width 0.2) (layer "F.Cu") (net 48) (uuid "42253024-8deb-42c4-abb0-7ad656b99b2f") ) (segment (start 95.332843 121.229899) (end 95.332843 131.067157) (width 0.2) (layer "F.Cu") (net 48) (uuid "4336ef6f-1301-4061-be17-227e839bd5cc") ) (segment (start 95.332843 131.067157) (end 93.401921 132.998079) (width 0.2) (layer "F.Cu") (net 48) (uuid "59509fa8-4c20-41e6-8cae-c26587956734") ) (segment (start 95.849519 120.713222) (end 95.332843 121.229899) (width 0.2) (layer "F.Cu") (net 48) (uuid "5d63c895-0b1a-4dc1-a1e6-2bd5a7389ff4") ) (segment (start 72.494314 130.06) (end 71.875 130.06) (width 0.2) (layer "F.Cu") (net 48) (uuid "5e5f4088-c711-44e9-85b0-d3a26b0c1306") ) (segment (start 122.125 112.375) (end 123.4875 112.375) (width 0.2) (layer "F.Cu") (net 48) (uuid "74ca3e16-8700-4cdb-8d4a-38d1fdef0b93") ) (segment (start 75.432393 132.998079) (end 72.494314 130.06) (width 0.2) (layer "F.Cu") (net 48) (uuid "8dc783de-100c-4b37-ac26-d9c8dd03b829") ) (segment (start 96.965686 116.1) (end 95.849519 117.216167) (width 0.2) (layer "F.Cu") (net 48) (uuid "9000bfbf-29fb-4c5c-adb3-74da9cbe382d") ) (segment (start 118.5 104.25) (end 100.5 104.25) (width 0.2) (layer "F.Cu") (net 48) (uuid "a4982281-cb2e-4e67-b187-3dc42a2269fa") ) (segment (start 121 111.25) (end 121 106.75) (width 0.2) (layer "F.Cu") (net 48) (uuid "c6366de0-d034-4744-8fcf-fe9160c0c045") ) (segment (start 98.5 115.25) (end 97.65 116.1) (width 0.2) (layer "F.Cu") (net 48) (uuid "d7320fcb-c1f4-4933-91cb-5876b3c54991") ) (segment (start 121 106.75) (end 118.5 104.25) (width 0.2) (layer "F.Cu") (net 48) (uuid "e1d40d67-d033-4daa-9d46-bc21ebcd0402") ) (segment (start 121 111.25) (end 122.125 112.375) (width 0.2) (layer "F.Cu") (net 48) (uuid "f0eae9eb-ba3e-4f47-9d0e-da14e37f3a90") ) (via (at 100.5 104.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 48) (uuid "a2303d9b-ca5e-45ae-ba58-1e4e7121f698") ) (via (at 98.5 115.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 48) (uuid "ee5b8f6c-be4e-4713-86d7-d62da0773283") ) (segment (start 100.5 104.25) (end 100.5 113.25) (width 0.2) (layer "B.Cu") (net 48) (uuid "b9e501cc-edfb-4348-b21d-7034b9e31b21") ) (segment (start 100.5 113.25) (end 98.5 115.25) (width 0.2) (layer "B.Cu") (net 48) (uuid "d67efd5e-da9a-4519-a4d0-9e3f94e347d6") ) (segment (start 69.1 122.090564) (end 66.74375 119.734314) (width 0.2) (layer "F.Cu") (net 49) (uuid "05a8ffe2-0a66-4cee-ac50-8f998574e202") ) (segment (start 61.08 114.04) (end 59.69 112.65) (width 0.2) (layer "F.Cu") (net 49) (uuid "0fd0c218-e895-4be1-8d33-cc2695278473") ) (segment (start 66.74375 119.734314) (end 66.74375 119.109436) (width 0.2) (layer "F.Cu") (net 49) (uuid "4cd8484c-7ff0-4554-9ac4-b336d8075851") ) (segment (start 71.875 128.79) (end 71.19 128.79) (width 0.2) (layer "F.Cu") (net 49) (uuid "542fffae-45f3-4a8c-95f5-d4dd4002b900") ) (segment (start 70.1 127.7) (end 70.1 124.565686) (width 0.2) (layer "F.Cu") (net 49) (uuid "919a51db-7ac0-4b9a-958d-79f90a209ce6") ) (segment (start 66.74375 119.109436) (end 61.674314 114.04) (width 0.2) (layer "F.Cu") (net 49) (uuid "a5fdb239-a368-4a65-986a-fbb67fe6aa9d") ) (segment (start 69.1 123.565686) (end 69.1 122.090564) (width 0.2) (layer "F.Cu") (net 49) (uuid "ae382a30-7a33-4065-96af-daab977d659b") ) (segment (start 71.19 128.79) (end 70.1 127.7) (width 0.2) (layer "F.Cu") (net 49) (uuid "ae7d6d2b-5e22-486d-a501-3735198f16fb") ) (segment (start 59.69 112.65) (end 59.69 111.09) (width 0.2) (layer "F.Cu") (net 49) (uuid "cc08cd97-0cb1-4271-9885-e30f55600467") ) (segment (start 70.1 124.565686) (end 69.1 123.565686) (width 0.2) (layer "F.Cu") (net 49) (uuid "ce4f7b49-e7f5-4e6b-8a77-010f4077310c") ) (segment (start 61.674314 114.04) (end 61.08 114.04) (width 0.2) (layer "F.Cu") (net 49) (uuid "fca5b1c7-91b0-4bec-91a8-f5595d2e05cf") ) (segment (start 132.5 111.575) (end 133.175 112.25) (width 0.2) (layer "F.Cu") (net 50) (uuid "0e0f6123-5ad6-46ee-abb2-5e17d38e3bb3") ) (segment (start 93.236235 132.598079) (end 75.598079 132.598079) (width 0.2) (layer "F.Cu") (net 50) (uuid "3a8a4c32-1f31-4f74-acaf-0927fa4460d4") ) (segment (start 95.449519 117.050481) (end 95.449519 120.547537) (width 0.2) (layer "F.Cu") (net 50) (uuid "6360dae5-3351-4ab8-99a0-7c469adea527") ) (segment (start 101.565006 102.75) (end 99.5 102.75) (width 0.2) (layer "F.Cu") (net 50) (uuid "7a5ee841-bf35-4451-b451-7b61a5e34933") ) (segment (start 132.5 111.575) (end 132.5 106.72027) (width 0.2) (layer "F.Cu") (net 50) (uuid "89d9ff77-b2f1-444d-9cba-d3d57537d382") ) (segment (start 102.265966 103.45096) (end 101.565006 102.75) (width 0.2) (layer "F.Cu") (net 50) (uuid "ab77be5a-068c-4f84-aeed-277707885e4b") ) (segment (start 94.932843 130.901471) (end 93.236235 132.598079) (width 0.2) (layer "F.Cu") (net 50) (uuid "af328946-eaa5-42a0-8503-8889e0432128") ) (segment (start 97.25 115.25) (end 95.449519 117.050481) (width 0.2) (layer "F.Cu") (net 50) (uuid "bae149f3-0bc5-4330-81e7-967f2d9f3043") ) (segment (start 129.23069 103.45096) (end 102.265966 103.45096) (width 0.2) (layer "F.Cu") (net 50) (uuid "c4a25ffd-5858-4182-b8e6-8940e238c52a") ) (segment (start 132.5 106.72027) (end 129.23069 103.45096) (width 0.2) (layer "F.Cu") (net 50) (uuid "cc4edde4-929f-4094-a4a2-6c76a307153f") ) (segment (start 75.598079 132.598079) (end 73.6 130.6) (width 0.2) (layer "F.Cu") (net 50) (uuid "cd00b5d3-ee06-473c-a738-459dfb9ea509") ) (segment (start 94.932843 121.064214) (end 94.932843 130.901471) (width 0.2) (layer "F.Cu") (net 50) (uuid "dad8be51-4cc5-4928-b4c7-dd9a44fee5a1") ) (segment (start 73.6 130.6) (end 73.6 127.000001) (width 0.2) (layer "F.Cu") (net 50) (uuid "dc784cd5-7462-4a06-953a-3c7a8b111c96") ) (segment (start 133.175 112.25) (end 134.4875 112.25) (width 0.2) (layer "F.Cu") (net 50) (uuid "e0daac2a-fba1-4356-b6b1-339e4138c052") ) (segment (start 95.449519 120.547537) (end 94.932843 121.064214) (width 0.2) (layer "F.Cu") (net 50) (uuid "ea834a04-b306-4a46-86a0-1de426c56be0") ) (segment (start 72.849999 126.25) (end 71.875 126.25) (width 0.2) (layer "F.Cu") (net 50) (uuid "f8b8165b-703f-4db3-91ef-765da32c82cc") ) (segment (start 73.6 127.000001) (end 72.849999 126.25) (width 0.2) (layer "F.Cu") (net 50) (uuid "fafb8af2-e07c-4fde-b767-dbb569740df5") ) (via (at 97.25 115.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (uuid "5c2ca92c-2a53-4682-ae8d-47d34eded0bb") ) (via (at 99.5 102.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (uuid "635be419-f9ca-417b-9a3f-0d3c70bdfef8") ) (segment (start 99.5 113) (end 97.25 115.25) (width 0.2) (layer "B.Cu") (net 50) (uuid "6e363c3c-7239-4f94-8a5b-077bb2eb7435") ) (segment (start 99.5 102.75) (end 99.5 113) (width 0.2) (layer "B.Cu") (net 50) (uuid "f057960c-8423-44b6-b1e8-17dbc727bc7d") ) (segment (start 71.875 124.98) (end 71.08 124.98) (width 0.2) (layer "F.Cu") (net 51) (uuid "02113963-150c-47d9-99a2-caf6d89217e8") ) (segment (start 62.23 114.03) (end 62.23 111.09) (width 0.2) (layer "F.Cu") (net 51) (uuid "332a9213-a130-4160-abbb-3f41fc6a841a") ) (segment (start 67.14375 118.94375) (end 62.23 114.03) (width 0.2) (layer "F.Cu") (net 51) (uuid "84f62a8b-4a7b-4319-b8b7-bb707c45394e") ) (segment (start 69.5 121.924878) (end 67.14375 119.568628) (width 0.2) (layer "F.Cu") (net 51) (uuid "8913d14f-8d14-4471-b5a3-924152ebc23c") ) (segment (start 67.14375 119.568628) (end 67.14375 118.94375) (width 0.2) (layer "F.Cu") (net 51) (uuid "95a9c00d-1fcc-40f1-bf4f-f93a6f82dc77") ) (segment (start 69.5 123.4) (end 69.5 121.924878) (width 0.2) (layer "F.Cu") (net 51) (uuid "e441538e-8509-49b0-9938-2871f5d547e7") ) (segment (start 71.08 124.98) (end 69.5 123.4) (width 0.2) (layer "F.Cu") (net 51) (uuid "f94dd837-1237-4c4e-802c-6790b591fd2a") ) (segment (start 64.77 111.09) (end 64.77 112.87) (width 0.2) (layer "F.Cu") (net 52) (uuid "40e42d54-8361-4ece-9cd3-d081f4683a5a") ) (segment (start 69.04 114.44) (end 73.949999 119.349999) (width 0.2) (layer "F.Cu") (net 52) (uuid "4ad93a8c-a5e4-497d-aade-6126a7205253") ) (segment (start 73.949999 122.78995) (end 74.870049 123.71) (width 0.2) (layer "F.Cu") (net 52) (uuid "92bda5c6-2b72-4cfa-81fd-bb4441751b39") ) (segment (start 73.949999 119.349999) (end 73.949999 122.78995) (width 0.2) (layer "F.Cu") (net 52) (uuid "99628607-9669-451b-bd5a-af8b0b1c03df") ) (segment (start 64.77 112.87) (end 66.34 114.44) (width 0.2) (layer "F.Cu") (net 52) (uuid "99ad649f-06cf-4aa7-a2ff-5e99cfecb0e8") ) (segment (start 66.34 114.44) (end 69.04 114.44) (width 0.2) (layer "F.Cu") (net 52) (uuid "b2484a70-461a-4cf7-943f-3ca8cbc82971") ) (segment (start 74.870049 123.71) (end 76.374999 123.71) (width 0.2) (layer "F.Cu") (net 52) (uuid "f9d5edf9-4835-46e4-aa1f-36eee2b24819") ) (segment (start 105.9 113.1) (end 103.9 113.1) (width 0.2) (layer "F.Cu") (net 53) (uuid "05752821-c51f-4f5e-b7c6-9b2854b9f6cb") ) (segment (start 115.1 113.1) (end 114.8 112.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "06abb970-6f9e-4327-92b3-c0dc048b6547") ) (segment (start 113.45 111.55) (end 113 112) (width 0.2) (layer "F.Cu") (net 53) (uuid "079b4017-78a3-4ac0-b61c-68a334c91c98") ) (segment (start 129.234744 111.7) (end 128.034744 112.9) (width 0.2) (layer "F.Cu") (net 53) (uuid "0a009cf1-3a1f-4887-b4a3-5cde0be19ab9") ) (segment (start 134.916722 113.075) (end 133.375 113.075) (width 0.2) (layer "F.Cu") (net 53) (uuid "0b8ae8a8-9e9f-4078-9bb2-3fabe71baf5d") ) (segment (start 139.352817 113) (end 137.6 113) (width 0.2) (layer "F.Cu") (net 53) (uuid "0dffde7b-1d0f-45c0-af9f-d1a234bf85b5") ) (segment (start 114.8 112) (end 114.35 111.55) (width 0.2) (layer "F.Cu") (net 53) (uuid "138e2c38-79b1-4220-b011-493cf703bfbf") ) (segment (start 128.034744 112.9) (end 126.765256 112.9) (width 0.2) (layer "F.Cu") (net 53) (uuid "1433e442-1594-41b0-b149-01a59a15604c") ) (segment (start 103.7 112.9) (end 103.7 112.1) (width 0.2) (layer "F.Cu") (net 53) (uuid "1980c3c4-7715-4212-9302-fe23fe191dda") ) (segment (start 112.566722 113.25) (end 110.325 113.25) (width 0.2) (layer "F.Cu") (net 53) (uuid "1ccd493a-0c91-424d-909d-692d45abce78") ) (segment (start 96.475 111.625) (end 95.04904 113.05096) (width 0.2) (layer "F.Cu") (net 53) (uuid "206927a8-b1a9-4866-8a50-1997d5f738f6") ) (segment (start 113 112) (end 113 112.816722) (width 0.2) (layer "F.Cu") (net 53) (uuid "244d4264-3907-4002-81ab-c4fb5847256c") ) (segment (start 103.7 112.1) (end 103.225 111.625) (width 0.2) (layer "F.Cu") (net 53) (uuid "285be2d8-d4a7-4aaf-889d-d20d3789ac5a") ) (segment (start 137.4 112.083278) (end 136.666722 111.35) (width 0.2) (layer "F.Cu") (net 53) (uuid "2ba80540-48cb-4ec9-affd-6cd1e7b99cc6") ) (segment (start 75.832874 132.19856) (end 74.6 130.965686) (width 0.2) (layer "F.Cu") (net 53) (uuid "2c534e27-6e03-4529-b10e-504b8b15c085") ) (segment (start 103.9 113.1) (end 103.7 112.9) (width 0.2) (layer "F.Cu") (net 53) (uuid "32181181-d24e-4389-a167-82061142d0fd") ) (segment (start 120.55 111.8) (end 118.2 111.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "350bd574-ae4e-4ccd-83df-049f6089195d") ) (segment (start 94.532843 120.898529) (end 94.532843 130.735785) (width 0.2) (layer "F.Cu") (net 53) (uuid "372c07d3-3a24-46c1-8944-d42aa1c6bbf8") ) (segment (start 110.325 113.25) (end 108.875 111.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "4105db4d-48d6-41b8-9cc3-3010ad3a9b3d") ) (segment (start 141.2 112.7) (end 139.652817 112.7) (width 0.2) (layer "F.Cu") (net 53) (uuid "4bce5317-a1ee-4122-be67-736331a9e000") ) (segment (start 94.532843 130.735785) (end 93.070068 132.19856) (width 0.2) (layer "F.Cu") (net 53) (uuid "529bf78f-23b1-4dd0-ba38-32abfe537c92") ) (segment (start 135.375 111.8) (end 135.375 112.616722) (width 0.2) (layer "F.Cu") (net 53) (uuid "54705a63-d741-4f24-9805-03b653f41a97") ) (segment (start 124.775 111.45) (end 124.4 111.825) (width 0.2) (layer "F.Cu") (net 53) (uuid "58f738de-c0b9-412f-8c1c-80e220c0de44") ) (segment (start 118.2 111.8) (end 116.9 113.1) (width 0.2) (layer "F.Cu") (net 53) (uuid "5d2db37e-5f51-4fd7-a860-12371040b04f") ) (segment (start 108.875 111.8) (end 107.2 111.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "6290c85c-159e-4b06-ae9d-549aad008ce2") ) (segment (start 126.4 112.208278) (end 125.641722 111.45) (width 0.2) (layer "F.Cu") (net 53) (uuid "63d36ce3-31a7-4641-a24f-52a4d05779fe") ) (segment (start 95.04904 120.382332) (end 94.532843 120.898529) (width 0.2) (layer "F.Cu") (net 53) (uuid "63f292b9-285c-4f9c-86e9-cb9ccda61384") ) (segment (start 149.0875 111) (end 149.0875 112.1125) (width 0.2) (layer "F.Cu") (net 53) (uuid "68d945a4-ae4a-4d50-b54e-c228cebad2c1") ) (segment (start 114.8 112.8) (end 114.8 112) (width 0.2) (layer "F.Cu") (net 53) (uuid "73112fce-667e-471c-88f0-a0d3ec47aec3") ) (segment (start 126.765256 112.9) (end 126.4 112.534744) (width 0.2) (layer "F.Cu") (net 53) (uuid "74f76472-dd9b-430a-be53-95986945f33e") ) (segment (start 114.35 111.55) (end 113.45 111.55) (width 0.2) (layer "F.Cu") (net 53) (uuid "779474a9-42a1-4829-85c5-6d49ea945345") ) (segment (start 116.9 113.1) (end 115.1 113.1) (width 0.2) (layer "F.Cu") (net 53) (uuid "78e93183-5968-472d-ad54-f0f057fa7566") ) (segment (start 141.25 112.75) (end 141.2 112.7) (width 0.2) (layer "F.Cu") (net 53) (uuid "7c3ba2ae-7efb-4386-9fec-9ea7b5ffcaae") ) (segment (start 107.2 111.8) (end 105.9 113.1) (width 0.2) (layer "F.Cu") (net 53) (uuid "80bf1a9d-2a91-4f5a-8575-226140ca3895") ) (segment (start 75.4 124.98) (end 76.374999 124.98) (width 0.2) (layer "F.Cu") (net 53) (uuid "86c79a7a-f87b-49ba-81f2-16e23ea540d4") ) (segment (start 125.641722 111.45) (end 124.775 111.45) (width 0.2) (layer "F.Cu") (net 53) (uuid "89671c9c-04a8-4faf-95c9-f87312b4881a") ) (segment (start 124.4 112.875) (end 124.1 113.175) (width 0.2) (layer "F.Cu") (net 53) (uuid "8edc96b6-3536-4b76-9fd5-e08c8cd8eb59") ) (segment (start 121.925 113.175) (end 120.55 111.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "906f732c-5f34-4ecb-ab4e-4c0646056625") ) (segment (start 135.375 112.616722) (end 134.916722 113.075) (width 0.2) (layer "F.Cu") (net 53) (uuid "9874600f-b583-4617-b404-ee26a9b4a2b6") ) (segment (start 124.1 113.175) (end 121.925 113.175) (width 0.2) (layer "F.Cu") (net 53) (uuid "b83b3537-6c3e-4820-bd34-3a70ad109367") ) (segment (start 139.652817 112.7) (end 139.352817 113) (width 0.2) (layer "F.Cu") (net 53) (uuid "cb418672-0ce5-44d8-8104-35d935ad03cc") ) (segment (start 74.6 130.965686) (end 74.6 125.78) (width 0.2) (layer "F.Cu") (net 53) (uuid "cc5d2b71-f576-4317-945a-c2d3d990adaa") ) (segment (start 137.4 112.8) (end 137.4 112.083278) (width 0.2) (layer "F.Cu") (net 53) (uuid "cc92d7da-eb99-497f-a780-6d37fb83b4ef") ) (segment (start 124.4 111.825) (end 124.4 112.875) (width 0.2) (layer "F.Cu") (net 53) (uuid "cfc1385f-1d37-4bcb-a9b9-206f119379d8") ) (segment (start 133.375 113.075) (end 132 111.7) (width 0.2) (layer "F.Cu") (net 53) (uuid "d56293b5-49a7-40d0-8ad5-64a74dfa07a0") ) (segment (start 103.225 111.625) (end 96.475 111.625) (width 0.2) (layer "F.Cu") (net 53) (uuid "dab687dd-cf27-4065-917e-a1ba42dda96f") ) (segment (start 135.825 111.35) (end 135.375 111.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "dbf43b2f-06a5-4ef0-b17c-5538dab0d6b6") ) (segment (start 93.070068 132.19856) (end 75.832874 132.19856) (width 0.2) (layer "F.Cu") (net 53) (uuid "de21520a-b42c-4d1f-bb4a-11d107df0f21") ) (segment (start 113 112.816722) (end 112.566722 113.25) (width 0.2) (layer "F.Cu") (net 53) (uuid "e25f1b0c-7233-4f53-a287-2535696a8a9b") ) (segment (start 95.04904 113.05096) (end 95.04904 120.382332) (width 0.2) (layer "F.Cu") (net 53) (uuid "e284790b-ecdd-4fdf-b71f-59e9b635b96b") ) (segment (start 149.0875 112.1125) (end 148.45 112.75) (width 0.2) (layer "F.Cu") (net 53) (uuid "e2fe1992-b79d-4aab-8043-bae3bc53ee06") ) (segment (start 137.6 113) (end 137.4 112.8) (width 0.2) (layer "F.Cu") (net 53) (uuid "e4e72ce0-adc8-40c6-9dd9-3600fa0d2e8a") ) (segment (start 74.6 125.78) (end 75.4 124.98) (width 0.2) (layer "F.Cu") (net 53) (uuid "e5d86f85-011a-4f0e-acd9-dd7dc9d50372") ) (segment (start 126.4 112.534744) (end 126.4 112.208278) (width 0.2) (layer "F.Cu") (net 53) (uuid "f020b405-ce78-4529-9a34-c49508c6b121") ) (segment (start 136.666722 111.35) (end 135.825 111.35) (width 0.2) (layer "F.Cu") (net 53) (uuid "fb5147d2-f964-4fd6-93c0-6e3baad13306") ) (segment (start 132 111.7) (end 129.234744 111.7) (width 0.2) (layer "F.Cu") (net 53) (uuid "fdc85182-a5a2-4c57-9b14-e3d5e55c0b24") ) (via (at 148.45 112.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (uuid "93b62df9-3437-4889-b249-88c75b8c6654") ) (via (at 141.25 112.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (uuid "cdd3c7e8-8acf-40b4-9a63-c5de3f6cf036") ) (segment (start 147.475 113.725) (end 148.45 112.75) (width 0.2) (layer "B.Cu") (net 53) (uuid "60874fc4-879b-4de6-b538-616fa9d6788f") ) (segment (start 141.25 112.75) (end 142.225 113.725) (width 0.2) (layer "B.Cu") (net 53) (uuid "959611a4-4370-4319-b5c5-e9c5edf10b3d") ) (segment (start 142.225 113.725) (end 147.475 113.725) (width 0.2) (layer "B.Cu") (net 53) (uuid "fd89aedc-7df2-4734-8899-774eb29ed43d") ) (segment (start 78.249999 126.3) (end 78.249999 122.481371) (width 0.2) (layer "F.Cu") (net 54) (uuid "0f98074b-b285-4a32-9b28-e5e9168aecc3") ) (segment (start 68.24 114.04) (end 67.31 113.11) (width 0.2) (layer "F.Cu") (net 54) (uuid "26b32624-35d6-4a44-a8bd-d40acbacfbf1") ) (segment (start 78.249999 122.481371) (end 75.689762 119.921134) (width 0.2) (layer "F.Cu") (net 54) (uuid "2d66f1c1-64c1-4854-8ad3-0d4ac811d8d5") ) (segment (start 76.374999 127.52) (end 77.029999 127.52) (width 0.2) (layer "F.Cu") (net 54) (uuid "2dab84cd-4b64-4304-bbc8-48fe0edc7a93") ) (segment (start 67.31 113.11) (end 67.31 111.09) (width 0.2) (layer "F.Cu") (net 54) (uuid "5e0192e2-645a-47be-acbb-a09287a7b0e8") ) (segment (start 69.205686 114.04) (end 68.24 114.04) (width 0.2) (layer "F.Cu") (net 54) (uuid "c3918f66-c775-4b49-b588-19013b19b20a") ) (segment (start 75.689762 119.921134) (end 75.08682 119.921134) (width 0.2) (layer "F.Cu") (net 54) (uuid "c47707ab-e735-4943-a261-51e41ffbb3d8") ) (segment (start 75.08682 119.921134) (end 69.205686 114.04) (width 0.2) (layer "F.Cu") (net 54) (uuid "dd71ec11-3f89-49f8-8455-af01e26f30cd") ) (segment (start 77.029999 127.52) (end 78.249999 126.3) (width 0.2) (layer "F.Cu") (net 54) (uuid "e387c36e-fa7e-496a-90ae-c740d8453f03") ) (segment (start 75.99856 131.79856) (end 75 130.8) (width 0.2) (layer "F.Cu") (net 55) (uuid "021507d2-a98d-48f5-b1bf-2002c5df6c26") ) (segment (start 141.825 97.4) (end 143.8 99.375) (width 0.2) (layer "F.Cu") (net 55) (uuid "109f7ca6-729d-4b79-a6b7-84153028c1be") ) (segment (start 75.4 128.79) (end 76.374999 128.79) (width 0.2) (layer "F.Cu") (net 55) (uuid "1854b102-1b62-42b8-b242-124b1939e535") ) (segment (start 104.390036 95.5) (end 94.649519 105.240517) (width 0.2) (layer "F.Cu") (net 55) (uuid "1a20ab12-6737-4b05-b8bd-2034bec2058c") ) (segment (start 94.649519 105.240517) (end 94.649519 120.216167) (width 0.2) (layer "F.Cu") (net 55) (uuid "1b9e4969-f3e3-4746-9206-c70e49b19b95") ) (segment (start 107 95.5) (end 104.390036 95.5) (width 0.2) (layer "F.Cu") (net 55) (uuid "2e7678d6-18ea-4ea9-8ba0-4a1b7ae86e86") ) (segment (start 143.8 99.375) (end 143.825 99.375) (width 0.2) (layer "F.Cu") (net 55) (uuid "374a3fd1-d113-427c-be34-fa89da948a78") ) (segment (start 112.25 96.5) (end 113.15 97.4) (width 0.2) (layer "F.Cu") (net 55) (uuid "4b24df4b-4d02-4487-b429-2d13582907bb") ) (segment (start 92.904382 131.79856) (end 75.99856 131.79856) (width 0.2) (layer "F.Cu") (net 55) (uuid "521421ec-511d-457f-99f1-f65dc2da46e3") ) (segment (start 144.05 99.6) (end 145.5375 99.6) (width 0.2) (layer "F.Cu") (net 55) (uuid "5586934f-50f0-4bdc-a82e-b35c2e049212") ) (segment (start 94.649519 120.216167) (end 94.132843 120.732843) (width 0.2) (layer "F.Cu") (net 55) (uuid "5e6ac395-7207-49cb-88d4-70e619eb5db1") ) (segment (start 75 129.19) (end 75.4 128.79) (width 0.2) (layer "F.Cu") (net 55) (uuid "7b59be55-ef23-403d-9113-1657dc3bee74") ) (segment (start 143.825 99.375) (end 144.05 99.6) (width 0.2) (layer "F.Cu") (net 55) (uuid "c28ca532-5649-4b4e-a153-7610a6466957") ) (segment (start 113.15 97.4) (end 141.825 97.4) (width 0.2) (layer "F.Cu") (net 55) (uuid "d1ecc27c-2c20-409c-bcca-b69c1869844f") ) (segment (start 94.132843 130.570099) (end 92.904382 131.79856) (width 0.2) (layer "F.Cu") (net 55) (uuid "f83c4a9a-7650-453d-8523-a55ffdf9b238") ) (segment (start 75 130.8) (end 75 129.19) (width 0.2) (layer "F.Cu") (net 55) (uuid "fb8ccc66-0745-4907-8840-6177484aece3") ) (segment (start 94.132843 120.732843) (end 94.132843 130.570099) (width 0.2) (layer "F.Cu") (net 55) (uuid "fd807fcb-e584-4423-9f9a-d90188649aac") ) (via (at 112.25 96.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 55) (uuid "8a4619b2-963f-438d-bd03-20b990394670") ) (via (at 107 95.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 55) (uuid "8a8ae5c0-cea9-43e7-8346-4271bf48e4d6") ) (segment (start 108 96.5) (end 112.25 96.5) (width 0.2) (layer "B.Cu") (net 55) (uuid "48f14892-7e55-4d31-8f4f-cba3a75fc025") ) (segment (start 107 95.5) (end 108 96.5) (width 0.2) (layer "B.Cu") (net 55) (uuid "f1bede7b-4beb-41ae-b85c-1e5b8a1116fb") ) (segment (start 92.837256 131.3) (end 83.8 131.3) (width 0.2) (layer "F.Cu") (net 56) (uuid "09b50c99-90a0-4b57-b511-2e5453505f3c") ) (segment (start 108.75 84) (end 110.8 84) (width 0.2) (layer "F.Cu") (net 56) (uuid "37d31da0-7279-4e21-8d1d-d5d00f989bb9") ) (segment (start 93.7 130.437256) (end 92.837256 131.3) (width 0.2) (layer "F.Cu") (net 56) (uuid "6a1400da-2b97-49c6-b6d8-66d416a93743") ) (segment (start 94.25 105.07503) (end 94.25 120.05) (width 0.2) (layer "F.Cu") (net 56) (uuid "6c90c705-0b31-442f-8e1d-5e756e4a6863") ) (segment (start 108.75 88) (end 108.75 90.57503) (width 0.2) (layer "F.Cu") (net 56) (uuid "6c90e0c8-64b4-43b6-a150-22bca90faac0") ) (segment (start 83.8 131.3) (end 82.56 130.06) (width 0.2) (layer "F.Cu") (net 56) (uuid "74dd3e0e-e1bb-46bf-81d0-794348022e2a") ) (segment (start 93.7 120.6) (end 93.7 130.437256) (width 0.2) (layer "F.Cu") (net 56) (uuid "7c2056a4-e16f-44e7-bf3b-08a10bad5a49") ) (segment (start 110.8 84) (end 114.799039 87.999039) (width 0.2) (layer "F.Cu") (net 56) (uuid "8836b015-88c0-4b5f-a07a-b4caeee3a72f") ) (segment (start 145.1625 88.5) (end 139.195735 88.5) (width 0.2) (layer "F.Cu") (net 56) (uuid "8bebaa1b-35af-4883-9a96-33bab5ca4930") ) (segment (start 108.75 90.57503) (end 94.25 105.07503) (width 0.2) (layer "F.Cu") (net 56) (uuid "99d737ab-a5e2-425f-940b-684717d4d6e0") ) (segment (start 94.25 120.05) (end 93.7 120.6) (width 0.2) (layer "F.Cu") (net 56) (uuid "9d9dc21d-4491-4ad9-9d3b-a680221a29e0") ) (segment (start 114.799039 87.999039) (end 138.694774 87.999039) (width 0.2) (layer "F.Cu") (net 56) (uuid "cf87080d-afdc-4718-a723-8bf28ffcddba") ) (segment (start 138.694774 87.999039) (end 139.195735 88.5) (width 0.2) (layer "F.Cu") (net 56) (uuid "d3bc34d0-da27-4b65-a519-3d2f1a3b3e22") ) (segment (start 82.56 130.06) (end 81.324999 130.06) (width 0.2) (layer "F.Cu") (net 56) (uuid "d48282ab-2a38-453f-b758-36f13c535de5") ) (via (at 108.75 84) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (uuid "02690e39-5c30-4db9-85f9-3ed0659d5c98") ) (via (at 108.75 88) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56) (uuid "0ea54d01-1915-48e2-9ad4-200b6eca82ca") ) (segment (start 108.75 88) (end 108.75 84) (width 0.2) (layer "B.Cu") (net 56) (uuid "8b6729cb-4c8a-4d09-95b3-c18783ae3366") ) (segment (start 78.649999 122.315685) (end 75.5 119.165686) (width 0.2) (layer "F.Cu") (net 57) (uuid "16c5d0cf-b224-41a2-a786-958bfa632b1f") ) (segment (start 78.649999 124.065686) (end 78.649999 122.315685) (width 0.2) (layer "F.Cu") (net 57) (uuid "5ba06a6f-0a91-451e-8fe5-59ed7bde2737") ) (segment (start 80.539999 128.79) (end 79.549999 127.8) (width 0.2) (layer "F.Cu") (net 57) (uuid "75f4f3b7-d18d-499c-aeac-2e8f4563b4c9") ) (segment (start 75.5 116.1) (end 72.39 112.99) (width 0.2) (layer "F.Cu") (net 57) (uuid "8b05cba4-fef2-4544-a732-a70d15715f00") ) (segment (start 79.549999 124.965686) (end 78.649999 124.065686) (width 0.2) (layer "F.Cu") (net 57) (uuid "90e62c94-9ea4-46a4-9411-93a23a94bee2") ) (segment (start 72.39 112.99) (end 72.39 111.09) (width 0.2) (layer "F.Cu") (net 57) (uuid "af71fcf7-aa45-49b1-97d5-5b3f3951da5a") ) (segment (start 79.549999 127.8) (end 79.549999 124.965686) (width 0.2) (layer "F.Cu") (net 57) (uuid "d5c6a904-643c-4d82-aa0f-b35328610ec6") ) (segment (start 81.324999 128.79) (end 80.539999 128.79) (width 0.2) (layer "F.Cu") (net 57) (uuid "e46db462-9b85-4125-b7d6-1ec4c280c6a4") ) (segment (start 75.5 119.165686) (end 75.5 116.1) (width 0.2) (layer "F.Cu") (net 57) (uuid "fedfeb96-f072-4c1e-a3d4-94c14e20f815") ) (segment (start 138.860261 87.59952) (end 114.99952 87.59952) (width 0.2) (layer "F.Cu") (net 58) (uuid "1e911967-4665-48be-90f3-2b52a6b35a67") ) (segment (start 140.4 88.1) (end 139.360741 88.1) (width 0.2) (layer "F.Cu") (net 58) (uuid "2619bf0c-bd13-4c06-bee8-16bcd08d8d11") ) (segment (start 82.299998 126.25) (end 82.9 126.850002) (width 0.2) (layer "F.Cu") (net 58) (uuid "32be5f2c-3c48-4d78-9773-c893bee9b730") ) (segment (start 93.3 120.4) (end 93.85048 119.84952) (width 0.2) (layer "F.Cu") (net 58) (uuid "4094c58f-50f6-49d5-8588-942c7f3d6619") ) (segment (start 139.360741 88.1) (end 138.860261 87.59952) (width 0.2) (layer "F.Cu") (net 58) (uuid "61d83b3b-5c54-4d1e-a41f-5ae2097e1b57") ) (segment (start 142.025 77.525) (end 141.75 77.25) (width 0.2) (layer "F.Cu") (net 58) (uuid "810a8292-e767-4be3-88f6-aefe09cc847c") ) (segment (start 141 87.5) (end 140.4 88.1) (width 0.2) (layer "F.Cu") (net 58) (uuid "9aa7ed4e-7722-4f8c-a560-51e7e349ccef") ) (segment (start 84.2 130.9) (end 92.6 130.9) (width 0.2) (layer "F.Cu") (net 58) (uuid "9ec7683a-b96b-4bdb-8344-6d5f9b498d7b") ) (segment (start 93.3 130.2) (end 93.3 120.4) (width 0.2) (layer "F.Cu") (net 58) (uuid "a6b182dc-15a4-48af-8638-9d5a9b213bcf") ) (segment (start 92.6 130.9) (end 93.3 130.2) (width 0.2) (layer "F.Cu") (net 58) (uuid "ac29467e-5e10-4990-9d34-3f9c71d0cfbd") ) (segment (start 145.1125 77.525) (end 142.025 77.525) (width 0.2) (layer "F.Cu") (net 58) (uuid "ada96e4f-d640-4a3b-8f5c-f08a679f6638") ) (segment (start 81.324999 126.25) (end 82.299998 126.25) (width 0.2) (layer "F.Cu") (net 58) (uuid "c244fe82-00f3-4070-a514-b16f8692e674") ) (segment (start 93.85048 119.84952) (end 93.85048 104.909544) (width 0.2) (layer "F.Cu") (net 58) (uuid "ccb81763-6cbb-4308-a85f-1f1a1b0bccdd") ) (segment (start 82.9 126.850002) (end 82.9 129.6) (width 0.2) (layer "F.Cu") (net 58) (uuid "d92caa06-3df9-46f4-bec9-66579f1424cf") ) (segment (start 82.9 129.6) (end 84.2 130.9) (width 0.2) (layer "F.Cu") (net 58) (uuid "e7b5d947-df1a-4140-83cf-2bfd2fd377cd") ) (segment (start 110.4 83) (end 108 83) (width 0.2) (layer "F.Cu") (net 58) (uuid "f51c55c8-f22c-48d2-9329-d7bb856d4f8a") ) (segment (start 93.85048 104.909544) (end 108 90.760024) (width 0.2) (layer "F.Cu") (net 58) (uuid "f6a624cf-f6a7-45c1-9c85-129f2190266e") ) (segment (start 108 90.760024) (end 108 89) (width 0.2) (layer "F.Cu") (net 58) (uuid "faa4c35e-602f-4f17-8eb1-e520469bf0f9") ) (segment (start 114.99952 87.59952) (end 110.4 83) (width 0.2) (layer "F.Cu") (net 58) (uuid "ffbd48ed-5331-4a23-9bee-bcfea3ce2214") ) (via (at 141 87.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 58) (uuid "0628b4b5-809c-4703-bba4-99a330a3788d") ) (via (at 108 89) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 58) (uuid "516ad7b9-f7b7-49df-91fe-5a7850746ee0") ) (via (at 141.75 77.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 58) (uuid "62080fd1-554c-4dc0-923b-335aba259eef") ) (via (at 108 83) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 58) (uuid "d226ba29-9b49-437f-bc64-a294b1e10958") ) (segment (start 141.75 79.25) (end 141.75 77.25) (width 0.2) (layer "B.Cu") (net 58) (uuid "15473f32-996b-4a11-9af0-3bf654fec9d5") ) (segment (start 141 80) (end 141.75 79.25) (width 0.2) (layer "B.Cu") (net 58) (uuid "47906bb0-779a-4623-958c-a4671d480762") ) (segment (start 108 89) (end 108 83) (width 0.2) (layer "B.Cu") (net 58) (uuid "557f64ec-346a-4eed-aac2-02fa411a6960") ) (segment (start 141 87.5) (end 141 80) (width 0.2) (layer "B.Cu") (net 58) (uuid "5da65117-3150-4508-9d27-f0744ef04df1") ) (segment (start 74.93 112.87) (end 74.93 111.09) (width 0.2) (layer "F.Cu") (net 59) (uuid "0ce52535-e24e-43b9-8445-7dc4d9b34d5d") ) (segment (start 75.9 115.934314) (end 74.5 114.534314) (width 0.2) (layer "F.Cu") (net 59) (uuid "1095d2f5-ea47-44ec-bb0a-277a7dc50742") ) (segment (start 75.9 119) (end 75.9 115.934314) (width 0.2) (layer "F.Cu") (net 59) (uuid "1b07b299-5b15-4a30-9a7c-b41c48e251cb") ) (segment (start 79.049999 122.149999) (end 75.9 119) (width 0.2) (layer "F.Cu") (net 59) (uuid "569aecfa-14d1-4047-aa84-a3f9d772c0fb") ) (segment (start 74.5 113.3) (end 74.93 112.87) (width 0.2) (layer "F.Cu") (net 59) (uuid "c0e2e4b3-4962-46a4-a47f-a50f923db829") ) (segment (start 81.324999 124.98) (end 80.129999 124.98) (width 0.2) (layer "F.Cu") (net 59) (uuid "c4fabf0f-142d-4fe8-bef0-087caa844a72") ) (segment (start 80.129999 124.98) (end 79.049999 123.9) (width 0.2) (layer "F.Cu") (net 59) (uuid "d54d6b25-af78-4538-b749-e35b84c60765") ) (segment (start 79.049999 123.9) (end 79.049999 122.149999) (width 0.2) (layer "F.Cu") (net 59) (uuid "f8bdaa61-2993-46d4-8829-98112b6adea8") ) (segment (start 74.5 114.534314) (end 74.5 113.3) (width 0.2) (layer "F.Cu") (net 59) (uuid "f9281b38-bd0a-4edf-a79a-5f4fc2183bb0") ) (segment (start 86.184283 122.4) (end 85.9 122.4) (width 0.2) (layer "F.Cu") (net 60) (uuid "1199ac52-ff86-4f47-8931-a225bd6f84c2") ) (segment (start 85.9 122.4) (end 84.6 121.1) (width 0.2) (layer "F.Cu") (net 60) (uuid "2afe4e3f-5939-41f7-b1bf-7bd2e90da5e2") ) (segment (start 84.6 121.1) (end 84.6 117.5) (width 0.2) (layer "F.Cu") (net 60) (uuid "93ccfa7f-df8f-434c-83a7-0074b17f35df") ) (segment (start 80.01 112.91) (end 80.01 111.09) (width 0.2) (layer "F.Cu") (net 60) (uuid "d173139b-cc16-400c-a1e2-8f19ad41b631") ) (segment (start 84.6 117.5) (end 80.01 112.91) (width 0.2) (layer "F.Cu") (net 60) (uuid "de201bbf-4534-498e-b067-49ca39076c84") ) (segment (start 87.9 124.61071) (end 87.57071 124.94) (width 0.2) (layer "F.Cu") (net 61) (uuid "1de865a2-6a41-4920-84c8-2f1e3018a184") ) (segment (start 87.63 111.09) (end 87.63 112.88) (width 0.2) (layer "F.Cu") (net 61) (uuid "60660869-6507-4510-9961-2424d8f753b4") ) (segment (start 87.57071 124.94) (end 87.385 124.94) (width 0.2) (layer "F.Cu") (net 61) (uuid "7932bc48-fa13-4875-a99e-72329921148e") ) (segment (start 89 119.6) (end 87.9 120.7) (width 0.2) (layer "F.Cu") (net 61) (uuid "a6fe70b9-2717-44c1-af0e-7347ae9263e5") ) (segment (start 87.9 120.7) (end 87.9 124.61071) (width 0.2) (layer "F.Cu") (net 61) (uuid "b8ad037a-bb7f-4b52-bc58-45209efdd44b") ) (segment (start 89 114.25) (end 89 119.6) (width 0.2) (layer "F.Cu") (net 61) (uuid "bf40cc2a-8b5e-4de9-9245-98b26677f680") ) (segment (start 87.63 112.88) (end 89 114.25) (width 0.2) (layer "F.Cu") (net 61) (uuid "d0ced380-d764-4c13-870c-f236e77b91e5") ) (segment (start 92.9 120.2) (end 92.9 129.8) (width 0.2) (layer "F.Cu") (net 62) (uuid "144e9f3e-bfb2-4472-88ac-91d34f2d9b87") ) (segment (start 142.35 71.1125) (end 142.35 73.530049) (width 0.2) (layer "F.Cu") (net 62) (uuid "1648a8df-dd31-4504-8740-d6c2e4fb32aa") ) (segment (start 93.450961 119.649039) (end 92.9 120.2) (width 0.2) (layer "F.Cu") (net 62) (uuid "1a5a31a1-80f6-418a-8d2f-a31d3566dec6") ) (segment (start 92.9 129.8) (end 92.68 130.02) (width 0.2) (layer "F.Cu") (net 62) (uuid "20b15330-ffa3-4619-aff2-21c0b9087f11") ) (segment (start 138.001449 83.488527) (end 138.001451 77.879278) (width 0.2) (layer "F.Cu") (net 62) (uuid "2e53f77e-c9ce-495e-ae31-cd7d12a8f3c1") ) (segment (start 107.25 90.945018) (end 93.450961 104.744057) (width 0.2) (layer "F.Cu") (net 62) (uuid "3f267f2e-54c6-4817-b4ef-29fc001245de") ) (segment (start 107.950616 80.700616) (end 110.966705 80.700991) (width 0.2) (layer "F.Cu") (net 62) (uuid "47296cc8-f130-4b41-b29a-190941986bf4") ) (segment (start 142.35 73.530049) (end 142.33716 73.542889) (width 0.2) (layer "F.Cu") (net 62) (uuid "53dd51d4-23a3-4f76-aaa1-c218f5b70e65") ) (segment (start 129.10096 85.59904) (end 130.3 84.4) (width 0.2) (layer "F.Cu") (net 62) (uuid "6c67ba32-3ceb-44b5-a64f-1bab762f65b4") ) (segment (start 130.3 84.4) (end 137.089976 84.4) (width 0.2) (layer "F.Cu") (net 62) (uuid "72c5c5a3-9a0b-4523-a4e1-741c97fb3110") ) (segment (start 137.089976 84.4) (end 138.001449 83.488527) (width 0.2) (layer "F.Cu") (net 62) (uuid "7c2cee3a-0dbc-4d0d-a78f-62159804d735") ) (segment (start 142.2375 71) (end 142.35 71.1125) (width 0.2) (layer "F.Cu") (net 62) (uuid "81e5630e-5ef8-4199-8987-2f666a8ea65c") ) (segment (start 110.966705 80.700991) (end 115.864754 85.59904) (width 0.2) (layer "F.Cu") (net 62) (uuid "9f7f256c-2374-4f63-b345-2f152cefe9aa") ) (segment (start 93.450961 104.744057) (end 93.450961 119.649039) (width 0.2) (layer "F.Cu") (net 62) (uuid "a23fd2fe-6b7f-47c4-a54c-db3f015d3228") ) (segment (start 144.3 69.425) (end 144.8375 69.425) (width 0.2) (layer "F.Cu") (net 62) (uuid "a85ba578-06ed-4e06-8714-002883ae2a5a") ) (segment (start 142.2375 71) (end 142.725 71) (width 0.2) (layer "F.Cu") (net 62) (uuid "b06e8431-e662-4de5-8b41-356b8a1ab5df") ) (segment (start 92.68 130.02) (end 91.5 130.02) (width 0.2) (layer "F.Cu") (net 62) (uuid "b49fa552-0e11-44ac-8cc2-c7b8e282c086") ) (segment (start 107.25 90.25) (end 107.25 90.945018) (width 0.2) (layer "F.Cu") (net 62) (uuid "bb27f773-7d65-41c2-8c93-a8e4cf006db7") ) (segment (start 115.864754 85.59904) (end 129.10096 85.59904) (width 0.2) (layer "F.Cu") (net 62) (uuid "d2f327e2-6df3-41a4-ad10-06fb87da8d9e") ) (segment (start 107.25 80) (end 107.950616 80.700616) (width 0.2) (layer "F.Cu") (net 62) (uuid "ec12eac0-9027-43c8-a982-22062f3eb918") ) (segment (start 142.725 71) (end 144.3 69.425) (width 0.2) (layer "F.Cu") (net 62) (uuid "fb662205-4593-4aef-8d5a-666c31fd2ce3") ) (segment (start 138.001451 77.879278) (end 142.3375 73.543229) (width 0.2) (layer "F.Cu") (net 62) (uuid "ff3d4f5a-0bb0-4cb9-a6da-fdc9d92621c3") ) (via (at 107.25 90.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 62) (uuid "188dd428-3627-4879-883b-cb10de76adf3") ) (via (at 107.25 80) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 62) (uuid "98e17188-a2ec-4a29-9710-aaaae39eba69") ) (segment (start 107.25 90.25) (end 107.25 80) (width 0.2) (layer "B.Cu") (net 62) (uuid "ac950969-ed9e-4214-b6ba-6952c760bdbe") ) (segment (start 91.8 114.1) (end 91 114.9) (width 0.25) (layer "F.Cu") (net 63) (uuid "1611ba78-6016-4d1e-bbf3-3e3ce876da24") ) (segment (start 85.23 127.48) (end 86.049994 127.48) (width 0.2) (layer "F.Cu") (net 63) (uuid "32abc7c1-5e5f-4935-bbe9-2e4eec1ad607") ) (segment (start 91.8 111.8) (end 91.8 114.1) (width 0.25) (layer "F.Cu") (net 63) (uuid "86a72fc9-9213-4910-96a5-276c530386c2") ) (segment (start 84.5 126.75) (end 85.23 127.48) (width 0.2) (layer "F.Cu") (net 63) (uuid "892a392c-f073-45e5-ad46-360a956af263") ) (segment (start 90.8 110.8) (end 91.8 111.8) (width 0.25) (layer "F.Cu") (net 63) (uuid "aff3077d-8a71-4767-92e6-a84f841ce326") ) (via (at 91 114.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 63) (uuid "3570b336-8a40-488a-9b5d-8ad2dd020e76") ) (via (at 90.8 110.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 63) (uuid "a317e0bf-db84-4953-8da8-1631287e93ba") ) (via (at 84.5 126.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 63) (uuid "aec689c0-1d96-4970-b708-e7fd7d728408") ) (segment (start 91.7 92.365686) (end 89.634314 90.3) (width 0.2) (layer "B.Cu") (net 63) (uuid "01b50dbd-ee33-4202-a03f-0cfd0eb0c7d0") ) (segment (start 85.09 91.61) (end 85.09 93.31) (width 0.2) (layer "B.Cu") (net 63) (uuid "05d4f7c9-0be5-4559-8110-ef21ab8c25be") ) (segment (start 89.634314 90.3) (end 86.4 90.3) (width 0.2) (layer "B.Cu") (net 63) (uuid "3935207e-0d37-4cda-93c9-3ca1d9e40435") ) (segment (start 84.5 116.7) (end 86.3 114.9) (width 0.25) (layer "B.Cu") (net 63) (uuid "779e52ba-d341-4fcb-be38-441ec6d83167") ) (segment (start 86.3 114.9) (end 91 114.9) (width 0.25) (layer "B.Cu") (net 63) (uuid "89847c30-2b5a-4754-8c5e-a689d4c0ebe7") ) (segment (start 90.8 110.8) (end 91.7 109.9) (width 0.2) (layer "B.Cu") (net 63) (uuid "945b4c79-aec3-41dd-8cd0-72235043489c") ) (segment (start 91.7 109.9) (end 91.7 92.365686) (width 0.2) (layer "B.Cu") (net 63) (uuid "ad1f2f81-cf4e-42fa-a8f7-ebee175e3dae") ) (segment (start 84.5 126.75) (end 84.5 116.7) (width 0.25) (layer "B.Cu") (net 63) (uuid "b6d93000-79b0-4f8e-8369-aa0e236d06c9") ) (segment (start 86.4 90.3) (end 85.09 91.61) (width 0.2) (layer "B.Cu") (net 63) (uuid "d5af8997-27f8-4258-aa9d-2d8a12c2c31c") ) (segment (start 137.6 83.32429) (end 137.6 76.3125) (width 0.2) (layer "F.Cu") (net 64) (uuid "052c0623-8bdc-4c6b-9dcc-29fa91399781") ) (segment (start 89.1 125.107767) (end 89.1 121.231372) (width 0.2) (layer "F.Cu") (net 64) (uuid "1725800f-0d05-47b6-b6dd-8868980b642d") ) (segment (start 106.25 79.25) (end 107.48995 79.25) (width 0.2) (layer "F.Cu") (net 64) (uuid "2aeaabd8-d9cf-4233-a746-294b3dd17cc3") ) (segment (start 93.051442 104.57857) (end 106.25 91.380012) (width 0.2) (layer "F.Cu") (net 64) (uuid "2d62da3e-64ce-446b-a201-5e26fbdb664e") ) (segment (start 89.1 121.231372) (end 90.131372 120.2) (width 0.2) (layer "F.Cu") (net 64) (uuid "36a35d2c-65e2-4f93-b926-3ccdc5825a03") ) (segment (start 116.09904 85.19904) (end 128.90096 85.19904) (width 0.2) (layer "F.Cu") (net 64) (uuid "38a59e11-18f8-41b1-892a-e8bfbf8f75df") ) (segment (start 90.131372 120.2) (end 92.3 120.2) (width 0.2) (layer "F.Cu") (net 64) (uuid "46f00bca-4648-44b7-bb22-f3d2521fb275") ) (segment (start 131.825 71) (end 131.825 70.4375) (width 0.2) (layer "F.Cu") (net 64) (uuid "4d7e4872-4c9f-4eaa-9d59-20cf73f602b8") ) (segment (start 128.90096 85.19904) (end 130.1 84) (width 0.2) (layer "F.Cu") (net 64) (uuid "51a7a84e-7523-47aa-86b9-a95c91408061") ) (segment (start 108.53995 80.3) (end 111.2 80.3) (width 0.2) (layer "F.Cu") (net 64) (uuid "766332b5-4a27-4117-9ba4-31a99ab7e3b3") ) (segment (start 107.48995 79.25) (end 108.53995 80.3) (width 0.2) (layer "F.Cu") (net 64) (uuid "7708c019-86e2-4655-8996-c0f299a6dbd9") ) (segment (start 93.051442 119.448558) (end 93.051442 104.57857) (width 0.2) (layer "F.Cu") (net 64) (uuid "7c0d0872-9ffd-4c53-a2e8-d6753f692c08") ) (segment (start 86.825 128.75) (end 87.25 128.75) (width 0.2) (layer "F.Cu") (net 64) (uuid "8bee56f0-2e68-4936-abca-ed38c1834cb5") ) (segment (start 88 126.207767) (end 89.1 125.107767) (width 0.2) (layer "F.Cu") (net 64) (uuid "900dec5b-405d-4dbc-93cc-1171b018c6b2") ) (segment (start 88 128) (end 88 126.207767) (width 0.2) (layer "F.Cu") (net 64) (uuid "9b6ac083-d916-4a8c-a1bd-afed1c5c4a46") ) (segment (start 136.92429 84) (end 137.6 83.32429) (width 0.2) (layer "F.Cu") (net 64) (uuid "b65c1283-bcda-435a-9115-350e37dc2297") ) (segment (start 137.6 76.3125) (end 132.2875 71) (width 0.2) (layer "F.Cu") (net 64) (uuid "b714e6e0-99e9-4436-9236-f0c3be6e260d") ) (segment (start 130.1 84) (end 136.92429 84) (width 0.2) (layer "F.Cu") (net 64) (uuid "c3efc0a9-288c-4d8b-8b77-51b8b84a715d") ) (segment (start 131.825 70.4375) (end 132.8125 69.45) (width 0.2) (layer "F.Cu") (net 64) (uuid "ce29964f-fa62-4bac-a2ad-83127ccd8ef4") ) (segment (start 132.2875 71) (end 131.825 71) (width 0.2) (layer "F.Cu") (net 64) (uuid "e3d14bfb-1dd0-4a2c-b10d-4acb42842c59") ) (segment (start 92.3 120.2) (end 93.051442 119.448558) (width 0.2) (layer "F.Cu") (net 64) (uuid "e849df5d-70cd-4e3b-8946-156d4120efc5") ) (segment (start 111.2 80.3) (end 116.09904 85.19904) (width 0.2) (layer "F.Cu") (net 64) (uuid "e94ac819-9cfe-4418-b879-3fa146332391") ) (segment (start 106.25 91.380012) (end 106.25 90.25) (width 0.2) (layer "F.Cu") (net 64) (uuid "f024124c-040b-4801-8301-f34dee7e6ae9") ) (segment (start 87.25 128.75) (end 88 128) (width 0.2) (layer "F.Cu") (net 64) (uuid "f67480ef-059c-442b-8121-f0de8eb14964") ) (via (at 106.25 90.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (uuid "3b826e52-231a-44c5-9814-cfbfbc317ab0") ) (via (at 106.25 79.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 64) (uuid "59608fa9-a399-4cd7-9e3b-33cf4ded20bc") ) (segment (start 106.25 90.25) (end 106.25 79.25) (width 0.2) (layer "B.Cu") (net 64) (uuid "1d18c292-5998-49ae-85a5-eaa4a2d30dcf") ) (segment (start 91.2 78.931371) (end 83.831371 86.3) (width 0.2) (layer "F.Cu") (net 65) (uuid "26b62a9d-55a4-4e4e-84ee-7f5994966fb2") ) (segment (start 83.831371 86.3) (end 83.481372 86.3) (width 0.2) (layer "F.Cu") (net 65) (uuid "284175e3-ab33-4507-926b-01714ceedaa3") ) (segment (start 105.45 71) (end 105.5125 71) (width 0.2) (layer "F.Cu") (net 65) (uuid "3b145583-43b3-48af-80b5-b63cddff2d31") ) (segment (start 91.2 77.302942) (end 91.2 78.931371) (width 0.2) (layer "F.Cu") (net 65) (uuid "3f2c6ba1-f678-4feb-891a-86c07c42345d") ) (segment (start 83.481372 86.3) (end 82.781372 87) (width 0.2) (layer "F.Cu") (net 65) (uuid "5166ffc7-fe1e-4cea-b7e7-a63bdea8b34e") ) (segment (start 104.8 71) (end 101.1 74.7) (width 0.2) (layer "F.Cu") (net 65) (uuid "5fa99d24-8257-4ddc-9a97-6e6811b681d5") ) (segment (start 101.1 74.7) (end 93.802945 74.7) (width 0.2) (layer "F.Cu") (net 65) (uuid "6b1fa808-fcc8-4138-93a0-7d030d853ac4") ) (segment (start 105.1625 71) (end 104.8 71) (width 0.2) (layer "F.Cu") (net 65) (uuid "a66ee304-102c-4f45-abcf-eade741b27be") ) (segment (start 82.781372 87) (end 79.75 87) (width 0.2) (layer "F.Cu") (net 65) (uuid "e4918d21-0f04-4332-b2ac-e22f7f4e29e5") ) (segment (start 93.802945 74.7) (end 91.2 77.302942) (width 0.2) (layer "F.Cu") (net 65) (uuid "f46eab2c-a2e8-4997-9c29-74dc12083cc7") ) (via (at 79.75 87) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 65) (uuid "4d51a774-5a92-480b-9e80-a8410afcb0cf") ) (segment (start 76.2 90.6) (end 76.2 93.983173) (width 0.2) (layer "B.Cu") (net 65) (uuid "4d23927d-273d-4d0e-930e-2c46af7a0090") ) (segment (start 76.2 93.983173) (end 78.2 95.983173) (width 0.2) (layer "B.Cu") (net 65) (uuid "887bd112-9e36-436f-807f-9d3b186fbe84") ) (segment (start 78.2 95.983173) (end 78.2 110.36) (width 0.2) (layer "B.Cu") (net 65) (uuid "9a893e36-e912-4ad5-9699-7a45b56a8299") ) (segment (start 79.75 87.05) (end 76.2 90.6) (width 0.2) (layer "B.Cu") (net 65) (uuid "a74bf383-ecf2-4708-87f7-2b42e238bf10") ) (segment (start 78.2 110.36) (end 77.47 111.09) (width 0.2) (layer "B.Cu") (net 65) (uuid "e3b19bc6-2235-4f7d-862a-3c8c42eafe94") ) (segment (start 79.75 87) (end 79.75 87.05) (width 0.2) (layer "B.Cu") (net 65) (uuid "e5ec8f68-fd8b-49af-9181-d22ac3072ca2") ) (segment (start 90.025 128.8) (end 91.475 128.8) (width 0.2) (layer "F.Cu") (net 66) (uuid "171788fd-969c-4531-95b5-62ff55545244") ) (segment (start 90 128.825) (end 90.025 128.8) (width 0.2) (layer "F.Cu") (net 66) (uuid "48d6b5ac-9da7-499f-8e26-558d415019e8") ) (via (at 90 128.825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 66) (uuid "d108f92d-e1d5-4863-8161-bea100d373ca") ) (segment (start 84.075 125.73505) (end 83.78 126.03005) (width 0.2) (layer "B.Cu") (net 66) (uuid "0a3df4dd-d236-445a-8cbc-c57441a0cded") ) (segment (start 78.7 95.8) (end 78.7 115) (width 0.2) (layer "B.Cu") (net 66) (uuid "4507bf2c-bc21-4ed1-b5de-7b0ec400ef50") ) (segment (start 78.7 115) (end 84.075 120.375) (width 0.2) (layer "B.Cu") (net 66) (uuid "561adee5-213b-4acd-b111-54eba0e543d2") ) (segment (start 83.78 126.03005) (end 83.78 127.56995) (width 0.2) (layer "B.Cu") (net 66) (uuid "6f8ddcf6-40b5-4659-ad3e-66575969165f") ) (segment (start 84.075 120.375) (end 84.075 125.73505) (width 0.2) (layer "B.Cu") (net 66) (uuid "8989083f-937c-4395-bb5a-926b19dc4394") ) (segment (start 90 128.825) (end 89.925 128.9) (width 0.2) (layer "B.Cu") (net 66) (uuid "a9353c72-2928-496c-b0fd-3eb3afc81210") ) (segment (start 83.78 127.56995) (end 85.03505 128.825) (width 0.2) (layer "B.Cu") (net 66) (uuid "c761bcf4-85ef-4dc0-abab-ad2478cee411") ) (segment (start 77.47 94.57) (end 78.7 95.8) (width 0.2) (layer "B.Cu") (net 66) (uuid "ccea2f8d-097c-49b2-9080-23331252988f") ) (segment (start 77.47 93.31) (end 77.47 94.57) (width 0.2) (layer "B.Cu") (net 66) (uuid "d37f73a7-540f-4094-a525-81d28936c550") ) (segment (start 85.03505 128.825) (end 90 128.825) (width 0.2) (layer "B.Cu") (net 66) (uuid "fb72e650-496c-406a-b171-eecea08eff07") ) (segment (start 111.5 68.7125) (end 111.5125 68.7125) (width 0.25) (layer "F.Cu") (net 67) (uuid "4d3a681c-899c-4877-b073-77bfdae4595c") ) (segment (start 111.5125 68.7125) (end 113.25 66.975) (width 0.25) (layer "F.Cu") (net 67) (uuid "f9b3b681-a54d-4ad3-a275-9d8f744d133e") ) (segment (start 116.8125 115.0375) (end 115.9 114.125) (width 0.25) (layer "F.Cu") (net 68) (uuid "ce4a2c31-15b9-4306-a550-996de0a86cb3") ) (segment (start 116.8125 116) (end 116.8125 115.0375) (width 0.25) (layer "F.Cu") (net 68) (uuid "fc65584e-bba3-4f37-8090-f18eae333100") ) (segment (start 120 110.8) (end 120 109.1375) (width 0.2) (layer "F.Cu") (net 69) (uuid "063c505e-f7e0-4d64-9eb5-c16c274f9770") ) (segment (start 90.660487 82.865) (end 91.865 82.865) (width 0.2) (layer "F.Cu") (net 69) (uuid "39913727-728e-4a58-82a9-ff7346dd372e") ) (segment (start 89 84.525487) (end 90.660487 82.865) (width 0.2) (layer "F.Cu") (net 69) (uuid "3b6baca7-8a21-4fb6-bb67-df3c708f4cd3") ) (segment (start 119.8625 107.25) (end 119.9125 107.2) (width 0.2) (layer "F.Cu") (net 69) (uuid "3b88bd47-9c3a-477b-800b-2b41204f7261") ) (segment (start 91.865 82.865) (end 92.735 83.735) (width 0.2) (layer "F.Cu") (net 69) (uuid "58c7f44d-c705-4634-a9d6-63bcc2d6f608") ) (segment (start 118.334514 104.64952) (end 101.089739 104.64952) (width 0.2) (layer "F.Cu") (net 69) (uuid "64dc417e-2185-47ae-8d37-f46670ae8ae3") ) (segment (start 92.735 83.735) (end 93.825 83.735) (width 0.2) (layer "F.Cu") (net 69) (uuid "669c70c4-59f4-4675-becc-04bc70d1459c") ) (segment (start 89.7 87.8) (end 89 87.1) (width 0.2) (layer "F.Cu") (net 69) (uuid "8aca8b31-24df-4ea7-8735-858aa80a1894") ) (segment (start 100.739259 105) (end 97.5 105) (width 0.2) (layer "F.Cu") (net 69) (uuid "8b746e45-f5f6-4bd8-80bb-c251a2c0610f") ) (segment (start 89.7 87.9) (end 89.7 87.8) (width 0.2) (layer "F.Cu") (net 69) (uuid "8bc65af8-6052-4eb4-9f46-17b0efd62f58") ) (segment (start 119.9125 107.2) (end 119.9125 106.227506) (width 0.2) (layer "F.Cu") (net 69) (uuid "b1226045-4100-4f8f-959a-d3f4f77cb542") ) (segment (start 119.8625 109) (end 119.8625 107.25) (width 0.2) (layer "F.Cu") (net 69) (uuid "bd2abb6e-486a-43e2-a17f-babca601b669") ) (segment (start 119.9125 106.227506) (end 118.334514 104.64952) (width 0.2) (layer "F.Cu") (net 69) (uuid "d4bbf558-0cab-4578-b405-88b6fd03b226") ) (segment (start 89 87.1) (end 89 84.525487) (width 0.2) (layer "F.Cu") (net 69) (uuid "e2e4a2bb-df92-41b2-8df9-848c7e05577b") ) (segment (start 120 109.1375) (end 119.8625 109) (width 0.2) (layer "F.Cu") (net 69) (uuid "f4dffde4-6c10-458a-91c1-3d2904cc215c") ) (segment (start 101.089739 104.64952) (end 100.739259 105) (width 0.2) (layer "F.Cu") (net 69) (uuid "fac51569-12c5-45a1-b251-dfb07aa9c1cf") ) (via (at 97.5 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 69) (uuid "08fc2659-5766-4926-9e1c-1012fb8f5013") ) (via (at 89.7 87.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 69) (uuid "61bb8ea3-a0b3-46ed-9a0e-dfff85042433") ) (segment (start 89.7 88.6) (end 89.7 87.9) (width 0.2) (layer "B.Cu") (net 69) (uuid "0d3ddb8d-d2b3-4de6-9438-8993a8a3ebc0") ) (segment (start 92.9 91.8) (end 89.7 88.6) (width 0.2) (layer "B.Cu") (net 69) (uuid "1b7d263a-6b22-41da-ba32-4c6b93fe3686") ) (segment (start 92.9 104.468628) (end 92.9 91.8) (width 0.2) (layer "B.Cu") (net 69) (uuid "2781f1f4-16cf-40ca-96be-5671bf4fe9b1") ) (segment (start 97.5 105) (end 93.431372 105) (width 0.2) (layer "B.Cu") (net 69) (uuid "3716f09e-86e3-473c-9b1f-99a504687db3") ) (segment (start 93.431372 105) (end 92.9 104.468628) (width 0.2) (layer "B.Cu") (net 69) (uuid "fd40586a-c4fe-4eb5-b068-0e4950334ce9") ) (segment (start 110.069117 96.199511) (end 112.4 93.868628) (width 0.2) (layer "F.Cu") (net 70) (uuid "0bcae450-d0dc-4198-aff7-431463c76999") ) (segment (start 131.55 109.0875) (end 131.4625 109) (width 0.2) (layer "F.Cu") (net 70) (uuid "0ef6f5e9-223c-4f83-bf65-ab81789dc214") ) (segment (start 105.412744 84.3) (end 103.812744 85.9) (width 0.2) (layer "F.Cu") (net 70) (uuid "13131cc9-b52d-42a0-a1f2-e50f8e62d410") ) (segment (start 110.437256 85.9) (end 107.962992 85.9) (width 0.2) (layer "F.Cu") (net 70) (uuid "1538c71c-c5e4-47e5-9852-20e66cd4cf4e") ) (segment (start 131.4625 107.25) (end 131.5125 107.2) (width 0.2) (layer "F.Cu") (net 70) (uuid "40f22d12-6936-4f47-9007-d3556ced8a1c") ) (segment (start 112.4 87.862744) (end 110.437256 85.9) (width 0.2) (layer "F.Cu") (net 70) (uuid "4351186c-df9e-46d1-ae48-e710d5175c88") ) (segment (start 101.102942 85.9) (end 100.2 84.997056) (width 0.2) (layer "F.Cu") (net 70) (uuid "4585f0d7-93ad-44eb-b366-5d144d5df5e6") ) (segment (start 99.935 83.735) (end 99.075 83.735) (width 0.2) (layer "F.Cu") (net 70) (uuid "51f59bd6-96de-43bf-a927-56d4b25ebc7f") ) (segment (start 101.75 103.5) (end 98.9 103.5) (width 0.2) (layer "F.Cu") (net 70) (uuid "5e782572-c111-48f3-9991-b6a92a439e08") ) (segment (start 131.55 110.8) (end 131.55 109.0875) (width 0.2) (layer "F.Cu") (net 70) (uuid "65f25fe2-669d-4c6e-a16f-947751ee3a6f") ) (segment (start 98.4 102.055042) (end 104.255531 96.199511) (width 0.2) (layer "F.Cu") (net 70) (uuid "907770a9-d8e4-4413-92b8-f549ae7093f5") ) (segment (start 98.4 103) (end 98.4 102.055042) (width 0.2) (layer "F.Cu") (net 70) (uuid "95bdaf78-a04f-48ba-8804-8e4855ba6935") ) (segment (start 103.812744 85.9) (end 101.102942 85.9) (width 0.2) (layer "F.Cu") (net 70) (uuid "9af392a4-8c92-42cb-a2c2-c5a2aa3cf4c1") ) (segment (start 104.255531 96.199511) (end 110.069117 96.199511) (width 0.2) (layer "F.Cu") (net 70) (uuid "b7dfeeb2-d4bd-4363-80e0-cf20ae401c67") ) (segment (start 131.5125 106.297776) (end 129.065204 103.85048) (width 0.2) (layer "F.Cu") (net 70) (uuid "baa95c9b-cf94-4775-963b-c554eb894a9b") ) (segment (start 100.2 84.997056) (end 100.2 84) (width 0.2) (layer "F.Cu") (net 70) (uuid "bb1e24f6-8fe5-4fe8-a0af-8d494211e74d") ) (segment (start 106.362992 84.3) (end 105.412744 84.3) (width 0.2) (layer "F.Cu") (net 70) (uuid "c70fa523-7539-4af2-be35-bf1bc17a3c0a") ) (segment (start 131.5125 107.2) (end 131.5125 106.297776) (width 0.2) (layer "F.Cu") (net 70) (uuid "ca340cba-e697-4d35-a6c1-4b7228e896d9") ) (segment (start 129.065204 103.85048) (end 102.10048 103.85048) (width 0.2) (layer "F.Cu") (net 70) (uuid "cc38e985-039b-4d21-a07b-c58bc1fd250b") ) (segment (start 102.10048 103.85048) (end 101.75 103.5) (width 0.2) (layer "F.Cu") (net 70) (uuid "daadb4c3-1acd-480b-899c-f2a985e0f331") ) (segment (start 131.4625 109) (end 131.4625 107.25) (width 0.2) (layer "F.Cu") (net 70) (uuid "df30f862-8f3f-4b14-bd56-6f08cc64ee78") ) (segment (start 107.962992 85.9) (end 106.362992 84.3) (width 0.2) (layer "F.Cu") (net 70) (uuid "e58d5550-de95-4d2a-8e01-b9d13aae91f9") ) (segment (start 98.9 103.5) (end 98.4 103) (width 0.2) (layer "F.Cu") (net 70) (uuid "e6899651-e052-4da8-9b0d-2d036345ae04") ) (segment (start 112.4 93.868628) (end 112.4 87.862744) (width 0.2) (layer "F.Cu") (net 70) (uuid "eabf332b-de7c-4f47-988d-28c74f8f2746") ) (segment (start 100.2 84) (end 99.935 83.735) (width 0.2) (layer "F.Cu") (net 70) (uuid "f9387978-0570-4a0f-94c2-4dad9f3d849e") ) (segment (start 150.15 123.6) (end 150.1 123.6) (width 0.2) (layer "F.Cu") (net 71) (uuid "046714ca-9c5d-4c0b-a870-c7f050b2ad17") ) (segment (start 112.8 87.697058) (end 110.602941 85.5) (width 0.2) (layer "F.Cu") (net 71) (uuid "10cc265a-33a6-42c5-89fd-2459142f2dcf") ) (segment (start 99.965 82.465) (end 98.775 82.465) (width 0.2) (layer "F.Cu") (net 71) (uuid "2815df7f-0874-419a-93f6-165ea8a2abc4") ) (segment (start 150.1 123.6) (end 148.3875 121.8875) (width 0.2) (layer "F.Cu") (net 71) (uuid "29bf6f37-7429-4aeb-9e39-2b038f2f0fe6") ) (segment (start 108.534314 98.3) (end 112.8 94.034314) (width 0.2) (layer "F.Cu") (net 71) (uuid "31b5b500-30ae-41bc-a42e-eef9825010fa") ) (segment (start 105.247059 83.9) (end 103.647056 85.5) (width 0.2) (layer "F.Cu") (net 71) (uuid "45100ff9-8a3e-4620-a7c3-1fb25f5869f0") ) (segment (start 110.602941 85.5) (end 108.128678 85.5) (width 0.2) (layer "F.Cu") (net 71) (uuid "4b6d355a-97af-4320-9d22-08a3e6d02dc2") ) (segment (start 150.1125 119) (end 150.1 119) (width 0.2) (layer "F.Cu") (net 71) (uuid "4ca428f9-c5d0-4331-af64-07b045598f37") ) (segment (start 150.1 119) (end 148.9 117.8) (width 0.2) (layer "F.Cu") (net 71) (uuid "57addf55-ad7b-490b-bf27-c8b655bb8aac") ) (segment (start 112.8 94.034314) (end 112.8 87.697058) (width 0.2) (layer "F.Cu") (net 71) (uuid "6824886e-b34a-4d43-aff6-664c561fd6e5") ) (segment (start 148.9 115.9) (end 136.05144 103.05144) (width 0.2) (layer "F.Cu") (net 71) (uuid "71738013-f8e4-49ef-9a04-902a361641c9") ) (segment (start 103.647056 85.5) (end 101.268628 85.5) (width 0.2) (layer "F.Cu") (net 71) (uuid "7369afa6-d7c7-45fa-8f8a-4309eef5b7a5") ) (segment (start 101.268628 85.5) (end 100.6 84.831371) (width 0.2) (layer "F.Cu") (net 71) (uuid "749c10a6-b9ca-4ca1-802d-48bdac8c9fb1") ) (segment (start 148.3875 121.8875) (end 148.3875 121.8) (width 0.2) (layer "F.Cu") (net 71) (uuid "8c74f2d5-4602-4f9d-9978-e0a3d975266f") ) (segment (start 106.30144 103.05144) (end 105.65 102.4) (width 0.2) (layer "F.Cu") (net 71) (uuid "8fdbd5dc-7721-4605-b6c0-c446a4a2f619") ) (segment (start 100.6 83.1) (end 99.965 82.465) (width 0.2) (layer "F.Cu") (net 71) (uuid "96ed773d-1350-45d9-92bc-af6a1dcba4a8") ) (segment (start 105.65 99.152943) (end 106.502944 98.3) (width 0.2) (layer "F.Cu") (net 71) (uuid "a13540a9-8efb-4ef0-b1d0-3cadb15c0c95") ) (segment (start 106.528677 83.9) (end 105.247059 83.9) (width 0.2) (layer "F.Cu") (net 71) (uuid "b47db33c-841d-48b3-a277-7c00655f98bd") ) (segment (start 106.502944 98.3) (end 108.534314 98.3) (width 0.2) (layer "F.Cu") (net 71) (uuid "bc5daba5-e477-4aea-9d69-79f8928b0d0e") ) (segment (start 105.65 102.4) (end 105.65 99.152943) (width 0.2) (layer "F.Cu") (net 71) (uuid "c0a364ce-1477-472b-a2d1-47e70c6177fc") ) (segment (start 148.9 117.8) (end 148.9 115.9) (width 0.2) (layer "F.Cu") (net 71) (uuid "c9103966-7c9d-4a93-82a7-91b81f961362") ) (segment (start 150.1 119) (end 148.3875 120.7125) (width 0.2) (layer "F.Cu") (net 71) (uuid "d49c2d22-6ffb-4889-93aa-45992a4fa9d3") ) (segment (start 100.6 84.831371) (end 100.6 83.1) (width 0.2) (layer "F.Cu") (net 71) (uuid "d73c50dc-9bd1-494b-a8bb-95ac2af1f5e1") ) (segment (start 108.128678 85.5) (end 106.528677 83.9) (width 0.2) (layer "F.Cu") (net 71) (uuid "e242b733-7b39-4bc0-8899-e7a3d3892480") ) (segment (start 148.3875 120.7125) (end 148.3875 121.8) (width 0.2) (layer "F.Cu") (net 71) (uuid "ea57ea86-1ad4-46a4-b002-849f88078b55") ) (segment (start 136.05144 103.05144) (end 106.30144 103.05144) (width 0.2) (layer "F.Cu") (net 71) (uuid "feea368a-495a-4498-ae2e-8492b5852a76") ) (segment (start 91.6 77.468628) (end 93.96863 75.1) (width 0.2) (layer "F.Cu") (net 72) (uuid "0221100a-1352-4e1a-a035-8429a7c22652") ) (segment (start 106.5 75.6) (end 108.4 75.6) (width 0.2) (layer "F.Cu") (net 72) (uuid "4a23b763-05b4-4687-9df9-4d3f6f9df5aa") ) (segment (start 116.87255 70.9375) (end 117.0125 70.9375) (width 0.2) (layer "F.Cu") (net 72) (uuid "4a8f2aa5-5f1f-4b8f-b961-9dabb1a50757") ) (segment (start 111.2 72.8) (end 115.01005 72.8) (width 0.2) (layer "F.Cu") (net 72) (uuid "5d39ecf0-2818-4e2b-b3d5-0e9c75761a1a") ) (segment (start 91.6 79.097057) (end 91.6 77.468628) (width 0.2) (layer "F.Cu") (net 72) (uuid "70194c0b-4ec2-4df3-aa71-36eee816dd7b") ) (segment (start 106 75.1) (end 106.5 75.6) (width 0.2) (layer "F.Cu") (net 72) (uuid "7dd14aba-7362-4f2b-be20-d47ea1626ff3") ) (segment (start 85.8 84.897057) (end 91.6 79.097057) (width 0.2) (layer "F.Cu") (net 72) (uuid "abb17dd4-0267-489c-8d27-7ea94b10c25a") ) (segment (start 85.8 85.9) (end 85.8 84.897057) (width 0.2) (layer "F.Cu") (net 72) (uuid "b8109c42-a93d-4b74-9437-c71a7c1450f2") ) (segment (start 115.01005 72.8) (end 116.87255 70.9375) (width 0.2) (layer "F.Cu") (net 72) (uuid "c7e5308b-686a-4737-947f-74747c2ad129") ) (segment (start 93.96863 75.1) (end 106 75.1) (width 0.2) (layer "F.Cu") (net 72) (uuid "e1dd0acd-2e3a-426d-aa17-c3f633ab6e66") ) (segment (start 108.4 75.6) (end 111.2 72.8) (width 0.2) (layer "F.Cu") (net 72) (uuid "ed4ae9ac-8646-4119-8e73-8af222cd7a1d") ) (via (at 85.8 85.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 72) (uuid "4a475958-d903-4b0e-a6cc-63c48e1ae418") ) (segment (start 85.8 85.9) (end 92.1 92.2) (width 0.2) (layer "B.Cu") (net 72) (uuid "024e3ee2-cbf5-4630-8f79-756a069a94c0") ) (segment (start 92.1 110.8) (end 89.8 113.1) (width 0.2) (layer "B.Cu") (net 72) (uuid "9c749e79-c4ff-47eb-a9ff-8519fa2d57de") ) (segment (start 89.8 113.1) (end 87.1 113.1) (width 0.2) (layer "B.Cu") (net 72) (uuid "bf99a763-270d-4f6d-8112-e76e36c46097") ) (segment (start 92.1 92.2) (end 92.1 110.8) (width 0.2) (layer "B.Cu") (net 72) (uuid "db3b5e22-0eac-4e73-ab02-1a2afac0cbb8") ) (segment (start 87.1 113.1) (end 85.09 111.09) (width 0.2) (layer "B.Cu") (net 72) (uuid "fc13e10d-2527-43d4-b41e-0cd76ebe911d") ) (segment (start 102.3 84) (end 103.45 84) (width 0.2) (layer "F.Cu") (net 73) (uuid "079134d6-aa23-4a71-9e00-5b15e7a2ecc5") ) (segment (start 105.149511 82.300489) (end 110.269117 82.300489) (width 0.2) (layer "F.Cu") (net 73) (uuid "08241ae9-bfb6-411b-bc75-abce37088936") ) (segment (start 110.269117 82.300489) (end 115.168628 87.2) (width 0.2) (layer "F.Cu") (net 73) (uuid "0e8f00a9-959a-4ff3-8e25-ddc1cb0e49f3") ) (segment (start 140.4625 71) (end 140.4625 72.5375) (width 0.2) (layer "F.Cu") (net 73) (uuid "1ec818df-aad6-44c3-936c-940d748fa8ca") ) (segment (start 101.850001 90.249999) (end 80.500001 90.249999) (width 0.2) (layer "F.Cu") (net 73) (uuid "30bb6ed2-f26a-4355-8661-e00113bc9b99") ) (segment (start 80.500001 90.249999) (end 80.25 90.5) (width 0.2) (layer "F.Cu") (net 73) (uuid "39a1b7f5-391e-4635-a3e9-27f8ab487803") ) (segment (start 103.45 84) (end 105.149511 82.300489) (width 0.2) (layer "F.Cu") (net 73) (uuid "4b22c9d0-097e-4104-9d37-eb904c2fe3b5") ) (segment (start 139.45 87.2) (end 139.5 87.25) (width 0.2) (layer "F.Cu") (net 73) (uuid "5f1ebdca-b6cb-4cbd-b629-e176466974a7") ) (segment (start 80.25 93.07) (end 80.01 93.31) (width 0.2) (layer "F.Cu") (net 73) (uuid "6fb13faf-4af0-4b2b-be50-f17dffeffbcb") ) (segment (start 102.3 89.8) (end 101.850001 90.249999) (width 0.2) (layer "F.Cu") (net 73) (uuid "b34c7858-cc99-4bfc-96b4-de6138a594c2") ) (segment (start 140.4625 72.5375) (end 139.5 73.5) (width 0.2) (layer "F.Cu") (net 73) (uuid "c5b70f1a-a4dc-4dea-8109-473c11c2f5c9") ) (segment (start 115.168628 87.2) (end 139.45 87.2) (width 0.2) (layer "F.Cu") (net 73) (uuid "cdedf0d2-11ee-4eff-aeb9-e8517a2addea") ) (segment (start 80.25 90.5) (end 80.25 93.07) (width 0.2) (layer "F.Cu") (net 73) (uuid "e1ced5a4-0d81-4dba-8016-0926fdeb3ce5") ) (segment (start 102.3 88.7) (end 102.3 89.8) (width 0.2) (layer "F.Cu") (net 73) (uuid "e5ed15db-ad12-458a-ae6d-4823a0f87d62") ) (via (at 102.3 84) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 73) (uuid "889167ef-408b-4344-9f81-685fab0d685d") ) (via (at 102.3 88.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 73) (uuid "ae71775e-0468-42e2-8638-cdbd324704e5") ) (via (at 139.5 87.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 73) (uuid "b39700ba-16f1-4466-a5f0-5099696c889f") ) (via (at 139.5 73.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 73) (uuid "e100a118-3411-49c5-bd59-2ef69cc762f5") ) (segment (start 102.3 88.7) (end 102.3 84) (width 0.2) (layer "B.Cu") (net 73) (uuid "06ead543-f256-4db0-9157-bbc51da422dc") ) (segment (start 139.5 87.25) (end 139.5 73.5) (width 0.2) (layer "B.Cu") (net 73) (uuid "90a3a4f0-8b66-4351-9fe3-576734a169f8") ) (segment (start 128.20288 86.8) (end 128.20144 86.79856) (width 0.2) (layer "F.Cu") (net 74) (uuid "0839bb55-fd99-4137-ba33-2ee0387187a7") ) (segment (start 130.6 73.2) (end 129.2 73.2) (width 0.2) (layer "F.Cu") (net 74) (uuid "1090be9b-6b23-45df-b2a3-b6b887a78449") ) (segment (start 103.3 89.7) (end 102.350482 90.649518) (width 0.2) (layer "F.Cu") (net 74) (uuid "2229cd34-bcb1-4504-81fd-590670c66812") ) (segment (start 128.225 72.225) (end 128.225 71) (width 0.2) (layer "F.Cu") (net 74) (uuid "23d72bc1-749f-4500-a9e1-2bcd06dc9227") ) (segment (start 129.2 73.2) (end 128.225 72.225) (width 0.2) (layer "F.Cu") (net 74) (uuid "42b57e89-df7f-4bf8-a7d5-dbbdf22d4917") ) (segment (start 110.435284 81.90097) (end 104.39903 81.90097) (width 0.2) (layer "F.Cu") (net 74) (uuid "44418db1-be8c-4eba-8a85-b76ae9957d8a") ) (segment (start 128.20144 86.79856) (end 115.332874 86.79856) (width 0.2) (layer "F.Cu") (net 74) (uuid "5d6aa979-bf9f-4e29-aa89-7dbf2c140dc5") ) (segment (start 130.3 86.8) (end 128.20288 86.8) (width 0.2) (layer "F.Cu") (net 74) (uuid "7d5a193b-4695-4ac6-a578-90aa69f506ad") ) (segment (start 88.750482 90.649518) (end 87.63 91.77) (width 0.2) (layer "F.Cu") (net 74) (uuid "975d4175-a978-4230-a3b2-aa9c6e6238f5") ) (segment (start 103.3 89.4) (end 103.3 89.7) (width 0.2) (layer "F.Cu") (net 74) (uuid "ab56f6a2-17e5-4160-a26c-3930dfea0b84") ) (segment (start 115.332874 86.79856) (end 110.435284 81.90097) (width 0.2) (layer "F.Cu") (net 74) (uuid "acc308af-b219-420e-9dae-3bdcf2159726") ) (segment (start 104.39903 81.90097) (end 103.3 83) (width 0.2) (layer "F.Cu") (net 74) (uuid "bc3212a8-cc46-4bf0-adfc-072c0634b3eb") ) (segment (start 102.350482 90.649518) (end 88.750482 90.649518) (width 0.2) (layer "F.Cu") (net 74) (uuid "c90a0e8d-887e-4f44-ade7-78acbfa6ac39") ) (segment (start 130.6 86.5) (end 130.3 86.8) (width 0.2) (layer "F.Cu") (net 74) (uuid "d13b7090-b008-4a8e-9864-852eaaa612d7") ) (segment (start 87.63 91.77) (end 87.63 93.31) (width 0.2) (layer "F.Cu") (net 74) (uuid "f7e36499-a506-4157-85f9-808f25323df4") ) (via (at 103.3 89.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 74) (uuid "296adb1b-e931-44f5-b0eb-480f777d5547") ) (via (at 103.3 83) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 74) (uuid "509f18eb-3095-4b7f-a391-04540fe77657") ) (via (at 130.6 86.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 74) (uuid "63a0532f-8b20-48e3-a29c-e335236fe517") ) (via (at 130.6 73.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 74) (uuid "67a94c7d-bbd2-405c-8968-002cf11f086d") ) (segment (start 130.6 86.5) (end 130.6 73.2) (width 0.2) (layer "B.Cu") (net 74) (uuid "b00d53be-c37d-4ed6-a226-36436d9d7895") ) (segment (start 103.3 89.4) (end 103.3 83) (width 0.2) (layer "B.Cu") (net 74) (uuid "bd1d0839-dab8-40d6-a2f9-37d54d5ebb88") ) (segment (start 149 104.3) (end 146.3375 104.3) (width 0.2) (layer "F.Cu") (net 75) (uuid "0f072f0b-f6db-47c8-859d-cf799127b31e") ) (segment (start 105.081372 83.5) (end 103.481371 85.1) (width 0.2) (layer "F.Cu") (net 75) (uuid "10400b0e-8364-460d-8087-98579c293458") ) (segment (start 99.57 81.1) (end 99.475 81.195) (width 0.2) (layer "F.Cu") (net 75) (uuid "21bb688b-f84e-4571-ac81-f812cae4be64") ) (segment (start 106.668629 98.7) (end 108.7 98.7) (width 0.2) (layer "F.Cu") (net 75) (uuid "21c29e17-39df-4a26-a4a7-36ffcf8489a1") ) (segment (start 108.7 98.7) (end 113.2 94.2) (width 0.2) (layer "F.Cu") (net 75) (uuid "396ff0ca-a7b7-434f-9e07-a7b2c2fdd0bc") ) (segment (start 106.05 99.318629) (end 106.668629 98.7) (width 0.2) (layer "F.Cu") (net 75) (uuid "42ec7233-f428-4c42-9604-862c112e4bf1") ) (segment (start 101.434314 85.1) (end 101 84.665686) (width 0.2) (layer "F.Cu") (net 75) (uuid "4e368fd9-08d7-40eb-81f8-91dc81716733") ) (segment (start 146.25 104.3875) (end 144.55 104.3875) (width 0.2) (layer "F.Cu") (net 75) (uuid "78e3b67d-30ac-485d-9db7-796607b64e62") ) (segment (start 142.814421 102.651921) (end 106.65192 102.65192) (width 0.2) (layer "F.Cu") (net 75) (uuid "846bb148-bc78-4b07-bfa6-5075db900a55") ) (segment (start 103.481371 85.1) (end 101.434314 85.1) (width 0.2) (layer "F.Cu") (net 75) (uuid "943aa8bd-4c06-4930-8018-3fdb38e5f515") ) (segment (start 144.5 104.3375) (end 142.814421 102.651921) (width 0.2) (layer "F.Cu") (net 75) (uuid "a6a26c41-ec56-4882-899b-e89047fd37d6") ) (segment (start 99.995 81.195) (end 98.775 81.195) (width 0.2) (layer "F.Cu") (net 75) (uuid "badf8986-9507-43f5-b82d-01be04e563ed") ) (segment (start 113.2 94.2) (end 113.2 87.531372) (width 0.2) (layer "F.Cu") (net 75) (uuid "bc084ddf-5772-4795-b5a1-8337c6ae5eea") ) (segment (start 101 82.2) (end 99.995 81.195) (width 0.2) (layer "F.Cu") (net 75) (uuid "cde34ec9-ab8b-44fd-9de5-9ff032e96436") ) (segment (start 106.694362 83.5) (end 105.081372 83.5) (width 0.2) (layer "F.Cu") (net 75) (uuid "d854c65d-a6fd-466f-b4b0-612dcb06883d") ) (segment (start 144.55 104.3875) (end 144.5 104.3375) (width 0.2) (layer "F.Cu") (net 75) (uuid "dc12902a-0b94-406a-88fb-33495283cc01") ) (segment (start 113.2 87.531372) (end 110.768626 85.1) (width 0.2) (layer "F.Cu") (net 75) (uuid "df8affed-cb85-47b8-8f6a-d2c64a02ed86") ) (segment (start 101 84.665686) (end 101 82.2) (width 0.2) (layer "F.Cu") (net 75) (uuid "ead7e81a-e0b9-4198-8577-595d2d5e75cf") ) (segment (start 108.294364 85.1) (end 106.694362 83.5) (width 0.2) (layer "F.Cu") (net 75) (uuid "eee96764-e1a0-4301-970d-178f9dc74d00") ) (segment (start 106.65192 102.65192) (end 106.05 102.05) (width 0.2) (layer "F.Cu") (net 75) (uuid "fc895eba-1b2a-444f-b8d5-ba5575d6bfa4") ) (segment (start 106.05 102.05) (end 106.05 99.318629) (width 0.2) (layer "F.Cu") (net 75) (uuid "fd81a531-3675-44cc-90ab-925839240b5f") ) (segment (start 110.768626 85.1) (end 108.294364 85.1) (width 0.2) (layer "F.Cu") (net 75) (uuid "fdf5a66e-f012-4353-8091-68c2df9b5711") ) (segment (start 146.3375 104.3) (end 146.25 104.3875) (width 0.2) (layer "F.Cu") (net 75) (uuid "ff150711-baeb-4e98-972e-f7a6421e0cdd") ) (segment (start 146.3375 93.05) (end 146.25 93.1375) (width 0.2) (layer "F.Cu") (net 76) (uuid "1315e4df-cc18-49c1-b3c3-08db4b74ba71") ) (segment (start 114 97) (end 113.6 96.6) (width 0.2) (layer "F.Cu") (net 76) (uuid "13adfdc1-61cb-4d4c-81e8-a68fd2d56d70") ) (segment (start 149 93.05) (end 146.3375 93.05) (width 0.2) (layer "F.Cu") (net 76) (uuid "2d6c49e7-1f73-4f71-be4f-ae5950b2edf8") ) (segment (start 101.6 84.7) (end 101.4 84.5) (width 0.2) (layer "F.Cu") (net 76) (uuid "5d3c870d-5169-4179-aa38-39448e483f4a") ) (segment (start 141.1 97) (end 114 97) (width 0.2) (layer "F.Cu") (net 76) (uuid "7a061e68-ec93-4db7-b161-4fb8dde1ac95") ) (segment (start 113.6 87.365686) (end 110.934311 84.7) (width 0.2) (layer "F.Cu") (net 76) (uuid "7b43f5bc-955a-4180-b85c-4faaf03afdae") ) (segment (start 144.5 93.0875) (end 144.5 93.6) (width 0.2) (layer "F.Cu") (net 76) (uuid "801710e0-4dd4-4904-acdf-ae136024d1a1") ) (segment (start 110.934311 84.7) (end 108.46005 84.7) (width 0.2) (layer "F.Cu") (net 76) (uuid "999edfbb-ce9f-4dd8-befa-a896118fb4e1") ) (segment (start 101.4 80.9) (end 100.425 79.925) (width 0.2) (layer "F.Cu") (net 76) (uuid "9f8dc80a-9c09-4233-8b5a-fdeaaf1ce168") ) (segment (start 103.315686 84.7) (end 101.6 84.7) (width 0.2) (layer "F.Cu") (net 76) (uuid "a0433e6f-2cdd-4230-a754-d8568b3b1e5f") ) (segment (start 144.55 93.1375) (end 144.5 93.0875) (width 0.2) (layer "F.Cu") (net 76) (uuid "ae6eb75d-e71c-47b0-ac67-add5cc64d632") ) (segment (start 104.915686 83.1) (end 103.315686 84.7) (width 0.2) (layer "F.Cu") (net 76) (uuid "b97003cb-da0b-4233-941c-5c8299f76ac9") ) (segment (start 106.860047 83.1) (end 104.915686 83.1) (width 0.2) (layer "F.Cu") (net 76) (uuid "bb38a482-b97c-40b9-9134-6c20d2cb397c") ) (segment (start 100.425 79.925) (end 98.775 79.925) (width 0.2) (layer "F.Cu") (net 76) (uuid "d318e280-5aee-4a21-b4c7-e75e84ac6e58") ) (segment (start 144.5 93.6) (end 141.1 97) (width 0.2) (layer "F.Cu") (net 76) (uuid "d5e5cdc8-3dfd-4548-97df-14eec314901a") ) (segment (start 101.4 84.5) (end 101.4 80.9) (width 0.2) (layer "F.Cu") (net 76) (uuid "dcca134c-818d-4c08-935e-d16a850a3b5d") ) (segment (start 146.25 93.1375) (end 144.55 93.1375) (width 0.2) (layer "F.Cu") (net 76) (uuid "e7357767-35ce-4969-98f2-b778632a277f") ) (segment (start 108.46005 84.7) (end 106.860047 83.1) (width 0.2) (layer "F.Cu") (net 76) (uuid "eb07affd-d717-46a0-9e6d-47765203cd1d") ) (segment (start 113.6 96.6) (end 113.6 87.365686) (width 0.2) (layer "F.Cu") (net 76) (uuid "f8f6ba2a-bca1-4f72-8d78-1f9b7afe4e66") ) (segment (start 149 81.8) (end 146.3375 81.8) (width 0.2) (layer "F.Cu") (net 77) (uuid "086270cd-64e3-49f1-8450-62ebeb878d18") ) (segment (start 137.420948 85.19904) (end 130.70096 85.19904) (width 0.2) (layer "F.Cu") (net 77) (uuid "0d3c5a9e-9ba4-4421-b6f5-e03ec67e5971") ) (segment (start 130.70096 85.19904) (end 129.50096 86.39904) (width 0.2) (layer "F.Cu") (net 77) (uuid "299e9dae-8fc0-4e87-a0ff-8f9535600eb5") ) (segment (start 140.782488 81.8375) (end 137.420948 85.19904) (width 0.2) (layer "F.Cu") (net 77) (uuid "2d0a79bc-ff64-4480-8b23-776b4df3b115") ) (segment (start 93.85 79.9) (end 93.825 79.925) (width 0.2) (layer "F.Cu") (net 77) (uuid "2d856232-6577-44f8-9be1-dadc336e223b") ) (segment (start 146.25 81.8875) (end 144.55 81.8875) (width 0.2) (layer "F.Cu") (net 77) (uuid "2e320154-faca-4395-84ce-35a4dfa3c28d") ) (segment (start 126.668068 86.39808) (end 115.49808 86.39808) (width 0.2) (layer "F.Cu") (net 77) (uuid "3d0784ab-1a1d-438c-804b-3b7c5eebd445") ) (segment (start 144.5 81.8375) (end 140.782488 81.8375) (width 0.2) (layer "F.Cu") (net 77) (uuid "4d73939f-567a-4a31-ba51-2fb9cce172b4") ) (segment (start 146.3375 81.8) (end 146.25 81.8875) (width 0.2) (layer "F.Cu") (net 77) (uuid "62f926a8-768c-4695-a771-b17b68bb1269") ) (segment (start 115.49808 86.39808) (end 110.60097 81.50097) (width 0.2) (layer "F.Cu") (net 77) (uuid "665dea53-868e-477c-90e1-451c409c6a0e") ) (segment (start 129.50096 86.39904) (end 126.669028 86.39904) (width 0.2) (layer "F.Cu") (net 77) (uuid "666c26e5-5ea0-4af9-8309-08f6682b10c3") ) (segment (start 110.60097 81.50097) (end 102.2 81.50097) (width 0.2) (layer "F.Cu") (net 77) (uuid "68372212-760c-4aed-a6b1-2d533c0c5c4c") ) (segment (start 144.55 81.8875) (end 144.5 81.8375) (width 0.2) (layer "F.Cu") (net 77) (uuid "bdb3622c-378d-4c16-89f7-21e3b2f21680") ) (segment (start 126.669028 86.39904) (end 126.668068 86.39808) (width 0.2) (layer "F.Cu") (net 77) (uuid "c9bc58b0-0806-4c8e-987d-a53c144d0d9e") ) (segment (start 95.8 79.9) (end 93.85 79.9) (width 0.2) (layer "F.Cu") (net 77) (uuid "e718ffda-c4d3-468a-b010-a26a540162e2") ) (via (at 102.2 81.50097) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 77) (uuid "3fe2015b-b3df-433b-9e1b-848860b46bcb") ) (via (at 95.8 79.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 77) (uuid "8145076d-9317-4b20-90aa-68f823e2b8ec") ) (segment (start 101.20097 81.50097) (end 100.2 80.5) (width 0.2) (layer "B.Cu") (net 77) (uuid "08a59b83-1574-408f-93d4-4ccc75f594f5") ) (segment (start 100.2 80.5) (end 96.4 80.5) (width 0.2) (layer "B.Cu") (net 77) (uuid "2215e195-7195-4091-8064-c2f7addfb424") ) (segment (start 96.4 80.5) (end 95.8 79.9) (width 0.2) (layer "B.Cu") (net 77) (uuid "3a3c66ce-b90e-4f92-8a9b-1d039d66273f") ) (segment (start 102.2 81.50097) (end 101.20097 81.50097) (width 0.2) (layer "B.Cu") (net 77) (uuid "5673af79-c007-4f61-96ba-ba19b9c28517") ) (segment (start 137.255462 84.79952) (end 130.50048 84.79952) (width 0.2) (layer "F.Cu") (net 78) (uuid "2946ac81-5c5f-41d1-9b96-9e0bbdd415ae") ) (segment (start 103.00097 81.10097) (end 102.5 80.6) (width 0.2) (layer "F.Cu") (net 78) (uuid "301b61ee-2584-4065-8707-9902dc248fb2") ) (segment (start 138.40097 78.044765) (end 138.400969 83.654013) (width 0.2) (layer "F.Cu") (net 78) (uuid "35f2553e-3a2f-447e-977e-becbb337697a") ) (segment (start 102.5 80.6) (end 101.8 80.6) (width 0.2) (layer "F.Cu") (net 78) (uuid "36f9fd1b-1c19-4507-be85-033f51f7b288") ) (segment (start 149.95 71.25) (end 149.95 73.4) (width 0.2) (layer "F.Cu") (net 78) (uuid "3c5b9cec-742a-4e2a-a257-6bd79fa350ea") ) (segment (start 149.85 73.5) (end 142.945735 73.5) (width 0.2) (layer "F.Cu") (net 78) (uuid "42d6a879-5415-4c7c-8866-b5d31e6cbdc6") ) (segment (start 149.95 73.4) (end 149.85 73.5) (width 0.2) (layer "F.Cu") (net 78) (uuid "4f15c86a-3598-4603-8f73-6c94f5d006e0") ) (segment (start 149 70.85) (end 149.55 70.85) (width 0.2) (layer "F.Cu") (net 78) (uuid "500beed7-014d-4e92-b712-9b065f9eb6eb") ) (segment (start 126.833554 85.99856) (end 115.69856 85.99856) (width 0.2) (layer "F.Cu") (net 78) (uuid "501c0c10-acb0-426d-85b9-b0c4acd43fec") ) (segment (start 96.055 78.655) (end 93.825 78.655) (width 0.2) (layer "F.Cu") (net 78) (uuid "57a3b68c-c369-4926-8149-801c229ca813") ) (segment (start 110.80097 81.10097) (end 103.00097 81.10097) (width 0.2) (layer "F.Cu") (net 78) (uuid "5cc5da48-d8b0-45c6-9592-7a71a5a946ea") ) (segment (start 149.6 68.5) (end 149 69.1) (width 0.2) (layer "F.Cu") (net 78) (uuid "69e68aa0-9015-420d-a18e-d71394138327") ) (segment (start 129.30048 85.99952) (end 126.834514 85.99952) (width 0.2) (layer "F.Cu") (net 78) (uuid "8240edf5-4e79-4d37-ace1-56125df63b7a") ) (segment (start 130.50048 84.79952) (end 129.30048 85.99952) (width 0.2) (layer "F.Cu") (net 78) (uuid "85d57286-6277-4ba8-b6f6-1a6132abc8db") ) (segment (start 152.5875 68.5) (end 152.5875 66.8) (width 0.2) (layer "F.Cu") (net 78) (uuid "8acab1dd-0b31-4fbe-99d7-f56f3a377237") ) (segment (start 100.5 79.3) (end 96.7 79.3) (width 0.2) (layer "F.Cu") (net 78) (uuid "9ee1a30e-fba0-40d7-88c8-942f07b38a83") ) (segment (start 152.5875 66.8) (end 152.6375 66.75) (width 0.2) (layer "F.Cu") (net 78) (uuid "acd723ac-f625-4cf4-8ed1-da5e57f8baa6") ) (segment (start 101.8 80.6) (end 100.5 79.3) (width 0.2) (layer "F.Cu") (net 78) (uuid "c7bc1ab2-0c58-41ee-b38d-d3032e6924bd") ) (segment (start 149.55 70.85) (end 149.95 71.25) (width 0.2) (layer "F.Cu") (net 78) (uuid "c8b981b9-efb7-45b8-a58b-9201982a40f1") ) (segment (start 138.400969 83.654013) (end 137.255462 84.79952) (width 0.2) (layer "F.Cu") (net 78) (uuid "c938650e-8d6e-4a12-9744-d2e58760a56d") ) (segment (start 126.834514 85.99952) (end 126.833554 85.99856) (width 0.2) (layer "F.Cu") (net 78) (uuid "e001f3c6-1e38-4aac-ab2c-820065b26b9b") ) (segment (start 142.945735 73.5) (end 138.40097 78.044765) (width 0.2) (layer "F.Cu") (net 78) (uuid "e1f705c3-ff54-446c-871e-e079f320334d") ) (segment (start 152.5875 68.5) (end 149.6 68.5) (width 0.2) (layer "F.Cu") (net 78) (uuid "f08e2c07-2ba9-4e76-a7a5-178128a75424") ) (segment (start 96.7 79.3) (end 96.055 78.655) (width 0.2) (layer "F.Cu") (net 78) (uuid "f5304f19-568e-48db-bd15-ebe03471b96f") ) (segment (start 115.69856 85.99856) (end 110.80097 81.10097) (width 0.2) (layer "F.Cu") (net 78) (uuid "fb85b35e-39f0-4834-859c-064dffbdd5ae") ) (segment (start 149 69.1) (end 149 70.85) (width 0.2) (layer "F.Cu") (net 78) (uuid "fc9f0621-9613-49a8-89c2-1650fc9c9876") ) (segment (start 127.235 121.535) (end 127.235 121.1) (width 1) (layer "F.Cu") (net 79) (uuid "20b248e2-5508-4561-ab42-31422e934fe7") ) (segment (start 130.55 122.8) (end 128.5 122.8) (width 1) (layer "F.Cu") (net 79) (uuid "2403de93-0de5-40e7-995b-fdc53bf74237") ) (segment (start 125.94 128.185) (end 127.725 126.4) (width 1) (layer "F.Cu") (net 79) (uuid "25396450-abad-41b9-b5f1-e9bb79620df4") ) (segment (start 124.9 122.4) (end 125.935 122.4) (width 0.2) (layer "F.Cu") (net 79) (uuid "45e3c496-9975-431f-9877-ad2ef402c9ed") ) (segment (start 126.05 116.1875) (end 126.05 119.915) (width 0.2) (layer "F.Cu") (net 79) (uuid "4f6d82ba-6f8c-40ea-b7fa-199cee0ae196") ) (segment (start 132.3 124.55) (end 130.55 122.8) (width 1) (layer "F.Cu") (net 79) (uuid "58593d69-a9fe-4663-bf63-dd9421b3a8b5") ) (segment (start 124.5 123.8375) (end 124.5 122.8) (width 0.2) (layer "F.Cu") (net 79) (uuid "6b34eb4e-4c4c-45a5-a3d4-ebc9bbd99901") ) (segment (start 125.94 129.9) (end 125.94 128.185) (width 1) (layer "F.Cu") (net 79) (uuid "6ddc7a76-b07f-4d74-aebc-9d32e4e6b316") ) (segment (start 130.4 126.4) (end 132.05 124.75) (width 1) (layer "F.Cu") (net 79) (uuid "72daa682-6ba4-4d34-93d5-c6866be8cd75") ) (segment (start 126.2875 115.95) (end 126.05 116.1875) (width 0.2) (layer "F.Cu") (net 79) (uuid "8c48b2c4-247d-4bc7-a6d3-bcdd8136d3b9") ) (segment (start 124.5 122.8) (end 124.9 122.4) (width 0.2) (layer "F.Cu") (net 79) (uuid "93b198d4-b508-48b1-ac2a-ed2aff9430c5") ) (segment (start 127.725 126.4) (end 130.4 126.4) (width 1) (layer "F.Cu") (net 79) (uuid "a7498467-70ce-41e6-89d0-117359c4b3c9") ) (segment (start 125.935 122.4) (end 127.235 121.1) (width 0.2) (layer "F.Cu") (net 79) (uuid "ae9c5b9c-076c-4712-92b2-eb78d1a840e3") ) (segment (start 126.05 119.915) (end 127.235 121.1) (width 0.2) (layer "F.Cu") (net 79) (uuid "af6d6af2-615e-4c1f-952e-44e76f0d5e81") ) (segment (start 128.5 122.8) (end 127.235 121.535) (width 1) (layer "F.Cu") (net 79) (uuid "ca08ac49-6ab3-4630-97bd-9c420146f6a5") ) (segment (start 132.05 124.75) (end 132.3 124.75) (width 1) (layer "F.Cu") (net 79) (uuid "ee0be5c9-b7ec-4247-8049-ccc6954d2a39") ) (segment (start 132.3 124.8) (end 132.3 124.55) (width 1) (layer "F.Cu") (net 79) (uuid "f406ac9d-731e-4636-9985-7309d7a27ecd") ) (segment (start 131.02 129.9) (end 131 129.9) (width 0.2) (layer "F.Cu") (net 80) (uuid "1bd64a24-78b7-41a1-8f9e-1908c87f120f") ) (segment (start 123.790685 114.05) (end 125.3125 112.528185) (width 0.2) (layer "F.Cu") (net 80) (uuid "25f5c2f9-0d95-406d-b079-288dc3206393") ) (segment (start 123.4 119.825) (end 125.45 117.775) (width 0.2) (layer "F.Cu") (net 80) (uuid "2768c989-83c8-4d02-b81c-2240ff5f24c7") ) (segment (start 125.3125 112.528185) (end 125.3125 112.375) (width 0.2) (layer "F.Cu") (net 80) (uuid "4246ca23-878f-4f2d-aff3-770bfb318f6a") ) (segment (start 125.45 114.875) (end 124.625 114.05) (width 0.2) (layer "F.Cu") (net 80) (uuid "737e2541-3593-4bf8-aa5e-34ea95f85f0a") ) (segment (start 122 131) (end 122 127.3) (width 0.2) (layer "F.Cu") (net 80) (uuid "a66c4765-9fa0-4c2d-8156-27a2bb9a3a26") ) (segment (start 129.5 131.4) (end 122.4 131.4) (width 0.2) (layer "F.Cu") (net 80) (uuid "c0024ff8-d2ba-456a-9f5d-b49ae56c21c2") ) (segment (start 122 127.3) (end 123.4 125.9) (width 0.2) (layer "F.Cu") (net 80) (uuid "c010ae37-dcc2-4bc3-84c1-6e8a790e5850") ) (segment (start 123.4 125.9) (end 123.4 119.825) (width 0.2) (layer "F.Cu") (net 80) (uuid "c363476d-4ca2-40b2-a31e-57e4c33df3bf") ) (segment (start 123.45 114.05) (end 123.790685 114.05) (width 0.2) (layer "F.Cu") (net 80) (uuid "e06ba9af-8f2d-415d-b3c2-365f6163bb63") ) (segment (start 124.625 114.05) (end 123.45 114.05) (width 0.2) (layer "F.Cu") (net 80) (uuid "ec82e8bc-7d19-4466-b968-fcf7143e1903") ) (segment (start 122.4 131.4) (end 122 131) (width 0.2) (layer "F.Cu") (net 80) (uuid "ed473278-f2a2-4c2c-b14d-aa749056d91f") ) (segment (start 131 129.9) (end 129.5 131.4) (width 0.2) (layer "F.Cu") (net 80) (uuid "f1a98e05-b50b-4bdf-9daf-8e4460e8b12f") ) (segment (start 125.45 117.775) (end 125.45 114.875) (width 0.2) (layer "F.Cu") (net 80) (uuid "fe01db4b-6ca4-48f0-8541-71c4f57d0097") ) (segment (start 61.55 80.0125) (end 61.55 81.4625) (width 0.2) (layer "F.Cu") (net 81) (uuid "01701945-77ab-41fb-bdac-953c6adb1c16") ) (segment (start 51.4 86.2375) (end 51.4 92.64) (width 0.25) (layer "F.Cu") (net 81) (uuid "1c343aa0-dcea-4c10-85a0-e94c59155846") ) (segment (start 65 85.234314) (end 65.565686 85.8) (width 0.2) (layer "F.Cu") (net 81) (uuid "212e1bda-fa5a-401d-93b3-63ae5a624faf") ) (segment (start 55.6125 83.6) (end 59.4125 83.6) (width 0.25) (layer "F.Cu") (net 81) (uuid "217c8466-68e5-4eab-a551-139710dcdb13") ) (segment (start 52.5125 85.125) (end 51.4 86.2375) (width 0.25) (layer "F.Cu") (net 81) (uuid "275c9e95-e89b-4425-9fd4-8df3395b1837") ) (segment (start 90.4 78.599999) (end 90.4 76.97157) (width 0.2) (layer "F.Cu") (net 81) (uuid "2b46ece2-d857-45cb-b172-d32e5e8f9788") ) (segment (start 52.5125 85.125) (end 54.0875 85.125) (width 0.25) (layer "F.Cu") (net 81) (uuid "43214fc5-21e6-4a08-ae44-e78a72ca1545") ) (segment (start 63.144641 78.9) (end 63.9 78.9) (width 0.2) (layer "F.Cu") (net 81) (uuid "45001602-34df-4575-967e-af0040a77e6a") ) (segment (start 59.4125 83.6) (end 60.4375 82.575) (width 0.25) (layer "F.Cu") (net 81) (uuid "528481c1-ea96-478e-a0cc-a9f1b6dd3c2f") ) (segment (start 54.0875 85.125) (end 54.1375 85.075) (width 0.25) (layer "F.Cu") (net 81) (uuid "538b5126-3a97-4caa-b771-3f184e090729") ) (segment (start 82.850002 85.8) (end 83.150002 85.5) (width 0.2) (layer "F.Cu") (net 81) (uuid "66d30a62-3d2b-4953-bf7a-01aeca7dd7c6") ) (segment (start 63.9 78.9) (end 65 80) (width 0.2) (layer "F.Cu") (net 81) (uuid "68355740-332c-4c10-a43a-e08d331a00c5") ) (segment (start 61.55 80.0125) (end 62.032141 80.0125) (width 0.2) (layer "F.Cu") (net 81) (uuid "7c9b3ba5-80c8-4e51-811a-6a0be5876925") ) (segment (start 61.55 81.4625) (end 60.4375 82.575) (width 0.2) (layer "F.Cu") (net 81) (uuid "7cab260b-16fc-49fb-b517-6bbc97baba8e") ) (segment (start 62.032141 80.0125) (end 63.144641 78.9) (width 0.2) (layer "F.Cu") (net 81) (uuid "8ae150f6-c942-4e89-aba2-dec73827e8e5") ) (segment (start 91.6 67.05) (end 91.34 67.05) (width 0.2) (layer "F.Cu") (net 81) (uuid "bb5ccc2a-4057-4981-9844-93f7c5632792") ) (segment (start 65 80) (end 65 85.234314) (width 0.2) (layer "F.Cu") (net 81) (uuid "c1f0e839-f4fb-4b43-bf3c-9c892d20fe33") ) (segment (start 92.65 68.1) (end 91.6 67.05) (width 0.2) (layer "F.Cu") (net 81) (uuid "ce578b23-c978-4cc2-bb00-e79c621dba3b") ) (segment (start 90.4 76.97157) (end 92.65 74.72157) (width 0.2) (layer "F.Cu") (net 81) (uuid "dbfc1610-69f0-4c8f-b22f-46a3e8d40cae") ) (segment (start 83.150002 85.5) (end 83.499999 85.5) (width 0.2) (layer "F.Cu") (net 81) (uuid "e8af750d-d0b5-463f-b6b4-71b64c5d4085") ) (segment (start 51.4 92.64) (end 52.07 93.31) (width 0.25) (layer "F.Cu") (net 81) (uuid "e9878048-1ea6-458a-b345-fab6b7cef203") ) (segment (start 65.565686 85.8) (end 82.850002 85.8) (width 0.2) (layer "F.Cu") (net 81) (uuid "ee717cdd-a4ca-4f7d-8013-047965efedfe") ) (segment (start 54.1375 85.075) (end 55.6125 83.6) (width 0.25) (layer "F.Cu") (net 81) (uuid "f6727fed-4e23-4a79-a6d5-d7dd89f7eaba") ) (segment (start 92.65 74.72157) (end 92.65 68.1) (width 0.2) (layer "F.Cu") (net 81) (uuid "f8184366-82a4-4033-b681-46f09e4f9c7f") ) (segment (start 83.499999 85.5) (end 90.4 78.599999) (width 0.2) (layer "F.Cu") (net 81) (uuid "f9fb4428-c80d-46be-98fc-93235001ffb0") ) (segment (start 91.34 67.51) (end 90.15 68.7) (width 0.25) (layer "B.Cu") (net 81) (uuid "b5756118-191f-47f6-84ea-409ca3c37bc4") ) (segment (start 90.15 68.7) (end 83.95 68.7) (width 0.25) (layer "B.Cu") (net 81) (uuid "bddde37c-5b99-4d88-9107-a789de3ae6cf") ) (segment (start 82.4775 67.2275) (end 82.4775 67.05) (width 0.25) (layer "B.Cu") (net 81) (uuid "bf05be59-07fe-4cad-a228-270bd1a042c8") ) (segment (start 91.34 67.05) (end 91.34 67.51) (width 0.25) (layer "B.Cu") (net 81) (uuid "c34fa251-469b-4796-86c1-c34f3473deef") ) (segment (start 83.95 68.7) (end 82.4775 67.2275) (width 0.25) (layer "B.Cu") (net 81) (uuid "eb3adff5-4372-43dd-903e-bebd713f815e") ) (segment (start 136.7 66.95) (end 136.75 66.95) (width 0.25) (layer "F.Cu") (net 82) (uuid "3cbee662-53e5-4842-8d6c-4102c9524618") ) (segment (start 134.85 68.8) (end 136.7 66.95) (width 0.25) (layer "F.Cu") (net 82) (uuid "d1a4ee7d-b26c-47d8-acb2-2c43de56b3e9") ) (segment (start 138.485 121.1) (end 137.185 122.4) (width 0.2) (layer "F.Cu") (net 83) (uuid "07fd9cf4-fc3c-4e89-985b-f786af1bfc38") ) (segment (start 136 122.8) (end 136 123.8375) (width 0.2) (layer "F.Cu") (net 83) (uuid "131c5bd4-6a0f-4f0b-b14f-6a4cf3e66e3b") ) (segment (start 141.700489 126.399511) (end 143.3 124.8) (width 1) (layer "F.Cu") (net 83) (uuid "25c9effa-98b1-4108-8f21-649265c9d868") ) (segment (start 137.185 122.4) (end 136.4 122.4) (width 0.2) (layer "F.Cu") (net 83) (uuid "26a1c88c-c5dc-46de-b3d2-28fc434c3c9b") ) (segment (start 138.0125 127.7125) (end 139.325489 126.399511) (width 1) (layer "F.Cu") (net 83) (uuid "3c7652b9-1bd1-41cc-9e51-96de3f7e1028") ) (segment (start 138.485 122.185) (end 138.485 121.1) (width 1) (layer "F.Cu") (net 83) (uuid "5642d04e-a7e0-40fa-8956-ee3ef203521b") ) (segment (start 137.54 128.185) (end 138.0125 127.7125) (width 1) (layer "F.Cu") (net 83) (uuid "682f1abd-1645-400b-9089-ca0447ce0c14") ) (segment (start 139.325489 126.399511) (end 141.700489 126.399511) (width 1) (layer "F.Cu") (net 83) (uuid "6f3390bb-51ab-4fa3-a630-65fbe7c02248") ) (segment (start 136.4 122.4) (end 136 122.8) (width 0.2) (layer "F.Cu") (net 83) (uuid "74020437-131c-4a05-854d-5c067ab77314") ) (segment (start 137.54 129.9) (end 137.54 128.185) (width 1) (layer "F.Cu") (net 83) (uuid "77a308a0-a3f1-4182-92e8-245520a88471") ) (segment (start 142 123) (end 139.3 123) (width 1) (layer "F.Cu") (net 83) (uuid "7f62310c-7cdd-43c7-8651-31864329d15f") ) (segment (start 143.8 124.8) (end 142 123) (width 1) (layer "F.Cu") (net 83) (uuid "92938391-12e4-4c1b-8f96-b08375688a3a") ) (segment (start 139.3 123) (end 138.485 122.185) (width 1) (layer "F.Cu") (net 83) (uuid "b82df2e3-503d-4f7d-bac3-bcc7066ea854") ) (segment (start 137.8875 115.975) (end 137.4 116.4625) (width 0.2) (layer "F.Cu") (net 83) (uuid "b86c4dbf-e350-497c-9725-556d15969573") ) (segment (start 137.4 120.015) (end 138.485 121.1) (width 0.2) (layer "F.Cu") (net 83) (uuid "d0ea2e88-bdff-4a76-9af2-32b032e05f0d") ) (segment (start 143.3 124.8) (end 143.8 124.8) (width 1) (layer "F.Cu") (net 83) (uuid "dedff4f6-569d-4a1b-84e5-e2489cfc48aa") ) (segment (start 137.4 116.4625) (end 137.4 120.015) (width 0.2) (layer "F.Cu") (net 83) (uuid "f8cba422-7141-45ce-8537-cc489d90929a") ) (segment (start 134 131.4) (end 141.12 131.4) (width 0.2) (layer "F.Cu") (net 84) (uuid "168a9284-5857-463b-ae58-fe74091d0023") ) (segment (start 136.85048 115.35048) (end 136.85048 118.14952) (width 0.2) (layer "F.Cu") (net 84) (uuid "5a5b62bb-bb10-4181-90fd-3691286ccf64") ) (segment (start 134.79952 126.50048) (end 133.6 127.7) (width 0.2) (layer "F.Cu") (net 84) (uuid "610245e1-5fc0-4adc-8919-01dc4eee59c9") ) (segment (start 134.95 113.607408) (end 136.307408 112.25) (width 0.2) (layer "F.Cu") (net 84) (uuid "6b8266cc-e07d-4a90-b995-34f93fe4de22") ) (segment (start 135.5 114) (end 136.85048 115.35048) (width 0.2) (layer "F.Cu") (net 84) (uuid "7eced1a2-3453-45eb-be63-fc7bc39f8690") ) (segment (start 141.12 131.4) (end 142.62 129.9) (width 0.2) (layer "F.Cu") (net 84) (uuid "8b7a5323-b4f5-4b76-bb0b-85bac593ef3e") ) (segment (start 134.8 123.2) (end 134.79952 123.20048) (width 0.2) (layer "F.Cu") (net 84) (uuid "8c6b8686-2379-429c-893a-e0a16187290d") ) (segment (start 134.6 120.4) (end 134.6 121.9) (width 0.2) (layer "F.Cu") (net 84) (uuid "967ab0a0-5875-45ca-9891-12189f7a4f7d") ) (segment (start 134.79952 123.20048) (end 134.79952 126.50048) (width 0.2) (layer "F.Cu") (net 84) (uuid "a4213430-6686-4361-959b-87ee6c336cb5") ) (segment (start 136.307408 112.25) (end 136.3125 112.25) (width 0.2) (layer "F.Cu") (net 84) (uuid "ace4fc03-b991-46bd-b305-4c9be7fd9725") ) (segment (start 136.85048 118.14952) (end 134.6 120.4) (width 0.2) (layer "F.Cu") (net 84) (uuid "b97a01b8-1e13-478c-bd66-8dfcfb83b43b") ) (segment (start 133.6 131) (end 134 131.4) (width 0.2) (layer "F.Cu") (net 84) (uuid "c0f1117b-1066-4db4-9928-6dfe55e3702a") ) (segment (start 134.8 122.1) (end 134.8 123.2) (width 0.2) (layer "F.Cu") (net 84) (uuid "d1405f71-0ba5-47e3-9f5f-30c057f2ae93") ) (segment (start 133.6 127.7) (end 133.6 131) (width 0.2) (layer "F.Cu") (net 84) (uuid "d1b954b8-c10b-4c03-aebe-e5fb57a483f4") ) (segment (start 134.6 121.9) (end 134.8 122.1) (width 0.2) (layer "F.Cu") (net 84) (uuid "e623d84e-aa59-4953-b0a9-e78f26a47390") ) (segment (start 134.95 114) (end 134.95 113.607408) (width 0.2) (layer "F.Cu") (net 84) (uuid "fa947d45-120a-4828-b697-a5e26da74758") ) (segment (start 134.95 114) (end 135.5 114) (width 0.2) (layer "F.Cu") (net 84) (uuid "fb16fd14-47af-4815-a52e-6f344ecdd4f8") ) (segment (start 161.4375 113.8) (end 160.7 113.0625) (width 0.2) (layer "F.Cu") (net 85) (uuid "04b2cb6c-9ea2-45ae-b005-fa53d9addd80") ) (segment (start 156.46 108.2) (end 157.3 109.04) (width 0.2) (layer "F.Cu") (net 85) (uuid "16da93d7-9509-45c1-ad97-6b539029a869") ) (segment (start 162.3 106.75) (end 165.81 110.26) (width 1) (layer "F.Cu") (net 85) (uuid "1ba322e1-13c2-49cd-8cbe-522dd8795bee") ) (segment (start 159.9 106.7) (end 160.7 105.9) (width 1) (layer "F.Cu") (net 85) (uuid "340c3450-f197-4dea-aebc-b74d70013217") ) (segment (start 159.9 108.6) (end 159.9 106.7) (width 1) (layer "F.Cu") (net 85) (uuid "3dbf2a88-d815-488c-aab2-ec1b6ac67fa0") ) (segment (start 160.7 113.0625) (end 160.7 109.4) (width 0.2) (layer "F.Cu") (net 85) (uuid "63cb614e-2b05-4e6c-b9f1-d755162cdff8") ) (segment (start 151.7125 108.2) (end 156.46 108.2) (width 0.2) (layer "F.Cu") (net 85) (uuid "712e521e-0752-493f-98d0-be392bdc6147") ) (segment (start 166.24 110.26) (end 167.4 110.26) (width 0.2) (layer "F.Cu") (net 85) (uuid "84729ade-2225-48d9-a1dc-cce16bd5f12b") ) (segment (start 159.46 109.04) (end 159.9 108.6) (width 1) (layer "F.Cu") (net 85) (uuid "956a509a-1251-461a-bc8d-8494f9680ed1") ) (segment (start 160.7 109.4) (end 159.9 108.6) (width 0.2) (layer "F.Cu") (net 85) (uuid "99d639ca-afb5-4b17-a7a9-70a5e1eca90e") ) (segment (start 150.9125 109) (end 151.7125 108.2) (width 0.2) (layer "F.Cu") (net 85) (uuid "9d538cf8-498d-4139-9a9d-679f03f91de6") ) (segment (start 165.81 110.26) (end 167.4 110.26) (width 1) (layer "F.Cu") (net 85) (uuid "a6550ebe-2bc0-4e8f-964a-5a95e38d63f4") ) (segment (start 157.3 109.04) (end 159.46 109.04) (width 1) (layer "F.Cu") (net 85) (uuid "bb07e307-1e13-4ec2-890b-c9bd3dcba965") ) (segment (start 162.3 105.9) (end 162.3 106.75) (width 1) (layer "F.Cu") (net 85) (uuid "c2266eb6-d0f9-4b51-81a3-9084f4062de3") ) (segment (start 160.7 105.9) (end 162.3 105.9) (width 1) (layer "F.Cu") (net 85) (uuid "f45f9242-aeb5-46a4-a442-2de3fbe07a7a") ) (segment (start 150.9125 112.3875) (end 150.9125 111) (width 0.2) (layer "F.Cu") (net 86) (uuid "02029ddb-f621-440b-9ca5-0df614e80840") ) (segment (start 152.85 114.325) (end 150.9125 112.3875) (width 0.2) (layer "F.Cu") (net 86) (uuid "235369dc-48b2-4212-a5b0-fa8b8e7f1b7d") ) (segment (start 152.85 114.325) (end 154.5 112.675) (width 0.2) (layer "F.Cu") (net 86) (uuid "4f5fb2b3-bb51-4d23-8865-9dc9f16b0b68") ) (segment (start 163.3 103.4) (end 165.4 105.5) (width 0.2) (layer "F.Cu") (net 86) (uuid "65a60832-442a-471a-98c8-045cabb7e3c0") ) (segment (start 167.08 105.5) (end 167.4 105.18) (width 0.2) (layer "F.Cu") (net 86) (uuid "72705740-d706-4275-b039-02b0a1968810") ) (segment (start 154.5 103) (end 154.5 104.1) (width 0.2) (layer "F.Cu") (net 86) (uuid "731597a4-cad6-45aa-8297-3b06fcfca60d") ) (segment (start 154.5 112.675) (end 154.5 111) (width 0.2) (layer "F.Cu") (net 86) (uuid "791e3879-ef42-402b-84f2-1cc5284174dc") ) (segment (start 160.9 103.4) (end 163.3 103.4) (width 0.2) (layer "F.Cu") (net 86) (uuid "b1ee6cec-9a4c-4e5e-9347-4b1333778988") ) (segment (start 154.5 104.1) (end 155.4 105) (width 0.2) (layer "F.Cu") (net 86) (uuid "c7e6f142-ae58-433e-aff5-1d32fa500ddd") ) (segment (start 165.4 105.5) (end 167.08 105.5) (width 0.2) (layer "F.Cu") (net 86) (uuid "e913f55c-90d1-4d5f-82a3-986864f1a4ab") ) (segment (start 159.3 105) (end 160.9 103.4) (width 0.2) (layer "F.Cu") (net 86) (uuid "f2d9cc01-08bc-43c0-81a5-8ecd7d323b97") ) (segment (start 155.4 105) (end 159.3 105) (width 0.2) (layer "F.Cu") (net 86) (uuid "fa0694b9-9162-4508-ac1b-b20c270732ec") ) (via (at 154.5 103) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 86) (uuid "03c5b27d-9dc2-4535-a37b-45c64d7e7ba0") ) (via (at 154.5 111) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 86) (uuid "dacf3b6a-4d66-493c-9d14-93470d97ab08") ) (segment (start 154.5 111) (end 154.5 103) (width 0.2) (layer "B.Cu") (net 86) (uuid "dee14d79-89d1-4f8f-b6e0-50120bd670f1") ) (segment (start 162.3 94.6) (end 162.3 95.45) (width 1) (layer "F.Cu") (net 87) (uuid "0c355abd-2306-4174-ad11-354f63fd019f") ) (segment (start 160.6 97.7) (end 159.8 96.9) (width 0.2) (layer "F.Cu") (net 87) (uuid "1e54f709-02a3-45b5-bf4c-0ef867f668a6") ) (segment (start 159.8 96.9) (end 159.8 95.2) (width 1) (layer "F.Cu") (net 87) (uuid "343cd5a6-8a10-4ccc-b759-4db330ac295a") ) (segment (start 159.8 95.2) (end 160.4 94.6) (width 1) (layer "F.Cu") (net 87) (uuid "40123436-adad-4aef-a16e-749e2b653286") ) (segment (start 160.6 101.6625) (end 160.6 97.7) (width 0.2) (layer "F.Cu") (net 87) (uuid "42b6ad23-48e4-4669-8970-7f97b8f4c6e7") ) (segment (start 152.0125 96.65) (end 154.3 96.65) (width 0.2) (layer "F.Cu") (net 87) (uuid "538d96fc-152c-4625-aa94-1e241dc6b61a") ) (segment (start 165.81 98.96) (end 167.4 98.96) (width 1) (layer "F.Cu") (net 87) (uuid "6047292c-3721-4c3f-9f67-c23cfe978da8") ) (segment (start 160.4 94.6) (end 162.3 94.6) (width 1) (layer "F.Cu") (net 87) (uuid "68e9e6af-f912-4e7c-b2d8-1e06b81ba178") ) (segment (start 155.44 97.79) (end 157.3 97.79) (width 0.2) (layer "F.Cu") (net 87) (uuid "79b9a52c-bedf-4e56-bc9d-bc032c72b2f3") ) (segment (start 158.91 97.79) (end 159.8 96.9) (width 1) (layer "F.Cu") (net 87) (uuid "9105fef8-0678-43bc-8e50-f91f950b5d81") ) (segment (start 157.3 97.79) (end 158.91 97.79) (width 1) (layer "F.Cu") (net 87) (uuid "bfcacfb6-1d4a-4bac-a4fb-99fe189d0f97") ) (segment (start 154.3 96.65) (end 155.44 97.79) (width 0.2) (layer "F.Cu") (net 87) (uuid "e2e969b4-446c-4a3e-9c5c-85d81c1e4d21") ) (segment (start 150.9125 97.75) (end 152.0125 96.65) (width 0.2) (layer "F.Cu") (net 87) (uuid "ec046aff-61bd-4d7d-b196-75c91d370bc7") ) (segment (start 161.4375 102.5) (end 160.6 101.6625) (width 0.2) (layer "F.Cu") (net 87) (uuid "f0ec745f-7e09-4036-97d5-f00653b22219") ) (segment (start 162.3 95.45) (end 165.81 98.96) (width 1) (layer "F.Cu") (net 87) (uuid "f214fc47-a1e7-463b-b6c3-90541719c6fe") ) (segment (start 149.2 99.55) (end 147.4125 99.55) (width 0.2) (layer "F.Cu") (net 88) (uuid "137eb6dc-9235-4fd1-a9fd-7aa73e165753") ) (segment (start 163.400001 92.000001) (end 165.28 93.88) (width 0.2) (layer "F.Cu") (net 88) (uuid "1f8344dc-1d24-4a03-b7c4-425882cf82b7") ) (segment (start 165.28 93.88) (end 167.4 93.88) (width 0.2) (layer "F.Cu") (net 88) (uuid "2816bf24-ad2b-417b-9ea5-8f74d73cd49f") ) (segment (start 153.55 99.8) (end 152.5 98.75) (width 0.2) (layer "F.Cu") (net 88) (uuid "50576038-3323-422c-8da2-8337a15ad6c7") ) (segment (start 159.234994 93.5) (end 160.734993 92.000001) (width 0.2) (layer "F.Cu") (net 88) (uuid "71f81c90-a6b8-41b8-af4e-a6ebfa56af04") ) (segment (start 160.734993 92.000001) (end 163.400001 92.000001) (width 0.2) (layer "F.Cu") (net 88) (uuid "728ade20-6234-474c-adcb-aa78ba1c7dcf") ) (segment (start 147.4375 99.9) (end 147.3625 99.825) (width 0.2) (layer "F.Cu") (net 88) (uuid "78d644b6-7752-4c02-80b6-2b6845956b77") ) (segment (start 154.5 91.8) (end 154.5 92.9) (width 0.2) (layer "F.Cu") (net 88) (uuid "7aa3a53e-6162-480a-9c82-eb9ebb236649") ) (segment (start 147.4125 99.55) (end 147.3625 99.6) (width 0.2) (layer "F.Cu") (net 88) (uuid "845db018-f348-4493-9e33-a8a13541a50e") ) (segment (start 155.1 93.5) (end 159.234994 93.5) (width 0.2) (layer "F.Cu") (net 88) (uuid "95a1eed1-5134-423b-8240-7c15a72354ce") ) (segment (start 154.5 92.9) (end 155.1 93.5) (width 0.2) (layer "F.Cu") (net 88) (uuid "a5adad91-4ce8-4f80-ae68-98cbe6adf9db") ) (segment (start 154.5 99.8) (end 153.55 99.8) (width 0.2) (layer "F.Cu") (net 88) (uuid "b9cf39ae-1b90-4824-bf7e-893a5419b193") ) (segment (start 152.5 98.75) (end 150 98.75) (width 0.2) (layer "F.Cu") (net 88) (uuid "f5f6e0ca-3a91-40ab-a793-afe6551e5b6b") ) (segment (start 150 98.75) (end 149.2 99.55) (width 0.2) (layer "F.Cu") (net 88) (uuid "ff4f85e9-27d8-49f6-94e4-f134f8f7b3a5") ) (via (at 154.5 99.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 88) (uuid "049d217a-704a-412c-b21a-c25d482c4e09") ) (via (at 154.5 91.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 88) (uuid "627530eb-9df8-4cf6-8020-d1687b8615b4") ) (segment (start 154.5 99.8) (end 154.5 91.8) (width 0.2) (layer "B.Cu") (net 88) (uuid "68dccd40-abc1-457b-8f72-d1071ff643d3") ) (segment (start 161 83.3) (end 162.3 83.3) (width 1) (layer "F.Cu") (net 89) (uuid "1f30621c-d6e9-4484-a102-8cb7ae9b44b8") ) (segment (start 159.085 86.515) (end 159.9 85.7) (width 1) (layer "F.Cu") (net 89) (uuid "2d691ced-9251-4266-b5eb-94f5f9ff0bf9") ) (segment (start 165.942199 87.76) (end 167.4 87.76) (width 1) (layer "F.Cu") (net 89) (uuid "35f0015c-f5c5-44ed-8b8b-65d1e9b409f2") ) (segment (start 150.9125 86.5) (end 150.9275 86.515) (width 0.2) (layer "F.Cu") (net 89) (uuid "60a2f383-8653-4e8a-be62-bc3b8024bab1") ) (segment (start 162.3 83.3) (end 162.3 84.117801) (width 1) (layer "F.Cu") (net 89) (uuid "66e42c88-8c9f-4c63-94bd-9d3868fd0f02") ) (segment (start 160.7 86.5) (end 159.9 85.7) (width 0.2) (layer "F.Cu") (net 89) (uuid "69c89ef7-12e6-4ff7-a506-f28cb4359b1e") ) (segment (start 162.3 84.117801) (end 165.942199 87.76) (width 1) (layer "F.Cu") (net 89) (uuid "809cadcf-4f4a-41bc-8c83-328ce4b10f91") ) (segment (start 159.9 85.7) (end 159.9 84.4) (width 1) (layer "F.Cu") (net 89) (uuid "a41a22b6-6a92-4ae3-ba25-aabe6a3773b6") ) (segment (start 160.7 90.3625) (end 160.7 86.5) (width 0.2) (layer "F.Cu") (net 89) (uuid "a5b5bec6-a1cd-461e-a604-753636e8dfc5") ) (segment (start 150.9275 86.515) (end 157.3 86.515) (width 0.2) (layer "F.Cu") (net 89) (uuid "c3f2712d-f6ba-4278-b777-19e51cad641c") ) (segment (start 161.4375 91.1) (end 160.7 90.3625) (width 0.2) (layer "F.Cu") (net 89) (uuid "d1416df9-a2f8-4a08-a53e-857446233ded") ) (segment (start 159.9 84.4) (end 161 83.3) (width 1) (layer "F.Cu") (net 89) (uuid "f092763c-4d80-4da2-8984-e0e5a51c1d0c") ) (segment (start 157.3 86.515) (end 159.085 86.515) (width 1) (layer "F.Cu") (net 89) (uuid "f5a9aa21-6ccc-4e3e-89d0-121d5266727a") ) (segment (start 163.365487 80.700481) (end 165.345006 82.68) (width 0.2) (layer "F.Cu") (net 90) (uuid "05cdbadc-844d-45b0-a029-66bd8cce70b9") ) (segment (start 159.484514 82.35048) (end 161.134513 80.700481) (width 0.2) (layer "F.Cu") (net 90) (uuid "61e9e0b0-400d-4252-8838-4ceaeb2af32d") ) (segment (start 154.5 81.6) (end 154.5 82) (width 0.2) (layer "F.Cu") (net 90) (uuid "7ef3523f-726d-4b4c-be79-ac54ab08d7ec") ) (segment (start 151.725 87.75) (end 149.575 87.75) (width 0.2) (layer "F.Cu") (net 90) (uuid "814c6e4a-48f4-4ddf-b170-acabb54a3b75") ) (segment (start 147.2125 88.725) (end 146.9875 88.5) (width 0.2) (layer "F.Cu") (net 90) (uuid "829fdf78-80a7-440f-abd1-086f95d7e1e5") ) (segment (start 149.575 87.75) (end 148.8 88.525) (width 0.2) (layer "F.Cu") (net 90) (uuid "8491ccbb-aabc-4968-90a2-578f7fa3b4ac") ) (segment (start 152.475 88.5) (end 151.725 87.75) (width 0.2) (layer "F.Cu") (net 90) (uuid "999fc065-ab0d-4576-9e45-fac9a31f3f42") ) (segment (start 148.8 88.525) (end 148.8 88.725) (width 0.2) (layer "F.Cu") (net 90) (uuid "a7e9d7e1-1ab2-42b1-bdd1-967ccd2111e6") ) (segment (start 154.5 88.5) (end 152.475 88.5) (width 0.2) (layer "F.Cu") (net 90) (uuid "bfa30e6c-8ffe-4856-ae1d-6051edf9f969") ) (segment (start 165.345006 82.68) (end 167.4 82.68) (width 0.2) (layer "F.Cu") (net 90) (uuid "c768e595-22b6-4f7d-b8ee-c81bf343c2c3") ) (segment (start 148.8 88.725) (end 147.2125 88.725) (width 0.2) (layer "F.Cu") (net 90) (uuid "e2696770-938d-45b4-96d9-dc37d9c54a01") ) (segment (start 161.134513 80.700481) (end 163.365487 80.700481) (width 0.2) (layer "F.Cu") (net 90) (uuid "e8b5c5d9-d60c-4724-b9a5-af84330c1894") ) (segment (start 154.85048 82.35048) (end 159.484514 82.35048) (width 0.2) (layer "F.Cu") (net 90) (uuid "f26d92e3-d77e-4053-8dc6-abc670bfbe39") ) (segment (start 154.5 82) (end 154.85048 82.35048) (width 0.2) (layer "F.Cu") (net 90) (uuid "f93fb2ff-d4ab-4a07-b0f1-f95ea1a0369a") ) (via (at 154.5 81.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 90) (uuid "b7877675-2e65-40f4-941a-978b163197b3") ) (via (at 154.5 88.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 90) (uuid "bac54c70-6eb8-408a-ab03-8e2b6df66436") ) (segment (start 154.5 88.5) (end 154.5 81.6) (width 0.2) (layer "B.Cu") (net 90) (uuid "3e488e92-bddd-4d44-95f8-53f1899959b3") ) (segment (start 162.3 72.817801) (end 165.942199 76.46) (width 1) (layer "F.Cu") (net 91) (uuid "0035c864-cb67-46e0-9f09-b24fa04fafa8") ) (segment (start 159.9 72.9) (end 160.7 72.1) (width 1) (layer "F.Cu") (net 91) (uuid "07102ecc-fac7-4bda-b25c-6f81058ffc6c") ) (segment (start 150.9125 75.6) (end 150.9125 74.9875) (width 0.2) (layer "F.Cu") (net 91) (uuid "2f7fde80-2272-4b65-9f9c-49b1c2b7b611") ) (segment (start 150.9125 74.9875) (end 151.5 74.4) (width 0.2) (layer "F.Cu") (net 91) (uuid "3c0157d0-c379-4eed-8032-7c1c8144c12f") ) (segment (start 156.41 74.4) (end 157.3 75.29) (width 0.2) (layer "F.Cu") (net 91) (uuid "407d8f03-61ea-4387-bd1f-e1591ad1afdc") ) (segment (start 159.01 75.29) (end 159.9 74.4) (width 1) (layer "F.Cu") (net 91) (uuid "633a80f4-d109-47cf-9f95-095367f54ad5") ) (segment (start 162.3 72.1) (end 162.3 72.817801) (width 1) (layer "F.Cu") (net 91) (uuid "87196646-99d8-46cd-8db7-e9fa54fe1315") ) (segment (start 160.7 79.1625) (end 160.7 75.2) (width 0.2) (layer "F.Cu") (net 91) (uuid "a5a4b871-0e6d-42a1-9dfe-7e22faeda9f5") ) (segment (start 160.7 72.1) (end 162.3 72.1) (width 1) (layer "F.Cu") (net 91) (uuid "a602afb0-4c18-4100-b454-ce2afc32290c") ) (segment (start 157.3 75.29) (end 159.01 75.29) (width 1) (layer "F.Cu") (net 91) (uuid "bcc21236-229b-4341-a422-69a8250c634c") ) (segment (start 165.942199 76.46) (end 167.4 76.46) (width 1) (layer "F.Cu") (net 91) (uuid "bde01fcb-8934-4fbd-a473-78b9685834f8") ) (segment (start 160.7 75.2) (end 159.9 74.4) (width 0.2) (layer "F.Cu") (net 91) (uuid "bfeb75db-4460-4d3c-b2da-5474540ed517") ) (segment (start 151.5 74.4) (end 156.41 74.4) (width 0.2) (layer "F.Cu") (net 91) (uuid "c1047667-3c70-48a1-acf4-50580e956bce") ) (segment (start 159.9 74.4) (end 159.9 72.9) (width 1) (layer "F.Cu") (net 91) (uuid "d79785b9-b431-4e37-88cc-f718f842d41e") ) (segment (start 161.4375 79.9) (end 160.7 79.1625) (width 0.2) (layer "F.Cu") (net 91) (uuid "df0a2216-cab5-4b12-a209-0272c560a2cd") ) (segment (start 149.675 76.7) (end 148.675 77.7) (width 0.2) (layer "F.Cu") (net 92) (uuid "12fcd8a1-bd57-40a3-a47b-b27e771e1bab") ) (segment (start 151.3 76.7) (end 149.675 76.7) (width 0.2) (layer "F.Cu") (net 92) (uuid "273ffd03-2310-41f5-9d31-3831de805acb") ) (segment (start 148.5 77.525) (end 148.675 77.7) (width 0.2) (layer "F.Cu") (net 92) (uuid "30341f44-8e24-43da-9419-0725e966a828") ) (segment (start 146.9375 77.525) (end 148.5 77.525) (width 0.2) (layer "F.Cu") (net 92) (uuid "3259ae42-bb6e-475f-8b0a-b54540359260") ) (segment (start 151.8 76.2) (end 151.3 76.7) (width 0.2) (layer "F.Cu") (net 92) (uuid "607e11d1-27fa-4893-8d03-9c7c3112ae89") ) (segment (start 152.25 74.8) (end 151.8 75.25) (width 0.2) (layer "F.Cu") (net 92) (uuid "61e1dc4b-17ef-4979-901c-588a5d2b24bb") ) (segment (start 154 75.3) (end 153.5 74.8) (width 0.2) (layer "F.Cu") (net 92) (uuid "7226473e-0d99-455a-b689-d8efafa2212c") ) (segment (start 151.8 75.25) (end 151.8 76.2) (width 0.2) (layer "F.Cu") (net 92) (uuid "a22288b7-2ce3-4ee6-97c0-e5ef7c8af8fc") ) (segment (start 154.4 75.3) (end 154 75.3) (width 0.2) (layer "F.Cu") (net 92) (uuid "b9977811-a9e7-4889-8d1f-bb4875d083f9") ) (segment (start 153.5 74.8) (end 152.25 74.8) (width 0.2) (layer "F.Cu") (net 92) (uuid "c82cec93-e133-4981-8400-796041d1f60d") ) (via (at 154.4 75.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 92) (uuid "16d93f4c-c93a-43a4-b23d-825649b1bc83") ) (segment (start 156.2 69.1) (end 166.2 69.1) (width 0.2) (layer "B.Cu") (net 92) (uuid "51a4f6cf-2028-479b-b4b9-8abb712030b6") ) (segment (start 154.4 70.9) (end 156.2 69.1) (width 0.2) (layer "B.Cu") (net 92) (uuid "5c26d80c-a27b-40dd-8f64-0309c60fdc60") ) (segment (start 166.2 69.1) (end 167.4 70.3) (width 0.2) (layer "B.Cu") (net 92) (uuid "7c5e1030-7343-417d-bcb1-9d141079cb88") ) (segment (start 154.4 75.3) (end 154.4 70.9) (width 0.2) (layer "B.Cu") (net 92) (uuid "93b6ca40-183e-48f7-bf30-e347e0339bc6") ) (segment (start 167.4 70.3) (end 167.4 71.38) (width 0.2) (layer "B.Cu") (net 92) (uuid "fd33cd8a-022b-4cd1-b6e2-144a02ffeb84") ) (segment (start 139.7125 115.2125) (end 138.525 114.025) (width 0.25) (layer "F.Cu") (net 93) (uuid "1e172e1e-7eab-4709-a6ea-fca8a721ea0a") ) (segment (start 139.7125 115.975) (end 139.7125 115.2125) (width 0.25) (layer "F.Cu") (net 93) (uuid "5ce80804-393e-418c-bea6-bf297a3aa5e4") ) (segment (start 138.525 114.025) (end 138.4 114.025) (width 0.25) (layer "F.Cu") (net 93) (uuid "7b84f649-c0de-4eff-955d-1ecca2585113") ) (segment (start 122.9875 68.7125) (end 124.75 66.95) (width 0.25) (layer "F.Cu") (net 94) (uuid "b32c4523-f030-4eaf-b5f6-07829f635eb4") ) (segment (start 122.9 68.7125) (end 122.9875 68.7125) (width 0.25) (layer "F.Cu") (net 94) (uuid "c296172f-7552-436c-b97e-df6d8f4e9c3d") ) (segment (start 128.1125 114.7375) (end 127.4 114.025) (width 0.25) (layer "F.Cu") (net 95) (uuid "813be696-4116-4aa4-8e82-366832c32a52") ) (segment (start 128.1125 115.95) (end 128.1125 114.7375) (width 0.25) (layer "F.Cu") (net 95) (uuid "f70da48e-fa56-4374-8fcd-5dbb27ca73fa") ) (segment (start 149.0875 109) (end 147.275 109) (width 0.2) (layer "F.Cu") (net 96) (uuid "36ab6e55-92fa-4b4b-a2a7-9f7de8f4661b") ) (segment (start 39.37 93.31) (end 39.37 70.03) (width 0.25) (layer "F.Cu") (net 97) (uuid "2606d19e-6a28-4f95-9700-2e3f559bc79a") ) (segment (start 39.37 70.03) (end 47.2 62.2) (width 0.25) (layer "F.Cu") (net 97) (uuid "30577e44-bd29-4a8e-a2c4-7c164bf95526") ) (segment (start 47.2 62.2) (end 49.8125 62.2) (width 0.25) (layer "F.Cu") (net 97) (uuid "99106e49-97c7-4996-8961-e05a81e3f66d") ) (segment (start 49.8125 62.2) (end 50.8125 61.2) (width 0.25) (layer "F.Cu") (net 97) (uuid "adc45c65-1583-4b06-8bc0-ee88892392e2") ) (segment (start 149.0875 97.75) (end 147.275 97.75) (width 0.2) (layer "F.Cu") (net 98) (uuid "51f42c71-d07d-47e9-abc0-2dbc3c44c78c") ) (segment (start 149.0875 86.5) (end 147.275 86.5) (width 0.2) (layer "F.Cu") (net 99) (uuid "9277ac89-d1b8-41f5-b230-798d05a910bb") ) (segment (start 149.0875 75.6) (end 147.225 75.6) (width 0.2) (layer "F.Cu") (net 100) (uuid "e5af9e20-7428-4d4f-973e-23975c41bb16") ) (segment (start 52.2 66.0025) (end 53.2 67.0025) (width 1.5) (layer "F.Cu") (net 101) (uuid "36c9e7d3-aec0-4dff-ad0c-f3c27055726e") ) (segment (start 60.27 70.405) (end 60.225 70.45) (width 0.5) (layer "F.Cu") (net 101) (uuid "3cf7e361-8b3a-43f6-ba07-6acbf78ea471") ) (segment (start 53.2 70.8) (end 53.25 70.75) (width 1.5) (layer "F.Cu") (net 101) (uuid "4750428e-ccdd-45b8-83be-302eed5bfd05") ) (segment (start 51.85 68.1) (end 51.85 69.7025) (width 1.5) (layer "F.Cu") (net 101) (uuid "658c7491-dae0-49c2-94fc-1ba571cebb1c") ) (segment (start 49.432 66.0025) (end 52.2 66.0025) (width 1.5) (layer "F.Cu") (net 101) (uuid "9300fbb1-b89b-494e-b923-0c04be0ba5c0") ) (segment (start 53.2 67.0025) (end 53.2 70.8) (width 1.5) (layer "F.Cu") (net 101) (uuid "93893dda-f864-4a32-ad4f-bde355e5622a") ) (segment (start 53.25 70.75) (end 59.925 70.75) (width 1.5) (layer "F.Cu") (net 101) (uuid "acfe21e1-4e30-4f20-b5f3-a3c0ba371836") ) (segment (start 60.27 66.05) (end 60.27 70.405) (width 0.5) (layer "F.Cu") (net 101) (uuid "ce9d0489-20fa-4eb3-933f-e367b584a91f") ) (segment (start 59.925 70.75) (end 60.225 70.45) (width 1.5) (layer "F.Cu") (net 101) (uuid "d6f4cbae-af3e-4bc4-aaae-e432d9f81785") ) (segment (start 51.85 69.7025) (end 51.85 68.183064) (width 1.5) (layer "B.Cu") (net 101) (uuid "0e103dd6-11c6-4519-b54e-d27de54e840d") ) (segment (start 49.432 66.0025) (end 50.669436 66.0025) (width 1.5) (layer "B.Cu") (net 101) (uuid "10cd62ec-c62b-4810-8033-9968c168a8de") ) (segment (start 50.669436 66.0025) (end 51.85 67.183064) (width 1.5) (layer "B.Cu") (net 101) (uuid "53db564b-eb4d-41fe-8efe-cb06977138a4") ) (segment (start 51.85 67.183064) (end 51.85 68.7025) (width 1.5) (layer "B.Cu") (net 101) (uuid "924cef1f-e164-4c39-9ba3-04ba12fb5e5c") ) (segment (start 79.9375 66.6375) (end 77.3625 64.0625) (width 0.2) (layer "F.Cu") (net 102) (uuid "b55292f4-3591-4cb2-a0f0-4db00a7f0922") ) (segment (start 77.85 63.15) (end 76.8 63.15) (width 0.2) (layer "F.Cu") (net 103) (uuid "3fbd979a-1320-42b0-8fec-87e14a1086de") ) (segment (start 79.415006 65.55) (end 78.25 64.384994) (width 0.2) (layer "F.Cu") (net 103) (uuid "4a95ca05-0b23-4562-97a7-e317655f984c") ) (segment (start 84.3625 67.05) (end 84.3625 66.6125) (width 0.2) (layer "F.Cu") (net 103) (uuid "4ce5ceaf-9bf7-4277-a16d-8d9fca7e33e3") ) (segment (start 83.3 65.55) (end 79.415006 65.55) (width 0.2) (layer "F.Cu") (net 103) (uuid "776dc264-fc36-4044-9ec0-c2e9fdf0a282") ) (segment (start 76.5 62.85) (end 76.5 59.45) (width 0.2) (layer "F.Cu") (net 103) (uuid "77ab687d-33e7-450e-b8ef-c0051f6374db") ) (segment (start 78.25 63.55) (end 77.85 63.15) (width 0.2) (layer "F.Cu") (net 103) (uuid "81aa086d-28c8-4ff9-b4aa-065f9728f252") ) (segment (start 78.25 64.384994) (end 78.25 63.55) (width 0.2) (layer "F.Cu") (net 103) (uuid "cc01c2b3-e6fb-4381-b083-b26a4883686f") ) (segment (start 76.5 59.45) (end 77.3625 58.5875) (width 0.2) (layer "F.Cu") (net 103) (uuid "d6b8a600-2564-4fe1-bc06-d791dd191bc1") ) (segment (start 84.3625 66.6125) (end 83.3 65.55) (width 0.2) (layer "F.Cu") (net 103) (uuid "d8f15303-bfcf-4a5a-bbd0-15fab21fcbb6") ) (segment (start 76.8 63.15) (end 76.5 62.85) (width 0.2) (layer "F.Cu") (net 103) (uuid "f3fa5b4f-1227-4ba4-9ff8-8ad8807dbf47") ) (segment (start 95.3 65.7) (end 90.15 65.7) (width 0.2) (layer "F.Cu") (net 104) (uuid "2df8ac62-ecda-4009-be4c-2b1ae2cbda03") ) (segment (start 95.6 65.4) (end 95.3 65.7) (width 0.2) (layer "F.Cu") (net 104) (uuid "d50c7cda-b2cc-47f4-99e4-88310e80a5cd") ) (segment (start 95.6 61.525) (end 95.6 65.4) (width 0.2) (layer "F.Cu") (net 104) (uuid "dcf16ea5-68e4-4c1a-bdcc-86d4b4041453") ) (segment (start 90.15 65.7) (end 88.8 67.05) (width 0.2) (layer "F.Cu") (net 104) (uuid "e0f7fec4-f874-4b47-8326-6decafa54b0f") ) (segment (start 96.4125 60.7125) (end 95.6 61.525) (width 0.2) (layer "F.Cu") (net 104) (uuid "f4ae3b36-f146-4ac8-acb0-9342b197b8dd") ) (segment (start 96.4125 65.4875) (end 94.85 67.05) (width 0.2) (layer "F.Cu") (net 105) (uuid "1ce11ad1-f1e5-43fb-9d88-565a191a6a76") ) (segment (start 96.4125 64.3625) (end 96.4125 65.4875) (width 0.2) (layer "F.Cu") (net 105) (uuid "ed0efd39-5241-4eb4-8d8b-2d8e5c705522") ) (segment (start 94.85 67.05) (end 93.88 67.05) (width 0.2) (layer "F.Cu") (net 105) (uuid "ee35ddca-6896-4efe-9bf5-78ee5ef0b908") ) (segment (start 64.575 83.5875) (end 64.575 85.375) (width 0.2) (layer "F.Cu") (net 106) (uuid "09757c75-b8ef-453f-bfc3-25c9eb59526a") ) (segment (start 57.5 85.1625) (end 57.975 85.1625) (width 0.25) (layer "F.Cu") (net 106) (uuid "0c3c69d9-9fe7-4ce6-a04d-9f61c760ea02") ) (segment (start 83.665685 85.9) (end 90.8 78.765685) (width 0.2) (layer "F.Cu") (net 106) (uuid "159ae0ff-fd19-45dd-85c0-2b9b68a76417") ) (segment (start 58.73798 84.17452) (end 60.85048 84.17452) (width 0.2) (layer "F.Cu") (net 106) (uuid "17d9361b-0a84-4c63-aa06-dd45b1207c86") ) (segment (start 63.5625 82.575) (end 64.575 83.5875) (width 0.2) (layer "F.Cu") (net 106) (uuid "1f0c3eaf-7337-456e-8c21-c6b87a9a287e") ) (segment (start 93.25 68.65) (end 94.45 68.65) (width 0.2) (layer "F.Cu") (net 106) (uuid "21473312-7319-428c-96d1-ceb6acb00f46") ) (segment (start 63.5625 80.125) (end 63.45 80.0125) (width 0.2) (layer "F.Cu") (net 106) (uuid "347da373-84c7-4736-806b-37d201784262") ) (segment (start 65.4 86.2) (end 83.015687 86.2) (width 0.2) (layer "F.Cu") (net 106) (uuid "482ae03e-f4a3-4fae-927b-a2be389530cf") ) (segment (start 62.45 82.575) (end 63.5625 82.575) (width 0.2) (layer "F.Cu") (net 106) (uuid "5add23d6-2916-492b-ac8e-e31901a0b1b1") ) (segment (start 94.45 68.65) (end 97.675 65.425) (width 0.2) (layer "F.Cu") (net 106) (uuid "623bcced-b1a3-416a-82a1-dc198513aaf9") ) (segment (start 60.85048 84.17452) (end 62.45 82.575) (width 0.2) (layer "F.Cu") (net 106) (uuid "68a406f3-c545-4f8a-8250-f83531876cad") ) (segment (start 63.5625 82.575) (end 63.5625 80.125) (width 0.2) (layer "F.Cu") (net 106) (uuid "6ec635e1-d179-4ed9-a526-a9fc5213e9b2") ) (segment (start 57.4125 85.075) (end 57.5 85.1625) (width 0.25) (layer "F.Cu") (net 106) (uuid "86b7872f-59e8-4c6a-a330-1bc69453bdf9") ) (segment (start 93.05 68.85) (end 93.25 68.65) (width 0.2) (layer "F.Cu") (net 106) (uuid "8ca4cbe0-a957-443a-9397-ac06656bdc21") ) (segment (start 57.4375 85.1) (end 57.5 85.1625) (width 0.2) (layer "F.Cu") (net 106) (uuid "9243a197-d59a-4f36-bde6-ffff50e08501") ) (segment (start 97.675 65.425) (end 97.675 58.375) (width 0.2) (layer "F.Cu") (net 106) (uuid "a64dbd3e-da32-4679-94cb-3531a753a440") ) (segment (start 64.575 85.375) (end 65.4 86.2) (width 0.2) (layer "F.Cu") (net 106) (uuid "a734029e-2aa6-4c00-a7ae-c497642d95bc") ) (segment (start 57.15 93.31) (end 56.9 93.06) (width 0.2) (layer "F.Cu") (net 106) (uuid "aa1684eb-bf24-4143-b925-513397aebd9a") ) (segment (start 83.315687 85.9) (end 83.665685 85.9) (width 0.2) (layer "F.Cu") (net 106) (uuid "ab081ae0-18ba-4b8d-9cdd-9fceddb6b8d1") ) (segment (start 90.8 78.765685) (end 90.8 77.137256) (width 0.2) (layer "F.Cu") (net 106) (uuid "b948a236-cd3d-4d6e-8dab-56a6a80e59bd") ) (segment (start 57.8375 85.075) (end 58.73798 84.17452) (width 0.2) (layer "F.Cu") (net 106) (uuid "bcb635b1-078a-4165-acea-1e806f21395f") ) (segment (start 92.35 60.15) (end 92.35 61.225) (width 0.2) (layer "F.Cu") (net 106) (uuid "c4a787e7-fc4f-43a7-ba15-3729f9f866c7") ) (segment (start 56.9 93.06) (end 56.9 85.1) (width 0.2) (layer "F.Cu") (net 106) (uuid "c77474c4-bad8-4e75-b6fe-3aa1cb1f8fe5") ) (segment (start 97.675 58.375) (end 97.2 57.9) (width 0.2) (layer "F.Cu") (net 106) (uuid "daa2e861-3f0a-45c5-995d-116f3d04c799") ) (segment (start 55.8625 85.075) (end 57.4125 85.075) (width 0.25) (layer "F.Cu") (net 106) (uuid "de883207-cfd0-4137-be25-0954ee7a1862") ) (segment (start 90.8 77.137256) (end 93.05 74.887256) (width 0.2) (layer "F.Cu") (net 106) (uuid "e284f4e5-264d-4f00-9e1a-f35ed8b6a371") ) (segment (start 94.6 57.9) (end 92.35 60.15) (width 0.2) (layer "F.Cu") (net 106) (uuid "e422bf3c-89ff-42d8-bd6f-d91689debd77") ) (segment (start 83.015687 86.2) (end 83.315687 85.9) (width 0.2) (layer "F.Cu") (net 106) (uuid "e9f3b3dc-bbce-47f1-9f36-0c6fb2ec48a8") ) (segment (start 93.05 74.887256) (end 93.05 68.85) (width 0.2) (layer "F.Cu") (net 106) (uuid "ea6b36f4-0878-41cd-a576-9da6b378de63") ) (segment (start 56.9 85.1) (end 57.4375 85.1) (width 0.2) (layer "F.Cu") (net 106) (uuid "f025abd0-76dd-4e40-9032-04a1f488d305") ) (segment (start 97.2 57.9) (end 94.6 57.9) (width 0.2) (layer "F.Cu") (net 106) (uuid "f31cff45-e5eb-45aa-944c-5c99a1a2d3ba") ) (segment (start 92.35 61.3) (end 90.75 62.9) (width 0.2) (layer "B.Cu") (net 106) (uuid "14f22b61-3980-4ed3-9d72-a64f1f41fbb2") ) (segment (start 85.35 62.9) (end 83.75 61.3) (width 0.2) (layer "B.Cu") (net 106) (uuid "1d2fefcc-6cd3-4b67-a822-dd3c67d07b99") ) (segment (start 83.75 61.3) (end 83.75 61.2) (width 0.2) (layer "B.Cu") (net 106) (uuid "49c2aea3-f6f9-41f5-b12f-3409ae970d21") ) (segment (start 92.35 61.225) (end 92.35 61.3) (width 0.2) (layer "B.Cu") (net 106) (uuid "749a8c81-7e81-4c5b-9a8f-dcc9d023d510") ) (segment (start 90.75 62.9) (end 85.35 62.9) (width 0.2) (layer "B.Cu") (net 106) (uuid "8d06116d-6102-47f7-b682-8936a0e821ae") ) (segment (start 77.3625 60.4125) (end 77.375 60.4) (width 0.2) (layer "F.Cu") (net 107) (uuid "24010e4e-68fb-4a51-89b5-fc30a2fa4096") ) (segment (start 77.375 60.4) (end 80.45 60.4) (width 0.2) (layer "F.Cu") (net 107) (uuid "7034d494-4b3c-48ca-a07e-af4750b3e29b") ) (segment (start 80.45 60.4) (end 81.25 61.2) (width 0.2) (layer "F.Cu") (net 107) (uuid "b6d07cf6-285a-4a4c-bf97-211fbc7a8b23") ) (segment (start 77.3625 62.2375) (end 77.3625 60.4125) (width 0.2) (layer "F.Cu") (net 107) (uuid "dc3c9c8b-a731-43ce-b7a9-32aa24c733b2") ) (segment (start 80.289519 56.739519) (end 81.25 57.7) (width 0.2) (layer "B.Cu") (net 107) (uuid "1424882c-ef43-4f93-ad2c-e4f3854fa4d8") ) (segment (start 61.125 64.675) (end 69.060481 56.739519) (width 0.2) (layer "B.Cu") (net 107) (uuid "358be007-b853-4d04-b2a8-ed629280223e") ) (segment (start 61.125 90.475) (end 61.125 64.675) (width 0.2) (layer "B.Cu") (net 107) (uuid "7ff2f472-b217-4f23-a8c1-7df575aa24d9") ) (segment (start 59.69 93.31) (end 59.69 91.91) (width 0.2) (layer "B.Cu") (net 107) (uuid "862adacd-b0d1-43ea-8b43-58d4ae744a71") ) (segment (start 59.69 91.91) (end 61.125 90.475) (width 0.2) (layer "B.Cu") (net 107) (uuid "a1931b6a-75d2-4720-a9ec-eac6f7892aca") ) (segment (start 69.060481 56.739519) (end 80.289519 56.739519) (width 0.2) (layer "B.Cu") (net 107) (uuid "b6d5d378-49c3-40bf-9880-ebba8c8018d7") ) (segment (start 81.25 57.7) (end 81.25 61.2) (width 0.2) (layer "B.Cu") (net 107) (uuid "bf06904b-b879-4b9a-9b1c-06fbc30f3711") ) (segment (start 90.85 62.8) (end 89.85 61.8) (width 0.2) (layer "F.Cu") (net 108) (uuid "04a2ff9a-9cc3-4bc2-90ea-df716a6bb9a8") ) (segment (start 93.75 59.75) (end 93.75 62.35) (width 0.2) (layer "F.Cu") (net 108) (uuid "26ec95e5-74d6-41db-aaac-cf2fc6f05a41") ) (segment (start 96.4125 58.8875) (end 94.6125 58.8875) (width 0.2) (layer "F.Cu") (net 108) (uuid "303b0b54-1069-46de-baec-e5b8248bc73c") ) (segment (start 93.75 62.35) (end 93.3 62.8) (width 0.2) (layer "F.Cu") (net 108) (uuid "40f560a2-41aa-471e-afc0-1387a320dc97") ) (segment (start 96.8625 62.5375) (end 97.27548 62.12452) (width 0.2) (layer "F.Cu") (net 108) (uuid "710d56ab-f2e7-45a5-954c-de5ddba04aac") ) (segment (start 97.27548 59.27548) (end 96.8875 58.8875) (width 0.2) (layer "F.Cu") (net 108) (uuid "7a4677e7-d15e-491c-b60c-cc3a5a2397eb") ) (segment (start 94.6125 58.8875) (end 93.75 59.75) (width 0.2) (layer "F.Cu") (net 108) (uuid "8433059d-dd14-46ac-987f-0325dfea24ee") ) (segment (start 96.8875 58.8875) (end 96.4125 58.8875) (width 0.2) (layer "F.Cu") (net 108) (uuid "8af1553e-b126-413f-8f4d-0207c20e2775") ) (segment (start 93.3 62.8) (end 90.85 62.8) (width 0.2) (layer "F.Cu") (net 108) (uuid "c4ce76ab-ce2d-4ed5-b7ed-7b162bdb10e9") ) (segment (start 89.85 61.8) (end 89.85 61.225) (width 0.2) (layer "F.Cu") (net 108) (uuid "d9a348bd-712b-46d6-bc8a-e222c1dc52d6") ) (segment (start 97.27548 62.12452) (end 97.27548 59.27548) (width 0.2) (layer "F.Cu") (net 108) (uuid "ebbf3bd3-707e-47f4-93e6-9c158b32e418") ) (segment (start 96.4125 62.5375) (end 96.8625 62.5375) (width 0.2) (layer "F.Cu") (net 108) (uuid "fab553ed-efd7-4c79-b9c8-fb88c3ab4e1a") ) (segment (start 54.975 91.85) (end 58.975 91.85) (width 0.2) (layer "B.Cu") (net 108) (uuid "186fa6a6-2246-4603-b539-6269fe0a01c6") ) (segment (start 54.61 93.31) (end 54.61 92.215) (width 0.2) (layer "B.Cu") (net 108) (uuid "53544e16-74b6-4504-afea-90f3d4d02aed") ) (segment (start 58.975 91.85) (end 60.675 90.15) (width 0.2) (layer "B.Cu") (net 108) (uuid "54c099d3-7688-44a9-b04e-e7df7dbc4039") ) (segment (start 60.675 64.559314) (end 68.894314 56.34) (width 0.2) (layer "B.Cu") (net 108) (uuid "62df4f89-443b-4603-8a48-7ac84d42a461") ) (segment (start 89.85 57.25) (end 89.85 61.225) (width 0.2) (layer "B.Cu") (net 108) (uuid "e76642e7-5705-405a-98b4-ff2399c7d9a0") ) (segment (start 54.61 92.215) (end 54.975 91.85) (width 0.2) (layer "B.Cu") (net 108) (uuid "eb96c0ba-865e-4151-b11f-50e90026e17d") ) (segment (start 68.894314 56.34) (end 88.94 56.34) (width 0.2) (layer "B.Cu") (net 108) (uuid "f60432f0-b091-4496-9fdb-56110cc796d6") ) (segment (start 60.675 90.15) (end 60.675 64.559314) (width 0.2) (layer "B.Cu") (net 108) (uuid "f629ef97-5af6-4bc2-89e5-c39460fe93f5") ) (segment (start 88.94 56.34) (end 89.85 57.25) (width 0.2) (layer "B.Cu") (net 108) (uuid "f8c025b3-7242-4308-a2e8-1c62a523fd15") ) (segment (start 103.3375 70.3125) (end 104.65 69) (width 0.2) (layer "F.Cu") (net 109) (uuid "8a758f84-947f-4a05-952b-4f2e2d0d9557") ) (segment (start 103.3375 71) (end 103.3375 70.3125) (width 0.2) (layer "F.Cu") (net 109) (uuid "93c4885b-d249-443a-8cc7-a23b68906204") ) (segment (start 115.1875 69.7375) (end 116.05 68.875) (width 0.2) (layer "F.Cu") (net 110) (uuid "375cf51f-47ed-4f4c-bd29-85a2b5132a9a") ) (segment (start 115.1875 70.9375) (end 115.1875 69.7375) (width 0.2) (layer "F.Cu") (net 110) (uuid "7a05bfec-b064-4a53-b679-1b99e116598a") ) (segment (start 138.6375 71) (end 138.6375 69.8125) (width 0.2) (layer "F.Cu") (net 111) (uuid "ce74bce6-2ec8-4ced-af3c-183fc30890b0") ) (segment (start 138.6375 69.8125) (end 139.5 68.95) (width 0.2) (layer "F.Cu") (net 111) (uuid "d68a48ee-8236-4b91-ae08-3a310c55b8d1") ) (segment (start 126.4 70) (end 127.5 68.9) (width 0.2) (layer "F.Cu") (net 112) (uuid "81a21989-3331-45ef-bf55-97ad32a87ab2") ) (segment (start 126.4 71) (end 126.4 70) (width 0.2) (layer "F.Cu") (net 112) (uuid "e85f41b3-a0d4-4aba-8995-97f03a965051") ) (segment (start 53.7 109.4) (end 56.3 106.8) (width 0.2) (layer "F.Cu") (net 113) (uuid "01d48c7d-78fa-4b7b-a2c3-1fcac207329a") ) (segment (start 86.155635 87.1) (end 86.931372 86.324263) (width 0.2) (layer "F.Cu") (net 113) (uuid "04770a66-5b82-4583-8f98-ed35a64cf771") ) (segment (start 92.4 79.428429) (end 92.4 77.8) (width 0.2) (layer "F.Cu") (net 113) (uuid "069a3d20-1a70-4827-808f-b706ffc3cf5c") ) (segment (start 59.4 94.6) (end 60.7 94.6) (width 0.2) (layer "F.Cu") (net 113) (uuid "11d96134-edbf-4d29-8a76-48e2570c398c") ) (segment (start 50.7 123.15) (end 50.7 126.5) (width 0.2) (layer "F.Cu") (net 113) (uuid "23cd4ab5-525b-44e7-aecc-2fecd858e426") ) (segment (start 123 80.9) (end 122.78 80.9) (width 0.25) (layer "F.Cu") (net 113) (uuid "26ddc705-0a92-4df9-adc1-547cc9a0a87e") ) (segment (start 72.27292 88.124999) (end 82.787745 88.124999) (width 0.2) (layer "F.Cu") (net 113) (uuid "2e600dd3-98b6-4ab8-af62-583e41bfc23f") ) (segment (start 125.9 82.1) (end 124.2 82.1) (width 0.25) (layer "F.Cu") (net 113) (uuid "2fafc978-59c8-4edf-916d-e2aceefee2a5") ) (segment (start 52.144368 127.944368) (end 52.144368 130.2) (width 0.2) (layer "F.Cu") (net 113) (uuid "301e96c6-8272-44f4-8ba8-0e17199baeb9") ) (segment (start 53.25 123.7) (end 51.7 122.15) (width 0.2) (layer "F.Cu") (net 113) (uuid "3e915692-aa20-4a02-9a7c-d314286def25") ) (segment (start 62.15 89.25) (end 71.147918 89.25) (width 0.2) (layer "F.Cu") (net 113) (uuid "40b67d91-481e-4c8f-94e9-42e3f7ae7fe2") ) (segment (start 49.53 111.09) (end 49.53 109.87) (width 0.2) (layer "F.Cu") (net 113) (uuid "42624078-9da8-4ccf-83fe-5aa316bfa3c5") ) (segment (start 122.78 77.4) (end 122.78 74.2) (width 0.25) (layer "F.Cu") (net 113) (uuid "4b5b85be-515c-457b-a731-facfc8c8f1bc") ) (segment (start 126.8 82.8) (end 131.25 78.35) (width 0.2) (layer "F.Cu") (net 113) (uuid "52bd2e5d-507c-47b6-a9bb-18eed6d1d63b") ) (segment (start 131.25 78.35) (end 131.25 77.65) (width 0.2) (layer "F.Cu") (net 113) (uuid "55d9a930-1f12-4b2d-a71c-0b784577f90f") ) (segment (start 126.6 81.4) (end 125.9 82.1) (width 0.25) (layer "F.Cu") (net 113) (uuid "59bfabe3-ecbf-4c01-a132-fc4368d239f9") ) (segment (start 109 77.4) (end 114.4 82.8) (width 0.2) (layer "F.Cu") (net 113) (uuid "5f361d54-1dd0-41b0-85c3-03ff6cd97445") ) (segment (start 114.4 82.8) (end 126.8 82.8) (width 0.2) (layer "F.Cu") (net 113) (uuid "5f44f717-f73b-4cea-a829-eb8107d0012f") ) (segment (start 131.25 77.65) (end 130.45 76.85) (width 0.25) (layer "F.Cu") (net 113) (uuid "5f8882c4-d1c7-4cac-bebf-912eeb7cae4c") ) (segment (start 94.3 75.9) (end 105.668629 75.9) (width 0.2) (layer "F.Cu") (net 113) (uuid "611d9027-3eff-42cb-a200-e7ce01552ae3") ) (segment (start 56.3 97.7) (end 59.4 94.6) (width 0.2) (layer "F.Cu") (net 113) (uuid "6863a4bc-f155-462e-9eb0-074d12f9ef98") ) (segment (start 126.6 77.4) (end 126.6 81.4) (width 0.25) (layer "F.Cu") (net 113) (uuid "7abc8706-e0c6-4aaa-b055-f1df8342e0b0") ) (segment (start 130.45 76.85) (end 127.15 76.85) (width 0.25) (layer "F.Cu") (net 113) (uuid "7ef7e031-f504-4405-b0d6-b759b81477ce") ) (segment (start 124.2 82.1) (end 123 80.9) (width 0.25) (layer "F.Cu") (net 113) (uuid "7f547e31-36bf-4760-9b6e-e0ef225ee9e8") ) (segment (start 107.168629 77.4) (end 109 77.4) (width 0.2) (layer "F.Cu") (net 113) (uuid "84d4a3dd-a679-40c6-a91d-336285de3cad") ) (segment (start 50 109.4) (end 53.7 109.4) (width 0.2) (layer "F.Cu") (net 113) (uuid "88ef035f-c276-4a9f-80e5-bf3296cdc467") ) (segment (start 82.787745 88.124999) (end 83.812745 87.1) (width 0.2) (layer "F.Cu") (net 113) (uuid "8e4af7ec-9c31-4e56-ab14-e47c5caef305") ) (segment (start 86.931372 84.897057) (end 92.4 79.428429) (width 0.2) (layer "F.Cu") (net 113) (uuid "a153a34e-0ffd-410b-82dd-ec53bb810b7e") ) (segment (start 58.455 123.7) (end 53.25 123.7) (width 0.2) (layer "F.Cu") (net 113) (uuid "a2188676-4895-4afb-906e-0b3360417974") ) (segment (start 60.7 94.6) (end 61 94.3) (width 0.2) (layer "F.Cu") (net 113) (uuid "a2b91d68-f71a-4158-8047-9f601c610d26") ) (segment (start 61 90.4) (end 62.15 89.25) (width 0.2) (layer "F.Cu") (net 113) (uuid "a436ba4b-697f-48c5-ae71-40e95ba9bcd9") ) (segment (start 49.53 109.87) (end 50 109.4) (width 0.2) (layer "F.Cu") (net 113) (uuid "b356c679-1a33-41fc-b411-7e97a01bbae3") ) (segment (start 92.4 77.8) (end 94.3 75.9) (width 0.2) (layer "F.Cu") (net 113) (uuid "bd3a7666-5028-4400-b57b-415dfc3653b0") ) (segment (start 59.84 122.315) (end 58.455 123.7) (width 0.2) (layer "F.Cu") (net 113) (uuid "c3c2acf1-db54-4304-a0af-1914d1145905") ) (segment (start 127.15 76.85) (end 126.6 77.4) (width 0.25) (layer "F.Cu") (net 113) (uuid "c58100ff-b7ca-4d75-ae99-a2fda0888e0f") ) (segment (start 51.7 122.15) (end 50.7 123.15) (width 0.2) (layer "F.Cu") (net 113) (uuid "cbbe5d8a-ebb5-421d-90d8-786d72ec21f6") ) (segment (start 86.931372 86.324263) (end 86.931372 84.897057) (width 0.2) (layer "F.Cu") (net 113) (uuid "d09aa9ce-e408-4d5d-aac1-28b155316cd3") ) (segment (start 83.812745 87.1) (end 86.155635 87.1) (width 0.2) (layer "F.Cu") (net 113) (uuid "d4b6c908-d294-4e5b-8631-2eaafa803fdb") ) (segment (start 56.3 106.8) (end 56.3 97.7) (width 0.2) (layer "F.Cu") (net 113) (uuid "d76b2d90-5a65-4a54-a932-41dcb4a1acdc") ) (segment (start 50.7 126.5) (end 52.144368 127.944368) (width 0.2) (layer "F.Cu") (net 113) (uuid "e23cf78a-7c0d-4635-ac91-94ab827685fa") ) (segment (start 122.78 80.9) (end 122.78 77.4) (width 0.25) (layer "F.Cu") (net 113) (uuid "e2731d40-c2a4-464b-8c19-95f9298c6102") ) (segment (start 61 94.3) (end 61 90.4) (width 0.2) (layer "F.Cu") (net 113) (uuid "f50bb9c3-e1d0-4dd9-839e-c7d2031008ec") ) (segment (start 105.668629 75.9) (end 107.168629 77.4) (width 0.2) (layer "F.Cu") (net 113) (uuid "fa039c4e-4449-4901-97b5-5e2a001fd9c5") ) (segment (start 71.147918 89.25) (end 72.27292 88.124999) (width 0.2) (layer "F.Cu") (net 113) (uuid "fdeb34ed-7c2f-4291-b21c-ea2bea8b9cf1") ) (segment (start 51.8 116.7) (end 56.4 116.7) (width 0.2) (layer "B.Cu") (net 113) (uuid "5444f68f-edb7-4ded-b406-bf68e6b6844a") ) (segment (start 49.53 114.43) (end 51.8 116.7) (width 0.2) (layer "B.Cu") (net 113) (uuid "720d9748-9776-45d1-8820-cd578772b4d1") ) (segment (start 58.45 118.75) (end 58.45 120.925) (width 0.2) (layer "B.Cu") (net 113) (uuid "76334e81-fdf4-4123-a5fd-971fccb8ce1f") ) (segment (start 49.53 111.09) (end 49.53 114.43) (width 0.2) (layer "B.Cu") (net 113) (uuid "881496ab-d543-4b70-b9a9-6e90fd4ee2d1") ) (segment (start 56.4 116.7) (end 58.45 118.75) (width 0.2) (layer "B.Cu") (net 113) (uuid "b72f7710-df46-4d76-834a-9b375d27529b") ) (segment (start 58.45 120.925) (end 59.84 122.315) (width 0.2) (layer "B.Cu") (net 113) (uuid "c9acee87-16bb-431e-91cf-3c2112f8ae95") ) (segment (start 115.34142 73.6) (end 116.34142 72.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "0c675480-512e-4e18-8ae4-6308c4f2b3ef") ) (segment (start 57.3 117.6) (end 58.45 118.75) (width 0.2) (layer "F.Cu") (net 114) (uuid "0ec4fa1f-55cb-45fd-8c1d-cd16ca5f2c99") ) (segment (start 58.4 90.5) (end 58.7 90.2) (width 0.2) (layer "F.Cu") (net 114) (uuid "12cb0ed7-781c-4961-94a2-312c670b5e64") ) (segment (start 125.32 77.6) (end 125.32 74.2) (width 0.25) (layer "F.Cu") (net 114) (uuid "21f5f2a3-c6a8-47c6-adb7-0f6d33d58ea3") ) (segment (start 46.99 111.09) (end 46.99 112.65) (width 0.2) (layer "F.Cu") (net 114) (uuid "2472702f-3148-4dd1-a916-1d3285268d57") ) (segment (start 49.3 122.25) (end 50.1 123.05) (width 0.2) (layer "F.Cu") (net 114) (uuid "2c694fe9-b6e9-4bf7-b728-c00239a3158c") ) (segment (start 46.99 109.81) (end 47.8 109) (width 0.2) (layer "F.Cu") (net 114) (uuid "2f38939e-2d47-46c0-bdee-d67a23f19c13") ) (segment (start 55.8 106.734314) (end 55.8 97.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "3870bde2-a2c4-4c91-b6db-cb17f1bb4902") ) (segment (start 58.45 121.165) (end 57.3 122.315) (width 0.2) (layer "F.Cu") (net 114) (uuid "3c8abcac-8355-42be-b6a9-306d27d394fb") ) (segment (start 125.32 80.9) (end 125.32 77.6) (width 0.25) (layer "F.Cu") (net 114) (uuid "4653aa03-2fbe-4471-8a97-f8f837b48c20") ) (segment (start 86.531372 86.158578) (end 86.531372 84.731371) (width 0.2) (layer "F.Cu") (net 114) (uuid "4ddb1dcc-1bbd-4063-a13a-e8fac6414357") ) (segment (start 58.45 118.75) (end 58.45 121.165) (width 0.2) (layer "F.Cu") (net 114) (uuid "4ddd603d-33f3-47f3-a63f-c29237ba0f27") ) (segment (start 70.95 88.85) (end 72.1 87.7) (width 0.2) (layer "F.Cu") (net 114) (uuid "5ae8153e-d8b6-4d9f-bc7c-b371663b6284") ) (segment (start 58.7 90.2) (end 60.634314 90.2) (width 0.2) (layer "F.Cu") (net 114) (uuid "5c0aa7b2-11d5-414f-bdf5-24a1f2893976") ) (segment (start 108.131372 77) (end 111.531372 73.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "5c3001b3-3442-46ea-9966-602a86277938") ) (segment (start 92 79.262743) (end 92 77.634314) (width 0.2) (layer "F.Cu") (net 114) (uuid "621707ad-fc96-4da2-9a8c-1f61cc246f97") ) (segment (start 50.1 123.05) (end 50.1 126.8) (width 0.2) (layer "F.Cu") (net 114) (uuid "62c5c262-acad-419f-b3c7-4328124a68a4") ) (segment (start 92 77.634314) (end 94.134315 75.5) (width 0.2) (layer "F.Cu") (net 114) (uuid "642d0950-9ec4-49ef-8439-0802d5645f8f") ) (segment (start 105.834314 75.5) (end 107.334314 77) (width 0.2) (layer "F.Cu") (net 114) (uuid "65123aa6-1612-4ba8-a6b5-c0b82e9867ff") ) (segment (start 50.1 126.8) (end 51.144368 127.844368) (width 0.2) (layer "F.Cu") (net 114) (uuid "6558c1f3-f1a8-4492-9f40-7c2f2df31ef3") ) (segment (start 127.2 76.4) (end 125.32 74.52) (width 0.25) (layer "F.Cu") (net 114) (uuid "6879df1b-e358-439d-86fa-901791936ec6") ) (segment (start 51.94 117.6) (end 57.3 117.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "68849b8d-c0ad-45ac-a371-421d5f3ee83c") ) (segment (start 51.144368 127.844368) (end 51.144368 130.2) (width 0.2) (layer "F.Cu") (net 114) (uuid "775c3cc9-d89e-411d-811a-0e3efb26f28c") ) (segment (start 82.647058 87.7) (end 83.64706 86.7) (width 0.2) (layer "F.Cu") (net 114) (uuid "79fd87bd-6d0f-460b-91cb-d62b1df8b9df") ) (segment (start 107.334314 77) (end 108.131372 77) (width 0.2) (layer "F.Cu") (net 114) (uuid "84d7bc40-aacf-43ea-8e3a-354788764f95") ) (segment (start 60.634314 90.2) (end 61.984314 88.85) (width 0.2) (layer "F.Cu") (net 114) (uuid "858af3fd-0f29-43e8-afb0-47c2a751a999") ) (segment (start 83.64706 86.7) (end 85.98995 86.7) (width 0.2) (layer "F.Cu") (net 114) (uuid "8baef481-6214-4968-9da3-aa6faf17af7b") ) (segment (start 125.32 74.52) (end 125.32 74.2) (width 0.25) (layer "F.Cu") (net 114) (uuid "8fda20db-92b5-4927-bcbc-c3cbe346a2ee") ) (segment (start 46.99 111.09) (end 46.99 109.81) (width 0.2) (layer "F.Cu") (net 114) (uuid "999812c1-ae4c-4879-a7a0-4ff12920717e") ) (segment (start 131.25 74.85) (end 131.25 75.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "99cd8ec0-0655-4a85-a219-df849758645c") ) (segment (start 94.134315 75.5) (end 105.834314 75.5) (width 0.2) (layer "F.Cu") (net 114) (uuid "9ae34fd9-9203-48f2-9528-5f54c4db2e77") ) (segment (start 53.534314 109) (end 55.8 106.734314) (width 0.2) (layer "F.Cu") (net 114) (uuid "a70e5842-d509-4c8c-8e4a-1878192a26e3") ) (segment (start 116.34142 72.6) (end 127.5 72.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "a9638c7d-1bf3-4429-85a0-421d6b494b52") ) (segment (start 61.984314 88.85) (end 70.95 88.85) (width 0.2) (layer "F.Cu") (net 114) (uuid "a997090c-cb5a-4fe6-9b99-aa7d3b0f35d2") ) (segment (start 130.45 76.4) (end 127.2 76.4) (width 0.25) (layer "F.Cu") (net 114) (uuid "b6420c85-70bd-4741-b034-d3a931d75c3f") ) (segment (start 46.99 112.65) (end 51.94 117.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "c27d52fb-608f-42e2-b79f-bfe1d219ba44") ) (segment (start 50.85 121.35) (end 49.95 122.25) (width 0.2) (layer "F.Cu") (net 114) (uuid "cb616824-b5c2-462c-9cf7-8795866832d8") ) (segment (start 127.5 72.6) (end 129 74.1) (width 0.2) (layer "F.Cu") (net 114) (uuid "cbf92666-410a-4bec-992c-4794b7fa173f") ) (segment (start 57.3 122.315) (end 56.335 121.35) (width 0.2) (layer "F.Cu") (net 114) (uuid "ce97be8b-e03f-470e-b0ab-d75721c9406d") ) (segment (start 58.4 95) (end 58.4 90.5) (width 0.2) (layer "F.Cu") (net 114) (uuid "cfdb712b-b372-4ecf-a6ab-cccee959d409") ) (segment (start 86.531372 84.731371) (end 92 79.262743) (width 0.2) (layer "F.Cu") (net 114) (uuid "d2643c0f-03e9-4556-8866-40fbd3ac7331") ) (segment (start 56.335 121.35) (end 50.85 121.35) (width 0.2) (layer "F.Cu") (net 114) (uuid "d98ea406-26e6-4cb0-b787-5f7df4e5ec8a") ) (segment (start 131.25 75.6) (end 130.45 76.4) (width 0.25) (layer "F.Cu") (net 114) (uuid "dba67819-2605-4324-bb81-f2a0632847fd") ) (segment (start 111.531372 73.6) (end 115.34142 73.6) (width 0.2) (layer "F.Cu") (net 114) (uuid "e09e4988-e35d-425b-be39-1a58c10e3978") ) (segment (start 129 74.1) (end 130.5 74.1) (width 0.2) (layer "F.Cu") (net 114) (uuid "e46f0d46-1889-4507-ace2-10a54fc392db") ) (segment (start 49.95 122.25) (end 49.3 122.25) (width 0.2) (layer "F.Cu") (net 114) (uuid "e47211e6-565f-4628-a8d3-4511b7ace5b9") ) (segment (start 130.5 74.1) (end 131.25 74.85) (width 0.2) (layer "F.Cu") (net 114) (uuid "e6d38b9b-54c5-4136-a89d-b41aed51f788") ) (segment (start 72.1 87.7) (end 82.647058 87.7) (width 0.2) (layer "F.Cu") (net 114) (uuid "f0f4e5a8-7819-4440-b492-4816148bbbdb") ) (segment (start 47.8 109) (end 53.534314 109) (width 0.2) (layer "F.Cu") (net 114) (uuid "f13dbf21-71c1-4481-9e9a-88934dfe0c9c") ) (segment (start 55.8 97.6) (end 58.4 95) (width 0.2) (layer "F.Cu") (net 114) (uuid "f7045586-63ed-488e-bcb1-55135e432a83") ) (segment (start 85.98995 86.7) (end 86.531372 86.158578) (width 0.2) (layer "F.Cu") (net 114) (uuid "f7421737-6389-4429-8bd3-fb74ff5ce257") ) (segment (start 39.37 111.09) (end 39.37 121.12) (width 0.25) (layer "F.Cu") (net 115) (uuid "63c4c07d-d4c1-495f-aa0d-7fd8912842dd") ) (segment (start 46.15 123.75) (end 47 124.6) (width 0.25) (layer "F.Cu") (net 115) (uuid "907e7c5a-bf5f-412c-9dde-3455f14d5c36") ) (segment (start 42 123.75) (end 46.15 123.75) (width 0.25) (layer "F.Cu") (net 115) (uuid "bd432b4c-a5a9-436d-b924-7d43f92426e0") ) (segment (start 46.992 124.98) (end 47 124.988) (width 0.25) (layer "F.Cu") (net 115) (uuid "c94c41e7-2ecf-4a3c-9088-cf2d3c59b939") ) (segment (start 42.672 124.98) (end 46.992 124.98) (width 0.25) (layer "F.Cu") (net 115) (uuid "d7bcb67d-cbb7-4c5f-8cbc-29633ba43562") ) (segment (start 49.35 80.5) (end 46.546 80.5) (width 0.25) (layer "F.Cu") (net 115) (uuid "eb61b82d-ea44-4013-a10c-5f8fe66ad33a") ) (segment (start 39.37 121.12) (end 42 123.75) (width 0.25) (layer "F.Cu") (net 115) (uuid "f153f35d-df1b-4634-a884-267341b24cff") ) (segment (start 47 124.6) (end 47 124.988) (width 0.25) (layer "F.Cu") (net 115) (uuid "f9e6bfce-a6a1-47c1-8da3-8bc45177d930") ) (segment (start 46.546 80.5) (end 44.75 82.296) (width 0.25) (layer "F.Cu") (net 115) (uuid "fa033cce-23de-4c86-bd08-f295706471db") ) (segment (start 39.37 111.09) (end 39.37 109.93) (width 0.25) (layer "B.Cu") (net 115) (uuid "1fdf36ae-d38f-445a-a9c7-7f5d61611ab3") ) (segment (start 54.625 78.25) (end 50.528 78.25) (width 0.25) (layer "B.Cu") (net 115) (uuid "23e69728-331d-445e-973a-dcc6c276a164") ) (segment (start 57.3 119.775) (end 55.975 121.1) (width 0.2) (layer "B.Cu") (net 115) (uuid "2e50afff-b767-4c6c-8c4b-6bed6d60ee41") ) (segment (start 48.2 84.2) (end 46.296 82.296) (width 0.25) (layer "B.Cu") (net 115) (uuid "3a2d1b16-536b-4e70-b7ac-6db552fd7f1d") ) (segment (start 50.528 78.25) (end 46.482 82.296) (width 0.25) (layer "B.Cu") (net 115) (uuid "49503374-82be-4e83-8be1-92f8b8dcd8d8") ) (segment (start 54.9 100.5) (end 48.2 93.8) (width 0.25) (layer "B.Cu") (net 115) (uuid "6b81d622-b710-44bf-a429-7395369a90f6") ) (segment (start 46.296 82.296) (end 44.75 82.296) (width 0.25) (layer "B.Cu") (net 115) (uuid "7414b971-86cf-4726-86f8-42153eeed1e9") ) (segment (start 46.482 82.296) (end 44.75 82.296) (width 0.25) (layer "B.Cu") (net 115) (uuid "893d0c29-2b41-4276-b08c-9de9cc54434d") ) (segment (start 54.9 106.8) (end 54.9 100.5) (width 0.25) (layer "B.Cu") (net 115) (uuid "8c1bcf69-7716-4e29-9f00-146f33ac7871") ) (segment (start 42.385654 121.1) (end 41.522 121.963654) (width 0.2) (layer "B.Cu") (net 115) (uuid "8e5e901c-dcd8-4d9b-9144-4a8bc35b2cc4") ) (segment (start 55.975 121.1) (end 42.385654 121.1) (width 0.2) (layer "B.Cu") (net 115) (uuid "949f47ea-4e86-4c33-bfe1-1d739bf68e56") ) (segment (start 54 107.7) (end 54.9 106.8) (width 0.25) (layer "B.Cu") (net 115) (uuid "ace4048f-2fa6-400e-815c-a03344f4dd2a") ) (segment (start 41.6 107.7) (end 54 107.7) (width 0.25) (layer "B.Cu") (net 115) (uuid "b6f1dc69-3921-4cfc-adf4-d877a8a068c2") ) (segment (start 48.2 93.8) (end 48.2 84.2) (width 0.25) (layer "B.Cu") (net 115) (uuid "b9eaa800-5fb8-4d52-a36e-31b9e63d0733") ) (segment (start 39.37 109.93) (end 41.6 107.7) (width 0.25) (layer "B.Cu") (net 115) (uuid "c49a99d8-11aa-44b0-b41b-b5fb24e393a0") ) (segment (start 41.522 123.83) (end 42.672 124.98) (width 0.2) (layer "B.Cu") (net 115) (uuid "c7592f91-c08d-4a75-bc7d-11d12732bd32") ) (segment (start 41.522 121.963654) (end 41.522 123.83) (width 0.2) (layer "B.Cu") (net 115) (uuid "feb3c9c9-851d-4d9a-92ae-8819d0adb743") ) (segment (start 47 122.25) (end 46.45 122.8) (width 0.25) (layer "F.Cu") (net 116) (uuid "29e0a576-a153-4b64-aa9d-652ae8c4fe1f") ) (segment (start 46.65 122.25) (end 47 122.25) (width 0.25) (layer "F.Cu") (net 116) (uuid "3cd03a64-263c-4614-b8ba-64266448cb9e") ) (segment (start 45.1 117.8) (end 45.1 120.7) (width 0.25) (layer "F.Cu") (net 116) (uuid "4c777889-0f3b-4e1a-a402-18c44146c8df") ) (segment (start 45.1 120.7) (end 46.65 122.25) (width 0.25) (layer "F.Cu") (net 116) (uuid "4f7be124-bb37-4f37-8463-b5a5b6771bf4") ) (segment (start 41.91 114.61) (end 45.1 117.8) (width 0.25) (layer "F.Cu") (net 116) (uuid "5203c291-295d-418e-adc0-727c40c09ac3") ) (segment (start 41.91 111.09) (end 41.91 114.61) (width 0.25) (layer "F.Cu") (net 116) (uuid "ca05e200-efc4-409f-b19f-634a85e4bc6c") ) (segment (start 43.032 122.8) (end 42.672 122.44) (width 0.25) (layer "F.Cu") (net 116) (uuid "d8e17e9e-cf56-415e-ae58-69e882311c34") ) (segment (start 46.45 122.8) (end 43.032 122.8) (width 0.25) (layer "F.Cu") (net 116) (uuid "e039392c-c30b-4f30-b92f-3fc1206461d1") ) (segment (start 57.3 124.5) (end 57.3 124.855) (width 0.2) (layer "B.Cu") (net 116) (uuid "33906d8f-a5fd-491f-b582-e08956121a68") ) (segment (start 43.512 121.6) (end 54.4 121.6) (width 0.2) (layer "B.Cu") (net 116) (uuid "56bca5ba-aa9f-4791-8cc2-467d05224302") ) (segment (start 54.4 121.6) (end 57.3 124.5) (width 0.2) (layer "B.Cu") (net 116) (uuid "826b6c37-3fb6-4c8e-a304-09c65c9b9558") ) (segment (start 42.672 122.44) (end 43.512 121.6) (width 0.2) (layer "B.Cu") (net 116) (uuid "bea84455-38b8-4df1-8baa-177d326ffc04") ) (segment (start 72.438605 88.524999) (end 82.953431 88.524999) (width 0.2) (layer "F.Cu") (net 117) (uuid "0014b190-9578-487e-b364-b6094e3d597e") ) (segment (start 87.331372 86.489948) (end 87.331372 85.062743) (width 0.2) (layer "F.Cu") (net 117) (uuid "098a046b-91ac-4ddf-9c23-3ac7fe8e7dd1") ) (segment (start 62.23 90.47) (end 63.05 89.65) (width 0.2) (layer "F.Cu") (net 117) (uuid "2a20e9ce-8487-428a-a995-456b4229051e") ) (segment (start 71.313604 89.65) (end 72.438605 88.524999) (width 0.2) (layer "F.Cu") (net 117) (uuid "467e71fa-662b-4b71-bc33-847010e2f9b0") ) (segment (start 63.05 89.65) (end 71.313604 89.65) (width 0.2) (layer "F.Cu") (net 117) (uuid "63a80890-604e-4eb6-97f3-c4b463ad1656") ) (segment (start 91.199115 81.195) (end 93.825 81.195) (width 0.2) (layer "F.Cu") (net 117) (uuid "67f3362c-97b2-4936-a00f-eaf25ec2a520") ) (segment (start 86.32132 87.5) (end 87.331372 86.489948) (width 0.2) (layer "F.Cu") (net 117) (uuid "a804a054-6ba9-4846-9c58-2fc97af19d9b") ) (segment (start 62.23 93.31) (end 62.23 90.47) (width 0.2) (layer "F.Cu") (net 117) (uuid "b07a2a48-73f4-40ff-a52c-a66c86a46557") ) (segment (start 82.953431 88.524999) (end 83.97843 87.5) (width 0.2) (layer "F.Cu") (net 117) (uuid "c23616e5-26ef-4675-84de-e169928fce1d") ) (segment (start 87.331372 85.062743) (end 91.199115 81.195) (width 0.2) (layer "F.Cu") (net 117) (uuid "ce37da00-9fc2-440d-91f2-c4ecd1aa03d4") ) (segment (start 83.97843 87.5) (end 86.32132 87.5) (width 0.2) (layer "F.Cu") (net 117) (uuid "efb7013a-78df-4cd2-93cb-b26cd504acd9") ) (segment (start 75.350001 89.849999) (end 96.487437 89.849999) (width 0.2) (layer "F.Cu") (net 118) (uuid "021e3e55-1a8f-4530-8d3e-540665079f7f") ) (segment (start 74.93 90.27) (end 75.350001 89.849999) (width 0.2) (layer "F.Cu") (net 118) (uuid "0be8daaf-7668-4e81-9106-b6ae969f7ce0") ) (segment (start 97.375 87.825) (end 97.655 87.545) (width 0.2) (layer "F.Cu") (net 118) (uuid "100ef666-01c8-425e-abab-815efa5d9062") ) (segment (start 97.375 88.962436) (end 97.375 87.825) (width 0.2) (layer "F.Cu") (net 118) (uuid "18ba6238-5588-458b-a767-404d1b34a812") ) (segment (start 74.93 93.31) (end 74.93 90.27) (width 0.2) (layer "F.Cu") (net 118) (uuid "db74c7f1-eb39-4709-85c9-858ab4135a54") ) (segment (start 97.655 87.545) (end 98.775 87.545) (width 0.2) (layer "F.Cu") (net 118) (uuid "e8aa0e69-49ee-48ab-8124-4ca74ccbbbbe") ) (segment (start 96.487437 89.849999) (end 97.375 88.962436) (width 0.2) (layer "F.Cu") (net 118) (uuid "f3e7dade-9083-4a6d-aeee-8d0d950a6de9") ) (segment (start 72.39 93.31) (end 72.39 90.31) (width 0.2) (layer "F.Cu") (net 119) (uuid "0c605cac-bd66-489a-ab87-c3645d3f8868") ) (segment (start 97.325 86.275) (end 98.775 86.275) (width 0.2) (layer "F.Cu") (net 119) (uuid "3c837e56-92b4-44d4-bd4d-b9196226b950") ) (segment (start 96.286397 89.449999) (end 96.95 88.786396) (width 0.2) (layer "F.Cu") (net 119) (uuid "3ecc2ea8-1367-49a5-bf09-d5619ccba97e") ) (segment (start 72.39 90.31) (end 73.250001 89.449999) (width 0.2) (layer "F.Cu") (net 119) (uuid "9d74227d-bae2-46ca-89d8-f6c00ead6601") ) (segment (start 96.95 88.786396) (end 96.95 86.65) (width 0.2) (layer "F.Cu") (net 119) (uuid "b7370a6d-a994-46cf-bd41-62b51645b7c8") ) (segment (start 73.250001 89.449999) (end 96.286397 89.449999) (width 0.2) (layer "F.Cu") (net 119) (uuid "e8d88189-d827-4d0f-aa7f-0024ca23be67") ) (segment (start 96.95 86.65) (end 97.325 86.275) (width 0.2) (layer "F.Cu") (net 119) (uuid "f6a3ed88-b3b7-4641-871a-d851dce9b510") ) (segment (start 96.5 88.6) (end 96.5 86.1) (width 0.2) (layer "F.Cu") (net 120) (uuid "12a6e89f-84af-4839-bbfb-0c43fc09cb12") ) (segment (start 67.31 93.31) (end 67.31 90.39) (width 0.2) (layer "F.Cu") (net 120) (uuid "2db65404-9f37-4b84-aa17-a2c74b43c59f") ) (segment (start 97.6 85) (end 98.77 85) (width 0.2) (layer "F.Cu") (net 120) (uuid "51834d94-b24e-4d21-ab93-fbda4071f578") ) (segment (start 67.6 90.1) (end 71.5 90.1) (width 0.2) (layer "F.Cu") (net 120) (uuid "63f9ecd3-1889-4c16-a255-1baa5b60a8b9") ) (segment (start 96.5 86.1) (end 97.6 85) (width 0.2) (layer "F.Cu") (net 120) (uuid "77006666-a038-4199-b3cc-8899ae377e51") ) (segment (start 98.77 85) (end 98.775 85.005) (width 0.2) (layer "F.Cu") (net 120) (uuid "7707f469-b7a9-4360-a04f-cf38bed4c5ea") ) (segment (start 72.550001 89.049999) (end 96.050001 89.049999) (width 0.2) (layer "F.Cu") (net 120) (uuid "bacae03a-de4a-4bda-b965-c632fd69c51f") ) (segment (start 96.050001 89.049999) (end 96.5 88.6) (width 0.2) (layer "F.Cu") (net 120) (uuid "bcd81686-bc23-4838-826a-5430b880f579") ) (segment (start 67.31 90.39) (end 67.6 90.1) (width 0.2) (layer "F.Cu") (net 120) (uuid "de6d4249-23cd-4894-9e18-b70f5f0356a5") ) (segment (start 71.5 90.1) (end 72.550001 89.049999) (width 0.2) (layer "F.Cu") (net 120) (uuid "e3a7f820-e30b-44ab-8207-753974fe5877") ) (segment (start 44.5 96.3) (end 41.91 93.71) (width 0.3) (layer "F.Cu") (net 121) (uuid "09f61bcf-5270-4fc8-94aa-66156b2c3cda") ) (segment (start 44.6885 75.3) (end 43.0265 76.962) (width 0.5) (layer "F.Cu") (net 121) (uuid "151612e0-e8d7-4817-80b3-a52127b8f7d9") ) (segment (start 47 116.5) (end 46.9 116.5) (width 0.3) (layer "F.Cu") (net 121) (uuid "24fce394-fb15-4c4e-9a98-b2904b6cda09") ) (segment (start 49.1 96.3) (end 44.5 96.3) (width 0.3) (layer "F.Cu") (net 121) (uuid "2c252602-8aa7-4d78-a4b7-98a91dc0af47") ) (segment (start 41.91 93.71) (end 41.91 93.31) (width 0.3) (layer "F.Cu") (net 121) (uuid "4588e3aa-249e-45dd-9f6e-0b6995b39e45") ) (segment (start 60.6 75.35) (end 60.55 75.3) (width 0.5) (layer "F.Cu") (net 121) (uuid "467afb6d-1c57-412f-bc91-f1f141c8914b") ) (segment (start 45.79 115.39) (end 45.79 109.89) (width 0.3) (layer "F.Cu") (net 121) (uuid "53be4cd9-6073-440e-b5b4-5cf84e14d3bb") ) (segment (start 60.55 75.3) (end 44.6885 75.3) (width 0.5) (layer "F.Cu") (net 121) (uuid "74260370-8631-41b5-b978-8c773d3ff44c") ) (segment (start 45.79 109.89) (end 47.13 108.55) (width 0.3) (layer "F.Cu") (net 121) (uuid "77d3bfe6-a98c-4046-89f1-52b1abe4e12f") ) (segment (start 46.9 116.5) (end 45.79 115.39) (width 0.3) (layer "F.Cu") (net 121) (uuid "7984ba70-419b-450e-bec1-9f36e35d7a9d") ) (segment (start 55.35 102.55) (end 49.1 96.3) (width 0.3) (layer "F.Cu") (net 121) (uuid "86771b8a-526a-4ca8-bc1b-a6b887695eff") ) (segment (start 41.91 78.0785) (end 43.0265 76.962) (width 0.5) (layer "F.Cu") (net 121) (uuid "b27d4f55-ef41-4447-bcfe-f04de784c8ed") ) (segment (start 47.13 108.55) (end 53.2 108.55) (width 0.3) (layer "F.Cu") (net 121) (uuid "c213bb80-7103-44b4-8637-7a648e1fb324") ) (segment (start 60.35 75.4) (end 60.4 75.35) (width 0.5) (layer "F.Cu") (net 121) (uuid "c7906e9d-7749-4c79-ac84-ccdfa2851b78") ) (segment (start 41.91 93.31) (end 41.91 78.0785) (width 0.5) (layer "F.Cu") (net 121) (uuid "d2803b8c-a89c-4a0c-907e-a00715e8b258") ) (segment (start 55.35 106.4) (end 55.35 102.55) (width 0.3) (layer "F.Cu") (net 121) (uuid "f57fcaa4-491a-4c81-97c7-a8b9258400c7") ) (segment (start 53.2 108.55) (end 55.35 106.4) (width 0.3) (layer "F.Cu") (net 121) (uuid "fa844372-920a-483c-8675-342488f4871c") ) (via (at 47 116.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 121) (uuid "7318e118-a914-4e0d-8b27-52a7e833c87c") ) (segment (start 39.7 118.6) (end 41.8 116.5) (width 0.3) (layer "B.Cu") (net 121) (uuid "03168ac0-ca09-4d63-b804-fbb4cc7d4422") ) (segment (start 41.8 116.5) (end 47 116.5) (width 0.3) (layer "B.Cu") (net 121) (uuid "03cc4363-02d8-4686-841c-bc30819da0ab") ) (segment (start 39.7 125.3) (end 39.7 118.6) (width 0.3) (layer "B.Cu") (net 121) (uuid "26276dae-113f-4921-9a02-1c7899b5895b") ) (segment (start 44.6 126.6) (end 41 126.6) (width 0.3) (layer "B.Cu") (net 121) (uuid "59c826ac-863b-4b21-b94a-85faff405061") ) (segment (start 57.3 129.935) (end 47.935 129.935) (width 0.3) (layer "B.Cu") (net 121) (uuid "78b4775f-e01e-4d6c-9047-4d114b29faf6") ) (segment (start 41 126.6) (end 39.7 125.3) (width 0.3) (layer "B.Cu") (net 121) (uuid "a5e4d8d6-8ecc-4577-9474-780df2b3d2b7") ) (segment (start 47.935 129.935) (end 44.6 126.6) (width 0.3) (layer "B.Cu") (net 121) (uuid "d7692a09-45ff-442d-b8ca-da33e0c67cac") ) (segment (start 66.925 126.25) (end 65.15 126.25) (width 0.2) (layer "F.Cu") (net 125) (uuid "1151f445-138b-4a3c-ad04-7d1f8c411a04") ) (segment (start 67.93125 118.98) (end 67.93125 117.4) (width 0.2) (layer "F.Cu") (net 125) (uuid "1d4cf666-c536-4eb2-b1b2-5fdd5dbe268d") ) (segment (start 67.93125 119.790442) (end 67.93125 118.98) (width 0.2) (layer "F.Cu") (net 125) (uuid "2226b677-c0b9-4b77-9b1a-dc015449d422") ) (segment (start 73.2 124.060001) (end 73.2 125.6) (width 0.2) (layer "F.Cu") (net 125) (uuid "2262cda8-78b3-4819-b88a-c1a3816ec07d") ) (segment (start 71.875 123.71) (end 72.849999 123.71) (width 0.2) (layer "F.Cu") (net 125) (uuid "23c74f69-336a-4250-a509-b3005f2c7a6e") ) (segment (start 71.875 123.71) (end 70.41 123.71) (width 0.2) (layer "F.Cu") (net 125) (uuid "48129d83-493f-4be9-b2a6-cbaa9ed38e75") ) (segment (start 70.575 125.725) (end 70.575 126.775) (width 0.2) (layer "F.Cu") (net 125) (uuid "6199c60a-c873-4e8d-b94d-41c28b18d501") ) (segment (start 68.275 125.874999) (end 68.275 122.775) (width 0.2) (layer "F.Cu") (net 125) (uuid "682c6741-1189-4b22-8fa4-15a01a1135ae") ) (segment (start 71.32 127.52) (end 71.875 127.52) (width 0.2) (layer "F.Cu") (net 125) (uuid "8d729673-89cd-4e32-b57b-f2c43fbe59ed") ) (segment (start 73.2 125.6) (end 73.175 125.625) (width 0.2) (layer "F.Cu") (net 125) (uuid "a76a3f10-d979-448d-aa2d-ae6ad649a89c") ) (segment (start 70.575 126.775) (end 71.32 127.52) (width 0.2) (layer "F.Cu") (net 125) (uuid "a92e6957-d4cd-430f-bdf8-d6c02d5d274b") ) (segment (start 71.875 123.71) (end 73.79 123.71) (width 0.2) (layer "F.Cu") (net 125) (uuid "b414c83f-b1dc-43d4-b795-3308129d9138") ) (segment (start 70.675 125.625) (end 70.575 125.725) (width 0.2) (layer "F.Cu") (net 125) (uuid "b95b835b-6be8-4b32-a589-3ba5faf3ccd5") ) (segment (start 69.9 121.759192) (end 67.93125 119.790442) (width 0.2) (layer "F.Cu") (net 125) (uuid "bc35eb5d-d38c-40a4-8b0c-f4344da8c1cd") ) (segment (start 67.94 122.44) (end 66.925 122.44) (width 0.2) (layer "F.Cu") (net 125) (uuid "d09b93dc-d81a-41c9-a416-ade71d19c022") ) (segment (start 65.15 126.25) (end 65.1 126.3) (width 0.2) (layer "F.Cu") (net 125) (uuid "d71a5cc8-87f1-4073-b992-d8dbe5becf6a") ) (segment (start 66.925 126.25) (end 67.899999 126.25) (width 0.2) (layer "F.Cu") (net 125) (uuid "e45125e8-943e-40a8-b6de-e1b59e3c587b") ) (segment (start 68.275 122.775) (end 67.94 122.44) (width 0.2) (layer "F.Cu") (net 125) (uuid "e599ce08-8f11-4d92-a6e1-d5d83a19d957") ) (segment (start 70.41 123.71) (end 69.9 123.2) (width 0.2) (layer "F.Cu") (net 125) (uuid "e7206c60-502a-4f9d-89a9-28d37c5bedc7") ) (segment (start 73.79 123.71) (end 73.8 123.7) (width 0.2) (layer "F.Cu") (net 125) (uuid "e76e79a7-65ee-4195-9b98-477daadfa673") ) (segment (start 67.899999 126.25) (end 68.275 125.874999) (width 0.2) (layer "F.Cu") (net 125) (uuid "ed936acc-90d7-4e7d-8a87-4929a6c44588") ) (segment (start 69.9 123.2) (end 69.9 121.759192) (width 0.2) (layer "F.Cu") (net 125) (uuid "f2a3d8a0-98d0-4831-a53e-6e64b5d02624") ) (segment (start 73.175 125.625) (end 70.675 125.625) (width 0.2) (layer "F.Cu") (net 125) (uuid "fc8eb799-d112-434d-9980-b678befa1d38") ) (segment (start 72.849999 123.71) (end 73.2 124.060001) (width 0.2) (layer "F.Cu") (net 125) (uuid "fce89f2f-a862-4275-88d9-5eac63f0d4fc") ) (via (at 73.8 123.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 125) (uuid "67fe3d5e-53a5-4f39-a521-6f71aa4c9001") ) (via (at 65.1 126.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 125) (uuid "b0f4ea33-83b5-4bce-b40d-851319c5c40c") ) (segment (start 69.1 126.3) (end 65.1 126.3) (width 0.2) (layer "B.Cu") (net 125) (uuid "7d7826da-8e7e-4d37-9685-6735db07f7e5") ) (segment (start 73.8 123.7) (end 71.7 123.7) (width 0.2) (layer "B.Cu") (net 125) (uuid "9c79f0ff-6a77-4fd5-8598-209e664c3be0") ) (segment (start 71.7 123.7) (end 69.1 126.3) (width 0.2) (layer "B.Cu") (net 125) (uuid "dff4e619-93cb-4b2a-b575-48bd84db2142") ) (segment (start 77.3775 119) (end 77.3775 117.41) (width 0.2) (layer "F.Cu") (net 126) (uuid "29e2c0a3-a102-48e5-8833-e6ed5be180d5") ) (segment (start 79.949999 127.119999) (end 79.949999 126.009448) (width 0.2) (layer "F.Cu") (net 126) (uuid "2e002b8f-3c14-4f04-b0c4-83e59712cbcc") ) (segment (start 81.324999 127.52) (end 80.35 127.52) (width 0.2) (layer "F.Cu") (net 126) (uuid "3842f1f9-528a-48e7-a191-2e6db1edf3aa") ) (segment (start 79.449999 122.809999) (end 79.449999 121.939949) (width 0.2) (layer "F.Cu") (net 126) (uuid "3aa4419b-1e55-4cf6-867c-15a6ea5170f3") ) (segment (start 82.649999 124) (end 82.359999 123.71) (width 0.2) (layer "F.Cu") (net 126) (uuid "5b00b697-5187-4d74-b17f-dd38fe886d50") ) (segment (start 76.314999 122.5) (end 76.374999 122.44) (width 0.2) (layer "F.Cu") (net 126) (uuid "5ba624af-ee85-478f-9af5-73de017c13d1") ) (segment (start 77.3775 119.86745) (end 77.3775 119) (width 0.2) (layer "F.Cu") (net 126) (uuid "60edc1e4-6f69-4053-8cf6-20c1626f5a47") ) (segment (start 83.339999 123.71) (end 83.349999 123.7) (width 0.2) (layer "F.Cu") (net 126) (uuid "6218b832-2d09-404a-8ca3-b1ac998bf3d9") ) (segment (start 77.571807 122.44) (end 76.374999 122.44) (width 0.2) (layer "F.Cu") (net 126) (uuid "663f03d2-245f-4ec1-a9f9-7fe938d6f1e9") ) (segment (start 82.359999 123.71) (end 81.324999 123.71) (width 0.2) (layer "F.Cu") (net 126) (uuid "6faa193d-26b0-450c-b959-be98f94abcc9") ) (segment (start 74.649999 122.5) (end 76.314999 122.5) (width 0.2) (layer "F.Cu") (net 126) (uuid "899e3ee7-728f-4d84-93d1-ce5d81052e64") ) (segment (start 76.374999 126.25) (end 77.349998 126.25) (width 0.2) (layer "F.Cu") (net 126) (uuid "8bce1af5-f4c7-4306-af85-73aae191180b") ) (segment (start 77.849999 122.718192) (end 77.571807 122.44) (width 0.2) (layer "F.Cu") (net 126) (uuid "8cf2c9e5-fcd3-445a-a23e-d827bb6aba78") ) (segment (start 81.324999 123.71) (end 83.339999 123.71) (width 0.2) (layer "F.Cu") (net 126) (uuid "9b331009-3243-4a83-a960-34f4bb6be0a2") ) (segment (start 80.35 123.71) (end 79.449999 122.809999) (width 0.2) (layer "F.Cu") (net 126) (uuid "9e9ddefe-98dc-4d27-88e6-c1fc00d98213") ) (segment (start 80.359447 125.6) (end 82.320551 125.6) (width 0.2) (layer "F.Cu") (net 126) (uuid "a91bb34f-1cd4-4391-be7d-1938f4a6f3b1") ) (segment (start 81.324999 123.71) (end 80.35 123.71) (width 0.2) (layer "F.Cu") (net 126) (uuid "aed806e7-b8c1-4954-ae56-68874e856f21") ) (segment (start 79.449999 121.939949) (end 77.3775 119.86745) (width 0.2) (layer "F.Cu") (net 126) (uuid "b032e692-8ef5-4eca-8d63-c11673cde211") ) (segment (start 77.849999 125.749999) (end 77.849999 122.718192) (width 0.2) (layer "F.Cu") (net 126) (uuid "c888eb31-2dbe-4c38-a993-47dad33deb84") ) (segment (start 82.649999 125.270552) (end 82.649999 124) (width 0.2) (layer "F.Cu") (net 126) (uuid "d39e29c3-c9a9-47de-acce-36f7cf74ab0f") ) (segment (start 79.949999 126.009448) (end 80.359447 125.6) (width 0.2) (layer "F.Cu") (net 126) (uuid "dbceb034-3a67-45f6-bcd1-68b29389786c") ) (segment (start 77.349998 126.25) (end 77.849999 125.749999) (width 0.2) (layer "F.Cu") (net 126) (uuid "e13d51e8-9911-4766-8267-9391a7f64ee4") ) (segment (start 80.35 127.52) (end 79.949999 127.119999) (width 0.2) (layer "F.Cu") (net 126) (uuid "e7f6ab57-3bec-4a19-ba6a-158c381559ad") ) (segment (start 82.320551 125.6) (end 82.649999 125.270552) (width 0.2) (layer "F.Cu") (net 126) (uuid "ffe68c57-cac2-4291-90cb-9eb9214e6b8e") ) (via (at 83.349999 123.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 126) (uuid "56ea278c-8f57-4cb5-908d-f1ed47fb080d") ) (via (at 74.649999 122.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free yes) (net 126) (uuid "739803e7-a4c1-44bc-9fbf-56ed13808a13") ) (segment (start 78.849999 123.7) (end 83.349999 123.7) (width 0.2) (layer "B.Cu") (net 126) (uuid "23c9f569-67b3-4e68-bef0-50a2b23b74aa") ) (segment (start 74.649999 122.5) (end 77.649999 122.5) (width 0.2) (layer "B.Cu") (net 126) (uuid "b44f01ba-aef3-4dca-b702-b5c5e89240ce") ) (segment (start 77.649999 122.5) (end 78.849999 123.7) (width 0.2) (layer "B.Cu") (net 126) (uuid "ffbe3d69-9d36-4a1e-9379-6ce24fdc19eb") ) (segment (start 69.525 58) (end 69.325 58.2) (width 0.25) (layer "F.Cu") (net 130) (uuid "7036caff-401f-4ff3-9a73-aceb0d18abe5") ) (segment (start 71.0875 58) (end 69.525 58) (width 0.25) (layer "F.Cu") (net 130) (uuid "fb2e0b96-fc60-43cd-af19-a819498604be") ) (segment (start 55.3625 81.8) (end 55.3625 80.0525) (width 0.25) (layer "F.Cu") (net 131) (uuid "107e3e0b-c354-4ef9-8c16-6829eeeb1ae5") ) (segment (start 55.3625 80.0525) (end 57.165 78.25) (width 0.25) (layer "F.Cu") (net 131) (uuid "d2558a0d-b98c-4a9c-9cc5-ad1829f634d5") ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "2204b7a7-a325-4a3f-94a1-747c0a75a9cf") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 70.6 95.075) (xy 70.6 103.1) (xy 67.6 103.1) (xy 67.6 95.075) ) ) ) (zone (net 2) (net_name "GND") (layer "F.Cu") (uuid "c01f5cc6-0083-48e0-9be7-a9d472f38092") (hatch edge 0.508) (connect_pads (clearance 0.508) ) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 7) ) (polygon (pts (xy 172.5 135.5) (xy 37.5 135.5) (xy 37.5 54) (xy 172.5 54) ) ) (filled_polygon (layer "F.Cu") (pts (xy 167.502748 54.50062) (xy 167.886661 54.517382) (xy 167.89761 54.518339) (xy 168.275883 54.56814) (xy 168.286699 54.570048) (xy 168.659184 54.652626) (xy 168.669802 54.655471) (xy 169.033668 54.770197) (xy 169.043997 54.773956) (xy 169.396494 54.919965) (xy 169.406456 54.924611) (xy 169.744875 55.100781) (xy 169.754378 55.106267) (xy 170.076174 55.311274) (xy 170.085166 55.31757) (xy 170.387863 55.549839) (xy 170.396283 55.556904) (xy 170.67757 55.814656) (xy 170.685343 55.822429) (xy 170.943095 56.103716) (xy 170.95016 56.112136) (xy 171.182429 56.414833) (xy 171.188734 56.423837) (xy 171.393727 56.745613) (xy 171.399223 56.755133) (xy 171.575388 57.093543) (xy 171.580034 57.103505) (xy 171.726043 57.456002) (xy 171.729802 57.466331) (xy 171.844528 57.830197) (xy 171.847373 57.840815) (xy 171.92995 58.213296) (xy 171.931859 58.224121) (xy 171.981659 58.602388) (xy 171.982617 58.613338) (xy 171.99938 58.997251) (xy 171.9995 59.002747) (xy 171.9995 130.497252) (xy 171.99938 130.502748) (xy 171.982617 130.886661) (xy 171.981659 130.897611) (xy 171.931859 131.275878) (xy 171.92995 131.286703) (xy 171.847373 131.659184) (xy 171.844528 131.669802) (xy 171.729802 132.033668) (xy 171.726043 132.043997) (xy 171.580034 132.396494) (xy 171.575388 132.406456) (xy 171.399223 132.744866) (xy 171.393727 132.754386) (xy 171.188734 133.076162) (xy 171.182429 133.085166) (xy 170.95016 133.387863) (xy 170.943095 133.396283) (xy 170.685343 133.67757) (xy 170.67757 133.685343) (xy 170.396283 133.943095) (xy 170.387863 133.95016) (xy 170.085166 134.182429) (xy 170.076162 134.188734) (xy 169.754386 134.393727) (xy 169.744866 134.399223) (xy 169.406456 134.575388) (xy 169.396494 134.580034) (xy 169.043997 134.726043) (xy 169.033668 134.729802) (xy 168.669802 134.844528) (xy 168.659184 134.847373) (xy 168.286703 134.92995) (xy 168.275878 134.931859) (xy 167.897611 134.981659) (xy 167.886661 134.982617) (xy 167.502748 134.99938) (xy 167.497252 134.9995) (xy 54.669516 134.9995) (xy 54.601395 134.979498) (xy 54.554902 134.925842) (xy 54.544169 134.860693) (xy 54.552867 134.775553) (xy 54.552868 134.775545) (xy 54.552867 133.374456) (xy 54.542255 133.270574) (xy 54.486483 133.102262) (xy 54.393398 132.951348) (xy 54.393397 132.951347) (xy 54.393392 132.951341) (xy 54.268026 132.825975) (xy 54.26802 132.82597) (xy 54.233366 132.804595) (xy 54.117106 132.732885) (xy 54.024895 132.70233) (xy 53.948795 132.677113) (xy 53.948788 132.677112) (xy 53.844921 132.6665) (xy 53.043823 132.6665) (xy 52.939942 132.677112) (xy 52.771629 132.732885) (xy 52.620715 132.82597) (xy 52.620709 132.825975) (xy 52.495343 132.951341) (xy 52.495338 132.951347) (xy 52.402253 133.102262) (xy 52.346481 133.270572) (xy 52.34648 133.270579) (xy 52.335868 133.374446) (xy 52.335868 134.775545) (xy 52.344567 134.860696) (xy 52.331591 134.930497) (xy 52.282937 134.982201) (xy 52.219219 134.9995) (xy 49.069516 134.9995) (xy 49.001395 134.979498) (xy 48.954902 134.925842) (xy 48.944169 134.860693) (xy 48.952867 134.775553) (xy 48.952868 134.775545) (xy 48.952867 133.374456) (xy 48.942255 133.270574) (xy 48.886483 133.102262) (xy 48.793398 132.951348) (xy 48.793397 132.951347) (xy 48.793392 132.951341) (xy 48.668026 132.825975) (xy 48.66802 132.82597) (xy 48.633366 132.804595) (xy 48.517106 132.732885) (xy 48.424895 132.70233) (xy 48.348795 132.677113) (xy 48.348788 132.677112) (xy 48.244921 132.6665) (xy 47.443823 132.6665) (xy 47.339942 132.677112) (xy 47.171629 132.732885) (xy 47.020715 132.82597) (xy 47.020709 132.825975) (xy 46.895343 132.951341) (xy 46.895338 132.951347) (xy 46.802253 133.102262) (xy 46.746481 133.270572) (xy 46.74648 133.270579) (xy 46.735868 133.374446) (xy 46.735868 134.775545) (xy 46.744567 134.860696) (xy 46.731591 134.930497) (xy 46.682937 134.982201) (xy 46.619219 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.244339 131.951658) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.066957 131.266896) (xy 38.018339 130.89761) (xy 38.017801 130.891456) (xy 48.336369 130.891456) (xy 48.339302 130.92875) (xy 48.385686 131.0884) (xy 48.470316 131.231501) (xy 48.470317 131.231503) (xy 48.587865 131.349051) (xy 48.730968 131.433681) (xy 48.890368 131.479991) (xy 48.890368 130.454) (xy 48.336369 130.454) (xy 48.336369 130.891456) (xy 38.017801 130.891456) (xy 38.017382 130.886661) (xy 38.012387 130.772268) (xy 38.004421 130.58981) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 129.508543) (xy 48.336368 129.508543) (xy 48.336368 129.946) (xy 48.890368 129.946) (xy 48.890368 128.920007) (xy 48.730966 128.966318) (xy 48.587866 129.050948) (xy 48.587864 129.050949) (xy 48.470317 129.168496) (xy 48.470316 129.168498) (xy 48.385686 129.311598) (xy 48.339302 129.47125) (xy 48.336368 129.508543) (xy 38.0005 129.508543) (xy 38.0005 127.788516) (xy 45.992 127.788516) (xy 46.002605 127.892318) (xy 46.002606 127.892321) (xy 46.058342 128.060525) (xy 46.151365 128.211339) (xy 46.15137 128.211345) (xy 46.276654 128.336629) (xy 46.27666 128.336634) (xy 46.427474 128.429657) (xy 46.595678 128.485393) (xy 46.595681 128.485394) (xy 46.699483 128.495999) (xy 46.699483 128.496) (xy 46.746 128.496) (xy 47.254 128.496) (xy 47.300517 128.496) (xy 47.300516 128.495999) (xy 47.404318 128.485394) (xy 47.404321 128.485393) (xy 47.572525 128.429657) (xy 47.723339 128.336634) (xy 47.723345 128.336629) (xy 47.848629 128.211345) (xy 47.848634 128.211339) (xy 47.941657 128.060525) (xy 47.997393 127.892321) (xy 47.997394 127.892318) (xy 48.007999 127.788516) (xy 48.008 127.788516) (xy 48.008 127.742) (xy 47.254 127.742) (xy 47.254 128.496) (xy 46.746 128.496) (xy 46.746 127.742) (xy 45.992 127.742) (xy 45.992 127.788516) (xy 38.0005 127.788516) (xy 38.0005 127.187483) (xy 45.992 127.187483) (xy 45.992 127.234) (xy 46.746 127.234) (xy 47.254 127.234) (xy 48.008 127.234) (xy 48.008 127.187483) (xy 47.997394 127.083681) (xy 47.997393 127.083678) (xy 47.941657 126.915474) (xy 47.848634 126.76466) (xy 47.848629 126.764654) (xy 47.723345 126.63937) (xy 47.723339 126.639365) (xy 47.572525 126.546342) (xy 47.404321 126.490606) (xy 47.404318 126.490605) (xy 47.300516 126.48) (xy 47.254 126.48) (xy 47.254 127.234) (xy 46.746 127.234) (xy 46.746 126.48) (xy 46.699483 126.48) (xy 46.595681 126.490605) (xy 46.595678 126.490606) (xy 46.427474 126.546342) (xy 46.27666 126.639365) (xy 46.276654 126.63937) (xy 46.15137 126.764654) (xy 46.151365 126.76466) (xy 46.058342 126.915474) (xy 46.002606 127.083678) (xy 46.002605 127.083681) (xy 45.992 127.187483) (xy 38.0005 127.187483) (xy 38.0005 114.238018) (xy 38.020502 114.169897) (xy 38.074158 114.123404) (xy 38.144432 114.1133) (xy 38.202009 114.13715) (xy 38.273792 114.190887) (xy 38.273794 114.190888) (xy 38.273796 114.190889) (xy 38.304808 114.202456) (xy 38.410795 114.241988) (xy 38.410803 114.24199) (xy 38.47135 114.248499) (xy 38.471355 114.248499) (xy 38.471362 114.2485) (xy 38.6105 114.2485) (xy 38.678621 114.268502) (xy 38.725114 114.322158) (xy 38.7365 114.3745) (xy 38.7365 121.182396) (xy 38.740669 121.203352) (xy 38.760845 121.304785) (xy 38.8086 121.420075) (xy 38.877929 121.523833) (xy 38.877931 121.523835) (xy 41.484626 124.130531) (xy 41.518652 124.192843) (xy 41.513587 124.263659) (xy 41.501016 124.288539) (xy 41.473142 124.331205) (xy 41.47314 124.331208) (xy 41.382703 124.537386) (xy 41.382702 124.537387) (xy 41.327437 124.755624) (xy 41.327436 124.75563) (xy 41.327436 124.755632) (xy 41.308844 124.98) (xy 41.326117 125.188456) (xy 41.327437 125.204375) (xy 41.382702 125.422612) (xy 41.382703 125.422613) (xy 41.382704 125.422616) (xy 41.44416 125.562722) (xy 41.473141 125.628793) (xy 41.596275 125.817265) (xy 41.596279 125.81727) (xy 41.748762 125.982908) (xy 41.802035 126.024372) (xy 41.926424 126.121189) (xy 42.124426 126.228342) (xy 42.124427 126.228342) (xy 42.124428 126.228343) (xy 42.211845 126.258353) (xy 42.337365 126.301444) (xy 42.559431 126.3385) (xy 42.559435 126.3385) (xy 42.784565 126.3385) (xy 42.784569 126.3385) (xy 43.006635 126.301444) (xy 43.219574 126.228342) (xy 43.270992 126.200516) (xy 48.042 126.200516) (xy 48.052605 126.304318) (xy 48.052606 126.304321) (xy 48.108342 126.472525) (xy 48.201365 126.623339) (xy 48.20137 126.623345) (xy 48.326654 126.748629) (xy 48.32666 126.748634) (xy 48.477474 126.841657) (xy 48.645678 126.897393) (xy 48.645681 126.897394) (xy 48.749483 126.907999) (xy 48.749483 126.908) (xy 48.796 126.908) (xy 48.796 126.154) (xy 48.042 126.154) (xy 48.042 126.200516) (xy 43.270992 126.200516) (xy 43.417576 126.121189) (xy 43.59524 125.982906) (xy 43.747722 125.817268) (xy 43.810294 125.721495) (xy 43.843555 125.670585) (xy 43.897558 125.624496) (xy 43.949038 125.6135) (xy 46.020106 125.6135) (xy 46.088227 125.633502) (xy 46.127346 125.673353) (xy 46.142222 125.69747) (xy 46.15097 125.711652) (xy 46.150972 125.711654) (xy 46.150975 125.711658) (xy 46.276341 125.837024) (xy 46.276347 125.837029) (xy 46.276348 125.83703) (xy 46.427262 125.930115) (xy 46.595574 125.985887) (xy 46.699455 125.9965) (xy 47.300544 125.996499) (xy 47.404426 125.985887) (xy 47.572738 125.930115) (xy 47.723652 125.83703) (xy 47.84903 125.711652) (xy 47.864037 125.68732) (xy 47.916819 125.639844) (xy 47.986894 125.62844) (xy 48.027312 125.646) (xy 48.796 125.646) (xy 48.796 124.892) (xy 48.749483 124.892) (xy 48.645681 124.902605) (xy 48.645678 124.902606) (xy 48.477474 124.958342) (xy 48.32666 125.051365) (xy 48.223594 125.154431) (xy 48.161282 125.188456) (xy 48.090466 125.18339) (xy 48.03363 125.140844) (xy 48.00882 125.074323) (xy 48.008499 125.065352) (xy 48.008499 124.687456) (xy 47.997887 124.583574) (xy 47.942115 124.415262) (xy 47.84903 124.264348) (xy 47.849029 124.264347) (xy 47.849024 124.264341) (xy 47.723658 124.138975) (xy 47.723652 124.13897) (xy 47.706681 124.128502) (xy 47.572738 124.045885) (xy 47.488582 124.017999) (xy 47.404427 123.990113) (xy 47.40442 123.990112) (xy 47.317134 123.981194) (xy 47.251399 123.954372) (xy 47.240846 123.944942) (xy 46.803025 123.507121) (xy 46.768999 123.444809) (xy 46.774064 123.373994) (xy 46.816611 123.317158) (xy 46.822087 123.313282) (xy 46.853833 123.292071) (xy 46.853834 123.29207) (xy 46.858618 123.288144) (xy 46.86022 123.290096) (xy 46.912813 123.261378) (xy 46.939596 123.258499) (xy 47.300544 123.258499) (xy 47.404426 123.247887) (xy 47.572738 123.192115) (xy 47.723652 123.09903) (xy 47.84903 122.973652) (xy 47.942115 122.822738) (xy 47.997887 122.654426) (xy 48.0085 122.550545) (xy 48.008499 121.949456) (xy 48.004674 121.912017) (xy 47.997887 121.845574) (xy 47.987038 121.812834) (xy 47.942115 121.677262) (xy 47.84903 121.526348) (xy 47.849029 121.526347) (xy 47.849024 121.526341) (xy 47.723658 121.400975) (xy 47.723652 121.40097) (xy 47.700666 121.386792) (xy 47.572738 121.307885) (xy 47.469579 121.273702) (xy 47.404427 121.252113) (xy 47.40442 121.252112) (xy 47.300553 121.2415) (xy 46.699454 121.2415) (xy 46.611986 121.250436) (xy 46.542186 121.23746) (xy 46.510087 121.214183) (xy 45.770405 120.474501) (xy 45.736379 120.412189) (xy 45.7335 120.385406) (xy 45.7335 120.050516) (xy 45.992 120.050516) (xy 46.002605 120.154318) (xy 46.002606 120.154321) (xy 46.058342 120.322525) (xy 46.151365 120.473339) (xy 46.15137 120.473345) (xy 46.276654 120.598629) (xy 46.27666 120.598634) (xy 46.427474 120.691657) (xy 46.595678 120.747393) (xy 46.595681 120.747394) (xy 46.699483 120.757999) (xy 46.699483 120.758) (xy 46.746 120.758) (xy 47.254 120.758) (xy 47.300517 120.758) (xy 47.300516 120.757999) (xy 47.404318 120.747394) (xy 47.404321 120.747393) (xy 47.572525 120.691657) (xy 47.723339 120.598634) (xy 47.723345 120.598629) (xy 47.848629 120.473345) (xy 47.848634 120.473339) (xy 47.941657 120.322525) (xy 47.997393 120.154321) (xy 47.997394 120.154318) (xy 48.007999 120.050516) (xy 48.008 120.050516) (xy 48.292 120.050516) (xy 48.302605 120.154318) (xy 48.302606 120.154321) (xy 48.358342 120.322525) (xy 48.451365 120.473339) (xy 48.45137 120.473345) (xy 48.576654 120.598629) (xy 48.57666 120.598634) (xy 48.727474 120.691657) (xy 48.895678 120.747393) (xy 48.895681 120.747394) (xy 48.999483 120.757999) (xy 48.999483 120.758) (xy 49.046 120.758) (xy 49.554 120.758) (xy 49.600517 120.758) (xy 49.600516 120.757999) (xy 49.704318 120.747394) (xy 49.704321 120.747393) (xy 49.872525 120.691657) (xy 50.023339 120.598634) (xy 50.023345 120.598629) (xy 50.148629 120.473345) (xy 50.148634 120.473339) (xy 50.241657 120.322525) (xy 50.297393 120.154321) (xy 50.297394 120.154318) (xy 50.307999 120.050516) (xy 50.308 120.050516) (xy 50.308 120.004) (xy 49.554 120.004) (xy 49.554 120.758) (xy 49.046 120.758) (xy 49.046 120.004) (xy 48.292 120.004) (xy 48.292 120.050516) (xy 48.008 120.050516) (xy 48.008 120.004) (xy 47.254 120.004) (xy 47.254 120.758) (xy 46.746 120.758) (xy 46.746 120.004) (xy 45.992 120.004) (xy 45.992 120.050516) (xy 45.7335 120.050516) (xy 45.7335 119.449483) (xy 45.992 119.449483) (xy 45.992 119.496) (xy 46.746 119.496) (xy 47.254 119.496) (xy 48.008 119.496) (xy 48.008 119.449483) (xy 48.292 119.449483) (xy 48.292 119.496) (xy 49.046 119.496) (xy 49.554 119.496) (xy 50.308 119.496) (xy 50.308 119.449483) (xy 50.297782 119.349483) (xy 50.692 119.349483) (xy 50.692 119.396) (xy 51.446 119.396) (xy 51.954 119.396) (xy 52.708 119.396) (xy 52.708 119.349483) (xy 52.697394 119.245681) (xy 52.697393 119.245678) (xy 52.641657 119.077474) (xy 52.548634 118.92666) (xy 52.548629 118.926654) (xy 52.423345 118.80137) (xy 52.423339 118.801365) (xy 52.272525 118.708342) (xy 52.104321 118.652606) (xy 52.104318 118.652605) (xy 52.000516 118.642) (xy 51.954 118.642) (xy 51.954 119.396) (xy 51.446 119.396) (xy 51.446 118.642) (xy 51.399483 118.642) (xy 51.295681 118.652605) (xy 51.295678 118.652606) (xy 51.127474 118.708342) (xy 50.97666 118.801365) (xy 50.976654 118.80137) (xy 50.85137 118.926654) (xy 50.851365 118.92666) (xy 50.758342 119.077474) (xy 50.702606 119.245678) (xy 50.702605 119.245681) (xy 50.692 119.349483) (xy 50.297782 119.349483) (xy 50.297394 119.345681) (xy 50.297393 119.345678) (xy 50.241657 119.177474) (xy 50.148634 119.02666) (xy 50.148629 119.026654) (xy 50.023345 118.90137) (xy 50.023339 118.901365) (xy 49.872525 118.808342) (xy 49.704321 118.752606) (xy 49.704318 118.752605) (xy 49.600516 118.742) (xy 49.554 118.742) (xy 49.554 119.496) (xy 49.046 119.496) (xy 49.046 118.742) (xy 48.999483 118.742) (xy 48.895681 118.752605) (xy 48.895678 118.752606) (xy 48.727474 118.808342) (xy 48.57666 118.901365) (xy 48.576654 118.90137) (xy 48.45137 119.026654) (xy 48.451365 119.02666) (xy 48.358342 119.177474) (xy 48.302606 119.345678) (xy 48.302605 119.345681) (xy 48.292 119.449483) (xy 48.008 119.449483) (xy 47.997394 119.345681) (xy 47.997393 119.345678) (xy 47.941657 119.177474) (xy 47.848634 119.02666) (xy 47.848629 119.026654) (xy 47.723345 118.90137) (xy 47.723339 118.901365) (xy 47.572525 118.808342) (xy 47.404321 118.752606) (xy 47.404318 118.752605) (xy 47.300516 118.742) (xy 47.254 118.742) (xy 47.254 119.496) (xy 46.746 119.496) (xy 46.746 118.742) (xy 46.699483 118.742) (xy 46.595681 118.752605) (xy 46.595678 118.752606) (xy 46.427474 118.808342) (xy 46.27666 118.901365) (xy 46.276654 118.90137) (xy 46.15137 119.026654) (xy 46.151365 119.02666) (xy 46.058342 119.177474) (xy 46.002606 119.345678) (xy 46.002605 119.345681) (xy 45.992 119.449483) (xy 45.7335 119.449483) (xy 45.7335 117.737607) (xy 45.733499 117.737603) (xy 45.709155 117.615215) (xy 45.6614 117.499925) (xy 45.592071 117.396167) (xy 45.503833 117.307929) (xy 42.659499 114.463595) (xy 42.625473 114.401283) (xy 42.630538 114.330468) (xy 42.673085 114.273632) (xy 42.739605 114.248821) (xy 42.748594 114.2485) (xy 42.808632 114.2485) (xy 42.808638 114.2485) (xy 42.808645 114.248499) (xy 42.808649 114.248499) (xy 42.869196 114.24199) (xy 42.869199 114.241989) (xy 42.869201 114.241989) (xy 43.006204 114.190889) (xy 43.104907 114.117) (xy 43.171426 114.092189) (xy 43.2408 114.10728) (xy 43.255925 114.117) (xy 43.354034 114.190444) (xy 43.490906 114.241494) (xy 43.551402 114.247999) (xy 43.551415 114.248) (xy 44.196 114.248) (xy 44.196 111.53225) (xy 44.253147 111.565245) (xy 44.382857 111.6) (xy 44.517143 111.6) (xy 44.646853 111.565245) (xy 44.704 111.53225) (xy 44.704 114.248) (xy 45.0055 114.248) (xy 45.073621 114.268002) (xy 45.120114 114.321658) (xy 45.1315 114.374) (xy 45.1315 115.45486) (xy 45.156806 115.582077) (xy 45.156807 115.58208) (xy 45.191206 115.665127) (xy 45.206445 115.701917) (xy 45.278509 115.809769) (xy 45.278513 115.809773) (xy 46.068774 116.600034) (xy 46.1028 116.662346) (xy 46.104988 116.675956) (xy 46.106456 116.689922) (xy 46.106456 116.689924) (xy 46.137067 116.784133) (xy 46.165473 116.871556) (xy 46.172833 116.884304) (xy 46.260958 117.036941) (xy 46.260965 117.036951) (xy 46.388744 117.178864) (xy 46.388747 117.178866) (xy 46.543248 117.291118) (xy 46.717712 117.368794) (xy 46.904513 117.4085) (xy 47.095487 117.4085) (xy 47.282288 117.368794) (xy 47.456752 117.291118) (xy 47.611253 117.178866) (xy 47.670489 117.113078) (xy 47.739034 117.036951) (xy 47.739035 117.036949) (xy 47.73904 117.036944) (xy 47.834527 116.871556) (xy 47.893542 116.689928) (xy 47.913504 116.5) (xy 47.893542 116.310072) (xy 47.834527 116.128444) (xy 47.73904 115.963056) (xy 47.739038 115.963054) (xy 47.739034 115.963048) (xy 47.611255 115.821135) (xy 47.456752 115.708882) (xy 47.282288 115.631206) (xy 47.095487 115.5915) (xy 46.97495 115.5915) (xy 46.906829 115.571498) (xy 46.885855 115.554595) (xy 46.485405 115.154145) (xy 46.451379 115.091833) (xy 46.4485 115.06505) (xy 46.4485 114.3745) (xy 46.468502 114.306379) (xy 46.522158 114.259886) (xy 46.5745 114.2485) (xy 47.675761 114.2485) (xy 47.743882 114.268502) (xy 47.764856 114.285405) (xy 51.566365 118.086915) (xy 51.56637 118.086919) (xy 51.566372 118.086921) (xy 51.566373 118.086922) (xy 51.566375 118.086923) (xy 51.650977 118.135768) (xy 51.705127 118.167032) (xy 51.764602 118.182968) (xy 51.859889 118.2085) (xy 51.85989 118.2085) (xy 52.02011 118.2085) (xy 56.217556 118.2085) (xy 56.285677 118.228502) (xy 56.33217 118.282158) (xy 56.342274 118.352432) (xy 56.31278 118.417012) (xy 56.261591 118.452554) (xy 56.203796 118.474111) (xy 56.203791 118.474113) (xy 56.086738 118.561738) (xy 55.999112 118.678792) (xy 55.99911 118.678797) (xy 55.948011 118.815795) (xy 55.948009 118.815803) (xy 55.9415 118.87635) (xy 55.9415 120.6155) (xy 55.921498 120.683621) (xy 55.867842 120.730114) (xy 55.8155 120.7415) (xy 52.473882 120.7415) (xy 52.405761 120.721498) (xy 52.359268 120.667842) (xy 52.349164 120.597568) (xy 52.378658 120.532988) (xy 52.407736 120.508259) (xy 52.423336 120.498636) (xy 52.423345 120.498629) (xy 52.548629 120.373345) (xy 52.548634 120.373339) (xy 52.641657 120.222525) (xy 52.697393 120.054321) (xy 52.697394 120.054318) (xy 52.707999 119.950516) (xy 52.708 119.950516) (xy 52.708 119.904) (xy 50.692 119.904) (xy 50.692 119.950516) (xy 50.702605 120.054318) (xy 50.702606 120.054321) (xy 50.758342 120.222525) (xy 50.851365 120.373339) (xy 50.85137 120.373345) (xy 50.976654 120.498629) (xy 50.976663 120.498636) (xy 50.992264 120.508259) (xy 51.039743 120.561044) (xy 51.051146 120.631119) (xy 51.022854 120.696235) (xy 50.963849 120.735718) (xy 50.926118 120.7415) (xy 50.769888 120.7415) (xy 50.706443 120.758499) (xy 50.706444 120.7585) (xy 50.615129 120.782967) (xy 50.615122 120.78297) (xy 50.476375 120.863076) (xy 50.476369 120.863081) (xy 50.041419 121.29803) (xy 49.979107 121.332055) (xy 49.908291 121.32699) (xy 49.886177 121.316174) (xy 49.87274 121.307886) (xy 49.872741 121.307886) (xy 49.704427 121.252113) (xy 49.70442 121.252112) (xy 49.600553 121.2415) (xy 48.999455 121.2415) (xy 48.895574 121.252112) (xy 48.727261 121.307885) (xy 48.576347 121.40097) (xy 48.576341 121.400975) (xy 48.450975 121.526341) (xy 48.45097 121.526347) (xy 48.357885 121.677262) (xy 48.302113 121.845572) (xy 48.302112 121.845579) (xy 48.2915 121.949446) (xy 48.2915 122.550544) (xy 48.302112 122.654425) (xy 48.357885 122.822738) (xy 48.45097 122.973652) (xy 48.450975 122.973658) (xy 48.576341 123.099024) (xy 48.576347 123.099029) (xy 48.576348 123.09903) (xy 48.727262 123.192115) (xy 48.895574 123.247887) (xy 48.999455 123.2585) (xy 49.3655 123.258499) (xy 49.43362 123.278501) (xy 49.480113 123.332156) (xy 49.4915 123.384499) (xy 49.4915 124.766875) (xy 49.471498 124.834996) (xy 49.417842 124.881489) (xy 49.353725 124.892054) (xy 49.35372 124.892163) (xy 49.35322 124.892137) (xy 49.352702 124.892223) (xy 49.350519 124.892) (xy 49.304 124.892) (xy 49.304 126.908) (xy 49.350515 126.908) (xy 49.388273 126.904142) (xy 49.458074 126.917116) (xy 49.50978 126.965768) (xy 49.522786 126.996874) (xy 49.532968 127.034873) (xy 49.532969 127.034875) (xy 49.53297 127.034877) (xy 49.613075 127.173623) (xy 49.613077 127.173625) (xy 49.613078 127.173627) (xy 50.498964 128.059513) (xy 50.532988 128.121824) (xy 50.535868 128.148607) (xy 50.535868 128.793967) (xy 50.515866 128.862088) (xy 50.46221 128.908581) (xy 50.39998 128.919578) (xy 50.360879 128.9165) (xy 50.36087 128.9165) (xy 49.927866 128.9165) (xy 49.927857 128.9165) (xy 49.890539 128.919437) (xy 49.890535 128.919438) (xy 49.730769 128.965853) (xy 49.730766 128.965854) (xy 49.708012 128.979311) (xy 49.639195 128.996769) (xy 49.57974 128.979311) (xy 49.557771 128.966319) (xy 49.557769 128.966318) (xy 49.398368 128.920007) (xy 49.398368 129.254928) (xy 49.388009 129.304961) (xy 49.385223 129.311399) (xy 49.338805 129.47117) (xy 49.338805 129.471171) (xy 49.335868 129.508488) (xy 49.335868 130.891511) (xy 49.338805 130.928828) (xy 49.338805 130.928829) (xy 49.385223 131.088601) (xy 49.388003 131.095024) (xy 49.398368 131.145069) (xy 49.398368 131.479991) (xy 49.459032 131.462367) (xy 49.530028 131.46257) (xy 49.589644 131.501123) (xy 49.598949 131.513361) (xy 49.599631 131.514381) (xy 49.632877 131.564137) (xy 49.88851 131.819769) (xy 49.980231 131.91149) (xy 50.088083 131.983555) (xy 50.207923 132.033194) (xy 50.335143 132.0585) (xy 52.495487 132.0585) (xy 52.622707 132.033194) (xy 52.742547 131.983555) (xy 52.850399 131.911491) (xy 53.611491 131.150399) (xy 53.683555 131.042547) (xy 53.733194 130.922707) (xy 53.739401 130.891502) (xy 53.7585 130.795487) (xy 53.7585 128.1795) (xy 53.778502 128.111379) (xy 53.832158 128.064886) (xy 53.8845 128.0535) (xy 56.039295 128.0535) (xy 56.107416 128.073502) (xy 56.144778 128.110585) (xy 56.224275 128.232264) (xy 56.224279 128.23227) (xy 56.326095 128.34287) (xy 56.357514 128.377) (xy 56.376762 128.397908) (xy 56.399625 128.415703) (xy 56.554424 128.536189) (xy 56.579119 128.549553) (xy 56.58768 128.554186) (xy 56.638071 128.6042) (xy 56.653423 128.673516) (xy 56.628862 128.740129) (xy 56.58768 128.775813) (xy 56.554426 128.79381) (xy 56.554424 128.793811) (xy 56.376762 128.932091) (xy 56.224279 129.097729) (xy 56.224275 129.097734) (xy 56.101141 129.286206) (xy 56.010703 129.492386) (xy 56.010702 129.492387) (xy 55.955437 129.710624) (xy 55.955436 129.71063) (xy 55.955436 129.710632) (xy 55.936844 129.935) (xy 55.95533 130.158093) (xy 55.955437 130.159375) (xy 56.010702 130.377612) (xy 56.010703 130.377613) (xy 56.010704 130.377616) (xy 56.10114 130.583791) (xy 56.101141 130.583793) (xy 56.224275 130.772265) (xy 56.224279 130.77227) (xy 56.376762 130.937908) (xy 56.424373 130.974965) (xy 56.554424 131.076189) (xy 56.752426 131.183342) (xy 56.752427 131.183342) (xy 56.752428 131.183343) (xy 56.864227 131.221723) (xy 56.965365 131.256444) (xy 57.187431 131.2935) (xy 57.187435 131.2935) (xy 57.412565 131.2935) (xy 57.412569 131.2935) (xy 57.634635 131.256444) (xy 57.847574 131.183342) (xy 58.045576 131.076189) (xy 58.22324 130.937906) (xy 58.375722 130.772268) (xy 58.464816 130.635898) (xy 58.518819 130.58981) (xy 58.589167 130.580235) (xy 58.653524 130.610212) (xy 58.675782 130.635898) (xy 58.764674 130.771958) (xy 58.917097 130.937534) (xy 59.094698 131.075767) (xy 59.094699 131.075768) (xy 59.292628 131.182882) (xy 59.29263 131.182883) (xy 59.505483 131.255955) (xy 59.505492 131.255957) (xy 59.586 131.269391) (xy 59.586 130.365702) (xy 59.647007 130.400925) (xy 59.774174 130.435) (xy 59.905826 130.435) (xy 60.032993 130.400925) (xy 60.094 130.365702) (xy 60.094 131.26939) (xy 60.174507 131.255957) (xy 60.174516 131.255955) (xy 60.387369 131.182883) (xy 60.387371 131.182882) (xy 60.5853 131.075768) (xy 60.585301 131.075767) (xy 60.762902 130.937534) (xy 60.915325 130.771958) (xy 61.038419 130.583548) (xy 61.12882 130.377456) (xy 61.128823 130.377449) (xy 61.176544 130.189) (xy 60.270703 130.189) (xy 60.305925 130.127993) (xy 60.34 130.000826) (xy 60.34 129.869174) (xy 60.305925 129.742007) (xy 60.270703 129.681) (xy 61.176544 129.681) (xy 61.176544 129.680999) (xy 61.128823 129.49255) (xy 61.12882 129.492543) (xy 61.038419 129.286451) (xy 60.915325 129.098041) (xy 60.762902 128.932465) (xy 60.585301 128.794232) (xy 60.5853 128.794231) (xy 60.551791 128.776097) (xy 60.501401 128.726083) (xy 60.48605 128.656766) (xy 60.510612 128.590153) (xy 60.55179 128.554472) (xy 60.585576 128.536189) (xy 60.76324 128.397906) (xy 60.915722 128.232268) (xy 61.03886 128.043791) (xy 61.129296 127.837616) (xy 61.184564 127.619368) (xy 61.203156 127.395) (xy 61.184564 127.170632) (xy 61.169766 127.112195) (xy 61.129297 126.952387) (xy 61.129296 126.952386) (xy 61.129296 126.952384) (xy 61.03886 126.746209) (xy 61.025333 126.725504) (xy 60.915724 126.557734) (xy 60.91572 126.557729) (xy 60.786178 126.417011) (xy 60.76324 126.392094) (xy 60.763239 126.392093) (xy 60.763237 126.392091) (xy 60.665292 126.315857) (xy 60.585576 126.253811) (xy 60.551792 126.235528) (xy 60.501402 126.185516) (xy 60.48605 126.116199) (xy 60.51061 126.049586) (xy 60.551793 126.013901) (xy 60.5853 125.995767) (xy 60.585301 125.995767) (xy 60.762902 125.857534) (xy 60.915325 125.691958) (xy 61.038419 125.503548) (xy 61.12882 125.297456) (xy 61.128823 125.297449) (xy 61.176544 125.109) (xy 60.270703 125.109) (xy 60.305925 125.047993) (xy 60.34 124.920826) (xy 60.34 124.789174) (xy 60.305925 124.662007) (xy 60.270703 124.601) (xy 61.176544 124.601) (xy 61.176544 124.600999) (xy 61.128823 124.41255) (xy 61.12882 124.412543) (xy 61.038419 124.206451) (xy 60.915325 124.018041) (xy 60.762902 123.852465) (xy 60.585301 123.714232) (xy 60.5853 123.714231) (xy 60.551791 123.696097) (xy 60.501401 123.646083) (xy 60.48605 123.576766) (xy 60.510612 123.510153) (xy 60.55179 123.474472) (xy 60.585576 123.456189) (xy 60.76324 123.317906) (xy 60.915722 123.152268) (xy 61.03886 122.963791) (xy 61.129296 122.757616) (xy 61.184564 122.539368) (xy 61.203156 122.315) (xy 61.184564 122.090632) (xy 61.176605 122.059201) (xy 61.129297 121.872387) (xy 61.129296 121.872386) (xy 61.129296 121.872384) (xy 61.03886 121.666209) (xy 61.025514 121.645781) (xy 60.915724 121.477734) (xy 60.91572 121.477729) (xy 60.784207 121.33487) (xy 60.76324 121.312094) (xy 60.763239 121.312093) (xy 60.763237 121.312091) (xy 60.67497 121.24339) (xy 60.585576 121.173811) (xy 60.552319 121.155813) (xy 60.501929 121.105802) (xy 60.486576 121.036485) (xy 60.511136 120.969872) (xy 60.55232 120.934186) (xy 60.585576 120.916189) (xy 60.76324 120.777906) (xy 60.915722 120.612268) (xy 61.03886 120.423791) (xy 61.129296 120.217616) (xy 61.184564 119.999368) (xy 61.203156 119.775) (xy 61.184564 119.550632) (xy 61.173095 119.505342) (xy 61.129297 119.332387) (xy 61.129296 119.332386) (xy 61.129296 119.332384) (xy 61.03886 119.126209) (xy 61.029898 119.112492) (xy 60.915724 118.937734) (xy 60.91572 118.937729) (xy 60.763237 118.772091) (xy 60.661349 118.692788) (xy 60.585576 118.633811) (xy 60.387574 118.526658) (xy 60.387572 118.526657) (xy 60.387571 118.526656) (xy 60.174639 118.453557) (xy 60.17463 118.453555) (xy 60.122007 118.444774) (xy 59.952569 118.4165) (xy 59.727431 118.4165) (xy 59.579211 118.441233) (xy 59.505369 118.453555) (xy 59.50536 118.453557) (xy 59.292428 118.526656) (xy 59.29242 118.52666) (xy 59.19426 118.579781) (xy 59.12483 118.594611) (xy 59.058403 118.56955) (xy 59.021621 118.522014) (xy 59.021161 118.52228) (xy 59.019202 118.518888) (xy 59.017881 118.51718) (xy 59.017033 118.515134) (xy 59.017032 118.515128) (xy 58.960089 118.4165) (xy 58.936922 118.376373) (xy 58.936919 118.37637) (xy 58.936916 118.376366) (xy 57.673633 117.113083) (xy 57.673623 117.113075) (xy 57.534877 117.03297) (xy 57.534874 117.032969) (xy 57.534873 117.032968) (xy 57.534871 117.032967) (xy 57.53487 117.032967) (xy 57.451464 117.010619) (xy 57.380111 116.9915) (xy 57.38011 116.9915) (xy 52.244239 116.9915) (xy 52.176118 116.971498) (xy 52.155144 116.954595) (xy 49.664144 114.463595) (xy 49.630118 114.401283) (xy 49.635183 114.330468) (xy 49.67773 114.273632) (xy 49.74425 114.248821) (xy 49.753239 114.2485) (xy 50.428632 114.2485) (xy 50.428638 114.2485) (xy 50.428645 114.248499) (xy 50.428649 114.248499) (xy 50.489196 114.24199) (xy 50.489199 114.241989) (xy 50.489201 114.241989) (xy 50.626204 114.190889) (xy 50.724492 114.117311) (xy 50.791011 114.092501) (xy 50.860385 114.107592) (xy 50.875502 114.117306) (xy 50.945745 114.16989) (xy 50.973796 114.190889) (xy 51.110795 114.241988) (xy 51.110803 114.24199) (xy 51.17135 114.248499) (xy 51.171355 114.248499) (xy 51.171362 114.2485) (xy 52.755761 114.2485) (xy 52.823882 114.268502) (xy 52.844856 114.285405) (xy 53.846365 115.286915) (xy 53.84637 115.286919) (xy 53.846372 115.286921) (xy 53.846373 115.286922) (xy 53.846375 115.286923) (xy 53.908666 115.322887) (xy 53.985127 115.367032) (xy 54.044602 115.382968) (xy 54.139889 115.4085) (xy 54.13989 115.4085) (xy 54.30011 115.4085) (xy 58.380075 115.4085) (xy 58.448196 115.428502) (xy 58.469165 115.4454) (xy 59.260687 116.236922) (xy 59.260688 116.236923) (xy 59.26069 116.236924) (xy 59.304492 116.262213) (xy 59.399441 116.317032) (xy 59.44485 116.329199) (xy 59.554203 116.3585) (xy 59.554204 116.3585) (xy 59.714424 116.3585) (xy 61.948703 116.3585) (xy 62.016824 116.378502) (xy 62.037798 116.395405) (xy 65.004595 119.362202) (xy 65.038621 119.424514) (xy 65.0415 119.451297) (xy 65.0415 122.860663) (xy 65.048536 122.88692) (xy 65.054318 122.9085) (xy 65.082967 123.015422) (xy 65.08297 123.015429) (xy 65.163075 123.154175) (xy 65.163077 123.154177) (xy 65.163078 123.154179) (xy 65.404869 123.39597) (xy 65.438893 123.458281) (xy 65.441128 123.490997) (xy 65.441597 123.491016) (xy 65.4415 123.493489) (xy 65.4415 123.926511) (xy 65.444437 123.963828) (xy 65.444437 123.963829) (xy 65.490855 124.123602) (xy 65.525014 124.181361) (xy 65.542473 124.250177) (xy 65.519956 124.317509) (xy 65.464611 124.361978) (xy 65.41656 124.3715) (xy 65.349939 124.3715) (xy 65.211853 124.4085) (xy 65.211852 124.408499) (xy 65.195174 124.412969) (xy 65.056426 124.493075) (xy 65.05642 124.49308) (xy 64.421978 125.127521) (xy 64.359666 125.161546) (xy 64.28885 125.156481) (xy 64.232015 125.113934) (xy 64.207204 125.047414) (xy 64.206883 125.03847) (xy 64.206073 121.730122) (xy 64.226058 121.661997) (xy 64.238432 121.645787) (xy 64.336435 121.536944) (xy 64.431922 121.371556) (xy 64.490937 121.189928) (xy 64.510899 121) (xy 64.490937 120.810072) (xy 64.431922 120.628444) (xy 64.336435 120.463056) (xy 64.336433 120.463054) (xy 64.336429 120.463048) (xy 64.20865 120.321135) (xy 64.054147 120.208882) (xy 63.879683 120.131206) (xy 63.692882 120.0915) (xy 63.501908 120.0915) (xy 63.315106 120.131206) (xy 63.140642 120.208882) (xy 62.986139 120.321135) (xy 62.85836 120.463048) (xy 62.858353 120.463058) (xy 62.762871 120.628438) (xy 62.762868 120.628445) (xy 62.703852 120.810072) (xy 62.683891 121) (xy 62.703852 121.189927) (xy 62.716368 121.228445) (xy 62.762868 121.371556) (xy 62.762871 121.371561) (xy 62.858353 121.536941) (xy 62.85836 121.536951) (xy 62.956709 121.646178) (xy 62.987427 121.710185) (xy 62.989073 121.730457) (xy 62.9915 131.638545) (xy 62.9915 131.7201) (xy 62.991508 131.720167) (xy 62.99152 131.72021) (xy 63.011854 131.796023) (xy 63.032968 131.874823) (xy 63.032969 131.874825) (xy 63.03297 131.874828) (xy 63.032976 131.874842) (xy 63.033023 131.874955) (xy 63.033025 131.874959) (xy 63.033026 131.874961) (xy 63.039937 131.886924) (xy 63.071464 131.9415) (xy 63.071459 131.941502) (xy 63.071479 131.941526) (xy 63.11308 132.013582) (xy 63.113166 132.013693) (xy 63.113169 132.013696) (xy 63.11317 132.013697) (xy 63.16983 132.070329) (xy 63.169852 132.070351) (xy 65.036415 133.936915) (xy 65.03642 133.936919) (xy 65.036422 133.936921) (xy 65.036423 133.936922) (xy 65.036425 133.936923) (xy 65.053562 133.946817) (xy 65.175177 134.017032) (xy 65.252558 134.037766) (xy 65.329939 134.0585) (xy 65.32994 134.0585) (xy 146.34261 134.0585) (xy 146.342611 134.0585) (xy 146.419991 134.037766) (xy 146.497373 134.017032) (xy 146.636127 133.936922) (xy 147.523522 133.049526) (xy 150.7045 133.049526) (xy 150.719083 133.197594) (xy 150.719085 133.197606) (xy 150.776719 133.387599) (xy 150.776725 133.387614) (xy 150.870324 133.562724) (xy 150.996288 133.716211) (xy 151.149775 133.842175) (xy 151.324885 133.935774) (xy 151.3249 133.93578) (xy 151.514893 133.993414) (xy 151.514905 133.993416) (xy 151.662973 134.007999) (xy 151.662991 134.008) (xy 151.9585 134.008) (xy 151.9585 132.754) (xy 150.7045 132.754) (xy 150.7045 133.049526) (xy 147.523522 133.049526) (xy 148.145456 132.427591) (xy 152.4125 132.427591) (xy 152.4125 132.572409) (xy 152.449982 132.712292) (xy 152.4665 132.740902) (xy 152.4665 134.008) (xy 152.76201 134.008) (xy 152.762018 134.007999) (xy 152.813632 134.002915) (xy 152.835871 134.002696) (xy 152.962499 134.012662) (xy 153.199132 133.994039) (xy 153.429937 133.938628) (xy 153.649238 133.847791) (xy 153.83639 133.733102) (xy 153.836391 133.733101) (xy 153.128272 133.024982) (xy 153.174792 133.012518) (xy 153.300208 132.94011) (xy 153.40261 132.837708) (xy 153.475018 132.712292) (xy 153.487483 132.665772) (xy 154.195602 133.373891) (xy 154.195602 133.37389) (xy 154.310291 133.186738) (xy 154.401128 132.967437) (xy 154.456539 132.736632) (xy 154.475162 132.5) (xy 157.949837 132.5) (xy 157.96846 132.736632) (xy 158.023871 132.967437) (xy 158.114708 133.186738) (xy 158.229396 133.37389) (xy 158.229397 133.37389) (xy 158.937516 132.665771) (xy 158.949982 132.712292) (xy 159.02239 132.837708) (xy 159.124792 132.94011) (xy 159.250208 133.012518) (xy 159.296725 133.024982) (xy 158.588607 133.733101) (xy 158.588608 133.733102) (xy 158.775761 133.847791) (xy 158.995062 133.938628) (xy 159.225867 133.994039) (xy 159.462499 134.012662) (xy 159.589126 134.002696) (xy 159.611365 134.002915) (xy 159.66298 134.007999) (xy 159.66299 134.008) (xy 159.9585 134.008) (xy 160.4665 134.008) (xy 160.762009 134.008) (xy 160.762026 134.007999) (xy 160.910094 133.993416) (xy 160.910106 133.993414) (xy 161.100099 133.93578) (xy 161.100114 133.935774) (xy 161.275224 133.842175) (xy 161.428711 133.716211) (xy 161.554675 133.562724) (xy 161.648274 133.387614) (xy 161.64828 133.387599) (xy 161.705914 133.197606) (xy 161.705916 133.197594) (xy 161.720499 133.049526) (xy 161.7205 133.049508) (xy 161.7205 132.754) (xy 160.4665 132.754) (xy 160.4665 134.008) (xy 159.9585 134.008) (xy 159.9585 132.740902) (xy 159.975018 132.712292) (xy 160.0125 132.572409) (xy 160.0125 132.427591) (xy 159.975018 132.287708) (xy 159.9585 132.259097) (xy 159.9585 132.246) (xy 160.4665 132.246) (xy 161.7205 132.246) (xy 161.7205 131.950491) (xy 161.720499 131.950473) (xy 161.705916 131.802405) (xy 161.705914 131.802393) (xy 161.64828 131.6124) (xy 161.648274 131.612385) (xy 161.554675 131.437275) (xy 161.428711 131.283788) (xy 161.275224 131.157824) (xy 161.100114 131.064225) (xy 161.100099 131.064219) (xy 160.910106 131.006585) (xy 160.910094 131.006583) (xy 160.762026 130.992) (xy 160.4665 130.992) (xy 160.4665 132.246) (xy 159.9585 132.246) (xy 159.9585 130.992) (xy 159.66299 130.992) (xy 159.611362 130.997084) (xy 159.589129 130.997302) (xy 159.4625 130.987337) (xy 159.225867 131.00596) (xy 158.995062 131.061371) (xy 158.775766 131.152206) (xy 158.588608 131.266897) (xy 158.588608 131.266898) (xy 159.296727 131.975017) (xy 159.250208 131.987482) (xy 159.124792 132.05989) (xy 159.02239 132.162292) (xy 158.949982 132.287708) (xy 158.937517 132.334227) (xy 158.229398 131.626108) (xy 158.229397 131.626108) (xy 158.114706 131.813266) (xy 158.023871 132.032562) (xy 157.96846 132.263367) (xy 157.949837 132.5) (xy 154.475162 132.5) (xy 154.456539 132.263367) (xy 154.401128 132.032562) (xy 154.310291 131.813261) (xy 154.195602 131.626108) (xy 154.195601 131.626107) (xy 153.487482 132.334226) (xy 153.475018 132.287708) (xy 153.40261 132.162292) (xy 153.300208 132.05989) (xy 153.174792 131.987482) (xy 153.128272 131.975016) (xy 153.83639 131.266897) (xy 153.83639 131.266896) (xy 153.649238 131.152208) (xy 153.429937 131.061371) (xy 153.199132 131.00596) (xy 152.962498 130.987337) (xy 152.835868 130.997302) (xy 152.813636 130.997083) (xy 152.762029 130.992001) (xy 152.762008 130.992) (xy 152.4665 130.992) (xy 152.4665 132.259097) (xy 152.449982 132.287708) (xy 152.4125 132.427591) (xy 148.145456 132.427591) (xy 148.427645 132.145402) (xy 148.489956 132.111379) (xy 148.516739 132.108499) (xy 148.887212 132.108499) (xy 148.989381 132.098062) (xy 149.15492 132.043209) (xy 149.303346 131.951658) (xy 149.304531 131.950473) (xy 150.7045 131.950473) (xy 150.7045 132.246) (xy 151.9585 132.246) (xy 151.9585 130.992) (xy 151.662973 130.992) (xy 151.514905 131.006583) (xy 151.514893 131.006585) (xy 151.3249 131.064219) (xy 151.324885 131.064225) (xy 151.149775 131.157824) (xy 150.996288 131.283788) (xy 150.870324 131.437275) (xy 150.776725 131.612385) (xy 150.776719 131.6124) (xy 150.719085 131.802393) (xy 150.719083 131.802405) (xy 150.7045 131.950473) (xy 149.304531 131.950473) (xy 149.426658 131.828346) (xy 149.518209 131.67992) (xy 149.573062 131.514381) (xy 149.5835 131.412213) (xy 149.583499 130.812788) (xy 149.573062 130.710619) (xy 149.518209 130.54508) (xy 149.426658 130.396654) (xy 149.426657 130.396653) (xy 149.426652 130.396647) (xy 149.3191 130.289095) (xy 149.285074 130.226783) (xy 149.290139 130.155968) (xy 149.3191 130.110905) (xy 149.426652 130.003352) (xy 149.426658 130.003346) (xy 149.518209 129.85492) (xy 149.573062 129.689381) (xy 149.5835 129.587213) (xy 149.583499 128.987788) (xy 149.573062 128.885619) (xy 149.544404 128.799132) (xy 149.541964 128.728177) (xy 149.578273 128.667167) (xy 149.641802 128.635472) (xy 149.664009 128.6335) (xy 150.605669 128.6335) (xy 150.67379 128.653502) (xy 150.720283 128.707158) (xy 150.72624 128.722914) (xy 150.749361 128.799132) (xy 150.776259 128.887805) (xy 150.869905 129.063004) (xy 150.995932 129.216568) (xy 151.149496 129.342595) (xy 151.324696 129.436241) (xy 151.514799 129.493908) (xy 151.514803 129.493908) (xy 151.514805 129.493909) (xy 151.555002 129.497867) (xy 151.662953 129.5085) (xy 152.762046 129.508499) (xy 152.813643 129.503416) (xy 152.835867 129.503198) (xy 152.9625 129.513165) (xy 153.199211 129.494535) (xy 153.430094 129.439105) (xy 153.649463 129.34824) (xy 153.851916 129.224176) (xy 154.032469 129.069969) (xy 154.186676 128.889416) (xy 154.306634 128.693662) (xy 154.35928 128.646034) (xy 154.414065 128.6335) (xy 158.010935 128.6335) (xy 158.079056 128.653502) (xy 158.118365 128.693662) (xy 158.237337 128.887805) (xy 158.238325 128.889417) (xy 158.238326 128.889419) (xy 158.39253 129.069969) (xy 158.571426 129.22276) (xy 158.573084 129.224176) (xy 158.775537 129.34824) (xy 158.994906 129.439105) (xy 159.225789 129.494535) (xy 159.4625 129.513165) (xy 159.546104 129.506584) (xy 159.58912 129.503199) (xy 159.611351 129.503416) (xy 159.662953 129.5085) (xy 160.762046 129.508499) (xy 160.829661 129.50184) (xy 160.910194 129.493909) (xy 160.910195 129.493908) (xy 160.910201 129.493908) (xy 161.100304 129.436241) (xy 161.275504 129.342595) (xy 161.429068 129.216568) (xy 161.555095 129.063004) (xy 161.648741 128.887804) (xy 161.706408 128.697701) (xy 161.709416 128.667167) (xy 161.715617 128.6042) (xy 161.721 128.549547) (xy 161.720999 127.450454) (xy 161.715129 127.390846) (xy 161.706409 127.302305) (xy 161.706408 127.302303) (xy 161.706408 127.302299) (xy 161.648741 127.112196) (xy 161.555095 126.936996) (xy 161.429068 126.783432) (xy 161.275504 126.657405) (xy 161.100304 126.563759) (xy 160.910201 126.506092) (xy 160.9102 126.506091) (xy 160.910194 126.50609) (xy 160.781403 126.493406) (xy 160.762047 126.4915) (xy 160.762045 126.4915) (xy 159.662954 126.4915) (xy 159.662936 126.491501) (xy 159.611361 126.496581) (xy 159.589127 126.4968) (xy 159.4625 126.486835) (xy 159.225789 126.505465) (xy 158.994907 126.560894) (xy 158.775538 126.651759) (xy 158.573082 126.775825) (xy 158.57308 126.775826) (xy 158.39253 126.93003) (xy 158.238326 127.11058) (xy 158.238325 127.110582) (xy 158.238324 127.110584) (xy 158.118365 127.306337) (xy 158.06572 127.353966) (xy 158.010935 127.3665) (xy 154.414065 127.3665) (xy 154.345944 127.346498) (xy 154.306634 127.306337) (xy 154.186676 127.110584) (xy 154.163699 127.083681) (xy 154.032469 126.93003) (xy 153.851919 126.775826) (xy 153.851917 126.775825) (xy 153.851916 126.775824) (xy 153.649463 126.65176) (xy 153.581491 126.623605) (xy 153.430092 126.560894) (xy 153.226456 126.512006) (xy 153.199211 126.505465) (xy 152.9625 126.486835) (xy 152.962499 126.486835) (xy 152.835875 126.4968) (xy 152.813641 126.496581) (xy 152.769718 126.492255) (xy 152.762047 126.4915) (xy 152.762046 126.4915) (xy 151.662965 126.4915) (xy 151.662945 126.491501) (xy 151.514805 126.50609) (xy 151.324695 126.563759) (xy 151.149495 126.657405) (xy 150.995932 126.783432) (xy 150.869905 126.936995) (xy 150.776259 127.112194) (xy 150.756793 127.176366) (xy 150.726242 127.277077) (xy 150.687329 127.336457) (xy 150.622487 127.365373) (xy 150.605669 127.3665) (xy 149.137603 127.3665) (xy 149.064568 127.381028) (xy 149.015215 127.390845) (xy 149.015213 127.390845) (xy 149.015212 127.390846) (xy 148.899923 127.438601) (xy 148.796171 127.507926) (xy 148.796164 127.507931) (xy 148.107931 128.196164) (xy 148.107926 128.196171) (xy 148.0386 128.299924) (xy 148.020326 128.34404) (xy 147.975776 128.39932) (xy 147.970066 128.403059) (xy 147.896653 128.448341) (xy 147.773347 128.571647) (xy 147.773342 128.571653) (xy 147.681791 128.72008) (xy 147.626937 128.885622) (xy 147.6165 128.987778) (xy 147.6165 129.587212) (xy 147.626937 129.68938) (xy 147.681791 129.85492) (xy 147.773342 130.003346) (xy 147.773347 130.003352) (xy 147.8809 130.110905) (xy 147.914926 130.173217) (xy 147.909861 130.244032) (xy 147.8809 130.289095) (xy 147.773347 130.396647) (xy 147.773342 130.396653) (xy 147.681791 130.54508) (xy 147.626937 130.710622) (xy 147.6165 130.812778) (xy 147.6165 131.18326) (xy 147.596498 131.251381) (xy 147.579595 131.272355) (xy 146.047356 132.804595) (xy 145.985044 132.83862) (xy 145.958261 132.8415) (xy 99.278059 132.8415) (xy 99.209938 132.821498) (xy 99.163445 132.767842) (xy 99.152749 132.70233) (xy 99.155399 132.677112) (xy 99.163504 132.6) (xy 99.143542 132.410072) (xy 99.091103 132.248685) (xy 99.089076 132.17772) (xy 99.125738 132.116922) (xy 99.18945 132.085597) (xy 99.243545 132.088043) (xy 99.319889 132.1085) (xy 99.31989 132.1085) (xy 99.319891 132.1085) (xy 106.40011 132.1085) (xy 106.400111 132.1085) (xy 106.477491 132.087766) (xy 106.554873 132.067032) (xy 106.693627 131.986922) (xy 107.311683 131.368864) (xy 107.373994 131.334841) (xy 107.439711 131.338127) (xy 107.598371 131.38968) (xy 107.811903 131.4235) (xy 107.811906 131.4235) (xy 108.028094 131.4235) (xy 108.028097 131.4235) (xy 108.241629 131.38968) (xy 108.447241 131.322872) (xy 108.639871 131.224722) (xy 108.814775 131.097647) (xy 108.967647 130.944775) (xy 109.094722 130.769871) (xy 109.192872 130.577241) (xy 109.25968 130.371629) (xy 109.2935 130.158097) (xy 109.2935 129.641903) (xy 109.25968 129.428371) (xy 109.192872 129.222759) (xy 109.094722 129.030129) (xy 108.967647 128.855225) (xy 108.967644 128.855222) (xy 108.967642 128.855219) (xy 108.81478 128.702357) (xy 108.814777 128.702355) (xy 108.814775 128.702353) (xy 108.639871 128.575278) (xy 108.447241 128.477128) (xy 108.44724 128.477127) (xy 108.447239 128.477127) (xy 108.241632 128.410321) (xy 108.241629 128.41032) (xy 108.028097 128.3765) (xy 107.811903 128.3765) (xy 107.676738 128.397908) (xy 107.598364 128.410321) (xy 107.581801 128.415703) (xy 107.510833 128.417729) (xy 107.450036 128.381064) (xy 107.418713 128.317351) (xy 107.426808 128.246818) (xy 107.45377 128.206777) (xy 108.915143 126.745405) (xy 108.977455 126.711379) (xy 109.004238 126.7085) (xy 110.02676 126.7085) (xy 110.094881 126.728502) (xy 110.141374 126.782158) (xy 110.151478 126.852432) (xy 110.121984 126.917012) (xy 110.115855 126.923595) (xy 110.013083 127.026366) (xy 110.013075 127.026376) (xy 109.93297 127.165122) (xy 109.932965 127.165134) (xy 109.919535 127.215254) (xy 109.919536 127.215255) (xy 109.8915 127.319888) (xy 109.8915 131.059136) (xy 109.909516 131.126369) (xy 109.909516 131.126371) (xy 109.909517 131.126371) (xy 109.909517 131.126372) (xy 109.932968 131.213895) (xy 109.932969 131.213897) (xy 109.93297 131.213899) (xy 110.013075 131.352645) (xy 110.013083 131.352655) (xy 110.547344 131.886916) (xy 110.547348 131.886919) (xy 110.547351 131.886922) (xy 110.67199 131.958882) (xy 110.686106 131.967032) (xy 110.840867 132.0085) (xy 110.840868 132.0085) (xy 110.840869 132.0085) (xy 118.100109 132.0085) (xy 118.10011 132.0085) (xy 118.100111 132.0085) (xy 118.195398 131.982968) (xy 118.254873 131.967032) (xy 118.393627 131.886922) (xy 118.911683 131.368864) (xy 118.973994 131.334841) (xy 119.039711 131.338127) (xy 119.198371 131.38968) (xy 119.411903 131.4235) (xy 119.411906 131.4235) (xy 119.628094 131.4235) (xy 119.628097 131.4235) (xy 119.841629 131.38968) (xy 120.047241 131.322872) (xy 120.239871 131.224722) (xy 120.414775 131.097647) (xy 120.567647 130.944775) (xy 120.694722 130.769871) (xy 120.792872 130.577241) (xy 120.85968 130.371629) (xy 120.8935 130.158097) (xy 120.8935 129.641903) (xy 120.85968 129.428371) (xy 120.792872 129.222759) (xy 120.694722 129.030129) (xy 120.567647 128.855225) (xy 120.567644 128.855222) (xy 120.567642 128.855219) (xy 120.41478 128.702357) (xy 120.414777 128.702355) (xy 120.414775 128.702353) (xy 120.239871 128.575278) (xy 120.047241 128.477128) (xy 120.04724 128.477127) (xy 120.047239 128.477127) (xy 119.841632 128.410321) (xy 119.841629 128.41032) (xy 119.684953 128.385505) (xy 119.644394 128.379081) (xy 119.580241 128.348668) (xy 119.542714 128.2884) (xy 119.543728 128.217411) (xy 119.575006 128.165541) (xy 120.995146 126.745402) (xy 121.057456 126.711379) (xy 121.084239 126.7085) (xy 121.42676 126.7085) (xy 121.494881 126.728502) (xy 121.541374 126.782158) (xy 121.551478 126.852432) (xy 121.521984 126.917012) (xy 121.515855 126.923595) (xy 121.513083 126.926366) (xy 121.513075 126.926376) (xy 121.43297 127.065122) (xy 121.432968 127.065127) (xy 121.421218 127.10898) (xy 121.391501 127.219886) (xy 121.3915 127.21989) (xy 121.3915 131.080111) (xy 121.409493 131.147266) (xy 121.432965 131.234865) (xy 121.43297 131.234877) (xy 121.513075 131.373623) (xy 121.513077 131.373625) (xy 121.513078 131.373627) (xy 121.913078 131.773627) (xy 121.913079 131.773628) (xy 122.026372 131.886921) (xy 122.026373 131.886922) (xy 122.026375 131.886923) (xy 122.114362 131.937722) (xy 122.165128 131.967032) (xy 122.319889 132.0085) (xy 122.319891 132.0085) (xy 129.580109 132.0085) (xy 129.58011 132.0085) (xy 129.580111 132.0085) (xy 129.675398 131.982968) (xy 129.734873 131.967032) (xy 129.873627 131.886922) (xy 130.396588 131.363959) (xy 130.458899 131.329936) (xy 130.524615 131.333222) (xy 130.698371 131.38968) (xy 130.911903 131.4235) (xy 130.911906 131.4235) (xy 131.128094 131.4235) (xy 131.128097 131.4235) (xy 131.341629 131.38968) (xy 131.547241 131.322872) (xy 131.739871 131.224722) (xy 131.914775 131.097647) (xy 132.067647 130.944775) (xy 132.194722 130.769871) (xy 132.292872 130.577241) (xy 132.35968 130.371629) (xy 132.3935 130.158097) (xy 132.3935 129.641903) (xy 132.35968 129.428371) (xy 132.292872 129.222759) (xy 132.194722 129.030129) (xy 132.067647 128.855225) (xy 132.067644 128.855222) (xy 132.067642 128.855219) (xy 131.91478 128.702357) (xy 131.914777 128.702355) (xy 131.914775 128.702353) (xy 131.739871 128.575278) (xy 131.547241 128.477128) (xy 131.54724 128.477127) (xy 131.547239 128.477127) (xy 131.341632 128.410321) (xy 131.341629 128.41032) (xy 131.184953 128.385505) (xy 131.144394 128.379081) (xy 131.080241 128.348668) (xy 131.042714 128.2884) (xy 131.043728 128.217411) (xy 131.075006 128.165541) (xy 132.495146 126.745402) (xy 132.557456 126.711379) (xy 132.584239 126.7085) (xy 133.426761 126.7085) (xy 133.494882 126.728502) (xy 133.541375 126.782158) (xy 133.551479 126.852432) (xy 133.521985 126.917012) (xy 133.515869 126.923581) (xy 133.413085 127.026366) (xy 133.11308 127.32637) (xy 133.113075 127.326376) (xy 133.03297 127.465122) (xy 133.032965 127.465134) (xy 133.019642 127.514856) (xy 133.019643 127.514857) (xy 132.991794 127.618794) (xy 132.9915 127.61989) (xy 132.9915 131.080111) (xy 133.009493 131.147266) (xy 133.032965 131.234865) (xy 133.03297 131.234877) (xy 133.113075 131.373623) (xy 133.113077 131.373625) (xy 133.113078 131.373627) (xy 133.513078 131.773627) (xy 133.513079 131.773628) (xy 133.626372 131.886921) (xy 133.626373 131.886922) (xy 133.626375 131.886923) (xy 133.714362 131.937722) (xy 133.765128 131.967032) (xy 133.919889 132.0085) (xy 133.919891 132.0085) (xy 141.200109 132.0085) (xy 141.20011 132.0085) (xy 141.200111 132.0085) (xy 141.295398 131.982968) (xy 141.354873 131.967032) (xy 141.493627 131.886922) (xy 142.011683 131.368864) (xy 142.073994 131.334841) (xy 142.139711 131.338127) (xy 142.298371 131.38968) (xy 142.511903 131.4235) (xy 142.511906 131.4235) (xy 142.728094 131.4235) (xy 142.728097 131.4235) (xy 142.941629 131.38968) (xy 143.147241 131.322872) (xy 143.339871 131.224722) (xy 143.514775 131.097647) (xy 143.667647 130.944775) (xy 143.794722 130.769871) (xy 143.892872 130.577241) (xy 143.95968 130.371629) (xy 143.986782 130.200516) (xy 144.442 130.200516) (xy 144.452605 130.304318) (xy 144.452606 130.304321) (xy 144.508342 130.472525) (xy 144.601365 130.623339) (xy 144.60137 130.623345) (xy 144.726654 130.748629) (xy 144.72666 130.748634) (xy 144.877474 130.841657) (xy 145.045678 130.897393) (xy 145.045681 130.897394) (xy 145.149483 130.907999) (xy 145.149483 130.908) (xy 145.196 130.908) (xy 145.704 130.908) (xy 145.750517 130.908) (xy 145.750516 130.907999) (xy 145.854318 130.897394) (xy 145.854321 130.897393) (xy 146.022525 130.841657) (xy 146.173339 130.748634) (xy 146.173345 130.748629) (xy 146.298629 130.623345) (xy 146.298634 130.623339) (xy 146.391657 130.472525) (xy 146.447393 130.304321) (xy 146.447394 130.304318) (xy 146.457999 130.200516) (xy 146.458 130.200516) (xy 146.458 130.154) (xy 145.704 130.154) (xy 145.704 130.908) (xy 145.196 130.908) (xy 145.196 130.154) (xy 144.442 130.154) (xy 144.442 130.200516) (xy 143.986782 130.200516) (xy 143.9935 130.158097) (xy 143.9935 129.641903) (xy 143.986781 129.599483) (xy 144.442 129.599483) (xy 144.442 129.646) (xy 145.196 129.646) (xy 145.704 129.646) (xy 146.458 129.646) (xy 146.458 129.599483) (xy 146.447394 129.495681) (xy 146.447393 129.495678) (xy 146.391657 129.327474) (xy 146.298634 129.17666) (xy 146.298629 129.176654) (xy 146.173345 129.05137) (xy 146.173339 129.051365) (xy 146.022525 128.958342) (xy 145.854321 128.902606) (xy 145.854318 128.902605) (xy 145.750516 128.892) (xy 145.704 128.892) (xy 145.704 129.646) (xy 145.196 129.646) (xy 145.196 128.892) (xy 145.149483 128.892) (xy 145.045681 128.902605) (xy 145.045678 128.902606) (xy 144.877474 128.958342) (xy 144.72666 129.051365) (xy 144.726654 129.05137) (xy 144.60137 129.176654) (xy 144.601365 129.17666) (xy 144.508342 129.327474) (xy 144.452606 129.495678) (xy 144.452605 129.495681) (xy 144.442 129.599483) (xy 143.986781 129.599483) (xy 143.95968 129.428371) (xy 143.892872 129.222759) (xy 143.794722 129.030129) (xy 143.667647 128.855225) (xy 143.667644 128.855222) (xy 143.667642 128.855219) (xy 143.51478 128.702357) (xy 143.514777 128.702355) (xy 143.514775 128.702353) (xy 143.339871 128.575278) (xy 143.147241 128.477128) (xy 143.14724 128.477127) (xy 143.147239 128.477127) (xy 142.941632 128.410321) (xy 142.941629 128.41032) (xy 142.728097 128.3765) (xy 142.511903 128.3765) (xy 142.298371 128.41032) (xy 142.298365 128.410321) (xy 142.207739 128.439768) (xy 142.136772 128.441796) (xy 142.075974 128.405133) (xy 142.044648 128.341421) (xy 142.052741 128.270887) (xy 142.079704 128.230844) (xy 142.465146 127.845402) (xy 142.527456 127.811379) (xy 142.554239 127.8085) (xy 144.362477 127.8085) (xy 144.430598 127.828502) (xy 144.477091 127.882158) (xy 144.482079 127.89486) (xy 144.502407 127.956206) (xy 144.507885 127.972738) (xy 144.60097 128.123652) (xy 144.600975 128.123658) (xy 144.726341 128.249024) (xy 144.726347 128.249029) (xy 144.726348 128.24903) (xy 144.877262 128.342115) (xy 145.045574 128.397887) (xy 145.149455 128.4085) (xy 145.750544 128.408499) (xy 145.854426 128.397887) (xy 146.022738 128.342115) (xy 146.173652 128.24903) (xy 146.29903 128.123652) (xy 146.392115 127.972738) (xy 146.417918 127.894865) (xy 146.458332 127.836496) (xy 146.523889 127.80924) (xy 146.537523 127.8085) (xy 147.680109 127.8085) (xy 147.68011 127.8085) (xy 147.680111 127.8085) (xy 147.768288 127.784873) (xy 147.834873 127.767032) (xy 147.973627 127.686922) (xy 148.865145 126.795403) (xy 148.927456 126.76138) (xy 148.954239 126.7585) (xy 149.648632 126.7585) (xy 149.648638 126.7585) (xy 149.648645 126.758499) (xy 149.648649 126.758499) (xy 149.709196 126.75199) (xy 149.709199 126.751989) (xy 149.709201 126.751989) (xy 149.716395 126.749306) (xy 149.728045 126.74496) (xy 149.846204 126.700889) (xy 149.855884 126.693643) (xy 149.963261 126.613261) (xy 150.050887 126.496207) (xy 150.050887 126.496206) (xy 150.050889 126.496204) (xy 150.101989 126.359201) (xy 150.102771 126.351932) (xy 150.108499 126.298649) (xy 150.1085 126.298632) (xy 150.1085 125.101367) (xy 150.108499 125.10135) (xy 150.10199 125.040803) (xy 150.101988 125.040795) (xy 150.071063 124.957885) (xy 150.050889 124.903796) (xy 150.050888 124.903794) (xy 150.050887 124.903792) (xy 149.963261 124.786738) (xy 149.96143 124.785368) (xy 149.960057 124.783534) (xy 149.956889 124.780366) (xy 149.957344 124.77991) (xy 149.918883 124.728533) (xy 149.913818 124.657717) (xy 149.947844 124.595405) (xy 150.010156 124.561379) (xy 150.036939 124.5585) (xy 150.598632 124.5585) (xy 150.598638 124.5585) (xy 150.598645 124.558499) (xy 150.598649 124.558499) (xy 150.659196 124.55199) (xy 150.659199 124.551989) (xy 150.659201 124.551989) (xy 150.796204 124.500889) (xy 150.806639 124.493078) (xy 150.913261 124.413261) (xy 151.000887 124.296207) (xy 151.000887 124.296206) (xy 151.000889 124.296204) (xy 151.051989 124.159201) (xy 151.053829 124.142093) (xy 151.058499 124.098649) (xy 151.0585 124.098632) (xy 151.0585 122.901367) (xy 151.058499 122.90135) (xy 151.05199 122.840803) (xy 151.051988 122.840795) (xy 151.019836 122.754595) (xy 151.000889 122.703796) (xy 151.000887 122.703793) (xy 151.000886 122.703791) (xy 150.98053 122.676599) (xy 150.955718 122.610079) (xy 150.970809 122.540705) (xy 150.992305 122.51199) (xy 151.001262 122.503033) (xy 151.092751 122.354707) (xy 151.147568 122.189276) (xy 151.147569 122.189273) (xy 151.157999 122.087184) (xy 151.158 122.087184) (xy 151.158 122.054) (xy 149.9845 122.054) (xy 149.916379 122.033998) (xy 149.869886 121.980342) (xy 149.8585 121.928) (xy 149.8585 121.546) (xy 150.3665 121.546) (xy 151.158 121.546) (xy 151.158 121.512815) (xy 151.147569 121.410726) (xy 151.147568 121.410723) (xy 151.092751 121.245292) (xy 151.001262 121.096966) (xy 151.001257 121.09696) (xy 150.878039 120.973742) (xy 150.878033 120.973737) (xy 150.729707 120.882248) (xy 150.564276 120.827431) (xy 150.564273 120.82743) (xy 150.462184 120.817) (xy 150.3665 120.817) (xy 150.3665 121.546) (xy 149.8585 121.546) (xy 149.8585 120.817) (xy 149.762815 120.817) (xy 149.660726 120.82743) (xy 149.660723 120.827431) (xy 149.495292 120.882248) (xy 149.346966 120.973737) (xy 149.339445 120.981258) (xy 149.277131 121.015281) (xy 149.206316 121.010213) (xy 149.161236 120.981232) (xy 149.159347 120.979343) (xy 149.125338 120.917022) (xy 149.130422 120.846207) (xy 149.159367 120.80118) (xy 149.940146 120.020401) (xy 150.002456 119.986378) (xy 150.029239 119.983499) (xy 150.412212 119.983499) (xy 150.514381 119.973062) (xy 150.67992 119.918209) (xy 150.828346 119.826658) (xy 150.951658 119.703346) (xy 151.043209 119.55492) (xy 151.098062 119.389381) (xy 151.1085 119.287213) (xy 151.108499 118.712788) (xy 151.098062 118.610619) (xy 151.043209 118.44508) (xy 150.951658 118.296654) (xy 150.951657 118.296653) (xy 150.951652 118.296647) (xy 150.828352 118.173347) (xy 150.828346 118.173342) (xy 150.818111 118.167029) (xy 150.67992 118.081791) (xy 150.514381 118.026938) (xy 150.514379 118.026937) (xy 150.514377 118.026937) (xy 150.412221 118.0165) (xy 150.412213 118.0165) (xy 150.029239 118.0165) (xy 149.961118 117.996498) (xy 149.940144 117.979595) (xy 149.545405 117.584856) (xy 149.511379 117.522544) (xy 149.5085 117.495761) (xy 149.5085 115.81989) (xy 149.5085 115.819889) (xy 149.467032 115.665128) (xy 149.446676 115.629871) (xy 149.386922 115.526373) (xy 149.386919 115.52637) (xy 149.386916 115.526366) (xy 143.361065 109.500516) (xy 144.142 109.500516) (xy 144.152605 109.604318) (xy 144.152606 109.604321) (xy 144.208342 109.772525) (xy 144.301365 109.923339) (xy 144.30137 109.923345) (xy 144.426654 110.048629) (xy 144.42666 110.048634) (xy 144.577474 110.141657) (xy 144.745678 110.197393) (xy 144.745681 110.197394) (xy 144.849483 110.207999) (xy 144.849483 110.208) (xy 144.971 110.208) (xy 144.971 109.254) (xy 144.142 109.254) (xy 144.142 109.500516) (xy 143.361065 109.500516) (xy 142.360032 108.499483) (xy 144.142 108.499483) (xy 144.142 108.746) (xy 144.971 108.746) (xy 144.971 107.792) (xy 144.849483 107.792) (xy 144.745681 107.802605) (xy 144.745678 107.802606) (xy 144.577474 107.858342) (xy 144.42666 107.951365) (xy 144.426654 107.95137) (xy 144.30137 108.076654) (xy 144.301365 108.07666) (xy 144.208342 108.227474) (xy 144.152606 108.395678) (xy 144.152605 108.395681) (xy 144.142 108.499483) (xy 142.360032 108.499483) (xy 137.336064 103.475515) (xy 137.302038 103.413203) (xy 137.307103 103.342388) (xy 137.34965 103.285552) (xy 137.41617 103.260741) (xy 137.425159 103.26042) (xy 142.510181 103.26042) (xy 142.578302 103.280422) (xy 142.599276 103.297325) (xy 143.479595 104.177644) (xy 143.513621 104.239956) (xy 143.5165 104.266739) (xy 143.5165 104.637212) (xy 143.526937 104.73938) (xy 143.581791 104.90492) (xy 143.673342 105.053346) (xy 143.673347 105.053352) (xy 143.7809 105.160905) (xy 143.814926 105.223217) (xy 143.809861 105.294032) (xy 143.7809 105.339095) (xy 143.673347 105.446647) (xy 143.673342 105.446653) (xy 143.581791 105.59508) (xy 143.526937 105.760622) (xy 143.5165 105.862778) (xy 143.5165 106.197904) (xy 143.496498 106.266025) (xy 143.479595 106.286999) (xy 143.207043 106.559551) (xy 143.144731 106.593577) (xy 143.144146 106.593702) (xy 142.967715 106.631204) (xy 142.793247 106.708882) (xy 142.638744 106.821135) (xy 142.510965 106.963048) (xy 142.510958 106.963058) (xy 142.421045 107.118793) (xy 142.415473 107.128444) (xy 142.405707 107.1585) (xy 142.356457 107.310072) (xy 142.336496 107.5) (xy 142.356457 107.689927) (xy 142.377575 107.75492) (xy 142.415473 107.871556) (xy 142.441598 107.916806) (xy 142.510958 108.036941) (xy 142.510965 108.036951) (xy 142.638744 108.178864) (xy 142.664152 108.197324) (xy 142.793248 108.291118) (xy 142.967712 108.368794) (xy 143.154513 108.4085) (xy 143.345487 108.4085) (xy 143.532288 108.368794) (xy 143.706752 108.291118) (xy 143.861253 108.178866) (xy 143.863535 108.176332) (xy 143.989034 108.036951) (xy 143.989035 108.036949) (xy 143.98904 108.036944) (xy 144.084527 107.871556) (xy 144.143542 107.689928) (xy 144.163504 107.5) (xy 144.159789 107.464661) (xy 144.17256 107.394827) (xy 144.195998 107.362404) (xy 144.363001 107.195401) (xy 144.425311 107.161378) (xy 144.452094 107.158499) (xy 144.787212 107.158499) (xy 144.889381 107.148062) (xy 145.05492 107.093209) (xy 145.203346 107.001658) (xy 145.241956 106.963048) (xy 145.286259 106.918746) (xy 145.348571 106.88472) (xy 145.419386 106.889785) (xy 145.464449 106.918746) (xy 145.54696 107.001257) (xy 145.546966 107.001262) (xy 145.695292 107.092751) (xy 145.860723 107.147568) (xy 145.860726 107.147569) (xy 145.962815 107.157999) (xy 145.962815 107.158) (xy 145.996 107.158) (xy 146.504 107.158) (xy 146.537185 107.158) (xy 146.537184 107.157999) (xy 146.639273 107.147569) (xy 146.639276 107.147568) (xy 146.804707 107.092751) (xy 146.953033 107.001262) (xy 146.953039 107.001257) (xy 147.076257 106.878039) (xy 147.076262 106.878033) (xy 147.167751 106.729707) (xy 147.222568 106.564276) (xy 147.222569 106.564273) (xy 147.233 106.462183) (xy 147.233 106.3665) (xy 146.504 106.3665) (xy 146.504 107.158) (xy 145.996 107.158) (xy 145.996 105.9845) (xy 146.016002 105.916379) (xy 146.069658 105.869886) (xy 146.122 105.8585) (xy 147.233 105.8585) (xy 147.233 105.762815) (xy 147.222569 105.660726) (xy 147.222568 105.660723) (xy 147.167751 105.495292) (xy 147.076262 105.346966) (xy 147.076257 105.34696) (xy 147.068745 105.339448) (xy 147.034719 105.277136) (xy 147.039784 105.206321) (xy 147.068747 105.161256) (xy 147.076658 105.153346) (xy 147.168209 105.00492) (xy 147.169839 105.000001) (xy 147.171542 104.994864) (xy 147.211957 104.936494) (xy 147.277514 104.909239) (xy 147.291145 104.9085) (xy 147.807815 104.9085) (xy 147.875936 104.928502) (xy 147.908683 104.958991) (xy 147.986738 105.063261) (xy 148.101448 105.149132) (xy 148.143995 105.205968) (xy 148.149059 105.276784) (xy 148.115034 105.339096) (xy 148.101448 105.350868) (xy 147.986738 105.436738) (xy 147.899112 105.553792) (xy 147.89911 105.553797) (xy 147.848011 105.690795) (xy 147.848009 105.690803) (xy 147.8415 105.75135) (xy 147.8415 106.648649) (xy 147.848009 106.709196) (xy 147.848011 106.709204) (xy 147.89911 106.846202) (xy 147.899112 106.846207) (xy 147.986738 106.963261) (xy 148.103792 107.050887) (xy 148.103794 107.050888) (xy 148.103796 107.050889) (xy 148.162375 107.072738) (xy 148.240795 107.101988) (xy 148.240803 107.10199) (xy 148.30135 107.108499) (xy 148.301355 107.108499) (xy 148.301362 107.1085) (xy 148.301368 107.1085) (xy 149.498632 107.1085) (xy 149.498638 107.1085) (xy 149.498645 107.108499) (xy 149.498649 107.108499) (xy 149.559196 107.10199) (xy 149.559199 107.101989) (xy 149.559201 107.101989) (xy 149.696204 107.050889) (xy 149.709257 107.041118) (xy 149.813261 106.963261) (xy 149.900887 106.846207) (xy 149.900887 106.846206) (xy 149.900889 106.846204) (xy 149.951989 106.709201) (xy 149.952024 106.708882) (xy 149.958499 106.648649) (xy 149.9585 106.648632) (xy 149.9585 106.086939) (xy 149.978502 106.018818) (xy 150.032158 105.972325) (xy 150.102432 105.962221) (xy 150.167012 105.991715) (xy 150.185368 106.01143) (xy 150.186738 106.013261) (xy 150.303792 106.100887) (xy 150.303794 106.100888) (xy 150.303796 106.100889) (xy 150.362875 106.122924) (xy 150.440795 106.151988) (xy 150.440803 106.15199) (xy 150.50135 106.158499) (xy 150.501355 106.158499) (xy 150.501362 106.1585) (xy 150.501368 106.1585) (xy 151.660406 106.1585) (xy 151.728527 106.178502) (xy 151.749501 106.195405) (xy 151.904595 106.350499) (xy 151.938621 106.412811) (xy 151.9415 106.439594) (xy 151.9415 106.800544) (xy 151.952112 106.904425) (xy 152.007885 107.072738) (xy 152.10097 107.223652) (xy 152.100975 107.223658) (xy 152.226341 107.349024) (xy 152.226345 107.349027) (xy 152.226348 107.34903) (xy 152.226353 107.349033) (xy 152.241311 107.35826) (xy 152.288789 107.411046) (xy 152.300192 107.48112) (xy 152.271899 107.546236) (xy 152.212894 107.585718) (xy 152.175164 107.5915) (xy 151.632389 107.5915) (xy 151.610014 107.597495) (xy 151.487751 107.630254) (xy 151.487752 107.630255) (xy 151.477628 107.632968) (xy 151.338876 107.713075) (xy 151.33887 107.71308) (xy 151.072353 107.979596) (xy 151.010041 108.013621) (xy 150.983258 108.0165) (xy 150.612787 108.0165) (xy 150.510619 108.026937) (xy 150.345079 108.081791) (xy 150.196653 108.173342) (xy 150.196647 108.173347) (xy 150.089095 108.2809) (xy 150.026783 108.314926) (xy 149.955968 108.309861) (xy 149.910905 108.2809) (xy 149.803352 108.173347) (xy 149.803346 108.173342) (xy 149.802892 108.173062) (xy 149.65492 108.081791) (xy 149.489381 108.026938) (xy 149.489379 108.026937) (xy 149.489377 108.026937) (xy 149.387221 108.0165) (xy 148.787787 108.0165) (xy 148.685619 108.026937) (xy 148.520079 108.081791) (xy 148.433211 108.135373) (xy 148.401273 108.155073) (xy 148.397184 108.157595) (xy 148.328705 108.176332) (xy 148.260966 108.155073) (xy 148.223796 108.1165) (xy 148.202387 108.081791) (xy 148.19903 108.076348) (xy 148.199027 108.076345) (xy 148.199024 108.076341) (xy 148.073658 107.950975) (xy 148.073652 107.95097) (xy 148.037816 107.928866) (xy 147.922738 107.857885) (xy 147.83283 107.828093) (xy 147.754427 107.802113) (xy 147.75442 107.802112) (xy 147.650553 107.7915) (xy 146.899455 107.7915) (xy 146.795574 107.802112) (xy 146.627261 107.857885) (xy 146.476347 107.95097) (xy 146.476341 107.950975) (xy 146.350971 108.076345) (xy 146.348511 108.079457) (xy 146.346281 108.081035) (xy 146.34578 108.081537) (xy 146.345694 108.081451) (xy 146.290568 108.120483) (xy 146.219643 108.123671) (xy 146.158254 108.088008) (xy 146.150837 108.079446) (xy 146.148632 108.076657) (xy 146.023345 107.95137) (xy 146.023339 107.951365) (xy 145.872525 107.858342) (xy 145.704321 107.802606) (xy 145.704318 107.802605) (xy 145.600516 107.792) (xy 145.479 107.792) (xy 145.479 110.208) (xy 145.600517 110.208) (xy 145.600516 110.207999) (xy 145.704318 110.197394) (xy 145.704321 110.197393) (xy 145.872525 110.141657) (xy 146.023339 110.048634) (xy 146.023345 110.048629) (xy 146.148624 109.92335) (xy 146.150832 109.920558) (xy 146.152837 109.919137) (xy 146.153825 109.91815) (xy 146.153993 109.918318) (xy 146.208768 109.879522) (xy 146.279693 109.876323) (xy 146.341088 109.911976) (xy 146.348515 109.920547) (xy 146.350974 109.923657) (xy 146.476341 110.049024) (xy 146.476347 110.049029) (xy 146.476348 110.04903) (xy 146.627262 110.142115) (xy 146.795574 110.197887) (xy 146.899455 110.2085) (xy 147.650544 110.208499) (xy 147.754426 110.197887) (xy 147.922738 110.142115) (xy 148.073652 110.04903) (xy 148.19903 109.923652) (xy 148.223796 109.883499) (xy 148.276582 109.836021) (xy 148.346656 109.824618) (xy 148.397183 109.842404) (xy 148.47882 109.892759) (xy 148.526298 109.945545) (xy 148.537701 110.01562) (xy 148.509408 110.080736) (xy 148.478821 110.107239) (xy 148.459976 110.118864) (xy 148.371653 110.173342) (xy 148.371647 110.173347) (xy 148.248347 110.296647) (xy 148.248342 110.296653) (xy 148.156791 110.44508) (xy 148.101937 110.610622) (xy 148.0915 110.712778) (xy 148.0915 111.287212) (xy 148.101937 111.38938) (xy 148.139235 111.501938) (xy 148.156791 111.55492) (xy 148.239514 111.689034) (xy 148.242112 111.693245) (xy 148.260849 111.761724) (xy 148.23959 111.829463) (xy 148.185083 111.874955) (xy 148.173808 111.879225) (xy 148.167714 111.881204) (xy 147.993247 111.958882) (xy 147.838744 112.071135) (xy 147.710965 112.213048) (xy 147.710958 112.213058) (xy 147.615476 112.378438) (xy 147.615473 112.378444) (xy 147.605707 112.4085) (xy 147.556457 112.560072) (xy 147.536496 112.75) (xy 147.556457 112.939927) (xy 147.568273 112.976291) (xy 147.615473 113.121556) (xy 147.615476 113.121561) (xy 147.710958 113.286941) (xy 147.710965 113.286951) (xy 147.838744 113.428864) (xy 147.858488 113.443209) (xy 147.993248 113.541118) (xy 148.167712 113.618794) (xy 148.354513 113.6585) (xy 148.545487 113.6585) (xy 148.732288 113.618794) (xy 148.906752 113.541118) (xy 149.061253 113.428866) (xy 149.073869 113.414855) (xy 149.189034 113.286951) (xy 149.189035 113.286949) (xy 149.18904 113.286944) (xy 149.284527 113.121556) (xy 149.343542 112.939928) (xy 149.363504 112.75) (xy 149.363504 112.749998) (xy 149.363504 112.749235) (xy 149.363628 112.748809) (xy 149.364194 112.743433) (xy 149.365177 112.743536) (xy 149.383506 112.681114) (xy 149.400409 112.660139) (xy 149.457401 112.603147) (xy 149.574421 112.486128) (xy 149.654532 112.347373) (xy 149.677977 112.259873) (xy 149.696 112.192611) (xy 149.696 111.963192) (xy 149.716002 111.895071) (xy 149.755852 111.855952) (xy 149.803346 111.826658) (xy 149.857053 111.772951) (xy 149.910905 111.7191) (xy 149.973217 111.685074) (xy 150.044032 111.690139) (xy 150.089095 111.7191) (xy 150.196647 111.826652) (xy 150.196651 111.826655) (xy 150.196654 111.826658) (xy 150.244147 111.855952) (xy 150.291625 111.908736) (xy 150.304 111.963192) (xy 150.304 112.467611) (xy 150.322638 112.537171) (xy 150.32265 112.537213) (xy 150.345467 112.62237) (xy 150.34547 112.622377) (xy 150.425575 112.761123) (xy 150.425583 112.761133) (xy 151.804595 114.140144) (xy 151.83862 114.202456) (xy 151.8415 114.229239) (xy 151.8415 114.625544) (xy 151.852112 114.729425) (xy 151.907885 114.897738) (xy 152.00097 115.048652) (xy 152.000975 115.048658) (xy 152.126341 115.174024) (xy 152.126347 115.174029) (xy 152.126348 115.17403) (xy 152.277262 115.267115) (xy 152.445574 115.322887) (xy 152.549455 115.3335) (xy 153.150544 115.333499) (xy 153.254426 115.322887) (xy 153.422738 115.267115) (xy 153.573652 115.17403) (xy 153.69903 115.048652) (xy 153.792115 114.897738) (xy 153.847887 114.729426) (xy 153.8585 114.625545) (xy 153.858499 114.229237) (xy 153.878501 114.161118) (xy 153.895395 114.140152) (xy 154.986921 113.048628) (xy 155.003513 113.01989) (xy 155.067032 112.909872) (xy 155.1085 112.755111) (xy 155.1085 111.73029) (xy 155.128502 111.662169) (xy 155.14086 111.645983) (xy 155.23904 111.536944) (xy 155.334527 111.371556) (xy 155.393542 111.189928) (xy 155.413504 111) (xy 155.393542 110.810072) (xy 155.334527 110.628444) (xy 155.23904 110.463056) (xy 155.239038 110.463054) (xy 155.239034 110.463048) (xy 155.111255 110.321135) (xy 154.956752 110.208882) (xy 154.782288 110.131206) (xy 154.595487 110.0915) (xy 154.404513 110.0915) (xy 154.217711 110.131206) (xy 154.043247 110.208882) (xy 153.888744 110.321135) (xy 153.760965 110.463048) (xy 153.760958 110.463058) (xy 153.665476 110.628438) (xy 153.665473 110.628445) (xy 153.605455 110.813157) (xy 153.565381 110.871762) (xy 153.499984 110.899399) (xy 153.430027 110.887292) (xy 153.424788 110.884397) (xy 153.42253 110.883344) (xy 153.254321 110.827606) (xy 153.254318 110.827605) (xy 153.150516 110.817) (xy 153.104 110.817) (xy 153.104 112.833) (xy 153.15051 112.833) (xy 153.16676 112.831339) (xy 153.236561 112.844311) (xy 153.288269 112.89296) (xy 153.305466 112.961843) (xy 153.282693 113.029088) (xy 153.268668 113.045781) (xy 153.034855 113.279595) (xy 152.972542 113.31362) (xy 152.945759 113.3165) (xy 152.754239 113.3165) (xy 152.686118 113.296498) (xy 152.665144 113.279595) (xy 152.43133 113.045781) (xy 152.397304 112.983469) (xy 152.402369 112.912654) (xy 152.444916 112.855818) (xy 152.511436 112.831007) (xy 152.533236 112.831339) (xy 152.549488 112.833) (xy 152.596 112.833) (xy 152.596 112.079) (xy 151.842 112.079) (xy 151.842 112.125509) (xy 151.843661 112.141769) (xy 151.830685 112.21157) (xy 151.782032 112.263275) (xy 151.713149 112.280468) (xy 151.645905 112.257691) (xy 151.629218 112.243669) (xy 151.557905 112.172356) (xy 151.523879 112.110044) (xy 151.521 112.083261) (xy 151.521 111.963192) (xy 151.541002 111.895071) (xy 151.580852 111.855952) (xy 151.628346 111.826658) (xy 151.751658 111.703346) (xy 151.796373 111.630851) (xy 151.849158 111.583375) (xy 151.903613 111.571) (xy 152.596 111.571) (xy 152.596 110.817) (xy 152.549483 110.817) (xy 152.445681 110.827605) (xy 152.445678 110.827606) (xy 152.277474 110.883342) (xy 152.12666 110.976365) (xy 152.126654 110.97637) (xy 152.123594 110.979431) (xy 152.120974 110.980861) (xy 152.120903 110.980918) (xy 152.120893 110.980905) (xy 152.061282 111.013457) (xy 151.990467 111.008392) (xy 151.933631 110.965845) (xy 151.90882 110.899325) (xy 151.908499 110.890336) (xy 151.908499 110.712787) (xy 151.898062 110.610619) (xy 151.849166 110.463058) (xy 151.843209 110.44508) (xy 151.751658 110.296654) (xy 151.751657 110.296653) (xy 151.751652 110.296647) (xy 151.628352 110.173347) (xy 151.628346 110.173342) (xy 151.593588 110.151903) (xy 151.521177 110.107238) (xy 151.473701 110.054455) (xy 151.462298 109.98438) (xy 151.49059 109.919264) (xy 151.521175 109.892762) (xy 151.628346 109.826658) (xy 151.751658 109.703346) (xy 151.813107 109.603722) (xy 151.86589 109.556247) (xy 151.935964 109.544844) (xy 152.00108 109.573136) (xy 152.027586 109.603725) (xy 152.101365 109.723339) (xy 152.10137 109.723345) (xy 152.226654 109.848629) (xy 152.22666 109.848634) (xy 152.377474 109.941657) (xy 152.545678 109.997393) (xy 152.545681 109.997394) (xy 152.649483 110.007999) (xy 152.649483 110.008) (xy 152.696 110.008) (xy 153.204 110.008) (xy 153.250517 110.008) (xy 153.250516 110.007999) (xy 153.354318 109.997394) (xy 153.354321 109.997393) (xy 153.522525 109.941657) (xy 153.673339 109.848634) (xy 153.673345 109.848629) (xy 153.798629 109.723345) (xy 153.798634 109.723339) (xy 153.891657 109.572525) (xy 153.947393 109.404321) (xy 153.947394 109.404318) (xy 153.957999 109.300516) (xy 153.958 109.300516) (xy 153.958 109.254) (xy 153.204 109.254) (xy 153.204 110.008) (xy 152.696 110.008) (xy 152.696 108.9345) (xy 152.716002 108.866379) (xy 152.769658 108.819886) (xy 152.822 108.8085) (xy 155.819154 108.8085) (xy 155.887275 108.828502) (xy 155.933768 108.882158) (xy 155.944723 108.944904) (xy 155.936844 109.04) (xy 155.953633 109.242614) (xy 155.955437 109.264375) (xy 156.010702 109.482612) (xy 156.010703 109.482613) (xy 156.010704 109.482616) (xy 156.08392 109.649532) (xy 156.101141 109.688793) (xy 156.224275 109.877265) (xy 156.224279 109.87727) (xy 156.376762 110.042908) (xy 156.425363 110.080736) (xy 156.554424 110.181189) (xy 156.58768 110.199186) (xy 156.638071 110.2492) (xy 156.653423 110.318516) (xy 156.628862 110.385129) (xy 156.58768 110.420813) (xy 156.554426 110.43881) (xy 156.554424 110.438811) (xy 156.376762 110.577091) (xy 156.224279 110.742729) (xy 156.224275 110.742734) (xy 156.101141 110.931206) (xy 156.010703 111.137386) (xy 156.010702 111.137387) (xy 155.955437 111.355624) (xy 155.955436 111.35563) (xy 155.955436 111.355632) (xy 155.936844 111.58) (xy 155.954684 111.795297) (xy 155.955437 111.804375) (xy 156.010702 112.022612) (xy 156.010703 112.022613) (xy 156.010704 112.022616) (xy 156.085269 112.192609) (xy 156.101141 112.228793) (xy 156.224275 112.417265) (xy 156.224279 112.41727) (xy 156.376762 112.582908) (xy 156.402765 112.603147) (xy 156.554424 112.721189) (xy 156.752426 112.828342) (xy 156.752427 112.828342) (xy 156.752428 112.828343) (xy 156.798942 112.844311) (xy 156.965365 112.901444) (xy 157.187431 112.9385) (xy 157.187435 112.9385) (xy 157.412565 112.9385) (xy 157.412569 112.9385) (xy 157.634635 112.901444) (xy 157.847574 112.828342) (xy 158.045576 112.721189) (xy 158.22324 112.582906) (xy 158.375722 112.417268) (xy 158.49886 112.228791) (xy 158.589296 112.022616) (xy 158.644564 111.804368) (xy 158.663156 111.58) (xy 158.644564 111.355632) (xy 158.627147 111.286853) (xy 158.589297 111.137387) (xy 158.589296 111.137386) (xy 158.589296 111.137384) (xy 158.49886 110.931209) (xy 158.467342 110.882967) (xy 158.375724 110.742734) (xy 158.37572 110.742729) (xy 158.253599 110.610072) (xy 158.22324 110.577094) (xy 158.223239 110.577093) (xy 158.223237 110.577091) (xy 158.076728 110.463058) (xy 158.045576 110.438811) (xy 158.012319 110.420813) (xy 157.961929 110.370802) (xy 157.946576 110.301485) (xy 157.971136 110.234872) (xy 158.01232 110.199186) (xy 158.045576 110.181189) (xy 158.160807 110.0915) (xy 158.181918 110.075069) (xy 158.24796 110.049012) (xy 158.259309 110.0485) (xy 159.559328 110.0485) (xy 159.559329 110.0485) (xy 159.754169 110.009744) (xy 159.917282 109.942179) (xy 159.987871 109.934591) (xy 160.051358 109.96637) (xy 160.087586 110.027428) (xy 160.0915 110.058589) (xy 160.0915 113.142611) (xy 160.101074 113.178345) (xy 160.101075 113.178345) (xy 160.101075 113.178346) (xy 160.131853 113.293209) (xy 160.132968 113.297372) (xy 160.13297 113.297377) (xy 160.213075 113.436123) (xy 160.213076 113.436124) (xy 160.213078 113.436127) (xy 160.354596 113.577645) (xy 160.38862 113.639955) (xy 160.3915 113.666739) (xy 160.3915 114.087212) (xy 160.401937 114.18938) (xy 160.456791 114.35492) (xy 160.548342 114.503346) (xy 160.548347 114.503352) (xy 160.671647 114.626652) (xy 160.671653 114.626657) (xy 160.671654 114.626658) (xy 160.82008 114.718209) (xy 160.985619 114.773062) (xy 161.087787 114.7835) (xy 161.787212 114.783499) (xy 161.889381 114.773062) (xy 162.05492 114.718209) (xy 162.203346 114.626658) (xy 162.211255 114.618748) (xy 162.27356 114.584722) (xy 162.344376 114.589781) (xy 162.389448 114.618745) (xy 162.39696 114.626257) (xy 162.396966 114.626262) (xy 162.545292 114.717751) (xy 162.710723 114.772568) (xy 162.710726 114.772569) (xy 162.812815 114.782999) (xy 162.812815 114.783) (xy 162.9085 114.783) (xy 163.4165 114.783) (xy 163.512185 114.783) (xy 163.512184 114.782999) (xy 163.614273 114.772569) (xy 163.614276 114.772568) (xy 163.779707 114.717751) (xy 163.928033 114.626262) (xy 163.928039 114.626257) (xy 164.051257 114.503039) (xy 164.051262 114.503033) (xy 164.142751 114.354707) (xy 164.197568 114.189276) (xy 164.197569 114.189273) (xy 164.207999 114.087184) (xy 164.208 114.087184) (xy 164.208 114.054) (xy 163.4165 114.054) (xy 163.4165 114.783) (xy 162.9085 114.783) (xy 162.9085 113.672) (xy 162.928502 113.603879) (xy 162.982158 113.557386) (xy 163.0345 113.546) (xy 164.208 113.546) (xy 164.208 113.512815) (xy 164.197569 113.410726) (xy 164.197568 113.410723) (xy 164.142751 113.245292) (xy 164.051262 113.096966) (xy 164.051257 113.09696) (xy 163.928039 112.973742) (xy 163.928033 112.973737) (xy 163.779705 112.882247) (xy 163.757086 112.874752) (xy 163.698715 112.834337) (xy 163.671461 112.76878) (xy 163.677117 112.715514) (xy 163.697392 112.654327) (xy 163.697394 112.654318) (xy 163.707999 112.550516) (xy 163.708 112.550516) (xy 163.708 111.254) (xy 162.172 111.254) (xy 162.103879 111.233998) (xy 162.057386 111.180342) (xy 162.046 111.128) (xy 162.046 108.742) (xy 161.599483 108.742) (xy 161.495681 108.752605) (xy 161.495678 108.752606) (xy 161.327474 108.808342) (xy 161.190484 108.892839) (xy 161.122004 108.911576) (xy 161.054265 108.890317) (xy 161.035242 108.874693) (xy 160.945405 108.784856) (xy 160.911379 108.722544) (xy 160.9085 108.695761) (xy 160.9085 108.135373) (xy 160.928502 108.067252) (xy 160.982158 108.020759) (xy 161.052432 108.010655) (xy 161.117012 108.040149) (xy 161.123595 108.046278) (xy 161.176341 108.099024) (xy 161.176347 108.099029) (xy 161.176348 108.09903) (xy 161.327262 108.192115) (xy 161.495574 108.247887) (xy 161.599455 108.2585) (xy 162.330075 108.258499) (xy 162.398196 108.278501) (xy 162.41917 108.295404) (xy 162.650671 108.526905) (xy 162.684697 108.589217) (xy 162.679632 108.660032) (xy 162.637085 108.716868) (xy 162.570565 108.741679) (xy 162.561576 108.742) (xy 162.554 108.742) (xy 162.554 110.746) (xy 163.708 110.746) (xy 163.708 109.888424) (xy 163.728002 109.820303) (xy 163.781658 109.77381) (xy 163.851932 109.763706) (xy 163.916512 109.7932) (xy 163.923086 109.799321) (xy 165.167119 111.043354) (xy 165.332297 111.153722) (xy 165.421921 111.190845) (xy 165.515831 111.229744) (xy 165.710671 111.2685) (xy 165.710672 111.2685) (xy 165.909329 111.2685) (xy 166.049082 111.2685) (xy 166.117203 111.288502) (xy 166.163696 111.342158) (xy 166.1738 111.412432) (xy 166.144306 111.477012) (xy 166.124591 111.495368) (xy 166.022095 111.572095) (xy 165.934555 111.689034) (xy 165.934555 111.689035) (xy 165.883505 111.825906) (xy 165.877 111.886402) (xy 165.877 112.546) (xy 166.957749 112.546) (xy 166.924755 112.603147) (xy 166.89 112.732857) (xy 166.89 112.867143) (xy 166.924755 112.996853) (xy 166.957749 113.054) (xy 165.877 113.054) (xy 165.877 113.713597) (xy 165.883505 113.774093) (xy 165.934555 113.910964) (xy 165.934555 113.910965) (xy 166.022095 114.027904) (xy 166.139034 114.115444) (xy 166.275906 114.166494) (xy 166.336402 114.172999) (xy 166.336415 114.173) (xy 167.146 114.173) (xy 167.146 113.24225) (xy 167.203147 113.275245) (xy 167.332857 113.31) (xy 167.467143 113.31) (xy 167.596853 113.275245) (xy 167.654 113.24225) (xy 167.654 114.173) (xy 168.463585 114.173) (xy 168.463597 114.172999) (xy 168.524093 114.166494) (xy 168.660964 114.115444) (xy 168.660965 114.115444) (xy 168.777904 114.027904) (xy 168.865444 113.910965) (xy 168.865444 113.910964) (xy 168.916494 113.774093) (xy 168.922999 113.713597) (xy 168.923 113.713585) (xy 168.923 113.054) (xy 167.842251 113.054) (xy 167.875245 112.996853) (xy 167.91 112.867143) (xy 167.91 112.732857) (xy 167.875245 112.603147) (xy 167.842251 112.546) (xy 168.923 112.546) (xy 168.923 111.886414) (xy 168.922999 111.886402) (xy 168.916494 111.825906) (xy 168.865444 111.689035) (xy 168.865444 111.689034) (xy 168.777904 111.572095) (xy 168.660966 111.484556) (xy 168.558352 111.446283) (xy 168.501517 111.403736) (xy 168.476706 111.337215) (xy 168.491798 111.267841) (xy 168.513287 111.239134) (xy 168.597647 111.154775) (xy 168.724722 110.979871) (xy 168.822872 110.787241) (xy 168.88968 110.581629) (xy 168.9235 110.368097) (xy 168.9235 110.151903) (xy 168.88968 109.938371) (xy 168.822872 109.732759) (xy 168.724722 109.540129) (xy 168.597647 109.365225) (xy 168.597644 109.365222) (xy 168.597642 109.365219) (xy 168.44478 109.212357) (xy 168.444777 109.212355) (xy 168.444775 109.212353) (xy 168.279035 109.091936) (xy 168.235681 109.035714) (xy 168.229606 108.964978) (xy 168.262737 108.902186) (xy 168.279035 108.888064) (xy 168.287164 108.882158) (xy 168.444775 108.767647) (xy 168.597647 108.614775) (xy 168.724722 108.439871) (xy 168.822872 108.247241) (xy 168.88968 108.041629) (xy 168.9235 107.828097) (xy 168.9235 107.611903) (xy 168.88968 107.398371) (xy 168.822872 107.192759) (xy 168.724722 107.000129) (xy 168.597647 106.825225) (xy 168.597644 106.825222) (xy 168.597642 106.825219) (xy 168.44478 106.672357) (xy 168.444777 106.672355) (xy 168.444775 106.672353) (xy 168.279035 106.551936) (xy 168.235681 106.495714) (xy 168.229606 106.424978) (xy 168.262737 106.362186) (xy 168.279035 106.348064) (xy 168.281887 106.345992) (xy 168.444775 106.227647) (xy 168.597647 106.074775) (xy 168.724722 105.899871) (xy 168.822872 105.707241) (xy 168.88968 105.501629) (xy 168.9235 105.288097) (xy 168.9235 105.071903) (xy 168.88968 104.858371) (xy 168.822872 104.652759) (xy 168.724722 104.460129) (xy 168.597647 104.285225) (xy 168.597644 104.285222) (xy 168.597642 104.285219) (xy 168.44478 104.132357) (xy 168.444777 104.132355) (xy 168.444775 104.132353) (xy 168.279844 104.012524) (xy 168.269874 104.00528) (xy 168.269873 104.005279) (xy 168.269871 104.005278) (xy 168.077241 103.907128) (xy 168.07724 103.907127) (xy 168.077239 103.907127) (xy 167.871632 103.840321) (xy 167.871629 103.84032) (xy 167.658097 103.8065) (xy 167.141903 103.8065) (xy 166.928371 103.84032) (xy 166.928368 103.84032) (xy 166.928367 103.840321) (xy 166.72276 103.907127) (xy 166.530125 104.00528) (xy 166.355222 104.132355) (xy 166.355219 104.132357) (xy 166.202357 104.285219) (xy 166.202355 104.285222) (xy 166.07528 104.460125) (xy 165.977127 104.65276) (xy 165.927844 104.804437) (xy 165.88777 104.863042) (xy 165.822373 104.890679) (xy 165.808011 104.8915) (xy 165.704239 104.8915) (xy 165.636118 104.871498) (xy 165.615144 104.854595) (xy 164.08826 103.327711) (xy 164.054234 103.265399) (xy 164.059299 103.194584) (xy 164.070115 103.172468) (xy 164.14275 103.054708) (xy 164.197568 102.889276) (xy 164.197569 102.889273) (xy 164.207999 102.787184) (xy 164.208 102.787184) (xy 164.208 102.754) (xy 163.0345 102.754) (xy 162.966379 102.733998) (xy 162.919886 102.680342) (xy 162.9085 102.628) (xy 162.9085 102.372) (xy 162.928502 102.303879) (xy 162.982158 102.257386) (xy 163.0345 102.246) (xy 164.208 102.246) (xy 164.208 102.212815) (xy 164.197569 102.110726) (xy 164.197568 102.110723) (xy 164.142751 101.945292) (xy 164.051262 101.796966) (xy 164.051257 101.79696) (xy 163.928039 101.673742) (xy 163.928033 101.673737) (xy 163.779705 101.582247) (xy 163.757086 101.574752) (xy 163.698715 101.534337) (xy 163.671461 101.46878) (xy 163.677117 101.415514) (xy 163.697392 101.354327) (xy 163.697394 101.354318) (xy 163.707999 101.250516) (xy 163.708 101.250516) (xy 163.708 99.954) (xy 162.172 99.954) (xy 162.103879 99.933998) (xy 162.057386 99.880342) (xy 162.046 99.828) (xy 162.046 97.442) (xy 161.599483 97.442) (xy 161.495681 97.452605) (xy 161.495678 97.452606) (xy 161.327463 97.508346) (xy 161.325354 97.50933) (xy 161.323769 97.50957) (xy 161.320509 97.510651) (xy 161.320324 97.510093) (xy 161.255162 97.519987) (xy 161.190351 97.491003) (xy 161.162993 97.458132) (xy 161.138883 97.416372) (xy 161.086924 97.326376) (xy 161.086916 97.326366) (xy 160.845405 97.084855) (xy 160.811379 97.022543) (xy 160.8085 96.99576) (xy 160.8085 96.724835) (xy 160.828502 96.656714) (xy 160.882158 96.610221) (xy 160.952432 96.600117) (xy 161.017012 96.629611) (xy 161.041739 96.658687) (xy 161.05097 96.673652) (xy 161.050975 96.673658) (xy 161.176341 96.799024) (xy 161.176347 96.799029) (xy 161.176348 96.79903) (xy 161.327262 96.892115) (xy 161.495574 96.947887) (xy 161.599455 96.9585) (xy 162.330075 96.958499) (xy 162.398196 96.978501) (xy 162.41917 96.995404) (xy 162.650671 97.226905) (xy 162.684697 97.289217) (xy 162.679632 97.360032) (xy 162.637085 97.416868) (xy 162.570565 97.441679) (xy 162.561576 97.442) (xy 162.554 97.442) (xy 162.554 99.446) (xy 163.708 99.446) (xy 163.708 98.588424) (xy 163.728002 98.520303) (xy 163.781658 98.47381) (xy 163.851932 98.463706) (xy 163.916512 98.4932) (xy 163.923086 98.499321) (xy 165.167119 99.743354) (xy 165.332297 99.853722) (xy 165.413565 99.887384) (xy 165.515831 99.929744) (xy 165.710671 99.9685) (xy 165.710672 99.9685) (xy 165.909329 99.9685) (xy 166.049082 99.9685) (xy 166.117203 99.988502) (xy 166.163696 100.042158) (xy 166.1738 100.112432) (xy 166.144306 100.177012) (xy 166.124591 100.195368) (xy 166.022095 100.272095) (xy 165.934555 100.389034) (xy 165.934555 100.389035) (xy 165.883505 100.525906) (xy 165.877 100.586402) (xy 165.877 101.246) (xy 166.957749 101.246) (xy 166.924755 101.303147) (xy 166.89 101.432857) (xy 166.89 101.567143) (xy 166.924755 101.696853) (xy 166.957749 101.754) (xy 165.877 101.754) (xy 165.877 102.413597) (xy 165.883505 102.474093) (xy 165.934555 102.610964) (xy 165.934555 102.610965) (xy 166.022095 102.727904) (xy 166.139034 102.815444) (xy 166.275906 102.866494) (xy 166.336402 102.872999) (xy 166.336415 102.873) (xy 167.146 102.873) (xy 167.146 101.94225) (xy 167.203147 101.975245) (xy 167.332857 102.01) (xy 167.467143 102.01) (xy 167.596853 101.975245) (xy 167.654 101.94225) (xy 167.654 102.873) (xy 168.463585 102.873) (xy 168.463597 102.872999) (xy 168.524093 102.866494) (xy 168.660964 102.815444) (xy 168.660965 102.815444) (xy 168.777904 102.727904) (xy 168.865444 102.610965) (xy 168.865444 102.610964) (xy 168.916494 102.474093) (xy 168.922999 102.413597) (xy 168.923 102.413585) (xy 168.923 101.754) (xy 167.842251 101.754) (xy 167.875245 101.696853) (xy 167.91 101.567143) (xy 167.91 101.432857) (xy 167.875245 101.303147) (xy 167.842251 101.246) (xy 168.923 101.246) (xy 168.923 100.586414) (xy 168.922999 100.586402) (xy 168.916494 100.525906) (xy 168.865444 100.389035) (xy 168.865444 100.389034) (xy 168.777904 100.272095) (xy 168.660966 100.184556) (xy 168.558352 100.146283) (xy 168.501517 100.103736) (xy 168.476706 100.037215) (xy 168.491798 99.967841) (xy 168.513287 99.939134) (xy 168.597647 99.854775) (xy 168.724722 99.679871) (xy 168.822872 99.487241) (xy 168.88968 99.281629) (xy 168.9235 99.068097) (xy 168.9235 98.851903) (xy 168.88968 98.638371) (xy 168.822872 98.432759) (xy 168.724722 98.240129) (xy 168.597647 98.065225) (xy 168.597644 98.065222) (xy 168.597642 98.065219) (xy 168.44478 97.912357) (xy 168.444777 97.912355) (xy 168.444775 97.912353) (xy 168.279035 97.791936) (xy 168.235681 97.735714) (xy 168.229606 97.664978) (xy 168.262737 97.602186) (xy 168.279035 97.588064) (xy 168.283271 97.584986) (xy 168.444775 97.467647) (xy 168.597647 97.314775) (xy 168.724722 97.139871) (xy 168.822872 96.947241) (xy 168.88968 96.741629) (xy 168.9235 96.528097) (xy 168.9235 96.311903) (xy 168.88968 96.098371) (xy 168.822872 95.892759) (xy 168.724722 95.700129) (xy 168.597647 95.525225) (xy 168.597644 95.525222) (xy 168.597642 95.525219) (xy 168.44478 95.372357) (xy 168.444777 95.372355) (xy 168.444775 95.372353) (xy 168.279035 95.251936) (xy 168.235681 95.195714) (xy 168.229606 95.124978) (xy 168.262737 95.062186) (xy 168.279035 95.048064) (xy 168.306598 95.028038) (xy 168.444775 94.927647) (xy 168.597647 94.774775) (xy 168.724722 94.599871) (xy 168.822872 94.407241) (xy 168.88968 94.201629) (xy 168.9235 93.988097) (xy 168.9235 93.771903) (xy 168.88968 93.558371) (xy 168.822872 93.352759) (xy 168.724722 93.160129) (xy 168.597647 92.985225) (xy 168.597644 92.985222) (xy 168.597642 92.985219) (xy 168.44478 92.832357) (xy 168.444777 92.832355) (xy 168.444775 92.832353) (xy 168.269871 92.705278) (xy 168.077241 92.607128) (xy 168.07724 92.607127) (xy 168.077239 92.607127) (xy 167.871632 92.540321) (xy 167.871629 92.54032) (xy 167.658097 92.5065) (xy 167.141903 92.5065) (xy 166.928371 92.54032) (xy 166.928368 92.54032) (xy 166.928367 92.540321) (xy 166.72276 92.607127) (xy 166.530125 92.70528) (xy 166.355222 92.832355) (xy 166.355219 92.832357) (xy 166.202357 92.985219) (xy 166.202355 92.985222) (xy 166.07528 93.160125) (xy 166.053586 93.202703) (xy 166.004838 93.254318) (xy 165.941319 93.2715) (xy 165.584239 93.2715) (xy 165.516118 93.251498) (xy 165.495144 93.234595) (xy 164.12641 91.865861) (xy 164.092384 91.803549) (xy 164.097449 91.732734) (xy 164.108265 91.710618) (xy 164.142749 91.654711) (xy 164.14275 91.654709) (xy 164.197568 91.489276) (xy 164.197569 91.489273) (xy 164.207999 91.387184) (xy 164.208 91.387184) (xy 164.208 91.354) (xy 163.0345 91.354) (xy 162.966379 91.333998) (xy 162.919886 91.280342) (xy 162.9085 91.228) (xy 162.9085 90.972) (xy 162.928502 90.903879) (xy 162.982158 90.857386) (xy 163.0345 90.846) (xy 164.208 90.846) (xy 164.208 90.812815) (xy 164.197569 90.710726) (xy 164.197568 90.710723) (xy 164.142751 90.545292) (xy 164.051262 90.396966) (xy 164.051257 90.39696) (xy 163.928039 90.273742) (xy 163.928033 90.273737) (xy 163.779705 90.182247) (xy 163.757086 90.174752) (xy 163.698715 90.134337) (xy 163.671461 90.06878) (xy 163.677117 90.015514) (xy 163.697392 89.954327) (xy 163.697394 89.954318) (xy 163.707999 89.850516) (xy 163.708 89.850516) (xy 163.708 88.554) (xy 162.172 88.554) (xy 162.103879 88.533998) (xy 162.057386 88.480342) (xy 162.046 88.428) (xy 162.046 86.042) (xy 161.599483 86.042) (xy 161.495681 86.052605) (xy 161.495678 86.052606) (xy 161.327469 86.108344) (xy 161.314182 86.11654) (xy 161.245702 86.135276) (xy 161.177964 86.114015) (xy 161.158946 86.098397) (xy 160.945404 85.884855) (xy 160.911379 85.822543) (xy 160.9085 85.79576) (xy 160.9085 85.435373) (xy 160.928502 85.367252) (xy 160.982158 85.320759) (xy 161.052432 85.310655) (xy 161.117012 85.340149) (xy 161.123595 85.346278) (xy 161.176341 85.399024) (xy 161.176347 85.399029) (xy 161.176348 85.39903) (xy 161.327262 85.492115) (xy 161.495574 85.547887) (xy 161.599455 85.5585) (xy 162.262274 85.558499) (xy 162.330395 85.578501) (xy 162.351369 85.595404) (xy 162.586887 85.830922) (xy 162.620913 85.893234) (xy 162.615848 85.964049) (xy 162.586887 86.009112) (xy 162.554 86.041999) (xy 162.554 88.046) (xy 163.708 88.046) (xy 163.708 87.256225) (xy 163.728002 87.188104) (xy 163.781658 87.141611) (xy 163.851932 87.131507) (xy 163.916512 87.161001) (xy 163.923095 87.16713) (xy 165.299318 88.543353) (xy 165.464495 88.653721) (xy 165.64803 88.729744) (xy 165.84287 88.7685) (xy 166.041528 88.7685) (xy 166.049082 88.7685) (xy 166.117203 88.788502) (xy 166.163696 88.842158) (xy 166.1738 88.912432) (xy 166.144306 88.977012) (xy 166.124591 88.995368) (xy 166.022095 89.072095) (xy 165.934555 89.189034) (xy 165.934555 89.189035) (xy 165.883505 89.325906) (xy 165.877 89.386402) (xy 165.877 90.046) (xy 166.957749 90.046) (xy 166.924755 90.103147) (xy 166.89 90.232857) (xy 166.89 90.367143) (xy 166.924755 90.496853) (xy 166.957749 90.554) (xy 165.877 90.554) (xy 165.877 91.213597) (xy 165.883505 91.274093) (xy 165.934555 91.410964) (xy 165.934555 91.410965) (xy 166.022095 91.527904) (xy 166.139034 91.615444) (xy 166.275906 91.666494) (xy 166.336402 91.672999) (xy 166.336415 91.673) (xy 167.146 91.673) (xy 167.146 90.74225) (xy 167.203147 90.775245) (xy 167.332857 90.81) (xy 167.467143 90.81) (xy 167.596853 90.775245) (xy 167.654 90.74225) (xy 167.654 91.673) (xy 168.463585 91.673) (xy 168.463597 91.672999) (xy 168.524093 91.666494) (xy 168.660964 91.615444) (xy 168.660965 91.615444) (xy 168.777904 91.527904) (xy 168.865444 91.410965) (xy 168.865444 91.410964) (xy 168.916494 91.274093) (xy 168.922999 91.213597) (xy 168.923 91.213585) (xy 168.923 90.554) (xy 167.842251 90.554) (xy 167.875245 90.496853) (xy 167.91 90.367143) (xy 167.91 90.232857) (xy 167.875245 90.103147) (xy 167.842251 90.046) (xy 168.923 90.046) (xy 168.923 89.386414) (xy 168.922999 89.386402) (xy 168.916494 89.325906) (xy 168.865444 89.189035) (xy 168.865444 89.189034) (xy 168.777904 89.072095) (xy 168.660966 88.984556) (xy 168.558352 88.946283) (xy 168.501517 88.903736) (xy 168.476706 88.837215) (xy 168.491798 88.767841) (xy 168.513287 88.739134) (xy 168.597647 88.654775) (xy 168.724722 88.479871) (xy 168.822872 88.287241) (xy 168.88968 88.081629) (xy 168.9235 87.868097) (xy 168.9235 87.651903) (xy 168.88968 87.438371) (xy 168.822872 87.232759) (xy 168.724722 87.040129) (xy 168.597647 86.865225) (xy 168.597644 86.865222) (xy 168.597642 86.865219) (xy 168.44478 86.712357) (xy 168.444777 86.712355) (xy 168.444775 86.712353) (xy 168.279034 86.591935) (xy 168.235681 86.535714) (xy 168.229606 86.464978) (xy 168.262737 86.402186) (xy 168.279035 86.388064) (xy 168.288474 86.381206) (xy 168.444775 86.267647) (xy 168.597647 86.114775) (xy 168.724722 85.939871) (xy 168.822872 85.747241) (xy 168.88968 85.541629) (xy 168.9235 85.328097) (xy 168.9235 85.111903) (xy 168.88968 84.898371) (xy 168.822872 84.692759) (xy 168.724722 84.500129) (xy 168.597647 84.325225) (xy 168.597644 84.325222) (xy 168.597642 84.325219) (xy 168.44478 84.172357) (xy 168.444777 84.172355) (xy 168.444775 84.172353) (xy 168.279035 84.051936) (xy 168.235681 83.995714) (xy 168.229606 83.924978) (xy 168.262737 83.862186) (xy 168.279035 83.848064) (xy 168.34155 83.802644) (xy 168.444775 83.727647) (xy 168.597647 83.574775) (xy 168.724722 83.399871) (xy 168.822872 83.207241) (xy 168.88968 83.001629) (xy 168.9235 82.788097) (xy 168.9235 82.571903) (xy 168.88968 82.358371) (xy 168.822872 82.152759) (xy 168.724722 81.960129) (xy 168.597647 81.785225) (xy 168.597644 81.785222) (xy 168.597642 81.785219) (xy 168.44478 81.632357) (xy 168.444777 81.632355) (xy 168.444775 81.632353) (xy 168.285683 81.516766) (xy 168.269874 81.50528) (xy 168.269873 81.505279) (xy 168.269871 81.505278) (xy 168.077241 81.407128) (xy 168.07724 81.407127) (xy 168.077239 81.407127) (xy 167.871632 81.340321) (xy 167.871629 81.34032) (xy 167.658097 81.3065) (xy 167.141903 81.3065) (xy 166.928371 81.34032) (xy 166.928368 81.34032) (xy 166.928367 81.340321) (xy 166.72276 81.407127) (xy 166.530125 81.50528) (xy 166.355222 81.632355) (xy 166.355219 81.632357) (xy 166.202357 81.785219) (xy 166.202355 81.785222) (xy 166.07528 81.960125) (xy 166.075278 81.960129) (xy 166.057216 81.995579) (xy 166.053586 82.002703) (xy 166.004838 82.054318) (xy 165.941319 82.0715) (xy 165.649245 82.0715) (xy 165.581124 82.051498) (xy 165.56015 82.034595) (xy 164.113059 80.587504) (xy 164.079033 80.525192) (xy 164.084098 80.454377) (xy 164.094914 80.43226) (xy 164.142751 80.354706) (xy 164.197568 80.189276) (xy 164.197569 80.189273) (xy 164.207999 80.087184) (xy 164.208 80.087184) (xy 164.208 80.054) (xy 163.0345 80.054) (xy 162.966379 80.033998) (xy 162.919886 79.980342) (xy 162.9085 79.928) (xy 162.9085 79.672) (xy 162.928502 79.603879) (xy 162.982158 79.557386) (xy 163.0345 79.546) (xy 164.208 79.546) (xy 164.208 79.512815) (xy 164.197569 79.410726) (xy 164.197568 79.410723) (xy 164.142751 79.245292) (xy 164.051262 79.096966) (xy 164.051257 79.09696) (xy 163.928039 78.973742) (xy 163.928033 78.973737) (xy 163.779705 78.882247) (xy 163.757086 78.874752) (xy 163.698715 78.834337) (xy 163.671461 78.76878) (xy 163.677117 78.715514) (xy 163.697392 78.654327) (xy 163.697394 78.654318) (xy 163.707999 78.550516) (xy 163.708 78.550516) (xy 163.708 77.254) (xy 162.172 77.254) (xy 162.103879 77.233998) (xy 162.057386 77.180342) (xy 162.046 77.128) (xy 162.046 74.742) (xy 161.599483 74.742) (xy 161.495681 74.752605) (xy 161.495678 74.752606) (xy 161.327469 74.808344) (xy 161.314182 74.81654) (xy 161.245702 74.835276) (xy 161.177964 74.814015) (xy 161.158946 74.798397) (xy 160.945404 74.584855) (xy 160.911379 74.522543) (xy 160.9085 74.49576) (xy 160.9085 74.135373) (xy 160.928502 74.067252) (xy 160.982158 74.020759) (xy 161.052432 74.010655) (xy 161.117012 74.040149) (xy 161.123595 74.046278) (xy 161.176341 74.099024) (xy 161.176347 74.099029) (xy 161.176348 74.09903) (xy 161.327262 74.192115) (xy 161.495574 74.247887) (xy 161.599455 74.2585) (xy 162.262274 74.258499) (xy 162.330395 74.278501) (xy 162.351369 74.295404) (xy 162.586887 74.530922) (xy 162.620913 74.593234) (xy 162.615848 74.664049) (xy 162.586887 74.709112) (xy 162.554 74.741999) (xy 162.554 76.746) (xy 163.708 76.746) (xy 163.708 75.956225) (xy 163.728002 75.888104) (xy 163.781658 75.841611) (xy 163.851932 75.831507) (xy 163.916512 75.861001) (xy 163.923095 75.86713) (xy 165.158846 77.102881) (xy 165.299318 77.243353) (xy 165.464495 77.353721) (xy 165.64803 77.429744) (xy 165.84287 77.4685) (xy 166.049082 77.4685) (xy 166.117203 77.488502) (xy 166.163696 77.542158) (xy 166.1738 77.612432) (xy 166.144306 77.677012) (xy 166.124591 77.695368) (xy 166.022095 77.772095) (xy 165.934555 77.889034) (xy 165.934555 77.889035) (xy 165.883505 78.025906) (xy 165.877 78.086402) (xy 165.877 78.746) (xy 166.957749 78.746) (xy 166.924755 78.803147) (xy 166.89 78.932857) (xy 166.89 79.067143) (xy 166.924755 79.196853) (xy 166.957749 79.254) (xy 165.877 79.254) (xy 165.877 79.913597) (xy 165.883505 79.974093) (xy 165.934555 80.110964) (xy 165.934555 80.110965) (xy 166.022095 80.227904) (xy 166.139034 80.315444) (xy 166.275906 80.366494) (xy 166.336402 80.372999) (xy 166.336415 80.373) (xy 167.146 80.373) (xy 167.146 79.44225) (xy 167.203147 79.475245) (xy 167.332857 79.51) (xy 167.467143 79.51) (xy 167.596853 79.475245) (xy 167.654 79.44225) (xy 167.654 80.373) (xy 168.463585 80.373) (xy 168.463597 80.372999) (xy 168.524093 80.366494) (xy 168.660964 80.315444) (xy 168.660965 80.315444) (xy 168.777904 80.227904) (xy 168.865444 80.110965) (xy 168.865444 80.110964) (xy 168.916494 79.974093) (xy 168.922999 79.913597) (xy 168.923 79.913585) (xy 168.923 79.254) (xy 167.842251 79.254) (xy 167.875245 79.196853) (xy 167.91 79.067143) (xy 167.91 78.932857) (xy 167.875245 78.803147) (xy 167.842251 78.746) (xy 168.923 78.746) (xy 168.923 78.086414) (xy 168.922999 78.086402) (xy 168.916494 78.025906) (xy 168.865444 77.889035) (xy 168.865444 77.889034) (xy 168.777904 77.772095) (xy 168.660966 77.684556) (xy 168.558352 77.646283) (xy 168.501517 77.603736) (xy 168.476706 77.537215) (xy 168.491798 77.467841) (xy 168.513287 77.439134) (xy 168.597647 77.354775) (xy 168.724722 77.179871) (xy 168.822872 76.987241) (xy 168.88968 76.781629) (xy 168.9235 76.568097) (xy 168.9235 76.351903) (xy 168.88968 76.138371) (xy 168.822872 75.932759) (xy 168.724722 75.740129) (xy 168.597647 75.565225) (xy 168.597644 75.565222) (xy 168.597642 75.565219) (xy 168.44478 75.412357) (xy 168.444777 75.412355) (xy 168.444775 75.412353) (xy 168.279034 75.291935) (xy 168.235681 75.235714) (xy 168.229606 75.164978) (xy 168.262737 75.102186) (xy 168.279035 75.088064) (xy 168.30991 75.065632) (xy 168.444775 74.967647) (xy 168.597647 74.814775) (xy 168.724722 74.639871) (xy 168.822872 74.447241) (xy 168.88968 74.241629) (xy 168.9235 74.028097) (xy 168.9235 73.811903) (xy 168.88968 73.598371) (xy 168.822872 73.392759) (xy 168.724722 73.200129) (xy 168.597647 73.025225) (xy 168.597644 73.025222) (xy 168.597642 73.025219) (xy 168.44478 72.872357) (xy 168.444777 72.872355) (xy 168.444775 72.872353) (xy 168.279035 72.751936) (xy 168.235681 72.695714) (xy 168.229606 72.624978) (xy 168.262737 72.562186) (xy 168.279035 72.548064) (xy 168.285509 72.54336) (xy 168.444775 72.427647) (xy 168.597647 72.274775) (xy 168.724722 72.099871) (xy 168.822872 71.907241) (xy 168.88968 71.701629) (xy 168.9235 71.488097) (xy 168.9235 71.271903) (xy 168.88968 71.058371) (xy 168.822872 70.852759) (xy 168.724722 70.660129) (xy 168.597647 70.485225) (xy 168.597644 70.485222) (xy 168.597642 70.485219) (xy 168.44478 70.332357) (xy 168.444777 70.332355) (xy 168.444775 70.332353) (xy 168.283035 70.214842) (xy 168.269874 70.20528) (xy 168.269873 70.205279) (xy 168.269871 70.205278) (xy 168.077241 70.107128) (xy 168.07724 70.107127) (xy 168.077239 70.107127) (xy 167.871632 70.040321) (xy 167.871629 70.04032) (xy 167.658097 70.0065) (xy 167.141903 70.0065) (xy 166.928371 70.04032) (xy 166.928368 70.04032) (xy 166.928367 70.040321) (xy 166.72276 70.107127) (xy 166.530125 70.20528) (xy 166.355222 70.332355) (xy 166.355219 70.332357) (xy 166.202357 70.485219) (xy 166.202355 70.485222) (xy 166.07528 70.660125) (xy 165.977127 70.85276) (xy 165.910321 71.058367) (xy 165.91032 71.058371) (xy 165.882992 71.230919) (xy 165.8765 71.271906) (xy 165.8765 71.31176) (xy 165.856498 71.379881) (xy 165.802842 71.426374) (xy 165.732568 71.436478) (xy 165.667988 71.406984) (xy 165.661405 71.400855) (xy 163.673633 69.413083) (xy 163.673623 69.413075) (xy 163.534877 69.33297) (xy 163.534875 69.332969) (xy 163.534873 69.332968) (xy 163.449423 69.310072) (xy 163.449422 69.310071) (xy 163.380111 69.2915) (xy 161.119889 69.2915) (xy 161.119888 69.2915) (xy 161.050577 69.310071) (xy 161.050577 69.310072) (xy 160.988677 69.326658) (xy 160.965127 69.332968) (xy 160.965122 69.33297) (xy 160.826375 69.413076) (xy 160.826365 69.413084) (xy 158.697081 71.542368) (xy 158.634769 71.576394) (xy 158.563953 71.571329) (xy 158.518891 71.542368) (xy 158.513263 71.53674) (xy 158.396207 71.449112) (xy 158.396204 71.449111) (xy 158.265466 71.400347) (xy 158.208631 71.3578) (xy 158.183821 71.29128) (xy 158.1835 71.282292) (xy 158.1835 65.033838) (xy 158.183499 65.033834) (xy 158.182443 65.028526) (xy 158.178773 65.010072) (xy 158.149548 64.863146) (xy 158.082948 64.702359) (xy 157.986259 64.557656) (xy 157.986258 64.557655) (xy 157.986256 64.557652) (xy 157.986254 64.55765) (xy 154.24235 60.813745) (xy 154.242344 60.81374) (xy 154.157244 60.756878) (xy 154.097641 60.717052) (xy 153.936854 60.650452) (xy 153.909842 60.645079) (xy 153.766166 60.6165) (xy 153.766163 60.6165) (xy 144.099 60.6165) (xy 144.030879 60.596498) (xy 143.984386 60.542842) (xy 143.973 60.4905) (xy 143.973 59.854) (xy 143.042251 59.854) (xy 143.075245 59.796853) (xy 143.11 59.667143) (xy 143.11 59.532857) (xy 143.075245 59.403147) (xy 143.042251 59.346) (xy 143.973 59.346) (xy 143.973 58.536414) (xy 143.972999 58.536402) (xy 143.966494 58.475906) (xy 143.915444 58.339035) (xy 143.915444 58.339034) (xy 143.827904 58.222095) (xy 143.710965 58.134555) (xy 143.574093 58.083505) (xy 143.513597 58.077) (xy 142.854 58.077) (xy 142.854 59.157749) (xy 142.796853 59.124755) (xy 142.667143 59.09) (xy 142.532857 59.09) (xy 142.403147 59.124755) (xy 142.346 59.157749) (xy 142.346 58.077) (xy 141.686402 58.077) (xy 141.625906 58.083505) (xy 141.489035 58.134555) (xy 141.489034 58.134555) (xy 141.372095 58.222095) (xy 141.284555 58.339034) (xy 141.284553 58.339039) (xy 141.246282 58.441647) (xy 141.203735 58.498483) (xy 141.137215 58.523293) (xy 141.067841 58.508201) (xy 141.039132 58.486709) (xy 140.95478 58.402357) (xy 140.954777 58.402355) (xy 140.954775 58.402353) (xy 140.779871 58.275278) (xy 140.587241 58.177128) (xy 140.58724 58.177127) (xy 140.587239 58.177127) (xy 140.381632 58.110321) (xy 140.381629 58.11032) (xy 140.168097 58.0765) (xy 139.951903 58.0765) (xy 139.738371 58.11032) (xy 139.738368 58.11032) (xy 139.738367 58.110321) (xy 139.53276 58.177127) (xy 139.352599 58.268924) (xy 139.282822 58.282028) (xy 139.217037 58.255328) (xy 139.206309 58.24576) (xy 138.673627 57.713078) (xy 138.673625 57.713077) (xy 138.673623 57.713075) (xy 138.534877 57.63297) (xy 138.534874 57.632969) (xy 138.534873 57.632968) (xy 138.534871 57.632967) (xy 138.53487 57.632967) (xy 138.419066 57.601938) (xy 138.419066 57.601937) (xy 138.380111 57.5915) (xy 135.419889 57.5915) (xy 135.419888 57.5915) (xy 135.380933 57.601937) (xy 135.380934 57.601938) (xy 135.265129 57.632967) (xy 135.265124 57.632969) (xy 135.223864 57.65679) (xy 135.223865 57.656791) (xy 135.126372 57.713078) (xy 135.020265 57.819185) (xy 135.020264 57.819184) (xy 134.771396 58.068053) (xy 134.709084 58.102079) (xy 134.702015 58.103406) (xy 134.658372 58.110319) (xy 134.45276 58.177127) (xy 134.260125 58.27528) (xy 134.085222 58.402355) (xy 134.085219 58.402357) (xy 133.932357 58.555219) (xy 133.932355 58.555222) (xy 133.80528 58.730125) (xy 133.707127 58.92276) (xy 133.641851 59.123658) (xy 133.64032 59.128371) (xy 133.6065 59.341903) (xy 133.6065 59.858097) (xy 133.64032 60.071629) (xy 133.640321 60.071632) (xy 133.68042 60.195045) (xy 133.707128 60.277241) (xy 133.787857 60.435681) (xy 133.80528 60.469874) (xy 133.824736 60.496653) (xy 133.932353 60.644775) (xy 133.932355 60.644777) (xy 133.932357 60.64478) (xy 134.085219 60.797642) (xy 134.085222 60.797644) (xy 134.085225 60.797647) (xy 134.260129 60.924722) (xy 134.452759 61.022872) (xy 134.658371 61.08968) (xy 134.871903 61.1235) (xy 134.871906 61.1235) (xy 135.088094 61.1235) (xy 135.088097 61.1235) (xy 135.301629 61.08968) (xy 135.507241 61.022872) (xy 135.699871 60.924722) (xy 135.874775 60.797647) (xy 136.027647 60.644775) (xy 136.148064 60.479035) (xy 136.204286 60.435681) (xy 136.275022 60.429606) (xy 136.337814 60.462737) (xy 136.351936 60.479035) (xy 136.472353 60.644775) (xy 136.472355 60.644777) (xy 136.472357 60.64478) (xy 136.625219 60.797642) (xy 136.625222 60.797644) (xy 136.625225 60.797647) (xy 136.800129 60.924722) (xy 136.925876 60.988793) (xy 136.97749 61.03754) (xy 136.994556 61.106455) (xy 136.971655 61.173657) (xy 136.957768 61.190154) (xy 136.898209 61.249713) (xy 136.898208 61.249715) (xy 136.810606 61.38082) (xy 136.750265 61.526497) (xy 136.750263 61.526502) (xy 136.7195 61.681155) (xy 136.7195 61.838844) (xy 136.746745 61.975813) (xy 136.750263 61.993497) (xy 136.810606 62.139179) (xy 136.898211 62.270289) (xy 137.009711 62.381789) (xy 137.140821 62.469394) (xy 137.286503 62.529737) (xy 137.441158 62.5605) (xy 137.441159 62.5605) (xy 137.598841 62.5605) (xy 137.598842 62.5605) (xy 137.753497 62.529737) (xy 137.899179 62.469394) (xy 138.030289 62.381789) (xy 138.141789 62.270289) (xy 138.229394 62.139179) (xy 138.289737 61.993497) (xy 138.300691 61.938424) (xy 138.333597 61.875518) (xy 138.395291 61.840385) (xy 138.466186 61.844185) (xy 138.513364 61.873913) (xy 139.904595 63.265144) (xy 139.938621 63.327456) (xy 139.9415 63.354239) (xy 139.9415 64.05962) (xy 139.921498 64.127741) (xy 139.881648 64.16686) (xy 139.826349 64.200968) (xy 139.826341 64.200975) (xy 139.700975 64.326341) (xy 139.70097 64.326347) (xy 139.607885 64.477262) (xy 139.552113 64.645572) (xy 139.552112 64.645579) (xy 139.5415 64.749446) (xy 139.5415 65.350544) (xy 139.552112 65.454425) (xy 139.607885 65.622738) (xy 139.70097 65.773652) (xy 139.700975 65.773658) (xy 139.802683 65.875366) (xy 139.836709 65.937678) (xy 139.831644 66.008493) (xy 139.802683 66.053556) (xy 139.775549 66.080689) (xy 139.775544 66.080696) (xy 139.690856 66.223894) (xy 139.644437 66.38367) (xy 139.644437 66.383671) (xy 139.6415 66.420988) (xy 139.6415 67.578) (xy 139.621498 67.646121) (xy 139.567842 67.692614) (xy 139.5155 67.704) (xy 139.283489 67.704) (xy 139.246171 67.706937) (xy 139.24617 67.706937) (xy 139.086394 67.753356) (xy 138.943196 67.838044) (xy 138.943189 67.838049) (xy 138.825549 67.955689) (xy 138.825544 67.955696) (xy 138.740856 68.098894) (xy 138.694437 68.25867) (xy 138.694437 68.258671) (xy 138.6915 68.295988) (xy 138.6915 68.84576) (xy 138.671498 68.913881) (xy 138.654595 68.934855) (xy 138.173095 69.416355) (xy 138.110783 69.450381) (xy 138.039968 69.445316) (xy 137.983132 69.402769) (xy 137.958321 69.336249) (xy 137.958 69.32726) (xy 137.958 69.254) (xy 137.004 69.254) (xy 137.004 70.083) (xy 137.250517 70.083) (xy 137.250516 70.082999) (xy 137.354318 70.072394) (xy 137.354321 70.072393) (xy 137.522525 70.016657) (xy 137.673339 69.923634) (xy 137.673345 69.923629) (xy 137.798629 69.798345) (xy 137.803185 69.792584) (xy 137.805397 69.794332) (xy 137.848544 69.755524) (xy 137.918619 69.74412) (xy 137.983735 69.772412) (xy 138.023218 69.831417) (xy 138.029 69.869148) (xy 138.029 70.036806) (xy 138.008998 70.104927) (xy 137.969148 70.144046) (xy 137.921653 70.173341) (xy 137.798347 70.296647) (xy 137.798342 70.296653) (xy 137.706791 70.44508) (xy 137.651937 70.610622) (xy 137.6415 70.712778) (xy 137.6415 71.287212) (xy 137.651937 71.38938) (xy 137.706791 71.55492) (xy 137.798342 71.703346) (xy 137.798347 71.703352) (xy 137.921647 71.826652) (xy 137.921653 71.826657) (xy 137.921654 71.826658) (xy 138.07008 71.918209) (xy 138.235619 71.973062) (xy 138.337787 71.9835) (xy 138.937212 71.983499) (xy 139.039381 71.973062) (xy 139.20492 71.918209) (xy 139.353346 71.826658) (xy 139.403599 71.776405) (xy 139.460905 71.7191) (xy 139.523217 71.685074) (xy 139.594032 71.690139) (xy 139.639095 71.7191) (xy 139.746647 71.826652) (xy 139.746651 71.826655) (xy 139.746654 71.826658) (xy 139.794147 71.855952) (xy 139.841625 71.908736) (xy 139.854 71.963192) (xy 139.854 72.233261) (xy 139.833998 72.301382) (xy 139.817095 72.322356) (xy 139.584856 72.554595) (xy 139.522544 72.588621) (xy 139.495761 72.5915) (xy 139.404513 72.5915) (xy 139.217711 72.631206) (xy 139.043247 72.708882) (xy 138.888744 72.821135) (xy 138.760965 72.963048) (xy 138.760958 72.963058) (xy 138.667452 73.125016) (xy 138.665473 73.128444) (xy 138.660029 73.145199) (xy 138.606457 73.310072) (xy 138.586496 73.5) (xy 138.606457 73.689927) (xy 138.630577 73.764159) (xy 138.665473 73.871556) (xy 138.67785 73.892993) (xy 138.760958 74.036941) (xy 138.760965 74.036951) (xy 138.888744 74.178864) (xy 138.933497 74.211379) (xy 139.043248 74.291118) (xy 139.217712 74.368794) (xy 139.404513 74.4085) (xy 139.595487 74.4085) (xy 139.782288 74.368794) (xy 139.956752 74.291118) (xy 140.111253 74.178866) (xy 140.120323 74.168793) (xy 140.239034 74.036951) (xy 140.239035 74.036949) (xy 140.23904 74.036944) (xy 140.334527 73.871556) (xy 140.393542 73.689928) (xy 140.413504 73.5) (xy 140.413504 73.499998) (xy 140.413504 73.499235) (xy 140.413628 73.498809) (xy 140.414194 73.493433) (xy 140.415177 73.493536) (xy 140.433506 73.431114) (xy 140.450409 73.410139) (xy 140.678392 73.182156) (xy 140.949422 72.911127) (xy 141.029532 72.772372) (xy 141.038797 72.737794) (xy 141.071 72.617611) (xy 141.071 71.963192) (xy 141.091002 71.895071) (xy 141.130852 71.855952) (xy 141.178346 71.826658) (xy 141.214209 71.790795) (xy 141.260905 71.7441) (xy 141.323217 71.710074) (xy 141.394032 71.715139) (xy 141.439095 71.7441) (xy 141.521647 71.826652) (xy 141.521653 71.826657) (xy 141.521654 71.826658) (xy 141.67008 71.918209) (xy 141.670082 71.918209) (xy 141.676326 71.922061) (xy 141.675447 71.923485) (xy 141.722033 71.964502) (xy 141.7415 72.031783) (xy 141.7415 73.22649) (xy 141.721498 73.294611) (xy 141.704595 73.315585) (xy 138.423595 76.596585) (xy 138.361283 76.630611) (xy 138.290468 76.625546) (xy 138.233632 76.582999) (xy 138.208821 76.516479) (xy 138.2085 76.50749) (xy 138.2085 76.23239) (xy 138.2085 76.232389) (xy 138.167032 76.077628) (xy 138.130947 76.015127) (xy 138.122988 76.001342) (xy 138.086924 75.938876) (xy 138.086916 75.938866) (xy 132.848163 70.700114) (xy 132.814137 70.637802) (xy 132.81191 70.623818) (xy 132.811893 70.623655) (xy 132.810562 70.610619) (xy 132.806755 70.599129) (xy 132.804317 70.528174) (xy 132.840627 70.467165) (xy 132.904156 70.435471) (xy 132.926361 70.433499) (xy 133.112212 70.433499) (xy 133.214381 70.423062) (xy 133.37992 70.368209) (xy 133.528346 70.276658) (xy 133.651658 70.153346) (xy 133.743209 70.00492) (xy 133.798062 69.839381) (xy 133.8085 69.737213) (xy 133.808499 69.605192) (xy 133.828501 69.537074) (xy 133.882156 69.490581) (xy 133.95243 69.480476) (xy 134.017011 69.509969) (xy 134.023594 69.516099) (xy 134.146647 69.639152) (xy 134.146653 69.639157) (xy 134.146654 69.639158) (xy 134.29508 69.730709) (xy 134.460619 69.785562) (xy 134.562787 69.796) (xy 135.137212 69.795999) (xy 135.239381 69.785562) (xy 135.40492 69.730709) (xy 135.482206 69.683037) (xy 135.550685 69.6643) (xy 135.618423 69.685559) (xy 135.655594 69.724132) (xy 135.701363 69.798336) (xy 135.70137 69.798345) (xy 135.826654 69.923629) (xy 135.82666 69.923634) (xy 135.977474 70.016657) (xy 136.145678 70.072393) (xy 136.145681 70.072394) (xy 136.249483 70.082999) (xy 136.249483 70.083) (xy 136.496 70.083) (xy 136.496 68.872) (xy 136.516002 68.803879) (xy 136.569658 68.757386) (xy 136.622 68.746) (xy 137.958 68.746) (xy 137.958 68.624483) (xy 137.947394 68.520681) (xy 137.947393 68.520678) (xy 137.891657 68.352474) (xy 137.798634 68.20166) (xy 137.798629 68.201654) (xy 137.673344 68.076369) (xy 137.670551 68.074161) (xy 137.669131 68.072156) (xy 137.66815 68.071175) (xy 137.668317 68.071007) (xy 137.629519 68.016222) (xy 137.626325 67.945298) (xy 137.661983 67.883905) (xy 137.670554 67.876478) (xy 137.673639 67.874037) (xy 137.673652 67.87403) (xy 137.79903 67.748652) (xy 137.892115 67.597738) (xy 137.947887 67.429426) (xy 137.9585 67.325545) (xy 137.958499 66.574456) (xy 137.958362 66.573119) (xy 137.947887 66.470574) (xy 137.945304 66.462778) (xy 137.892115 66.302262) (xy 137.892023 66.302113) (xy 137.830303 66.202049) (xy 137.814563 66.176532) (xy 137.796411 66.110191) (xy 137.796 66.110191) (xy 137.796 66.108689) (xy 137.795826 66.108054) (xy 137.796 66.107499) (xy 137.796 66.058) (xy 138.304 66.058) (xy 138.350517 66.058) (xy 138.350516 66.057999) (xy 138.454318 66.047394) (xy 138.454321 66.047393) (xy 138.622525 65.991657) (xy 138.773339 65.898634) (xy 138.773345 65.898629) (xy 138.898629 65.773345) (xy 138.898634 65.773339) (xy 138.991657 65.622525) (xy 139.047393 65.454321) (xy 139.047394 65.454318) (xy 139.057999 65.350516) (xy 139.058 65.350516) (xy 139.058 65.304) (xy 138.304 65.304) (xy 138.304 66.058) (xy 137.796 66.058) (xy 137.796 64.796) (xy 138.304 64.796) (xy 139.058 64.796) (xy 139.058 64.749483) (xy 139.047394 64.645681) (xy 139.047393 64.645678) (xy 138.991657 64.477474) (xy 138.898634 64.32666) (xy 138.898629 64.326654) (xy 138.773345 64.20137) (xy 138.773339 64.201365) (xy 138.622525 64.108342) (xy 138.454321 64.052606) (xy 138.454318 64.052605) (xy 138.350516 64.042) (xy 138.304 64.042) (xy 138.304 64.796) (xy 137.796 64.796) (xy 137.796 64.042) (xy 137.749483 64.042) (xy 137.645681 64.052605) (xy 137.645678 64.052606) (xy 137.477474 64.108342) (xy 137.32666 64.201365) (xy 137.326654 64.20137) (xy 137.264449 64.263576) (xy 137.202137 64.297602) (xy 137.131322 64.292537) (xy 137.086259 64.263576) (xy 137.023658 64.200975) (xy 137.023652 64.20097) (xy 136.885864 64.115981) (xy 136.847246 64.078742) (xy 136.836274 64.062321) (xy 136.792071 63.996167) (xy 136.703833 63.907929) (xy 136.447122 63.651218) (xy 136.413096 63.588906) (xy 136.410907 63.575293) (xy 136.409643 63.56327) (xy 136.393542 63.410072) (xy 136.334527 63.228444) (xy 136.23904 63.063056) (xy 136.239038 63.063054) (xy 136.239034 63.063048) (xy 136.111255 62.921135) (xy 135.956752 62.808882) (xy 135.782288 62.731206) (xy 135.595487 62.6915) (xy 135.404513 62.6915) (xy 135.217711 62.731206) (xy 135.043247 62.808882) (xy 134.888744 62.921135) (xy 134.760965 63.063048) (xy 134.760958 63.063058) (xy 134.665476 63.228438) (xy 134.665473 63.228445) (xy 134.606457 63.410072) (xy 134.586496 63.6) (xy 134.606457 63.789927) (xy 134.62043 63.832929) (xy 134.665473 63.971556) (xy 134.665476 63.971561) (xy 134.700561 64.032331) (xy 134.717299 64.101327) (xy 134.694078 64.168419) (xy 134.638271 64.212306) (xy 134.567596 64.219054) (xy 134.525295 64.202572) (xy 134.372525 64.108342) (xy 134.204321 64.052606) (xy 134.204318 64.052605) (xy 134.100516 64.042) (xy 134.054 64.042) (xy 134.054 64.796) (xy 134.808 64.796) (xy 134.808 64.749483) (xy 134.797394 64.645681) (xy 134.797393 64.645678) (xy 134.741657 64.477474) (xy 134.735321 64.467202) (xy 134.716584 64.398722) (xy 134.737843 64.330984) (xy 134.792351 64.285492) (xy 134.8628 64.276691) (xy 134.916622 64.299118) (xy 135.043248 64.391118) (xy 135.141187 64.434723) (xy 135.217716 64.468796) (xy 135.223992 64.470835) (xy 135.223246 64.473129) (xy 135.276071 64.501645) (xy 135.310395 64.563794) (xy 135.30701 64.630796) (xy 135.302112 64.645576) (xy 135.2915 64.749446) (xy 135.2915 65.110403) (xy 135.271498 65.178524) (xy 135.254595 65.199498) (xy 135.023095 65.430998) (xy 134.960783 65.465024) (xy 134.889968 65.459959) (xy 134.833132 65.417412) (xy 134.808321 65.350892) (xy 134.808 65.341903) (xy 134.808 65.304) (xy 134.054 65.304) (xy 134.054 66.061199) (xy 134.084178 66.116465) (xy 134.079113 66.18728) (xy 134.050152 66.232343) (xy 134.023347 66.259147) (xy 134.023342 66.259153) (xy 133.931791 66.40758) (xy 133.876937 66.573122) (xy 133.8665 66.675278) (xy 133.8665 67.274712) (xy 133.876937 67.37688) (xy 133.931791 67.54242) (xy 134.023342 67.690846) (xy 134.023347 67.690852) (xy 134.1309 67.798405) (xy 134.164926 67.860717) (xy 134.159861 67.931532) (xy 134.1309 67.976595) (xy 134.023347 68.084147) (xy 134.023342 68.084153) (xy 133.931791 68.23258) (xy 133.876937 68.398122) (xy 133.8665 68.500278) (xy 133.8665 68.657305) (xy 133.846498 68.725426) (xy 133.792842 68.771919) (xy 133.722568 68.782023) (xy 133.657988 68.752529) (xy 133.651405 68.7464) (xy 133.528352 68.623347) (xy 133.528346 68.623342) (xy 133.37992 68.531791) (xy 133.354422 68.523342) (xy 133.219866 68.478755) (xy 133.161496 68.438342) (xy 133.13424 68.372785) (xy 133.1335 68.359151) (xy 133.1335 66.135007) (xy 133.153502 66.066886) (xy 133.207158 66.020393) (xy 133.277432 66.010289) (xy 133.299133 66.015403) (xy 133.395669 66.047392) (xy 133.395681 66.047394) (xy 133.499483 66.057999) (xy 133.499483 66.058) (xy 133.546 66.058) (xy 133.546 64.042) (xy 133.499483 64.042) (xy 133.395681 64.052605) (xy 133.395678 64.052606) (xy 133.227474 64.108342) (xy 133.07666 64.201365) (xy 133.076654 64.20137) (xy 132.95137 64.326654) (xy 132.951365 64.32666) (xy 132.85834 64.477478) (xy 132.813923 64.611521) (xy 132.773509 64.669893) (xy 132.707953 64.697148) (xy 132.638068 64.684635) (xy 132.587078 64.638034) (xy 132.582073 64.62992) (xy 132.54903 64.576348) (xy 132.549027 64.576345) (xy 132.549024 64.576341) (xy 132.423658 64.450975) (xy 132.42365 64.450968) (xy 132.368352 64.41686) (xy 132.320875 64.364074) (xy 132.3085 64.30962) (xy 132.3085 63.16989) (xy 132.307229 63.165144) (xy 132.280797 63.0665) (xy 132.267032 63.015127) (xy 132.217019 62.928502) (xy 132.186924 62.876376) (xy 132.186916 62.876366) (xy 130.673633 61.363083) (xy 130.673623 61.363075) (xy 130.665038 61.358119) (xy 130.616045 61.306737) (xy 130.602608 61.237023) (xy 130.628995 61.171112) (xy 130.686827 61.12993) (xy 130.728038 61.123) (xy 130.846 61.123) (xy 130.846 60.04225) (xy 130.903147 60.075245) (xy 131.032857 60.11) (xy 131.167143 60.11) (xy 131.296853 60.075245) (xy 131.354 60.04225) (xy 131.354 61.123) (xy 132.013585 61.123) (xy 132.013597 61.122999) (xy 132.074093 61.116494) (xy 132.210964 61.065444) (xy 132.210965 61.065444) (xy 132.327904 60.977904) (xy 132.415444 60.860965) (xy 132.415444 60.860964) (xy 132.466494 60.724093) (xy 132.472999 60.663597) (xy 132.473 60.663585) (xy 132.473 59.854) (xy 131.542251 59.854) (xy 131.575245 59.796853) (xy 131.61 59.667143) (xy 131.61 59.532857) (xy 131.575245 59.403147) (xy 131.542251 59.346) (xy 132.473 59.346) (xy 132.473 58.536414) (xy 132.472999 58.536402) (xy 132.466494 58.475906) (xy 132.415444 58.339035) (xy 132.415444 58.339034) (xy 132.327904 58.222095) (xy 132.210965 58.134555) (xy 132.074093 58.083505) (xy 132.013597 58.077) (xy 131.354 58.077) (xy 131.354 59.157749) (xy 131.296853 59.124755) (xy 131.167143 59.09) (xy 131.032857 59.09) (xy 130.903147 59.124755) (xy 130.846 59.157749) (xy 130.846 58.077) (xy 130.186402 58.077) (xy 130.125906 58.083505) (xy 129.989035 58.134555) (xy 129.989034 58.134555) (xy 129.872095 58.222095) (xy 129.784555 58.339034) (xy 129.784553 58.339039) (xy 129.746282 58.441647) (xy 129.703735 58.498483) (xy 129.637215 58.523293) (xy 129.567841 58.508201) (xy 129.539132 58.486709) (xy 129.45478 58.402357) (xy 129.454777 58.402355) (xy 129.454775 58.402353) (xy 129.279871 58.275278) (xy 129.087241 58.177128) (xy 129.08724 58.177127) (xy 129.087239 58.177127) (xy 128.881632 58.110321) (xy 128.881629 58.11032) (xy 128.668097 58.0765) (xy 128.451903 58.0765) (xy 128.238371 58.11032) (xy 128.238368 58.11032) (xy 128.238367 58.110321) (xy 128.032758 58.177128) (xy 128.032757 58.177129) (xy 127.980143 58.203936) (xy 127.910366 58.217039) (xy 127.844582 58.190337) (xy 127.813823 58.154667) (xy 127.811921 58.151372) (xy 127.811915 58.151365) (xy 127.173633 57.513083) (xy 127.173623 57.513075) (xy 127.034877 57.43297) (xy 127.034874 57.432969) (xy 127.034873 57.432968) (xy 127.034871 57.432967) (xy 127.03487 57.432967) (xy 126.957491 57.412234) (xy 126.880111 57.3915) (xy 123.819889 57.3915) (xy 123.739359 57.413078) (xy 123.739358 57.413077) (xy 123.665126 57.432968) (xy 123.526376 57.513075) (xy 123.526366 57.513083) (xy 122.993083 58.046366) (xy 122.993075 58.046376) (xy 122.921589 58.170194) (xy 122.870206 58.219187) (xy 122.869674 58.21946) (xy 122.760128 58.275278) (xy 122.585222 58.402355) (xy 122.585219 58.402357) (xy 122.432357 58.555219) (xy 122.432355 58.555222) (xy 122.30528 58.730125) (xy 122.207127 58.92276) (xy 122.141851 59.123658) (xy 122.14032 59.128371) (xy 122.1065 59.341903) (xy 122.1065 59.858097) (xy 122.14032 60.071629) (xy 122.140321 60.071632) (xy 122.18042 60.195045) (xy 122.207128 60.277241) (xy 122.287857 60.435681) (xy 122.30528 60.469874) (xy 122.324736 60.496653) (xy 122.432353 60.644775) (xy 122.432355 60.644777) (xy 122.432357 60.64478) (xy 122.585219 60.797642) (xy 122.585222 60.797644) (xy 122.585225 60.797647) (xy 122.760129 60.924722) (xy 122.952759 61.022872) (xy 123.158371 61.08968) (xy 123.371903 61.1235) (xy 123.371906 61.1235) (xy 123.588094 61.1235) (xy 123.588097 61.1235) (xy 123.801629 61.08968) (xy 124.007241 61.022872) (xy 124.199871 60.924722) (xy 124.374775 60.797647) (xy 124.527647 60.644775) (xy 124.648064 60.479035) (xy 124.704286 60.435681) (xy 124.775022 60.429606) (xy 124.837814 60.462737) (xy 124.851936 60.479035) (xy 124.972353 60.644775) (xy 124.972355 60.644777) (xy 124.972357 60.64478) (xy 125.125219 60.797642) (xy 125.125222 60.797644) (xy 125.125225 60.797647) (xy 125.300129 60.924722) (xy 125.425876 60.988793) (xy 125.47749 61.03754) (xy 125.494556 61.106455) (xy 125.471655 61.173657) (xy 125.457768 61.190154) (xy 125.398209 61.249713) (xy 125.398208 61.249715) (xy 125.310606 61.38082) (xy 125.250265 61.526497) (xy 125.250263 61.526502) (xy 125.2195 61.681155) (xy 125.2195 61.838844) (xy 125.246745 61.975813) (xy 125.250263 61.993497) (xy 125.310606 62.139179) (xy 125.398211 62.270289) (xy 125.509711 62.381789) (xy 125.640821 62.469394) (xy 125.786503 62.529737) (xy 125.941158 62.5605) (xy 125.941159 62.5605) (xy 126.098841 62.5605) (xy 126.098842 62.5605) (xy 126.253497 62.529737) (xy 126.399179 62.469394) (xy 126.530289 62.381789) (xy 126.641789 62.270289) (xy 126.729394 62.139179) (xy 126.789737 61.993497) (xy 126.800691 61.938424) (xy 126.833597 61.875518) (xy 126.895291 61.840385) (xy 126.966186 61.844185) (xy 127.013364 61.873913) (xy 128.354595 63.215144) (xy 128.388621 63.277456) (xy 128.3915 63.304239) (xy 128.3915 64.00962) (xy 128.371498 64.077741) (xy 128.331648 64.11686) (xy 128.276349 64.150968) (xy 128.276341 64.150975) (xy 128.150975 64.276341) (xy 128.15097 64.276347) (xy 128.057885 64.427262) (xy 128.002113 64.595572) (xy 128.002112 64.595579) (xy 127.9915 64.699446) (xy 127.9915 65.096561) (xy 127.971498 65.164682) (xy 127.965464 65.173262) (xy 127.96308 65.176368) (xy 127.88297 65.315122) (xy 127.882965 65.315134) (xy 127.864279 65.38487) (xy 127.86428 65.384871) (xy 127.8415 65.469888) (xy 127.8415 65.912549) (xy 127.821498 65.98067) (xy 127.804595 66.001644) (xy 127.775549 66.030689) (xy 127.775544 66.030696) (xy 127.690856 66.173894) (xy 127.644437 66.33367) (xy 127.644437 66.333671) (xy 127.6415 66.370988) (xy 127.6415 67.528) (xy 127.621498 67.596121) (xy 127.567842 67.642614) (xy 127.5155 67.654) (xy 127.283489 67.654) (xy 127.246171 67.656937) (xy 127.24617 67.656937) (xy 127.086394 67.703356) (xy 126.943196 67.788044) (xy 126.943189 67.788049) (xy 126.825549 67.905689) (xy 126.825544 67.905696) (xy 126.740856 68.048894) (xy 126.694437 68.20867) (xy 126.694437 68.208671) (xy 126.6915 68.245988) (xy 126.6915 68.79576) (xy 126.671498 68.863881) (xy 126.654595 68.884855) (xy 126.173095 69.366355) (xy 126.110783 69.400381) (xy 126.039968 69.395316) (xy 125.983132 69.352769) (xy 125.958321 69.286249) (xy 125.958 69.27726) (xy 125.958 69.254) (xy 125.004 69.254) (xy 125.004 70.083) (xy 125.250517 70.083) (xy 125.250516 70.082999) (xy 125.354318 70.072394) (xy 125.35433 70.072392) (xy 125.493936 70.026131) (xy 125.56489 70.02369) (xy 125.625901 70.059998) (xy 125.657596 70.123527) (xy 125.649914 70.194106) (xy 125.622665 70.23483) (xy 125.560842 70.296653) (xy 125.469291 70.44508) (xy 125.414437 70.610622) (xy 125.404 70.712778) (xy 125.404 71.287212) (xy 125.414437 71.38938) (xy 125.469291 71.55492) (xy 125.560842 71.703346) (xy 125.560847 71.703352) (xy 125.6339 71.776405) (xy 125.667926 71.838717) (xy 125.662861 71.909532) (xy 125.620314 71.966368) (xy 125.553794 71.991179) (xy 125.544805 71.9915) (xy 121.203327 71.9915) (xy 121.135206 71.971498) (xy 121.088713 71.917842) (xy 121.078609 71.847568) (xy 121.108103 71.782988) (xy 121.125177 71.766664) (xy 121.128342 71.76416) (xy 121.128346 71.764158) (xy 121.251658 71.640846) (xy 121.343209 71.49242) (xy 121.398062 71.326881) (xy 121.4085 71.224713) (xy 121.408499 70.650288) (xy 121.40837 70.64903) (xy 121.404732 70.613416) (xy 121.398062 70.548119) (xy 121.39806 70.548115) (xy 121.396624 70.541402) (xy 121.398118 70.541082) (xy 121.39596 70.478168) (xy 121.432272 70.41716) (xy 121.495804 70.38547) (xy 121.518002 70.383499) (xy 121.662212 70.383499) (xy 121.764381 70.373062) (xy 121.92992 70.318209) (xy 122.078346 70.226658) (xy 122.201658 70.103346) (xy 122.293209 69.95492) (xy 122.348062 69.789381) (xy 122.348062 69.789377) (xy 122.350225 69.782851) (xy 122.351911 69.783409) (xy 122.38147 69.728836) (xy 122.443665 69.694599) (xy 122.503666 69.697674) (xy 122.503892 69.696622) (xy 122.510425 69.69802) (xy 122.510506 69.698024) (xy 122.510619 69.698062) (xy 122.612787 69.7085) (xy 123.187212 69.708499) (xy 123.289381 69.698062) (xy 123.45492 69.643209) (xy 123.456883 69.641998) (xy 123.458417 69.641578) (xy 123.46157 69.640108) (xy 123.461821 69.640646) (xy 123.525358 69.623255) (xy 123.593099 69.644509) (xy 123.630277 69.683087) (xy 123.701365 69.798339) (xy 123.70137 69.798345) (xy 123.826654 69.923629) (xy 123.82666 69.923634) (xy 123.977474 70.016657) (xy 124.145678 70.072393) (xy 124.145681 70.072394) (xy 124.249483 70.082999) (xy 124.249483 70.083) (xy 124.496 70.083) (xy 124.496 68.872) (xy 124.516002 68.803879) (xy 124.569658 68.757386) (xy 124.622 68.746) (xy 125.958 68.746) (xy 125.958 68.624483) (xy 125.947394 68.520681) (xy 125.947393 68.520678) (xy 125.891657 68.352474) (xy 125.798634 68.20166) (xy 125.798629 68.201654) (xy 125.673344 68.076369) (xy 125.670551 68.074161) (xy 125.669131 68.072156) (xy 125.66815 68.071175) (xy 125.668317 68.071007) (xy 125.629519 68.016222) (xy 125.626325 67.945298) (xy 125.661983 67.883905) (xy 125.670554 67.876478) (xy 125.673639 67.874037) (xy 125.673652 67.87403) (xy 125.79903 67.748652) (xy 125.892115 67.597738) (xy 125.947887 67.429426) (xy 125.9585 67.325545) (xy 125.958499 66.574456) (xy 125.958362 66.573119) (xy 125.947887 66.470574) (xy 125.945304 66.462778) (xy 125.892115 66.302262) (xy 125.79903 66.151348) (xy 125.799029 66.151347) (xy 125.799024 66.151341) (xy 125.79769 66.150007) (xy 125.797066 66.148864) (xy 125.794477 66.14559) (xy 125.795036 66.145147) (xy 125.763664 66.087695) (xy 125.768729 66.01688) (xy 125.811276 65.960044) (xy 125.877796 65.935233) (xy 125.926418 65.941307) (xy 126.095678 65.997393) (xy 126.095681 65.997394) (xy 126.199483 66.007999) (xy 126.199483 66.008) (xy 126.246 66.008) (xy 126.754 66.008) (xy 126.800517 66.008) (xy 126.800516 66.007999) (xy 126.904318 65.997394) (xy 126.904321 65.997393) (xy 127.072525 65.941657) (xy 127.223339 65.848634) (xy 127.223345 65.848629) (xy 127.348629 65.723345) (xy 127.348634 65.723339) (xy 127.441657 65.572525) (xy 127.497393 65.404321) (xy 127.497394 65.404318) (xy 127.507999 65.300516) (xy 127.508 65.300516) (xy 127.508 65.254) (xy 126.754 65.254) (xy 126.754 66.008) (xy 126.246 66.008) (xy 126.246 64.746) (xy 126.754 64.746) (xy 127.508 64.746) (xy 127.508 64.699483) (xy 127.497394 64.595681) (xy 127.497393 64.595678) (xy 127.441657 64.427474) (xy 127.348634 64.27666) (xy 127.348629 64.276654) (xy 127.223345 64.15137) (xy 127.223339 64.151365) (xy 127.072525 64.058342) (xy 126.904321 64.002606) (xy 126.904318 64.002605) (xy 126.800516 63.992) (xy 126.754 63.992) (xy 126.754 64.746) (xy 126.246 64.746) (xy 126.246 63.992) (xy 126.199483 63.992) (xy 126.095681 64.002605) (xy 126.095678 64.002606) (xy 125.927474 64.058342) (xy 125.77666 64.151365) (xy 125.776654 64.15137) (xy 125.748517 64.179508) (xy 125.686205 64.213534) (xy 125.61539 64.208469) (xy 125.593274 64.197653) (xy 125.513335 64.148345) (xy 125.465857 64.095559) (xy 125.463074 64.089323) (xy 125.458691 64.078742) (xy 125.4364 64.024925) (xy 125.367071 63.921167) (xy 125.278833 63.832929) (xy 124.847122 63.401218) (xy 124.813096 63.338906) (xy 124.810907 63.325293) (xy 124.80984 63.315144) (xy 124.793542 63.160072) (xy 124.734527 62.978444) (xy 124.63904 62.813056) (xy 124.639038 62.813054) (xy 124.639034 62.813048) (xy 124.511255 62.671135) (xy 124.356752 62.558882) (xy 124.182288 62.481206) (xy 123.995487 62.4415) (xy 123.804513 62.4415) (xy 123.617711 62.481206) (xy 123.443247 62.558882) (xy 123.288744 62.671135) (xy 123.160965 62.813048) (xy 123.160958 62.813058) (xy 123.065476 62.978438) (xy 123.065473 62.978444) (xy 123.053554 63.015127) (xy 123.006457 63.160072) (xy 122.986496 63.35) (xy 123.006457 63.539927) (xy 123.031151 63.615926) (xy 123.065473 63.721556) (xy 123.065476 63.721561) (xy 123.160958 63.886941) (xy 123.160965 63.886951) (xy 123.288744 64.028864) (xy 123.288747 64.028866) (xy 123.443248 64.141118) (xy 123.617712 64.218794) (xy 123.804513 64.2585) (xy 123.84206 64.2585) (xy 123.910181 64.278502) (xy 123.956674 64.332158) (xy 123.966778 64.402432) (xy 123.949302 64.450644) (xy 123.932885 64.477262) (xy 123.900054 64.576341) (xy 123.877113 64.645573) (xy 123.877112 64.645579) (xy 123.8665 64.749446) (xy 123.8665 65.14576) (xy 123.846498 65.213881) (xy 123.829599 65.23485) (xy 123.697689 65.366761) (xy 123.595781 65.468669) (xy 123.533469 65.502694) (xy 123.462653 65.497629) (xy 123.405818 65.455082) (xy 123.381007 65.388561) (xy 123.381339 65.366761) (xy 123.383 65.35051) (xy 123.383 65.304) (xy 121.367 65.304) (xy 121.367 65.350516) (xy 121.377605 65.454318) (xy 121.377606 65.454321) (xy 121.433342 65.622525) (xy 121.526365 65.773339) (xy 121.52637 65.773345) (xy 121.651654 65.898629) (xy 121.65166 65.898634) (xy 121.802475 65.991657) (xy 121.968292 66.046603) (xy 122.026664 66.087017) (xy 122.05392 66.152573) (xy 122.041407 66.222459) (xy 122.035908 66.232343) (xy 121.995623 66.297655) (xy 121.981791 66.32008) (xy 121.926937 66.485622) (xy 121.9165 66.587778) (xy 121.9165 67.187212) (xy 121.926937 67.28938) (xy 121.981791 67.45492) (xy 122.073342 67.603346) (xy 122.073347 67.603352) (xy 122.1809 67.710905) (xy 122.214926 67.773217) (xy 122.209861 67.844032) (xy 122.1809 67.889095) (xy 122.073347 67.996647) (xy 122.073342 67.996653) (xy 121.981791 68.14508) (xy 121.926937 68.310621) (xy 121.926076 68.319055) (xy 121.899252 68.384789) (xy 121.841148 68.425586) (xy 121.770211 68.428493) (xy 121.766168 68.42732) (xy 121.764379 68.426937) (xy 121.662221 68.4165) (xy 121.662213 68.4165) (xy 121.4095 68.4165) (xy 121.341379 68.396498) (xy 121.294886 68.342842) (xy 121.2835 68.2905) (xy 121.2835 65.96989) (xy 121.280862 65.960044) (xy 121.242032 65.815128) (xy 121.234254 65.801656) (xy 121.221815 65.780111) (xy 121.221814 65.78011) (xy 121.161922 65.676373) (xy 121.161919 65.67637) (xy 121.161916 65.676366) (xy 120.920404 65.434854) (xy 120.886378 65.372542) (xy 120.883499 65.345759) (xy 120.883499 64.949455) (xy 120.872887 64.845574) (xy 120.849498 64.774989) (xy 120.841046 64.749483) (xy 121.367 64.749483) (xy 121.367 64.796) (xy 122.121 64.796) (xy 122.629 64.796) (xy 123.383 64.796) (xy 123.383 64.749483) (xy 123.372394 64.645681) (xy 123.372393 64.645678) (xy 123.316657 64.477474) (xy 123.223634 64.32666) (xy 123.223629 64.326654) (xy 123.098345 64.20137) (xy 123.098339 64.201365) (xy 122.947525 64.108342) (xy 122.779321 64.052606) (xy 122.779318 64.052605) (xy 122.675516 64.042) (xy 122.629 64.042) (xy 122.629 64.796) (xy 122.121 64.796) (xy 122.121 64.042) (xy 122.074483 64.042) (xy 121.970681 64.052605) (xy 121.970678 64.052606) (xy 121.802474 64.108342) (xy 121.65166 64.201365) (xy 121.651654 64.20137) (xy 121.52637 64.326654) (xy 121.526365 64.32666) (xy 121.433342 64.477474) (xy 121.377606 64.645678) (xy 121.377605 64.645681) (xy 121.367 64.749483) (xy 120.841046 64.749483) (xy 120.817115 64.677262) (xy 120.72403 64.526348) (xy 120.724029 64.526347) (xy 120.724024 64.526341) (xy 120.598658 64.400975) (xy 120.59865 64.400968) (xy 120.543352 64.36686) (xy 120.495875 64.314074) (xy 120.4835 64.25962) (xy 120.4835 62.86989) (xy 120.4835 62.869889) (xy 120.465927 62.804306) (xy 120.461269 62.78692) (xy 120.461269 62.786919) (xy 120.442034 62.715134) (xy 120.442032 62.715128) (xy 120.442032 62.715127) (xy 120.366832 62.584877) (xy 120.361924 62.576376) (xy 120.361916 62.576366) (xy 119.298633 61.513083) (xy 119.298623 61.513075) (xy 119.159877 61.43297) (xy 119.159874 61.432969) (xy 119.159873 61.432968) (xy 119.159871 61.432967) (xy 119.15987 61.432967) (xy 119.068552 61.408499) (xy 119.005111 61.3915) (xy 119.00511 61.3915) (xy 117.269245 61.3915) (xy 117.201124 61.371498) (xy 117.18015 61.354595) (xy 117.153863 61.328308) (xy 117.119837 61.265996) (xy 117.124902 61.195181) (xy 117.167449 61.138345) (xy 117.223244 61.114765) (xy 117.381629 61.08968) (xy 117.587241 61.022872) (xy 117.779871 60.924722) (xy 117.954775 60.797647) (xy 118.039133 60.713288) (xy 118.101443 60.679265) (xy 118.172259 60.684329) (xy 118.229095 60.726875) (xy 118.246283 60.758352) (xy 118.284556 60.860966) (xy 118.372095 60.977904) (xy 118.489034 61.065444) (xy 118.625906 61.116494) (xy 118.686402 61.122999) (xy 118.686415 61.123) (xy 119.346 61.123) (xy 119.346 60.04225) (xy 119.403147 60.075245) (xy 119.532857 60.11) (xy 119.667143 60.11) (xy 119.796853 60.075245) (xy 119.854 60.04225) (xy 119.854 61.123) (xy 120.513585 61.123) (xy 120.513597 61.122999) (xy 120.574093 61.116494) (xy 120.710964 61.065444) (xy 120.710965 61.065444) (xy 120.827904 60.977904) (xy 120.915444 60.860965) (xy 120.915444 60.860964) (xy 120.966494 60.724093) (xy 120.972999 60.663597) (xy 120.973 60.663585) (xy 120.973 59.854) (xy 120.042251 59.854) (xy 120.075245 59.796853) (xy 120.11 59.667143) (xy 120.11 59.532857) (xy 120.075245 59.403147) (xy 120.042251 59.346) (xy 120.973 59.346) (xy 120.973 58.536414) (xy 120.972999 58.536402) (xy 120.966494 58.475906) (xy 120.915444 58.339035) (xy 120.915444 58.339034) (xy 120.827904 58.222095) (xy 120.710965 58.134555) (xy 120.574093 58.083505) (xy 120.513597 58.077) (xy 119.854 58.077) (xy 119.854 59.157749) (xy 119.796853 59.124755) (xy 119.667143 59.09) (xy 119.532857 59.09) (xy 119.403147 59.124755) (xy 119.346 59.157749) (xy 119.346 58.077) (xy 118.686402 58.077) (xy 118.625906 58.083505) (xy 118.489035 58.134555) (xy 118.489034 58.134555) (xy 118.372095 58.222095) (xy 118.284555 58.339034) (xy 118.284553 58.339039) (xy 118.246282 58.441647) (xy 118.203735 58.498483) (xy 118.137215 58.523293) (xy 118.067841 58.508201) (xy 118.039132 58.486709) (xy 117.95478 58.402357) (xy 117.954777 58.402355) (xy 117.954775 58.402353) (xy 117.779871 58.275278) (xy 117.587241 58.177128) (xy 117.58724 58.177127) (xy 117.587239 58.177127) (xy 117.381632 58.110321) (xy 117.381629 58.11032) (xy 117.168097 58.0765) (xy 116.951903 58.0765) (xy 116.738371 58.11032) (xy 116.738368 58.11032) (xy 116.738367 58.110321) (xy 116.53276 58.177127) (xy 116.34013 58.275277) (xy 116.340123 58.275282) (xy 116.308858 58.297997) (xy 116.24199 58.321855) (xy 116.172839 58.305773) (xy 116.145707 58.285158) (xy 115.473627 57.613078) (xy 115.473624 57.613076) (xy 115.473623 57.613075) (xy 115.334877 57.53297) (xy 115.334874 57.532969) (xy 115.334873 57.532968) (xy 115.334871 57.532967) (xy 115.33487 57.532967) (xy 115.241421 57.507928) (xy 115.180111 57.4915) (xy 112.219889 57.4915) (xy 112.158579 57.507928) (xy 112.065129 57.532967) (xy 112.065122 57.53297) (xy 111.926375 57.613076) (xy 111.926365 57.613084) (xy 111.493083 58.046366) (xy 111.493075 58.046376) (xy 111.421589 58.170194) (xy 111.370206 58.219187) (xy 111.369674 58.21946) (xy 111.260128 58.275278) (xy 111.085222 58.402355) (xy 111.085219 58.402357) (xy 110.932357 58.555219) (xy 110.932355 58.555222) (xy 110.80528 58.730125) (xy 110.707127 58.92276) (xy 110.641851 59.123658) (xy 110.64032 59.128371) (xy 110.6065 59.341903) (xy 110.6065 59.858097) (xy 110.64032 60.071629) (xy 110.640321 60.071632) (xy 110.68042 60.195045) (xy 110.707128 60.277241) (xy 110.787857 60.435681) (xy 110.80528 60.469874) (xy 110.824736 60.496653) (xy 110.932353 60.644775) (xy 110.932355 60.644777) (xy 110.932357 60.64478) (xy 111.085219 60.797642) (xy 111.085222 60.797644) (xy 111.085225 60.797647) (xy 111.260129 60.924722) (xy 111.452759 61.022872) (xy 111.658371 61.08968) (xy 111.871903 61.1235) (xy 111.871906 61.1235) (xy 112.088094 61.1235) (xy 112.088097 61.1235) (xy 112.301629 61.08968) (xy 112.507241 61.022872) (xy 112.699871 60.924722) (xy 112.874775 60.797647) (xy 113.027647 60.644775) (xy 113.148064 60.479035) (xy 113.204286 60.435681) (xy 113.275022 60.429606) (xy 113.337814 60.462737) (xy 113.351936 60.479035) (xy 113.472353 60.644775) (xy 113.472355 60.644777) (xy 113.472357 60.64478) (xy 113.625219 60.797642) (xy 113.625222 60.797644) (xy 113.625225 60.797647) (xy 113.800129 60.924722) (xy 113.925876 60.988793) (xy 113.97749 61.03754) (xy 113.994556 61.106455) (xy 113.971655 61.173657) (xy 113.957768 61.190154) (xy 113.898209 61.249713) (xy 113.898208 61.249715) (xy 113.810606 61.38082) (xy 113.750265 61.526497) (xy 113.750263 61.526502) (xy 113.7195 61.681155) (xy 113.7195 61.838844) (xy 113.746745 61.975813) (xy 113.750263 61.993497) (xy 113.810606 62.139179) (xy 113.898211 62.270289) (xy 114.009711 62.381789) (xy 114.140821 62.469394) (xy 114.286503 62.529737) (xy 114.441158 62.5605) (xy 114.441159 62.5605) (xy 114.598841 62.5605) (xy 114.598842 62.5605) (xy 114.753497 62.529737) (xy 114.899179 62.469394) (xy 115.030289 62.381789) (xy 115.141789 62.270289) (xy 115.229394 62.139179) (xy 115.288808 61.995738) (xy 115.333356 61.940457) (xy 115.400719 61.918036) (xy 115.46951 61.935594) (xy 115.494312 61.954861) (xy 116.854595 63.315144) (xy 116.888621 63.377456) (xy 116.8915 63.404239) (xy 116.8915 63.9942) (xy 116.871498 64.062321) (xy 116.831647 64.10144) (xy 116.820459 64.108342) (xy 116.751347 64.15097) (xy 116.751341 64.150975) (xy 116.625975 64.276341) (xy 116.62597 64.276347) (xy 116.532885 64.427262) (xy 116.477113 64.595572) (xy 116.477112 64.595579) (xy 116.4665 64.699446) (xy 116.4665 65.173286) (xy 116.44962 65.236284) (xy 116.432967 65.265128) (xy 116.418295 65.319888) (xy 116.418295 65.319889) (xy 116.411363 65.345759) (xy 116.395644 65.404426) (xy 116.3915 65.41989) (xy 116.3915 65.887549) (xy 116.371498 65.95567) (xy 116.354595 65.976644) (xy 116.325549 66.005689) (xy 116.325544 66.005696) (xy 116.240856 66.148894) (xy 116.194437 66.30867) (xy 116.194437 66.308671) (xy 116.1915 66.345988) (xy 116.1915 67.503) (xy 116.171498 67.571121) (xy 116.117842 67.617614) (xy 116.0655 67.629) (xy 115.833489 67.629) (xy 115.796171 67.631937) (xy 115.79617 67.631937) (xy 115.636394 67.678356) (xy 115.493196 67.763044) (xy 115.493189 67.763049) (xy 115.375549 67.880689) (xy 115.375544 67.880696) (xy 115.290856 68.023894) (xy 115.244437 68.18367) (xy 115.244437 68.183671) (xy 115.2415 68.220988) (xy 115.2415 68.77076) (xy 115.221498 68.838881) (xy 115.204595 68.859855) (xy 114.700583 69.363866) (xy 114.700575 69.363876) (xy 114.693119 69.376792) (xy 114.641737 69.425785) (xy 114.572023 69.439221) (xy 114.506112 69.412835) (xy 114.46493 69.355003) (xy 114.458 69.313792) (xy 114.458 69.279) (xy 113.504 69.279) (xy 113.504 70.108) (xy 113.750517 70.108) (xy 113.750516 70.107999) (xy 113.854318 70.097394) (xy 113.854321 70.097393) (xy 114.022525 70.041657) (xy 114.173339 69.948634) (xy 114.173345 69.948629) (xy 114.298629 69.823345) (xy 114.298634 69.823339) (xy 114.345759 69.746938) (xy 114.398545 69.69946) (xy 114.46862 69.688057) (xy 114.533735 69.716349) (xy 114.573218 69.775355) (xy 114.579 69.813085) (xy 114.579 69.974306) (xy 114.558998 70.042427) (xy 114.519148 70.081546) (xy 114.471653 70.110841) (xy 114.348347 70.234147) (xy 114.348342 70.234153) (xy 114.256791 70.38258) (xy 114.201937 70.548122) (xy 114.1915 70.650278) (xy 114.1915 71.224712) (xy 114.201937 71.32688) (xy 114.256791 71.49242) (xy 114.348342 71.640846) (xy 114.348347 71.640852) (xy 114.471647 71.764152) (xy 114.471651 71.764155) (xy 114.471654 71.764158) (xy 114.62008 71.855709) (xy 114.781983 71.909357) (xy 114.840352 71.949769) (xy 114.867608 72.015325) (xy 114.855095 72.08521) (xy 114.831446 72.118053) (xy 114.794908 72.154593) (xy 114.732597 72.18862) (xy 114.70581 72.1915) (xy 111.119888 72.1915) (xy 111.058739 72.207884) (xy 111.058739 72.207885) (xy 110.965127 72.232968) (xy 110.965122 72.23297) (xy 110.826376 72.313075) (xy 110.826366 72.313083) (xy 108.184856 74.954595) (xy 108.122544 74.988621) (xy 108.095761 74.9915) (xy 106.804239 74.9915) (xy 106.736118 74.971498) (xy 106.715148 74.954599) (xy 106.373627 74.613078) (xy 106.373625 74.613077) (xy 106.373623 74.613075) (xy 106.234877 74.53297) (xy 106.234874 74.532969) (xy 106.234873 74.532968) (xy 106.234871 74.532967) (xy 106.23487 74.532967) (xy 106.157491 74.512234) (xy 106.080111 74.4915) (xy 106.080109 74.4915) (xy 102.473239 74.4915) (xy 102.405118 74.471498) (xy 102.358625 74.417842) (xy 102.348521 74.347568) (xy 102.378015 74.282988) (xy 102.384144 74.276405) (xy 102.947156 73.713393) (xy 104.651929 72.008618) (xy 104.714239 71.974595) (xy 104.753829 71.972368) (xy 104.760617 71.973061) (xy 104.760619 71.973062) (xy 104.862787 71.9835) (xy 105.462212 71.983499) (xy 105.564381 71.973062) (xy 105.72992 71.918209) (xy 105.878346 71.826658) (xy 105.878349 71.826654) (xy 105.884328 71.822967) (xy 105.952807 71.804229) (xy 106.016623 71.822966) (xy 106.170292 71.917751) (xy 106.335723 71.972568) (xy 106.335726 71.972569) (xy 106.437815 71.982999) (xy 106.437815 71.983) (xy 106.4835 71.983) (xy 106.4835 70.2885) (xy 106.422 70.2885) (xy 106.353879 70.268498) (xy 106.307386 70.214842) (xy 106.296 70.1625) (xy 106.296 69.254) (xy 105.742001 69.254) (xy 105.742001 69.653956) (xy 105.744934 69.69125) (xy 105.791318 69.8509) (xy 105.804868 69.873812) (xy 105.822327 69.942629) (xy 105.79981 70.00996) (xy 105.744465 70.054429) (xy 105.673865 70.061917) (xy 105.656783 70.057556) (xy 105.564378 70.026937) (xy 105.564379 70.026937) (xy 105.514007 70.021791) (xy 105.448272 69.994969) (xy 105.407474 69.936865) (xy 105.404565 69.865928) (xy 105.407001 69.858733) (xy 105.406933 69.858713) (xy 105.409143 69.851102) (xy 105.409145 69.851101) (xy 105.455562 69.691331) (xy 105.458499 69.654011) (xy 105.4585 69.654011) (xy 105.4585 68.497) (xy 105.478502 68.428879) (xy 105.532158 68.382386) (xy 105.5845 68.371) (xy 105.616 68.371) (xy 105.684121 68.391002) (xy 105.730614 68.444658) (xy 105.742 68.497) (xy 105.742 68.746) (xy 106.296 68.746) (xy 106.296 68.117342) (xy 106.313547 68.053202) (xy 106.313721 68.052908) (xy 106.359145 67.976101) (xy 106.405562 67.816331) (xy 106.408499 67.779011) (xy 106.4085 67.779011) (xy 106.4085 67.349483) (xy 107.317 67.349483) (xy 107.317 67.396) (xy 108.071 67.396) (xy 108.071 66.642) (xy 108.024483 66.642) (xy 107.920681 66.652605) (xy 107.920678 66.652606) (xy 107.752474 66.708342) (xy 107.60166 66.801365) (xy 107.601654 66.80137) (xy 107.47637 66.926654) (xy 107.476365 66.92666) (xy 107.383342 67.077474) (xy 107.327606 67.245678) (xy 107.327605 67.245681) (xy 107.317 67.349483) (xy 106.4085 67.349483) (xy 106.4085 66.470989) (xy 106.408499 66.470988) (xy 106.408466 66.470574) (xy 106.405562 66.433669) (xy 106.359145 66.273899) (xy 106.359143 66.273897) (xy 106.359143 66.273894) (xy 106.274455 66.130696) (xy 106.27445 66.130689) (xy 106.270405 66.126644) (xy 106.236379 66.064332) (xy 106.2335 66.037549) (xy 106.2335 65.979238) (xy 106.253502 65.911117) (xy 106.307158 65.864624) (xy 106.319857 65.859637) (xy 106.372738 65.842115) (xy 106.523652 65.74903) (xy 106.64903 65.623652) (xy 106.742115 65.472738) (xy 106.797887 65.304426) (xy 106.8085 65.200545) (xy 106.808499 64.599456) (xy 106.808102 64.595574) (xy 106.797887 64.495574) (xy 106.787551 64.464381) (xy 106.742115 64.327262) (xy 106.64903 64.176348) (xy 106.649029 64.176347) (xy 106.649024 64.176341) (xy 106.523658 64.050975) (xy 106.52365 64.050968) (xy 106.468352 64.01686) (xy 106.420875 63.964074) (xy 106.4085 63.90962) (xy 106.4085 62.86989) (xy 106.4085 62.869889) (xy 106.38096 62.767108) (xy 106.38265 62.696135) (xy 106.422444 62.637339) (xy 106.487708 62.609391) (xy 106.502667 62.6085) (xy 106.595761 62.6085) (xy 106.663882 62.628502) (xy 106.684856 62.645405) (xy 107.679595 63.640144) (xy 107.713621 63.702456) (xy 107.7165 63.729239) (xy 107.7165 64.15962) (xy 107.696498 64.227741) (xy 107.656648 64.26686) (xy 107.601349 64.300968) (xy 107.601341 64.300975) (xy 107.475975 64.426341) (xy 107.47597 64.426347) (xy 107.382885 64.577262) (xy 107.327113 64.745572) (xy 107.327112 64.745579) (xy 107.3165 64.849446) (xy 107.3165 65.450544) (xy 107.327112 65.554425) (xy 107.382885 65.722738) (xy 107.47597 65.873652) (xy 107.475975 65.873658) (xy 107.601341 65.999024) (xy 107.601347 65.999029) (xy 107.601348 65.99903) (xy 107.752262 66.092115) (xy 107.920574 66.147887) (xy 108.024455 66.1585) (xy 108.3905 66.158499) (xy 108.45862 66.178501) (xy 108.505113 66.232156) (xy 108.5165 66.284499) (xy 108.5165 67.778) (xy 108.496498 67.846121) (xy 108.442842 67.892614) (xy 108.3905 67.904) (xy 107.316998 67.904) (xy 107.30862 67.912378) (xy 107.246308 67.946403) (xy 107.175492 67.941337) (xy 107.130431 67.912377) (xy 107.106503 67.888449) (xy 107.106501 67.888448) (xy 106.963401 67.803818) (xy 106.804 67.757507) (xy 106.804 69.974) (xy 106.8655 69.974) (xy 106.933621 69.994002) (xy 106.980114 70.047658) (xy 106.9915 70.1) (xy 106.9915 71.983) (xy 107.037185 71.983) (xy 107.037184 71.982999) (xy 107.139273 71.972569) (xy 107.139276 71.972568) (xy 107.304707 71.917751) (xy 107.453033 71.826262) (xy 107.453039 71.826257) (xy 107.560551 71.718746) (xy 107.622863 71.68472) (xy 107.693678 71.689785) (xy 107.738741 71.718746) (xy 107.846647 71.826652) (xy 107.846653 71.826657) (xy 107.846654 71.826658) (xy 107.891096 71.85407) (xy 107.938574 71.906856) (xy 107.949977 71.976931) (xy 107.921684 72.042047) (xy 107.914045 72.050406) (xy 107.409854 72.554596) (xy 107.347544 72.58862) (xy 107.320761 72.5915) (xy 107.229513 72.5915) (xy 107.042711 72.631206) (xy 106.868247 72.708882) (xy 106.713744 72.821135) (xy 106.585965 72.963048) (xy 106.585958 72.963058) (xy 106.492452 73.125016) (xy 106.490473 73.128444) (xy 106.485029 73.145199) (xy 106.431457 73.310072) (xy 106.411496 73.5) (xy 106.431457 73.689927) (xy 106.455577 73.764159) (xy 106.490473 73.871556) (xy 106.50285 73.892993) (xy 106.585958 74.036941) (xy 106.585965 74.036951) (xy 106.713744 74.178864) (xy 106.758497 74.211379) (xy 106.868248 74.291118) (xy 107.042712 74.368794) (xy 107.229513 74.4085) (xy 107.420487 74.4085) (xy 107.607288 74.368794) (xy 107.781752 74.291118) (xy 107.936253 74.178866) (xy 107.945323 74.168793) (xy 108.064034 74.036951) (xy 108.064035 74.036949) (xy 108.06404 74.036944) (xy 108.159527 73.871556) (xy 108.218542 73.689928) (xy 108.238504 73.5) (xy 108.238504 73.499998) (xy 108.238504 73.499235) (xy 108.238628 73.498809) (xy 108.239194 73.493433) (xy 108.240177 73.493536) (xy 108.258506 73.431114) (xy 108.275409 73.410139) (xy 108.633499 73.052049) (xy 109.049421 72.636128) (xy 109.129532 72.497373) (xy 109.164456 72.367032) (xy 109.171 72.342611) (xy 109.171 71.963192) (xy 109.191002 71.895071) (xy 109.230852 71.855952) (xy 109.278346 71.826658) (xy 109.401658 71.703346) (xy 109.493209 71.55492) (xy 109.548062 71.389381) (xy 109.5585 71.287213) (xy 109.558499 70.712788) (xy 109.555478 70.683217) (xy 109.568454 70.613416) (xy 109.591725 70.581322) (xy 109.802646 70.370401) (xy 109.864956 70.336378) (xy 109.891739 70.333499) (xy 110.262212 70.333499) (xy 110.364381 70.323062) (xy 110.52992 70.268209) (xy 110.678346 70.176658) (xy 110.801658 70.053346) (xy 110.893209 69.90492) (xy 110.93685 69.773215) (xy 110.977261 69.714847) (xy 111.042817 69.68759) (xy 111.096083 69.693245) (xy 111.110619 69.698062) (xy 111.212787 69.7085) (xy 111.787212 69.708499) (xy 111.889381 69.698062) (xy 111.989692 69.664822) (xy 112.060644 69.662382) (xy 112.121654 69.69869) (xy 112.136564 69.71828) (xy 112.201365 69.823339) (xy 112.20137 69.823345) (xy 112.326654 69.948629) (xy 112.32666 69.948634) (xy 112.477474 70.041657) (xy 112.645678 70.097393) (xy 112.645681 70.097394) (xy 112.749483 70.107999) (xy 112.749483 70.108) (xy 112.996 70.108) (xy 112.996 68.897) (xy 113.016002 68.828879) (xy 113.069658 68.782386) (xy 113.122 68.771) (xy 114.458 68.771) (xy 114.458 68.649483) (xy 114.447394 68.545681) (xy 114.447393 68.545678) (xy 114.391657 68.377474) (xy 114.298634 68.22666) (xy 114.298629 68.226654) (xy 114.173344 68.101369) (xy 114.170551 68.099161) (xy 114.169131 68.097156) (xy 114.16815 68.096175) (xy 114.168317 68.096007) (xy 114.129519 68.041222) (xy 114.126325 67.970298) (xy 114.161983 67.908905) (xy 114.170554 67.901478) (xy 114.173639 67.899037) (xy 114.173652 67.89903) (xy 114.29903 67.773652) (xy 114.392115 67.622738) (xy 114.447887 67.454426) (xy 114.4585 67.350545) (xy 114.458499 66.599456) (xy 114.447887 66.495574) (xy 114.392115 66.327262) (xy 114.29903 66.176348) (xy 114.299029 66.176347) (xy 114.299024 66.176341) (xy 114.27269 66.150007) (xy 114.238664 66.087695) (xy 114.243729 66.01688) (xy 114.286276 65.960044) (xy 114.352796 65.935233) (xy 114.401418 65.941307) (xy 114.570678 65.997393) (xy 114.570681 65.997394) (xy 114.674483 66.007999) (xy 114.674483 66.008) (xy 114.721 66.008) (xy 115.229 66.008) (xy 115.275517 66.008) (xy 115.275516 66.007999) (xy 115.379318 65.997394) (xy 115.379321 65.997393) (xy 115.547525 65.941657) (xy 115.698339 65.848634) (xy 115.698345 65.848629) (xy 115.823629 65.723345) (xy 115.823634 65.723339) (xy 115.916657 65.572525) (xy 115.972393 65.404321) (xy 115.972394 65.404318) (xy 115.982999 65.300516) (xy 115.983 65.300516) (xy 115.983 65.254) (xy 115.229 65.254) (xy 115.229 66.008) (xy 114.721 66.008) (xy 114.721 64.746) (xy 115.229 64.746) (xy 115.983 64.746) (xy 115.983 64.699483) (xy 115.972394 64.595681) (xy 115.972393 64.595678) (xy 115.916657 64.427474) (xy 115.823634 64.27666) (xy 115.823629 64.276654) (xy 115.698345 64.15137) (xy 115.698339 64.151365) (xy 115.547525 64.058342) (xy 115.379321 64.002606) (xy 115.379318 64.002605) (xy 115.275516 63.992) (xy 115.229 63.992) (xy 115.229 64.746) (xy 114.721 64.746) (xy 114.721 63.992) (xy 114.674483 63.992) (xy 114.570681 64.002605) (xy 114.570678 64.002606) (xy 114.402474 64.058342) (xy 114.25166 64.151365) (xy 114.245903 64.155918) (xy 114.245054 64.154844) (xy 114.189624 64.185104) (xy 114.118808 64.180032) (xy 114.079837 64.154981) (xy 114.07941 64.155523) (xy 114.07389 64.151159) (xy 114.073751 64.151069) (xy 114.073652 64.15097) (xy 113.922738 64.057885) (xy 113.922735 64.057884) (xy 113.847962 64.033106) (xy 113.798501 64.002597) (xy 113.347122 63.551218) (xy 113.313096 63.488906) (xy 113.310907 63.475293) (xy 113.30984 63.465144) (xy 113.293542 63.310072) (xy 113.234527 63.128444) (xy 113.13904 62.963056) (xy 113.139038 62.963054) (xy 113.139034 62.963048) (xy 113.011255 62.821135) (xy 112.856752 62.708882) (xy 112.682288 62.631206) (xy 112.495487 62.5915) (xy 112.304513 62.5915) (xy 112.117711 62.631206) (xy 111.943247 62.708882) (xy 111.788744 62.821135) (xy 111.660965 62.963048) (xy 111.660958 62.963058) (xy 111.565476 63.128438) (xy 111.565473 63.128445) (xy 111.506457 63.310072) (xy 111.486496 63.5) (xy 111.506457 63.689927) (xy 111.536526 63.78247) (xy 111.565473 63.871556) (xy 111.565475 63.871559) (xy 111.567084 63.874346) (xy 111.567524 63.876163) (xy 111.56816 63.87759) (xy 111.567899 63.877706) (xy 111.583823 63.943341) (xy 111.560604 64.010434) (xy 111.504797 64.054322) (xy 111.434122 64.061071) (xy 111.418334 64.056953) (xy 111.254324 64.002606) (xy 111.254318 64.002605) (xy 111.150516 63.992) (xy 111.104 63.992) (xy 111.104 64.746) (xy 111.858 64.746) (xy 111.858 64.699483) (xy 111.847394 64.595681) (xy 111.847392 64.595669) (xy 111.802137 64.459099) (xy 111.799696 64.388144) (xy 111.836004 64.327134) (xy 111.899533 64.295439) (xy 111.970113 64.303121) (xy 111.972927 64.304332) (xy 112.117712 64.368794) (xy 112.269209 64.400996) (xy 112.331682 64.434723) (xy 112.366004 64.496873) (xy 112.362617 64.563873) (xy 112.352114 64.595569) (xy 112.352112 64.595579) (xy 112.3415 64.699446) (xy 112.3415 65.060405) (xy 112.321498 65.128526) (xy 112.304595 65.1495) (xy 112.073095 65.381) (xy 112.010783 65.415026) (xy 111.939968 65.409961) (xy 111.883132 65.367414) (xy 111.858321 65.300894) (xy 111.858 65.291905) (xy 111.858 65.254) (xy 109.842 65.254) (xy 109.842 65.300516) (xy 109.852605 65.404318) (xy 109.852606 65.404321) (xy 109.908342 65.572525) (xy 110.001365 65.723339) (xy 110.00137 65.723345) (xy 110.126654 65.848629) (xy 110.12666 65.848634) (xy 110.277474 65.941657) (xy 110.445678 65.997393) (xy 110.445681 65.997394) (xy 110.549483 66.007999) (xy 110.552687 66.008163) (xy 110.552678 66.008326) (xy 110.552684 66.008327) (xy 110.552673 66.008431) (xy 110.552633 66.009205) (xy 110.616648 66.028002) (xy 110.663141 66.081658) (xy 110.673245 66.151932) (xy 110.655767 66.200147) (xy 110.581792 66.320077) (xy 110.581791 66.320079) (xy 110.581791 66.32008) (xy 110.577288 66.333669) (xy 110.526937 66.485622) (xy 110.5165 66.587778) (xy 110.5165 67.187212) (xy 110.526937 67.28938) (xy 110.581791 67.45492) (xy 110.673342 67.603346) (xy 110.673347 67.603352) (xy 110.7809 67.710905) (xy 110.814926 67.773217) (xy 110.809861 67.844032) (xy 110.7809 67.889095) (xy 110.673347 67.996647) (xy 110.673342 67.996653) (xy 110.581791 68.145079) (xy 110.56072 68.208669) (xy 110.531007 68.298341) (xy 110.530686 68.299309) (xy 110.490272 68.35768) (xy 110.424716 68.384936) (xy 110.371449 68.37928) (xy 110.364381 68.376938) (xy 110.364379 68.376937) (xy 110.262221 68.3665) (xy 110.262213 68.3665) (xy 109.8595 68.3665) (xy 109.791379 68.346498) (xy 109.744886 68.292842) (xy 109.7335 68.2405) (xy 109.7335 65.86989) (xy 109.727911 65.849029) (xy 109.692032 65.715128) (xy 109.685853 65.704426) (xy 109.685852 65.704424) (xy 109.611924 65.576376) (xy 109.611916 65.576366) (xy 109.370404 65.334854) (xy 109.336378 65.272542) (xy 109.333499 65.245759) (xy 109.333499 64.849455) (xy 109.322887 64.745574) (xy 109.307614 64.699483) (xy 109.842 64.699483) (xy 109.842 64.746) (xy 110.596 64.746) (xy 110.596 63.992) (xy 110.549483 63.992) (xy 110.445681 64.002605) (xy 110.445678 64.002606) (xy 110.277474 64.058342) (xy 110.12666 64.151365) (xy 110.126654 64.15137) (xy 110.00137 64.276654) (xy 110.001365 64.27666) (xy 109.908342 64.427474) (xy 109.852606 64.595678) (xy 109.852605 64.595681) (xy 109.842 64.699483) (xy 109.307614 64.699483) (xy 109.307236 64.698341) (xy 109.267115 64.577262) (xy 109.17403 64.426348) (xy 109.174029 64.426347) (xy 109.174024 64.426341) (xy 109.048658 64.300975) (xy 109.04865 64.300968) (xy 108.993352 64.26686) (xy 108.945875 64.214074) (xy 108.9335 64.15962) (xy 108.9335 63.34489) (xy 108.925525 63.315128) (xy 108.903998 63.234785) (xy 108.902297 63.228438) (xy 108.892034 63.190134) (xy 108.892033 63.190133) (xy 108.892032 63.190127) (xy 108.861331 63.136951) (xy 108.811923 63.051375) (xy 108.811915 63.051365) (xy 107.273633 61.513083) (xy 107.273623 61.513075) (xy 107.134877 61.43297) (xy 107.134874 61.432969) (xy 107.134873 61.432968) (xy 107.134871 61.432967) (xy 107.13487 61.432967) (xy 107.043552 61.408499) (xy 106.980111 61.3915) (xy 106.98011 61.3915) (xy 105.719925 61.3915) (xy 105.651804 61.371498) (xy 105.63083 61.354595) (xy 105.611286 61.335051) (xy 105.57726 61.272739) (xy 105.582325 61.201924) (xy 105.624872 61.145088) (xy 105.680665 61.121509) (xy 105.881629 61.08968) (xy 106.087241 61.022872) (xy 106.279871 60.924722) (xy 106.454775 60.797647) (xy 106.539133 60.713288) (xy 106.601443 60.679265) (xy 106.672259 60.684329) (xy 106.729095 60.726875) (xy 106.746283 60.758352) (xy 106.784556 60.860966) (xy 106.872095 60.977904) (xy 106.989034 61.065444) (xy 107.125906 61.116494) (xy 107.186402 61.122999) (xy 107.186415 61.123) (xy 107.846 61.123) (xy 107.846 60.04225) (xy 107.903147 60.075245) (xy 108.032857 60.11) (xy 108.167143 60.11) (xy 108.296853 60.075245) (xy 108.354 60.04225) (xy 108.354 61.123) (xy 109.013585 61.123) (xy 109.013597 61.122999) (xy 109.074093 61.116494) (xy 109.210964 61.065444) (xy 109.210965 61.065444) (xy 109.327904 60.977904) (xy 109.415444 60.860965) (xy 109.415444 60.860964) (xy 109.466494 60.724093) (xy 109.472999 60.663597) (xy 109.473 60.663585) (xy 109.473 59.854) (xy 108.542251 59.854) (xy 108.575245 59.796853) (xy 108.61 59.667143) (xy 108.61 59.532857) (xy 108.575245 59.403147) (xy 108.542251 59.346) (xy 109.473 59.346) (xy 109.473 58.536414) (xy 109.472999 58.536402) (xy 109.466494 58.475906) (xy 109.415444 58.339035) (xy 109.415444 58.339034) (xy 109.327904 58.222095) (xy 109.210965 58.134555) (xy 109.074093 58.083505) (xy 109.013597 58.077) (xy 108.354 58.077) (xy 108.354 59.157749) (xy 108.296853 59.124755) (xy 108.167143 59.09) (xy 108.032857 59.09) (xy 107.903147 59.124755) (xy 107.846 59.157749) (xy 107.846 58.077) (xy 107.186402 58.077) (xy 107.125906 58.083505) (xy 106.989035 58.134555) (xy 106.989034 58.134555) (xy 106.872095 58.222095) (xy 106.784555 58.339034) (xy 106.784553 58.339039) (xy 106.746282 58.441647) (xy 106.703735 58.498483) (xy 106.637215 58.523293) (xy 106.567841 58.508201) (xy 106.539132 58.486709) (xy 106.45478 58.402357) (xy 106.454777 58.402355) (xy 106.454775 58.402353) (xy 106.279871 58.275278) (xy 106.087241 58.177128) (xy 106.08724 58.177127) (xy 106.087239 58.177127) (xy 105.881632 58.110321) (xy 105.881629 58.11032) (xy 105.668097 58.0765) (xy 105.451903 58.0765) (xy 105.238371 58.11032) (xy 105.238368 58.11032) (xy 105.238367 58.110321) (xy 105.03276 58.177127) (xy 104.84013 58.275277) (xy 104.840123 58.275282) (xy 104.808858 58.297997) (xy 104.74199 58.321855) (xy 104.672839 58.305773) (xy 104.645707 58.285158) (xy 103.973627 57.613078) (xy 103.973624 57.613076) (xy 103.973623 57.613075) (xy 103.834877 57.53297) (xy 103.834874 57.532969) (xy 103.834873 57.532968) (xy 103.834871 57.532967) (xy 103.83487 57.532967) (xy 103.741421 57.507928) (xy 103.680111 57.4915) (xy 100.719889 57.4915) (xy 100.658579 57.507928) (xy 100.565129 57.532967) (xy 100.565122 57.53297) (xy 100.426375 57.613076) (xy 100.426365 57.613084) (xy 99.993083 58.046366) (xy 99.993075 58.046376) (xy 99.921589 58.170194) (xy 99.870206 58.219187) (xy 99.869674 58.21946) (xy 99.760128 58.275278) (xy 99.585222 58.402355) (xy 99.585219 58.402357) (xy 99.432357 58.555219) (xy 99.432355 58.555222) (xy 99.30528 58.730125) (xy 99.207127 58.92276) (xy 99.141851 59.123658) (xy 99.14032 59.128371) (xy 99.1065 59.341903) (xy 99.1065 59.858097) (xy 99.14032 60.071629) (xy 99.140321 60.071632) (xy 99.18042 60.195045) (xy 99.207128 60.277241) (xy 99.287857 60.435681) (xy 99.30528 60.469874) (xy 99.324736 60.496653) (xy 99.432353 60.644775) (xy 99.432355 60.644777) (xy 99.432357 60.64478) (xy 99.585219 60.797642) (xy 99.585222 60.797644) (xy 99.585225 60.797647) (xy 99.760129 60.924722) (xy 99.952759 61.022872) (xy 100.158371 61.08968) (xy 100.371903 61.1235) (xy 100.371906 61.1235) (xy 100.588094 61.1235) (xy 100.588097 61.1235) (xy 100.801629 61.08968) (xy 101.007241 61.022872) (xy 101.199871 60.924722) (xy 101.374775 60.797647) (xy 101.527647 60.644775) (xy 101.648064 60.479035) (xy 101.704286 60.435681) (xy 101.775022 60.429606) (xy 101.837814 60.462737) (xy 101.851936 60.479035) (xy 101.972353 60.644775) (xy 101.972355 60.644777) (xy 101.972357 60.64478) (xy 102.125219 60.797642) (xy 102.125222 60.797644) (xy 102.125225 60.797647) (xy 102.300129 60.924722) (xy 102.425876 60.988793) (xy 102.47749 61.03754) (xy 102.494556 61.106455) (xy 102.471655 61.173657) (xy 102.457768 61.190154) (xy 102.398209 61.249713) (xy 102.398208 61.249715) (xy 102.310606 61.38082) (xy 102.250265 61.526497) (xy 102.250263 61.526502) (xy 102.2195 61.681155) (xy 102.2195 61.838844) (xy 102.246745 61.975813) (xy 102.250263 61.993497) (xy 102.310606 62.139179) (xy 102.398211 62.270289) (xy 102.509711 62.381789) (xy 102.640821 62.469394) (xy 102.786503 62.529737) (xy 102.941158 62.5605) (xy 102.941159 62.5605) (xy 103.098841 62.5605) (xy 103.098842 62.5605) (xy 103.253497 62.529737) (xy 103.399179 62.469394) (xy 103.530289 62.381789) (xy 103.641789 62.270289) (xy 103.729394 62.139179) (xy 103.774164 62.031091) (xy 103.81871 61.975813) (xy 103.886073 61.953391) (xy 103.954865 61.970948) (xy 103.979667 61.990216) (xy 105.154595 63.165144) (xy 105.188621 63.227456) (xy 105.1915 63.254239) (xy 105.1915 63.90962) (xy 105.171498 63.977741) (xy 105.131648 64.01686) (xy 105.076349 64.050968) (xy 105.076341 64.050975) (xy 104.950975 64.176341) (xy 104.95097 64.176347) (xy 104.857885 64.327262) (xy 104.802113 64.495572) (xy 104.802112 64.495579) (xy 104.7915 64.599446) (xy 104.7915 65.200544) (xy 104.802112 65.304425) (xy 104.855329 65.465024) (xy 104.857885 65.472738) (xy 104.947741 65.618417) (xy 104.9665 65.684563) (xy 104.9665 66.037549) (xy 104.946498 66.10567) (xy 104.929595 66.126644) (xy 104.925549 66.130689) (xy 104.925544 66.130696) (xy 104.840856 66.273894) (xy 104.794437 66.43367) (xy 104.794437 66.433671) (xy 104.7915 66.470988) (xy 104.7915 67.628) (xy 104.771498 67.696121) (xy 104.717842 67.742614) (xy 104.6655 67.754) (xy 104.433489 67.754) (xy 104.396171 67.756937) (xy 104.39617 67.756937) (xy 104.236394 67.803356) (xy 104.093196 67.888044) (xy 104.093189 67.888049) (xy 103.975549 68.005689) (xy 103.975544 68.005696) (xy 103.890856 68.148894) (xy 103.844437 68.30867) (xy 103.844437 68.308671) (xy 103.8415 68.345984) (xy 103.8415 68.89576) (xy 103.821498 68.963881) (xy 103.804595 68.984856) (xy 103.155941 69.633509) (xy 103.093629 69.667534) (xy 103.022813 69.662469) (xy 102.965978 69.619922) (xy 102.941167 69.553402) (xy 102.946447 69.511158) (xy 102.945953 69.511053) (xy 102.947173 69.50535) (xy 102.947247 69.504764) (xy 102.947394 69.504319) (xy 102.947394 69.504318) (xy 102.957999 69.400516) (xy 102.958 69.400516) (xy 102.958 69.279) (xy 102.004 69.279) (xy 102.004 70.108) (xy 102.250517 70.108) (xy 102.250516 70.107999) (xy 102.354318 70.097394) (xy 102.354327 70.097392) (xy 102.363455 70.094368) (xy 102.43441 70.091927) (xy 102.49542 70.128234) (xy 102.527116 70.191763) (xy 102.519434 70.262343) (xy 102.501928 70.292119) (xy 102.498342 70.296654) (xy 102.406791 70.44508) (xy 102.351937 70.610622) (xy 102.3415 70.712778) (xy 102.3415 71.287212) (xy 102.351937 71.38938) (xy 102.406791 71.55492) (xy 102.498342 71.703346) (xy 102.498347 71.703352) (xy 102.621647 71.826652) (xy 102.621653 71.826657) (xy 102.621654 71.826658) (xy 102.77008 71.918209) (xy 102.770081 71.918209) (xy 102.770084 71.918211) (xy 102.776732 71.921311) (xy 102.775528 71.923892) (xy 102.823153 71.956829) (xy 102.850442 72.022372) (xy 102.837965 72.092263) (xy 102.814284 72.125165) (xy 100.884854 74.054596) (xy 100.822544 74.08862) (xy 100.795761 74.0915) (xy 93.7845 74.0915) (xy 93.716379 74.071498) (xy 93.669886 74.017842) (xy 93.6585 73.9655) (xy 93.6585 69.3845) (xy 93.678502 69.316379) (xy 93.732158 69.269886) (xy 93.7845 69.2585) (xy 94.530109 69.2585) (xy 94.53011 69.2585) (xy 94.530111 69.2585) (xy 94.618288 69.234873) (xy 94.684873 69.217032) (xy 94.823627 69.136922) (xy 98.161922 65.798627) (xy 98.195019 65.741301) (xy 98.246399 65.692309) (xy 98.316113 65.678872) (xy 98.382024 65.705259) (xy 98.393232 65.715207) (xy 98.426654 65.748629) (xy 98.42666 65.748634) (xy 98.577474 65.841657) (xy 98.745678 65.897393) (xy 98.745681 65.897394) (xy 98.849483 65.907999) (xy 98.849483 65.908) (xy 98.932805 65.908) (xy 99.000926 65.928002) (xy 99.047419 65.981658) (xy 99.057523 66.051932) (xy 99.028029 66.116512) (xy 99.0219 66.123095) (xy 98.973347 66.171647) (xy 98.973342 66.171653) (xy 98.881791 66.32008) (xy 98.826937 66.485622) (xy 98.8165 66.587778) (xy 98.8165 67.187212) (xy 98.826937 67.28938) (xy 98.881791 67.45492) (xy 98.973342 67.603346) (xy 98.973347 67.603352) (xy 99.0809 67.710905) (xy 99.114926 67.773217) (xy 99.109861 67.844032) (xy 99.0809 67.889095) (xy 98.973347 67.996647) (xy 98.973342 67.996653) (xy 98.881791 68.14508) (xy 98.826937 68.310622) (xy 98.8165 68.412778) (xy 98.8165 69.012212) (xy 98.826937 69.11438) (xy 98.881791 69.27992) (xy 98.973342 69.428346) (xy 98.973347 69.428352) (xy 99.096647 69.551652) (xy 99.096653 69.551657) (xy 99.096654 69.551658) (xy 99.24508 69.643209) (xy 99.410619 69.698062) (xy 99.512787 69.7085) (xy 100.087212 69.708499) (xy 100.189381 69.698062) (xy 100.35492 69.643209) (xy 100.421643 69.602052) (xy 100.490119 69.583316) (xy 100.557858 69.604574) (xy 100.60335 69.659081) (xy 100.60739 69.669654) (xy 100.60834 69.672521) (xy 100.701365 69.823339) (xy 100.70137 69.823345) (xy 100.826654 69.948629) (xy 100.82666 69.948634) (xy 100.977474 70.041657) (xy 101.145678 70.097393) (xy 101.145681 70.097394) (xy 101.249483 70.107999) (xy 101.249483 70.108) (xy 101.496 70.108) (xy 101.496 68.897) (xy 101.516002 68.828879) (xy 101.569658 68.782386) (xy 101.622 68.771) (xy 102.958 68.771) (xy 102.958 68.649483) (xy 102.947394 68.545681) (xy 102.947393 68.545678) (xy 102.891657 68.377474) (xy 102.798634 68.22666) (xy 102.798629 68.226654) (xy 102.673344 68.101369) (xy 102.670551 68.099161) (xy 102.669131 68.097156) (xy 102.66815 68.096175) (xy 102.668317 68.096007) (xy 102.629519 68.041222) (xy 102.626325 67.970298) (xy 102.661983 67.908905) (xy 102.670554 67.901478) (xy 102.673639 67.899037) (xy 102.673652 67.89903) (xy 102.79903 67.773652) (xy 102.892115 67.622738) (xy 102.947887 67.454426) (xy 102.9585 67.350545) (xy 102.958499 66.599456) (xy 102.947887 66.495574) (xy 102.892115 66.327262) (xy 102.79903 66.176348) (xy 102.799029 66.176347) (xy 102.799024 66.176341) (xy 102.709858 66.087175) (xy 102.675832 66.024863) (xy 102.680897 65.954048) (xy 102.723444 65.897212) (xy 102.789964 65.872401) (xy 102.838587 65.878476) (xy 102.895672 65.897392) (xy 102.895681 65.897394) (xy 102.999483 65.907999) (xy 102.999483 65.908) (xy 103.046 65.908) (xy 103.554 65.908) (xy 103.600517 65.908) (xy 103.600516 65.907999) (xy 103.704318 65.897394) (xy 103.704321 65.897393) (xy 103.872525 65.841657) (xy 104.023339 65.748634) (xy 104.023345 65.748629) (xy 104.148629 65.623345) (xy 104.148634 65.623339) (xy 104.241657 65.472525) (xy 104.297393 65.304321) (xy 104.297394 65.304318) (xy 104.307999 65.200516) (xy 104.308 65.200516) (xy 104.308 65.154) (xy 103.554 65.154) (xy 103.554 65.908) (xy 103.046 65.908) (xy 103.046 64.646) (xy 103.554 64.646) (xy 104.308 64.646) (xy 104.308 64.599483) (xy 104.297394 64.495681) (xy 104.297393 64.495678) (xy 104.241657 64.327474) (xy 104.148634 64.17666) (xy 104.148629 64.176654) (xy 104.023345 64.05137) (xy 104.023339 64.051365) (xy 103.872525 63.958342) (xy 103.704321 63.902606) (xy 103.704318 63.902605) (xy 103.600516 63.892) (xy 103.554 63.892) (xy 103.554 64.646) (xy 103.046 64.646) (xy 103.046 63.892) (xy 102.999483 63.892) (xy 102.895681 63.902605) (xy 102.895678 63.902606) (xy 102.727474 63.958342) (xy 102.57666 64.051365) (xy 102.564446 64.063579) (xy 102.502133 64.097602) (xy 102.431317 64.092535) (xy 102.386257 64.063575) (xy 102.373652 64.05097) (xy 102.34335 64.032279) (xy 102.295874 63.979493) (xy 102.2835 63.92504) (xy 102.2835 63.693698) (xy 102.300382 63.630697) (xy 102.334524 63.571561) (xy 102.334523 63.571561) (xy 102.334527 63.571556) (xy 102.393542 63.389928) (xy 102.413504 63.2) (xy 102.393542 63.010072) (xy 102.334527 62.828444) (xy 102.23904 62.663056) (xy 102.239038 62.663054) (xy 102.239034 62.663048) (xy 102.111255 62.521135) (xy 101.956752 62.408882) (xy 101.782288 62.331206) (xy 101.595487 62.2915) (xy 101.404513 62.2915) (xy 101.217711 62.331206) (xy 101.043247 62.408882) (xy 100.888744 62.521135) (xy 100.760965 62.663048) (xy 100.760958 62.663058) (xy 100.665476 62.828438) (xy 100.665473 62.828445) (xy 100.606457 63.010072) (xy 100.586496 63.2) (xy 100.606457 63.389927) (xy 100.630897 63.465144) (xy 100.665473 63.571556) (xy 100.665476 63.571561) (xy 100.760958 63.736941) (xy 100.760965 63.736951) (xy 100.888744 63.878864) (xy 100.890854 63.880397) (xy 100.891779 63.881596) (xy 100.893652 63.883283) (xy 100.893343 63.883625) (xy 100.934208 63.936619) (xy 100.940283 64.007355) (xy 100.907152 64.070147) (xy 100.905889 64.071428) (xy 100.80097 64.176347) (xy 100.707885 64.327262) (xy 100.652113 64.495572) (xy 100.652112 64.495579) (xy 100.6415 64.599446) (xy 100.6415 64.960405) (xy 100.621498 65.028526) (xy 100.604595 65.0495) (xy 100.373095 65.281) (xy 100.310783 65.315026) (xy 100.239968 65.309961) (xy 100.183132 65.267414) (xy 100.158321 65.200894) (xy 100.158 65.191905) (xy 100.158 65.154) (xy 99.022 65.154) (xy 98.953879 65.133998) (xy 98.907386 65.080342) (xy 98.896 65.028) (xy 98.896 64.646) (xy 99.404 64.646) (xy 100.158 64.646) (xy 100.158 64.599483) (xy 100.147394 64.495681) (xy 100.147393 64.495678) (xy 100.091657 64.327474) (xy 99.998634 64.17666) (xy 99.998629 64.176654) (xy 99.873345 64.05137) (xy 99.873339 64.051365) (xy 99.722525 63.958342) (xy 99.554321 63.902606) (xy 99.554318 63.902605) (xy 99.450516 63.892) (xy 99.404 63.892) (xy 99.404 64.646) (xy 98.896 64.646) (xy 98.896 63.892) (xy 98.849483 63.892) (xy 98.745681 63.902605) (xy 98.745678 63.902606) (xy 98.577472 63.958343) (xy 98.475646 64.02115) (xy 98.407167 64.039887) (xy 98.339428 64.018627) (xy 98.293937 63.96412) (xy 98.2835 63.913909) (xy 98.2835 58.29489) (xy 98.281597 58.287787) (xy 98.242032 58.140128) (xy 98.187904 58.046376) (xy 98.161923 58.001375) (xy 98.161919 58.00137) (xy 98.106549 57.946) (xy 98.048628 57.888079) (xy 97.573627 57.413078) (xy 97.573625 57.413077) (xy 97.573623 57.413075) (xy 97.434877 57.33297) (xy 97.434874 57.332969) (xy 97.434873 57.332968) (xy 97.434871 57.332967) (xy 97.43487 57.332967) (xy 97.357491 57.312234) (xy 97.348635 57.309861) (xy 97.280111 57.2915) (xy 94.519889 57.2915) (xy 94.436955 57.313722) (xy 94.36513 57.332967) (xy 94.365123 57.33297) (xy 94.226376 57.413075) (xy 94.226366 57.413083) (xy 91.959854 59.679595) (xy 91.897542 59.713621) (xy 91.87076 59.7165) (xy 91.699455 59.7165) (xy 91.595574 59.727112) (xy 91.427261 59.782885) (xy 91.276347 59.87597) (xy 91.276341 59.875975) (xy 91.150975 60.001341) (xy 91.15097 60.001347) (xy 91.061651 60.146156) (xy 91.008865 60.193634) (xy 90.93879 60.205037) (xy 90.873674 60.176744) (xy 90.865315 60.169104) (xy 90.735009 60.038798) (xy 90.735006 60.038796) (xy 90.735004 60.038794) (xy 90.604781 59.944182) (xy 90.562012 59.913108) (xy 90.562011 59.913107) (xy 90.562009 59.913106) (xy 90.371483 59.816028) (xy 90.37148 59.816027) (xy 90.371478 59.816026) (xy 90.16812 59.749952) (xy 90.168123 59.749952) (xy 90.128801 59.743724) (xy 89.956916 59.7165) (xy 89.743084 59.7165) (xy 89.531884 59.749951) (xy 89.531878 59.749952) (xy 89.328521 59.816026) (xy 89.328515 59.816029) (xy 89.137987 59.913108) (xy 88.964993 60.038796) (xy 88.96499 60.038798) (xy 88.813798 60.18999) (xy 88.813796 60.189993) (xy 88.688108 60.362987) (xy 88.591029 60.553515) (xy 88.591026 60.553521) (xy 88.524952 60.756878) (xy 88.524951 60.756883) (xy 88.524951 60.756884) (xy 88.4915 60.968084) (xy 88.4915 61.481916) (xy 88.523057 61.681155) (xy 88.524952 61.693121) (xy 88.591026 61.896478) (xy 88.591028 61.896483) (xy 88.684046 62.07904) (xy 88.688108 62.087012) (xy 88.710773 62.118208) (xy 88.813794 62.260004) (xy 88.813796 62.260006) (xy 88.813798 62.260009) (xy 88.96499 62.411201) (xy 88.964993 62.411203) (xy 88.964996 62.411206) (xy 89.137991 62.536894) (xy 89.328517 62.633972) (xy 89.531878 62.700047) (xy 89.531879 62.700047) (xy 89.531884 62.700049) (xy 89.743084 62.7335) (xy 89.870761 62.7335) (xy 89.938882 62.753502) (xy 89.959851 62.7704) (xy 90.476373 63.286922) (xy 90.53995 63.323628) (xy 90.615128 63.367032) (xy 90.769889 63.4085) (xy 90.76989 63.4085) (xy 90.769891 63.4085) (xy 93.380109 63.4085) (xy 93.38011 63.4085) (xy 93.380111 63.4085) (xy 93.468617 63.384785) (xy 93.534873 63.367032) (xy 93.673627 63.286922) (xy 94.236921 62.723628) (xy 94.317032 62.584873) (xy 94.350893 62.4585) (xy 94.3585 62.430111) (xy 94.3585 60.054239) (xy 94.378502 59.986118) (xy 94.395405 59.965144) (xy 94.827644 59.532905) (xy 94.889956 59.498879) (xy 94.916739 59.496) (xy 95.449307 59.496) (xy 95.517428 59.516002) (xy 95.556547 59.555853) (xy 95.585838 59.60334) (xy 95.585842 59.603346) (xy 95.585844 59.603348) (xy 95.585847 59.603352) (xy 95.6934 59.710905) (xy 95.727426 59.773217) (xy 95.722361 59.844032) (xy 95.6934 59.889095) (xy 95.585847 59.996647) (xy 95.585842 59.996653) (xy 95.494291 60.14508) (xy 95.439437 60.310622) (xy 95.429 60.412778) (xy 95.429 60.783259) (xy 95.408998 60.85138) (xy 95.392096 60.872354) (xy 95.11308 61.15137) (xy 95.113075 61.151376) (xy 95.032969 61.290123) (xy 95.032966 61.290129) (xy 95.024451 61.321913) (xy 95.024451 61.321915) (xy 94.9915 61.44489) (xy 94.9915 64.9655) (xy 94.971498 65.033621) (xy 94.917842 65.080114) (xy 94.8655 65.0915) (xy 90.069888 65.0915) (xy 90.008739 65.107884) (xy 90.008739 65.107885) (xy 89.931705 65.128526) (xy 89.915127 65.132968) (xy 89.915122 65.13297) (xy 89.776375 65.213076) (xy 89.776369 65.213081) (xy 89.66311 65.326341) (xy 89.334854 65.654596) (xy 89.272544 65.68862) (xy 89.245761 65.6915) (xy 87.90135 65.6915) (xy 87.840803 65.698009) (xy 87.840795 65.698011) (xy 87.703797 65.74911) (xy 87.703792 65.749112) (xy 87.586738 65.836738) (xy 87.499112 65.953792) (xy 87.49911 65.953797) (xy 87.448011 66.090795) (xy 87.448009 66.090803) (xy 87.4415 66.15135) (xy 87.4415 67.948649) (xy 87.448009 68.009196) (xy 87.448011 68.009204) (xy 87.49911 68.146202) (xy 87.499112 68.146207) (xy 87.586738 68.263261) (xy 87.703792 68.350887) (xy 87.703794 68.350888) (xy 87.703796 68.350889) (xy 87.75453 68.369812) (xy 87.840795 68.401988) (xy 87.840803 68.40199) (xy 87.90135 68.408499) (xy 87.901355 68.408499) (xy 87.901362 68.4085) (xy 87.901368 68.4085) (xy 89.698632 68.4085) (xy 89.698638 68.4085) (xy 89.698645 68.408499) (xy 89.698649 68.408499) (xy 89.759196 68.40199) (xy 89.759199 68.401989) (xy 89.759201 68.401989) (xy 89.896204 68.350889) (xy 89.902757 68.345984) (xy 90.013261 68.263261) (xy 90.100886 68.146208) (xy 90.100885 68.146208) (xy 90.100889 68.146204) (xy 90.144999 68.027939) (xy 90.187545 67.971107) (xy 90.254066 67.946296) (xy 90.32344 67.961388) (xy 90.355753 67.986635) (xy 90.41456 68.050516) (xy 90.416762 68.052908) (xy 90.441492 68.072156) (xy 90.594424 68.191189) (xy 90.792426 68.298342) (xy 90.792427 68.298342) (xy 90.792428 68.298343) (xy 90.881377 68.328879) (xy 91.005365 68.371444) (xy 91.227431 68.4085) (xy 91.227435 68.4085) (xy 91.452565 68.4085) (xy 91.452569 68.4085) (xy 91.674635 68.371444) (xy 91.874588 68.302799) (xy 91.945512 68.2996) (xy 92.006908 68.335252) (xy 92.039282 68.398437) (xy 92.0415 68.421973) (xy 92.0415 74.41733) (xy 92.021498 74.485451) (xy 92.004595 74.506425) (xy 89.913083 76.597936) (xy 89.913075 76.597946) (xy 89.83297 76.736692) (xy 89.832965 76.736704) (xy 89.819326 76.787604) (xy 89.819327 76.787605) (xy 89.7915 76.891458) (xy 89.7915 78.29576) (xy 89.771498 78.363881) (xy 89.754595 78.384855) (xy 83.284855 84.854595) (xy 83.222543 84.888621) (xy 83.19576 84.8915) (xy 83.06989 84.8915) (xy 83.006445 84.908499) (xy 83.006446 84.9085) (xy 82.915131 84.932967) (xy 82.915124 84.93297) (xy 82.845752 84.973023) (xy 82.776375 85.013077) (xy 82.741885 85.047568) (xy 82.663081 85.126372) (xy 82.663079 85.126373) (xy 82.663074 85.126377) (xy 82.634857 85.154595) (xy 82.572545 85.188621) (xy 82.545762 85.1915) (xy 78.116406 85.1915) (xy 78.048285 85.171498) (xy 78.001792 85.117842) (xy 77.991688 85.047568) (xy 78.021182 84.982988) (xy 78.050259 84.95826) (xy 78.09602 84.930033) (xy 78.136151 84.90528) (xy 78.26153 84.779901) (xy 78.354615 84.628988) (xy 78.410387 84.460675) (xy 78.415983 84.405899) (xy 78.421 84.356802) (xy 78.421 83.005697) (xy 78.412557 82.923062) (xy 78.410387 82.901825) (xy 78.354615 82.733512) (xy 78.26153 82.582599) (xy 78.261529 82.582598) (xy 78.261524 82.582592) (xy 78.136157 82.457225) (xy 78.136151 82.45722) (xy 78.053562 82.406278) (xy 77.985238 82.364135) (xy 77.816925 82.308363) (xy 77.816923 82.308362) (xy 77.816921 82.308362) (xy 77.713052 82.29775) (xy 77.713044 82.29775) (xy 76.941371 82.29775) (xy 76.87325 82.277748) (xy 76.852276 82.260845) (xy 76.595405 82.003974) (xy 76.561379 81.941662) (xy 76.5585 81.914879) (xy 76.5585 81.270251) (xy 76.578502 81.20213) (xy 76.632158 81.155637) (xy 76.702432 81.145533) (xy 76.724137 81.150648) (xy 76.733174 81.153643) (xy 76.733181 81.153644) (xy 76.836983 81.164249) (xy 76.836983 81.16425) (xy 77.0585 81.16425) (xy 77.5665 81.16425) (xy 77.788017 81.16425) (xy 77.788016 81.164249) (xy 77.891818 81.153644) (xy 77.891821 81.153643) (xy 78.060025 81.097907) (xy 78.210839 81.004884) (xy 78.210845 81.004879) (xy 78.336129 80.879595) (xy 78.336134 80.879589) (xy 78.429157 80.728775) (xy 78.484893 80.560571) (xy 78.484894 80.560568) (xy 78.495499 80.456766) (xy 78.4955 80.456766) (xy 78.4955 80.12275) (xy 77.5665 80.12275) (xy 77.5665 81.16425) (xy 77.0585 81.16425) (xy 77.0585 79.61475) (xy 77.5665 79.61475) (xy 78.4955 79.61475) (xy 78.4955 79.280733) (xy 78.484894 79.176931) (xy 78.484893 79.176928) (xy 78.429157 79.008724) (xy 78.336134 78.85791) (xy 78.336129 78.857904) (xy 78.210845 78.73262) (xy 78.210839 78.732615) (xy 78.060025 78.639592) (xy 77.891821 78.583856) (xy 77.891818 78.583855) (xy 77.788016 78.57325) (xy 77.5665 78.57325) (xy 77.5665 79.61475) (xy 77.0585 79.61475) (xy 77.0585 78.57325) (xy 76.98487 78.57325) (xy 76.916749 78.553248) (xy 76.870256 78.499592) (xy 76.860152 78.429318) (xy 76.889646 78.364738) (xy 76.895775 78.358155) (xy 76.927276 78.326654) (xy 76.989588 78.292628) (xy 77.016371 78.289749) (xy 77.788044 78.289749) (xy 77.891926 78.279137) (xy 78.060238 78.223365) (xy 78.211152 78.13028) (xy 78.33653 78.004902) (xy 78.429615 77.853988) (xy 78.476129 77.713614) (xy 78.516541 77.655246) (xy 78.582097 77.62799) (xy 78.595732 77.62725) (xy 79.392697 77.62725) (xy 79.460818 77.647252) (xy 79.481792 77.664155) (xy 80.306803 78.489166) (xy 80.362486 78.526372) (xy 80.362485 78.526372) (xy 80.431029 78.572171) (xy 80.431031 78.572172) (xy 80.431034 78.572174) (xy 80.569072 78.629351) (xy 80.715612 78.6585) (xy 80.715613 78.6585) (xy 80.865023 78.6585) (xy 81.731087 78.6585) (xy 81.799208 78.678502) (xy 81.845701 78.732158) (xy 81.851661 78.747922) (xy 81.863759 78.787804) (xy 81.957405 78.963004) (xy 82.083432 79.116568) (xy 82.236996 79.242595) (xy 82.412196 79.336241) (xy 82.602299 79.393908) (xy 82.602303 79.393908) (xy 82.602305 79.393909) (xy 82.637449 79.39737) (xy 82.750453 79.4085) (xy 85.649546 79.408499) (xy 85.709668 79.402577) (xy 85.797694 79.393909) (xy 85.797695 79.393908) (xy 85.797701 79.393908) (xy 85.987804 79.336241) (xy 86.163004 79.242595) (xy 86.316568 79.116568) (xy 86.442595 78.963004) (xy 86.536241 78.787804) (xy 86.593908 78.597701) (xy 86.594504 78.591657) (xy 86.601093 78.524755) (xy 86.6085 78.449547) (xy 86.608499 77.350454) (xy 86.598529 77.249221) (xy 86.593909 77.202305) (xy 86.593908 77.202303) (xy 86.593908 77.202299) (xy 86.536241 77.012196) (xy 86.442595 76.836996) (xy 86.316568 76.683432) (xy 86.163004 76.557405) (xy 85.987804 76.463759) (xy 85.797701 76.406092) (xy 85.7977 76.406091) (xy 85.797694 76.40609) (xy 85.668903 76.393406) (xy 85.649547 76.3915) (xy 85.649545 76.3915) (xy 82.750465 76.3915) (xy 82.750445 76.391501) (xy 82.602305 76.40609) (xy 82.412195 76.463759) (xy 82.236995 76.557405) (xy 82.083432 76.683432) (xy 81.957405 76.836995) (xy 81.863759 77.012195) (xy 81.851662 77.052075) (xy 81.812747 77.111457) (xy 81.747905 77.140373) (xy 81.731087 77.1415) (xy 81.156689 77.1415) (xy 81.088568 77.121498) (xy 81.067594 77.104595) (xy 80.920843 76.957844) (xy 80.886817 76.895532) (xy 80.891882 76.824717) (xy 80.920839 76.779659) (xy 84.5553 73.145197) (xy 84.61761 73.111173) (xy 84.63451 73.108682) (xy 84.636836 73.108499) (xy 84.636842 73.108499) (xy 84.713971 73.10243) (xy 84.893362 73.054362) (xy 85.058839 72.970047) (xy 85.058843 72.970043) (xy 85.058846 72.970042) (xy 85.20317 72.85317) (xy 85.25208 72.792772) (xy 85.310494 72.75242) (xy 85.381451 72.750054) (xy 85.442423 72.786427) (xy 85.44792 72.792772) (xy 85.496829 72.85317) (xy 85.641153 72.970042) (xy 85.641158 72.970045) (xy 85.641161 72.970047) (xy 85.806638 73.054362) (xy 85.986029 73.10243) (xy 86.063157 73.1085) (xy 86.936842 73.108499) (xy 87.013971 73.10243) (xy 87.193362 73.054362) (xy 87.358839 72.970047) (xy 87.358843 72.970043) (xy 87.358846 72.970042) (xy 87.50317 72.85317) (xy 87.620042 72.708846) (xy 87.620043 72.708843) (xy 87.620047 72.708839) (xy 87.704362 72.543362) (xy 87.75243 72.363971) (xy 87.7585 72.286843) (xy 87.758499 70.913158) (xy 87.75243 70.836029) (xy 87.704362 70.656638) (xy 87.620047 70.491161) (xy 87.620045 70.491158) (xy 87.620042 70.491153) (xy 87.50317 70.346829) (xy 87.358846 70.229957) (xy 87.358837 70.229952) (xy 87.288486 70.194106) (xy 87.193362 70.145638) (xy 87.193361 70.145637) (xy 87.19336 70.145637) (xy 87.052892 70.107999) (xy 87.013971 70.09757) (xy 86.936843 70.0915) (xy 86.93684 70.0915) (xy 86.154239 70.0915) (xy 86.086118 70.071498) (xy 86.065148 70.054599) (xy 85.673627 69.663078) (xy 85.673625 69.663077) (xy 85.673623 69.663075) (xy 85.534877 69.58297) (xy 85.534874 69.582969) (xy 85.534873 69.582968) (xy 85.534871 69.582967) (xy 85.53487 69.582967) (xy 85.418021 69.551658) (xy 85.418021 69.551657) (xy 85.380111 69.5415) (xy 83.219889 69.5415) (xy 83.136955 69.563722) (xy 83.06513 69.582967) (xy 83.065123 69.58297) (xy 82.967815 69.639152) (xy 82.964041 69.641331) (xy 82.945206 69.652205) (xy 82.926373 69.663078) (xy 82.926365 69.663084) (xy 82.563084 70.026365) (xy 82.563074 70.026379) (xy 82.555841 70.038906) (xy 82.504457 70.087897) (xy 82.434742 70.10133) (xy 82.414123 70.09761) (xy 82.413979 70.097571) (xy 82.413972 70.09757) (xy 82.413971 70.09757) (xy 82.336843 70.0915) (xy 82.336839 70.0915) (xy 81.463158 70.0915) (xy 81.38603 70.097569) (xy 81.206639 70.145637) (xy 81.041162 70.229952) (xy 81.041153 70.229957) (xy 80.896829 70.346829) (xy 80.779957 70.491153) (xy 80.779952 70.491162) (xy 80.701643 70.644851) (xy 80.652894 70.696466) (xy 80.583979 70.713532) (xy 80.516778 70.690631) (xy 80.472626 70.635033) (xy 80.469771 70.62728) (xy 80.417751 70.470293) (xy 80.326262 70.321966) (xy 80.326257 70.32196) (xy 80.203039 70.198742) (xy 80.203033 70.198737) (xy 80.054707 70.107248) (xy 79.889276 70.052431) (xy 79.889273 70.05243) (xy 79.787184 70.042) (xy 79.754 70.042) (xy 79.754 71.2155) (xy 79.733998 71.283621) (xy 79.680342 71.330114) (xy 79.628 71.3415) (xy 78.517 71.3415) (xy 78.517 71.437184) (xy 78.52743 71.539273) (xy 78.527431 71.539276) (xy 78.582248 71.704707) (xy 78.673737 71.853033) (xy 78.673742 71.853039) (xy 78.681254 71.860551) (xy 78.71528 71.922863) (xy 78.710215 71.993678) (xy 78.681254 72.038741) (xy 78.673347 72.046647) (xy 78.673342 72.046653) (xy 78.581791 72.19508) (xy 78.526937 72.360622) (xy 78.5165 72.462778) (xy 78.5165 72.6655) (xy 78.496498 72.733621) (xy 78.442842 72.780114) (xy 78.3905 72.7915) (xy 72.184499 72.7915) (xy 72.116378 72.771498) (xy 72.069885 72.717842) (xy 72.058499 72.6655) (xy 72.058499 71.999455) (xy 72.047887 71.895574) (xy 72.034134 71.85407) (xy 71.992115 71.727262) (xy 71.89903 71.576348) (xy 71.899029 71.576347) (xy 71.899024 71.576341) (xy 71.773658 71.450975) (xy 71.773652 71.45097) (xy 71.741279 71.431002) (xy 71.622738 71.357885) (xy 71.52916 71.326877) (xy 71.454427 71.302113) (xy 71.45442 71.302112) (xy 71.350553 71.2915) (xy 69.949455 71.2915) (xy 69.845574 71.302112) (xy 69.677261 71.357885) (xy 69.526347 71.45097) (xy 69.526341 71.450975) (xy 69.400975 71.576341) (xy 69.40097 71.576347) (xy 69.307885 71.727262) (xy 69.252113 71.895572) (xy 69.252112 71.895579) (xy 69.2415 71.999446) (xy 69.2415 75.100544) (xy 69.252112 75.204425) (xy 69.307885 75.372738) (xy 69.40097 75.523652) (xy 69.400975 75.523658) (xy 69.526341 75.649024) (xy 69.526347 75.649029) (xy 69.526348 75.64903) (xy 69.677262 75.742115) (xy 69.845574 75.797887) (xy 69.949455 75.8085) (xy 70.1155 75.808499) (xy 70.18362 75.828501) (xy 70.230113 75.882156) (xy 70.2415 75.934499) (xy 70.2415 75.940437) (xy 70.222741 76.006584) (xy 70.132886 76.15226) (xy 70.132885 76.152262) (xy 70.077112 76.320578) (xy 70.0665 76.424447) (xy 70.0665 78.375552) (xy 70.066499 78.375552) (xy 70.077112 78.479421) (xy 70.077112 78.479423) (xy 70.077113 78.479425) (xy 70.132885 78.647738) (xy 70.212322 78.776525) (xy 70.22597 78.798651) (xy 70.225975 78.798657) (xy 70.351342 78.924024) (xy 70.351348 78.924029) (xy 70.351349 78.92403) (xy 70.502262 79.017115) (xy 70.670575 79.072887) (xy 70.698906 79.075781) (xy 70.774448 79.0835) (xy 70.774456 79.0835) (xy 71.875552 79.0835) (xy 71.944798 79.076424) (xy 71.979425 79.072887) (xy 72.147738 79.017115) (xy 72.298651 78.92403) (xy 72.42403 78.798651) (xy 72.517115 78.647738) (xy 72.572887 78.479425) (xy 72.578006 78.429318) (xy 72.5835 78.375552) (xy 72.5835 76.424447) (xy 72.572898 76.320681) (xy 72.572887 76.320575) (xy 72.517115 76.152262) (xy 72.42403 76.001349) (xy 72.424029 76.001348) (xy 72.424024 76.001342) (xy 72.298657 75.875975) (xy 72.298651 75.87597) (xy 72.250964 75.846556) (xy 72.147738 75.782885) (xy 71.979425 75.727113) (xy 71.979419 75.727111) (xy 71.972698 75.725673) (xy 71.973269 75.723002) (xy 71.918916 75.700815) (xy 71.878125 75.642706) (xy 71.875226 75.571769) (xy 71.895663 75.530197) (xy 71.895177 75.529898) (xy 71.898299 75.524836) (xy 71.898638 75.524147) (xy 71.899026 75.523655) (xy 71.89903 75.523652) (xy 71.992115 75.372738) (xy 72.047887 75.204426) (xy 72.0585 75.100545) (xy 72.058499 74.4378) (xy 72.060923 74.413206) (xy 72.06158 74.409905) (xy 72.094494 74.346999) (xy 72.156193 74.311874) (xy 72.185156 74.3085) (xy 78.837206 74.3085) (xy 78.94482 74.287094) (xy 78.983747 74.279351) (xy 79.121784 74.222174) (xy 79.246015 74.139166) (xy 79.489776 73.895403) (xy 79.552089 73.861379) (xy 79.578872 73.858499) (xy 79.787212 73.858499) (xy 79.889381 73.848062) (xy 80.05492 73.793209) (xy 80.203346 73.701658) (xy 80.326658 73.578346) (xy 80.418209 73.42992) (xy 80.473062 73.264381) (xy 80.481565 73.181147) (xy 80.508386 73.115416) (xy 80.517808 73.104871) (xy 80.746259 72.87642) (xy 80.808569 72.842396) (xy 80.879384 72.847461) (xy 80.914643 72.867594) (xy 81.041161 72.970047) (xy 81.206638 73.054362) (xy 81.386029 73.10243) (xy 81.463157 73.1085) (xy 81.576761 73.108499) (xy 81.64488 73.1285) (xy 81.691373 73.182156) (xy 81.701478 73.25243) (xy 81.671985 73.317011) (xy 81.665856 73.323594) (xy 79.834854 75.154596) (xy 79.772544 75.18862) (xy 79.745761 75.1915) (xy 74.119889 75.1915) (xy 74.071649 75.204426) (xy 74.048536 75.210619) (xy 73.965129 75.232967) (xy 73.965122 75.23297) (xy 73.826375 75.313076) (xy 73.826365 75.313084) (xy 73.263083 75.876366) (xy 73.263075 75.876376) (xy 73.18297 76.015122) (xy 73.182968 76.015127) (xy 73.165695 76.079592) (xy 73.141794 76.168794) (xy 73.1415 76.16989) (xy 73.1415 77.861361) (xy 73.158995 77.926657) (xy 73.182965 78.016115) (xy 73.18297 78.016127) (xy 73.263075 78.154873) (xy 73.263077 78.154875) (xy 73.263078 78.154877) (xy 73.692096 78.583895) (xy 73.72612 78.646206) (xy 73.729 78.672989) (xy 73.729 78.81451) (xy 73.708998 78.882631) (xy 73.692095 78.903605) (xy 72.641106 79.954595) (xy 72.578794 79.98862) (xy 72.552011 79.9915) (xy 72.341739 79.9915) (xy 72.273618 79.971498) (xy 72.227125 79.917842) (xy 72.222135 79.905133) (xy 72.204616 79.852265) (xy 72.204615 79.852264) (xy 72.204615 79.852262) (xy 72.11153 79.701348) (xy 72.111529 79.701347) (xy 72.111524 79.701341) (xy 71.986158 79.575975) (xy 71.986152 79.57597) (xy 71.945486 79.550887) (xy 71.835238 79.482885) (xy 71.732981 79.449001) (xy 71.666927 79.427113) (xy 71.66692 79.427112) (xy 71.563053 79.4165) (xy 70.386955 79.4165) (xy 70.283074 79.427112) (xy 70.114761 79.482885) (xy 69.963847 79.57597) (xy 69.963841 79.575975) (xy 69.838475 79.701341) (xy 69.83847 79.701347) (xy 69.745385 79.852262) (xy 69.689613 80.020572) (xy 69.689612 80.020579) (xy 69.679 80.124446) (xy 69.679 81.075544) (xy 69.689612 81.179425) (xy 69.745385 81.347738) (xy 69.83847 81.498652) (xy 69.838475 81.498658) (xy 69.963841 81.624024) (xy 69.963847 81.624029) (xy 69.963848 81.62403) (xy 70.114762 81.717115) (xy 70.283074 81.772887) (xy 70.386955 81.7835) (xy 70.5155 81.783499) (xy 70.58362 81.803501) (xy 70.630113 81.857156) (xy 70.6415 81.909499) (xy 70.6415 83.036806) (xy 70.621498 83.104927) (xy 70.581648 83.144046) (xy 70.534153 83.173341) (xy 70.426241 83.281254) (xy 70.363929 83.31528) (xy 70.293114 83.310215) (xy 70.248051 83.281254) (xy 70.140539 83.173742) (xy 70.140533 83.173737) (xy 69.992207 83.082248) (xy 69.826776 83.027431) (xy 69.826773 83.02743) (xy 69.724684 83.017) (xy 69.679 83.017) (xy 69.679 84.128) (xy 69.658998 84.196121) (xy 69.605342 84.242614) (xy 69.553 84.254) (xy 68.429499 84.254) (xy 68.413496 84.270002) (xy 68.409498 84.283621) (xy 68.355842 84.330114) (xy 68.3035 84.3415) (xy 66.542587 84.3415) (xy 66.474466 84.321498) (xy 66.468524 84.317435) (xy 66.467728 84.316857) (xy 66.460949 84.311931) (xy 66.456751 84.308881) (xy 66.433249 84.298417) (xy 66.379154 84.252436) (xy 66.358506 84.184508) (xy 66.3585 84.183311) (xy 66.3585 83.712815) (xy 68.4295 83.712815) (xy 68.4295 83.746) (xy 69.171 83.746) (xy 69.171 83.017) (xy 69.125315 83.017) (xy 69.023226 83.02743) (xy 69.023223 83.027431) (xy 68.857792 83.082248) (xy 68.709466 83.173737) (xy 68.70946 83.173742) (xy 68.586242 83.29696) (xy 68.586237 83.296966) (xy 68.494748 83.445292) (xy 68.439931 83.610723) (xy 68.43993 83.610726) (xy 68.4295 83.712815) (xy 66.3585 83.712815) (xy 66.3585 81.075516) (xy 66.8045 81.075516) (xy 66.815105 81.179318) (xy 66.815106 81.179321) (xy 66.870842 81.347525) (xy 66.963865 81.498339) (xy 66.96387 81.498345) (xy 67.089154 81.623629) (xy 67.08916 81.623634) (xy 67.239974 81.716657) (xy 67.408178 81.772393) (xy 67.408181 81.772394) (xy 67.511983 81.782999) (xy 67.511983 81.783) (xy 67.846 81.783) (xy 68.354 81.783) (xy 68.688017 81.783) (xy 68.688016 81.782999) (xy 68.791818 81.772394) (xy 68.791821 81.772393) (xy 68.960025 81.716657) (xy 69.110839 81.623634) (xy 69.110845 81.623629) (xy 69.236129 81.498345) (xy 69.236134 81.498339) (xy 69.329157 81.347525) (xy 69.384893 81.179321) (xy 69.384894 81.179318) (xy 69.395499 81.075516) (xy 69.3955 81.075516) (xy 69.3955 80.854) (xy 68.354 80.854) (xy 68.354 81.783) (xy 67.846 81.783) (xy 67.846 80.854) (xy 66.8045 80.854) (xy 66.8045 81.075516) (xy 66.3585 81.075516) (xy 66.3585 80.124483) (xy 66.8045 80.124483) (xy 66.8045 80.346) (xy 67.846 80.346) (xy 68.354 80.346) (xy 69.3955 80.346) (xy 69.3955 80.124483) (xy 69.384894 80.020681) (xy 69.384893 80.020678) (xy 69.329157 79.852474) (xy 69.236134 79.70166) (xy 69.236129 79.701654) (xy 69.110845 79.57637) (xy 69.110839 79.576365) (xy 68.960025 79.483342) (xy 68.791821 79.427606) (xy 68.791818 79.427605) (xy 68.688016 79.417) (xy 68.354 79.417) (xy 68.354 80.346) (xy 67.846 80.346) (xy 67.846 79.417) (xy 67.511983 79.417) (xy 67.408181 79.427605) (xy 67.408178 79.427606) (xy 67.239974 79.483342) (xy 67.08916 79.576365) (xy 67.089154 79.57637) (xy 66.96387 79.701654) (xy 66.963865 79.70166) (xy 66.870842 79.852474) (xy 66.815106 80.020678) (xy 66.815105 80.020681) (xy 66.8045 80.124483) (xy 66.3585 80.124483) (xy 66.3585 78.375507) (xy 66.817001 78.375507) (xy 66.827605 78.479318) (xy 66.883342 78.647525) (xy 66.976366 78.798339) (xy 66.976371 78.798345) (xy 67.101654 78.923628) (xy 67.10166 78.923633) (xy 67.252474 79.016657) (xy 67.420678 79.072393) (xy 67.420682 79.072394) (xy 67.524484 79.082999) (xy 67.821 79.082999) (xy 68.329 79.082999) (xy 68.625507 79.082999) (xy 68.729318 79.072394) (xy 68.897525 79.016657) (xy 69.048339 78.923633) (xy 69.048345 78.923628) (xy 69.173628 78.798345) (xy 69.173633 78.798339) (xy 69.266657 78.647525) (xy 69.322393 78.479321) (xy 69.322394 78.479318) (xy 69.332999 78.375515) (xy 69.333 78.375515) (xy 69.333 77.654) (xy 68.329 77.654) (xy 68.329 79.082999) (xy 67.821 79.082999) (xy 67.821 77.654) (xy 66.817001 77.654) (xy 66.817001 78.375507) (xy 66.3585 78.375507) (xy 66.3585 77.325293) (xy 66.358499 77.32529) (xy 66.329351 77.178754) (xy 66.272174 77.040716) (xy 66.238851 76.990845) (xy 66.189166 76.916485) (xy 66.060993 76.788312) (xy 66.02697 76.726003) (xy 66.032034 76.655187) (xy 66.06886 76.604617) (xy 66.068463 76.60422) (xy 66.070988 76.601694) (xy 66.071948 76.600377) (xy 66.073646 76.599033) (xy 66.073652 76.59903) (xy 66.19903 76.473652) (xy 66.229357 76.424484) (xy 66.817 76.424484) (xy 66.817 77.146) (xy 67.821 77.146) (xy 68.329 77.146) (xy 69.332999 77.146) (xy 69.332999 76.424492) (xy 69.322394 76.320681) (xy 69.266657 76.152474) (xy 69.173633 76.00166) (xy 69.173628 76.001654) (xy 69.048345 75.876371) (xy 69.048339 75.876366) (xy 68.897525 75.783342) (xy 68.729321 75.727606) (xy 68.729318 75.727605) (xy 68.625515 75.717) (xy 68.329 75.717) (xy 68.329 77.146) (xy 67.821 77.146) (xy 67.821 75.717) (xy 67.524492 75.717) (xy 67.420681 75.727605) (xy 67.252474 75.783342) (xy 67.10166 75.876366) (xy 67.101654 75.876371) (xy 66.976371 76.001654) (xy 66.976366 76.00166) (xy 66.883342 76.152474) (xy 66.827606 76.320678) (xy 66.827605 76.320681) (xy 66.817 76.424484) (xy 66.229357 76.424484) (xy 66.292115 76.322738) (xy 66.347887 76.154426) (xy 66.3585 76.050545) (xy 66.358499 74.649456) (xy 66.355309 74.618233) (xy 66.347887 74.545574) (xy 66.346002 74.539884) (xy 66.292115 74.377262) (xy 66.19903 74.226348) (xy 66.199029 74.226347) (xy 66.199024 74.226341) (xy 66.073658 74.100975) (xy 66.073652 74.10097) (xy 66.057678 74.091117) (xy 65.922738 74.007885) (xy 65.819428 73.973652) (xy 65.754427 73.952113) (xy 65.75442 73.952112) (xy 65.650553 73.9415) (xy 65.650545 73.9415) (xy 64.139594 73.9415) (xy 64.071473 73.921498) (xy 64.050499 73.904595) (xy 63.653835 73.507931) (xy 63.653833 73.507929) (xy 63.550075 73.4386) (xy 63.434785 73.390845) (xy 63.361086 73.376185) (xy 63.312396 73.3665) (xy 63.312394 73.3665) (xy 61.85225 73.3665) (xy 61.784129 73.346498) (xy 61.737636 73.292842) (xy 61.727532 73.222568) (xy 61.732643 73.200876) (xy 61.772887 73.079425) (xy 61.776571 73.043369) (xy 61.7835 72.975552) (xy 61.7835 67.924447) (xy 61.772887 67.820578) (xy 61.772887 67.820575) (xy 61.717115 67.652262) (xy 61.62403 67.501349) (xy 61.624029 67.501348) (xy 61.624024 67.501342) (xy 61.498657 67.375975) (xy 61.498651 67.37597) (xy 61.446124 67.343571) (xy 61.347738 67.282885) (xy 61.179425 67.227113) (xy 61.179423 67.227112) (xy 61.179421 67.227112) (xy 61.141691 67.223257) (xy 61.075956 67.196434) (xy 61.035159 67.138329) (xy 61.0285 67.09791) (xy 61.0285 66.916372) (xy 61.048502 66.848251) (xy 61.0654 66.827281) (xy 61.11903 66.773652) (xy 61.212115 66.622738) (xy 61.267887 66.454426) (xy 61.2785 66.350545) (xy 61.2785 66.350516) (xy 61.762 66.350516) (xy 61.772605 66.454318) (xy 61.772606 66.454321) (xy 61.828342 66.622525) (xy 61.921365 66.773339) (xy 61.92137 66.773345) (xy 62.046654 66.898629) (xy 62.04666 66.898634) (xy 62.197474 66.991657) (xy 62.365678 67.047393) (xy 62.365681 67.047394) (xy 62.469483 67.057999) (xy 62.469483 67.058) (xy 62.516 67.058) (xy 63.024 67.058) (xy 63.070517 67.058) (xy 63.070516 67.057999) (xy 63.174318 67.047394) (xy 63.174321 67.047393) (xy 63.342525 66.991657) (xy 63.493339 66.898634) (xy 63.493345 66.898629) (xy 63.618629 66.773345) (xy 63.618634 66.773339) (xy 63.711657 66.622525) (xy 63.767393 66.454321) (xy 63.767394 66.454318) (xy 63.777999 66.350516) (xy 63.778 66.350516) (xy 63.778 66.304) (xy 63.024 66.304) (xy 63.024 67.058) (xy 62.516 67.058) (xy 62.516 66.304) (xy 61.762 66.304) (xy 61.762 66.350516) (xy 61.2785 66.350516) (xy 61.278499 65.749483) (xy 61.762 65.749483) (xy 61.762 65.796) (xy 62.516 65.796) (xy 63.024 65.796) (xy 63.778 65.796) (xy 63.778 65.749483) (xy 63.767394 65.645681) (xy 63.767393 65.645678) (xy 63.711657 65.477474) (xy 63.618634 65.32666) (xy 63.618629 65.326654) (xy 63.493345 65.20137) (xy 63.493339 65.201365) (xy 63.342525 65.108342) (xy 63.174321 65.052606) (xy 63.174318 65.052605) (xy 63.070516 65.042) (xy 63.024 65.042) (xy 63.024 65.796) (xy 62.516 65.796) (xy 62.516 65.042) (xy 62.469483 65.042) (xy 62.365681 65.052605) (xy 62.365678 65.052606) (xy 62.197474 65.108342) (xy 62.04666 65.201365) (xy 62.046654 65.20137) (xy 61.92137 65.326654) (xy 61.921365 65.32666) (xy 61.828342 65.477474) (xy 61.772606 65.645678) (xy 61.772605 65.645681) (xy 61.762 65.749483) (xy 61.278499 65.749483) (xy 61.278499 65.749456) (xy 61.278455 65.74903) (xy 61.267887 65.645574) (xy 61.244957 65.576376) (xy 61.212115 65.477262) (xy 61.11903 65.326348) (xy 61.119029 65.326347) (xy 61.119024 65.326341) (xy 60.993658 65.200975) (xy 60.993652 65.20097) (xy 60.925686 65.159048) (xy 60.842738 65.107885) (xy 60.707508 65.063075) (xy 60.674427 65.052113) (xy 60.67442 65.052112) (xy 60.570553 65.0415) (xy 59.969455 65.0415) (xy 59.865574 65.052112) (xy 59.697261 65.107885) (xy 59.546347 65.20097) (xy 59.546341 65.200975) (xy 59.420975 65.326341) (xy 59.42097 65.326347) (xy 59.327885 65.477262) (xy 59.272113 65.645572) (xy 59.272112 65.645579) (xy 59.2615 65.749446) (xy 59.2615 66.350544) (xy 59.272112 66.454425) (xy 59.316304 66.587788) (xy 59.327885 66.622738) (xy 59.42097 66.773652) (xy 59.474596 66.827278) (xy 59.50862 66.889588) (xy 59.5115 66.916372) (xy 59.5115 67.0905) (xy 59.491498 67.158621) (xy 59.437842 67.205114) (xy 59.3855 67.2165) (xy 59.374448 67.2165) (xy 59.270578 67.227112) (xy 59.102262 67.282885) (xy 59.10226 67.282886) (xy 58.951348 67.37597) (xy 58.951342 67.375975) (xy 58.825975 67.501342) (xy 58.82597 67.501348) (xy 58.732886 67.65226) (xy 58.732885 67.652262) (xy 58.677112 67.820578) (xy 58.6665 67.924447) (xy 58.6665 69.3655) (xy 58.646498 69.433621) (xy 58.592842 69.480114) (xy 58.5405 69.4915) (xy 54.5845 69.4915) (xy 54.516379 69.471498) (xy 54.469886 69.417842) (xy 54.4585 69.3655) (xy 54.4585 66.903457) (xy 54.4585 66.903454) (xy 54.427512 66.7078) (xy 54.388518 66.587788) (xy 54.366299 66.519404) (xy 54.276367 66.342903) (xy 54.251494 66.308669) (xy 54.207335 66.247889) (xy 54.207332 66.247886) (xy 54.203139 66.242115) (xy 54.15993 66.182642) (xy 54.159927 66.182639) (xy 54.159925 66.182636) (xy 54.016726 66.039437) (xy 54.016695 66.039408) (xy 53.019858 65.04257) (xy 52.859598 64.926134) (xy 52.859599 64.926134) (xy 52.84868 64.920571) (xy 52.838168 64.915215) (xy 52.683097 64.836202) (xy 52.4947 64.774988) (xy 52.299046 64.744) (xy 52.299043 64.744) (xy 50.045237 64.744) (xy 49.995277 64.731325) (xy 49.994421 64.733278) (xy 49.989647 64.731183) (xy 49.772797 64.656739) (xy 49.772788 64.656737) (xy 49.708443 64.646) (xy 49.54664 64.619) (xy 49.31736 64.619) (xy 49.166412 64.644188) (xy 49.091211 64.656737) (xy 49.091202 64.656739) (xy 48.874352 64.731183) (xy 48.87435 64.731185) (xy 48.672704 64.840309) (xy 48.672703 64.84031) (xy 48.491766 64.981139) (xy 48.336479 65.149827) (xy 48.21108 65.341767) (xy 48.211073 65.341779) (xy 48.118978 65.551735) (xy 48.118975 65.551742) (xy 48.062693 65.773995) (xy 48.062692 65.774001) (xy 48.062692 65.774003) (xy 48.043758 66.0025) (xy 48.062103 66.223894) (xy 48.062693 66.231004) (xy 48.118975 66.453257) (xy 48.118978 66.453264) (xy 48.211073 66.66322) (xy 48.211075 66.663224) (xy 48.211078 66.66323) (xy 48.283019 66.773345) (xy 48.331957 66.848251) (xy 48.336482 66.855176) (xy 48.491769 67.023863) (xy 48.586905 67.09791) (xy 48.658179 67.153385) (xy 48.69965 67.211011) (xy 48.703384 67.281909) (xy 48.668194 67.343571) (xy 48.65818 67.352248) (xy 48.648496 67.359785) (xy 48.648496 67.359786) (xy 49.347877 68.059166) (xy 49.258306 68.083167) (xy 49.155694 68.14241) (xy 49.07191 68.226194) (xy 49.012667 68.328806) (xy 48.988666 68.418375) (xy 48.290859 67.720568) (xy 48.290858 67.720569) (xy 48.211523 67.842) (xy 48.211519 67.842008) (xy 48.119451 68.051903) (xy 48.063188 68.27408) (xy 48.04426 68.5025) (xy 48.063188 68.730919) (xy 48.119451 68.953096) (xy 48.211519 69.16299) (xy 48.290859 69.284429) (xy 48.988666 68.586622) (xy 49.012667 68.676194) (xy 49.07191 68.778806) (xy 49.155694 68.86259) (xy 49.258306 68.921833) (xy 49.347874 68.945833) (xy 48.648495 69.645212) (xy 48.658589 69.653069) (xy 48.700059 69.710695) (xy 48.703791 69.781593) (xy 48.6686 69.843254) (xy 48.658589 69.851929) (xy 48.648496 69.859784) (xy 48.648496 69.859786) (xy 49.347877 70.559166) (xy 49.258306 70.583167) (xy 49.155694 70.64241) (xy 49.07191 70.726194) (xy 49.012667 70.828806) (xy 48.988666 70.918376) (xy 48.290859 70.220568) (xy 48.290858 70.220569) (xy 48.211523 70.342) (xy 48.211519 70.342008) (xy 48.119451 70.551903) (xy 48.063188 70.77408) (xy 48.04426 71.0025) (xy 48.063188 71.230919) (xy 48.119451 71.453096) (xy 48.211517 71.662987) (xy 48.211521 71.662993) (xy 48.336875 71.854864) (xy 48.362465 71.882662) (xy 48.393886 71.946327) (xy 48.3859 72.016873) (xy 48.341041 72.071902) (xy 48.273552 72.093943) (xy 48.269764 72.094) (xy 47.639149 72.094) (xy 47.420176 72.128682) (xy 47.42017 72.128683) (xy 47.209328 72.19719) (xy 47.209322 72.197193) (xy 47.011781 72.297845) (xy 46.832421 72.428158) (xy 46.675658 72.584921) (xy 46.545345 72.764281) (xy 46.444693 72.961822) (xy 46.44469 72.961828) (xy 46.376183 73.17267) (xy 46.376182 73.172675) (xy 46.376182 73.172676) (xy 46.3415 73.391649) (xy 46.3415 73.613351) (xy 46.369404 73.789528) (xy 46.376183 73.832329) (xy 46.442666 74.036941) (xy 46.444692 74.043176) (xy 46.545343 74.240715) (xy 46.618525 74.341441) (xy 46.642382 74.408306) (xy 46.626302 74.477458) (xy 46.575389 74.526938) (xy 46.516588 74.5415) (xy 44.613793 74.5415) (xy 44.593313 74.545574) (xy 44.566186 74.55097) (xy 44.467252 74.570649) (xy 44.467247 74.570651) (xy 44.329216 74.627826) (xy 44.204983 74.710835) (xy 44.204977 74.71084) (xy 42.974222 75.941595) (xy 42.91191 75.975621) (xy 42.885128 75.9785) (xy 42.676787 75.9785) (xy 42.574619 75.988937) (xy 42.409079 76.043791) (xy 42.260653 76.135342) (xy 42.260647 76.135347) (xy 42.252741 76.143254) (xy 42.190429 76.17728) (xy 42.119614 76.172215) (xy 42.074551 76.143254) (xy 42.067039 76.135742) (xy 42.067033 76.135737) (xy 41.918707 76.044248) (xy 41.753276 75.989431) (xy 41.753273 75.98943) (xy 41.651184 75.979) (xy 41.5555 75.979) (xy 41.5555 77.09) (xy 41.535498 77.158121) (xy 41.481842 77.204614) (xy 41.4295 77.216) (xy 40.256 77.216) (xy 40.256 77.249184) (xy 40.26643 77.351273) (xy 40.266431 77.351276) (xy 40.321248 77.516707) (xy 40.412737 77.665033) (xy 40.412742 77.665039) (xy 40.53596 77.788257) (xy 40.535966 77.788262) (xy 40.684292 77.879751) (xy 40.849723 77.934568) (xy 40.849726 77.934569) (xy 40.951815 77.944999) (xy 40.951815 77.945) (xy 41.0255 77.945) (xy 41.093621 77.965002) (xy 41.140114 78.018658) (xy 41.1515 78.071) (xy 41.1515 90.0255) (xy 41.131498 90.093621) (xy 41.077842 90.140114) (xy 41.0255 90.1515) (xy 41.01135 90.1515) (xy 40.950803 90.158009) (xy 40.950795 90.158011) (xy 40.813797 90.20911) (xy 40.813792 90.209112) (xy 40.715509 90.282687) (xy 40.648989 90.307498) (xy 40.579615 90.292407) (xy 40.564491 90.282687) (xy 40.466207 90.209112) (xy 40.466202 90.20911) (xy 40.329204 90.158011) (xy 40.329196 90.158009) (xy 40.268649 90.1515) (xy 40.268638 90.1515) (xy 40.1295 90.1515) (xy 40.061379 90.131498) (xy 40.014886 90.077842) (xy 40.0035 90.0255) (xy 40.0035 76.674815) (xy 40.256 76.674815) (xy 40.256 76.708) (xy 41.0475 76.708) (xy 41.0475 75.979) (xy 40.951815 75.979) (xy 40.849726 75.98943) (xy 40.849723 75.989431) (xy 40.684292 76.044248) (xy 40.535966 76.135737) (xy 40.53596 76.135742) (xy 40.412742 76.25896) (xy 40.412737 76.258966) (xy 40.321248 76.407292) (xy 40.266431 76.572723) (xy 40.26643 76.572726) (xy 40.256 76.674815) (xy 40.0035 76.674815) (xy 40.0035 70.344594) (xy 40.023502 70.276473) (xy 40.040405 70.255499) (xy 42.804213 67.491691) (xy 44.642 67.491691) (xy 44.642 68.4485) (xy 45.65 68.4485) (xy 45.65 68.9565) (xy 44.642 68.9565) (xy 44.642 69.913308) (xy 44.67667 70.13221) (xy 44.745155 70.342983) (xy 44.745156 70.342985) (xy 44.845772 70.540456) (xy 44.976039 70.719753) (xy 45.132746 70.87646) (xy 45.312043 71.006727) (xy 45.509514 71.107343) (xy 45.509516 71.107344) (xy 45.720289 71.175829) (xy 45.796 71.18782) (xy 45.796 70.114186) (xy 45.804394 70.12258) (xy 45.895606 70.175241) (xy 45.997339 70.2025) (xy 46.102661 70.2025) (xy 46.204394 70.175241) (xy 46.295606 70.12258) (xy 46.304 70.114186) (xy 46.304 71.18782) (xy 46.379709 71.175829) (xy 46.379711 71.175829) (xy 46.590483 71.107344) (xy 46.590485 71.107343) (xy 46.787956 71.006727) (xy 46.967253 70.87646) (xy 47.12396 70.719753) (xy 47.254227 70.540456) (xy 47.354843 70.342985) (xy 47.354844 70.342983) (xy 47.423329 70.13221) (xy 47.458 69.913308) (xy 47.458 68.9565) (xy 46.45 68.9565) (xy 46.45 68.4485) (xy 47.458 68.4485) (xy 47.458 67.491691) (xy 47.423329 67.272789) (xy 47.354844 67.062016) (xy 47.354843 67.062014) (xy 47.254227 66.864543) (xy 47.12396 66.685246) (xy 46.967253 66.528539) (xy 46.787956 66.398272) (xy 46.590485 66.297656) (xy 46.590483 66.297655) (xy 46.379709 66.229169) (xy 46.304 66.217178) (xy 46.304 67.290814) (xy 46.295606 67.28242) (xy 46.204394 67.229759) (xy 46.102661 67.2025) (xy 45.997339 67.2025) (xy 45.895606 67.229759) (xy 45.804394 67.28242) (xy 45.796 67.290814) (xy 45.796 66.217178) (xy 45.72029 66.229169) (xy 45.509516 66.297655) (xy 45.509514 66.297656) (xy 45.312043 66.398272) (xy 45.132746 66.528539) (xy 44.976039 66.685246) (xy 44.845772 66.864543) (xy 44.745156 67.062014) (xy 44.745155 67.062016) (xy 44.67667 67.272789) (xy 44.642 67.491691) (xy 42.804213 67.491691) (xy 47.425499 62.870405) (xy 47.487811 62.836379) (xy 47.514594 62.8335) (xy 49.874893 62.8335) (xy 49.874894 62.8335) (xy 49.997285 62.809155) (xy 50.112575 62.7614) (xy 50.216333 62.692071) (xy 50.687999 62.220403) (xy 50.750312 62.186379) (xy 50.777095 62.183499) (xy 51.112212 62.183499) (xy 51.214381 62.173062) (xy 51.37992 62.118209) (xy 51.528346 62.026658) (xy 51.651658 61.903346) (xy 51.743209 61.75492) (xy 51.798062 61.589381) (xy 51.8085 61.487213) (xy 51.808499 60.912788) (xy 51.808498 60.912778) (xy 52.8915 60.912778) (xy 52.8915 61.487212) (xy 52.901937 61.58938) (xy 52.956791 61.75492) (xy 53.048342 61.903346) (xy 53.048347 61.903352) (xy 53.171647 62.026652) (xy 53.171652 62.026656) (xy 53.171654 62.026658) (xy 53.32008 62.118209) (xy 53.485619 62.173062) (xy 53.587787 62.1835) (xy 54.187212 62.183499) (xy 54.289381 62.173062) (xy 54.45492 62.118209) (xy 54.603346 62.026658) (xy 54.656704 61.9733) (xy 54.710905 61.9191) (xy 54.773217 61.885074) (xy 54.844032 61.890139) (xy 54.889095 61.9191) (xy 54.996647 62.026652) (xy 54.996652 62.026656) (xy 54.996654 62.026658) (xy 55.14508 62.118209) (xy 55.257475 62.155452) (xy 55.315846 62.195866) (xy 55.343102 62.261423) (xy 55.337675 62.313993) (xy 55.306457 62.41007) (xy 55.286496 62.6) (xy 55.306457 62.789927) (xy 55.330892 62.865128) (xy 55.365473 62.971556) (xy 55.365476 62.971561) (xy 55.460958 63.136941) (xy 55.460965 63.136951) (xy 55.588744 63.278864) (xy 55.62367 63.304239) (xy 55.743248 63.391118) (xy 55.917712 63.468794) (xy 56.104513 63.5085) (xy 56.295487 63.5085) (xy 56.482288 63.468794) (xy 56.656752 63.391118) (xy 56.811253 63.278866) (xy 56.812523 63.277456) (xy 56.939034 63.136951) (xy 56.939035 63.136949) (xy 56.93904 63.136944) (xy 57.034527 62.971556) (xy 57.093542 62.789928) (xy 57.113504 62.6) (xy 57.093542 62.410072) (xy 57.034527 62.228444) (xy 56.948621 62.079651) (xy 56.939042 62.063059) (xy 56.939041 62.063058) (xy 56.93904 62.063056) (xy 56.865863 61.981784) (xy 56.835146 61.917776) (xy 56.8335 61.897474) (xy 56.8335 61.625107) (xy 56.833499 61.625103) (xy 56.826685 61.590846) (xy 56.809155 61.502715) (xy 56.7614 61.387425) (xy 56.741818 61.358119) (xy 56.729734 61.340033) (xy 56.708519 61.27228) (xy 56.708499 61.270031) (xy 56.708499 60.912787) (xy 56.698062 60.810619) (xy 56.680254 60.756878) (xy 56.643209 60.64508) (xy 56.551658 60.496654) (xy 56.551656 60.496652) (xy 56.551652 60.496647) (xy 56.428352 60.373347) (xy 56.428346 60.373342) (xy 56.428343 60.37334) (xy 56.27992 60.281791) (xy 56.114381 60.226938) (xy 56.114379 60.226937) (xy 56.114377 60.226937) (xy 56.064765 60.221868) (xy 55.99903 60.195045) (xy 55.958232 60.136941) (xy 55.955324 60.066004) (xy 55.988476 60.007428) (xy 56.217072 59.778833) (xy 56.286401 59.675075) (xy 56.334155 59.559785) (xy 56.3585 59.437394) (xy 56.3585 59.421219) (xy 56.378502 59.353098) (xy 56.418352 59.313979) (xy 56.523652 59.24903) (xy 56.64903 59.123652) (xy 56.742115 58.972738) (xy 56.797887 58.804426) (xy 56.798936 58.794154) (xy 56.825755 58.728422) (xy 56.883858 58.687622) (xy 56.954794 58.684711) (xy 57.016044 58.720613) (xy 57.043887 58.767328) (xy 57.095383 58.922734) (xy 57.095384 58.922736) (xy 57.095385 58.922738) (xy 57.136491 58.989381) (xy 57.18847 59.073652) (xy 57.188475 59.073658) (xy 57.313841 59.199024) (xy 57.313847 59.199029) (xy 57.313848 59.19903) (xy 57.464762 59.292115) (xy 57.555134 59.322061) (xy 57.613504 59.362472) (xy 57.64076 59.428028) (xy 57.6415 59.441664) (xy 57.6415 60.252227) (xy 57.621498 60.320348) (xy 57.581649 60.359466) (xy 57.559156 60.37334) (xy 57.435843 60.496652) (xy 57.435842 60.496653) (xy 57.344291 60.64508) (xy 57.289437 60.810622) (xy 57.279 60.912778) (xy 57.279 61.487212) (xy 57.289437 61.58938) (xy 57.344291 61.75492) (xy 57.435842 61.903346) (xy 57.435847 61.903352) (xy 57.559147 62.026652) (xy 57.559152 62.026656) (xy 57.559154 62.026658) (xy 57.70758 62.118209) (xy 57.873119 62.173062) (xy 57.975287 62.1835) (xy 58.574712 62.183499) (xy 58.676881 62.173062) (xy 58.84242 62.118209) (xy 58.842422 62.118207) (xy 58.849386 62.1159) (xy 58.850185 62.118311) (xy 58.908521 62.109437) (xy 58.97334 62.138402) (xy 59.01221 62.197813) (xy 59.01279 62.268807) (xy 58.980703 62.323392) (xy 57.049501 64.254595) (xy 56.987189 64.28862) (xy 56.960406 64.2915) (xy 56.904513 64.2915) (xy 56.717711 64.331206) (xy 56.543247 64.408882) (xy 56.388744 64.521135) (xy 56.260965 64.663048) (xy 56.260958 64.663058) (xy 56.171154 64.818604) (xy 56.165473 64.828444) (xy 56.154198 64.863146) (xy 56.106457 65.010072) (xy 56.086496 65.2) (xy 56.106457 65.389927) (xy 56.130858 65.465024) (xy 56.165473 65.571556) (xy 56.16825 65.576366) (xy 56.260958 65.736941) (xy 56.260965 65.736951) (xy 56.388744 65.878864) (xy 56.435107 65.912549) (xy 56.543248 65.991118) (xy 56.717712 66.068794) (xy 56.904513 66.1085) (xy 57.095487 66.1085) (xy 57.282288 66.068794) (xy 57.456752 65.991118) (xy 57.611253 65.878866) (xy 57.611604 65.878476) (xy 57.739034 65.736951) (xy 57.739035 65.736949) (xy 57.73904 65.736944) (xy 57.834527 65.571556) (xy 57.893542 65.389928) (xy 57.910907 65.224703) (xy 57.93792 65.159048) (xy 57.947104 65.148798) (xy 60.592071 62.503833) (xy 60.6614 62.400075) (xy 60.709155 62.284785) (xy 60.7335 62.162394) (xy 60.7335 62.147772) (xy 60.753502 62.079651) (xy 60.793353 62.040531) (xy 60.815846 62.026658) (xy 60.939158 61.903346) (xy 61.030709 61.75492) (xy 61.085562 61.589381) (xy 61.096 61.487213) (xy 61.095999 60.912788) (xy 61.095998 60.912778) (xy 61.4915 60.912778) (xy 61.4915 61.487212) (xy 61.501937 61.58938) (xy 61.556791 61.75492) (xy 61.648342 61.903346) (xy 61.648347 61.903352) (xy 61.771647 62.026652) (xy 61.771652 62.026656) (xy 61.771654 62.026658) (xy 61.92008 62.118209) (xy 62.085619 62.173062) (xy 62.187787 62.1835) (xy 62.787212 62.183499) (xy 62.889381 62.173062) (xy 63.05492 62.118209) (xy 63.203346 62.026658) (xy 63.256704 61.9733) (xy 63.310905 61.9191) (xy 63.373217 61.885074) (xy 63.444032 61.890139) (xy 63.489095 61.9191) (xy 63.596647 62.026652) (xy 63.596652 62.026656) (xy 63.596654 62.026658) (xy 63.74508 62.118209) (xy 63.910619 62.173062) (xy 64.012787 62.1835) (xy 64.612212 62.183499) (xy 64.714381 62.173062) (xy 64.87992 62.118209) (xy 65.028346 62.026658) (xy 65.065455 61.989548) (xy 65.127765 61.955524) (xy 65.198581 61.960588) (xy 65.243645 61.989549) (xy 65.804595 62.550499) (xy 65.838621 62.612811) (xy 65.8415 62.639594) (xy 65.8415 64.348649) (xy 65.848009 64.409196) (xy 65.871855 64.473129) (xy 65.899111 64.546204) (xy 65.916367 64.569255) (xy 65.941179 64.635774) (xy 65.9415 64.644765) (xy 65.9415 67.283628) (xy 65.921498 67.351749) (xy 65.904595 67.372723) (xy 65.775975 67.501342) (xy 65.77597 67.501348) (xy 65.682886 67.65226) (xy 65.682885 67.652262) (xy 65.627112 67.820578) (xy 65.6165 67.924447) (xy 65.6165 72.975552) (xy 65.616499 72.975552) (xy 65.627112 73.079421) (xy 65.627112 73.079423) (xy 65.627113 73.079425) (xy 65.682885 73.247738) (xy 65.753815 73.362732) (xy 65.77597 73.398651) (xy 65.775975 73.398657) (xy 65.901342 73.524024) (xy 65.901348 73.524029) (xy 65.901349 73.52403) (xy 66.052262 73.617115) (xy 66.220575 73.672887) (xy 66.241884 73.675064) (xy 66.324448 73.6835) (xy 66.324456 73.6835) (xy 68.025552 73.6835) (xy 68.094798 73.676424) (xy 68.129425 73.672887) (xy 68.297738 73.617115) (xy 68.448651 73.52403) (xy 68.57403 73.398651) (xy 68.667115 73.247738) (xy 68.722887 73.079425) (xy 68.726571 73.043369) (xy 68.7335 72.975552) (xy 68.7335 67.924447) (xy 68.722887 67.820578) (xy 68.722887 67.820575) (xy 68.667115 67.652262) (xy 68.57403 67.501349) (xy 68.574029 67.501348) (xy 68.574024 67.501342) (xy 68.495405 67.422723) (xy 68.461379 67.360411) (xy 68.4585 67.333628) (xy 68.4585 64.644765) (xy 68.478502 64.576644) (xy 68.483624 64.569266) (xy 68.500889 64.546204) (xy 68.544999 64.427939) (xy 68.587545 64.371107) (xy 68.654065 64.346296) (xy 68.723439 64.361387) (xy 68.755753 64.386635) (xy 68.81676 64.452906) (xy 68.816762 64.452908) (xy 68.871331 64.495381) (xy 68.994424 64.591189) (xy 69.192426 64.698342) (xy 69.231412 64.711725) (xy 69.289346 64.75276) (xy 69.315899 64.818604) (xy 69.3165 64.830898) (xy 69.3165 66.680929) (xy 69.310105 66.720561) (xy 69.252113 66.895572) (xy 69.252112 66.895579) (xy 69.2415 66.999446) (xy 69.2415 70.100544) (xy 69.252112 70.204425) (xy 69.307885 70.372738) (xy 69.40097 70.523652) (xy 69.400975 70.523658) (xy 69.526341 70.649024) (xy 69.526347 70.649029) (xy 69.526348 70.64903) (xy 69.677262 70.742115) (xy 69.845574 70.797887) (xy 69.949455 70.8085) (xy 71.350544 70.808499) (xy 71.454426 70.797887) (xy 71.622738 70.742115) (xy 71.629709 70.737815) (xy 78.517 70.737815) (xy 78.517 70.8335) (xy 79.246 70.8335) (xy 79.246 70.042) (xy 79.212815 70.042) (xy 79.110726 70.05243) (xy 79.110723 70.052431) (xy 78.945292 70.107248) (xy 78.796966 70.198737) (xy 78.79696 70.198742) (xy 78.673742 70.32196) (xy 78.673737 70.321966) (xy 78.582248 70.470292) (xy 78.527431 70.635723) (xy 78.52743 70.635726) (xy 78.517 70.737815) (xy 71.629709 70.737815) (xy 71.773652 70.64903) (xy 71.89903 70.523652) (xy 71.992115 70.372738) (xy 72.047887 70.204426) (xy 72.0585 70.100545) (xy 72.058499 66.999456) (xy 72.047887 66.895574) (xy 71.992115 66.727262) (xy 71.89903 66.576348) (xy 71.899029 66.576347) (xy 71.899024 66.576341) (xy 71.773658 66.450975) (xy 71.773652 66.45097) (xy 71.725045 66.420989) (xy 71.622738 66.357885) (xy 71.508639 66.320077) (xy 71.454427 66.302113) (xy 71.45442 66.302112) (xy 71.350553 66.2915) (xy 71.350545 66.2915) (xy 71.2095 66.2915) (xy 71.141379 66.271498) (xy 71.094886 66.217842) (xy 71.0835 66.1655) (xy 71.0835 64.478977) (xy 71.103502 64.410856) (xy 71.157158 64.364363) (xy 71.227432 64.354259) (xy 71.292012 64.383753) (xy 71.302194 64.393633) (xy 71.35676 64.452906) (xy 71.356762 64.452908) (xy 71.411331 64.495381) (xy 71.534424 64.591189) (xy 71.732426 64.698342) (xy 71.732427 64.698342) (xy 71.732428 64.698343) (xy 71.828094 64.731185) (xy 71.945365 64.771444) (xy 72.167431 64.8085) (xy 72.167435 64.8085) (xy 72.392565 64.8085) (xy 72.392569 64.8085) (xy 72.614635 64.771444) (xy 72.827574 64.698342) (xy 73.025576 64.591189) (xy 73.20324 64.452906) (xy 73.355722 64.287268) (xy 73.47886 64.098791) (xy 73.569296 63.892616) (xy 73.624564 63.674368) (xy 73.643156 63.45) (xy 73.624564 63.225632) (xy 73.588918 63.08487) (xy 73.569297 63.007387) (xy 73.569296 63.007386) (xy 73.569296 63.007384) (xy 73.47886 62.801209) (xy 73.4615 62.774637) (xy 73.355724 62.612734) (xy 73.35572 62.612729) (xy 73.222049 62.467526) (xy 73.20324 62.447094) (xy 73.203239 62.447093) (xy 73.203237 62.447091) (xy 73.08266 62.353242) (xy 73.025576 62.308811) (xy 72.827574 62.201658) (xy 72.827572 62.201657) (xy 72.827571 62.201656) (xy 72.614639 62.128557) (xy 72.61463 62.128555) (xy 72.570476 62.121187) (xy 72.392569 62.0915) (xy 72.167431 62.0915) (xy 72.021209 62.1159) (xy 71.945369 62.128555) (xy 71.94536 62.128557) (xy 71.732428 62.201656) (xy 71.732426 62.201658) (xy 71.624603 62.260009) (xy 71.534426 62.30881) (xy 71.534424 62.308811) (xy 71.356762 62.447091) (xy 71.204279 62.612729) (xy 71.115483 62.748643) (xy 71.061479 62.794731) (xy 70.991131 62.804306) (xy 70.926774 62.774329) (xy 70.904517 62.748643) (xy 70.81572 62.612729) (xy 70.731399 62.521134) (xy 70.66324 62.447094) (xy 70.655252 62.440877) (xy 70.613783 62.383254) (xy 70.610049 62.312355) (xy 70.643547 62.252355) (xy 73.404572 59.491333) (xy 73.473901 59.387575) (xy 73.481227 59.369888) (xy 75.8915 59.369888) (xy 75.8915 62.93011) (xy 75.904451 62.978445) (xy 75.932967 63.08487) (xy 75.93297 63.084877) (xy 76.013075 63.223623) (xy 76.01308 63.223629) (xy 76.305893 63.516441) (xy 76.305906 63.516456) (xy 76.35272 63.56327) (xy 76.386746 63.625582) (xy 76.388972 63.66517) (xy 76.385164 63.702456) (xy 76.379 63.762787) (xy 76.379 64.362212) (xy 76.389437 64.46438) (xy 76.444291 64.62992) (xy 76.535842 64.778346) (xy 76.535847 64.778352) (xy 76.659147 64.901652) (xy 76.659153 64.901657) (xy 76.659154 64.901658) (xy 76.80758 64.993209) (xy 76.973119 65.048062) (xy 77.075287 65.0585) (xy 77.44576 65.058499) (xy 77.51388 65.078501) (xy 77.534855 65.095404) (xy 78.542095 66.102644) (xy 78.576121 66.164956) (xy 78.579 66.191739) (xy 78.579 67.948649) (xy 78.585509 68.009196) (xy 78.585511 68.009204) (xy 78.63661 68.146202) (xy 78.636612 68.146207) (xy 78.724238 68.263261) (xy 78.841292 68.350887) (xy 78.841294 68.350888) (xy 78.841296 68.350889) (xy 78.89203 68.369812) (xy 78.978295 68.401988) (xy 78.978303 68.40199) (xy 79.03885 68.408499) (xy 79.038855 68.408499) (xy 79.038862 68.4085) (xy 79.038868 68.4085) (xy 80.836132 68.4085) (xy 80.836138 68.4085) (xy 80.836145 68.408499) (xy 80.836149 68.408499) (xy 80.896696 68.40199) (xy 80.896699 68.401989) (xy 80.896701 68.401989) (xy 81.033704 68.350889) (xy 81.040257 68.345984) (xy 81.150761 68.263261) (xy 81.238386 68.146208) (xy 81.238385 68.146208) (xy 81.238389 68.146204) (xy 81.282499 68.027939) (xy 81.325045 67.971107) (xy 81.391566 67.946296) (xy 81.46094 67.961388) (xy 81.493253 67.986635) (xy 81.55206 68.050516) (xy 81.554262 68.052908) (xy 81.578992 68.072156) (xy 81.731924 68.191189) (xy 81.929926 68.298342) (xy 81.929927 68.298342) (xy 81.929928 68.298343) (xy 82.018877 68.328879) (xy 82.142865 68.371444) (xy 82.364931 68.4085) (xy 82.364935 68.4085) (xy 82.590065 68.4085) (xy 82.590069 68.4085) (xy 82.812135 68.371444) (xy 83.025074 68.298342) (xy 83.223076 68.191189) (xy 83.40074 68.052906) (xy 83.553222 67.887268) (xy 83.553222 67.887266) (xy 83.553226 67.887263) (xy 83.60138 67.813556) (xy 83.642018 67.751354) (xy 83.69602 67.705268) (xy 83.766368 67.695692) (xy 83.830725 67.725669) (xy 83.85298 67.751353) (xy 83.893619 67.813556) (xy 83.941774 67.887263) (xy 83.941779 67.88727) (xy 84.057596 68.013079) (xy 84.090755 68.049099) (xy 84.094262 68.052908) (xy 84.118992 68.072156) (xy 84.271924 68.191189) (xy 84.469926 68.298342) (xy 84.469927 68.298342) (xy 84.469928 68.298343) (xy 84.558877 68.328879) (xy 84.682865 68.371444) (xy 84.904931 68.4085) (xy 84.904935 68.4085) (xy 85.130065 68.4085) (xy 85.130069 68.4085) (xy 85.352135 68.371444) (xy 85.565074 68.298342) (xy 85.763076 68.191189) (xy 85.94074 68.052906) (xy 86.093222 67.887268) (xy 86.093222 67.887266) (xy 86.093226 67.887263) (xy 86.174117 67.763449) (xy 86.21636 67.698791) (xy 86.306796 67.492616) (xy 86.362064 67.274368) (xy 86.380656 67.05) (xy 86.362064 66.825632) (xy 86.343571 66.752605) (xy 86.306797 66.607387) (xy 86.306796 66.607386) (xy 86.306796 66.607384) (xy 86.21636 66.401209) (xy 86.180283 66.345989) (xy 86.093224 66.212734) (xy 86.09322 66.212729) (xy 85.960716 66.068794) (xy 85.94074 66.047094) (xy 85.940739 66.047093) (xy 85.940737 66.047091) (xy 85.834933 65.96474) (xy 85.763076 65.908811) (xy 85.565074 65.801658) (xy 85.565072 65.801657) (xy 85.565071 65.801656) (xy 85.352139 65.728557) (xy 85.35213 65.728555) (xy 85.307976 65.721187) (xy 85.130069 65.6915) (xy 84.904931 65.6915) (xy 84.763359 65.715124) (xy 84.682869 65.728555) (xy 84.68286 65.728557) (xy 84.501348 65.79087) (xy 84.430423 65.79407) (xy 84.371342 65.760793) (xy 83.673627 65.063078) (xy 83.673625 65.063077) (xy 83.673623 65.063075) (xy 83.534877 64.98297) (xy 83.534874 64.982969) (xy 83.534873 64.982968) (xy 83.534871 64.982967) (xy 83.53487 64.982967) (xy 83.443556 64.9585) (xy 83.443556 64.958499) (xy 83.380111 64.9415) (xy 79.719245 64.9415) (xy 79.651124 64.921498) (xy 79.63015 64.904595) (xy 78.895405 64.16985) (xy 78.861379 64.107538) (xy 78.8585 64.080755) (xy 78.8585 63.46989) (xy 78.8585 63.469889) (xy 78.817032 63.315128) (xy 78.770645 63.234784) (xy 78.736923 63.176375) (xy 78.736919 63.17637) (xy 78.688987 63.128438) (xy 78.623628 63.063079) (xy 78.356759 62.79621) (xy 78.322733 62.733898) (xy 78.32625 62.667481) (xy 78.335562 62.639381) (xy 78.346 62.537213) (xy 78.345999 61.937788) (xy 78.341131 61.890139) (xy 78.335562 61.835619) (xy 78.334048 61.831049) (xy 78.280709 61.67008) (xy 78.189158 61.521654) (xy 78.081597 61.414093) (xy 78.047574 61.351784) (xy 78.052638 61.280968) (xy 78.081597 61.235906) (xy 78.189158 61.128346) (xy 78.202661 61.106455) (xy 78.226164 61.068352) (xy 78.27895 61.020875) (xy 78.333404 61.0085) (xy 79.7655 61.0085) (xy 79.833621 61.028502) (xy 79.880114 61.082158) (xy 79.8915 61.1345) (xy 79.8915 61.456916) (xy 79.924951 61.668116) (xy 79.924952 61.668121) (xy 79.986053 61.856171) (xy 79.991028 61.871483) (xy 80.088106 62.062009) (xy 80.088108 62.062012) (xy 80.106272 62.087012) (xy 80.213794 62.235004) (xy 80.213796 62.235006) (xy 80.213798 62.235009) (xy 80.36499 62.386201) (xy 80.364993 62.386203) (xy 80.364996 62.386206) (xy 80.537991 62.511894) (xy 80.728517 62.608972) (xy 80.931878 62.675047) (xy 80.931879 62.675047) (xy 80.931884 62.675049) (xy 81.143084 62.7085) (xy 81.143087 62.7085) (xy 81.356913 62.7085) (xy 81.356916 62.7085) (xy 81.568116 62.675049) (xy 81.771483 62.608972) (xy 81.962009 62.511894) (xy 82.135004 62.386206) (xy 82.265316 62.255893) (xy 82.327626 62.22187) (xy 82.398442 62.226934) (xy 82.455278 62.269481) (xy 82.461646 62.278836) (xy 82.489129 62.323392) (xy 82.55097 62.423652) (xy 82.550975 62.423658) (xy 82.676341 62.549024) (xy 82.676347 62.549029) (xy 82.676348 62.54903) (xy 82.827262 62.642115) (xy 82.995574 62.697887) (xy 83.099455 62.7085) (xy 84.400544 62.708499) (xy 84.504426 62.697887) (xy 84.672738 62.642115) (xy 84.823652 62.54903) (xy 84.94903 62.423652) (xy 85.042115 62.272738) (xy 85.097887 62.104426) (xy 85.1085 62.000545) (xy 85.108499 60.399456) (xy 85.097887 60.295574) (xy 85.042115 60.127262) (xy 84.94903 59.976348) (xy 84.949029 59.976347) (xy 84.949024 59.976341) (xy 84.823658 59.850975) (xy 84.823652 59.85097) (xy 84.760851 59.812234) (xy 84.672738 59.757885) (xy 84.582549 59.728) (xy 84.504427 59.702113) (xy 84.50442 59.702112) (xy 84.400553 59.6915) (xy 83.099455 59.6915) (xy 82.995574 59.702112) (xy 82.827261 59.757885) (xy 82.676347 59.85097) (xy 82.676341 59.850975) (xy 82.550975 59.976341) (xy 82.55097 59.976347) (xy 82.461651 60.121156) (xy 82.408865 60.168634) (xy 82.33879 60.180037) (xy 82.273674 60.151744) (xy 82.265315 60.144104) (xy 82.135009 60.013798) (xy 82.135006 60.013796) (xy 82.135004 60.013794) (xy 81.962009 59.888106) (xy 81.771483 59.791028) (xy 81.77148 59.791027) (xy 81.771478 59.791026) (xy 81.56812 59.724952) (xy 81.568123 59.724952) (xy 81.514759 59.7165) (xy 81.356916 59.6915) (xy 81.143084 59.6915) (xy 81.007876 59.712914) (xy 80.931876 59.724952) (xy 80.931875 59.724953) (xy 80.728523 59.791024) (xy 80.72852 59.791025) (xy 80.702623 59.804221) (xy 80.632846 59.817324) (xy 80.612806 59.813658) (xy 80.607491 59.812233) (xy 80.607491 59.812234) (xy 80.530111 59.7915) (xy 80.530109 59.7915) (xy 78.317983 59.7915) (xy 78.249862 59.771498) (xy 78.210743 59.731648) (xy 78.192525 59.702113) (xy 78.189158 59.696654) (xy 78.189155 59.696651) (xy 78.189152 59.696647) (xy 78.0816 59.589095) (xy 78.047574 59.526783) (xy 78.052639 59.455968) (xy 78.0816 59.410905) (xy 78.189152 59.303352) (xy 78.189158 59.303346) (xy 78.280709 59.15492) (xy 78.335562 58.989381) (xy 78.346 58.887213) (xy 78.345999 58.287788) (xy 78.344721 58.275282) (xy 78.335562 58.185619) (xy 78.324214 58.151372) (xy 78.280709 58.02008) (xy 78.189158 57.871654) (xy 78.189157 57.871653) (xy 78.189152 57.871647) (xy 78.065852 57.748347) (xy 78.065846 57.748342) (xy 78.008676 57.713079) (xy 77.91742 57.656791) (xy 77.751881 57.601938) (xy 77.751879 57.601937) (xy 77.751877 57.601937) (xy 77.649721 57.5915) (xy 77.075287 57.5915) (xy 76.973119 57.601937) (xy 76.807579 57.656791) (xy 76.659153 57.748342) (xy 76.659147 57.748347) (xy 76.535847 57.871647) (xy 76.535842 57.871653) (xy 76.444291 58.02008) (xy 76.389437 58.185622) (xy 76.379 58.287778) (xy 76.379 58.658259) (xy 76.358998 58.72638) (xy 76.342096 58.747354) (xy 76.01308 59.07637) (xy 76.013075 59.076376) (xy 75.93297 59.215122) (xy 75.932965 59.215134) (xy 75.919059 59.26703) (xy 75.91906 59.267031) (xy 75.8915 59.369888) (xy 73.481227 59.369888) (xy 73.513441 59.292115) (xy 73.521655 59.272285) (xy 73.546 59.149894) (xy 73.546 58.947772) (xy 73.566002 58.879651) (xy 73.605853 58.840531) (xy 73.628346 58.826658) (xy 73.751658 58.703346) (xy 73.843209 58.55492) (xy 73.898062 58.389381) (xy 73.9085 58.287213) (xy 73.908499 57.712788) (xy 73.903646 57.665286) (xy 73.898062 57.610619) (xy 73.879913 57.555849) (xy 73.843209 57.44508) (xy 73.751658 57.296654) (xy 73.751657 57.296653) (xy 73.751652 57.296647) (xy 73.628352 57.173347) (xy 73.628346 57.173342) (xy 73.592084 57.150975) (xy 73.47992 57.081791) (xy 73.314381 57.026938) (xy 73.314379 57.026937) (xy 73.314377 57.026937) (xy 73.212221 57.0165) (xy 72.612787 57.0165) (xy 72.510619 57.026937) (xy 72.345079 57.081791) (xy 72.196653 57.173342) (xy 72.196647 57.173347) (xy 72.089095 57.2809) (xy 72.026783 57.314926) (xy 71.955968 57.309861) (xy 71.910905 57.2809) (xy 71.803352 57.173347) (xy 71.803346 57.173342) (xy 71.767084 57.150975) (xy 71.65492 57.081791) (xy 71.489381 57.026938) (xy 71.489379 57.026937) (xy 71.489377 57.026937) (xy 71.387221 57.0165) (xy 70.787787 57.0165) (xy 70.685619 57.026937) (xy 70.520079 57.081791) (xy 70.371653 57.173342) (xy 70.37165 57.173344) (xy 70.34793 57.197064) (xy 70.285617 57.231086) (xy 70.214801 57.226019) (xy 70.169743 57.19706) (xy 70.123658 57.150975) (xy 70.123652 57.15097) (xy 70.046699 57.103505) (xy 69.972738 57.057885) (xy 69.847844 57.0165) (xy 69.804427 57.002113) (xy 69.80442 57.002112) (xy 69.700553 56.9915) (xy 68.949455 56.9915) (xy 68.845574 57.002112) (xy 68.677261 57.057885) (xy 68.526347 57.15097) (xy 68.526341 57.150975) (xy 68.400971 57.276345) (xy 68.398511 57.279457) (xy 68.396281 57.281035) (xy 68.39578 57.281537) (xy 68.395694 57.281451) (xy 68.340568 57.320483) (xy 68.269643 57.323671) (xy 68.208254 57.288008) (xy 68.200837 57.279446) (xy 68.198632 57.276657) (xy 68.073345 57.15137) (xy 68.073339 57.151365) (xy 67.922525 57.058342) (xy 67.754321 57.002606) (xy 67.754318 57.002605) (xy 67.650516 56.992) (xy 67.529 56.992) (xy 67.529 59.408) (xy 67.650517 59.408) (xy 67.650516 59.407999) (xy 67.754318 59.397394) (xy 67.754321 59.397393) (xy 67.922525 59.341657) (xy 68.073339 59.248634) (xy 68.073345 59.248629) (xy 68.198624 59.12335) (xy 68.200832 59.120558) (xy 68.202837 59.119137) (xy 68.203825 59.11815) (xy 68.203993 59.118318) (xy 68.258768 59.079522) (xy 68.329693 59.076323) (xy 68.391088 59.111976) (xy 68.398515 59.120547) (xy 68.400974 59.123657) (xy 68.526341 59.249024) (xy 68.526347 59.249029) (xy 68.526348 59.24903) (xy 68.677262 59.342115) (xy 68.845574 59.397887) (xy 68.949455 59.4085) (xy 69.700544 59.408499) (xy 69.804426 59.397887) (xy 69.972738 59.342115) (xy 70.123652 59.24903) (xy 70.24903 59.123652) (xy 70.342115 58.972738) (xy 70.342115 58.972735) (xy 70.345967 58.966492) (xy 70.347229 58.96727) (xy 70.388685 58.920179) (xy 70.456961 58.900712) (xy 70.512666 58.916744) (xy 70.51343 58.915108) (xy 70.520076 58.918207) (xy 70.520077 58.918207) (xy 70.52008 58.918209) (xy 70.685619 58.973062) (xy 70.787787 58.9835) (xy 71.387212 58.983499) (xy 71.489381 58.973062) (xy 71.65492 58.918209) (xy 71.803346 58.826658) (xy 71.85205 58.777954) (xy 71.910905 58.7191) (xy 71.973217 58.685074) (xy 72.044032 58.690139) (xy 72.089095 58.7191) (xy 72.147949 58.777954) (xy 72.181975 58.840266) (xy 72.17691 58.911081) (xy 72.147949 58.956144) (xy 69.336167 61.767929) (xy 69.247931 61.856164) (xy 69.247926 61.856171) (xy 69.181541 61.955524) (xy 69.1786 61.959925) (xy 69.174034 61.970948) (xy 69.130846 62.075211) (xy 69.130845 62.075214) (xy 69.130845 62.075215) (xy 69.127606 62.0915) (xy 69.106779 62.1962) (xy 69.073871 62.259109) (xy 69.043171 62.28243) (xy 68.994425 62.30881) (xy 68.994424 62.308811) (xy 68.816762 62.447091) (xy 68.755754 62.513363) (xy 68.694901 62.549933) (xy 68.623936 62.547798) (xy 68.565391 62.507636) (xy 68.544999 62.472057) (xy 68.512976 62.386203) (xy 68.500889 62.353796) (xy 68.500888 62.353794) (xy 68.500887 62.353792) (xy 68.413261 62.236738) (xy 68.296207 62.149112) (xy 68.296202 62.14911) (xy 68.159204 62.098011) (xy 68.159196 62.098009) (xy 68.098649 62.0915) (xy 68.098638 62.0915) (xy 67.189594 62.0915) (xy 67.121473 62.071498) (xy 67.100499 62.054595) (xy 65.753835 60.707931) (xy 65.753833 60.707929) (xy 65.650075 60.6386) (xy 65.534785 60.590845) (xy 65.461086 60.576185) (xy 65.412396 60.5665) (xy 65.412394 60.5665) (xy 65.265062 60.5665) (xy 65.196941 60.546498) (xy 65.157821 60.506646) (xy 65.151658 60.496654) (xy 65.151656 60.496652) (xy 65.151652 60.496647) (xy 65.028352 60.373347) (xy 65.028346 60.373342) (xy 65.028343 60.37334) (xy 64.87992 60.281791) (xy 64.714381 60.226938) (xy 64.714379 60.226937) (xy 64.714377 60.226937) (xy 64.653423 60.220709) (xy 64.587689 60.193886) (xy 64.546891 60.135782) (xy 64.543983 60.064845) (xy 64.577134 60.006269) (xy 64.692072 59.891333) (xy 64.761401 59.787575) (xy 64.799 59.696801) (xy 64.809155 59.672285) (xy 64.8335 59.549894) (xy 64.8335 59.512375) (xy 64.853502 59.444254) (xy 64.907158 59.397761) (xy 64.919868 59.39277) (xy 65.072738 59.342115) (xy 65.223652 59.24903) (xy 65.34903 59.123652) (xy 65.442115 58.972738) (xy 65.497887 58.804426) (xy 65.5085 58.700545) (xy 65.5085 58.700516) (xy 66.192 58.700516) (xy 66.202605 58.804318) (xy 66.202606 58.804321) (xy 66.258342 58.972525) (xy 66.351365 59.123339) (xy 66.35137 59.123345) (xy 66.476654 59.248629) (xy 66.47666 59.248634) (xy 66.627474 59.341657) (xy 66.795678 59.397393) (xy 66.795681 59.397394) (xy 66.899483 59.407999) (xy 66.899483 59.408) (xy 67.021 59.408) (xy 67.021 58.454) (xy 66.192 58.454) (xy 66.192 58.700516) (xy 65.5085 58.700516) (xy 65.508499 57.699483) (xy 66.192 57.699483) (xy 66.192 57.946) (xy 67.021 57.946) (xy 67.021 56.992) (xy 66.899483 56.992) (xy 66.795681 57.002605) (xy 66.795678 57.002606) (xy 66.627474 57.058342) (xy 66.47666 57.151365) (xy 66.476654 57.15137) (xy 66.35137 57.276654) (xy 66.351365 57.27666) (xy 66.258342 57.427474) (xy 66.202606 57.595678) (xy 66.202605 57.595681) (xy 66.192 57.699483) (xy 65.508499 57.699483) (xy 65.508499 57.699456) (xy 65.50414 57.65679) (xy 65.497887 57.595574) (xy 65.477141 57.532967) (xy 65.442115 57.427262) (xy 65.34903 57.276348) (xy 65.349027 57.276345) (xy 65.349024 57.276341) (xy 65.223658 57.150975) (xy 65.223652 57.15097) (xy 65.146699 57.103505) (xy 65.072738 57.057885) (xy 64.947844 57.0165) (xy 64.904427 57.002113) (xy 64.90442 57.002112) (xy 64.800553 56.9915) (xy 64.049455 56.9915) (xy 63.945574 57.002112) (xy 63.777261 57.057885) (xy 63.626347 57.15097) (xy 63.626341 57.150975) (xy 63.500971 57.276345) (xy 63.498511 57.279457) (xy 63.496281 57.281035) (xy 63.49578 57.281537) (xy 63.495694 57.281451) (xy 63.440568 57.320483) (xy 63.369643 57.323671) (xy 63.308254 57.288008) (xy 63.300837 57.279446) (xy 63.298632 57.276657) (xy 63.173345 57.15137) (xy 63.173339 57.151365) (xy 63.022525 57.058342) (xy 62.854321 57.002606) (xy 62.854318 57.002605) (xy 62.750516 56.992) (xy 62.629 56.992) (xy 62.629 59.408) (xy 62.750517 59.408) (xy 62.750516 59.407999) (xy 62.854318 59.397394) (xy 62.854321 59.397393) (xy 63.022525 59.341657) (xy 63.173339 59.248634) (xy 63.173345 59.248629) (xy 63.298624 59.12335) (xy 63.300832 59.120558) (xy 63.302837 59.119137) (xy 63.303825 59.11815) (xy 63.303993 59.118318) (xy 63.358768 59.079522) (xy 63.429693 59.076323) (xy 63.491088 59.111976) (xy 63.498521 59.120554) (xy 63.505157 59.128948) (xy 63.531712 59.194792) (xy 63.518455 59.264539) (xy 63.495409 59.296185) (xy 62.611999 60.179595) (xy 62.549687 60.213621) (xy 62.522904 60.2165) (xy 62.187787 60.2165) (xy 62.085619 60.226937) (xy 61.920079 60.281791) (xy 61.771653 60.373342) (xy 61.771647 60.373347) (xy 61.648347 60.496647) (xy 61.648342 60.496653) (xy 61.556791 60.64508) (xy 61.501937 60.810622) (xy 61.4915 60.912778) (xy 61.095998 60.912778) (xy 61.091868 60.872354) (xy 61.085562 60.810619) (xy 61.067754 60.756878) (xy 61.030709 60.64508) (xy 60.939158 60.496654) (xy 60.939156 60.496652) (xy 60.939152 60.496647) (xy 60.815852 60.373347) (xy 60.815846 60.373342) (xy 60.815843 60.37334) (xy 60.66742 60.281791) (xy 60.501881 60.226938) (xy 60.501879 60.226937) (xy 60.501877 60.226937) (xy 60.399721 60.2165) (xy 59.800287 60.2165) (xy 59.698119 60.226937) (xy 59.532579 60.281791) (xy 59.384153 60.373342) (xy 59.276594 60.480901) (xy 59.214282 60.514926) (xy 59.143466 60.50986) (xy 59.098404 60.4809) (xy 58.990844 60.37334) (xy 58.968351 60.359466) (xy 58.920874 60.306679) (xy 58.9085 60.252227) (xy 58.9085 59.253872) (xy 58.928502 59.185751) (xy 58.9454 59.164781) (xy 59.03653 59.073652) (xy 59.036537 59.07364) (xy 59.038978 59.070554) (xy 59.041205 59.068976) (xy 59.04172 59.068462) (xy 59.041807 59.068549) (xy 59.096916 59.029521) (xy 59.16784 59.026324) (xy 59.229234 59.06198) (xy 59.236661 59.070551) (xy 59.238869 59.073344) (xy 59.364154 59.198629) (xy 59.36416 59.198634) (xy 59.514974 59.291657) (xy 59.683178 59.347393) (xy 59.683181 59.347394) (xy 59.786983 59.357999) (xy 59.786983 59.358) (xy 59.9085 59.358) (xy 60.4165 59.358) (xy 60.538017 59.358) (xy 60.538016 59.357999) (xy 60.641818 59.347394) (xy 60.641821 59.347393) (xy 60.810025 59.291657) (xy 60.960839 59.198634) (xy 60.960845 59.198629) (xy 61.086129 59.073345) (xy 61.086136 59.073336) (xy 61.146088 58.976138) (xy 61.198873 58.92866) (xy 61.268948 58.917256) (xy 61.334064 58.945548) (xy 61.36057 58.976137) (xy 61.451365 59.123339) (xy 61.45137 59.123345) (xy 61.576654 59.248629) (xy 61.57666 59.248634) (xy 61.727474 59.341657) (xy 61.895678 59.397393) (xy 61.895681 59.397394) (xy 61.999483 59.407999) (xy 61.999483 59.408) (xy 62.121 59.408) (xy 62.121 58.454) (xy 61.347691 58.454) (xy 61.27957 58.433998) (xy 61.258596 58.417095) (xy 61.245501 58.404) (xy 60.4165 58.404) (xy 60.4165 59.358) (xy 59.9085 59.358) (xy 59.9085 57.896) (xy 60.4165 57.896) (xy 61.189809 57.896) (xy 61.25793 57.916002) (xy 61.278904 57.932905) (xy 61.291999 57.946) (xy 62.121 57.946) (xy 62.121 56.992) (xy 61.999483 56.992) (xy 61.895681 57.002605) (xy 61.895678 57.002606) (xy 61.727474 57.058342) (xy 61.57666 57.151365) (xy 61.576654 57.15137) (xy 61.45137 57.276654) (xy 61.451365 57.27666) (xy 61.391411 57.373862) (xy 61.338625 57.42134) (xy 61.26855 57.432743) (xy 61.203434 57.40445) (xy 61.176929 57.373862) (xy 61.086134 57.22666) (xy 61.086129 57.226654) (xy 60.960845 57.10137) (xy 60.960839 57.101365) (xy 60.810025 57.008342) (xy 60.641821 56.952606) (xy 60.641818 56.952605) (xy 60.538016 56.942) (xy 60.4165 56.942) (xy 60.4165 57.896) (xy 59.9085 57.896) (xy 59.9085 56.942) (xy 59.786983 56.942) (xy 59.683181 56.952605) (xy 59.683178 56.952606) (xy 59.514974 57.008342) (xy 59.36416 57.101365) (xy 59.364154 57.10137) (xy 59.23887 57.226654) (xy 59.236657 57.229454) (xy 59.234649 57.230875) (xy 59.233675 57.23185) (xy 59.233508 57.231683) (xy 59.178716 57.270482) (xy 59.107791 57.273672) (xy 59.0464 57.238011) (xy 59.038983 57.22945) (xy 59.036528 57.226345) (xy 58.911158 57.100975) (xy 58.911152 57.10097) (xy 58.8413 57.057885) (xy 58.760238 57.007885) (xy 58.676082 56.979999) (xy 58.591927 56.952113) (xy 58.59192 56.952112) (xy 58.488053 56.9415) (xy 57.736955 56.9415) (xy 57.633074 56.952112) (xy 57.464761 57.007885) (xy 57.313847 57.10097) (xy 57.313841 57.100975) (xy 57.188475 57.226341) (xy 57.18847 57.226347) (xy 57.095385 57.377262) (xy 57.039613 57.545572) (xy 57.039612 57.545577) (xy 57.038563 57.555849) (xy 57.011739 57.621583) (xy 56.953634 57.66238) (xy 56.882697 57.665286) (xy 56.821449 57.62938) (xy 56.793611 57.58267) (xy 56.742115 57.427262) (xy 56.64903 57.276348) (xy 56.649027 57.276345) (xy 56.649024 57.276341) (xy 56.523658 57.150975) (xy 56.523652 57.15097) (xy 56.446699 57.103505) (xy 56.372738 57.057885) (xy 56.247844 57.0165) (xy 56.204427 57.002113) (xy 56.20442 57.002112) (xy 56.100553 56.9915) (xy 55.349455 56.9915) (xy 55.245574 57.002112) (xy 55.077261 57.057885) (xy 54.926347 57.15097) (xy 54.926341 57.150975) (xy 54.800971 57.276345) (xy 54.798511 57.279457) (xy 54.796281 57.281035) (xy 54.79578 57.281537) (xy 54.795694 57.281451) (xy 54.740568 57.320483) (xy 54.669643 57.323671) (xy 54.608254 57.288008) (xy 54.600837 57.279446) (xy 54.598632 57.276657) (xy 54.473345 57.15137) (xy 54.473339 57.151365) (xy 54.322525 57.058342) (xy 54.154321 57.002606) (xy 54.154318 57.002605) (xy 54.050516 56.992) (xy 53.929 56.992) (xy 53.929 59.408) (xy 54.050517 59.408) (xy 54.050516 59.407999) (xy 54.154318 59.397394) (xy 54.154321 59.397393) (xy 54.322525 59.341657) (xy 54.473339 59.248634) (xy 54.473345 59.248629) (xy 54.598624 59.12335) (xy 54.600832 59.120558) (xy 54.602837 59.119137) (xy 54.603825 59.11815) (xy 54.603993 59.118318) (xy 54.658768 59.079522) (xy 54.729693 59.076323) (xy 54.791088 59.111976) (xy 54.798515 59.120547) (xy 54.800974 59.123657) (xy 54.85161 59.174293) (xy 54.885636 59.236605) (xy 54.880571 59.30742) (xy 54.85161 59.352483) (xy 54.024498 60.179595) (xy 53.962186 60.213621) (xy 53.935403 60.2165) (xy 53.587787 60.2165) (xy 53.485619 60.226937) (xy 53.320079 60.281791) (xy 53.171653 60.373342) (xy 53.171647 60.373347) (xy 53.048347 60.496647) (xy 53.048342 60.496653) (xy 52.956791 60.64508) (xy 52.901937 60.810622) (xy 52.8915 60.912778) (xy 51.808498 60.912778) (xy 51.804368 60.872354) (xy 51.798062 60.810619) (xy 51.780254 60.756878) (xy 51.743209 60.64508) (xy 51.651658 60.496654) (xy 51.651656 60.496652) (xy 51.651652 60.496647) (xy 51.528352 60.373347) (xy 51.528346 60.373342) (xy 51.528343 60.37334) (xy 51.37992 60.281791) (xy 51.214381 60.226938) (xy 51.214379 60.226937) (xy 51.214377 60.226937) (xy 51.112221 60.2165) (xy 50.512787 60.2165) (xy 50.410619 60.226937) (xy 50.245079 60.281791) (xy 50.096653 60.373342) (xy 49.989094 60.480901) (xy 49.926782 60.514926) (xy 49.855966 60.50986) (xy 49.810904 60.4809) (xy 49.703344 60.37334) (xy 49.680851 60.359466) (xy 49.633374 60.306679) (xy 49.621 60.252227) (xy 49.621 59.466812) (xy 49.641002 59.398691) (xy 49.694658 59.352198) (xy 49.707359 59.34721) (xy 49.722738 59.342115) (xy 49.873652 59.24903) (xy 49.99903 59.123652) (xy 49.999037 59.123639) (xy 50.001478 59.120554) (xy 50.003709 59.118973) (xy 50.00422 59.118463) (xy 50.004307 59.11855) (xy 50.059416 59.079521) (xy 50.13034 59.076324) (xy 50.191734 59.11198) (xy 50.199161 59.120551) (xy 50.201369 59.123344) (xy 50.326654 59.248629) (xy 50.32666 59.248634) (xy 50.477474 59.341657) (xy 50.645678 59.397393) (xy 50.645681 59.397394) (xy 50.749483 59.407999) (xy 50.749483 59.408) (xy 50.871 59.408) (xy 51.379 59.408) (xy 51.500517 59.408) (xy 51.500516 59.407999) (xy 51.604318 59.397394) (xy 51.604321 59.397393) (xy 51.772525 59.341657) (xy 51.923339 59.248634) (xy 51.923345 59.248629) (xy 52.048629 59.123345) (xy 52.048634 59.123339) (xy 52.141657 58.972525) (xy 52.197393 58.804321) (xy 52.197394 58.804318) (xy 52.207999 58.700516) (xy 52.208 58.700516) (xy 52.592 58.700516) (xy 52.602605 58.804318) (xy 52.602606 58.804321) (xy 52.658342 58.972525) (xy 52.751365 59.123339) (xy 52.75137 59.123345) (xy 52.876654 59.248629) (xy 52.87666 59.248634) (xy 53.027474 59.341657) (xy 53.195678 59.397393) (xy 53.195681 59.397394) (xy 53.299483 59.407999) (xy 53.299483 59.408) (xy 53.421 59.408) (xy 53.421 58.454) (xy 52.592 58.454) (xy 52.592 58.700516) (xy 52.208 58.700516) (xy 52.208 58.454) (xy 51.379 58.454) (xy 51.379 59.408) (xy 50.871 59.408) (xy 50.871 57.946) (xy 51.379 57.946) (xy 52.208 57.946) (xy 52.208 57.699483) (xy 52.592 57.699483) (xy 52.592 57.946) (xy 53.421 57.946) (xy 53.421 56.992) (xy 53.299483 56.992) (xy 53.195681 57.002605) (xy 53.195678 57.002606) (xy 53.027474 57.058342) (xy 52.87666 57.151365) (xy 52.876654 57.15137) (xy 52.75137 57.276654) (xy 52.751365 57.27666) (xy 52.658342 57.427474) (xy 52.602606 57.595678) (xy 52.602605 57.595681) (xy 52.592 57.699483) (xy 52.208 57.699483) (xy 52.197394 57.595681) (xy 52.197393 57.595678) (xy 52.141657 57.427474) (xy 52.048634 57.27666) (xy 52.048629 57.276654) (xy 51.923345 57.15137) (xy 51.923339 57.151365) (xy 51.772525 57.058342) (xy 51.604321 57.002606) (xy 51.604318 57.002605) (xy 51.500516 56.992) (xy 51.379 56.992) (xy 51.379 57.946) (xy 50.871 57.946) (xy 50.871 56.992) (xy 50.749483 56.992) (xy 50.645681 57.002605) (xy 50.645678 57.002606) (xy 50.477474 57.058342) (xy 50.32666 57.151365) (xy 50.326654 57.15137) (xy 50.20137 57.276654) (xy 50.199157 57.279454) (xy 50.197149 57.280875) (xy 50.196175 57.28185) (xy 50.196008 57.281683) (xy 50.141216 57.320482) (xy 50.070291 57.323672) (xy 50.0089 57.288011) (xy 50.001483 57.27945) (xy 49.999028 57.276345) (xy 49.873658 57.150975) (xy 49.873652 57.15097) (xy 49.796699 57.103505) (xy 49.722738 57.057885) (xy 49.597844 57.0165) (xy 49.554427 57.002113) (xy 49.55442 57.002112) (xy 49.450553 56.9915) (xy 48.699455 56.9915) (xy 48.595574 57.002112) (xy 48.427261 57.057885) (xy 48.276347 57.15097) (xy 48.276341 57.150975) (xy 48.150975 57.276341) (xy 48.15097 57.276347) (xy 48.057885 57.427262) (xy 48.002113 57.595572) (xy 48.002112 57.595579) (xy 47.9915 57.699446) (xy 47.9915 58.700544) (xy 48.002112 58.804425) (xy 48.057885 58.972738) (xy 48.15097 59.123652) (xy 48.150975 59.123658) (xy 48.276341 59.249024) (xy 48.276345 59.249027) (xy 48.276348 59.24903) (xy 48.27635 59.249031) (xy 48.294146 59.260008) (xy 48.341625 59.312794) (xy 48.354 59.367249) (xy 48.354 60.252227) (xy 48.333998 60.320348) (xy 48.294149 60.359466) (xy 48.271656 60.37334) (xy 48.148343 60.496652) (xy 48.148342 60.496653) (xy 48.056791 60.64508) (xy 48.001937 60.810622) (xy 47.9915 60.912778) (xy 47.9915 60.912786) (xy 47.9915 60.912787) (xy 47.9915 61.195181) (xy 47.991501 61.4405) (xy 47.971499 61.508621) (xy 47.917844 61.555114) (xy 47.865501 61.5665) (xy 47.137603 61.5665) (xy 47.064568 61.581028) (xy 47.015215 61.590845) (xy 47.015213 61.590845) (xy 47.015212 61.590846) (xy 46.947675 61.618821) (xy 46.93251 61.625103) (xy 46.899923 61.638601) (xy 46.796171 61.707926) (xy 46.796164 61.707931) (xy 38.877931 69.626164) (xy 38.877926 69.626171) (xy 38.809328 69.728836) (xy 38.8086 69.729925) (xy 38.794544 69.76386) (xy 38.763262 69.839381) (xy 38.760845 69.845215) (xy 38.756053 69.869307) (xy 38.7365 69.967603) (xy 38.7365 90.0255) (xy 38.716498 90.093621) (xy 38.662842 90.140114) (xy 38.6105 90.1515) (xy 38.47135 90.1515) (xy 38.410803 90.158009) (xy 38.410795 90.158011) (xy 38.273797 90.20911) (xy 38.273792 90.209113) (xy 38.202009 90.262849) (xy 38.135488 90.28766) (xy 38.066114 90.272568) (xy 38.015912 90.222366) (xy 38.0005 90.161981) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.003873 58.922738) (xy 38.017382 58.613336) (xy 38.01834 58.602388) (xy 38.024589 58.55492) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.073143 58.199343) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.158943 57.819185) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.27848 57.44508) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.430729 57.081791) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.913338 56.290026) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.314656 55.822429) (xy 39.322429 55.814656) (xy 39.603716 55.556904) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 167.434108 54.5005) (xy 167.497252 54.5005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 69.443388 126.917277) (xy 69.48457 126.975109) (xy 69.4915 127.01632) (xy 69.4915 127.780115) (xy 69.498014 127.804425) (xy 69.498015 127.804425) (xy 69.498015 127.804426) (xy 69.532629 127.933605) (xy 69.532968 127.934872) (xy 69.53297 127.934877) (xy 69.613075 128.073623) (xy 69.613077 128.073625) (xy 69.613078 128.073627) (xy 70.354596 128.815145) (xy 70.38862 128.877456) (xy 70.3915 128.904239) (xy 70.3915 129.006511) (xy 70.394437 129.043828) (xy 70.394437 129.043829) (xy 70.440856 129.203605) (xy 70.525543 129.346802) (xy 70.526298 129.347775) (xy 70.526652 129.348676) (xy 70.529582 129.353631) (xy 70.528782 129.354103) (xy 70.552244 129.413861) (xy 70.538342 129.483483) (xy 70.526298 129.502225) (xy 70.525543 129.503197) (xy 70.440856 129.646394) (xy 70.394437 129.80617) (xy 70.394437 129.806171) (xy 70.3915 129.843488) (xy 70.3915 130.276511) (xy 70.394437 130.313828) (xy 70.394437 130.313829) (xy 70.440856 130.473605) (xy 70.525544 130.616803) (xy 70.525549 130.61681) (xy 70.643189 130.73445) (xy 70.643196 130.734455) (xy 70.786394 130.819143) (xy 70.786397 130.819143) (xy 70.786399 130.819145) (xy 70.946169 130.865562) (xy 70.983488 130.868499) (xy 70.983489 130.8685) (xy 70.983498 130.8685) (xy 72.390075 130.8685) (xy 72.458196 130.888502) (xy 72.47917 130.905405) (xy 74.20017 132.626405) (xy 74.234196 132.688717) (xy 74.229131 132.759532) (xy 74.186584 132.816368) (xy 74.120064 132.841179) (xy 74.111075 132.8415) (xy 72.736572 132.8415) (xy 72.668451 132.821498) (xy 72.621958 132.767842) (xy 72.611262 132.72867) (xy 72.593542 132.560072) (xy 72.58833 132.544031) (xy 72.534527 132.378444) (xy 72.43904 132.213056) (xy 72.439038 132.213054) (xy 72.439034 132.213048) (xy 72.311255 132.071135) (xy 72.156752 131.958882) (xy 71.982288 131.881206) (xy 71.795487 131.8415) (xy 71.604513 131.8415) (xy 71.417711 131.881206) (xy 71.243247 131.958882) (xy 71.088744 132.071135) (xy 71.062926 132.09981) (xy 71.00248 132.13705) (xy 70.96929 132.1415) (xy 67.054239 132.1415) (xy 66.986118 132.121498) (xy 66.965144 132.104595) (xy 66.045405 131.184856) (xy 66.011379 131.122544) (xy 66.0085 131.095761) (xy 66.0085 130.993999) (xy 66.028502 130.925878) (xy 66.082158 130.879385) (xy 66.1345 130.867999) (xy 66.671 130.867999) (xy 67.179 130.867999) (xy 67.816456 130.867999) (xy 67.85375 130.865065) (xy 68.0134 130.818681) (xy 68.156501 130.734051) (xy 68.156503 130.73405) (xy 68.27405 130.616503) (xy 68.274051 130.616501) (xy 68.358681 130.473401) (xy 68.404993 130.314) (xy 67.179 130.314) (xy 67.179 130.867999) (xy 66.671 130.867999) (xy 66.671 129.932) (xy 66.691002 129.863879) (xy 66.744658 129.817386) (xy 66.797 129.806) (xy 68.404992 129.806) (xy 68.358681 129.646598) (xy 68.274053 129.5035) (xy 68.273385 129.502639) (xy 68.273071 129.50184) (xy 68.270019 129.496679) (xy 68.270851 129.496186) (xy 68.247437 129.436554) (xy 68.261336 129.366931) (xy 68.27339 129.348176) (xy 68.274444 129.346815) (xy 68.274453 129.346807) (xy 68.32879 129.254928) (xy 68.359143 129.203605) (xy 68.359143 129.203603) (xy 68.359145 129.203601) (xy 68.405562 129.043831) (xy 68.408499 129.006511) (xy 68.4085 129.006511) (xy 68.4085 128.573489) (xy 68.408499 128.573488) (xy 68.406242 128.544816) (xy 68.405562 128.536169) (xy 68.359145 128.376399) (xy 68.359143 128.376397) (xy 68.359143 128.376394) (xy 68.274456 128.233198) (xy 68.274455 128.233197) (xy 68.274453 128.233193) (xy 68.274449 128.233189) (xy 68.273708 128.232233) (xy 68.273356 128.231337) (xy 68.270418 128.226369) (xy 68.271219 128.225895) (xy 68.247756 128.16615) (xy 68.261652 128.096526) (xy 68.273708 128.077767) (xy 68.274445 128.076814) (xy 68.274453 128.076807) (xy 68.359145 127.933601) (xy 68.363302 127.919288) (xy 68.395203 127.865344) (xy 69.186921 127.073628) (xy 69.256382 126.953318) (xy 69.307763 126.904327) (xy 69.377477 126.890891) ) ) (filled_polygon (layer "F.Cu") (pts (xy 99.177939 115.971461) (xy 99.227419 116.022374) (xy 99.241981 116.081175) (xy 99.241981 125.645279) (xy 99.221979 125.7134) (xy 99.205076 125.734374) (xy 97.763083 127.176366) (xy 97.763075 127.176376) (xy 97.682969 127.315123) (xy 97.682967 127.315129) (xy 97.677411 127.335867) (xy 97.677411 127.335868) (xy 97.642778 127.465122) (xy 97.6415 127.46989) (xy 97.6415 130.209512) (xy 97.621498 130.277633) (xy 97.567842 130.324126) (xy 97.497568 130.33423) (xy 97.488827 130.332202) (xy 97.488747 130.332579) (xy 97.40134 130.314) (xy 97.295487 130.2915) (xy 97.104513 130.2915) (xy 96.917711 130.331206) (xy 96.743247 130.408882) (xy 96.588744 130.521135) (xy 96.460965 130.663048) (xy 96.460958 130.663058) (xy 96.365476 130.828438) (xy 96.365473 130.828444) (xy 96.353574 130.865065) (xy 96.306457 131.010072) (xy 96.286496 131.2) (xy 96.306457 131.389927) (xy 96.328019 131.456285) (xy 96.365473 131.571556) (xy 96.365476 131.571561) (xy 96.460958 131.736941) (xy 96.460965 131.736951) (xy 96.520671 131.803261) (xy 96.551389 131.867268) (xy 96.542624 131.937722) (xy 96.501096 131.989507) (xy 96.388744 132.071135) (xy 96.260965 132.213048) (xy 96.260958 132.213058) (xy 96.165476 132.378438) (xy 96.165473 132.378445) (xy 96.106457 132.560072) (xy 96.088738 132.72867) (xy 96.061725 132.794327) (xy 96.003504 132.834957) (xy 95.963428 132.8415) (xy 94.723239 132.8415) (xy 94.655118 132.821498) (xy 94.608625 132.767842) (xy 94.598521 132.697568) (xy 94.628015 132.632988) (xy 94.634144 132.626405) (xy 95.819758 131.440791) (xy 95.819764 131.440785) (xy 95.899875 131.30203) (xy 95.927064 131.200558) (xy 95.941343 131.147268) (xy 95.941343 121.534137) (xy 95.961345 121.466016) (xy 95.978243 121.445046) (xy 96.336441 121.086849) (xy 96.416551 120.948094) (xy 96.420094 120.934873) (xy 96.458019 120.793333) (xy 96.458019 117.520406) (xy 96.478021 117.452285) (xy 96.494924 117.431311) (xy 97.18083 116.745405) (xy 97.243142 116.711379) (xy 97.269925 116.7085) (xy 97.730109 116.7085) (xy 97.73011 116.7085) (xy 97.730111 116.7085) (xy 97.813608 116.686127) (xy 97.884873 116.667032) (xy 98.023627 116.586922) (xy 98.415145 116.195403) (xy 98.477456 116.16138) (xy 98.504239 116.1585) (xy 98.595487 116.1585) (xy 98.782288 116.118794) (xy 98.956752 116.041118) (xy 99.041921 115.979238) (xy 99.108787 115.955381) ) ) (filled_polygon (layer "F.Cu") (pts (xy 78.859531 126.655183) (xy 78.916367 126.69773) (xy 78.941178 126.76425) (xy 78.941499 126.773239) (xy 78.941499 127.880114) (xy 78.952157 127.919888) (xy 78.952157 127.91989) (xy 78.952158 127.91989) (xy 78.982966 128.03487) (xy 78.982969 128.034877) (xy 79.063074 128.173623) (xy 79.063076 128.173625) (xy 79.063077 128.173627) (xy 79.804595 128.915145) (xy 79.838619 128.977456) (xy 79.841499 129.004239) (xy 79.841499 129.006511) (xy 79.844436 129.043828) (xy 79.844436 129.043829) (xy 79.890855 129.203605) (xy 79.975542 129.346802) (xy 79.976297 129.347775) (xy 79.976651 129.348676) (xy 79.979581 129.353631) (xy 79.978781 129.354103) (xy 80.002243 129.413861) (xy 79.988341 129.483483) (xy 79.976297 129.502225) (xy 79.975542 129.503197) (xy 79.890855 129.646394) (xy 79.844436 129.80617) (xy 79.844436 129.806171) (xy 79.841499 129.843488) (xy 79.841499 130.276511) (xy 79.844436 130.313828) (xy 79.844436 130.313829) (xy 79.890855 130.473605) (xy 79.975543 130.616803) (xy 79.975548 130.61681) (xy 80.093188 130.73445) (xy 80.093195 130.734455) (xy 80.236393 130.819143) (xy 80.236396 130.819143) (xy 80.236398 130.819145) (xy 80.396168 130.865562) (xy 80.433487 130.868499) (xy 80.433488 130.8685) (xy 80.433497 130.8685) (xy 82.21651 130.8685) (xy 82.21651 130.868499) (xy 82.25383 130.865562) (xy 82.376911 130.829804) (xy 82.447906 130.830007) (xy 82.501157 130.861706) (xy 82.614416 130.974965) (xy 82.648442 131.037277) (xy 82.643377 131.108092) (xy 82.60083 131.164928) (xy 82.53431 131.189739) (xy 82.525321 131.19006) (xy 76.302799 131.19006) (xy 76.234678 131.170058) (xy 76.213704 131.153155) (xy 76.113869 131.05332) (xy 76.079843 130.991008) (xy 76.084908 130.920193) (xy 76.113869 130.87513) (xy 76.120999 130.868) (xy 76.120999 130.867999) (xy 76.628999 130.867999) (xy 77.266455 130.867999) (xy 77.303749 130.865065) (xy 77.463399 130.818681) (xy 77.6065 130.734051) (xy 77.606502 130.73405) (xy 77.724049 130.616503) (xy 77.72405 130.616501) (xy 77.80868 130.473401) (xy 77.854992 130.314) (xy 76.628999 130.314) (xy 76.628999 130.867999) (xy 76.120999 130.867999) (xy 76.120999 129.932) (xy 76.141001 129.863879) (xy 76.194657 129.817386) (xy 76.246999 129.806) (xy 77.854991 129.806) (xy 77.80868 129.646598) (xy 77.724052 129.5035) (xy 77.723384 129.502639) (xy 77.72307 129.50184) (xy 77.720018 129.496679) (xy 77.72085 129.496186) (xy 77.697436 129.436554) (xy 77.711335 129.366931) (xy 77.723389 129.348176) (xy 77.724443 129.346815) (xy 77.724452 129.346807) (xy 77.778789 129.254928) (xy 77.809142 129.203605) (xy 77.809142 129.203603) (xy 77.809144 129.203601) (xy 77.855561 129.043831) (xy 77.858498 129.006511) (xy 77.858499 129.006511) (xy 77.858499 128.573489) (xy 77.858498 128.573488) (xy 77.856241 128.544816) (xy 77.855561 128.536169) (xy 77.809144 128.376399) (xy 77.809142 128.376397) (xy 77.809142 128.376394) (xy 77.724455 128.233198) (xy 77.724454 128.233197) (xy 77.724452 128.233193) (xy 77.724448 128.233189) (xy 77.723707 128.232233) (xy 77.723355 128.231337) (xy 77.720417 128.226369) (xy 77.721218 128.225895) (xy 77.697755 128.16615) (xy 77.711651 128.096526) (xy 77.723707 128.077767) (xy 77.724444 128.076814) (xy 77.724452 128.076807) (xy 77.78555 127.973497) (xy 77.809142 127.933605) (xy 77.809143 127.933602) (xy 77.809144 127.933601) (xy 77.855561 127.773831) (xy 77.858498 127.736511) (xy 77.858499 127.736511) (xy 77.858499 127.604239) (xy 77.878501 127.536118) (xy 77.895404 127.515144) (xy 78.726404 126.684144) (xy 78.788716 126.650118) ) ) (filled_polygon (layer "F.Cu") (pts (xy 89.934961 121.361124) (xy 89.991798 121.40367) (xy 90.011926 121.444026) (xy 90.038534 121.535611) (xy 90.040856 121.543604) (xy 90.125543 121.686802) (xy 90.126298 121.687775) (xy 90.126652 121.688676) (xy 90.129582 121.693631) (xy 90.128782 121.694103) (xy 90.152244 121.753861) (xy 90.138342 121.823483) (xy 90.126298 121.842225) (xy 90.125543 121.843197) (xy 90.040856 121.986394) (xy 89.994437 122.14617) (xy 89.994437 122.146171) (xy 89.9915 122.183488) (xy 89.9915 122.616511) (xy 89.994437 122.653828) (xy 89.994437 122.653829) (xy 90.040856 122.813605) (xy 90.125544 122.956803) (xy 90.126615 122.958184) (xy 90.127117 122.959463) (xy 90.129582 122.963631) (xy 90.128909 122.964028) (xy 90.152562 123.02427) (xy 90.138662 123.093892) (xy 90.126614 123.112639) (xy 90.125946 123.113499) (xy 90.041318 123.256598) (xy 89.995007 123.416) (xy 91.603 123.416) (xy 91.671121 123.436002) (xy 91.717614 123.489658) (xy 91.729 123.542) (xy 91.729 123.798) (xy 91.708998 123.866121) (xy 91.655342 123.912614) (xy 91.603 123.924) (xy 89.995007 123.924) (xy 90.041318 124.083401) (xy 90.125946 124.226498) (xy 90.126616 124.227362) (xy 90.12693 124.228162) (xy 90.129981 124.233321) (xy 90.129148 124.233813) (xy 90.152563 124.293448) (xy 90.138662 124.36307) (xy 90.126625 124.381802) (xy 90.125551 124.383186) (xy 90.040856 124.526396) (xy 89.994437 124.68617) (xy 89.994437 124.686171) (xy 89.9915 124.723488) (xy 89.9915 125.156511) (xy 89.994437 125.193828) (xy 89.994437 125.193829) (xy 90.040856 125.353605) (xy 90.125543 125.496802) (xy 90.126298 125.497775) (xy 90.126652 125.498676) (xy 90.129582 125.503631) (xy 90.128782 125.504103) (xy 90.152244 125.563861) (xy 90.138342 125.633483) (xy 90.126298 125.652225) (xy 90.125543 125.653197) (xy 90.040856 125.796394) (xy 89.994437 125.95617) (xy 89.994437 125.956171) (xy 89.9915 125.993488) (xy 89.9915 126.426511) (xy 89.994437 126.463828) (xy 89.994437 126.463829) (xy 90.040856 126.623605) (xy 90.125544 126.766803) (xy 90.126615 126.768184) (xy 90.127117 126.769463) (xy 90.129582 126.773631) (xy 90.128909 126.774028) (xy 90.152562 126.83427) (xy 90.138662 126.903892) (xy 90.126614 126.922639) (xy 90.125946 126.923499) (xy 90.041318 127.066598) (xy 89.995007 127.226) (xy 91.603 127.226) (xy 91.671121 127.246002) (xy 91.717614 127.299658) (xy 91.729 127.352) (xy 91.729 127.608) (xy 91.708998 127.676121) (xy 91.655342 127.722614) (xy 91.603 127.734) (xy 89.995007 127.734) (xy 90.001852 127.757559) (xy 90.001649 127.828556) (xy 89.963096 127.888172) (xy 89.907052 127.91596) (xy 89.717711 127.956206) (xy 89.543247 128.033882) (xy 89.388744 128.146135) (xy 89.260965 128.288048) (xy 89.260958 128.288058) (xy 89.165476 128.453438) (xy 89.165473 128.453445) (xy 89.106457 128.635072) (xy 89.086496 128.825) (xy 89.106457 129.014927) (xy 89.133463 129.098041) (xy 89.165473 129.196556) (xy 89.169543 129.203605) (xy 89.260958 129.361941) (xy 89.260965 129.361951) (xy 89.388744 129.503864) (xy 89.401546 129.513165) (xy 89.543248 129.616118) (xy 89.717712 129.693794) (xy 89.891699 129.730776) (xy 89.95417 129.764503) (xy 89.988492 129.826653) (xy 89.9915 129.854022) (xy 89.9915 130.1655) (xy 89.971498 130.233621) (xy 89.917842 130.280114) (xy 89.8655 130.2915) (xy 88.08109 130.2915) (xy 88.02149 130.274) (xy 85.025661 130.274) (xy 85.012775 130.283618) (xy 84.96891 130.2915) (xy 84.504239 130.2915) (xy 84.436118 130.271498) (xy 84.415144 130.254595) (xy 83.545405 129.384856) (xy 83.511379 129.322544) (xy 83.5085 129.295761) (xy 83.5085 127.319908) (xy 83.528502 127.251787) (xy 83.582158 127.205294) (xy 83.652432 127.19519) (xy 83.717012 127.224684) (xy 83.743619 127.256908) (xy 83.760958 127.286941) (xy 83.760965 127.286951) (xy 83.888744 127.428864) (xy 83.902146 127.438601) (xy 84.043248 127.541118) (xy 84.217712 127.618794) (xy 84.404513 127.6585) (xy 84.495761 127.6585) (xy 84.563882 127.678502) (xy 84.584851 127.6954) (xy 84.856373 127.966922) (xy 84.856374 127.966923) (xy 84.856376 127.966924) (xy 84.877469 127.979102) (xy 84.995127 128.047032) (xy 85.05246 128.062394) (xy 85.065135 128.06579) (xy 85.125759 128.102739) (xy 85.156784 128.166598) (xy 85.148358 128.237093) (xy 85.140983 128.251637) (xy 85.090855 128.336397) (xy 85.044437 128.49617) (xy 85.044437 128.496171) (xy 85.0415 128.533488) (xy 85.0415 128.966511) (xy 85.044437 129.003828) (xy 85.044437 129.003829) (xy 85.090856 129.163605) (xy 85.175544 129.306803) (xy 85.176615 129.308184) (xy 85.177117 129.309463) (xy 85.179582 129.313631) (xy 85.178909 129.314028) (xy 85.202562 129.37427) (xy 85.188662 129.443892) (xy 85.176614 129.462639) (xy 85.175946 129.463499) (xy 85.091318 129.606598) (xy 85.045007 129.766) (xy 88.004992 129.766) (xy 87.958681 129.606598) (xy 87.874053 129.4635) (xy 87.873385 129.462639) (xy 87.873071 129.46184) (xy 87.870019 129.456679) (xy 87.870851 129.456186) (xy 87.847437 129.396554) (xy 87.861336 129.326931) (xy 87.87339 129.308176) (xy 87.874444 129.306815) (xy 87.874453 129.306807) (xy 87.935489 129.203601) (xy 87.959143 129.163605) (xy 87.959143 129.163603) (xy 87.959145 129.163601) (xy 88.005562 129.003831) (xy 88.008499 128.966511) (xy 88.0085 128.966511) (xy 88.0085 128.904239) (xy 88.028502 128.836118) (xy 88.0454 128.815148) (xy 88.486921 128.373628) (xy 88.567032 128.234873) (xy 88.598607 128.117032) (xy 88.6085 128.080111) (xy 88.6085 126.512006) (xy 88.628502 126.443885) (xy 88.6454 126.422915) (xy 89.586922 125.481394) (xy 89.667032 125.34264) (xy 89.698185 125.226373) (xy 89.7085 125.187878) (xy 89.7085 121.535611) (xy 89.728502 121.46749) (xy 89.745399 121.446521) (xy 89.801838 121.390082) (xy 89.864146 121.35606) ) ) (filled_polygon (layer "F.Cu") (pts (xy 101.296121 125.228502) (xy 101.342614 125.282158) (xy 101.354 125.3345) (xy 101.354 126.508) (xy 101.387185 126.508) (xy 101.387184 126.507999) (xy 101.489273 126.497569) (xy 101.489276 126.497568) (xy 101.654707 126.442751) (xy 101.803033 126.351262) (xy 101.803039 126.351257) (xy 101.926257 126.228039) (xy 101.926262 126.228033) (xy 101.967943 126.160458) (xy 102.020729 126.11298) (xy 102.090803 126.101577) (xy 102.14133 126.119364) (xy 102.177472 126.141656) (xy 102.345678 126.197393) (xy 102.345681 126.197394) (xy 102.449483 126.207999) (xy 102.449483 126.208) (xy 103.343774 126.208) (xy 103.411895 126.228002) (xy 103.458388 126.281658) (xy 103.468492 126.351932) (xy 103.438998 126.416512) (xy 103.432869 126.423095) (xy 102.197119 127.658846) (xy 102.056649 127.799315) (xy 102.056644 127.799322) (xy 101.946279 127.964495) (xy 101.870258 128.148024) (xy 101.870256 128.148029) (xy 101.8315 128.342867) (xy 101.8315 128.549082) (xy 101.811498 128.617203) (xy 101.757842 128.663696) (xy 101.687568 128.6738) (xy 101.622988 128.644306) (xy 101.604632 128.624591) (xy 101.527904 128.522095) (xy 101.410965 128.434555) (xy 101.274093 128.383505) (xy 101.213597 128.377) (xy 100.554 128.377) (xy 100.554 129.457749) (xy 100.496853 129.424755) (xy 100.367143 129.39) (xy 100.232857 129.39) (xy 100.103147 129.424755) (xy 100.046 129.457749) (xy 100.046 128.377) (xy 99.6345 128.377) (xy 99.566379 128.356998) (xy 99.519886 128.303342) (xy 99.5085 128.251) (xy 99.5085 127.769244) (xy 99.528502 127.701123) (xy 99.5454 127.680154) (xy 100.68405 126.541504) (xy 100.746358 126.507482) (xy 100.785948 126.505255) (xy 100.812815 126.507999) (xy 100.812815 126.508) (xy 100.846 126.508) (xy 100.846 126.258353) (xy 100.850293 126.225744) (xy 100.8585 126.195117) (xy 100.8585 125.3345) (xy 100.878502 125.266379) (xy 100.932158 125.219886) (xy 100.9845 125.2085) (xy 101.228 125.2085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 112.896121 125.328502) (xy 112.942614 125.382158) (xy 112.954 125.4345) (xy 112.954 126.608) (xy 112.987185 126.608) (xy 112.987184 126.607999) (xy 113.089273 126.597569) (xy 113.089276 126.597568) (xy 113.254707 126.542751) (xy 113.403033 126.451262) (xy 113.403039 126.451257) (xy 113.526257 126.328039) (xy 113.526264 126.32803) (xy 113.61279 126.18775) (xy 113.665576 126.140271) (xy 113.73565 126.128868) (xy 113.773289 126.139705) (xy 113.777474 126.141657) (xy 113.945678 126.197393) (xy 113.945681 126.197394) (xy 114.049483 126.207999) (xy 114.049483 126.208) (xy 114.686576 126.208) (xy 114.754697 126.228002) (xy 114.80119 126.281658) (xy 114.811294 126.351932) (xy 114.7818 126.416512) (xy 114.775671 126.423095) (xy 113.656649 127.542116) (xy 113.656644 127.542123) (xy 113.546279 127.707296) (xy 113.470258 127.890825) (xy 113.470256 127.89083) (xy 113.4315 128.085668) (xy 113.4315 128.549082) (xy 113.411498 128.617203) (xy 113.357842 128.663696) (xy 113.287568 128.6738) (xy 113.222988 128.644306) (xy 113.204632 128.624591) (xy 113.127904 128.522095) (xy 113.010965 128.434555) (xy 112.874093 128.383505) (xy 112.813597 128.377) (xy 112.154 128.377) (xy 112.154 129.457749) (xy 112.096853 129.424755) (xy 111.967143 129.39) (xy 111.832857 129.39) (xy 111.703147 129.424755) (xy 111.646 129.457749) (xy 111.646 128.377) (xy 111.2345 128.377) (xy 111.166379 128.356998) (xy 111.119886 128.303342) (xy 111.1085 128.251) (xy 111.1085 127.704238) (xy 111.128502 127.636117) (xy 111.1454 127.615148) (xy 112.144799 126.615749) (xy 112.207107 126.581727) (xy 112.273523 126.585243) (xy 112.310714 126.597567) (xy 112.310726 126.597569) (xy 112.412815 126.607999) (xy 112.412815 126.608) (xy 112.446 126.608) (xy 112.446 125.4345) (xy 112.466002 125.366379) (xy 112.519658 125.319886) (xy 112.572 125.3085) (xy 112.828 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 124.696121 125.328502) (xy 124.742614 125.382158) (xy 124.754 125.4345) (xy 124.754 126.608) (xy 124.787185 126.608) (xy 124.787184 126.607999) (xy 124.889273 126.597569) (xy 124.889276 126.597568) (xy 125.054707 126.542751) (xy 125.203033 126.451262) (xy 125.203039 126.451257) (xy 125.326257 126.328039) (xy 125.326262 126.328033) (xy 125.395071 126.216478) (xy 125.447857 126.169) (xy 125.517932 126.157597) (xy 125.541945 126.163021) (xy 125.645669 126.197392) (xy 125.645681 126.197394) (xy 125.749483 126.207999) (xy 125.749483 126.208) (xy 126.186576 126.208) (xy 126.254697 126.228002) (xy 126.30119 126.281658) (xy 126.311294 126.351932) (xy 126.2818 126.416512) (xy 126.275671 126.423095) (xy 125.156649 127.542116) (xy 125.156644 127.542123) (xy 125.046279 127.707296) (xy 124.970258 127.890825) (xy 124.970256 127.89083) (xy 124.9315 128.085668) (xy 124.9315 128.549082) (xy 124.911498 128.617203) (xy 124.857842 128.663696) (xy 124.787568 128.6738) (xy 124.722988 128.644306) (xy 124.704632 128.624591) (xy 124.627904 128.522095) (xy 124.510965 128.434555) (xy 124.374093 128.383505) (xy 124.313597 128.377) (xy 123.654 128.377) (xy 123.654 129.457749) (xy 123.596853 129.424755) (xy 123.467143 129.39) (xy 123.332857 129.39) (xy 123.203147 129.424755) (xy 123.146 129.457749) (xy 123.146 128.377) (xy 122.7345 128.377) (xy 122.666379 128.356998) (xy 122.619886 128.303342) (xy 122.6085 128.251) (xy 122.6085 127.604238) (xy 122.628502 127.536117) (xy 122.6454 127.515148) (xy 123.672291 126.488257) (xy 123.734599 126.454235) (xy 123.805414 126.459299) (xy 123.827529 126.470114) (xy 123.945292 126.542751) (xy 124.110723 126.597568) (xy 124.110726 126.597569) (xy 124.212815 126.607999) (xy 124.212815 126.608) (xy 124.246 126.608) (xy 124.246 125.4345) (xy 124.266002 125.366379) (xy 124.319658 125.319886) (xy 124.372 125.3085) (xy 124.628 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 136.196121 125.328502) (xy 136.242614 125.382158) (xy 136.254 125.4345) (xy 136.254 126.608) (xy 136.287185 126.608) (xy 136.287184 126.607999) (xy 136.389273 126.597569) (xy 136.389276 126.597568) (xy 136.554707 126.542751) (xy 136.703033 126.451262) (xy 136.703039 126.451257) (xy 136.826257 126.328039) (xy 136.826262 126.328033) (xy 136.895071 126.216478) (xy 136.947857 126.169) (xy 137.017932 126.157597) (xy 137.041945 126.163021) (xy 137.145669 126.197392) (xy 137.145681 126.197394) (xy 137.249483 126.207999) (xy 137.249483 126.208) (xy 137.786574 126.208) (xy 137.854695 126.228002) (xy 137.901188 126.281658) (xy 137.911292 126.351932) (xy 137.881798 126.416512) (xy 137.87567 126.423095) (xy 137.622418 126.676348) (xy 137.369619 126.929147) (xy 136.897119 127.401647) (xy 136.756649 127.542116) (xy 136.756644 127.542123) (xy 136.646279 127.707296) (xy 136.570258 127.890825) (xy 136.570256 127.89083) (xy 136.5315 128.085668) (xy 136.5315 128.549082) (xy 136.511498 128.617203) (xy 136.457842 128.663696) (xy 136.387568 128.6738) (xy 136.322988 128.644306) (xy 136.304632 128.624591) (xy 136.227904 128.522095) (xy 136.110965 128.434555) (xy 135.974093 128.383505) (xy 135.913597 128.377) (xy 135.254 128.377) (xy 135.254 129.457749) (xy 135.196853 129.424755) (xy 135.067143 129.39) (xy 134.932857 129.39) (xy 134.803147 129.424755) (xy 134.746 129.457749) (xy 134.746 128.377) (xy 134.3345 128.377) (xy 134.266379 128.356998) (xy 134.219886 128.303342) (xy 134.2085 128.251) (xy 134.2085 128.004239) (xy 134.228502 127.936118) (xy 134.245405 127.915144) (xy 135.286437 126.874112) (xy 135.286441 126.874108) (xy 135.295452 126.8585) (xy 135.366552 126.735352) (xy 135.385806 126.663492) (xy 135.422756 126.602873) (xy 135.486617 126.571851) (xy 135.547145 126.576502) (xy 135.610714 126.597567) (xy 135.610726 126.597569) (xy 135.712815 126.607999) (xy 135.712815 126.608) (xy 135.746 126.608) (xy 135.746 125.4345) (xy 135.766002 125.366379) (xy 135.819658 125.319886) (xy 135.872 125.3085) (xy 136.128 125.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 51.86388 123.178501) (xy 51.884854 123.195403) (xy 52.758673 124.069221) (xy 52.758694 124.069244) (xy 52.876365 124.186915) (xy 52.876372 124.186921) (xy 52.9183 124.211128) (xy 52.918301 124.211129) (xy 52.963014 124.236944) (xy 53.015127 124.267032) (xy 53.015133 124.267033) (xy 53.015134 124.267034) (xy 53.057926 124.2785) (xy 53.057927 124.2785) (xy 53.169889 124.3085) (xy 53.16989 124.3085) (xy 53.33011 124.3085) (xy 55.875126 124.3085) (xy 55.943247 124.328502) (xy 55.98974 124.382158) (xy 55.999844 124.452432) (xy 55.99727 124.465431) (xy 55.955437 124.630624) (xy 55.955436 124.63063) (xy 55.955436 124.630632) (xy 55.936844 124.855) (xy 55.954273 125.065335) (xy 55.955437 125.079375) (xy 56.010702 125.297612) (xy 56.010703 125.297613) (xy 56.010704 125.297616) (xy 56.10107 125.503631) (xy 56.101141 125.503793) (xy 56.224275 125.692265) (xy 56.224279 125.69227) (xy 56.376762 125.857908) (xy 56.419592 125.891244) (xy 56.554424 125.996189) (xy 56.58768 126.014186) (xy 56.638071 126.0642) (xy 56.653423 126.133516) (xy 56.628862 126.200129) (xy 56.58768 126.235813) (xy 56.554426 126.25381) (xy 56.554424 126.253811) (xy 56.376762 126.392091) (xy 56.224279 126.557729) (xy 56.224275 126.557735) (xy 56.144778 126.679415) (xy 56.090774 126.725504) (xy 56.039295 126.7365) (xy 53.36995 126.7365) (xy 53.301829 126.716498) (xy 53.280854 126.699595) (xy 52.595403 126.014143) (xy 52.561378 125.951831) (xy 52.558499 125.925048) (xy 52.558499 125.599455) (xy 52.547887 125.495574) (xy 52.52586 125.429099) (xy 52.492115 125.327262) (xy 52.39903 125.176348) (xy 52.399029 125.176347) (xy 52.399024 125.176341) (xy 52.273658 125.050975) (xy 52.273652 125.05097) (xy 52.246136 125.033998) (xy 52.122738 124.957885) (xy 52.032549 124.928) (xy 51.954427 124.902113) (xy 51.95442 124.902112) (xy 51.850553 124.8915) (xy 51.850545 124.8915) (xy 51.4345 124.8915) (xy 51.366379 124.871498) (xy 51.319886 124.817842) (xy 51.3085 124.7655) (xy 51.3085 123.454239) (xy 51.328502 123.386118) (xy 51.345405 123.365144) (xy 51.515145 123.195404) (xy 51.577457 123.161378) (xy 51.60424 123.158499) (xy 51.795759 123.158499) ) ) (filled_polygon (layer "F.Cu") (pts (xy 135.815322 103.679942) (xy 135.836296 103.696845) (xy 137.565856 105.426405) (xy 137.599882 105.488717) (xy 137.594817 105.559532) (xy 137.55227 105.616368) (xy 137.48575 105.641179) (xy 137.476761 105.6415) (xy 135.73071 105.6415) (xy 135.662589 105.621498) (xy 135.637074 105.59981) (xy 135.611255 105.571135) (xy 135.456752 105.458882) (xy 135.282288 105.381206) (xy 135.095487 105.3415) (xy 134.904513 105.3415) (xy 134.717711 105.381206) (xy 134.543247 105.458882) (xy 134.388744 105.571135) (xy 134.260965 105.713048) (xy 134.260958 105.713058) (xy 134.165476 105.878438) (xy 134.165473 105.878444) (xy 134.158511 105.899871) (xy 134.106457 106.060072) (xy 134.086496 106.25) (xy 134.106457 106.439927) (xy 134.130892 106.515127) (xy 134.165473 106.621556) (xy 134.176214 106.64016) (xy 134.260958 106.786941) (xy 134.260965 106.786951) (xy 134.388744 106.928864) (xy 134.388747 106.928866) (xy 134.543248 107.041118) (xy 134.717712 107.118794) (xy 134.904513 107.1585) (xy 135.095487 107.1585) (xy 135.282288 107.118794) (xy 135.456752 107.041118) (xy 135.611253 106.928866) (xy 135.611581 106.928502) (xy 135.637074 106.90019) (xy 135.69752 106.86295) (xy 135.73071 106.8585) (xy 137.945761 106.8585) (xy 138.013882 106.878502) (xy 138.034856 106.895405) (xy 142.299591 111.16014) (xy 142.333617 111.222452) (xy 142.336496 111.249235) (xy 142.336496 111.249999) (xy 142.356457 111.439927) (xy 142.374572 111.495678) (xy 142.415473 111.621556) (xy 142.415476 111.621561) (xy 142.510958 111.786941) (xy 142.510965 111.786951) (xy 142.638744 111.928864) (xy 142.638747 111.928866) (xy 142.793248 112.041118) (xy 142.967712 112.118794) (xy 143.154513 112.1585) (xy 143.17505 112.1585) (xy 143.243171 112.178502) (xy 143.264145 112.195405) (xy 147.592095 116.523355) (xy 147.626121 116.585667) (xy 147.629 116.61245) (xy 147.629 118.067647) (xy 147.608998 118.135768) (xy 147.576516 118.167654) (xy 147.577412 118.168788) (xy 147.571653 118.173341) (xy 147.448347 118.296647) (xy 147.448342 118.296653) (xy 147.356791 118.44508) (xy 147.301937 118.610622) (xy 147.2915 118.712778) (xy 147.2915 119.287212) (xy 147.301937 119.38938) (xy 147.356791 119.55492) (xy 147.448342 119.703346) (xy 147.448347 119.703352) (xy 147.517771 119.772776) (xy 147.551797 119.835088) (xy 147.546732 119.905903) (xy 147.517772 119.950966) (xy 146.814145 120.654595) (xy 146.751832 120.68862) (xy 146.725049 120.6915) (xy 146.679513 120.6915) (xy 146.492711 120.731206) (xy 146.318247 120.808882) (xy 146.163744 120.921135) (xy 146.035965 121.063048) (xy 146.035958 121.063058) (xy 145.940476 121.228438) (xy 145.940473 121.228444) (xy 145.928937 121.263949) (xy 145.881457 121.410072) (xy 145.861496 121.6) (xy 145.881457 121.789927) (xy 145.89954 121.845579) (xy 145.940473 121.971556) (xy 145.940476 121.971561) (xy 146.035958 122.136941) (xy 146.035965 122.136951) (xy 146.163744 122.278864) (xy 146.190015 122.297951) (xy 146.318248 122.391118) (xy 146.492712 122.468794) (xy 146.679513 122.5085) (xy 146.870487 122.5085) (xy 147.057288 122.468794) (xy 147.231752 122.391118) (xy 147.25809 122.371981) (xy 147.324955 122.348124) (xy 147.394106 122.364203) (xy 147.439388 122.407768) (xy 147.476276 122.467571) (xy 147.495013 122.536051) (xy 147.473754 122.603789) (xy 147.469904 122.609226) (xy 147.399112 122.703793) (xy 147.39911 122.703797) (xy 147.348011 122.840795) (xy 147.348009 122.840803) (xy 147.3415 122.90135) (xy 147.3415 124.098649) (xy 147.348009 124.159196) (xy 147.348011 124.159204) (xy 147.39911 124.296202) (xy 147.399112 124.296207) (xy 147.486738 124.413261) (xy 147.603792 124.500887) (xy 147.603794 124.500888) (xy 147.603796 124.500889) (xy 147.662875 124.522924) (xy 147.740795 124.551988) (xy 147.740803 124.55199) (xy 147.80135 124.558499) (xy 147.801355 124.558499) (xy 147.801362 124.5585) (xy 147.801368 124.5585) (xy 148.363061 124.5585) (xy 148.431182 124.578502) (xy 148.477675 124.632158) (xy 148.487779 124.702432) (xy 148.458285 124.767012) (xy 148.43857 124.785368) (xy 148.436738 124.786738) (xy 148.349112 124.903792) (xy 148.34911 124.903797) (xy 148.298011 125.040795) (xy 148.298009 125.040803) (xy 148.2915 125.10135) (xy 148.2915 125.595761) (xy 148.271498 125.663882) (xy 148.254595 125.684856) (xy 147.384856 126.554595) (xy 147.322544 126.588621) (xy 147.295761 126.5915) (xy 146.266373 126.5915) (xy 146.198252 126.571498) (xy 146.177278 126.554595) (xy 146.173658 126.550975) (xy 146.173652 126.55097) (xy 146.119943 126.517842) (xy 146.022738 126.457885) (xy 145.917747 126.423095) (xy 145.854427 126.402113) (xy 145.85442 126.402112) (xy 145.750553 126.3915) (xy 145.65096 126.3915) (xy 145.582839 126.371498) (xy 145.536346 126.317842) (xy 145.526242 126.247568) (xy 145.555736 126.182988) (xy 145.61133 126.145895) (xy 145.622738 126.142115) (xy 145.773652 126.04903) (xy 145.89903 125.923652) (xy 145.992115 125.772738) (xy 146.047887 125.604426) (xy 146.0585 125.500545) (xy 146.058499 124.099456) (xy 146.058415 124.098638) (xy 146.047887 123.995574) (xy 146.039328 123.969744) (xy 145.992115 123.827262) (xy 145.89903 123.676348) (xy 145.899029 123.676347) (xy 145.899024 123.676341) (xy 145.773658 123.550975) (xy 145.773652 123.55097) (xy 145.707346 123.510072) (xy 145.622738 123.457885) (xy 145.538582 123.429999) (xy 145.454427 123.402113) (xy 145.45442 123.402112) (xy 145.350553 123.3915) (xy 145.350545 123.3915) (xy 143.869924 123.3915) (xy 143.801803 123.371498) (xy 143.780829 123.354595) (xy 142.642883 122.216649) (xy 142.642881 122.216647) (xy 142.537896 122.146498) (xy 142.477703 122.106278) (xy 142.477699 122.106276) (xy 142.461278 122.099474) (xy 142.405998 122.054924) (xy 142.38358 121.98756) (xy 142.3835 121.983067) (xy 142.3835 120.201367) (xy 142.383499 120.20135) (xy 142.37699 120.140803) (xy 142.376988 120.140795) (xy 142.327986 120.009419) (xy 142.325889 120.003796) (xy 142.325888 120.003794) (xy 142.325887 120.003792) (xy 142.238261 119.886738) (xy 142.121207 119.799112) (xy 142.121202 119.79911) (xy 141.984204 119.748011) (xy 141.984196 119.748009) (xy 141.923649 119.7415) (xy 141.923638 119.7415) (xy 140.126362 119.7415) (xy 140.12635 119.7415) (xy 140.065803 119.748009) (xy 140.065795 119.748011) (xy 139.928797 119.79911) (xy 139.928792 119.799112) (xy 139.811738 119.886738) (xy 139.724112 120.003792) (xy 139.724111 120.003795) (xy 139.68 120.122058) (xy 139.637453 120.178893) (xy 139.570932 120.203703) (xy 139.501558 120.188611) (xy 139.469246 120.163363) (xy 139.40824 120.097094) (xy 139.408239 120.097093) (xy 139.408237 120.097091) (xy 139.326382 120.033381) (xy 139.230576 119.958811) (xy 139.032574 119.851658) (xy 139.032572 119.851657) (xy 139.032571 119.851656) (xy 138.819639 119.778557) (xy 138.81963 119.778555) (xy 138.738715 119.765053) (xy 138.597569 119.7415) (xy 138.372431 119.7415) (xy 138.290289 119.755207) (xy 138.155238 119.777742) (xy 138.084754 119.769224) (xy 138.030064 119.723952) (xy 138.008532 119.6563) (xy 138.0085 119.65346) (xy 138.0085 117.084499) (xy 138.028502 117.016378) (xy 138.082158 116.969885) (xy 138.1345 116.958499) (xy 138.187212 116.958499) (xy 138.289381 116.948062) (xy 138.45492 116.893209) (xy 138.603346 116.801658) (xy 138.651004 116.754) (xy 138.710905 116.6941) (xy 138.773217 116.660074) (xy 138.844032 116.665139) (xy 138.889095 116.6941) (xy 138.996647 116.801652) (xy 138.996653 116.801657) (xy 138.996654 116.801658) (xy 139.14508 116.893209) (xy 139.310619 116.948062) (xy 139.412787 116.9585) (xy 140.012212 116.958499) (xy 140.114381 116.948062) (xy 140.27992 116.893209) (xy 140.428346 116.801658) (xy 140.551658 116.678346) (xy 140.643209 116.52992) (xy 140.698062 116.364381) (xy 140.7085 116.262213) (xy 140.708499 115.687788) (xy 140.708282 115.685668) (xy 140.698062 115.585619) (xy 140.691436 115.565624) (xy 140.643209 115.42008) (xy 140.551658 115.271654) (xy 140.551657 115.271653) (xy 140.551652 115.271647) (xy 140.428352 115.148347) (xy 140.428347 115.148343) (xy 140.428346 115.148342) (xy 140.407482 115.135473) (xy 140.380804 115.119017) (xy 140.333327 115.06623) (xy 140.323375 115.036364) (xy 140.321655 115.027715) (xy 140.301477 114.979001) (xy 140.273901 114.912425) (xy 140.204572 114.808667) (xy 140.204567 114.808661) (xy 139.645404 114.249498) (xy 139.611378 114.187186) (xy 139.608499 114.160403) (xy 139.608499 113.649454) (xy 139.607678 113.641417) (xy 139.620654 113.571616) (xy 139.669308 113.519912) (xy 139.669793 113.519629) (xy 139.726444 113.486922) (xy 139.867962 113.345403) (xy 139.930272 113.31138) (xy 139.957056 113.3085) (xy 140.47427 113.3085) (xy 140.542391 113.328502) (xy 140.567906 113.35019) (xy 140.638744 113.428864) (xy 140.658488 113.443209) (xy 140.793248 113.541118) (xy 140.967712 113.618794) (xy 141.154513 113.6585) (xy 141.345487 113.6585) (xy 141.532288 113.618794) (xy 141.706752 113.541118) (xy 141.861253 113.428866) (xy 141.873869 113.414855) (xy 141.989034 113.286951) (xy 141.989035 113.286949) (xy 141.98904 113.286944) (xy 142.084527 113.121556) (xy 142.143542 112.939928) (xy 142.163504 112.75) (xy 142.143542 112.560072) (xy 142.084527 112.378444) (xy 141.98904 112.213056) (xy 141.989038 112.213054) (xy 141.989034 112.213048) (xy 141.861255 112.071135) (xy 141.706752 111.958882) (xy 141.532288 111.881206) (xy 141.345487 111.8415) (xy 141.154513 111.8415) (xy 140.967711 111.881206) (xy 140.793247 111.958882) (xy 140.643837 112.067436) (xy 140.576969 112.091294) (xy 140.569776 112.0915) (xy 139.572705 112.0915) (xy 139.526816 112.103795) (xy 139.526817 112.103796) (xy 139.417943 112.132968) (xy 139.417942 112.132968) (xy 139.366564 112.162633) (xy 139.366563 112.162633) (xy 139.280851 112.212119) (xy 139.217851 112.229) (xy 138.272 112.229) (xy 138.203879 112.208998) (xy 138.157386 112.155342) (xy 138.146 112.103) (xy 138.146 111.721) (xy 138.654 111.721) (xy 139.608 111.721) (xy 139.608 111.599483) (xy 139.597394 111.495681) (xy 139.597393 111.495678) (xy 139.541657 111.327474) (xy 139.448634 111.17666) (xy 139.448629 111.176654) (xy 139.323345 111.05137) (xy 139.323339 111.051365) (xy 139.172525 110.958342) (xy 139.004321 110.902606) (xy 139.004318 110.902605) (xy 138.900516 110.892) (xy 138.654 110.892) (xy 138.654 111.721) (xy 138.146 111.721) (xy 138.146 110.892) (xy 137.899483 110.892) (xy 137.795681 110.902605) (xy 137.795678 110.902606) (xy 137.627474 110.958342) (xy 137.47666 111.051365) (xy 137.476658 111.051367) (xy 137.44174 111.086284) (xy 137.379427 111.120307) (xy 137.308612 111.115241) (xy 137.263553 111.086282) (xy 137.040349 110.863078) (xy 137.040346 110.863076) (xy 137.040345 110.863075) (xy 136.901599 110.78297) (xy 136.901596 110.782969) (xy 136.901595 110.782968) (xy 136.901593 110.782967) (xy 136.901592 110.782967) (xy 136.767064 110.746921) (xy 136.767064 110.74692) (xy 136.767062 110.74692) (xy 136.746836 110.7415) (xy 136.746833 110.7415) (xy 135.744889 110.7415) (xy 135.728095 110.746) (xy 135.724658 110.746921) (xy 135.590129 110.782967) (xy 135.590122 110.78297) (xy 135.451375 110.863076) (xy 135.451369 110.863081) (xy 135.055597 111.258852) (xy 134.993285 111.292877) (xy 134.926872 111.289361) (xy 134.889381 111.276938) (xy 134.889379 111.276937) (xy 134.889377 111.276937) (xy 134.787221 111.2665) (xy 134.187787 111.2665) (xy 134.085619 111.276937) (xy 133.920079 111.331791) (xy 133.771653 111.423342) (xy 133.771647 111.423347) (xy 133.648347 111.546647) (xy 133.64834 111.546656) (xy 133.626757 111.581648) (xy 133.573971 111.629126) (xy 133.519517 111.6415) (xy 133.479239 111.6415) (xy 133.411118 111.621498) (xy 133.390144 111.604595) (xy 133.145405 111.359856) (xy 133.111379 111.297544) (xy 133.1085 111.270761) (xy 133.1085 106.64016) (xy 133.106101 106.631206) (xy 133.067032 106.485398) (xy 133.02208 106.407539) (xy 132.986922 106.346643) (xy 132.986919 106.34664) (xy 132.986916 106.346636) (xy 130.515314 103.875035) (xy 130.481289 103.812723) (xy 130.486353 103.741908) (xy 130.5289 103.685072) (xy 130.59542 103.660261) (xy 130.604409 103.65994) (xy 135.747201 103.65994) ) ) (filled_polygon (layer "F.Cu") (pts (xy 84.343388 124.084261) (xy 84.38457 124.142093) (xy 84.3915 124.183304) (xy 84.3915 125.36797) (xy 84.40788 125.429099) (xy 84.412234 125.44535) (xy 84.432967 125.522729) (xy 84.43297 125.522736) (xy 84.445898 125.545127) (xy 84.503083 125.644175) (xy 84.50789 125.6525) (xy 84.524628 125.721495) (xy 84.501408 125.788587) (xy 84.445601 125.832474) (xy 84.410901 125.839161) (xy 84.411075 125.84081) (xy 84.404517 125.841498) (xy 84.217711 125.881206) (xy 84.043247 125.958882) (xy 83.888744 126.071135) (xy 83.760965 126.213048) (xy 83.760958 126.213058) (xy 83.676581 126.359204) (xy 83.665473 126.378444) (xy 83.653104 126.416512) (xy 83.632253 126.480682) (xy 83.592178 126.539287) (xy 83.526781 126.566923) (xy 83.456825 126.554815) (xy 83.404519 126.506809) (xy 83.403301 126.504744) (xy 83.386924 126.476378) (xy 83.386919 126.476372) (xy 83.164354 126.253807) (xy 82.934916 126.024369) (xy 82.900893 125.962059) (xy 82.905957 125.891244) (xy 82.934915 125.846183) (xy 83.136921 125.644179) (xy 83.217031 125.505424) (xy 83.22113 125.490127) (xy 83.22347 125.481396) (xy 83.236035 125.4345) (xy 83.258499 125.350663) (xy 83.258499 124.7345) (xy 83.278501 124.666379) (xy 83.332157 124.619886) (xy 83.384499 124.6085) (xy 83.445486 124.6085) (xy 83.632287 124.568794) (xy 83.806751 124.491118) (xy 83.961252 124.378866) (xy 83.961254 124.378864) (xy 84.089033 124.236951) (xy 84.089034 124.236949) (xy 84.089039 124.236944) (xy 84.156381 124.120303) (xy 84.207763 124.071311) (xy 84.277477 124.057875) ) ) (filled_polygon (layer "F.Cu") (pts (xy 103.6135 122.551214) (xy 103.670336 122.593761) (xy 103.67422 122.59925) (xy 103.676647 122.602881) (xy 103.828361 122.754595) (xy 104.270787 123.197022) (xy 104.304812 123.259334) (xy 104.299747 123.33015) (xy 104.270787 123.375212) (xy 104.254 123.391999) (xy 104.254 124.546) (xy 106.258 124.546) (xy 106.258 124.099483) (xy 106.252669 124.047307) (xy 106.265643 123.977506) (xy 106.314295 123.9258) (xy 106.378016 123.9085) (xy 106.62148 123.9085) (xy 106.689601 123.928502) (xy 106.736094 123.982158) (xy 106.746827 124.047307) (xy 106.7415 124.099446) (xy 106.7415 125.080074) (xy 106.721498 125.148195) (xy 106.704596 125.169169) (xy 106.478692 125.395074) (xy 106.416379 125.429099) (xy 106.389596 125.431979) (xy 106.384 125.431979) (xy 106.315879 125.411977) (xy 106.269386 125.358321) (xy 106.258 125.305979) (xy 106.258 125.054) (xy 103.872 125.054) (xy 103.803879 125.033998) (xy 103.757386 124.980342) (xy 103.746 124.928) (xy 103.746 123.392) (xy 102.449483 123.392) (xy 102.345681 123.402605) (xy 102.345674 123.402606) (xy 102.242572 123.436771) (xy 102.171618 123.439211) (xy 102.110608 123.402902) (xy 102.078912 123.339373) (xy 102.077593 123.329983) (xy 102.073062 123.285619) (xy 102.018209 123.12008) (xy 102.006221 123.100645) (xy 101.987485 123.032168) (xy 102.008744 122.964429) (xy 102.063251 122.918937) (xy 102.113463 122.9085) (xy 102.980109 122.9085) (xy 102.98011 122.9085) (xy 102.980111 122.9085) (xy 103.060645 122.886921) (xy 103.134873 122.867032) (xy 103.273627 122.786922) (xy 103.480374 122.580173) (xy 103.542684 122.54615) ) ) (filled_polygon (layer "F.Cu") (pts (xy 118.283621 124.128502) (xy 118.330114 124.182158) (xy 118.3415 124.2345) (xy 118.3415 125.2655) (xy 118.321498 125.333621) (xy 118.267842 125.380114) (xy 118.2155 125.3915) (xy 117.984 125.3915) (xy 117.915879 125.371498) (xy 117.869386 125.317842) (xy 117.858 125.2655) (xy 117.858 125.054) (xy 115.472 125.054) (xy 115.403879 125.033998) (xy 115.357386 124.980342) (xy 115.346 124.928) (xy 115.346 124.672) (xy 115.366002 124.603879) (xy 115.419658 124.557386) (xy 115.472 124.546) (xy 117.858 124.546) (xy 117.858 124.2345) (xy 117.878002 124.166379) (xy 117.931658 124.119886) (xy 117.984 124.1085) (xy 118.2155 124.1085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 126.778689 122.521025) (xy 126.823752 122.549986) (xy 127.520787 123.247021) (xy 127.554813 123.309333) (xy 127.552633 123.339809) (xy 127.554 123.339809) (xy 127.554 124.546) (xy 129.558 124.546) (xy 129.558 124.099483) (xy 129.547394 123.995681) (xy 129.547392 123.995671) (xy 129.540255 123.974131) (xy 129.537816 123.903176) (xy 129.574124 123.842167) (xy 129.637654 123.810472) (xy 129.65986 123.8085) (xy 129.939613 123.8085) (xy 130.007734 123.828502) (xy 130.054227 123.882158) (xy 130.064331 123.952432) (xy 130.059218 123.97413) (xy 130.052115 123.995566) (xy 130.052112 123.995579) (xy 130.0415 124.099446) (xy 130.0415 125.2655) (xy 130.021498 125.333621) (xy 129.967842 125.380114) (xy 129.9155 125.3915) (xy 129.684 125.3915) (xy 129.615879 125.371498) (xy 129.569386 125.317842) (xy 129.558 125.2655) (xy 129.558 125.054) (xy 127.172 125.054) (xy 127.103879 125.033998) (xy 127.057386 124.980342) (xy 127.046 124.928) (xy 127.046 123.392) (xy 125.749483 123.392) (xy 125.645681 123.402605) (xy 125.645674 123.402606) (xy 125.614816 123.412832) (xy 125.543861 123.415272) (xy 125.482851 123.378963) (xy 125.455579 123.332859) (xy 125.418209 123.22008) (xy 125.406221 123.200645) (xy 125.387485 123.132168) (xy 125.408744 123.064429) (xy 125.463251 123.018937) (xy 125.513463 123.0085) (xy 126.015109 123.0085) (xy 126.01511 123.0085) (xy 126.015111 123.0085) (xy 126.103617 122.984785) (xy 126.169873 122.967032) (xy 126.308627 122.886922) (xy 126.645563 122.549984) (xy 126.707873 122.515961) ) ) (filled_polygon (layer "F.Cu") (pts (xy 141.483621 124.028502) (xy 141.530114 124.082158) (xy 141.5415 124.1345) (xy 141.5415 125.080074) (xy 141.521498 125.148195) (xy 141.504596 125.169169) (xy 141.31966 125.354106) (xy 141.257348 125.388131) (xy 141.230564 125.391011) (xy 141.184 125.391011) (xy 141.115879 125.371009) (xy 141.069386 125.317353) (xy 141.058 125.265011) (xy 141.058 125.054) (xy 138.672 125.054) (xy 138.603879 125.033998) (xy 138.557386 124.980342) (xy 138.546 124.928) (xy 138.546 124.672) (xy 138.566002 124.603879) (xy 138.619658 124.557386) (xy 138.672 124.546) (xy 141.058 124.546) (xy 141.058 124.1345) (xy 141.078002 124.066379) (xy 141.131658 124.019886) (xy 141.184 124.0085) (xy 141.4155 124.0085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 78.800385 114.107592) (xy 78.815502 114.117306) (xy 78.885745 114.16989) (xy 78.913796 114.190889) (xy 79.050795 114.241988) (xy 79.050803 114.24199) (xy 79.11135 114.248499) (xy 79.111355 114.248499) (xy 79.111362 114.2485) (xy 80.435761 114.2485) (xy 80.503882 114.268502) (xy 80.524856 114.285405) (xy 83.954595 117.715144) (xy 83.988621 117.777456) (xy 83.9915 117.804239) (xy 83.9915 121.180111) (xy 83.994594 121.191658) (xy 83.996867 121.200138) (xy 83.996868 121.200143) (xy 84.032967 121.33487) (xy 84.03297 121.334877) (xy 84.113075 121.473623) (xy 84.113077 121.473625) (xy 84.113078 121.473627) (xy 85.004596 122.365145) (xy 85.03862 122.427456) (xy 85.0415 122.454239) (xy 85.0415 122.616511) (xy 85.044437 122.653828) (xy 85.044437 122.653829) (xy 85.090856 122.813605) (xy 85.15524 122.922471) (xy 85.1727 122.991287) (xy 85.150183 123.058618) (xy 85.10162 123.097697) (xy 85.10228 123.098839) (xy 85.095128 123.102967) (xy 85.095128 123.102968) (xy 84.990149 123.163578) (xy 84.97326 123.173328) (xy 84.956373 123.183078) (xy 84.956365 123.183084) (xy 84.513083 123.626366) (xy 84.513077 123.626374) (xy 84.489287 123.66758) (xy 84.437904 123.716573) (xy 84.36819 123.730008) (xy 84.302279 123.703621) (xy 84.261098 123.645789) (xy 84.254858 123.617749) (xy 84.253431 123.604176) (xy 84.243541 123.510072) (xy 84.184526 123.328444) (xy 84.089039 123.163056) (xy 84.089037 123.163054) (xy 84.089033 123.163048) (xy 83.961254 123.021135) (xy 83.806751 122.908882) (xy 83.632287 122.831206) (xy 83.445486 122.7915) (xy 83.254512 122.7915) (xy 83.067708 122.831206) (xy 82.968748 122.875266) (xy 82.898381 122.8847) (xy 82.834084 122.854593) (xy 82.796271 122.794504) (xy 82.796502 122.725009) (xy 82.805561 122.693831) (xy 82.808498 122.656511) (xy 82.808499 122.656511) (xy 82.808499 122.223489) (xy 82.808498 122.223488) (xy 82.807959 122.216644) (xy 82.805561 122.186169) (xy 82.759144 122.026399) (xy 82.759142 122.026397) (xy 82.759142 122.026394) (xy 82.674454 121.883196) (xy 82.674449 121.883189) (xy 82.556809 121.765549) (xy 82.556802 121.765544) (xy 82.413605 121.680857) (xy 82.413601 121.680856) (xy 82.4136 121.680855) (xy 82.357262 121.664487) (xy 82.297428 121.626275) (xy 82.267751 121.561778) (xy 82.277655 121.491476) (xy 82.323994 121.437688) (xy 82.352785 121.423886) (xy 82.36992 121.418209) (xy 82.518346 121.326658) (xy 82.641658 121.203346) (xy 82.733209 121.05492) (xy 82.788062 120.889381) (xy 82.7985 120.787213) (xy 82.798499 120.212788) (xy 82.797908 120.207007) (xy 82.788062 120.110619) (xy 82.753858 120.007396) (xy 82.733209 119.94508) (xy 82.641658 119.796654) (xy 82.559416 119.714412) (xy 82.525393 119.652103) (xy 82.530457 119.581287) (xy 82.533412 119.574058) (xy 82.534521 119.571566) (xy 82.534527 119.571556) (xy 82.593542 119.389928) (xy 82.613504 119.2) (xy 82.593542 119.010072) (xy 82.534527 118.828444) (xy 82.43904 118.663056) (xy 82.439038 118.663054) (xy 82.439034 118.663048) (xy 82.311255 118.521135) (xy 82.156752 118.408882) (xy 81.982288 118.331206) (xy 81.795487 118.2915) (xy 81.694239 118.2915) (xy 81.626118 118.271498) (xy 81.605144 118.254595) (xy 80.273633 116.923083) (xy 80.273623 116.923075) (xy 80.148229 116.850679) (xy 80.103989 116.807708) (xy 80.041658 116.706654) (xy 80.041657 116.706653) (xy 80.041652 116.706647) (xy 79.918352 116.583347) (xy 79.918346 116.583342) (xy 79.902134 116.573342) (xy 79.76992 116.491791) (xy 79.604381 116.436938) (xy 79.604379 116.436937) (xy 79.604377 116.436937) (xy 79.502221 116.4265) (xy 78.902787 116.4265) (xy 78.800619 116.436937) (xy 78.635079 116.491791) (xy 78.486653 116.583342) (xy 78.486647 116.583347) (xy 78.379095 116.6909) (xy 78.316783 116.724926) (xy 78.245968 116.719861) (xy 78.200905 116.6909) (xy 78.093352 116.583347) (xy 78.093346 116.583342) (xy 78.077134 116.573342) (xy 77.94492 116.491791) (xy 77.779381 116.436938) (xy 77.779379 116.436937) (xy 77.779377 116.436937) (xy 77.677221 116.4265) (xy 77.077787 116.4265) (xy 76.975619 116.436937) (xy 76.810079 116.491791) (xy 76.768529 116.51742) (xy 76.700645 116.559291) (xy 76.632168 116.578028) (xy 76.564429 116.556769) (xy 76.518937 116.502262) (xy 76.5085 116.45205) (xy 76.5085 115.854204) (xy 76.5085 115.854203) (xy 76.485615 115.768794) (xy 76.485615 115.768793) (xy 76.485615 115.768792) (xy 76.467034 115.699448) (xy 76.467033 115.699447) (xy 76.467032 115.699441) (xy 76.401317 115.585619) (xy 76.386924 115.56069) (xy 76.386916 115.56068) (xy 75.28983 114.463595) (xy 75.255805 114.401283) (xy 75.260869 114.330468) (xy 75.303416 114.273632) (xy 75.369936 114.248821) (xy 75.378925 114.2485) (xy 75.828632 114.2485) (xy 75.828638 114.2485) (xy 75.828645 114.248499) (xy 75.828649 114.248499) (xy 75.889196 114.24199) (xy 75.889199 114.241989) (xy 75.889201 114.241989) (xy 76.026204 114.190889) (xy 76.124492 114.117311) (xy 76.191011 114.092501) (xy 76.260385 114.107592) (xy 76.275502 114.117306) (xy 76.345745 114.16989) (xy 76.373796 114.190889) (xy 76.510795 114.241988) (xy 76.510803 114.24199) (xy 76.57135 114.248499) (xy 76.571355 114.248499) (xy 76.571362 114.2485) (xy 76.571368 114.2485) (xy 78.368632 114.2485) (xy 78.368638 114.2485) (xy 78.368645 114.248499) (xy 78.368649 114.248499) (xy 78.429196 114.24199) (xy 78.429199 114.241989) (xy 78.429201 114.241989) (xy 78.566204 114.190889) (xy 78.664492 114.117311) (xy 78.731011 114.092501) ) ) (filled_polygon (layer "F.Cu") (pts (xy 55.897634 121.978502) (xy 55.944127 122.032158) (xy 55.955082 122.094901) (xy 55.936844 122.315) (xy 55.955161 122.536051) (xy 55.955437 122.539375) (xy 56.010702 122.757612) (xy 56.010703 122.757613) (xy 56.010704 122.757616) (xy 56.079689 122.914887) (xy 56.088735 122.985305) (xy 56.058274 123.049435) (xy 55.997978 123.086916) (xy 55.964301 123.0915) (xy 53.554238 123.0915) (xy 53.486117 123.071498) (xy 53.465143 123.054595) (xy 52.745404 122.334856) (xy 52.711378 122.272544) (xy 52.708499 122.245761) (xy 52.708499 122.0845) (xy 52.728501 122.016379) (xy 52.782157 121.969886) (xy 52.834499 121.9585) (xy 55.829513 121.9585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 108.917012 112.703015) (xy 108.923595 112.709144) (xy 109.555395 113.340944) (xy 109.589421 113.403256) (xy 109.584356 113.474071) (xy 109.541809 113.530907) (xy 109.501767 113.54912) (xy 109.502206 113.550443) (xy 109.327474 113.608342) (xy 109.17666 113.701365) (xy 109.176654 113.70137) (xy 109.05137 113.826654) (xy 109.051365 113.82666) (xy 108.958342 113.977474) (xy 108.902606 114.145678) (xy 108.902605 114.145681) (xy 108.892 114.249483) (xy 108.892 114.296) (xy 110.908 114.296) (xy 110.908 114.249483) (xy 110.897394 114.145681) (xy 110.897393 114.145678) (xy 110.857118 114.024133) (xy 110.854678 113.953178) (xy 110.890986 113.892168) (xy 110.954515 113.860473) (xy 110.976723 113.8585) (xy 111.1405 113.8585) (xy 111.208621 113.878502) (xy 111.255114 113.932158) (xy 111.2665 113.9845) (xy 111.2665 114.350544) (xy 111.277112 114.454425) (xy 111.332885 114.622738) (xy 111.42597 114.773652) (xy 111.425975 114.773658) (xy 111.551341 114.899024) (xy 111.551347 114.899029) (xy 111.551348 114.89903) (xy 111.702262 114.992115) (xy 111.870574 115.047887) (xy 111.974455 115.0585) (xy 112.575544 115.058499) (xy 112.679426 115.047887) (xy 112.847738 114.992115) (xy 112.847745 114.99211) (xy 112.854392 114.989012) (xy 112.855211 114.990768) (xy 112.914169 114.974623) (xy 112.981912 114.995869) (xy 113.000958 115.011507) (xy 113.504595 115.515144) (xy 113.538621 115.577456) (xy 113.5415 115.604239) (xy 113.5415 117.49576) (xy 113.521498 117.563881) (xy 113.504595 117.584855) (xy 111.313083 119.776366) (xy 111.313075 119.776376) (xy 111.23297 119.915122) (xy 111.232965 119.915134) (xy 111.219059 119.96703) (xy 111.21906 119.967031) (xy 111.1915 120.069888) (xy 111.1915 122.762893) (xy 111.171498 122.831014) (xy 111.117842 122.877507) (xy 111.047568 122.887611) (xy 111.002501 122.872013) (xy 110.934875 122.832969) (xy 110.93487 122.832967) (xy 110.819066 122.801938) (xy 110.819066 122.801937) (xy 110.780111 122.7915) (xy 109.704239 122.7915) (xy 109.636118 122.771498) (xy 109.615144 122.754595) (xy 109.445405 122.584856) (xy 109.411379 122.522544) (xy 109.4085 122.495761) (xy 109.4085 120.41989) (xy 109.4085 120.419889) (xy 109.367032 120.265128) (xy 109.365649 120.262732) (xy 109.303056 120.154318) (xy 109.286924 120.126376) (xy 109.286916 120.126366) (xy 107.545405 118.384855) (xy 107.511379 118.322543) (xy 107.5085 118.29576) (xy 107.5085 116.850516) (xy 111.267 116.850516) (xy 111.277605 116.954318) (xy 111.277606 116.954321) (xy 111.333342 117.122525) (xy 111.426365 117.273339) (xy 111.42637 117.273345) (xy 111.551654 117.398629) (xy 111.55166 117.398634) (xy 111.702474 117.491657) (xy 111.870678 117.547393) (xy 111.870681 117.547394) (xy 111.974483 117.557999) (xy 111.974483 117.558) (xy 112.021 117.558) (xy 112.529 117.558) (xy 112.575517 117.558) (xy 112.575516 117.557999) (xy 112.679318 117.547394) (xy 112.679321 117.547393) (xy 112.847525 117.491657) (xy 112.998339 117.398634) (xy 112.998345 117.398629) (xy 113.123629 117.273345) (xy 113.123634 117.273339) (xy 113.216657 117.122525) (xy 113.272393 116.954321) (xy 113.272394 116.954318) (xy 113.282999 116.850516) (xy 113.283 116.850516) (xy 113.283 116.804) (xy 112.529 116.804) (xy 112.529 117.558) (xy 112.021 117.558) (xy 112.021 116.804) (xy 111.267 116.804) (xy 111.267 116.850516) (xy 107.5085 116.850516) (xy 107.5085 116.249483) (xy 111.267 116.249483) (xy 111.267 116.296) (xy 112.021 116.296) (xy 112.529 116.296) (xy 113.283 116.296) (xy 113.283 116.249483) (xy 113.272394 116.145681) (xy 113.272393 116.145678) (xy 113.216657 115.977474) (xy 113.123634 115.82666) (xy 113.123629 115.826654) (xy 112.998345 115.70137) (xy 112.998339 115.701365) (xy 112.847525 115.608342) (xy 112.679321 115.552606) (xy 112.679318 115.552605) (xy 112.575516 115.542) (xy 112.529 115.542) (xy 112.529 116.296) (xy 112.021 116.296) (xy 112.021 115.542) (xy 111.974483 115.542) (xy 111.870681 115.552605) (xy 111.870678 115.552606) (xy 111.702474 115.608342) (xy 111.55166 115.701365) (xy 111.551654 115.70137) (xy 111.42637 115.826654) (xy 111.426365 115.82666) (xy 111.333342 115.977474) (xy 111.277606 116.145678) (xy 111.277605 116.145681) (xy 111.267 116.249483) (xy 107.5085 116.249483) (xy 107.5085 115.684499) (xy 107.528502 115.616378) (xy 107.582158 115.569885) (xy 107.6345 115.558499) (xy 107.700544 115.558499) (xy 107.804426 115.547887) (xy 107.972738 115.492115) (xy 108.123652 115.39903) (xy 108.24903 115.273652) (xy 108.342115 115.122738) (xy 108.397887 114.954426) (xy 108.4085 114.850545) (xy 108.4085 114.850516) (xy 108.892 114.850516) (xy 108.902605 114.954318) (xy 108.902606 114.954321) (xy 108.958342 115.122525) (xy 109.051365 115.273339) (xy 109.05137 115.273345) (xy 109.176654 115.398629) (xy 109.17666 115.398634) (xy 109.327474 115.491657) (xy 109.495678 115.547393) (xy 109.495681 115.547394) (xy 109.599483 115.557999) (xy 109.599483 115.558) (xy 109.646 115.558) (xy 110.154 115.558) (xy 110.200517 115.558) (xy 110.200516 115.557999) (xy 110.304318 115.547394) (xy 110.304321 115.547393) (xy 110.472525 115.491657) (xy 110.623339 115.398634) (xy 110.623345 115.398629) (xy 110.748629 115.273345) (xy 110.748634 115.273339) (xy 110.841657 115.122525) (xy 110.897393 114.954321) (xy 110.897394 114.954318) (xy 110.907999 114.850516) (xy 110.908 114.850516) (xy 110.908 114.804) (xy 110.154 114.804) (xy 110.154 115.558) (xy 109.646 115.558) (xy 109.646 114.804) (xy 108.892 114.804) (xy 108.892 114.850516) (xy 108.4085 114.850516) (xy 108.408499 114.249456) (xy 108.404733 114.212595) (xy 108.397887 114.145574) (xy 108.394633 114.135755) (xy 108.369231 114.059097) (xy 108.366792 113.988144) (xy 108.4031 113.927134) (xy 108.438388 113.905368) (xy 108.438299 113.905205) (xy 108.441379 113.903522) (xy 108.444802 113.901411) (xy 108.446204 113.900889) (xy 108.563261 113.813261) (xy 108.598892 113.765664) (xy 108.650887 113.696207) (xy 108.650887 113.696206) (xy 108.650889 113.696204) (xy 108.701989 113.559201) (xy 108.702185 113.557386) (xy 108.708499 113.498649) (xy 108.7085 113.498632) (xy 108.7085 112.798239) (xy 108.728502 112.730118) (xy 108.782158 112.683625) (xy 108.852432 112.673521) ) ) (filled_polygon (layer "F.Cu") (pts (xy 120.313882 112.428502) (xy 120.334856 112.445405) (xy 121.374358 113.484908) (xy 121.408384 113.54722) (xy 121.403319 113.618036) (xy 121.360772 113.674871) (xy 121.294252 113.699682) (xy 121.272456 113.69935) (xy 121.200516 113.692) (xy 121.154 113.692) (xy 121.154 114.446) (xy 121.908 114.446) (xy 121.908 114.399483) (xy 121.897394 114.295681) (xy 121.897393 114.295678) (xy 121.841657 114.127474) (xy 121.748009 113.975647) (xy 121.729272 113.907167) (xy 121.750531 113.839429) (xy 121.805038 113.793937) (xy 121.85525 113.7835) (xy 122.00511 113.7835) (xy 122.3155 113.7835) (xy 122.383621 113.803502) (xy 122.430114 113.857158) (xy 122.4415 113.9095) (xy 122.4415 114.350544) (xy 122.452112 114.454425) (xy 122.507885 114.622738) (xy 122.60097 114.773652) (xy 122.600975 114.773658) (xy 122.726341 114.899024) (xy 122.726347 114.899029) (xy 122.726348 114.89903) (xy 122.877262 114.992115) (xy 123.045574 115.047887) (xy 123.149455 115.0585) (xy 123.750544 115.058499) (xy 123.854426 115.047887) (xy 124.022738 114.992115) (xy 124.173652 114.89903) (xy 124.237934 114.834748) (xy 124.30422 114.768463) (xy 124.306548 114.770791) (xy 124.352387 114.738185) (xy 124.423305 114.734843) (xy 124.482632 114.768181) (xy 124.804595 115.090144) (xy 124.838621 115.152456) (xy 124.8415 115.179239) (xy 124.8415 117.47076) (xy 124.821498 117.538881) (xy 124.804595 117.559855) (xy 122.913083 119.451366) (xy 122.913075 119.451376) (xy 122.83297 119.590122) (xy 122.832965 119.590134) (xy 122.817262 119.648737) (xy 122.817263 119.648738) (xy 122.7915 119.744888) (xy 122.7915 122.662893) (xy 122.771498 122.731014) (xy 122.717842 122.777507) (xy 122.647568 122.787611) (xy 122.602501 122.772013) (xy 122.534875 122.732969) (xy 122.53487 122.732967) (xy 122.419066 122.701938) (xy 122.419066 122.701937) (xy 122.380111 122.6915) (xy 121.204239 122.6915) (xy 121.136118 122.671498) (xy 121.115144 122.654595) (xy 120.345405 121.884856) (xy 120.311379 121.822544) (xy 120.3085 121.795761) (xy 120.3085 116.850516) (xy 122.442 116.850516) (xy 122.452605 116.954318) (xy 122.452606 116.954321) (xy 122.508342 117.122525) (xy 122.601365 117.273339) (xy 122.60137 117.273345) (xy 122.726654 117.398629) (xy 122.72666 117.398634) (xy 122.877474 117.491657) (xy 123.045678 117.547393) (xy 123.045681 117.547394) (xy 123.149483 117.557999) (xy 123.149483 117.558) (xy 123.196 117.558) (xy 123.704 117.558) (xy 123.750517 117.558) (xy 123.750516 117.557999) (xy 123.854318 117.547394) (xy 123.854321 117.547393) (xy 124.022525 117.491657) (xy 124.173339 117.398634) (xy 124.173345 117.398629) (xy 124.298629 117.273345) (xy 124.298634 117.273339) (xy 124.391657 117.122525) (xy 124.447393 116.954321) (xy 124.447394 116.954318) (xy 124.457999 116.850516) (xy 124.458 116.850516) (xy 124.458 116.804) (xy 123.704 116.804) (xy 123.704 117.558) (xy 123.196 117.558) (xy 123.196 116.804) (xy 122.442 116.804) (xy 122.442 116.850516) (xy 120.3085 116.850516) (xy 120.3085 116.249483) (xy 122.442 116.249483) (xy 122.442 116.296) (xy 123.196 116.296) (xy 123.704 116.296) (xy 124.458 116.296) (xy 124.458 116.249483) (xy 124.447394 116.145681) (xy 124.447393 116.145678) (xy 124.391657 115.977474) (xy 124.298634 115.82666) (xy 124.298629 115.826654) (xy 124.173345 115.70137) (xy 124.173339 115.701365) (xy 124.022525 115.608342) (xy 123.854321 115.552606) (xy 123.854318 115.552605) (xy 123.750516 115.542) (xy 123.704 115.542) (xy 123.704 116.296) (xy 123.196 116.296) (xy 123.196 115.542) (xy 123.149483 115.542) (xy 123.045681 115.552605) (xy 123.045678 115.552606) (xy 122.877474 115.608342) (xy 122.72666 115.701365) (xy 122.726654 115.70137) (xy 122.60137 115.826654) (xy 122.601365 115.82666) (xy 122.508342 115.977474) (xy 122.452606 116.145678) (xy 122.452605 116.145681) (xy 122.442 116.249483) (xy 120.3085 116.249483) (xy 120.3085 115.91989) (xy 120.308499 115.919886) (xy 120.306555 115.912632) (xy 120.285316 115.833365) (xy 120.287005 115.762389) (xy 120.326799 115.703593) (xy 120.392063 115.675645) (xy 120.446655 115.68115) (xy 120.495669 115.697392) (xy 120.495681 115.697394) (xy 120.599483 115.707999) (xy 120.599483 115.708) (xy 120.646 115.708) (xy 121.154 115.708) (xy 121.200517 115.708) (xy 121.200516 115.707999) (xy 121.304318 115.697394) (xy 121.304321 115.697393) (xy 121.472525 115.641657) (xy 121.623339 115.548634) (xy 121.623345 115.548629) (xy 121.748629 115.423345) (xy 121.748634 115.423339) (xy 121.841657 115.272525) (xy 121.897393 115.104321) (xy 121.897394 115.104318) (xy 121.907999 115.000516) (xy 121.908 115.000516) (xy 121.908 114.954) (xy 121.154 114.954) (xy 121.154 115.708) (xy 120.646 115.708) (xy 120.646 114.954) (xy 119.892 114.954) (xy 119.892 115.000509) (xy 119.893661 115.016768) (xy 119.880685 115.086568) (xy 119.832033 115.138274) (xy 119.763149 115.155467) (xy 119.695905 115.13269) (xy 119.679218 115.118668) (xy 119.445404 114.884854) (xy 119.411378 114.822542) (xy 119.408499 114.795759) (xy 119.408499 114.399483) (xy 119.892 114.399483) (xy 119.892 114.446) (xy 120.646 114.446) (xy 120.646 113.692) (xy 120.599483 113.692) (xy 120.495681 113.702605) (xy 120.495678 113.702606) (xy 120.327474 113.758342) (xy 120.17666 113.851365) (xy 120.176654 113.85137) (xy 120.05137 113.976654) (xy 120.051365 113.97666) (xy 119.958342 114.127474) (xy 119.902606 114.295678) (xy 119.902605 114.295681) (xy 119.892 114.399483) (xy 119.408499 114.399483) (xy 119.408499 114.399455) (xy 119.40595 114.3745) (xy 119.397887 114.295574) (xy 119.397886 114.29557) (xy 119.397886 114.295568) (xy 119.341078 114.124133) (xy 119.338637 114.053178) (xy 119.374945 113.992168) (xy 119.438474 113.960473) (xy 119.460682 113.9585) (xy 119.498632 113.9585) (xy 119.498638 113.9585) (xy 119.498645 113.958499) (xy 119.498649 113.958499) (xy 119.559196 113.95199) (xy 119.559199 113.951989) (xy 119.559201 113.951989) (xy 119.696204 113.900889) (xy 119.72611 113.878502) (xy 119.813261 113.813261) (xy 119.900887 113.696207) (xy 119.900887 113.696206) (xy 119.900889 113.696204) (xy 119.951989 113.559201) (xy 119.952185 113.557386) (xy 119.958499 113.498649) (xy 119.9585 113.498632) (xy 119.9585 112.5345) (xy 119.978502 112.466379) (xy 120.032158 112.419886) (xy 120.0845 112.4085) (xy 120.245761 112.4085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 131.763882 112.328502) (xy 131.784856 112.345405) (xy 133.001366 113.561916) (xy 133.001371 113.56192) (xy 133.001373 113.561922) (xy 133.001374 113.561923) (xy 133.001376 113.561924) (xy 133.099877 113.618793) (xy 133.124361 113.632929) (xy 133.140128 113.642032) (xy 133.294889 113.6835) (xy 133.29489 113.6835) (xy 133.45511 113.6835) (xy 133.8155 113.6835) (xy 133.883621 113.703502) (xy 133.930114 113.757158) (xy 133.9415 113.8095) (xy 133.9415 114.300544) (xy 133.952112 114.404425) (xy 134.007885 114.572738) (xy 134.10097 114.723652) (xy 134.100975 114.723658) (xy 134.226341 114.849024) (xy 134.226347 114.849029) (xy 134.226348 114.84903) (xy 134.377262 114.942115) (xy 134.545574 114.997887) (xy 134.649455 115.0085) (xy 135.250544 115.008499) (xy 135.354426 114.997887) (xy 135.354429 114.997886) (xy 135.354431 114.997886) (xy 135.493151 114.951919) (xy 135.564106 114.949478) (xy 135.621879 114.982428) (xy 136.205075 115.565624) (xy 136.239101 115.627936) (xy 136.24198 115.654719) (xy 136.24198 117.84528) (xy 136.221978 117.913401) (xy 136.205075 117.934375) (xy 134.113083 120.026366) (xy 134.113075 120.026376) (xy 134.03297 120.165122) (xy 134.032968 120.165127) (xy 134.019318 120.216071) (xy 134.006815 120.262735) (xy 133.9915 120.31989) (xy 133.9915 121.980112) (xy 134.003895 122.026368) (xy 134.003895 122.026371) (xy 134.003896 122.026371) (xy 134.003896 122.026372) (xy 134.032968 122.134873) (xy 134.032969 122.134875) (xy 134.03297 122.134877) (xy 134.113075 122.273623) (xy 134.113077 122.273626) (xy 134.113078 122.273627) (xy 134.154596 122.315145) (xy 134.18862 122.377454) (xy 134.1915 122.404239) (xy 134.1915 122.410729) (xy 134.171498 122.47885) (xy 134.117842 122.525343) (xy 134.047568 122.535447) (xy 134.03289 122.532436) (xy 133.911834 122.5) (xy 133.911833 122.499999) (xy 133.880112 122.4915) (xy 133.880111 122.4915) (xy 132.804239 122.4915) (xy 132.736118 122.471498) (xy 132.715144 122.454595) (xy 131.795405 121.534856) (xy 131.761379 121.472544) (xy 131.7585 121.445761) (xy 131.7585 116.800516) (xy 133.942 116.800516) (xy 133.952605 116.904318) (xy 133.952606 116.904321) (xy 134.008342 117.072525) (xy 134.101365 117.223339) (xy 134.10137 117.223345) (xy 134.226654 117.348629) (xy 134.22666 117.348634) (xy 134.377474 117.441657) (xy 134.545678 117.497393) (xy 134.545681 117.497394) (xy 134.649483 117.507999) (xy 134.649483 117.508) (xy 134.696 117.508) (xy 135.204 117.508) (xy 135.250517 117.508) (xy 135.250516 117.507999) (xy 135.354318 117.497394) (xy 135.354321 117.497393) (xy 135.522525 117.441657) (xy 135.673339 117.348634) (xy 135.673345 117.348629) (xy 135.798629 117.223345) (xy 135.798634 117.223339) (xy 135.891657 117.072525) (xy 135.947393 116.904321) (xy 135.947394 116.904318) (xy 135.957999 116.800516) (xy 135.958 116.800516) (xy 135.958 116.754) (xy 135.204 116.754) (xy 135.204 117.508) (xy 134.696 117.508) (xy 134.696 116.754) (xy 133.942 116.754) (xy 133.942 116.800516) (xy 131.7585 116.800516) (xy 131.7585 116.199483) (xy 133.942 116.199483) (xy 133.942 116.246) (xy 134.696 116.246) (xy 135.204 116.246) (xy 135.958 116.246) (xy 135.958 116.199483) (xy 135.947394 116.095681) (xy 135.947393 116.095678) (xy 135.891657 115.927474) (xy 135.798634 115.77666) (xy 135.798629 115.776654) (xy 135.673345 115.65137) (xy 135.673339 115.651365) (xy 135.522525 115.558342) (xy 135.354321 115.502606) (xy 135.354318 115.502605) (xy 135.250516 115.492) (xy 135.204 115.492) (xy 135.204 116.246) (xy 134.696 116.246) (xy 134.696 115.492) (xy 134.649483 115.492) (xy 134.545681 115.502605) (xy 134.545678 115.502606) (xy 134.377474 115.558342) (xy 134.22666 115.651365) (xy 134.226654 115.65137) (xy 134.10137 115.776654) (xy 134.101365 115.77666) (xy 134.008342 115.927474) (xy 133.952606 116.095678) (xy 133.952605 116.095681) (xy 133.942 116.199483) (xy 131.7585 116.199483) (xy 131.7585 116.01989) (xy 131.753833 116.002474) (xy 131.729761 115.912633) (xy 131.717032 115.865127) (xy 131.714895 115.857151) (xy 131.717971 115.856326) (xy 131.71199 115.800685) (xy 131.743771 115.737198) (xy 131.80483 115.700972) (xy 131.848796 115.697712) (xy 131.949485 115.708) (xy 131.996 115.708) (xy 132.504 115.708) (xy 132.550517 115.708) (xy 132.550516 115.707999) (xy 132.654318 115.697394) (xy 132.654321 115.697393) (xy 132.822525 115.641657) (xy 132.973339 115.548634) (xy 132.973345 115.548629) (xy 133.098629 115.423345) (xy 133.098634 115.423339) (xy 133.191657 115.272525) (xy 133.247393 115.104321) (xy 133.247394 115.104318) (xy 133.257999 115.000516) (xy 133.258 115.000516) (xy 133.258 114.954) (xy 132.504 114.954) (xy 132.504 115.708) (xy 131.996 115.708) (xy 131.996 114.954) (xy 131.242 114.954) (xy 131.242 115.000509) (xy 131.243661 115.016768) (xy 131.230685 115.086568) (xy 131.182033 115.138274) (xy 131.113149 115.155467) (xy 131.045905 115.13269) (xy 131.029218 115.118668) (xy 130.795404 114.884854) (xy 130.761378 114.822542) (xy 130.758499 114.795759) (xy 130.758499 114.399455) (xy 130.75595 114.3745) (xy 130.747887 114.295574) (xy 130.747886 114.29557) (xy 130.747886 114.295568) (xy 130.691078 114.124133) (xy 130.688637 114.053178) (xy 130.724945 113.992168) (xy 130.788474 113.960473) (xy 130.810682 113.9585) (xy 131.048632 113.9585) (xy 131.048638 113.9585) (xy 131.048645 113.958499) (xy 131.048649 113.958499) (xy 131.109196 113.95199) (xy 131.109201 113.951989) (xy 131.123287 113.946735) (xy 131.164388 113.931404) (xy 131.235203 113.926339) (xy 131.297515 113.960363) (xy 131.331541 114.022675) (xy 131.326477 114.093491) (xy 131.315664 114.115603) (xy 131.308343 114.127471) (xy 131.252606 114.295678) (xy 131.252605 114.295681) (xy 131.242 114.399483) (xy 131.242 114.446) (xy 131.996 114.446) (xy 132.504 114.446) (xy 133.258 114.446) (xy 133.258 114.399483) (xy 133.247394 114.295681) (xy 133.247393 114.295678) (xy 133.191657 114.127474) (xy 133.098634 113.97666) (xy 133.098629 113.976654) (xy 132.973345 113.85137) (xy 132.973339 113.851365) (xy 132.822525 113.758342) (xy 132.654321 113.702606) (xy 132.654318 113.702605) (xy 132.550516 113.692) (xy 132.504 113.692) (xy 132.504 114.446) (xy 131.996 114.446) (xy 131.996 113.692) (xy 131.949483 113.692) (xy 131.845681 113.702605) (xy 131.845678 113.702606) (xy 131.677471 113.758343) (xy 131.665603 113.765664) (xy 131.597123 113.784399) (xy 131.529385 113.763137) (xy 131.483895 113.708629) (xy 131.475096 113.638179) (xy 131.481405 113.614387) (xy 131.485325 113.603879) (xy 131.501989 113.559201) (xy 131.502185 113.557386) (xy 131.508499 113.498649) (xy 131.5085 113.498632) (xy 131.5085 112.4345) (xy 131.528502 112.366379) (xy 131.582158 112.319886) (xy 131.6345 112.3085) (xy 131.695761 112.3085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 40.700385 114.107592) (xy 40.715502 114.117306) (xy 40.785745 114.16989) (xy 40.813796 114.190889) (xy 40.950795 114.241988) (xy 40.950803 114.24199) (xy 41.01135 114.248499) (xy 41.011355 114.248499) (xy 41.011362 114.2485) (xy 41.1505 114.2485) (xy 41.218621 114.268502) (xy 41.265114 114.322158) (xy 41.2765 114.3745) (xy 41.2765 114.672396) (xy 41.286185 114.721086) (xy 41.300845 114.794785) (xy 41.3486 114.910075) (xy 41.417929 115.013833) (xy 41.417931 115.013835) (xy 44.429595 118.025499) (xy 44.463621 118.087811) (xy 44.4665 118.114594) (xy 44.4665 120.762396) (xy 44.471437 120.787213) (xy 44.490845 120.884785) (xy 44.5386 121.000075) (xy 44.607929 121.103833) (xy 44.607931 121.103835) (xy 45.455501 121.951405) (xy 45.489527 122.013717) (xy 45.484462 122.084532) (xy 45.441915 122.141368) (xy 45.375395 122.166179) (xy 45.366406 122.1665) (xy 44.102191 122.1665) (xy 44.03407 122.146498) (xy 43.987577 122.092842) (xy 43.980049 122.07144) (xy 43.961296 121.997384) (xy 43.87086 121.791209) (xy 43.845244 121.752) (xy 43.747724 121.602734) (xy 43.747714 121.602722) (xy 43.604159 121.446782) (xy 43.572737 121.383117) (xy 43.580723 121.312571) (xy 43.625582 121.257542) (xy 43.652827 121.243388) (xy 43.767965 121.200444) (xy 43.884904 121.112904) (xy 43.972444 120.995965) (xy 43.972444 120.995964) (xy 44.023494 120.859093) (xy 44.029999 120.798597) (xy 44.03 120.798585) (xy 44.03 120.154) (xy 43.102703 120.154) (xy 43.137925 120.092993) (xy 43.172 119.965826) (xy 43.172 119.834174) (xy 43.137925 119.707007) (xy 43.102703 119.646) (xy 44.03 119.646) (xy 44.03 119.001414) (xy 44.029999 119.001402) (xy 44.023494 118.940906) (xy 43.972444 118.804035) (xy 43.972444 118.804034) (xy 43.884904 118.687095) (xy 43.767965 118.599555) (xy 43.631093 118.548505) (xy 43.570597 118.542) (xy 42.926 118.542) (xy 42.926 119.469297) (xy 42.864993 119.434075) (xy 42.737826 119.4) (xy 42.606174 119.4) (xy 42.479007 119.434075) (xy 42.418 119.469297) (xy 42.418 118.542) (xy 41.773402 118.542) (xy 41.712906 118.548505) (xy 41.576035 118.599555) (xy 41.576034 118.599555) (xy 41.459095 118.687095) (xy 41.371555 118.804034) (xy 41.371555 118.804035) (xy 41.320505 118.940906) (xy 41.314 119.001402) (xy 41.314 119.646) (xy 42.241297 119.646) (xy 42.206075 119.707007) (xy 42.172 119.834174) (xy 42.172 119.965826) (xy 42.206075 120.092993) (xy 42.241297 120.154) (xy 41.314 120.154) (xy 41.314 120.798597) (xy 41.320505 120.859093) (xy 41.371555 120.995964) (xy 41.371555 120.995965) (xy 41.459095 121.112904) (xy 41.576034 121.200444) (xy 41.691172 121.243388) (xy 41.748008 121.285935) (xy 41.772819 121.352455) (xy 41.757728 121.421829) (xy 41.739841 121.446782) (xy 41.59628 121.602729) (xy 41.596275 121.602734) (xy 41.473139 121.791209) (xy 41.383785 121.994917) (xy 41.338104 122.049265) (xy 41.270292 122.070289) (xy 41.201878 122.051313) (xy 41.179303 122.033398) (xy 40.040405 120.8945) (xy 40.006379 120.832188) (xy 40.0035 120.805405) (xy 40.0035 114.3745) (xy 40.023502 114.306379) (xy 40.077158 114.259886) (xy 40.1295 114.2485) (xy 40.268632 114.2485) (xy 40.268638 114.2485) (xy 40.268645 114.248499) (xy 40.268649 114.248499) (xy 40.329196 114.24199) (xy 40.329199 114.241989) (xy 40.329201 114.241989) (xy 40.466204 114.190889) (xy 40.564492 114.117311) (xy 40.631011 114.092501) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.777371 120.266002) (xy 70.823864 120.319658) (xy 70.83525 120.372) (xy 70.83525 121.489451) (xy 70.861516 121.537553) (xy 70.856451 121.608368) (xy 70.813904 121.665204) (xy 70.788439 121.679972) (xy 70.7864 121.680854) (xy 70.689805 121.73798) (xy 70.620988 121.755439) (xy 70.553657 121.732922) (xy 70.509188 121.677577) (xy 70.503961 121.662144) (xy 70.478286 121.566321) (xy 70.467032 121.524319) (xy 70.466751 121.523833) (xy 70.386924 121.385568) (xy 70.386916 121.385558) (xy 70.364155 121.362797) (xy 70.330129 121.300485) (xy 70.32725 121.273702) (xy 70.32725 120.372) (xy 70.347252 120.303879) (xy 70.400908 120.257386) (xy 70.45325 120.246) (xy 70.70925 120.246) ) ) (filled_polygon (layer "F.Cu") (pts (xy 80.223621 120.266002) (xy 80.270114 120.319658) (xy 80.2815 120.372) (xy 80.2815 121.48851) (xy 80.308898 121.538685) (xy 80.303833 121.6095) (xy 80.261286 121.666336) (xy 80.243217 121.676814) (xy 80.243221 121.67682) (xy 80.236398 121.680854) (xy 80.236398 121.680855) (xy 80.214795 121.693631) (xy 80.172037 121.718918) (xy 80.103221 121.736377) (xy 80.03589 121.71386) (xy 79.99878 121.673465) (xy 79.951457 121.5915) (xy 79.936922 121.566324) (xy 79.936921 121.566322) (xy 79.93692 121.566321) (xy 79.936918 121.566319) (xy 79.936914 121.566314) (xy 79.810405 121.439805) (xy 79.776379 121.377493) (xy 79.7735 121.35071) (xy 79.7735 120.372) (xy 79.793502 120.303879) (xy 79.847158 120.257386) (xy 79.8995 120.246) (xy 80.1555 120.246) ) ) (filled_polygon (layer "F.Cu") (pts (xy 74.747498 120.427861) (xy 74.851948 120.488166) (xy 75.006709 120.529634) (xy 75.16693 120.529634) (xy 75.385523 120.529634) (xy 75.453644 120.549636) (xy 75.474618 120.566539) (xy 76.324484 121.416405) (xy 76.35851 121.478717) (xy 76.353445 121.549532) (xy 76.310898 121.606368) (xy 76.244378 121.631179) (xy 76.235389 121.6315) (xy 75.483488 121.6315) (xy 75.44617 121.634437) (xy 75.446169 121.634437) (xy 75.286394 121.680856) (xy 75.237047 121.71004) (xy 75.168231 121.727499) (xy 75.112796 121.711537) (xy 75.112783 121.711568) (xy 75.112562 121.711469) (xy 75.10991 121.710706) (xy 75.106752 121.708882) (xy 74.932287 121.631206) (xy 74.745486 121.5915) (xy 74.684499 121.5915) (xy 74.616378 121.571498) (xy 74.569885 121.517842) (xy 74.558499 121.4655) (xy 74.558499 120.536981) (xy 74.578501 120.46886) (xy 74.632157 120.422367) (xy 74.702431 120.412263) ) ) (filled_polygon (layer "F.Cu") (pts (xy 103.412043 113.472592) (xy 103.468273 113.528822) (xy 103.502299 113.591134) (xy 103.502381 113.638687) (xy 103.502812 113.638732) (xy 103.502388 113.642876) (xy 103.502391 113.644274) (xy 103.502112 113.645573) (xy 103.4915 113.749446) (xy 103.4915 114.500544) (xy 103.502112 114.604425) (xy 103.530095 114.688871) (xy 103.556468 114.768463) (xy 103.557886 114.77274) (xy 103.587793 114.821227) (xy 103.60653 114.889706) (xy 103.58527 114.957445) (xy 103.530763 115.002936) (xy 103.520185 115.006977) (xy 103.407583 115.044289) (xy 103.259153 115.135842) (xy 103.259147 115.135847) (xy 103.135847 115.259147) (xy 103.135842 115.259153) (xy 103.044291 115.40758) (xy 102.989436 115.573124) (xy 102.987998 115.579846) (xy 102.985975 115.579412) (xy 102.962913 115.635928) (xy 102.904809 115.676725) (xy 102.833872 115.679632) (xy 102.798244 115.664625) (xy 102.747527 115.633343) (xy 102.579321 115.577606) (xy 102.579318 115.577605) (xy 102.475516 115.567) (xy 102.429 115.567) (xy 102.429 117.583) (xy 102.475517 117.583) (xy 102.475516 117.582999) (xy 102.579318 117.572394) (xy 102.579321 117.572393) (xy 102.747525 117.516657) (xy 102.898339 117.423634) (xy 102.898345 117.423629) (xy 103.023629 117.298345) (xy 103.023634 117.298339) (xy 103.116657 117.147525) (xy 103.172393 116.979324) (xy 103.175385 116.950039) (xy 103.202207 116.884304) (xy 103.260311 116.843505) (xy 103.331248 116.840596) (xy 103.366879 116.855604) (xy 103.40758 116.880709) (xy 103.573119 116.935562) (xy 103.675287 116.946) (xy 104.274712 116.945999) (xy 104.376881 116.935562) (xy 104.54242 116.880709) (xy 104.690846 116.789158) (xy 104.734599 116.745405) (xy 104.798405 116.6816) (xy 104.860717 116.647574) (xy 104.931532 116.652639) (xy 104.976595 116.6816) (xy 105.084147 116.789152) (xy 105.084153 116.789157) (xy 105.084154 116.789158) (xy 105.23258 116.880709) (xy 105.398119 116.935562) (xy 105.500287 116.946) (xy 105.6655 116.945999) (xy 105.73362 116.966001) (xy 105.780113 117.019656) (xy 105.7915 117.071999) (xy 105.7915 118.855759) (xy 105.771498 118.92388) (xy 105.754595 118.944855) (xy 104.944242 119.755207) (xy 104.88193 119.789232) (xy 104.814238 119.785285) (xy 104.794641 119.778558) (xy 104.79464 119.778557) (xy 104.794635 119.778556) (xy 104.794631 119.778555) (xy 104.79463 119.778555) (xy 104.713715 119.765053) (xy 104.572569 119.7415) (xy 104.347431 119.7415) (xy 104.206285 119.765053) (xy 104.125369 119.778555) (xy 104.12536 119.778557) (xy 103.912428 119.851656) (xy 103.912426 119.851658) (xy 103.767781 119.929936) (xy 103.714426 119.95881) (xy 103.714424 119.958811) (xy 103.536762 120.097091) (xy 103.384279 120.262729) (xy 103.295483 120.398643) (xy 103.241479 120.444731) (xy 103.171131 120.454306) (xy 103.106774 120.424329) (xy 103.084517 120.398643) (xy 102.99572 120.262729) (xy 102.843237 120.097091) (xy 102.761382 120.033381) (xy 102.665576 119.958811) (xy 102.467574 119.851658) (xy 102.467572 119.851657) (xy 102.467571 119.851656) (xy 102.254639 119.778557) (xy 102.25463 119.778555) (xy 102.173715 119.765053) (xy 102.032569 119.7415) (xy 101.807431 119.7415) (xy 101.666285 119.765053) (xy 101.585369 119.778555) (xy 101.58536 119.778557) (xy 101.372428 119.851656) (xy 101.372426 119.851658) (xy 101.227781 119.929936) (xy 101.174426 119.95881) (xy 101.174423 119.958811) (xy 101.061891 120.046399) (xy 100.995848 120.072455) (xy 100.926203 120.058669) (xy 100.875066 120.009419) (xy 100.8585 119.946967) (xy 100.8585 116.875516) (xy 101.167 116.875516) (xy 101.177605 116.979318) (xy 101.177606 116.979321) (xy 101.233342 117.147525) (xy 101.326365 117.298339) (xy 101.32637 117.298345) (xy 101.451654 117.423629) (xy 101.45166 117.423634) (xy 101.602474 117.516657) (xy 101.770678 117.572393) (xy 101.770681 117.572394) (xy 101.874483 117.582999) (xy 101.874483 117.583) (xy 101.921 117.583) (xy 101.921 116.829) (xy 101.167 116.829) (xy 101.167 116.875516) (xy 100.8585 116.875516) (xy 100.8585 116.274483) (xy 101.167 116.274483) (xy 101.167 116.321) (xy 101.921 116.321) (xy 101.921 115.567) (xy 101.874483 115.567) (xy 101.770681 115.577605) (xy 101.770678 115.577606) (xy 101.602474 115.633342) (xy 101.45166 115.726365) (xy 101.451654 115.72637) (xy 101.32637 115.851654) (xy 101.326365 115.85166) (xy 101.233342 116.002474) (xy 101.177606 116.170678) (xy 101.177605 116.170681) (xy 101.167 116.274483) (xy 100.8585 116.274483) (xy 100.8585 115.367418) (xy 100.878502 115.299297) (xy 100.895399 115.278328) (xy 101.26143 114.912297) (xy 101.323739 114.878275) (xy 101.394554 114.883339) (xy 101.439617 114.9123) (xy 101.451341 114.924024) (xy 101.451347 114.924029) (xy 101.451348 114.92403) (xy 101.602262 115.017115) (xy 101.770574 115.072887) (xy 101.874455 115.0835) (xy 102.475544 115.083499) (xy 102.579426 115.072887) (xy 102.747738 115.017115) (xy 102.898652 114.92403) (xy 103.02403 114.798652) (xy 103.117115 114.647738) (xy 103.172887 114.479426) (xy 103.1835 114.375545) (xy 103.183499 113.774456) (xy 103.172887 113.670574) (xy 103.155222 113.617266) (xy 103.152782 113.546312) (xy 103.18909 113.485302) (xy 103.23519 113.45803) (xy 103.27992 113.443209) (xy 103.279924 113.443206) (xy 103.283314 113.442083) (xy 103.354269 113.439642) ) ) (filled_polygon (layer "F.Cu") (pts (xy 78.628222 119.915757) (xy 78.628327 119.915443) (xy 78.630598 119.916195) (xy 78.632844 119.91661) (xy 78.635287 119.917749) (xy 78.800723 119.972568) (xy 78.800726 119.972569) (xy 78.879072 119.980574) (xy 78.944806 120.007396) (xy 78.985605 120.065499) (xy 78.991613 120.118727) (xy 78.982 120.212823) (xy 78.982 120.307211) (xy 78.961998 120.375332) (xy 78.908342 120.421825) (xy 78.838068 120.431929) (xy 78.773488 120.402435) (xy 78.766905 120.396306) (xy 78.490498 120.119899) (xy 78.456472 120.057587) (xy 78.461537 119.986772) (xy 78.504084 119.929936) (xy 78.570604 119.905125) ) ) (filled_polygon (layer "F.Cu") (pts (xy 117.974132 115.690782) (xy 117.995567 115.697885) (xy 117.995568 115.697885) (xy 117.995574 115.697887) (xy 118.099455 115.7085) (xy 118.49576 115.708499) (xy 118.56388 115.728501) (xy 118.584855 115.745404) (xy 119.054595 116.215144) (xy 119.088621 116.277456) (xy 119.0915 116.304239) (xy 119.0915 119.6155) (xy 119.071498 119.683621) (xy 119.017842 119.730114) (xy 118.9655 119.7415) (xy 117.37635 119.7415) (xy 117.315803 119.748009) (xy 117.315795 119.748011) (xy 117.178797 119.79911) (xy 117.178792 119.799112) (xy 117.061738 119.886738) (xy 116.974112 120.003792) (xy 116.974111 120.003795) (xy 116.93 120.122058) (xy 116.887453 120.178893) (xy 116.820932 120.203703) (xy 116.751558 120.188611) (xy 116.719246 120.163363) (xy 116.65824 120.097094) (xy 116.658239 120.097093) (xy 116.658237 120.097091) (xy 116.576382 120.033381) (xy 116.480576 119.958811) (xy 116.282574 119.851658) (xy 116.282572 119.851657) (xy 116.282571 119.851656) (xy 116.069639 119.778557) (xy 116.06963 119.778555) (xy 115.988715 119.765053) (xy 115.847569 119.7415) (xy 115.622431 119.7415) (xy 115.481285 119.765053) (xy 115.430238 119.773571) (xy 115.359754 119.765053) (xy 115.305064 119.719782) (xy 115.283532 119.652129) (xy 115.2835 119.649289) (xy 115.2835 117.09761) (xy 115.303502 117.029489) (xy 115.357158 116.982996) (xy 115.383127 116.974401) (xy 115.389376 116.973063) (xy 115.389378 116.973062) (xy 115.389381 116.973062) (xy 115.55492 116.918209) (xy 115.703346 116.826658) (xy 115.753352 116.776652) (xy 115.810905 116.7191) (xy 115.873217 116.685074) (xy 115.944032 116.690139) (xy 115.989095 116.7191) (xy 116.096647 116.826652) (xy 116.096653 116.826657) (xy 116.096654 116.826658) (xy 116.24508 116.918209) (xy 116.410619 116.973062) (xy 116.512787 116.9835) (xy 117.112212 116.983499) (xy 117.214381 116.973062) (xy 117.37992 116.918209) (xy 117.528346 116.826658) (xy 117.651658 116.703346) (xy 117.743209 116.55492) (xy 117.798062 116.389381) (xy 117.8085 116.287213) (xy 117.808499 115.810385) (xy 117.828501 115.742265) (xy 117.882156 115.695772) (xy 117.95243 115.685668) ) ) (filled_polygon (layer "F.Cu") (pts (xy 129.274124 115.674211) (xy 129.345574 115.697887) (xy 129.449455 115.7085) (xy 129.84576 115.708499) (xy 129.91388 115.728501) (xy 129.934855 115.745404) (xy 130.504595 116.315144) (xy 130.538621 116.377456) (xy 130.5415 116.404239) (xy 130.5415 119.6155) (xy 130.521498 119.683621) (xy 130.467842 119.730114) (xy 130.4155 119.7415) (xy 128.87635 119.7415) (xy 128.815803 119.748009) (xy 128.815795 119.748011) (xy 128.678797 119.79911) (xy 128.678792 119.799112) (xy 128.561738 119.886738) (xy 128.474112 120.003792) (xy 128.474111 120.003795) (xy 128.43 120.122058) (xy 128.387453 120.178893) (xy 128.320932 120.203703) (xy 128.251558 120.188611) (xy 128.219246 120.163363) (xy 128.15824 120.097094) (xy 128.158239 120.097093) (xy 128.158237 120.097091) (xy 128.076382 120.033381) (xy 127.980576 119.958811) (xy 127.782574 119.851658) (xy 127.782572 119.851657) (xy 127.782571 119.851656) (xy 127.569639 119.778557) (xy 127.56963 119.778555) (xy 127.488715 119.765053) (xy 127.347569 119.7415) (xy 127.122431 119.7415) (xy 126.995407 119.762696) (xy 126.900368 119.778555) (xy 126.900359 119.778557) (xy 126.880759 119.785286) (xy 126.809835 119.788485) (xy 126.750756 119.755207) (xy 126.695405 119.699856) (xy 126.661379 119.637544) (xy 126.6585 119.610761) (xy 126.6585 117.02428) (xy 126.678502 116.956159) (xy 126.732158 116.909666) (xy 126.744854 116.90468) (xy 126.85492 116.868209) (xy 127.003346 116.776658) (xy 127.055078 116.724926) (xy 127.110905 116.6691) (xy 127.173217 116.635074) (xy 127.244032 116.640139) (xy 127.289095 116.6691) (xy 127.396647 116.776652) (xy 127.396653 116.776657) (xy 127.396654 116.776658) (xy 127.54508 116.868209) (xy 127.710619 116.923062) (xy 127.812787 116.9335) (xy 128.412212 116.933499) (xy 128.514381 116.923062) (xy 128.67992 116.868209) (xy 128.828346 116.776658) (xy 128.951658 116.653346) (xy 129.043209 116.50492) (xy 129.098062 116.339381) (xy 129.1085 116.237213) (xy 129.108499 115.793817) (xy 129.128501 115.725697) (xy 129.182156 115.679204) (xy 129.25243 115.6691) ) ) (filled_polygon (layer "F.Cu") (pts (xy 80.330758 118.717409) (xy 80.375821 118.74637) (xy 80.749899 119.120448) (xy 80.783925 119.18276) (xy 80.786114 119.196372) (xy 80.806457 119.389929) (xy 80.819441 119.429887) (xy 80.821469 119.500854) (xy 80.784806 119.561652) (xy 80.721094 119.592978) (xy 80.65056 119.584885) (xy 80.646361 119.583019) (xy 80.644713 119.582251) (xy 80.479276 119.527431) (xy 80.479273 119.52743) (xy 80.377184 119.517) (xy 80.314049 119.517) (xy 80.245928 119.496998) (xy 80.199435 119.443342) (xy 80.188701 119.378194) (xy 80.198 119.287175) (xy 80.198 119.254) (xy 79.0745 119.254) (xy 79.006379 119.233998) (xy 78.959886 119.180342) (xy 78.9485 119.128) (xy 78.9485 118.872) (xy 78.968502 118.803879) (xy 79.022158 118.757386) (xy 79.0745 118.746) (xy 80.198309 118.746) (xy 80.259943 118.712344) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.804 114.248) (xy 83.448585 114.248) (xy 83.448597 114.247999) (xy 83.509093 114.241494) (xy 83.645964 114.190444) (xy 83.645966 114.190443) (xy 83.744072 114.117001) (xy 83.810592 114.092189) (xy 83.879966 114.10728) (xy 83.895091 114.117) (xy 83.993792 114.190887) (xy 83.993794 114.190888) (xy 83.993796 114.190889) (xy 84.024808 114.202456) (xy 84.130795 114.241988) (xy 84.130803 114.24199) (xy 84.19135 114.248499) (xy 84.191355 114.248499) (xy 84.191362 114.2485) (xy 84.191368 114.2485) (xy 85.988632 114.2485) (xy 85.988638 114.2485) (xy 85.988645 114.248499) (xy 85.988649 114.248499) (xy 86.049196 114.24199) (xy 86.049199 114.241989) (xy 86.049201 114.241989) (xy 86.186204 114.190889) (xy 86.284492 114.117311) (xy 86.351011 114.092501) (xy 86.420385 114.107592) (xy 86.435502 114.117306) (xy 86.505745 114.16989) (xy 86.533796 114.190889) (xy 86.670795 114.241988) (xy 86.670803 114.24199) (xy 86.73135 114.248499) (xy 86.731355 114.248499) (xy 86.731362 114.2485) (xy 88.085761 114.2485) (xy 88.153882 114.268502) (xy 88.174856 114.285405) (xy 88.354595 114.465144) (xy 88.388621 114.527456) (xy 88.3915 114.554239) (xy 88.3915 118.286371) (xy 88.371498 118.354492) (xy 88.317842 118.400985) (xy 88.247568 118.411089) (xy 88.225868 118.405976) (xy 88.064279 118.352431) (xy 88.064273 118.35243) (xy 87.962184 118.342) (xy 87.8665 118.342) (xy 87.8665 119.453) (xy 87.846498 119.521121) (xy 87.792842 119.567614) (xy 87.7405 119.579) (xy 87.4845 119.579) (xy 87.416379 119.558998) (xy 87.369886 119.505342) (xy 87.3585 119.453) (xy 87.3585 118.342) (xy 87.262815 118.342) (xy 87.160726 118.35243) (xy 87.160723 118.352431) (xy 86.995288 118.40725) (xy 86.981534 118.415733) (xy 86.913054 118.434467) (xy 86.845316 118.413204) (xy 86.799827 118.358694) (xy 86.79103 118.288245) (xy 86.806272 118.245494) (xy 86.834527 118.196556) (xy 86.893542 118.014928) (xy 86.913504 117.825) (xy 86.893542 117.635072) (xy 86.834527 117.453444) (xy 86.73904 117.288056) (xy 86.739038 117.288054) (xy 86.739034 117.288048) (xy 86.611255 117.146135) (xy 86.456752 117.033882) (xy 86.282288 116.956206) (xy 86.095487 116.9165) (xy 85.904513 116.9165) (xy 85.717711 116.956206) (xy 85.543247 117.033882) (xy 85.388746 117.146134) (xy 85.327837 117.21378) (xy 85.26739 117.251019) (xy 85.196407 117.249667) (xy 85.137422 117.210153) (xy 85.125082 117.192469) (xy 85.117228 117.178866) (xy 85.086921 117.126372) (xy 85.086919 117.12637) (xy 85.086915 117.126365) (xy 82.332905 114.372355) (xy 82.298879 114.310043) (xy 82.296 114.28326) (xy 82.296 111.53225) (xy 82.353147 111.565245) (xy 82.482857 111.6) (xy 82.617143 111.6) (xy 82.746853 111.565245) (xy 82.804 111.53225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.874508 118.707409) (xy 70.919571 118.73637) (xy 71.253196 119.069995) (xy 71.287222 119.132307) (xy 71.289411 119.172258) (xy 71.286496 119.199998) (xy 71.306457 119.389929) (xy 71.312548 119.408675) (xy 71.314574 119.479643) (xy 71.277909 119.54044) (xy 71.214196 119.571763) (xy 71.153081 119.567212) (xy 71.033035 119.527432) (xy 71.033023 119.52743) (xy 70.930934 119.517) (xy 70.865523 119.517) (xy 70.797402 119.496998) (xy 70.750909 119.443342) (xy 70.741253 119.376185) (xy 70.74062 119.376121) (xy 70.740879 119.373584) (xy 70.740805 119.373068) (xy 70.7411 119.371413) (xy 70.751749 119.267184) (xy 70.75175 119.267184) (xy 70.75175 119.234) (xy 69.62825 119.234) (xy 69.560129 119.213998) (xy 69.513636 119.160342) (xy 69.50225 119.108) (xy 69.50225 118.852) (xy 69.522252 118.783879) (xy 69.575908 118.737386) (xy 69.62825 118.726) (xy 70.760372 118.726) (xy 70.803693 118.702344) ) ) (filled_polygon (layer "F.Cu") (pts (xy 106.126874 84.928502) (xy 106.147848 84.945405) (xy 107.589358 86.386916) (xy 107.589362 86.386919) (xy 107.589365 86.386922) (xy 107.589366 86.386923) (xy 107.589368 86.386924) (xy 107.602875 86.394722) (xy 107.676006 86.436944) (xy 107.72812 86.467032) (xy 107.882881 86.5085) (xy 107.882882 86.5085) (xy 108.043102 86.5085) (xy 110.133017 86.5085) (xy 110.201138 86.528502) (xy 110.222112 86.545405) (xy 111.754595 88.077888) (xy 111.788621 88.1402) (xy 111.7915 88.166983) (xy 111.7915 93.564389) (xy 111.771498 93.63251) (xy 111.754595 93.653484) (xy 109.853973 95.554106) (xy 109.791661 95.588132) (xy 109.764878 95.591011) (xy 108.036521 95.591011) (xy 107.9684 95.571009) (xy 107.921907 95.517353) (xy 107.911211 95.478181) (xy 107.893542 95.310072) (xy 107.861745 95.212213) (xy 107.834527 95.128444) (xy 107.73904 94.963056) (xy 107.739038 94.963054) (xy 107.739034 94.963048) (xy 107.611255 94.821135) (xy 107.456752 94.708882) (xy 107.282288 94.631206) (xy 107.095487 94.5915) (xy 106.904513 94.5915) (xy 106.717711 94.631206) (xy 106.543247 94.708882) (xy 106.388744 94.821135) (xy 106.362926 94.84981) (xy 106.30248 94.88705) (xy 106.26929 94.8915) (xy 105.598269 94.8915) (xy 105.530148 94.871498) (xy 105.483655 94.817842) (xy 105.473551 94.747568) (xy 105.503045 94.682988) (xy 105.509174 94.676405) (xy 109.236916 90.948663) (xy 109.236922 90.948657) (xy 109.317032 90.809902) (xy 109.317717 90.807348) (xy 109.326752 90.773627) (xy 109.328101 90.768592) (xy 109.3585 90.655141) (xy 109.3585 88.73029) (xy 109.378502 88.662169) (xy 109.39086 88.645983) (xy 109.48904 88.536944) (xy 109.584527 88.371556) (xy 109.643542 88.189928) (xy 109.663504 88) (xy 109.643542 87.810072) (xy 109.584527 87.628444) (xy 109.48904 87.463056) (xy 109.489038 87.463054) (xy 109.489034 87.463048) (xy 109.361255 87.321135) (xy 109.206752 87.208882) (xy 109.032288 87.131206) (xy 108.845487 87.0915) (xy 108.654513 87.0915) (xy 108.467711 87.131206) (xy 108.293247 87.208882) (xy 108.138744 87.321135) (xy 108.010965 87.463048) (xy 108.010958 87.463058) (xy 107.915476 87.628438) (xy 107.915473 87.628445) (xy 107.856457 87.810072) (xy 107.836496 88.000001) (xy 107.836496 88.003924) (xy 107.835853 88.00611) (xy 107.835806 88.006567) (xy 107.835722 88.006558) (xy 107.816494 88.072045) (xy 107.762838 88.118538) (xy 107.736695 88.12717) (xy 107.717714 88.131204) (xy 107.543247 88.208882) (xy 107.388744 88.321135) (xy 107.260965 88.463048) (xy 107.260958 88.463058) (xy 107.165994 88.627541) (xy 107.165473 88.628444) (xy 107.154515 88.662169) (xy 107.106457 88.810072) (xy 107.086496 89) (xy 107.106457 89.189924) (xy 107.106457 89.189927) (xy 107.112386 89.208174) (xy 107.114414 89.279141) (xy 107.077751 89.339939) (xy 107.018751 89.370356) (xy 106.967715 89.381204) (xy 106.884601 89.418209) (xy 106.801248 89.45532) (xy 106.730882 89.464754) (xy 106.698752 89.45532) (xy 106.532288 89.381206) (xy 106.345487 89.3415) (xy 106.154513 89.3415) (xy 105.967711 89.381206) (xy 105.793247 89.458882) (xy 105.638744 89.571135) (xy 105.510965 89.713048) (xy 105.510958 89.713058) (xy 105.431507 89.850672) (xy 105.415473 89.878444) (xy 105.410982 89.892265) (xy 105.356457 90.060072) (xy 105.346164 90.158011) (xy 105.339401 90.222366) (xy 105.338738 90.22867) (xy 105.311725 90.294327) (xy 105.253504 90.334957) (xy 105.213428 90.3415) (xy 105.154513 90.3415) (xy 104.967711 90.381206) (xy 104.793247 90.458882) (xy 104.638749 90.571132) (xy 104.638745 90.571135) (xy 104.624917 90.586492) (xy 104.564469 90.623729) (xy 104.505088 90.625424) (xy 104.345487 90.5915) (xy 104.154513 90.5915) (xy 103.967711 90.631206) (xy 103.793247 90.708882) (xy 103.638744 90.821135) (xy 103.510965 90.963048) (xy 103.510958 90.963058) (xy 103.415476 91.128438) (xy 103.415473 91.128444) (xy 103.400999 91.172986) (xy 103.356457 91.310072) (xy 103.336496 91.5) (xy 103.356457 91.689927) (xy 103.386526 91.78247) (xy 103.415473 91.871556) (xy 103.415476 91.871561) (xy 103.495877 92.010821) (xy 103.512615 92.079817) (xy 103.489394 92.146908) (xy 103.475853 92.162916) (xy 91.765006 103.873763) (xy 91.764998 103.873773) (xy 91.684893 104.012519) (xy 91.684891 104.012524) (xy 91.665377 104.085352) (xy 91.665377 104.085353) (xy 91.665376 104.085352) (xy 91.643423 104.167285) (xy 91.643423 110.050743) (xy 91.623421 110.118864) (xy 91.569765 110.165357) (xy 91.499491 110.175461) (xy 91.434911 110.145967) (xy 91.423787 110.135054) (xy 91.411253 110.121134) (xy 91.256752 110.008882) (xy 91.082288 109.931206) (xy 90.895487 109.8915) (xy 90.704513 109.8915) (xy 90.517711 109.931206) (xy 90.343247 110.008882) (xy 90.188744 110.121135) (xy 90.060965 110.263048) (xy 90.060958 110.263058) (xy 89.965476 110.428438) (xy 89.965473 110.428445) (xy 89.906457 110.610072) (xy 89.886496 110.8) (xy 89.906457 110.989927) (xy 89.921056 111.034856) (xy 89.965473 111.171556) (xy 89.965476 111.171561) (xy 90.060958 111.336941) (xy 90.060965 111.336951) (xy 90.188744 111.478864) (xy 90.215223 111.498102) (xy 90.343248 111.591118) (xy 90.517712 111.668794) (xy 90.704513 111.7085) (xy 90.760406 111.7085) (xy 90.828527 111.728502) (xy 90.849501 111.745405) (xy 91.129595 112.025499) (xy 91.163621 112.087811) (xy 91.1665 112.114594) (xy 91.1665 113.785406) (xy 91.146498 113.853527) (xy 91.129595 113.874501) (xy 91.049501 113.954595) (xy 90.987189 113.988621) (xy 90.960406 113.9915) (xy 90.904513 113.9915) (xy 90.717711 114.031206) (xy 90.543247 114.108882) (xy 90.388744 114.221135) (xy 90.260965 114.363048) (xy 90.260958 114.363058) (xy 90.166126 114.527313) (xy 90.165473 114.528444) (xy 90.161353 114.541124) (xy 90.106457 114.710072) (xy 90.086496 114.9) (xy 90.106457 115.089927) (xy 90.127753 115.155467) (xy 90.165473 115.271556) (xy 90.166506 115.273345) (xy 90.260958 115.436941) (xy 90.260965 115.436951) (xy 90.388744 115.578864) (xy 90.406136 115.5915) (xy 90.543248 115.691118) (xy 90.717712 115.768794) (xy 90.904513 115.8085) (xy 91.095487 115.8085) (xy 91.282288 115.768794) (xy 91.456752 115.691118) (xy 91.456753 115.691116) (xy 91.462784 115.688432) (xy 91.46359 115.690242) (xy 91.523397 115.675723) (xy 91.590492 115.698932) (xy 91.634389 115.754731) (xy 91.643423 115.801581) (xy 91.643423 118.6655) (xy 91.623421 118.733621) (xy 91.569765 118.780114) (xy 91.517423 118.7915) (xy 89.7345 118.7915) (xy 89.666379 118.771498) (xy 89.619886 118.717842) (xy 89.6085 118.6655) (xy 89.6085 114.16989) (xy 89.602013 114.145681) (xy 89.567032 114.015128) (xy 89.531208 113.953079) (xy 89.503568 113.905205) (xy 89.486924 113.876376) (xy 89.486916 113.876366) (xy 89.025405 113.414855) (xy 88.991379 113.352543) (xy 88.9885 113.32576) (xy 88.9885 111.151403) (xy 88.98893 111.140998) (xy 88.993156 111.09) (xy 88.98893 111.038999) (xy 88.9885 111.028595) (xy 88.9885 110.191367) (xy 88.988499 110.19135) (xy 88.98199 110.130803) (xy 88.981989 110.130798) (xy 88.967331 110.0915) (xy 88.943119 110.026587) (xy 88.938054 109.955775) (xy 88.972078 109.893463) (xy 89.022237 109.862724) (xy 89.199219 109.80522) (xy 89.38161 109.712287) (xy 89.547219 109.591966) (xy 89.691966 109.447219) (xy 89.812287 109.28161) (xy 89.90522 109.099219) (xy 89.968477 108.904534) (xy 90.0005 108.702352) (xy 90.0005 108.6) (xy 90.0005 108.534108) (xy 90.0005 95.734108) (xy 90.0005 95.697648) (xy 89.968477 95.495466) (xy 89.90522 95.300781) (xy 89.812287 95.11839) (xy 89.789426 95.086924) (xy 89.691965 94.952779) (xy 89.54722 94.808034) (xy 89.381612 94.687714) (xy 89.300144 94.646204) (xy 89.199219 94.59478) (xy 89.074573 94.55428) (xy 89.022238 94.537275) (xy 88.963633 94.497201) (xy 88.935996 94.431804) (xy 88.943119 94.373413) (xy 88.981989 94.269201) (xy 88.98456 94.245292) (xy 88.988499 94.208649) (xy 88.9885 94.208632) (xy 88.9885 93.371403) (xy 88.98893 93.360998) (xy 88.989527 93.353796) (xy 88.993156 93.31) (xy 88.98893 93.258999) (xy 88.9885 93.248595) (xy 88.9885 91.384018) (xy 89.008502 91.315897) (xy 89.062158 91.269404) (xy 89.1145 91.258018) (xy 102.430591 91.258018) (xy 102.430592 91.258018) (xy 102.430593 91.258018) (xy 102.524081 91.232968) (xy 102.585355 91.21655) (xy 102.724109 91.13644) (xy 103.582841 90.277706) (xy 103.620683 90.251698) (xy 103.756752 90.191118) (xy 103.911253 90.078866) (xy 103.912175 90.077842) (xy 104.039034 89.936951) (xy 104.039035 89.936949) (xy 104.03904 89.936944) (xy 104.134527 89.771556) (xy 104.193542 89.589928) (xy 104.213504 89.4) (xy 104.193542 89.210072) (xy 104.134527 89.028444) (xy 104.03904 88.863056) (xy 104.039038 88.863054) (xy 104.039034 88.863048) (xy 103.911255 88.721135) (xy 103.756752 88.608882) (xy 103.582288 88.531206) (xy 103.395487 88.4915) (xy 103.279051 88.4915) (xy 103.21093 88.471498) (xy 103.164437 88.417842) (xy 103.159218 88.404436) (xy 103.152856 88.384856) (xy 103.134527 88.328444) (xy 103.03904 88.163056) (xy 103.039038 88.163054) (xy 103.039034 88.163048) (xy 102.911255 88.021135) (xy 102.756752 87.908882) (xy 102.582288 87.831206) (xy 102.395487 87.7915) (xy 102.204513 87.7915) (xy 102.017711 87.831206) (xy 101.843247 87.908882) (xy 101.688744 88.021135) (xy 101.560965 88.163048) (xy 101.560958 88.163058) (xy 101.465476 88.328438) (xy 101.465473 88.328444) (xy 101.457332 88.353499) (xy 101.406457 88.510072) (xy 101.386496 88.7) (xy 101.406457 88.889927) (xy 101.435399 88.979) (xy 101.465473 89.071556) (xy 101.465476 89.071561) (xy 101.544349 89.208174) (xy 101.56096 89.236944) (xy 101.659136 89.34598) (xy 101.689853 89.409987) (xy 101.6915 89.43029) (xy 101.6915 89.495761) (xy 101.671498 89.563882) (xy 101.654595 89.584856) (xy 101.634857 89.604594) (xy 101.572545 89.63862) (xy 101.545762 89.641499) (xy 97.860677 89.641499) (xy 97.792556 89.621497) (xy 97.746063 89.567841) (xy 97.735959 89.497567) (xy 97.765453 89.432987) (xy 97.771582 89.426404) (xy 97.861916 89.336069) (xy 97.861922 89.336063) (xy 97.942032 89.197308) (xy 97.944009 89.189928) (xy 97.9835 89.042547) (xy 97.9835 88.4795) (xy 98.003502 88.411379) (xy 98.057158 88.364886) (xy 98.1095 88.3535) (xy 99.666511 88.3535) (xy 99.666511 88.353499) (xy 99.703831 88.350562) (xy 99.863601 88.304145) (xy 99.863603 88.304143) (xy 99.863605 88.304143) (xy 99.935204 88.261799) (xy 100.006807 88.219453) (xy 100.124453 88.101807) (xy 100.182341 88.003924) (xy 100.209143 87.958605) (xy 100.209143 87.958603) (xy 100.209145 87.958601) (xy 100.255562 87.798831) (xy 100.258499 87.761511) (xy 100.2585 87.761511) (xy 100.2585 87.328489) (xy 100.258499 87.328488) (xy 100.258194 87.324618) (xy 100.255562 87.291169) (xy 100.209145 87.131399) (xy 100.209143 87.131397) (xy 100.209143 87.131394) (xy 100.124456 86.988198) (xy 100.124455 86.988197) (xy 100.124453 86.988193) (xy 100.124449 86.988189) (xy 100.123708 86.987233) (xy 100.123356 86.986337) (xy 100.120418 86.981369) (xy 100.121219 86.980895) (xy 100.097756 86.92115) (xy 100.111652 86.851526) (xy 100.123708 86.832767) (xy 100.124445 86.831814) (xy 100.124453 86.831807) (xy 100.184915 86.729572) (xy 100.209143 86.688605) (xy 100.209143 86.688603) (xy 100.209145 86.688601) (xy 100.255562 86.528831) (xy 100.258499 86.491511) (xy 100.2585 86.491511) (xy 100.2585 86.220297) (xy 100.278502 86.152176) (xy 100.332158 86.105683) (xy 100.402432 86.095579) (xy 100.467012 86.125073) (xy 100.473586 86.131193) (xy 100.61602 86.273627) (xy 100.616021 86.273628) (xy 100.729314 86.386921) (xy 100.729315 86.386922) (xy 100.729317 86.386923) (xy 100.786416 86.419889) (xy 100.86807 86.467032) (xy 101.022831 86.5085) (xy 101.022833 86.5085) (xy 103.892853 86.5085) (xy 103.892854 86.5085) (xy 103.892855 86.5085) (xy 103.975177 86.486442) (xy 104.047617 86.467032) (xy 104.186371 86.386922) (xy 105.627888 84.945405) (xy 105.6902 84.91138) (xy 105.716983 84.9085) (xy 106.058753 84.9085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 71.179966 114.10728) (xy 71.195091 114.117) (xy 71.293792 114.190887) (xy 71.293794 114.190888) (xy 71.293796 114.190889) (xy 71.324808 114.202456) (xy 71.430795 114.241988) (xy 71.430803 114.24199) (xy 71.49135 114.248499) (xy 71.491355 114.248499) (xy 71.491362 114.2485) (xy 72.735761 114.2485) (xy 72.803882 114.268502) (xy 72.824856 114.285405) (xy 74.854595 116.315144) (xy 74.888621 116.377456) (xy 74.8915 116.404239) (xy 74.8915 118.561075) (xy 74.871498 118.629196) (xy 74.817842 118.675689) (xy 74.747568 118.685793) (xy 74.682988 118.656299) (xy 74.676405 118.65017) (xy 70.48933 114.463095) (xy 70.455304 114.400783) (xy 70.460369 114.329968) (xy 70.502916 114.273132) (xy 70.569436 114.248321) (xy 70.578425 114.248) (xy 70.748585 114.248) (xy 70.748597 114.247999) (xy 70.809093 114.241494) (xy 70.945964 114.190444) (xy 70.945966 114.190443) (xy 71.044072 114.117001) (xy 71.110592 114.092189) ) ) (filled_polygon (layer "F.Cu") (pts (xy 63.560384 114.107592) (xy 63.575508 114.117312) (xy 63.673792 114.190887) (xy 63.673794 114.190888) (xy 63.673796 114.190889) (xy 63.704808 114.202456) (xy 63.810795 114.241988) (xy 63.810803 114.24199) (xy 63.87135 114.248499) (xy 63.871355 114.248499) (xy 63.871362 114.2485) (xy 65.235761 114.2485) (xy 65.303882 114.268502) (xy 65.324851 114.2854) (xy 65.966372 114.926921) (xy 65.966373 114.926922) (xy 65.966375 114.926923) (xy 66.052854 114.976852) (xy 66.105127 115.007032) (xy 66.105133 115.007033) (xy 66.105134 115.007034) (xy 66.142757 115.017115) (xy 66.142758 115.017115) (xy 66.259889 115.0485) (xy 66.25989 115.0485) (xy 66.42011 115.0485) (xy 68.735761 115.0485) (xy 68.803882 115.068502) (xy 68.824856 115.085405) (xy 69.940856 116.201405) (xy 69.974882 116.263717) (xy 69.969817 116.334532) (xy 69.92727 116.391368) (xy 69.86075 116.416179) (xy 69.851761 116.4165) (xy 69.456537 116.4165) (xy 69.354369 116.426937) (xy 69.188829 116.481791) (xy 69.040403 116.573342) (xy 69.040397 116.573347) (xy 68.932845 116.6809) (xy 68.870533 116.714926) (xy 68.799718 116.709861) (xy 68.754655 116.6809) (xy 68.647102 116.573347) (xy 68.647096 116.573342) (xy 68.620227 116.556769) (xy 68.49867 116.481791) (xy 68.333131 116.426938) (xy 68.333129 116.426937) (xy 68.333127 116.426937) (xy 68.230971 116.4165) (xy 67.631537 116.4165) (xy 67.529369 116.426937) (xy 67.363829 116.481791) (xy 67.215403 116.573342) (xy 67.215397 116.573347) (xy 67.092097 116.696647) (xy 67.092092 116.696653) (xy 67.000541 116.84508) (xy 66.945687 117.010622) (xy 66.93525 117.112778) (xy 66.93525 117.570511) (xy 66.915248 117.638632) (xy 66.861592 117.685125) (xy 66.791318 117.695229) (xy 66.726738 117.665735) (xy 66.720155 117.659606) (xy 63.386267 114.325718) (xy 63.352241 114.263406) (xy 63.357306 114.192591) (xy 63.399851 114.135757) (xy 63.424492 114.117311) (xy 63.49101 114.092501) ) ) (filled_polygon (layer "F.Cu") (pts (xy 99.833621 112.253502) (xy 99.880114 112.307158) (xy 99.8915 112.3595) (xy 99.8915 112.812212) (xy 99.901937 112.91438) (xy 99.956791 113.07992) (xy 100.048342 113.228346) (xy 100.048347 113.228352) (xy 100.171647 113.351652) (xy 100.171651 113.351655) (xy 100.171654 113.351658) (xy 100.219147 113.380952) (xy 100.266625 113.433736) (xy 100.279 113.488192) (xy 100.279 113.555754) (xy 100.258998 113.623875) (xy 100.242095 113.644849) (xy 99.363564 114.523379) (xy 99.363558 114.523387) (xy 99.334899 114.573026) (xy 99.283516 114.622019) (xy 99.213802 114.635454) (xy 99.147891 114.609067) (xy 99.132143 114.594335) (xy 99.123487 114.584722) (xy 99.111253 114.571134) (xy 99.075873 114.545429) (xy 98.956752 114.458882) (xy 98.782288 114.381206) (xy 98.595487 114.3415) (xy 98.404513 114.3415) (xy 98.217711 114.381206) (xy 98.043247 114.458882) (xy 97.949061 114.527313) (xy 97.882193 114.551172) (xy 97.813042 114.535091) (xy 97.800939 114.527313) (xy 97.706752 114.458882) (xy 97.532288 114.381206) (xy 97.345487 114.3415) (xy 97.154513 114.3415) (xy 96.967711 114.381206) (xy 96.793247 114.458882) (xy 96.638744 114.571135) (xy 96.510965 114.713048) (xy 96.510958 114.713058) (xy 96.415476 114.878438) (xy 96.415473 114.878444) (xy 96.404432 114.912425) (xy 96.356457 115.060072) (xy 96.336496 115.25) (xy 96.336496 115.250763) (xy 96.336371 115.251187) (xy 96.335806 115.256566) (xy 96.334822 115.256462) (xy 96.316494 115.318884) (xy 96.299591 115.339858) (xy 95.872635 115.766814) (xy 95.810323 115.80084) (xy 95.739508 115.795775) (xy 95.682672 115.753228) (xy 95.657861 115.686708) (xy 95.65754 115.677719) (xy 95.65754 113.355199) (xy 95.677542 113.287078) (xy 95.694445 113.266104) (xy 96.690144 112.270405) (xy 96.752456 112.236379) (xy 96.779239 112.2335) (xy 99.7655 112.2335) ) ) (filled_polygon (layer "F.Cu") (pts (xy 97.744733 103.110017) (xy 97.801569 103.152564) (xy 97.822407 103.195461) (xy 97.832965 103.234865) (xy 97.83297 103.234877) (xy 97.913075 103.373623) (xy 97.913083 103.373633) (xy 98.526366 103.986916) (xy 98.526371 103.98692) (xy 98.526373 103.986922) (xy 98.526374 103.986923) (xy 98.526376 103.986924) (xy 98.55817 104.00528) (xy 98.594661 104.026348) (xy 98.665128 104.067032) (xy 98.819889 104.1085) (xy 98.81989 104.1085) (xy 98.98011 104.1085) (xy 99.461431 104.1085) (xy 99.529552 104.128502) (xy 99.576045 104.182158) (xy 99.586044 104.243397) (xy 99.586496 104.243397) (xy 99.586496 104.246168) (xy 99.586741 104.247669) (xy 99.586496 104.25) (xy 99.586741 104.252331) (xy 99.586496 104.25367) (xy 99.586496 104.256603) (xy 99.58596 104.256603) (xy 99.573968 104.322169) (xy 99.525466 104.374015) (xy 99.461431 104.3915) (xy 98.23071 104.3915) (xy 98.162589 104.371498) (xy 98.137074 104.34981) (xy 98.111255 104.321135) (xy 97.956752 104.208882) (xy 97.782288 104.131206) (xy 97.595487 104.0915) (xy 97.404513 104.0915) (xy 97.217711 104.131206) (xy 97.043247 104.208882) (xy 96.888744 104.321135) (xy 96.760965 104.463048) (xy 96.760958 104.463058) (xy 96.665476 104.628438) (xy 96.665473 104.628445) (xy 96.606457 104.810072) (xy 96.586496 105.000001) (xy 96.586496 105.003924) (xy 96.585853 105.00611) (xy 96.585806 105.006567) (xy 96.585722 105.006558) (xy 96.566494 105.072045) (xy 96.512838 105.118538) (xy 96.486695 105.12717) (xy 96.467714 105.131204) (xy 96.293247 105.208882) (xy 96.138744 105.321135) (xy 96.010965 105.463048) (xy 96.010958 105.463058) (xy 95.915476 105.628438) (xy 95.915473 105.628445) (xy 95.856457 105.810072) (xy 95.836496 106) (xy 95.856457 106.189927) (xy 95.886306 106.281791) (xy 95.915473 106.371556) (xy 95.923886 106.386128) (xy 96.010958 106.536941) (xy 96.010965 106.536951) (xy 96.138744 106.678864) (xy 96.185794 106.713048) (xy 96.293248 106.791118) (xy 96.467712 106.868794) (xy 96.654513 106.9085) (xy 96.745761 106.9085) (xy 96.813882 106.928502) (xy 96.834851 106.9454) (xy 96.876373 106.986922) (xy 96.876374 106.986923) (xy 96.876376 106.986924) (xy 96.917395 107.010606) (xy 96.989137 107.052026) (xy 97.015128 107.067032) (xy 97.169889 107.1085) (xy 97.16989 107.1085) (xy 97.169891 107.1085) (xy 99.080109 107.1085) (xy 99.08011 107.1085) (xy 99.080111 107.1085) (xy 99.189464 107.079199) (xy 99.234873 107.067032) (xy 99.373627 106.986922) (xy 99.916104 106.444443) (xy 99.978417 106.410419) (xy 100.0052 106.407539) (xy 101.150341 106.407539) (xy 101.150343 106.407539) (xy 101.23025 106.386128) (xy 101.305105 106.366071) (xy 101.443859 106.285961) (xy 101.635856 106.093963) (xy 101.698166 106.05994) (xy 101.72495 106.05706) (xy 106.240137 106.05706) (xy 106.308258 106.077062) (xy 106.354751 106.130718) (xy 106.364855 106.200992) (xy 106.335361 106.265572) (xy 106.306285 106.290299) (xy 106.171654 106.373342) (xy 106.171652 106.373343) (xy 106.165408 106.377195) (xy 106.164138 106.375136) (xy 106.10899 106.397367) (xy 106.045468 106.387073) (xy 106.032292 106.381206) (xy 105.845487 106.3415) (xy 105.654513 106.3415) (xy 105.467711 106.381206) (xy 105.293247 106.458882) (xy 105.138744 106.571135) (xy 105.010965 106.713048) (xy 105.010958 106.713058) (xy 104.915476 106.878438) (xy 104.915473 106.878444) (xy 104.902378 106.918746) (xy 104.856457 107.060072) (xy 104.836496 107.25) (xy 104.856457 107.439927) (xy 104.886526 107.53247) (xy 104.915473 107.621556) (xy 104.915476 107.621561) (xy 105.010958 107.786941) (xy 105.010965 107.786951) (xy 105.138744 107.928864) (xy 105.138747 107.928866) (xy 105.293248 108.041118) (xy 105.467712 108.118794) (xy 105.654513 108.1585) (xy 105.845491 108.1585) (xy 105.88968 108.149107) (xy 105.960471 108.154508) (xy 106.017104 108.197324) (xy 106.041598 108.263962) (xy 106.026177 108.333263) (xy 106.023119 108.3385) (xy 105.957248 108.445292) (xy 105.902431 108.610723) (xy 105.90243 108.610726) (xy 105.892 108.712815) (xy 105.892 108.746) (xy 107.0655 108.746) (xy 107.133621 108.766002) (xy 107.180114 108.819658) (xy 107.1915 108.872) (xy 107.1915 109.128) (xy 107.171498 109.196121) (xy 107.117842 109.242614) (xy 107.0655 109.254) (xy 105.892 109.254) (xy 105.892 109.287184) (xy 105.90243 109.389273) (xy 105.902431 109.389276) (xy 105.957248 109.554707) (xy 106.049186 109.70376) (xy 106.067923 109.772239) (xy 106.046664 109.839978) (xy 106.042813 109.845416) (xy 105.999112 109.903792) (xy 105.99911 109.903797) (xy 105.948011 110.040795) (xy 105.948009 110.040803) (xy 105.9415 110.10135) (xy 105.9415 111.165335) (xy 105.921498 111.233456) (xy 105.867842 111.279949) (xy 105.797568 111.290053) (xy 105.732988 111.260559) (xy 105.726405 111.25443) (xy 105.623345 111.15137) (xy 105.623339 111.151365) (xy 105.472525 111.058342) (xy 105.304321 111.002606) (xy 105.304318 111.002605) (xy 105.200516 110.992) (xy 104.954 110.992) (xy 104.954 112.203) (xy 104.933998 112.271121) (xy 104.880342 112.317614) (xy 104.828 112.329) (xy 104.572 112.329) (xy 104.503879 112.308998) (xy 104.457386 112.255342) (xy 104.446 112.203) (xy 104.446 110.992) (xy 104.199483 110.992) (xy 104.095681 111.002605) (xy 104.095678 111.002606) (xy 103.927474 111.058342) (xy 103.776653 111.15137) (xy 103.772607 111.154569) (xy 103.706764 111.181124) (xy 103.637016 111.167866) (xy 103.605371 111.144821) (xy 103.598633 111.138083) (xy 103.598623 111.138075) (xy 103.459877 111.05797) (xy 103.459874 111.057969) (xy 103.459873 111.057968) (xy 103.459871 111.057967) (xy 103.45987 111.057967) (xy 103.346559 111.027606) (xy 103.346559 111.027605) (xy 103.305111 111.0165) (xy 96.394889 111.0165) (xy 96.394888 111.0165) (xy 96.35344 111.027605) (xy 96.353441 111.027606) (xy 96.240129 111.057967) (xy 96.240122 111.05797) (xy 96.101376 111.138075) (xy 96.101366 111.138083) (xy 95.473114 111.766336) (xy 95.410802 111.800362) (xy 95.339987 111.795297) (xy 95.283151 111.75275) (xy 95.25834 111.68623) (xy 95.258019 111.677241) (xy 95.258019 105.544756) (xy 95.278021 105.476635) (xy 95.294924 105.455661) (xy 96.434217 104.316368) (xy 97.611608 103.138976) (xy 97.673918 103.104953) ) ) (filled_polygon (layer "F.Cu") (pts (xy 116.262922 105.677542) (xy 116.283896 105.694445) (xy 116.351223 105.761772) (xy 116.385249 105.824084) (xy 116.380184 105.894899) (xy 116.371248 105.913866) (xy 116.359222 105.934694) (xy 116.35922 105.934699) (xy 116.300207 106.116321) (xy 116.280246 106.30625) (xy 116.300207 106.496177) (xy 116.323003 106.566333) (xy 116.359223 106.677806) (xy 116.359226 106.677811) (xy 116.454708 106.843191) (xy 116.454715 106.843201) (xy 116.582494 106.985114) (xy 116.605265 107.001658) (xy 116.736998 107.097368) (xy 116.911462 107.175044) (xy 116.991696 107.192098) (xy 117.05417 107.225826) (xy 117.088492 107.287976) (xy 117.0915 107.315344) (xy 117.0915 107.487212) (xy 117.101937 107.58938) (xy 117.156791 107.75492) (xy 117.248342 107.903346) (xy 117.248347 107.903352) (xy 117.356254 108.011259) (xy 117.39028 108.073571) (xy 117.385215 108.144386) (xy 117.356254 108.189449) (xy 117.248742 108.29696) (xy 117.248737 108.296966) (xy 117.157248 108.445292) (xy 117.102431 108.610723) (xy 117.10243 108.610726) (xy 117.092 108.712815) (xy 117.092 108.746) (xy 118.2655 108.746) (xy 118.333621 108.766002) (xy 118.380114 108.819658) (xy 118.3915 108.872) (xy 118.3915 109.128) (xy 118.371498 109.196121) (xy 118.317842 109.242614) (xy 118.2655 109.254) (xy 117.092 109.254) (xy 117.092 109.287184) (xy 117.10243 109.389273) (xy 117.102431 109.389276) (xy 117.157248 109.554707) (xy 117.248737 109.703033) (xy 117.248742 109.703039) (xy 117.257697 109.711994) (xy 117.291723 109.774306) (xy 117.286658 109.845121) (xy 117.269472 109.876596) (xy 117.24911 109.903797) (xy 117.198011 110.040795) (xy 117.198009 110.040803) (xy 117.1915 110.10135) (xy 117.1915 111.226117) (xy 117.171498 111.294238) (xy 117.117842 111.340731) (xy 117.047568 111.350835) (xy 116.982988 111.321341) (xy 116.95826 111.292265) (xy 116.948636 111.276663) (xy 116.948629 111.276654) (xy 116.823345 111.15137) (xy 116.823339 111.151365) (xy 116.672525 111.058342) (xy 116.504321 111.002606) (xy 116.504318 111.002605) (xy 116.400516 110.992) (xy 116.154 110.992) (xy 116.154 112.203) (xy 116.133998 112.271121) (xy 116.080342 112.317614) (xy 116.028 112.329) (xy 115.772 112.329) (xy 115.703879 112.308998) (xy 115.657386 112.255342) (xy 115.646 112.203) (xy 115.646 110.992) (xy 115.399483 110.992) (xy 115.295681 111.002605) (xy 115.295678 111.002606) (xy 115.127474 111.058342) (xy 114.976653 111.15137) (xy 114.972607 111.154569) (xy 114.906764 111.181124) (xy 114.837016 111.167866) (xy 114.805371 111.144821) (xy 114.723633 111.063083) (xy 114.723623 111.063075) (xy 114.584877 110.98297) (xy 114.584874 110.982969) (xy 114.584873 110.982968) (xy 114.584871 110.982967) (xy 114.58487 110.982967) (xy 114.507491 110.962234) (xy 114.492966 110.958342) (xy 114.430111 110.9415) (xy 113.369889 110.9415) (xy 113.369888 110.9415) (xy 113.292508 110.962233) (xy 113.292508 110.962234) (xy 113.222826 110.980905) (xy 113.215127 110.982968) (xy 113.215122 110.98297) (xy 113.076375 111.063076) (xy 113.076369 111.063081) (xy 112.655597 111.483852) (xy 112.593285 111.517877) (xy 112.526872 111.514361) (xy 112.489381 111.501938) (xy 112.489379 111.501937) (xy 112.489377 111.501937) (xy 112.387221 111.4915) (xy 111.787787 111.4915) (xy 111.685619 111.501937) (xy 111.520079 111.556791) (xy 111.371653 111.648342) (xy 111.371647 111.648347) (xy 111.248347 111.771647) (xy 111.24834 111.771656) (xy 111.226757 111.806648) (xy 111.173971 111.854126) (xy 111.119517 111.8665) (xy 110.504239 111.8665) (xy 110.436118 111.846498) (xy 110.415144 111.829595) (xy 110.395405 111.809856) (xy 110.361379 111.747544) (xy 110.3585 111.720761) (xy 110.3585 107.2845) (xy 110.378502 107.216379) (xy 110.432158 107.169886) (xy 110.4845 107.1585) (xy 110.595487 107.1585) (xy 110.782288 107.118794) (xy 110.956752 107.041118) (xy 111.111253 106.928866) (xy 111.137073 106.90019) (xy 111.239034 106.786951) (xy 111.239035 106.786949) (xy 111.23904 106.786944) (xy 111.334527 106.621556) (xy 111.393542 106.439928) (xy 111.413504 106.25) (xy 111.393542 106.060072) (xy 111.34553 105.91231) (xy 111.343503 105.841343) (xy 111.37627 105.784278) (xy 111.466106 105.694444) (xy 111.528418 105.660419) (xy 111.5552 105.65754) (xy 116.194801 105.65754) ) ) (filled_polygon (layer "F.Cu") (pts (xy 57.404 112.118) (xy 57.383998 112.186121) (xy 57.330342 112.232614) (xy 57.278 112.244) (xy 57.022 112.244) (xy 56.953879 112.223998) (xy 56.907386 112.170342) (xy 56.896 112.118) (xy 56.896 111.53225) (xy 56.953147 111.565245) (xy 57.082857 111.6) (xy 57.217143 111.6) (xy 57.346853 111.565245) (xy 57.404 111.53225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.104 112.118) (xy 70.083998 112.186121) (xy 70.030342 112.232614) (xy 69.978 112.244) (xy 69.722 112.244) (xy 69.653879 112.223998) (xy 69.607386 112.170342) (xy 69.596 112.118) (xy 69.596 111.53225) (xy 69.653147 111.565245) (xy 69.782857 111.6) (xy 69.917143 111.6) (xy 70.046853 111.565245) (xy 70.104 111.53225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 128.829086 104.478982) (xy 128.85006 104.495885) (xy 130.487065 106.13289) (xy 130.521091 106.195202) (xy 130.516026 106.266017) (xy 130.473479 106.322853) (xy 130.406959 106.347664) (xy 130.337585 106.332573) (xy 130.331823 106.329226) (xy 130.321491 106.322853) (xy 130.25492 106.281791) (xy 130.089381 106.226938) (xy 130.089379 106.226937) (xy 130.089377 106.226937) (xy 129.987221 106.2165) (xy 129.987213 106.2165) (xy 129.760934 106.2165) (xy 129.692813 106.196498) (xy 129.64632 106.142842) (xy 129.635624 106.103669) (xy 129.632587 106.074777) (xy 129.631042 106.060072) (xy 129.572027 105.878444) (xy 129.47654 105.713056) (xy 129.476538 105.713054) (xy 129.476534 105.713048) (xy 129.348755 105.571135) (xy 129.194252 105.458882) (xy 129.019788 105.381206) (xy 128.832987 105.3415) (xy 128.642013 105.3415) (xy 128.455211 105.381206) (xy 128.280747 105.458882) (xy 128.126244 105.571135) (xy 128.100426 105.59981) (xy 128.03998 105.63705) (xy 128.00679 105.6415) (xy 123.48071 105.6415) (xy 123.412589 105.621498) (xy 123.387074 105.59981) (xy 123.361255 105.571135) (xy 123.206752 105.458882) (xy 123.032288 105.381206) (xy 122.845487 105.3415) (xy 122.654513 105.3415) (xy 122.467711 105.381206) (xy 122.293247 105.458882) (xy 122.138744 105.571135) (xy 122.010965 105.713048) (xy 122.010958 105.713058) (xy 121.915476 105.878438) (xy 121.915473 105.878444) (xy 121.908511 105.899871) (xy 121.856457 106.060072) (xy 121.836496 106.25) (xy 121.856457 106.439927) (xy 121.880892 106.515127) (xy 121.915473 106.621556) (xy 121.926214 106.64016) (xy 122.010958 106.786941) (xy 122.010965 106.786951) (xy 122.138744 106.928864) (xy 122.138747 106.928866) (xy 122.293248 107.041118) (xy 122.467712 107.118794) (xy 122.654513 107.1585) (xy 122.845487 107.1585) (xy 123.032288 107.118794) (xy 123.206752 107.041118) (xy 123.361253 106.928866) (xy 123.361581 106.928502) (xy 123.387074 106.90019) (xy 123.44752 106.86295) (xy 123.48071 106.8585) (xy 128.00679 106.8585) (xy 128.074911 106.878502) (xy 128.100426 106.90019) (xy 128.126244 106.928864) (xy 128.126247 106.928866) (xy 128.280748 107.041118) (xy 128.455212 107.118794) (xy 128.582683 107.145889) (xy 128.591697 107.147805) (xy 128.654171 107.181534) (xy 128.688492 107.243683) (xy 128.6915 107.271051) (xy 128.6915 107.487212) (xy 128.701937 107.58938) (xy 128.756791 107.75492) (xy 128.848342 107.903346) (xy 128.848347 107.903352) (xy 128.956254 108.011259) (xy 128.99028 108.073571) (xy 128.985215 108.144386) (xy 128.956254 108.189449) (xy 128.848742 108.29696) (xy 128.848737 108.296966) (xy 128.757248 108.445292) (xy 128.702431 108.610723) (xy 128.70243 108.610726) (xy 128.692 108.712815) (xy 128.692 108.746) (xy 129.8655 108.746) (xy 129.933621 108.766002) (xy 129.980114 108.819658) (xy 129.9915 108.872) (xy 129.9915 109.128) (xy 129.971498 109.196121) (xy 129.917842 109.242614) (xy 129.8655 109.254) (xy 128.692 109.254) (xy 128.692 109.287184) (xy 128.70243 109.389273) (xy 128.702431 109.389276) (xy 128.757248 109.554707) (xy 128.849186 109.70376) (xy 128.867923 109.772239) (xy 128.846664 109.839978) (xy 128.842813 109.845416) (xy 128.799112 109.903792) (xy 128.79911 109.903797) (xy 128.748011 110.040795) (xy 128.748009 110.040803) (xy 128.7415 110.10135) (xy 128.7415 111.20718) (xy 128.721498 111.275301) (xy 128.667842 111.321794) (xy 128.597568 111.331898) (xy 128.532988 111.302404) (xy 128.508259 111.273327) (xy 128.448634 111.17666) (xy 128.448629 111.176654) (xy 128.323345 111.05137) (xy 128.323339 111.051365) (xy 128.172525 110.958342) (xy 128.004321 110.902606) (xy 128.004318 110.902605) (xy 127.900516 110.892) (xy 127.654 110.892) (xy 127.654 112.103) (xy 127.633998 112.171121) (xy 127.580342 112.217614) (xy 127.528 112.229) (xy 127.272 112.229) (xy 127.203879 112.208998) (xy 127.157386 112.155342) (xy 127.146 112.103) (xy 127.146 110.892) (xy 126.899483 110.892) (xy 126.795681 110.902605) (xy 126.795678 110.902606) (xy 126.627474 110.958342) (xy 126.47666 111.051365) (xy 126.379243 111.148782) (xy 126.316931 111.182807) (xy 126.246115 111.177741) (xy 126.201053 111.148781) (xy 126.015355 110.963083) (xy 126.015345 110.963075) (xy 125.876599 110.88297) (xy 125.876596 110.882969) (xy 125.876595 110.882968) (xy 125.876593 110.882967) (xy 125.876592 110.882967) (xy 125.772693 110.855128) (xy 125.721833 110.8415) (xy 124.694889 110.8415) (xy 124.644029 110.855128) (xy 124.540129 110.882967) (xy 124.540122 110.88297) (xy 124.401375 110.963076) (xy 124.401369 110.963081) (xy 123.998069 111.36638) (xy 123.935757 111.400405) (xy 123.896167 111.402631) (xy 123.787221 111.3915) (xy 123.187787 111.3915) (xy 123.085619 111.401937) (xy 122.920079 111.456791) (xy 122.771653 111.548342) (xy 122.771647 111.548347) (xy 122.648347 111.671647) (xy 122.64834 111.671656) (xy 122.626757 111.706648) (xy 122.573971 111.754126) (xy 122.519517 111.7665) (xy 122.429239 111.7665) (xy 122.361118 111.746498) (xy 122.340144 111.729595) (xy 121.645405 111.034856) (xy 121.611379 110.972544) (xy 121.6085 110.945761) (xy 121.6085 106.66989) (xy 121.602808 106.648649) (xy 121.580752 106.566333) (xy 121.567032 106.515127) (xy 121.550199 106.485972) (xy 121.486924 106.376376) (xy 121.486916 106.376366) (xy 119.784624 104.674075) (xy 119.750599 104.611763) (xy 119.755663 104.540948) (xy 119.79821 104.484112) (xy 119.86473 104.459301) (xy 119.873719 104.45898) (xy 128.760965 104.45898) ) ) (filled_polygon (layer "F.Cu") (pts (xy 40.700385 94.527592) (xy 40.715502 94.537306) (xy 40.799078 94.599871) (xy 40.813796 94.610889) (xy 40.950795 94.661988) (xy 40.950803 94.66199) (xy 41.01135 94.668499) (xy 41.011355 94.668499) (xy 41.011362 94.6685) (xy 41.797431 94.6685) (xy 41.88505 94.6685) (xy 41.953171 94.688502) (xy 41.974145 94.705405) (xy 44.080231 96.811491) (xy 44.170125 96.871556) (xy 44.188083 96.883555) (xy 44.307923 96.933194) (xy 44.435143 96.9585) (xy 48.77505 96.9585) (xy 48.843171 96.978502) (xy 48.864145 96.995405) (xy 54.654595 102.785855) (xy 54.688621 102.848167) (xy 54.6915 102.87495) (xy 54.6915 106.07505) (xy 54.671498 106.143171) (xy 54.654595 106.164145) (xy 52.964145 107.854595) (xy 52.901833 107.888621) (xy 52.87505 107.8915) (xy 47.065139 107.8915) (xy 46.937922 107.916806) (xy 46.937919 107.916807) (xy 46.818082 107.966445) (xy 46.710232 108.038508) (xy 46.710226 108.038513) (xy 45.278515 109.470223) (xy 45.27851 109.47023) (xy 45.278509 109.470231) (xy 45.258255 109.500544) (xy 45.231805 109.540129) (xy 45.206445 109.578082) (xy 45.174909 109.654218) (xy 45.130361 109.709499) (xy 45.062997 109.73192) (xy 45.0585 109.732) (xy 44.704 109.732) (xy 44.704 110.647749) (xy 44.646853 110.614755) (xy 44.517143 110.58) (xy 44.382857 110.58) (xy 44.253147 110.614755) (xy 44.196 110.647749) (xy 44.196 109.732) (xy 43.551402 109.732) (xy 43.490906 109.738505) (xy 43.354035 109.789555) (xy 43.255924 109.863) (xy 43.189404 109.88781) (xy 43.12003 109.872718) (xy 43.104907 109.862999) (xy 43.006207 109.789112) (xy 43.006202 109.78911) (xy 42.869204 109.738011) (xy 42.869196 109.738009) (xy 42.808649 109.7315) (xy 42.808638 109.7315) (xy 41.011362 109.7315) (xy 41.01135 109.7315) (xy 40.950803 109.738009) (xy 40.950795 109.738011) (xy 40.813797 109.78911) (xy 40.813792 109.789112) (xy 40.715509 109.862687) (xy 40.648989 109.887498) (xy 40.579615 109.872407) (xy 40.564491 109.862687) (xy 40.466207 109.789112) (xy 40.466202 109.78911) (xy 40.329204 109.738011) (xy 40.329196 109.738009) (xy 40.268649 109.7315) (xy 40.268638 109.7315) (xy 38.471362 109.7315) (xy 38.47135 109.7315) (xy 38.410803 109.738009) (xy 38.410795 109.738011) (xy 38.273797 109.78911) (xy 38.273792 109.789113) (xy 38.202009 109.842849) (xy 38.135488 109.86766) (xy 38.066114 109.852568) (xy 38.015912 109.802366) (xy 38.0005 109.741981) (xy 38.0005 106.501) (xy 38.020502 106.432879) (xy 38.074158 106.386386) (xy 38.1265 106.375) (xy 43.875 106.375) (xy 43.875 106.175) (xy 44.6 106.175) (xy 54.225 106.175) (xy 54.225 103.225) (xy 44.6 103.225) (xy 44.6 106.175) (xy 43.875 106.175) (xy 43.875 98) (xy 38.1265 98) (xy 38.058379 97.979998) (xy 38.011886 97.926342) (xy 38.0005 97.874) (xy 38.0005 94.658018) (xy 38.020502 94.589897) (xy 38.074158 94.543404) (xy 38.144432 94.5333) (xy 38.202009 94.55715) (xy 38.273792 94.610887) (xy 38.273794 94.610888) (xy 38.273796 94.610889) (xy 38.332875 94.632924) (xy 38.410795 94.661988) (xy 38.410803 94.66199) (xy 38.47135 94.668499) (xy 38.471355 94.668499) (xy 38.471362 94.6685) (xy 38.471368 94.6685) (xy 40.268632 94.6685) (xy 40.268638 94.6685) (xy 40.268645 94.668499) (xy 40.268649 94.668499) (xy 40.329196 94.66199) (xy 40.329199 94.661989) (xy 40.329201 94.661989) (xy 40.466204 94.610889) (xy 40.564492 94.537311) (xy 40.631011 94.512501) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.104 94.668) (xy 70.748585 94.668) (xy 70.748597 94.667999) (xy 70.809093 94.661494) (xy 70.945964 94.610444) (xy 70.945966 94.610443) (xy 71.044072 94.537001) (xy 71.110592 94.512189) (xy 71.179966 94.52728) (xy 71.195091 94.537) (xy 71.293792 94.610887) (xy 71.293794 94.610888) (xy 71.293796 94.610889) (xy 71.352875 94.632924) (xy 71.430795 94.661988) (xy 71.430803 94.66199) (xy 71.49135 94.668499) (xy 71.491355 94.668499) (xy 71.491362 94.6685) (xy 71.491368 94.6685) (xy 73.288632 94.6685) (xy 73.288638 94.6685) (xy 73.288645 94.668499) (xy 73.288649 94.668499) (xy 73.349196 94.66199) (xy 73.349199 94.661989) (xy 73.349201 94.661989) (xy 73.486204 94.610889) (xy 73.584492 94.537311) (xy 73.651011 94.512501) (xy 73.720385 94.527592) (xy 73.735502 94.537306) (xy 73.819078 94.599871) (xy 73.833796 94.610889) (xy 73.970795 94.661988) (xy 73.970803 94.66199) (xy 74.03135 94.668499) (xy 74.031355 94.668499) (xy 74.031362 94.6685) (xy 74.031368 94.6685) (xy 75.828632 94.6685) (xy 75.828638 94.6685) (xy 75.828645 94.668499) (xy 75.828649 94.668499) (xy 75.889196 94.66199) (xy 75.889199 94.661989) (xy 75.889201 94.661989) (xy 76.026204 94.610889) (xy 76.124492 94.537311) (xy 76.191011 94.512501) (xy 76.260385 94.527592) (xy 76.275502 94.537306) (xy 76.359078 94.599871) (xy 76.373796 94.610889) (xy 76.510795 94.661988) (xy 76.510803 94.66199) (xy 76.57135 94.668499) (xy 76.571355 94.668499) (xy 76.571362 94.6685) (xy 76.571368 94.6685) (xy 78.368632 94.6685) (xy 78.368638 94.6685) (xy 78.368645 94.668499) (xy 78.368649 94.668499) (xy 78.429196 94.66199) (xy 78.429199 94.661989) (xy 78.429201 94.661989) (xy 78.566204 94.610889) (xy 78.664492 94.537311) (xy 78.731011 94.512501) (xy 78.800385 94.527592) (xy 78.815502 94.537306) (xy 78.899078 94.599871) (xy 78.913796 94.610889) (xy 79.050795 94.661988) (xy 79.050803 94.66199) (xy 79.11135 94.668499) (xy 79.111355 94.668499) (xy 79.111362 94.6685) (xy 79.388124 94.6685) (xy 79.456245 94.688502) (xy 79.502738 94.742158) (xy 79.512842 94.812432) (xy 79.483348 94.877012) (xy 79.477219 94.883595) (xy 79.408035 94.952778) (xy 79.408034 94.952779) (xy 79.287714 95.118387) (xy 79.194781 95.300779) (xy 79.194778 95.300785) (xy 79.131524 95.495461) (xy 79.131523 95.495464) (xy 79.131523 95.495466) (xy 79.0995 95.697648) (xy 79.0995 95.734108) (xy 79.0995 108.534108) (xy 79.0995 108.6) (xy 79.0995 108.702352) (xy 79.129671 108.892839) (xy 79.131524 108.904538) (xy 79.192413 109.091936) (xy 79.19478 109.099219) (xy 79.267844 109.242614) (xy 79.287714 109.281612) (xy 79.408034 109.44722) (xy 79.477219 109.516405) (xy 79.511245 109.578717) (xy 79.50618 109.649532) (xy 79.463633 109.706368) (xy 79.397113 109.731179) (xy 79.388124 109.7315) (xy 79.11135 109.7315) (xy 79.050803 109.738009) (xy 79.050795 109.738011) (xy 78.913797 109.78911) (xy 78.913792 109.789112) (xy 78.815509 109.862687) (xy 78.748989 109.887498) (xy 78.679615 109.872407) (xy 78.664491 109.862687) (xy 78.566207 109.789112) (xy 78.566202 109.78911) (xy 78.429204 109.738011) (xy 78.429196 109.738009) (xy 78.368649 109.7315) (xy 78.368638 109.7315) (xy 76.571362 109.7315) (xy 76.57135 109.7315) (xy 76.510803 109.738009) (xy 76.510795 109.738011) (xy 76.373797 109.78911) (xy 76.373792 109.789112) (xy 76.275509 109.862687) (xy 76.208989 109.887498) (xy 76.139615 109.872407) (xy 76.124491 109.862687) (xy 76.026207 109.789112) (xy 76.026202 109.78911) (xy 75.889204 109.738011) (xy 75.889196 109.738009) (xy 75.828649 109.7315) (xy 75.828638 109.7315) (xy 74.031362 109.7315) (xy 74.03135 109.7315) (xy 73.970803 109.738009) (xy 73.970795 109.738011) (xy 73.833797 109.78911) (xy 73.833792 109.789112) (xy 73.735509 109.862687) (xy 73.668989 109.887498) (xy 73.599615 109.872407) (xy 73.584491 109.862687) (xy 73.486207 109.789112) (xy 73.486202 109.78911) (xy 73.349204 109.738011) (xy 73.349196 109.738009) (xy 73.288649 109.7315) (xy 73.288638 109.7315) (xy 71.491362 109.7315) (xy 71.49135 109.7315) (xy 71.430803 109.738009) (xy 71.430795 109.738011) (xy 71.293797 109.78911) (xy 71.293792 109.789112) (xy 71.195091 109.863) (xy 71.128571 109.887811) (xy 71.059197 109.87272) (xy 71.044072 109.862999) (xy 70.945966 109.789556) (xy 70.945964 109.789555) (xy 70.809093 109.738505) (xy 70.748597 109.732) (xy 70.104 109.732) (xy 70.104 110.647749) (xy 70.046853 110.614755) (xy 69.917143 110.58) (xy 69.782857 110.58) (xy 69.653147 110.614755) (xy 69.596 110.647749) (xy 69.596 109.732) (xy 68.951402 109.732) (xy 68.890906 109.738505) (xy 68.754035 109.789555) (xy 68.655924 109.863) (xy 68.589404 109.88781) (xy 68.52003 109.872718) (xy 68.504907 109.862999) (xy 68.406207 109.789112) (xy 68.406202 109.78911) (xy 68.269204 109.738011) (xy 68.269196 109.738009) (xy 68.208649 109.7315) (xy 68.208638 109.7315) (xy 66.411362 109.7315) (xy 66.41135 109.7315) (xy 66.350803 109.738009) (xy 66.350795 109.738011) (xy 66.213797 109.78911) (xy 66.213792 109.789112) (xy 66.115509 109.862687) (xy 66.048989 109.887498) (xy 65.979615 109.872407) (xy 65.964491 109.862687) (xy 65.866207 109.789112) (xy 65.866202 109.78911) (xy 65.729204 109.738011) (xy 65.729196 109.738009) (xy 65.668649 109.7315) (xy 65.668638 109.7315) (xy 63.871362 109.7315) (xy 63.87135 109.7315) (xy 63.810803 109.738009) (xy 63.810795 109.738011) (xy 63.673797 109.78911) (xy 63.673792 109.789112) (xy 63.575509 109.862687) (xy 63.508989 109.887498) (xy 63.439615 109.872407) (xy 63.424491 109.862687) (xy 63.326207 109.789112) (xy 63.326202 109.78911) (xy 63.189204 109.738011) (xy 63.189196 109.738009) (xy 63.128649 109.7315) (xy 63.128638 109.7315) (xy 61.331362 109.7315) (xy 61.33135 109.7315) (xy 61.270803 109.738009) (xy 61.270795 109.738011) (xy 61.133797 109.78911) (xy 61.133792 109.789112) (xy 61.035509 109.862687) (xy 60.968989 109.887498) (xy 60.899615 109.872407) (xy 60.884491 109.862687) (xy 60.786207 109.789112) (xy 60.786202 109.78911) (xy 60.649204 109.738011) (xy 60.649196 109.738009) (xy 60.588649 109.7315) (xy 60.588638 109.7315) (xy 58.791362 109.7315) (xy 58.79135 109.7315) (xy 58.730803 109.738009) (xy 58.730795 109.738011) (xy 58.593797 109.78911) (xy 58.593792 109.789112) (xy 58.495091 109.863) (xy 58.428571 109.887811) (xy 58.359197 109.87272) (xy 58.344072 109.862999) (xy 58.245966 109.789556) (xy 58.245964 109.789555) (xy 58.109093 109.738505) (xy 58.048597 109.732) (xy 57.404 109.732) (xy 57.404 110.647749) (xy 57.346853 110.614755) (xy 57.217143 110.58) (xy 57.082857 110.58) (xy 56.953147 110.614755) (xy 56.896 110.647749) (xy 56.896 109.732) (xy 56.251402 109.732) (xy 56.190906 109.738505) (xy 56.054035 109.789555) (xy 55.955924 109.863) (xy 55.889404 109.88781) (xy 55.82003 109.872718) (xy 55.804907 109.862999) (xy 55.706207 109.789112) (xy 55.706202 109.78911) (xy 55.569204 109.738011) (xy 55.569196 109.738009) (xy 55.508649 109.7315) (xy 55.508638 109.7315) (xy 54.533239 109.7315) (xy 54.465118 109.711498) (xy 54.418625 109.657842) (xy 54.408521 109.587568) (xy 54.438015 109.522988) (xy 54.444144 109.516405) (xy 56.786915 107.173634) (xy 56.786921 107.173628) (xy 56.867032 107.034873) (xy 56.897946 106.9195) (xy 56.9085 106.880111) (xy 56.9085 103.1) (xy 67.6 103.1) (xy 70.6 103.1) (xy 70.6 95.075) (xy 67.6 95.075) (xy 67.6 103.1) (xy 56.9085 103.1) (xy 56.9085 98.004238) (xy 56.928502 97.936117) (xy 56.945405 97.915143) (xy 59.615143 95.245405) (xy 59.677455 95.211379) (xy 59.704238 95.2085) (xy 60.78011 95.2085) (xy 60.780111 95.2085) (xy 60.857491 95.187766) (xy 60.934873 95.167032) (xy 61.073627 95.086922) (xy 61.355904 94.804642) (xy 61.35591 94.804639) (xy 61.455145 94.705405) (xy 61.517457 94.671379) (xy 61.54424 94.6685) (xy 63.128632 94.6685) (xy 63.128638 94.6685) (xy 63.128645 94.668499) (xy 63.128649 94.668499) (xy 63.189196 94.66199) (xy 63.189199 94.661989) (xy 63.189201 94.661989) (xy 63.326204 94.610889) (xy 63.424492 94.537311) (xy 63.491011 94.512501) (xy 63.560385 94.527592) (xy 63.575502 94.537306) (xy 63.659078 94.599871) (xy 63.673796 94.610889) (xy 63.810795 94.661988) (xy 63.810803 94.66199) (xy 63.87135 94.668499) (xy 63.871355 94.668499) (xy 63.871362 94.6685) (xy 63.871368 94.6685) (xy 65.668632 94.6685) (xy 65.668638 94.6685) (xy 65.668645 94.668499) (xy 65.668649 94.668499) (xy 65.729196 94.66199) (xy 65.729199 94.661989) (xy 65.729201 94.661989) (xy 65.866204 94.610889) (xy 65.964492 94.537311) (xy 66.031011 94.512501) (xy 66.100385 94.527592) (xy 66.115502 94.537306) (xy 66.199078 94.599871) (xy 66.213796 94.610889) (xy 66.350795 94.661988) (xy 66.350803 94.66199) (xy 66.41135 94.668499) (xy 66.411355 94.668499) (xy 66.411362 94.6685) (xy 66.411368 94.6685) (xy 68.208632 94.6685) (xy 68.208638 94.6685) (xy 68.208645 94.668499) (xy 68.208649 94.668499) (xy 68.269196 94.66199) (xy 68.269199 94.661989) (xy 68.269201 94.661989) (xy 68.406204 94.610889) (xy 68.504907 94.537) (xy 68.571426 94.512189) (xy 68.6408 94.52728) (xy 68.655925 94.537) (xy 68.754034 94.610444) (xy 68.890906 94.661494) (xy 68.951402 94.667999) (xy 68.951415 94.668) (xy 69.596 94.668) (xy 69.596 93.75225) (xy 69.653147 93.785245) (xy 69.782857 93.82) (xy 69.917143 93.82) (xy 70.046853 93.785245) (xy 70.104 93.75225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 82.746121 109.920502) (xy 82.792614 109.974158) (xy 82.804 110.0265) (xy 82.804 110.647749) (xy 82.746853 110.614755) (xy 82.617143 110.58) (xy 82.482857 110.58) (xy 82.353147 110.614755) (xy 82.296 110.647749) (xy 82.296 110.0265) (xy 82.316002 109.958379) (xy 82.369658 109.911886) (xy 82.422 109.9005) (xy 82.678 109.9005) ) ) (filled_polygon (layer "F.Cu") (pts (xy 143.198196 101.528502) (xy 143.21917 101.545404) (xy 143.757119 102.083354) (xy 143.922296 102.193722) (xy 144.052075 102.247477) (xy 144.105831 102.269744) (xy 144.300671 102.3085) (xy 149.830076 102.3085) (xy 149.898197 102.328502) (xy 149.919171 102.345405) (xy 151.70017 104.126405) (xy 151.734196 104.188717) (xy 151.729131 104.259533) (xy 151.686584 104.316368) (xy 151.620064 104.341179) (xy 151.611075 104.3415) (xy 150.50135 104.3415) (xy 150.440803 104.348009) (xy 150.440795 104.348011) (xy 150.303797 104.39911) (xy 150.303792 104.399112) (xy 150.186736 104.48674) (xy 150.185364 104.488574) (xy 150.18353 104.489946) (xy 150.180366 104.493111) (xy 150.17991 104.492655) (xy 150.128526 104.531118) (xy 150.05771 104.536179) (xy 149.9954 104.502151) (xy 149.961378 104.439837) (xy 149.9585 104.41306) (xy 149.9585 103.851367) (xy 149.958499 103.85135) (xy 149.95199 103.790803) (xy 149.951988 103.790795) (xy 149.911989 103.683556) (xy 149.900889 103.653796) (xy 149.900888 103.653794) (xy 149.900887 103.653792) (xy 149.813261 103.536738) (xy 149.696207 103.449112) (xy 149.696202 103.44911) (xy 149.559204 103.398011) (xy 149.559196 103.398009) (xy 149.498649 103.3915) (xy 149.498638 103.3915) (xy 148.301362 103.3915) (xy 148.30135 103.3915) (xy 148.240803 103.398009) (xy 148.240795 103.398011) (xy 148.103797 103.44911) (xy 148.103792 103.449112) (xy 147.986738 103.536738) (xy 147.908683 103.641009) (xy 147.851847 103.683556) (xy 147.807815 103.6915) (xy 147.190062 103.6915) (xy 147.121941 103.671498) (xy 147.082821 103.631646) (xy 147.076658 103.621654) (xy 147.076657 103.621653) (xy 147.076652 103.621647) (xy 146.953352 103.498347) (xy 146.953346 103.498342) (xy 146.873532 103.449112) (xy 146.80492 103.406791) (xy 146.639381 103.351938) (xy 146.639379 103.351937) (xy 146.639377 103.351937) (xy 146.537221 103.3415) (xy 145.962787 103.3415) (xy 145.860619 103.351937) (xy 145.695079 103.406791) (xy 145.546653 103.498342) (xy 145.546647 103.498347) (xy 145.464095 103.5809) (xy 145.401783 103.614926) (xy 145.330968 103.609861) (xy 145.285905 103.5809) (xy 145.203352 103.498347) (xy 145.203346 103.498342) (xy 145.123532 103.449112) (xy 145.05492 103.406791) (xy 144.889381 103.351938) (xy 144.889379 103.351937) (xy 144.889377 103.351937) (xy 144.787221 103.3415) (xy 144.787213 103.3415) (xy 144.416739 103.3415) (xy 144.348618 103.321498) (xy 144.327644 103.304595) (xy 143.188054 102.165004) (xy 143.188044 102.164996) (xy 143.049298 102.084891) (xy 143.049295 102.08489) (xy 143.049294 102.084889) (xy 143.049292 102.084888) (xy 143.049291 102.084888) (xy 142.947221 102.057539) (xy 142.947221 102.057538) (xy 142.894532 102.043421) (xy 142.89453 102.04342) (xy 109.437005 102.04342) (xy 109.368884 102.023418) (xy 109.322391 101.969762) (xy 109.312287 101.899488) (xy 109.341781 101.834908) (xy 109.34791 101.828324) (xy 109.403646 101.772589) (xy 109.630831 101.545404) (xy 109.693143 101.511379) (xy 109.719926 101.5085) (xy 143.130075 101.5085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 154.116512 97.327515) (xy 154.123095 97.333644) (xy 154.953078 98.163627) (xy 154.953079 98.163628) (xy 155.066372 98.276921) (xy 155.205128 98.357032) (xy 155.359889 98.3985) (xy 155.52011 98.3985) (xy 156.006629 98.3985) (xy 156.07475 98.418502) (xy 156.112112 98.455585) (xy 156.224275 98.627265) (xy 156.224279 98.62727) (xy 156.27447 98.681791) (xy 156.364248 98.779315) (xy 156.376762 98.792908) (xy 156.419726 98.826348) (xy 156.554424 98.931189) (xy 156.58768 98.949186) (xy 156.638071 98.9992) (xy 156.653423 99.068516) (xy 156.628862 99.135129) (xy 156.58768 99.170813) (xy 156.554426 99.18881) (xy 156.554424 99.188811) (xy 156.376762 99.327091) (xy 156.224279 99.492729) (xy 156.224275 99.492734) (xy 156.101141 99.681206) (xy 156.010704 99.887384) (xy 155.955437 100.105624) (xy 155.955436 100.10563) (xy 155.955436 100.105632) (xy 155.936844 100.33) (xy 155.954858 100.547394) (xy 155.955437 100.554375) (xy 156.010702 100.772612) (xy 156.010703 100.772613) (xy 156.101141 100.978793) (xy 156.224275 101.167265) (xy 156.224279 101.16727) (xy 156.376762 101.332908) (xy 156.40427 101.354318) (xy 156.554424 101.471189) (xy 156.752426 101.578342) (xy 156.752427 101.578342) (xy 156.752428 101.578343) (xy 156.864227 101.616723) (xy 156.965365 101.651444) (xy 157.187431 101.6885) (xy 157.187435 101.6885) (xy 157.412565 101.6885) (xy 157.412569 101.6885) (xy 157.634635 101.651444) (xy 157.847574 101.578342) (xy 158.045576 101.471189) (xy 158.22324 101.332906) (xy 158.375722 101.167268) (xy 158.49886 100.978791) (xy 158.589296 100.772616) (xy 158.644564 100.554368) (xy 158.663156 100.33) (xy 158.644564 100.105632) (xy 158.606165 99.954) (xy 158.589296 99.887384) (xy 158.574992 99.854775) (xy 158.49886 99.681209) (xy 158.452384 99.610072) (xy 158.375724 99.492734) (xy 158.37572 99.492729) (xy 158.25957 99.366559) (xy 158.22324 99.327094) (xy 158.223239 99.327093) (xy 158.223237 99.327091) (xy 158.140955 99.263048) (xy 158.045576 99.188811) (xy 158.012319 99.170813) (xy 157.961929 99.120802) (xy 157.946576 99.051485) (xy 157.971136 98.984872) (xy 158.01232 98.949186) (xy 158.045576 98.931189) (xy 158.162606 98.8401) (xy 158.181918 98.825069) (xy 158.24796 98.799012) (xy 158.259309 98.7985) (xy 159.009328 98.7985) (xy 159.009329 98.7985) (xy 159.204169 98.759744) (xy 159.387704 98.683721) (xy 159.552881 98.573353) (xy 159.693353 98.432881) (xy 159.776405 98.349829) (xy 159.838717 98.315803) (xy 159.909532 98.320868) (xy 159.966368 98.363415) (xy 159.991179 98.429935) (xy 159.9915 98.438924) (xy 159.9915 101.742611) (xy 160.000902 101.777703) (xy 160.000903 101.777703) (xy 160.000903 101.777704) (xy 160.016186 101.834739) (xy 160.032968 101.897372) (xy 160.03297 101.897377) (xy 160.113075 102.036123) (xy 160.113077 102.036125) (xy 160.113078 102.036127) (xy 160.354596 102.277645) (xy 160.38862 102.339956) (xy 160.3915 102.366739) (xy 160.3915 102.787212) (xy 160.401938 102.889382) (xy 160.401939 102.889387) (xy 160.41436 102.926874) (xy 160.416799 102.997828) (xy 160.38385 103.055599) (xy 159.084854 104.354596) (xy 159.022544 104.38862) (xy 158.995761 104.3915) (xy 155.704239 104.3915) (xy 155.636118 104.371498) (xy 155.615144 104.354595) (xy 155.145405 103.884856) (xy 155.111379 103.822544) (xy 155.1085 103.795761) (xy 155.1085 103.73029) (xy 155.128502 103.662169) (xy 155.14086 103.645983) (xy 155.23904 103.536944) (xy 155.334527 103.371556) (xy 155.393542 103.189928) (xy 155.413504 103) (xy 155.393542 102.810072) (xy 155.334527 102.628444) (xy 155.23904 102.463056) (xy 155.239038 102.463054) (xy 155.239034 102.463048) (xy 155.111255 102.321135) (xy 154.956752 102.208882) (xy 154.782288 102.131206) (xy 154.595487 102.0915) (xy 154.404513 102.0915) (xy 154.217711 102.131206) (xy 154.043247 102.208882) (xy 153.888744 102.321135) (xy 153.760965 102.463048) (xy 153.760958 102.463058) (xy 153.665729 102.628) (xy 153.665473 102.628444) (xy 153.650999 102.672986) (xy 153.606457 102.810072) (xy 153.598866 102.882302) (xy 153.571853 102.947958) (xy 153.513631 102.988588) (xy 153.442686 102.991291) (xy 153.384461 102.958226) (xy 151.187421 100.761186) (xy 151.153395 100.698874) (xy 151.15846 100.628059) (xy 151.201007 100.571223) (xy 151.267527 100.546412) (xy 151.289324 100.546744) (xy 151.399485 100.558) (xy 151.446 100.558) (xy 151.446 99.804) (xy 150.692 99.804) (xy 150.692 99.850516) (xy 150.702605 99.954318) (xy 150.702606 99.954321) (xy 150.758343 100.122527) (xy 150.782189 100.161188) (xy 150.800926 100.229668) (xy 150.779666 100.297406) (xy 150.725159 100.342897) (xy 150.65471 100.351698) (xy 150.62673 100.343743) (xy 150.594174 100.330258) (xy 150.594169 100.330256) (xy 150.399331 100.2915) (xy 150.399329 100.2915) (xy 150.260682 100.2915) (xy 150.192561 100.271498) (xy 150.146068 100.217842) (xy 150.135964 100.147568) (xy 150.141077 100.125867) (xy 150.142112 100.122742) (xy 150.142115 100.122738) (xy 150.197887 99.954426) (xy 150.2085 99.850545) (xy 150.208499 99.484499) (xy 150.228501 99.41638) (xy 150.282156 99.369887) (xy 150.334499 99.3585) (xy 151.828 99.3585) (xy 151.896121 99.378502) (xy 151.942614 99.432158) (xy 151.954 99.4845) (xy 151.954 100.558) (xy 152.000517 100.558) (xy 152.000516 100.557999) (xy 152.104318 100.547394) (xy 152.104321 100.547393) (xy 152.272525 100.491657) (xy 152.423339 100.398634) (xy 152.423345 100.398629) (xy 152.548629 100.273345) (xy 152.548634 100.273339) (xy 152.641657 100.122525) (xy 152.669572 100.038283) (xy 152.709986 99.979912) (xy 152.775543 99.952656) (xy 152.845428 99.965169) (xy 152.878269 99.988818) (xy 153.176372 100.286921) (xy 153.315127 100.367032) (xy 153.389355 100.386921) (xy 153.469889 100.4085) (xy 153.46989 100.4085) (xy 153.63011 100.4085) (xy 153.76929 100.4085) (xy 153.837411 100.428502) (xy 153.862926 100.45019) (xy 153.888744 100.478864) (xy 153.888747 100.478866) (xy 154.043248 100.591118) (xy 154.217712 100.668794) (xy 154.404513 100.7085) (xy 154.595487 100.7085) (xy 154.782288 100.668794) (xy 154.956752 100.591118) (xy 155.111253 100.478866) (xy 155.21195 100.367031) (xy 155.239034 100.336951) (xy 155.239035 100.336949) (xy 155.23904 100.336944) (xy 155.334527 100.171556) (xy 155.393542 99.989928) (xy 155.413504 99.8) (xy 155.393542 99.610072) (xy 155.334527 99.428444) (xy 155.23904 99.263056) (xy 155.239038 99.263054) (xy 155.239034 99.263048) (xy 155.111255 99.121135) (xy 154.956752 99.008882) (xy 154.782288 98.931206) (xy 154.595487 98.8915) (xy 154.404513 98.8915) (xy 154.217711 98.931206) (xy 154.043248 99.008882) (xy 153.884836 99.123974) (xy 153.817968 99.147832) (xy 153.748817 99.131751) (xy 153.721681 99.111132) (xy 153.413931 98.803382) (xy 153.379905 98.74107) (xy 153.38497 98.670255) (xy 153.427517 98.613419) (xy 153.463402 98.59468) (xy 153.472524 98.591658) (xy 153.623339 98.498634) (xy 153.623345 98.498629) (xy 153.748629 98.373345) (xy 153.748634 98.373339) (xy 153.841657 98.222525) (xy 153.897393 98.054321) (xy 153.897394 98.054318) (xy 153.907999 97.950516) (xy 153.908 97.950516) (xy 153.908 97.904) (xy 152.772 97.904) (xy 152.703879 97.883998) (xy 152.657386 97.830342) (xy 152.646 97.778) (xy 152.646 97.522) (xy 152.666002 97.453879) (xy 152.719658 97.407386) (xy 152.772 97.396) (xy 153.908001 97.396) (xy 153.919114 97.384886) (xy 153.928002 97.354618) (xy 153.981658 97.308125) (xy 154.051932 97.298021) ) ) (filled_polygon (layer "F.Cu") (pts (xy 108.929685 96.828013) (xy 108.976178 96.881669) (xy 108.986282 96.951943) (xy 108.956788 97.016523) (xy 108.950659 97.023106) (xy 108.31917 97.654595) (xy 108.256858 97.688621) (xy 108.230075 97.6915) (xy 106.422833 97.6915) (xy 106.319866 97.71909) (xy 106.319865 97.719089) (xy 106.26807 97.732968) (xy 106.12932 97.813075) (xy 106.12931 97.813083) (xy 105.163084 98.779308) (xy 105.163076 98.779318) (xy 105.08297 98.918065) (xy 105.082967 98.918072) (xy 105.048936 99.04508) (xy 105.048935 99.045079) (xy 105.0415 99.072829) (xy 105.0415 102.480114) (xy 105.050882 102.515126) (xy 105.050882 102.515128) (xy 105.050883 102.515128) (xy 105.082967 102.63487) (xy 105.082969 102.634875) (xy 105.0937 102.653461) (xy 105.110437 102.722457) (xy 105.087216 102.789548) (xy 105.031408 102.833435) (xy 104.98458 102.84246) (xy 102.570205 102.84246) (xy 102.502084 102.822458) (xy 102.481114 102.805559) (xy 101.938633 102.263078) (xy 101.938631 102.263077) (xy 101.938629 102.263075) (xy 101.799883 102.18297) (xy 101.79988 102.182969) (xy 101.799879 102.182968) (xy 101.799877 102.182967) (xy 101.799876 102.182967) (xy 101.722497 102.162234) (xy 101.645117 102.1415) (xy 101.645115 102.1415) (xy 100.23071 102.1415) (xy 100.162589 102.121498) (xy 100.137074 102.09981) (xy 100.111255 102.071135) (xy 99.956752 101.958882) (xy 99.782284 101.881204) (xy 99.722361 101.868467) (xy 99.659888 101.834739) (xy 99.625567 101.772589) (xy 99.630295 101.70175) (xy 99.659462 101.656128) (xy 104.470675 96.844916) (xy 104.532987 96.81089) (xy 104.55977 96.808011) (xy 108.861564 96.808011) ) ) (filled_polygon (layer "F.Cu") (pts (xy 44.704 94.668) (xy 45.348585 94.668) (xy 45.348597 94.667999) (xy 45.409093 94.661494) (xy 45.545964 94.610444) (xy 45.545966 94.610443) (xy 45.644072 94.537001) (xy 45.710592 94.512189) (xy 45.779966 94.52728) (xy 45.795091 94.537) (xy 45.893792 94.610887) (xy 45.893794 94.610888) (xy 45.893796 94.610889) (xy 45.952875 94.632924) (xy 46.030795 94.661988) (xy 46.030803 94.66199) (xy 46.09135 94.668499) (xy 46.091355 94.668499) (xy 46.091362 94.6685) (xy 46.091368 94.6685) (xy 47.888632 94.6685) (xy 47.888638 94.6685) (xy 47.888645 94.668499) (xy 47.888649 94.668499) (xy 47.949196 94.66199) (xy 47.949199 94.661989) (xy 47.949201 94.661989) (xy 48.086204 94.610889) (xy 48.184492 94.537311) (xy 48.251011 94.512501) (xy 48.320385 94.527592) (xy 48.335502 94.537306) (xy 48.419078 94.599871) (xy 48.433796 94.610889) (xy 48.570795 94.661988) (xy 48.570803 94.66199) (xy 48.63135 94.668499) (xy 48.631355 94.668499) (xy 48.631362 94.6685) (xy 48.631368 94.6685) (xy 50.428632 94.6685) (xy 50.428638 94.6685) (xy 50.428645 94.668499) (xy 50.428649 94.668499) (xy 50.489196 94.66199) (xy 50.489199 94.661989) (xy 50.489201 94.661989) (xy 50.626204 94.610889) (xy 50.724492 94.537311) (xy 50.791011 94.512501) (xy 50.860385 94.527592) (xy 50.875502 94.537306) (xy 50.959078 94.599871) (xy 50.973796 94.610889) (xy 51.110795 94.661988) (xy 51.110803 94.66199) (xy 51.17135 94.668499) (xy 51.171355 94.668499) (xy 51.171362 94.6685) (xy 51.171368 94.6685) (xy 52.968632 94.6685) (xy 52.968638 94.6685) (xy 52.968645 94.668499) (xy 52.968649 94.668499) (xy 53.029196 94.66199) (xy 53.029199 94.661989) (xy 53.029201 94.661989) (xy 53.166204 94.610889) (xy 53.264492 94.537311) (xy 53.331011 94.512501) (xy 53.400385 94.527592) (xy 53.415502 94.537306) (xy 53.499078 94.599871) (xy 53.513796 94.610889) (xy 53.650795 94.661988) (xy 53.650803 94.66199) (xy 53.71135 94.668499) (xy 53.711355 94.668499) (xy 53.711362 94.6685) (xy 53.711368 94.6685) (xy 55.508632 94.6685) (xy 55.508638 94.6685) (xy 55.508645 94.668499) (xy 55.508649 94.668499) (xy 55.569196 94.66199) (xy 55.569199 94.661989) (xy 55.569201 94.661989) (xy 55.706204 94.610889) (xy 55.804492 94.537311) (xy 55.871011 94.512501) (xy 55.940385 94.527592) (xy 55.955502 94.537306) (xy 56.039078 94.599871) (xy 56.053796 94.610889) (xy 56.190795 94.661988) (xy 56.190803 94.66199) (xy 56.25135 94.668499) (xy 56.251355 94.668499) (xy 56.251362 94.6685) (xy 57.566761 94.6685) (xy 57.634882 94.688502) (xy 57.681375 94.742158) (xy 57.691479 94.812432) (xy 57.661985 94.877012) (xy 57.655856 94.883595) (xy 55.313083 97.226366) (xy 55.313075 97.226376) (xy 55.23297 97.365122) (xy 55.232966 97.365133) (xy 55.220018 97.413451) (xy 55.220019 97.413452) (xy 55.1915 97.519888) (xy 55.1915 101.15605) (xy 55.171498 101.224171) (xy 55.117842 101.270664) (xy 55.047568 101.280768) (xy 54.982988 101.251274) (xy 54.976405 101.245145) (xy 49.519773 95.788513) (xy 49.519769 95.788509) (xy 49.411917 95.716445) (xy 49.390199 95.707449) (xy 49.29208 95.666807) (xy 49.292077 95.666806) (xy 49.16486 95.6415) (xy 49.164857 95.6415) (xy 44.82495 95.6415) (xy 44.756829 95.621498) (xy 44.735855 95.604595) (xy 44.014355 94.883095) (xy 43.980329 94.820783) (xy 43.985394 94.749968) (xy 44.027941 94.693132) (xy 44.094461 94.668321) (xy 44.10345 94.668) (xy 44.196 94.668) (xy 44.196 93.75225) (xy 44.253147 93.785245) (xy 44.382857 93.82) (xy 44.517143 93.82) (xy 44.646853 93.785245) (xy 44.704 93.75225) ) ) (filled_polygon (layer "F.Cu") (pts (xy 111.422795 96.941917) (xy 111.479631 96.984464) (xy 111.487881 96.996971) (xy 111.510958 97.036941) (xy 111.510965 97.036951) (xy 111.638744 97.178864) (xy 111.654575 97.190366) (xy 111.793248 97.291118) (xy 111.967712 97.368794) (xy 112.154513 97.4085) (xy 112.245761 97.4085) (xy 112.313882 97.428502) (xy 112.334851 97.4454) (xy 112.776372 97.886921) (xy 112.776373 97.886922) (xy 112.776375 97.886923) (xy 112.854265 97.931893) (xy 112.915127 97.967032) (xy 112.965914 97.98064) (xy 113.069889 98.0085) (xy 113.06989 98.0085) (xy 113.23011 98.0085) (xy 141.520761 98.0085) (xy 141.588882 98.028502) (xy 141.609856 98.045405) (xy 142.840856 99.276405) (xy 142.874882 99.338717) (xy 142.869817 99.409532) (xy 142.82727 99.466368) (xy 142.76075 99.491179) (xy 142.751761 99.4915) (xy 109.719926 99.4915) (xy 109.651805 99.471498) (xy 109.630831 99.454596) (xy 109.503326 99.327091) (xy 109.307485 99.131251) (xy 109.273461 99.068939) (xy 109.278525 98.998124) (xy 109.307484 98.953063) (xy 111.28967 96.970876) (xy 111.35198 96.936853) ) ) (filled_polygon (layer "F.Cu") (pts (xy 147.875936 93.678502) (xy 147.908683 93.708991) (xy 147.986738 93.813261) (xy 148.101448 93.899132) (xy 148.143995 93.955968) (xy 148.149059 94.026784) (xy 148.115034 94.089096) (xy 148.101448 94.100868) (xy 147.986738 94.186738) (xy 147.899112 94.303792) (xy 147.89911 94.303797) (xy 147.848011 94.440795) (xy 147.848009 94.440803) (xy 147.8415 94.50135) (xy 147.8415 95.398649) (xy 147.848009 95.459196) (xy 147.848011 95.459204) (xy 147.89911 95.596202) (xy 147.899112 95.596207) (xy 147.986738 95.713261) (xy 148.103792 95.800887) (xy 148.103794 95.800888) (xy 148.103796 95.800889) (xy 148.158074 95.821134) (xy 148.240795 95.851988) (xy 148.240803 95.85199) (xy 148.30135 95.858499) (xy 148.301355 95.858499) (xy 148.301362 95.8585) (xy 148.301368 95.8585) (xy 149.498632 95.8585) (xy 149.498638 95.8585) (xy 149.498645 95.858499) (xy 149.498649 95.858499) (xy 149.559196 95.85199) (xy 149.559199 95.851989) (xy 149.559201 95.851989) (xy 149.566269 95.849353) (xy 149.582741 95.843209) (xy 149.696204 95.800889) (xy 149.699782 95.798211) (xy 149.813261 95.713261) (xy 149.900887 95.596207) (xy 149.900887 95.596206) (xy 149.900889 95.596204) (xy 149.951989 95.459201) (xy 149.957617 95.406858) (xy 149.958499 95.398649) (xy 149.9585 95.398632) (xy 149.9585 94.836939) (xy 149.978502 94.768818) (xy 150.032158 94.722325) (xy 150.102432 94.712221) (xy 150.167012 94.741715) (xy 150.185368 94.76143) (xy 150.186738 94.763261) (xy 150.303792 94.850887) (xy 150.303794 94.850888) (xy 150.303796 94.850889) (xy 150.35905 94.871498) (xy 150.440795 94.901988) (xy 150.440803 94.90199) (xy 150.50135 94.908499) (xy 150.501355 94.908499) (xy 150.501362 94.9085) (xy 150.501368 94.9085) (xy 151.698632 94.9085) (xy 151.698638 94.9085) (xy 151.698645 94.908499) (xy 151.698649 94.908499) (xy 151.752032 94.90276) (xy 151.8219 94.915366) (xy 151.873862 94.963744) (xy 151.8915 95.028038) (xy 151.8915 95.450544) (xy 151.902112 95.554425) (xy 151.939994 95.668746) (xy 151.957885 95.722738) (xy 152.035983 95.849355) (xy 152.05472 95.917832) (xy 152.033461 95.985571) (xy 151.978954 96.031063) (xy 151.9404 96.039076) (xy 151.940578 96.040422) (xy 151.932388 96.0415) (xy 151.855008 96.062233) (xy 151.855008 96.062234) (xy 151.777627 96.082968) (xy 151.777622 96.08297) (xy 151.638876 96.163075) (xy 151.63887 96.16308) (xy 151.072353 96.729596) (xy 151.010041 96.763621) (xy 150.983258 96.7665) (xy 150.612787 96.7665) (xy 150.510619 96.776937) (xy 150.345079 96.831791) (xy 150.196653 96.923342) (xy 150.196647 96.923347) (xy 150.089095 97.0309) (xy 150.026783 97.064926) (xy 149.955968 97.059861) (xy 149.910905 97.0309) (xy 149.803352 96.923347) (xy 149.803346 96.923342) (xy 149.65492 96.831791) (xy 149.489381 96.776938) (xy 149.489379 96.776937) (xy 149.489377 96.776937) (xy 149.387221 96.7665) (xy 148.787787 96.7665) (xy 148.685619 96.776937) (xy 148.520079 96.831791) (xy 148.439216 96.881669) (xy 148.401273 96.905073) (xy 148.397184 96.907595) (xy 148.328705 96.926332) (xy 148.260966 96.905073) (xy 148.223796 96.8665) (xy 148.218399 96.85775) (xy 148.19903 96.826348) (xy 148.199027 96.826345) (xy 148.199024 96.826341) (xy 148.073658 96.700975) (xy 148.073652 96.70097) (xy 148.029372 96.673658) (xy 147.922738 96.607885) (xy 147.838582 96.579999) (xy 147.754427 96.552113) (xy 147.75442 96.552112) (xy 147.650553 96.5415) (xy 146.899455 96.5415) (xy 146.795574 96.552112) (xy 146.627261 96.607885) (xy 146.476347 96.70097) (xy 146.476341 96.700975) (xy 146.350971 96.826345) (xy 146.348511 96.829457) (xy 146.346281 96.831035) (xy 146.34578 96.831537) (xy 146.345694 96.831451) (xy 146.290568 96.870483) (xy 146.219643 96.873671) (xy 146.158254 96.838008) (xy 146.150837 96.829446) (xy 146.148632 96.826657) (xy 146.023345 96.70137) (xy 146.023339 96.701365) (xy 145.872525 96.608342) (xy 145.704321 96.552606) (xy 145.704318 96.552605) (xy 145.600516 96.542) (xy 145.479 96.542) (xy 145.479 97.878) (xy 145.458998 97.946121) (xy 145.405342 97.992614) (xy 145.353 98.004) (xy 144.142 98.004) (xy 144.142 98.250516) (xy 144.152605 98.354318) (xy 144.152606 98.354321) (xy 144.208342 98.522525) (xy 144.286716 98.649589) (xy 144.305453 98.718069) (xy 144.284194 98.785808) (xy 144.229686 98.831299) (xy 144.159237 98.8401) (xy 144.095214 98.809416) (xy 144.09038 98.804831) (xy 142.870536 97.584986) (xy 142.83651 97.522674) (xy 142.841575 97.451858) (xy 142.884122 97.395023) (xy 142.950642 97.370212) (xy 142.985829 97.372645) (xy 143.154509 97.4085) (xy 143.154513 97.4085) (xy 143.345487 97.4085) (xy 143.532288 97.368794) (xy 143.706752 97.291118) (xy 143.861253 97.178866) (xy 143.927868 97.104882) (xy 143.988313 97.067643) (xy 144.059297 97.068994) (xy 144.118282 97.108508) (xy 144.14654 97.173638) (xy 144.146852 97.201999) (xy 144.142 97.249492) (xy 144.142 97.496) (xy 144.971 97.496) (xy 144.971 96.542) (xy 144.849483 96.542) (xy 144.745681 96.552605) (xy 144.745678 96.552606) (xy 144.577474 96.608342) (xy 144.42666 96.701365) (xy 144.360544 96.767481) (xy 144.298231 96.801506) (xy 144.227416 96.79644) (xy 144.17058 96.753893) (xy 144.14577 96.687373) (xy 144.146138 96.665219) (xy 144.163504 96.5) (xy 144.143542 96.310072) (xy 144.131789 96.273904) (xy 144.129762 96.202939) (xy 144.162525 96.145877) (xy 144.363001 95.945401) (xy 144.425311 95.911378) (xy 144.452094 95.908499) (xy 144.787212 95.908499) (xy 144.889381 95.898062) (xy 145.05492 95.843209) (xy 145.203346 95.751658) (xy 145.244398 95.710606) (xy 145.286259 95.668746) (xy 145.348571 95.63472) (xy 145.419386 95.639785) (xy 145.464449 95.668746) (xy 145.54696 95.751257) (xy 145.546966 95.751262) (xy 145.695292 95.842751) (xy 145.860723 95.897568) (xy 145.860726 95.897569) (xy 145.962815 95.907999) (xy 145.962815 95.908) (xy 145.996 95.908) (xy 146.504 95.908) (xy 146.537185 95.908) (xy 146.537184 95.907999) (xy 146.639273 95.897569) (xy 146.639276 95.897568) (xy 146.804707 95.842751) (xy 146.953033 95.751262) (xy 146.953039 95.751257) (xy 147.076257 95.628039) (xy 147.076262 95.628033) (xy 147.167751 95.479707) (xy 147.222568 95.314276) (xy 147.222569 95.314273) (xy 147.232999 95.212184) (xy 147.233 95.212184) (xy 147.233 95.1165) (xy 146.504 95.1165) (xy 146.504 95.908) (xy 145.996 95.908) (xy 145.996 94.7345) (xy 146.016002 94.666379) (xy 146.069658 94.619886) (xy 146.122 94.6085) (xy 147.233 94.6085) (xy 147.233 94.512815) (xy 147.222569 94.410726) (xy 147.222568 94.410723) (xy 147.167751 94.245292) (xy 147.076262 94.096966) (xy 147.076257 94.09696) (xy 147.068745 94.089448) (xy 147.034719 94.027136) (xy 147.039784 93.956321) (xy 147.068747 93.911256) (xy 147.076658 93.903346) (xy 147.168209 93.75492) (xy 147.16916 93.752049) (xy 147.171542 93.744864) (xy 147.211957 93.686494) (xy 147.277514 93.659239) (xy 147.291145 93.6585) (xy 147.807815 93.6585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 143.458621 92.805594) (xy 143.505114 92.85925) (xy 143.5165 92.911592) (xy 143.5165 93.387212) (xy 143.526938 93.489381) (xy 143.558027 93.583205) (xy 143.560467 93.65416) (xy 143.527517 93.711932) (xy 140.884856 96.354595) (xy 140.822544 96.38862) (xy 140.795761 96.3915) (xy 114.3345 96.3915) (xy 114.266379 96.371498) (xy 114.219886 96.317842) (xy 114.2085 96.2655) (xy 114.2085 94.715849) (xy 114.228502 94.647728) (xy 114.282158 94.601235) (xy 114.352432 94.591131) (xy 114.35904 94.592262) (xy 114.440671 94.6085) (xy 114.440672 94.6085) (xy 114.639328 94.6085) (xy 114.639329 94.6085) (xy 114.834169 94.569744) (xy 115.017704 94.493721) (xy 115.182881 94.383353) (xy 115.323353 94.242881) (xy 115.433721 94.077704) (xy 115.509744 93.894169) (xy 115.5485 93.699329) (xy 115.5485 92.911592) (xy 115.568502 92.843471) (xy 115.622158 92.796978) (xy 115.6745 92.785592) (xy 143.3905 92.785592) ) ) (filled_polygon (layer "F.Cu") (pts (xy 160.009532 87.120868) (xy 160.066368 87.163415) (xy 160.091179 87.229935) (xy 160.0915 87.238924) (xy 160.0915 90.442615) (xy 160.095756 90.458498) (xy 160.095757 90.458498) (xy 160.132967 90.59737) (xy 160.13297 90.597377) (xy 160.213075 90.736123) (xy 160.213076 90.736124) (xy 160.213078 90.736127) (xy 160.354596 90.877645) (xy 160.38862 90.939955) (xy 160.3915 90.966739) (xy 160.3915 91.387213) (xy 160.394289 91.414508) (xy 160.381312 91.484309) (xy 160.358037 91.516407) (xy 160.008584 91.865861) (xy 159.019848 92.854596) (xy 158.957538 92.88862) (xy 158.930755 92.8915) (xy 155.404239 92.8915) (xy 155.336118 92.871498) (xy 155.315144 92.854595) (xy 155.145405 92.684856) (xy 155.111379 92.622544) (xy 155.1085 92.595761) (xy 155.1085 92.53029) (xy 155.128502 92.462169) (xy 155.14086 92.445983) (xy 155.23904 92.336944) (xy 155.334527 92.171556) (xy 155.393542 91.989928) (xy 155.413504 91.8) (xy 155.393542 91.610072) (xy 155.334527 91.428444) (xy 155.23904 91.263056) (xy 155.239038 91.263054) (xy 155.239034 91.263048) (xy 155.111255 91.121135) (xy 154.956752 91.008882) (xy 154.782288 90.931206) (xy 154.595487 90.8915) (xy 154.404513 90.8915) (xy 154.217711 90.931206) (xy 154.043247 91.008882) (xy 153.888744 91.121135) (xy 153.760965 91.263048) (xy 153.760958 91.263058) (xy 153.665476 91.428438) (xy 153.665473 91.428445) (xy 153.606457 91.610072) (xy 153.586496 91.800001) (xy 153.591615 91.848713) (xy 153.578842 91.918551) (xy 153.530339 91.970397) (xy 153.461506 91.98779) (xy 153.394196 91.965207) (xy 153.37721 91.950976) (xy 152.419975 90.993741) (xy 152.419973 90.993739) (xy 152.254796 90.883371) (xy 152.219604 90.868794) (xy 152.104543 90.821134) (xy 152.071266 90.80735) (xy 152.071261 90.807348) (xy 151.876423 90.768592) (xy 151.876421 90.768592) (xy 115.6745 90.768592) (xy 115.606379 90.74859) (xy 115.559886 90.694934) (xy 115.5485 90.642592) (xy 115.5485 89.850672) (xy 115.548499 89.850668) (xy 115.543667 89.826374) (xy 115.509744 89.655831) (xy 115.433721 89.472296) (xy 115.323353 89.307119) (xy 115.182881 89.166647) (xy 115.017704 89.056279) (xy 114.834169 88.980256) (xy 114.81786 88.977012) (xy 114.639331 88.9415) (xy 114.639329 88.9415) (xy 114.440671 88.9415) (xy 114.440668 88.9415) (xy 114.359082 88.957729) (xy 114.288368 88.951401) (xy 114.2323 88.907847) (xy 114.208681 88.840894) (xy 114.2085 88.83415) (xy 114.2085 88.573239) (xy 114.228502 88.505118) (xy 114.282158 88.458625) (xy 114.352432 88.448521) (xy 114.417012 88.478015) (xy 114.423586 88.484135) (xy 114.425411 88.48596) (xy 114.425413 88.485961) (xy 114.425414 88.485962) (xy 114.522946 88.542272) (xy 114.564166 88.566071) (xy 114.564172 88.566072) (xy 114.564173 88.566073) (xy 114.61656 88.58011) (xy 114.616561 88.58011) (xy 114.718928 88.607539) (xy 114.718929 88.607539) (xy 114.879149 88.607539) (xy 138.390535 88.607539) (xy 138.458656 88.627541) (xy 138.479625 88.644439) (xy 138.822108 88.986922) (xy 138.899623 89.031675) (xy 138.960863 89.067032) (xy 139.115624 89.1085) (xy 139.115625 89.1085) (xy 139.275845 89.1085) (xy 144.194517 89.1085) (xy 144.262638 89.128502) (xy 144.301757 89.168352) (xy 144.32334 89.203343) (xy 144.323347 89.203352) (xy 144.446647 89.326652) (xy 144.446653 89.326657) (xy 144.446654 89.326658) (xy 144.59508 89.418209) (xy 144.760619 89.473062) (xy 144.862787 89.4835) (xy 145.462212 89.483499) (xy 145.564381 89.473062) (xy 145.72992 89.418209) (xy 145.878346 89.326658) (xy 145.925863 89.279141) (xy 145.985905 89.2191) (xy 146.048217 89.185074) (xy 146.119032 89.190139) (xy 146.164095 89.2191) (xy 146.271647 89.326652) (xy 146.271653 89.326657) (xy 146.271654 89.326658) (xy 146.42008 89.418209) (xy 146.585619 89.473062) (xy 146.687787 89.4835) (xy 147.287212 89.483499) (xy 147.389381 89.473062) (xy 147.55492 89.418209) (xy 147.661839 89.352259) (xy 147.727986 89.3335) (xy 147.80962 89.3335) (xy 147.877741 89.353502) (xy 147.91686 89.393352) (xy 147.950968 89.44865) (xy 147.950975 89.448658) (xy 148.076341 89.574024) (xy 148.076347 89.574029) (xy 148.076348 89.57403) (xy 148.227262 89.667115) (xy 148.395574 89.722887) (xy 148.499455 89.7335) (xy 149.100544 89.733499) (xy 149.204426 89.722887) (xy 149.372738 89.667115) (xy 149.523652 89.57403) (xy 149.64903 89.448652) (xy 149.742115 89.297738) (xy 149.797887 89.129426) (xy 149.8085 89.025545) (xy 149.8085 89.025516) (xy 150.292 89.025516) (xy 150.302605 89.129318) (xy 150.302606 89.129321) (xy 150.358342 89.297525) (xy 150.451365 89.448339) (xy 150.45137 89.448345) (xy 150.576654 89.573629) (xy 150.57666 89.573634) (xy 150.727474 89.666657) (xy 150.895678 89.722393) (xy 150.895681 89.722394) (xy 150.999483 89.732999) (xy 150.999483 89.733) (xy 151.046 89.733) (xy 151.046 88.979) (xy 150.292 88.979) (xy 150.292 89.025516) (xy 149.8085 89.025516) (xy 149.808499 88.484499) (xy 149.828501 88.416379) (xy 149.882156 88.369886) (xy 149.934499 88.3585) (xy 150.166 88.3585) (xy 150.234121 88.378502) (xy 150.280614 88.432158) (xy 150.288247 88.467248) (xy 150.291999 88.471) (xy 151.428 88.471) (xy 151.496121 88.491002) (xy 151.542614 88.544658) (xy 151.554 88.597) (xy 151.554 89.733) (xy 151.600517 89.733) (xy 151.600516 89.732999) (xy 151.704318 89.722394) (xy 151.704321 89.722393) (xy 151.872525 89.666657) (xy 152.023339 89.573634) (xy 152.023345 89.573629) (xy 152.148629 89.448345) (xy 152.148634 89.448339) (xy 152.241657 89.297524) (xy 152.275674 89.194868) (xy 152.316088 89.136496) (xy 152.381644 89.10924) (xy 152.395279 89.1085) (xy 152.55511 89.1085) (xy 153.76929 89.1085) (xy 153.837411 89.128502) (xy 153.862926 89.15019) (xy 153.888744 89.178864) (xy 153.922441 89.203346) (xy 154.043248 89.291118) (xy 154.217712 89.368794) (xy 154.404513 89.4085) (xy 154.595487 89.4085) (xy 154.782288 89.368794) (xy 154.956752 89.291118) (xy 155.111253 89.178866) (xy 155.155769 89.129426) (xy 155.239034 89.036951) (xy 155.239035 89.036949) (xy 155.23904 89.036944) (xy 155.334527 88.871556) (xy 155.393542 88.689928) (xy 155.413504 88.5) (xy 155.393542 88.310072) (xy 155.334527 88.128444) (xy 155.23904 87.963056) (xy 155.239038 87.963054) (xy 155.239034 87.963048) (xy 155.111255 87.821135) (xy 154.956752 87.708882) (xy 154.782288 87.631206) (xy 154.595487 87.5915) (xy 154.404513 87.5915) (xy 154.217711 87.631206) (xy 154.043247 87.708882) (xy 153.888744 87.821135) (xy 153.862926 87.84981) (xy 153.80248 87.88705) (xy 153.76929 87.8915) (xy 152.779239 87.8915) (xy 152.711118 87.871498) (xy 152.690148 87.854599) (xy 152.174144 87.338595) (xy 152.140119 87.276283) (xy 152.145184 87.205467) (xy 152.187731 87.148632) (xy 152.254251 87.123821) (xy 152.26324 87.1235) (xy 156.006629 87.1235) (xy 156.07475 87.143502) (xy 156.112112 87.180585) (xy 156.224275 87.352265) (xy 156.224279 87.35227) (xy 156.376762 87.517908) (xy 156.428545 87.558212) (xy 156.554424 87.656189) (xy 156.58612 87.673342) (xy 156.58768 87.674186) (xy 156.638071 87.7242) (xy 156.653423 87.793516) (xy 156.628862 87.860129) (xy 156.58768 87.895813) (xy 156.554426 87.91381) (xy 156.554424 87.913811) (xy 156.376762 88.052091) (xy 156.224279 88.217729) (xy 156.224275 88.217734) (xy 156.101141 88.406206) (xy 156.010703 88.612386) (xy 156.010702 88.612387) (xy 155.955437 88.830624) (xy 155.955436 88.83063) (xy 155.955436 88.830632) (xy 155.936844 89.055) (xy 155.955417 89.279141) (xy 155.955437 89.279375) (xy 156.010702 89.497612) (xy 156.010703 89.497613) (xy 156.010704 89.497616) (xy 156.080103 89.65583) (xy 156.101141 89.703793) (xy 156.224275 89.892265) (xy 156.224279 89.89227) (xy 156.376762 90.057908) (xy 156.403689 90.078866) (xy 156.554424 90.196189) (xy 156.752426 90.303342) (xy 156.752427 90.303342) (xy 156.752428 90.303343) (xy 156.844517 90.334957) (xy 156.965365 90.376444) (xy 157.187431 90.4135) (xy 157.187435 90.4135) (xy 157.412565 90.4135) (xy 157.412569 90.4135) (xy 157.634635 90.376444) (xy 157.847574 90.303342) (xy 158.045576 90.196189) (xy 158.22324 90.057906) (xy 158.375722 89.892268) (xy 158.49886 89.703791) (xy 158.589296 89.497616) (xy 158.644564 89.279368) (xy 158.663156 89.055) (xy 158.644564 88.830632) (xy 158.644562 88.830624) (xy 158.589297 88.612387) (xy 158.589296 88.612386) (xy 158.589296 88.612384) (xy 158.49886 88.406209) (xy 158.471862 88.364886) (xy 158.375724 88.217734) (xy 158.37572 88.217729) (xy 158.241606 88.072045) (xy 158.22324 88.052094) (xy 158.223239 88.052093) (xy 158.223237 88.052091) (xy 158.139504 87.986919) (xy 158.045576 87.913811) (xy 158.012319 87.895813) (xy 157.961929 87.845802) (xy 157.946576 87.776485) (xy 157.971136 87.709872) (xy 158.01232 87.674186) (xy 158.01388 87.673342) (xy 158.045576 87.656189) (xy 158.141162 87.581791) (xy 158.181918 87.550069) (xy 158.24796 87.524012) (xy 158.259309 87.5235) (xy 159.184328 87.5235) (xy 159.184329 87.5235) (xy 159.379169 87.484744) (xy 159.562704 87.408721) (xy 159.727881 87.298353) (xy 159.868353 87.157881) (xy 159.876405 87.149829) (xy 159.938717 87.115803) ) ) (filled_polygon (layer "F.Cu") (pts (xy 62.783621 74.653502) (xy 62.830114 74.707158) (xy 62.8415 74.7595) (xy 62.8415 76.050544) (xy 62.852112 76.154425) (xy 62.907885 76.322738) (xy 63.00097 76.473652) (xy 63.000975 76.473658) (xy 63.126341 76.599024) (xy 63.126347 76.599029) (xy 63.126348 76.59903) (xy 63.277262 76.692115) (xy 63.445574 76.747887) (xy 63.549455 76.7585) (xy 63.859953 76.758499) (xy 63.928073 76.778501) (xy 63.964717 76.814496) (xy 64.010834 76.883515) (xy 64.010838 76.883519) (xy 64.804595 77.677276) (xy 64.838621 77.739588) (xy 64.8415 77.766371) (xy 64.8415 78.67676) (xy 64.821498 78.744881) (xy 64.767842 78.791374) (xy 64.697568 78.801478) (xy 64.632988 78.771984) (xy 64.626405 78.765855) (xy 64.273633 78.413083) (xy 64.273623 78.413075) (xy 64.134877 78.33297) (xy 64.134874 78.332969) (xy 64.134873 78.332968) (xy 64.134871 78.332967) (xy 64.13487 78.332967) (xy 64.010889 78.299747) (xy 64.010889 78.299746) (xy 63.980111 78.2915) (xy 63.4345 78.2915) (xy 63.366379 78.271498) (xy 63.319886 78.217842) (xy 63.3085 78.1655) (xy 63.3085 77.483489) (xy 63.308499 77.483488) (xy 63.307319 77.4685) (xy 63.305562 77.446169) (xy 63.259145 77.286399) (xy 63.259143 77.286397) (xy 63.259143 77.286394) (xy 63.174455 77.143196) (xy 63.17445 77.143189) (xy 63.05681 77.025549) (xy 63.056803 77.025544) (xy 62.913605 76.940856) (xy 62.753829 76.894437) (xy 62.716511 76.8915) (xy 62.716502 76.8915) (xy 62.283498 76.8915) (xy 62.283489 76.8915) (xy 62.246171 76.894437) (xy 62.24617 76.894437) (xy 62.086394 76.940856) (xy 61.943196 77.025544) (xy 61.943189 77.025549) (xy 61.825549 77.143189) (xy 61.825544 77.143196) (xy 61.740856 77.286394) (xy 61.694437 77.44617) (xy 61.694437 77.446171) (xy 61.6915 77.483488) (xy 61.6915 78.6405) (xy 61.671498 78.708621) (xy 61.617842 78.755114) (xy 61.5655 78.7665) (xy 61.333489 78.7665) (xy 61.296171 78.769437) (xy 61.29617 78.769437) (xy 61.136394 78.815856) (xy 60.993196 78.900544) (xy 60.993189 78.900549) (xy 60.875549 79.018189) (xy 60.875544 79.018196) (xy 60.790856 79.161394) (xy 60.744437 79.32117) (xy 60.744437 79.321171) (xy 60.7415 79.358488) (xy 60.7415 80.666511) (xy 60.744437 80.703828) (xy 60.744437 80.703829) (xy 60.790856 80.863605) (xy 60.875544 81.006803) (xy 60.875545 81.006805) (xy 60.875546 81.006806) (xy 60.875547 81.006807) (xy 60.904595 81.035855) (xy 60.93862 81.098165) (xy 60.9415 81.12495) (xy 60.9415 81.158259) (xy 60.921498 81.22638) (xy 60.904595 81.247354) (xy 60.797354 81.354595) (xy 60.735042 81.388621) (xy 60.708259 81.3915) (xy 59.974455 81.3915) (xy 59.870574 81.402112) (xy 59.702261 81.457885) (xy 59.551347 81.55097) (xy 59.551341 81.550975) (xy 59.425975 81.676341) (xy 59.42597 81.676347) (xy 59.332885 81.827262) (xy 59.277113 81.995572) (xy 59.277112 81.995579) (xy 59.2665 82.099446) (xy 59.2665 82.797904) (xy 59.246498 82.866025) (xy 59.229597 82.886998) (xy 59.187002 82.929594) (xy 59.12469 82.96362) (xy 59.097905 82.9665) (xy 55.961445 82.9665) (xy 55.893324 82.946498) (xy 55.846831 82.892842) (xy 55.836727 82.822568) (xy 55.866221 82.757988) (xy 55.92181 82.720896) (xy 55.92992 82.718209) (xy 56.078346 82.626658) (xy 56.201658 82.503346) (xy 56.293209 82.35492) (xy 56.348062 82.189381) (xy 56.3585 82.087213) (xy 56.358499 81.512788) (xy 56.348062 81.410619) (xy 56.293209 81.24508) (xy 56.201658 81.096654) (xy 56.078346 80.973342) (xy 56.078343 80.97334) (xy 56.055851 80.959466) (xy 56.008374 80.906679) (xy 55.996 80.852227) (xy 55.996 80.367094) (xy 56.016002 80.298973) (xy 56.0329 80.278003) (xy 56.707205 79.603697) (xy 56.769516 79.569674) (xy 56.825218 79.570617) (xy 56.825224 79.570586) (xy 56.825436 79.570621) (xy 56.827241 79.570652) (xy 56.83035 79.571439) (xy 56.830365 79.571444) (xy 57.052431 79.6085) (xy 57.052435 79.6085) (xy 57.277565 79.6085) (xy 57.277569 79.6085) (xy 57.499635 79.571444) (xy 57.712574 79.498342) (xy 57.910576 79.391189) (xy 58.08824 79.252906) (xy 58.240722 79.087268) (xy 58.36386 78.898791) (xy 58.454296 78.692616) (xy 58.509564 78.474368) (xy 58.528156 78.25) (xy 58.509564 78.025632) (xy 58.49517 77.968793) (xy 58.454297 77.807387) (xy 58.454296 77.807386) (xy 58.454296 77.807384) (xy 58.36386 77.601209) (xy 58.322051 77.537215) (xy 58.240724 77.412734) (xy 58.24072 77.412729) (xy 58.090198 77.249221) (xy 58.08824 77.247094) (xy 58.088239 77.247093) (xy 58.088237 77.247091) (xy 58.000433 77.17875) (xy 57.910576 77.108811) (xy 57.712574 77.001658) (xy 57.712572 77.001657) (xy 57.712571 77.001656) (xy 57.499639 76.928557) (xy 57.49963 76.928555) (xy 57.446312 76.919658) (xy 57.277569 76.8915) (xy 57.052431 76.8915) (xy 56.904211 76.916233) (xy 56.830369 76.928555) (xy 56.83036 76.928557) (xy 56.617428 77.001656) (xy 56.617426 77.001658) (xy 56.429523 77.103346) (xy 56.419426 77.10881) (xy 56.419424 77.108811) (xy 56.241762 77.247091) (xy 56.180754 77.313363) (xy 56.119901 77.349933) (xy 56.048936 77.347798) (xy 55.990391 77.307636) (xy 55.969999 77.272057) (xy 55.940539 77.193073) (xy 55.925889 77.153796) (xy 55.925888 77.153794) (xy 55.925887 77.153792) (xy 55.838261 77.036738) (xy 55.721207 76.949112) (xy 55.721202 76.94911) (xy 55.584204 76.898011) (xy 55.584196 76.898009) (xy 55.523649 76.8915) (xy 55.523638 76.8915) (xy 53.726362 76.8915) (xy 53.72635 76.8915) (xy 53.665803 76.898009) (xy 53.665795 76.898011) (xy 53.528797 76.94911) (xy 53.528792 76.949112) (xy 53.411738 77.036738) (xy 53.324112 77.153792) (xy 53.32411 77.153797) (xy 53.273011 77.290795) (xy 53.273009 77.290803) (xy 53.2665 77.35135) (xy 53.2665 79.148649) (xy 53.273009 79.209196) (xy 53.273011 79.209204) (xy 53.32411 79.346202) (xy 53.324112 79.346207) (xy 53.411738 79.463261) (xy 53.528792 79.550887) (xy 53.528794 79.550888) (xy 53.528796 79.550889) (xy 53.57916 79.569674) (xy 53.665795 79.601988) (xy 53.665803 79.60199) (xy 53.72635 79.608499) (xy 53.726355 79.608499) (xy 53.726362 79.6085) (xy 54.672143 79.6085) (xy 54.740264 79.628502) (xy 54.786757 79.682158) (xy 54.796861 79.752432) (xy 54.788552 79.782719) (xy 54.759745 79.852265) (xy 54.753345 79.867715) (xy 54.745902 79.905133) (xy 54.729 79.990103) (xy 54.729 80.852227) (xy 54.708998 80.920348) (xy 54.669149 80.959466) (xy 54.646656 80.97334) (xy 54.539095 81.080901) (xy 54.476783 81.114926) (xy 54.405967 81.10986) (xy 54.360905 81.0809) (xy 54.253352 80.973347) (xy 54.253346 80.973342) (xy 54.21406 80.94911) (xy 54.10492 80.881791) (xy 53.939381 80.826938) (xy 53.939379 80.826937) (xy 53.939377 80.826937) (xy 53.837221 80.8165) (xy 53.237787 80.8165) (xy 53.135618 80.826938) (xy 53.023632 80.864046) (xy 52.952678 80.866486) (xy 52.891668 80.830177) (xy 52.859972 80.766648) (xy 52.858931 80.75493) (xy 52.858001 80.754) (xy 51.722 80.754) (xy 51.653879 80.733998) (xy 51.607386 80.680342) (xy 51.596 80.628) (xy 51.596 79.551191) (xy 51.596056 79.550999) (xy 52.104 79.550999) (xy 52.104 80.246) (xy 52.858 80.246) (xy 52.858 80.199483) (xy 52.847394 80.095681) (xy 52.847393 80.095678) (xy 52.791657 79.927474) (xy 52.698634 79.77666) (xy 52.698629 79.776654) (xy 52.573345 79.65137) (xy 52.573336 79.651363) (xy 52.526802 79.622661) (xy 52.479323 79.569876) (xy 52.46792 79.499801) (xy 52.496212 79.434685) (xy 52.526802 79.408179) (xy 52.623336 79.348636) (xy 52.623345 79.348629) (xy 52.748629 79.223345) (xy 52.748634 79.223339) (xy 52.841657 79.072525) (xy 52.897393 78.904321) (xy 52.897394 78.904318) (xy 52.907999 78.800516) (xy 52.908 78.800516) (xy 52.908 78.754) (xy 52.154 78.754) (xy 52.154 79.448809) (xy 52.133998 79.51693) (xy 52.117095 79.537904) (xy 52.104 79.550999) (xy 51.596056 79.550999) (xy 51.616002 79.48307) (xy 51.632905 79.462096) (xy 51.646 79.449001) (xy 51.646 78.754) (xy 50.886649 78.754) (xy 50.836123 78.78159) (xy 50.765308 78.776525) (xy 50.720245 78.747564) (xy 50.445404 78.472723) (xy 50.411378 78.410411) (xy 50.408499 78.383628) (xy 50.408499 78.199483) (xy 50.892 78.199483) (xy 50.892 78.246) (xy 51.646 78.246) (xy 52.154 78.246) (xy 52.908 78.246) (xy 52.908 78.199483) (xy 52.897394 78.095681) (xy 52.897393 78.095678) (xy 52.841657 77.927474) (xy 52.748634 77.77666) (xy 52.748629 77.776654) (xy 52.623345 77.65137) (xy 52.623339 77.651365) (xy 52.472525 77.558342) (xy 52.304321 77.502606) (xy 52.304318 77.502605) (xy 52.200516 77.492) (xy 52.154 77.492) (xy 52.154 78.246) (xy 51.646 78.246) (xy 51.646 77.492) (xy 51.599483 77.492) (xy 51.495681 77.502605) (xy 51.495678 77.502606) (xy 51.327474 77.558342) (xy 51.17666 77.651365) (xy 51.176654 77.65137) (xy 51.05137 77.776654) (xy 51.051365 77.77666) (xy 50.958342 77.927474) (xy 50.902606 78.095678) (xy 50.902605 78.095681) (xy 50.892 78.199483) (xy 50.408499 78.199483) (xy 50.408499 78.199455) (xy 50.397887 78.095574) (xy 50.374998 78.026498) (xy 50.342115 77.927262) (xy 50.24903 77.776348) (xy 50.249029 77.776347) (xy 50.249024 77.776341) (xy 50.123658 77.650975) (xy 50.123652 77.65097) (xy 50.091932 77.631405) (xy 49.972738 77.557885) (xy 49.859629 77.520405) (xy 49.804427 77.502113) (xy 49.80442 77.502112) (xy 49.700553 77.4915) (xy 49.099455 77.4915) (xy 48.995574 77.502112) (xy 48.827261 77.557885) (xy 48.676347 77.65097) (xy 48.676341 77.650975) (xy 48.550975 77.776341) (xy 48.55097 77.776347) (xy 48.457885 77.927262) (xy 48.402113 78.095572) (xy 48.402112 78.095579) (xy 48.3915 78.199446) (xy 48.3915 78.383627) (xy 48.371498 78.451748) (xy 48.354596 78.472722) (xy 48.122724 78.704595) (xy 48.060411 78.73862) (xy 48.033628 78.7415) (xy 45.991185 78.7415) (xy 45.923064 78.721498) (xy 45.895375 78.697332) (xy 45.855433 78.650567) (xy 45.762431 78.571135) (xy 45.668896 78.491248) (xy 45.668894 78.491246) (xy 45.668892 78.491245) (xy 45.493273 78.383627) (xy 45.459732 78.363073) (xy 45.233092 78.269195) (xy 44.994557 78.211928) (xy 44.75 78.192681) (xy 44.505443 78.211928) (xy 44.266907 78.269195) (xy 44.128191 78.326654) (xy 44.040358 78.363036) (xy 44.040266 78.363074) (xy 43.831107 78.491245) (xy 43.644567 78.650567) (xy 43.485245 78.837107) (xy 43.37112 79.023345) (xy 43.357073 79.046268) (xy 43.343787 79.078343) (xy 43.263195 79.272907) (xy 43.209073 79.498342) (xy 43.205928 79.511443) (xy 43.186681 79.756) (xy 43.205928 80.000557) (xy 43.263195 80.239092) (xy 43.357073 80.465732) (xy 43.381637 80.505817) (xy 43.485245 80.674892) (xy 43.485246 80.674894) (xy 43.485248 80.674896) (xy 43.644567 80.861433) (xy 43.679771 80.8915) (xy 43.725069 80.930189) (xy 43.763878 80.98964) (xy 43.764384 81.060635) (xy 43.726428 81.120633) (xy 43.725069 81.121811) (xy 43.644567 81.190567) (xy 43.485245 81.377107) (xy 43.373359 81.559691) (xy 43.357073 81.586268) (xy 43.341595 81.623634) (xy 43.263195 81.812907) (xy 43.217629 82.002703) (xy 43.205928 82.051443) (xy 43.186681 82.296) (xy 43.205928 82.540557) (xy 43.263195 82.779092) (xy 43.357073 83.005732) (xy 43.403962 83.082248) (xy 43.466129 83.183697) (xy 43.484667 83.25223) (xy 43.46321 83.319907) (xy 43.434206 83.350398) (xy 43.337096 83.423095) (xy 43.249555 83.540034) (xy 43.249555 83.540035) (xy 43.198505 83.676906) (xy 43.192 83.737402) (xy 43.192 84.582) (xy 44.261562 84.582) (xy 44.237482 84.623708) (xy 44.2 84.763591) (xy 44.2 84.908409) (xy 44.237482 85.048292) (xy 44.261562 85.09) (xy 43.192 85.09) (xy 43.192 85.934597) (xy 43.198505 85.995093) (xy 43.249555 86.131964) (xy 43.249555 86.131965) (xy 43.337095 86.248904) (xy 43.454034 86.336444) (xy 43.590906 86.387494) (xy 43.651402 86.393999) (xy 43.651415 86.394) (xy 44.496 86.394) (xy 44.496 85.324438) (xy 44.537708 85.348518) (xy 44.677591 85.386) (xy 44.822409 85.386) (xy 44.962292 85.348518) (xy 45.004 85.324438) (xy 45.004 86.394) (xy 45.848585 86.394) (xy 45.848597 86.393999) (xy 45.909093 86.387494) (xy 46.045964 86.336444) (xy 46.045965 86.336444) (xy 46.162904 86.248904) (xy 46.250444 86.131965) (xy 46.250444 86.131964) (xy 46.301494 85.995093) (xy 46.307999 85.934597) (xy 46.308 85.934585) (xy 46.308 85.09) (xy 45.238438 85.09) (xy 45.262518 85.048292) (xy 45.3 84.908409) (xy 45.3 84.763591) (xy 45.262518 84.623708) (xy 45.238438 84.582) (xy 46.308 84.582) (xy 46.308 83.737414) (xy 46.307999 83.737402) (xy 46.301494 83.676906) (xy 46.250444 83.540035) (xy 46.250444 83.540034) (xy 46.162905 83.423097) (xy 46.065793 83.350399) (xy 46.023247 83.293563) (xy 46.018183 83.222747) (xy 46.033867 83.183701) (xy 46.142927 83.005732) (xy 46.236805 82.779092) (xy 46.294072 82.540557) (xy 46.313319 82.296) (xy 46.294072 82.051443) (xy 46.236805 81.812908) (xy 46.236803 81.812902) (xy 46.235276 81.808202) (xy 46.236726 81.80773) (xy 46.229854 81.743882) (xy 46.261626 81.680391) (xy 46.264729 81.677174) (xy 46.771501 81.170404) (xy 46.833813 81.136379) (xy 46.860596 81.1335) (xy 48.375041 81.1335) (xy 48.443162 81.153502) (xy 48.482282 81.193354) (xy 48.500968 81.223649) (xy 48.500975 81.223658) (xy 48.626341 81.349024) (xy 48.626347 81.349029) (xy 48.626348 81.34903) (xy 48.777262 81.442115) (xy 48.945574 81.497887) (xy 49.049455 81.5085) (xy 49.650544 81.508499) (xy 49.752697 81.498063) (xy 49.822495 81.511039) (xy 49.8742 81.559691) (xy 49.8915 81.623411) (xy 49.8915 82.362206) (xy 49.900267 82.406279) (xy 49.920649 82.508747) (xy 49.920651 82.508752) (xy 49.924937 82.5191) (xy 49.977826 82.646784) (xy 50.060834 82.771015) (xy 50.060838 82.771019) (xy 50.073469 82.78365) (xy 50.107495 82.845962) (xy 50.10243 82.916777) (xy 50.08914 82.942744) (xy 50.039525 83.017) (xy 50.015326 83.053216) (xy 49.958151 83.191247) (xy 49.958149 83.191252) (xy 49.94474 83.258667) (xy 49.929 83.337793) (xy 49.929 84.288805) (xy 49.908998 84.356926) (xy 49.892095 84.3779) (xy 49.848347 84.421647) (xy 49.848342 84.421653) (xy 49.756791 84.57008) (xy 49.701937 84.735622) (xy 49.6915 84.837778) (xy 49.6915 85.412212) (xy 49.701937 85.51438) (xy 49.724024 85.581035) (xy 49.756791 85.67992) (xy 49.756792 85.679922) (xy 49.7591 85.686886) (xy 49.757123 85.687541) (xy 49.76602 85.727644) (xy 49.76602 90.0255) (xy 49.746018 90.093621) (xy 49.692362 90.140114) (xy 49.64002 90.1515) (xy 48.63135 90.1515) (xy 48.570803 90.158009) (xy 48.570795 90.158011) (xy 48.433797 90.20911) (xy 48.433792 90.209112) (xy 48.335509 90.282687) (xy 48.268989 90.307498) (xy 48.199615 90.292407) (xy 48.184491 90.282687) (xy 48.086207 90.209112) (xy 48.086202 90.20911) (xy 47.949204 90.158011) (xy 47.949196 90.158009) (xy 47.888649 90.1515) (xy 47.888638 90.1515) (xy 46.091362 90.1515) (xy 46.09135 90.1515) (xy 46.030803 90.158009) (xy 46.030795 90.158011) (xy 45.893797 90.20911) (xy 45.893792 90.209112) (xy 45.795091 90.283) (xy 45.728571 90.307811) (xy 45.659197 90.29272) (xy 45.644072 90.282999) (xy 45.545966 90.209556) (xy 45.545964 90.209555) (xy 45.409093 90.158505) (xy 45.348597 90.152) (xy 44.704 90.152) (xy 44.704 92.867749) (xy 44.646853 92.834755) (xy 44.517143 92.8) (xy 44.382857 92.8) (xy 44.253147 92.834755) (xy 44.196 92.867749) (xy 44.196 90.152) (xy 43.551402 90.152) (xy 43.490906 90.158505) (xy 43.354035 90.209555) (xy 43.255924 90.283) (xy 43.189404 90.30781) (xy 43.12003 90.292718) (xy 43.104907 90.282999) (xy 43.006207 90.209112) (xy 43.006202 90.20911) (xy 42.869204 90.158011) (xy 42.869196 90.158009) (xy 42.808649 90.1515) (xy 42.808638 90.1515) (xy 42.7945 90.1515) (xy 42.726379 90.131498) (xy 42.679886 90.077842) (xy 42.6685 90.0255) (xy 42.6685 78.444871) (xy 42.688502 78.37675) (xy 42.705405 78.355776) (xy 43.078777 77.982404) (xy 43.141089 77.948378) (xy 43.167872 77.945499) (xy 43.376212 77.945499) (xy 43.478381 77.935062) (xy 43.64392 77.880209) (xy 43.792346 77.788658) (xy 43.915658 77.665346) (xy 44.007209 77.51692) (xy 44.062062 77.351381) (xy 44.0725 77.249213) (xy 44.072499 77.040871) (xy 44.092501 76.972751) (xy 44.109399 76.95178) (xy 44.965777 76.095404) (xy 45.028089 76.061379) (xy 45.054872 76.0585) (xy 58.729696 76.0585) (xy 58.797817 76.078502) (xy 58.84431 76.132158) (xy 58.84956 76.148023) (xy 58.849949 76.147895) (xy 58.852112 76.154425) (xy 58.852113 76.154426) (xy 58.88701 76.259741) (xy 58.907885 76.322738) (xy 59.00097 76.473652) (xy 59.000975 76.473658) (xy 59.126341 76.599024) (xy 59.126347 76.599029) (xy 59.126348 76.59903) (xy 59.277262 76.692115) (xy 59.445574 76.747887) (xy 59.549455 76.7585) (xy 61.650544 76.758499) (xy 61.754426 76.747887) (xy 61.922738 76.692115) (xy 62.073652 76.59903) (xy 62.19903 76.473652) (xy 62.292115 76.322738) (xy 62.347887 76.154426) (xy 62.3585 76.050545) (xy 62.358499 74.759499) (xy 62.378501 74.691379) (xy 62.432157 74.644886) (xy 62.484499 74.6335) (xy 62.7155 74.6335) ) ) (filled_polygon (layer "F.Cu") (pts (xy 70.046121 92.176002) (xy 70.092614 92.229658) (xy 70.104 92.282) (xy 70.104 92.867749) (xy 70.046853 92.834755) (xy 69.917143 92.8) (xy 69.782857 92.8) (xy 69.653147 92.834755) (xy 69.596 92.867749) (xy 69.596 92.282) (xy 69.616002 92.213879) (xy 69.669658 92.167386) (xy 69.722 92.156) (xy 69.978 92.156) ) ) (filled_polygon (layer "F.Cu") (pts (xy 55.044028 85.865137) (xy 55.089096 85.8941) (xy 55.096654 85.901658) (xy 55.24508 85.993209) (xy 55.410619 86.048062) (xy 55.512787 86.0585) (xy 56.1655 86.058499) (xy 56.233621 86.078501) (xy 56.280114 86.132157) (xy 56.2915 86.184499) (xy 56.2915 90.034518) (xy 56.271498 90.102639) (xy 56.217842 90.149132) (xy 56.194488 90.157138) (xy 56.190801 90.158009) (xy 56.053797 90.20911) (xy 56.053792 90.209112) (xy 55.955509 90.282687) (xy 55.888989 90.307498) (xy 55.819615 90.292407) (xy 55.804491 90.282687) (xy 55.706207 90.209112) (xy 55.706202 90.20911) (xy 55.569204 90.158011) (xy 55.569196 90.158009) (xy 55.508649 90.1515) (xy 55.508638 90.1515) (xy 53.711362 90.1515) (xy 53.71135 90.1515) (xy 53.650803 90.158009) (xy 53.650795 90.158011) (xy 53.513797 90.20911) (xy 53.513792 90.209112) (xy 53.415509 90.282687) (xy 53.348989 90.307498) (xy 53.279615 90.292407) (xy 53.264491 90.282687) (xy 53.166207 90.209112) (xy 53.166202 90.20911) (xy 53.029204 90.158011) (xy 53.029196 90.158009) (xy 52.968649 90.1515) (xy 52.968638 90.1515) (xy 52.1595 90.1515) (xy 52.091379 90.131498) (xy 52.044886 90.077842) (xy 52.0335 90.0255) (xy 52.0335 86.552094) (xy 52.053502 86.483973) (xy 52.070405 86.462999) (xy 52.388 86.145404) (xy 52.450312 86.111378) (xy 52.477095 86.108499) (xy 52.812212 86.108499) (xy 52.914381 86.098062) (xy 53.07992 86.043209) (xy 53.228346 85.951658) (xy 53.243494 85.936509) (xy 53.305804 85.902484) (xy 53.37662 85.907547) (xy 53.398735 85.918362) (xy 53.52008 85.993209) (xy 53.685619 86.048062) (xy 53.787787 86.0585) (xy 54.487212 86.058499) (xy 54.589381 86.048062) (xy 54.75492 85.993209) (xy 54.903346 85.901658) (xy 54.910903 85.8941) (xy 54.973212 85.860075) ) ) (filled_polygon (layer "F.Cu") (pts (xy 62.402542 83.587171) (xy 62.424657 83.597986) (xy 62.426345 83.599027) (xy 62.426348 83.59903) (xy 62.577262 83.692115) (xy 62.745574 83.747887) (xy 62.849455 83.7585) (xy 63.83326 83.758499) (xy 63.901381 83.778501) (xy 63.922355 83.795404) (xy 63.929595 83.802644) (xy 63.963621 83.864956) (xy 63.9665 83.891739) (xy 63.9665 85.455111) (xy 63.976362 85.49192) (xy 63.976363 85.49192) (xy 63.976363 85.491921) (xy 64.00211 85.588008) (xy 64.007968 85.609872) (xy 64.00797 85.609877) (xy 64.088075 85.748623) (xy 64.088083 85.748633) (xy 65.026365 86.686915) (xy 65.02637 86.686919) (xy 65.026372 86.686921) (xy 65.026373 86.686922) (xy 65.026375 86.686923) (xy 65.100245 86.729572) (xy 65.165127 86.767032) (xy 65.239355 86.786921) (xy 65.319889 86.8085) (xy 65.31989 86.8085) (xy 65.48011 86.8085) (xy 78.716686 86.8085) (xy 78.784807 86.828502) (xy 78.8313 86.882158) (xy 78.841996 86.94767) (xy 78.840275 86.96405) (xy 78.838738 86.97867) (xy 78.811725 87.044327) (xy 78.753504 87.084957) (xy 78.713428 87.0915) (xy 72.019889 87.0915) (xy 71.91394 87.119889) (xy 71.913939 87.119888) (xy 71.865126 87.132968) (xy 71.726376 87.213075) (xy 71.726366 87.213083) (xy 70.734856 88.204595) (xy 70.672544 88.23862) (xy 70.645761 88.2415) (xy 61.904202 88.2415) (xy 61.826822 88.262233) (xy 61.826822 88.262234) (xy 61.792032 88.271556) (xy 61.749441 88.282968) (xy 61.749436 88.28297) (xy 61.610689 88.363076) (xy 61.610679 88.363084) (xy 60.41917 89.554595) (xy 60.356858 89.58862) (xy 60.330075 89.5915) (xy 58.619888 89.5915) (xy 58.556443 89.608499) (xy 58.556444 89.6085) (xy 58.465126 89.632968) (xy 58.465125 89.632968) (xy 58.425528 89.655831) (xy 58.425527 89.655831) (xy 58.326375 89.713076) (xy 58.32637 89.71308) (xy 58.269725 89.769726) (xy 58.213079 89.826372) (xy 58.213078 89.826373) (xy 58.052598 89.986853) (xy 57.924855 90.114596) (xy 57.862543 90.148621) (xy 57.83576 90.1515) (xy 57.6345 90.1515) (xy 57.566379 90.131498) (xy 57.519886 90.077842) (xy 57.5085 90.0255) (xy 57.5085 86.184499) (xy 57.528502 86.116378) (xy 57.582158 86.069885) (xy 57.634496 86.058499) (xy 58.137212 86.058499) (xy 58.239381 86.048062) (xy 58.40492 85.993209) (xy 58.553346 85.901658) (xy 58.605589 85.849415) (xy 58.661259 85.793746) (xy 58.723571 85.75972) (xy 58.794386 85.764785) (xy 58.839449 85.793746) (xy 58.94696 85.901257) (xy 58.946966 85.901262) (xy 59.095292 85.992751) (xy 59.260723 86.047568) (xy 59.260726 86.047569) (xy 59.362815 86.057999) (xy 59.362815 86.058) (xy 59.4085 86.058) (xy 59.9165 86.058) (xy 59.962185 86.058) (xy 59.962184 86.057999) (xy 60.064273 86.047569) (xy 60.064276 86.047568) (xy 60.229707 85.992751) (xy 60.378033 85.901262) (xy 60.378039 85.901257) (xy 60.501257 85.778039) (xy 60.501262 85.778033) (xy 60.592751 85.629707) (xy 60.647568 85.464276) (xy 60.647569 85.464273) (xy 60.657999 85.362184) (xy 60.658 85.362184) (xy 60.658 85.329) (xy 59.9165 85.329) (xy 59.9165 86.058) (xy 59.4085 86.058) (xy 59.4085 84.947) (xy 59.428502 84.878879) (xy 59.482158 84.832386) (xy 59.5345 84.821) (xy 60.658001 84.821) (xy 60.659076 84.819925) (xy 60.721388 84.785899) (xy 60.748171 84.78302) (xy 60.930589 84.78302) (xy 60.93059 84.78302) (xy 60.930591 84.78302) (xy 61.013958 84.760682) (xy 61.085353 84.741552) (xy 61.224107 84.661442) (xy 62.269418 83.616129) (xy 62.331727 83.582107) ) ) (filled_polygon (layer "F.Cu") (pts (xy 87.498901 87.287133) (xy 87.555737 87.32968) (xy 87.55703 87.33164) (xy 87.557081 87.331604) (xy 87.560965 87.336951) (xy 87.688744 87.478864) (xy 87.688747 87.478866) (xy 87.843248 87.591118) (xy 88.017712 87.668794) (xy 88.204513 87.7085) (xy 88.395487 87.7085) (xy 88.582288 87.668794) (xy 88.590328 87.665213) (xy 88.660695 87.655777) (xy 88.724993 87.685882) (xy 88.730675 87.691224) (xy 88.758546 87.719095) (xy 88.792572 87.781407) (xy 88.794761 87.82136) (xy 88.78869 87.879126) (xy 88.786496 87.9) (xy 88.787948 87.913811) (xy 88.806457 88.089927) (xy 88.831495 88.166983) (xy 88.864658 88.269049) (xy 88.8671 88.276562) (xy 88.869128 88.34753) (xy 88.832466 88.408328) (xy 88.768753 88.439653) (xy 88.747267 88.441499) (xy 84.20167 88.441499) (xy 84.133549 88.421497) (xy 84.087056 88.367841) (xy 84.076952 88.297567) (xy 84.106446 88.232987) (xy 84.112575 88.226404) (xy 84.193574 88.145405) (xy 84.255886 88.111379) (xy 84.282669 88.1085) (xy 86.401429 88.1085) (xy 86.40143 88.1085) (xy 86.401431 88.1085) (xy 86.483753 88.086442) (xy 86.556193 88.067032) (xy 86.694947 87.986922) (xy 87.365775 87.316092) (xy 87.428086 87.282069) ) ) (filled_polygon (layer "F.Cu") (pts (xy 97.233621 79.928502) (xy 97.280114 79.982158) (xy 97.2915 80.0345) (xy 97.2915 80.141511) (xy 97.294437 80.178828) (xy 97.294437 80.178829) (xy 97.340856 80.338605) (xy 97.425543 80.481802) (xy 97.426298 80.482775) (xy 97.426652 80.483676) (xy 97.429582 80.488631) (xy 97.428782 80.489103) (xy 97.452244 80.548861) (xy 97.438342 80.618483) (xy 97.426298 80.637225) (xy 97.425543 80.638197) (xy 97.340856 80.781394) (xy 97.294437 80.94117) (xy 97.294437 80.941171) (xy 97.2915 80.978488) (xy 97.2915 81.411511) (xy 97.294437 81.448828) (xy 97.294437 81.448829) (xy 97.340856 81.608605) (xy 97.425543 81.751802) (xy 97.426298 81.752775) (xy 97.426652 81.753676) (xy 97.429582 81.758631) (xy 97.428782 81.759103) (xy 97.452244 81.818861) (xy 97.438342 81.888483) (xy 97.426298 81.907225) (xy 97.425543 81.908197) (xy 97.340856 82.051394) (xy 97.294437 82.21117) (xy 97.294437 82.211171) (xy 97.2915 82.248488) (xy 97.2915 82.681511) (xy 97.294437 82.718828) (xy 97.294437 82.718829) (xy 97.340856 82.878605) (xy 97.425543 83.021802) (xy 97.426298 83.022775) (xy 97.426652 83.023676) (xy 97.429582 83.028631) (xy 97.428782 83.029103) (xy 97.452244 83.088861) (xy 97.438342 83.158483) (xy 97.426298 83.177225) (xy 97.425543 83.178197) (xy 97.340856 83.321394) (xy 97.294437 83.48117) (xy 97.294437 83.481171) (xy 97.2915 83.518488) (xy 97.2915 83.951511) (xy 97.294437 83.988828) (xy 97.294437 83.988829) (xy 97.340856 84.148605) (xy 97.407586 84.261438) (xy 97.425046 84.330254) (xy 97.402529 84.397585) (xy 97.362133 84.434696) (xy 97.226376 84.513075) (xy 97.226366 84.513083) (xy 96.013083 85.726366) (xy 96.013075 85.726376) (xy 95.93297 85.865122) (xy 95.932965 85.865134) (xy 95.924809 85.895573) (xy 95.92481 85.895574) (xy 95.896966 85.999492) (xy 95.8915 86.01989) (xy 95.8915 88.295761) (xy 95.871498 88.363882) (xy 95.854595 88.384856) (xy 95.834857 88.404594) (xy 95.772545 88.43862) (xy 95.745762 88.441499) (xy 95.137741 88.441499) (xy 95.06962 88.421497) (xy 95.023127 88.367841) (xy 95.013023 88.297567) (xy 95.042517 88.232987) (xy 95.051094 88.224862) (xy 95.050893 88.224661) (xy 95.17405 88.101503) (xy 95.174051 88.101501) (xy 95.258681 87.958401) (xy 95.304993 87.799) (xy 92.345007 87.799) (xy 92.391318 87.958401) (xy 92.475948 88.101501) (xy 92.475949 88.101503) (xy 92.599107 88.224661) (xy 92.597177 88.22659) (xy 92.631052 88.273497) (xy 92.634902 88.34439) (xy 92.599814 88.406109) (xy 92.536927 88.439061) (xy 92.512259 88.441499) (xy 90.652733 88.441499) (xy 90.584612 88.421497) (xy 90.538119 88.367841) (xy 90.528015 88.297567) (xy 90.5329 88.276562) (xy 90.535342 88.269049) (xy 90.593542 88.089928) (xy 90.613504 87.9) (xy 90.593542 87.710072) (xy 90.534527 87.528444) (xy 90.43904 87.363056) (xy 90.439038 87.363054) (xy 90.439034 87.363048) (xy 90.374162 87.291) (xy 92.345007 87.291) (xy 93.571 87.291) (xy 94.079 87.291) (xy 95.304992 87.291) (xy 95.258681 87.131598) (xy 95.174052 86.988499) (xy 95.173067 86.987229) (xy 95.172604 86.98605) (xy 95.170019 86.981679) (xy 95.170723 86.981262) (xy 95.147118 86.921145) (xy 95.161016 86.851522) (xy 95.173067 86.832771) (xy 95.174052 86.8315) (xy 95.258681 86.688401) (xy 95.304993 86.529) (xy 94.079 86.529) (xy 94.079 87.291) (xy 93.571 87.291) (xy 93.571 86.529) (xy 92.345007 86.529) (xy 92.391318 86.688401) (xy 92.475947 86.8315) (xy 92.476939 86.832779) (xy 92.477403 86.833963) (xy 92.479981 86.838321) (xy 92.479277 86.838736) (xy 92.502882 86.898866) (xy 92.488978 86.968487) (xy 92.476939 86.987221) (xy 92.475947 86.988499) (xy 92.391318 87.131598) (xy 92.345007 87.291) (xy 90.374162 87.291) (xy 90.311255 87.221135) (xy 90.156752 87.108882) (xy 89.982288 87.031206) (xy 89.795483 86.991499) (xy 89.791323 86.991062) (xy 89.789074 86.990136) (xy 89.789028 86.990127) (xy 89.789029 86.990118) (xy 89.725665 86.96405) (xy 89.715396 86.954847) (xy 89.645405 86.884856) (xy 89.611379 86.822544) (xy 89.6085 86.795761) (xy 89.6085 86.021) (xy 92.345007 86.021) (xy 93.571 86.021) (xy 94.079 86.021) (xy 95.304992 86.021) (xy 95.258681 85.861598) (xy 95.174052 85.718499) (xy 95.173067 85.717229) (xy 95.172604 85.71605) (xy 95.170019 85.711679) (xy 95.170723 85.711262) (xy 95.147118 85.651145) (xy 95.161016 85.581522) (xy 95.173067 85.562771) (xy 95.174052 85.5615) (xy 95.258681 85.418401) (xy 95.304993 85.259) (xy 94.079 85.259) (xy 94.079 86.021) (xy 93.571 86.021) (xy 93.571 85.259) (xy 92.345007 85.259) (xy 92.391318 85.418401) (xy 92.475947 85.5615) (xy 92.476939 85.562779) (xy 92.477403 85.563963) (xy 92.479981 85.568321) (xy 92.479277 85.568736) (xy 92.502882 85.628866) (xy 92.488978 85.698487) (xy 92.476939 85.717221) (xy 92.475947 85.718499) (xy 92.391318 85.861598) (xy 92.345007 86.021) (xy 89.6085 86.021) (xy 89.6085 84.829726) (xy 89.628502 84.761605) (xy 89.645405 84.740631) (xy 90.875631 83.510405) (xy 90.937943 83.476379) (xy 90.964726 83.4735) (xy 91.560761 83.4735) (xy 91.628882 83.493502) (xy 91.649851 83.5104) (xy 92.361373 84.221922) (xy 92.43681 84.265475) (xy 92.485803 84.316857) (xy 92.49924 84.38657) (xy 92.477888 84.440441) (xy 92.47998 84.441679) (xy 92.391318 84.591598) (xy 92.345007 84.751) (xy 95.304992 84.751) (xy 95.258681 84.591598) (xy 95.174053 84.4485) (xy 95.173385 84.447639) (xy 95.173071 84.44684) (xy 95.170019 84.441679) (xy 95.170851 84.441186) (xy 95.147437 84.381554) (xy 95.161336 84.311931) (xy 95.17339 84.293176) (xy 95.174444 84.291815) (xy 95.174453 84.291807) (xy 95.223309 84.209196) (xy 95.259143 84.148605) (xy 95.259143 84.148603) (xy 95.259145 84.148601) (xy 95.305562 83.988831) (xy 95.308499 83.951511) (xy 95.3085 83.951511) (xy 95.3085 83.518489) (xy 95.308499 83.518488) (xy 95.307235 83.502432) (xy 95.305562 83.481169) (xy 95.259145 83.321399) (xy 95.259143 83.321397) (xy 95.259143 83.321394) (xy 95.174456 83.178198) (xy 95.174455 83.178197) (xy 95.174453 83.178193) (xy 95.174449 83.178189) (xy 95.173708 83.177233) (xy 95.173356 83.176337) (xy 95.170418 83.171369) (xy 95.171219 83.170895) (xy 95.147756 83.11115) (xy 95.161652 83.041526) (xy 95.173708 83.022767) (xy 95.174445 83.021814) (xy 95.174453 83.021807) (xy 95.245409 82.901828) (xy 95.259143 82.878605) (xy 95.259143 82.878603) (xy 95.259145 82.878601) (xy 95.305562 82.718831) (xy 95.308499 82.681511) (xy 95.3085 82.681511) (xy 95.3085 82.248489) (xy 95.308499 82.248488) (xy 95.305562 82.211171) (xy 95.305562 82.21117) (xy 95.305562 82.211169) (xy 95.259145 82.051399) (xy 95.259143 82.051397) (xy 95.259143 82.051394) (xy 95.174456 81.908198) (xy 95.174455 81.908197) (xy 95.174453 81.908193) (xy 95.174449 81.908189) (xy 95.173708 81.907233) (xy 95.173356 81.906337) (xy 95.170418 81.901369) (xy 95.171219 81.900895) (xy 95.147756 81.84115) (xy 95.161652 81.771526) (xy 95.173708 81.752767) (xy 95.174445 81.751814) (xy 95.174453 81.751807) (xy 95.225289 81.665848) (xy 95.259143 81.608605) (xy 95.259143 81.608603) (xy 95.259145 81.608601) (xy 95.305562 81.448831) (xy 95.308499 81.411511) (xy 95.3085 81.411511) (xy 95.3085 80.978489) (xy 95.308499 80.978488) (xy 95.305562 80.941169) (xy 95.292253 80.895358) (xy 95.292455 80.824367) (xy 95.331009 80.76475) (xy 95.395673 80.735441) (xy 95.464498 80.745101) (xy 95.517712 80.768794) (xy 95.704513 80.8085) (xy 95.895487 80.8085) (xy 96.082288 80.768794) (xy 96.256752 80.691118) (xy 96.411253 80.578866) (xy 96.42824 80.56) (xy 96.539034 80.436951) (xy 96.539035 80.436949) (xy 96.53904 80.436944) (xy 96.634527 80.271556) (xy 96.693542 80.089928) (xy 96.700752 80.021327) (xy 96.727766 79.955672) (xy 96.785988 79.915043) (xy 96.826062 79.9085) (xy 97.1655 79.9085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 147.875936 82.428502) (xy 147.908683 82.458991) (xy 147.986738 82.563261) (xy 148.101448 82.649132) (xy 148.143995 82.705968) (xy 148.149059 82.776784) (xy 148.115034 82.839096) (xy 148.101448 82.850868) (xy 147.986738 82.936738) (xy 147.899112 83.053792) (xy 147.89911 83.053797) (xy 147.848011 83.190795) (xy 147.848009 83.190803) (xy 147.8415 83.25135) (xy 147.8415 84.148649) (xy 147.848009 84.209196) (xy 147.848011 84.209204) (xy 147.89911 84.346202) (xy 147.899112 84.346207) (xy 147.986738 84.463261) (xy 148.103792 84.550887) (xy 148.103794 84.550888) (xy 148.103796 84.550889) (xy 148.158074 84.571134) (xy 148.240795 84.601988) (xy 148.240803 84.60199) (xy 148.30135 84.608499) (xy 148.301355 84.608499) (xy 148.301362 84.6085) (xy 148.301368 84.6085) (xy 149.498632 84.6085) (xy 149.498638 84.6085) (xy 149.498645 84.608499) (xy 149.498649 84.608499) (xy 149.559196 84.60199) (xy 149.559199 84.601989) (xy 149.559201 84.601989) (xy 149.696204 84.550889) (xy 149.71 84.540562) (xy 149.813261 84.463261) (xy 149.900887 84.346207) (xy 149.900887 84.346206) (xy 149.900889 84.346204) (xy 149.951989 84.209201) (xy 149.952249 84.206791) (xy 149.958499 84.148649) (xy 149.9585 84.148632) (xy 149.9585 83.586939) (xy 149.978502 83.518818) (xy 150.032158 83.472325) (xy 150.102432 83.462221) (xy 150.167012 83.491715) (xy 150.185368 83.51143) (xy 150.186738 83.513261) (xy 150.303792 83.600887) (xy 150.303794 83.600888) (xy 150.303796 83.600889) (xy 150.362875 83.622924) (xy 150.440795 83.651988) (xy 150.440803 83.65199) (xy 150.50135 83.658499) (xy 150.501355 83.658499) (xy 150.501362 83.6585) (xy 150.501368 83.6585) (xy 151.698632 83.6585) (xy 151.698638 83.6585) (xy 151.698645 83.658499) (xy 151.698649 83.658499) (xy 151.759196 83.65199) (xy 151.759199 83.651989) (xy 151.759201 83.651989) (xy 151.896204 83.600889) (xy 151.941481 83.566994) (xy 152.008 83.542184) (xy 152.077374 83.557275) (xy 152.106085 83.578768) (xy 152.126341 83.599024) (xy 152.126347 83.599029) (xy 152.126348 83.59903) (xy 152.277262 83.692115) (xy 152.445574 83.747887) (xy 152.549455 83.7585) (xy 153.150544 83.758499) (xy 153.254426 83.747887) (xy 153.422738 83.692115) (xy 153.573652 83.59903) (xy 153.69903 83.473652) (xy 153.723715 83.433632) (xy 153.73314 83.418352) (xy 153.785926 83.370875) (xy 153.84038 83.3585) (xy 155.8155 83.3585) (xy 155.883621 83.378502) (xy 155.930114 83.432158) (xy 155.9415 83.4845) (xy 155.9415 84.873649) (xy 155.948009 84.934196) (xy 155.948011 84.934204) (xy 155.99911 85.071202) (xy 155.999112 85.071207) (xy 156.086738 85.188261) (xy 156.203791 85.275886) (xy 156.203792 85.275886) (xy 156.203796 85.275889) (xy 156.31881 85.318787) (xy 156.375642 85.361332) (xy 156.400453 85.427852) (xy 156.385362 85.497226) (xy 156.367475 85.522179) (xy 156.22428 85.677729) (xy 156.224275 85.677734) (xy 156.112112 85.849415) (xy 156.058109 85.895504) (xy 156.006629 85.9065) (xy 153.938321 85.9065) (xy 153.8702 85.886498) (xy 153.823707 85.832842) (xy 153.813603 85.762568) (xy 153.818716 85.740867) (xy 153.847393 85.654322) (xy 153.847394 85.654318) (xy 153.857999 85.550516) (xy 153.858 85.550516) (xy 153.858 85.504) (xy 151.842 85.504) (xy 151.842 85.550508) (xy 151.844292 85.572943) (xy 151.831316 85.642744) (xy 151.782664 85.694449) (xy 151.713781 85.711643) (xy 151.646537 85.688866) (xy 151.629849 85.674844) (xy 151.628352 85.673347) (xy 151.628346 85.673342) (xy 151.602816 85.657595) (xy 151.47992 85.581791) (xy 151.314381 85.526938) (xy 151.314379 85.526937) (xy 151.314377 85.526937) (xy 151.212221 85.5165) (xy 150.612787 85.5165) (xy 150.510619 85.526937) (xy 150.345079 85.581791) (xy 150.196653 85.673342) (xy 150.196647 85.673347) (xy 150.089095 85.7809) (xy 150.026783 85.814926) (xy 149.955968 85.809861) (xy 149.910905 85.7809) (xy 149.803352 85.673347) (xy 149.803346 85.673342) (xy 149.777816 85.657595) (xy 149.65492 85.581791) (xy 149.489381 85.526938) (xy 149.489379 85.526937) (xy 149.489377 85.526937) (xy 149.387221 85.5165) (xy 148.787787 85.5165) (xy 148.685619 85.526937) (xy 148.520079 85.581791) (xy 148.44376 85.628866) (xy 148.401273 85.655073) (xy 148.397184 85.657595) (xy 148.328705 85.676332) (xy 148.260966 85.655073) (xy 148.223796 85.6165) (xy 148.202387 85.581791) (xy 148.19903 85.576348) (xy 148.199027 85.576345) (xy 148.199024 85.576341) (xy 148.073658 85.450975) (xy 148.073652 85.45097) (xy 148.05575 85.439928) (xy 147.922738 85.357885) (xy 147.780205 85.310655) (xy 147.754427 85.302113) (xy 147.75442 85.302112) (xy 147.650553 85.2915) (xy 146.899455 85.2915) (xy 146.795574 85.302112) (xy 146.627261 85.357885) (xy 146.476347 85.45097) (xy 146.476341 85.450975) (xy 146.350971 85.576345) (xy 146.348511 85.579457) (xy 146.346281 85.581035) (xy 146.34578 85.581537) (xy 146.345694 85.581451) (xy 146.290568 85.620483) (xy 146.219643 85.623671) (xy 146.158254 85.588008) (xy 146.150837 85.579446) (xy 146.148632 85.576657) (xy 146.023345 85.45137) (xy 146.023339 85.451365) (xy 145.872525 85.358342) (xy 145.704321 85.302606) (xy 145.704318 85.302605) (xy 145.600516 85.292) (xy 145.479 85.292) (xy 145.479 86.628) (xy 145.458998 86.696121) (xy 145.405342 86.742614) (xy 145.353 86.754) (xy 144.142 86.754) (xy 144.142 87.000516) (xy 144.152605 87.104318) (xy 144.152606 87.104321) (xy 144.208342 87.272525) (xy 144.301365 87.423339) (xy 144.30137 87.423345) (xy 144.409915 87.53189) (xy 144.443941 87.594202) (xy 144.438876 87.665017) (xy 144.409915 87.71008) (xy 144.323347 87.796647) (xy 144.32334 87.796656) (xy 144.301757 87.831648) (xy 144.248971 87.879126) (xy 144.194517 87.8915) (xy 142.001471 87.8915) (xy 141.93335 87.871498) (xy 141.886857 87.817842) (xy 141.876753 87.747568) (xy 141.881636 87.72657) (xy 141.893542 87.689928) (xy 141.913504 87.5) (xy 141.893542 87.310072) (xy 141.834527 87.128444) (xy 141.73904 86.963056) (xy 141.739038 86.963054) (xy 141.739034 86.963048) (xy 141.611255 86.821135) (xy 141.456752 86.708882) (xy 141.282288 86.631206) (xy 141.095487 86.5915) (xy 140.904513 86.5915) (xy 140.717711 86.631206) (xy 140.543248 86.708882) (xy 140.440449 86.783569) (xy 140.373581 86.807427) (xy 140.30443 86.791346) (xy 140.257271 86.744633) (xy 140.23904 86.713056) (xy 140.239038 86.713054) (xy 140.239034 86.713048) (xy 140.111255 86.571135) (xy 139.956752 86.458882) (xy 139.782288 86.381206) (xy 139.595487 86.3415) (xy 139.404513 86.3415) (xy 139.217711 86.381206) (xy 139.043247 86.458882) (xy 138.893837 86.567436) (xy 138.826969 86.591294) (xy 138.819776 86.5915) (xy 131.636572 86.5915) (xy 131.568451 86.571498) (xy 131.521958 86.517842) (xy 131.511262 86.47867) (xy 131.501618 86.386916) (xy 131.493542 86.310072) (xy 131.434527 86.128444) (xy 131.358371 85.996539) (xy 131.341634 85.927545) (xy 131.364854 85.860453) (xy 131.420661 85.816566) (xy 131.467491 85.80754) (xy 137.501058 85.80754) (xy 137.501059 85.80754) (xy 137.578439 85.786806) (xy 137.655821 85.766072) (xy 137.794575 85.685962) (xy 140.997632 82.482905) (xy 141.059944 82.448879) (xy 141.086727 82.446) (xy 143.536807 82.446) (xy 143.604928 82.466002) (xy 143.644047 82.505853) (xy 143.673338 82.55334) (xy 143.673342 82.553346) (xy 143.673344 82.553348) (xy 143.673347 82.553352) (xy 143.7809 82.660905) (xy 143.814926 82.723217) (xy 143.809861 82.794032) (xy 143.7809 82.839095) (xy 143.673347 82.946647) (xy 143.673342 82.946653) (xy 143.581791 83.09508) (xy 143.526937 83.260622) (xy 143.5165 83.362778) (xy 143.5165 83.697904) (xy 143.496498 83.766025) (xy 143.479596 83.786999) (xy 142.846169 84.420427) (xy 142.846164 84.420432) (xy 142.835831 84.430764) (xy 142.797995 84.456768) (xy 142.793249 84.458881) (xy 142.638744 84.571135) (xy 142.510965 84.713048) (xy 142.510958 84.713058) (xy 142.418241 84.873649) (xy 142.415473 84.878444) (xy 142.405707 84.9085) (xy 142.356457 85.060072) (xy 142.336496 85.25) (xy 142.356457 85.439927) (xy 142.377276 85.504) (xy 142.415473 85.621556) (xy 142.434824 85.655073) (xy 142.510958 85.786941) (xy 142.510965 85.786951) (xy 142.638744 85.928864) (xy 142.653894 85.939871) (xy 142.793248 86.041118) (xy 142.967712 86.118794) (xy 143.154513 86.1585) (xy 143.345487 86.1585) (xy 143.532288 86.118794) (xy 143.706752 86.041118) (xy 143.861253 85.928866) (xy 143.927868 85.854882) (xy 143.988313 85.817643) (xy 144.059297 85.818994) (xy 144.118282 85.858508) (xy 144.14654 85.923638) (xy 144.146852 85.951999) (xy 144.142 85.999492) (xy 144.142 86.246) (xy 144.971 86.246) (xy 144.971 85.292) (xy 144.849483 85.292) (xy 144.745681 85.302605) (xy 144.745678 85.302606) (xy 144.577474 85.358342) (xy 144.42666 85.451365) (xy 144.360544 85.517481) (xy 144.298231 85.551506) (xy 144.227416 85.54644) (xy 144.17058 85.503893) (xy 144.14577 85.437373) (xy 144.146138 85.415219) (xy 144.163504 85.25) (xy 144.143542 85.060072) (xy 144.131789 85.023904) (xy 144.129762 84.952939) (xy 144.131746 84.949483) (xy 151.842 84.949483) (xy 151.842 84.996) (xy 152.596 84.996) (xy 153.104 84.996) (xy 153.858 84.996) (xy 153.858 84.949483) (xy 153.847394 84.845681) (xy 153.847393 84.845678) (xy 153.791657 84.677474) (xy 153.698634 84.52666) (xy 153.698629 84.526654) (xy 153.573345 84.40137) (xy 153.573339 84.401365) (xy 153.422525 84.308342) (xy 153.254321 84.252606) (xy 153.254318 84.252605) (xy 153.150516 84.242) (xy 153.104 84.242) (xy 153.104 84.996) (xy 152.596 84.996) (xy 152.596 84.242) (xy 152.549483 84.242) (xy 152.445681 84.252605) (xy 152.445678 84.252606) (xy 152.277474 84.308342) (xy 152.12666 84.401365) (xy 152.126654 84.40137) (xy 152.00137 84.526654) (xy 152.001365 84.52666) (xy 151.908342 84.677474) (xy 151.852606 84.845678) (xy 151.852605 84.845681) (xy 151.842 84.949483) (xy 144.131746 84.949483) (xy 144.162525 84.895877) (xy 144.363001 84.695401) (xy 144.425311 84.661378) (xy 144.452094 84.658499) (xy 144.787212 84.658499) (xy 144.889381 84.648062) (xy 145.05492 84.593209) (xy 145.203346 84.501658) (xy 145.244333 84.460671) (xy 145.286259 84.418746) (xy 145.348571 84.38472) (xy 145.419386 84.389785) (xy 145.464449 84.418746) (xy 145.54696 84.501257) (xy 145.546966 84.501262) (xy 145.695292 84.592751) (xy 145.860723 84.647568) (xy 145.860726 84.647569) (xy 145.962815 84.657999) (xy 145.962815 84.658) (xy 145.996 84.658) (xy 146.504 84.658) (xy 146.537185 84.658) (xy 146.537184 84.657999) (xy 146.639273 84.647569) (xy 146.639276 84.647568) (xy 146.804707 84.592751) (xy 146.953033 84.501262) (xy 146.953039 84.501257) (xy 147.076257 84.378039) (xy 147.076262 84.378033) (xy 147.167751 84.229707) (xy 147.222568 84.064276) (xy 147.222569 84.064273) (xy 147.232999 83.962184) (xy 147.233 83.962184) (xy 147.233 83.8665) (xy 146.504 83.8665) (xy 146.504 84.658) (xy 145.996 84.658) (xy 145.996 83.4845) (xy 146.016002 83.416379) (xy 146.069658 83.369886) (xy 146.122 83.3585) (xy 147.233 83.3585) (xy 147.233 83.262815) (xy 147.222569 83.160726) (xy 147.222568 83.160723) (xy 147.167751 82.995292) (xy 147.076262 82.846966) (xy 147.076257 82.84696) (xy 147.068745 82.839448) (xy 147.034719 82.777136) (xy 147.039784 82.706321) (xy 147.068747 82.661256) (xy 147.076658 82.653346) (xy 147.168209 82.50492) (xy 147.16916 82.502049) (xy 147.171542 82.494864) (xy 147.211957 82.436494) (xy 147.277514 82.409239) (xy 147.291145 82.4085) (xy 147.807815 82.4085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 130.196121 70.766002) (xy 130.242614 70.819658) (xy 130.254 70.872) (xy 130.254 71.983) (xy 130.299685 71.983) (xy 130.299684 71.982999) (xy 130.401773 71.972569) (xy 130.401776 71.972568) (xy 130.567207 71.917751) (xy 130.715533 71.826262) (xy 130.715539 71.826257) (xy 130.823051 71.718746) (xy 130.885363 71.68472) (xy 130.956178 71.689785) (xy 131.001241 71.718746) (xy 131.109147 71.826652) (xy 131.109153 71.826657) (xy 131.109154 71.826658) (xy 131.25758 71.918209) (xy 131.423119 71.973062) (xy 131.525287 71.9835) (xy 132.124712 71.983499) (xy 132.226881 71.973062) (xy 132.283151 71.954415) (xy 132.354104 71.951976) (xy 132.411877 71.984926) (xy 136.954595 76.527644) (xy 136.988621 76.589956) (xy 136.9915 76.616739) (xy 136.9915 83.020051) (xy 136.971498 83.088172) (xy 136.954595 83.109146) (xy 136.709146 83.354595) (xy 136.646834 83.388621) (xy 136.620051 83.3915) (xy 130.019889 83.3915) (xy 129.997514 83.397495) (xy 129.875251 83.430254) (xy 129.875252 83.430255) (xy 129.865128 83.432968) (xy 129.726376 83.513075) (xy 129.726366 83.513083) (xy 128.685816 84.553635) (xy 128.623504 84.58766) (xy 128.596721 84.59054) (xy 116.403279 84.59054) (xy 116.335158 84.570538) (xy 116.314184 84.553635) (xy 115.384144 83.623595) (xy 115.350118 83.561283) (xy 115.355183 83.490468) (xy 115.39773 83.433632) (xy 115.46425 83.408821) (xy 115.473239 83.4085) (xy 126.880109 83.4085) (xy 126.88011 83.4085) (xy 126.880111 83.4085) (xy 126.973353 83.383516) (xy 127.034873 83.367032) (xy 127.173627 83.286922) (xy 131.736921 78.723628) (xy 131.791479 78.629129) (xy 131.834447 78.584892) (xy 131.973652 78.49903) (xy 132.09903 78.373652) (xy 132.192115 78.222738) (xy 132.247887 78.054426) (xy 132.2585 77.950545) (xy 132.2585 77.950516) (xy 132.742 77.950516) (xy 132.752605 78.054318) (xy 132.752606 78.054321) (xy 132.808342 78.222525) (xy 132.901365 78.373339) (xy 132.90137 78.373345) (xy 133.026654 78.498629) (xy 133.02666 78.498634) (xy 133.177474 78.591657) (xy 133.345678 78.647393) (xy 133.345681 78.647394) (xy 133.449483 78.657999) (xy 133.449483 78.658) (xy 133.496 78.658) (xy 134.004 78.658) (xy 134.050517 78.658) (xy 134.050516 78.657999) (xy 134.154318 78.647394) (xy 134.154321 78.647393) (xy 134.322525 78.591657) (xy 134.473339 78.498634) (xy 134.473345 78.498629) (xy 134.598629 78.373345) (xy 134.598634 78.373339) (xy 134.691657 78.222525) (xy 134.747393 78.054321) (xy 134.747394 78.054318) (xy 134.757999 77.950516) (xy 134.758 77.950516) (xy 134.758 77.904) (xy 134.004 77.904) (xy 134.004 78.658) (xy 133.496 78.658) (xy 133.496 77.904) (xy 132.742 77.904) (xy 132.742 77.950516) (xy 132.2585 77.950516) (xy 132.258499 77.349456) (xy 132.257288 77.337606) (xy 132.247887 77.245574) (xy 132.228452 77.186922) (xy 132.192115 77.077262) (xy 132.09903 76.926348) (xy 132.099029 76.926347) (xy 132.099024 76.926341) (xy 131.973658 76.800975) (xy 131.973652 76.80097) (xy 131.953135 76.788315) (xy 131.862222 76.732239) (xy 131.814746 76.679455) (xy 131.803343 76.60938) (xy 131.831635 76.544265) (xy 131.862221 76.517761) (xy 131.973652 76.44903) (xy 132.09903 76.323652) (xy 132.192115 76.172738) (xy 132.247887 76.004426) (xy 132.2585 75.900545) (xy 132.2585 75.900516) (xy 132.742 75.900516) (xy 132.752605 76.004318) (xy 132.752606 76.004321) (xy 132.808342 76.172525) (xy 132.901365 76.323339) (xy 132.90137 76.323345) (xy 133.026654 76.448629) (xy 133.02666 76.448634) (xy 133.138729 76.517759) (xy 133.186207 76.570545) (xy 133.19761 76.64062) (xy 133.169318 76.705736) (xy 133.138729 76.732241) (xy 133.02666 76.801365) (xy 133.026654 76.80137) (xy 132.90137 76.926654) (xy 132.901365 76.92666) (xy 132.808342 77.077474) (xy 132.752606 77.245678) (xy 132.752605 77.245681) (xy 132.742 77.349483) (xy 132.742 77.396) (xy 133.496 77.396) (xy 134.004 77.396) (xy 134.758 77.396) (xy 134.758 77.349483) (xy 134.747394 77.245681) (xy 134.747393 77.245678) (xy 134.691657 77.077474) (xy 134.598634 76.92666) (xy 134.598629 76.926654) (xy 134.473345 76.80137) (xy 134.473339 76.801365) (xy 134.36127 76.732241) (xy 134.313792 76.679455) (xy 134.302389 76.609381) (xy 134.330681 76.544265) (xy 134.36127 76.517759) (xy 134.473339 76.448634) (xy 134.473345 76.448629) (xy 134.598629 76.323345) (xy 134.598634 76.323339) (xy 134.691657 76.172525) (xy 134.747393 76.004321) (xy 134.747394 76.004318) (xy 134.757999 75.900516) (xy 134.758 75.900516) (xy 134.758 75.854) (xy 134.004 75.854) (xy 134.004 77.396) (xy 133.496 77.396) (xy 133.496 75.854) (xy 132.742 75.854) (xy 132.742 75.900516) (xy 132.2585 75.900516) (xy 132.258499 75.299483) (xy 132.742 75.299483) (xy 132.742 75.346) (xy 133.496 75.346) (xy 134.004 75.346) (xy 134.758 75.346) (xy 134.758 75.299483) (xy 134.747394 75.195681) (xy 134.747393 75.195678) (xy 134.691657 75.027474) (xy 134.598634 74.87666) (xy 134.598629 74.876654) (xy 134.473345 74.75137) (xy 134.473339 74.751365) (xy 134.322525 74.658342) (xy 134.154321 74.602606) (xy 134.154318 74.602605) (xy 134.050516 74.592) (xy 134.004 74.592) (xy 134.004 75.346) (xy 133.496 75.346) (xy 133.496 74.592) (xy 133.449483 74.592) (xy 133.345681 74.602605) (xy 133.345678 74.602606) (xy 133.177474 74.658342) (xy 133.02666 74.751365) (xy 133.026654 74.75137) (xy 132.90137 74.876654) (xy 132.901365 74.87666) (xy 132.808342 75.027474) (xy 132.752606 75.195678) (xy 132.752605 75.195681) (xy 132.742 75.299483) (xy 132.258499 75.299483) (xy 132.258499 75.299456) (xy 132.251987 75.235714) (xy 132.247887 75.195574) (xy 132.237749 75.164978) (xy 132.192115 75.027262) (xy 132.09903 74.876348) (xy 132.099029 74.876347) (xy 132.099024 74.876341) (xy 131.973658 74.750975) (xy 131.97365 74.750968) (xy 131.87223 74.688411) (xy 131.824752 74.635625) (xy 131.818317 74.618233) (xy 131.817033 74.615133) (xy 131.817032 74.615127) (xy 131.780219 74.551365) (xy 131.736923 74.476375) (xy 131.736915 74.476365) (xy 131.261765 74.001215) (xy 131.227739 73.938903) (xy 131.232804 73.868088) (xy 131.257222 73.827811) (xy 131.33904 73.736944) (xy 131.434527 73.571556) (xy 131.493542 73.389928) (xy 131.513504 73.2) (xy 131.493542 73.010072) (xy 131.434527 72.828444) (xy 131.33904 72.663056) (xy 131.339038 72.663054) (xy 131.339034 72.663048) (xy 131.211255 72.521135) (xy 131.056752 72.408882) (xy 130.882288 72.331206) (xy 130.695487 72.2915) (xy 130.504513 72.2915) (xy 130.317711 72.331206) (xy 130.143247 72.408882) (xy 129.988744 72.521135) (xy 129.962926 72.54981) (xy 129.90248 72.58705) (xy 129.86929 72.5915) (xy 129.504239 72.5915) (xy 129.436118 72.571498) (xy 129.415144 72.554595) (xy 128.896649 72.0361) (xy 128.862623 71.973788) (xy 128.867688 71.902973) (xy 128.910235 71.846137) (xy 128.919587 71.83977) (xy 128.940846 71.826658) (xy 128.976709 71.790795) (xy 129.023759 71.743746) (xy 129.086071 71.70972) (xy 129.156886 71.714785) (xy 129.201949 71.743746) (xy 129.28446 71.826257) (xy 129.284466 71.826262) (xy 129.432792 71.917751) (xy 129.598223 71.972568) (xy 129.598226 71.972569) (xy 129.700315 71.982999) (xy 129.700315 71.983) (xy 129.746 71.983) (xy 129.746 70.872) (xy 129.766002 70.803879) (xy 129.819658 70.757386) (xy 129.872 70.746) (xy 130.128 70.746) ) ) (filled_polygon (layer "F.Cu") (pts (xy 74.983621 79.759751) (xy 75.030114 79.813407) (xy 75.0415 79.865749) (xy 75.0415 82.200006) (xy 75.021498 82.268127) (xy 74.967842 82.31462) (xy 74.897568 82.324724) (xy 74.875875 82.319612) (xy 74.841925 82.308363) (xy 74.841923 82.308362) (xy 74.841921 82.308362) (xy 74.738052 82.29775) (xy 74.738044 82.29775) (xy 73.711956 82.29775) (xy 73.711948 82.29775) (xy 73.608078 82.308362) (xy 73.439762 82.364135) (xy 73.43976 82.364136) (xy 73.288848 82.45722) (xy 73.288842 82.457225) (xy 73.163475 82.582592) (xy 73.16347 82.582598) (xy 73.070386 82.73351) (xy 73.070385 82.733512) (xy 73.014612 82.901828) (xy 73.004 83.005697) (xy 73.004 83.777379) (xy 72.983998 83.8455) (xy 72.967095 83.866474) (xy 72.528974 84.304595) (xy 72.466662 84.338621) (xy 72.439879 84.3415) (xy 72.372 84.3415) (xy 72.303879 84.321498) (xy 72.257386 84.267842) (xy 72.246 84.2155) (xy 72.245999 83.712787) (xy 72.235562 83.610619) (xy 72.231722 83.59903) (xy 72.180709 83.44508) (xy 72.089158 83.296654) (xy 72.089157 83.296653) (xy 72.089152 83.296647) (xy 71.965846 83.173341) (xy 71.918352 83.144046) (xy 71.870874 83.09126) (xy 71.8585 83.036806) (xy 71.8585 81.773089) (xy 71.878502 81.704968) (xy 71.918354 81.665848) (xy 71.963911 81.637748) (xy 71.986152 81.62403) (xy 72.11153 81.498652) (xy 72.204615 81.347738) (xy 72.220401 81.300099) (xy 72.222135 81.294867) (xy 72.262549 81.236496) (xy 72.328105 81.20924) (xy 72.341739 81.2085) (xy 72.936359 81.2085) (xy 72.93636 81.2085) (xy 72.936361 81.2085) (xy 73.0151 81.187402) (xy 73.091123 81.167032) (xy 73.229877 81.086922) (xy 74.540145 79.776652) (xy 74.602456 79.742629) (xy 74.629239 79.739749) (xy 74.9155 79.739749) ) ) (filled_polygon (layer "F.Cu") (pts (xy 151.563882 72.728502) (xy 151.584856 72.745405) (xy 151.854595 73.015144) (xy 151.888621 73.077456) (xy 151.8915 73.104239) (xy 151.8915 73.450544) (xy 151.902113 73.554426) (xy 151.925786 73.625868) (xy 151.928226 73.696822) (xy 151.891918 73.757832) (xy 151.828389 73.789528) (xy 151.806181 73.7915) (xy 151.419889 73.7915) (xy 151.343744 73.811903) (xy 151.26513 73.832967) (xy 151.265123 73.83297) (xy 151.142658 73.903676) (xy 151.126375 73.913076) (xy 151.126365 73.913084) (xy 150.425578 74.613871) (xy 150.425574 74.613877) (xy 150.420101 74.623356) (xy 150.368716 74.672347) (xy 150.350623 74.679954) (xy 150.345082 74.68179) (xy 150.34508 74.68179) (xy 150.34508 74.681791) (xy 150.315559 74.7) (xy 150.196653 74.773342) (xy 150.196647 74.773347) (xy 150.089095 74.8809) (xy 150.026783 74.914926) (xy 149.955968 74.909861) (xy 149.910905 74.8809) (xy 149.803352 74.773347) (xy 149.803346 74.773342) (xy 149.767084 74.750975) (xy 149.65492 74.681791) (xy 149.489381 74.626938) (xy 149.489379 74.626937) (xy 149.489377 74.626937) (xy 149.387221 74.6165) (xy 148.787787 74.6165) (xy 148.685619 74.626937) (xy 148.520079 74.681791) (xy 148.44435 74.728502) (xy 148.371654 74.773342) (xy 148.371653 74.773342) (xy 148.365408 74.777195) (xy 148.364438 74.775623) (xy 148.30743 74.798613) (xy 148.237683 74.785352) (xy 148.187896 74.73936) (xy 148.168861 74.7085) (xy 148.14903 74.676348) (xy 148.149027 74.676345) (xy 148.149024 74.676341) (xy 148.023658 74.550975) (xy 148.023652 74.55097) (xy 148.014904 74.545574) (xy 147.872738 74.457885) (xy 147.77161 74.424375) (xy 147.704427 74.402113) (xy 147.70442 74.402112) (xy 147.600553 74.3915) (xy 146.849455 74.3915) (xy 146.745574 74.402112) (xy 146.577261 74.457885) (xy 146.426347 74.55097) (xy 146.426341 74.550975) (xy 146.300971 74.676345) (xy 146.298511 74.679457) (xy 146.296281 74.681035) (xy 146.29578 74.681537) (xy 146.295694 74.681451) (xy 146.240568 74.720483) (xy 146.169643 74.723671) (xy 146.108254 74.688008) (xy 146.100837 74.679446) (xy 146.098632 74.676657) (xy 145.973345 74.55137) (xy 145.973339 74.551365) (xy 145.822525 74.458342) (xy 145.654321 74.402606) (xy 145.654318 74.402605) (xy 145.550516 74.392) (xy 145.429 74.392) (xy 145.429 75.728) (xy 145.408998 75.796121) (xy 145.355342 75.842614) (xy 145.303 75.854) (xy 144.092 75.854) (xy 144.092 76.100516) (xy 144.102605 76.204318) (xy 144.102606 76.204321) (xy 144.158342 76.372525) (xy 144.251365 76.523339) (xy 144.25137 76.523345) (xy 144.322415 76.59439) (xy 144.356441 76.656702) (xy 144.351376 76.727517) (xy 144.322415 76.77258) (xy 144.273347 76.821647) (xy 144.27334 76.821656) (xy 144.251757 76.856648) (xy 144.198971 76.904126) (xy 144.144517 76.9165) (xy 142.679245 76.9165) (xy 142.611124 76.896498) (xy 142.570126 76.8535) (xy 142.497924 76.728444) (xy 142.48904 76.713056) (xy 142.489038 76.713054) (xy 142.489034 76.713048) (xy 142.361255 76.571135) (xy 142.206752 76.458882) (xy 142.032288 76.381206) (xy 141.845487 76.3415) (xy 141.654513 76.3415) (xy 141.467711 76.381206) (xy 141.293247 76.458882) (xy 141.138744 76.571135) (xy 141.010965 76.713048) (xy 141.010958 76.713058) (xy 140.915476 76.878438) (xy 140.915473 76.878444) (xy 140.911244 76.891459) (xy 140.856457 77.060072) (xy 140.836496 77.25) (xy 140.856457 77.439927) (xy 140.878143 77.506667) (xy 140.915473 77.621556) (xy 140.919188 77.62799) (xy 141.010958 77.786941) (xy 141.010965 77.786951) (xy 141.138744 77.928864) (xy 141.168584 77.950544) (xy 141.293248 78.041118) (xy 141.467712 78.118794) (xy 141.654513 78.1585) (xy 141.845487 78.1585) (xy 141.95015 78.136253) (xy 141.976347 78.1335) (xy 142.10511 78.1335) (xy 144.144517 78.1335) (xy 144.212638 78.153502) (xy 144.251757 78.193352) (xy 144.27334 78.228343) (xy 144.273347 78.228352) (xy 144.396647 78.351652) (xy 144.396653 78.351657) (xy 144.396654 78.351658) (xy 144.54508 78.443209) (xy 144.710619 78.498062) (xy 144.812787 78.5085) (xy 145.412212 78.508499) (xy 145.514381 78.498062) (xy 145.67992 78.443209) (xy 145.828346 78.351658) (xy 145.880258 78.299746) (xy 145.935905 78.2441) (xy 145.998217 78.210074) (xy 146.069032 78.215139) (xy 146.114095 78.2441) (xy 146.221647 78.351652) (xy 146.221653 78.351657) (xy 146.221654 78.351658) (xy 146.37008 78.443209) (xy 146.535619 78.498062) (xy 146.637787 78.5085) (xy 147.237212 78.508499) (xy 147.339381 78.498062) (xy 147.50492 78.443209) (xy 147.638988 78.360514) (xy 147.707464 78.341777) (xy 147.775203 78.363036) (xy 147.812371 78.401605) (xy 147.82597 78.423652) (xy 147.825973 78.423655) (xy 147.825975 78.423658) (xy 147.951341 78.549024) (xy 147.951347 78.549029) (xy 147.951348 78.54903) (xy 148.102262 78.642115) (xy 148.270574 78.697887) (xy 148.374455 78.7085) (xy 148.975544 78.708499) (xy 149.079426 78.697887) (xy 149.247738 78.642115) (xy 149.398652 78.54903) (xy 149.52403 78.423652) (xy 149.617115 78.272738) (xy 149.672887 78.104426) (xy 149.6835 78.000545) (xy 149.6835 78.000516) (xy 150.167 78.000516) (xy 150.177605 78.104318) (xy 150.177606 78.104321) (xy 150.233342 78.272525) (xy 150.326365 78.423339) (xy 150.32637 78.423345) (xy 150.451654 78.548629) (xy 150.45166 78.548634) (xy 150.602474 78.641657) (xy 150.770678 78.697393) (xy 150.770681 78.697394) (xy 150.874483 78.707999) (xy 150.874483 78.708) (xy 150.921 78.708) (xy 151.429 78.708) (xy 151.475517 78.708) (xy 151.475516 78.707999) (xy 151.579318 78.697394) (xy 151.579321 78.697393) (xy 151.747525 78.641657) (xy 151.898339 78.548634) (xy 151.898345 78.548629) (xy 152.023629 78.423345) (xy 152.023634 78.423339) (xy 152.116657 78.272525) (xy 152.172393 78.104321) (xy 152.172394 78.104318) (xy 152.182999 78.000516) (xy 152.183 78.000516) (xy 152.183 77.954) (xy 151.429 77.954) (xy 151.429 78.708) (xy 150.921 78.708) (xy 150.921 77.954) (xy 150.167 77.954) (xy 150.167 78.000516) (xy 149.6835 78.000516) (xy 149.683499 77.604239) (xy 149.703501 77.53612) (xy 149.720404 77.515144) (xy 149.890145 77.345404) (xy 149.952457 77.311379) (xy 149.97924 77.3085) (xy 150.041 77.3085) (xy 150.109121 77.328502) (xy 150.155614 77.382158) (xy 150.167 77.4345) (xy 150.167 77.446) (xy 152.183 77.446) (xy 152.183 77.399483) (xy 152.172394 77.295681) (xy 152.172393 77.295678) (xy 152.116657 77.127474) (xy 152.022623 76.975021) (xy 152.003886 76.906541) (xy 152.025145 76.838803) (xy 152.040759 76.819789) (xy 152.228519 76.632029) (xy 152.290829 76.598006) (xy 152.357245 76.601522) (xy 152.495678 76.647393) (xy 152.495681 76.647394) (xy 152.599483 76.657999) (xy 152.599483 76.658) (xy 152.646 76.658) (xy 152.646 75.5345) (xy 152.666002 75.466379) (xy 152.719658 75.419886) (xy 152.772 75.4085) (xy 153.028 75.4085) (xy 153.096121 75.428502) (xy 153.142614 75.482158) (xy 153.154 75.5345) (xy 153.154 76.658) (xy 153.200517 76.658) (xy 153.200516 76.657999) (xy 153.304318 76.647394) (xy 153.304321 76.647393) (xy 153.472525 76.591657) (xy 153.623339 76.498634) (xy 153.623345 76.498629) (xy 153.748629 76.373345) (xy 153.748634 76.373339) (xy 153.841655 76.222529) (xy 153.848902 76.200659) (xy 153.889315 76.142286) (xy 153.95487 76.115028) (xy 154.019757 76.125182) (xy 154.117707 76.168793) (xy 154.267624 76.200659) (xy 154.304513 76.2085) (xy 154.495487 76.2085) (xy 154.682288 76.168794) (xy 154.856752 76.091118) (xy 155.011253 75.978866) (xy 155.055311 75.929935) (xy 155.139034 75.836951) (xy 155.139035 75.836949) (xy 155.13904 75.836944) (xy 155.234527 75.671556) (xy 155.293542 75.489928) (xy 155.313504 75.3) (xy 155.297494 75.14767) (xy 155.310266 75.077832) (xy 155.358769 75.025985) (xy 155.422804 75.0085) (xy 155.823298 75.0085) (xy 155.891419 75.028502) (xy 155.937912 75.082158) (xy 155.948867 75.144902) (xy 155.936844 75.29) (xy 155.954415 75.502049) (xy 155.955437 75.514375) (xy 156.010702 75.732612) (xy 156.010703 75.732613) (xy 156.010704 75.732616) (xy 156.098494 75.932759) (xy 156.101141 75.938793) (xy 156.224275 76.127265) (xy 156.224279 76.12727) (xy 156.376762 76.292908) (xy 156.431331 76.335381) (xy 156.554424 76.431189) (xy 156.58768 76.449186) (xy 156.638071 76.4992) (xy 156.653423 76.568516) (xy 156.628862 76.635129) (xy 156.58768 76.670813) (xy 156.554426 76.68881) (xy 156.554424 76.688811) (xy 156.376762 76.827091) (xy 156.224279 76.992729) (xy 156.224275 76.992734) (xy 156.101141 77.181206) (xy 156.010703 77.387386) (xy 156.010702 77.387387) (xy 155.955437 77.605624) (xy 155.955436 77.60563) (xy 155.955436 77.605632) (xy 155.936844 77.83) (xy 155.955432 78.054321) (xy 155.955437 78.054375) (xy 156.010702 78.272612) (xy 156.010703 78.272613) (xy 156.010704 78.272616) (xy 156.088315 78.449553) (xy 156.101141 78.478793) (xy 156.224275 78.667265) (xy 156.224279 78.66727) (xy 156.344944 78.798345) (xy 156.369348 78.824855) (xy 156.376762 78.832908) (xy 156.408877 78.857904) (xy 156.554424 78.971189) (xy 156.752426 79.078342) (xy 156.752427 79.078342) (xy 156.752428 79.078343) (xy 156.863772 79.116567) (xy 156.965365 79.151444) (xy 157.187431 79.1885) (xy 157.187435 79.1885) (xy 157.412565 79.1885) (xy 157.412569 79.1885) (xy 157.634635 79.151444) (xy 157.847574 79.078342) (xy 158.045576 78.971189) (xy 158.22324 78.832906) (xy 158.375722 78.667268) (xy 158.49886 78.478791) (xy 158.589296 78.272616) (xy 158.644564 78.054368) (xy 158.663156 77.83) (xy 158.644564 77.605632) (xy 158.644562 77.605624) (xy 158.589297 77.387387) (xy 158.589296 77.387386) (xy 158.589296 77.387384) (xy 158.49886 77.181209) (xy 158.45156 77.108811) (xy 158.375724 76.992734) (xy 158.37572 76.992729) (xy 158.234019 76.838803) (xy 158.22324 76.827094) (xy 158.223239 76.827093) (xy 158.223237 76.827091) (xy 158.121476 76.747887) (xy 158.045576 76.688811) (xy 158.042621 76.687212) (xy 158.022031 76.676069) (xy 158.012319 76.670813) (xy 157.961929 76.620802) (xy 157.946576 76.551485) (xy 157.971136 76.484872) (xy 158.01232 76.449186) (xy 158.045576 76.431189) (xy 158.181918 76.325069) (xy 158.24796 76.299012) (xy 158.259309 76.2985) (xy 159.109328 76.2985) (xy 159.109329 76.2985) (xy 159.304169 76.259744) (xy 159.487704 76.183721) (xy 159.652881 76.073353) (xy 159.793353 75.932881) (xy 159.876405 75.849829) (xy 159.938717 75.815803) (xy 160.009532 75.820868) (xy 160.066368 75.863415) (xy 160.091179 75.929935) (xy 160.0915 75.938924) (xy 160.0915 79.242611) (xy 160.103796 79.2885) (xy 160.132967 79.39737) (xy 160.13297 79.397377) (xy 160.213075 79.536123) (xy 160.213076 79.536124) (xy 160.213078 79.536127) (xy 160.354596 79.677645) (xy 160.38862 79.739955) (xy 160.3915 79.766739) (xy 160.3915 80.087212) (xy 160.401937 80.18938) (xy 160.420554 80.245563) (xy 160.456791 80.35492) (xy 160.456793 80.354923) (xy 160.456794 80.354926) (xy 160.46657 80.370775) (xy 160.485308 80.439254) (xy 160.46405 80.506993) (xy 160.448425 80.526018) (xy 159.269368 81.705076) (xy 159.207058 81.7391) (xy 159.180275 81.74198) (xy 155.538519 81.74198) (xy 155.470398 81.721978) (xy 155.423905 81.668322) (xy 155.413828 81.606604) (xy 155.413504 81.606604) (xy 155.413504 81.604621) (xy 155.413209 81.602815) (xy 155.413504 81.600006) (xy 155.413504 81.600001) (xy 155.41206 81.586266) (xy 155.393542 81.410072) (xy 155.334527 81.228444) (xy 155.23904 81.063056) (xy 155.239038 81.063054) (xy 155.239034 81.063048) (xy 155.111255 80.921135) (xy 154.956752 80.808882) (xy 154.782288 80.731206) (xy 154.595487 80.6915) (xy 154.404513 80.6915) (xy 154.217711 80.731206) (xy 154.043247 80.808882) (xy 153.888744 80.921135) (xy 153.760965 81.063048) (xy 153.760958 81.063058) (xy 153.665476 81.228438) (xy 153.665473 81.228444) (xy 153.664226 81.232282) (xy 153.606457 81.410072) (xy 153.586496 81.6) (xy 153.594632 81.677415) (xy 153.581859 81.747253) (xy 153.533357 81.799099) (xy 153.464524 81.816493) (xy 153.42969 81.810189) (xy 153.422739 81.807885) (xy 153.422738 81.807885) (xy 153.313012 81.771526) (xy 153.254427 81.752113) (xy 153.25442 81.752112) (xy 153.150553 81.7415) (xy 152.549455 81.7415) (xy 152.445574 81.752112) (xy 152.277261 81.807885) (xy 152.126347 81.90097) (xy 152.106084 81.921233) (xy 152.043771 81.955257) (xy 151.972955 81.950191) (xy 151.941481 81.933004) (xy 151.896207 81.899113) (xy 151.896202 81.89911) (xy 151.759204 81.848011) (xy 151.759196 81.848009) (xy 151.698649 81.8415) (xy 151.698638 81.8415) (xy 150.501362 81.8415) (xy 150.50135 81.8415) (xy 150.440803 81.848009) (xy 150.440795 81.848011) (xy 150.303797 81.89911) (xy 150.303792 81.899112) (xy 150.186736 81.98674) (xy 150.185364 81.988574) (xy 150.18353 81.989946) (xy 150.180366 81.993111) (xy 150.17991 81.992655) (xy 150.128526 82.031118) (xy 150.05771 82.036179) (xy 149.9954 82.002151) (xy 149.961378 81.939837) (xy 149.9585 81.91306) (xy 149.9585 81.351367) (xy 149.958499 81.35135) (xy 149.95199 81.290803) (xy 149.951988 81.290795) (xy 149.918132 81.200027) (xy 149.900889 81.153796) (xy 149.900888 81.153794) (xy 149.900887 81.153792) (xy 149.813261 81.036738) (xy 149.696207 80.949112) (xy 149.696202 80.94911) (xy 149.559204 80.898011) (xy 149.559196 80.898009) (xy 149.498649 80.8915) (xy 149.498638 80.8915) (xy 148.301362 80.8915) (xy 148.30135 80.8915) (xy 148.240803 80.898009) (xy 148.240795 80.898011) (xy 148.103797 80.94911) (xy 148.103792 80.949112) (xy 147.986738 81.036738) (xy 147.908683 81.141009) (xy 147.851847 81.183556) (xy 147.807815 81.1915) (xy 147.190062 81.1915) (xy 147.121941 81.171498) (xy 147.082821 81.131646) (xy 147.076658 81.121654) (xy 147.076657 81.121653) (xy 147.076652 81.121647) (xy 146.953352 80.998347) (xy 146.953346 80.998342) (xy 146.921174 80.978498) (xy 146.80492 80.906791) (xy 146.639381 80.851938) (xy 146.639379 80.851937) (xy 146.639377 80.851937) (xy 146.537221 80.8415) (xy 145.962787 80.8415) (xy 145.860619 80.851937) (xy 145.695079 80.906791) (xy 145.546653 80.998342) (xy 145.546647 80.998347) (xy 145.464095 81.0809) (xy 145.401783 81.114926) (xy 145.330968 81.109861) (xy 145.285905 81.0809) (xy 145.203352 80.998347) (xy 145.203346 80.998342) (xy 145.171174 80.978498) (xy 145.05492 80.906791) (xy 144.889381 80.851938) (xy 144.889379 80.851937) (xy 144.889377 80.851937) (xy 144.787221 80.8415) (xy 144.212787 80.8415) (xy 144.110619 80.851937) (xy 143.945079 80.906791) (xy 143.796653 80.998342) (xy 143.796647 80.998347) (xy 143.673347 81.121647) (xy 143.673338 81.121659) (xy 143.644047 81.169147) (xy 143.591261 81.216625) (xy 143.536807 81.229) (xy 140.702377 81.229) (xy 140.642366 81.24508) (xy 140.547618 81.270467) (xy 140.547611 81.27047) (xy 140.431328 81.337607) (xy 140.408863 81.350576) (xy 140.408853 81.350584) (xy 139.224564 82.534874) (xy 139.162252 82.5689) (xy 139.091437 82.563835) (xy 139.034601 82.521288) (xy 139.00979 82.454768) (xy 139.009469 82.445779) (xy 139.009469 78.349004) (xy 139.029471 78.280883) (xy 139.046374 78.259909) (xy 142.206801 75.099483) (xy 144.092 75.099483) (xy 144.092 75.346) (xy 144.921 75.346) (xy 144.921 74.392) (xy 144.799483 74.392) (xy 144.695681 74.402605) (xy 144.695678 74.402606) (xy 144.527474 74.458342) (xy 144.37666 74.551365) (xy 144.376654 74.55137) (xy 144.25137 74.676654) (xy 144.251365 74.67666) (xy 144.158342 74.827474) (xy 144.102606 74.995678) (xy 144.102605 74.995681) (xy 144.092 75.099483) (xy 142.206801 75.099483) (xy 143.160879 74.145405) (xy 143.223191 74.111379) (xy 143.249974 74.1085) (xy 149.930109 74.1085) (xy 149.93011 74.1085) (xy 149.930111 74.1085) (xy 150.030373 74.081635) (xy 150.084873 74.067032) (xy 150.223627 73.986922) (xy 150.436921 73.773628) (xy 150.517032 73.634873) (xy 150.5585 73.480111) (xy 150.5585 73.31989) (xy 150.5585 72.8345) (xy 150.578502 72.766379) (xy 150.632158 72.719886) (xy 150.6845 72.7085) (xy 151.495761 72.7085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 116.260032 73.646103) (xy 116.316868 73.68865) (xy 116.341679 73.75517) (xy 116.342 73.764159) (xy 116.342 73.946) (xy 117.269297 73.946) (xy 117.234075 74.007007) (xy 117.2 74.134174) (xy 117.2 74.265826) (xy 117.234075 74.392993) (xy 117.269297 74.454) (xy 116.342 74.454) (xy 116.342 75.098597) (xy 116.348505 75.159093) (xy 116.399555 75.295964) (xy 116.399555 75.295965) (xy 116.487095 75.412904) (xy 116.604034 75.500444) (xy 116.740906 75.551494) (xy 116.801402 75.557999) (xy 116.801415 75.558) (xy 117.446 75.558) (xy 117.446 74.630702) (xy 117.507007 74.665925) (xy 117.634174 74.7) (xy 117.765826 74.7) (xy 117.892993 74.665925) (xy 117.954 74.630702) (xy 117.954 75.558) (xy 118.598585 75.558) (xy 118.598597 75.557999) (xy 118.659093 75.551494) (xy 118.795964 75.500444) (xy 118.795965 75.500444) (xy 118.912904 75.412904) (xy 119.000444 75.295965) (xy 119.044618 75.17753) (xy 119.087165 75.120694) (xy 119.153685 75.095883) (xy 119.223059 75.110974) (xy 119.255372 75.136222) (xy 119.310015 75.195579) (xy 119.316762 75.202908) (xy 119.332325 75.215021) (xy 119.494424 75.341189) (xy 119.515468 75.352577) (xy 119.565859 75.402588) (xy 119.5815 75.463391) (xy 119.5815 78.3155) (xy 119.561498 78.383621) (xy 119.507842 78.430114) (xy 119.4555 78.4415) (xy 116.184499 78.4415) (xy 116.116378 78.421498) (xy 116.069885 78.367842) (xy 116.058499 78.3155) (xy 116.058499 77.999455) (xy 116.047887 77.895574) (xy 116.017326 77.803346) (xy 115.992115 77.727262) (xy 115.89903 77.576348) (xy 115.899029 77.576347) (xy 115.899024 77.576341) (xy 115.773652 77.450969) (xy 115.77365 77.450968) (xy 115.768351 77.447699) (xy 115.720874 77.394913) (xy 115.7085 77.34046) (xy 115.7085 77.261194) (xy 115.728502 77.193073) (xy 115.7454 77.172103) (xy 115.814158 77.103346) (xy 115.905709 76.95492) (xy 115.960562 76.789381) (xy 115.971 76.687213) (xy 115.970999 76.112788) (xy 115.967407 76.07763) (xy 115.960562 76.010619) (xy 115.936786 75.938866) (xy 115.905709 75.84508) (xy 115.814158 75.696654) (xy 115.814157 75.696653) (xy 115.814152 75.696647) (xy 115.690852 75.573347) (xy 115.690846 75.573342) (xy 115.677686 75.565225) (xy 115.54242 75.481791) (xy 115.376881 75.426938) (xy 115.376879 75.426937) (xy 115.376877 75.426937) (xy 115.274721 75.4165) (xy 115.274713 75.4165) (xy 115.066371 75.4165) (xy 114.99825 75.396498) (xy 114.977276 75.379595) (xy 114.483519 74.885838) (xy 114.483515 74.885834) (xy 114.359284 74.802826) (xy 114.221247 74.745649) (xy 114.124335 74.726372) (xy 114.074706 74.7165) (xy 112.792587 74.7165) (xy 112.724466 74.696498) (xy 112.718524 74.692435) (xy 112.706754 74.683883) (xy 112.702055 74.681791) (xy 112.532288 74.606206) (xy 112.345487 74.5665) (xy 112.154513 74.5665) (xy 111.967711 74.606206) (xy 111.793247 74.683882) (xy 111.638744 74.796135) (xy 111.510965 74.938048) (xy 111.510958 74.938058) (xy 111.417142 75.100553) (xy 111.415473 75.103444) (xy 111.41013 75.119889) (xy 111.356457 75.285072) (xy 111.336496 75.475) (xy 111.356457 75.664927) (xy 111.37747 75.729595) (xy 111.415473 75.846556) (xy 111.415476 75.846561) (xy 111.510958 76.011941) (xy 111.510965 76.011951) (xy 111.638744 76.153864) (xy 111.664722 76.172738) (xy 111.793248 76.266118) (xy 111.967712 76.343794) (xy 112.154513 76.3835) (xy 112.345487 76.3835) (xy 112.532288 76.343794) (xy 112.706752 76.266118) (xy 112.718524 76.257564) (xy 112.785391 76.233706) (xy 112.792587 76.2335) (xy 113.328 76.2335) (xy 113.396121 76.253502) (xy 113.442614 76.307158) (xy 113.454 76.3595) (xy 113.454 76.528) (xy 113.433998 76.596121) (xy 113.380342 76.642614) (xy 113.328 76.654) (xy 112.1545 76.654) (xy 112.1545 76.687184) (xy 112.16493 76.789273) (xy 112.164931 76.789276) (xy 112.219748 76.954707) (xy 112.311708 77.103796) (xy 112.330445 77.172275) (xy 112.309186 77.240014) (xy 112.254679 77.285506) (xy 112.217275 77.29529) (xy 112.145681 77.302605) (xy 112.145678 77.302606) (xy 111.977474 77.358342) (xy 111.82666 77.451365) (xy 111.826654 77.45137) (xy 111.70137 77.576654) (xy 111.701365 77.57666) (xy 111.608342 77.727474) (xy 111.552606 77.895678) (xy 111.552605 77.895681) (xy 111.542 77.999483) (xy 111.542 78.046) (xy 113.558 78.046) (xy 113.558 77.999483) (xy 113.547394 77.895681) (xy 113.547393 77.895678) (xy 113.491657 77.727474) (xy 113.397701 77.575147) (xy 113.378964 77.506667) (xy 113.400223 77.438928) (xy 113.454731 77.393437) (xy 113.504942 77.383) (xy 113.549685 77.383) (xy 113.549684 77.382999) (xy 113.651773 77.372569) (xy 113.651776 77.372568) (xy 113.817207 77.317751) (xy 113.965533 77.226262) (xy 113.973047 77.218748) (xy 114.035358 77.184721) (xy 114.106174 77.189783) (xy 114.151242 77.218746) (xy 114.159154 77.226658) (xy 114.265675 77.292361) (xy 114.313151 77.345145) (xy 114.324554 77.41522) (xy 114.296262 77.480335) (xy 114.288622 77.488695) (xy 114.20097 77.576347) (xy 114.107885 77.727262) (xy 114.052113 77.895572) (xy 114.052112 77.895579) (xy 114.0415 77.999446) (xy 114.0415 78.600544) (xy 114.052112 78.704425) (xy 114.107885 78.872738) (xy 114.20097 79.023652) (xy 114.200975 79.023658) (xy 114.326341 79.149024) (xy 114.326347 79.149029) (xy 114.326348 79.14903) (xy 114.477262 79.242115) (xy 114.645574 79.297887) (xy 114.749455 79.3085) (xy 115.075049 79.308499) (xy 115.143169 79.328501) (xy 115.164144 79.345404) (xy 115.430231 79.611491) (xy 115.525721 79.675295) (xy 115.538083 79.683555) (xy 115.657923 79.733194) (xy 115.785143 79.7585) (xy 115.785144 79.7585) (xy 115.914857 79.7585) (xy 116.234531 79.7585) (xy 116.302652 79.778502) (xy 116.349145 79.832158) (xy 116.359249 79.902432) (xy 116.352587 79.928528) (xy 116.348011 79.940799) (xy 116.34801 79.940802) (xy 116.348009 79.940803) (xy 116.3415 80.00135) (xy 116.3415 81.798649) (xy 116.348009 81.859196) (xy 116.348011 81.859204) (xy 116.39911 81.996202) (xy 116.403432 82.004118) (xy 116.400358 82.005795) (xy 116.419272 82.056539) (xy 116.404165 82.125909) (xy 116.353952 82.176101) (xy 116.293591 82.1915) (xy 114.704239 82.1915) (xy 114.636118 82.171498) (xy 114.615144 82.154595) (xy 111.941712 79.481162) (xy 111.907686 79.41885) (xy 111.912751 79.348034) (xy 111.955298 79.291199) (xy 112.021818 79.266388) (xy 112.070441 79.272463) (xy 112.145672 79.297392) (xy 112.145681 79.297394) (xy 112.249483 79.307999) (xy 112.249483 79.308) (xy 112.296 79.308) (xy 112.804 79.308) (xy 112.850517 79.308) (xy 112.850516 79.307999) (xy 112.954318 79.297394) (xy 112.954321 79.297393) (xy 113.122525 79.241657) (xy 113.273339 79.148634) (xy 113.273345 79.148629) (xy 113.398629 79.023345) (xy 113.398634 79.023339) (xy 113.491657 78.872525) (xy 113.547393 78.704321) (xy 113.547394 78.704318) (xy 113.557999 78.600516) (xy 113.558 78.600516) (xy 113.558 78.554) (xy 112.804 78.554) (xy 112.804 79.308) (xy 112.296 79.308) (xy 112.296 78.554) (xy 111.542 78.554) (xy 111.542 78.600516) (xy 111.552605 78.704318) (xy 111.552606 78.704321) (xy 111.577537 78.779559) (xy 111.579977 78.850514) (xy 111.543669 78.911524) (xy 111.48014 78.943219) (xy 111.40956 78.935537) (xy 111.368837 78.908287) (xy 109.373633 76.913083) (xy 109.37362 76.913073) (xy 109.328946 76.88728) (xy 109.279953 76.835897) (xy 109.266518 76.766184) (xy 109.292905 76.700273) (xy 109.302843 76.689076) (xy 111.746516 74.245405) (xy 111.808828 74.211379) (xy 111.835611 74.2085) (xy 115.421529 74.2085) (xy 115.42153 74.2085) (xy 115.421531 74.2085) (xy 115.510037 74.184785) (xy 115.576293 74.167032) (xy 115.715047 74.086922) (xy 116.126906 73.675062) (xy 116.189217 73.641039) ) ) (filled_polygon (layer "F.Cu") (pts (xy 130.183621 77.503502) (xy 130.230114 77.557158) (xy 130.2415 77.6095) (xy 130.2415 77.950544) (xy 130.252112 78.054425) (xy 130.289772 78.168075) (xy 130.307885 78.222738) (xy 130.330812 78.259909) (xy 130.33525 78.267103) (xy 130.353987 78.335583) (xy 130.332728 78.403322) (xy 130.317104 78.422345) (xy 127.448595 81.290855) (xy 127.386283 81.324881) (xy 127.315468 81.319816) (xy 127.258632 81.277269) (xy 127.233821 81.210749) (xy 127.2335 81.20176) (xy 127.2335 77.714594) (xy 127.253502 77.646473) (xy 127.270405 77.625499) (xy 127.375499 77.520405) (xy 127.437811 77.486379) (xy 127.464594 77.4835) (xy 130.1155 77.4835) ) ) (filled_polygon (layer "F.Cu") (pts (xy 105.432511 76.528502) (xy 105.453485 76.545405) (xy 106.794994 77.886915) (xy 106.794999 77.886919) (xy 106.795001 77.886921) (xy 106.795002 77.886922) (xy 106.795004 77.886923) (xy 106.824582 77.904) (xy 106.933756 77.967032) (xy 107.011137 77.987766) (xy 107.088518 78.0085) (xy 107.088519 78.0085) (xy 107.248739 78.0085) (xy 108.695761 78.0085) (xy 108.763882 78.028502) (xy 108.784856 78.045405) (xy 110.215856 79.476405) (xy 110.249882 79.538717) (xy 110.244817 79.609532) (xy 110.20227 79.666368) (xy 110.13575 79.691179) (xy 110.126761 79.6915) (xy 108.844189 79.6915) (xy 108.776068 79.671498) (xy 108.755098 79.654599) (xy 107.863577 78.763078) (xy 107.863575 78.763077) (xy 107.863573 78.763075) (xy 107.724827 78.68297) (xy 107.724824 78.682969) (xy 107.724823 78.682968) (xy 107.724821 78.682967) (xy 107.72482 78.682967) (xy 107.633502 78.658499) (xy 107.593341 78.647738) (xy 107.570061 78.6415) (xy 107.57006 78.6415) (xy 106.98071 78.6415) (xy 106.912589 78.621498) (xy 106.887074 78.59981) (xy 106.861255 78.571135) (xy 106.706752 78.458882) (xy 106.532288 78.381206) (xy 106.345487 78.3415) (xy 106.154513 78.3415) (xy 105.967711 78.381206) (xy 105.793247 78.458882) (xy 105.638744 78.571135) (xy 105.510965 78.713048) (xy 105.510958 78.713058) (xy 105.415476 78.878438) (xy 105.415473 78.878444) (xy 105.414113 78.882631) (xy 105.356457 79.060072) (xy 105.336496 79.25) (xy 105.356457 79.439927) (xy 105.381478 79.51693) (xy 105.415473 79.621556) (xy 105.415476 79.621561) (xy 105.510958 79.786941) (xy 105.510965 79.786951) (xy 105.638744 79.928864) (xy 105.638747 79.928866) (xy 105.793248 80.041118) (xy 105.967712 80.118794) (xy 106.154513 80.1585) (xy 106.254702 80.1585) (xy 106.322823 80.178502) (xy 106.369316 80.232158) (xy 106.374535 80.245563) (xy 106.377376 80.254306) (xy 106.397065 80.314904) (xy 106.401169 80.327533) (xy 106.403197 80.398501) (xy 106.366534 80.459299) (xy 106.302822 80.490625) (xy 106.281336 80.49247) (xy 103.305209 80.49247) (xy 103.237088 80.472468) (xy 103.216118 80.455569) (xy 102.873627 80.113078) (xy 102.873625 80.113077) (xy 102.873623 80.113075) (xy 102.734877 80.03297) (xy 102.734874 80.032969) (xy 102.734873 80.032968) (xy 102.734871 80.032967) (xy 102.73487 80.032967) (xy 102.630904 80.00511) (xy 102.630904 80.005109) (xy 102.580111 79.9915) (xy 102.104239 79.9915) (xy 102.036118 79.971498) (xy 102.015144 79.954595) (xy 100.873633 78.813083) (xy 100.873623 78.813075) (xy 100.734877 78.73297) (xy 100.734874 78.732969) (xy 100.734873 78.732968) (xy 100.734871 78.732967) (xy 100.73487 78.732967) (xy 100.643552 78.708499) (xy 100.628351 78.704426) (xy 100.580111 78.6915) (xy 100.58011 78.6915) (xy 100.3845 78.6915) (xy 100.316379 78.671498) (xy 100.269886 78.617842) (xy 100.2585 78.5655) (xy 100.2585 78.438489) (xy 100.258499 78.438488) (xy 100.257331 78.423652) (xy 100.255562 78.401169) (xy 100.209145 78.241399) (xy 100.209143 78.241397) (xy 100.209143 78.241394) (xy 100.124455 78.098196) (xy 100.12445 78.098189) (xy 100.048478 78.022217) (xy 100.014452 77.959905) (xy 100.019517 77.88909) (xy 100.048478 77.844027) (xy 100.089152 77.803352) (xy 100.089158 77.803346) (xy 100.090942 77.800452) (xy 100.092683 77.798886) (xy 100.093708 77.797591) (xy 100.093929 77.797765) (xy 100.143719 77.752974) (xy 100.213793 77.741563) (xy 100.278911 77.769849) (xy 100.283766 77.774524) (xy 100.283837 77.774446) (xy 100.288743 77.778863) (xy 100.288746 77.778865) (xy 100.288747 77.778866) (xy 100.443248 77.891118) (xy 100.617712 77.968794) (xy 100.804513 78.0085) (xy 100.995487 78.0085) (xy 101.182288 77.968794) (xy 101.356752 77.891118) (xy 101.511253 77.778866) (xy 101.557527 77.727474) (xy 101.639034 77.636951) (xy 101.639035 77.636949) (xy 101.63904 77.636944) (xy 101.734527 77.471556) (xy 101.793542 77.289928) (xy 101.813504 77.1) (xy 101.793542 76.910072) (xy 101.734527 76.728444) (xy 101.719325 76.702113) (xy 101.716661 76.697499) (xy 101.699924 76.628504) (xy 101.723145 76.561412) (xy 101.778952 76.517525) (xy 101.825781 76.5085) (xy 105.36439 76.5085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 121.593225 74.875669) (xy 121.61548 74.901353) (xy 121.63946 74.938056) (xy 121.704275 75.037265) (xy 121.704279 75.03727) (xy 121.856762 75.202908) (xy 121.898911 75.235714) (xy 122.034424 75.341189) (xy 122.080471 75.366108) (xy 122.130859 75.416118) (xy 122.1465 75.47692) (xy 122.1465 79.623078) (xy 122.126498 79.691199) (xy 122.080471 79.733891) (xy 122.034426 79.75881) (xy 122.034424 79.758811) (xy 121.856762 79.897091) (xy 121.704279 80.062729) (xy 121.615183 80.199101) (xy 121.561179 80.245189) (xy 121.490831 80.254764) (xy 121.426474 80.224786) (xy 121.404217 80.1991) (xy 121.315327 80.063044) (xy 121.162902 79.897465) (xy 120.985301 79.759232) (xy 120.9853 79.759231) (xy 120.787371 79.652117) (xy 120.787368 79.652116) (xy 120.599939 79.587772) (xy 120.542004 79.546735) (xy 120.515452 79.48089) (xy 120.528713 79.411143) (xy 120.551753 79.379506) (xy 120.751491 79.179769) (xy 120.823555 79.071917) (xy 120.843547 79.023652) (xy 120.873193 78.952083) (xy 120.873193 78.95208) (xy 120.873195 78.952077) (xy 120.896064 78.837104) (xy 120.8985 78.824857) (xy 120.8985 75.463391) (xy 120.918502 75.39527) (xy 120.96453 75.352578) (xy 120.985576 75.341189) (xy 121.16324 75.202906) (xy 121.315722 75.037268) (xy 121.404518 74.901354) (xy 121.45852 74.855268) (xy 121.528868 74.845692) ) ) (filled_polygon (layer "F.Cu") (pts (xy 124.133225 74.875669) (xy 124.15548 74.901353) (xy 124.17946 74.938056) (xy 124.244275 75.037265) (xy 124.244279 75.03727) (xy 124.396762 75.202908) (xy 124.438911 75.235714) (xy 124.574424 75.341189) (xy 124.620471 75.366108) (xy 124.670859 75.416118) (xy 124.6865 75.47692) (xy 124.6865 79.623078) (xy 124.666498 79.691199) (xy 124.620471 79.733891) (xy 124.574426 79.75881) (xy 124.574424 79.758811) (xy 124.396762 79.897091) (xy 124.244279 80.062729) (xy 124.155483 80.198643) (xy 124.101479 80.244731) (xy 124.031131 80.254306) (xy 123.966774 80.224329) (xy 123.944517 80.198643) (xy 123.85572 80.062729) (xy 123.708154 79.902432) (xy 123.70324 79.897094) (xy 123.703239 79.897093) (xy 123.703237 79.897091) (xy 123.583372 79.803796) (xy 123.525576 79.758811) (xy 123.495675 79.742629) (xy 123.479529 79.733891) (xy 123.429139 79.683877) (xy 123.4135 79.623078) (xy 123.4135 75.47692) (xy 123.433502 75.408799) (xy 123.479527 75.366108) (xy 123.525576 75.341189) (xy 123.70324 75.202906) (xy 123.855722 75.037268) (xy 123.944518 74.901354) (xy 123.99852 74.855268) (xy 124.068868 74.845692) ) ) (filled_polygon (layer "F.Cu") (pts (xy 96.400572 76.528502) (xy 96.447065 76.582158) (xy 96.457169 76.652432) (xy 96.452055 76.674133) (xy 96.439932 76.710714) (xy 96.43993 76.710726) (xy 96.4295 76.812815) (xy 96.4295 76.846) (xy 97.603 76.846) (xy 97.671121 76.866002) (xy 97.717614 76.919658) (xy 97.729 76.972) (xy 97.729 77.228) (xy 97.708998 77.296121) (xy 97.655342 77.342614) (xy 97.603 77.354) (xy 96.4295 77.354) (xy 96.4295 77.387184) (xy 96.43993 77.489273) (xy 96.439931 77.489276) (xy 96.494748 77.654707) (xy 96.586237 77.803033) (xy 96.586242 77.803039) (xy 96.70946 77.926257) (xy 96.709466 77.926262) (xy 96.857792 78.017751) (xy 97.023223 78.072568) (xy 97.023226 78.072569) (xy 97.125315 78.082999) (xy 97.125315 78.083) (xy 97.219058 78.083) (xy 97.287179 78.103002) (xy 97.333672 78.156658) (xy 97.343776 78.226932) (xy 97.340055 78.244152) (xy 97.294438 78.401167) (xy 97.294437 78.401171) (xy 97.2915 78.438488) (xy 97.2915 78.5655) (xy 97.271498 78.633621) (xy 97.217842 78.680114) (xy 97.1655 78.6915) (xy 97.004239 78.6915) (xy 96.936118 78.671498) (xy 96.915148 78.654599) (xy 96.428627 78.168078) (xy 96.428625 78.168077) (xy 96.428623 78.168075) (xy 96.289877 78.08797) (xy 96.289874 78.087969) (xy 96.289873 78.087968) (xy 96.289871 78.087967) (xy 96.28987 78.087967) (xy 96.164691 78.054426) (xy 96.164691 78.054425) (xy 96.135111 78.0465) (xy 95.174951 78.0465) (xy 95.10683 78.026498) (xy 95.085856 78.009595) (xy 95.05681 77.980549) (xy 95.056803 77.980544) (xy 94.913605 77.895856) (xy 94.753829 77.849437) (xy 94.716511 77.8465) (xy 94.716502 77.8465) (xy 93.518239 77.8465) (xy 93.450118 77.826498) (xy 93.403625 77.772842) (xy 93.393521 77.702568) (xy 93.423015 77.637988) (xy 93.429144 77.631405) (xy 94.515144 76.545405) (xy 94.577456 76.511379) (xy 94.604239 76.5085) (xy 96.332451 76.5085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 127.263882 73.228502) (xy 127.284856 73.245405) (xy 128.626365 74.586915) (xy 128.62637 74.586919) (xy 128.626372 74.586921) (xy 128.626373 74.586922) (xy 128.626375 74.586923) (xy 128.680605 74.618233) (xy 128.765127 74.667032) (xy 128.765133 74.667033) (xy 128.765134 74.667034) (xy 128.820208 74.681791) (xy 128.820209 74.681791) (xy 128.919889 74.7085) (xy 128.91989 74.7085) (xy 129.08011 74.7085) (xy 130.195761 74.7085) (xy 130.263882 74.728502) (xy 130.284856 74.745405) (xy 130.336179 74.796728) (xy 130.370205 74.85904) (xy 130.36514 74.929855) (xy 130.354326 74.951969) (xy 130.307884 75.027263) (xy 130.252113 75.195572) (xy 130.252112 75.195579) (xy 130.2415 75.299446) (xy 130.2415 75.6405) (xy 130.221498 75.708621) (xy 130.167842 75.755114) (xy 130.1155 75.7665) (xy 127.514594 75.7665) (xy 127.446473 75.746498) (xy 127.425499 75.729595) (xy 126.587609 74.891705) (xy 126.553583 74.829393) (xy 126.558648 74.758578) (xy 126.561306 74.752021) (xy 126.609296 74.642616) (xy 126.664564 74.424368) (xy 126.683156 74.2) (xy 126.664564 73.975632) (xy 126.646575 73.904595) (xy 126.609297 73.757387) (xy 126.609296 73.757386) (xy 126.609296 73.757384) (xy 126.51886 73.551209) (xy 126.501103 73.52403) (xy 126.422302 73.403415) (xy 126.401789 73.335447) (xy 126.421278 73.267178) (xy 126.474583 73.220283) (xy 126.527785 73.2085) (xy 127.195761 73.2085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 50.573138 71.784429) (xy 50.573139 71.784429) (xy 50.65248 71.66299) (xy 50.732164 71.481328) (xy 50.777845 71.426979) (xy 50.845657 71.405955) (xy 50.861021 71.406663) (xy 50.901352 71.410999) (xy 50.901353 71.410999) (xy 50.901362 71.411) (xy 52.024125 71.411) (xy 52.092246 71.431002) (xy 52.126061 71.462939) (xy 52.240071 71.61986) (xy 52.380139 71.759928) (xy 52.413862 71.784429) (xy 52.540402 71.876366) (xy 52.716903 71.966298) (xy 52.9053 72.027512) (xy 53.100954 72.0585) (xy 53.100957 72.0585) (xy 53.299043 72.0585) (xy 53.299046 72.0585) (xy 53.4947 72.027512) (xy 53.534233 72.014666) (xy 53.573169 72.0085) (xy 58.5405 72.0085) (xy 58.608621 72.028502) (xy 58.655114 72.082158) (xy 58.6665 72.1345) (xy 58.6665 72.975552) (xy 58.666499 72.975552) (xy 58.677112 73.079421) (xy 58.677112 73.079423) (xy 58.677113 73.079425) (xy 58.717355 73.20087) (xy 58.719795 73.271823) (xy 58.683486 73.332833) (xy 58.619957 73.364528) (xy 58.59775 73.3665) (xy 58.033945 73.3665) (xy 57.965824 73.346498) (xy 57.919331 73.292842) (xy 57.908635 73.253671) (xy 57.893542 73.110072) (xy 57.882944 73.077456) (xy 57.834527 72.928444) (xy 57.73904 72.763056) (xy 57.739038 72.763054) (xy 57.739034 72.763048) (xy 57.611255 72.621135) (xy 57.456752 72.508882) (xy 57.282288 72.431206) (xy 57.095487 72.3915) (xy 56.904513 72.3915) (xy 56.717711 72.431206) (xy 56.543247 72.508882) (xy 56.388744 72.621135) (xy 56.260965 72.763048) (xy 56.260958 72.763058) (xy 56.165476 72.928438) (xy 56.165473 72.928445) (xy 56.106457 73.110072) (xy 56.086496 73.3) (xy 56.106457 73.489927) (xy 56.127415 73.554426) (xy 56.165473 73.671556) (xy 56.167498 73.675064) (xy 56.260958 73.836941) (xy 56.260965 73.836951) (xy 56.388744 73.978864) (xy 56.388747 73.978866) (xy 56.543248 74.091118) (xy 56.717712 74.168794) (xy 56.904513 74.2085) (xy 56.960406 74.2085) (xy 57.028527 74.228502) (xy 57.049501 74.245405) (xy 57.130501 74.326405) (xy 57.164527 74.388717) (xy 57.159462 74.459532) (xy 57.116915 74.516368) (xy 57.050395 74.541179) (xy 57.041406 74.5415) (xy 51.183412 74.5415) (xy 51.115291 74.521498) (xy 51.068798 74.467842) (xy 51.058694 74.397568) (xy 51.081474 74.341441) (xy 51.154657 74.240715) (xy 51.255308 74.043176) (xy 51.323818 73.832324) (xy 51.3585 73.613351) (xy 51.3585 73.391649) (xy 51.323818 73.172676) (xy 51.255308 72.961824) (xy 51.154657 72.764285) (xy 51.081111 72.663058) (xy 51.024341 72.584921) (xy 50.867578 72.428158) (xy 50.688218 72.297845) (xy 50.688217 72.297844) (xy 50.688215 72.297843) (xy 50.490676 72.197192) (xy 50.490673 72.197191) (xy 50.490671 72.19719) (xy 50.279823 72.128681) (xy 50.279824 72.128681) (xy 50.224188 72.119869) (xy 50.160036 72.089456) (xy 50.154806 72.084516) (xy 49.516123 71.445833) (xy 49.605694 71.421833) (xy 49.708306 71.36259) (xy 49.79209 71.278806) (xy 49.851333 71.176194) (xy 49.875333 71.086623) ) ) (filled_polygon (layer "F.Cu") (pts (xy 153.329119 62.403502) (xy 153.350093 62.420405) (xy 156.379595 65.449906) (xy 156.413621 65.512218) (xy 156.4165 65.539001) (xy 156.4165 71.282292) (xy 156.396498 71.350413) (xy 156.342842 71.396906) (xy 156.334534 71.400347) (xy 156.203795 71.449111) (xy 156.203792 71.449112) (xy 156.086738 71.536738) (xy 155.999112 71.653792) (xy 155.99911 71.653797) (xy 155.948011 71.790795) (xy 155.948009 71.790803) (xy 155.9415 71.85135) (xy 155.9415 73.265981) (xy 155.921498 73.334102) (xy 155.867842 73.380595) (xy 155.8155 73.391981) (xy 154.05472 73.391981) (xy 153.986599 73.371979) (xy 153.965625 73.355076) (xy 153.945404 73.334855) (xy 153.911378 73.272543) (xy 153.908499 73.24576) (xy 153.908499 72.849455) (xy 153.897887 72.745574) (xy 153.881365 72.695714) (xy 153.842115 72.577262) (xy 153.74903 72.426348) (xy 153.749029 72.426347) (xy 153.749024 72.426341) (xy 153.623658 72.300975) (xy 153.623652 72.30097) (xy 153.608299 72.2915) (xy 153.472738 72.207885) (xy 153.388582 72.179999) (xy 153.304427 72.152113) (xy 153.30442 72.152112) (xy 153.200553 72.1415) (xy 153.200545 72.1415) (xy 152.754239 72.1415) (xy 152.686118 72.121498) (xy 152.665144 72.104595) (xy 152.195405 71.634856) (xy 152.161379 71.572544) (xy 152.1585 71.545761) (xy 152.1585 71.351367) (xy 152.158499 71.35135) (xy 152.15199 71.290803) (xy 152.151988 71.290795) (xy 152.109107 71.175829) (xy 152.100889 71.153796) (xy 152.100888 71.153794) (xy 152.100887 71.153792) (xy 152.013261 71.036738) (xy 151.896207 70.949112) (xy 151.896202 70.94911) (xy 151.759204 70.898011) (xy 151.759196 70.898009) (xy 151.698649 70.8915) (xy 151.698638 70.8915) (xy 150.50424 70.8915) (xy 150.436119 70.871498) (xy 150.415145 70.854596) (xy 150.380207 70.819658) (xy 150.323628 70.763079) (xy 150.155306 70.594757) (xy 150.12128 70.532445) (xy 150.126345 70.46163) (xy 150.168892 70.404794) (xy 150.218203 70.382415) (xy 150.282288 70.368794) (xy 150.456752 70.291118) (xy 150.611253 70.178866) (xy 150.613247 70.176652) (xy 150.739032 70.036953) (xy 150.739032 70.036952) (xy 150.73904 70.036944) (xy 150.739045 70.036934) (xy 150.740128 70.035445) (xy 150.740986 70.034782) (xy 150.743459 70.032037) (xy 150.74396 70.032488) (xy 150.796348 69.992088) (xy 150.842069 69.9835) (xy 153.624893 69.9835) (xy 153.624894 69.9835) (xy 153.747285 69.959155) (xy 153.862575 69.9114) (xy 153.966333 69.842071) (xy 154.287999 69.520403) (xy 154.350312 69.486379) (xy 154.377095 69.483499) (xy 154.712212 69.483499) (xy 154.814381 69.473062) (xy 154.97992 69.418209) (xy 155.128346 69.326658) (xy 155.251658 69.203346) (xy 155.343209 69.05492) (xy 155.398062 68.889381) (xy 155.4085 68.787213) (xy 155.408499 68.212788) (xy 155.408078 68.208671) (xy 155.398062 68.110619) (xy 155.39322 68.096007) (xy 155.343209 67.94508) (xy 155.251658 67.796654) (xy 155.168743 67.713739) (xy 155.13472 67.65143) (xy 155.139784 67.580614) (xy 155.168745 67.53555) (xy 155.251262 67.453033) (xy 155.342751 67.304707) (xy 155.397568 67.139276) (xy 155.397569 67.139273) (xy 155.407999 67.037184) (xy 155.408 67.037184) (xy 155.408 67.004) (xy 154.2345 67.004) (xy 154.166379 66.983998) (xy 154.119886 66.930342) (xy 154.1085 66.878) (xy 154.1085 66.496) (xy 154.6165 66.496) (xy 155.408 66.496) (xy 155.408 66.462815) (xy 155.397569 66.360726) (xy 155.397568 66.360723) (xy 155.342751 66.195292) (xy 155.251262 66.046966) (xy 155.251257 66.04696) (xy 155.128039 65.923742) (xy 155.128033 65.923737) (xy 154.979707 65.832248) (xy 154.814276 65.777431) (xy 154.814273 65.77743) (xy 154.712184 65.767) (xy 154.6165 65.767) (xy 154.6165 66.496) (xy 154.1085 66.496) (xy 154.1085 65.767) (xy 154.012815 65.767) (xy 153.910726 65.77743) (xy 153.910723 65.777431) (xy 153.745292 65.832248) (xy 153.596966 65.923737) (xy 153.589445 65.931258) (xy 153.527131 65.965281) (xy 153.456316 65.960213) (xy 153.411256 65.931252) (xy 153.403346 65.923342) (xy 153.25492 65.831791) (xy 153.089381 65.776938) (xy 153.089379 65.776937) (xy 153.089377 65.776937) (xy 152.987221 65.7665) (xy 152.287787 65.7665) (xy 152.185619 65.776937) (xy 152.020079 65.831791) (xy 151.871653 65.923342) (xy 151.871647 65.923347) (xy 151.748347 66.046647) (xy 151.748342 66.046653) (xy 151.656791 66.19508) (xy 151.601937 66.360622) (xy 151.5915 66.462778) (xy 151.5915 67.037212) (xy 151.601937 67.13938) (xy 151.656791 67.30492) (xy 151.748342 67.453346) (xy 151.748347 67.453352) (xy 151.8309 67.535905) (xy 151.864926 67.598217) (xy 151.859861 67.669032) (xy 151.8309 67.714095) (xy 151.748347 67.796647) (xy 151.74834 67.796656) (xy 151.726757 67.831648) (xy 151.673971 67.879126) (xy 151.619517 67.8915) (xy 149.519885 67.8915) (xy 149.491786 67.899029) (xy 149.491787 67.89903) (xy 149.365127 67.932968) (xy 149.365122 67.93297) (xy 149.226375 68.013076) (xy 149.226365 68.013084) (xy 148.513083 68.726366) (xy 148.513075 68.726376) (xy 148.43297 68.865122) (xy 148.432965 68.865134) (xy 148.422596 68.903832) (xy 148.422597 68.903833) (xy 148.396026 69.003) (xy 148.3915 69.01989) (xy 148.3915 69.818629) (xy 148.371498 69.88675) (xy 148.317842 69.933243) (xy 148.278968 69.943907) (xy 148.240803 69.948009) (xy 148.240795 69.948011) (xy 148.103797 69.99911) (xy 148.103792 69.999112) (xy 147.986738 70.086738) (xy 147.899112 70.203792) (xy 147.89911 70.203797) (xy 147.848011 70.340795) (xy 147.848009 70.340803) (xy 147.8415 70.40135) (xy 147.8415 71.298649) (xy 147.848009 71.359196) (xy 147.848011 71.359204) (xy 147.89911 71.496202) (xy 147.899112 71.496207) (xy 147.986738 71.613261) (xy 148.101448 71.699132) (xy 148.143995 71.755968) (xy 148.149059 71.826784) (xy 148.115034 71.889096) (xy 148.101448 71.900868) (xy 147.986738 71.986738) (xy 147.899112 72.103792) (xy 147.89911 72.103797) (xy 147.848011 72.240795) (xy 147.848009 72.240803) (xy 147.8415 72.30135) (xy 147.8415 72.7655) (xy 147.821498 72.833621) (xy 147.767842 72.880114) (xy 147.7155 72.8915) (xy 143.0845 72.8915) (xy 143.016379 72.871498) (xy 142.969886 72.817842) (xy 142.9585 72.7655) (xy 142.9585 71.873694) (xy 142.978502 71.805573) (xy 142.995399 71.784604) (xy 143.061261 71.718742) (xy 143.123569 71.68472) (xy 143.194385 71.689784) (xy 143.239448 71.718745) (xy 143.34696 71.826257) (xy 143.346966 71.826262) (xy 143.495292 71.917751) (xy 143.660723 71.972568) (xy 143.660726 71.972569) (xy 143.762815 71.982999) (xy 143.762815 71.983) (xy 143.8085 71.983) (xy 144.3165 71.983) (xy 144.362185 71.983) (xy 144.362184 71.982999) (xy 144.464273 71.972569) (xy 144.464276 71.972568) (xy 144.629707 71.917751) (xy 144.778033 71.826262) (xy 144.778039 71.826257) (xy 144.901257 71.703039) (xy 144.901262 71.703033) (xy 144.992751 71.554707) (xy 145.047568 71.389276) (xy 145.047569 71.389273) (xy 145.057999 71.287184) (xy 145.058 71.287184) (xy 145.058 71.254) (xy 144.3165 71.254) (xy 144.3165 71.983) (xy 143.8085 71.983) (xy 143.8085 70.872) (xy 143.828502 70.803879) (xy 143.882158 70.757386) (xy 143.9345 70.746) (xy 145.058 70.746) (xy 145.058 70.712815) (xy 145.047569 70.610726) (xy 145.047567 70.610714) (xy 145.035071 70.573004) (xy 145.03263 70.502049) (xy 145.068938 70.441039) (xy 145.132467 70.409344) (xy 145.141865 70.408023) (xy 145.239381 70.398062) (xy 145.40492 70.343209) (xy 145.553346 70.251658) (xy 145.676658 70.128346) (xy 145.768209 69.97992) (xy 145.823062 69.814381) (xy 145.8335 69.712213) (xy 145.833499 69.137788) (xy 145.829609 69.099713) (xy 145.823062 69.035619) (xy 145.795717 68.953096) (xy 145.768209 68.87008) (xy 145.676658 68.721654) (xy 145.676657 68.721653) (xy 145.676652 68.721647) (xy 145.553352 68.598347) (xy 145.553346 68.598342) (xy 145.512815 68.573342) (xy 145.40492 68.506791) (xy 145.239381 68.451938) (xy 145.239379 68.451937) (xy 145.239377 68.451937) (xy 145.146692 68.442467) (xy 145.080957 68.415644) (xy 145.040159 68.357541) (xy 145.0335 68.31712) (xy 145.0335 65.96989) (xy 145.030862 65.960044) (xy 144.992032 65.815128) (xy 144.984254 65.801656) (xy 144.971815 65.780111) (xy 144.971814 65.78011) (xy 144.911922 65.676373) (xy 144.911919 65.67637) (xy 144.911916 65.676366) (xy 144.670404 65.434854) (xy 144.636378 65.372542) (xy 144.633499 65.345759) (xy 144.633499 64.949455) (xy 144.622887 64.845574) (xy 144.599498 64.774989) (xy 144.567115 64.677262) (xy 144.47403 64.526348) (xy 144.474029 64.526347) (xy 144.474024 64.526341) (xy 144.348658 64.400975) (xy 144.34865 64.400968) (xy 144.293352 64.36686) (xy 144.245875 64.314074) (xy 144.2335 64.25962) (xy 144.2335 63.34489) (xy 144.225525 63.315128) (xy 144.203998 63.234785) (xy 144.202297 63.228438) (xy 144.192034 63.190134) (xy 144.192033 63.190133) (xy 144.192032 63.190127) (xy 144.161331 63.136951) (xy 144.111923 63.051375) (xy 144.111918 63.051369) (xy 143.888987 62.828438) (xy 143.659142 62.598593) (xy 143.625119 62.536283) (xy 143.630183 62.465468) (xy 143.67273 62.408632) (xy 143.73925 62.383821) (xy 143.748239 62.3835) (xy 153.260998 62.3835) ) ) (filled_polygon (layer "F.Cu") (pts (xy 130.063882 62.478502) (xy 130.084856 62.495405) (xy 131.054595 63.465144) (xy 131.088621 63.527456) (xy 131.0915 63.554239) (xy 131.0915 64.30962) (xy 131.071498 64.377741) (xy 131.031648 64.41686) (xy 130.976349 64.450968) (xy 130.976341 64.450975) (xy 130.850975 64.576341) (xy 130.85097 64.576347) (xy 130.757885 64.727262) (xy 130.702113 64.895572) (xy 130.702112 64.895579) (xy 130.6915 64.999446) (xy 130.6915 65.600544) (xy 130.702112 65.704425) (xy 130.757885 65.872738) (xy 130.85097 66.023652) (xy 130.850975 66.023658) (xy 130.976341 66.149024) (xy 130.976347 66.149029) (xy 130.976348 66.14903) (xy 131.127262 66.242115) (xy 131.295574 66.297887) (xy 131.399455 66.3085) (xy 131.7905 66.308499) (xy 131.85862 66.328501) (xy 131.905113 66.382156) (xy 131.9165 66.434499) (xy 131.9165 67.928) (xy 131.896498 67.996121) (xy 131.842842 68.042614) (xy 131.7905 68.054) (xy 130.692 68.054) (xy 130.692 68.100516) (xy 130.702605 68.204318) (xy 130.702606 68.204322) (xy 130.736771 68.307426) (xy 130.739211 68.378381) (xy 130.702903 68.439391) (xy 130.639374 68.471086) (xy 130.629971 68.472407) (xy 130.585619 68.476937) (xy 130.420079 68.531791) (xy 130.408674 68.538826) (xy 130.400144 68.544087) (xy 130.331667 68.562824) (xy 130.263928 68.541565) (xy 130.218436 68.487058) (xy 130.207999 68.436846) (xy 130.207999 68.246043) (xy 130.205065 68.208749) (xy 130.158681 68.049099) (xy 130.074051 67.905998) (xy 130.07405 67.905996) (xy 129.956503 67.788449) (xy 129.956501 67.788448) (xy 129.813401 67.703818) (xy 129.654 67.657507) (xy 129.654 69.028) (xy 129.633998 69.096121) (xy 129.580342 69.142614) (xy 129.528 69.154) (xy 128.592001 69.154) (xy 128.592001 69.553956) (xy 128.594934 69.59125) (xy 128.641318 69.7509) (xy 128.688926 69.831401) (xy 128.706385 69.900217) (xy 128.683868 69.967549) (xy 128.628524 70.012018) (xy 128.567667 70.020888) (xy 128.524714 70.0165) (xy 128.524713 70.0165) (xy 128.32309 70.0165) (xy 128.254969 69.996498) (xy 128.208476 69.942842) (xy 128.198372 69.872568) (xy 128.214637 69.826361) (xy 128.259143 69.751105) (xy 128.259143 69.751103) (xy 128.259145 69.751101) (xy 128.305562 69.591331) (xy 128.308499 69.554011) (xy 128.3085 69.554011) (xy 128.3085 68.397) (xy 128.328502 68.328879) (xy 128.382158 68.282386) (xy 128.4345 68.271) (xy 128.466 68.271) (xy 128.534121 68.291002) (xy 128.580614 68.344658) (xy 128.592 68.397) (xy 128.592 68.646) (xy 129.146 68.646) (xy 129.146 68.017342) (xy 129.163547 67.953202) (xy 129.16624 67.948649) (xy 129.209145 67.876101) (xy 129.255562 67.716331) (xy 129.258499 67.679011) (xy 129.2585 67.679011) (xy 129.2585 67.499483) (xy 130.692 67.499483) (xy 130.692 67.546) (xy 131.446 67.546) (xy 131.446 66.792) (xy 131.399483 66.792) (xy 131.295681 66.802605) (xy 131.295678 66.802606) (xy 131.127474 66.858342) (xy 130.97666 66.951365) (xy 130.976654 66.95137) (xy 130.85137 67.076654) (xy 130.851365 67.07666) (xy 130.758342 67.227474) (xy 130.702606 67.395678) (xy 130.702605 67.395681) (xy 130.692 67.499483) (xy 129.2585 67.499483) (xy 129.2585 66.370989) (xy 129.258499 66.370988) (xy 129.257691 66.360726) (xy 129.255562 66.333669) (xy 129.209145 66.173899) (xy 129.209143 66.173896) (xy 129.207278 66.167475) (xy 129.207481 66.096478) (xy 129.246035 66.036862) (xy 129.3107 66.007554) (xy 129.315463 66.006974) (xy 129.404426 65.997887) (xy 129.572738 65.942115) (xy 129.723652 65.84903) (xy 129.84903 65.723652) (xy 129.942115 65.572738) (xy 129.997887 65.404426) (xy 130.0085 65.300545) (xy 130.008499 64.699456) (xy 130.002224 64.638034) (xy 129.997887 64.595574) (xy 129.991514 64.576341) (xy 129.942115 64.427262) (xy 129.84903 64.276348) (xy 129.849029 64.276347) (xy 129.849024 64.276341) (xy 129.723658 64.150975) (xy 129.72365 64.150968) (xy 129.668352 64.11686) (xy 129.620875 64.064074) (xy 129.6085 64.00962) (xy 129.6085 62.91989) (xy 129.608499 62.919886) (xy 129.605448 62.9085) (xy 129.567032 62.765128) (xy 129.499118 62.647499) (xy 129.482381 62.578505) (xy 129.505601 62.511413) (xy 129.561408 62.467526) (xy 129.608238 62.4585) (xy 129.995761 62.4585) ) ) (filled_polygon (layer "F.Cu") (pts (xy 142.263882 62.928502) (xy 142.284856 62.945405) (xy 142.979595 63.640144) (xy 143.013621 63.702456) (xy 143.0165 63.729239) (xy 143.0165 64.25962) (xy 142.996498 64.327741) (xy 142.956648 64.36686) (xy 142.901349 64.400968) (xy 142.901341 64.400975) (xy 142.775975 64.526341) (xy 142.77597 64.526347) (xy 142.682885 64.677262) (xy 142.627113 64.845572) (xy 142.627112 64.845579) (xy 142.6165 64.949446) (xy 142.6165 65.550544) (xy 142.627112 65.654425) (xy 142.682885 65.822738) (xy 142.77597 65.973652) (xy 142.775975 65.973658) (xy 142.901341 66.099024) (xy 142.901347 66.099029) (xy 142.901348 66.09903) (xy 143.052262 66.192115) (xy 143.220574 66.247887) (xy 143.324455 66.2585) (xy 143.6905 66.258499) (xy 143.75862 66.278501) (xy 143.805113 66.332156) (xy 143.8165 66.384499) (xy 143.8165 67.878) (xy 143.796498 67.946121) (xy 143.742842 67.992614) (xy 143.6905 68.004) (xy 142.617 68.004) (xy 142.617 68.050516) (xy 142.627605 68.154318) (xy 142.627606 68.154325) (xy 142.675154 68.297816) (xy 142.677594 68.36877) (xy 142.641285 68.42978) (xy 142.595182 68.457052) (xy 142.445082 68.506789) (xy 142.400146 68.534507) (xy 142.331666 68.553244) (xy 142.263927 68.531985) (xy 142.218436 68.477477) (xy 142.207999 68.427266) (xy 142.207999 68.296043) (xy 142.205065 68.258749) (xy 142.158681 68.099099) (xy 142.074051 67.955998) (xy 142.07405 67.955996) (xy 141.956503 67.838449) (xy 141.956501 67.838448) (xy 141.813401 67.753818) (xy 141.654 67.707507) (xy 141.654 69.078) (xy 141.633998 69.146121) (xy 141.580342 69.192614) (xy 141.528 69.204) (xy 140.592001 69.204) (xy 140.592001 69.603956) (xy 140.594934 69.64125) (xy 140.641318 69.800901) (xy 140.656376 69.826363) (xy 140.673834 69.895179) (xy 140.651316 69.96251) (xy 140.595971 70.006978) (xy 140.547921 70.0165) (xy 140.352659 70.0165) (xy 140.284538 69.996498) (xy 140.238045 69.942842) (xy 140.227941 69.872568) (xy 140.244206 69.826361) (xy 140.259145 69.801101) (xy 140.305562 69.641331) (xy 140.308499 69.604011) (xy 140.3085 69.604011) (xy 140.3085 68.447) (xy 140.328502 68.378879) (xy 140.382158 68.332386) (xy 140.4345 68.321) (xy 140.466 68.321) (xy 140.534121 68.341002) (xy 140.580614 68.394658) (xy 140.592 68.447) (xy 140.592 68.696) (xy 141.146 68.696) (xy 141.146 68.067342) (xy 141.163547 68.003202) (xy 141.209145 67.926101) (xy 141.255562 67.766331) (xy 141.258499 67.729011) (xy 141.2585 67.729011) (xy 141.2585 67.449483) (xy 142.617 67.449483) (xy 142.617 67.496) (xy 143.371 67.496) (xy 143.371 66.742) (xy 143.324483 66.742) (xy 143.220681 66.752605) (xy 143.220678 66.752606) (xy 143.052474 66.808342) (xy 142.90166 66.901365) (xy 142.901654 66.90137) (xy 142.77637 67.026654) (xy 142.776365 67.02666) (xy 142.683342 67.177474) (xy 142.627606 67.345678) (xy 142.627605 67.345681) (xy 142.617 67.449483) (xy 141.2585 67.449483) (xy 141.2585 66.420989) (xy 141.258499 66.420988) (xy 141.255562 66.383671) (xy 141.255562 66.38367) (xy 141.255122 66.382156) (xy 141.209145 66.223899) (xy 141.209142 66.223894) (xy 141.148567 66.121467) (xy 141.131108 66.052651) (xy 141.153625 65.985319) (xy 141.190873 65.950088) (xy 141.273652 65.89903) (xy 141.39903 65.773652) (xy 141.492115 65.622738) (xy 141.547887 65.454426) (xy 141.5585 65.350545) (xy 141.558499 64.749456) (xy 141.558102 64.745574) (xy 141.547887 64.645574) (xy 141.536603 64.611521) (xy 141.492115 64.477262) (xy 141.39903 64.326348) (xy 141.399029 64.326347) (xy 141.399024 64.326341) (xy 141.273658 64.200975) (xy 141.27365 64.200968) (xy 141.218352 64.16686) (xy 141.170875 64.114074) (xy 141.1585 64.05962) (xy 141.1585 63.0345) (xy 141.178502 62.966379) (xy 141.232158 62.919886) (xy 141.2845 62.9085) (xy 142.195761 62.9085) ) ) (filled_polygon (layer "F.Cu") (pts (xy 118.688882 62.628502) (xy 118.709856 62.645405) (xy 119.229595 63.165144) (xy 119.263621 63.227456) (xy 119.2665 63.254239) (xy 119.2665 64.25962) (xy 119.246498 64.327741) (xy 119.206648 64.36686) (xy 119.151349 64.400968) (xy 119.151341 64.400975) (xy 119.025975 64.526341) (xy 119.02597 64.526347) (xy 118.932885 64.677262) (xy 118.877113 64.845572) (xy 118.877112 64.845579) (xy 118.8665 64.949446) (xy 118.8665 65.550544) (xy 118.877112 65.654425) (xy 118.932885 65.822738) (xy 119.02597 65.973652) (xy 119.025975 65.973658) (xy 119.151341 66.099024) (xy 119.151347 66.099029) (xy 119.151348 66.09903) (xy 119.302262 66.192115) (xy 119.470574 66.247887) (xy 119.574455 66.2585) (xy 119.9405 66.258499) (xy 120.00862 66.278501) (xy 120.055113 66.332156) (xy 120.0665 66.384499) (xy 120.0665 67.878) (xy 120.046498 67.946121) (xy 119.992842 67.992614) (xy 119.9405 68.004) (xy 118.860425 68.004) (xy 118.812593 68.030117) (xy 118.741777 68.025051) (xy 118.684943 67.982503) (xy 118.677358 67.971135) (xy 118.624051 67.880997) (xy 118.506503 67.763449) (xy 118.506501 67.763448) (xy 118.363401 67.678818) (xy 118.204 67.632507) (xy 118.204 69.003) (xy 118.183998 69.071121) (xy 118.130342 69.117614) (xy 118.078 69.129) (xy 117.142001 69.129) (xy 117.142001 69.528956) (xy 117.144934 69.56625) (xy 117.191318 69.7259) (xy 117.213768 69.763861) (xy 117.231227 69.832677) (xy 117.20871 69.900009) (xy 117.153365 69.944478) (xy 117.105314 69.954) (xy 116.895267 69.954) (xy 116.827146 69.933998) (xy 116.780653 69.880342) (xy 116.770549 69.810068) (xy 116.786814 69.76386) (xy 116.791744 69.755524) (xy 116.809145 69.726101) (xy 116.855562 69.566331) (xy 116.858499 69.529011) (xy 116.8585 69.529011) (xy 116.8585 68.372) (xy 116.878502 68.303879) (xy 116.932158 68.257386) (xy 116.9845 68.246) (xy 117.016 68.246) (xy 117.084121 68.266002) (xy 117.130614 68.319658) (xy 117.142 68.372) (xy 117.142 68.621) (xy 117.696 68.621) (xy 117.696 67.992342) (xy 117.713547 67.928202) (xy 117.759145 67.851101) (xy 117.805562 67.691331) (xy 117.8085 67.654002) (xy 117.8085 67.449483) (xy 118.867 67.449483) (xy 118.867 67.496) (xy 119.621 67.496) (xy 119.621 66.742) (xy 119.574483 66.742) (xy 119.470681 66.752605) (xy 119.470678 66.752606) (xy 119.302474 66.808342) (xy 119.15166 66.901365) (xy 119.151654 66.90137) (xy 119.02637 67.026654) (xy 119.026365 67.02666) (xy 118.933342 67.177474) (xy 118.877606 67.345678) (xy 118.877605 67.345681) (xy 118.867 67.449483) (xy 117.8085 67.449483) (xy 117.8085 66.345998) (xy 117.8085 66.345989) (xy 117.808499 66.345988) (xy 117.807529 66.333669) (xy 117.805562 66.308669) (xy 117.76217 66.159311) (xy 117.762373 66.088316) (xy 117.800927 66.0287) (xy 117.865592 65.999392) (xy 117.870364 65.998812) (xy 117.879426 65.997887) (xy 118.047738 65.942115) (xy 118.198652 65.84903) (xy 118.32403 65.723652) (xy 118.417115 65.572738) (xy 118.472887 65.404426) (xy 118.4835 65.300545) (xy 118.483499 64.699456) (xy 118.477224 64.638034) (xy 118.472887 64.595574) (xy 118.466514 64.576341) (xy 118.417115 64.427262) (xy 118.32403 64.276348) (xy 118.324029 64.276347) (xy 118.324024 64.276341) (xy 118.198658 64.150975) (xy 118.198653 64.150971) (xy 118.198652 64.15097) (xy 118.16835 64.132279) (xy 118.120874 64.079493) (xy 118.1085 64.02504) (xy 118.1085 63.01989) (xy 118.107224 63.015127) (xy 118.067032 62.865128) (xy 118.027987 62.7975) (xy 118.011249 62.728504) (xy 118.03447 62.661413) (xy 118.090277 62.617526) (xy 118.137106 62.6085) (xy 118.620761 62.6085) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "cc716bd0-4abf-43b4-b162-4586fc1a08aa") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 43.875 106.375) (xy 38.025 106.375) (xy 38.025 98) (xy 43.875 98) ) ) ) (zone (net 0) (net_name "") (layer "F.Cu") (uuid "e98c5fb5-05de-4f33-a9fa-564d621425e6") (hatch edge 0.508) (connect_pads (clearance 0) ) (min_thickness 0.254) (filled_areas_thickness no) (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed) ) (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) ) (polygon (pts (xy 54.225 106.175) (xy 44.6 106.175) (xy 44.6 103.225) (xy 54.225 103.225) ) ) ) (zone (net 2) (net_name "GND") (layer "B.Cu") (uuid "66c5ea37-6f67-4eed-aa1a-903e0782e941") (hatch edge 0.508) (connect_pads (clearance 0.508) ) (min_thickness 0.254) (filled_areas_thickness no) (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 7) ) (polygon (pts (xy 172.5 135.5) (xy 37.5 135.5) (xy 37.5 54) (xy 172.5 54) ) ) (filled_polygon (layer "B.Cu") (pts (xy 167.502748 54.50062) (xy 167.886661 54.517382) (xy 167.89761 54.518339) (xy 168.275883 54.56814) (xy 168.286699 54.570048) (xy 168.659184 54.652626) (xy 168.669802 54.655471) (xy 169.033668 54.770197) (xy 169.043997 54.773956) (xy 169.396494 54.919965) (xy 169.406456 54.924611) (xy 169.744875 55.100781) (xy 169.754378 55.106267) (xy 170.076174 55.311274) (xy 170.085166 55.31757) (xy 170.387863 55.549839) (xy 170.396283 55.556904) (xy 170.67757 55.814656) (xy 170.685343 55.822429) (xy 170.943095 56.103716) (xy 170.95016 56.112136) (xy 171.182429 56.414833) (xy 171.188728 56.423829) (xy 171.284163 56.573631) (xy 171.393727 56.745613) (xy 171.399222 56.755131) (xy 171.419202 56.793513) (xy 171.575388 57.093543) (xy 171.580034 57.103505) (xy 171.726043 57.456002) (xy 171.729802 57.466331) (xy 171.844528 57.830197) (xy 171.847373 57.840815) (xy 171.92995 58.213296) (xy 171.931859 58.224121) (xy 171.981659 58.602388) (xy 171.982617 58.613338) (xy 171.99938 58.997251) (xy 171.9995 59.002747) (xy 171.9995 130.497252) (xy 171.99938 130.502748) (xy 171.982617 130.886661) (xy 171.981659 130.897611) (xy 171.931859 131.275878) (xy 171.92995 131.286703) (xy 171.847373 131.659184) (xy 171.844528 131.669802) (xy 171.729802 132.033668) (xy 171.726043 132.043997) (xy 171.580034 132.396494) (xy 171.575388 132.406456) (xy 171.399223 132.744866) (xy 171.393727 132.754386) (xy 171.188734 133.076162) (xy 171.182429 133.085166) (xy 170.95016 133.387863) (xy 170.943095 133.396283) (xy 170.685343 133.67757) (xy 170.67757 133.685343) (xy 170.396283 133.943095) (xy 170.387863 133.95016) (xy 170.085166 134.182429) (xy 170.076162 134.188734) (xy 169.754386 134.393727) (xy 169.744866 134.399223) (xy 169.406456 134.575388) (xy 169.396494 134.580034) (xy 169.043997 134.726043) (xy 169.033668 134.729802) (xy 168.669802 134.844528) (xy 168.659184 134.847373) (xy 168.286703 134.92995) (xy 168.275878 134.931859) (xy 167.897611 134.981659) (xy 167.886661 134.982617) (xy 167.502748 134.99938) (xy 167.497252 134.9995) (xy 42.502748 134.9995) (xy 42.497252 134.99938) (xy 42.113338 134.982617) (xy 42.102388 134.981659) (xy 41.724121 134.931859) (xy 41.713296 134.92995) (xy 41.340815 134.847373) (xy 41.330197 134.844528) (xy 40.966331 134.729802) (xy 40.956002 134.726043) (xy 40.603505 134.580034) (xy 40.593543 134.575388) (xy 40.255133 134.399223) (xy 40.245613 134.393727) (xy 40.244105 134.392766) (xy 39.923829 134.188728) (xy 39.914833 134.182429) (xy 39.612136 133.95016) (xy 39.603716 133.943095) (xy 39.322429 133.685343) (xy 39.314656 133.67757) (xy 39.056904 133.396283) (xy 39.049839 133.387863) (xy 38.81757 133.085166) (xy 38.811274 133.076174) (xy 38.606267 132.754378) (xy 38.600781 132.744875) (xy 38.424611 132.406456) (xy 38.419965 132.396494) (xy 38.273956 132.043997) (xy 38.270197 132.033668) (xy 38.202756 131.819773) (xy 38.15547 131.6698) (xy 38.152626 131.659184) (xy 38.137749 131.592077) (xy 38.070048 131.286699) (xy 38.06814 131.275878) (xy 38.066957 131.266896) (xy 38.018339 130.89761) (xy 38.017382 130.886661) (xy 38.012387 130.772268) (xy 38.004148 130.583548) (xy 38.00062 130.502748) (xy 38.0005 130.497252) (xy 38.0005 111.900833) (xy 38.020502 111.832712) (xy 38.074158 111.786219) (xy 38.144432 111.776115) (xy 38.209012 111.805609) (xy 38.231983 111.831918) (xy 38.294275 111.927265) (xy 38.294279 111.92727) (xy 38.446762 112.092908) (xy 38.480597 112.119243) (xy 38.624424 112.231189) (xy 38.822426 112.338342) (xy 38.822427 112.338342) (xy 38.822428 112.338343) (xy 38.90609 112.367064) (xy 39.035365 112.411444) (xy 39.257431 112.4485) (xy 39.257435 112.4485) (xy 39.482565 112.4485) (xy 39.482569 112.4485) (xy 39.704635 112.411444) (xy 39.917574 112.338342) (xy 40.115576 112.231189) (xy 40.29324 112.092906) (xy 40.445722 111.927268) (xy 40.534518 111.791354) (xy 40.58852 111.745268) (xy 40.658868 111.735692) (xy 40.723225 111.765669) (xy 40.74548 111.791353) (xy 40.768055 111.825906) (xy 40.834275 111.927265) (xy 40.834279 111.92727) (xy 40.986762 112.092908) (xy 41.020597 112.119243) (xy 41.164424 112.231189) (xy 41.362426 112.338342) (xy 41.362427 112.338342) (xy 41.362428 112.338343) (xy 41.44609 112.367064) (xy 41.575365 112.411444) (xy 41.797431 112.4485) (xy 41.797435 112.4485) (xy 42.022565 112.4485) (xy 42.022569 112.4485) (xy 42.244635 112.411444) (xy 42.457574 112.338342) (xy 42.655576 112.231189) (xy 42.83324 112.092906) (xy 42.894626 112.026222) (xy 42.955476 111.989654) (xy 43.026441 111.991787) (xy 43.084986 112.031949) (xy 43.10538 112.067529) (xy 43.149553 112.185961) (xy 43.149555 112.185965) (xy 43.237095 112.302904) (xy 43.354034 112.390444) (xy 43.490906 112.441494) (xy 43.551402 112.447999) (xy 43.551415 112.448) (xy 44.196 112.448) (xy 44.196 111.53225) (xy 44.253147 111.565245) (xy 44.382857 111.6) (xy 44.517143 111.6) (xy 44.646853 111.565245) (xy 44.704 111.53225) (xy 44.704 112.448) (xy 45.348585 112.448) (xy 45.348597 112.447999) (xy 45.409093 112.441494) (xy 45.545964 112.390444) (xy 45.545965 112.390444) (xy 45.662904 112.302904) (xy 45.750444 112.185965) (xy 45.794618 112.06753) (xy 45.837165 112.010694) (xy 45.903685 111.985883) (xy 45.973059 112.000974) (xy 46.005372 112.026222) (xy 46.066685 112.092824) (xy 46.066762 112.092908) (xy 46.100597 112.119243) (xy 46.244424 112.231189) (xy 46.442426 112.338342) (xy 46.442427 112.338342) (xy 46.442428 112.338343) (xy 46.52609 112.367064) (xy 46.655365 112.411444) (xy 46.877431 112.4485) (xy 46.877435 112.4485) (xy 47.102565 112.4485) (xy 47.102569 112.4485) (xy 47.324635 112.411444) (xy 47.537574 112.338342) (xy 47.735576 112.231189) (xy 47.91324 112.092906) (xy 48.065722 111.927268) (xy 48.154518 111.791354) (xy 48.20852 111.745268) (xy 48.278868 111.735692) (xy 48.343225 111.765669) (xy 48.36548 111.791353) (xy 48.388055 111.825906) (xy 48.454275 111.927265) (xy 48.454279 111.92727) (xy 48.606762 112.092908) (xy 48.784421 112.231187) (xy 48.784424 112.231189) (xy 48.855469 112.269636) (xy 48.905859 112.319648) (xy 48.9215 112.380449) (xy 48.9215 114.510114) (xy 48.92991 114.541498) (xy 48.92991 114.5415) (xy 48.929911 114.5415) (xy 48.962967 114.66487) (xy 48.96297 114.664877) (xy 49.043075 114.803623) (xy 49.043083 114.803633) (xy 51.426366 117.186916) (xy 51.426371 117.18692) (xy 51.426373 117.186922) (xy 51.519771 117.240845) (xy 51.565128 117.267032) (xy 51.719889 117.3085) (xy 51.71989 117.3085) (xy 51.88011 117.3085) (xy 56.095761 117.3085) (xy 56.163882 117.328502) (xy 56.184856 117.345405) (xy 57.040856 118.201405) (xy 57.074882 118.263717) (xy 57.069817 118.334532) (xy 57.02727 118.391368) (xy 56.96075 118.416179) (xy 56.951761 118.4165) (xy 56.40135 118.4165) (xy 56.340803 118.423009) (xy 56.340795 118.423011) (xy 56.203797 118.47411) (xy 56.203792 118.474112) (xy 56.086738 118.561738) (xy 55.999112 118.678792) (xy 55.99911 118.678797) (xy 55.948011 118.815795) (xy 55.948009 118.815803) (xy 55.9415 118.87635) (xy 55.9415 120.220761) (xy 55.921498 120.288882) (xy 55.904595 120.309856) (xy 55.759856 120.454595) (xy 55.697544 120.488621) (xy 55.670761 120.4915) (xy 44.156 120.4915) (xy 44.087879 120.471498) (xy 44.041386 120.417842) (xy 44.03 120.3655) (xy 44.03 120.154) (xy 43.102703 120.154) (xy 43.137925 120.092993) (xy 43.172 119.965826) (xy 43.172 119.834174) (xy 43.137925 119.707007) (xy 43.102703 119.646) (xy 44.03 119.646) (xy 44.03 119.001414) (xy 44.029999 119.001402) (xy 44.023494 118.940906) (xy 43.972444 118.804035) (xy 43.972444 118.804034) (xy 43.884904 118.687095) (xy 43.767965 118.599555) (xy 43.631093 118.548505) (xy 43.570597 118.542) (xy 42.926 118.542) (xy 42.926 119.469297) (xy 42.864993 119.434075) (xy 42.737826 119.4) (xy 42.606174 119.4) (xy 42.479007 119.434075) (xy 42.418 119.469297) (xy 42.418 118.542) (xy 41.773402 118.542) (xy 41.712906 118.548505) (xy 41.576035 118.599555) (xy 41.576034 118.599555) (xy 41.459095 118.687095) (xy 41.371555 118.804034) (xy 41.371555 118.804035) (xy 41.320505 118.940906) (xy 41.314 119.001402) (xy 41.314 119.646) (xy 42.241297 119.646) (xy 42.206075 119.707007) (xy 42.172 119.834174) (xy 42.172 119.965826) (xy 42.206075 120.092993) (xy 42.241297 120.154) (xy 41.314 120.154) (xy 41.314 120.798597) (xy 41.320505 120.859093) (xy 41.371555 120.995964) (xy 41.371555 120.995965) (xy 41.416401 121.055871) (xy 41.441212 121.122391) (xy 41.426121 121.191765) (xy 41.404629 121.220475) (xy 41.03508 121.590024) (xy 41.035075 121.59003) (xy 40.954969 121.728777) (xy 40.954967 121.728782) (xy 40.95156 121.7415) (xy 40.946711 121.759598) (xy 40.916728 121.871498) (xy 40.9135 121.883544) (xy 40.9135 123.910111) (xy 40.933226 123.983734) (xy 40.954965 124.064865) (xy 40.95497 124.064877) (xy 41.035075 124.203623) (xy 41.035077 124.203625) (xy 41.035078 124.203627) (xy 41.329277 124.497826) (xy 41.363301 124.560137) (xy 41.362326 124.61785) (xy 41.327436 124.755628) (xy 41.315302 124.902065) (xy 41.308844 124.98) (xy 41.325531 125.181383) (xy 41.327437 125.204375) (xy 41.382702 125.422612) (xy 41.382703 125.422613) (xy 41.382704 125.422616) (xy 41.47314 125.628791) (xy 41.473141 125.628793) (xy 41.550098 125.746585) (xy 41.570611 125.814553) (xy 41.551122 125.882822) (xy 41.497817 125.929717) (xy 41.444615 125.9415) (xy 41.32495 125.9415) (xy 41.256829 125.921498) (xy 41.235855 125.904595) (xy 40.395405 125.064145) (xy 40.361379 125.001833) (xy 40.3585 124.97505) (xy 40.3585 118.924949) (xy 40.378502 118.856828) (xy 40.395405 118.835854) (xy 42.035854 117.195405) (xy 42.098166 117.161379) (xy 42.124949 117.1585) (xy 46.319776 117.1585) (xy 46.387897 117.178502) (xy 46.393834 117.182562) (xy 46.543248 117.291118) (xy 46.717712 117.368794) (xy 46.904513 117.4085) (xy 47.095487 117.4085) (xy 47.282288 117.368794) (xy 47.456752 117.291118) (xy 47.611253 117.178866) (xy 47.614905 117.17481) (xy 47.739034 117.036951) (xy 47.739035 117.036949) (xy 47.73904 117.036944) (xy 47.834527 116.871556) (xy 47.893542 116.689928) (xy 47.913504 116.5) (xy 47.893542 116.310072) (xy 47.834527 116.128444) (xy 47.73904 115.963056) (xy 47.739038 115.963054) (xy 47.739034 115.963048) (xy 47.611255 115.821135) (xy 47.456752 115.708882) (xy 47.282288 115.631206) (xy 47.095487 115.5915) (xy 46.904513 115.5915) (xy 46.717711 115.631206) (xy 46.543247 115.708882) (xy 46.393837 115.817436) (xy 46.326969 115.841294) (xy 46.319776 115.8415) (xy 41.735139 115.8415) (xy 41.607922 115.866806) (xy 41.607919 115.866807) (xy 41.488083 115.916445) (xy 41.380231 115.988509) (xy 41.380225 115.988514) (xy 39.188513 118.180226) (xy 39.188508 118.180232) (xy 39.133152 118.263077) (xy 39.133153 118.263078) (xy 39.116444 118.288084) (xy 39.066807 118.407919) (xy 39.066806 118.407922) (xy 39.0415 118.535139) (xy 39.0415 125.36486) (xy 39.066806 125.492077) (xy 39.066807 125.49208) (xy 39.085721 125.537742) (xy 39.116445 125.611917) (xy 39.188509 125.719769) (xy 40.580231 127.111491) (xy 40.688083 127.183555) (xy 40.807923 127.233195) (xy 40.807927 127.233195) (xy 40.807928 127.233196) (xy 40.807929 127.233197) (xy 40.914035 127.254301) (xy 40.914041 127.254302) (xy 40.935143 127.2585) (xy 40.935144 127.2585) (xy 41.064857 127.2585) (xy 44.27505 127.2585) (xy 44.343171 127.278502) (xy 44.364145 127.295405) (xy 45.905143 128.836402) (xy 47.42351 130.354769) (xy 47.515231 130.44649) (xy 47.623083 130.518555) (xy 47.742923 130.568194) (xy 47.870143 130.5935) (xy 56.039295 130.5935) (xy 56.107416 130.613502) (xy 56.144778 130.650585) (xy 56.224275 130.772264) (xy 56.224279 130.77227) (xy 56.376762 130.937908) (xy 56.409767 130.963597) (xy 56.554424 131.076189) (xy 56.752426 131.183342) (xy 56.752427 131.183342) (xy 56.752428 131.183343) (xy 56.846099 131.2155) (xy 56.965365 131.256444) (xy 57.187431 131.2935) (xy 57.187435 131.2935) (xy 57.412565 131.2935) (xy 57.412569 131.2935) (xy 57.634635 131.256444) (xy 57.774588 131.208397) (xy 57.845512 131.205198) (xy 57.906908 131.24085) (xy 57.939282 131.304035) (xy 57.9415 131.327571) (xy 57.9415 131.46486) (xy 57.966806 131.592077) (xy 57.966807 131.59208) (xy 58.016445 131.711917) (xy 58.088509 131.819769) (xy 58.780231 132.511491) (xy 58.852938 132.560072) (xy 58.852937 132.560072) (xy 58.888078 132.583552) (xy 58.88808 132.583553) (xy 58.888083 132.583555) (xy 59.007923 132.633194) (xy 59.135143 132.6585) (xy 64.663428 132.6585) (xy 64.731549 132.678502) (xy 64.778042 132.732158) (xy 64.788738 132.77133) (xy 64.806457 132.939927) (xy 64.816736 132.971561) (xy 64.865473 133.121556) (xy 64.865476 133.121561) (xy 64.960958 133.286941) (xy 64.960965 133.286951) (xy 65.088744 133.428864) (xy 65.088747 133.428866) (xy 65.243248 133.541118) (xy 65.417712 133.618794) (xy 65.604513 133.6585) (xy 65.695761 133.6585) (xy 65.763882 133.678502) (xy 65.784851 133.6954) (xy 66.025884 133.936433) (xy 66.025885 133.936434) (xy 66.025887 133.936435) (xy 66.123415 133.992743) (xy 66.164638 134.016543) (xy 66.242019 134.037277) (xy 66.3194 134.058011) (xy 66.319401 134.058011) (xy 97.480599 134.058011) (xy 97.4806 134.058011) (xy 97.55798 134.037277) (xy 97.635362 134.016543) (xy 97.774116 133.936433) (xy 98.165145 133.545403) (xy 98.227456 133.51138) (xy 98.254239 133.5085) (xy 98.345487 133.5085) (xy 98.532288 133.468794) (xy 98.706752 133.391118) (xy 98.861253 133.278866) (xy 98.861255 133.278864) (xy 98.989034 133.136951) (xy 98.989035 133.136949) (xy 98.98904 133.136944) (xy 99.084527 132.971556) (xy 99.143542 132.789928) (xy 99.163504 132.6) (xy 99.152994 132.5) (xy 151.449837 132.5) (xy 151.46846 132.736632) (xy 151.523871 132.967437) (xy 151.614708 133.186738) (xy 151.729396 133.37389) (xy 151.729397 133.37389) (xy 152.437516 132.665771) (xy 152.449982 132.712292) (xy 152.52239 132.837708) (xy 152.624792 132.94011) (xy 152.750208 133.012518) (xy 152.796726 133.024982) (xy 152.088607 133.733101) (xy 152.088608 133.733102) (xy 152.275761 133.847791) (xy 152.495062 133.938628) (xy 152.725867 133.994039) (xy 152.9625 134.012662) (xy 153.199132 133.994039) (xy 153.429937 133.938628) (xy 153.649238 133.847791) (xy 153.83639 133.733102) (xy 153.836391 133.733102) (xy 153.128272 133.024982) (xy 153.174792 133.012518) (xy 153.300208 132.94011) (xy 153.40261 132.837708) (xy 153.475018 132.712292) (xy 153.487483 132.665772) (xy 154.195602 133.373891) (xy 154.195602 133.37389) (xy 154.310291 133.186738) (xy 154.401128 132.967437) (xy 154.456539 132.736632) (xy 154.475162 132.5) (xy 157.949837 132.5) (xy 157.96846 132.736632) (xy 158.023871 132.967437) (xy 158.114708 133.186738) (xy 158.229396 133.37389) (xy 158.229397 133.37389) (xy 158.937516 132.665771) (xy 158.949982 132.712292) (xy 159.02239 132.837708) (xy 159.124792 132.94011) (xy 159.250208 133.012518) (xy 159.296726 133.024982) (xy 158.588607 133.733101) (xy 158.588608 133.733102) (xy 158.775761 133.847791) (xy 158.995062 133.938628) (xy 159.225867 133.994039) (xy 159.4625 134.012662) (xy 159.699132 133.994039) (xy 159.929937 133.938628) (xy 160.149238 133.847791) (xy 160.33639 133.733102) (xy 160.336391 133.733102) (xy 159.628272 133.024982) (xy 159.674792 133.012518) (xy 159.800208 132.94011) (xy 159.90261 132.837708) (xy 159.975018 132.712292) (xy 159.987482 132.665772) (xy 160.695602 133.373891) (xy 160.695602 133.37389) (xy 160.810291 133.186738) (xy 160.901128 132.967437) (xy 160.956539 132.736632) (xy 160.975162 132.5) (xy 160.956539 132.263367) (xy 160.901128 132.032562) (xy 160.810291 131.813261) (xy 160.695602 131.626108) (xy 160.695601 131.626107) (xy 159.987482 132.334225) (xy 159.975018 132.287708) (xy 159.90261 132.162292) (xy 159.800208 132.05989) (xy 159.674792 131.987482) (xy 159.628271 131.975016) (xy 160.33639 131.266897) (xy 160.33639 131.266896) (xy 160.149238 131.152208) (xy 159.929937 131.061371) (xy 159.699132 131.00596) (xy 159.4625 130.987337) (xy 159.225867 131.00596) (xy 158.995062 131.061371) (xy 158.775766 131.152206) (xy 158.588608 131.266897) (xy 158.588608 131.266898) (xy 159.296727 131.975017) (xy 159.250208 131.987482) (xy 159.124792 132.05989) (xy 159.02239 132.162292) (xy 158.949982 132.287708) (xy 158.937517 132.334227) (xy 158.229398 131.626108) (xy 158.229397 131.626108) (xy 158.114706 131.813266) (xy 158.023871 132.032562) (xy 157.96846 132.263367) (xy 157.949837 132.5) (xy 154.475162 132.5) (xy 154.456539 132.263367) (xy 154.401128 132.032562) (xy 154.310291 131.813261) (xy 154.195602 131.626108) (xy 154.195601 131.626107) (xy 153.487482 132.334226) (xy 153.475018 132.287708) (xy 153.40261 132.162292) (xy 153.300208 132.05989) (xy 153.174792 131.987482) (xy 153.128271 131.975016) (xy 153.83639 131.266897) (xy 153.83639 131.266896) (xy 153.649238 131.152208) (xy 153.429937 131.061371) (xy 153.199132 131.00596) (xy 152.9625 130.987337) (xy 152.725867 131.00596) (xy 152.495062 131.061371) (xy 152.275766 131.152206) (xy 152.088608 131.266897) (xy 152.088608 131.266898) (xy 152.796727 131.975017) (xy 152.750208 131.987482) (xy 152.624792 132.05989) (xy 152.52239 132.162292) (xy 152.449982 132.287708) (xy 152.437517 132.334227) (xy 151.729398 131.626108) (xy 151.729397 131.626108) (xy 151.614706 131.813266) (xy 151.523871 132.032562) (xy 151.46846 132.263367) (xy 151.449837 132.5) (xy 99.152994 132.5) (xy 99.143542 132.410072) (xy 99.084527 132.228444) (xy 98.98904 132.063056) (xy 98.989038 132.063054) (xy 98.989034 132.063048) (xy 98.861255 131.921135) (xy 98.704814 131.807474) (xy 98.66146 131.751252) (xy 98.655297 131.680956) (xy 98.6585 131.664857) (xy 98.6585 127.72495) (xy 98.678502 127.656829) (xy 98.695405 127.635855) (xy 99.235855 127.095405) (xy 99.298167 127.061379) (xy 99.32495 127.0585) (xy 104.636881 127.0585) (xy 104.705002 127.078502) (xy 104.751495 127.132158) (xy 104.761599 127.202432) (xy 104.741646 127.254502) (xy 104.670606 127.36082) (xy 104.610265 127.506497) (xy 104.610263 127.506502) (xy 104.5795 127.661155) (xy 104.5795 127.818844) (xy 104.610263 127.973497) (xy 104.610265 127.973502) (xy 104.63938 128.043793) (xy 104.670606 128.119179) (xy 104.758211 128.250289) (xy 104.758213 128.250291) (xy 104.817767 128.309845) (xy 104.851793 128.372157) (xy 104.846728 128.442972) (xy 104.804181 128.499808) (xy 104.785875 128.511207) (xy 104.660125 128.575279) (xy 104.485222 128.702355) (xy 104.485219 128.702357) (xy 104.332354 128.855222) (xy 104.211936 129.020964) (xy 104.155713 129.064318) (xy 104.084977 129.070393) (xy 104.022186 129.037261) (xy 104.008064 129.020964) (xy 103.887645 128.855222) (xy 103.73478 128.702357) (xy 103.734777 128.702355) (xy 103.734775 128.702353) (xy 103.559871 128.575278) (xy 103.367241 128.477128) (xy 103.36724 128.477127) (xy 103.367239 128.477127) (xy 103.161632 128.410321) (xy 103.161629 128.41032) (xy 102.948097 128.3765) (xy 102.731903 128.3765) (xy 102.518371 128.41032) (xy 102.518368 128.41032) (xy 102.518367 128.410321) (xy 102.31276 128.477127) (xy 102.120125 128.57528) (xy 101.945224 128.702353) (xy 101.860867 128.78671) (xy 101.798555 128.820735) (xy 101.727739 128.815669) (xy 101.670903 128.773122) (xy 101.653716 128.741646) (xy 101.615444 128.639034) (xy 101.527904 128.522095) (xy 101.410965 128.434555) (xy 101.274093 128.383505) (xy 101.213597 128.377) (xy 100.554 128.377) (xy 100.554 129.457749) (xy 100.496853 129.424755) (xy 100.367143 129.39) (xy 100.232857 129.39) (xy 100.103147 129.424755) (xy 100.046 129.457749) (xy 100.046 128.377) (xy 99.386402 128.377) (xy 99.325906 128.383505) (xy 99.189035 128.434555) (xy 99.189034 128.434555) (xy 99.072095 128.522095) (xy 98.984555 128.639034) (xy 98.984555 128.639035) (xy 98.933505 128.775906) (xy 98.927 128.836402) (xy 98.927 129.646) (xy 99.857749 129.646) (xy 99.824755 129.703147) (xy 99.79 129.832857) (xy 99.79 129.967143) (xy 99.824755 130.096853) (xy 99.857749 130.154) (xy 98.927 130.154) (xy 98.927 130.963597) (xy 98.933505 131.024093) (xy 98.984555 131.160964) (xy 98.984555 131.160965) (xy 99.072095 131.277904) (xy 99.189034 131.365444) (xy 99.325906 131.416494) (xy 99.386402 131.422999) (xy 99.386415 131.423) (xy 100.046 131.423) (xy 100.046 130.34225) (xy 100.103147 130.375245) (xy 100.232857 130.41) (xy 100.367143 130.41) (xy 100.496853 130.375245) (xy 100.554 130.34225) (xy 100.554 131.423) (xy 101.213585 131.423) (xy 101.213597 131.422999) (xy 101.274093 131.416494) (xy 101.410964 131.365444) (xy 101.410965 131.365444) (xy 101.527904 131.277904) (xy 101.615444 131.160965) (xy 101.653716 131.058353) (xy 101.696263 131.001517) (xy 101.762783 130.976706) (xy 101.832157 130.991797) (xy 101.860867 131.01329) (xy 101.945219 131.097642) (xy 101.945222 131.097644) (xy 101.945225 131.097647) (xy 102.120129 131.224722) (xy 102.312759 131.322872) (xy 102.518371 131.38968) (xy 102.731903 131.4235) (xy 102.731906 131.4235) (xy 102.948094 131.4235) (xy 102.948097 131.4235) (xy 103.161629 131.38968) (xy 103.367241 131.322872) (xy 103.559871 131.224722) (xy 103.734775 131.097647) (xy 103.887647 130.944775) (xy 104.008064 130.779035) (xy 104.064286 130.735681) (xy 104.135022 130.729606) (xy 104.197814 130.762737) (xy 104.211936 130.779035) (xy 104.332353 130.944775) (xy 104.332355 130.944777) (xy 104.332357 130.94478) (xy 104.485219 131.097642) (xy 104.485222 131.097644) (xy 104.485225 131.097647) (xy 104.660129 131.224722) (xy 104.852759 131.322872) (xy 105.058371 131.38968) (xy 105.271903 131.4235) (xy 105.271906 131.4235) (xy 105.488094 131.4235) (xy 105.488097 131.4235) (xy 105.701629 131.38968) (xy 105.907241 131.322872) (xy 106.099871 131.224722) (xy 106.274775 131.097647) (xy 106.427647 130.944775) (xy 106.548064 130.779035) (xy 106.604286 130.735681) (xy 106.675022 130.729606) (xy 106.737814 130.762737) (xy 106.751936 130.779035) (xy 106.872353 130.944775) (xy 106.872355 130.944777) (xy 106.872357 130.94478) (xy 107.025219 131.097642) (xy 107.025222 131.097644) (xy 107.025225 131.097647) (xy 107.200129 131.224722) (xy 107.392759 131.322872) (xy 107.598371 131.38968) (xy 107.811903 131.4235) (xy 107.811906 131.4235) (xy 108.028094 131.4235) (xy 108.028097 131.4235) (xy 108.241629 131.38968) (xy 108.447241 131.322872) (xy 108.639871 131.224722) (xy 108.814775 131.097647) (xy 108.967647 130.944775) (xy 109.094722 130.769871) (xy 109.192872 130.577241) (xy 109.25968 130.371629) (xy 109.2935 130.158097) (xy 109.2935 129.641903) (xy 109.25968 129.428371) (xy 109.192872 129.222759) (xy 109.094722 129.030129) (xy 108.967647 128.855225) (xy 108.967644 128.855222) (xy 108.967642 128.855219) (xy 108.81478 128.702357) (xy 108.814777 128.702355) (xy 108.814775 128.702353) (xy 108.639871 128.575278) (xy 108.447241 128.477128) (xy 108.44724 128.477127) (xy 108.447239 128.477127) (xy 108.241632 128.410321) (xy 108.241629 128.41032) (xy 108.028097 128.3765) (xy 107.811903 128.3765) (xy 107.598371 128.41032) (xy 107.598368 128.41032) (xy 107.598367 128.410321) (xy 107.39276 128.477127) (xy 107.200125 128.57528) (xy 107.025222 128.702355) (xy 107.025219 128.702357) (xy 106.872354 128.855222) (xy 106.751936 129.020964) (xy 106.695713 129.064318) (xy 106.624977 129.070393) (xy 106.562186 129.037261) (xy 106.548064 129.020964) (xy 106.427645 128.855222) (xy 106.27478 128.702357) (xy 106.274777 128.702355) (xy 106.274775 128.702353) (xy 106.099871 128.575278) (xy 105.974123 128.511206) (xy 105.922509 128.462459) (xy 105.905443 128.393544) (xy 105.928344 128.326342) (xy 105.942221 128.309856) (xy 106.001789 128.250289) (xy 106.089394 128.119179) (xy 106.149737 127.973497) (xy 106.1805 127.818842) (xy 106.1805 127.661158) (xy 106.149737 127.506503) (xy 106.089394 127.360821) (xy 106.018354 127.254502) (xy 105.997139 127.186749) (xy 106.015922 127.118282) (xy 106.068739 127.070839) (xy 106.123119 127.0585) (xy 116.236881 127.0585) (xy 116.305002 127.078502) (xy 116.351495 127.132158) (xy 116.361599 127.202432) (xy 116.341646 127.254502) (xy 116.270606 127.36082) (xy 116.210265 127.506497) (xy 116.210263 127.506502) (xy 116.1795 127.661155) (xy 116.1795 127.818844) (xy 116.210263 127.973497) (xy 116.210265 127.973502) (xy 116.23938 128.043793) (xy 116.270606 128.119179) (xy 116.358211 128.250289) (xy 116.358213 128.250291) (xy 116.417767 128.309845) (xy 116.451793 128.372157) (xy 116.446728 128.442972) (xy 116.404181 128.499808) (xy 116.385875 128.511207) (xy 116.260125 128.575279) (xy 116.085222 128.702355) (xy 116.085219 128.702357) (xy 115.932354 128.855222) (xy 115.811936 129.020964) (xy 115.755713 129.064318) (xy 115.684977 129.070393) (xy 115.622186 129.037261) (xy 115.608064 129.020964) (xy 115.487645 128.855222) (xy 115.33478 128.702357) (xy 115.334777 128.702355) (xy 115.334775 128.702353) (xy 115.159871 128.575278) (xy 114.967241 128.477128) (xy 114.96724 128.477127) (xy 114.967239 128.477127) (xy 114.761632 128.410321) (xy 114.761629 128.41032) (xy 114.548097 128.3765) (xy 114.331903 128.3765) (xy 114.118371 128.41032) (xy 114.118368 128.41032) (xy 114.118367 128.410321) (xy 113.91276 128.477127) (xy 113.720125 128.57528) (xy 113.545224 128.702353) (xy 113.460867 128.78671) (xy 113.398555 128.820735) (xy 113.327739 128.815669) (xy 113.270903 128.773122) (xy 113.253716 128.741646) (xy 113.215444 128.639034) (xy 113.127904 128.522095) (xy 113.010965 128.434555) (xy 112.874093 128.383505) (xy 112.813597 128.377) (xy 112.154 128.377) (xy 112.154 129.457749) (xy 112.096853 129.424755) (xy 111.967143 129.39) (xy 111.832857 129.39) (xy 111.703147 129.424755) (xy 111.646 129.457749) (xy 111.646 128.377) (xy 110.986402 128.377) (xy 110.925906 128.383505) (xy 110.789035 128.434555) (xy 110.789034 128.434555) (xy 110.672095 128.522095) (xy 110.584555 128.639034) (xy 110.584555 128.639035) (xy 110.533505 128.775906) (xy 110.527 128.836402) (xy 110.527 129.646) (xy 111.457749 129.646) (xy 111.424755 129.703147) (xy 111.39 129.832857) (xy 111.39 129.967143) (xy 111.424755 130.096853) (xy 111.457749 130.154) (xy 110.527 130.154) (xy 110.527 130.963597) (xy 110.533505 131.024093) (xy 110.584555 131.160964) (xy 110.584555 131.160965) (xy 110.672095 131.277904) (xy 110.789034 131.365444) (xy 110.925906 131.416494) (xy 110.986402 131.422999) (xy 110.986415 131.423) (xy 111.646 131.423) (xy 111.646 130.34225) (xy 111.703147 130.375245) (xy 111.832857 130.41) (xy 111.967143 130.41) (xy 112.096853 130.375245) (xy 112.154 130.34225) (xy 112.154 131.423) (xy 112.813585 131.423) (xy 112.813597 131.422999) (xy 112.874093 131.416494) (xy 113.010964 131.365444) (xy 113.010965 131.365444) (xy 113.127904 131.277904) (xy 113.215444 131.160965) (xy 113.253716 131.058353) (xy 113.296263 131.001517) (xy 113.362783 130.976706) (xy 113.432157 130.991797) (xy 113.460867 131.01329) (xy 113.545219 131.097642) (xy 113.545222 131.097644) (xy 113.545225 131.097647) (xy 113.720129 131.224722) (xy 113.912759 131.322872) (xy 114.118371 131.38968) (xy 114.331903 131.4235) (xy 114.331906 131.4235) (xy 114.548094 131.4235) (xy 114.548097 131.4235) (xy 114.761629 131.38968) (xy 114.967241 131.322872) (xy 115.159871 131.224722) (xy 115.334775 131.097647) (xy 115.487647 130.944775) (xy 115.608064 130.779035) (xy 115.664286 130.735681) (xy 115.735022 130.729606) (xy 115.797814 130.762737) (xy 115.811936 130.779035) (xy 115.932353 130.944775) (xy 115.932355 130.944777) (xy 115.932357 130.94478) (xy 116.085219 131.097642) (xy 116.085222 131.097644) (xy 116.085225 131.097647) (xy 116.260129 131.224722) (xy 116.452759 131.322872) (xy 116.658371 131.38968) (xy 116.871903 131.4235) (xy 116.871906 131.4235) (xy 117.088094 131.4235) (xy 117.088097 131.4235) (xy 117.301629 131.38968) (xy 117.507241 131.322872) (xy 117.699871 131.224722) (xy 117.874775 131.097647) (xy 118.027647 130.944775) (xy 118.148064 130.779035) (xy 118.204286 130.735681) (xy 118.275022 130.729606) (xy 118.337814 130.762737) (xy 118.351936 130.779035) (xy 118.472353 130.944775) (xy 118.472355 130.944777) (xy 118.472357 130.94478) (xy 118.625219 131.097642) (xy 118.625222 131.097644) (xy 118.625225 131.097647) (xy 118.800129 131.224722) (xy 118.992759 131.322872) (xy 119.198371 131.38968) (xy 119.411903 131.4235) (xy 119.411906 131.4235) (xy 119.628094 131.4235) (xy 119.628097 131.4235) (xy 119.841629 131.38968) (xy 120.047241 131.322872) (xy 120.239871 131.224722) (xy 120.414775 131.097647) (xy 120.567647 130.944775) (xy 120.694722 130.769871) (xy 120.792872 130.577241) (xy 120.85968 130.371629) (xy 120.8935 130.158097) (xy 120.8935 129.641903) (xy 120.85968 129.428371) (xy 120.792872 129.222759) (xy 120.694722 129.030129) (xy 120.567647 128.855225) (xy 120.567644 128.855222) (xy 120.567642 128.855219) (xy 120.41478 128.702357) (xy 120.414777 128.702355) (xy 120.414775 128.702353) (xy 120.239871 128.575278) (xy 120.047241 128.477128) (xy 120.04724 128.477127) (xy 120.047239 128.477127) (xy 119.841632 128.410321) (xy 119.841629 128.41032) (xy 119.628097 128.3765) (xy 119.411903 128.3765) (xy 119.198371 128.41032) (xy 119.198368 128.41032) (xy 119.198367 128.410321) (xy 118.99276 128.477127) (xy 118.800125 128.57528) (xy 118.625222 128.702355) (xy 118.625219 128.702357) (xy 118.472354 128.855222) (xy 118.351936 129.020964) (xy 118.295713 129.064318) (xy 118.224977 129.070393) (xy 118.162186 129.037261) (xy 118.148064 129.020964) (xy 118.027645 128.855222) (xy 117.87478 128.702357) (xy 117.874777 128.702355) (xy 117.874775 128.702353) (xy 117.699871 128.575278) (xy 117.574123 128.511206) (xy 117.522509 128.462459) (xy 117.505443 128.393544) (xy 117.528344 128.326342) (xy 117.542221 128.309856) (xy 117.601789 128.250289) (xy 117.689394 128.119179) (xy 117.749737 127.973497) (xy 117.7805 127.818842) (xy 117.7805 127.661158) (xy 117.749737 127.506503) (xy 117.689394 127.360821) (xy 117.618354 127.254502) (xy 117.597139 127.186749) (xy 117.615922 127.118282) (xy 117.668739 127.070839) (xy 117.723119 127.0585) (xy 127.736881 127.0585) (xy 127.805002 127.078502) (xy 127.851495 127.132158) (xy 127.861599 127.202432) (xy 127.841646 127.254502) (xy 127.770606 127.36082) (xy 127.710265 127.506497) (xy 127.710263 127.506502) (xy 127.6795 127.661155) (xy 127.6795 127.818844) (xy 127.710263 127.973497) (xy 127.710265 127.973502) (xy 127.73938 128.043793) (xy 127.770606 128.119179) (xy 127.858211 128.250289) (xy 127.858213 128.250291) (xy 127.917767 128.309845) (xy 127.951793 128.372157) (xy 127.946728 128.442972) (xy 127.904181 128.499808) (xy 127.885875 128.511207) (xy 127.760125 128.575279) (xy 127.585222 128.702355) (xy 127.585219 128.702357) (xy 127.432354 128.855222) (xy 127.311936 129.020964) (xy 127.255713 129.064318) (xy 127.184977 129.070393) (xy 127.122186 129.037261) (xy 127.108064 129.020964) (xy 126.987645 128.855222) (xy 126.83478 128.702357) (xy 126.834777 128.702355) (xy 126.834775 128.702353) (xy 126.659871 128.575278) (xy 126.467241 128.477128) (xy 126.46724 128.477127) (xy 126.467239 128.477127) (xy 126.261632 128.410321) (xy 126.261629 128.41032) (xy 126.048097 128.3765) (xy 125.831903 128.3765) (xy 125.618371 128.41032) (xy 125.618368 128.41032) (xy 125.618367 128.410321) (xy 125.41276 128.477127) (xy 125.220125 128.57528) (xy 125.045224 128.702353) (xy 124.960867 128.78671) (xy 124.898555 128.820735) (xy 124.827739 128.815669) (xy 124.770903 128.773122) (xy 124.753716 128.741646) (xy 124.715444 128.639034) (xy 124.627904 128.522095) (xy 124.510965 128.434555) (xy 124.374093 128.383505) (xy 124.313597 128.377) (xy 123.654 128.377) (xy 123.654 129.457749) (xy 123.596853 129.424755) (xy 123.467143 129.39) (xy 123.332857 129.39) (xy 123.203147 129.424755) (xy 123.146 129.457749) (xy 123.146 128.377) (xy 122.486402 128.377) (xy 122.425906 128.383505) (xy 122.289035 128.434555) (xy 122.289034 128.434555) (xy 122.172095 128.522095) (xy 122.084555 128.639034) (xy 122.084555 128.639035) (xy 122.033505 128.775906) (xy 122.027 128.836402) (xy 122.027 129.646) (xy 122.957749 129.646) (xy 122.924755 129.703147) (xy 122.89 129.832857) (xy 122.89 129.967143) (xy 122.924755 130.096853) (xy 122.957749 130.154) (xy 122.027 130.154) (xy 122.027 130.963597) (xy 122.033505 131.024093) (xy 122.084555 131.160964) (xy 122.084555 131.160965) (xy 122.172095 131.277904) (xy 122.289034 131.365444) (xy 122.425906 131.416494) (xy 122.486402 131.422999) (xy 122.486415 131.423) (xy 123.146 131.423) (xy 123.146 130.34225) (xy 123.203147 130.375245) (xy 123.332857 130.41) (xy 123.467143 130.41) (xy 123.596853 130.375245) (xy 123.654 130.34225) (xy 123.654 131.423) (xy 124.313585 131.423) (xy 124.313597 131.422999) (xy 124.374093 131.416494) (xy 124.510964 131.365444) (xy 124.510965 131.365444) (xy 124.627904 131.277904) (xy 124.715444 131.160965) (xy 124.753716 131.058353) (xy 124.796263 131.001517) (xy 124.862783 130.976706) (xy 124.932157 130.991797) (xy 124.960867 131.01329) (xy 125.045219 131.097642) (xy 125.045222 131.097644) (xy 125.045225 131.097647) (xy 125.220129 131.224722) (xy 125.412759 131.322872) (xy 125.618371 131.38968) (xy 125.831903 131.4235) (xy 125.831906 131.4235) (xy 126.048094 131.4235) (xy 126.048097 131.4235) (xy 126.261629 131.38968) (xy 126.467241 131.322872) (xy 126.659871 131.224722) (xy 126.834775 131.097647) (xy 126.987647 130.944775) (xy 127.108064 130.779035) (xy 127.164286 130.735681) (xy 127.235022 130.729606) (xy 127.297814 130.762737) (xy 127.311936 130.779035) (xy 127.432353 130.944775) (xy 127.432355 130.944777) (xy 127.432357 130.94478) (xy 127.585219 131.097642) (xy 127.585222 131.097644) (xy 127.585225 131.097647) (xy 127.760129 131.224722) (xy 127.952759 131.322872) (xy 128.158371 131.38968) (xy 128.371903 131.4235) (xy 128.371906 131.4235) (xy 128.588094 131.4235) (xy 128.588097 131.4235) (xy 128.801629 131.38968) (xy 129.007241 131.322872) (xy 129.199871 131.224722) (xy 129.374775 131.097647) (xy 129.527647 130.944775) (xy 129.648064 130.779035) (xy 129.704286 130.735681) (xy 129.775022 130.729606) (xy 129.837814 130.762737) (xy 129.851936 130.779035) (xy 129.972353 130.944775) (xy 129.972355 130.944777) (xy 129.972357 130.94478) (xy 130.125219 131.097642) (xy 130.125222 131.097644) (xy 130.125225 131.097647) (xy 130.300129 131.224722) (xy 130.492759 131.322872) (xy 130.698371 131.38968) (xy 130.911903 131.4235) (xy 130.911906 131.4235) (xy 131.128094 131.4235) (xy 131.128097 131.4235) (xy 131.341629 131.38968) (xy 131.547241 131.322872) (xy 131.739871 131.224722) (xy 131.914775 131.097647) (xy 132.067647 130.944775) (xy 132.194722 130.769871) (xy 132.292872 130.577241) (xy 132.35968 130.371629) (xy 132.3935 130.158097) (xy 132.3935 129.641903) (xy 132.35968 129.428371) (xy 132.292872 129.222759) (xy 132.194722 129.030129) (xy 132.067647 128.855225) (xy 132.067644 128.855222) (xy 132.067642 128.855219) (xy 131.91478 128.702357) (xy 131.914777 128.702355) (xy 131.914775 128.702353) (xy 131.739871 128.575278) (xy 131.547241 128.477128) (xy 131.54724 128.477127) (xy 131.547239 128.477127) (xy 131.341632 128.410321) (xy 131.341629 128.41032) (xy 131.128097 128.3765) (xy 130.911903 128.3765) (xy 130.698371 128.41032) (xy 130.698368 128.41032) (xy 130.698367 128.410321) (xy 130.49276 128.477127) (xy 130.300125 128.57528) (xy 130.125222 128.702355) (xy 130.125219 128.702357) (xy 129.972354 128.855222) (xy 129.851936 129.020964) (xy 129.795713 129.064318) (xy 129.724977 129.070393) (xy 129.662186 129.037261) (xy 129.648064 129.020964) (xy 129.527645 128.855222) (xy 129.37478 128.702357) (xy 129.374777 128.702355) (xy 129.374775 128.702353) (xy 129.199871 128.575278) (xy 129.074123 128.511206) (xy 129.022509 128.462459) (xy 129.005443 128.393544) (xy 129.028344 128.326342) (xy 129.042221 128.309856) (xy 129.101789 128.250289) (xy 129.189394 128.119179) (xy 129.249737 127.973497) (xy 129.2805 127.818842) (xy 129.2805 127.661158) (xy 129.249737 127.506503) (xy 129.189394 127.360821) (xy 129.118354 127.254502) (xy 129.097139 127.186749) (xy 129.115922 127.118282) (xy 129.168739 127.070839) (xy 129.223119 127.0585) (xy 139.336881 127.0585) (xy 139.405002 127.078502) (xy 139.451495 127.132158) (xy 139.461599 127.202432) (xy 139.441646 127.254502) (xy 139.370606 127.36082) (xy 139.310265 127.506497) (xy 139.310263 127.506502) (xy 139.2795 127.661155) (xy 139.2795 127.818844) (xy 139.310263 127.973497) (xy 139.310265 127.973502) (xy 139.33938 128.043793) (xy 139.370606 128.119179) (xy 139.458211 128.250289) (xy 139.458213 128.250291) (xy 139.517767 128.309845) (xy 139.551793 128.372157) (xy 139.546728 128.442972) (xy 139.504181 128.499808) (xy 139.485875 128.511207) (xy 139.360125 128.575279) (xy 139.185222 128.702355) (xy 139.185219 128.702357) (xy 139.032354 128.855222) (xy 138.911936 129.020964) (xy 138.855713 129.064318) (xy 138.784977 129.070393) (xy 138.722186 129.037261) (xy 138.708064 129.020964) (xy 138.587645 128.855222) (xy 138.43478 128.702357) (xy 138.434777 128.702355) (xy 138.434775 128.702353) (xy 138.259871 128.575278) (xy 138.067241 128.477128) (xy 138.06724 128.477127) (xy 138.067239 128.477127) (xy 137.861632 128.410321) (xy 137.861629 128.41032) (xy 137.648097 128.3765) (xy 137.431903 128.3765) (xy 137.218371 128.41032) (xy 137.218368 128.41032) (xy 137.218367 128.410321) (xy 137.01276 128.477127) (xy 136.820125 128.57528) (xy 136.645224 128.702353) (xy 136.560867 128.78671) (xy 136.498555 128.820735) (xy 136.427739 128.815669) (xy 136.370903 128.773122) (xy 136.353716 128.741646) (xy 136.315444 128.639034) (xy 136.227904 128.522095) (xy 136.110965 128.434555) (xy 135.974093 128.383505) (xy 135.913597 128.377) (xy 135.254 128.377) (xy 135.254 129.457749) (xy 135.196853 129.424755) (xy 135.067143 129.39) (xy 134.932857 129.39) (xy 134.803147 129.424755) (xy 134.746 129.457749) (xy 134.746 128.377) (xy 134.086402 128.377) (xy 134.025906 128.383505) (xy 133.889035 128.434555) (xy 133.889034 128.434555) (xy 133.772095 128.522095) (xy 133.684555 128.639034) (xy 133.684555 128.639035) (xy 133.633505 128.775906) (xy 133.627 128.836402) (xy 133.627 129.646) (xy 134.557749 129.646) (xy 134.524755 129.703147) (xy 134.49 129.832857) (xy 134.49 129.967143) (xy 134.524755 130.096853) (xy 134.557749 130.154) (xy 133.627 130.154) (xy 133.627 130.963597) (xy 133.633505 131.024093) (xy 133.684555 131.160964) (xy 133.684555 131.160965) (xy 133.772095 131.277904) (xy 133.889034 131.365444) (xy 134.025906 131.416494) (xy 134.086402 131.422999) (xy 134.086415 131.423) (xy 134.746 131.423) (xy 134.746 130.34225) (xy 134.803147 130.375245) (xy 134.932857 130.41) (xy 135.067143 130.41) (xy 135.196853 130.375245) (xy 135.254 130.34225) (xy 135.254 131.423) (xy 135.913585 131.423) (xy 135.913597 131.422999) (xy 135.974093 131.416494) (xy 136.110964 131.365444) (xy 136.110965 131.365444) (xy 136.227904 131.277904) (xy 136.315444 131.160965) (xy 136.353716 131.058353) (xy 136.396263 131.001517) (xy 136.462783 130.976706) (xy 136.532157 130.991797) (xy 136.560867 131.01329) (xy 136.645219 131.097642) (xy 136.645222 131.097644) (xy 136.645225 131.097647) (xy 136.820129 131.224722) (xy 137.012759 131.322872) (xy 137.218371 131.38968) (xy 137.431903 131.4235) (xy 137.431906 131.4235) (xy 137.648094 131.4235) (xy 137.648097 131.4235) (xy 137.861629 131.38968) (xy 138.067241 131.322872) (xy 138.259871 131.224722) (xy 138.434775 131.097647) (xy 138.587647 130.944775) (xy 138.708064 130.779035) (xy 138.764286 130.735681) (xy 138.835022 130.729606) (xy 138.897814 130.762737) (xy 138.911936 130.779035) (xy 139.032353 130.944775) (xy 139.032355 130.944777) (xy 139.032357 130.94478) (xy 139.185219 131.097642) (xy 139.185222 131.097644) (xy 139.185225 131.097647) (xy 139.360129 131.224722) (xy 139.552759 131.322872) (xy 139.758371 131.38968) (xy 139.971903 131.4235) (xy 139.971906 131.4235) (xy 140.188094 131.4235) (xy 140.188097 131.4235) (xy 140.401629 131.38968) (xy 140.607241 131.322872) (xy 140.799871 131.224722) (xy 140.974775 131.097647) (xy 141.127647 130.944775) (xy 141.248064 130.779035) (xy 141.304286 130.735681) (xy 141.375022 130.729606) (xy 141.437814 130.762737) (xy 141.451936 130.779035) (xy 141.572353 130.944775) (xy 141.572355 130.944777) (xy 141.572357 130.94478) (xy 141.725219 131.097642) (xy 141.725222 131.097644) (xy 141.725225 131.097647) (xy 141.900129 131.224722) (xy 142.092759 131.322872) (xy 142.298371 131.38968) (xy 142.511903 131.4235) (xy 142.511906 131.4235) (xy 142.728094 131.4235) (xy 142.728097 131.4235) (xy 142.941629 131.38968) (xy 143.147241 131.322872) (xy 143.339871 131.224722) (xy 143.514775 131.097647) (xy 143.667647 130.944775) (xy 143.794722 130.769871) (xy 143.892872 130.577241) (xy 143.95968 130.371629) (xy 143.9935 130.158097) (xy 143.9935 129.641903) (xy 143.95968 129.428371) (xy 143.892872 129.222759) (xy 143.794722 129.030129) (xy 143.667647 128.855225) (xy 143.667644 128.855222) (xy 143.667642 128.855219) (xy 143.51478 128.702357) (xy 143.514777 128.702355) (xy 143.514775 128.702353) (xy 143.339871 128.575278) (xy 143.147241 128.477128) (xy 143.14724 128.477127) (xy 143.147239 128.477127) (xy 142.941632 128.410321) (xy 142.941629 128.41032) (xy 142.728097 128.3765) (xy 142.511903 128.3765) (xy 142.298371 128.41032) (xy 142.298368 128.41032) (xy 142.298367 128.410321) (xy 142.09276 128.477127) (xy 141.900125 128.57528) (xy 141.725222 128.702355) (xy 141.725219 128.702357) (xy 141.572354 128.855222) (xy 141.451936 129.020964) (xy 141.395713 129.064318) (xy 141.324977 129.070393) (xy 141.262186 129.037261) (xy 141.248064 129.020964) (xy 141.127645 128.855222) (xy 140.97478 128.702357) (xy 140.974777 128.702355) (xy 140.974775 128.702353) (xy 140.799871 128.575278) (xy 140.674123 128.511206) (xy 140.622509 128.462459) (xy 140.605443 128.393544) (xy 140.628344 128.326342) (xy 140.642221 128.309856) (xy 140.701789 128.250289) (xy 140.789394 128.119179) (xy 140.838759 128) (xy 151.449335 128) (xy 151.467615 128.23227) (xy 151.467965 128.23671) (xy 151.523394 128.467592) (xy 151.614134 128.686658) (xy 151.61426 128.686963) (xy 151.679994 128.794231) (xy 151.738325 128.889417) (xy 151.738326 128.889419) (xy 151.89253 129.069969) (xy 152.071426 129.22276) (xy 152.073084 129.224176) (xy 152.275537 129.34824) (xy 152.494906 129.439105) (xy 152.725789 129.494535) (xy 152.9625 129.513165) (xy 153.199211 129.494535) (xy 153.430094 129.439105) (xy 153.649463 129.34824) (xy 153.851916 129.224176) (xy 154.032469 129.069969) (xy 154.186676 128.889416) (xy 154.31074 128.686963) (xy 154.401605 128.467594) (xy 154.457035 128.236711) (xy 154.475665 128) (xy 157.949335 128) (xy 157.967615 128.23227) (xy 157.967965 128.23671) (xy 158.023394 128.467592) (xy 158.114134 128.686658) (xy 158.11426 128.686963) (xy 158.179994 128.794231) (xy 158.238325 128.889417) (xy 158.238326 128.889419) (xy 158.39253 129.069969) (xy 158.571426 129.22276) (xy 158.573084 129.224176) (xy 158.775537 129.34824) (xy 158.994906 129.439105) (xy 159.225789 129.494535) (xy 159.4625 129.513165) (xy 159.699211 129.494535) (xy 159.930094 129.439105) (xy 160.149463 129.34824) (xy 160.351916 129.224176) (xy 160.532469 129.069969) (xy 160.686676 128.889416) (xy 160.81074 128.686963) (xy 160.901605 128.467594) (xy 160.957035 128.236711) (xy 160.975665 128) (xy 160.957035 127.763289) (xy 160.901605 127.532406) (xy 160.81074 127.313037) (xy 160.686676 127.110584) (xy 160.673712 127.095405) (xy 160.532469 126.93003) (xy 160.351919 126.775826) (xy 160.351917 126.775825) (xy 160.351916 126.775824) (xy 160.149463 126.65176) (xy 159.930094 126.560895) (xy 159.930092 126.560894) (xy 159.772151 126.522976) (xy 159.699211 126.505465) (xy 159.4625 126.486835) (xy 159.225789 126.505465) (xy 158.994907 126.560894) (xy 158.775538 126.651759) (xy 158.573082 126.775825) (xy 158.57308 126.775826) (xy 158.39253 126.93003) (xy 158.238326 127.11058) (xy 158.238325 127.110582) (xy 158.114259 127.313038) (xy 158.023394 127.532407) (xy 157.980298 127.711917) (xy 157.967965 127.763289) (xy 157.949335 128) (xy 154.475665 128) (xy 154.457035 127.763289) (xy 154.401605 127.532406) (xy 154.31074 127.313037) (xy 154.186676 127.110584) (xy 154.173712 127.095405) (xy 154.032469 126.93003) (xy 153.851919 126.775826) (xy 153.851917 126.775825) (xy 153.851916 126.775824) (xy 153.649463 126.65176) (xy 153.430094 126.560895) (xy 153.430092 126.560894) (xy 153.272151 126.522976) (xy 153.199211 126.505465) (xy 152.9625 126.486835) (xy 152.725789 126.505465) (xy 152.494907 126.560894) (xy 152.275538 126.651759) (xy 152.073082 126.775825) (xy 152.07308 126.775826) (xy 151.89253 126.93003) (xy 151.738326 127.11058) (xy 151.738325 127.110582) (xy 151.614259 127.313038) (xy 151.523394 127.532407) (xy 151.480298 127.711917) (xy 151.467965 127.763289) (xy 151.449335 128) (xy 140.838759 128) (xy 140.849737 127.973497) (xy 140.8805 127.818842) (xy 140.8805 127.661158) (xy 140.849737 127.506503) (xy 140.789394 127.360821) (xy 140.718354 127.254502) (xy 140.697139 127.186749) (xy 140.715922 127.118282) (xy 140.768739 127.070839) (xy 140.823119 127.0585) (xy 142.039857 127.0585) (xy 142.167077 127.033194) (xy 142.286917 126.983555) (xy 142.394769 126.911491) (xy 145.880229 123.426031) (xy 153.813698 123.426031) (xy 153.824296 123.566839) (xy 153.824298 123.566844) (xy 153.872489 123.699558) (xy 153.872492 123.699563) (xy 153.872493 123.699566) (xy 153.941919 123.796507) (xy 153.954708 123.814364) (xy 153.95471 123.814367) (xy 154.06485 123.902728) (xy 154.140508 123.934977) (xy 154.194748 123.958097) (xy 154.334766 123.976367) (xy 154.860603 123.97277) (xy 154.860602 123.972769) (xy 154.944476 123.972196) (xy 154.944478 123.972195) (xy 155.386439 123.969174) (xy 155.45808 123.963706) (xy 155.535812 123.941175) (xy 155.606804 123.941422) (xy 155.608793 123.942032) (xy 155.648188 123.954491) (xy 155.707104 123.994103) (xy 155.735253 124.059281) (xy 155.723696 124.12933) (xy 155.676101 124.182011) (xy 155.636719 124.197801) (xy 155.592354 124.207355) (xy 155.467107 124.272568) (xy 155.435738 124.294803) (xy 155.435732 124.294808) (xy 155.368942 124.35118) (xy 155.341228 124.378895) (xy 155.341223 124.3789) (xy 155.264851 124.476119) (xy 155.208595 124.605633) (xy 155.208594 124.605638) (xy 155.189368 124.745511) (xy 155.189368 125.055422) (xy 155.189441 125.147385) (xy 155.189446 125.149192) (xy 155.189447 125.149192) (xy 155.189447 125.149308) (xy 155.18979 125.221349) (xy 155.189791 125.221478) (xy 155.189837 125.226328) (xy 155.190642 125.281425) (xy 155.190723 125.284613) (xy 155.190918 125.292348) (xy 155.19194 125.320925) (xy 155.19237 125.332952) (xy 155.19365 125.355258) (xy 155.195939 125.384219) (xy 155.201258 125.42785) (xy 155.20126 125.427862) (xy 155.204576 125.447936) (xy 155.223071 125.523812) (xy 155.227602 125.537742) (xy 155.260195 125.611917) (xy 155.26906 125.632091) (xy 155.269061 125.632094) (xy 155.271239 125.635954) (xy 155.274996 125.642615) (xy 155.294192 125.672127) (xy 155.310656 125.69744) (xy 155.310658 125.697443) (xy 155.31531 125.703695) (xy 155.356737 125.746585) (xy 155.407455 125.799096) (xy 155.407459 125.799099) (xy 155.407458 125.799099) (xy 155.43818 125.823665) (xy 155.459955 125.840155) (xy 155.459956 125.840156) (xy 155.560315 125.893074) (xy 155.584863 125.906018) (xy 155.722905 125.935737) (xy 155.72291 125.935737) (xy 155.722914 125.935738) (xy 155.750249 125.937804) (xy 155.758192 125.938405) (xy 155.758194 125.938404) (xy 155.758196 125.938405) (xy 155.7801 125.937435) (xy 155.881907 125.932929) (xy 155.88191 125.932928) (xy 155.881911 125.932928) (xy 155.919862 125.921166) (xy 156.016783 125.891128) (xy 156.049034 125.876058) (xy 156.04906 125.876041) (xy 156.049721 125.875679) (xy 156.049952 125.875628) (xy 156.052722 125.874334) (xy 156.053012 125.874955) (xy 156.119063 125.860439) (xy 156.169935 125.87512) (xy 156.224907 125.904627) (xy 156.224909 125.904628) (xy 156.362728 125.935366) (xy 156.397676 125.938268) (xy 156.406179 125.938903) (xy 156.547036 125.929) (xy 156.679998 125.881462) (xy 156.68731 125.877656) (xy 156.713452 125.864047) (xy 156.719516 125.860766) (xy 156.721242 125.859831) (xy 156.790672 125.845003) (xy 156.846243 125.862728) (xy 156.850429 125.865251) (xy 156.869052 125.875954) (xy 157.000989 125.926266) (xy 157.141608 125.939116) (xy 157.175988 125.937552) (xy 157.194761 125.936357) (xy 157.332613 125.905771) (xy 157.416683 125.860765) (xy 157.486177 125.84625) (xy 157.542043 125.864454) (xy 157.545091 125.866324) (xy 157.550756 125.8698) (xy 157.681549 125.923017) (xy 157.821849 125.938974) (xy 157.85765 125.938138) (xy 157.966377 125.924003) (xy 158.097934 125.872706) (xy 158.1165 125.862359) (xy 158.185738 125.846673) (xy 158.240582 125.863163) (xy 158.287946 125.890365) (xy 158.28796 125.890372) (xy 158.306291 125.897794) (xy 158.318995 125.902938) (xy 158.318998 125.902939) (xy 158.318996 125.902939) (xy 158.382993 125.923085) (xy 158.397805 125.927748) (xy 158.538456 125.940246) (xy 158.573518 125.938563) (xy 158.66042 125.926639) (xy 158.664203 125.92612) (xy 158.664203 125.926119) (xy 158.66421 125.926119) (xy 158.697706 125.913459) (xy 158.768494 125.908087) (xy 158.77801 125.910505) (xy 158.841631 125.929351) (xy 158.883328 125.935712) (xy 159.011949 125.939184) (xy 159.149305 125.906443) (xy 159.183713 125.893074) (xy 159.201699 125.885695) (xy 159.204671 125.883895) (xy 159.254459 125.853732) (xy 159.32247 125.81253) (xy 159.327263 125.807416) (xy 159.36884 125.763048) (xy 159.419024 125.709496) (xy 159.429145 125.695209) (xy 159.460071 125.645902) (xy 159.477585 125.614148) (xy 159.485583 125.599066) (xy 159.509062 125.552971) (xy 159.51287 125.54534) (xy 159.540885 125.488028) (xy 159.54326 125.483104) (xy 159.574381 125.417699) (xy 159.57614 125.413963) (xy 159.60894 125.34359) (xy 159.610454 125.340313) (xy 159.615515 125.329256) (xy 159.643409 125.268303) (xy 159.643437 125.26824) (xy 159.643503 125.268097) (xy 159.64499 125.264816) (xy 159.647803 125.258556) (xy 159.657862 125.236164) (xy 159.704023 125.182223) (xy 159.772019 125.161801) (xy 159.840262 125.181383) (xy 159.887085 125.234751) (xy 159.895355 125.258556) (xy 159.901275 125.28337) (xy 159.901284 125.283398) (xy 159.923859 125.346579) (xy 159.938464 125.383037) (xy 159.942737 125.392632) (xy 159.956167 125.42052) (xy 159.956171 125.420528) (xy 159.964054 125.435721) (xy 159.985369 125.476801) (xy 159.985381 125.476822) (xy 160.031728 125.55033) (xy 160.031742 125.55035) (xy 160.03593 125.555899) (xy 160.064549 125.593822) (xy 160.137478 125.67213) (xy 160.179832 125.709096) (xy 160.179841 125.709103) (xy 160.179846 125.709107) (xy 160.242784 125.756135) (xy 160.300618 125.792867) (xy 160.321589 125.805501) (xy 160.324915 125.807399) (xy 160.324945 125.807416) (xy 160.357441 125.824466) (xy 160.407768 125.848641) (xy 160.475412 125.87547) (xy 160.494274 125.881457) (xy 160.532287 125.893523) (xy 160.53231 125.893529) (xy 160.59376 125.90897) (xy 160.593766 125.908971) (xy 160.593774 125.908973) (xy 160.655037 125.920438) (xy 160.660841 125.921525) (xy 160.660866 125.92153) (xy 160.677886 125.923925) (xy 160.707268 125.92806) (xy 160.78823 125.935743) (xy 160.819161 125.937748) (xy 160.917644 125.941179) (xy 160.929146 125.941428) (xy 160.931255 125.941474) (xy 160.965905 125.941771) (xy 160.965906 125.941771) (xy 160.966016 125.941771) (xy 160.966053 125.941772) (xy 160.968634 125.941788) (xy 160.968648 125.941788) (xy 160.968801 125.941789) (xy 160.9688 125.941789) (xy 161.134326 125.942382) (xy 161.180071 125.940524) (xy 161.317832 125.909526) (xy 161.317839 125.909521) (xy 161.323471 125.907416) (xy 161.394282 125.902283) (xy 161.411585 125.907349) (xy 161.431196 125.914653) (xy 161.431204 125.914655) (xy 161.448079 125.918899) (xy 161.448089 125.918901) (xy 161.448108 125.918906) (xy 161.511042 125.930656) (xy 161.511051 125.930657) (xy 161.511056 125.930658) (xy 161.521614 125.931961) (xy 161.536626 125.933814) (xy 161.569147 125.936792) (xy 161.606079 125.939004) (xy 161.606122 125.939005) (xy 161.606124 125.939006) (xy 161.608435 125.939107) (xy 161.622695 125.939732) (xy 161.641218 125.940246) (xy 161.673571 125.941144) (xy 161.673594 125.941144) (xy 161.67365 125.941146) (xy 161.682163 125.941313) (xy 161.749815 125.942079) (xy 161.7541 125.94211) (xy 161.754177 125.94211) (xy 161.754282 125.942111) (xy 161.841001 125.942376) (xy 161.841002 125.942376) (xy 161.842132 125.942377) (xy 161.842526 125.942378) (xy 161.862201 125.942385) (xy 161.862224 125.942385) (xy 161.862684 125.942385) (xy 161.862725 125.942385) (xy 161.882657 125.942371) (xy 161.951349 125.942327) (xy 161.952369 125.942323) (xy 161.953284 125.942321) (xy 162.021968 125.942001) (xy 162.02758 125.941945) (xy 162.079243 125.941145) (xy 162.079276 125.941144) (xy 162.079281 125.941144) (xy 162.08159 125.941079) (xy 162.091983 125.940791) (xy 162.129402 125.939291) (xy 162.15673 125.937472) (xy 162.182685 125.935054) (xy 162.239141 125.926639) (xy 162.256409 125.923084) (xy 162.256622 125.923017) (xy 162.273003 125.917849) (xy 162.354178 125.89224) (xy 162.425159 125.890821) (xy 162.440376 125.896025) (xy 162.500947 125.921167) (xy 162.516188 125.92517) (xy 162.602443 125.940182) (xy 162.743479 125.933294) (xy 162.762381 125.929749) (xy 162.764974 125.929256) (xy 162.764978 125.929254) (xy 162.764985 125.929253) (xy 162.898682 125.883895) (xy 162.898685 125.883894) (xy 162.898686 125.883893) (xy 162.898693 125.883891) (xy 162.923122 125.871676) (xy 162.923137 125.871666) (xy 162.923921 125.871275) (xy 162.993795 125.858698) (xy 163.038068 125.872008) (xy 163.057708 125.882146) (xy 163.063427 125.885054) (xy 163.197121 125.930484) (xy 163.197124 125.930485) (xy 163.33812 125.938161) (xy 163.373063 125.935282) (xy 163.397389 125.932699) (xy 163.533628 125.895582) (xy 163.547711 125.887155) (xy 163.616432 125.869344) (xy 163.653049 125.876016) (xy 163.707481 125.894571) (xy 163.747635 125.904595) (xy 163.779055 125.912439) (xy 163.779058 125.912439) (xy 163.779064 125.912441) (xy 163.840736 125.923926) (xy 163.923225 125.934172) (xy 163.975087 125.937986) (xy 164.064868 125.940073) (xy 164.113473 125.938923) (xy 164.206926 125.932318) (xy 164.246075 125.928052) (xy 164.301039 125.91994) (xy 164.36655 125.905895) (xy 164.45276 125.881493) (xy 164.542632 125.84675) (xy 164.542644 125.846743) (xy 164.545313 125.845568) (xy 164.545707 125.846462) (xy 164.611701 125.834675) (xy 164.662541 125.851707) (xy 164.687054 125.866324) (xy 164.70576 125.876958) (xy 164.837934 125.926648) (xy 164.978611 125.938834) (xy 165.004419 125.937537) (xy 165.013722 125.937071) (xy 165.014001 125.937056) (xy 165.014875 125.937012) (xy 165.153568 125.910498) (xy 165.177835 125.898412) (xy 165.232846 125.871015) (xy 165.30274 125.85855) (xy 165.336888 125.867249) (xy 165.360291 125.876861) (xy 165.360313 125.876869) (xy 165.405677 125.891127) (xy 165.44446 125.903317) (xy 165.509639 125.917849) (xy 165.509642 125.917849) (xy 165.509649 125.917851) (xy 165.54741 125.923926) (xy 165.570873 125.927701) (xy 165.650925 125.935707) (xy 165.689464 125.938117) (xy 165.787777 125.940594) (xy 165.802146 125.940756) (xy 165.818378 125.940715) (xy 165.827814 125.940606) (xy 165.893374 125.939247) (xy 165.907227 125.938774) (xy 165.972244 125.935686) (xy 165.987051 125.93477) (xy 166.044437 125.930396) (xy 166.067944 125.928065) (xy 166.110614 125.922849) (xy 166.136398 125.919037) (xy 166.139848 125.918438) (xy 166.170673 125.912117) (xy 166.213097 125.902067) (xy 166.238865 125.894492) (xy 166.309858 125.894473) (xy 166.319647 125.897786) (xy 166.36464 125.91511) (xy 166.364644 125.915111) (xy 166.379197 125.918906) (xy 166.379796 125.919062) (xy 166.379803 125.919063) (xy 166.379806 125.919064) (xy 166.447343 125.931961) (xy 166.447345 125.931962) (xy 166.451311 125.932449) (xy 166.470251 125.934778) (xy 166.501021 125.937529) (xy 166.504511 125.937841) (xy 166.504513 125.937841) (xy 166.504523 125.937842) (xy 166.537891 125.939711) (xy 166.545846 125.940028) (xy 166.554427 125.940372) (xy 166.554459 125.940372) (xy 166.554465 125.940373) (xy 166.601031 125.941489) (xy 166.608866 125.941618) (xy 166.671358 125.942171) (xy 166.674783 125.94219) (xy 166.75593 125.942372) (xy 166.756945 125.942373) (xy 166.799053 125.942385) (xy 166.799071 125.942385) (xy 166.799605 125.942385) (xy 166.799661 125.942385) (xy 166.825425 125.942362) (xy 166.889977 125.942305) (xy 166.891536 125.942299) (xy 166.892083 125.942298) (xy 166.962409 125.941931) (xy 166.967947 125.941872) (xy 166.992496 125.941481) (xy 167.02111 125.941027) (xy 167.021138 125.941026) (xy 167.021152 125.941026) (xy 167.033146 125.940697) (xy 167.033158 125.940696) (xy 167.033177 125.940696) (xy 167.043648 125.940286) (xy 167.071957 125.939181) (xy 167.096946 125.9376) (xy 167.124093 125.935223) (xy 167.174837 125.92824) (xy 167.186098 125.926119) (xy 167.19305 125.92481) (xy 167.253812 125.907416) (xy 167.28527 125.898411) (xy 167.297272 125.893736) (xy 167.379292 125.849275) (xy 167.44871 125.834397) (xy 167.49325 125.846165) (xy 167.509232 125.85373) (xy 167.509235 125.853732) (xy 167.570699 125.876869) (xy 167.572809 125.877663) (xy 167.643214 125.898606) (xy 167.643219 125.898607) (xy 167.643217 125.898607) (xy 167.696832 125.910497) (xy 167.718012 125.915194) (xy 167.772023 125.924211) (xy 167.861251 125.934299) (xy 167.898034 125.937136) (xy 167.998837 125.941313) (xy 168.004893 125.941564) (xy 168.005814 125.941586) (xy 168.022378 125.941994) (xy 168.071324 125.94237) (xy 168.077806 125.942379) (xy 168.14004 125.942079) (xy 168.140093 125.942078) (xy 168.140116 125.942078) (xy 168.148303 125.941941) (xy 168.152379 125.941873) (xy 168.196145 125.94062) (xy 168.229382 125.938598) (xy 168.229402 125.938596) (xy 168.229404 125.938596) (xy 168.258777 125.935861) (xy 168.25878 125.93586) (xy 168.258785 125.93586) (xy 168.302491 125.928444) (xy 168.335614 125.922824) (xy 168.335617 125.922823) (xy 168.335624 125.922822) (xy 168.354772 125.918069) (xy 168.354779 125.918066) (xy 168.354787 125.918064) (xy 168.483748 125.866926) (xy 168.483748 125.866925) (xy 168.483758 125.866922) (xy 168.483761 125.866919) (xy 168.483766 125.866918) (xy 168.491879 125.862361) (xy 168.496756 125.859622) (xy 168.588573 125.793963) (xy 168.595541 125.787729) (xy 168.641195 125.741412) (xy 168.647776 125.733839) (xy 168.71485 125.635954) (xy 168.720012 125.626184) (xy 168.762337 125.518393) (xy 168.766252 125.503809) (xy 168.775316 125.457982) (xy 168.779719 125.435727) (xy 168.780302 125.431206) (xy 168.78256 125.413707) (xy 168.785878 125.378634) (xy 168.787815 125.346572) (xy 168.788571 125.329256) (xy 168.789423 125.297612) (xy 168.789773 125.284613) (xy 168.789796 125.28339) (xy 168.789933 125.27614) (xy 168.790577 125.21613) (xy 168.790604 125.212263) (xy 168.790606 125.212008) (xy 168.790859 125.134456) (xy 168.790862 125.132853) (xy 168.790901 125.057508) (xy 168.790901 125.057263) (xy 168.791147 124.957278) (xy 168.791149 124.95586) (xy 168.791148 124.953801) (xy 168.791096 124.875126) (xy 168.790936 124.862577) (xy 168.789976 124.823972) (xy 168.789975 124.823965) (xy 168.789884 124.820303) (xy 168.789883 124.820277) (xy 168.789378 124.799982) (xy 168.787402 124.765863) (xy 168.783987 124.728373) (xy 168.797728 124.658722) (xy 168.846945 124.607554) (xy 168.908816 124.590949) (xy 168.952786 124.590721) (xy 168.994565 124.590506) (xy 168.994596 124.590506) (xy 168.99536 124.590502) (xy 169.045494 124.590154) (xy 169.107794 124.589724) (xy 169.108995 124.589714) (xy 169.206148 124.588817) (xy 169.207764 124.588799) (xy 169.29084 124.587773) (xy 169.293044 124.587742) (xy 169.363158 124.586578) (xy 169.366205 124.586518) (xy 169.424473 124.585208) (xy 169.428801 124.585093) (xy 169.476338 124.583627) (xy 169.482609 124.583395) (xy 169.52053 124.581766) (xy 169.529994 124.581273) (xy 169.559414 124.57947) (xy 169.574171 124.578354) (xy 169.596206 124.576371) (xy 169.620563 124.573597) (xy 169.636328 124.571423) (xy 169.678667 124.563783) (xy 169.689277 124.56141) (xy 169.758385 124.540815) (xy 169.764169 124.538643) (xy 169.764173 124.538641) (xy 169.764198 124.538632) (xy 169.769108 124.536674) (xy 169.773304 124.535002) (xy 169.777826 124.533301) (xy 169.781523 124.531992) (xy 169.790156 124.528798) (xy 169.792977 124.527509) (xy 169.814626 124.517614) (xy 169.860197 124.496787) (xy 169.868061 124.49246) (xy 169.97018 124.418825) (xy 169.970186 124.418819) (xy 169.970191 124.418816) (xy 169.977307 124.412233) (xy 170.007397 124.376365) (xy 170.0613 124.312109) (xy 170.067731 124.302112) (xy 170.113605 124.212845) (xy 170.119373 124.19831) (xy 170.139923 124.134914) (xy 170.145065 124.114705) (xy 170.150489 124.089008) (xy 170.153871 124.072986) (xy 170.154112 124.071556) (xy 170.158424 124.045958) (xy 170.162275 124.018697) (xy 170.16627 123.983735) (xy 170.168015 123.965667) (xy 170.171491 123.921625) (xy 170.172312 123.909369) (xy 170.175303 123.855112) (xy 170.1757 123.846662) (xy 170.176952 123.814367) (xy 170.178243 123.781091) (xy 170.1783 123.779355) (xy 170.17844 123.775109) (xy 170.180571 123.697016) (xy 170.180669 123.692792) (xy 170.182424 123.601078) (xy 170.182473 123.598039) (xy 170.182476 123.597858) (xy 170.183643 123.509872) (xy 170.183886 123.491569) (xy 170.183911 123.489382) (xy 170.184281 123.448515) (xy 170.18502 123.367029) (xy 170.185032 123.365448) (xy 170.185871 123.226059) (xy 170.185876 123.224929) (xy 170.186481 123.067378) (xy 170.186484 123.06658) (xy 170.186891 122.889732) (xy 170.186892 122.889183) (xy 170.187137 122.691902) (xy 170.187137 122.691535) (xy 170.187254 122.472685) (xy 170.187254 122.472468) (xy 170.187282 122.230915) (xy 170.187282 122.2308) (xy 170.187254 121.965408) (xy 170.187254 121.965379) (xy 170.187207 121.675013) (xy 170.187177 121.358572) (xy 170.187176 121.295786) (xy 170.187176 121.295766) (xy 170.187159 120.975957) (xy 170.187159 120.975879) (xy 170.187099 120.682403) (xy 170.187099 120.682296) (xy 170.186989 120.414025) (xy 170.186989 120.413879) (xy 170.18682 120.169687) (xy 170.18682 120.169493) (xy 170.186584 119.948252) (xy 170.186583 119.947991) (xy 170.18627 119.748574) (xy 170.18627 119.74823) (xy 170.185871 119.56951) (xy 170.18587 119.569065) (xy 170.185805 119.547951) (xy 170.185379 119.410019) (xy 170.185376 119.409405) (xy 170.185375 119.409322) (xy 170.18478 119.268751) (xy 170.184775 119.267882) (xy 170.184775 119.267879) (xy 170.184717 119.257644) (xy 170.184068 119.144453) (xy 170.184062 119.143424) (xy 170.183235 119.036224) (xy 170.183222 119.034844) (xy 170.183194 119.032116) (xy 170.182268 118.942838) (xy 170.182244 118.940939) (xy 170.182244 118.94094) (xy 170.182243 118.940833) (xy 170.181149 118.86263) (xy 170.181147 118.862483) (xy 170.181111 118.860222) (xy 170.179872 118.794888) (xy 170.17979 118.791241) (xy 170.179788 118.791191) (xy 170.179785 118.791027) (xy 170.17839 118.737314) (xy 170.178227 118.732047) (xy 170.176667 118.688888) (xy 170.176323 118.681029) (xy 170.174591 118.647297) (xy 170.173811 118.634973) (xy 170.171897 118.609541) (xy 170.16995 118.589095) (xy 170.168326 118.575) (xy 170.167846 118.570834) (xy 170.164459 118.548505) (xy 170.162283 118.534155) (xy 170.159981 118.521942) (xy 170.140708 118.449186) (xy 170.138197 118.441893) (xy 170.138192 118.441881) (xy 170.13773 118.440674) (xy 170.137715 118.440492) (xy 170.137496 118.439855) (xy 170.137659 118.439798) (xy 170.137116 118.43306) (xy 170.11719 118.390127) (xy 170.115617 118.386597) (xy 170.115222 118.385671) (xy 170.097568 118.348486) (xy 170.092804 118.339401) (xy 170.042779 118.263078) (xy 170.037625 118.255214) (xy 170.037622 118.255211) (xy 170.03762 118.255207) (xy 170.031077 118.247073) (xy 170.018463 118.234877) (xy 169.938266 118.157335) (xy 169.938262 118.157332) (xy 169.928621 118.150098) (xy 169.831906 118.092766) (xy 169.831902 118.092764) (xy 169.817851 118.08638) (xy 169.81783 118.086371) (xy 169.744359 118.059475) (xy 169.744341 118.059469) (xy 169.72454 118.053874) (xy 169.724527 118.053871) (xy 169.675777 118.042605) (xy 169.659148 118.0396) (xy 169.648882 118.037745) (xy 169.617534 118.033065) (xy 169.612776 118.032502) (xy 169.582271 118.028897) (xy 169.561985 118.026902) (xy 169.517046 118.023374) (xy 169.503692 118.022499) (xy 169.447708 118.019555) (xy 169.438718 118.01916) (xy 169.370507 118.01675) (xy 169.365515 118.016603) (xy 169.364333 118.016569) (xy 169.338955 118.01597) (xy 169.282414 118.014638) (xy 169.282346 118.014636) (xy 169.282318 118.014636) (xy 169.278149 118.014554) (xy 169.278147 118.014553) (xy 169.278098 118.014553) (xy 169.180983 118.013045) (xy 169.178421 118.013013) (xy 169.178262 118.013012) (xy 169.11363 118.012367) (xy 169.06487 118.011881) (xy 169.063135 118.011867) (xy 169.06296 118.011866) (xy 168.932001 118.01106) (xy 168.931944 118.011059) (xy 168.930664 118.011052) (xy 168.814991 118.010639) (xy 168.780748 118.010517) (xy 168.780665 118.010516) (xy 168.779884 118.010514) (xy 168.779884 118.010515) (xy 168.639009 118.010252) (xy 168.609666 118.010198) (xy 168.609661 118.010197) (xy 168.609106 118.010197) (xy 168.609067 118.010196) (xy 168.424555 118.010052) (xy 168.417311 118.010047) (xy 168.417262 118.010047) (xy 168.416992 118.010047) (xy 168.202276 118.010011) (xy 168.202133 118.010011) (xy 167.963174 118.010037) (xy 167.963159 118.010037) (xy 167.698636 118.010073) (xy 167.698624 118.010073) (xy 167.575554 118.010078) (xy 165.809662 118.010078) (xy 165.741541 117.990076) (xy 165.710994 117.961515) (xy 165.710636 117.96181) (xy 165.708645 117.959388) (xy 165.629074 117.871863) (xy 165.629073 117.871862) (xy 165.551912 117.802435) (xy 165.551902 117.802427) (xy 165.460533 117.735469) (xy 165.372263 117.683345) (xy 165.372261 117.683344) (xy 165.372259 117.683343) (xy 165.307226 117.653171) (xy 165.272227 117.636934) (xy 165.177428 117.603684) (xy 165.177425 117.603683) (xy 165.177416 117.603681) (xy 165.177414 117.60368) (xy 165.114347 117.588227) (xy 165.071899 117.577827) (xy 165.071895 117.577826) (xy 165.07189 117.577825) (xy 165.071884 117.577824) (xy 165.071873 117.577822) (xy 164.974027 117.563559) (xy 164.973998 117.563556) (xy 164.866144 117.558244) (xy 164.866135 117.558244) (xy 164.767646 117.562777) (xy 164.660578 117.578) (xy 164.660574 117.578001) (xy 164.563731 117.601442) (xy 164.563711 117.601448) (xy 164.460601 117.637197) (xy 164.368275 117.679759) (xy 164.368255 117.67977) (xy 164.30015 117.719691) (xy 164.272263 117.736038) (xy 164.27226 117.736039) (xy 164.272255 117.736043) (xy 164.27225 117.736046) (xy 164.188562 117.7971) (xy 164.188538 117.79712) (xy 164.10282 117.873889) (xy 164.102817 117.873892) (xy 164.03261 117.950808) (xy 164.012047 117.97847) (xy 163.955353 118.021206) (xy 163.940988 118.02566) (xy 163.852813 118.047321) (xy 163.810056 118.062777) (xy 163.810047 118.062782) (xy 163.810045 118.062782) (xy 163.807726 118.06362) (xy 163.756123 118.086327) (xy 163.738745 118.094359) (xy 163.730672 118.098272) (xy 163.66241 118.138048) (xy 163.655018 118.143147) (xy 163.564968 118.222058) (xy 163.558271 118.229458) (xy 163.558263 118.229468) (xy 163.489719 118.325122) (xy 163.489715 118.32513) (xy 163.489714 118.325132) (xy 163.483677 118.335975) (xy 163.447608 118.416179) (xy 163.447404 118.416632) (xy 163.447396 118.416649) (xy 163.44199 118.43207) (xy 163.441982 118.432095) (xy 163.425723 118.488528) (xy 163.420904 118.509702) (xy 163.413839 118.547005) (xy 163.409596 118.57498) (xy 163.406468 118.599548) (xy 163.402759 118.635483) (xy 163.401328 118.651908) (xy 163.398117 118.697008) (xy 163.397444 118.708164) (xy 163.3947 118.763558) (xy 163.394372 118.771355) (xy 163.392069 118.838059) (xy 163.391907 118.843574) (xy 163.391167 118.87446) (xy 163.390007 118.922877) (xy 163.390007 118.922899) (xy 163.389927 118.926796) (xy 163.388396 119.019933) (xy 163.388358 119.022732) (xy 163.387406 119.10908) (xy 163.366654 119.176976) (xy 163.312489 119.222874) (xy 163.242108 119.232202) (xy 163.181942 119.205466) (xy 163.163389 119.190386) (xy 163.16337 119.190372) (xy 162.988798 119.063461) (xy 162.962523 119.046463) (xy 162.941453 119.032832) (xy 162.778816 118.939754) (xy 162.778802 118.939746) (xy 162.778795 118.939742) (xy 162.778789 118.939739) (xy 162.731534 118.915812) (xy 162.731523 118.915806) (xy 162.567205 118.842898) (xy 162.567197 118.842894) (xy 162.515284 118.823118) (xy 162.515276 118.823115) (xy 162.515267 118.823112) (xy 162.411421 118.789805) (xy 162.35059 118.770295) (xy 162.293579 118.755522) (xy 162.122175 118.721362) (xy 162.086133 118.716132) (xy 162.068233 118.713534) (xy 162.068221 118.713532) (xy 162.068215 118.713532) (xy 162.068206 118.713531) (xy 161.883753 118.696598) (xy 161.848072 118.694558) (xy 161.753155 118.692409) (xy 161.737767 118.692061) (xy 161.737761 118.692061) (xy 161.73776 118.692061) (xy 161.709927 118.692177) (xy 161.551442 118.697096) (xy 161.511113 118.699924) (xy 161.363057 118.716132) (xy 161.363045 118.716134) (xy 161.316689 118.723344) (xy 161.316673 118.723346) (xy 161.173276 118.752349) (xy 161.17326 118.752352) (xy 161.138624 118.761023) (xy 161.127267 118.763867) (xy 161.127262 118.763868) (xy 161.127252 118.763871) (xy 160.982611 118.807193) (xy 160.943025 118.820814) (xy 160.943019 118.820816) (xy 160.943017 118.820817) (xy 160.791303 118.879973) (xy 160.791297 118.879975) (xy 160.791283 118.879981) (xy 160.761158 118.892837) (xy 160.596501 118.969361) (xy 160.583262 118.975745) (xy 160.555249 118.989746) (xy 160.554604 118.990066) (xy 160.493477 119.020181) (xy 160.491421 119.021171) (xy 160.438877 119.045885) (xy 160.436381 119.047026) (xy 160.400623 119.062903) (xy 160.396013 119.064841) (xy 160.395045 119.065225) (xy 160.38469 119.068826) (xy 160.352198 119.07856) (xy 160.352184 119.078566) (xy 160.237129 119.128915) (xy 160.126499 119.216655) (xy 160.126498 119.216655) (xy 160.126497 119.216657) (xy 160.079991 119.280831) (xy 160.043636 119.330996) (xy 159.994698 119.463445) (xy 159.994697 119.463446) (xy 159.983308 119.604188) (xy 159.983308 119.60419) (xy 160.010314 119.742789) (xy 160.021691 119.765432) (xy 160.034402 119.835281) (xy 160.007332 119.900915) (xy 159.949075 119.941494) (xy 159.880736 119.944767) (xy 159.869402 119.942148) (xy 159.868607 119.941962) (xy 159.777585 119.920307) (xy 159.777022 119.920171) (xy 159.740885 119.911398) (xy 159.740888 119.911398) (xy 159.740848 119.911389) (xy 159.739855 119.911153) (xy 159.735734 119.910175) (xy 159.572963 119.872421) (xy 159.556883 119.86896) (xy 159.462379 119.85019) (xy 159.414448 119.84067) (xy 159.391509 119.836647) (xy 159.391482 119.836642) (xy 159.391477 119.836642) (xy 159.264032 119.81723) (xy 159.234671 119.813613) (xy 159.116794 119.802493) (xy 159.083582 119.800432) (xy 158.970021 119.797042) (xy 158.937513 119.797092) (xy 158.822956 119.800856) (xy 158.800862 119.802055) (xy 158.80085 119.802055) (xy 158.800848 119.802056) (xy 158.795075 119.802493) (xy 158.732801 119.807206) (xy 158.703568 119.810255) (xy 158.508957 119.836147) (xy 158.456519 119.845891) (xy 158.456479 119.8459) (xy 158.284138 119.887196) (xy 158.284114 119.887202) (xy 158.221004 119.906651) (xy 158.220997 119.906653) (xy 158.07006 119.96393) (xy 158.070057 119.963931) (xy 157.998527 119.997517) (xy 157.868154 120.071348) (xy 157.794388 120.121996) (xy 157.794384 120.121999) (xy 157.683773 120.212935) (xy 157.616875 120.278962) (xy 157.557802 120.348931) (xy 157.498573 120.388078) (xy 157.427582 120.388988) (xy 157.367369 120.351374) (xy 157.363561 120.346883) (xy 157.352604 120.333325) (xy 157.318522 120.296895) (xy 157.301344 120.278533) (xy 157.301339 120.278528) (xy 157.177508 120.164028) (xy 157.176671 120.163362) (xy 157.117258 120.116102) (xy 157.11725 120.116096) (xy 156.997923 120.034877) (xy 156.979892 120.022604) (xy 156.979891 120.022603) (xy 156.979886 120.0226) (xy 156.910257 119.98272) (xy 156.910251 119.982717) (xy 156.910248 119.982715) (xy 156.761907 119.912394) (xy 156.761905 119.912393) (xy 156.761887 119.912385) (xy 156.70062 119.887985) (xy 156.700607 119.887981) (xy 156.6117 119.858977) (xy 156.611679 119.858971) (xy 156.551205 119.843205) (xy 156.46386 119.825982) (xy 156.413916 119.81864) (xy 156.413857 119.818633) (xy 156.308814 119.80839) (xy 156.273354 119.806155) (xy 156.159357 119.80288) (xy 156.15935 119.80288) (xy 156.150829 119.802895) (xy 156.127682 119.802937) (xy 156.093524 119.804041) (xy 156.024793 119.786249) (xy 155.976592 119.734123) (xy 155.963457 119.677737) (xy 155.963645 119.61424) (xy 155.964548 119.507207) (xy 155.964561 119.506278) (xy 155.966109 119.423511) (xy 155.966166 119.42143) (xy 155.968113 119.368229) (xy 155.985688 119.30851) (xy 155.993388 119.295542) (xy 156.006027 119.272801) (xy 156.04173 119.19357) (xy 156.043424 119.188773) (xy 156.064445 119.109993) (xy 156.070862 118.968934) (xy 156.038984 118.831375) (xy 155.971175 118.707517) (xy 155.872464 118.606547) (xy 155.872463 118.606546) (xy 155.81778 118.57498) (xy 155.750172 118.535953) (xy 155.743141 118.534155) (xy 155.613375 118.500972) (xy 155.613371 118.500971) (xy 155.613369 118.500971) (xy 155.600126 118.499458) (xy 155.600122 118.499457) (xy 155.600116 118.499457) (xy 155.558147 118.496381) (xy 155.520372 118.495151) (xy 155.511661 118.49494) (xy 155.452123 118.494009) (xy 155.448013 118.493962) (xy 155.370032 118.493356) (xy 155.367238 118.493341) (xy 155.273612 118.493076) (xy 155.273612 118.493077) (xy 155.271552 118.493075) (xy 155.271548 118.493075) (xy 155.271546 118.493075) (xy 155.270889 118.493075) (xy 155.16487 118.493172) (xy 155.164741 118.493173) (xy 155.16309 118.493177) (xy 155.163018 118.493177) (xy 155.121746 118.493346) (xy 155.046319 118.493656) (xy 155.046206 118.493656) (xy 155.045309 118.493661) (xy 155.045298 118.493662) (xy 155.00561 118.493903) (xy 155.005609 118.493902) (xy 155.005522 118.493903) (xy 155.005401 118.493903) (xy 155.005347 118.493904) (xy 154.931293 118.494391) (xy 154.459596 118.497493) (xy 154.459591 118.497493) (xy 154.45959 118.497494) (xy 154.4491 118.498589) (xy 154.359175 118.507984) (xy 154.225968 118.554835) (xy 154.110341 118.635886) (xy 154.02087 118.745127) (xy 154.009053 118.772091) (xy 153.969374 118.86263) (xy 153.964189 118.87446) (xy 153.964188 118.874462) (xy 153.944504 119.014271) (xy 153.944503 119.014282) (xy 153.937639 121.10786) (xy 153.937639 121.108067) (xy 153.937639 121.108111) (xy 153.937554 121.134753) (xy 153.936732 121.391833) (xy 153.936732 121.392034) (xy 153.936732 121.392073) (xy 153.93611 121.5915) (xy 153.935928 121.649797) (xy 153.935928 121.649812) (xy 153.935175 121.882583) (xy 153.935175 121.882628) (xy 153.934427 122.090632) (xy 153.934422 122.091943) (xy 153.933826 122.230806) (xy 153.933621 122.278487) (xy 153.93362 122.278634) (xy 153.932713 122.444656) (xy 153.932712 122.444882) (xy 153.931656 122.590503) (xy 153.931653 122.590832) (xy 153.930398 122.718084) (xy 153.930392 122.718561) (xy 153.9289 122.827845) (xy 153.928889 122.828521) (xy 153.92713 122.920995) (xy 153.927108 122.921958) (xy 153.925059 122.99879) (xy 153.925016 123.000148) (xy 153.922712 123.06165) (xy 153.922625 123.063574) (xy 153.920411 123.10552) (xy 153.903296 123.162583) (xy 153.883876 123.195721) (xy 153.841481 123.287588) (xy 153.841478 123.287595) (xy 153.813698 123.426031) (xy 145.880229 123.426031) (xy 146.760855 122.545405) (xy 146.823167 122.511379) (xy 146.84995 122.5085) (xy 146.870487 122.5085) (xy 147.057288 122.468794) (xy 147.231752 122.391118) (xy 147.386253 122.278866) (xy 147.386594 122.278487) (xy 147.514034 122.136951) (xy 147.514035 122.136949) (xy 147.51404 122.136944) (xy 147.609527 121.971556) (xy 147.668542 121.789928) (xy 147.688504 121.6) (xy 147.668542 121.410072) (xy 147.609527 121.228444) (xy 147.51404 121.063056) (xy 147.514038 121.063054) (xy 147.514034 121.063048) (xy 147.386255 120.921135) (xy 147.231752 120.808882) (xy 147.172234 120.782383) (xy 147.057288 120.731206) (xy 147.057286 120.731205) (xy 147.057285 120.731205) (xy 147.050297 120.729719) (xy 146.987826 120.695986) (xy 146.953509 120.633834) (xy 146.958242 120.562995) (xy 146.987406 120.517381) (xy 149.609383 117.895405) (xy 149.671695 117.861379) (xy 149.698478 117.8585) (xy 154.099043 117.8585) (xy 154.099046 117.8585) (xy 154.2947 117.827512) (xy 154.483097 117.766298) (xy 154.659598 117.676366) (xy 154.819858 117.55993) (xy 154.95993 117.419858) (xy 158.25993 114.119858) (xy 158.376367 113.959598) (xy 158.466299 113.783096) (xy 158.527512 113.594699) (xy 158.5585 113.399046) (xy 158.5585 113.200954) (xy 158.5585 112.66324) (xy 158.578502 112.595119) (xy 158.610439 112.561304) (xy 158.612135 112.560072) (xy 158.639858 112.53993) (xy 158.77993 112.399858) (xy 158.79765 112.382138) (xy 158.797652 112.382134) (xy 160.812671 110.367114) (xy 160.812685 110.367103) (xy 160.959925 110.219863) (xy 160.95993 110.219858) (xy 161.056389 110.087094) (xy 161.076367 110.059597) (xy 161.166299 109.883096) (xy 161.215555 109.7315) (xy 161.227512 109.6947) (xy 161.2585 109.499046) (xy 161.2585 107.641155) (xy 164.4395 107.641155) (xy 164.4395 107.798844) (xy 164.465761 107.930866) (xy 164.470263 107.953497) (xy 164.530606 108.099179) (xy 164.618211 108.230289) (xy 164.729711 108.341789) (xy 164.860821 108.429394) (xy 165.006503 108.489737) (xy 165.161158 108.5205) (xy 165.161159 108.5205) (xy 165.318841 108.5205) (xy 165.318842 108.5205) (xy 165.473497 108.489737) (xy 165.619179 108.429394) (xy 165.750289 108.341789) (xy 165.809848 108.282229) (xy 165.872156 108.248207) (xy 165.942972 108.253271) (xy 165.999808 108.295817) (xy 166.011204 108.31412) (xy 166.075278 108.439871) (xy 166.202353 108.614775) (xy 166.202355 108.614777) (xy 166.202357 108.61478) (xy 166.355222 108.767645) (xy 166.520964 108.888064) (xy 166.564318 108.944287) (xy 166.570393 109.015023) (xy 166.537261 109.077814) (xy 166.520964 109.091936) (xy 166.355222 109.212354) (xy 166.202357 109.365219) (xy 166.202355 109.365222) (xy 166.07528 109.540125) (xy 165.977127 109.73276) (xy 165.916675 109.918811) (xy 165.91032 109.938371) (xy 165.8765 110.151903) (xy 165.8765 110.368097) (xy 165.91032 110.581629) (xy 165.910321 110.581632) (xy 165.973752 110.776853) (xy 165.977128 110.787241) (xy 166.066172 110.962) (xy 166.07528 110.979874) (xy 166.106509 111.022857) (xy 166.202353 111.154775) (xy 166.202355 111.154777) (xy 166.202357 111.15478) (xy 166.286709 111.239132) (xy 166.320735 111.301444) (xy 166.31567 111.372259) (xy 166.273123 111.429095) (xy 166.241647 111.446282) (xy 166.139039 111.484553) (xy 166.139034 111.484555) (xy 166.022095 111.572095) (xy 165.934555 111.689034) (xy 165.934555 111.689035) (xy 165.883505 111.825906) (xy 165.877 111.886402) (xy 165.877 112.546) (xy 166.957749 112.546) (xy 166.924755 112.603147) (xy 166.89 112.732857) (xy 166.89 112.867143) (xy 166.924755 112.996853) (xy 166.957749 113.054) (xy 165.877 113.054) (xy 165.877 113.713597) (xy 165.883505 113.774093) (xy 165.934555 113.910964) (xy 165.934555 113.910965) (xy 166.022095 114.027904) (xy 166.139034 114.115444) (xy 166.275906 114.166494) (xy 166.336402 114.172999) (xy 166.336415 114.173) (xy 167.146 114.173) (xy 167.146 113.24225) (xy 167.203147 113.275245) (xy 167.332857 113.31) (xy 167.467143 113.31) (xy 167.596853 113.275245) (xy 167.654 113.24225) (xy 167.654 114.173) (xy 168.463585 114.173) (xy 168.463597 114.172999) (xy 168.524093 114.166494) (xy 168.660964 114.115444) (xy 168.660965 114.115444) (xy 168.777904 114.027904) (xy 168.865444 113.910965) (xy 168.865444 113.910964) (xy 168.916494 113.774093) (xy 168.922999 113.713597) (xy 168.923 113.713585) (xy 168.923 113.054) (xy 167.842251 113.054) (xy 167.875245 112.996853) (xy 167.91 112.867143) (xy 167.91 112.732857) (xy 167.875245 112.603147) (xy 167.842251 112.546) (xy 168.923 112.546) (xy 168.923 111.886414) (xy 168.922999 111.886402) (xy 168.916494 111.825906) (xy 168.865444 111.689035) (xy 168.865444 111.689034) (xy 168.777904 111.572095) (xy 168.660966 111.484556) (xy 168.558352 111.446283) (xy 168.501517 111.403736) (xy 168.476706 111.337215) (xy 168.491798 111.267841) (xy 168.513287 111.239134) (xy 168.597647 111.154775) (xy 168.724722 110.979871) (xy 168.822872 110.787241) (xy 168.88968 110.581629) (xy 168.9235 110.368097) (xy 168.9235 110.151903) (xy 168.88968 109.938371) (xy 168.822872 109.732759) (xy 168.724722 109.540129) (xy 168.597647 109.365225) (xy 168.597644 109.365222) (xy 168.597642 109.365219) (xy 168.44478 109.212357) (xy 168.444777 109.212355) (xy 168.444776 109.212354) (xy 168.444775 109.212353) (xy 168.279035 109.091936) (xy 168.235681 109.035714) (xy 168.229606 108.964978) (xy 168.262737 108.902186) (xy 168.279035 108.888064) (xy 168.342022 108.842301) (xy 168.444775 108.767647) (xy 168.597647 108.614775) (xy 168.724722 108.439871) (xy 168.822872 108.247241) (xy 168.88968 108.041629) (xy 168.9235 107.828097) (xy 168.9235 107.611903) (xy 168.88968 107.398371) (xy 168.822872 107.192759) (xy 168.724722 107.000129) (xy 168.597647 106.825225) (xy 168.597644 106.825222) (xy 168.597642 106.825219) (xy 168.44478 106.672357) (xy 168.444777 106.672355) (xy 168.444776 106.672354) (xy 168.444775 106.672353) (xy 168.279035 106.551936) (xy 168.235681 106.495714) (xy 168.229606 106.424978) (xy 168.262737 106.362186) (xy 168.279035 106.348064) (xy 168.28712 106.34219) (xy 168.444775 106.227647) (xy 168.597647 106.074775) (xy 168.724722 105.899871) (xy 168.822872 105.707241) (xy 168.88968 105.501629) (xy 168.9235 105.288097) (xy 168.9235 105.071903) (xy 168.88968 104.858371) (xy 168.822872 104.652759) (xy 168.724722 104.460129) (xy 168.597647 104.285225) (xy 168.597644 104.285222) (xy 168.597642 104.285219) (xy 168.44478 104.132357) (xy 168.444777 104.132355) (xy 168.444775 104.132353) (xy 168.269871 104.005278) (xy 168.077241 103.907128) (xy 168.07724 103.907127) (xy 168.077239 103.907127) (xy 167.871632 103.840321) (xy 167.871629 103.84032) (xy 167.658097 103.8065) (xy 167.141903 103.8065) (xy 166.928371 103.84032) (xy 166.928368 103.84032) (xy 166.928367 103.840321) (xy 166.72276 103.907127) (xy 166.530125 104.00528) (xy 166.355222 104.132355) (xy 166.355219 104.132357) (xy 166.202357 104.285219) (xy 166.202355 104.285222) (xy 166.07528 104.460125) (xy 165.977127 104.65276) (xy 165.915284 104.843094) (xy 165.91032 104.858371) (xy 165.8765 105.071903) (xy 165.8765 105.288097) (xy 165.91032 105.501629) (xy 165.910321 105.501632) (xy 165.95118 105.627384) (xy 165.977128 105.707241) (xy 166.075278 105.899871) (xy 166.202353 106.074775) (xy 166.202355 106.074777) (xy 166.202357 106.07478) (xy 166.355222 106.227645) (xy 166.520964 106.348064) (xy 166.564318 106.404287) (xy 166.570393 106.475023) (xy 166.537261 106.537814) (xy 166.520964 106.551936) (xy 166.355222 106.672354) (xy 166.202357 106.825219) (xy 166.202355 106.825222) (xy 166.075279 107.000125) (xy 166.011207 107.125875) (xy 165.962458 107.17749) (xy 165.893543 107.194556) (xy 165.826342 107.171655) (xy 165.809845 107.157767) (xy 165.750291 107.098213) (xy 165.750289 107.098211) (xy 165.619179 107.010606) (xy 165.473497 106.950263) (xy 165.318844 106.9195) (xy 165.318842 106.9195) (xy 165.161158 106.9195) (xy 165.161155 106.9195) (xy 165.006502 106.950263) (xy 165.006497 106.950265) (xy 164.86082 107.010606) (xy 164.729715 107.098208) (xy 164.729708 107.098213) (xy 164.618213 107.209708) (xy 164.618208 107.209715) (xy 164.530606 107.34082) (xy 164.470265 107.486497) (xy 164.470263 107.486502) (xy 164.4395 107.641155) (xy 161.2585 107.641155) (xy 161.2585 102.930954) (xy 161.227512 102.7353) (xy 161.201654 102.655718) (xy 161.166299 102.546904) (xy 161.076367 102.370403) (xy 160.962047 102.213056) (xy 160.959928 102.210139) (xy 160.959925 102.210136) (xy 159.403883 100.654095) (xy 159.369858 100.591783) (xy 159.374922 100.520968) (xy 159.403883 100.475905) (xy 160.959928 98.91986) (xy 160.95993 98.919858) (xy 161.076366 98.759598) (xy 161.116442 98.680944) (xy 161.166298 98.583097) (xy 161.227512 98.3947) (xy 161.2585 98.199046) (xy 161.2585 96.341155) (xy 164.4395 96.341155) (xy 164.4395 96.498844) (xy 164.445318 96.528093) (xy 164.470263 96.653497) (xy 164.530606 96.799179) (xy 164.618211 96.930289) (xy 164.729711 97.041789) (xy 164.860821 97.129394) (xy 165.006503 97.189737) (xy 165.161158 97.2205) (xy 165.161159 97.2205) (xy 165.318841 97.2205) (xy 165.318842 97.2205) (xy 165.473497 97.189737) (xy 165.619179 97.129394) (xy 165.750289 97.041789) (xy 165.809848 96.982229) (xy 165.872156 96.948207) (xy 165.942972 96.953271) (xy 165.999808 96.995817) (xy 166.011204 97.01412) (xy 166.07142 97.1323) (xy 166.07528 97.139874) (xy 166.082775 97.15019) (xy 166.202353 97.314775) (xy 166.202355 97.314777) (xy 166.202357 97.31478) (xy 166.355222 97.467645) (xy 166.520964 97.588064) (xy 166.564318 97.644287) (xy 166.570393 97.715023) (xy 166.537261 97.777814) (xy 166.520964 97.791936) (xy 166.355222 97.912354) (xy 166.202357 98.065219) (xy 166.202355 98.065222) (xy 166.07528 98.240125) (xy 165.977127 98.43276) (xy 165.913927 98.62727) (xy 165.91032 98.638371) (xy 165.8765 98.851903) (xy 165.8765 99.068097) (xy 165.91032 99.281629) (xy 165.910321 99.281632) (xy 165.97315 99.475) (xy 165.977128 99.487241) (xy 166.075278 99.679871) (xy 166.202353 99.854775) (xy 166.202355 99.854777) (xy 166.202357 99.85478) (xy 166.286709 99.939132) (xy 166.320735 100.001444) (xy 166.31567 100.072259) (xy 166.273123 100.129095) (xy 166.241647 100.146282) (xy 166.139039 100.184553) (xy 166.139034 100.184555) (xy 166.022095 100.272095) (xy 165.934555 100.389034) (xy 165.934555 100.389035) (xy 165.883505 100.525906) (xy 165.877 100.586402) (xy 165.877 101.246) (xy 166.957749 101.246) (xy 166.924755 101.303147) (xy 166.89 101.432857) (xy 166.89 101.567143) (xy 166.924755 101.696853) (xy 166.957749 101.754) (xy 165.877 101.754) (xy 165.877 102.413597) (xy 165.883505 102.474093) (xy 165.934555 102.610964) (xy 165.934555 102.610965) (xy 166.022095 102.727904) (xy 166.139034 102.815444) (xy 166.275906 102.866494) (xy 166.336402 102.872999) (xy 166.336415 102.873) (xy 167.146 102.873) (xy 167.146 101.94225) (xy 167.203147 101.975245) (xy 167.332857 102.01) (xy 167.467143 102.01) (xy 167.596853 101.975245) (xy 167.654 101.94225) (xy 167.654 102.873) (xy 168.463585 102.873) (xy 168.463597 102.872999) (xy 168.524093 102.866494) (xy 168.660964 102.815444) (xy 168.660965 102.815444) (xy 168.777904 102.727904) (xy 168.865444 102.610965) (xy 168.865444 102.610964) (xy 168.916494 102.474093) (xy 168.922999 102.413597) (xy 168.923 102.413585) (xy 168.923 101.754) (xy 167.842251 101.754) (xy 167.875245 101.696853) (xy 167.91 101.567143) (xy 167.91 101.432857) (xy 167.875245 101.303147) (xy 167.842251 101.246) (xy 168.923 101.246) (xy 168.923 100.586414) (xy 168.922999 100.586402) (xy 168.916494 100.525906) (xy 168.865444 100.389035) (xy 168.865444 100.389034) (xy 168.777904 100.272095) (xy 168.660966 100.184556) (xy 168.558352 100.146283) (xy 168.501517 100.103736) (xy 168.476706 100.037215) (xy 168.491798 99.967841) (xy 168.513287 99.939134) (xy 168.597647 99.854775) (xy 168.724722 99.679871) (xy 168.822872 99.487241) (xy 168.88968 99.281629) (xy 168.9235 99.068097) (xy 168.9235 98.851903) (xy 168.88968 98.638371) (xy 168.822872 98.432759) (xy 168.724722 98.240129) (xy 168.597647 98.065225) (xy 168.597644 98.065222) (xy 168.597642 98.065219) (xy 168.44478 97.912357) (xy 168.444777 97.912355) (xy 168.444776 97.912354) (xy 168.444775 97.912353) (xy 168.279035 97.791936) (xy 168.235681 97.735714) (xy 168.229606 97.664978) (xy 168.262737 97.602186) (xy 168.279035 97.588064) (xy 168.296028 97.575718) (xy 168.444775 97.467647) (xy 168.597647 97.314775) (xy 168.724722 97.139871) (xy 168.822872 96.947241) (xy 168.88968 96.741629) (xy 168.9235 96.528097) (xy 168.9235 96.311903) (xy 168.88968 96.098371) (xy 168.822872 95.892759) (xy 168.724722 95.700129) (xy 168.597647 95.525225) (xy 168.597644 95.525222) (xy 168.597642 95.525219) (xy 168.44478 95.372357) (xy 168.444777 95.372355) (xy 168.444776 95.372354) (xy 168.444775 95.372353) (xy 168.279035 95.251936) (xy 168.235681 95.195714) (xy 168.229606 95.124978) (xy 168.262737 95.062186) (xy 168.279035 95.048064) (xy 168.281727 95.046107) (xy 168.444775 94.927647) (xy 168.597647 94.774775) (xy 168.724722 94.599871) (xy 168.822872 94.407241) (xy 168.88968 94.201629) (xy 168.9235 93.988097) (xy 168.9235 93.771903) (xy 168.88968 93.558371) (xy 168.822872 93.352759) (xy 168.724722 93.160129) (xy 168.597647 92.985225) (xy 168.597644 92.985222) (xy 168.597642 92.985219) (xy 168.44478 92.832357) (xy 168.444777 92.832355) (xy 168.444775 92.832353) (xy 168.269871 92.705278) (xy 168.077241 92.607128) (xy 168.07724 92.607127) (xy 168.077239 92.607127) (xy 167.871632 92.540321) (xy 167.871629 92.54032) (xy 167.658097 92.5065) (xy 167.141903 92.5065) (xy 166.928371 92.54032) (xy 166.928368 92.54032) (xy 166.928367 92.540321) (xy 166.72276 92.607127) (xy 166.530125 92.70528) (xy 166.355222 92.832355) (xy 166.355219 92.832357) (xy 166.202357 92.985219) (xy 166.202355 92.985222) (xy 166.07528 93.160125) (xy 165.977127 93.35276) (xy 165.910321 93.558367) (xy 165.91032 93.558371) (xy 165.8765 93.771903) (xy 165.8765 93.988097) (xy 165.91032 94.201629) (xy 165.910321 94.201632) (xy 165.958971 94.351362) (xy 165.977128 94.407241) (xy 166.067801 94.585197) (xy 166.07528 94.599874) (xy 166.083283 94.610889) (xy 166.202353 94.774775) (xy 166.202355 94.774777) (xy 166.202357 94.77478) (xy 166.355222 94.927645) (xy 166.520964 95.048064) (xy 166.564318 95.104287) (xy 166.570393 95.175023) (xy 166.537261 95.237814) (xy 166.520964 95.251936) (xy 166.355222 95.372354) (xy 166.202357 95.525219) (xy 166.202355 95.525222) (xy 166.075279 95.700125) (xy 166.011207 95.825875) (xy 165.962458 95.87749) (xy 165.893543 95.894556) (xy 165.826342 95.871655) (xy 165.809845 95.857767) (xy 165.750291 95.798213) (xy 165.750289 95.798211) (xy 165.619179 95.710606) (xy 165.587895 95.697648) (xy 165.473502 95.650265) (xy 165.473497 95.650263) (xy 165.318844 95.6195) (xy 165.318842 95.6195) (xy 165.161158 95.6195) (xy 165.161155 95.6195) (xy 165.006502 95.650263) (xy 165.006497 95.650265) (xy 164.86082 95.710606) (xy 164.729715 95.798208) (xy 164.729708 95.798213) (xy 164.618213 95.909708) (xy 164.618208 95.909715) (xy 164.530606 96.04082) (xy 164.470265 96.186497) (xy 164.470263 96.186502) (xy 164.4395 96.341155) (xy 161.2585 96.341155) (xy 161.2585 91.655954) (xy 161.227512 91.4603) (xy 161.207622 91.399087) (xy 161.166299 91.271904) (xy 161.076367 91.095403) (xy 160.95993 90.935142) (xy 160.959928 90.935139) (xy 160.959925 90.935136) (xy 159.491383 89.466595) (xy 159.457358 89.404283) (xy 159.462422 89.333468) (xy 159.491383 89.288405) (xy 160.959924 87.819864) (xy 160.95993 87.819858) (xy 161.076367 87.659598) (xy 161.078104 87.656189) (xy 161.135931 87.542695) (xy 161.135936 87.542683) (xy 161.135942 87.542672) (xy 161.166298 87.483097) (xy 161.227512 87.2947) (xy 161.2585 87.099046) (xy 161.2585 85.141155) (xy 164.4395 85.141155) (xy 164.4395 85.298844) (xy 164.445318 85.328093) (xy 164.470263 85.453497) (xy 164.530606 85.599179) (xy 164.618211 85.730289) (xy 164.729711 85.841789) (xy 164.860821 85.929394) (xy 165.006503 85.989737) (xy 165.161158 86.0205) (xy 165.161159 86.0205) (xy 165.318841 86.0205) (xy 165.318842 86.0205) (xy 165.473497 85.989737) (xy 165.619179 85.929394) (xy 165.750289 85.841789) (xy 165.809848 85.782229) (xy 165.872156 85.748207) (xy 165.942972 85.753271) (xy 165.999808 85.795817) (xy 166.011204 85.81412) (xy 166.075278 85.939871) (xy 166.202353 86.114775) (xy 166.202355 86.114777) (xy 166.202357 86.11478) (xy 166.355222 86.267645) (xy 166.520964 86.388064) (xy 166.564318 86.444287) (xy 166.570393 86.515023) (xy 166.537261 86.577814) (xy 166.520964 86.591936) (xy 166.355222 86.712354) (xy 166.202357 86.865219) (xy 166.202355 86.865222) (xy 166.07528 87.040125) (xy 165.977127 87.23276) (xy 165.910321 87.438367) (xy 165.91032 87.438371) (xy 165.8765 87.651903) (xy 165.8765 87.868097) (xy 165.91032 88.081629) (xy 165.910321 88.081632) (xy 165.972031 88.271556) (xy 165.977128 88.287241) (xy 166.037745 88.406209) (xy 166.07528 88.479874) (xy 166.09722 88.510072) (xy 166.202353 88.654775) (xy 166.202355 88.654777) (xy 166.202357 88.65478) (xy 166.286709 88.739132) (xy 166.320735 88.801444) (xy 166.31567 88.872259) (xy 166.273123 88.929095) (xy 166.241647 88.946282) (xy 166.139039 88.984553) (xy 166.139034 88.984555) (xy 166.022095 89.072095) (xy 165.934555 89.189034) (xy 165.934555 89.189035) (xy 165.883505 89.325906) (xy 165.877 89.386402) (xy 165.877 90.046) (xy 166.957749 90.046) (xy 166.924755 90.103147) (xy 166.89 90.232857) (xy 166.89 90.367143) (xy 166.924755 90.496853) (xy 166.957749 90.554) (xy 165.877 90.554) (xy 165.877 91.213597) (xy 165.883505 91.274093) (xy 165.934555 91.410964) (xy 165.934555 91.410965) (xy 166.022095 91.527904) (xy 166.139034 91.615444) (xy 166.275906 91.666494) (xy 166.336402 91.672999) (xy 166.336415 91.673) (xy 167.146 91.673) (xy 167.146 90.74225) (xy 167.203147 90.775245) (xy 167.332857 90.81) (xy 167.467143 90.81) (xy 167.596853 90.775245) (xy 167.654 90.74225) (xy 167.654 91.673) (xy 168.463585 91.673) (xy 168.463597 91.672999) (xy 168.524093 91.666494) (xy 168.660964 91.615444) (xy 168.660965 91.615444) (xy 168.777904 91.527904) (xy 168.865444 91.410965) (xy 168.865444 91.410964) (xy 168.916494 91.274093) (xy 168.922999 91.213597) (xy 168.923 91.213585) (xy 168.923 90.554) (xy 167.842251 90.554) (xy 167.875245 90.496853) (xy 167.91 90.367143) (xy 167.91 90.232857) (xy 167.875245 90.103147) (xy 167.842251 90.046) (xy 168.923 90.046) (xy 168.923 89.386414) (xy 168.922999 89.386402) (xy 168.916494 89.325906) (xy 168.865444 89.189035) (xy 168.865444 89.189034) (xy 168.777904 89.072095) (xy 168.660966 88.984556) (xy 168.558352 88.946283) (xy 168.501517 88.903736) (xy 168.476706 88.837215) (xy 168.491798 88.767841) (xy 168.513287 88.739134) (xy 168.597647 88.654775) (xy 168.724722 88.479871) (xy 168.822872 88.287241) (xy 168.88968 88.081629) (xy 168.9235 87.868097) (xy 168.9235 87.651903) (xy 168.88968 87.438371) (xy 168.822872 87.232759) (xy 168.724722 87.040129) (xy 168.597647 86.865225) (xy 168.597644 86.865222) (xy 168.597642 86.865219) (xy 168.44478 86.712357) (xy 168.444777 86.712355) (xy 168.444776 86.712354) (xy 168.444775 86.712353) (xy 168.279035 86.591936) (xy 168.235681 86.535714) (xy 168.229606 86.464978) (xy 168.262737 86.402186) (xy 168.279035 86.388064) (xy 168.281727 86.386107) (xy 168.444775 86.267647) (xy 168.597647 86.114775) (xy 168.724722 85.939871) (xy 168.822872 85.747241) (xy 168.88968 85.541629) (xy 168.9235 85.328097) (xy 168.9235 85.111903) (xy 168.88968 84.898371) (xy 168.822872 84.692759) (xy 168.724722 84.500129) (xy 168.597647 84.325225) (xy 168.597644 84.325222) (xy 168.597642 84.325219) (xy 168.44478 84.172357) (xy 168.444777 84.172355) (xy 168.444776 84.172354) (xy 168.444775 84.172353) (xy 168.279035 84.051936) (xy 168.235681 83.995714) (xy 168.229606 83.924978) (xy 168.262737 83.862186) (xy 168.279035 83.848064) (xy 168.290035 83.840072) (xy 168.444775 83.727647) (xy 168.597647 83.574775) (xy 168.724722 83.399871) (xy 168.822872 83.207241) (xy 168.88968 83.001629) (xy 168.9235 82.788097) (xy 168.9235 82.571903) (xy 168.88968 82.358371) (xy 168.822872 82.152759) (xy 168.724722 81.960129) (xy 168.597647 81.785225) (xy 168.597644 81.785222) (xy 168.597642 81.785219) (xy 168.44478 81.632357) (xy 168.444777 81.632355) (xy 168.444775 81.632353) (xy 168.269871 81.505278) (xy 168.077241 81.407128) (xy 168.07724 81.407127) (xy 168.077239 81.407127) (xy 167.871632 81.340321) (xy 167.871629 81.34032) (xy 167.658097 81.3065) (xy 167.141903 81.3065) (xy 166.928371 81.34032) (xy 166.928368 81.34032) (xy 166.928367 81.340321) (xy 166.72276 81.407127) (xy 166.530125 81.50528) (xy 166.355222 81.632355) (xy 166.355219 81.632357) (xy 166.202357 81.785219) (xy 166.202355 81.785222) (xy 166.07528 81.960125) (xy 165.977127 82.15276) (xy 165.919444 82.33029) (xy 165.91032 82.358371) (xy 165.8765 82.571903) (xy 165.8765 82.788097) (xy 165.91032 83.001629) (xy 165.914811 83.015452) (xy 165.952483 83.131394) (xy 165.977128 83.207241) (xy 166.075278 83.399871) (xy 166.202353 83.574775) (xy 166.202355 83.574777) (xy 166.202357 83.57478) (xy 166.355222 83.727645) (xy 166.520964 83.848064) (xy 166.564318 83.904287) (xy 166.570393 83.975023) (xy 166.537261 84.037814) (xy 166.520964 84.051936) (xy 166.355222 84.172354) (xy 166.202357 84.325219) (xy 166.202355 84.325222) (xy 166.075279 84.500125) (xy 166.011207 84.625875) (xy 165.962458 84.67749) (xy 165.893543 84.694556) (xy 165.826342 84.671655) (xy 165.809845 84.657767) (xy 165.750291 84.598213) (xy 165.750289 84.598211) (xy 165.619179 84.510606) (xy 165.473497 84.450263) (xy 165.318844 84.4195) (xy 165.318842 84.4195) (xy 165.161158 84.4195) (xy 165.161155 84.4195) (xy 165.006502 84.450263) (xy 165.006497 84.450265) (xy 164.86082 84.510606) (xy 164.729715 84.598208) (xy 164.729708 84.598213) (xy 164.618213 84.709708) (xy 164.618208 84.709715) (xy 164.530606 84.84082) (xy 164.470265 84.986497) (xy 164.470263 84.986502) (xy 164.4395 85.141155) (xy 161.2585 85.141155) (xy 161.2585 80.430954) (xy 161.227512 80.2353) (xy 161.19469 80.134284) (xy 161.166299 80.046904) (xy 161.076367 79.870403) (xy 160.995596 79.759232) (xy 160.959928 79.710139) (xy 160.959925 79.710136) (xy 158.568654 77.318866) (xy 158.542362 77.280386) (xy 158.49886 77.181209) (xy 158.381554 77.001658) (xy 158.375724 76.992734) (xy 158.37572 76.992729) (xy 158.232314 76.836951) (xy 158.22324 76.827094) (xy 158.223239 76.827093) (xy 158.223237 76.827091) (xy 158.096497 76.728445) (xy 158.045576 76.688811) (xy 158.012319 76.670813) (xy 157.961929 76.620802) (xy 157.946576 76.551485) (xy 157.971136 76.484872) (xy 158.01232 76.449186) (xy 158.017287 76.446498) (xy 158.045576 76.431189) (xy 158.22324 76.292906) (xy 158.375722 76.127268) (xy 158.49886 75.938791) (xy 158.589296 75.732616) (xy 158.644564 75.514368) (xy 158.663156 75.29) (xy 158.644564 75.065632) (xy 158.637381 75.037268) (xy 158.589297 74.847387) (xy 158.589296 74.847386) (xy 158.589296 74.847384) (xy 158.49886 74.641209) (xy 158.476039 74.606279) (xy 158.375724 74.452734) (xy 158.375719 74.452729) (xy 158.355061 74.430289) (xy 158.232524 74.297179) (xy 158.201103 74.233514) (xy 158.20909 74.162968) (xy 158.253948 74.107939) (xy 158.281183 74.093789) (xy 158.396204 74.050889) (xy 158.406508 74.043176) (xy 158.513261 73.963261) (xy 158.600887 73.846207) (xy 158.600887 73.846206) (xy 158.600889 73.846204) (xy 158.64496 73.728045) (xy 158.651988 73.709204) (xy 158.65199 73.709196) (xy 158.658499 73.648649) (xy 158.6585 73.648632) (xy 158.6585 71.851367) (xy 158.658499 71.85135) (xy 158.65199 71.790803) (xy 158.651988 71.790795) (xy 158.600889 71.653797) (xy 158.600887 71.653792) (xy 158.513261 71.536738) (xy 158.396207 71.449112) (xy 158.396202 71.44911) (xy 158.259204 71.398011) (xy 158.259196 71.398009) (xy 158.198649 71.3915) (xy 158.198638 71.3915) (xy 156.401362 71.3915) (xy 156.40135 71.3915) (xy 156.340803 71.398009) (xy 156.340795 71.398011) (xy 156.203797 71.44911) (xy 156.203792 71.449112) (xy 156.086738 71.536738) (xy 155.999112 71.653792) (xy 155.99911 71.653797) (xy 155.948011 71.790795) (xy 155.948009 71.790803) (xy 155.9415 71.85135) (xy 155.9415 73.648649) (xy 155.948009 73.709196) (xy 155.948011 73.709204) (xy 155.99911 73.846202) (xy 155.999112 73.846207) (xy 156.086738 73.963261) (xy 156.203791 74.050886) (xy 156.203792 74.050886) (xy 156.203796 74.050889) (xy 156.31881 74.093787) (xy 156.375642 74.136332) (xy 156.400453 74.202852) (xy 156.385362 74.272226) (xy 156.367475 74.297179) (xy 156.22428 74.452729) (xy 156.224275 74.452734) (xy 156.101141 74.641206) (xy 156.010703 74.847386) (xy 156.010702 74.847387) (xy 155.955437 75.065624) (xy 155.955436 75.06563) (xy 155.955436 75.065632) (xy 155.936844 75.29) (xy 155.954981 75.508882) (xy 155.955437 75.514375) (xy 156.010702 75.732612) (xy 156.010703 75.732613) (xy 156.010704 75.732616) (xy 156.096602 75.928445) (xy 156.101141 75.938793) (xy 156.224275 76.127265) (xy 156.224279 76.12727) (xy 156.376762 76.292908) (xy 156.431331 76.335381) (xy 156.554424 76.431189) (xy 156.582713 76.446498) (xy 156.58768 76.449186) (xy 156.638071 76.4992) (xy 156.653423 76.568516) (xy 156.628862 76.635129) (xy 156.58768 76.670813) (xy 156.554426 76.68881) (xy 156.554424 76.688811) (xy 156.376762 76.827091) (xy 156.224279 76.992729) (xy 156.224275 76.992734) (xy 156.101141 77.181206) (xy 156.010703 77.387386) (xy 156.010702 77.387387) (xy 155.955437 77.605624) (xy 155.955436 77.60563) (xy 155.955436 77.605632) (xy 155.936844 77.83) (xy 155.953054 78.025624) (xy 155.955437 78.054375) (xy 156.010702 78.272612) (xy 156.010703 78.272613) (xy 156.010704 78.272616) (xy 156.040919 78.3415) (xy 156.101141 78.478793) (xy 156.224275 78.667265) (xy 156.224279 78.66727) (xy 156.376762 78.832908) (xy 156.382157 78.837107) (xy 156.554424 78.971189) (xy 156.752426 79.078342) (xy 156.752436 79.078345) (xy 156.7572 79.080436) (xy 156.756601 79.081799) (xy 156.797598 79.107386) (xy 158.704595 81.014383) (xy 158.738621 81.076695) (xy 158.7415 81.103478) (xy 158.7415 82.68806) (xy 158.721498 82.756181) (xy 158.667842 82.802674) (xy 158.597568 82.812778) (xy 158.532988 82.783284) (xy 158.514636 82.763574) (xy 158.513263 82.76174) (xy 158.396207 82.674112) (xy 158.396204 82.674111) (xy 158.265466 82.625347) (xy 158.208631 82.5828) (xy 158.183821 82.51628) (xy 158.1835 82.507292) (xy 158.1835 81.412987) (xy 158.1835 81.412983) (xy 158.176363 81.377104) (xy 158.174139 81.365925) (xy 158.169503 81.342616) (xy 158.149548 81.242292) (xy 158.082948 81.081506) (xy 157.986259 80.936802) (xy 157.986254 80.936796) (xy 153.020405 75.970947) (xy 152.986379 75.908635) (xy 152.9835 75.881852) (xy 152.9835 75.3) (xy 153.486496 75.3) (xy 153.506457 75.489927) (xy 153.530922 75.565219) (xy 153.565473 75.671556) (xy 153.565476 75.671561) (xy 153.660958 75.836941) (xy 153.660965 75.836951) (xy 153.788744 75.978864) (xy 153.788747 75.978866) (xy 153.943248 76.091118) (xy 154.117712 76.168794) (xy 154.304513 76.2085) (xy 154.495487 76.2085) (xy 154.682288 76.168794) (xy 154.856752 76.091118) (xy 155.011253 75.978866) (xy 155.130381 75.846561) (xy 155.139034 75.836951) (xy 155.139035 75.836949) (xy 155.13904 75.836944) (xy 155.234527 75.671556) (xy 155.293542 75.489928) (xy 155.313504 75.3) (xy 155.293542 75.110072) (xy 155.234527 74.928444) (xy 155.13904 74.763056) (xy 155.073023 74.689737) (xy 155.040863 74.654019) (xy 155.010146 74.590012) (xy 155.0085 74.569709) (xy 155.0085 71.204239) (xy 155.028502 71.136118) (xy 155.045405 71.115144) (xy 156.415144 69.745405) (xy 156.477456 69.711379) (xy 156.504239 69.7085) (xy 165.895761 69.7085) (xy 165.963882 69.728502) (xy 165.984856 69.745405) (xy 166.376348 70.136897) (xy 166.410374 70.199209) (xy 166.405309 70.270024) (xy 166.362762 70.32686) (xy 166.361318 70.327925) (xy 166.355228 70.332349) (xy 166.355221 70.332355) (xy 166.202357 70.485219) (xy 166.202355 70.485222) (xy 166.07528 70.660125) (xy 165.977127 70.85276) (xy 165.925484 71.011701) (xy 165.91032 71.058371) (xy 165.8765 71.271903) (xy 165.8765 71.488097) (xy 165.91032 71.701629) (xy 165.910321 71.701632) (xy 165.969141 71.882662) (xy 165.977128 71.907241) (xy 166.075278 72.099871) (xy 166.202353 72.274775) (xy 166.202355 72.274777) (xy 166.202357 72.27478) (xy 166.355222 72.427645) (xy 166.520964 72.548064) (xy 166.564318 72.604287) (xy 166.570393 72.675023) (xy 166.537261 72.737814) (xy 166.520964 72.751936) (xy 166.355222 72.872354) (xy 166.202357 73.025219) (xy 166.202355 73.025222) (xy 166.075279 73.200125) (xy 166.011207 73.325875) (xy 165.962458 73.37749) (xy 165.893543 73.394556) (xy 165.826342 73.371655) (xy 165.809845 73.357767) (xy 165.750291 73.298213) (xy 165.750289 73.298211) (xy 165.619179 73.210606) (xy 165.473497 73.150263) (xy 165.318844 73.1195) (xy 165.318842 73.1195) (xy 165.161158 73.1195) (xy 165.161155 73.1195) (xy 165.006502 73.150263) (xy 165.006497 73.150265) (xy 164.86082 73.210606) (xy 164.729715 73.298208) (xy 164.729708 73.298213) (xy 164.618213 73.409708) (xy 164.618208 73.409715) (xy 164.530606 73.54082) (xy 164.470265 73.686497) (xy 164.470263 73.686502) (xy 164.4395 73.841155) (xy 164.4395 73.998844) (xy 164.470263 74.153497) (xy 164.470265 74.153502) (xy 164.483651 74.185819) (xy 164.530606 74.299179) (xy 164.618211 74.430289) (xy 164.729711 74.541789) (xy 164.860821 74.629394) (xy 165.006503 74.689737) (xy 165.161158 74.7205) (xy 165.161159 74.7205) (xy 165.318841 74.7205) (xy 165.318842 74.7205) (xy 165.473497 74.689737) (xy 165.619179 74.629394) (xy 165.750289 74.541789) (xy 165.809848 74.482229) (xy 165.872156 74.448207) (xy 165.942972 74.453271) (xy 165.999808 74.495817) (xy 166.011204 74.51412) (xy 166.075278 74.639871) (xy 166.202353 74.814775) (xy 166.202355 74.814777) (xy 166.202357 74.81478) (xy 166.355222 74.967645) (xy 166.520964 75.088064) (xy 166.564318 75.144287) (xy 166.570393 75.215023) (xy 166.537261 75.277814) (xy 166.520964 75.291936) (xy 166.355222 75.412354) (xy 166.202357 75.565219) (xy 166.202355 75.565222) (xy 166.07528 75.740125) (xy 165.977127 75.93276) (xy 165.913927 76.12727) (xy 165.91032 76.138371) (xy 165.8765 76.351903) (xy 165.8765 76.568097) (xy 165.91032 76.781629) (xy 165.910321 76.781632) (xy 165.974406 76.978866) (xy 165.977128 76.987241) (xy 166.075278 77.179871) (xy 166.202353 77.354775) (xy 166.202355 77.354777) (xy 166.202357 77.35478) (xy 166.286709 77.439132) (xy 166.320735 77.501444) (xy 166.31567 77.572259) (xy 166.273123 77.629095) (xy 166.241647 77.646282) (xy 166.139039 77.684553) (xy 166.139034 77.684555) (xy 166.022095 77.772095) (xy 165.934555 77.889034) (xy 165.934555 77.889035) (xy 165.883505 78.025906) (xy 165.877 78.086402) (xy 165.877 78.746) (xy 166.957749 78.746) (xy 166.924755 78.803147) (xy 166.89 78.932857) (xy 166.89 79.067143) (xy 166.924755 79.196853) (xy 166.957749 79.254) (xy 165.877 79.254) (xy 165.877 79.913597) (xy 165.883505 79.974093) (xy 165.934555 80.110964) (xy 165.934555 80.110965) (xy 166.022095 80.227904) (xy 166.139034 80.315444) (xy 166.275906 80.366494) (xy 166.336402 80.372999) (xy 166.336415 80.373) (xy 167.146 80.373) (xy 167.146 79.44225) (xy 167.203147 79.475245) (xy 167.332857 79.51) (xy 167.467143 79.51) (xy 167.596853 79.475245) (xy 167.654 79.44225) (xy 167.654 80.373) (xy 168.463585 80.373) (xy 168.463597 80.372999) (xy 168.524093 80.366494) (xy 168.660964 80.315444) (xy 168.660965 80.315444) (xy 168.777904 80.227904) (xy 168.865444 80.110965) (xy 168.865444 80.110964) (xy 168.916494 79.974093) (xy 168.922999 79.913597) (xy 168.923 79.913585) (xy 168.923 79.254) (xy 167.842251 79.254) (xy 167.875245 79.196853) (xy 167.91 79.067143) (xy 167.91 78.932857) (xy 167.875245 78.803147) (xy 167.842251 78.746) (xy 168.923 78.746) (xy 168.923 78.086414) (xy 168.922999 78.086402) (xy 168.916494 78.025906) (xy 168.865444 77.889035) (xy 168.865444 77.889034) (xy 168.777904 77.772095) (xy 168.660966 77.684556) (xy 168.558352 77.646283) (xy 168.501517 77.603736) (xy 168.476706 77.537215) (xy 168.491798 77.467841) (xy 168.513287 77.439134) (xy 168.597647 77.354775) (xy 168.724722 77.179871) (xy 168.822872 76.987241) (xy 168.88968 76.781629) (xy 168.9235 76.568097) (xy 168.9235 76.351903) (xy 168.88968 76.138371) (xy 168.822872 75.932759) (xy 168.724722 75.740129) (xy 168.597647 75.565225) (xy 168.597644 75.565222) (xy 168.597642 75.565219) (xy 168.44478 75.412357) (xy 168.444777 75.412355) (xy 168.444776 75.412354) (xy 168.444775 75.412353) (xy 168.279035 75.291936) (xy 168.235681 75.235714) (xy 168.229606 75.164978) (xy 168.262737 75.102186) (xy 168.279035 75.088064) (xy 168.309921 75.065624) (xy 168.444775 74.967647) (xy 168.597647 74.814775) (xy 168.724722 74.639871) (xy 168.822872 74.447241) (xy 168.88968 74.241629) (xy 168.9235 74.028097) (xy 168.9235 73.811903) (xy 168.88968 73.598371) (xy 168.822872 73.392759) (xy 168.724722 73.200129) (xy 168.597647 73.025225) (xy 168.597644 73.025222) (xy 168.597642 73.025219) (xy 168.44478 72.872357) (xy 168.444777 72.872355) (xy 168.444776 72.872354) (xy 168.444775 72.872353) (xy 168.279035 72.751936) (xy 168.235681 72.695714) (xy 168.229606 72.624978) (xy 168.262737 72.562186) (xy 168.279035 72.548064) (xy 168.281727 72.546107) (xy 168.444775 72.427647) (xy 168.597647 72.274775) (xy 168.724722 72.099871) (xy 168.822872 71.907241) (xy 168.88968 71.701629) (xy 168.9235 71.488097) (xy 168.9235 71.271903) (xy 168.88968 71.058371) (xy 168.822872 70.852759) (xy 168.724722 70.660129) (xy 168.597647 70.485225) (xy 168.597644 70.485222) (xy 168.597642 70.485219) (xy 168.44478 70.332357) (xy 168.444777 70.332355) (xy 168.444775 70.332353) (xy 168.269871 70.205278) (xy 168.077241 70.107128) (xy 168.077238 70.107127) (xy 168.077236 70.107126) (xy 168.077237 70.107126) (xy 168.017428 70.087692) (xy 167.958823 70.047618) (xy 167.947248 70.03086) (xy 167.886923 69.926375) (xy 167.886915 69.926365) (xy 166.573633 68.613083) (xy 166.573623 68.613075) (xy 166.434877 68.53297) (xy 166.434874 68.532969) (xy 166.434873 68.532968) (xy 166.434871 68.532967) (xy 166.43487 68.532967) (xy 166.357491 68.512234) (xy 166.280111 68.4915) (xy 156.119889 68.4915) (xy 156.036955 68.513722) (xy 155.96513 68.532967) (xy 155.965123 68.53297) (xy 155.863748 68.5915) (xy 155.826375 68.613076) (xy 155.826365 68.613084) (xy 153.913083 70.526366) (xy 153.913075 70.526376) (xy 153.832969 70.665123) (xy 153.832967 70.665128) (xy 153.821433 70.708177) (xy 153.821433 70.708178) (xy 153.818332 70.719753) (xy 153.7915 70.81989) (xy 153.7915 74.569709) (xy 153.771498 74.63783) (xy 153.759137 74.654019) (xy 153.660961 74.763054) (xy 153.660958 74.763058) (xy 153.581112 74.901356) (xy 153.565473 74.928444) (xy 153.56235 74.938056) (xy 153.506457 75.110072) (xy 153.486496 75.3) (xy 152.9835 75.3) (xy 152.9835 58.671701) (xy 152.983499 58.671697) (xy 152.970798 58.607843) (xy 152.949548 58.50101) (xy 152.948501 58.498483) (xy 152.917948 58.424719) (xy 152.882948 58.340222) (xy 152.839553 58.275278) (xy 152.786259 58.195519) (xy 152.786258 58.195518) (xy 152.786256 58.195515) (xy 152.786254 58.195513) (xy 150.504487 55.913745) (xy 150.504481 55.91374) (xy 150.456466 55.881657) (xy 150.359778 55.817052) (xy 150.198991 55.750452) (xy 150.170667 55.744818) (xy 150.028303 55.7165) (xy 150.0283 55.7165) (xy 130.983961 55.7165) (xy 130.983955 55.7165) (xy 130.841589 55.744818) (xy 130.841589 55.744819) (xy 130.832149 55.746696) (xy 130.813268 55.750452) (xy 130.813258 55.750455) (xy 130.758913 55.772967) (xy 130.758912 55.772968) (xy 130.652484 55.817051) (xy 130.642165 55.823947) (xy 130.642157 55.823951) (xy 130.507783 55.913737) (xy 130.507776 55.913743) (xy 128.353854 58.067664) (xy 128.291542 58.10169) (xy 128.284472 58.103017) (xy 128.238373 58.110319) (xy 128.03276 58.177127) (xy 127.840125 58.27528) (xy 127.665222 58.402355) (xy 127.665219 58.402357) (xy 127.512354 58.555222) (xy 127.391936 58.720964) (xy 127.335713 58.764318) (xy 127.264977 58.770393) (xy 127.202186 58.737261) (xy 127.188064 58.720964) (xy 127.067645 58.555222) (xy 126.91478 58.402357) (xy 126.914777 58.402355) (xy 126.914775 58.402353) (xy 126.739871 58.275278) (xy 126.547241 58.177128) (xy 126.54724 58.177127) (xy 126.547239 58.177127) (xy 126.341632 58.110321) (xy 126.341629 58.11032) (xy 126.128097 58.0765) (xy 125.911903 58.0765) (xy 125.698371 58.11032) (xy 125.698368 58.11032) (xy 125.698367 58.110321) (xy 125.49276 58.177127) (xy 125.300125 58.27528) (xy 125.125222 58.402355) (xy 125.125219 58.402357) (xy 124.972354 58.555222) (xy 124.851936 58.720964) (xy 124.795713 58.764318) (xy 124.724977 58.770393) (xy 124.662186 58.737261) (xy 124.648064 58.720964) (xy 124.527645 58.555222) (xy 124.37478 58.402357) (xy 124.374777 58.402355) (xy 124.374775 58.402353) (xy 124.199871 58.275278) (xy 124.007241 58.177128) (xy 124.00724 58.177127) (xy 124.007239 58.177127) (xy 123.801632 58.110321) (xy 123.801629 58.11032) (xy 123.588097 58.0765) (xy 123.371903 58.0765) (xy 123.158371 58.11032) (xy 123.158368 58.11032) (xy 123.158367 58.110321) (xy 122.95276 58.177127) (xy 122.760125 58.27528) (xy 122.585222 58.402355) (xy 122.585219 58.402357) (xy 122.432357 58.555219) (xy 122.432355 58.555222) (xy 122.30528 58.730125) (xy 122.207127 58.92276) (xy 122.141521 59.124674) (xy 122.14032 59.128371) (xy 122.1065 59.341903) (xy 122.1065 59.858097) (xy 122.14032 60.071629) (xy 122.140321 60.071632) (xy 122.164535 60.146156) (xy 122.207128 60.277241) (xy 122.305278 60.469871) (xy 122.432353 60.644775) (xy 122.432355 60.644777) (xy 122.432357 60.64478) (xy 122.585219 60.797642) (xy 122.585222 60.797644) (xy 122.585225 60.797647) (xy 122.760129 60.924722) (xy 122.952759 61.022872) (xy 123.158371 61.08968) (xy 123.371903 61.1235) (xy 123.371906 61.1235) (xy 123.588094 61.1235) (xy 123.588097 61.1235) (xy 123.801629 61.08968) (xy 124.007241 61.022872) (xy 124.199871 60.924722) (xy 124.374775 60.797647) (xy 124.527647 60.644775) (xy 124.648064 60.479035) (xy 124.704286 60.435681) (xy 124.775022 60.429606) (xy 124.837814 60.462737) (xy 124.851936 60.479035) (xy 124.972353 60.644775) (xy 124.972355 60.644777) (xy 124.972357 60.64478) (xy 125.125219 60.797642) (xy 125.125222 60.797644) (xy 125.125225 60.797647) (xy 125.300129 60.924722) (xy 125.425876 60.988793) (xy 125.47749 61.03754) (xy 125.494556 61.106455) (xy 125.471655 61.173657) (xy 125.457768 61.190154) (xy 125.398209 61.249713) (xy 125.398208 61.249715) (xy 125.310606 61.38082) (xy 125.250265 61.526497) (xy 125.250263 61.526502) (xy 125.2195 61.681155) (xy 125.2195 61.681158) (xy 125.2195 61.838842) (xy 125.231752 61.90044) (xy 125.225425 61.971152) (xy 125.181872 62.02722) (xy 125.114919 62.05084) (xy 125.108174 62.051021) (xy 124.510368 62.051021) (xy 124.376059 62.087009) (xy 124.376058 62.087008) (xy 124.355604 62.092489) (xy 124.216855 62.172596) (xy 124.216849 62.172601) (xy 124.154447 62.235004) (xy 123.984854 62.404596) (xy 123.922544 62.43862) (xy 123.895761 62.4415) (xy 123.804513 62.4415) (xy 123.617711 62.481206) (xy 123.443247 62.558882) (xy 123.288744 62.671135) (xy 123.160965 62.813048) (xy 123.160958 62.813058) (xy 123.065476 62.978438) (xy 123.065473 62.978445) (xy 123.006457 63.160072) (xy 122.986496 63.35) (xy 123.006457 63.539927) (xy 123.035384 63.628953) (xy 123.065473 63.721556) (xy 123.065476 63.721561) (xy 123.160958 63.886941) (xy 123.160965 63.886951) (xy 123.288744 64.028864) (xy 123.288747 64.028866) (xy 123.443248 64.141118) (xy 123.617712 64.218794) (xy 123.804513 64.2585) (xy 123.995487 64.2585) (xy 124.182288 64.218794) (xy 124.356752 64.141118) (xy 124.511253 64.028866) (xy 124.63904 63.886944) (xy 124.734527 63.721556) (xy 124.793542 63.539928) (xy 124.810261 63.380849) (xy 124.837274 63.315194) (xy 124.895495 63.274564) (xy 124.935571 63.268021) (xy 126.8655 63.268021) (xy 126.933621 63.288023) (xy 126.980114 63.341679) (xy 126.9915 63.394021) (xy 126.9915 102.330075) (xy 126.971498 102.398196) (xy 126.954595 102.41917) (xy 125.757119 103.616647) (xy 125.616649 103.757116) (xy 125.616644 103.757123) (xy 125.506279 103.922296) (xy 125.430258 104.105825) (xy 125.430256 104.10583) (xy 125.3915 104.300668) (xy 125.3915 116.299331) (xy 125.397441 116.329198) (xy 125.427513 116.480381) (xy 125.430257 116.494172) (xy 125.452204 116.547156) (xy 125.48967 116.637606) (xy 125.506279 116.677704) (xy 125.616647 116.842881) (xy 125.616649 116.842883) (xy 128.526819 119.753054) (xy 128.560845 119.815366) (xy 128.55578 119.886182) (xy 128.538592 119.917658) (xy 128.474113 120.003792) (xy 128.474111 120.003795) (xy 128.43 120.122058) (xy 128.387453 120.178893) (xy 128.320932 120.203703) (xy 128.251558 120.188611) (xy 128.219246 120.163363) (xy 128.15824 120.097094) (xy 128.158239 120.097093) (xy 128.158237 120.097091) (xy 128.062531 120.0226) (xy 127.980576 119.958811) (xy 127.782574 119.851658) (xy 127.782572 119.851657) (xy 127.782571 119.851656) (xy 127.569639 119.778557) (xy 127.56963 119.778555) (xy 127.525476 119.771187) (xy 127.347569 119.7415) (xy 127.122431 119.7415) (xy 126.974211 119.766233) (xy 126.900369 119.778555) (xy 126.90036 119.778557) (xy 126.687428 119.851656) (xy 126.687426 119.851658) (xy 126.508936 119.948252) (xy 126.489426 119.95881) (xy 126.489424 119.958811) (xy 126.311762 120.097091) (xy 126.159279 120.262729) (xy 126.070483 120.398643) (xy 126.016479 120.444731) (xy 125.946131 120.454306) (xy 125.881774 120.424329) (xy 125.859517 120.398643) (xy 125.77072 120.262729) (xy 125.618237 120.097091) (xy 125.522531 120.0226) (xy 125.440576 119.958811) (xy 125.242574 119.851658) (xy 125.242572 119.851657) (xy 125.242571 119.851656) (xy 125.029639 119.778557) (xy 125.02963 119.778555) (xy 124.985476 119.771187) (xy 124.807569 119.7415) (xy 124.582431 119.7415) (xy 124.434211 119.766233) (xy 124.360369 119.778555) (xy 124.36036 119.778557) (xy 124.147428 119.851656) (xy 124.147426 119.851658) (xy 123.968936 119.948252) (xy 123.949426 119.95881) (xy 123.949424 119.958811) (xy 123.771762 120.097091) (xy 123.619277 120.262733) (xy 123.554425 120.361994) (xy 123.538038 120.382172) (xy 122.215615 121.704596) (xy 122.153305 121.73862) (xy 122.126522 121.7415) (xy 119.7595 121.7415) (xy 119.691379 121.721498) (xy 119.644886 121.667842) (xy 119.6335 121.6155) (xy 119.6335 120.201367) (xy 119.633499 120.20135) (xy 119.62699 120.140803) (xy 119.626988 120.140795) (xy 119.582904 120.022604) (xy 119.575889 120.003796) (xy 119.575887 120.003793) (xy 119.575887 120.003792) (xy 119.488261 119.886738) (xy 119.371203 119.79911) (xy 119.365462 119.796969) (xy 119.308628 119.754419) (xy 119.283821 119.687898) (xy 119.2835 119.678915) (xy 119.2835 119.575672) (xy 119.283499 119.575668) (xy 119.244744 119.380831) (xy 119.203323 119.280832) (xy 119.168722 119.197297) (xy 119.058354 119.032119) (xy 115.585405 115.55917) (xy 115.551379 115.496858) (xy 115.5485 115.470075) (xy 115.5485 106.30625) (xy 116.280246 106.30625) (xy 116.300207 106.496177) (xy 116.318325 106.551936) (xy 116.359223 106.677806) (xy 116.359226 106.677811) (xy 116.454708 106.843191) (xy 116.454715 106.843201) (xy 116.582494 106.985114) (xy 116.617581 107.010606) (xy 116.736998 107.097368) (xy 116.911462 107.175044) (xy 117.098263 107.21475) (xy 117.289237 107.21475) (xy 117.476038 107.175044) (xy 117.650502 107.097368) (xy 117.805003 106.985116) (xy 117.88147 106.900189) (xy 117.941916 106.86295) (xy 117.975107 106.8585) (xy 122.01929 106.8585) (xy 122.087411 106.878502) (xy 122.112926 106.90019) (xy 122.138744 106.928864) (xy 122.138747 106.928866) (xy 122.293248 107.041118) (xy 122.467712 107.118794) (xy 122.654513 107.1585) (xy 122.845487 107.1585) (xy 123.032288 107.118794) (xy 123.206752 107.041118) (xy 123.361253 106.928866) (xy 123.415343 106.868793) (xy 123.489034 106.786951) (xy 123.489038 106.786946) (xy 123.48904 106.786944) (xy 123.584527 106.621556) (xy 123.643542 106.439928) (xy 123.663504 106.25) (xy 123.643542 106.060072) (xy 123.584527 105.878444) (xy 123.48904 105.713056) (xy 123.489038 105.713054) (xy 123.489034 105.713048) (xy 123.361255 105.571135) (xy 123.206752 105.458882) (xy 123.032288 105.381206) (xy 122.845487 105.3415) (xy 122.654513 105.3415) (xy 122.467711 105.381206) (xy 122.293247 105.458882) (xy 122.138744 105.571135) (xy 122.112926 105.59981) (xy 122.05248 105.63705) (xy 122.01929 105.6415) (xy 117.865372 105.6415) (xy 117.797251 105.621498) (xy 117.791311 105.617436) (xy 117.650502 105.515132) (xy 117.476038 105.437456) (xy 117.289237 105.39775) (xy 117.098263 105.39775) (xy 116.911461 105.437456) (xy 116.736997 105.515132) (xy 116.582494 105.627385) (xy 116.454715 105.769298) (xy 116.454708 105.769308) (xy 116.359226 105.934688) (xy 116.359223 105.934695) (xy 116.300207 106.116322) (xy 116.280246 106.30625) (xy 115.5485 106.30625) (xy 115.5485 94.069924) (xy 115.568502 94.001803) (xy 115.585405 93.980829) (xy 115.848132 93.718102) (xy 116.283353 93.282881) (xy 116.393721 93.117704) (xy 116.437243 93.012633) (xy 116.469744 92.934169) (xy 116.5085 92.739329) (xy 116.5085 91.700671) (xy 116.5085 90.860671) (xy 116.469744 90.665831) (xy 116.393721 90.482296) (xy 116.283353 90.317119) (xy 116.142881 90.176647) (xy 115.585405 89.619171) (xy 115.551379 89.556859) (xy 115.5485 89.530076) (xy 115.5485 80.00135) (xy 116.3415 80.00135) (xy 116.3415 81.798649) (xy 116.348009 81.859196) (xy 116.348011 81.859204) (xy 116.39911 81.996202) (xy 116.399112 81.996207) (xy 116.486738 82.113261) (xy 116.603792 82.200887) (xy 116.603794 82.200888) (xy 116.603796 82.200889) (xy 116.6576 82.220957) (xy 116.740795 82.251988) (xy 116.740803 82.25199) (xy 116.80135 82.258499) (xy 116.801355 82.258499) (xy 116.801362 82.2585) (xy 116.801368 82.2585) (xy 118.598632 82.2585) (xy 118.598638 82.2585) (xy 118.598645 82.258499) (xy 118.598649 82.258499) (xy 118.659196 82.25199) (xy 118.659199 82.251989) (xy 118.659201 82.251989) (xy 118.796204 82.200889) (xy 118.824328 82.179836) (xy 118.913261 82.113261) (xy 119.000886 81.996208) (xy 119.000885 81.996208) (xy 119.000889 81.996204) (xy 119.045196 81.877413) (xy 119.087741 81.820581) (xy 119.154262 81.79577) (xy 119.223636 81.810862) (xy 119.255952 81.836112) (xy 119.317097 81.902534) (xy 119.494698 82.040767) (xy 119.494699 82.040768) (xy 119.692628 82.147882) (xy 119.69263 82.147883) (xy 119.905483 82.220955) (xy 119.905492 82.220957) (xy 119.986 82.234391) (xy 119.986 81.330702) (xy 120.047007 81.365925) (xy 120.174174 81.4) (xy 120.305826 81.4) (xy 120.432993 81.365925) (xy 120.494 81.330702) (xy 120.494 82.23439) (xy 120.574507 82.220957) (xy 120.574516 82.220955) (xy 120.787369 82.147883) (xy 120.787371 82.147882) (xy 120.9853 82.040768) (xy 120.985301 82.040767) (xy 121.162902 81.902534) (xy 121.315327 81.736955) (xy 121.404217 81.600899) (xy 121.45822 81.55481) (xy 121.528568 81.545235) (xy 121.592925 81.575212) (xy 121.615183 81.600898) (xy 121.704279 81.73727) (xy 121.856762 81.902908) (xy 121.876341 81.918147) (xy 122.034424 82.041189) (xy 122.232426 82.148342) (xy 122.232427 82.148342) (xy 122.232428 82.148343) (xy 122.2593 82.157568) (xy 122.445365 82.221444) (xy 122.667431 82.2585) (xy 122.667435 82.2585) (xy 122.892565 82.2585) (xy 122.892569 82.2585) (xy 123.114635 82.221444) (xy 123.327574 82.148342) (xy 123.525576 82.041189) (xy 123.70324 81.902906) (xy 123.855722 81.737268) (xy 123.855927 81.736955) (xy 123.886017 81.690898) (xy 123.944518 81.601354) (xy 123.99852 81.555268) (xy 124.068868 81.545692) (xy 124.133225 81.575669) (xy 124.15548 81.601353) (xy 124.188607 81.652058) (xy 124.244275 81.737265) (xy 124.244279 81.73727) (xy 124.396762 81.902908) (xy 124.416341 81.918147) (xy 124.574424 82.041189) (xy 124.772426 82.148342) (xy 124.772427 82.148342) (xy 124.772428 82.148343) (xy 124.7993 82.157568) (xy 124.985365 82.221444) (xy 125.207431 82.2585) (xy 125.207435 82.2585) (xy 125.432565 82.2585) (xy 125.432569 82.2585) (xy 125.654635 82.221444) (xy 125.867574 82.148342) (xy 126.065576 82.041189) (xy 126.24324 81.902906) (xy 126.395722 81.737268) (xy 126.395927 81.736955) (xy 126.44457 81.6625) (xy 126.51886 81.548791) (xy 126.609296 81.342616) (xy 126.664564 81.124368) (xy 126.683156 80.9) (xy 126.664564 80.675632) (xy 126.643637 80.592993) (xy 126.609297 80.457387) (xy 126.609296 80.457386) (xy 126.609296 80.457384) (xy 126.51886 80.251209) (xy 126.501597 80.224786) (xy 126.395724 80.062734) (xy 126.39572 80.062729) (xy 126.27957 79.936559) (xy 126.24324 79.897094) (xy 126.243239 79.897093) (xy 126.243237 79.897091) (xy 126.123367 79.803792) (xy 126.065576 79.758811) (xy 125.867574 79.651658) (xy 125.867572 79.651657) (xy 125.867571 79.651656) (xy 125.654639 79.578557) (xy 125.65463 79.578555) (xy 125.577029 79.565606) (xy 125.432569 79.5415) (xy 125.207431 79.5415) (xy 125.062971 79.565606) (xy 124.985369 79.578555) (xy 124.98536 79.578557) (xy 124.772428 79.651656) (xy 124.772426 79.651658) (xy 124.574426 79.75881) (xy 124.574424 79.758811) (xy 124.396762 79.897091) (xy 124.244279 80.062729) (xy 124.155483 80.198643) (xy 124.101479 80.244731) (xy 124.031131 80.254306) (xy 123.966774 80.224329) (xy 123.944517 80.198643) (xy 123.85572 80.062729) (xy 123.73957 79.936559) (xy 123.70324 79.897094) (xy 123.703239 79.897093) (xy 123.703237 79.897091) (xy 123.583367 79.803792) (xy 123.525576 79.758811) (xy 123.327574 79.651658) (xy 123.327572 79.651657) (xy 123.327571 79.651656) (xy 123.114639 79.578557) (xy 123.11463 79.578555) (xy 123.037029 79.565606) (xy 122.892569 79.5415) (xy 122.667431 79.5415) (xy 122.522971 79.565606) (xy 122.445369 79.578555) (xy 122.44536 79.578557) (xy 122.232428 79.651656) (xy 122.232426 79.651658) (xy 122.034426 79.75881) (xy 122.034424 79.758811) (xy 121.856762 79.897091) (xy 121.704279 80.062729) (xy 121.615183 80.199101) (xy 121.561179 80.245189) (xy 121.490831 80.254764) (xy 121.426474 80.224786) (xy 121.404217 80.1991) (xy 121.315327 80.063044) (xy 121.162902 79.897465) (xy 120.985301 79.759232) (xy 120.9853 79.759231) (xy 120.787371 79.652117) (xy 120.787369 79.652116) (xy 120.574512 79.579043) (xy 120.574501 79.57904) (xy 120.494 79.565606) (xy 120.494 80.469297) (xy 120.432993 80.434075) (xy 120.305826 80.4) (xy 120.174174 80.4) (xy 120.047007 80.434075) (xy 119.986 80.469297) (xy 119.986 79.565607) (xy 119.985999 79.565606) (xy 119.905498 79.57904) (xy 119.905487 79.579043) (xy 119.69263 79.652116) (xy 119.692628 79.652117) (xy 119.494699 79.759231) (xy 119.494698 79.759232) (xy 119.317096 79.897465) (xy 119.255951 79.963888) (xy 119.195098 80.000459) (xy 119.124134 79.998324) (xy 119.065588 79.958163) (xy 119.045195 79.922583) (xy 119.000889 79.803796) (xy 119.000887 79.803792) (xy 118.913261 79.686738) (xy 118.796207 79.599112) (xy 118.796202 79.59911) (xy 118.659204 79.548011) (xy 118.659196 79.548009) (xy 118.598649 79.5415) (xy 118.598638 79.5415) (xy 116.801362 79.5415) (xy 116.80135 79.5415) (xy 116.740803 79.548009) (xy 116.740795 79.548011) (xy 116.603797 79.59911) (xy 116.603792 79.599112) (xy 116.486738 79.686738) (xy 116.399112 79.803792) (xy 116.39911 79.803797) (xy 116.348011 79.940795) (xy 116.348009 79.940803) (xy 116.3415 80.00135) (xy 115.5485 80.00135) (xy 115.5485 73.301402) (xy 116.342 73.301402) (xy 116.342 73.946) (xy 117.269297 73.946) (xy 117.234075 74.007007) (xy 117.2 74.134174) (xy 117.2 74.265826) (xy 117.234075 74.392993) (xy 117.269297 74.454) (xy 116.342 74.454) (xy 116.342 75.098597) (xy 116.348505 75.159093) (xy 116.399555 75.295964) (xy 116.399555 75.295965) (xy 116.487095 75.412904) (xy 116.604034 75.500444) (xy 116.740906 75.551494) (xy 116.801402 75.557999) (xy 116.801415 75.558) (xy 117.446 75.558) (xy 117.446 74.630702) (xy 117.507007 74.665925) (xy 117.634174 74.7) (xy 117.765826 74.7) (xy 117.892993 74.665925) (xy 117.954 74.630702) (xy 117.954 75.558) (xy 118.598585 75.558) (xy 118.598597 75.557999) (xy 118.659093 75.551494) (xy 118.795964 75.500444) (xy 118.795965 75.500444) (xy 118.912904 75.412904) (xy 119.000444 75.295965) (xy 119.044618 75.17753) (xy 119.087165 75.120694) (xy 119.153685 75.095883) (xy 119.223059 75.110974) (xy 119.255372 75.136222) (xy 119.2934 75.17753) (xy 119.316762 75.202908) (xy 119.358911 75.235714) (xy 119.494424 75.341189) (xy 119.692426 75.448342) (xy 119.692427 75.448342) (xy 119.692428 75.448343) (xy 119.770078 75.475) (xy 119.905365 75.521444) (xy 120.127431 75.5585) (xy 120.127435 75.5585) (xy 120.352565 75.5585) (xy 120.352569 75.5585) (xy 120.574635 75.521444) (xy 120.787574 75.448342) (xy 120.985576 75.341189) (xy 121.16324 75.202906) (xy 121.315722 75.037268) (xy 121.404518 74.901354) (xy 121.45852 74.855268) (xy 121.528868 74.845692) (xy 121.593225 74.875669) (xy 121.61548 74.901353) (xy 121.63946 74.938056) (xy 121.704275 75.037265) (xy 121.704279 75.03727) (xy 121.856762 75.202908) (xy 121.898911 75.235714) (xy 122.034424 75.341189) (xy 122.232426 75.448342) (xy 122.232427 75.448342) (xy 122.232428 75.448343) (xy 122.310078 75.475) (xy 122.445365 75.521444) (xy 122.667431 75.5585) (xy 122.667435 75.5585) (xy 122.892565 75.5585) (xy 122.892569 75.5585) (xy 123.114635 75.521444) (xy 123.327574 75.448342) (xy 123.525576 75.341189) (xy 123.70324 75.202906) (xy 123.855722 75.037268) (xy 123.944518 74.901354) (xy 123.99852 74.855268) (xy 124.068868 74.845692) (xy 124.133225 74.875669) (xy 124.15548 74.901353) (xy 124.17946 74.938056) (xy 124.244275 75.037265) (xy 124.244279 75.03727) (xy 124.396762 75.202908) (xy 124.438911 75.235714) (xy 124.574424 75.341189) (xy 124.772426 75.448342) (xy 124.772427 75.448342) (xy 124.772428 75.448343) (xy 124.850078 75.475) (xy 124.985365 75.521444) (xy 125.207431 75.5585) (xy 125.207435 75.5585) (xy 125.432565 75.5585) (xy 125.432569 75.5585) (xy 125.654635 75.521444) (xy 125.867574 75.448342) (xy 126.065576 75.341189) (xy 126.24324 75.202906) (xy 126.395722 75.037268) (xy 126.51886 74.848791) (xy 126.609296 74.642616) (xy 126.664564 74.424368) (xy 126.683156 74.2) (xy 126.664564 73.975632) (xy 126.640566 73.880866) (xy 126.609297 73.757387) (xy 126.609296 73.757386) (xy 126.609296 73.757384) (xy 126.51886 73.551209) (xy 126.512073 73.54082) (xy 126.395724 73.362734) (xy 126.39572 73.362729) (xy 126.243237 73.197091) (xy 126.123679 73.104035) (xy 126.065576 73.058811) (xy 125.867574 72.951658) (xy 125.867572 72.951657) (xy 125.867571 72.951656) (xy 125.654639 72.878557) (xy 125.65463 72.878555) (xy 125.610476 72.871187) (xy 125.432569 72.8415) (xy 125.207431 72.8415) (xy 125.059211 72.866233) (xy 124.985369 72.878555) (xy 124.98536 72.878557) (xy 124.772428 72.951656) (xy 124.772426 72.951658) (xy 124.574426 73.05881) (xy 124.574424 73.058811) (xy 124.396762 73.197091) (xy 124.244279 73.362729) (xy 124.155483 73.498643) (xy 124.101479 73.544731) (xy 124.031131 73.554306) (xy 123.966774 73.524329) (xy 123.944517 73.498643) (xy 123.85572 73.362729) (xy 123.703237 73.197091) (xy 123.583679 73.104035) (xy 123.525576 73.058811) (xy 123.327574 72.951658) (xy 123.327572 72.951657) (xy 123.327571 72.951656) (xy 123.114639 72.878557) (xy 123.11463 72.878555) (xy 123.070476 72.871187) (xy 122.892569 72.8415) (xy 122.667431 72.8415) (xy 122.519211 72.866233) (xy 122.445369 72.878555) (xy 122.44536 72.878557) (xy 122.232428 72.951656) (xy 122.232426 72.951658) (xy 122.034426 73.05881) (xy 122.034424 73.058811) (xy 121.856762 73.197091) (xy 121.704279 73.362729) (xy 121.615483 73.498643) (xy 121.561479 73.544731) (xy 121.491131 73.554306) (xy 121.426774 73.524329) (xy 121.404517 73.498643) (xy 121.31572 73.362729) (xy 121.163237 73.197091) (xy 121.043679 73.104035) (xy 120.985576 73.058811) (xy 120.787574 72.951658) (xy 120.787572 72.951657) (xy 120.787571 72.951656) (xy 120.574639 72.878557) (xy 120.57463 72.878555) (xy 120.530476 72.871187) (xy 120.352569 72.8415) (xy 120.127431 72.8415) (xy 119.979211 72.866233) (xy 119.905369 72.878555) (xy 119.90536 72.878557) (xy 119.692428 72.951656) (xy 119.692426 72.951658) (xy 119.494426 73.05881) (xy 119.494424 73.058811) (xy 119.316759 73.197094) (xy 119.255374 73.263775) (xy 119.194521 73.300346) (xy 119.123557 73.298211) (xy 119.065012 73.258049) (xy 119.044618 73.22247) (xy 119.000443 73.104033) (xy 118.912904 72.987095) (xy 118.795965 72.899555) (xy 118.659093 72.848505) (xy 118.598597 72.842) (xy 117.954 72.842) (xy 117.954 73.769297) (xy 117.892993 73.734075) (xy 117.765826 73.7) (xy 117.634174 73.7) (xy 117.507007 73.734075) (xy 117.446 73.769297) (xy 117.446 72.842) (xy 116.801402 72.842) (xy 116.740906 72.848505) (xy 116.604035 72.899555) (xy 116.604034 72.899555) (xy 116.487095 72.987095) (xy 116.399555 73.104034) (xy 116.399555 73.104035) (xy 116.348505 73.240906) (xy 116.342 73.301402) (xy 115.5485 73.301402) (xy 115.5485 70.429924) (xy 115.568502 70.361803) (xy 115.585405 70.340829) (xy 116.763244 69.16299) (xy 117.957864 67.96837) (xy 118.068232 67.803193) (xy 118.144255 67.619658) (xy 118.183011 67.424818) (xy 118.183011 67.22616) (xy 118.183011 62.22616) (xy 118.183011 61.088072) (xy 118.203013 61.019951) (xy 118.256669 60.973458) (xy 118.326943 60.963354) (xy 118.384521 60.987204) (xy 118.489036 61.065445) (xy 118.625906 61.116494) (xy 118.686402 61.122999) (xy 118.686415 61.123) (xy 119.346 61.123) (xy 119.346 60.04225) (xy 119.403147 60.075245) (xy 119.532857 60.11) (xy 119.667143 60.11) (xy 119.796853 60.075245) (xy 119.854 60.04225) (xy 119.854 61.123) (xy 120.513585 61.123) (xy 120.513597 61.122999) (xy 120.574093 61.116494) (xy 120.710964 61.065444) (xy 120.710965 61.065444) (xy 120.827904 60.977904) (xy 120.915444 60.860965) (xy 120.915444 60.860964) (xy 120.966494 60.724093) (xy 120.972999 60.663597) (xy 120.973 60.663585) (xy 120.973 59.854) (xy 120.042251 59.854) (xy 120.075245 59.796853) (xy 120.11 59.667143) (xy 120.11 59.532857) (xy 120.075245 59.403147) (xy 120.042251 59.346) (xy 120.973 59.346) (xy 120.973 58.536414) (xy 120.972999 58.536402) (xy 120.966494 58.475906) (xy 120.915444 58.339035) (xy 120.915444 58.339034) (xy 120.827904 58.222095) (xy 120.710965 58.134555) (xy 120.574093 58.083505) (xy 120.513597 58.077) (xy 119.854 58.077) (xy 119.854 59.157749) (xy 119.796853 59.124755) (xy 119.667143 59.09) (xy 119.532857 59.09) (xy 119.403147 59.124755) (xy 119.346 59.157749) (xy 119.346 58.077) (xy 118.686402 58.077) (xy 118.625906 58.083505) (xy 118.489035 58.134555) (xy 118.489034 58.134555) (xy 118.372095 58.222095) (xy 118.284555 58.339034) (xy 118.284553 58.339039) (xy 118.246282 58.441647) (xy 118.203735 58.498483) (xy 118.137215 58.523293) (xy 118.067841 58.508201) (xy 118.039132 58.486709) (xy 117.95478 58.402357) (xy 117.954777 58.402355) (xy 117.954775 58.402353) (xy 117.779871 58.275278) (xy 117.587241 58.177128) (xy 117.58724 58.177127) (xy 117.587239 58.177127) (xy 117.381632 58.110321) (xy 117.381629 58.11032) (xy 117.168097 58.0765) (xy 116.951903 58.0765) (xy 116.738371 58.11032) (xy 116.738368 58.11032) (xy 116.738367 58.110321) (xy 116.53276 58.177127) (xy 116.340125 58.27528) (xy 116.165222 58.402355) (xy 116.165219 58.402357) (xy 116.012354 58.555222) (xy 115.891936 58.720964) (xy 115.835713 58.764318) (xy 115.764977 58.770393) (xy 115.702186 58.737261) (xy 115.688064 58.720964) (xy 115.567645 58.555222) (xy 115.41478 58.402357) (xy 115.414777 58.402355) (xy 115.414775 58.402353) (xy 115.239871 58.275278) (xy 115.047241 58.177128) (xy 115.04724 58.177127) (xy 115.047239 58.177127) (xy 114.841632 58.110321) (xy 114.841629 58.11032) (xy 114.628097 58.0765) (xy 114.411903 58.0765) (xy 114.198371 58.11032) (xy 114.198368 58.11032) (xy 114.198367 58.110321) (xy 113.99276 58.177127) (xy 113.800125 58.27528) (xy 113.625222 58.402355) (xy 113.625219 58.402357) (xy 113.472354 58.555222) (xy 113.351936 58.720964) (xy 113.295713 58.764318) (xy 113.224977 58.770393) (xy 113.162186 58.737261) (xy 113.148064 58.720964) (xy 113.027645 58.555222) (xy 112.87478 58.402357) (xy 112.874777 58.402355) (xy 112.874775 58.402353) (xy 112.699871 58.275278) (xy 112.507241 58.177128) (xy 112.50724 58.177127) (xy 112.507239 58.177127) (xy 112.301632 58.110321) (xy 112.301629 58.11032) (xy 112.088097 58.0765) (xy 111.871903 58.0765) (xy 111.658371 58.11032) (xy 111.658368 58.11032) (xy 111.658367 58.110321) (xy 111.45276 58.177127) (xy 111.260125 58.27528) (xy 111.085222 58.402355) (xy 111.085219 58.402357) (xy 110.932357 58.555219) (xy 110.932355 58.555222) (xy 110.80528 58.730125) (xy 110.707127 58.92276) (xy 110.641521 59.124674) (xy 110.64032 59.128371) (xy 110.6065 59.341903) (xy 110.6065 59.858097) (xy 110.64032 60.071629) (xy 110.640321 60.071632) (xy 110.664535 60.146156) (xy 110.707128 60.277241) (xy 110.805278 60.469871) (xy 110.932353 60.644775) (xy 110.932355 60.644777) (xy 110.932357 60.64478) (xy 111.085219 60.797642) (xy 111.085222 60.797644) (xy 111.085225 60.797647) (xy 111.260129 60.924722) (xy 111.452759 61.022872) (xy 111.658371 61.08968) (xy 111.871903 61.1235) (xy 111.871906 61.1235) (xy 112.088094 61.1235) (xy 112.088097 61.1235) (xy 112.301629 61.08968) (xy 112.507241 61.022872) (xy 112.699871 60.924722) (xy 112.874775 60.797647) (xy 113.027647 60.644775) (xy 113.148064 60.479035) (xy 113.204286 60.435681) (xy 113.275022 60.429606) (xy 113.337814 60.462737) (xy 113.351936 60.479035) (xy 113.472353 60.644775) (xy 113.472355 60.644777) (xy 113.472357 60.64478) (xy 113.625219 60.797642) (xy 113.625222 60.797644) (xy 113.625225 60.797647) (xy 113.800129 60.924722) (xy 113.925876 60.988793) (xy 113.97749 61.03754) (xy 113.994556 61.106455) (xy 113.971655 61.173657) (xy 113.957768 61.190154) (xy 113.898209 61.249713) (xy 113.898208 61.249715) (xy 113.810606 61.38082) (xy 113.750265 61.526497) (xy 113.750263 61.526502) (xy 113.7195 61.681155) (xy 113.7195 61.838844) (xy 113.734929 61.916407) (xy 113.728601 61.987121) (xy 113.685047 62.043188) (xy 113.618095 62.066808) (xy 113.61135 62.066989) (xy 113.044399 62.066989) (xy 112.994886 62.080255) (xy 112.994887 62.080256) (xy 112.88964 62.108456) (xy 112.889633 62.108459) (xy 112.750886 62.188565) (xy 112.750876 62.188573) (xy 112.384603 62.554847) (xy 112.322291 62.588873) (xy 112.308678 62.591062) (xy 112.304514 62.591499) (xy 112.117711 62.631206) (xy 111.943247 62.708882) (xy 111.788744 62.821135) (xy 111.660965 62.963048) (xy 111.660958 62.963058) (xy 111.565476 63.128438) (xy 111.565473 63.128445) (xy 111.506457 63.310072) (xy 111.486496 63.5) (xy 111.506457 63.689927) (xy 111.516736 63.721561) (xy 111.565473 63.871556) (xy 111.565476 63.871561) (xy 111.660958 64.036941) (xy 111.660965 64.036951) (xy 111.788744 64.178864) (xy 111.833497 64.211379) (xy 111.943248 64.291118) (xy 112.117712 64.368794) (xy 112.304513 64.4085) (xy 112.495487 64.4085) (xy 112.682288 64.368794) (xy 112.856752 64.291118) (xy 113.011253 64.178866) (xy 113.011255 64.178864) (xy 113.139034 64.036951) (xy 113.139035 64.036949) (xy 113.13904 64.036944) (xy 113.234527 63.871556) (xy 113.293542 63.689928) (xy 113.313504 63.5) (xy 113.305427 63.423158) (xy 113.318199 63.353322) (xy 113.3667 63.301475) (xy 113.430737 63.283989) (xy 116.040011 63.283989) (xy 116.108132 63.303991) (xy 116.154625 63.357647) (xy 116.166011 63.409989) (xy 116.166011 66.855565) (xy 116.146009 66.923686) (xy 116.129106 66.94466) (xy 113.756649 69.317116) (xy 113.756644 69.317123) (xy 113.646279 69.482296) (xy 113.570258 69.665825) (xy 113.570256 69.66583) (xy 113.5315 69.860668) (xy 113.5315 116.039331) (xy 113.541877 116.0915) (xy 113.570256 116.234169) (xy 113.570257 116.234171) (xy 113.570258 116.234176) (xy 113.609618 116.329198) (xy 113.609619 116.329199) (xy 113.646279 116.417704) (xy 113.756647 116.582881) (xy 113.756649 116.582883) (xy 116.984008 119.810243) (xy 117.018034 119.872555) (xy 117.012969 119.943371) (xy 116.995782 119.974846) (xy 116.974112 120.003793) (xy 116.974111 120.003795) (xy 116.93 120.122058) (xy 116.887453 120.178893) (xy 116.820932 120.203703) (xy 116.751558 120.188611) (xy 116.719246 120.163363) (xy 116.65824 120.097094) (xy 116.658239 120.097093) (xy 116.658237 120.097091) (xy 116.562531 120.0226) (xy 116.480576 119.958811) (xy 116.282574 119.851658) (xy 116.282572 119.851657) (xy 116.282571 119.851656) (xy 116.069639 119.778557) (xy 116.06963 119.778555) (xy 116.025476 119.771187) (xy 115.847569 119.7415) (xy 115.622431 119.7415) (xy 115.474211 119.766233) (xy 115.400369 119.778555) (xy 115.40036 119.778557) (xy 115.187428 119.851656) (xy 115.187426 119.851658) (xy 115.008936 119.948252) (xy 114.989426 119.95881) (xy 114.989424 119.958811) (xy 114.811762 120.097091) (xy 114.659279 120.262729) (xy 114.570483 120.398643) (xy 114.516479 120.444731) (xy 114.446131 120.454306) (xy 114.381774 120.424329) (xy 114.359517 120.398643) (xy 114.27072 120.262729) (xy 114.118237 120.097091) (xy 114.022531 120.0226) (xy 113.940576 119.958811) (xy 113.742574 119.851658) (xy 113.742572 119.851657) (xy 113.742571 119.851656) (xy 113.529639 119.778557) (xy 113.52963 119.778555) (xy 113.485476 119.771187) (xy 113.307569 119.7415) (xy 113.082431 119.7415) (xy 112.934211 119.766233) (xy 112.860369 119.778555) (xy 112.86036 119.778557) (xy 112.647428 119.851656) (xy 112.647426 119.851658) (xy 112.468936 119.948252) (xy 112.449426 119.95881) (xy 112.449424 119.958811) (xy 112.271762 120.097091) (xy 112.119279 120.262729) (xy 112.119275 120.262734) (xy 111.996141 120.451206) (xy 111.905703 120.657386) (xy 111.905702 120.657387) (xy 111.850436 120.875628) (xy 111.850435 120.875631) (xy 111.845743 120.932253) (xy 111.820183 120.998489) (xy 111.809269 121.010941) (xy 110.615615 122.204596) (xy 110.553305 122.23862) (xy 110.526522 122.2415) (xy 109.223239 122.2415) (xy 109.155118 122.221498) (xy 109.108625 122.167842) (xy 109.098521 122.097568) (xy 109.128015 122.032988) (xy 109.134144 122.026405) (xy 110.986915 120.173634) (xy 110.986921 120.173628) (xy 111.067032 120.034873) (xy 111.095498 119.928634) (xy 111.1085 119.880111) (xy 111.1085 106.98029) (xy 111.128502 106.912169) (xy 111.14086 106.895983) (xy 111.23904 106.786944) (xy 111.334527 106.621556) (xy 111.393542 106.439928) (xy 111.413504 106.25) (xy 111.393542 106.060072) (xy 111.334527 105.878444) (xy 111.23904 105.713056) (xy 111.239038 105.713054) (xy 111.239034 105.713048) (xy 111.111255 105.571135) (xy 110.956752 105.458882) (xy 110.782288 105.381206) (xy 110.595487 105.3415) (xy 110.404513 105.3415) (xy 110.217711 105.381206) (xy 110.043247 105.458882) (xy 109.888744 105.571135) (xy 109.760965 105.713048) (xy 109.760958 105.713058) (xy 109.670859 105.869115) (xy 109.665473 105.878444) (xy 109.660763 105.892939) (xy 109.606457 106.060072) (xy 109.586496 106.25) (xy 109.606457 106.439927) (xy 109.624735 106.496178) (xy 109.665473 106.621556) (xy 109.76096 106.786944) (xy 109.859136 106.89598) (xy 109.889853 106.959987) (xy 109.8915 106.98029) (xy 109.8915 119.495761) (xy 109.871498 119.563882) (xy 109.854595 119.584856) (xy 108.573595 120.865856) (xy 108.511283 120.899882) (xy 108.440468 120.894817) (xy 108.383632 120.85227) (xy 108.358821 120.78575) (xy 108.3585 120.776761) (xy 108.3585 120.201367) (xy 108.358499 120.20135) (xy 108.35199 120.140803) (xy 108.351988 120.140795) (xy 108.307904 120.022604) (xy 108.300889 120.003796) (xy 108.300887 120.003793) (xy 108.300887 120.003792) (xy 108.213261 119.886738) (xy 108.096203 119.79911) (xy 108.090462 119.796969) (xy 108.033628 119.754419) (xy 108.008821 119.687898) (xy 108.0085 119.678915) (xy 108.0085 102.219924) (xy 108.028502 102.151803) (xy 108.045405 102.130828) (xy 108.09288 102.083353) (xy 108.092879 102.083353) (xy 109.033354 101.142881) (xy 109.039622 101.1335) (xy 109.143722 100.977704) (xy 109.219744 100.794169) (xy 109.2585 100.599329) (xy 109.2585 100.400671) (xy 109.237315 100.294168) (xy 109.219744 100.205831) (xy 109.143722 100.022296) (xy 109.033354 99.857119) (xy 108.892881 99.716646) (xy 108.89288 99.716645) (xy 108.540538 99.364304) (xy 108.540529 99.364293) (xy 108.045405 98.869169) (xy 108.011379 98.806857) (xy 108.0085 98.780074) (xy 108.0085 97.400672) (xy 108.008499 97.400668) (xy 107.9979 97.347384) (xy 107.980336 97.259081) (xy 107.986664 97.188368) (xy 108.030218 97.1323) (xy 108.097171 97.108681) (xy 108.103915 97.1085) (xy 111.51929 97.1085) (xy 111.587411 97.128502) (xy 111.612926 97.15019) (xy 111.638744 97.178864) (xy 111.692843 97.218169) (xy 111.793248 97.291118) (xy 111.967712 97.368794) (xy 112.154513 97.4085) (xy 112.345487 97.4085) (xy 112.532288 97.368794) (xy 112.706752 97.291118) (xy 112.861253 97.178866) (xy 112.892588 97.144065) (xy 112.989034 97.036951) (xy 112.989035 97.036949) (xy 112.98904 97.036944) (xy 113.084527 96.871556) (xy 113.143542 96.689928) (xy 113.163504 96.5) (xy 113.143542 96.310072) (xy 113.084527 96.128444) (xy 112.98904 95.963056) (xy 112.989038 95.963054) (xy 112.989034 95.963048) (xy 112.861255 95.821135) (xy 112.706752 95.708882) (xy 112.532288 95.631206) (xy 112.345487 95.5915) (xy 112.154513 95.5915) (xy 111.967711 95.631206) (xy 111.793247 95.708882) (xy 111.638744 95.821135) (xy 111.612926 95.84981) (xy 111.55248 95.88705) (xy 111.51929 95.8915) (xy 108.304239 95.8915) (xy 108.236118 95.871498) (xy 108.215144 95.854595) (xy 107.950409 95.58986) (xy 107.916383 95.527548) (xy 107.913504 95.500765) (xy 107.913504 95.500001) (xy 107.893542 95.310072) (xy 107.885811 95.28628) (xy 107.834527 95.128444) (xy 107.73904 94.963056) (xy 107.739038 94.963054) (xy 107.739034 94.963048) (xy 107.611255 94.821135) (xy 107.456752 94.708882) (xy 107.282288 94.631206) (xy 107.095487 94.5915) (xy 106.904513 94.5915) (xy 106.717711 94.631206) (xy 106.543247 94.708882) (xy 106.388744 94.821135) (xy 106.260965 94.963048) (xy 106.260958 94.963058) (xy 106.20702 95.05648) (xy 106.155637 95.105472) (xy 106.085923 95.118907) (xy 106.020013 95.09252) (xy 106.008807 95.082573) (xy 88.615329 77.689095) (xy 88.581303 77.626783) (xy 88.586368 77.555968) (xy 88.615329 77.510905) (xy 101.88083 64.245405) (xy 101.943142 64.211379) (xy 101.969925 64.2085) (xy 103.599328 64.2085) (xy 103.599329 64.2085) (xy 103.794169 64.169744) (xy 103.977704 64.093721) (xy 104.142881 63.983353) (xy 104.283353 63.842881) (xy 106.343353 61.782881) (xy 106.453721 61.617704) (xy 106.491498 61.526503) (xy 106.529744 61.434169) (xy 106.5685 61.239329) (xy 106.5685 60.950917) (xy 106.588502 60.882796) (xy 106.642158 60.836303) (xy 106.712432 60.826199) (xy 106.777012 60.855693) (xy 106.795368 60.875408) (xy 106.872095 60.977904) (xy 106.989034 61.065444) (xy 107.125906 61.116494) (xy 107.186402 61.122999) (xy 107.186415 61.123) (xy 107.846 61.123) (xy 107.846 60.04225) (xy 107.903147 60.075245) (xy 108.032857 60.11) (xy 108.167143 60.11) (xy 108.296853 60.075245) (xy 108.354 60.04225) (xy 108.354 61.123) (xy 108.5305 61.123) (xy 108.598621 61.143002) (xy 108.645114 61.196658) (xy 108.6565 61.249) (xy 108.6565 67.739707) (xy 108.676848 67.842) (xy 108.685649 67.886247) (xy 108.742826 68.024284) (xy 108.825834 68.148515) (xy 108.825838 68.148519) (xy 109.954595 69.277276) (xy 109.988621 69.339588) (xy 109.9915 69.366371) (xy 109.9915 71.9905) (xy 109.971498 72.058621) (xy 109.917842 72.105114) (xy 109.8655 72.1165) (xy 106.787603 72.1165) (xy 106.714568 72.131028) (xy 106.665215 72.140845) (xy 106.665213 72.140845) (xy 106.665212 72.140846) (xy 106.549923 72.188601) (xy 106.446171 72.257926) (xy 106.446164 72.257931) (xy 102.274501 76.429595) (xy 102.212189 76.463621) (xy 102.185406 76.4665) (xy 101.6082 76.4665) (xy 101.540079 76.446498) (xy 101.514563 76.42481) (xy 101.511252 76.421133) (xy 101.356752 76.308882) (xy 101.182288 76.231206) (xy 100.995487 76.1915) (xy 100.804513 76.1915) (xy 100.617711 76.231206) (xy 100.443247 76.308882) (xy 100.288744 76.421135) (xy 100.160965 76.563048) (xy 100.160958 76.563058) (xy 100.065476 76.728438) (xy 100.065473 76.728445) (xy 100.006457 76.910072) (xy 99.986496 77.1) (xy 100.006457 77.289927) (xy 100.025261 77.347798) (xy 100.065473 77.471556) (xy 100.065476 77.471561) (xy 100.160958 77.636941) (xy 100.160965 77.636951) (xy 100.288744 77.778864) (xy 100.328001 77.807386) (xy 100.443248 77.891118) (xy 100.617712 77.968794) (xy 100.804513 78.0085) (xy 100.995487 78.0085) (xy 101.182288 77.968794) (xy 101.356752 77.891118) (xy 101.511253 77.778866) (xy 101.514563 77.77519) (xy 101.575009 77.73795) (xy 101.6082 77.7335) (xy 102.562393 77.7335) (xy 102.562394 77.7335) (xy 102.684785 77.709155) (xy 102.800075 77.6614) (xy 102.903833 77.592071) (xy 103.426405 77.069499) (xy 103.488717 77.035473) (xy 103.559532 77.040538) (xy 103.616368 77.083085) (xy 103.641179 77.149605) (xy 103.6415 77.158594) (xy 103.6415 81.988194) (xy 103.621498 82.056315) (xy 103.567842 82.102808) (xy 103.497568 82.112912) (xy 103.489303 82.111441) (xy 103.395487 82.0915) (xy 103.204513 82.0915) (xy 103.204512 82.0915) (xy 103.143455 82.104478) (xy 103.072664 82.099076) (xy 103.016031 82.056259) (xy 102.991538 81.989621) (xy 103.006959 81.92032) (xy 103.008106 81.918287) (xy 103.034527 81.872526) (xy 103.093542 81.690898) (xy 103.113504 81.50097) (xy 103.093542 81.311042) (xy 103.034527 81.129414) (xy 102.93904 80.964026) (xy 102.939038 80.964024) (xy 102.939034 80.964018) (xy 102.811255 80.822105) (xy 102.656752 80.709852) (xy 102.482288 80.632176) (xy 102.295487 80.59247) (xy 102.104513 80.59247) (xy 101.917711 80.632176) (xy 101.743247 80.709852) (xy 101.588746 80.822104) (xy 101.579943 80.831881) (xy 101.519496 80.86912) (xy 101.448513 80.867767) (xy 101.397214 80.836665) (xy 100.573627 80.013078) (xy 100.573625 80.013077) (xy 100.573623 80.013075) (xy 100.434877 79.93297) (xy 100.434874 79.932969) (xy 100.434873 79.932968) (xy 100.434871 79.932967) (xy 100.43487 79.932967) (xy 100.311833 79.9) (xy 100.311831 79.899999) (xy 100.280112 79.8915) (xy 100.280111 79.8915) (xy 96.826062 79.8915) (xy 96.757941 79.871498) (xy 96.711448 79.817842) (xy 96.700752 79.778672) (xy 96.693542 79.710072) (xy 96.634527 79.528444) (xy 96.53904 79.363056) (xy 96.539038 79.363054) (xy 96.539034 79.363048) (xy 96.411255 79.221135) (xy 96.256752 79.108882) (xy 96.082288 79.031206) (xy 95.895487 78.9915) (xy 95.704513 78.9915) (xy 95.517711 79.031206) (xy 95.343247 79.108882) (xy 95.188744 79.221135) (xy 95.060965 79.363048) (xy 95.060958 79.363058) (xy 94.965476 79.528438) (xy 94.965473 79.528445) (xy 94.906457 79.710072) (xy 94.886496 79.9) (xy 94.906457 80.089927) (xy 94.913293 80.110964) (xy 94.965473 80.271556) (xy 94.965476 80.271561) (xy 95.060958 80.436941) (xy 95.060965 80.436951) (xy 95.188744 80.578864) (xy 95.188747 80.578866) (xy 95.343248 80.691118) (xy 95.517712 80.768794) (xy 95.704513 80.8085) (xy 95.795761 80.8085) (xy 95.863882 80.828502) (xy 95.884851 80.8454) (xy 96.026372 80.986921) (xy 96.026374 80.986922) (xy 96.026375 80.986923) (xy 96.073937 81.014383) (xy 96.165127 81.067032) (xy 96.219146 81.081506) (xy 96.319889 81.1085) (xy 96.31989 81.1085) (xy 96.48011 81.1085) (xy 99.895761 81.1085) (xy 99.963882 81.128502) (xy 99.984851 81.1454) (xy 100.827342 81.987891) (xy 100.827343 81.987892) (xy 100.827345 81.987893) (xy 100.841747 81.996208) (xy 100.966097 82.068002) (xy 101.041989 82.088337) (xy 101.120859 82.10947) (xy 101.12086 82.10947) (xy 101.28108 82.10947) (xy 101.46929 82.10947) (xy 101.537411 82.129472) (xy 101.562926 82.15116) (xy 101.588744 82.179834) (xy 101.646015 82.221444) (xy 101.743248 82.292088) (xy 101.917712 82.369764) (xy 102.104513 82.40947) (xy 102.29549 82.40947) (xy 102.337608 82.400516) (xy 102.356542 82.396492) (xy 102.427333 82.401893) (xy 102.483966 82.444709) (xy 102.508461 82.511346) (xy 102.493041 82.580647) (xy 102.491861 82.582736) (xy 102.465477 82.628436) (xy 102.465473 82.628445) (xy 102.406457 82.810072) (xy 102.388738 82.97867) (xy 102.361725 83.044327) (xy 102.303504 83.084957) (xy 102.263428 83.0915) (xy 102.204513 83.0915) (xy 102.017711 83.131206) (xy 101.843247 83.208882) (xy 101.688744 83.321135) (xy 101.560965 83.463048) (xy 101.560958 83.463058) (xy 101.465476 83.628438) (xy 101.465473 83.628445) (xy 101.406457 83.810072) (xy 101.386496 84) (xy 101.406457 84.189927) (xy 101.41987 84.231206) (xy 101.465473 84.371556) (xy 101.56096 84.536944) (xy 101.659136 84.64598) (xy 101.689853 84.709987) (xy 101.6915 84.73029) (xy 101.6915 87.969709) (xy 101.671498 88.03783) (xy 101.659137 88.054019) (xy 101.560961 88.163054) (xy 101.560958 88.163058) (xy 101.465476 88.328438) (xy 101.465473 88.328444) (xy 101.458022 88.351377) (xy 101.406457 88.510072) (xy 101.386496 88.7) (xy 101.406457 88.889927) (xy 101.424769 88.946283) (xy 101.465473 89.071556) (xy 101.465476 89.071561) (xy 101.560958 89.236941) (xy 101.560965 89.236951) (xy 101.688744 89.378864) (xy 101.749999 89.423368) (xy 101.843248 89.491118) (xy 102.017712 89.568794) (xy 102.204513 89.6085) (xy 102.320948 89.6085) (xy 102.389069 89.628502) (xy 102.435562 89.682158) (xy 102.440781 89.695563) (xy 102.465474 89.77156) (xy 102.560958 89.936941) (xy 102.560965 89.936951) (xy 102.688744 90.078864) (xy 102.688747 90.078866) (xy 102.843248 90.191118) (xy 103.017712 90.268794) (xy 103.204513 90.3085) (xy 103.395491 90.3085) (xy 103.489302 90.288559) (xy 103.560093 90.29396) (xy 103.616726 90.336776) (xy 103.64122 90.403414) (xy 103.6415 90.411805) (xy 103.6415 90.769709) (xy 103.621498 90.83783) (xy 103.609137 90.854019) (xy 103.510961 90.963054) (xy 103.510958 90.963058) (xy 103.415476 91.128438) (xy 103.415473 91.128445) (xy 103.356457 91.310072) (xy 103.336496 91.5) (xy 103.356457 91.689927) (xy 103.366193 91.719889) (xy 103.415473 91.871556) (xy 103.415476 91.871561) (xy 103.510958 92.036941) (xy 103.510965 92.036951) (xy 103.638744 92.178864) (xy 103.68715 92.214033) (xy 103.793248 92.291118) (xy 103.967712 92.368794) (xy 104.154513 92.4085) (xy 104.345487 92.4085) (xy 104.532288 92.368794) (xy 104.706752 92.291118) (xy 104.861253 92.178866) (xy 104.875077 92.163511) (xy 104.935519 92.126273) (xy 104.994909 92.124575) (xy 105.154513 92.1585) (xy 105.345487 92.1585) (xy 105.532288 92.118794) (xy 105.706752 92.041118) (xy 105.861253 91.928866) (xy 105.877734 91.910562) (xy 105.989034 91.786951) (xy 105.989035 91.786949) (xy 105.98904 91.786944) (xy 106.084527 91.621556) (xy 106.143542 91.439928) (xy 106.161262 91.271329) (xy 106.188275 91.205673) (xy 106.246496 91.165043) (xy 106.286572 91.1585) (xy 106.345487 91.1585) (xy 106.532288 91.118794) (xy 106.698755 91.044678) (xy 106.769118 91.035245) (xy 106.80124 91.044676) (xy 106.967712 91.118794) (xy 107.154513 91.1585) (xy 107.345487 91.1585) (xy 107.532288 91.118794) (xy 107.706752 91.041118) (xy 107.861253 90.928866) (xy 107.861581 90.928502) (xy 107.989034 90.786951) (xy 107.989035 90.786949) (xy 107.98904 90.786944) (xy 108.084527 90.621556) (xy 108.143542 90.439928) (xy 108.163504 90.25) (xy 108.143542 90.060072) (xy 108.137613 90.041827) (xy 108.135585 89.970861) (xy 108.172246 89.910062) (xy 108.231248 89.879642) (xy 108.282288 89.868794) (xy 108.456752 89.791118) (xy 108.611253 89.678866) (xy 108.710363 89.568793) (xy 108.739034 89.536951) (xy 108.739035 89.536949) (xy 108.73904 89.536944) (xy 108.834527 89.371556) (xy 108.893542 89.189928) (xy 108.913504 89) (xy 108.913504 88.999998) (xy 108.913504 88.996075) (xy 108.914146 88.993887) (xy 108.914194 88.993433) (xy 108.914277 88.993441) (xy 108.933506 88.927954) (xy 108.987162 88.881461) (xy 109.013306 88.872828) (xy 109.032288 88.868794) (xy 109.206752 88.791118) (xy 109.361253 88.678866) (xy 109.48904 88.536944) (xy 109.584527 88.371556) (xy 109.643542 88.189928) (xy 109.663504 88) (xy 109.643542 87.810072) (xy 109.584527 87.628444) (xy 109.48904 87.463056) (xy 109.390863 87.354019) (xy 109.360146 87.290012) (xy 109.3585 87.269709) (xy 109.3585 84.73029) (xy 109.378502 84.662169) (xy 109.39086 84.645983) (xy 109.48904 84.536944) (xy 109.584527 84.371556) (xy 109.643542 84.189928) (xy 109.663504 84) (xy 109.643542 83.810072) (xy 109.584527 83.628444) (xy 109.48904 83.463056) (xy 109.489038 83.463054) (xy 109.489034 83.463048) (xy 109.361255 83.321135) (xy 109.206752 83.208882) (xy 109.032285 83.131204) (xy 109.013305 83.12717) (xy 108.950832 83.093441) (xy 108.916512 83.03129) (xy 108.913504 83.003924) (xy 108.913504 83.000001) (xy 108.893542 82.810072) (xy 108.886402 82.788097) (xy 108.834527 82.628444) (xy 108.73904 82.463056) (xy 108.739038 82.463054) (xy 108.739034 82.463048) (xy 108.611255 82.321135) (xy 108.456752 82.208882) (xy 108.282288 82.131206) (xy 108.095487 82.0915) (xy 107.9845 82.0915) (xy 107.916379 82.071498) (xy 107.869886 82.017842) (xy 107.8585 81.9655) (xy 107.8585 80.73029) (xy 107.878502 80.662169) (xy 107.89086 80.645983) (xy 107.98904 80.536944) (xy 108.084527 80.371556) (xy 108.143542 80.189928) (xy 108.163504 80) (xy 108.143542 79.810072) (xy 108.084527 79.628444) (xy 107.98904 79.463056) (xy 107.989038 79.463054) (xy 107.989034 79.463048) (xy 107.861255 79.321135) (xy 107.706752 79.208882) (xy 107.532288 79.131206) (xy 107.345487 79.0915) (xy 107.245298 79.0915) (xy 107.177177 79.071498) (xy 107.130684 79.017842) (xy 107.125465 79.004437) (xy 107.114662 78.971189) (xy 107.084527 78.878444) (xy 106.98904 78.713056) (xy 106.989038 78.713054) (xy 106.989034 78.713048) (xy 106.861255 78.571135) (xy 106.706752 78.458882) (xy 106.532288 78.381206) (xy 106.345487 78.3415) (xy 106.323238 78.3415) (xy 106.255117 78.321498) (xy 106.208624 78.267842) (xy 106.19852 78.197568) (xy 106.228014 78.132988) (xy 106.234128 78.126419) (xy 107.200133 77.160414) (xy 107.262442 77.126392) (xy 107.333257 77.131456) (xy 107.340454 77.134396) (xy 107.417712 77.168794) (xy 107.604513 77.2085) (xy 107.795487 77.2085) (xy 107.982288 77.168794) (xy 108.156752 77.091118) (xy 108.311253 76.978866) (xy 108.338044 76.949112) (xy 108.439034 76.836951) (xy 108.439035 76.836949) (xy 108.43904 76.836944) (xy 108.534527 76.671556) (xy 108.593542 76.489928) (xy 108.613504 76.3) (xy 108.593542 76.110072) (xy 108.534527 75.928444) (xy 108.43904 75.763056) (xy 108.439038 75.763054) (xy 108.439034 75.763048) (xy 108.311255 75.621135) (xy 108.156752 75.508882) (xy 107.982288 75.431206) (xy 107.795487 75.3915) (xy 107.604513 75.3915) (xy 107.417711 75.431206) (xy 107.243247 75.508882) (xy 107.088749 75.621132) (xy 107.088748 75.621132) (xy 107.020311 75.697138) (xy 106.971639 75.727122) (xy 106.972753 75.72981) (xy 106.965128 75.732967) (xy 106.926986 75.754989) (xy 106.904964 75.767704) (xy 106.826375 75.813076) (xy 106.826365 75.813084) (xy 105.073595 77.565855) (xy 105.011283 77.599881) (xy 104.940468 77.594816) (xy 104.883632 77.552269) (xy 104.858821 77.485749) (xy 104.8585 77.47676) (xy 104.8585 76.879239) (xy 104.878502 76.811118) (xy 104.895405 76.790144) (xy 107.240144 74.445405) (xy 107.302456 74.411379) (xy 107.329239 74.4085) (xy 107.420487 74.4085) (xy 107.607288 74.368794) (xy 107.781752 74.291118) (xy 107.936253 74.178866) (xy 107.959091 74.153502) (xy 108.064034 74.036951) (xy 108.064038 74.036946) (xy 108.06404 74.036944) (xy 108.159527 73.871556) (xy 108.218542 73.689928) (xy 108.224212 73.635974) (xy 108.23889 73.49633) (xy 108.265903 73.430673) (xy 108.324125 73.390043) (xy 108.3642 73.3835) (xy 109.8655 73.3835) (xy 109.933621 73.403502) (xy 109.980114 73.457158) (xy 109.9915 73.5095) (xy 109.9915 74.574707) (xy 110.009645 74.665925) (xy 110.020649 74.721247) (xy 110.077826 74.859284) (xy 110.160834 74.983515) (xy 111.135834 75.958515) (xy 111.135835 75.958516) (xy 111.241484 76.064165) (xy 111.365716 76.147174) (xy 111.446576 76.180667) (xy 111.503753 76.204351) (xy 111.547149 76.212983) (xy 111.650294 76.2335) (xy 111.650295 76.2335) (xy 111.707413 76.2335) (xy 111.775534 76.253502) (xy 111.781471 76.257562) (xy 111.793248 76.266118) (xy 111.967712 76.343794) (xy 112.154513 76.3835) (xy 112.345487 76.3835) (xy 112.532288 76.343794) (xy 112.706752 76.266118) (xy 112.861253 76.153866) (xy 112.861255 76.153864) (xy 112.989034 76.011951) (xy 112.989035 76.011949) (xy 112.98904 76.011944) (xy 113.084527 75.846556) (xy 113.143542 75.664928) (xy 113.163504 75.475) (xy 113.143542 75.285072) (xy 113.084527 75.103444) (xy 112.98904 74.938056) (xy 112.989038 74.938054) (xy 112.989034 74.938048) (xy 112.861255 74.796135) (xy 112.706752 74.683882) (xy 112.532288 74.606206) (xy 112.345487 74.5665) (xy 112.154513 74.5665) (xy 112.002609 74.598788) (xy 111.931818 74.593386) (xy 111.887317 74.564636) (xy 111.545405 74.222724) (xy 111.511379 74.160412) (xy 111.5085 74.133629) (xy 111.5085 68.925295) (xy 111.508499 68.925291) (xy 111.507811 68.921833) (xy 111.483885 68.801546) (xy 111.479351 68.778753) (xy 111.422174 68.640715) (xy 111.339166 68.516485) (xy 110.210405 67.387724) (xy 110.176379 67.325412) (xy 110.1735 67.298629) (xy 110.1735 58.060293) (xy 110.173499 58.06029) (xy 110.168972 58.037531) (xy 110.144351 57.913754) (xy 110.087174 57.775716) (xy 110.004165 57.651484) (xy 109.898516 57.545835) (xy 107.553514 55.200833) (xy 107.429283 55.117825) (xy 107.291246 55.060648) (xy 107.217975 55.046073) (xy 107.217974 55.046072) (xy 107.14471 55.031499) (xy 107.144705 55.031499) (xy 107.144704 55.031499) (xy 106.995294 55.031499) (xy 106.995293 55.031499) (xy 68.591789 55.031499) (xy 68.591786 55.0315) (xy 68.445311 55.060636) (xy 68.445282 55.060642) (xy 68.445248 55.060649) (xy 68.307211 55.117826) (xy 68.182982 55.200833) (xy 68.182976 55.200838) (xy 60.828954 62.55486) (xy 60.766642 62.588886) (xy 60.695827 62.583821) (xy 60.650764 62.55486) (xy 60.203835 62.107931) (xy 60.203833 62.107929) (xy 60.100075 62.0386) (xy 59.984785 61.990845) (xy 59.911086 61.976185) (xy 59.862396 61.9665) (xy 59.862394 61.9665) (xy 56.9082 61.9665) (xy 56.840079 61.946498) (xy 56.814563 61.92481) (xy 56.811252 61.921133) (xy 56.656752 61.808882) (xy 56.482288 61.731206) (xy 56.295487 61.6915) (xy 56.104513 61.6915) (xy 55.917711 61.731206) (xy 55.743247 61.808882) (xy 55.588744 61.921135) (xy 55.460965 62.063048) (xy 55.460958 62.063058) (xy 55.365476 62.228438) (xy 55.365473 62.228444) (xy 55.352139 62.269481) (xy 55.306457 62.410072) (xy 55.286496 62.6) (xy 55.306457 62.789927) (xy 55.332046 62.868679) (xy 55.365473 62.971556) (xy 55.365476 62.971561) (xy 55.460958 63.136941) (xy 55.460965 63.136951) (xy 55.588744 63.278864) (xy 55.623328 63.303991) (xy 55.743248 63.391118) (xy 55.917712 63.468794) (xy 56.104513 63.5085) (xy 56.295487 63.5085) (xy 56.482288 63.468794) (xy 56.656752 63.391118) (xy 56.811253 63.278866) (xy 56.814563 63.27519) (xy 56.875009 63.23795) (xy 56.9082 63.2335) (xy 59.485406 63.2335) (xy 59.553527 63.253502) (xy 59.574501 63.270405) (xy 59.754859 63.450763) (xy 59.788885 63.513075) (xy 59.78382 63.58389) (xy 59.75486 63.628953) (xy 59.410836 63.972978) (xy 59.410835 63.972979) (xy 59.327826 64.097212) (xy 59.27144 64.23334) (xy 59.271439 64.233342) (xy 59.270648 64.235249) (xy 59.2415 64.381786) (xy 59.2415 79.408629) (xy 59.221498 79.47675) (xy 59.204595 79.497724) (xy 56.697724 82.004595) (xy 56.635412 82.038621) (xy 56.608629 82.0415) (xy 51.532191 82.0415) (xy 51.488877 82.032292) (xy 51.488568 82.033246) (xy 51.482293 82.031207) (xy 51.295487 81.9915) (xy 51.104513 81.9915) (xy 50.917711 82.031206) (xy 50.743247 82.108882) (xy 50.588744 82.221135) (xy 50.460965 82.363048) (xy 50.460958 82.363058) (xy 50.365476 82.528438) (xy 50.365473 82.528445) (xy 50.306457 82.710072) (xy 50.286496 82.9) (xy 50.306457 83.089927) (xy 50.336526 83.18247) (xy 50.365473 83.271556) (xy 50.365476 83.271561) (xy 50.460958 83.436941) (xy 50.460965 83.436951) (xy 50.588744 83.578864) (xy 50.588747 83.578866) (xy 50.743248 83.691118) (xy 50.917712 83.768794) (xy 51.104513 83.8085) (xy 51.295487 83.8085) (xy 51.482288 83.768794) (xy 51.656752 83.691118) (xy 51.806163 83.582563) (xy 51.873031 83.558706) (xy 51.880224 83.5585) (xy 57.049706 83.5585) (xy 57.158074 83.536944) (xy 57.196247 83.529351) (xy 57.334284 83.472174) (xy 57.458515 83.389166) (xy 59.851405 80.996276) (xy 59.913717 80.96225) (xy 59.984532 80.967315) (xy 60.041368 81.009862) (xy 60.066179 81.076382) (xy 60.0665 81.085371) (xy 60.0665 89.845761) (xy 60.046498 89.913882) (xy 60.029595 89.934856) (xy 58.759856 91.204595) (xy 58.697544 91.238621) (xy 58.670761 91.2415) (xy 54.894888 91.2415) (xy 54.817508 91.262233) (xy 54.817508 91.262234) (xy 54.740127 91.282968) (xy 54.740122 91.28297) (xy 54.601376 91.363075) (xy 54.601366 91.363083) (xy 54.123083 91.841366) (xy 54.123075 91.841376) (xy 54.042969 91.980123) (xy 54.042966 91.980129) (xy 54.040342 91.989926) (xy 54.040341 91.98993) (xy 54.028153 92.035414) (xy 53.991201 92.096036) (xy 53.966417 92.113614) (xy 53.86443 92.168807) (xy 53.864424 92.168811) (xy 53.686762 92.307091) (xy 53.534279 92.472729) (xy 53.445483 92.608643) (xy 53.391479 92.654731) (xy 53.321131 92.664306) (xy 53.256774 92.634329) (xy 53.234517 92.608643) (xy 53.14572 92.472729) (xy 53.0166 92.33247) (xy 52.99324 92.307094) (xy 52.993239 92.307093) (xy 52.993237 92.307091) (xy 52.873684 92.214039) (xy 52.815576 92.168811) (xy 52.617574 92.061658) (xy 52.617572 92.061657) (xy 52.617571 92.061656) (xy 52.404639 91.988557) (xy 52.40463 91.988555) (xy 52.345469 91.978683) (xy 52.182569 91.9515) (xy 51.957431 91.9515) (xy 51.809211 91.976233) (xy 51.735369 91.988555) (xy 51.73536 91.988557) (xy 51.522428 92.061656) (xy 51.522426 92.061658) (xy 51.324432 92.168807) (xy 51.324426 92.16881) (xy 51.324424 92.168811) (xy 51.146762 92.307091) (xy 50.994279 92.472729) (xy 50.905483 92.608643) (xy 50.851479 92.654731) (xy 50.781131 92.664306) (xy 50.716774 92.634329) (xy 50.694517 92.608643) (xy 50.60572 92.472729) (xy 50.4766 92.33247) (xy 50.45324 92.307094) (xy 50.453239 92.307093) (xy 50.453237 92.307091) (xy 50.333684 92.214039) (xy 50.275576 92.168811) (xy 50.077574 92.061658) (xy 50.077572 92.061657) (xy 50.077571 92.061656) (xy 49.864639 91.988557) (xy 49.86463 91.988555) (xy 49.805469 91.978683) (xy 49.642569 91.9515) (xy 49.417431 91.9515) (xy 49.269211 91.976233) (xy 49.195369 91.988555) (xy 49.19536 91.988557) (xy 49.000412 92.055483) (xy 48.929487 92.058683) (xy 48.868092 92.023031) (xy 48.835718 91.959845) (xy 48.8335 91.93631) (xy 48.8335 84.137607) (xy 48.833499 84.137603) (xy 48.816459 84.051936) (xy 48.809155 84.015215) (xy 48.783332 83.952872) (xy 48.761401 83.899925) (xy 48.692072 83.796167) (xy 47.373999 82.478094) (xy 47.339973 82.415782) (xy 47.345038 82.344967) (xy 47.373999 82.299904) (xy 49.041728 80.632176) (xy 50.753499 78.920405) (xy 50.815811 78.886379) (xy 50.842594 78.8835) (xy 53.1405 78.8835) (xy 53.208621 78.903502) (xy 53.255114 78.957158) (xy 53.2665 79.0095) (xy 53.2665 79.148649) (xy 53.273009 79.209196) (xy 53.273011 79.209204) (xy 53.32411 79.346202) (xy 53.324112 79.346207) (xy 53.411738 79.463261) (xy 53.528792 79.550887) (xy 53.528794 79.550888) (xy 53.528796 79.550889) (xy 53.568256 79.565607) (xy 53.665795 79.601988) (xy 53.665803 79.60199) (xy 53.72635 79.608499) (xy 53.726355 79.608499) (xy 53.726362 79.6085) (xy 53.726368 79.6085) (xy 55.523632 79.6085) (xy 55.523638 79.6085) (xy 55.523645 79.608499) (xy 55.523649 79.608499) (xy 55.584196 79.60199) (xy 55.584199 79.601989) (xy 55.584201 79.601989) (xy 55.591915 79.599112) (xy 55.603045 79.59496) (xy 55.721204 79.550889) (xy 55.725052 79.548009) (xy 55.838261 79.463261) (xy 55.925886 79.346208) (xy 55.925885 79.346208) (xy 55.925889 79.346204) (xy 55.969999 79.227939) (xy 56.012545 79.171107) (xy 56.079066 79.146296) (xy 56.14844 79.161388) (xy 56.180753 79.186635) (xy 56.218779 79.227942) (xy 56.241762 79.252908) (xy 56.267457 79.272907) (xy 56.419424 79.391189) (xy 56.617426 79.498342) (xy 56.617427 79.498342) (xy 56.617428 79.498343) (xy 56.705093 79.528438) (xy 56.830365 79.571444) (xy 57.052431 79.6085) (xy 57.052435 79.6085) (xy 57.277565 79.6085) (xy 57.277569 79.6085) (xy 57.499635 79.571444) (xy 57.712574 79.498342) (xy 57.910576 79.391189) (xy 58.08824 79.252906) (xy 58.240722 79.087268) (xy 58.36386 78.898791) (xy 58.454296 78.692616) (xy 58.509564 78.474368) (xy 58.528156 78.25) (xy 58.509564 78.025632) (xy 58.485566 77.930866) (xy 58.454297 77.807387) (xy 58.454296 77.807386) (xy 58.454296 77.807384) (xy 58.36386 77.601209) (xy 58.3465 77.574637) (xy 58.240724 77.412734) (xy 58.24072 77.412729) (xy 58.088237 77.247091) (xy 57.98764 77.168793) (xy 57.910576 77.108811) (xy 57.712574 77.001658) (xy 57.712572 77.001657) (xy 57.712571 77.001656) (xy 57.499639 76.928557) (xy 57.49963 76.928555) (xy 57.455476 76.921187) (xy 57.277569 76.8915) (xy 57.052431 76.8915) (xy 56.904211 76.916233) (xy 56.830369 76.928555) (xy 56.83036 76.928557) (xy 56.617428 77.001656) (xy 56.617426 77.001658) (xy 56.492067 77.069499) (xy 56.419426 77.10881) (xy 56.419424 77.108811) (xy 56.241762 77.247091) (xy 56.180754 77.313363) (xy 56.119901 77.349933) (xy 56.048936 77.347798) (xy 55.990391 77.307636) (xy 55.969999 77.272057) (xy 55.936115 77.181212) (xy 55.925889 77.153796) (xy 55.925888 77.153794) (xy 55.925887 77.153792) (xy 55.838261 77.036738) (xy 55.721207 76.949112) (xy 55.721202 76.94911) (xy 55.584204 76.898011) (xy 55.584196 76.898009) (xy 55.523649 76.8915) (xy 55.523638 76.8915) (xy 53.726362 76.8915) (xy 53.72635 76.8915) (xy 53.665803 76.898009) (xy 53.665795 76.898011) (xy 53.528797 76.94911) (xy 53.528792 76.949112) (xy 53.411738 77.036738) (xy 53.324112 77.153792) (xy 53.32411 77.153797) (xy 53.273011 77.290795) (xy 53.273009 77.290803) (xy 53.2665 77.35135) (xy 53.2665 77.4905) (xy 53.246498 77.558621) (xy 53.192842 77.605114) (xy 53.1405 77.6165) (xy 50.465603 77.6165) (xy 50.402286 77.629095) (xy 50.343215 77.640845) (xy 50.343213 77.640845) (xy 50.343212 77.640846) (xy 50.322735 77.649328) (xy 50.237691 77.684555) (xy 50.227923 77.688601) (xy 50.124171 77.757926) (xy 50.124164 77.757931) (xy 46.31404 81.568055) (xy 46.251728 81.602081) (xy 46.180912 81.597016) (xy 46.124077 81.554469) (xy 46.117512 81.544794) (xy 46.014754 81.377107) (xy 46.01475 81.377102) (xy 46.005204 81.365925) (xy 45.855433 81.190567) (xy 45.774929 81.121809) (xy 45.736121 81.06236) (xy 45.735615 80.991366) (xy 45.773571 80.931367) (xy 45.774879 80.930232) (xy 45.855433 80.861433) (xy 46.014752 80.674896) (xy 46.142927 80.465732) (xy 46.236805 80.239092) (xy 46.294072 80.000557) (xy 46.313319 79.756) (xy 46.294072 79.511443) (xy 46.236805 79.272908) (xy 46.142927 79.046268) (xy 46.014752 78.837104) (xy 45.855433 78.650567) (xy 45.668896 78.491248) (xy 45.668894 78.491246) (xy 45.668892 78.491245) (xy 45.546256 78.416094) (xy 45.459732 78.363073) (xy 45.233092 78.269195) (xy 44.994557 78.211928) (xy 44.75 78.192681) (xy 44.505443 78.211928) (xy 44.266907 78.269195) (xy 44.209725 78.292881) (xy 44.09235 78.3415) (xy 44.040266 78.363074) (xy 43.831107 78.491245) (xy 43.644567 78.650567) (xy 43.485245 78.837107) (xy 43.374492 79.017842) (xy 43.357073 79.046268) (xy 43.340295 79.086773) (xy 43.263195 79.272907) (xy 43.209073 79.498342) (xy 43.205928 79.511443) (xy 43.186681 79.756) (xy 43.205928 80.000557) (xy 43.263195 80.239092) (xy 43.357073 80.465732) (xy 43.400713 80.536946) (xy 43.485245 80.674892) (xy 43.485246 80.674894) (xy 43.485248 80.674896) (xy 43.644567 80.861433) (xy 43.689723 80.9) (xy 43.725069 80.930189) (xy 43.763878 80.98964) (xy 43.764384 81.060635) (xy 43.726428 81.120633) (xy 43.725069 81.121811) (xy 43.644567 81.190567) (xy 43.495403 81.365215) (xy 43.48525 81.377102) (xy 43.485245 81.377107) (xy 43.357074 81.586266) (xy 43.263195 81.812907) (xy 43.237408 81.92032) (xy 43.205928 82.051443) (xy 43.186681 82.296) (xy 43.205928 82.540557) (xy 43.263195 82.779092) (xy 43.357073 83.005732) (xy 43.400355 83.076362) (xy 43.466129 83.183697) (xy 43.484667 83.25223) (xy 43.46321 83.319907) (xy 43.434206 83.350398) (xy 43.337096 83.423095) (xy 43.249555 83.540034) (xy 43.249555 83.540035) (xy 43.198505 83.676906) (xy 43.192 83.737402) (xy 43.192 84.582) (xy 44.261562 84.582) (xy 44.237482 84.623708) (xy 44.2 84.763591) (xy 44.2 84.908409) (xy 44.237482 85.048292) (xy 44.261562 85.09) (xy 43.192 85.09) (xy 43.192 85.934597) (xy 43.198505 85.995093) (xy 43.249555 86.131964) (xy 43.249555 86.131965) (xy 43.337095 86.248904) (xy 43.454034 86.336444) (xy 43.590906 86.387494) (xy 43.651402 86.393999) (xy 43.651415 86.394) (xy 44.496 86.394) (xy 44.496 85.324438) (xy 44.537708 85.348518) (xy 44.677591 85.386) (xy 44.822409 85.386) (xy 44.962292 85.348518) (xy 45.004 85.324438) (xy 45.004 86.394) (xy 45.848585 86.394) (xy 45.848597 86.393999) (xy 45.909093 86.387494) (xy 46.045964 86.336444) (xy 46.045965 86.336444) (xy 46.162904 86.248904) (xy 46.250444 86.131965) (xy 46.250444 86.131964) (xy 46.301494 85.995093) (xy 46.307999 85.934597) (xy 46.308 85.934585) (xy 46.308 85.09) (xy 45.238438 85.09) (xy 45.262518 85.048292) (xy 45.3 84.908409) (xy 45.3 84.763591) (xy 45.262518 84.623708) (xy 45.238438 84.582) (xy 46.308 84.582) (xy 46.308 83.737414) (xy 46.307999 83.737402) (xy 46.301494 83.676906) (xy 46.250444 83.540035) (xy 46.250444 83.540034) (xy 46.162905 83.423097) (xy 46.065793 83.350399) (xy 46.023247 83.293563) (xy 46.018183 83.222747) (xy 46.033866 83.183702) (xy 46.046839 83.162532) (xy 46.099483 83.114901) (xy 46.169524 83.103293) (xy 46.234723 83.131394) (xy 46.243367 83.139271) (xy 47.529595 84.425499) (xy 47.563621 84.487811) (xy 47.5665 84.514594) (xy 47.5665 91.895114) (xy 47.546498 91.963235) (xy 47.492842 92.009728) (xy 47.422568 92.019832) (xy 47.399589 92.014287) (xy 47.324643 91.988558) (xy 47.324636 91.988556) (xy 47.324635 91.988556) (xy 47.324632 91.988555) (xy 47.32463 91.988555) (xy 47.265469 91.978683) (xy 47.102569 91.9515) (xy 46.877431 91.9515) (xy 46.729211 91.976233) (xy 46.655369 91.988555) (xy 46.65536 91.988557) (xy 46.442428 92.061656) (xy 46.442426 92.061658) (xy 46.244432 92.168807) (xy 46.244426 92.16881) (xy 46.244424 92.168811) (xy 46.066759 92.307094) (xy 46.005374 92.373775) (xy 45.944521 92.410346) (xy 45.873557 92.408211) (xy 45.815012 92.368049) (xy 45.794618 92.33247) (xy 45.750443 92.214033) (xy 45.662904 92.097095) (xy 45.545965 92.009555) (xy 45.409093 91.958505) (xy 45.348597 91.952) (xy 44.704 91.952) (xy 44.704 92.867749) (xy 44.646853 92.834755) (xy 44.517143 92.8) (xy 44.382857 92.8) (xy 44.253147 92.834755) (xy 44.196 92.867749) (xy 44.196 91.952) (xy 43.551402 91.952) (xy 43.490906 91.958505) (xy 43.354035 92.009555) (xy 43.354034 92.009555) (xy 43.237095 92.097095) (xy 43.149555 92.214034) (xy 43.149553 92.214039) (xy 43.10538 92.33247) (xy 43.062833 92.389306) (xy 42.996313 92.414116) (xy 42.926939 92.399024) (xy 42.894626 92.373777) (xy 42.83324 92.307094) (xy 42.833239 92.307093) (xy 42.833237 92.307091) (xy 42.713684 92.214039) (xy 42.655576 92.168811) (xy 42.457574 92.061658) (xy 42.457572 92.061657) (xy 42.457571 92.061656) (xy 42.244639 91.988557) (xy 42.24463 91.988555) (xy 42.185469 91.978683) (xy 42.022569 91.9515) (xy 41.797431 91.9515) (xy 41.649211 91.976233) (xy 41.575369 91.988555) (xy 41.57536 91.988557) (xy 41.362428 92.061656) (xy 41.362426 92.061658) (xy 41.164432 92.168807) (xy 41.164426 92.16881) (xy 41.164424 92.168811) (xy 40.986762 92.307091) (xy 40.834279 92.472729) (xy 40.745483 92.608643) (xy 40.691479 92.654731) (xy 40.621131 92.664306) (xy 40.556774 92.634329) (xy 40.534517 92.608643) (xy 40.44572 92.472729) (xy 40.3166 92.33247) (xy 40.29324 92.307094) (xy 40.293239 92.307093) (xy 40.293237 92.307091) (xy 40.173684 92.214039) (xy 40.115576 92.168811) (xy 39.917574 92.061658) (xy 39.917572 92.061657) (xy 39.917571 92.061656) (xy 39.704639 91.988557) (xy 39.70463 91.988555) (xy 39.645469 91.978683) (xy 39.482569 91.9515) (xy 39.257431 91.9515) (xy 39.109211 91.976233) (xy 39.035369 91.988555) (xy 39.03536 91.988557) (xy 38.822428 92.061656) (xy 38.822426 92.061658) (xy 38.624432 92.168807) (xy 38.624426 92.16881) (xy 38.624424 92.168811) (xy 38.446762 92.307091) (xy 38.294279 92.472729) (xy 38.294275 92.472734) (xy 38.231983 92.568081) (xy 38.177979 92.61417) (xy 38.107632 92.623745) (xy 38.043274 92.593768) (xy 38.005341 92.533755) (xy 38.0005 92.499166) (xy 38.0005 73.391649) (xy 46.3415 73.391649) (xy 46.3415 73.613351) (xy 46.361076 73.736946) (xy 46.376183 73.832329) (xy 46.442669 74.036951) (xy 46.444692 74.043176) (xy 46.541674 74.233514) (xy 46.545345 74.240718) (xy 46.675658 74.420078) (xy 46.832421 74.576841) (xy 46.904754 74.629394) (xy 47.011785 74.707157) (xy 47.209324 74.807808) (xy 47.420176 74.876318) (xy 47.639149 74.911) (xy 47.639152 74.911) (xy 50.060848 74.911) (xy 50.060851 74.911) (xy 50.279824 74.876318) (xy 50.490676 74.807808) (xy 50.688215 74.707157) (xy 50.867576 74.576843) (xy 51.024343 74.420076) (xy 51.154657 74.240715) (xy 51.255308 74.043176) (xy 51.323818 73.832324) (xy 51.3585 73.613351) (xy 51.3585 73.391649) (xy 51.323818 73.172676) (xy 51.255308 72.961824) (xy 51.154657 72.764285) (xy 51.081111 72.663058) (xy 51.024341 72.584921) (xy 50.867578 72.428158) (xy 50.688218 72.297845) (xy 50.688217 72.297844) (xy 50.688215 72.297843) (xy 50.490676 72.197192) (xy 50.490673 72.197191) (xy 50.490671 72.19719) (xy 50.279823 72.128681) (xy 50.279824 72.128681) (xy 50.224188 72.119869) (xy 50.160036 72.089456) (xy 50.154806 72.084516) (xy 49.516123 71.445833) (xy 49.605694 71.421833) (xy 49.708306 71.36259) (xy 49.79209 71.278806) (xy 49.851333 71.176194) (xy 49.875333 71.086623) (xy 50.573138 71.784429) (xy 50.573139 71.784429) (xy 50.65248 71.66299) (xy 50.732164 71.481328) (xy 50.777845 71.426979) (xy 50.845657 71.405955) (xy 50.861021 71.406663) (xy 50.901352 71.410999) (xy 50.901353 71.410999) (xy 50.901362 71.411) (xy 50.901368 71.411) (xy 52.798632 71.411) (xy 52.798638 71.411) (xy 52.798645 71.410999) (xy 52.798649 71.410999) (xy 52.859196 71.40449) (xy 52.859199 71.404489) (xy 52.859201 71.404489) (xy 52.996204 71.353389) (xy 53.113261 71.265761) (xy 53.200887 71.148707) (xy 53.200887 71.148706) (xy 53.200889 71.148704) (xy 53.251989 71.011701) (xy 53.252979 71.0025) (xy 53.258499 70.951149) (xy 53.2585 70.951132) (xy 53.2585 66.453867) (xy 53.258499 66.45385) (xy 53.25199 66.393303) (xy 53.251988 66.393295) (xy 53.216834 66.299046) (xy 53.200889 66.256296) (xy 53.200888 66.256294) (xy 53.200887 66.256292) (xy 53.113261 66.139238) (xy 52.996207 66.051612) (xy 52.996202 66.05161) (xy 52.859204 66.000511) (xy 52.859196 66.000509) (xy 52.798649 65.994) (xy 52.798638 65.994) (xy 52.492914 65.994) (xy 52.424793 65.973998) (xy 52.403823 65.957099) (xy 51.646724 65.2) (xy 56.086496 65.2) (xy 56.106457 65.389927) (xy 56.136526 65.48247) (xy 56.165473 65.571556) (xy 56.165476 65.571561) (xy 56.256116 65.728555) (xy 56.26096 65.736944) (xy 56.334137 65.818215) (xy 56.364853 65.88222) (xy 56.3665 65.902524) (xy 56.3665 72.597474) (xy 56.346498 72.665595) (xy 56.334137 72.681784) (xy 56.260957 72.763059) (xy 56.165476 72.928438) (xy 56.165473 72.928445) (xy 56.106457 73.110072) (xy 56.086496 73.3) (xy 56.106457 73.489927) (xy 56.127376 73.554306) (xy 56.165473 73.671556) (xy 56.165476 73.671561) (xy 56.260958 73.836941) (xy 56.260965 73.836951) (xy 56.388744 73.978864) (xy 56.388747 73.978866) (xy 56.543248 74.091118) (xy 56.717712 74.168794) (xy 56.904513 74.2085) (xy 57.095487 74.2085) (xy 57.282288 74.168794) (xy 57.456752 74.091118) (xy 57.611253 73.978866) (xy 57.673272 73.909987) (xy 57.739034 73.836951) (xy 57.739035 73.836949) (xy 57.73904 73.836944) (xy 57.834527 73.671556) (xy 57.893542 73.489928) (xy 57.913504 73.3) (xy 57.893542 73.110072) (xy 57.834527 72.928444) (xy 57.73975 72.764285) (xy 57.739042 72.763059) (xy 57.739041 72.763058) (xy 57.73904 72.763056) (xy 57.665863 72.681784) (xy 57.635146 72.617776) (xy 57.6335 72.597474) (xy 57.6335 65.902524) (xy 57.653502 65.834403) (xy 57.665858 65.81822) (xy 57.73904 65.736944) (xy 57.834527 65.571556) (xy 57.893542 65.389928) (xy 57.913504 65.2) (xy 57.893542 65.010072) (xy 57.834527 64.828444) (xy 57.73904 64.663056) (xy 57.739038 64.663054) (xy 57.739034 64.663048) (xy 57.611255 64.521135) (xy 57.456752 64.408882) (xy 57.282288 64.331206) (xy 57.095487 64.2915) (xy 56.904513 64.2915) (xy 56.717711 64.331206) (xy 56.543247 64.408882) (xy 56.388744 64.521135) (xy 56.260965 64.663048) (xy 56.260958 64.663058) (xy 56.165476 64.828438) (xy 56.165473 64.828444) (xy 56.150999 64.872986) (xy 56.106457 65.010072) (xy 56.086496 65.2) (xy 51.646724 65.2) (xy 51.489294 65.04257) (xy 51.329034 64.926134) (xy 51.277596 64.899924) (xy 51.277596 64.899925) (xy 51.152533 64.836202) (xy 50.964136 64.774988) (xy 50.768482 64.744) (xy 50.768479 64.744) (xy 50.045237 64.744) (xy 49.995277 64.731325) (xy 49.994421 64.733278) (xy 49.989647 64.731183) (xy 49.772797 64.656739) (xy 49.772788 64.656737) (xy 49.701042 64.644765) (xy 49.54664 64.619) (xy 49.31736 64.619) (xy 49.166412 64.644188) (xy 49.091211 64.656737) (xy 49.091202 64.656739) (xy 48.874352 64.731183) (xy 48.87435 64.731185) (xy 48.672704 64.840309) (xy 48.672703 64.84031) (xy 48.491766 64.981139) (xy 48.336479 65.149827) (xy 48.21108 65.341767) (xy 48.211073 65.341779) (xy 48.118978 65.551735) (xy 48.118975 65.551742) (xy 48.062693 65.773995) (xy 48.062692 65.774001) (xy 48.062692 65.774003) (xy 48.043758 66.0025) (xy 48.061178 66.212729) (xy 48.062693 66.231004) (xy 48.118975 66.453257) (xy 48.118978 66.453264) (xy 48.211073 66.66322) (xy 48.211075 66.663224) (xy 48.211078 66.66323) (xy 48.336482 66.855176) (xy 48.39955 66.923686) (xy 48.476893 67.007704) (xy 48.491769 67.023863) (xy 48.615121 67.119871) (xy 48.658179 67.153385) (xy 48.69965 67.211011) (xy 48.703384 67.281909) (xy 48.668194 67.343571) (xy 48.65818 67.352248) (xy 48.648496 67.359785) (xy 48.648496 67.359786) (xy 49.347877 68.059166) (xy 49.258306 68.083167) (xy 49.155694 68.14241) (xy 49.07191 68.226194) (xy 49.012667 68.328806) (xy 48.988666 68.418375) (xy 48.290859 67.720568) (xy 48.290858 67.720569) (xy 48.211523 67.842) (xy 48.211519 67.842008) (xy 48.119451 68.051903) (xy 48.063188 68.27408) (xy 48.04426 68.5025) (xy 48.063188 68.730919) (xy 48.119451 68.953096) (xy 48.211519 69.16299) (xy 48.290859 69.284429) (xy 48.988666 68.586622) (xy 49.012667 68.676194) (xy 49.07191 68.778806) (xy 49.155694 68.86259) (xy 49.258306 68.921833) (xy 49.347874 68.945833) (xy 48.648495 69.645212) (xy 48.658589 69.653069) (xy 48.700059 69.710695) (xy 48.703791 69.781593) (xy 48.6686 69.843254) (xy 48.658589 69.851929) (xy 48.648496 69.859784) (xy 48.648496 69.859786) (xy 49.347877 70.559166) (xy 49.258306 70.583167) (xy 49.155694 70.64241) (xy 49.07191 70.726194) (xy 49.012667 70.828806) (xy 48.988666 70.918376) (xy 48.290859 70.220568) (xy 48.290858 70.220569) (xy 48.211523 70.342) (xy 48.211519 70.342008) (xy 48.119451 70.551903) (xy 48.063188 70.77408) (xy 48.04426 71.0025) (xy 48.063188 71.230919) (xy 48.119451 71.453096) (xy 48.211517 71.662987) (xy 48.211521 71.662993) (xy 48.336875 71.854864) (xy 48.362465 71.882662) (xy 48.393886 71.946327) (xy 48.3859 72.016873) (xy 48.341041 72.071902) (xy 48.273552 72.093943) (xy 48.269764 72.094) (xy 47.639149 72.094) (xy 47.420176 72.128682) (xy 47.42017 72.128683) (xy 47.209328 72.19719) (xy 47.209322 72.197193) (xy 47.011781 72.297845) (xy 46.832421 72.428158) (xy 46.675658 72.584921) (xy 46.545345 72.764281) (xy 46.444693 72.961822) (xy 46.44469 72.961828) (xy 46.376183 73.17267) (xy 46.376182 73.172675) (xy 46.376182 73.172676) (xy 46.3415 73.391649) (xy 38.0005 73.391649) (xy 38.0005 67.491691) (xy 44.642 67.491691) (xy 44.642 68.4485) (xy 45.65 68.4485) (xy 45.65 68.9565) (xy 44.642 68.9565) (xy 44.642 69.913308) (xy 44.67667 70.13221) (xy 44.745155 70.342983) (xy 44.745156 70.342985) (xy 44.845772 70.540456) (xy 44.976039 70.719753) (xy 45.132746 70.87646) (xy 45.312043 71.006727) (xy 45.509514 71.107343) (xy 45.509516 71.107344) (xy 45.720289 71.175829) (xy 45.796 71.18782) (xy 45.796 70.114186) (xy 45.804394 70.12258) (xy 45.895606 70.175241) (xy 45.997339 70.2025) (xy 46.102661 70.2025) (xy 46.204394 70.175241) (xy 46.295606 70.12258) (xy 46.304 70.114186) (xy 46.304 71.18782) (xy 46.379709 71.175829) (xy 46.379711 71.175829) (xy 46.590483 71.107344) (xy 46.590485 71.107343) (xy 46.787956 71.006727) (xy 46.967253 70.87646) (xy 47.12396 70.719753) (xy 47.254227 70.540456) (xy 47.354843 70.342985) (xy 47.354844 70.342983) (xy 47.423329 70.13221) (xy 47.458 69.913308) (xy 47.458 68.9565) (xy 46.45 68.9565) (xy 46.45 68.4485) (xy 47.458 68.4485) (xy 47.458 67.491691) (xy 47.423329 67.272789) (xy 47.354844 67.062016) (xy 47.354843 67.062014) (xy 47.254227 66.864543) (xy 47.12396 66.685246) (xy 46.967253 66.528539) (xy 46.787956 66.398272) (xy 46.590485 66.297656) (xy 46.590483 66.297655) (xy 46.379709 66.229169) (xy 46.304 66.217178) (xy 46.304 67.290814) (xy 46.295606 67.28242) (xy 46.204394 67.229759) (xy 46.102661 67.2025) (xy 45.997339 67.2025) (xy 45.895606 67.229759) (xy 45.804394 67.28242) (xy 45.796 67.290814) (xy 45.796 66.217178) (xy 45.72029 66.229169) (xy 45.509516 66.297655) (xy 45.509514 66.297656) (xy 45.312043 66.398272) (xy 45.132746 66.528539) (xy 44.976039 66.685246) (xy 44.845772 66.864543) (xy 44.745156 67.062014) (xy 44.745155 67.062016) (xy 44.67667 67.272789) (xy 44.642 67.491691) (xy 38.0005 67.491691) (xy 38.0005 59.002747) (xy 38.00062 58.997251) (xy 38.017382 58.613338) (xy 38.01834 58.602388) (xy 38.031688 58.501002) (xy 38.068141 58.224113) (xy 38.070049 58.213296) (xy 38.073992 58.195513) (xy 38.152627 57.840808) (xy 38.155471 57.830197) (xy 38.172649 57.775715) (xy 38.270199 57.466323) (xy 38.273956 57.456002) (xy 38.285072 57.429166) (xy 38.419969 57.103496) (xy 38.424611 57.093543) (xy 38.457446 57.030468) (xy 38.600786 56.755114) (xy 38.606261 56.745631) (xy 38.811281 56.423813) (xy 38.817564 56.414841) (xy 38.913338 56.290026) (xy 39.049839 56.112136) (xy 39.056904 56.103716) (xy 39.31466 55.822424) (xy 39.322429 55.814656) (xy 39.367924 55.772968) (xy 39.603718 55.556901) (xy 39.612136 55.549839) (xy 39.790026 55.413338) (xy 39.914841 55.317564) (xy 39.923813 55.311281) (xy 40.245631 55.106261) (xy 40.255114 55.100786) (xy 40.593552 54.924606) (xy 40.603496 54.919969) (xy 40.956009 54.773953) (xy 40.966323 54.770199) (xy 41.330204 54.655468) (xy 41.340808 54.652627) (xy 41.713304 54.570047) (xy 41.724113 54.568141) (xy 42.102391 54.518339) (xy 42.113336 54.517382) (xy 42.497252 54.50062) (xy 42.502748 54.5005) (xy 42.565892 54.5005) (xy 167.434108 54.5005) (xy 167.497252 54.5005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 57.404 112.448) (xy 58.048585 112.448) (xy 58.048597 112.447999) (xy 58.109093 112.441494) (xy 58.245964 112.390444) (xy 58.245965 112.390444) (xy 58.362904 112.302904) (xy 58.450444 112.185965) (xy 58.494618 112.06753) (xy 58.537165 112.010694) (xy 58.603685 111.985883) (xy 58.673059 112.000974) (xy 58.705372 112.026222) (xy 58.766685 112.092824) (xy 58.766762 112.092908) (xy 58.800597 112.119243) (xy 58.944424 112.231189) (xy 59.142426 112.338342) (xy 59.142427 112.338342) (xy 59.142428 112.338343) (xy 59.22609 112.367064) (xy 59.355365 112.411444) (xy 59.577431 112.4485) (xy 59.577435 112.4485) (xy 59.802565 112.4485) (xy 59.802569 112.4485) (xy 60.024635 112.411444) (xy 60.237574 112.338342) (xy 60.435576 112.231189) (xy 60.61324 112.092906) (xy 60.765722 111.927268) (xy 60.854518 111.791354) (xy 60.90852 111.745268) (xy 60.978868 111.735692) (xy 61.043225 111.765669) (xy 61.06548 111.791353) (xy 61.088055 111.825906) (xy 61.154275 111.927265) (xy 61.154279 111.92727) (xy 61.306762 112.092908) (xy 61.340597 112.119243) (xy 61.484424 112.231189) (xy 61.682426 112.338342) (xy 61.682427 112.338342) (xy 61.682428 112.338343) (xy 61.76609 112.367064) (xy 61.895365 112.411444) (xy 62.117431 112.4485) (xy 62.117435 112.4485) (xy 62.342565 112.4485) (xy 62.342569 112.4485) (xy 62.564635 112.411444) (xy 62.777574 112.338342) (xy 62.777577 112.33834) (xy 62.782345 112.336249) (xy 62.783045 112.337845) (xy 62.844945 112.324615) (xy 62.911375 112.349668) (xy 62.953715 112.406657) (xy 62.9615 112.450261) (xy 62.9615 119.736529) (xy 62.961367 119.739289) (xy 62.961376 119.743875) (xy 62.961376 119.743876) (xy 62.961437 119.774499) (xy 62.9615 119.805749) (xy 62.9615 119.871944) (xy 62.961637 119.874698) (xy 62.962487 120.298784) (xy 62.942621 120.366945) (xy 62.930124 120.383346) (xy 62.858354 120.463055) (xy 62.858353 120.463057) (xy 62.763673 120.627049) (xy 62.762868 120.628444) (xy 62.753468 120.657374) (xy 62.703852 120.810072) (xy 62.683891 121) (xy 62.703852 121.189927) (xy 62.723863 121.251512) (xy 62.762868 121.371556) (xy 62.762871 121.371561) (xy 62.858353 121.536941) (xy 62.85836 121.536951) (xy 62.986139 121.678864) (xy 63.027455 121.708882) (xy 63.140643 121.791118) (xy 63.315107 121.868794) (xy 63.501908 121.9085) (xy 63.692882 121.9085) (xy 63.879683 121.868794) (xy 64.054147 121.791118) (xy 64.208648 121.678866) (xy 64.212117 121.675013) (xy 64.336429 121.536951) (xy 64.33643 121.536949) (xy 64.336435 121.536944) (xy 64.431922 121.371556) (xy 64.490937 121.189928) (xy 64.510899 121) (xy 64.490937 120.810072) (xy 64.431922 120.628444) (xy 64.336435 120.463056) (xy 64.336433 120.463054) (xy 64.336429 120.463048) (xy 64.261849 120.380219) (xy 64.231131 120.316212) (xy 64.229485 120.296161) (xy 64.22947 120.288882) (xy 64.2285 119.804206) (xy 64.2285 112.5169) (xy 64.248502 112.448779) (xy 64.302158 112.402286) (xy 64.372432 112.392182) (xy 64.395406 112.397726) (xy 64.435365 112.411444) (xy 64.657431 112.4485) (xy 64.657435 112.4485) (xy 64.882565 112.4485) (xy 64.882569 112.4485) (xy 65.104635 112.411444) (xy 65.224588 112.370263) (xy 65.295512 112.367064) (xy 65.356908 112.402716) (xy 65.389282 112.465901) (xy 65.3915 112.489437) (xy 65.3915 118.080111) (xy 65.393749 118.088504) (xy 65.393749 118.08851) (xy 65.393751 118.08851) (xy 65.432967 118.23487) (xy 65.43297 118.234877) (xy 65.513075 118.373623) (xy 65.513083 118.373633) (xy 66.826365 119.686915) (xy 66.82637 119.686919) (xy 66.826372 119.686921) (xy 66.826373 119.686922) (xy 66.826375 119.686923) (xy 66.908127 119.734123) (xy 66.965127 119.767032) (xy 66.965133 119.767033) (xy 66.965134 119.767034) (xy 67.004149 119.777488) (xy 67.00415 119.777488) (xy 67.119889 119.8085) (xy 67.11989 119.8085) (xy 67.219889 119.8085) (xy 71.46929 119.8085) (xy 71.537411 119.828502) (xy 71.562926 119.85019) (xy 71.588744 119.878864) (xy 71.631819 119.91016) (xy 71.743248 119.991118) (xy 71.917712 120.068794) (xy 72.104513 120.1085) (xy 72.295487 120.1085) (xy 72.482288 120.068794) (xy 72.656752 119.991118) (xy 72.811253 119.878866) (xy 72.815006 119.874698) (xy 72.837074 119.85019) (xy 72.89752 119.81295) (xy 72.93071 119.8085) (xy 80.96929 119.8085) (xy 81.037411 119.828502) (xy 81.062926 119.85019) (xy 81.088744 119.878864) (xy 81.131819 119.91016) (xy 81.243248 119.991118) (xy 81.417712 120.068794) (xy 81.604513 120.1085) (xy 81.795487 120.1085) (xy 81.982288 120.068794) (xy 82.156752 119.991118) (xy 82.311253 119.878866) (xy 82.415274 119.763337) (xy 82.475719 119.726099) (xy 82.546703 119.72745) (xy 82.598005 119.758554) (xy 83.429595 120.590144) (xy 83.463621 120.652456) (xy 83.4665 120.679239) (xy 83.4665 122.6655) (xy 83.446498 122.733621) (xy 83.392842 122.780114) (xy 83.3405 122.7915) (xy 83.254512 122.7915) (xy 83.06771 122.831206) (xy 82.893246 122.908882) (xy 82.738743 123.021135) (xy 82.712925 123.04981) (xy 82.652479 123.08705) (xy 82.619289 123.0915) (xy 79.154238 123.0915) (xy 79.086117 123.071498) (xy 79.065143 123.054595) (xy 78.023632 122.013083) (xy 78.023622 122.013075) (xy 77.884876 121.93297) (xy 77.884873 121.932969) (xy 77.884872 121.932968) (xy 77.88487 121.932967) (xy 77.884869 121.932967) (xy 77.786158 121.906518) (xy 77.786158 121.906517) (xy 77.73011 121.8915) (xy 75.380709 121.8915) (xy 75.312588 121.871498) (xy 75.287073 121.84981) (xy 75.261254 121.821135) (xy 75.106751 121.708882) (xy 74.932287 121.631206) (xy 74.745486 121.5915) (xy 74.554512 121.5915) (xy 74.36771 121.631206) (xy 74.193246 121.708882) (xy 74.038743 121.821135) (xy 73.910964 121.963048) (xy 73.910957 121.963058) (xy 73.830704 122.102061) (xy 73.815472 122.128444) (xy 73.804859 122.161107) (xy 73.756456 122.310072) (xy 73.736495 122.5) (xy 73.753905 122.665651) (xy 73.741133 122.735489) (xy 73.69263 122.787336) (xy 73.654793 122.802067) (xy 73.517715 122.831204) (xy 73.343247 122.908882) (xy 73.188744 123.021135) (xy 73.162926 123.04981) (xy 73.10248 123.08705) (xy 73.06929 123.0915) (xy 71.619888 123.0915) (xy 71.556443 123.108499) (xy 71.556444 123.1085) (xy 71.465129 123.132967) (xy 71.465122 123.13297) (xy 71.326375 123.213076) (xy 71.326365 123.213084) (xy 68.884856 125.654595) (xy 68.822544 125.68862) (xy 68.795761 125.6915) (xy 65.83071 125.6915) (xy 65.762589 125.671498) (xy 65.737074 125.64981) (xy 65.711255 125.621135) (xy 65.556752 125.508882) (xy 65.382288 125.431206) (xy 65.195487 125.3915) (xy 65.004513 125.3915) (xy 64.817711 125.431206) (xy 64.643247 125.508882) (xy 64.488744 125.621135) (xy 64.360965 125.763048) (xy 64.360958 125.763058) (xy 64.265589 125.928243) (xy 64.265473 125.928444) (xy 64.253008 125.966806) (xy 64.206457 126.110072) (xy 64.186496 126.3) (xy 64.206457 126.489927) (xy 64.227691 126.555277) (xy 64.265473 126.671556) (xy 64.29142 126.716498) (xy 64.360958 126.836941) (xy 64.360965 126.836951) (xy 64.488744 126.978864) (xy 64.488747 126.978866) (xy 64.643248 127.091118) (xy 64.817712 127.168794) (xy 65.004513 127.2085) (xy 65.195487 127.2085) (xy 65.382288 127.168794) (xy 65.556752 127.091118) (xy 65.711253 126.978866) (xy 65.711255 126.978864) (xy 65.737074 126.95019) (xy 65.79752 126.91295) (xy 65.83071 126.9085) (xy 69.180109 126.9085) (xy 69.18011 126.9085) (xy 69.180111 126.9085) (xy 69.273375 126.88351) (xy 69.334873 126.867032) (xy 69.473627 126.786922) (xy 71.915144 124.345405) (xy 71.977456 124.31138) (xy 72.004239 124.3085) (xy 73.06929 124.3085) (xy 73.137411 124.328502) (xy 73.162926 124.35019) (xy 73.188744 124.378864) (xy 73.236239 124.413371) (xy 73.343248 124.491118) (xy 73.517712 124.568794) (xy 73.704513 124.6085) (xy 73.895487 124.6085) (xy 74.082288 124.568794) (xy 74.256752 124.491118) (xy 74.411253 124.378866) (xy 74.413505 124.376365) (xy 74.539034 124.236951) (xy 74.539035 124.236949) (xy 74.53904 124.236944) (xy 74.634527 124.071556) (xy 74.693542 123.889928) (xy 74.713504 123.7) (xy 74.696093 123.534346) (xy 74.708865 123.46451) (xy 74.757367 123.412664) (xy 74.795202 123.397932) (xy 74.932287 123.368794) (xy 75.106751 123.291118) (xy 75.261252 123.178866) (xy 75.261254 123.178864) (xy 75.287073 123.15019) (xy 75.347519 123.11295) (xy 75.380709 123.1085) (xy 77.34576 123.1085) (xy 77.413881 123.128502) (xy 77.434855 123.145405) (xy 78.476364 124.186915) (xy 78.476369 124.186919) (xy 78.476371 124.186921) (xy 78.476372 124.186922) (xy 78.476374 124.186923) (xy 78.568543 124.240137) (xy 78.615126 124.267032) (xy 78.690488 124.287225) (xy 78.769888 124.3085) (xy 78.769889 124.3085) (xy 78.930109 124.3085) (xy 82.619289 124.3085) (xy 82.68741 124.328502) (xy 82.712925 124.35019) (xy 82.738743 124.378864) (xy 82.786238 124.413371) (xy 82.893247 124.491118) (xy 83.067711 124.568794) (xy 83.254512 124.6085) (xy 83.3405 124.6085) (xy 83.408621 124.628502) (xy 83.455114 124.682158) (xy 83.4665 124.7345) (xy 83.4665 125.43081) (xy 83.446498 125.498931) (xy 83.429595 125.519905) (xy 83.293083 125.656416) (xy 83.293075 125.656426) (xy 83.212969 125.795173) (xy 83.212967 125.795178) (xy 83.198643 125.848639) (xy 83.198643 125.84864) (xy 83.187253 125.891149) (xy 83.173528 125.942373) (xy 83.1715 125.94994) (xy 83.1715 127.650061) (xy 83.188073 127.711916) (xy 83.188074 127.711916) (xy 83.212968 127.804822) (xy 83.21297 127.804827) (xy 83.293075 127.943573) (xy 83.293083 127.943583) (xy 84.661416 129.311916) (xy 84.661421 129.31192) (xy 84.661423 129.311922) (xy 84.724328 129.34824) (xy 84.800178 129.392032) (xy 84.954939 129.4335) (xy 84.95494 129.4335) (xy 85.11516 129.4335) (xy 89.26929 129.4335) (xy 89.337411 129.453502) (xy 89.362926 129.47519) (xy 89.388744 129.503864) (xy 89.401546 129.513165) (xy 89.543248 129.616118) (xy 89.717712 129.693794) (xy 89.904513 129.7335) (xy 90.095487 129.7335) (xy 90.282288 129.693794) (xy 90.456752 129.616118) (xy 90.611253 129.503866) (xy 90.711949 129.392032) (xy 90.739034 129.361951) (xy 90.739035 129.361949) (xy 90.73904 129.361944) (xy 90.834527 129.196556) (xy 90.893542 129.014928) (xy 90.913504 128.825) (xy 90.893542 128.635072) (xy 90.834527 128.453444) (xy 90.73904 128.288056) (xy 90.739038 128.288054) (xy 90.739034 128.288048) (xy 90.611255 128.146135) (xy 90.456752 128.033882) (xy 90.282288 127.956206) (xy 90.095487 127.9165) (xy 89.904513 127.9165) (xy 89.717711 127.956206) (xy 89.543247 128.033882) (xy 89.388744 128.146135) (xy 89.362926 128.17481) (xy 89.30248 128.21205) (xy 89.26929 128.2165) (xy 85.339289 128.2165) (xy 85.271168 128.196498) (xy 85.250194 128.179595) (xy 84.847645 127.777046) (xy 84.813619 127.714734) (xy 84.818684 127.643919) (xy 84.861231 127.587083) (xy 84.88549 127.572845) (xy 84.956752 127.541118) (xy 85.111253 127.428866) (xy 85.23904 127.286944) (xy 85.334527 127.121556) (xy 85.393542 126.939928) (xy 85.413504 126.75) (xy 85.393542 126.560072) (xy 85.334527 126.378444) (xy 85.262568 126.253807) (xy 85.239042 126.213059) (xy 85.239041 126.213058) (xy 85.23904 126.213056) (xy 85.165863 126.131784) (xy 85.135146 126.067776) (xy 85.1335 126.047474) (xy 85.1335 118.548627) (xy 85.153502 118.480506) (xy 85.207158 118.434013) (xy 85.277432 118.423909) (xy 85.342012 118.453403) (xy 85.353136 118.464316) (xy 85.388747 118.503866) (xy 85.543248 118.616118) (xy 85.717712 118.693794) (xy 85.904513 118.7335) (xy 86.095487 118.7335) (xy 86.282288 118.693794) (xy 86.456752 118.616118) (xy 86.606163 118.507563) (xy 86.673031 118.483706) (xy 86.680224 118.4835) (xy 87.56002 118.4835) (xy 87.628141 118.503502) (xy 87.649115 118.520405) (xy 93.529595 124.400885) (xy 93.563621 124.463197) (xy 93.5665 124.48998) (xy 93.5665 131.2155) (xy 93.546498 131.283621) (xy 93.492842 131.330114) (xy 93.4405 131.3415) (xy 60.591834 131.3415) (xy 60.523713 131.321498) (xy 60.47722 131.267842) (xy 60.467116 131.197568) (xy 60.49661 131.132988) (xy 60.531864 131.104686) (xy 60.585303 131.075766) (xy 60.762902 130.937534) (xy 60.915325 130.771958) (xy 61.038419 130.583548) (xy 61.12882 130.377456) (xy 61.128823 130.377449) (xy 61.176544 130.189) (xy 60.270703 130.189) (xy 60.305925 130.127993) (xy 60.34 130.000826) (xy 60.34 129.869174) (xy 60.305925 129.742007) (xy 60.270703 129.681) (xy 61.176544 129.681) (xy 61.176544 129.680999) (xy 61.128823 129.49255) (xy 61.12882 129.492543) (xy 61.038419 129.286451) (xy 60.915325 129.098041) (xy 60.762902 128.932465) (xy 60.585301 128.794232) (xy 60.5853 128.794231) (xy 60.551791 128.776097) (xy 60.501401 128.726083) (xy 60.48605 128.656766) (xy 60.510612 128.590153) (xy 60.55179 128.554472) (xy 60.585576 128.536189) (xy 60.76324 128.397906) (xy 60.915722 128.232268) (xy 60.997975 128.106369) (xy 61.051978 128.060281) (xy 61.078876 128.051706) (xy 61.080826 128.051318) (xy 61.197077 128.028194) (xy 61.316917 127.978555) (xy 61.424769 127.906491) (xy 62.111491 127.219769) (xy 62.183555 127.111917) (xy 62.233194 126.992077) (xy 62.2585 126.864857) (xy 62.2585 126.735144) (xy 62.2585 121.470143) (xy 62.233194 121.342923) (xy 62.183555 121.223083) (xy 62.167494 121.199046) (xy 62.111491 121.115231) (xy 61.197008 120.200748) (xy 61.162985 120.138438) (xy 61.16396 120.080725) (xy 61.184564 119.999368) (xy 61.203156 119.775) (xy 61.184564 119.550632) (xy 61.162486 119.463448) (xy 61.129297 119.332387) (xy 61.129296 119.332386) (xy 61.129296 119.332384) (xy 61.03886 119.126209) (xy 61.03214 119.115924) (xy 60.915724 118.937734) (xy 60.91572 118.937729) (xy 60.792643 118.804034) (xy 60.76324 118.772094) (xy 60.763239 118.772093) (xy 60.763237 118.772091) (xy 60.680272 118.707517) (xy 60.585576 118.633811) (xy 60.585569 118.633807) (xy 60.42453 118.546656) (xy 60.37414 118.496643) (xy 60.359883 118.441221) (xy 60.359106 118.441298) (xy 60.358611 118.436277) (xy 60.3585 118.435843) (xy 60.3585 118.435142) (xy 60.358499 118.435139) (xy 60.358275 118.434013) (xy 60.333194 118.307923) (xy 60.283555 118.188083) (xy 60.257868 118.14964) (xy 60.211491 118.080231) (xy 60.21149 118.08023) (xy 60.211487 118.080226) (xy 56.505405 114.374144) (xy 56.471379 114.311832) (xy 56.4685 114.285049) (xy 56.4685 112.574) (xy 56.488502 112.505879) (xy 56.542158 112.459386) (xy 56.5945 112.448) (xy 56.896 112.448) (xy 56.896 111.53225) (xy 56.953147 111.565245) (xy 57.082857 111.6) (xy 57.217143 111.6) (xy 57.346853 111.565245) (xy 57.404 111.53225) ) ) (filled_polygon (layer "B.Cu") (pts (xy 92.917012 105.912329) (xy 92.923581 105.918444) (xy 93.092058 106.086921) (xy 93.092059 106.086922) (xy 93.092061 106.086923) (xy 93.152047 106.121556) (xy 93.230813 106.167032) (xy 93.308194 106.187766) (xy 93.385575 106.2085) (xy 93.385576 106.2085) (xy 93.545796 106.2085) (xy 95.770948 106.2085) (xy 95.839069 106.228502) (xy 95.885562 106.282158) (xy 95.890781 106.295563) (xy 95.915474 106.37156) (xy 96.010958 106.536941) (xy 96.010965 106.536951) (xy 96.138744 106.678864) (xy 96.138747 106.678866) (xy 96.293248 106.791118) (xy 96.467712 106.868794) (xy 96.654513 106.9085) (xy 96.845487 106.9085) (xy 97.032288 106.868794) (xy 97.206752 106.791118) (xy 97.361253 106.678866) (xy 97.362203 106.677811) (xy 97.489034 106.536951) (xy 97.489035 106.536949) (xy 97.48904 106.536944) (xy 97.584527 106.371556) (xy 97.584531 106.371541) (xy 97.587211 106.365526) (xy 97.588699 106.366188) (xy 97.624138 106.31435) (xy 97.689532 106.286707) (xy 97.75949 106.298806) (xy 97.797543 106.327574) (xy 97.859136 106.39598) (xy 97.889854 106.459987) (xy 97.8915 106.48029) (xy 97.8915 112.44576) (xy 97.871498 112.513881) (xy 97.854595 112.534855) (xy 96.063572 114.325877) (xy 96.063564 114.325887) (xy 95.983459 114.464633) (xy 95.983454 114.464645) (xy 95.962861 114.541498) (xy 95.962862 114.541499) (xy 95.941989 114.619399) (xy 95.941989 124.119859) (xy 95.95713 124.176366) (xy 95.983456 124.274618) (xy 95.983459 124.274625) (xy 96.063564 124.413371) (xy 96.063566 124.413373) (xy 96.063567 124.413375) (xy 96.554596 124.904404) (xy 96.58862 124.966715) (xy 96.5915 124.993498) (xy 96.5915 130.469709) (xy 96.571498 130.53783) (xy 96.559137 130.554019) (xy 96.460961 130.663054) (xy 96.460958 130.663058) (xy 96.365476 130.828438) (xy 96.365473 130.828445) (xy 96.306457 131.010072) (xy 96.286496 131.2) (xy 96.286741 131.202331) (xy 96.286496 131.20367) (xy 96.286496 131.206603) (xy 96.28596 131.206603) (xy 96.273968 131.272169) (xy 96.225466 131.324015) (xy 96.161431 131.3415) (xy 94.9595 131.3415) (xy 94.891379 131.321498) (xy 94.844886 131.267842) (xy 94.8335 131.2155) (xy 94.8335 124.112993) (xy 94.833499 124.112989) (xy 94.832411 124.107518) (xy 94.809155 123.990601) (xy 94.806552 123.984316) (xy 94.786115 123.934977) (xy 94.786102 123.934949) (xy 94.786071 123.934872) (xy 94.761401 123.875311) (xy 94.692072 123.771553) (xy 88.278447 117.357929) (xy 88.174689 117.2886) (xy 88.059399 117.240845) (xy 87.969294 117.222922) (xy 87.93701 117.2165) (xy 87.937008 117.2165) (xy 86.73071 117.2165) (xy 86.662589 117.196498) (xy 86.637074 117.17481) (xy 86.611255 117.146135) (xy 86.456752 117.033882) (xy 86.282288 116.956206) (xy 86.095487 116.9165) (xy 85.904513 116.9165) (xy 85.717711 116.956206) (xy 85.543247 117.033882) (xy 85.388746 117.146134) (xy 85.353136 117.185683) (xy 85.292689 117.222922) (xy 85.221705 117.22157) (xy 85.162721 117.182056) (xy 85.134464 117.116925) (xy 85.1335 117.101372) (xy 85.1335 117.014594) (xy 85.153502 116.946473) (xy 85.170405 116.925499) (xy 86.525499 115.570405) (xy 86.587811 115.536379) (xy 86.614594 115.5335) (xy 90.2918 115.5335) (xy 90.359921 115.553502) (xy 90.385437 115.57519) (xy 90.388747 115.578866) (xy 90.543248 115.691118) (xy 90.717712 115.768794) (xy 90.904513 115.8085) (xy 91.095487 115.8085) (xy 91.282288 115.768794) (xy 91.456752 115.691118) (xy 91.611253 115.578866) (xy 91.614563 115.57519) (xy 91.739034 115.436951) (xy 91.739035 115.436949) (xy 91.73904 115.436944) (xy 91.834527 115.271556) (xy 91.893542 115.089928) (xy 91.913504 114.9) (xy 91.893542 114.710072) (xy 91.834527 114.528444) (xy 91.73904 114.363056) (xy 91.739038 114.363054) (xy 91.739034 114.363048) (xy 91.611255 114.221135) (xy 91.456752 114.108882) (xy 91.282288 114.031206) (xy 91.095487 113.9915) (xy 90.904513 113.9915) (xy 90.717711 114.031206) (xy 90.543247 114.108882) (xy 90.388747 114.221133) (xy 90.385437 114.22481) (xy 90.324991 114.26205) (xy 90.2918 114.2665) (xy 86.237603 114.2665) (xy 86.164568 114.281028) (xy 86.115215 114.290845) (xy 86.115213 114.290845) (xy 86.115212 114.290846) (xy 86.112349 114.292032) (xy 86.003209 114.33724) (xy 85.999923 114.338601) (xy 85.896171 114.407926) (xy 85.896164 114.407931) (xy 84.007931 116.296164) (xy 84.007926 116.296171) (xy 83.938601 116.399923) (xy 83.890846 116.515212) (xy 83.8665 116.637603) (xy 83.8665 119.001761) (xy 83.846498 119.069882) (xy 83.792842 119.116375) (xy 83.722568 119.126479) (xy 83.657988 119.096985) (xy 83.651405 119.090856) (xy 79.345405 114.784856) (xy 79.311379 114.722544) (xy 79.3085 114.695761) (xy 79.3085 112.461973) (xy 79.328502 112.393852) (xy 79.382158 112.347359) (xy 79.452432 112.337255) (xy 79.475411 112.342799) (xy 79.675365 112.411444) (xy 79.897431 112.4485) (xy 79.897435 112.4485) (xy 80.122565 112.4485) (xy 80.122569 112.4485) (xy 80.344635 112.411444) (xy 80.557574 112.338342) (xy 80.755576 112.231189) (xy 80.93324 112.092906) (xy 80.994626 112.026222) (xy 81.055476 111.989654) (xy 81.126441 111.991787) (xy 81.184986 112.031949) (xy 81.20538 112.067529) (xy 81.249553 112.185961) (xy 81.249555 112.185965) (xy 81.337095 112.302904) (xy 81.454034 112.390444) (xy 81.590906 112.441494) (xy 81.651402 112.447999) (xy 81.651415 112.448) (xy 82.296 112.448) (xy 82.296 111.53225) (xy 82.353147 111.565245) (xy 82.482857 111.6) (xy 82.617143 111.6) (xy 82.746853 111.565245) (xy 82.804 111.53225) (xy 82.804 112.448) (xy 83.448585 112.448) (xy 83.448597 112.447999) (xy 83.509093 112.441494) (xy 83.645964 112.390444) (xy 83.645965 112.390444) (xy 83.762904 112.302904) (xy 83.850444 112.185965) (xy 83.894618 112.06753) (xy 83.937165 112.010694) (xy 84.003685 111.985883) (xy 84.073059 112.000974) (xy 84.105372 112.026222) (xy 84.166685 112.092824) (xy 84.166762 112.092908) (xy 84.200597 112.119243) (xy 84.344424 112.231189) (xy 84.542426 112.338342) (xy 84.542427 112.338342) (xy 84.542428 112.338343) (xy 84.62609 112.367064) (xy 84.755365 112.411444) (xy 84.977431 112.4485) (xy 84.977435 112.4485) (xy 85.202565 112.4485) (xy 85.202569 112.4485) (xy 85.424635 112.411444) (xy 85.444232 112.404715) (xy 85.515155 112.401512) (xy 85.574243 112.434792) (xy 86.726365 113.586915) (xy 86.72637 113.586919) (xy 86.726372 113.586921) (xy 86.726373 113.586922) (xy 86.726375 113.586923) (xy 86.739849 113.594702) (xy 86.865127 113.667032) (xy 86.942508 113.687766) (xy 87.019889 113.7085) (xy 87.01989 113.7085) (xy 89.88011 113.7085) (xy 89.880111 113.7085) (xy 89.957491 113.687766) (xy 90.034873 113.667032) (xy 90.173627 113.586922) (xy 92.586921 111.173628) (xy 92.667032 111.034873) (xy 92.694808 110.931209) (xy 92.7085 110.880111) (xy 92.7085 106.007553) (xy 92.728502 105.939432) (xy 92.782158 105.892939) (xy 92.852432 105.882835) ) ) (filled_polygon (layer "B.Cu") (pts (xy 54.163882 122.228502) (xy 54.184856 122.245405) (xy 56.053841 124.11439) (xy 56.087867 124.176702) (xy 56.082802 124.247517) (xy 56.080134 124.254098) (xy 56.010703 124.412386) (xy 56.010702 124.412387) (xy 55.955437 124.630624) (xy 55.955436 124.63063) (xy 55.955436 124.630632) (xy 55.936844 124.855) (xy 55.953604 125.057263) (xy 55.955437 125.079375) (xy 56.010702 125.297612) (xy 56.010703 125.297613) (xy 56.010704 125.297616) (xy 56.092021 125.483001) (xy 56.101141 125.503793) (xy 56.224275 125.692265) (xy 56.224279 125.69227) (xy 56.33028 125.807416) (xy 56.374297 125.855231) (xy 56.376762 125.857908) (xy 56.428873 125.898468) (xy 56.554424 125.996189) (xy 56.587153 126.013901) (xy 56.58768 126.014186) (xy 56.638071 126.0642) (xy 56.653423 126.133516) (xy 56.628862 126.200129) (xy 56.58768 126.235813) (xy 56.554426 126.25381) (xy 56.554424 126.253811) (xy 56.376762 126.392091) (xy 56.224279 126.557729) (xy 56.224275 126.557734) (xy 56.101141 126.746206) (xy 56.010703 126.952386) (xy 56.010702 126.952387) (xy 55.955437 127.170624) (xy 55.955436 127.17063) (xy 55.955436 127.170632) (xy 55.936844 127.395) (xy 55.955388 127.618794) (xy 55.955437 127.619375) (xy 56.010702 127.837612) (xy 56.010703 127.837613) (xy 56.010704 127.837616) (xy 56.070309 127.973502) (xy 56.101141 128.043793) (xy 56.224275 128.232265) (xy 56.224279 128.23227) (xy 56.295692 128.309844) (xy 56.372744 128.393544) (xy 56.376762 128.397908) (xy 56.423846 128.434555) (xy 56.554424 128.536189) (xy 56.58768 128.554186) (xy 56.638071 128.6042) (xy 56.653423 128.673516) (xy 56.628862 128.740129) (xy 56.58768 128.775814) (xy 56.554426 128.79381) (xy 56.554424 128.793811) (xy 56.376762 128.932091) (xy 56.224279 129.097729) (xy 56.224275 129.097735) (xy 56.144778 129.219415) (xy 56.090774 129.265504) (xy 56.039295 129.2765) (xy 48.259949 129.2765) (xy 48.191828 129.256498) (xy 48.170854 129.239595) (xy 46.604019 127.67276) (xy 45.019769 126.088509) (xy 44.911917 126.016445) (xy 44.863022 125.996192) (xy 44.79208 125.966807) (xy 44.792077 125.966806) (xy 44.66486 125.9415) (xy 44.664857 125.9415) (xy 43.899385 125.9415) (xy 43.831264 125.921498) (xy 43.784771 125.867842) (xy 43.774667 125.797568) (xy 43.793902 125.746585) (xy 43.852807 125.656423) (xy 43.87086 125.628791) (xy 43.961296 125.422616) (xy 44.016564 125.204368) (xy 44.035156 124.98) (xy 44.016564 124.755632) (xy 44.009443 124.72751) (xy 43.961297 124.537387) (xy 43.961296 124.537386) (xy 43.961296 124.537384) (xy 43.87086 124.331209) (xy 43.857905 124.31138) (xy 43.747724 124.142734) (xy 43.74772 124.142729) (xy 43.630014 124.014868) (xy 43.59524 123.977094) (xy 43.595239 123.977093) (xy 43.595237 123.977091) (xy 43.5046 123.906545) (xy 43.417576 123.838811) (xy 43.414913 123.83737) (xy 43.38432 123.820814) (xy 43.333929 123.770802) (xy 43.318576 123.701485) (xy 43.343136 123.634872) (xy 43.38432 123.599186) (xy 43.417576 123.581189) (xy 43.59524 123.442906) (xy 43.747722 123.277268) (xy 43.87086 123.088791) (xy 43.961296 122.882616) (xy 44.016564 122.664368) (xy 44.035156 122.44) (xy 44.027276 122.344904) (xy 44.041585 122.275365) (xy 44.091218 122.2246) (xy 44.152846 122.2085) (xy 54.095761 122.2085) ) ) (filled_polygon (layer "B.Cu") (pts (xy 58.653524 125.530212) (xy 58.675782 125.555898) (xy 58.764674 125.691958) (xy 58.917097 125.857534) (xy 59.094698 125.995767) (xy 59.094704 125.995771) (xy 59.128207 126.013902) (xy 59.178597 126.063915) (xy 59.193949 126.133232) (xy 59.169388 126.199845) (xy 59.128207 126.235528) (xy 59.09443 126.253807) (xy 59.094424 126.253811) (xy 58.916762 126.392091) (xy 58.764279 126.557729) (xy 58.764275 126.557735) (xy 58.684778 126.679415) (xy 58.630774 126.725504) (xy 58.579295 126.7365) (xy 58.560705 126.7365) (xy 58.492584 126.716498) (xy 58.455222 126.679415) (xy 58.375724 126.557735) (xy 58.37572 126.557729) (xy 58.223237 126.392091) (xy 58.104919 126.3) (xy 58.045576 126.253811) (xy 58.012319 126.235813) (xy 57.961929 126.185802) (xy 57.946576 126.116485) (xy 57.971136 126.049872) (xy 58.01232 126.014186) (xy 58.012847 126.013901) (xy 58.045576 125.996189) (xy 58.22324 125.857906) (xy 58.375722 125.692268) (xy 58.464816 125.555898) (xy 58.518819 125.50981) (xy 58.589167 125.500235) ) ) (filled_polygon (layer "B.Cu") (pts (xy 100.759532 113.955182) (xy 100.816368 113.997729) (xy 100.841179 114.064249) (xy 100.8415 114.073238) (xy 100.8415 120.094339) (xy 100.827767 120.151541) (xy 100.753705 120.296895) (xy 100.753702 120.296903) (xy 100.692488 120.485299) (xy 100.687284 120.518148) (xy 100.678224 120.549043) (xy 100.630707 120.657374) (xy 100.630701 120.657393) (xy 100.575437 120.875624) (xy 100.575437 120.875628) (xy 100.575436 120.875632) (xy 100.556844 121.1) (xy 100.575347 121.323297) (xy 100.575437 121.324375) (xy 100.630702 121.542612) (xy 100.630703 121.542613) (xy 100.653436 121.59444) (xy 100.662497 121.625342) (xy 100.668593 121.663829) (xy 100.688843 121.791689) (xy 100.692489 121.814705) (xy 100.7537 122.003093) (xy 100.753701 122.003096) (xy 100.753702 122.003097) (xy 100.764183 122.023667) (xy 100.825893 122.144779) (xy 100.843634 122.179598) (xy 100.960071 122.33986) (xy 103.080135 124.459924) (xy 103.080138 124.459926) (xy 103.080142 124.45993) (xy 103.240402 124.576367) (xy 103.331461 124.622763) (xy 103.331462 124.622764) (xy 103.393526 124.654387) (xy 103.416903 124.666298) (xy 103.6053 124.727512) (xy 103.800954 124.7585) (xy 103.800957 124.7585) (xy 111.199043 124.7585) (xy 111.199046 124.7585) (xy 111.3947 124.727512) (xy 111.583097 124.666298) (xy 111.759598 124.576366) (xy 111.919858 124.45993) (xy 112.05993 124.319858) (xy 113.069866 123.30992) (xy 113.132175 123.275898) (xy 113.20299 123.280962) (xy 113.248053 123.309923) (xy 113.898058 123.959928) (xy 113.989619 124.026451) (xy 114.058322 124.076367) (xy 114.234823 124.166299) (xy 114.357655 124.206209) (xy 114.423219 124.227512) (xy 114.618873 124.2585) (xy 114.618876 124.2585) (xy 122.799043 124.2585) (xy 122.799046 124.2585) (xy 122.9947 124.227512) (xy 123.183097 124.166298) (xy 123.359598 124.076366) (xy 123.519858 123.95993) (xy 123.65993 123.819858) (xy 124.369865 123.109921) (xy 124.432176 123.075898) (xy 124.502991 123.080962) (xy 124.548054 123.109923) (xy 125.357989 123.919858) (xy 125.498061 124.05993) (xy 125.658321 124.176366) (xy 125.834822 124.266298) (xy 126.023219 124.327512) (xy 126.218873 124.3585) (xy 126.218876 124.3585) (xy 134.044043 124.3585) (xy 134.044046 124.3585) (xy 134.2397 124.327512) (xy 134.428097 124.266298) (xy 134.604598 124.176366) (xy 134.764858 124.05993) (xy 134.90493 123.919858) (xy 135.733406 123.09138) (xy 135.795717 123.057357) (xy 135.866532 123.062421) (xy 135.911595 123.091382) (xy 136.936894 124.116681) (xy 136.936923 124.116712) (xy 137.080136 124.259925) (xy 137.080139 124.259927) (xy 137.080142 124.25993) (xy 137.187492 124.337924) (xy 137.187494 124.337926) (xy 137.24039 124.376359) (xy 137.240397 124.376363) (xy 137.240403 124.376367) (xy 137.416904 124.466299) (xy 137.519688 124.499695) (xy 137.6053 124.527512) (xy 137.613418 124.528797) (xy 137.613419 124.528798) (xy 137.61342 124.528798) (xy 137.800954 124.558501) (xy 137.800957 124.558501) (xy 138.004239 124.558501) (xy 138.004263 124.5585) (xy 142.524041 124.5585) (xy 142.524046 124.5585) (xy 142.570202 124.551189) (xy 142.640609 124.560288) (xy 142.694924 124.606009) (xy 142.715897 124.673837) (xy 142.696871 124.742237) (xy 142.679006 124.764733) (xy 141.739143 125.704596) (xy 141.676833 125.73862) (xy 141.65005 125.7415) (xy 98.935137 125.7415) (xy 98.92679 125.74316) (xy 98.926791 125.743161) (xy 98.807916 125.766806) (xy 98.688087 125.816442) (xy 98.688083 125.816444) (xy 98.580232 125.888508) (xy 98.580226 125.888513) (xy 98.023595 126.445145) (xy 97.961283 126.479171) (xy 97.890468 126.474106) (xy 97.833632 126.431559) (xy 97.808821 126.365039) (xy 97.8085 126.35605) (xy 97.8085 124.609149) (xy 97.8085 124.609148) (xy 97.7864 124.526669) (xy 97.767032 124.454386) (xy 97.718509 124.370343) (xy 97.686923 124.315634) (xy 97.686915 124.315624) (xy 97.195894 123.824603) (xy 97.161868 123.762291) (xy 97.158989 123.735508) (xy 97.158989 116.2845) (xy 97.178991 116.216379) (xy 97.232647 116.169886) (xy 97.284989 116.1585) (xy 97.345487 116.1585) (xy 97.532288 116.118794) (xy 97.706752 116.041118) (xy 97.800942 115.972684) (xy 97.867806 115.948828) (xy 97.936958 115.964908) (xy 97.949043 115.972673) (xy 98.043248 116.041118) (xy 98.217712 116.118794) (xy 98.404513 116.1585) (xy 98.595487 116.1585) (xy 98.782288 116.118794) (xy 98.956752 116.041118) (xy 99.111253 115.928866) (xy 99.122437 115.916445) (xy 99.239034 115.786951) (xy 99.239035 115.786949) (xy 99.23904 115.786944) (xy 99.334527 115.621556) (xy 99.393542 115.439928) (xy 99.413504 115.25) (xy 99.413504 115.249998) (xy 99.413504 115.249234) (xy 99.413629 115.248807) (xy 99.414194 115.243433) (xy 99.415176 115.243536) (xy 99.433506 115.181113) (xy 99.450409 115.160139) (xy 100.100437 114.510111) (xy 100.626406 113.984141) (xy 100.688717 113.950117) ) ) (filled_polygon (layer "B.Cu") (pts (xy 149.591256 57.503502) (xy 149.61223 57.520405) (xy 151.179595 59.087769) (xy 151.21362 59.150081) (xy 151.2165 59.176864) (xy 151.2165 76.38702) (xy 151.232955 76.469743) (xy 151.250452 76.557708) (xy 151.317052 76.718495) (xy 151.359237 76.781629) (xy 151.41374 76.863198) (xy 151.413745 76.863204) (xy 156.379595 81.829052) (xy 156.41362 81.891364) (xy 156.4165 81.918147) (xy 156.4165 82.507292) (xy 156.396498 82.575413) (xy 156.342842 82.621906) (xy 156.334534 82.625347) (xy 156.203795 82.674111) (xy 156.203792 82.674112) (xy 156.086738 82.761738) (xy 155.999112 82.878792) (xy 155.99911 82.878797) (xy 155.948011 83.015795) (xy 155.948009 83.015803) (xy 155.9415 83.07635) (xy 155.9415 84.873649) (xy 155.948009 84.934196) (xy 155.948011 84.934204) (xy 155.99911 85.071202) (xy 155.999112 85.071207) (xy 156.086738 85.188261) (xy 156.203791 85.275886) (xy 156.203792 85.275886) (xy 156.203796 85.275889) (xy 156.31881 85.318787) (xy 156.375642 85.361332) (xy 156.400453 85.427852) (xy 156.385362 85.497226) (xy 156.367475 85.522179) (xy 156.22428 85.677729) (xy 156.224275 85.677734) (xy 156.101141 85.866206) (xy 156.010703 86.072386) (xy 156.010702 86.072387) (xy 155.955437 86.290624) (xy 155.955436 86.29063) (xy 155.955436 86.290632) (xy 155.936844 86.515) (xy 155.953197 86.712353) (xy 155.955437 86.739375) (xy 156.010702 86.957612) (xy 156.010703 86.957613) (xy 156.010704 86.957616) (xy 156.085636 87.128445) (xy 156.101141 87.163793) (xy 156.224275 87.352265) (xy 156.224279 87.35227) (xy 156.376762 87.517908) (xy 156.431331 87.560381) (xy 156.554424 87.656189) (xy 156.58768 87.674186) (xy 156.638071 87.7242) (xy 156.653423 87.793516) (xy 156.628862 87.860129) (xy 156.58768 87.895814) (xy 156.554426 87.91381) (xy 156.554424 87.913811) (xy 156.376762 88.052091) (xy 156.224279 88.217729) (xy 156.224275 88.217734) (xy 156.101141 88.406206) (xy 156.010703 88.612386) (xy 156.010702 88.612387) (xy 155.955437 88.830624) (xy 155.955436 88.83063) (xy 155.955436 88.830632) (xy 155.936844 89.055) (xy 155.951921 89.236951) (xy 155.955437 89.279375) (xy 156.010702 89.497612) (xy 156.010703 89.497613) (xy 156.010704 89.497616) (xy 156.084725 89.666368) (xy 156.101141 89.703793) (xy 156.224275 89.892265) (xy 156.224279 89.89227) (xy 156.376762 90.057908) (xy 156.403689 90.078866) (xy 156.554424 90.196189) (xy 156.752426 90.303342) (xy 156.752436 90.303345) (xy 156.7572 90.305436) (xy 156.756601 90.306799) (xy 156.797598 90.332386) (xy 158.704595 92.239383) (xy 158.738621 92.301695) (xy 158.7415 92.328478) (xy 158.7415 93.96306) (xy 158.721498 94.031181) (xy 158.667842 94.077674) (xy 158.597568 94.087778) (xy 158.532988 94.058284) (xy 158.514636 94.038574) (xy 158.513263 94.03674) (xy 158.396207 93.949112) (xy 158.396202 93.94911) (xy 158.259204 93.898011) (xy 158.259196 93.898009) (xy 158.198649 93.8915) (xy 158.198638 93.8915) (xy 156.401362 93.8915) (xy 156.40135 93.8915) (xy 156.340803 93.898009) (xy 156.340795 93.898011) (xy 156.203797 93.94911) (xy 156.203792 93.949112) (xy 156.086738 94.036738) (xy 155.999112 94.153792) (xy 155.99911 94.153797) (xy 155.948011 94.290795) (xy 155.948009 94.290803) (xy 155.9415 94.35135) (xy 155.9415 96.148649) (xy 155.948009 96.209196) (xy 155.948011 96.209204) (xy 155.99911 96.346202) (xy 155.999112 96.346207) (xy 156.086738 96.463261) (xy 156.203791 96.550886) (xy 156.203792 96.550886) (xy 156.203796 96.550889) (xy 156.31881 96.593787) (xy 156.375642 96.636332) (xy 156.400453 96.702852) (xy 156.385362 96.772226) (xy 156.367475 96.797179) (xy 156.22428 96.952729) (xy 156.224275 96.952734) (xy 156.101141 97.141206) (xy 156.010703 97.347386) (xy 156.010702 97.347387) (xy 155.955437 97.565624) (xy 155.955436 97.56563) (xy 155.955436 97.565632) (xy 155.936844 97.79) (xy 155.951753 97.969924) (xy 155.955437 98.014375) (xy 156.010702 98.232612) (xy 156.010703 98.232613) (xy 156.010704 98.232616) (xy 156.036669 98.29181) (xy 156.101141 98.438793) (xy 156.224275 98.627265) (xy 156.224279 98.62727) (xy 156.376762 98.792908) (xy 156.427328 98.832265) (xy 156.554424 98.931189) (xy 156.58768 98.949186) (xy 156.638071 98.9992) (xy 156.653423 99.068516) (xy 156.628862 99.135129) (xy 156.58768 99.170814) (xy 156.554426 99.18881) (xy 156.554424 99.188811) (xy 156.376762 99.327091) (xy 156.224279 99.492729) (xy 156.224275 99.492734) (xy 156.101141 99.681206) (xy 156.010703 99.887386) (xy 156.010702 99.887387) (xy 155.955437 100.105624) (xy 155.955436 100.10563) (xy 155.955436 100.105632) (xy 155.936844 100.33) (xy 155.952668 100.520968) (xy 155.955437 100.554375) (xy 156.010702 100.772612) (xy 156.010703 100.772613) (xy 156.010704 100.772616) (xy 156.100663 100.977704) (xy 156.101141 100.978793) (xy 156.224275 101.167265) (xy 156.224279 101.16727) (xy 156.376762 101.332908) (xy 156.431331 101.375381) (xy 156.554424 101.471189) (xy 156.752426 101.578342) (xy 156.752436 101.578345) (xy 156.7572 101.580436) (xy 156.756601 101.581799) (xy 156.797598 101.607386) (xy 158.704595 103.514383) (xy 158.738621 103.576695) (xy 158.7415 103.603478) (xy 158.7415 105.21306) (xy 158.721498 105.281181) (xy 158.667842 105.327674) (xy 158.597568 105.337778) (xy 158.532988 105.308284) (xy 158.514636 105.288574) (xy 158.513263 105.28674) (xy 158.396207 105.199112) (xy 158.396202 105.19911) (xy 158.259204 105.148011) (xy 158.259196 105.148009) (xy 158.198649 105.1415) (xy 158.198638 105.1415) (xy 156.401362 105.1415) (xy 156.40135 105.1415) (xy 156.340803 105.148009) (xy 156.340795 105.148011) (xy 156.203797 105.19911) (xy 156.203792 105.199112) (xy 156.086738 105.286738) (xy 155.999112 105.403792) (xy 155.99911 105.403797) (xy 155.948011 105.540795) (xy 155.948009 105.540803) (xy 155.9415 105.60135) (xy 155.9415 107.398649) (xy 155.948009 107.459196) (xy 155.948011 107.459204) (xy 155.99911 107.596202) (xy 155.999112 107.596207) (xy 156.086738 107.713261) (xy 156.203791 107.800886) (xy 156.203792 107.800886) (xy 156.203796 107.800889) (xy 156.31881 107.843787) (xy 156.375642 107.886332) (xy 156.400453 107.952852) (xy 156.385362 108.022226) (xy 156.367475 108.047179) (xy 156.22428 108.202729) (xy 156.224275 108.202734) (xy 156.101141 108.391206) (xy 156.010703 108.597386) (xy 156.010702 108.597387) (xy 155.955437 108.815624) (xy 155.955436 108.81563) (xy 155.955436 108.815632) (xy 155.948264 108.902186) (xy 155.936844 109.04) (xy 155.955437 109.264375) (xy 156.010702 109.482612) (xy 156.010703 109.482613) (xy 156.010704 109.482616) (xy 156.064825 109.606) (xy 156.101141 109.688793) (xy 156.224275 109.877265) (xy 156.224279 109.87727) (xy 156.376762 110.042908) (xy 156.383528 110.048174) (xy 156.554424 110.181189) (xy 156.58768 110.199186) (xy 156.638071 110.2492) (xy 156.653423 110.318516) (xy 156.628862 110.385129) (xy 156.58768 110.420814) (xy 156.554426 110.43881) (xy 156.554424 110.438811) (xy 156.376762 110.577091) (xy 156.224279 110.742729) (xy 156.224275 110.742734) (xy 156.11522 110.909658) (xy 156.10114 110.931209) (xy 156.044616 111.060072) (xy 156.010703 111.137386) (xy 156.010702 111.137387) (xy 155.955437 111.355624) (xy 155.955436 111.35563) (xy 155.955436 111.355632) (xy 155.936844 111.58) (xy 155.953992 111.786944) (xy 155.955437 111.804375) (xy 156.010702 112.022612) (xy 156.010705 112.022619) (xy 156.030887 112.068629) (xy 156.0415 112.119243) (xy 156.0415 112.726522) (xy 156.021498 112.794643) (xy 156.004595 112.815617) (xy 153.515617 115.304595) (xy 153.453305 115.338621) (xy 153.426522 115.3415) (xy 149.025954 115.3415) (xy 148.861314 115.367576) (xy 148.830294 115.372489) (xy 148.641904 115.433701) (xy 148.641901 115.433702) (xy 148.587542 115.4614) (xy 148.465406 115.52363) (xy 148.305135 115.640075) (xy 142.598595 121.346616) (xy 142.536283 121.380642) (xy 142.465468 121.375577) (xy 142.408632 121.33303) (xy 142.383821 121.26651) (xy 142.3835 121.257521) (xy 142.3835 120.201367) (xy 142.383499 120.20135) (xy 142.37699 120.140803) (xy 142.376988 120.140795) (xy 142.332904 120.022604) (xy 142.325889 120.003796) (xy 142.325887 120.003793) (xy 142.325887 120.003792) (xy 142.238261 119.886738) (xy 142.121203 119.79911) (xy 142.115462 119.796969) (xy 142.058628 119.754419) (xy 142.033821 119.687898) (xy 142.0335 119.678915) (xy 142.0335 119.513172) (xy 142.033499 119.513168) (xy 142.032347 119.507376) (xy 141.994744 119.318331) (xy 141.918721 119.134796) (xy 141.808353 118.969619) (xy 141.667881 118.829147) (xy 138.295405 115.456671) (xy 138.261379 115.394359) (xy 138.2585 115.367576) (xy 138.2585 112.75) (xy 140.336496 112.75) (xy 140.356457 112.939927) (xy 140.374954 112.996853) (xy 140.415473 113.121556) (xy 140.415476 113.121561) (xy 140.510958 113.286941) (xy 140.510965 113.286951) (xy 140.638744 113.428864) (xy 140.638747 113.428866) (xy 140.793248 113.541118) (xy 140.967712 113.618794) (xy 141.154513 113.6585) (xy 141.245761 113.6585) (xy 141.313882 113.678502) (xy 141.334851 113.6954) (xy 141.851372 114.211921) (xy 141.851373 114.211922) (xy 141.851375 114.211923) (xy 141.867327 114.221133) (xy 141.990127 114.292032) (xy 142.067012 114.312633) (xy 142.144889 114.3335) (xy 142.14489 114.3335) (xy 147.555109 114.3335) (xy 147.55511 114.3335) (xy 147.555111 114.3335) (xy 147.632988 114.312633) (xy 147.709873 114.292032) (xy 147.848627 114.211922) (xy 148.365145 113.695403) (xy 148.427456 113.66138) (xy 148.454239 113.6585) (xy 148.545487 113.6585) (xy 148.732288 113.618794) (xy 148.906752 113.541118) (xy 149.061253 113.428866) (xy 149.088107 113.399042) (xy 149.189034 113.286951) (xy 149.189035 113.286949) (xy 149.18904 113.286944) (xy 149.284527 113.121556) (xy 149.343542 112.939928) (xy 149.363504 112.75) (xy 149.343542 112.560072) (xy 149.284527 112.378444) (xy 149.18904 112.213056) (xy 149.189038 112.213054) (xy 149.189034 112.213048) (xy 149.061255 112.071135) (xy 148.906752 111.958882) (xy 148.732288 111.881206) (xy 148.545487 111.8415) (xy 148.354513 111.8415) (xy 148.167711 111.881206) (xy 147.993247 111.958882) (xy 147.838744 112.071135) (xy 147.710965 112.213048) (xy 147.710958 112.213058) (xy 147.615476 112.378438) (xy 147.615473 112.378444) (xy 147.606937 112.404716) (xy 147.556457 112.560072) (xy 147.536496 112.75) (xy 147.536496 112.750763) (xy 147.536371 112.751187) (xy 147.535806 112.756566) (xy 147.534822 112.756462) (xy 147.516494 112.818884) (xy 147.499592 112.839858) (xy 147.259856 113.079595) (xy 147.197543 113.11362) (xy 147.17076 113.1165) (xy 142.529239 113.1165) (xy 142.461118 113.096498) (xy 142.440144 113.079595) (xy 142.200409 112.83986) (xy 142.166383 112.777548) (xy 142.163504 112.750765) (xy 142.163504 112.750001) (xy 142.143542 112.560072) (xy 142.129514 112.5169) (xy 142.084527 112.378444) (xy 141.98904 112.213056) (xy 141.989038 112.213054) (xy 141.989034 112.213048) (xy 141.861255 112.071135) (xy 141.706752 111.958882) (xy 141.532288 111.881206) (xy 141.345487 111.8415) (xy 141.154513 111.8415) (xy 140.967711 111.881206) (xy 140.793247 111.958882) (xy 140.638744 112.071135) (xy 140.510965 112.213048) (xy 140.510958 112.213058) (xy 140.415476 112.378438) (xy 140.415473 112.378444) (xy 140.406937 112.404716) (xy 140.356457 112.560072) (xy 140.336496 112.75) (xy 138.2585 112.75) (xy 138.2585 73.5) (xy 138.586496 73.5) (xy 138.606457 73.689927) (xy 138.628377 73.757387) (xy 138.665473 73.871556) (xy 138.670848 73.880866) (xy 138.727428 73.978866) (xy 138.76096 74.036944) (xy 138.859136 74.14598) (xy 138.889853 74.209987) (xy 138.8915 74.23029) (xy 138.8915 86.519709) (xy 138.871498 86.58783) (xy 138.859137 86.604019) (xy 138.760961 86.713054) (xy 138.760958 86.713058) (xy 138.665476 86.878438) (xy 138.665473 86.878444) (xy 138.653727 86.914594) (xy 138.606457 87.060072) (xy 138.586496 87.25) (xy 138.606457 87.439927) (xy 138.631795 87.517906) (xy 138.665473 87.621556) (xy 138.665476 87.621561) (xy 138.760958 87.786941) (xy 138.760965 87.786951) (xy 138.888744 87.928864) (xy 138.935805 87.963056) (xy 139.043248 88.041118) (xy 139.217712 88.118794) (xy 139.404513 88.1585) (xy 139.595487 88.1585) (xy 139.782288 88.118794) (xy 139.956752 88.041118) (xy 140.059549 87.96643) (xy 140.126416 87.942573) (xy 140.195568 87.958653) (xy 140.242729 88.005367) (xy 140.260958 88.036941) (xy 140.260965 88.036951) (xy 140.388744 88.178864) (xy 140.388747 88.178866) (xy 140.543248 88.291118) (xy 140.717712 88.368794) (xy 140.904513 88.4085) (xy 141.095487 88.4085) (xy 141.282288 88.368794) (xy 141.456752 88.291118) (xy 141.611253 88.178866) (xy 141.625487 88.163058) (xy 141.739034 88.036951) (xy 141.739035 88.036949) (xy 141.73904 88.036944) (xy 141.834527 87.871556) (xy 141.893542 87.689928) (xy 141.913504 87.5) (xy 141.893542 87.310072) (xy 141.834527 87.128444) (xy 141.73904 86.963056) (xy 141.640863 86.854019) (xy 141.610146 86.790012) (xy 141.6085 86.769709) (xy 141.6085 85.25) (xy 142.336496 85.25) (xy 142.356457 85.439927) (xy 142.383183 85.522179) (xy 142.415473 85.621556) (xy 142.443841 85.670691) (xy 142.510958 85.786941) (xy 142.510965 85.786951) (xy 142.638744 85.928864) (xy 142.638743 85.928864) (xy 142.793245 86.041116) (xy 142.793248 86.041118) (xy 142.863474 86.072384) (xy 142.865585 86.073324) (xy 142.903432 86.099336) (xy 143.629595 86.825499) (xy 143.663621 86.887811) (xy 143.6665 86.914594) (xy 143.6665 95.135406) (xy 143.646498 95.203527) (xy 143.629595 95.224501) (xy 143.299501 95.554595) (xy 143.237189 95.588621) (xy 143.210406 95.5915) (xy 143.154513 95.5915) (xy 142.967711 95.631206) (xy 142.793247 95.708882) (xy 142.638744 95.821135) (xy 142.510965 95.963048) (xy 142.510958 95.963058) (xy 142.415476 96.128438) (xy 142.415473 96.128445) (xy 142.356457 96.310072) (xy 142.336496 96.5) (xy 142.356457 96.689927) (xy 142.383198 96.772226) (xy 142.415473 96.871556) (xy 142.51096 97.036944) (xy 142.584137 97.118215) (xy 142.614853 97.18222) (xy 142.6165 97.202524) (xy 142.6165 106.797474) (xy 142.596498 106.865595) (xy 142.584137 106.881784) (xy 142.510957 106.963059) (xy 142.415476 107.128438) (xy 142.415473 107.128445) (xy 142.356457 107.310072) (xy 142.336496 107.5) (xy 142.356457 107.689927) (xy 142.386526 107.78247) (xy 142.415473 107.871556) (xy 142.415476 107.871561) (xy 142.510961 108.036946) (xy 142.559135 108.090447) (xy 142.589853 108.154454) (xy 142.5915 108.174759) (xy 142.5915 110.57524) (xy 142.571498 110.643361) (xy 142.559136 110.65955) (xy 142.510965 110.713048) (xy 142.510958 110.713058) (xy 142.42287 110.865632) (xy 142.415473 110.878444) (xy 142.410696 110.893147) (xy 142.356457 111.060072) (xy 142.336496 111.25) (xy 142.356457 111.439927) (xy 142.37536 111.498102) (xy 142.415473 111.621556) (xy 142.415476 111.621561) (xy 142.510958 111.786941) (xy 142.510965 111.786951) (xy 142.638744 111.928864) (xy 142.638747 111.928866) (xy 142.793248 112.041118) (xy 142.967712 112.118794) (xy 143.154513 112.1585) (xy 143.345487 112.1585) (xy 143.532288 112.118794) (xy 143.706752 112.041118) (xy 143.861253 111.928866) (xy 143.939918 111.8415) (xy 143.989034 111.786951) (xy 143.989035 111.786949) (xy 143.98904 111.786944) (xy 144.084527 111.621556) (xy 144.143542 111.439928) (xy 144.163504 111.25) (xy 144.143542 111.060072) (xy 144.084527 110.878444) (xy 143.98904 110.713056) (xy 143.989038 110.713054) (xy 143.989034 110.713048) (xy 143.940864 110.65955) (xy 143.910146 110.595543) (xy 143.9085 110.57524) (xy 143.9085 108.174759) (xy 143.928502 108.106638) (xy 143.940865 108.090447) (xy 143.984822 108.041629) (xy 143.98904 108.036944) (xy 144.084527 107.871556) (xy 144.143542 107.689928) (xy 144.163504 107.5) (xy 144.143542 107.310072) (xy 144.084527 107.128444) (xy 144.010442 107.000125) (xy 143.989042 106.963059) (xy 143.989041 106.963058) (xy 143.98904 106.963056) (xy 143.915863 106.881784) (xy 143.885146 106.817776) (xy 143.8835 106.797474) (xy 143.8835 103) (xy 153.586496 103) (xy 153.606457 103.189927) (xy 153.631774 103.267842) (xy 153.665473 103.371556) (xy 153.679574 103.395979) (xy 153.757494 103.530942) (xy 153.76096 103.536944) (xy 153.859136 103.64598) (xy 153.889853 103.709987) (xy 153.8915 103.73029) (xy 153.8915 110.269709) (xy 153.871498 110.33783) (xy 153.859137 110.354019) (xy 153.760961 110.463054) (xy 153.760958 110.463058) (xy 153.665476 110.628438) (xy 153.665473 110.628444) (xy 153.659318 110.647387) (xy 153.606457 110.810072) (xy 153.586496 111) (xy 153.606457 111.189927) (xy 153.631774 111.267841) (xy 153.665473 111.371556) (xy 153.665476 111.371561) (xy 153.760958 111.536941) (xy 153.760965 111.536951) (xy 153.888744 111.678864) (xy 153.888747 111.678866) (xy 154.043248 111.791118) (xy 154.217712 111.868794) (xy 154.404513 111.9085) (xy 154.595487 111.9085) (xy 154.782288 111.868794) (xy 154.956752 111.791118) (xy 155.111253 111.678866) (xy 155.182264 111.6) (xy 155.239034 111.536951) (xy 155.239035 111.536949) (xy 155.23904 111.536944) (xy 155.334527 111.371556) (xy 155.393542 111.189928) (xy 155.413504 111) (xy 155.393542 110.810072) (xy 155.334527 110.628444) (xy 155.23904 110.463056) (xy 155.140863 110.354019) (xy 155.110146 110.290012) (xy 155.1085 110.269709) (xy 155.1085 103.73029) (xy 155.128502 103.662169) (xy 155.14086 103.645983) (xy 155.23904 103.536944) (xy 155.334527 103.371556) (xy 155.393542 103.189928) (xy 155.413504 103) (xy 155.393542 102.810072) (xy 155.334527 102.628444) (xy 155.23904 102.463056) (xy 155.239038 102.463054) (xy 155.239034 102.463048) (xy 155.111255 102.321135) (xy 154.956752 102.208882) (xy 154.782288 102.131206) (xy 154.595487 102.0915) (xy 154.404513 102.0915) (xy 154.217711 102.131206) (xy 154.043247 102.208882) (xy 153.888744 102.321135) (xy 153.760965 102.463048) (xy 153.760958 102.463058) (xy 153.665476 102.628438) (xy 153.665473 102.628444) (xy 153.656611 102.655718) (xy 153.606457 102.810072) (xy 153.586496 103) (xy 143.8835 103) (xy 143.8835 97.202524) (xy 143.903502 97.134403) (xy 143.915858 97.11822) (xy 143.98904 97.036944) (xy 144.084527 96.871556) (xy 144.143542 96.689928) (xy 144.160907 96.524704) (xy 144.18792 96.459049) (xy 144.197112 96.44879) (xy 144.792071 95.853833) (xy 144.8614 95.750075) (xy 144.909155 95.634785) (xy 144.9335 95.512394) (xy 144.9335 95.387606) (xy 144.9335 91.8) (xy 153.586496 91.8) (xy 153.606457 91.989926) (xy 153.621737 92.036951) (xy 153.665473 92.171556) (xy 153.669695 92.178868) (xy 153.743722 92.307088) (xy 153.76096 92.336944) (xy 153.859136 92.44598) (xy 153.889853 92.509987) (xy 153.8915 92.53029) (xy 153.8915 99.069709) (xy 153.871498 99.13783) (xy 153.859137 99.154019) (xy 153.760961 99.263054) (xy 153.760958 99.263058) (xy 153.665476 99.428438) (xy 153.665473 99.428445) (xy 153.606457 99.610072) (xy 153.586496 99.8) (xy 153.606457 99.989927) (xy 153.63201 100.068568) (xy 153.665473 100.171556) (xy 153.665476 100.171561) (xy 153.760958 100.336941) (xy 153.760965 100.336951) (xy 153.888744 100.478864) (xy 153.888747 100.478866) (xy 154.043248 100.591118) (xy 154.217712 100.668794) (xy 154.404513 100.7085) (xy 154.595487 100.7085) (xy 154.782288 100.668794) (xy 154.956752 100.591118) (xy 155.111253 100.478866) (xy 155.193333 100.387707) (xy 155.239034 100.336951) (xy 155.239035 100.336949) (xy 155.23904 100.336944) (xy 155.334527 100.171556) (xy 155.393542 99.989928) (xy 155.413504 99.8) (xy 155.393542 99.610072) (xy 155.334527 99.428444) (xy 155.23904 99.263056) (xy 155.140863 99.154019) (xy 155.110146 99.090012) (xy 155.1085 99.069709) (xy 155.1085 92.53029) (xy 155.128502 92.462169) (xy 155.14086 92.445983) (xy 155.23904 92.336944) (xy 155.334527 92.171556) (xy 155.387165 92.009555) (xy 155.393543 91.989926) (xy 155.403507 91.895114) (xy 155.413504 91.8) (xy 155.393542 91.610072) (xy 155.334527 91.428444) (xy 155.23904 91.263056) (xy 155.239038 91.263054) (xy 155.239034 91.263048) (xy 155.111255 91.121135) (xy 154.956752 91.008882) (xy 154.782288 90.931206) (xy 154.595487 90.8915) (xy 154.404513 90.8915) (xy 154.217711 90.931206) (xy 154.043247 91.008882) (xy 153.888744 91.121135) (xy 153.760965 91.263048) (xy 153.760958 91.263058) (xy 153.665476 91.428438) (xy 153.665473 91.428445) (xy 153.606457 91.610072) (xy 153.586496 91.8) (xy 144.9335 91.8) (xy 144.9335 86.537606) (xy 144.909155 86.415215) (xy 144.8614 86.299925) (xy 144.792071 86.196167) (xy 144.703833 86.107929) (xy 144.171725 85.575821) (xy 144.137699 85.513509) (xy 144.140989 85.447782) (xy 144.143542 85.439928) (xy 144.163504 85.25) (xy 144.143542 85.060072) (xy 144.084527 84.878444) (xy 143.98904 84.713056) (xy 143.915863 84.631784) (xy 143.885146 84.567776) (xy 143.8835 84.547474) (xy 143.8835 81.864594) (xy 143.903502 81.796473) (xy 143.920405 81.775499) (xy 144.095904 81.6) (xy 153.586496 81.6) (xy 153.606457 81.789927) (xy 153.633295 81.872524) (xy 153.665473 81.971556) (xy 153.665476 81.971561) (xy 153.747286 82.113261) (xy 153.76096 82.136944) (xy 153.859136 82.24598) (xy 153.889853 82.309987) (xy 153.8915 82.33029) (xy 153.8915 87.769709) (xy 153.871498 87.83783) (xy 153.859137 87.854019) (xy 153.760961 87.963054) (xy 153.760958 87.963058) (xy 153.671045 88.118793) (xy 153.665473 88.128444) (xy 153.654227 88.163056) (xy 153.606457 88.310072) (xy 153.586496 88.5) (xy 153.606457 88.689927) (xy 153.622445 88.739131) (xy 153.665473 88.871556) (xy 153.671192 88.881461) (xy 153.760958 89.036941) (xy 153.760965 89.036951) (xy 153.888744 89.178864) (xy 153.888747 89.178866) (xy 154.043248 89.291118) (xy 154.217712 89.368794) (xy 154.404513 89.4085) (xy 154.595487 89.4085) (xy 154.782288 89.368794) (xy 154.956752 89.291118) (xy 155.111253 89.178866) (xy 155.152101 89.1335) (xy 155.239034 89.036951) (xy 155.239035 89.036949) (xy 155.23904 89.036944) (xy 155.334527 88.871556) (xy 155.393542 88.689928) (xy 155.413504 88.5) (xy 155.393542 88.310072) (xy 155.334527 88.128444) (xy 155.23904 87.963056) (xy 155.140863 87.854019) (xy 155.110146 87.790012) (xy 155.1085 87.769709) (xy 155.1085 82.33029) (xy 155.128502 82.262169) (xy 155.14086 82.245983) (xy 155.23904 82.136944) (xy 155.334527 81.971556) (xy 155.393542 81.789928) (xy 155.413504 81.6) (xy 155.393542 81.410072) (xy 155.334527 81.228444) (xy 155.23904 81.063056) (xy 155.239038 81.063054) (xy 155.239034 81.063048) (xy 155.111255 80.921135) (xy 154.956752 80.808882) (xy 154.782288 80.731206) (xy 154.595487 80.6915) (xy 154.404513 80.6915) (xy 154.217711 80.731206) (xy 154.043247 80.808882) (xy 153.888744 80.921135) (xy 153.760965 81.063048) (xy 153.760958 81.063058) (xy 153.665476 81.228438) (xy 153.665473 81.228444) (xy 153.650999 81.272986) (xy 153.606457 81.410072) (xy 153.586496 81.6) (xy 144.095904 81.6) (xy 147.171149 78.524755) (xy 150.492072 75.203833) (xy 150.561401 75.100075) (xy 150.602137 75.001727) (xy 150.609155 74.984785) (xy 150.6335 74.862394) (xy 150.6335 70.202524) (xy 150.653502 70.134403) (xy 150.665858 70.11822) (xy 150.73904 70.036944) (xy 150.834527 69.871556) (xy 150.893542 69.689928) (xy 150.913504 69.5) (xy 150.893542 69.310072) (xy 150.834527 69.128444) (xy 150.73904 68.963056) (xy 150.739038 68.963054) (xy 150.739034 68.963048) (xy 150.611255 68.821135) (xy 150.456752 68.708882) (xy 150.282288 68.631206) (xy 150.095487 68.5915) (xy 149.904513 68.5915) (xy 149.717711 68.631206) (xy 149.543247 68.708882) (xy 149.388744 68.821135) (xy 149.260965 68.963048) (xy 149.260958 68.963058) (xy 149.165476 69.128438) (xy 149.165473 69.128445) (xy 149.106457 69.310072) (xy 149.086496 69.5) (xy 149.106457 69.689927) (xy 149.136242 69.781593) (xy 149.165473 69.871556) (xy 149.26096 70.036944) (xy 149.334137 70.118215) (xy 149.364853 70.18222) (xy 149.3665 70.202524) (xy 149.3665 74.485405) (xy 149.346498 74.553526) (xy 149.329595 74.5745) (xy 142.846167 81.057929) (xy 142.757931 81.146164) (xy 142.757926 81.146171) (xy 142.688601 81.249923) (xy 142.650208 81.342612) (xy 142.640845 81.365215) (xy 142.63848 81.377104) (xy 142.6165 81.487603) (xy 142.6165 84.547474) (xy 142.596498 84.615595) (xy 142.584137 84.631784) (xy 142.510957 84.713059) (xy 142.415476 84.878438) (xy 142.415473 84.878445) (xy 142.356457 85.060072) (xy 142.336496 85.25) (xy 141.6085 85.25) (xy 141.6085 80.304239) (xy 141.628502 80.236118) (xy 141.6454 80.215148) (xy 142.236921 79.623628) (xy 142.317032 79.484873) (xy 142.3585 79.33011) (xy 142.3585 79.16989) (xy 142.3585 79.169889) (xy 142.3585 77.98029) (xy 142.378502 77.912169) (xy 142.39086 77.895983) (xy 142.48904 77.786944) (xy 142.584527 77.621556) (xy 142.643542 77.439928) (xy 142.663504 77.25) (xy 142.643542 77.060072) (xy 142.584527 76.878444) (xy 142.48904 76.713056) (xy 142.489038 76.713054) (xy 142.489034 76.713048) (xy 142.361255 76.571135) (xy 142.206752 76.458882) (xy 142.032288 76.381206) (xy 141.845487 76.3415) (xy 141.654513 76.3415) (xy 141.467711 76.381206) (xy 141.293247 76.458882) (xy 141.138744 76.571135) (xy 141.010965 76.713048) (xy 141.010958 76.713058) (xy 140.915476 76.878438) (xy 140.915473 76.878445) (xy 140.856457 77.060072) (xy 140.836496 77.25) (xy 140.856457 77.439927) (xy 140.871346 77.485749) (xy 140.915473 77.621556) (xy 140.915476 77.621561) (xy 141.006993 77.780074) (xy 141.01096 77.786944) (xy 141.109136 77.89598) (xy 141.139853 77.959987) (xy 141.1415 77.98029) (xy 141.1415 78.94576) (xy 141.121498 79.013881) (xy 141.104595 79.034855) (xy 140.513083 79.626366) (xy 140.513075 79.626376) (xy 140.432967 79.765127) (xy 140.432968 79.765128) (xy 140.39683 79.899999) (xy 140.3915 79.91989) (xy 140.3915 86.554138) (xy 140.371498 86.622259) (xy 140.317842 86.668752) (xy 140.247568 86.678856) (xy 140.182988 86.649362) (xy 140.171864 86.638448) (xy 140.140864 86.604019) (xy 140.110146 86.540012) (xy 140.1085 86.519709) (xy 140.1085 74.23029) (xy 140.128502 74.162169) (xy 140.14086 74.145983) (xy 140.23904 74.036944) (xy 140.334527 73.871556) (xy 140.393542 73.689928) (xy 140.413504 73.5) (xy 140.393542 73.310072) (xy 140.334527 73.128444) (xy 140.23904 72.963056) (xy 140.239038 72.963054) (xy 140.239034 72.963048) (xy 140.111255 72.821135) (xy 139.956752 72.708882) (xy 139.782288 72.631206) (xy 139.595487 72.5915) (xy 139.404513 72.5915) (xy 139.217711 72.631206) (xy 139.043247 72.708882) (xy 138.888744 72.821135) (xy 138.760965 72.963048) (xy 138.760958 72.963058) (xy 138.665476 73.128438) (xy 138.665473 73.128445) (xy 138.606457 73.310072) (xy 138.586496 73.5) (xy 138.2585 73.5) (xy 138.2585 70.919924) (xy 138.278502 70.851803) (xy 138.295405 70.830829) (xy 139.481022 69.645212) (xy 140.857865 68.26837) (xy 140.968233 68.103192) (xy 141.032251 67.948638) (xy 141.044255 67.919658) (xy 141.083011 67.724818) (xy 141.083011 62.22616) (xy 141.083011 60.970301) (xy 141.103013 60.90218) (xy 141.156669 60.855687) (xy 141.226943 60.845583) (xy 141.291523 60.875077) (xy 141.309879 60.894792) (xy 141.372095 60.977904) (xy 141.489034 61.065444) (xy 141.625906 61.116494) (xy 141.686402 61.122999) (xy 141.686415 61.123) (xy 142.346 61.123) (xy 142.346 60.04225) (xy 142.403147 60.075245) (xy 142.532857 60.11) (xy 142.667143 60.11) (xy 142.796853 60.075245) (xy 142.854 60.04225) (xy 142.854 61.123) (xy 143.513585 61.123) (xy 143.513597 61.122999) (xy 143.574093 61.116494) (xy 143.710964 61.065444) (xy 143.710965 61.065444) (xy 143.827904 60.977904) (xy 143.915444 60.860965) (xy 143.915444 60.860964) (xy 143.966494 60.724093) (xy 143.972999 60.663597) (xy 143.973 60.663585) (xy 143.973 59.854) (xy 143.042251 59.854) (xy 143.075245 59.796853) (xy 143.11 59.667143) (xy 143.11 59.532857) (xy 143.075245 59.403147) (xy 143.042251 59.346) (xy 143.973 59.346) (xy 143.973 58.536414) (xy 143.972999 58.536402) (xy 143.966494 58.475906) (xy 143.915444 58.339035) (xy 143.915444 58.339034) (xy 143.827904 58.222095) (xy 143.710965 58.134555) (xy 143.574093 58.083505) (xy 143.513597 58.077) (xy 142.854 58.077) (xy 142.854 59.157749) (xy 142.796853 59.124755) (xy 142.667143 59.09) (xy 142.532857 59.09) (xy 142.403147 59.124755) (xy 142.346 59.157749) (xy 142.346 58.077) (xy 141.686402 58.077) (xy 141.625906 58.083505) (xy 141.489035 58.134555) (xy 141.489034 58.134555) (xy 141.372095 58.222095) (xy 141.284555 58.339034) (xy 141.284553 58.339039) (xy 141.246282 58.441647) (xy 141.203735 58.498483) (xy 141.137215 58.523293) (xy 141.067841 58.508201) (xy 141.039132 58.486709) (xy 140.95478 58.402357) (xy 140.954777 58.402355) (xy 140.954775 58.402353) (xy 140.779871 58.275278) (xy 140.587241 58.177128) (xy 140.58724 58.177127) (xy 140.587239 58.177127) (xy 140.381632 58.110321) (xy 140.381629 58.11032) (xy 140.168097 58.0765) (xy 139.951903 58.0765) (xy 139.738371 58.11032) (xy 139.738368 58.11032) (xy 139.738367 58.110321) (xy 139.53276 58.177127) (xy 139.340125 58.27528) (xy 139.165222 58.402355) (xy 139.165219 58.402357) (xy 139.012354 58.555222) (xy 138.891936 58.720964) (xy 138.835713 58.764318) (xy 138.764977 58.770393) (xy 138.702186 58.737261) (xy 138.688064 58.720964) (xy 138.567645 58.555222) (xy 138.41478 58.402357) (xy 138.414777 58.402355) (xy 138.414775 58.402353) (xy 138.239871 58.275278) (xy 138.047241 58.177128) (xy 138.04724 58.177127) (xy 138.047239 58.177127) (xy 137.841632 58.110321) (xy 137.841629 58.11032) (xy 137.628097 58.0765) (xy 137.411903 58.0765) (xy 137.198371 58.11032) (xy 137.198368 58.11032) (xy 137.198367 58.110321) (xy 136.99276 58.177127) (xy 136.800125 58.27528) (xy 136.625222 58.402355) (xy 136.625219 58.402357) (xy 136.472354 58.555222) (xy 136.351936 58.720964) (xy 136.295713 58.764318) (xy 136.224977 58.770393) (xy 136.162186 58.737261) (xy 136.148064 58.720964) (xy 136.027645 58.555222) (xy 135.87478 58.402357) (xy 135.874777 58.402355) (xy 135.874775 58.402353) (xy 135.699871 58.275278) (xy 135.507241 58.177128) (xy 135.50724 58.177127) (xy 135.507239 58.177127) (xy 135.301632 58.110321) (xy 135.301629 58.11032) (xy 135.088097 58.0765) (xy 134.871903 58.0765) (xy 134.658371 58.11032) (xy 134.658368 58.11032) (xy 134.658367 58.110321) (xy 134.45276 58.177127) (xy 134.260125 58.27528) (xy 134.085222 58.402355) (xy 134.085219 58.402357) (xy 133.932357 58.555219) (xy 133.932355 58.555222) (xy 133.80528 58.730125) (xy 133.707127 58.92276) (xy 133.641521 59.124674) (xy 133.64032 59.128371) (xy 133.6065 59.341903) (xy 133.6065 59.858097) (xy 133.64032 60.071629) (xy 133.640321 60.071632) (xy 133.664535 60.146156) (xy 133.707128 60.277241) (xy 133.805278 60.469871) (xy 133.932353 60.644775) (xy 133.932355 60.644777) (xy 133.932357 60.64478) (xy 134.085219 60.797642) (xy 134.085222 60.797644) (xy 134.085225 60.797647) (xy 134.260129 60.924722) (xy 134.452759 61.022872) (xy 134.658371 61.08968) (xy 134.871903 61.1235) (xy 134.871906 61.1235) (xy 135.088094 61.1235) (xy 135.088097 61.1235) (xy 135.301629 61.08968) (xy 135.507241 61.022872) (xy 135.699871 60.924722) (xy 135.874775 60.797647) (xy 136.027647 60.644775) (xy 136.148064 60.479035) (xy 136.204286 60.435681) (xy 136.275022 60.429606) (xy 136.337814 60.462737) (xy 136.351936 60.479035) (xy 136.472353 60.644775) (xy 136.472355 60.644777) (xy 136.472357 60.64478) (xy 136.625219 60.797642) (xy 136.625222 60.797644) (xy 136.625225 60.797647) (xy 136.800129 60.924722) (xy 136.925876 60.988793) (xy 136.97749 61.03754) (xy 136.994556 61.106455) (xy 136.971655 61.173657) (xy 136.957768 61.190154) (xy 136.898209 61.249713) (xy 136.898208 61.249715) (xy 136.810606 61.38082) (xy 136.750265 61.526497) (xy 136.750263 61.526502) (xy 136.7195 61.681155) (xy 136.7195 61.838844) (xy 136.734929 61.916407) (xy 136.728601 61.987121) (xy 136.685047 62.043188) (xy 136.618095 62.066808) (xy 136.61135 62.066989) (xy 136.144399 62.066989) (xy 136.094886 62.080255) (xy 136.094887 62.080256) (xy 135.98964 62.108456) (xy 135.989633 62.108459) (xy 135.850886 62.188565) (xy 135.85088 62.18857) (xy 135.359073 62.680376) (xy 135.296761 62.714401) (xy 135.296177 62.714526) (xy 135.217714 62.731204) (xy 135.043247 62.808882) (xy 134.888744 62.921135) (xy 134.760965 63.063048) (xy 134.760958 63.063058) (xy 134.665476 63.228438) (xy 134.665473 63.228444) (xy 134.657331 63.253502) (xy 134.606457 63.410072) (xy 134.586496 63.6) (xy 134.606457 63.789927) (xy 134.63298 63.871554) (xy 134.665473 63.971556) (xy 134.665476 63.971561) (xy 134.760958 64.136941) (xy 134.760965 64.136951) (xy 134.888744 64.278864) (xy 134.900314 64.28727) (xy 135.043248 64.391118) (xy 135.217712 64.468794) (xy 135.404513 64.5085) (xy 135.595487 64.5085) (xy 135.782288 64.468794) (xy 135.956752 64.391118) (xy 136.111253 64.278866) (xy 136.129591 64.2585) (xy 136.239034 64.136951) (xy 136.239035 64.136949) (xy 136.23904 64.136944) (xy 136.334527 63.971556) (xy 136.393542 63.789928) (xy 136.413504 63.6) (xy 136.395727 63.430868) (xy 136.408499 63.361035) (xy 136.431945 63.328602) (xy 136.439661 63.320888) (xy 136.501976 63.286867) (xy 136.528751 63.283989) (xy 138.940011 63.283989) (xy 139.008132 63.303991) (xy 139.054625 63.357647) (xy 139.066011 63.409989) (xy 139.066011 67.155564) (xy 139.046009 67.223685) (xy 139.029106 67.244659) (xy 136.607119 69.666647) (xy 136.466649 69.807116) (xy 136.466644 69.807123) (xy 136.356279 69.972296) (xy 136.280258 70.155825) (xy 136.280256 70.15583) (xy 136.2415 70.350668) (xy 136.2415 115.936831) (xy 136.246715 115.963048) (xy 136.279613 116.128438) (xy 136.280256 116.131668) (xy 136.280257 116.131673) (xy 136.303623 116.188081) (xy 136.303623 116.188083) (xy 136.303624 116.188083) (xy 136.356279 116.315204) (xy 136.466647 116.480381) (xy 136.466649 116.480383) (xy 139.760765 119.774499) (xy 139.794791 119.836811) (xy 139.789726 119.907626) (xy 139.772539 119.939102) (xy 139.724112 120.003793) (xy 139.724111 120.003795) (xy 139.68 120.122058) (xy 139.637453 120.178893) (xy 139.570932 120.203703) (xy 139.501558 120.188611) (xy 139.469246 120.163363) (xy 139.40824 120.097094) (xy 139.408239 120.097093) (xy 139.408237 120.097091) (xy 139.312531 120.0226) (xy 139.230576 119.958811) (xy 139.032574 119.851658) (xy 139.032572 119.851657) (xy 139.032571 119.851656) (xy 138.819639 119.778557) (xy 138.81963 119.778555) (xy 138.775476 119.771187) (xy 138.597569 119.7415) (xy 138.372431 119.7415) (xy 138.224211 119.766233) (xy 138.150369 119.778555) (xy 138.15036 119.778557) (xy 137.937428 119.851656) (xy 137.937426 119.851658) (xy 137.758936 119.948252) (xy 137.739426 119.95881) (xy 137.739424 119.958811) (xy 137.561762 120.097091) (xy 137.409279 120.262729) (xy 137.320483 120.398643) (xy 137.266479 120.444731) (xy 137.196131 120.454306) (xy 137.131774 120.424329) (xy 137.109517 120.398643) (xy 137.02072 120.262729) (xy 136.868237 120.097091) (xy 136.772531 120.0226) (xy 136.690576 119.958811) (xy 136.492574 119.851658) (xy 136.492572 119.851657) (xy 136.492571 119.851656) (xy 136.279639 119.778557) (xy 136.27963 119.778555) (xy 136.235476 119.771187) (xy 136.057569 119.7415) (xy 135.832431 119.7415) (xy 135.684211 119.766233) (xy 135.610369 119.778555) (xy 135.61036 119.778557) (xy 135.397428 119.851656) (xy 135.397426 119.851658) (xy 135.218936 119.948252) (xy 135.199426 119.95881) (xy 135.199424 119.958811) (xy 135.021762 120.097091) (xy 134.869279 120.262729) (xy 134.869275 120.262734) (xy 134.746139 120.451209) (xy 134.702637 120.550384) (xy 134.676345 120.588865) (xy 133.460615 121.804596) (xy 133.398305 121.83862) (xy 133.371522 121.8415) (xy 131.2595 121.8415) (xy 131.191379 121.821498) (xy 131.144886 121.767842) (xy 131.1335 121.7155) (xy 131.1335 120.201367) (xy 131.133499 120.20135) (xy 131.12699 120.140803) (xy 131.126988 120.140795) (xy 131.082904 120.022604) (xy 131.075889 120.003796) (xy 131.075887 120.003793) (xy 131.075887 120.003792) (xy 130.988261 119.886738) (xy 130.871203 119.79911) (xy 130.865462 119.796969) (xy 130.808628 119.754419) (xy 130.783821 119.687898) (xy 130.7835 119.678915) (xy 130.7835 119.475672) (xy 130.783499 119.475668) (xy 130.744744 119.280831) (xy 130.718162 119.216657) (xy 130.668722 119.097296) (xy 130.558354 118.932119) (xy 127.445405 115.81917) (xy 127.411379 115.756858) (xy 127.4085 115.730075) (xy 127.4085 106.25) (xy 127.823996 106.25) (xy 127.843957 106.439927) (xy 127.862235 106.496178) (xy 127.902973 106.621556) (xy 127.902976 106.621561) (xy 127.998458 106.786941) (xy 127.998465 106.786951) (xy 128.126244 106.928864) (xy 128.126247 106.928866) (xy 128.280748 107.041118) (xy 128.455212 107.118794) (xy 128.642013 107.1585) (xy 128.832987 107.1585) (xy 129.019788 107.118794) (xy 129.194252 107.041118) (xy 129.348753 106.928866) (xy 129.348755 106.928864) (xy 129.374574 106.90019) (xy 129.43502 106.86295) (xy 129.46821 106.8585) (xy 134.26929 106.8585) (xy 134.337411 106.878502) (xy 134.362926 106.90019) (xy 134.388744 106.928864) (xy 134.388747 106.928866) (xy 134.543248 107.041118) (xy 134.717712 107.118794) (xy 134.904513 107.1585) (xy 135.095487 107.1585) (xy 135.282288 107.118794) (xy 135.456752 107.041118) (xy 135.611253 106.928866) (xy 135.665343 106.868793) (xy 135.739034 106.786951) (xy 135.739038 106.786946) (xy 135.73904 106.786944) (xy 135.834527 106.621556) (xy 135.893542 106.439928) (xy 135.913504 106.25) (xy 135.893542 106.060072) (xy 135.834527 105.878444) (xy 135.73904 105.713056) (xy 135.739038 105.713054) (xy 135.739034 105.713048) (xy 135.611255 105.571135) (xy 135.456752 105.458882) (xy 135.282288 105.381206) (xy 135.095487 105.3415) (xy 134.904513 105.3415) (xy 134.717711 105.381206) (xy 134.543247 105.458882) (xy 134.388744 105.571135) (xy 134.362926 105.59981) (xy 134.30248 105.63705) (xy 134.26929 105.6415) (xy 129.46821 105.6415) (xy 129.400089 105.621498) (xy 129.374574 105.59981) (xy 129.348755 105.571135) (xy 129.194252 105.458882) (xy 129.019788 105.381206) (xy 128.832987 105.3415) (xy 128.642013 105.3415) (xy 128.455211 105.381206) (xy 128.280747 105.458882) (xy 128.126244 105.571135) (xy 127.998465 105.713048) (xy 127.998458 105.713058) (xy 127.908359 105.869115) (xy 127.902973 105.878444) (xy 127.898263 105.892939) (xy 127.843957 106.060072) (xy 127.823996 106.25) (xy 127.4085 106.25) (xy 127.4085 104.869924) (xy 127.428502 104.801803) (xy 127.445405 104.780829) (xy 128.095028 104.131206) (xy 128.783354 103.442881) (xy 128.893722 103.277703) (xy 128.969744 103.094168) (xy 129.0085 102.899328) (xy 129.0085 102.700671) (xy 129.0085 73.2) (xy 129.686496 73.2) (xy 129.706457 73.389927) (xy 129.736526 73.48247) (xy 129.765473 73.571556) (xy 129.765476 73.571561) (xy 129.859303 73.734075) (xy 129.86096 73.736944) (xy 129.959136 73.84598) (xy 129.989853 73.909987) (xy 129.9915 73.93029) (xy 129.9915 85.769709) (xy 129.971498 85.83783) (xy 129.959137 85.854019) (xy 129.860961 85.963054) (xy 129.860958 85.963058) (xy 129.765476 86.128438) (xy 129.765473 86.128444) (xy 129.764329 86.131965) (xy 129.706457 86.310072) (xy 129.686496 86.5) (xy 129.706457 86.689927) (xy 129.713973 86.713058) (xy 129.765473 86.871556) (xy 129.774858 86.887811) (xy 129.860958 87.036941) (xy 129.860965 87.036951) (xy 129.988744 87.178864) (xy 129.988747 87.178866) (xy 130.143248 87.291118) (xy 130.317712 87.368794) (xy 130.504513 87.4085) (xy 130.695487 87.4085) (xy 130.882288 87.368794) (xy 131.056752 87.291118) (xy 131.211253 87.178866) (xy 131.274267 87.108882) (xy 131.339034 87.036951) (xy 131.339035 87.036949) (xy 131.33904 87.036944) (xy 131.434527 86.871556) (xy 131.493542 86.689928) (xy 131.513504 86.5) (xy 131.493542 86.310072) (xy 131.434527 86.128444) (xy 131.33904 85.963056) (xy 131.240863 85.854019) (xy 131.210146 85.790012) (xy 131.2085 85.769709) (xy 131.2085 73.93029) (xy 131.228502 73.862169) (xy 131.24086 73.845983) (xy 131.33904 73.736944) (xy 131.434527 73.571556) (xy 131.493542 73.389928) (xy 131.513504 73.2) (xy 131.493542 73.010072) (xy 131.434527 72.828444) (xy 131.33904 72.663056) (xy 131.339038 72.663054) (xy 131.339034 72.663048) (xy 131.211255 72.521135) (xy 131.056752 72.408882) (xy 130.882288 72.331206) (xy 130.695487 72.2915) (xy 130.504513 72.2915) (xy 130.317711 72.331206) (xy 130.143247 72.408882) (xy 129.988744 72.521135) (xy 129.860965 72.663048) (xy 129.860958 72.663058) (xy 129.765476 72.828438) (xy 129.765473 72.828444) (xy 129.758955 72.848505) (xy 129.706457 73.010072) (xy 129.686496 73.2) (xy 129.0085 73.2) (xy 129.0085 63.718947) (xy 129.028502 63.650826) (xy 129.045405 63.629851) (xy 129.225256 63.45) (xy 129.457865 63.217392) (xy 129.568233 63.052214) (xy 129.617747 62.932675) (xy 129.644255 62.86868) (xy 129.683011 62.67384) (xy 129.683011 61.088072) (xy 129.703013 61.019951) (xy 129.756669 60.973458) (xy 129.826943 60.963354) (xy 129.884521 60.987204) (xy 129.989036 61.065445) (xy 130.125906 61.116494) (xy 130.186402 61.122999) (xy 130.186415 61.123) (xy 130.846 61.123) (xy 130.846 60.04225) (xy 130.903147 60.075245) (xy 131.032857 60.11) (xy 131.167143 60.11) (xy 131.296853 60.075245) (xy 131.354 60.04225) (xy 131.354 61.123) (xy 132.013585 61.123) (xy 132.013597 61.122999) (xy 132.074093 61.116494) (xy 132.210964 61.065444) (xy 132.210965 61.065444) (xy 132.327904 60.977904) (xy 132.415444 60.860965) (xy 132.415444 60.860964) (xy 132.466494 60.724093) (xy 132.472999 60.663597) (xy 132.473 60.663585) (xy 132.473 59.854) (xy 131.542251 59.854) (xy 131.575245 59.796853) (xy 131.61 59.667143) (xy 131.61 59.532857) (xy 131.575245 59.403147) (xy 131.542251 59.346) (xy 132.473 59.346) (xy 132.473 58.536414) (xy 132.472999 58.536402) (xy 132.466494 58.475906) (xy 132.415444 58.339035) (xy 132.415444 58.339034) (xy 132.327904 58.222095) (xy 132.210965 58.134555) (xy 132.074093 58.083505) (xy 132.013597 58.077) (xy 131.354 58.077) (xy 131.354 59.157749) (xy 131.296853 59.124755) (xy 131.167143 59.09) (xy 131.032857 59.09) (xy 130.903147 59.124755) (xy 130.846 59.157749) (xy 130.846 58.126626) (xy 130.866002 58.058505) (xy 130.882905 58.037531) (xy 131.400031 57.520405) (xy 131.462343 57.486379) (xy 131.489126 57.4835) (xy 149.523135 57.4835) ) ) (filled_polygon (layer "B.Cu") (pts (xy 71.093225 64.125669) (xy 71.11548 64.151353) (xy 71.133456 64.178866) (xy 71.204278 64.287269) (xy 71.238199 64.324115) (xy 71.269622 64.387779) (xy 71.2715 64.409454) (xy 71.2715 66.629331) (xy 71.310257 66.824172) (xy 71.310862 66.825632) (xy 71.367526 66.96243) (xy 71.386279 67.007704) (xy 71.496647 67.172881) (xy 80.607119 76.283354) (xy 80.772297 76.393722) (xy 80.862751 76.431189) (xy 80.955831 76.469744) (xy 81.150671 76.5085) (xy 81.150672 76.5085) (xy 81.349329 76.5085) (xy 84.530076 76.5085) (xy 84.598197 76.528502) (xy 84.619171 76.545405) (xy 105.954595 97.880829) (xy 105.988621 97.943141) (xy 105.9915 97.969924) (xy 105.9915 106.216938) (xy 105.971498 106.285059) (xy 105.917842 106.331552) (xy 105.852185 106.340992) (xy 105.85206 106.34219) (xy 105.845492 106.3415) (xy 105.845487 106.3415) (xy 105.654513 106.3415) (xy 105.467711 106.381206) (xy 105.293247 106.458882) (xy 105.138744 106.571135) (xy 105.010965 106.713048) (xy 105.010958 106.713058) (xy 104.924418 106.86295) (xy 104.915473 106.878444) (xy 104.908407 106.90019) (xy 104.856457 107.060072) (xy 104.836496 107.25) (xy 104.856457 107.439927) (xy 104.886526 107.53247) (xy 104.915473 107.621556) (xy 105.01096 107.786944) (xy 105.109136 107.89598) (xy 105.139853 107.959987) (xy 105.1415 107.98029) (xy 105.1415 119.72116) (xy 105.121498 119.789281) (xy 105.067842 119.835774) (xy 104.997568 119.845878) (xy 104.974588 119.840333) (xy 104.794639 119.778557) (xy 104.79463 119.778555) (xy 104.750476 119.771187) (xy 104.572569 119.7415) (xy 104.347431 119.7415) (xy 104.199211 119.766233) (xy 104.125369 119.778555) (xy 104.12536 119.778557) (xy 103.912428 119.851656) (xy 103.912426 119.851658) (xy 103.733936 119.948252) (xy 103.714426 119.95881) (xy 103.714424 119.958811) (xy 103.561891 120.077533) (xy 103.495849 120.103589) (xy 103.426203 120.089804) (xy 103.375067 120.040554) (xy 103.3585 119.978101) (xy 103.3585 97.900957) (xy 103.3585 97.900954) (xy 103.327512 97.7053) (xy 103.266298 97.516903) (xy 103.176366 97.340402) (xy 103.05993 97.180142) (xy 102.919858 97.04007) (xy 93.318155 87.438367) (xy 83.659863 77.780074) (xy 83.65986 77.780071) (xy 83.499598 77.663634) (xy 83.471523 77.649328) (xy 83.471523 77.649329) (xy 83.323097 77.573702) (xy 83.1347 77.512488) (xy 82.939046 77.4815) (xy 82.939043 77.4815) (xy 80.313478 77.4815) (xy 80.245357 77.461498) (xy 80.224383 77.444595) (xy 68.495405 65.715617) (xy 68.461379 65.653305) (xy 68.4585 65.626522) (xy 68.4585 64.644765) (xy 68.478502 64.576644) (xy 68.483624 64.569266) (xy 68.500889 64.546204) (xy 68.544999 64.427939) (xy 68.587545 64.371107) (xy 68.654065 64.346296) (xy 68.723439 64.361387) (xy 68.755753 64.386635) (xy 68.793779 64.427942) (xy 68.816762 64.452908) (xy 68.871331 64.495381) (xy 68.994424 64.591189) (xy 69.192426 64.698342) (xy 69.192427 64.698342) (xy 69.192428 64.698343) (xy 69.288094 64.731185) (xy 69.405365 64.771444) (xy 69.627431 64.8085) (xy 69.627435 64.8085) (xy 69.852565 64.8085) (xy 69.852569 64.8085) (xy 70.074635 64.771444) (xy 70.287574 64.698342) (xy 70.485576 64.591189) (xy 70.66324 64.452906) (xy 70.815722 64.287268) (xy 70.904518 64.151354) (xy 70.95852 64.105268) (xy 71.028868 64.095692) ) ) (filled_polygon (layer "B.Cu") (pts (xy 70.104 112.448) (xy 70.748585 112.448) (xy 70.748597 112.447999) (xy 70.809093 112.441494) (xy 70.945964 112.390444) (xy 70.945965 112.390444) (xy 71.062904 112.302904) (xy 71.150444 112.185965) (xy 71.194618 112.06753) (xy 71.237165 112.010694) (xy 71.303685 111.985883) (xy 71.373059 112.000974) (xy 71.405372 112.026222) (xy 71.466685 112.092824) (xy 71.466762 112.092908) (xy 71.500597 112.119243) (xy 71.644424 112.231189) (xy 71.842426 112.338342) (xy 71.842427 112.338342) (xy 71.842428 112.338343) (xy 71.92609 112.367064) (xy 72.055365 112.411444) (xy 72.277431 112.4485) (xy 72.277435 112.4485) (xy 72.502565 112.4485) (xy 72.502569 112.4485) (xy 72.724635 112.411444) (xy 72.937574 112.338342) (xy 73.135576 112.231189) (xy 73.31324 112.092906) (xy 73.465722 111.927268) (xy 73.554518 111.791354) (xy 73.60852 111.745268) (xy 73.678868 111.735692) (xy 73.743225 111.765669) (xy 73.76548 111.791353) (xy 73.788055 111.825906) (xy 73.854275 111.927265) (xy 73.854279 111.92727) (xy 74.006762 112.092908) (xy 74.040597 112.119243) (xy 74.184424 112.231189) (xy 74.382426 112.338342) (xy 74.382427 112.338342) (xy 74.382428 112.338343) (xy 74.46609 112.367064) (xy 74.595365 112.411444) (xy 74.817431 112.4485) (xy 74.817435 112.4485) (xy 75.042565 112.4485) (xy 75.042569 112.4485) (xy 75.264635 112.411444) (xy 75.477574 112.338342) (xy 75.675576 112.231189) (xy 75.85324 112.092906) (xy 76.005722 111.927268) (xy 76.094518 111.791354) (xy 76.14852 111.745268) (xy 76.218868 111.735692) (xy 76.283225 111.765669) (xy 76.30548 111.791353) (xy 76.328055 111.825906) (xy 76.394275 111.927265) (xy 76.394279 111.92727) (xy 76.546762 112.092908) (xy 76.580597 112.119243) (xy 76.724424 112.231189) (xy 76.922426 112.338342) (xy 76.922427 112.338342) (xy 76.922428 112.338343) (xy 77.00609 112.367064) (xy 77.135365 112.411444) (xy 77.357431 112.4485) (xy 77.357435 112.4485) (xy 77.582565 112.4485) (xy 77.582569 112.4485) (xy 77.804635 112.411444) (xy 77.924588 112.370263) (xy 77.995512 112.367064) (xy 78.056908 112.402716) (xy 78.089282 112.465901) (xy 78.0915 112.489437) (xy 78.0915 115.080111) (xy 78.103588 115.125224) (xy 78.112002 115.156626) (xy 78.112008 115.156647) (xy 78.132967 115.23487) (xy 78.13297 115.234877) (xy 78.213075 115.373623) (xy 78.213083 115.373633) (xy 81.141876 118.302425) (xy 81.175902 118.364737) (xy 81.170837 118.435552) (xy 81.12829 118.492388) (xy 81.126842 118.493456) (xy 81.088744 118.521135) (xy 81.062926 118.54981) (xy 81.00248 118.58705) (xy 80.96929 118.5915) (xy 72.93071 118.5915) (xy 72.862589 118.571498) (xy 72.837074 118.54981) (xy 72.811255 118.521135) (xy 72.656752 118.408882) (xy 72.482288 118.331206) (xy 72.295487 118.2915) (xy 72.104513 118.2915) (xy 71.917711 118.331206) (xy 71.743247 118.408882) (xy 71.588744 118.521135) (xy 71.562926 118.54981) (xy 71.50248 118.58705) (xy 71.46929 118.5915) (xy 67.504239 118.5915) (xy 67.436118 118.571498) (xy 67.415144 118.554595) (xy 66.645405 117.784856) (xy 66.611379 117.722544) (xy 66.6085 117.695761) (xy 66.6085 112.461973) (xy 66.628502 112.393852) (xy 66.682158 112.347359) (xy 66.752432 112.337255) (xy 66.775411 112.342799) (xy 66.975365 112.411444) (xy 67.197431 112.4485) (xy 67.197435 112.4485) (xy 67.422565 112.4485) (xy 67.422569 112.4485) (xy 67.644635 112.411444) (xy 67.857574 112.338342) (xy 68.055576 112.231189) (xy 68.23324 112.092906) (xy 68.294626 112.026222) (xy 68.355476 111.989654) (xy 68.426441 111.991787) (xy 68.484986 112.031949) (xy 68.50538 112.067529) (xy 68.549553 112.185961) (xy 68.549555 112.185965) (xy 68.637095 112.302904) (xy 68.754034 112.390444) (xy 68.890906 112.441494) (xy 68.951402 112.447999) (xy 68.951415 112.448) (xy 69.596 112.448) (xy 69.596 111.53225) (xy 69.653147 111.565245) (xy 69.782857 111.6) (xy 69.917143 111.6) (xy 70.046853 111.565245) (xy 70.104 111.53225) ) ) (filled_polygon (layer "B.Cu") (pts (xy 53.423225 111.765669) (xy 53.44548 111.791353) (xy 53.468055 111.825906) (xy 53.534275 111.927265) (xy 53.534279 111.92727) (xy 53.686762 112.092908) (xy 53.720597 112.119243) (xy 53.864424 112.231189) (xy 54.062426 112.338342) (xy 54.062427 112.338342) (xy 54.062428 112.338343) (xy 54.14609 112.367064) (xy 54.275365 112.411444) (xy 54.497431 112.4485) (xy 54.497435 112.4485) (xy 54.722565 112.4485) (xy 54.722569 112.4485) (xy 54.944635 112.411444) (xy 54.984588 112.397727) (xy 55.05551 112.394526) (xy 55.116906 112.430177) (xy 55.149282 112.493362) (xy 55.1515 112.5169) (xy 55.1515 114.67486) (xy 55.176806 114.802077) (xy 55.176807 114.80208) (xy 55.217367 114.9) (xy 55.226445 114.921917) (xy 55.298509 115.029769) (xy 55.298513 115.029773) (xy 56.145145 115.876405) (xy 56.179171 115.938717) (xy 56.174106 116.009532) (xy 56.131559 116.066368) (xy 56.065039 116.091179) (xy 56.05605 116.0915) (xy 52.104239 116.0915) (xy 52.036118 116.071498) (xy 52.015144 116.054595) (xy 50.175405 114.214856) (xy 50.141379 114.152544) (xy 50.1385 114.125761) (xy 50.1385 112.380449) (xy 50.158502 112.312328) (xy 50.20453 112.269636) (xy 50.275576 112.231189) (xy 50.45324 112.092906) (xy 50.605722 111.927268) (xy 50.694518 111.791354) (xy 50.74852 111.745268) (xy 50.818868 111.735692) (xy 50.883225 111.765669) (xy 50.90548 111.791353) (xy 50.928055 111.825906) (xy 50.994275 111.927265) (xy 50.994279 111.92727) (xy 51.146762 112.092908) (xy 51.180597 112.119243) (xy 51.324424 112.231189) (xy 51.522426 112.338342) (xy 51.522427 112.338342) (xy 51.522428 112.338343) (xy 51.60609 112.367064) (xy 51.735365 112.411444) (xy 51.957431 112.4485) (xy 51.957435 112.4485) (xy 52.182565 112.4485) (xy 52.182569 112.4485) (xy 52.404635 112.411444) (xy 52.617574 112.338342) (xy 52.815576 112.231189) (xy 52.99324 112.092906) (xy 53.145722 111.927268) (xy 53.234518 111.791354) (xy 53.28852 111.745268) (xy 53.358868 111.735692) ) ) (filled_polygon (layer "B.Cu") (pts (xy 89.398196 90.928502) (xy 89.41917 90.945405) (xy 91.054595 92.58083) (xy 91.088621 92.643142) (xy 91.0915 92.669925) (xy 91.0915 109.595761) (xy 91.071498 109.663882) (xy 91.054595 109.684856) (xy 90.884856 109.854595) (xy 90.822544 109.888621) (xy 90.795761 109.8915) (xy 90.704513 109.8915) (xy 90.517711 109.931206) (xy 90.343247 110.008882) (xy 90.188744 110.121135) (xy 90.060965 110.263048) (xy 90.060958 110.263058) (xy 89.973622 110.414329) (xy 89.965473 110.428444) (xy 89.954227 110.463056) (xy 89.906457 110.610072) (xy 89.886496 110.8) (xy 89.906457 110.989927) (xy 89.921063 111.034877) (xy 89.965473 111.171556) (xy 89.965476 111.171561) (xy 90.060958 111.336941) (xy 90.060965 111.336951) (xy 90.188744 111.478864) (xy 90.188747 111.478867) (xy 90.284759 111.548623) (xy 90.328114 111.604845) (xy 90.33419 111.675581) (xy 90.301058 111.738373) (xy 90.299795 111.739654) (xy 89.584856 112.454595) (xy 89.522543 112.48862) (xy 89.49576 112.4915) (xy 88.392126 112.4915) (xy 88.324005 112.471498) (xy 88.277512 112.417842) (xy 88.267408 112.347568) (xy 88.296902 112.282988) (xy 88.332153 112.254688) (xy 88.375576 112.231189) (xy 88.55324 112.092906) (xy 88.705722 111.927268) (xy 88.82886 111.738791) (xy 88.919296 111.532616) (xy 88.974564 111.314368) (xy 88.993156 111.09) (xy 88.974564 110.865632) (xy 88.972125 110.856002) (xy 88.919297 110.647387) (xy 88.919296 110.647386) (xy 88.919296 110.647384) (xy 88.82886 110.441209) (xy 88.815535 110.420814) (xy 88.705724 110.252734) (xy 88.705714 110.252722) (xy 88.576019 110.111838) (xy 88.544597 110.048174) (xy 88.552583 109.977628) (xy 88.597442 109.922598) (xy 88.66493 109.900557) (xy 88.668719 109.9005) (xy 88.802349 109.9005) (xy 88.802352 109.9005) (xy 89.004534 109.868477) (xy 89.199219 109.80522) (xy 89.38161 109.712287) (xy 89.547219 109.591966) (xy 89.691966 109.447219) (xy 89.812287 109.28161) (xy 89.90522 109.099219) (xy 89.968477 108.904534) (xy 90.0005 108.702352) (xy 90.0005 108.6) (xy 90.0005 108.534108) (xy 90.0005 95.734108) (xy 90.0005 95.697648) (xy 89.968477 95.495466) (xy 89.90522 95.300781) (xy 89.812287 95.11839) (xy 89.802041 95.104287) (xy 89.691965 94.952779) (xy 89.54722 94.808034) (xy 89.381612 94.687714) (xy 89.319393 94.656012) (xy 89.199219 94.59478) (xy 89.199216 94.594779) (xy 89.199214 94.594778) (xy 89.004538 94.531524) (xy 89.004536 94.531523) (xy 89.004534 94.531523) (xy 88.802352 94.4995) (xy 88.802349 94.4995) (xy 88.668719 94.4995) (xy 88.600598 94.479498) (xy 88.554105 94.425842) (xy 88.544001 94.355568) (xy 88.573495 94.290988) (xy 88.576019 94.288162) (xy 88.705714 94.147277) (xy 88.705724 94.147265) (xy 88.777934 94.036739) (xy 88.82886 93.958791) (xy 88.919296 93.752616) (xy 88.974564 93.534368) (xy 88.993156 93.31) (xy 88.974564 93.085632) (xy 88.952082 92.996853) (xy 88.919297 92.867387) (xy 88.919296 92.867386) (xy 88.919296 92.867384) (xy 88.82886 92.661209) (xy 88.8115 92.634637) (xy 88.705724 92.472734) (xy 88.70572 92.472729) (xy 88.5766 92.33247) (xy 88.55324 92.307094) (xy 88.553239 92.307093) (xy 88.553237 92.307091) (xy 88.433684 92.214039) (xy 88.375576 92.168811) (xy 88.177574 92.061658) (xy 88.177572 92.061657) (xy 88.177571 92.061656) (xy 87.964639 91.988557) (xy 87.96463 91.988555) (xy 87.905469 91.978683) (xy 87.742569 91.9515) (xy 87.517431 91.9515) (xy 87.369211 91.976233) (xy 87.295369 91.988555) (xy 87.29536 91.988557) (xy 87.082428 92.061656) (xy 87.082426 92.061658) (xy 86.884432 92.168807) (xy 86.884426 92.16881) (xy 86.884424 92.168811) (xy 86.706762 92.307091) (xy 86.554279 92.472729) (xy 86.465483 92.608643) (xy 86.411479 92.654731) (xy 86.341131 92.664306) (xy 86.276774 92.634329) (xy 86.254517 92.608643) (xy 86.16572 92.472729) (xy 86.0366 92.33247) (xy 86.01324 92.307094) (xy 86.013239 92.307093) (xy 86.013237 92.307091) (xy 85.893684 92.214039) (xy 85.835576 92.168811) (xy 85.835569 92.168807) (xy 85.76453 92.130362) (xy 85.71414 92.080349) (xy 85.6985 92.019549) (xy 85.6985 91.914239) (xy 85.718502 91.846118) (xy 85.735405 91.825144) (xy 86.615144 90.945405) (xy 86.677456 90.911379) (xy 86.704239 90.9085) (xy 89.330075 90.9085) ) ) (filled_polygon (layer "B.Cu") (pts (xy 55.059532 107.640538) (xy 55.116368 107.683085) (xy 55.141179 107.749605) (xy 55.1415 107.758594) (xy 55.1415 109.659665) (xy 55.121498 109.727786) (xy 55.067842 109.774279) (xy 54.997568 109.784383) (xy 54.974591 109.778839) (xy 54.944641 109.768558) (xy 54.94464 109.768557) (xy 54.944635 109.768556) (xy 54.944631 109.768555) (xy 54.94463 109.768555) (xy 54.900476 109.761187) (xy 54.722569 109.7315) (xy 54.497431 109.7315) (xy 54.349211 109.756233) (xy 54.275369 109.768555) (xy 54.27536 109.768557) (xy 54.062428 109.841656) (xy 54.062426 109.841658) (xy 53.864432 109.948807) (xy 53.864426 109.94881) (xy 53.864424 109.948811) (xy 53.686762 110.087091) (xy 53.534279 110.252729) (xy 53.445483 110.388643) (xy 53.391479 110.434731) (xy 53.321131 110.444306) (xy 53.256774 110.414329) (xy 53.234517 110.388643) (xy 53.14572 110.252729) (xy 52.993237 110.087091) (xy 52.873684 109.994039) (xy 52.815576 109.948811) (xy 52.617574 109.841658) (xy 52.617572 109.841657) (xy 52.617571 109.841656) (xy 52.404639 109.768557) (xy 52.40463 109.768555) (xy 52.360476 109.761187) (xy 52.182569 109.7315) (xy 51.957431 109.7315) (xy 51.809211 109.756233) (xy 51.735369 109.768555) (xy 51.73536 109.768557) (xy 51.522428 109.841656) (xy 51.522426 109.841658) (xy 51.324432 109.948807) (xy 51.324426 109.94881) (xy 51.324424 109.948811) (xy 51.146762 110.087091) (xy 50.994279 110.252729) (xy 50.905483 110.388643) (xy 50.851479 110.434731) (xy 50.781131 110.444306) (xy 50.716774 110.414329) (xy 50.694517 110.388643) (xy 50.60572 110.252729) (xy 50.453237 110.087091) (xy 50.333684 109.994039) (xy 50.275576 109.948811) (xy 50.077574 109.841658) (xy 50.077572 109.841657) (xy 50.077571 109.841656) (xy 49.864639 109.768557) (xy 49.86463 109.768555) (xy 49.820476 109.761187) (xy 49.642569 109.7315) (xy 49.417431 109.7315) (xy 49.269211 109.756233) (xy 49.195369 109.768555) (xy 49.19536 109.768557) (xy 48.982428 109.841656) (xy 48.982426 109.841658) (xy 48.784432 109.948807) (xy 48.784426 109.94881) (xy 48.784424 109.948811) (xy 48.606762 110.087091) (xy 48.454279 110.252729) (xy 48.365483 110.388643) (xy 48.311479 110.434731) (xy 48.241131 110.444306) (xy 48.176774 110.414329) (xy 48.154517 110.388643) (xy 48.06572 110.252729) (xy 47.913237 110.087091) (xy 47.793684 109.994039) (xy 47.735576 109.948811) (xy 47.537574 109.841658) (xy 47.537572 109.841657) (xy 47.537571 109.841656) (xy 47.324639 109.768557) (xy 47.32463 109.768555) (xy 47.280476 109.761187) (xy 47.102569 109.7315) (xy 46.877431 109.7315) (xy 46.729211 109.756233) (xy 46.655369 109.768555) (xy 46.65536 109.768557) (xy 46.442428 109.841656) (xy 46.442426 109.841658) (xy 46.244432 109.948807) (xy 46.244426 109.94881) (xy 46.244424 109.948811) (xy 46.066759 110.087094) (xy 46.005374 110.153775) (xy 45.944521 110.190346) (xy 45.873557 110.188211) (xy 45.815012 110.148049) (xy 45.794618 110.11247) (xy 45.750443 109.994033) (xy 45.662904 109.877095) (xy 45.545965 109.789555) (xy 45.409093 109.738505) (xy 45.348597 109.732) (xy 44.704 109.732) (xy 44.704 110.647749) (xy 44.646853 110.614755) (xy 44.517143 110.58) (xy 44.382857 110.58) (xy 44.253147 110.614755) (xy 44.196 110.647749) (xy 44.196 109.732) (xy 43.551402 109.732) (xy 43.490906 109.738505) (xy 43.354035 109.789555) (xy 43.354034 109.789555) (xy 43.237095 109.877095) (xy 43.149555 109.994034) (xy 43.149553 109.994039) (xy 43.10538 110.11247) (xy 43.062833 110.169306) (xy 42.996313 110.194116) (xy 42.926939 110.179024) (xy 42.894626 110.153777) (xy 42.83324 110.087094) (xy 42.833239 110.087093) (xy 42.833237 110.087091) (xy 42.713684 109.994039) (xy 42.655576 109.948811) (xy 42.457574 109.841658) (xy 42.457572 109.841657) (xy 42.457571 109.841656) (xy 42.244639 109.768557) (xy 42.24463 109.768555) (xy 42.200476 109.761187) (xy 42.022569 109.7315) (xy 41.797431 109.7315) (xy 41.649211 109.756233) (xy 41.575369 109.768555) (xy 41.57536 109.768557) (xy 41.362428 109.841656) (xy 41.362426 109.841658) (xy 41.164432 109.948807) (xy 41.164426 109.94881) (xy 41.164424 109.948811) (xy 40.986762 110.087091) (xy 40.834279 110.252729) (xy 40.745483 110.388643) (xy 40.691479 110.434731) (xy 40.621131 110.444306) (xy 40.556774 110.414329) (xy 40.534517 110.388643) (xy 40.44572 110.252729) (xy 40.3166 110.11247) (xy 40.29324 110.087094) (xy 40.293238 110.087092) (xy 40.28971 110.08326) (xy 40.290666 110.082379) (xy 40.257253 110.026778) (xy 40.259388 109.955813) (xy 40.290067 109.905836) (xy 41.825499 108.370405) (xy 41.887811 108.336379) (xy 41.914594 108.3335) (xy 54.062393 108.3335) (xy 54.062394 108.3335) (xy 54.184785 108.309155) (xy 54.300075 108.2614) (xy 54.403833 108.192071) (xy 54.926405 107.669499) (xy 54.988717 107.635473) ) ) (filled_polygon (layer "B.Cu") (pts (xy 63.583225 93.985669) (xy 63.60548 94.011353) (xy 63.622066 94.036739) (xy 63.694275 94.147265) (xy 63.694279 94.14727) (xy 63.846762 94.312908) (xy 63.896152 94.35135) (xy 64.024424 94.451189) (xy 64.222426 94.558342) (xy 64.222427 94.558342) (xy 64.222428 94.558343) (xy 64.328566 94.59478) (xy 64.435365 94.631444) (xy 64.657431 94.6685) (xy 64.657435 94.6685) (xy 64.8155 94.6685) (xy 64.883621 94.688502) (xy 64.930114 94.742158) (xy 64.9415 94.7945) (xy 64.9415 108.109555) (xy 64.921498 108.177676) (xy 64.904595 108.19865) (xy 63.191167 109.912078) (xy 63.172039 109.931206) (xy 63.15483 109.948415) (xy 63.092518 109.982439) (xy 63.021702 109.977373) (xy 62.988344 109.958749) (xy 62.975578 109.948812) (xy 62.975575 109.94881) (xy 62.854145 109.883096) (xy 62.777574 109.841658) (xy 62.777572 109.841657) (xy 62.777571 109.841656) (xy 62.564639 109.768557) (xy 62.56463 109.768555) (xy 62.520476 109.761187) (xy 62.342569 109.7315) (xy 62.117431 109.7315) (xy 61.969211 109.756233) (xy 61.895369 109.768555) (xy 61.89536 109.768557) (xy 61.682428 109.841656) (xy 61.682426 109.841658) (xy 61.484432 109.948807) (xy 61.484426 109.94881) (xy 61.484424 109.948811) (xy 61.306762 110.087091) (xy 61.154279 110.252729) (xy 61.065483 110.388643) (xy 61.011479 110.434731) (xy 60.941131 110.444306) (xy 60.876774 110.414329) (xy 60.854517 110.388643) (xy 60.76572 110.252729) (xy 60.613237 110.087091) (xy 60.493684 109.994039) (xy 60.435576 109.948811) (xy 60.237574 109.841658) (xy 60.237572 109.841657) (xy 60.237571 109.841656) (xy 60.024639 109.768557) (xy 60.02463 109.768555) (xy 59.980476 109.761187) (xy 59.802569 109.7315) (xy 59.577431 109.7315) (xy 59.429211 109.756233) (xy 59.355369 109.768555) (xy 59.35536 109.768557) (xy 59.142428 109.841656) (xy 59.142426 109.841658) (xy 58.944432 109.948807) (xy 58.944426 109.94881) (xy 58.944424 109.948811) (xy 58.766759 110.087094) (xy 58.705374 110.153775) (xy 58.644521 110.190346) (xy 58.573557 110.188211) (xy 58.515012 110.148049) (xy 58.494618 110.11247) (xy 58.450443 109.994033) (xy 58.362904 109.877095) (xy 58.245965 109.789555) (xy 58.109093 109.738505) (xy 58.048597 109.732) (xy 57.404 109.732) (xy 57.404 110.647749) (xy 57.346853 110.614755) (xy 57.217143 110.58) (xy 57.082857 110.58) (xy 56.953147 110.614755) (xy 56.896 110.647749) (xy 56.896 109.732) (xy 56.5845 109.732) (xy 56.516379 109.711998) (xy 56.469886 109.658342) (xy 56.4585 109.606) (xy 56.4585 100.085142) (xy 56.458499 100.085139) (xy 56.448966 100.037215) (xy 56.433194 99.957923) (xy 56.383555 99.838083) (xy 56.311491 99.730231) (xy 51.299584 94.718324) (xy 51.265558 94.656012) (xy 51.270623 94.585197) (xy 51.31317 94.528361) (xy 51.37969 94.50355) (xy 51.448645 94.518414) (xy 51.522426 94.558342) (xy 51.735365 94.631444) (xy 51.957431 94.6685) (xy 51.957435 94.6685) (xy 52.182565 94.6685) (xy 52.182569 94.6685) (xy 52.404635 94.631444) (xy 52.617574 94.558342) (xy 52.815576 94.451189) (xy 52.99324 94.312906) (xy 53.145722 94.147268) (xy 53.234518 94.011354) (xy 53.28852 93.965268) (xy 53.358868 93.955692) (xy 53.423225 93.985669) (xy 53.44548 94.011353) (xy 53.462066 94.036739) (xy 53.534275 94.147265) (xy 53.534279 94.14727) (xy 53.686762 94.312908) (xy 53.736152 94.35135) (xy 53.864424 94.451189) (xy 54.062426 94.558342) (xy 54.062427 94.558342) (xy 54.062428 94.558343) (xy 54.168566 94.59478) (xy 54.275365 94.631444) (xy 54.497431 94.6685) (xy 54.497435 94.6685) (xy 54.722565 94.6685) (xy 54.722569 94.6685) (xy 54.944635 94.631444) (xy 55.157574 94.558342) (xy 55.355576 94.451189) (xy 55.53324 94.312906) (xy 55.594245 94.246637) (xy 55.655096 94.210067) (xy 55.726061 94.2122) (xy 55.784606 94.252362) (xy 55.805 94.287941) (xy 55.849111 94.406204) (xy 55.849112 94.406207) (xy 55.936738 94.523261) (xy 56.053792 94.610887) (xy 56.053794 94.610888) (xy 56.053796 94.610889) (xy 56.1089 94.631442) (xy 56.190795 94.661988) (xy 56.190803 94.66199) (xy 56.25135 94.668499) (xy 56.251355 94.668499) (xy 56.251362 94.6685) (xy 56.251368 94.6685) (xy 58.048632 94.6685) (xy 58.048638 94.6685) (xy 58.048645 94.668499) (xy 58.048649 94.668499) (xy 58.109196 94.66199) (xy 58.109199 94.661989) (xy 58.109201 94.661989) (xy 58.246204 94.610889) (xy 58.246799 94.610444) (xy 58.363261 94.523261) (xy 58.450886 94.406208) (xy 58.450885 94.406208) (xy 58.450889 94.406204) (xy 58.494999 94.287939) (xy 58.537545 94.231107) (xy 58.604066 94.206296) (xy 58.67344 94.221388) (xy 58.705753 94.246635) (xy 58.746405 94.290795) (xy 58.766762 94.312908) (xy 58.816152 94.35135) (xy 58.944424 94.451189) (xy 59.142426 94.558342) (xy 59.142427 94.558342) (xy 59.142428 94.558343) (xy 59.248566 94.59478) (xy 59.355365 94.631444) (xy 59.577431 94.6685) (xy 59.577435 94.6685) (xy 59.802565 94.6685) (xy 59.802569 94.6685) (xy 60.024635 94.631444) (xy 60.237574 94.558342) (xy 60.435576 94.451189) (xy 60.61324 94.312906) (xy 60.765722 94.147268) (xy 60.854518 94.011354) (xy 60.90852 93.965268) (xy 60.978868 93.955692) (xy 61.043225 93.985669) (xy 61.06548 94.011353) (xy 61.082066 94.036739) (xy 61.154275 94.147265) (xy 61.154279 94.14727) (xy 61.306762 94.312908) (xy 61.356152 94.35135) (xy 61.484424 94.451189) (xy 61.682426 94.558342) (xy 61.682427 94.558342) (xy 61.682428 94.558343) (xy 61.788566 94.59478) (xy 61.895365 94.631444) (xy 62.117431 94.6685) (xy 62.117435 94.6685) (xy 62.342565 94.6685) (xy 62.342569 94.6685) (xy 62.564635 94.631444) (xy 62.777574 94.558342) (xy 62.975576 94.451189) (xy 63.15324 94.312906) (xy 63.305722 94.147268) (xy 63.394518 94.011354) (xy 63.44852 93.965268) (xy 63.518868 93.955692) ) ) (filled_polygon (layer "B.Cu") (pts (xy 70.104 94.668) (xy 70.748585 94.668) (xy 70.748597 94.667999) (xy 70.809093 94.661494) (xy 70.945964 94.610444) (xy 70.945965 94.610444) (xy 71.062904 94.522904) (xy 71.150444 94.405965) (xy 71.194618 94.28753) (xy 71.237165 94.230694) (xy 71.303685 94.205883) (xy 71.373059 94.220974) (xy 71.405372 94.246222) (xy 71.446409 94.290799) (xy 71.466762 94.312908) (xy 71.516152 94.35135) (xy 71.644424 94.451189) (xy 71.842426 94.558342) (xy 71.842427 94.558342) (xy 71.842428 94.558343) (xy 71.948566 94.59478) (xy 72.055365 94.631444) (xy 72.277431 94.6685) (xy 72.277435 94.6685) (xy 72.502565 94.6685) (xy 72.502569 94.6685) (xy 72.724635 94.631444) (xy 72.937574 94.558342) (xy 73.135576 94.451189) (xy 73.31324 94.312906) (xy 73.465722 94.147268) (xy 73.554518 94.011354) (xy 73.60852 93.965268) (xy 73.678868 93.955692) (xy 73.743225 93.985669) (xy 73.76548 94.011353) (xy 73.782066 94.036739) (xy 73.854275 94.147265) (xy 73.854279 94.14727) (xy 74.006762 94.312908) (xy 74.056152 94.35135) (xy 74.184424 94.451189) (xy 74.382426 94.558342) (xy 74.382427 94.558342) (xy 74.382428 94.558343) (xy 74.488566 94.59478) (xy 74.595365 94.631444) (xy 74.817431 94.6685) (xy 74.817435 94.6685) (xy 75.042565 94.6685) (xy 75.042569 94.6685) (xy 75.264635 94.631444) (xy 75.477574 94.558342) (xy 75.675576 94.451189) (xy 75.675582 94.451183) (xy 75.678524 94.449592) (xy 75.747955 94.434762) (xy 75.814381 94.459822) (xy 75.827589 94.471311) (xy 77.554595 96.198317) (xy 77.588621 96.260629) (xy 77.5915 96.287412) (xy 77.5915 109.6055) (xy 77.571498 109.673621) (xy 77.517842 109.720114) (xy 77.4655 109.7315) (xy 77.357431 109.7315) (xy 77.209211 109.756233) (xy 77.135369 109.768555) (xy 77.13536 109.768557) (xy 76.922428 109.841656) (xy 76.922426 109.841658) (xy 76.724432 109.948807) (xy 76.724426 109.94881) (xy 76.724424 109.948811) (xy 76.546762 110.087091) (xy 76.394279 110.252729) (xy 76.305483 110.388643) (xy 76.251479 110.434731) (xy 76.181131 110.444306) (xy 76.116774 110.414329) (xy 76.094517 110.388643) (xy 76.00572 110.252729) (xy 75.853237 110.087091) (xy 75.733684 109.994039) (xy 75.675576 109.948811) (xy 75.477574 109.841658) (xy 75.477572 109.841657) (xy 75.477571 109.841656) (xy 75.264639 109.768557) (xy 75.26463 109.768555) (xy 75.220476 109.761187) (xy 75.042569 109.7315) (xy 74.817431 109.7315) (xy 74.669211 109.756233) (xy 74.595369 109.768555) (xy 74.59536 109.768557) (xy 74.382428 109.841656) (xy 74.382426 109.841658) (xy 74.184432 109.948807) (xy 74.184426 109.94881) (xy 74.184424 109.948811) (xy 74.006762 110.087091) (xy 73.854279 110.252729) (xy 73.765483 110.388643) (xy 73.711479 110.434731) (xy 73.641131 110.444306) (xy 73.576774 110.414329) (xy 73.554517 110.388643) (xy 73.46572 110.252729) (xy 73.313237 110.087091) (xy 73.193684 109.994039) (xy 73.135576 109.948811) (xy 72.937574 109.841658) (xy 72.937572 109.841657) (xy 72.937571 109.841656) (xy 72.724639 109.768557) (xy 72.72463 109.768555) (xy 72.680476 109.761187) (xy 72.502569 109.7315) (xy 72.277431 109.7315) (xy 72.129211 109.756233) (xy 72.055369 109.768555) (xy 72.05536 109.768557) (xy 71.842428 109.841656) (xy 71.842426 109.841658) (xy 71.644432 109.948807) (xy 71.644426 109.94881) (xy 71.644424 109.948811) (xy 71.466759 110.087094) (xy 71.405374 110.153775) (xy 71.344521 110.190346) (xy 71.273557 110.188211) (xy 71.215012 110.148049) (xy 71.194618 110.11247) (xy 71.150443 109.994033) (xy 71.062904 109.877095) (xy 70.945965 109.789555) (xy 70.809093 109.738505) (xy 70.748597 109.732) (xy 70.104 109.732) (xy 70.104 110.647749) (xy 70.046853 110.614755) (xy 69.917143 110.58) (xy 69.782857 110.58) (xy 69.653147 110.614755) (xy 69.596 110.647749) (xy 69.596 109.732) (xy 68.951402 109.732) (xy 68.890906 109.738505) (xy 68.754035 109.789555) (xy 68.754034 109.789555) (xy 68.637095 109.877095) (xy 68.549555 109.994034) (xy 68.549553 109.994039) (xy 68.50538 110.11247) (xy 68.462833 110.169306) (xy 68.396313 110.194116) (xy 68.326939 110.179024) (xy 68.294626 110.153777) (xy 68.23324 110.087094) (xy 68.233239 110.087093) (xy 68.233237 110.087091) (xy 68.113684 109.994039) (xy 68.055576 109.948811) (xy 67.857574 109.841658) (xy 67.857572 109.841657) (xy 67.857571 109.841656) (xy 67.644639 109.768557) (xy 67.64463 109.768555) (xy 67.600476 109.761187) (xy 67.422569 109.7315) (xy 67.197431 109.7315) (xy 67.049211 109.756233) (xy 66.975369 109.768555) (xy 66.97536 109.768557) (xy 66.775412 109.837199) (xy 66.704487 109.840399) (xy 66.643092 109.804747) (xy 66.610718 109.741561) (xy 66.6085 109.718026) (xy 66.6085 96.5359) (xy 67.686673 96.5359) (xy 67.70372 96.741632) (xy 67.70595 96.768533) (xy 67.763249 96.994803) (xy 67.763252 96.99481) (xy 67.857015 97.208568) (xy 67.984685 97.403983) (xy 68.142774 97.575713) (xy 68.142785 97.575723) (xy 68.310766 97.706469) (xy 68.352237 97.764094) (xy 68.35597 97.834992) (xy 68.32078 97.896654) (xy 68.310766 97.905331) (xy 68.142785 98.036076) (xy 68.142774 98.036086) (xy 67.984685 98.207816) (xy 67.857015 98.403231) (xy 67.763252 98.616989) (xy 67.763249 98.616996) (xy 67.70595 98.843266) (xy 67.705949 98.843272) (xy 67.705949 98.843274) (xy 67.686673 99.0759) (xy 67.70372 99.281632) (xy 67.70595 99.308533) (xy 67.763249 99.534803) (xy 67.763252 99.53481) (xy 67.857015 99.748568) (xy 67.984685 99.943983) (xy 68.142774 100.115713) (xy 68.142785 100.115723) (xy 68.310766 100.246469) (xy 68.352237 100.304094) (xy 68.35597 100.374992) (xy 68.32078 100.436654) (xy 68.310766 100.445331) (xy 68.142785 100.576076) (xy 68.142774 100.576086) (xy 67.984685 100.747816) (xy 67.857015 100.943231) (xy 67.763252 101.156989) (xy 67.763249 101.156996) (xy 67.70595 101.383266) (xy 67.705949 101.383272) (xy 67.705949 101.383274) (xy 67.686673 101.6159) (xy 67.703017 101.813147) (xy 67.70595 101.848533) (xy 67.763249 102.074803) (xy 67.763252 102.07481) (xy 67.857015 102.288568) (xy 67.984685 102.483983) (xy 68.142774 102.655713) (xy 68.142778 102.655717) (xy 68.142781 102.655719) (xy 68.326983 102.79909) (xy 68.532273 102.910187) (xy 68.753049 102.98598) (xy 68.983288 103.0244) (xy 68.983292 103.0244) (xy 69.216708 103.0244) (xy 69.216712 103.0244) (xy 69.446951 102.98598) (xy 69.667727 102.910187) (xy 69.873017 102.79909) (xy 70.05722 102.655718) (xy 70.098419 102.610965) (xy 70.215314 102.483983) (xy 70.271361 102.398196) (xy 70.342984 102.288569) (xy 70.436749 102.074807) (xy 70.494051 101.848526) (xy 70.513327 101.6159) (xy 70.494051 101.383274) (xy 70.444311 101.186853) (xy 70.43675 101.156996) (xy 70.436747 101.156989) (xy 70.408195 101.091898) (xy 70.342984 100.943231) (xy 70.278858 100.845078) (xy 70.215314 100.747816) (xy 70.057225 100.576086) (xy 70.057221 100.576083) (xy 69.992754 100.525906) (xy 69.889229 100.445329) (xy 69.847761 100.387707) (xy 69.844027 100.316809) (xy 69.879217 100.255147) (xy 69.889217 100.24648) (xy 70.05722 100.115718) (xy 70.059558 100.113179) (xy 70.215314 99.943983) (xy 70.25229 99.887387) (xy 70.342984 99.748569) (xy 70.436749 99.534807) (xy 70.494051 99.308526) (xy 70.513327 99.0759) (xy 70.494051 98.843274) (xy 70.472862 98.7596) (xy 70.43675 98.616996) (xy 70.436747 98.616989) (xy 70.342984 98.403231) (xy 70.215314 98.207816) (xy 70.057225 98.036086) (xy 70.057221 98.036083) (xy 70.029322 98.014368) (xy 69.889229 97.905329) (xy 69.847761 97.847707) (xy 69.844027 97.776809) (xy 69.879217 97.715147) (xy 69.889217 97.70648) (xy 70.05722 97.575718) (xy 70.066513 97.565624) (xy 70.215314 97.403983) (xy 70.25229 97.347387) (xy 70.342984 97.208569) (xy 70.436749 96.994807) (xy 70.494051 96.768526) (xy 70.513327 96.5359) (xy 70.494051 96.303274) (xy 70.464481 96.186503) (xy 70.43675 96.076996) (xy 70.436747 96.076989) (xy 70.342984 95.863231) (xy 70.215314 95.667816) (xy 70.057225 95.496086) (xy 70.057221 95.496082) (xy 69.898259 95.372357) (xy 69.873017 95.35271) (xy 69.667727 95.241613) (xy 69.667724 95.241612) (xy 69.667723 95.241611) (xy 69.446955 95.165821) (xy 69.446948 95.165819) (xy 69.348411 95.149376) (xy 69.216712 95.1274) (xy 68.983288 95.1274) (xy 68.868066 95.146627) (xy 68.753051 95.165819) (xy 68.753044 95.165821) (xy 68.532276 95.241611) (xy 68.532273 95.241613) (xy 68.422944 95.300779) (xy 68.326985 95.352709) (xy 68.326983 95.35271) (xy 68.142778 95.496082) (xy 68.142774 95.496086) (xy 67.984685 95.667816) (xy 67.857015 95.863231) (xy 67.763252 96.076989) (xy 67.763249 96.076996) (xy 67.70595 96.303266) (xy 67.705949 96.303272) (xy 67.705949 96.303274) (xy 67.686673 96.5359) (xy 66.6085 96.5359) (xy 66.6085 94.681973) (xy 66.628502 94.613852) (xy 66.682158 94.567359) (xy 66.752432 94.557255) (xy 66.775411 94.562799) (xy 66.975365 94.631444) (xy 67.197431 94.6685) (xy 67.197435 94.6685) (xy 67.422565 94.6685) (xy 67.422569 94.6685) (xy 67.644635 94.631444) (xy 67.857574 94.558342) (xy 68.055576 94.451189) (xy 68.23324 94.312906) (xy 68.294626 94.246222) (xy 68.355476 94.209654) (xy 68.426441 94.211787) (xy 68.484986 94.251949) (xy 68.50538 94.287529) (xy 68.549553 94.405961) (xy 68.549555 94.405965) (xy 68.637095 94.522904) (xy 68.754034 94.610444) (xy 68.890906 94.661494) (xy 68.951402 94.667999) (xy 68.951415 94.668) (xy 69.596 94.668) (xy 69.596 93.75225) (xy 69.653147 93.785245) (xy 69.782857 93.82) (xy 69.917143 93.82) (xy 70.046853 93.785245) (xy 70.104 93.75225) ) ) (filled_polygon (layer "B.Cu") (pts (xy 44.704 94.668) (xy 45.348585 94.668) (xy 45.348597 94.667999) (xy 45.409093 94.661494) (xy 45.545964 94.610444) (xy 45.545965 94.610444) (xy 45.662904 94.522904) (xy 45.750444 94.405965) (xy 45.794618 94.28753) (xy 45.837165 94.230694) (xy 45.903685 94.205883) (xy 45.973059 94.220974) (xy 46.005372 94.246222) (xy 46.046409 94.290799) (xy 46.066762 94.312908) (xy 46.116152 94.35135) (xy 46.244424 94.451189) (xy 46.442426 94.558342) (xy 46.442427 94.558342) (xy 46.442428 94.558343) (xy 46.548566 94.59478) (xy 46.655365 94.631444) (xy 46.877431 94.6685) (xy 46.877435 94.6685) (xy 47.102565 94.6685) (xy 47.102569 94.6685) (xy 47.324635 94.631444) (xy 47.537574 94.558342) (xy 47.735576 94.451189) (xy 47.771316 94.42337) (xy 47.837355 94.397313) (xy 47.907001 94.411097) (xy 47.937802 94.433706) (xy 54.229595 100.725499) (xy 54.263621 100.787811) (xy 54.2665 100.814594) (xy 54.2665 106.485406) (xy 54.246498 106.553527) (xy 54.229595 106.574501) (xy 53.774501 107.029595) (xy 53.712189 107.063621) (xy 53.685406 107.0665) (xy 41.537603 107.0665) (xy 41.464568 107.081028) (xy 41.415215 107.090845) (xy 41.415213 107.090845) (xy 41.415212 107.090846) (xy 41.299923 107.138601) (xy 41.196171 107.207926) (xy 41.196164 107.207931) (xy 38.877931 109.526164) (xy 38.877926 109.526171) (xy 38.831428 109.595761) (xy 38.8086 109.629925) (xy 38.7905 109.673621) (xy 38.762359 109.741561) (xy 38.760845 109.745215) (xy 38.756202 109.768556) (xy 38.743467 109.83258) (xy 38.710559 109.89549) (xy 38.679858 109.918811) (xy 38.62443 109.948807) (xy 38.624424 109.948811) (xy 38.446762 110.087091) (xy 38.294279 110.252729) (xy 38.294275 110.252734) (xy 38.231983 110.348081) (xy 38.177979 110.39417) (xy 38.107632 110.403745) (xy 38.043274 110.373768) (xy 38.005341 110.313755) (xy 38.0005 110.279166) (xy 38.0005 105.613792) (xy 38.020502 105.545671) (xy 38.074158 105.499178) (xy 38.144432 105.489074) (xy 38.209012 105.518568) (xy 38.241886 105.563176) (xy 38.254858 105.592749) (xy 38.257017 105.597671) (xy 38.384685 105.793083) (xy 38.542774 105.964813) (xy 38.542778 105.964817) (xy 38.60865 106.016087) (xy 38.726983 106.10819) (xy 38.932273 106.219287) (xy 39.153049 106.29508) (xy 39.383288 106.3335) (xy 39.383292 106.3335) (xy 39.616708 106.3335) (xy 39.616712 106.3335) (xy 39.846951 106.29508) (xy 40.067727 106.219287) (xy 40.273017 106.10819) (xy 40.45722 105.964818) (xy 40.484951 105.934695) (xy 40.615314 105.793083) (xy 40.671397 105.707241) (xy 40.742984 105.597669) (xy 40.836749 105.383907) (xy 40.894051 105.157626) (xy 40.913327 104.925) (xy 40.894051 104.692374) (xy 40.87699 104.625) (xy 41.266693 104.625) (xy 41.285885 104.844371) (xy 41.34288 105.057076) (xy 41.435944 105.256654) (xy 41.523157 105.381206) (xy 41.562251 105.437038) (xy 41.562254 105.437042) (xy 41.717957 105.592745) (xy 41.717961 105.592748) (xy 41.717962 105.592749) (xy 41.898346 105.719056) (xy 42.097924 105.81212) (xy 42.310629 105.869115) (xy 42.53 105.888307) (xy 42.749371 105.869115) (xy 42.962076 105.81212) (xy 43.161654 105.719056) (xy 43.342038 105.592749) (xy 43.497749 105.437038) (xy 43.624056 105.256654) (xy 43.71712 105.057076) (xy 43.774115 104.844371) (xy 43.793307 104.625) (xy 43.774115 104.405629) (xy 43.71712 104.192924) (xy 43.624056 103.993347) (xy 43.497749 103.812962) (xy 43.342038 103.657251) (xy 43.161654 103.530944) (xy 43.16165 103.530942) (xy 42.962079 103.437881) (xy 42.962073 103.437879) (xy 42.848952 103.407568) (xy 42.749371 103.380885) (xy 42.53 103.361693) (xy 42.310629 103.380885) (xy 42.097926 103.437879) (xy 42.09792 103.437881) (xy 41.898346 103.530944) (xy 41.717965 103.657248) (xy 41.717959 103.657253) (xy 41.562253 103.812959) (xy 41.562248 103.812965) (xy 41.435944 103.993346) (xy 41.342881 104.19292) (xy 41.342879 104.192926) (xy 41.290863 104.38705) (xy 41.285885 104.405629) (xy 41.266693 104.625) (xy 40.87699 104.625) (xy 40.836749 104.466093) (xy 40.742984 104.252331) (xy 40.719626 104.216579) (xy 40.615314 104.056916) (xy 40.457225 103.885186) (xy 40.457221 103.885182) (xy 40.35613 103.8065) (xy 40.273017 103.74181) (xy 40.067727 103.630713) (xy 40.067724 103.630712) (xy 40.067723 103.630711) (xy 39.846955 103.554921) (xy 39.846948 103.554919) (xy 39.739208 103.536941) (xy 39.616712 103.5165) (xy 39.383288 103.5165) (xy 39.268066 103.535727) (xy 39.153051 103.554919) (xy 39.153044 103.554921) (xy 38.932276 103.630711) (xy 38.932273 103.630713) (xy 38.726985 103.741809) (xy 38.726983 103.74181) (xy 38.542778 103.885182) (xy 38.542774 103.885186) (xy 38.384685 104.056916) (xy 38.257015 104.252331) (xy 38.241887 104.286821) (xy 38.196206 104.341169) (xy 38.128394 104.362193) (xy 38.05998 104.343217) (xy 38.012686 104.290266) (xy 38.0005 104.236207) (xy 38.0005 100.163792) (xy 38.020502 100.095671) (xy 38.074158 100.049178) (xy 38.144432 100.039074) (xy 38.209012 100.068568) (xy 38.241886 100.113176) (xy 38.248869 100.129095) (xy 38.257017 100.147671) (xy 38.384685 100.343083) (xy 38.542774 100.514813) (xy 38.542778 100.514817) (xy 38.593593 100.554368) (xy 38.726983 100.65819) (xy 38.932273 100.769287) (xy 39.153049 100.84508) (xy 39.383288 100.8835) (xy 39.383292 100.8835) (xy 39.616708 100.8835) (xy 39.616712 100.8835) (xy 39.846951 100.84508) (xy 40.067727 100.769287) (xy 40.273017 100.65819) (xy 40.45722 100.514818) (xy 40.490317 100.478866) (xy 40.615314 100.343083) (xy 40.621575 100.3335) (xy 40.742984 100.147669) (xy 40.836749 99.933907) (xy 40.87699 99.775) (xy 41.266693 99.775) (xy 41.285885 99.994371) (xy 41.293368 100.022296) (xy 41.342879 100.207073) (xy 41.342881 100.207079) (xy 41.433154 100.400671) (xy 41.435944 100.406654) (xy 41.55458 100.576083) (xy 41.562251 100.587038) (xy 41.562254 100.587042) (xy 41.717957 100.742745) (xy 41.717961 100.742748) (xy 41.717962 100.742749) (xy 41.898346 100.869056) (xy 42.097924 100.96212) (xy 42.310629 101.019115) (xy 42.53 101.038307) (xy 42.749371 101.019115) (xy 42.962076 100.96212) (xy 43.161654 100.869056) (xy 43.342038 100.742749) (xy 43.497749 100.587038) (xy 43.624056 100.406654) (xy 43.71712 100.207076) (xy 43.774115 99.994371) (xy 43.793307 99.775) (xy 43.774115 99.555629) (xy 43.71712 99.342924) (xy 43.624056 99.143347) (xy 43.497749 98.962962) (xy 43.342038 98.807251) (xy 43.341475 98.806857) (xy 43.273983 98.759598) (xy 43.161654 98.680944) (xy 43.16165 98.680942) (xy 42.962079 98.587881) (xy 42.962073 98.587879) (xy 42.872178 98.563791) (xy 42.749371 98.530885) (xy 42.53 98.511693) (xy 42.310629 98.530885) (xy 42.097926 98.587879) (xy 42.09792 98.587881) (xy 41.898346 98.680944) (xy 41.717965 98.807248) (xy 41.717959 98.807253) (xy 41.562253 98.962959) (xy 41.562248 98.962965) (xy 41.435944 99.143346) (xy 41.342881 99.34292) (xy 41.342879 99.342926) (xy 41.285885 99.555629) (xy 41.266693 99.775) (xy 40.87699 99.775) (xy 40.894051 99.707626) (xy 40.913327 99.475) (xy 40.894051 99.242374) (xy 40.851894 99.0759) (xy 40.83675 99.016096) (xy 40.836747 99.016089) (xy 40.813443 98.962962) (xy 40.742984 98.802331) (xy 40.715065 98.759598) (xy 40.615314 98.606916) (xy 40.457225 98.435186) (xy 40.457221 98.435182) (xy 40.365118 98.363496) (xy 40.273017 98.29181) (xy 40.067727 98.180713) (xy 40.067724 98.180712) (xy 40.067723 98.180711) (xy 39.846955 98.104921) (xy 39.846948 98.104919) (xy 39.748411 98.088476) (xy 39.616712 98.0665) (xy 39.383288 98.0665) (xy 39.268066 98.085727) (xy 39.153051 98.104919) (xy 39.153044 98.104921) (xy 38.932276 98.180711) (xy 38.932273 98.180713) (xy 38.822482 98.240129) (xy 38.726985 98.291809) (xy 38.726983 98.29181) (xy 38.542778 98.435182) (xy 38.542774 98.435186) (xy 38.384685 98.606916) (xy 38.257015 98.802331) (xy 38.241887 98.836821) (xy 38.196206 98.891169) (xy 38.128394 98.912193) (xy 38.05998 98.893217) (xy 38.012686 98.840266) (xy 38.0005 98.786207) (xy 38.0005 94.120833) (xy 38.020502 94.052712) (xy 38.074158 94.006219) (xy 38.144432 93.996115) (xy 38.209012 94.025609) (xy 38.231983 94.051918) (xy 38.294275 94.147265) (xy 38.294279 94.14727) (xy 38.446762 94.312908) (xy 38.496152 94.35135) (xy 38.624424 94.451189) (xy 38.822426 94.558342) (xy 38.822427 94.558342) (xy 38.822428 94.558343) (xy 38.928566 94.59478) (xy 39.035365 94.631444) (xy 39.257431 94.6685) (xy 39.257435 94.6685) (xy 39.482565 94.6685) (xy 39.482569 94.6685) (xy 39.704635 94.631444) (xy 39.917574 94.558342) (xy 40.115576 94.451189) (xy 40.29324 94.312906) (xy 40.445722 94.147268) (xy 40.534518 94.011354) (xy 40.58852 93.965268) (xy 40.658868 93.955692) (xy 40.723225 93.985669) (xy 40.74548 94.011353) (xy 40.762066 94.036739) (xy 40.834275 94.147265) (xy 40.834279 94.14727) (xy 40.986762 94.312908) (xy 41.036152 94.35135) (xy 41.164424 94.451189) (xy 41.362426 94.558342) (xy 41.362427 94.558342) (xy 41.362428 94.558343) (xy 41.468566 94.59478) (xy 41.575365 94.631444) (xy 41.797431 94.6685) (xy 41.797435 94.6685) (xy 42.022565 94.6685) (xy 42.022569 94.6685) (xy 42.244635 94.631444) (xy 42.457574 94.558342) (xy 42.655576 94.451189) (xy 42.83324 94.312906) (xy 42.894626 94.246222) (xy 42.955476 94.209654) (xy 43.026441 94.211787) (xy 43.084986 94.251949) (xy 43.10538 94.287529) (xy 43.149553 94.405961) (xy 43.149555 94.405965) (xy 43.237095 94.522904) (xy 43.354034 94.610444) (xy 43.490906 94.661494) (xy 43.551402 94.667999) (xy 43.551415 94.668) (xy 44.196 94.668) (xy 44.196 93.75225) (xy 44.253147 93.785245) (xy 44.382857 93.82) (xy 44.517143 93.82) (xy 44.646853 93.785245) (xy 44.704 93.75225) ) ) (filled_polygon (layer "B.Cu") (pts (xy 90.660345 88.3414) (xy 90.671589 88.351377) (xy 100.804595 98.484383) (xy 100.838621 98.546695) (xy 100.8415 98.573478) (xy 100.8415 103.238194) (xy 100.821498 103.306315) (xy 100.767842 103.352808) (xy 100.697568 103.362912) (xy 100.689303 103.361441) (xy 100.595487 103.3415) (xy 100.425781 103.3415) (xy 100.35766 103.321498) (xy 100.311167 103.267842) (xy 100.301063 103.197568) (xy 100.316661 103.152501) (xy 100.319204 103.148095) (xy 100.334527 103.121556) (xy 100.393542 102.939928) (xy 100.413504 102.75) (xy 100.393542 102.560072) (xy 100.334527 102.378444) (xy 100.23904 102.213056) (xy 100.239038 102.213054) (xy 100.239034 102.213048) (xy 100.111255 102.071135) (xy 99.956752 101.958882) (xy 99.782288 101.881206) (xy 99.595487 101.8415) (xy 99.404513 101.8415) (xy 99.217711 101.881206) (xy 99.043247 101.958882) (xy 98.888744 102.071135) (xy 98.760965 102.213048) (xy 98.760958 102.213058) (xy 98.670115 102.370403) (xy 98.665473 102.378444) (xy 98.659055 102.398196) (xy 98.606457 102.560072) (xy 98.586496 102.75) (xy 98.606457 102.939927) (xy 98.633905 103.0244) (xy 98.665473 103.121556) (xy 98.665476 103.121561) (xy 98.755624 103.277703) (xy 98.76096 103.286944) (xy 98.859136 103.39598) (xy 98.889853 103.459987) (xy 98.8915 103.48029) (xy 98.8915 104.748822) (xy 98.871498 104.816943) (xy 98.817842 104.863436) (xy 98.747568 104.87354) (xy 98.739303 104.872069) (xy 98.595487 104.8415) (xy 98.495298 104.8415) (xy 98.427177 104.821498) (xy 98.380684 104.767842) (xy 98.375465 104.754437) (xy 98.373805 104.749328) (xy 98.334527 104.628444) (xy 98.23904 104.463056) (xy 98.239038 104.463054) (xy 98.239034 104.463048) (xy 98.111255 104.321135) (xy 97.956752 104.208882) (xy 97.782288 104.131206) (xy 97.595487 104.0915) (xy 97.404513 104.0915) (xy 97.217711 104.131206) (xy 97.043247 104.208882) (xy 96.888744 104.321135) (xy 96.862926 104.34981) (xy 96.80248 104.38705) (xy 96.76929 104.3915) (xy 93.735611 104.3915) (xy 93.66749 104.371498) (xy 93.646516 104.354595) (xy 93.545405 104.253484) (xy 93.511379 104.191172) (xy 93.5085 104.164389) (xy 93.5085 91.71989) (xy 93.5085 91.719889) (xy 93.467032 91.565128) (xy 93.42943 91.5) (xy 93.386923 91.426375) (xy 93.386919 91.42637) (xy 93.335671 91.375122) (xy 93.273628 91.313079) (xy 90.492198 88.531649) (xy 90.458172 88.469337) (xy 90.463237 88.398522) (xy 90.472147 88.379599) (xy 90.473354 88.377509) (xy 90.524715 88.3285) (xy 90.594424 88.315038) ) ) (filled_polygon (layer "B.Cu") (pts (xy 106.771749 56.568501) (xy 106.792723 56.585404) (xy 108.069224 57.861905) (xy 108.10325 57.924217) (xy 108.098185 57.995032) (xy 108.055638 58.051868) (xy 107.989118 58.076679) (xy 107.980129 58.077) (xy 107.186402 58.077) (xy 107.125906 58.083505) (xy 106.989035 58.134555) (xy 106.989034 58.134555) (xy 106.872095 58.222095) (xy 106.784555 58.339034) (xy 106.784553 58.339039) (xy 106.746282 58.441647) (xy 106.703735 58.498483) (xy 106.637215 58.523293) (xy 106.567841 58.508201) (xy 106.539132 58.486709) (xy 106.45478 58.402357) (xy 106.454777 58.402355) (xy 106.454775 58.402353) (xy 106.279871 58.275278) (xy 106.087241 58.177128) (xy 106.08724 58.177127) (xy 106.087239 58.177127) (xy 105.881632 58.110321) (xy 105.881629 58.11032) (xy 105.668097 58.0765) (xy 105.451903 58.0765) (xy 105.238371 58.11032) (xy 105.238368 58.11032) (xy 105.238367 58.110321) (xy 105.03276 58.177127) (xy 104.840125 58.27528) (xy 104.665222 58.402355) (xy 104.665219 58.402357) (xy 104.512354 58.555222) (xy 104.391936 58.720964) (xy 104.335713 58.764318) (xy 104.264977 58.770393) (xy 104.202186 58.737261) (xy 104.188064 58.720964) (xy 104.067645 58.555222) (xy 103.91478 58.402357) (xy 103.914777 58.402355) (xy 103.914775 58.402353) (xy 103.739871 58.275278) (xy 103.547241 58.177128) (xy 103.54724 58.177127) (xy 103.547239 58.177127) (xy 103.341632 58.110321) (xy 103.341629 58.11032) (xy 103.128097 58.0765) (xy 102.911903 58.0765) (xy 102.698371 58.11032) (xy 102.698368 58.11032) (xy 102.698367 58.110321) (xy 102.49276 58.177127) (xy 102.300125 58.27528) (xy 102.125222 58.402355) (xy 102.125219 58.402357) (xy 101.972354 58.555222) (xy 101.851936 58.720964) (xy 101.795713 58.764318) (xy 101.724977 58.770393) (xy 101.662186 58.737261) (xy 101.648064 58.720964) (xy 101.527645 58.555222) (xy 101.37478 58.402357) (xy 101.374777 58.402355) (xy 101.374775 58.402353) (xy 101.199871 58.275278) (xy 101.007241 58.177128) (xy 101.00724 58.177127) (xy 101.007239 58.177127) (xy 100.801632 58.110321) (xy 100.801629 58.11032) (xy 100.588097 58.0765) (xy 100.371903 58.0765) (xy 100.158371 58.11032) (xy 100.158368 58.11032) (xy 100.158367 58.110321) (xy 99.95276 58.177127) (xy 99.760125 58.27528) (xy 99.585222 58.402355) (xy 99.585219 58.402357) (xy 99.432357 58.555219) (xy 99.432355 58.555222) (xy 99.30528 58.730125) (xy 99.207127 58.92276) (xy 99.141521 59.124674) (xy 99.14032 59.128371) (xy 99.1065 59.341903) (xy 99.1065 59.858097) (xy 99.14032 60.071629) (xy 99.140321 60.071632) (xy 99.164535 60.146156) (xy 99.207128 60.277241) (xy 99.305278 60.469871) (xy 99.432353 60.644775) (xy 99.432355 60.644777) (xy 99.432357 60.64478) (xy 99.585219 60.797642) (xy 99.585222 60.797644) (xy 99.585225 60.797647) (xy 99.760129 60.924722) (xy 99.952759 61.022872) (xy 100.158371 61.08968) (xy 100.371903 61.1235) (xy 100.371906 61.1235) (xy 100.588094 61.1235) (xy 100.588097 61.1235) (xy 100.801629 61.08968) (xy 101.007241 61.022872) (xy 101.199871 60.924722) (xy 101.374775 60.797647) (xy 101.527647 60.644775) (xy 101.648064 60.479035) (xy 101.704286 60.435681) (xy 101.775022 60.429606) (xy 101.837814 60.462737) (xy 101.851936 60.479035) (xy 101.972353 60.644775) (xy 101.972355 60.644777) (xy 101.972357 60.64478) (xy 102.125219 60.797642) (xy 102.125222 60.797644) (xy 102.125225 60.797647) (xy 102.300129 60.924722) (xy 102.425876 60.988793) (xy 102.47749 61.03754) (xy 102.494556 61.106455) (xy 102.471655 61.173657) (xy 102.457768 61.190154) (xy 102.398209 61.249713) (xy 102.398208 61.249715) (xy 102.310606 61.38082) (xy 102.250265 61.526497) (xy 102.250263 61.526502) (xy 102.2195 61.681155) (xy 102.2195 61.838844) (xy 102.250263 61.993497) (xy 102.250265 61.993502) (xy 102.260115 62.017282) (xy 102.267704 62.087872) (xy 102.235925 62.151359) (xy 102.174867 62.187586) (xy 102.143706 62.1915) (xy 101.400668 62.1915) (xy 101.20583 62.230256) (xy 101.205825 62.230258) (xy 101.134013 62.260004) (xy 101.022296 62.306278) (xy 100.857123 62.416643) (xy 100.857116 62.416648) (xy 87.189094 76.08467) (xy 87.126782 76.118696) (xy 87.055967 76.113631) (xy 87.010904 76.08467) (xy 85.642883 74.716649) (xy 85.642881 74.716647) (xy 85.477704 74.606279) (xy 85.442024 74.5915) (xy 85.311887 74.537595) (xy 85.294172 74.530257) (xy 85.29417 74.530256) (xy 85.294169 74.530256) (xy 85.196089 74.510746) (xy 85.099331 74.4915) (xy 85.099329 74.4915) (xy 81.719925 74.4915) (xy 81.651804 74.471498) (xy 81.63083 74.454595) (xy 73.327585 66.15135) (xy 78.579 66.15135) (xy 78.579 67.948638) (xy 78.585509 68.009196) (xy 78.585511 68.009204) (xy 78.63661 68.146202) (xy 78.636612 68.146207) (xy 78.724238 68.263261) (xy 78.841292 68.350887) (xy 78.841294 68.350888) (xy 78.841296 68.350889) (xy 78.8964 68.371442) (xy 78.978295 68.401988) (xy 78.978303 68.40199) (xy 79.03885 68.408499) (xy 79.038855 68.408499) (xy 79.038862 68.4085) (xy 79.038868 68.4085) (xy 80.836132 68.4085) (xy 80.836138 68.4085) (xy 80.836145 68.408499) (xy 80.836149 68.408499) (xy 80.896696 68.40199) (xy 80.896699 68.401989) (xy 80.896701 68.401989) (xy 81.033704 68.350889) (xy 81.063204 68.328806) (xy 81.150761 68.263261) (xy 81.238386 68.146208) (xy 81.238385 68.146208) (xy 81.238389 68.146204) (xy 81.282499 68.027939) (xy 81.325045 67.971107) (xy 81.391566 67.946296) (xy 81.46094 67.961388) (xy 81.493253 67.986635) (xy 81.531279 68.027942) (xy 81.554262 68.052908) (xy 81.571725 68.0665) (xy 81.731924 68.191189) (xy 81.929926 68.298342) (xy 81.929927 68.298342) (xy 81.929928 68.298343) (xy 82.041727 68.336723) (xy 82.142865 68.371444) (xy 82.364931 68.4085) (xy 82.364935 68.4085) (xy 82.590069 68.4085) (xy 82.673951 68.394502) (xy 82.744433 68.403018) (xy 82.783784 68.429688) (xy 83.457929 69.103833) (xy 83.546167 69.192071) (xy 83.649925 69.2614) (xy 83.765215 69.309155) (xy 83.887606 69.3335) (xy 83.887607 69.3335) (xy 90.212393 69.3335) (xy 90.212394 69.3335) (xy 90.334785 69.309155) (xy 90.450075 69.2614) (xy 90.553833 69.192071) (xy 91.300499 68.445405) (xy 91.362811 68.411379) (xy 91.389594 68.4085) (xy 91.452565 68.4085) (xy 91.452569 68.4085) (xy 91.674635 68.371444) (xy 91.887574 68.298342) (xy 92.085576 68.191189) (xy 92.26324 68.052906) (xy 92.415722 67.887268) (xy 92.504518 67.751354) (xy 92.55852 67.705268) (xy 92.628868 67.695692) (xy 92.693225 67.725669) (xy 92.71548 67.751353) (xy 92.744386 67.795596) (xy 92.804275 67.887265) (xy 92.804279 67.88727) (xy 92.956762 68.052908) (xy 92.974225 68.0665) (xy 93.134424 68.191189) (xy 93.332426 68.298342) (xy 93.332427 68.298342) (xy 93.332428 68.298343) (xy 93.444227 68.336723) (xy 93.545365 68.371444) (xy 93.767431 68.4085) (xy 93.767435 68.4085) (xy 93.992565 68.4085) (xy 93.992569 68.4085) (xy 94.214635 68.371444) (xy 94.427574 68.298342) (xy 94.625576 68.191189) (xy 94.80324 68.052906) (xy 94.955722 67.887268) (xy 95.07886 67.698791) (xy 95.169296 67.492616) (xy 95.224564 67.274368) (xy 95.243156 67.05) (xy 95.224564 66.825632) (xy 95.224194 66.824169) (xy 95.169297 66.607387) (xy 95.169296 66.607386) (xy 95.169296 66.607384) (xy 95.07886 66.401209) (xy 95.0615 66.374637) (xy 94.955724 66.212734) (xy 94.95572 66.212729) (xy 94.803237 66.047091) (xy 94.709327 65.973998) (xy 94.625576 65.908811) (xy 94.427574 65.801658) (xy 94.427572 65.801657) (xy 94.427571 65.801656) (xy 94.214639 65.728557) (xy 94.21463 65.728555) (xy 94.137095 65.715617) (xy 93.992569 65.6915) (xy 93.767431 65.6915) (xy 93.622905 65.715617) (xy 93.545369 65.728555) (xy 93.54536 65.728557) (xy 93.332428 65.801656) (xy 93.332426 65.801658) (xy 93.146042 65.902524) (xy 93.134426 65.90881) (xy 93.134424 65.908811) (xy 92.956762 66.047091) (xy 92.804279 66.212729) (xy 92.715483 66.348643) (xy 92.661479 66.394731) (xy 92.591131 66.404306) (xy 92.526774 66.374329) (xy 92.504517 66.348643) (xy 92.41572 66.212729) (xy 92.263237 66.047091) (xy 92.169327 65.973998) (xy 92.085576 65.908811) (xy 91.887574 65.801658) (xy 91.887572 65.801657) (xy 91.887571 65.801656) (xy 91.674639 65.728557) (xy 91.67463 65.728555) (xy 91.597095 65.715617) (xy 91.452569 65.6915) (xy 91.227431 65.6915) (xy 91.082905 65.715617) (xy 91.005369 65.728555) (xy 91.00536 65.728557) (xy 90.792428 65.801656) (xy 90.792426 65.801658) (xy 90.606042 65.902524) (xy 90.594426 65.90881) (xy 90.594424 65.908811) (xy 90.416762 66.047091) (xy 90.355754 66.113363) (xy 90.294901 66.149933) (xy 90.223936 66.147798) (xy 90.165391 66.107636) (xy 90.144999 66.072057) (xy 90.100889 65.953797) (xy 90.100887 65.953792) (xy 90.013261 65.836738) (xy 89.896207 65.749112) (xy 89.896202 65.74911) (xy 89.759204 65.698011) (xy 89.759196 65.698009) (xy 89.698649 65.6915) (xy 89.698638 65.6915) (xy 87.901362 65.6915) (xy 87.90135 65.6915) (xy 87.840803 65.698009) (xy 87.840795 65.698011) (xy 87.703797 65.74911) (xy 87.703792 65.749112) (xy 87.586738 65.836738) (xy 87.499112 65.953792) (xy 87.49911 65.953797) (xy 87.448011 66.090795) (xy 87.448009 66.090803) (xy 87.4415 66.15135) (xy 87.4415 67.9405) (xy 87.421498 68.008621) (xy 87.367842 68.055114) (xy 87.3155 68.0665) (xy 86.208952 68.0665) (xy 86.140831 68.046498) (xy 86.094338 67.992842) (xy 86.084234 67.922568) (xy 86.103469 67.871585) (xy 86.171247 67.767842) (xy 86.21636 67.698791) (xy 86.306796 67.492616) (xy 86.362064 67.274368) (xy 86.380656 67.05) (xy 86.362064 66.825632) (xy 86.361694 66.824169) (xy 86.306797 66.607387) (xy 86.306796 66.607386) (xy 86.306796 66.607384) (xy 86.21636 66.401209) (xy 86.199 66.374637) (xy 86.093224 66.212734) (xy 86.09322 66.212729) (xy 85.940737 66.047091) (xy 85.846827 65.973998) (xy 85.763076 65.908811) (xy 85.565074 65.801658) (xy 85.565072 65.801657) (xy 85.565071 65.801656) (xy 85.352139 65.728557) (xy 85.35213 65.728555) (xy 85.274595 65.715617) (xy 85.130069 65.6915) (xy 84.904931 65.6915) (xy 84.760405 65.715617) (xy 84.682869 65.728555) (xy 84.68286 65.728557) (xy 84.469928 65.801656) (xy 84.469926 65.801658) (xy 84.283542 65.902524) (xy 84.271926 65.90881) (xy 84.271924 65.908811) (xy 84.094262 66.047091) (xy 83.941779 66.212729) (xy 83.852983 66.348643) (xy 83.798979 66.394731) (xy 83.728631 66.404306) (xy 83.664274 66.374329) (xy 83.642017 66.348643) (xy 83.55322 66.212729) (xy 83.400737 66.047091) (xy 83.306827 65.973998) (xy 83.223076 65.908811) (xy 83.025074 65.801658) (xy 83.025072 65.801657) (xy 83.025071 65.801656) (xy 82.812139 65.728557) (xy 82.81213 65.728555) (xy 82.734595 65.715617) (xy 82.590069 65.6915) (xy 82.364931 65.6915) (xy 82.220405 65.715617) (xy 82.142869 65.728555) (xy 82.14286 65.728557) (xy 81.929928 65.801656) (xy 81.929926 65.801658) (xy 81.743542 65.902524) (xy 81.731926 65.90881) (xy 81.731924 65.908811) (xy 81.554262 66.047091) (xy 81.493254 66.113363) (xy 81.432401 66.149933) (xy 81.361436 66.147798) (xy 81.302891 66.107636) (xy 81.282499 66.072057) (xy 81.238389 65.953797) (xy 81.238387 65.953792) (xy 81.150761 65.836738) (xy 81.033707 65.749112) (xy 81.033702 65.74911) (xy 80.896704 65.698011) (xy 80.896696 65.698009) (xy 80.836149 65.6915) (xy 80.836138 65.6915) (xy 79.038862 65.6915) (xy 79.03885 65.6915) (xy 78.978303 65.698009) (xy 78.978295 65.698011) (xy 78.841297 65.74911) (xy 78.841292 65.749112) (xy 78.724238 65.836738) (xy 78.636612 65.953792) (xy 78.63661 65.953797) (xy 78.585511 66.090795) (xy 78.585509 66.090803) (xy 78.579 66.15135) (xy 73.327585 66.15135) (xy 73.325405 66.14917) (xy 73.291379 66.086858) (xy 73.2885 66.060075) (xy 73.2885 64.409454) (xy 73.308502 64.341333) (xy 73.321801 64.324115) (xy 73.355721 64.287269) (xy 73.361211 64.278866) (xy 73.47886 64.098791) (xy 73.569296 63.892616) (xy 73.624564 63.674368) (xy 73.643156 63.45) (xy 73.624564 63.225632) (xy 73.569296 63.007384) (xy 73.47886 62.801209) (xy 73.4615 62.774637) (xy 73.355724 62.612734) (xy 73.35572 62.612729) (xy 73.203237 62.447091) (xy 73.083367 62.353792) (xy 73.025576 62.308811) (xy 72.827574 62.201658) (xy 72.82757 62.201656) (xy 72.82299 62.199178) (xy 72.823202 62.198784) (xy 72.812655 62.192996) (xy 72.782124 62.172596) (xy 72.757704 62.156279) (xy 72.574169 62.080256) (xy 72.568056 62.07904) (xy 72.379331 62.0415) (xy 72.379329 62.0415) (xy 72.180671 62.0415) (xy 72.180668 62.0415) (xy 71.98583 62.080256) (xy 71.985825 62.080258) (xy 71.802298 62.156278) (xy 71.802296 62.156279) (xy 71.799255 62.158311) (xy 71.747339 62.192999) (xy 71.736802 62.198798) (xy 71.737008 62.199179) (xy 71.732429 62.201656) (xy 71.732426 62.201658) (xy 71.624612 62.260004) (xy 71.534425 62.30881) (xy 71.534424 62.308811) (xy 71.356762 62.447091) (xy 71.204279 62.612729) (xy 71.115483 62.748643) (xy 71.061479 62.794731) (xy 70.991131 62.804306) (xy 70.926774 62.774329) (xy 70.904517 62.748643) (xy 70.81572 62.612729) (xy 70.663237 62.447091) (xy 70.543367 62.353792) (xy 70.485576 62.308811) (xy 70.287574 62.201658) (xy 70.287572 62.201657) (xy 70.287571 62.201656) (xy 70.074639 62.128557) (xy 70.07463 62.128555) (xy 70.030476 62.121187) (xy 69.852569 62.0915) (xy 69.627431 62.0915) (xy 69.479211 62.116233) (xy 69.405369 62.128555) (xy 69.40536 62.128557) (xy 69.192428 62.201656) (xy 69.192426 62.201658) (xy 69.092205 62.255895) (xy 68.994426 62.30881) (xy 68.994424 62.308811) (xy 68.816762 62.447091) (xy 68.755754 62.513363) (xy 68.694901 62.549933) (xy 68.623936 62.547798) (xy 68.565391 62.507636) (xy 68.544999 62.472057) (xy 68.512976 62.386203) (xy 68.500889 62.353796) (xy 68.500888 62.353794) (xy 68.500887 62.353792) (xy 68.413261 62.236738) (xy 68.296207 62.149112) (xy 68.296202 62.14911) (xy 68.159204 62.098011) (xy 68.159196 62.098009) (xy 68.098649 62.0915) (xy 68.098638 62.0915) (xy 66.301362 62.0915) (xy 66.30135 62.0915) (xy 66.240803 62.098009) (xy 66.240795 62.098011) (xy 66.103797 62.14911) (xy 66.103792 62.149112) (xy 65.986738 62.236738) (xy 65.899112 62.353792) (xy 65.89911 62.353797) (xy 65.848011 62.490795) (xy 65.848009 62.490803) (xy 65.8415 62.55135) (xy 65.8415 64.348649) (xy 65.848009 64.409196) (xy 65.848011 64.409201) (xy 65.899111 64.546204) (xy 65.916367 64.569255) (xy 65.941179 64.635774) (xy 65.9415 64.644765) (xy 65.9415 66.299046) (xy 65.972488 66.4947) (xy 66.033702 66.683097) (xy 66.033703 66.683098) (xy 66.114736 66.842135) (xy 66.114735 66.842135) (xy 66.123631 66.859595) (xy 66.123632 66.859596) (xy 66.240071 67.01986) (xy 66.240074 67.019863) (xy 78.78007 79.559858) (xy 78.920142 79.69993) (xy 79.080402 79.816366) (xy 79.256903 79.906298) (xy 79.4453 79.967512) (xy 79.640954 79.9985) (xy 82.266522 79.9985) (xy 82.334643 80.018502) (xy 82.355617 80.035405) (xy 88.049785 85.729573) (xy 88.083811 85.791885) (xy 88.078746 85.8627) (xy 88.036199 85.919536) (xy 88.01194 85.933774) (xy 87.84325 86.00888) (xy 87.843248 86.008882) (xy 87.688744 86.121135) (xy 87.560965 86.263048) (xy 87.560958 86.263058) (xy 87.465476 86.428438) (xy 87.465469 86.428453) (xy 87.461205 86.441576) (xy 87.421129 86.50018) (xy 87.355731 86.527814) (xy 87.285775 86.515705) (xy 87.252279 86.49173) (xy 86.750409 85.98986) (xy 86.716383 85.927548) (xy 86.713504 85.900765) (xy 86.713504 85.900001) (xy 86.707385 85.841786) (xy 86.693542 85.710072) (xy 86.634527 85.528444) (xy 86.53904 85.363056) (xy 86.539038 85.363054) (xy 86.539034 85.363048) (xy 86.411255 85.221135) (xy 86.256752 85.108882) (xy 86.082288 85.031206) (xy 85.895487 84.9915) (xy 85.704513 84.9915) (xy 85.517711 85.031206) (xy 85.343247 85.108882) (xy 85.188744 85.221135) (xy 85.060965 85.363048) (xy 85.060958 85.363058) (xy 84.965476 85.528438) (xy 84.965473 85.528445) (xy 84.906457 85.710072) (xy 84.886496 85.9) (xy 84.906457 86.089927) (xy 84.936526 86.18247) (xy 84.965473 86.271556) (xy 84.965476 86.271561) (xy 85.060958 86.436941) (xy 85.060965 86.436951) (xy 85.188744 86.578864) (xy 85.188747 86.578866) (xy 85.343248 86.691118) (xy 85.517712 86.768794) (xy 85.704513 86.8085) (xy 85.795761 86.8085) (xy 85.863882 86.828502) (xy 85.884856 86.845405) (xy 88.515856 89.476405) (xy 88.549882 89.538717) (xy 88.544817 89.609532) (xy 88.50227 89.666368) (xy 88.43575 89.691179) (xy 88.426761 89.6915) (xy 86.319889 89.6915) (xy 86.239441 89.713056) (xy 86.23944 89.713055) (xy 86.165126 89.732968) (xy 86.026376 89.813075) (xy 86.026366 89.813083) (xy 84.603083 91.236366) (xy 84.603075 91.236376) (xy 84.52297 91.375122) (xy 84.522965 91.375134) (xy 84.509236 91.42637) (xy 84.509237 91.426371) (xy 84.4815 91.529888) (xy 84.4815 92.019549) (xy 84.461498 92.08767) (xy 84.41547 92.130362) (xy 84.34443 92.168807) (xy 84.344424 92.168811) (xy 84.166759 92.307094) (xy 84.105374 92.373775) (xy 84.044521 92.410346) (xy 83.973557 92.408211) (xy 83.915012 92.368049) (xy 83.894618 92.33247) (xy 83.850443 92.214033) (xy 83.762904 92.097095) (xy 83.645965 92.009555) (xy 83.509093 91.958505) (xy 83.448597 91.952) (xy 82.804 91.952) (xy 82.804 92.867749) (xy 82.746853 92.834755) (xy 82.617143 92.8) (xy 82.482857 92.8) (xy 82.353147 92.834755) (xy 82.296 92.867749) (xy 82.296 91.952) (xy 81.651402 91.952) (xy 81.590906 91.958505) (xy 81.454035 92.009555) (xy 81.454034 92.009555) (xy 81.337095 92.097095) (xy 81.249555 92.214034) (xy 81.249553 92.214039) (xy 81.20538 92.33247) (xy 81.162833 92.389306) (xy 81.096313 92.414116) (xy 81.026939 92.399024) (xy 80.994626 92.373777) (xy 80.93324 92.307094) (xy 80.933239 92.307093) (xy 80.933237 92.307091) (xy 80.813684 92.214039) (xy 80.755576 92.168811) (xy 80.557574 92.061658) (xy 80.557572 92.061657) (xy 80.557571 92.061656) (xy 80.344639 91.988557) (xy 80.34463 91.988555) (xy 80.285469 91.978683) (xy 80.122569 91.9515) (xy 79.897431 91.9515) (xy 79.749211 91.976233) (xy 79.675369 91.988555) (xy 79.67536 91.988557) (xy 79.462428 92.061656) (xy 79.462426 92.061658) (xy 79.264432 92.168807) (xy 79.264426 92.16881) (xy 79.264424 92.168811) (xy 79.086762 92.307091) (xy 78.934279 92.472729) (xy 78.845483 92.608643) (xy 78.791479 92.654731) (xy 78.721131 92.664306) (xy 78.656774 92.634329) (xy 78.634517 92.608643) (xy 78.54572 92.472729) (xy 78.4166 92.33247) (xy 78.39324 92.307094) (xy 78.393239 92.307093) (xy 78.393237 92.307091) (xy 78.273684 92.214039) (xy 78.215576 92.168811) (xy 78.017574 92.061658) (xy 78.017572 92.061657) (xy 78.017571 92.061656) (xy 77.804639 91.988557) (xy 77.80463 91.988555) (xy 77.745469 91.978683) (xy 77.582569 91.9515) (xy 77.357431 91.9515) (xy 77.209211 91.976233) (xy 77.135369 91.988555) (xy 77.135356 91.988558) (xy 76.975411 92.043467) (xy 76.904487 92.046667) (xy 76.843091 92.011015) (xy 76.810717 91.947829) (xy 76.8085 91.924294) (xy 76.8085 90.904239) (xy 76.828502 90.836118) (xy 76.845405 90.815144) (xy 79.715144 87.945405) (xy 79.777456 87.911379) (xy 79.804239 87.9085) (xy 79.845487 87.9085) (xy 80.032288 87.868794) (xy 80.206752 87.791118) (xy 80.361253 87.678866) (xy 80.378602 87.659598) (xy 80.489034 87.536951) (xy 80.489035 87.536949) (xy 80.48904 87.536944) (xy 80.584527 87.371556) (xy 80.643542 87.189928) (xy 80.663504 87) (xy 80.643542 86.810072) (xy 80.584527 86.628444) (xy 80.48904 86.463056) (xy 80.489038 86.463054) (xy 80.489034 86.463048) (xy 80.361255 86.321135) (xy 80.206752 86.208882) (xy 80.032288 86.131206) (xy 79.845487 86.0915) (xy 79.654513 86.0915) (xy 79.467711 86.131206) (xy 79.293247 86.208882) (xy 79.138744 86.321135) (xy 79.010965 86.463048) (xy 79.010958 86.463058) (xy 78.915476 86.628438) (xy 78.915473 86.628444) (xy 78.910906 86.6425) (xy 78.856457 86.810072) (xy 78.836496 87) (xy 78.836496 87.000002) (xy 78.840005 87.033397) (xy 78.827231 87.103235) (xy 78.80379 87.135659) (xy 75.713083 90.226366) (xy 75.713075 90.226376) (xy 75.632967 90.365128) (xy 75.627676 90.384872) (xy 75.627677 90.384873) (xy 75.597673 90.496853) (xy 75.5915 90.51989) (xy 75.5915 91.924294) (xy 75.571498 91.992415) (xy 75.517842 92.038908) (xy 75.447568 92.049012) (xy 75.424589 92.043467) (xy 75.264643 91.988558) (xy 75.264636 91.988556) (xy 75.264635 91.988556) (xy 75.264632 91.988555) (xy 75.26463 91.988555) (xy 75.205469 91.978683) (xy 75.042569 91.9515) (xy 74.817431 91.9515) (xy 74.669211 91.976233) (xy 74.595369 91.988555) (xy 74.59536 91.988557) (xy 74.382428 92.061656) (xy 74.382426 92.061658) (xy 74.184432 92.168807) (xy 74.184426 92.16881) (xy 74.184424 92.168811) (xy 74.006762 92.307091) (xy 73.854279 92.472729) (xy 73.765483 92.608643) (xy 73.711479 92.654731) (xy 73.641131 92.664306) (xy 73.576774 92.634329) (xy 73.554517 92.608643) (xy 73.46572 92.472729) (xy 73.3366 92.33247) (xy 73.31324 92.307094) (xy 73.313239 92.307093) (xy 73.313237 92.307091) (xy 73.193684 92.214039) (xy 73.135576 92.168811) (xy 72.937574 92.061658) (xy 72.937572 92.061657) (xy 72.937571 92.061656) (xy 72.724639 91.988557) (xy 72.72463 91.988555) (xy 72.665469 91.978683) (xy 72.502569 91.9515) (xy 72.277431 91.9515) (xy 72.129211 91.976233) (xy 72.055369 91.988555) (xy 72.05536 91.988557) (xy 71.842428 92.061656) (xy 71.842426 92.061658) (xy 71.644432 92.168807) (xy 71.644426 92.16881) (xy 71.644424 92.168811) (xy 71.466759 92.307094) (xy 71.405374 92.373775) (xy 71.344521 92.410346) (xy 71.273557 92.408211) (xy 71.215012 92.368049) (xy 71.194618 92.33247) (xy 71.150443 92.214033) (xy 71.062904 92.097095) (xy 70.945965 92.009555) (xy 70.809093 91.958505) (xy 70.748597 91.952) (xy 70.104 91.952) (xy 70.104 92.867749) (xy 70.046853 92.834755) (xy 69.917143 92.8) (xy 69.782857 92.8) (xy 69.653147 92.834755) (xy 69.596 92.867749) (xy 69.596 91.952) (xy 68.951402 91.952) (xy 68.890906 91.958505) (xy 68.754035 92.009555) (xy 68.754034 92.009555) (xy 68.637095 92.097095) (xy 68.549555 92.214034) (xy 68.549553 92.214039) (xy 68.50538 92.33247) (xy 68.462833 92.389306) (xy 68.396313 92.414116) (xy 68.326939 92.399024) (xy 68.294626 92.373777) (xy 68.23324 92.307094) (xy 68.233239 92.307093) (xy 68.233237 92.307091) (xy 68.113684 92.214039) (xy 68.055576 92.168811) (xy 67.857574 92.061658) (xy 67.857572 92.061657) (xy 67.857571 92.061656) (xy 67.644639 91.988557) (xy 67.64463 91.988555) (xy 67.585469 91.978683) (xy 67.422569 91.9515) (xy 67.197431 91.9515) (xy 67.049211 91.976233) (xy 66.975369 91.988555) (xy 66.97536 91.988557) (xy 66.775412 92.057199) (xy 66.704487 92.060399) (xy 66.643092 92.024747) (xy 66.610718 91.961561) (xy 66.6085 91.938026) (xy 66.6085 85.83029) (xy 66.628502 85.762169) (xy 66.64086 85.745983) (xy 66.73904 85.636944) (xy 66.834527 85.471556) (xy 66.893542 85.289928) (xy 66.913504 85.1) (xy 66.893542 84.910072) (xy 66.834527 84.728444) (xy 66.73904 84.563056) (xy 66.739038 84.563054) (xy 66.739034 84.563048) (xy 66.611255 84.421135) (xy 66.456752 84.308882) (xy 66.282288 84.231206) (xy 66.095487 84.1915) (xy 65.904513 84.1915) (xy 65.717711 84.231206) (xy 65.543247 84.308882) (xy 65.388744 84.421135) (xy 65.260965 84.563048) (xy 65.260958 84.563058) (xy 65.165476 84.728438) (xy 65.165473 84.728444) (xy 65.154053 84.763591) (xy 65.106457 84.910072) (xy 65.086496 85.1) (xy 65.106457 85.289927) (xy 65.133713 85.373811) (xy 65.165473 85.471556) (xy 65.165476 85.471561) (xy 65.252078 85.621561) (xy 65.26096 85.636944) (xy 65.359136 85.74598) (xy 65.389853 85.809987) (xy 65.3915 85.83029) (xy 65.3915 91.910562) (xy 65.371498 91.978683) (xy 65.317842 92.025176) (xy 65.247568 92.03528) (xy 65.224589 92.029735) (xy 65.104643 91.988558) (xy 65.104636 91.988556) (xy 65.104635 91.988556) (xy 65.104632 91.988555) (xy 65.10463 91.988555) (xy 65.045469 91.978683) (xy 64.882569 91.9515) (xy 64.657431 91.9515) (xy 64.509211 91.976233) (xy 64.435369 91.988555) (xy 64.43536 91.988557) (xy 64.222428 92.061656) (xy 64.222426 92.061658) (xy 64.024432 92.168807) (xy 64.024426 92.16881) (xy 64.024424 92.168811) (xy 63.846762 92.307091) (xy 63.694279 92.472729) (xy 63.605483 92.608643) (xy 63.551479 92.654731) (xy 63.481131 92.664306) (xy 63.416774 92.634329) (xy 63.394517 92.608643) (xy 63.30572 92.472729) (xy 63.1766 92.33247) (xy 63.15324 92.307094) (xy 63.153239 92.307093) (xy 63.153237 92.307091) (xy 63.033684 92.214039) (xy 62.975576 92.168811) (xy 62.777574 92.061658) (xy 62.777572 92.061657) (xy 62.777571 92.061656) (xy 62.564639 91.988557) (xy 62.56463 91.988555) (xy 62.505469 91.978683) (xy 62.342569 91.9515) (xy 62.117431 91.9515) (xy 61.969211 91.976233) (xy 61.895369 91.988555) (xy 61.89536 91.988557) (xy 61.682428 92.061656) (xy 61.682426 92.061658) (xy 61.484432 92.168807) (xy 61.484426 92.16881) (xy 61.484424 92.168811) (xy 61.306762 92.307091) (xy 61.154279 92.472729) (xy 61.065483 92.608643) (xy 61.011479 92.654731) (xy 60.941131 92.664306) (xy 60.876774 92.634329) (xy 60.854517 92.608643) (xy 60.76572 92.472729) (xy 60.688922 92.389306) (xy 60.61324 92.307094) (xy 60.613234 92.307089) (xy 60.613233 92.307088) (xy 60.467286 92.193491) (xy 60.425815 92.135866) (xy 60.422082 92.064968) (xy 60.455579 92.004968) (xy 61.611921 90.848628) (xy 61.647534 90.786944) (xy 61.692032 90.709872) (xy 61.7335 90.555111) (xy 61.7335 64.979239) (xy 61.753502 64.911118) (xy 61.770405 64.890144) (xy 69.275625 57.384924) (xy 69.337937 57.350898) (xy 69.36472 57.348019) (xy 79.98528 57.348019) (xy 80.053401 57.368021) (xy 80.074375 57.384924) (xy 80.604595 57.915144) (xy 80.638621 57.977456) (xy 80.6415 58.004239) (xy 80.6415 59.758152) (xy 80.621498 59.826273) (xy 80.572705 59.870418) (xy 80.537988 59.888107) (xy 80.364993 60.013796) (xy 80.36499 60.013798) (xy 80.213798 60.16499) (xy 80.213796 60.164993) (xy 80.088108 60.337987) (xy 79.991029 60.528515) (xy 79.991026 60.528521) (xy 79.924952 60.731878) (xy 79.924951 60.731883) (xy 79.924951 60.731884) (xy 79.8915 60.943084) (xy 79.8915 61.456916) (xy 79.916967 61.617705) (xy 79.924952 61.668121) (xy 79.980422 61.838842) (xy 79.991028 61.871483) (xy 80.084842 62.055603) (xy 80.088108 62.062012) (xy 80.10949 62.091442) (xy 80.213794 62.235004) (xy 80.213796 62.235006) (xy 80.213798 62.235009) (xy 80.36499 62.386201) (xy 80.364993 62.386203) (xy 80.364996 62.386206) (xy 80.537991 62.511894) (xy 80.728517 62.608972) (xy 80.931878 62.675047) (xy 80.931879 62.675047) (xy 80.931884 62.675049) (xy 81.143084 62.7085) (xy 81.143087 62.7085) (xy 81.356913 62.7085) (xy 81.356916 62.7085) (xy 81.568116 62.675049) (xy 81.771483 62.608972) (xy 81.962009 62.511894) (xy 82.135004 62.386206) (xy 82.265316 62.255893) (xy 82.327626 62.22187) (xy 82.398442 62.226934) (xy 82.455278 62.269481) (xy 82.461646 62.278836) (xy 82.542594 62.410072) (xy 82.55097 62.423652) (xy 82.550975 62.423658) (xy 82.676341 62.549024) (xy 82.676347 62.549029) (xy 82.676348 62.54903) (xy 82.827262 62.642115) (xy 82.995574 62.697887) (xy 83.099455 62.7085) (xy 84.245759 62.708499) (xy 84.31388 62.728501) (xy 84.334854 62.745404) (xy 84.976366 63.386916) (xy 84.97637 63.386919) (xy 84.976373 63.386922) (xy 84.976374 63.386923) (xy 84.976376 63.386924) (xy 85.016326 63.409989) (xy 85.049599 63.429199) (xy 85.115128 63.467032) (xy 85.269889 63.5085) (xy 85.26989 63.5085) (xy 85.269891 63.5085) (xy 90.83011 63.5085) (xy 90.830111 63.5085) (xy 90.907491 63.487766) (xy 90.984873 63.467032) (xy 91.123627 63.386922) (xy 91.740144 62.770403) (xy 91.802457 62.736379) (xy 91.82924 62.733499) (xy 93.000544 62.733499) (xy 93.104426 62.722887) (xy 93.272738 62.667115) (xy 93.423652 62.57403) (xy 93.54903 62.448652) (xy 93.642115 62.297738) (xy 93.697887 62.129426) (xy 93.7085 62.025545) (xy 93.708499 60.424456) (xy 93.697887 60.320574) (xy 93.642115 60.152262) (xy 93.54903 60.001348) (xy 93.549029 60.001347) (xy 93.549024 60.001341) (xy 93.423658 59.875975) (xy 93.423652 59.87597) (xy 93.383129 59.850975) (xy 93.272738 59.782885) (xy 93.188582 59.754999) (xy 93.104427 59.727113) (xy 93.10442 59.727112) (xy 93.000553 59.7165) (xy 91.699455 59.7165) (xy 91.595574 59.727112) (xy 91.427261 59.782885) (xy 91.276347 59.87597) (xy 91.276341 59.875975) (xy 91.150975 60.001341) (xy 91.15097 60.001347) (xy 91.061651 60.146156) (xy 91.008865 60.193634) (xy 90.93879 60.205037) (xy 90.873674 60.176744) (xy 90.865315 60.169104) (xy 90.735009 60.038798) (xy 90.735006 60.038796) (xy 90.735004 60.038794) (xy 90.640392 59.970054) (xy 90.562011 59.913107) (xy 90.527295 59.895418) (xy 90.475681 59.846669) (xy 90.4585 59.783152) (xy 90.4585 57.16989) (xy 90.456813 57.163595) (xy 90.417032 57.015128) (xy 90.417032 57.015127) (xy 90.336921 56.876372) (xy 90.336919 56.87637) (xy 90.336915 56.876365) (xy 90.224144 56.763594) (xy 90.190118 56.701282) (xy 90.195183 56.630467) (xy 90.23773 56.573631) (xy 90.30425 56.54882) (xy 90.313239 56.548499) (xy 106.703628 56.548499) ) ) (filled_polygon (layer "B.Cu") (pts (xy 88.703882 56.968502) (xy 88.724856 56.985405) (xy 89.204595 57.465144) (xy 89.238621 57.527456) (xy 89.2415 57.554239) (xy 89.2415 59.783152) (xy 89.221498 59.851273) (xy 89.172705 59.895418) (xy 89.137988 59.913107) (xy 88.964993 60.038796) (xy 88.96499 60.038798) (xy 88.813798 60.18999) (xy 88.813796 60.189993) (xy 88.688108 60.362987) (xy 88.591029 60.553515) (xy 88.591026 60.553521) (xy 88.524952 60.756878) (xy 88.524951 60.756883) (xy 88.524951 60.756884) (xy 88.4915 60.968084) (xy 88.4915 61.481916) (xy 88.520992 61.668121) (xy 88.524952 61.693121) (xy 88.5723 61.838844) (xy 88.591028 61.896483) (xy 88.656793 62.025553) (xy 88.688106 62.087009) (xy 88.688106 62.08701) (xy 88.691326 62.091442) (xy 88.715183 62.158311) (xy 88.6991 62.227462) (xy 88.648185 62.27694) (xy 88.589388 62.2915) (xy 85.654239 62.2915) (xy 85.586118 62.271498) (xy 85.565144 62.254595) (xy 85.145404 61.834855) (xy 85.111378 61.772543) (xy 85.108499 61.74576) (xy 85.108499 60.399455) (xy 85.097887 60.295574) (xy 85.091811 60.277239) (xy 85.042115 60.127262) (xy 84.94903 59.976348) (xy 84.949029 59.976347) (xy 84.949024 59.976341) (xy 84.823658 59.850975) (xy 84.823652 59.85097) (xy 84.783612 59.826273) (xy 84.672738 59.757885) (xy 84.588582 59.729999) (xy 84.504427 59.702113) (xy 84.50442 59.702112) (xy 84.400553 59.6915) (xy 83.099455 59.6915) (xy 82.995574 59.702112) (xy 82.827261 59.757885) (xy 82.676347 59.85097) (xy 82.676341 59.850975) (xy 82.550975 59.976341) (xy 82.55097 59.976347) (xy 82.461651 60.121156) (xy 82.408865 60.168634) (xy 82.33879 60.180037) (xy 82.273674 60.151744) (xy 82.265315 60.144104) (xy 82.135009 60.013798) (xy 82.135006 60.013796) (xy 82.135004 60.013794) (xy 81.996419 59.913106) (xy 81.962011 59.888107) (xy 81.927295 59.870418) (xy 81.875681 59.821669) (xy 81.8585 59.758152) (xy 81.8585 57.61989) (xy 81.8585 57.619889) (xy 81.837766 57.542508) (xy 81.817032 57.465127) (xy 81.736921 57.326372) (xy 81.736919 57.32637) (xy 81.736915 57.326365) (xy 81.574145 57.163595) (xy 81.540119 57.101283) (xy 81.545184 57.030468) (xy 81.587731 56.973632) (xy 81.654251 56.948821) (xy 81.66324 56.9485) (xy 88.635761 56.9485) ) ) ) (group "" (uuid "9cf7f565-4faf-4489-affa-f8f47c89692a") (members "2b55741a-854a-49e9-885e-7cbc331cdd75" "44e40bf7-2850-4b9c-b522-d3e479f615eb" "bcc0281b-b4f5-4240-95c6-62cc18a71cfe" ) ) (group "" (uuid "73db8e93-5dfb-4f6f-a2aa-83e0a79e3a6c") (members "3248d4d3-a1ca-4c6d-a74e-fb0c0b38c34a" "4f929ae2-48f5-4477-ae85-53b87595350b" "9fbb428e-c6e3-4d51-85ae-5a0588fd1a8e" "cbfcf842-ae79-48e8-8439-be79bc4d3d3b" "cf7a1173-45eb-49f7-92cb-0fcb446fcd83" ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/fanpico.kicad_pro ================================================ { "board": { "3dviewports": [], "design_settings": { "defaults": { "apply_defaults_to_fp_fields": false, "apply_defaults_to_fp_shapes": false, "apply_defaults_to_fp_text": false, "board_outline_line_width": 0.1, "copper_line_width": 0.2, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.1, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.15, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 1.2, "height": 1.2, "width": 1.2 }, "silk_line_width": 0.15, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.15, "silk_text_upright": false, "zones": { "45_degree_only": false, "min_clearance": 0.508 } }, "diff_pair_dimensions": [ { "gap": 0.0, "via_gap": 0.0, "width": 0.0 } ], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "error", "hole_clearance": "error", "hole_near_hole": "error", "holes_co_located": "warning", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "error", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "allow_blind_buried_vias": false, "allow_microvias": false, "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.5, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.2, "min_microvia_drill": 0.1, "min_resolved_spokes": 1, "min_silk_clearance": 0.0, "min_text_height": 0.7, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.2, "min_via_annular_width": 0.05, "min_via_diameter": 0.4, "solder_mask_clearance": 0.0, "solder_mask_min_width": 0.0, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, "td_onviapad": true } ], "teardrop_parameters": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [ 0.0, 0.2, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0 ], "tuning_pattern_settings": { "diff_pair_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 1.0 }, "diff_pair_skew_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 }, "single_track_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 } }, "via_dimensions": [ { "diameter": 0.0, "drill": 0.0 } ], "zones_allow_external_fillets": false, "zones_use_no_outline": true }, "ipc2581": { "dist": "", "distpn": "", "internal_id": "", "mfg": "", "mpn": "" }, "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "conflicting_netclasses": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "similar_labels": "warning", "simulation_model_issue": "ignore", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 6 }, { "bus_width": 78, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_2000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 39 }, { "bus_width": 19, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_350ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 9 }, { "bus_width": 157, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_4000ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 78 }, { "bus_width": 39, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "power_750ma", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 19 } ], "meta": { "version": 3 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [ { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan1/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan2/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan3/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan4/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan5/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan6/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan7/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "/Fan Channels/Fan8/PWR_OUT" }, { "netclass": "power_2000ma", "pattern": "FAN1_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN2_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN3_PWR" }, { "netclass": "power_2000ma", "pattern": "FAN4_PWR" }, { "netclass": "power_350ma", "pattern": "3V3" }, { "netclass": "power_350ma", "pattern": "AUX5V" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12V_IN" }, { "netclass": "power_4000ma", "pattern": "AUX12V" }, { "netclass": "power_750ma", "pattern": "+5V" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_VREG_PWR" }, { "netclass": "power_750ma", "pattern": "VBUS" }, { "netclass": "power_750ma", "pattern": "VSYS" }, { "netclass": "power_4000ma", "pattern": "/Sensors & Connectors/AUX12_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_OUT" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_IN" }, { "netclass": "power_750ma", "pattern": "/Power Rails/5V_REG_SEL" } ] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "plot": "kerbers/", "pos_files": "placement", "specctra_dsn": "", "step": "", "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "bom_export_filename": "bom.csv", "bom_fmt_presets": [], "bom_fmt_settings": { "field_delimiter": ",", "keep_line_breaks": false, "keep_tabs": false, "name": "CSV", "ref_delimiter": ",", "ref_range_delimiter": "", "string_delimiter": "\"" }, "bom_presets": [], "bom_settings": { "exclude_dnp": false, "fields_ordered": [ { "group_by": false, "label": "Reference", "name": "Reference", "show": true }, { "group_by": true, "label": "Value", "name": "Value", "show": true }, { "group_by": false, "label": "Datasheet", "name": "Datasheet", "show": true }, { "group_by": false, "label": "Footprint", "name": "Footprint", "show": true }, { "group_by": false, "label": "Qty", "name": "${QUANTITY}", "show": true }, { "group_by": true, "label": "DNP", "name": "${DNP}", "show": true }, { "group_by": false, "label": "#", "name": "${ITEM_NUMBER}", "show": false }, { "group_by": false, "label": "LCSC Part Number", "name": "LCSC Part Number", "show": true }, { "group_by": false, "label": "Sim.Device", "name": "Sim.Device", "show": false }, { "group_by": false, "label": "Sim.Pins", "name": "Sim.Pins", "show": false }, { "group_by": false, "label": "Description", "name": "Description", "show": false }, { "group_by": false, "label": "Mouser Part Number", "name": "Mouser Part Number", "show": true } ], "filter_string": "", "group_symbols": true, "name": "", "sort_asc": true, "sort_field": "Reference" }, "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "operating_point_overlay_i_precision": 3, "operating_point_overlay_i_range": "~A", "operating_point_overlay_v_precision": 3, "operating_point_overlay_v_range": "~V", "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "ngspice": { "fix_include_paths": true, "fix_passive_vals": false, "meta": { "version": 0 }, "model_mode": 0, "workbook_filename": "" }, "page_layout_descr_file": "", "plot_directory": "", "spice_adjust_passive_values": false, "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", "Root" ], [ "4d4dd17e-947f-4b3c-bd12-d4039fccae25", "Fan Channels" ], [ "20cc4b05-e726-4b05-ab1c-64b5db072e26", "Power Rails" ], [ "cccf50bc-434f-4bd7-95d5-172f10b931f4", "Fan1" ], [ "946ef3ef-3a88-49e4-98d0-b90987606b91", "Fan2" ], [ "53d29c07-1f93-4af9-9f7c-0766d5b9c268", "Fan3" ], [ "8ed5c73d-1abe-4a73-919d-90efbbef00b1", "Fan4" ], [ "d911133f-dd4d-432b-a685-8d9b5b84e35e", "Fan5" ], [ "5ae37739-065e-4580-bde3-1038e45a286b", "Fan6" ], [ "61057e9f-bb51-4960-97cb-0865458dfe32", "Fan7" ], [ "c48058d0-f979-4ada-9996-5cab1ec255f6", "Fan8" ], [ "4e9d9bbb-bb4b-4f71-a57a-a915249deb73", "Sensors & Connectors" ] ], "text_variables": {} } ================================================ FILE: boards/fanpico-0804D/kicad/fanpico.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "74xx:74HC4051" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -5.08 11.43 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "74HC4051" (at -7.62 -13.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 -10.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/cd74hc4051.pdf" (at 0 -10.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "8-channel analog multiplexer/demultiplexer, DIP-16/SOIC-16/TSSOP-16" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "HCMOS Multiplexer Demultiplexer Analog" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x9.9mm*P1.27mm* SOIC*5.3x10.2mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "74HC4051_0_1" (rectangle (start -5.08 10.16) (end 7.62 -12.7) (stroke (width 0.254) (type default) ) (fill (type background) ) ) ) (symbol "74HC4051_1_1" (pin passive line (at 10.16 -2.54 180) (length 2.54) (name "A4" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 0 0) (length 2.54) (name "S1" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 2.54 0) (length 2.54) (name "S0" (effects (font (size 1.27 1.27) ) ) ) (number "11" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 0 180) (length 2.54) (name "A3" (effects (font (size 1.27 1.27) ) ) ) (number "12" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 7.62 180) (length 2.54) (name "A0" (effects (font (size 1.27 1.27) ) ) ) (number "13" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 5.08 180) (length 2.54) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "14" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 2.54 180) (length 2.54) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "15" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 12.7 270) (length 2.54) (name "VCC" (effects (font (size 1.27 1.27) ) ) ) (number "16" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 -7.62 180) (length 2.54) (name "A6" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -7.62 7.62 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 -10.16 180) (length 2.54) (name "A7" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 10.16 -5.08 180) (length 2.54) (name "A5" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -7.62 0) (length 2.54) (name "~{E}" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 2.54 -15.24 90) (length 2.54) (name "VEE" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 -15.24 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -2.54 0) (length 2.54) (name "S2" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.635 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized" (at 0.635 -2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0.9652 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_0_1" (rectangle (start -2.286 0.508) (end 2.286 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.286) (xy -0.762 2.286) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 2.794) (xy -1.27 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start 2.286 -0.508) (end -2.286 -1.016) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) (symbol "C_Polarized_1_1" (pin passive line (at 0 3.81 270) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.794) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Graphic:Logo_Open_Hardware_Small" (exclude_from_sim no) (in_bom no) (on_board no) (property "Reference" "#SYM" (at 0 6.985 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Enable" "0" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Logo" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Logo_Open_Hardware_Small_0_1" (polyline (pts (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) ) (stroke (width 0) (type default) ) (fill (type outline) ) ) ) ) (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "H" (at 0 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.445 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "mounting hole" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MountingHole_Pad_0_1" (circle (center 0 1.27) (radius 1.27) (stroke (width 1.27) (type default) ) (fill (type none) ) ) ) (symbol "MountingHole_Pad_1_1" (pin input line (at 0 -2.54 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Reference_Voltage:LM4040DBZ-3" (pin_names (offset 0.0254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LM4040DBZ-3" (at 0 -3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 0 -5.08 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 0 0 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode device voltage reference shunt" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?23*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LM4040DBZ-3_0_1" (polyline (pts (xy -1.27 0) (xy 0 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 -1.27) (xy 0.635 0) (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0.635 -1.27) (xy 0.635 1.27) (xy 1.27 1.27) ) (stroke (width 0.2032) (type default) ) (fill (type none) ) ) ) (symbol "LM4040DBZ-3_1_1" (pin passive line (at 3.81 0 180) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -3.81 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin no_connect line (at -1.27 0 0) (length 2.54) hide (name "NC" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "SW" (at 1.27 2.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "SW_Push" (at 0 -1.524 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SW_Push_0_1" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 1.27) (xy 0 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 2.54 1.27) (xy -2.54 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 0 0) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:CD74HC4050NSR" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -12.7 16.2306 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Value" "CD74HC4050NSR" (at -12.7 -19.2278 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "CD74HC4050NSR_0_0" (rectangle (start -12.7 -15.24) (end 12.7 15.24) (stroke (width 0.4064) (type default) ) (fill (type background) ) ) (pin power_in line (at 17.78 12.7 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016) ) ) ) (number "1" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 0 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016) ) ) ) (number "10" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "5A" (effects (font (size 1.016 1.016) ) ) ) (number "11" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 -2.54 180) (length 5.08) (name "5Y" (effects (font (size 1.016 1.016) ) ) ) (number "12" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "6A" (effects (font (size 1.016 1.016) ) ) ) (number "14" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 -5.08 180) (length 5.08) (name "6Y" (effects (font (size 1.016 1.016) ) ) ) (number "15" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016) ) ) ) (number "2" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016) ) ) ) (number "3" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016) ) ) ) (number "4" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016) ) ) ) (number "5" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016) ) ) ) (number "6" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016) ) ) ) (number "7" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 -10.16 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016) ) ) ) (number "8" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 0 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016) ) ) ) (number "9" (effects (font (size 1.016 1.016) ) ) ) ) ) ) (symbol "fanpico:Pico" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U4" (at 0 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico" (at 0 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Pico_0_0" (text "Raspberry Pi Pico" (at 0 21.59 0) (effects (font (size 1.27 1.27) ) ) ) ) (symbol "Pico_0_1" (rectangle (start -15.24 26.67) (end 15.24 -26.67) (stroke (width 0) (type solid) ) (fill (type background) ) ) ) (symbol "Pico_1_1" (pin bidirectional line (at -17.78 24.13 0) (length 2.54) (name "GPIO0" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 1.27 0) (length 2.54) (name "GPIO7" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) (name "GPIO8" (effects (font (size 1.27 1.27) ) ) ) (number "11" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) (name "GPIO9" (effects (font (size 1.27 1.27) ) ) ) (number "12" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "13" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) (name "GPIO10" (effects (font (size 1.27 1.27) ) ) ) (number "14" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) (name "GPIO11" (effects (font (size 1.27 1.27) ) ) ) (number "15" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) (name "GPIO12" (effects (font (size 1.27 1.27) ) ) ) (number "16" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) (name "GPIO13" (effects (font (size 1.27 1.27) ) ) ) (number "17" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 -19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "18" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) (name "GPIO14" (effects (font (size 1.27 1.27) ) ) ) (number "19" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 21.59 0) (length 2.54) (name "GPIO1" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) (name "GPIO15" (effects (font (size 1.27 1.27) ) ) ) (number "20" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) (name "GPIO16" (effects (font (size 1.27 1.27) ) ) ) (number "21" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) (name "GPIO17" (effects (font (size 1.27 1.27) ) ) ) (number "22" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "23" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) (name "GPIO18" (effects (font (size 1.27 1.27) ) ) ) (number "24" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) (name "GPIO19" (effects (font (size 1.27 1.27) ) ) ) (number "25" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) (name "GPIO20" (effects (font (size 1.27 1.27) ) ) ) (number "26" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) (name "GPIO21" (effects (font (size 1.27 1.27) ) ) ) (number "27" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 -6.35 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "28" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) (name "GPIO22" (effects (font (size 1.27 1.27) ) ) ) (number "29" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 -1.27 180) (length 2.54) (name "RUN" (effects (font (size 1.27 1.27) ) ) ) (number "30" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 1.27 180) (length 2.54) (name "GPIO26_ADC0" (effects (font (size 1.27 1.27) ) ) ) (number "31" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 3.81 180) (length 2.54) (name "GPIO27_ADC1" (effects (font (size 1.27 1.27) ) ) ) (number "32" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 6.35 180) (length 2.54) (name "AGND" (effects (font (size 1.27 1.27) ) ) ) (number "33" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 17.78 8.89 180) (length 2.54) (name "GPIO28_ADC2" (effects (font (size 1.27 1.27) ) ) ) (number "34" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 11.43 180) (length 2.54) (name "ADC_VREF" (effects (font (size 1.27 1.27) ) ) ) (number "35" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 13.97 180) (length 2.54) (name "3V3" (effects (font (size 1.27 1.27) ) ) ) (number "36" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 17.78 16.51 180) (length 2.54) (name "3V3_EN" (effects (font (size 1.27 1.27) ) ) ) (number "37" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "38" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 21.59 180) (length 2.54) (name "VSYS" (effects (font (size 1.27 1.27) ) ) ) (number "39" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 16.51 0) (length 2.54) (name "GPIO2" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 17.78 24.13 180) (length 2.54) (name "VBUS" (effects (font (size 1.27 1.27) ) ) ) (number "40" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -2.54 -29.21 90) (length 2.54) (name "SWCLK" (effects (font (size 1.27 1.27) ) ) ) (number "41" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at 0 -29.21 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "42" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) (name "SWDIO" (effects (font (size 1.27 1.27) ) ) ) (number "43" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 13.97 0) (length 2.54) (name "GPIO3" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 11.43 0) (length 2.54) (name "GPIO4" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 8.89 0) (length 2.54) (name "GPIO5" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -17.78 6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin bidirectional line (at -17.78 3.81 0) (length 2.54) (name "GPIO6" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "fanpico:SN74AHCT125PW" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U1" (at 0 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT125QDRQ1" (at 0 20.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C155176" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "SN74AHCT125PW_0_0" (rectangle (start -12.7 -17.78) (end 12.7 17.78) (stroke (width 0.4064) (type solid) ) (fill (type background) ) ) (pin input line (at -17.78 0 0) (length 5.08) (name "~{1OE}" (effects (font (size 1.016 1.016) ) ) ) (number "1" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "~{3OE}" (effects (font (size 1.016 1.016) ) ) ) (number "10" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016) ) ) ) (number "11" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016) ) ) ) (number "12" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -7.62 0) (length 5.08) (name "~{4OE}" (effects (font (size 1.016 1.016) ) ) ) (number "13" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 15.24 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016) ) ) ) (number "14" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 10.16 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016) ) ) ) (number "2" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 10.16 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016) ) ) ) (number "3" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "~{2OE}" (effects (font (size 1.016 1.016) ) ) ) (number "4" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016) ) ) ) (number "5" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016) ) ) ) (number "6" (effects (font (size 1.016 1.016) ) ) ) ) (pin power_in line (at 17.78 -15.24 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016) ) ) ) (number "7" (effects (font (size 1.016 1.016) ) ) ) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016) ) ) ) (number "8" (effects (font (size 1.016 1.016) ) ) ) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016) ) ) ) (number "9" (effects (font (size 1.016 1.016) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) (symbol "sprakfun-qwiic:qwiic_Logo" (pin_names (offset 1.016) ) (exclude_from_sim no) (in_bom yes) (on_board no) (property "Reference" "G" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "qwiic_Logo" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "SparkFun Qwiic I2C" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "qwiic_Logo_0_0" (polyline (pts (xy -5.4327 -0.8446) (xy -5.2808 -0.8039) (xy -5.1544 -0.733) (xy -5.0492 -0.629) (xy -4.9612 -0.4891) (xy -4.9388 -0.4442) (xy -4.9077 -0.3735) (xy -4.8888 -0.3096) (xy -4.878 -0.2364) (xy -4.8713 -0.1381) (xy -4.8691 -0.0268) (xy -4.8861 0.154) (xy -4.9313 0.3092) (xy -5.006 0.4432) (xy -5.1118 0.5598) (xy -5.1427 0.5863) (xy -5.261 0.6623) (xy -5.3915 0.7052) (xy -5.544 0.7187) (xy -5.5765 0.7181) (xy -5.7259 0.6986) (xy -5.8545 0.6485) (xy -5.9707 0.5648) (xy -6.0239 0.5125) (xy -6.1186 0.3839) (xy -6.1815 0.2359) (xy -6.2139 0.0648) (xy -6.2171 -0.1327) (xy -6.208 -0.2303) (xy -6.1669 -0.4073) (xy -6.0959 -0.5571) (xy -5.9957 -0.6791) (xy -5.8667 -0.7722) (xy -5.7097 -0.8355) (xy -5.6837 -0.8418) (xy -5.5963 -0.8532) (xy -5.5114 -0.8538) (xy -5.4327 -0.8446) ) (stroke (width 0.01) (type default) ) (fill (type outline) ) ) (polyline (pts (xy 1.114 -2.7667) (xy 6.0472 -2.7606) (xy 6.2463 -2.7148) (xy 6.337 -2.6928) (xy 6.6505 -2.5964) (xy 6.9363 -2.4737) (xy 7.1992 -2.3218) (xy 7.4443 -2.1381) (xy 7.6763 -1.9197) (xy 7.765 -1.8236) (xy 7.9726 -1.5605) (xy 8.1416 -1.2836) (xy 8.2724 -0.992) (xy 8.3654 -0.6847) (xy 8.4209 -0.3609) (xy 8.4393 -0.0196) (xy 8.4383 0.0655) (xy 8.4145 0.3752) (xy 8.3579 0.6676) (xy 8.2664 0.9511) (xy 8.138 1.234) (xy 8.0972 1.3103) (xy 7.9176 1.5925) (xy 7.7084 1.847) (xy 7.4711 2.0726) (xy 7.2073 2.2681) (xy 6.9187 2.4323) (xy 6.6067 2.5639) (xy 6.273 2.6617) (xy 6.2589 2.6648) (xy 6.2405 2.6684) (xy 6.2191 2.6716) (xy 6.1933 2.6747) (xy 6.1617 2.6775) (xy 6.1229 2.6801) (xy 6.0753 2.6825) (xy 6.0178 2.6847) (xy 5.9488 2.6867) (xy 5.8669 2.6886) (xy 5.7707 2.6902) (xy 5.6588 2.6917) (xy 5.5298 2.693) (xy 5.3823 2.6942) (xy 5.2149 2.6953) (xy 5.0261 2.6962) (xy 4.8146 2.697) (xy 4.579 2.6977) (xy 4.3178 2.6982) (xy 4.0296 2.6987) (xy 3.7131 2.6991) (xy 3.3667 2.6994) (xy 2.9892 2.6997) (xy 2.579 2.6999) (xy 2.1348 2.7) (xy 1.6552 2.7001) (xy 1.1388 2.7001) (xy 0.5841 2.7001) (xy -0.0102 2.7001) (xy -6.1292 2.7001) (xy -6.3505 2.644) (xy -6.4841 2.607) (xy -6.7964 2.4938) (xy -7.0847 2.3484) (xy -7.3523 2.1691) (xy -7.6022 1.9541) (xy -7.8228 1.7179) (xy -8.0199 1.4516) (xy -8.1801 1.1677) (xy -8.3036 0.8654) (xy -8.3907 0.5442) (xy -8.4419 0.2033) (xy -8.4512 -0.0999) (xy -8.4229 -0.4124) (xy -8.358 -0.7268) (xy -8.2573 -1.037) (xy -8.2016 -1.1697) (xy -8.0521 -1.4517) (xy -7.87 -1.7127) (xy -7.6584 -1.9504) (xy -7.4205 -2.1625) (xy -7.1593 -2.3467) (xy -6.878 -2.5006) (xy -6.5797 -2.6219) (xy -6.2674 -2.7084) (xy -5.9444 -2.7576) (xy -5.922 -2.759) (xy -5.8567 -2.7613) (xy -5.7613 -2.7635) (xy -5.6429 -2.7656) (xy -5.5083 -2.7673) (xy -5.3644 -2.7686) (xy -4.8664 -2.772) (xy -4.8664 -2.0042) (xy -4.8664 -1.2363) (xy -4.988 -1.3553) (xy -5.0139 -1.3798) (xy -5.1784 -1.503) (xy -5.3644 -1.5917) (xy -5.5706 -1.6453) (xy -5.7956 -1.6632) (xy -6.0087 -1.6503) (xy -6.2442 -1.6015) (xy -6.468 -1.5153) (xy -6.6423 -1.4122) (xy -6.8101 -1.2696) (xy -6.9545 -1.0983) (xy -7.0706 -0.9035) (xy -7.1159 -0.8066) (xy -7.1662 -0.6802) (xy -7.2032 -0.5549) (xy -7.2309 -0.4168) (xy -7.2531 -0.2517) (xy -7.2645 -0.0773) (xy -7.2559 0.1553) (xy -7.2228 0.3848) (xy -7.1667 0.6002) (xy -7.0895 0.7905) (xy -6.9738 0.984) (xy -6.8224 1.164) (xy -6.645 1.3131) (xy -6.4435 1.4296) (xy -6.2198 1.512) (xy -6.2168 1.5128) (xy -6.0991 1.5354) (xy -5.9587 1.5479) (xy -5.8081 1.5506) (xy -5.6599 1.5435) (xy -5.5266 1.5269) (xy -5.4208 1.5009) (xy -5.3121 1.4578) (xy -5.1345 1.3582) (xy -4.9742 1.2256) (xy -4.8664 1.1205) (xy -4.8664 1.32) (xy -4.8664 1.5195) (xy -4.3428 1.5195) (xy -3.8192 1.5195) (xy -3.8192 1.5092) (xy -3.651 1.5092) (xy -3.1359 1.5147) (xy -3.0732 1.5153) (xy -2.9054 1.5158) (xy -2.7765 1.5144) (xy -2.6848 1.5109) (xy -2.6289 1.5054) (xy -2.607 1.4977) (xy -2.6049 1.4928) (xy -2.5923 1.4545) (xy -2.5697 1.3821) (xy -2.5383 1.2793) (xy -2.4992 1.1497) (xy -2.4535 0.9973) (xy -2.4024 0.8257) (xy -2.3469 0.6386) (xy -2.2883 0.4399) (xy -2.2626 0.353) (xy -2.2055 0.1609) (xy -2.152 -0.0169) (xy -2.1032 -0.1766) (xy -2.0604 -0.3147) (xy -2.0246 -0.4277) (xy -1.9968 -0.512) (xy -1.9783 -0.564) (xy -1.9702 -0.5801) (xy -1.9654 -0.5681) (xy -1.9499 -0.5201) (xy -1.9252 -0.4397) (xy -1.8924 -0.3308) (xy -1.8529 -0.1975) (xy -1.8079 -0.0439) (xy -1.7584 0.1259) (xy -1.7059 0.308) (xy -1.6754 0.4138) (xy -1.6217 0.6001) (xy -1.5705 0.7774) (xy -1.5233 0.9405) (xy -1.4815 1.0844) (xy -1.4467 1.2041) (xy -1.4202 1.2945) (xy -1.4037 1.3504) (xy -1.3525 1.5202) (xy -0.8571 1.5147) (xy -0.3617 1.5092) (xy -0.2632 1.1704) (xy -0.2457 1.1103) (xy -0.1592 0.8126) (xy -0.0832 0.5516) (xy -0.017 0.325) (xy 0.04 0.1304) (xy 0.0886 -0.0344) (xy 0.1296 -0.1717) (xy 0.1636 -0.2838) (xy 0.1915 -0.3731) (xy 0.2138 -0.4419) (xy 0.2315 -0.4925) (xy 0.2451 -0.5272) (xy 0.2555 -0.5482) (xy 0.2633 -0.558) (xy 0.2693 -0.5588) (xy 0.2742 -0.5529) (xy 0.2787 -0.5426) (xy 0.2801 -0.5389) (xy 0.2928 -0.4995) (xy 0.3157 -0.4255) (xy 0.3473 -0.3211) (xy 0.3867 -0.1902) (xy 0.4325 -0.0368) (xy 0.4835 0.1352) (xy 0.5386 0.3216) (xy 0.5966 0.5185) (xy 0.8908 1.5195) (xy 1.3899 1.5195) (xy 1.4919 1.5192) (xy 1.6201 1.518) (xy 1.7294 1.5159) (xy 1.8144 1.5132) (xy 1.8695 1.5099) (xy 1.8891 1.5062) (xy 1.8878 1.5017) (xy 1.8751 1.465) (xy 1.8498 1.3939) (xy 1.8129 1.2913) (xy 1.7656 1.1601) (xy 1.7087 1.0033) (xy 1.6435 0.8236) (xy 1.5709 0.6241) (xy 1.4919 0.4076) (xy 1.4078 0.1771) (xy 1.3194 -0.0646) (xy 0.7498 -1.6222) (xy 2.0329 -1.6222) (xy 2.0329 -0.0513) (xy 2.0329 1.5195) (xy 2.5462 1.5195) (xy 3.0595 1.5195) (xy 3.0595 -0.0513) (xy 3.0595 -1.6222) (xy 3.2649 -1.6222) (xy 3.2649 -0.0513) (xy 3.2649 1.5195) (xy 3.7782 1.5195) (xy 4.2916 1.5195) (xy 4.2916 -0.0513) (xy 4.2916 -0.0616) (xy 4.5072 -0.0616) (xy 4.51 0.109) (xy 4.5206 0.2597) (xy 4.5412 0.3904) (xy 4.5742 0.5118) (xy 4.6219 0.6344) (xy 4.6865 0.7688) (xy 4.7189 0.8272) (xy 4.8331 0.9884) (xy 4.9744 1.1395) (xy 5.1327 1.2705) (xy 5.2977 1.3713) (xy 5.3343 1.3892) (xy 5.5052 1.4608) (xy 5.6736 1.5089) (xy 5.8531 1.5366) (xy 6.0574 1.547) (xy 6.3141 1.5503) (xy 6.3197 1.1242) (xy 6.3252 0.6981) (xy 6.1657 0.6977) (xy 6.0758 0.6938) (xy 5.9577 0.6711) (xy 5.8554 0.6239) (xy 5.7556 0.5473) (xy 5.6613 0.4359) (xy 5.592 0.2991) (xy 5.5481 0.1445) (xy 5.53 -0.0204) (xy 5.5379 -0.188) (xy 5.572 -0.3512) (xy 5.6325 -0.5023) (xy 5.7197 -0.634) (xy 5.7811 -0.6969) (xy 5.8788 -0.7612) (xy 5.9969 -0.8003) (xy 6.1437 -0.8177) (xy 6.3252 -0.8264) (xy 6.3197 -1.2397) (xy 6.3141 -1.653) (xy 6.119 -1.6559) (xy 6.0236 -1.6559) (xy 5.821 -1.6423) (xy 5.6365 -1.6074) (xy 5.4566 -1.5482) (xy 5.2677 -1.4615) (xy 5.1266 -1.3784) (xy 4.9456 -1.2329) (xy 4.7938 -1.0591) (xy 4.6732 -0.8591) (xy 4.6423 -0.7948) (xy 4.5921 -0.6805) (xy 4.5558 -0.5768) (xy 4.5314 -0.4734) (xy 4.5165 -0.3599) (xy 4.5092 -0.2261) (xy 4.5072 -0.0616) (xy 4.2916 -0.0616) (xy 4.2916 -1.6222) (xy 3.7782 -1.6222) (xy 3.2649 -1.6222) (xy 3.0595 -1.6222) (xy 2.5462 -1.6222) (xy 2.0329 -1.6222) (xy 0.7498 -1.6222) (xy 0.2363 -1.6221) (xy -0.2772 -1.6221) (xy -0.5736 -0.6568) (xy -0.583 -0.626) (xy -0.6413 -0.4378) (xy -0.696 -0.2633) (xy -0.746 -0.106) (xy -0.7901 0.0304) (xy -0.8272 0.1421) (xy -0.8559 0.2255) (xy -0.8751 0.277) (xy -0.8836 0.2929) (xy -0.8838 0.2926) (xy -0.8932 0.2679) (xy -0.9134 0.208) (xy -0.9431 0.1169) (xy -0.9811 -0.0016) (xy -1.0262 -0.1436) (xy -1.0771 -0.3054) (xy -1.1326 -0.483) (xy -1.1916 -0.6725) (xy -1.4859 -1.6222) (xy -2.0006 -1.6218) (xy -2.5153 -1.6215) (xy -3.0831 -0.0561) (xy -3.651 1.5092) (xy -3.8192 1.5092) (xy -3.8192 -0.6267) (xy -3.8192 -2.7729) (xy 1.114 -2.7667) ) (stroke (width 0.01) (type default) ) (fill (type outline) ) ) ) ) ) (junction (at 36.83 71.12) (diameter 0) (color 0 0 0 0) (uuid "0e628fd7-9c70-4656-8646-e98a12b5a92f") ) (junction (at 248.92 53.34) (diameter 0) (color 0 0 0 0) (uuid "11a10f52-3940-4361-ab0e-67ee4aad4024") ) (junction (at 86.36 85.09) (diameter 0) (color 0 0 0 0) (uuid "1ed5dd6d-2f7d-47ce-8bd7-72711a74d759") ) (junction (at 250.19 138.43) (diameter 0) (color 0 0 0 0) (uuid "44461bb5-3d15-48d8-b54c-29cc384038c4") ) (junction (at 86.36 38.1) (diameter 0) (color 0 0 0 0) (uuid "4a182950-aa82-49c6-886a-395f4e45ad57") ) (junction (at 255.27 138.43) (diameter 0) (color 0 0 0 0) (uuid "4ac33c7f-819a-4e40-9db8-c7158710ea25") ) (junction (at 255.27 125.73) (diameter 0) (color 0 0 0 0) (uuid "4cf7f1ed-1475-4478-97e8-e413894f7315") ) (junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0) (uuid "5c99028e-1d30-41b1-8932-d1579c1cedd7") ) (junction (at 86.36 87.63) (diameter 0) (color 0 0 0 0) (uuid "68ba8808-7bd0-4dd5-b77c-77c77e2f8e0a") ) (junction (at 250.19 125.73) (diameter 0) (color 0 0 0 0) (uuid "739bf354-74df-465f-9fc4-9c9002958c57") ) (junction (at 237.49 92.71) (diameter 0) (color 0 0 0 0) (uuid "7dbdf4e7-cee2-47d5-a9bd-3e2a7c814fcf") ) (junction (at 90.17 128.27) (diameter 0) (color 0 0 0 0) (uuid "8d640536-4306-4378-bbfb-70499a2465cf") ) (junction (at 44.45 105.41) (diameter 0) (color 0 0 0 0) (uuid "8f0ff8cf-d2b8-4f71-be2e-c74361e7d1f3") ) (junction (at 46.99 153.67) (diameter 0) (color 0 0 0 0) (uuid "998e8711-0bcd-41ef-a290-bc410f8d04b1") ) (junction (at 44.45 60.96) (diameter 0) (color 0 0 0 0) (uuid "9d867883-eced-4471-9fce-19f09daf1612") ) (junction (at 86.36 82.55) (diameter 0) (color 0 0 0 0) (uuid "a5816136-ceeb-4cc8-8f78-d7f8c808f034") ) (junction (at 193.04 45.72) (diameter 0) (color 0 0 0 0) (uuid "a6047c76-e1f7-4633-9ed1-a524d2c4adc5") ) (junction (at 262.89 138.43) (diameter 0) (color 0 0 0 0) (uuid "b842a3fa-7994-4673-966c-1ef6fc8631cc") ) (junction (at 86.36 40.64) (diameter 0) (color 0 0 0 0) (uuid "c2759c0d-1090-43b6-8679-d9db23ac5c4b") ) (junction (at 86.36 43.18) (diameter 0) (color 0 0 0 0) (uuid "c312270f-3292-440f-be58-8d5cca988f64") ) (junction (at 242.57 125.73) (diameter 0) (color 0 0 0 0) (uuid "c374c009-c04c-47ed-a1c9-18363335846e") ) (junction (at 262.89 125.73) (diameter 0) (color 0 0 0 0) (uuid "c7fcec21-40e0-4284-9c5f-91ce733eca2a") ) (junction (at 248.92 92.71) (diameter 0) (color 0 0 0 0) (uuid "eed16e70-9c57-42c8-9423-cd4d23871af3") ) (junction (at 242.57 138.43) (diameter 0) (color 0 0 0 0) (uuid "f7161d64-a0dc-42e0-98d7-a0e878124a80") ) (no_connect (at 149.86 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27d9") ) (no_connect (at 152.4 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27da") ) (no_connect (at 154.94 96.52) (uuid "5b141ed6-19e3-4acc-8fe7-af881f8c27db") ) (no_connect (at 170.18 50.8) (uuid "a8b06511-83ab-4494-899d-baf6f0f7c2e2") ) (no_connect (at 86.36 151.13) (uuid "f604df99-7dd9-4a80-8c5b-84ef34bfd56f") ) (no_connect (at 86.36 153.67) (uuid "f604df99-7dd9-4a80-8c5b-84ef34bfd570") ) (wire (pts (xy 218.44 68.58) (xy 241.3 68.58) ) (stroke (width 0) (type default) ) (uuid "0094a5af-0d99-48e1-a5ef-f27cb032394d") ) (wire (pts (xy 134.62 78.74) (xy 93.98 78.74) ) (stroke (width 0) (type default) ) (uuid "0186dde7-af63-4598-a1c1-31b08179cb47") ) (polyline (pts (xy 105.41 116.84) (xy 105.41 17.78) ) (stroke (width 0) (type default) ) (uuid "0225b026-bc9a-4ae3-a532-98073f921f06") ) (wire (pts (xy 92.71 66.04) (xy 92.71 48.26) ) (stroke (width 0) (type default) ) (uuid "032ec224-73b8-4b34-8d58-d432ca3d53cf") ) (wire (pts (xy 273.05 138.43) (xy 276.86 138.43) ) (stroke (width 0) (type default) ) (uuid "03fc6758-c18a-4c98-ab71-1032e4304690") ) (wire (pts (xy 250.19 125.73) (xy 250.19 128.27) ) (stroke (width 0) (type default) ) (uuid "06e94543-5813-475e-bb40-4f1f9177f3d0") ) (wire (pts (xy 193.04 54.61) (xy 193.04 53.34) ) (stroke (width 0) (type default) ) (uuid "09c1cecc-df80-4774-8746-c1b946e136c9") ) (wire (pts (xy 237.49 53.34) (xy 248.92 53.34) ) (stroke (width 0) (type default) ) (uuid "0c54809d-6bed-4fad-bb7a-44c58a3488f5") ) (wire (pts (xy 193.04 45.72) (xy 196.85 45.72) ) (stroke (width 0) (type default) ) (uuid "0e515928-7d22-4731-8cec-a6f38fb37081") ) (wire (pts (xy 36.83 26.67) (xy 36.83 30.48) ) (stroke (width 0) (type default) ) (uuid "0e650889-b494-4580-a65c-71328da9d336") ) (polyline (pts (xy 20.32 173.99) (xy 20.32 121.92) ) (stroke (width 0) (type default) ) (uuid "0fe776ff-a40b-4d67-94d6-2b2739940cb5") ) (wire (pts (xy 134.62 58.42) (xy 90.17 58.42) ) (stroke (width 0) (type default) ) (uuid "10ec34c0-ccd5-4fdf-bbc8-5a9ce960ba1e") ) (wire (pts (xy 242.57 138.43) (xy 240.03 138.43) ) (stroke (width 0) (type default) ) (uuid "12215783-4ce1-4031-87f0-99f322f05186") ) (wire (pts (xy 237.49 83.82) (xy 237.49 92.71) ) (stroke (width 0) (type default) ) (uuid "1383e772-c6f9-4630-a5e5-b7e0cbdaa8ee") ) (wire (pts (xy 86.36 40.64) (xy 86.36 43.18) ) (stroke (width 0) (type default) ) (uuid "1c03a828-53cd-4e4e-87c7-45e67cf2b53b") ) (wire (pts (xy 242.57 125.73) (xy 242.57 129.54) ) (stroke (width 0) (type default) ) (uuid "1c342a1c-439d-4b5a-af2d-08ad1d109144") ) (wire (pts (xy 262.89 115.57) (xy 262.89 116.84) ) (stroke (width 0) (type default) ) (uuid "1c3e2fe0-5bb0-408d-b1ba-d8b29a870098") ) (wire (pts (xy 255.27 138.43) (xy 255.27 139.7) ) (stroke (width 0) (type default) ) (uuid "1d3a1626-d1ef-4f14-b28c-9b933e72b66d") ) (wire (pts (xy 86.36 85.09) (xy 86.36 87.63) ) (stroke (width 0) (type default) ) (uuid "1f04ac7b-266b-4fb5-b6a4-05e08a8f98e6") ) (wire (pts (xy 90.17 100.33) (xy 86.36 100.33) ) (stroke (width 0) (type default) ) (uuid "227ab65b-61a7-472e-998c-7fd223fd4d26") ) (wire (pts (xy 26.67 38.1) (xy 26.67 41.91) ) (stroke (width 0) (type default) ) (uuid "248e10d8-fff0-4345-8c60-7a6079f0401b") ) (wire (pts (xy 193.04 48.26) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "27b07f33-b564-431a-b04b-4744b236ecb5") ) (wire (pts (xy 134.62 91.44) (xy 110.49 91.44) ) (stroke (width 0) (type default) ) (uuid "28274e40-2b64-4044-b68a-fe63775a6c46") ) (wire (pts (xy 218.44 66.04) (xy 218.44 68.58) ) (stroke (width 0) (type default) ) (uuid "29707bc9-6a8e-42e1-bac4-c7cb8eafe96c") ) (wire (pts (xy 198.12 148.59) (xy 86.36 148.59) ) (stroke (width 0) (type default) ) (uuid "2a8d2ef7-2f53-42c5-bb8d-e09943c6a9bb") ) (wire (pts (xy 26.67 71.12) (xy 36.83 71.12) ) (stroke (width 0) (type default) ) (uuid "2eb7d503-3e36-46f2-bd79-5c797f49c778") ) (wire (pts (xy 86.36 38.1) (xy 86.36 40.64) ) (stroke (width 0) (type default) ) (uuid "2f2c4fe5-08cb-4222-8c26-736039cae7f8") ) (wire (pts (xy 195.58 88.9) (xy 195.58 146.05) ) (stroke (width 0) (type default) ) (uuid "3457d8d7-d7cf-4926-86dd-d7e44f98d3ca") ) (wire (pts (xy 36.83 71.12) (xy 86.36 71.12) ) (stroke (width 0) (type default) ) (uuid "351987a8-23d9-4e5e-9024-9d0cbafdef22") ) (wire (pts (xy 170.18 45.72) (xy 193.04 45.72) ) (stroke (width 0) (type default) ) (uuid "355b7b31-d6c5-48f7-8526-aa8f27240965") ) (wire (pts (xy 46.99 153.67) (xy 46.99 157.48) ) (stroke (width 0) (type default) ) (uuid "36c8e91e-79e6-4d96-b66d-825fa8703e55") ) (wire (pts (xy 134.62 83.82) (xy 107.95 83.82) ) (stroke (width 0) (type default) ) (uuid "37529e5c-b830-4881-ade0-b698ed1f75a5") ) (wire (pts (xy 90.17 128.27) (xy 93.98 128.27) ) (stroke (width 0) (type default) ) (uuid "38a56da0-7cf7-4684-9a7a-4498611a94f9") ) (wire (pts (xy 26.67 26.67) (xy 26.67 30.48) ) (stroke (width 0) (type default) ) (uuid "38c0239e-08eb-435b-8f1b-995056a9c9c9") ) (wire (pts (xy 250.19 135.89) (xy 250.19 138.43) ) (stroke (width 0) (type default) ) (uuid "3c0044c6-c429-449b-b13a-e41678b50171") ) (wire (pts (xy 134.62 71.12) (xy 91.44 71.12) ) (stroke (width 0) (type default) ) (uuid "3ea7359e-2927-45ab-a860-78cd6f6c3507") ) (wire (pts (xy 250.19 125.73) (xy 255.27 125.73) ) (stroke (width 0) (type default) ) (uuid "410a416a-c262-4325-9a55-1d9ceffdf200") ) (wire (pts (xy 262.89 115.57) (xy 270.51 115.57) ) (stroke (width 0) (type default) ) (uuid "430bb481-7cde-4cab-b54d-6d7ff845e23a") ) (wire (pts (xy 26.67 71.12) (xy 26.67 73.66) ) (stroke (width 0) (type default) ) (uuid "454707f2-de63-45b8-a327-97d298d8a11c") ) (wire (pts (xy 26.67 81.28) (xy 26.67 85.09) ) (stroke (width 0) (type default) ) (uuid "460f285f-8f64-4711-8bfd-aaf7ce9cfb88") ) (wire (pts (xy 86.36 135.89) (xy 86.36 128.27) ) (stroke (width 0) (type default) ) (uuid "49b70026-1981-4c9e-b3bf-544b3ee71a1b") ) (wire (pts (xy 107.95 83.82) (xy 107.95 140.97) ) (stroke (width 0) (type default) ) (uuid "4d7eef76-255f-4ab6-90f6-c05e2137a21d") ) (wire (pts (xy 46.99 151.13) (xy 50.8 151.13) ) (stroke (width 0) (type default) ) (uuid "4e36b5f7-b3a0-474d-b89c-5462086267b9") ) (polyline (pts (xy 238.76 15.24) (xy 238.76 40.64) ) (stroke (width 0) (type default) ) (uuid "4e9f99cf-d8d9-4f72-93eb-785163413a3a") ) (wire (pts (xy 92.71 76.2) (xy 92.71 95.25) ) (stroke (width 0) (type default) ) (uuid "4eae0ac9-9282-4320-ba71-233828a5ef35") ) (wire (pts (xy 91.44 71.12) (xy 91.44 97.79) ) (stroke (width 0) (type default) ) (uuid "51b79a87-f344-40fe-83d6-167af76b6e80") ) (wire (pts (xy 44.45 105.41) (xy 50.8 105.41) ) (stroke (width 0) (type default) ) (uuid "5292bd92-d97d-4ec6-9038-ba96fd6ba6dc") ) (polyline (pts (xy 283.21 44.45) (xy 222.25 44.45) ) (stroke (width 0) (type default) ) (uuid "52e6cb43-ddb9-49fb-908a-73e9b085586c") ) (wire (pts (xy 237.49 83.82) (xy 241.3 83.82) ) (stroke (width 0) (type default) ) (uuid "559207e6-105e-45a0-83e1-8640c2b5a552") ) (wire (pts (xy 265.43 138.43) (xy 262.89 138.43) ) (stroke (width 0) (type default) ) (uuid "58bf6367-6c03-4861-be94-b4e73c4df116") ) (wire (pts (xy 250.19 138.43) (xy 242.57 138.43) ) (stroke (width 0) (type default) ) (uuid "5a66cd7f-a53d-4cb6-808e-4ba88e785316") ) (wire (pts (xy 242.57 134.62) (xy 242.57 138.43) ) (stroke (width 0) (type default) ) (uuid "5c707d89-acbd-4785-a874-cdebbe604627") ) (wire (pts (xy 90.17 53.34) (xy 90.17 58.42) ) (stroke (width 0) (type default) ) (uuid "5df6e566-af55-4933-bd72-8f4e2c0f62f8") ) (wire (pts (xy 237.49 92.71) (xy 248.92 92.71) ) (stroke (width 0) (type default) ) (uuid "60d52b2b-1d28-4099-bd65-03c12fea3d05") ) (wire (pts (xy 218.44 71.12) (xy 218.44 73.66) ) (stroke (width 0) (type default) ) (uuid "64a83a1c-195e-4315-aa89-18e7f0502f06") ) (polyline (pts (xy 105.41 17.78) (xy 20.32 17.78) ) (stroke (width 0) (type default) ) (uuid "64d2652d-c463-460c-8179-7b15d9e1b57a") ) (wire (pts (xy 50.8 74.93) (xy 46.99 74.93) ) (stroke (width 0) (type default) ) (uuid "66a4b750-6e34-494d-aadd-6e7a32a70209") ) (polyline (pts (xy 222.25 148.59) (xy 283.21 148.59) ) (stroke (width 0) (type default) ) (uuid "6f4d6650-5bcb-4282-924a-5cd152ed0ec9") ) (polyline (pts (xy 281.94 40.64) (xy 238.76 40.64) ) (stroke (width 0) (type default) ) (uuid "713ff1dc-4d1d-4410-a196-3d543c6b29c7") ) (wire (pts (xy 276.86 138.43) (xy 276.86 139.7) ) (stroke (width 0) (type default) ) (uuid "71a80893-914d-481f-840f-d73513d66b7a") ) (wire (pts (xy 240.03 125.73) (xy 242.57 125.73) ) (stroke (width 0) (type default) ) (uuid "7fc9a529-3f88-49e9-b0e6-e4d2ef7ceeca") ) (wire (pts (xy 134.62 76.2) (xy 92.71 76.2) ) (stroke (width 0) (type default) ) (uuid "7fe0ccf4-6a56-494c-af55-e0e6a65496af") ) (polyline (pts (xy 238.76 15.24) (xy 281.94 15.24) ) (stroke (width 0) (type default) ) (uuid "81222d6f-a3e7-45b9-8ef8-8863d409d691") ) (wire (pts (xy 36.83 38.1) (xy 36.83 43.18) ) (stroke (width 0) (type default) ) (uuid "826a64f1-831c-4a5f-8609-cf71518b35cd") ) (wire (pts (xy 86.36 128.27) (xy 90.17 128.27) ) (stroke (width 0) (type default) ) (uuid "83410475-54c8-4db1-8a39-18eb048a8e49") ) (wire (pts (xy 86.36 82.55) (xy 86.36 85.09) ) (stroke (width 0) (type default) ) (uuid "83b715d3-f602-47ea-b3a2-af22e8d6914c") ) (polyline (pts (xy 283.21 106.68) (xy 222.25 106.68) ) (stroke (width 0) (type default) ) (uuid "86813523-31f3-4ecd-8f15-d6b26bb626c9") ) (wire (pts (xy 170.18 71.12) (xy 218.44 71.12) ) (stroke (width 0) (type default) ) (uuid "88a9bfe0-2913-4884-bf0e-8a9b9a2f119c") ) (wire (pts (xy 255.27 125.73) (xy 262.89 125.73) ) (stroke (width 0) (type default) ) (uuid "8b889b1e-faba-489d-8e68-d7f715c06289") ) (wire (pts (xy 170.18 76.2) (xy 241.3 76.2) ) (stroke (width 0) (type default) ) (uuid "8bc63c6d-c1b4-429d-a2b2-770f476d396a") ) (polyline (pts (xy 283.21 102.87) (xy 283.21 44.45) ) (stroke (width 0) (type default) ) (uuid "8e63b1db-8228-4463-b999-f6e0d138bf1d") ) (wire (pts (xy 242.57 125.73) (xy 250.19 125.73) ) (stroke (width 0) (type default) ) (uuid "9052c1c7-0610-4c6b-bba2-a2782a39836f") ) (wire (pts (xy 276.86 29.21) (xy 276.86 33.02) ) (stroke (width 0) (type default) ) (uuid "9233216e-2e08-4379-96e0-cb36b85ff99a") ) (wire (pts (xy 248.92 92.71) (xy 248.92 91.44) ) (stroke (width 0) (type default) ) (uuid "940e5863-e9e2-4da1-baa2-c56a65c58307") ) (wire (pts (xy 218.44 73.66) (xy 241.3 73.66) ) (stroke (width 0) (type default) ) (uuid "94fa3a07-3627-41d9-9b99-3ab8b9e394ef") ) (wire (pts (xy 86.36 38.1) (xy 86.36 26.67) ) (stroke (width 0) (type default) ) (uuid "96c7973c-1ca4-496f-9433-cfb3dda02f91") ) (wire (pts (xy 262.89 125.73) (xy 262.89 128.27) ) (stroke (width 0) (type default) ) (uuid "984eacb6-8323-4ded-b67b-fb5e78dc9b4f") ) (wire (pts (xy 250.19 29.21) (xy 255.27 29.21) ) (stroke (width 0) (type default) ) (uuid "99b48839-8290-446e-94cc-89a81a4f05d0") ) (wire (pts (xy 46.99 153.67) (xy 46.99 151.13) ) (stroke (width 0) (type default) ) (uuid "9c5ecec4-6d4c-41d3-9cdd-3197f1b2f37d") ) (wire (pts (xy 92.71 95.25) (xy 86.36 95.25) ) (stroke (width 0) (type default) ) (uuid "9c6316a6-520f-40f3-814f-24dad1d71f53") ) (polyline (pts (xy 113.03 121.92) (xy 113.03 173.99) ) (stroke (width 0) (type default) ) (uuid "9ccebe2b-5f55-4973-bb87-39a4061c3e8f") ) (wire (pts (xy 170.18 81.28) (xy 198.12 81.28) ) (stroke (width 0) (type default) ) (uuid "9da456f0-4e21-4a12-809e-e058b6d6eeb2") ) (wire (pts (xy 255.27 138.43) (xy 250.19 138.43) ) (stroke (width 0) (type default) ) (uuid "9ed68298-3c09-4cbc-8d43-3d4e50b58202") ) (wire (pts (xy 107.95 140.97) (xy 86.36 140.97) ) (stroke (width 0) (type default) ) (uuid "9f9c49ab-0bbb-4ccd-b2c4-cda52b6397a2") ) (wire (pts (xy 262.89 124.46) (xy 262.89 125.73) ) (stroke (width 0) (type default) ) (uuid "a0c3c007-0ce9-4f18-937e-4f07a43e915c") ) (wire (pts (xy 262.89 138.43) (xy 262.89 135.89) ) (stroke (width 0) (type default) ) (uuid "a2ecdf12-a15c-45bf-a0e6-4e12848b4c7a") ) (wire (pts (xy 248.92 63.5) (xy 248.92 53.34) ) (stroke (width 0) (type default) ) (uuid "a721acbf-e159-4181-be08-3c3fe8e4d0a7") ) (polyline (pts (xy 222.25 102.87) (xy 283.21 102.87) ) (stroke (width 0) (type default) ) (uuid "a78f16cc-e927-4688-9c2d-e368232f38d5") ) (wire (pts (xy 46.99 30.48) (xy 46.99 33.02) ) (stroke (width 0) (type default) ) (uuid "a80fef18-a48a-4d09-b643-a672757b1495") ) (wire (pts (xy 86.36 146.05) (xy 195.58 146.05) ) (stroke (width 0) (type default) ) (uuid "a8a1e8a9-9f28-43cb-9fa6-aad380e57c24") ) (wire (pts (xy 170.18 78.74) (xy 241.3 78.74) ) (stroke (width 0) (type default) ) (uuid "aa54a1a5-9b0b-4689-a87e-8312a235a42a") ) (polyline (pts (xy 113.03 173.99) (xy 20.32 173.99) ) (stroke (width 0) (type default) ) (uuid "acf53681-a981-43c2-af30-140ab59070f1") ) (polyline (pts (xy 20.32 121.92) (xy 113.03 121.92) ) (stroke (width 0) (type default) ) (uuid "add87405-9e92-4829-9e4e-b14fd83f8344") ) (wire (pts (xy 237.49 92.71) (xy 237.49 95.25) ) (stroke (width 0) (type default) ) (uuid "ae3dc993-7482-4701-a744-6a70d3b1c49a") ) (wire (pts (xy 86.36 43.18) (xy 86.36 45.72) ) (stroke (width 0) (type default) ) (uuid "aeb321a9-5237-4c78-bac4-781a3c603cc1") ) (wire (pts (xy 110.49 143.51) (xy 86.36 143.51) ) (stroke (width 0) (type default) ) (uuid "aee4df56-97bb-43f0-868d-95d701bd9ab9") ) (wire (pts (xy 93.98 92.71) (xy 86.36 92.71) ) (stroke (width 0) (type default) ) (uuid "af8a7759-363f-4c9c-b8f4-16511f11ec48") ) (wire (pts (xy 36.83 26.67) (xy 26.67 26.67) ) (stroke (width 0) (type default) ) (uuid "b83304f3-46bf-4db8-a64c-7eaf6c7ea56c") ) (wire (pts (xy 91.44 63.5) (xy 134.62 63.5) ) (stroke (width 0) (type default) ) (uuid "b8cc28f2-5708-4a8f-8a7f-b697b00c04bf") ) (wire (pts (xy 86.36 87.63) (xy 86.36 90.17) ) (stroke (width 0) (type default) ) (uuid "bad5e497-e67c-4adf-8572-061ed6850f71") ) (polyline (pts (xy 222.25 44.45) (xy 222.25 102.87) ) (stroke (width 0) (type default) ) (uuid "bf918272-c085-465b-be31-17ae2cb8fcd2") ) (wire (pts (xy 248.92 92.71) (xy 251.46 92.71) ) (stroke (width 0) (type default) ) (uuid "c2d21eae-0a9a-4aa8-9d3f-f4f0f8ca58df") ) (wire (pts (xy 36.83 86.36) (xy 38.1 86.36) ) (stroke (width 0) (type default) ) (uuid "c3321f75-9834-407e-bc61-48089a2735f0") ) (wire (pts (xy 90.17 158.75) (xy 90.17 162.56) ) (stroke (width 0) (type default) ) (uuid "c410d1ff-0d70-4c71-aeb7-e2a144eee5e6") ) (wire (pts (xy 30.48 105.41) (xy 44.45 105.41) ) (stroke (width 0) (type default) ) (uuid "c5365424-5bdc-4306-98c6-fc5c6718bcc3") ) (wire (pts (xy 36.83 71.12) (xy 36.83 73.66) ) (stroke (width 0) (type default) ) (uuid "c6b00398-9d8b-46d8-90c9-9dd1a6f3289d") ) (wire (pts (xy 90.17 68.58) (xy 90.17 100.33) ) (stroke (width 0) (type default) ) (uuid "c6edef24-cd36-467e-a513-07e494f21119") ) (wire (pts (xy 46.99 153.67) (xy 50.8 153.67) ) (stroke (width 0) (type default) ) (uuid "c79cf7f8-53c6-4f5f-a3dd-75fc969c4c76") ) (wire (pts (xy 46.99 74.93) (xy 46.99 77.47) ) (stroke (width 0) (type default) ) (uuid "c8a563ce-100a-43b5-a82f-7c2484846b23") ) (wire (pts (xy 86.36 26.67) (xy 36.83 26.67) ) (stroke (width 0) (type default) ) (uuid "c8c3c69a-be61-4887-8549-c8060d004996") ) (wire (pts (xy 91.44 50.8) (xy 86.36 50.8) ) (stroke (width 0) (type default) ) (uuid "c99f6e0b-0f2a-4762-a218-370af9761dec") ) (polyline (pts (xy 283.21 148.59) (xy 283.21 106.68) ) (stroke (width 0) (type default) ) (uuid "ca5b5b51-a7f9-4111-9194-6e0a4f01fcf0") ) (wire (pts (xy 86.36 97.79) (xy 91.44 97.79) ) (stroke (width 0) (type default) ) (uuid "d0a2f279-5f05-4f01-ac28-b4b42dc0e869") ) (wire (pts (xy 90.17 53.34) (xy 86.36 53.34) ) (stroke (width 0) (type default) ) (uuid "d130f3e6-3e5d-4159-b2b2-7cdb6f3ed471") ) (wire (pts (xy 90.17 128.27) (xy 90.17 129.54) ) (stroke (width 0) (type default) ) (uuid "d2a3678b-89b2-49d4-9dac-f323f451a6d2") ) (wire (pts (xy 86.36 82.55) (xy 86.36 71.12) ) (stroke (width 0) (type default) ) (uuid "d3602151-9b54-4a0a-add1-4e51380180cb") ) (polyline (pts (xy 222.25 106.68) (xy 222.25 148.59) ) (stroke (width 0) (type default) ) (uuid "d41d8d66-fe44-4552-8178-6068db774d34") ) (wire (pts (xy 170.18 66.04) (xy 218.44 66.04) ) (stroke (width 0) (type default) ) (uuid "d434eb82-f886-4b56-ab20-c8d15f1d77f4") ) (polyline (pts (xy 20.32 116.84) (xy 105.41 116.84) ) (stroke (width 0) (type default) ) (uuid "d4f636a4-f5b8-49c2-a599-1577d3892675") ) (wire (pts (xy 237.49 54.61) (xy 237.49 53.34) ) (stroke (width 0) (type default) ) (uuid "d74ba0da-74dd-4b2f-8949-84ae2511a1cf") ) (polyline (pts (xy 20.32 17.78) (xy 20.32 116.84) ) (stroke (width 0) (type default) ) (uuid "d85017d9-c128-48c8-8251-f13f61501d86") ) (wire (pts (xy 170.18 88.9) (xy 195.58 88.9) ) (stroke (width 0) (type default) ) (uuid "daf98f29-baf9-4a42-aa06-dd14a5995065") ) (wire (pts (xy 255.27 124.46) (xy 255.27 125.73) ) (stroke (width 0) (type default) ) (uuid "db7c70ec-3601-4f98-81f3-7c474fea16ba") ) (wire (pts (xy 86.36 55.88) (xy 134.62 55.88) ) (stroke (width 0) (type default) ) (uuid "dfaa6c7c-fbe3-4455-ba4b-aab61fdaf591") ) (wire (pts (xy 44.45 60.96) (xy 50.8 60.96) ) (stroke (width 0) (type default) ) (uuid "e0be14a5-755d-4de2-a11b-e47244753427") ) (wire (pts (xy 248.92 53.34) (xy 256.54 53.34) ) (stroke (width 0) (type default) ) (uuid "e2a70d2b-a931-4c94-80d6-76d80c693b7d") ) (wire (pts (xy 90.17 158.75) (xy 86.36 158.75) ) (stroke (width 0) (type default) ) (uuid "e50155e3-ecc8-4718-9953-7eb737af95e6") ) (wire (pts (xy 251.46 92.71) (xy 251.46 91.44) ) (stroke (width 0) (type default) ) (uuid "e5744ff2-cb37-4cee-96fc-3e5b65926410") ) (wire (pts (xy 50.8 30.48) (xy 46.99 30.48) ) (stroke (width 0) (type default) ) (uuid "e5962416-b5b1-4270-a17c-cc51c70b33fd") ) (wire (pts (xy 262.89 138.43) (xy 255.27 138.43) ) (stroke (width 0) (type default) ) (uuid "e5c7b78d-5fa2-422a-99f8-30d909bbcb69") ) (wire (pts (xy 36.83 81.28) (xy 36.83 86.36) ) (stroke (width 0) (type default) ) (uuid "e5fb9199-8576-4e8d-ba34-71f5033a2c3e") ) (wire (pts (xy 134.62 68.58) (xy 90.17 68.58) ) (stroke (width 0) (type default) ) (uuid "e75391f7-af43-4ef8-a5b6-7d14eba740f7") ) (wire (pts (xy 36.83 43.18) (xy 38.1 43.18) ) (stroke (width 0) (type default) ) (uuid "e9823521-5882-4217-8e13-9e4963e22875") ) (polyline (pts (xy 281.94 15.24) (xy 281.94 40.64) ) (stroke (width 0) (type default) ) (uuid "eb281db5-4063-4df2-8db9-ea3803bcb333") ) (wire (pts (xy 134.62 66.04) (xy 92.71 66.04) ) (stroke (width 0) (type default) ) (uuid "eec66167-3c8f-4b14-88e8-2c8d1f2c010c") ) (wire (pts (xy 93.98 78.74) (xy 93.98 92.71) ) (stroke (width 0) (type default) ) (uuid "ef99e1f5-6546-41d3-87a7-3557a780ff4f") ) (wire (pts (xy 262.89 29.21) (xy 266.7 29.21) ) (stroke (width 0) (type default) ) (uuid "f04e1ab9-fbf3-46dd-b600-c260e336711a") ) (wire (pts (xy 110.49 91.44) (xy 110.49 143.51) ) (stroke (width 0) (type default) ) (uuid "f23c3a6d-794d-4f86-85f0-bcc715d4675a") ) (wire (pts (xy 198.12 81.28) (xy 198.12 148.59) ) (stroke (width 0) (type default) ) (uuid "f793a443-dc1b-4e5e-97fa-60fcce44bc0e") ) (wire (pts (xy 30.48 60.96) (xy 44.45 60.96) ) (stroke (width 0) (type default) ) (uuid "f812f4ab-364a-493a-aa6b-459b4558f569") ) (wire (pts (xy 90.17 134.62) (xy 90.17 135.89) ) (stroke (width 0) (type default) ) (uuid "fb97891c-8719-4c9a-a646-22cacb5b6097") ) (wire (pts (xy 91.44 63.5) (xy 91.44 50.8) ) (stroke (width 0) (type default) ) (uuid "fd251c52-7a99-4c7d-a722-efe3aeba8d65") ) (wire (pts (xy 92.71 48.26) (xy 86.36 48.26) ) (stroke (width 0) (type default) ) (uuid "fdc24804-1714-4dcd-b084-817110d69f5e") ) (text_box "SN74AHCT125:\n R54, R56 = 0 Ohm\n R55, R57 = Do Not Fit\n\nSN74AHCT126:\n R54, R56 = Do Not Fit\n R55, R57 = 0 Ohm " (exclude_from_sim no) (at 114.3 15.24 0) (size 36.83 15.24) (stroke (width 0) (type default) ) (fill (type none) ) (effects (font (size 1.27 1.27) ) (justify left top) ) (uuid "49f44302-b8f2-465a-9199-082046e77077") ) (text "Reset Button" (exclude_from_sim no) (at 252.73 19.05 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "29a9d25a-b621-4edd-b244-27b12c5a58c5") ) (text "3.3V to 5V TTL level converters (Outputs)" (exclude_from_sim no) (at 49.53 21.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7b78d401-b474-456f-b3ac-691fb2d878ca") ) (text "Multiplexed Tachometer Inputs" (exclude_from_sim no) (at 236.22 48.26 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9a09c185-1a82-45e6-a6f5-863cf0fe890a") ) (text "5-12V to 3.3V TTL level converters (Inputs)" (exclude_from_sim no) (at 48.26 125.73 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d2c3ae86-3be5-49b7-948d-8a75160b2e76") ) (text "Voltage Reference (ADC)" (exclude_from_sim no) (at 238.76 110.49 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dacb54d3-d3bb-452f-818e-51f80ddfb9e5") ) (label "PWM2A" (at 97.79 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0322dd28-65a4-4fb0-b2cf-cf9968cc8c23") ) (label "PWM5A" (at 97.79 76.2 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "18f360f6-8bd9-4769-bb6f-234d98538fd4") ) (label "MPX-READ" (at 223.52 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2e343221-a381-4af6-93f8-f799c94525b0") ) (label "PWM5B" (at 97.79 78.74 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "412b49fc-79c3-4b8a-8376-dc6bcdf8affd") ) (label "PWM7B" (at 110.49 130.81 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "425a5e38-96af-4adb-8371-9fa47b28c2da") ) (label "PWM6B" (at 107.95 130.81 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "44a48c6a-ba78-4c95-b40d-d17f88689408") ) (label "MPX-ADDR1" (at 223.52 76.2 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "703809a9-be77-4b66-aae5-8d628b7e6fe8") ) (label "PWM4B" (at 97.79 71.12 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a2127821-7749-4ff3-95b3-220795238adb") ) (label "MPX-ADDR0" (at 223.52 73.66 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "aaa33100-3723-4878-b9cd-15cf2df030de") ) (label "PWM1B" (at 100.33 148.59 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ad15de40-3f41-42ce-a2b4-b65b81e9f20c") ) (label "PWM0B" (at 100.33 146.05 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c3839004-8bcc-43d6-8e31-aaeb6aa517bd") ) (label "PWM4A" (at 97.79 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c49ab76b-956b-4f91-9162-04575e1380aa") ) (label "MPX-ADDR2" (at 223.52 78.74 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c5829ea2-2eeb-4644-96dd-ae26bbd86dc5") ) (label "PWM3A" (at 97.79 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d7454ce4-c6e8-4c21-920a-50a741ad0d6b") ) (label "PWM3B" (at 97.79 66.04 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea4a4606-14a4-40ed-881a-0158186885e8") ) (label "PWM2B" (at 97.79 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fe7d60c9-620b-4aeb-94b5-4bc071a2b54d") ) (global_label "GND" (shape input) (at 134.62 60.96 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "00475afc-148e-4ab8-bed4-3185ddfe90f9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 61.0394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 240.03 138.43 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "04950cea-1ba0-4eb1-a373-58a2658c01e1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 232.6579 138.5094 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 86.36 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "04c39ef5-459c-45df-8c6c-9808a60cb4df") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 86.2806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN3_TACHO_READ" (shape input) (at 259.08 76.2 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0618a8d4-dfec-4b96-918f-8a0783b022a4") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 76.2794 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN3_TACHO_GEN" (shape output) (at 170.18 91.44 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0f5bdeec-d99f-4b9a-9d8d-8292592bf770") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 191.7036 91.3606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "3V3" (shape output) (at 170.18 53.34 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "125a9fd1-f4bc-41f7-815c-21c249ebe4d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.1007 53.2606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX_CS" (shape input) (at 134.62 45.72 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "13189288-c51c-4a7a-9368-98a94b81453a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 126.2802 45.6406 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_TACHO_READ" (shape input) (at 259.08 81.28 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1920621a-fa42-4edc-b7c5-fba55bae481e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 81.3594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "193fcca4-6d80-4304-87f8-05b0105b2b50") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 48.3394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN2_TACHO_GEN" (shape output) (at 134.62 88.9 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "19df7d14-e3d4-4066-a136-f5eb5f33c428") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0964 88.8206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 170.18 60.96 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "212e6a15-d7f7-4f89-9b82-d85e733f5346") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.5521 60.8806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN1_TACHO_GEN" (shape output) (at 134.62 81.28 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "21dc7a18-7219-4cdb-90d7-6d848cf8fbd9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0964 81.2006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN3_PWM_GEN" (shape output) (at 50.8 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2789e3fd-df86-4401-81de-af2fe268b29e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 50.7206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN8_PWM_GEN" (shape output) (at 50.8 92.71 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "298b31df-8c5b-43e5-a7c1-952550809118") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 92.6306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN4_TACHO_GEN" (shape output) (at 170.18 83.82 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "2aaa9ab0-1073-4987-9698-55cc1f1e568d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 191.7036 83.7406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN8_TACHO_READ" (shape input) (at 259.08 78.74 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "3351cf97-d102-483a-a454-e36b64f141ed") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 78.6606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN6_TACHO_READ" (shape input) (at 259.08 73.66 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "3ef46464-e0cc-4af0-9141-dc489800243c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 73.5806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL_MOSI" (shape input) (at 134.62 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4406f4a8-e89e-41a7-8753-ccdef3b892c2") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 123.1355 53.2606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TX_MISO" (shape input) (at 134.62 43.18 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "440ccfa6-b091-406c-9063-69cfe17db2ea") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 124.4659 43.1006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_TACHO_READ" (shape input) (at 259.08 86.36 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "482b375b-f93b-4cf1-b41b-74e6a88b4bf7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 86.4394 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN7_TACHO_READ" (shape input) (at 259.08 83.82 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "53bbda8d-4efa-40be-97c8-4c19cc83172c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 83.7406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN5_TACHO_READ" (shape input) (at 259.08 71.12 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "53ed4868-d4f4-4eb8-9e1a-bcedc61524b9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 71.0406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 73.66 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "56566558-85dc-401a-921f-18fece923968") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 73.5806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN1_PWM_GEN" (shape output) (at 50.8 55.88 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "60352681-50e4-4655-96c6-c890e1d93a48") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 55.8006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN2_PWM_READ" (shape input) (at 50.8 143.51 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6268cfae-5d9d-4cd7-9116-717c0dbe103a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 30.0626 143.4306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape input) (at 196.85 45.72 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6ee1ee3c-2acc-43eb-bd67-1345d0c68634") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.8593 45.6406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 170.18 48.26 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "89b53668-472a-4c1e-ad76-0503724d51dd") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.4636 48.1806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 170.18 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "927e18f5-a7fb-4948-99d2-b9ca09bc99d5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 63.4206 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 250.19 29.21 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "97592fff-296c-4436-ae38-5be0d0edebc9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 242.0317 29.1306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN3_PWM_READ" (shape input) (at 50.8 146.05 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9abde801-2e8a-487f-8595-b8541beefca9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 30.0626 145.9706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 73.66 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a497be01-7bed-4cec-a987-8b665febd59b") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 73.7394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "RESET" (shape input) (at 170.18 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ac9fba16-79b8-4f37-99f5-a048f55a4fa5") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.3383 68.5006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 170.18 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ae83a3f6-3f75-4909-b54e-02391a5e8602") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 180.6969 55.8006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "MBFAN1_PWM_READ" (shape input) (at 50.8 140.97 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ae935457-ad04-4756-80fe-19d104b2c391") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 30.0626 140.8906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN4_PWM_GEN" (shape output) (at 50.8 48.26 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "af88b0c8-541d-4d0d-9530-a0c28a3bfe6f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 48.1806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VBUS" (shape input) (at 170.18 43.18 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b20f15bc-c7f5-42ac-9ab3-d6e4992b8509") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.4917 43.1006 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 134.62 86.36 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b7635d5a-eb4a-410e-9449-f1748b5bf9b7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3364 86.4394 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN7_PWM_GEN" (shape output) (at 50.8 95.25 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bee0df16-2712-41ea-b890-39eaf6399aba") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 95.1706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN6_PWM_GEN" (shape output) (at 50.8 97.79 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c51457b9-31ee-423d-bb01-1b5b54200326") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 97.7106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 170.18 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d29eb170-d2f6-41b6-83eb-36e080295456") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.386 58.3406 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "FAN5_PWM_GEN" (shape output) (at 50.8 100.33 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d75d477b-cd31-490b-9b42-737ef0e56180") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 100.2506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN4_TACHO_READ" (shape input) (at 259.08 68.58 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d91ef416-b47f-42aa-afac-0bca46e8a7f8") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 278.9102 68.6594 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SDA_SCK" (shape input) (at 134.62 50.8 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dcd14636-efc2-46e5-b067-4777716cc518") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 123.9217 50.7206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 240.03 125.73 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "de849800-a33b-44d7-89dc-cf35ac5f49ac") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 229.5131 125.8094 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "MBFAN4_PWM_READ" (shape input) (at 50.8 148.59 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f78a8906-bc23-4eb5-aa07-ed6cf611578a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 30.0626 148.5106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN2_PWM_GEN" (shape output) (at 50.8 53.34 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fa6523e1-f03d-4fe2-b7ab-7059b01b96fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.8121 53.2606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Device:R") (at 269.24 138.43 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "00d03321-5580-4405-8c0a-820cab392953") (property "Reference" "R49" (at 269.24 140.97 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "0" (at 269.24 135.89 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 269.24 140.208 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 269.24 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 269.24 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 269.24 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 269.24 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e629e4f8-19a9-40f2-b250-b42f630b5327") ) (pin "2" (uuid "e42d30bd-cd0a-4349-8f61-beeea3ad8561") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R49") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 44.45 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0113ec05-ff50-4170-824e-aedf99bcdf74") (property "Reference" "C1" (at 46.99 62.2362 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 46.99 64.7762 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "67e55334-eb2f-410b-b257-7b4a96741fd9") ) (pin "2" (uuid "0b69a9c8-0d79-419a-beb2-f797f270c351") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 46.99 157.48 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "03aaff8c-8b54-49d5-970a-5054db91686d") (property "Reference" "#PWR09" (at 46.99 163.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 158.7499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 46.99 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 46.99 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 46.99 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "41c40d98-b45e-4229-96bf-70cc556e500f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR09") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 49.53 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0cda9c0d-4446-4ac2-9248-7bf1aef08fda") (property "Reference" "#PWR02" (at 49.53 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 49.53 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2fc7642e-e62d-47fa-a356-d55ac2eefcf5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR02") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 93.98 128.27 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0fb68177-2cf3-4057-b947-2c9b7323b465") (property "Reference" "#PWR013" (at 90.17 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 97.79 128.2699 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 93.98 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 93.98 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 93.98 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8aa6b30-ccd5-4f6f-a5be-816d1cfb2234") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR013") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 97.79 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "12000ee0-df48-4de5-8c39-efac9b30715d") (property "Reference" "#PWR011" (at 97.79 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 97.79 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 97.79 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b58279ca-1e60-49be-a910-b9ff493d04d9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR011") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 26.67 77.47 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "1b08df99-72aa-4d1e-8b04-106a447108a3") (property "Reference" "R56" (at 29.21 76.2 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 29.21 78.74 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 28.448 77.47 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 26.67 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 26.67 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 26.67 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 26.67 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f0dff4fb-8ed8-4083-a687-1f7b67393a4e") ) (pin "2" (uuid "d6ad03e1-1869-47e9-aafd-3ea4f81ae0de") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R56") (unit 1) ) ) ) ) (symbol (lib_id "Switch:SW_Push") (at 271.78 29.21 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "21c2b408-da95-4394-b5b2-e408611b3d07") (property "Reference" "SW1" (at 271.78 21.59 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SW_Push" (at 271.78 24.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:SW_PUSH_6mm_SMD_2" (at 271.78 24.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 271.78 24.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Push button switch, generic, two pins" (at 271.78 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 271.78 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C221880" (at 271.78 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27296091-6781-4efc-a66b-9e778af17046") ) (pin "2" (uuid "9d12283e-8c5a-41fb-b03b-8ecd86226e38") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "SW1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 90.17 162.56 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "22d7280c-be03-4b3b-a754-8a7c826a914e") (property "Reference" "#PWR012" (at 90.17 168.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 92.71 163.8299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 90.17 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 90.17 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f02c9e5e-f62d-42eb-955d-4930b2a56a6b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR012") (unit 1) ) ) ) ) (symbol (lib_id "Reference_Voltage:LM4040DBZ-3") (at 262.89 132.08 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "424316b7-e2a3-4008-bbc5-a6a4ca971456") (property "Reference" "U6" (at 265.43 129.54 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LM4040DBZ-3" (at 265.43 132.08 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 267.97 132.08 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm4040-n.pdf" (at 262.89 132.08 0) (effects (font (size 1.27 1.27) (italic yes) ) (hide yes) ) ) (property "Description" "3.000V Precision Micropower Shunt Voltage Reference, SOT-23" (at 262.89 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C143326" (at 262.89 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 262.89 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "05784861-7629-4a85-9935-24d25e47a54f") ) (pin "2" (uuid "02fbf521-5543-40ce-b316-97d45e6714a9") ) (pin "3" (uuid "a4f200ca-dd1b-451e-bea9-adf2d2c3ccd9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U6") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 44.45 107.95 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "42518183-bf63-4b15-8194-3d4f57ca461e") (property "Reference" "C2" (at 46.99 106.6862 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 46.99 109.2262 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 44.45 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 44.45 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 44.45 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 44.45 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 44.45 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "74176d8e-dcfb-4fbb-a8e5-ba3f3d188662") ) (pin "2" (uuid "170162eb-d3f5-4677-b587-100600a60d59") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C2") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 262.89 120.65 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "46efb677-f647-4e2b-b34d-dc07526879da") (property "Reference" "R48" (at 265.43 119.3799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 265.43 121.9199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 261.112 120.65 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 262.89 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 262.89 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 262.89 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 262.89 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ce51771f-1ce8-4835-b128-9d341ceaf2ff") ) (pin "2" (uuid "a421bd39-dbf7-4537-ac40-19f294144d16") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R48") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 276.86 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4bdb64de-c5e2-44a1-aa92-4e88036c30fa") (property "Reference" "#PWR016" (at 276.86 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 276.86 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 276.86 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 276.86 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 276.86 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "295f4690-5164-4c76-a2ae-2de4b239ab6a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR016") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 237.49 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4bfa9683-7e61-4fcb-aa0a-781f840f648d") (property "Reference" "#PWR083" (at 237.49 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 237.49 100.33 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 237.49 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 237.49 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 237.49 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "113178ad-0c33-42dd-9dbd-2b90767bfbf3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR083") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 256.54 53.34 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d497e39-213b-40f0-b3da-ec208cda2ec3") (property "Reference" "#PWR084" (at 252.73 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 260.35 53.3399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 256.54 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 256.54 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 256.54 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8cd3c9a0-f180-4593-a516-1e3125aefc50") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR084") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:Pico") (at 152.4 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "59ed5389-2c86-4bc9-a31e-24c4a6d03b24") (property "Reference" "U4" (at 152.4 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Pico" (at 152.4 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 152.4 67.31 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 152.4 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a63b44f1-ea5e-4f13-b9b3-c183c5766b10") ) (pin "10" (uuid "ae300eb0-4d90-4667-9ac8-30dc063fea66") ) (pin "11" (uuid "7a642457-bf94-4069-aeb3-f6bdf53027ce") ) (pin "12" (uuid "2a372351-0249-4dbf-b843-d1115abe6c23") ) (pin "13" (uuid "cab1c7ac-3cbc-4b3e-8949-a302dafe62f3") ) (pin "14" (uuid "8b57cad7-714d-4a24-ac8c-022f84f02a29") ) (pin "15" (uuid "0d075e9c-23a6-4ed3-b65a-edb4381a9128") ) (pin "16" (uuid "1ea46041-4719-4ad7-8407-ca25f9b1e9c1") ) (pin "17" (uuid "049d00e8-1a76-4940-a5fb-b3e1cf5ab1cb") ) (pin "18" (uuid "62be4e75-f9e5-4e23-a56f-552f2717bd4c") ) (pin "19" (uuid "4ad44b68-5278-49b8-be99-4f5740f18cbe") ) (pin "2" (uuid "044ce540-1b40-47a5-ac8e-8567b3613fc6") ) (pin "20" (uuid "352f3812-5061-4d56-b744-146ca85be583") ) (pin "21" (uuid "abd569bb-0e47-46a3-9ef3-f24815830d31") ) (pin "22" (uuid "3c75c43b-77c8-490f-836c-24811ce20668") ) (pin "23" (uuid "59f771eb-610c-41b4-9fe9-f4aa0cd36fb7") ) (pin "24" (uuid "35f2cd52-8449-4e71-b3d3-68f55e4f212f") ) (pin "25" (uuid "03afcb68-3462-4044-a799-eed9b01289ae") ) (pin "26" (uuid "ad255c78-9d3e-40cf-aebc-08a18736f74c") ) (pin "27" (uuid "43d2ec59-1409-4fa4-9166-59df0d59b1be") ) (pin "28" (uuid "8e792de5-914f-4c01-b363-c046734dca15") ) (pin "29" (uuid "6ebd8e1c-3412-4e91-853a-f50ca94c1761") ) (pin "3" (uuid "bea30cce-6c19-462a-b123-e232df3d4b9b") ) (pin "30" (uuid "3d55c6ef-b5b6-4181-98e7-56916a947575") ) (pin "31" (uuid "f151cb85-5b35-41dc-83e5-f5f14d11f572") ) (pin "32" (uuid "12e4cbf0-c33e-4f70-b642-86eed6213bbe") ) (pin "33" (uuid "be50869c-2d23-4f53-9ed5-69165e5355dc") ) (pin "34" (uuid "445f5899-f7fa-4000-a351-c64542952a9b") ) (pin "35" (uuid "b842d565-4f7f-4475-bab3-844734dd14e5") ) (pin "36" (uuid "f646b943-6ef8-4fa1-853f-cdc8e6c9ffe4") ) (pin "37" (uuid "cd845bad-2bbd-4604-bb4c-5a28fb51bb55") ) (pin "38" (uuid "6c8d1982-af4a-4686-b8f0-562fb74f1a22") ) (pin "39" (uuid "4a2c07c3-4fd8-4ef2-a11f-a4906d131c29") ) (pin "4" (uuid "4248c574-29b7-48f6-9cb7-f1f59031b094") ) (pin "40" (uuid "72633d1b-112c-4d79-8d35-50d2f80fe8c3") ) (pin "41" (uuid "79a69a04-b150-4b88-8adb-e5c57776d907") ) (pin "42" (uuid "255d9c0f-be4d-47fb-b2eb-60c13f7a7afb") ) (pin "43" (uuid "dc51d744-d6bd-4464-b94b-bd99229acf7a") ) (pin "5" (uuid "8099da11-5e38-4b42-8055-cc1d73216c85") ) (pin "6" (uuid "10523738-2db5-4266-b7d5-83c1545c5bb4") ) (pin "7" (uuid "3a801c55-c78c-470f-8f19-6eca2b0ee295") ) (pin "8" (uuid "e46be3b6-e021-4b94-96af-b96e9cd4da10") ) (pin "9" (uuid "e67203dc-9d4c-49d5-b51e-5bfe862a3dfd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 193.04 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5ccafa89-0081-41df-a934-e7474966477b") (property "Reference" "#PWR014" (at 193.04 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 193.04 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 193.04 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b650d766-5cdf-46d5-9606-1261bf399530") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR014") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 90.17 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5d5f6209-62e0-449e-9e51-2777855b3905") (property "Reference" "C3" (at 92.71 130.8162 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 92.71 133.3562 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 90.17 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 90.17 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 90.17 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 90.17 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 90.17 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ad7716f-a6f5-4a3e-b558-fbe70219d2d3") ) (pin "2" (uuid "713a509f-cf7a-4fac-ac43-bc18e3e7e72b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C3") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 255.27 139.7 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "625371b5-54a4-43de-8588-11187e5d8ae2") (property "Reference" "#FLG0102" (at 255.27 141.605 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 250.19 144.78 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 255.27 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 255.27 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 255.27 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ee5afa1-28f8-402d-9d63-1ad6ed2abfae") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0102") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 73.66 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "63465697-0038-4a5a-931e-e383d18d8993") (property "Reference" "H3" (at 76.2 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 76.2 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 73.66 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6bc4a5b6-72a7-456a-bc75-3be399593048") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H3") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:SN74AHCT125PW") (at 68.58 90.17 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "66392125-6956-4edb-8ca8-2997bbab50ec") (property "Reference" "U2" (at 68.58 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT126" (at 68.58 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 68.58 90.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "C155176 (AHCT125), C163728 (AHCT126)" (at 68.58 90.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 68.58 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C163728" (at 68.58 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 68.58 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b2fb94f2-fc18-47c4-9472-8a79f65838b1") ) (pin "10" (uuid "bcb7933d-0d94-45b9-b30f-ee867ce46763") ) (pin "11" (uuid "2e0431db-9da6-4431-9d4e-85c078d2eb1e") ) (pin "12" (uuid "64d96dab-8a5c-443c-9240-d2441b583001") ) (pin "13" (uuid "7e509ef5-1ff2-47a1-8119-99aa086d9413") ) (pin "14" (uuid "d154cdb6-0a2b-4d15-9ad6-741a6a58ccfc") ) (pin "2" (uuid "0df1b466-cda8-4730-96a0-313e66419041") ) (pin "3" (uuid "ba44c294-e5ad-4f9e-9487-b21ac03058d4") ) (pin "4" (uuid "5ba81ffe-ce47-4337-92e4-8c8c5f00718a") ) (pin "5" (uuid "c6edc19e-9841-496b-ac9f-1e1121f1b9fe") ) (pin "6" (uuid "78bafe6a-cb85-48a3-bd72-5c8d0e3fc5bc") ) (pin "7" (uuid "4c457d39-3c3e-426c-bcea-a46dde995d6b") ) (pin "8" (uuid "6178156d-475b-4615-a657-a820d71e0510") ) (pin "9" (uuid "80223e6b-6a90-4261-9055-030ae69cbd0c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U2") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 26.67 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "68788af4-cd69-4bb0-8b00-fc6856411aae") (property "Reference" "R54" (at 29.21 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 29.21 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 28.448 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 26.67 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bddc6ce2-d77e-4442-bd84-7757b92010fc") ) (pin "2" (uuid "44455ee2-368e-407b-946d-efd27af571ff") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R54") (unit 1) ) ) ) ) (symbol (lib_id "74xx:74HC4051") (at 248.92 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "69b8b1e7-58a4-4f61-8e10-e1966c50bf8e") (property "Reference" "U7" (at 250.9394 60.96 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "74HC4051" (at 250.9394 63.5 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 248.92 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.ti.com/lit/ds/symlink/cd74hc4051.pdf" (at 248.92 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "8-channel analog multiplexer/demultiplexer, DIP-16/SOIC-16/TSSOP-16" (at 248.92 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C9386" (at 248.92 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 248.92 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9e21ebf6-2088-49c2-9e80-6e4b92f24461") ) (pin "10" (uuid "6dbfdc44-70b3-406c-977c-d1d75191e8e5") ) (pin "11" (uuid "e59f59bb-0d34-49a8-af90-92119c1e1f13") ) (pin "12" (uuid "c2969b79-fbaa-48ab-ae7e-9db58377cbdc") ) (pin "13" (uuid "e4d4d04a-c13d-4f9d-8903-3bee9c1e5318") ) (pin "14" (uuid "85a08c9e-f890-4791-a040-227f850012b1") ) (pin "15" (uuid "2a85a22e-d9ba-42b8-8917-a2d26c2eacb0") ) (pin "16" (uuid "b6fe680a-cbf5-44fb-9e14-61fe92a9a4d1") ) (pin "2" (uuid "75d00a63-083a-4e90-b064-6988d44e283d") ) (pin "3" (uuid "52356f1b-c744-4715-a6e0-c224ca435d85") ) (pin "4" (uuid "bc9e517d-baef-4cf4-987f-1f3f8f00c06c") ) (pin "5" (uuid "4a024464-022d-450e-a2ff-d09aad20ca19") ) (pin "6" (uuid "22984c8b-9fa1-4455-9430-6db8158e4946") ) (pin "7" (uuid "78e85fb3-3de9-4550-a287-4cc71c8954e9") ) (pin "8" (uuid "693cc828-001b-431d-b679-7654f60da320") ) (pin "9" (uuid "d0f29cda-0f6c-403a-9684-eb2303d5fb02") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U7") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 36.83 34.29 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "72e0c837-1ab2-470c-91ad-f34c0c878b4f") (property "Reference" "R55" (at 39.37 33.02 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 39.37 35.56 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 38.608 34.29 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 36.83 34.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d2863bd7-effd-458c-99a1-b213499ed11f") ) (pin "2" (uuid "d95059fd-1d70-46b5-a162-00ac98e19fca") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R55") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 26.67 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7eec01e7-b105-47f4-84b2-b4977c900d6a") (property "Reference" "#PWR015" (at 26.67 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 29.21 43.1799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 26.67 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d98f79b2-d39e-4cc8-866c-63f6dcdb7328") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR015") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 38.1 43.18 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "83bcfa7c-4c87-414d-8d5a-fb31a0e32a4c") (property "Reference" "#PWR044" (at 34.29 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 41.91 43.18 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 38.1 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6a93bec-bc44-4d13-8b16-e585f19fd83a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR044") (unit 1) ) ) ) ) (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 173.99 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "876ade33-6b93-4690-a10c-6369295dc457") (property "Reference" "#LOGO1" (at 276.86 167.005 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "Logo_Open_Hardware_Small" (at 276.86 179.705 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "Symbol:OSHW-Logo_7.5x8mm_Copper" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Open Hardware logo, small" (at 276.86 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#LOGO1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 90.17 135.89 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8b64e47c-493b-47e6-89ce-eff5a533e677") (property "Reference" "#PWR0101" (at 90.17 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 92.71 137.1599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 90.17 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 90.17 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cfb52a72-6e2a-4d93-9f56-41b439fb2115") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR0101") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 193.04 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8d64b89a-1924-4f6c-af5f-09a59972040a") (property "Reference" "C4" (at 187.96 50.8 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 186.69 53.34 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 193.04 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8b91b3d-a018-4e68-b9d7-8d613d44c9c8") ) (pin "2" (uuid "05a89441-4f43-4ef6-b14d-7822bd71c92b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 25.4 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8f0d3fed-2a42-496b-9baf-a165e10a736f") (property "Reference" "#PWR01" (at 25.4 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 25.4 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 25.4 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "666d8b9e-fcd5-4795-b865-21337d99152f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR01") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 36.83 77.47 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "913d23ad-63f1-4d2b-89b0-43c72670248a") (property "Reference" "R57" (at 39.37 76.2 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "0" (at 39.37 78.74 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 38.608 77.47 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 36.83 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 36.83 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C21189" (at 36.83 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 36.83 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ffab4f11-decb-47be-898d-795880d0f3c0") ) (pin "2" (uuid "3dcb10b3-b0c2-466c-abe9-bc480553acb1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R57") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 97.79 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "91796faf-4963-43e3-be77-8c6bb9373a7f") (property "Reference" "H4" (at 100.33 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 100.33 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 97.79 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "97157546-2806-48e4-92d6-17deba114302") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H4") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 26.67 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "94d99b67-1b13-4e61-9d41-51a610400ea6") (property "Reference" "#PWR052" (at 26.67 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 29.21 86.3599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 26.67 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 26.67 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c0c28528-2f85-449d-a74d-a1a317b47216") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR052") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 38.1 86.36 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9a2390bb-b3ac-46b5-8379-eaf5e77f035e") (property "Reference" "#PWR060" (at 34.29 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 41.91 86.36 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 38.1 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 38.1 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 38.1 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b39a0594-6c55-418a-ab35-e1650da39717") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR060") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 30.48 105.41 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9cb62419-1ec9-453c-b5c0-0bedca31f503") (property "Reference" "#PWR04" (at 34.29 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 26.67 105.41 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 30.48 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 30.48 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "68e8ef83-209a-46d6-8118-ffab544861ce") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR04") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 242.57 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9fda019a-5350-4524-b5e4-0e13d75d61d1") (property "Reference" "C29" (at 236.22 130.81 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 234.95 133.35 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 242.57 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 242.57 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 242.57 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 242.57 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 242.57 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bc31c7d2-ffd7-40b0-9482-436067ae52e0") ) (pin "2" (uuid "14f05954-02bf-434f-84f9-6d3672624abb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C29") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 73.66 189.23 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a17f3f6d-73e9-42f5-922d-377a07660f6a") (property "Reference" "#PWR010" (at 73.66 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 73.66 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 73.66 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "27edf7eb-87af-4101-bb4b-a66095a160b3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR010") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 270.51 115.57 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a71234bf-8830-4e38-bcc7-c1a326627ef3") (property "Reference" "#PWR0102" (at 266.7 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 280.67 115.57 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 270.51 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 270.51 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 270.51 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "91d8dfcd-2d26-499b-8f84-b53797255edc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR0102") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 46.99 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aafb7b41-4736-44f5-ab4b-339174550157") (property "Reference" "#PWR07" (at 46.99 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 34.2899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 46.99 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "cea449ce-07e5-445d-a678-0300db9013ac") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR07") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 259.08 29.21 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "acf00741-1e6b-4573-832b-01221b598fad") (property "Reference" "R1" (at 259.08 22.86 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "1k" (at 259.08 25.4 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 259.08 30.988 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 259.08 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 259.08 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 259.08 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 259.08 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0910a185-289b-40e3-8fb6-54d7f7286aa8") ) (pin "2" (uuid "ec074aab-08bf-408a-9b96-861de416ec28") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "R1") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:SN74AHCT125PW") (at 68.58 45.72 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adcaffeb-6e87-4ff0-afa6-7bf8442be64b") (property "Reference" "U1" (at 68.58 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SN74AHCT126" (at 68.58 25.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "C155176 (AHCT125), C163728 (AHCT126)" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C163728" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 68.58 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2f34fbfd-3312-477b-b701-121fc77d5848") ) (pin "10" (uuid "79bbdbf8-f0d4-4c38-aa4f-8a3f92f69118") ) (pin "11" (uuid "6b777928-5b7f-47dc-abcf-ceb2a8e18614") ) (pin "12" (uuid "15f9b026-10aa-473e-84f3-da690f58bb16") ) (pin "13" (uuid "1cbedb1a-9687-46f4-aca3-dc9563346a95") ) (pin "14" (uuid "50ecac09-402a-41e9-b72b-55d215a9fa3e") ) (pin "2" (uuid "6d1e4641-d185-4c2c-97a5-3be145b35f1d") ) (pin "3" (uuid "7c56ce82-f2cf-49fa-ac6e-319f6fa584b9") ) (pin "4" (uuid "0bc924c7-55c4-4c90-a881-1684ad3c9f8e") ) (pin "5" (uuid "77364b93-edb6-42bb-b30c-43183d11b107") ) (pin "6" (uuid "71f76554-7dac-453f-9642-3d6afe7a7617") ) (pin "7" (uuid "bafb999f-9f37-47b6-bfb8-9b9f66aa2220") ) (pin "8" (uuid "8303d2f6-1303-4fd4-9ad6-8b36e436d400") ) (pin "9" (uuid "8a38b771-684d-4edf-8d94-5a1e6ca17b30") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U1") (unit 1) ) ) ) ) (symbol (lib_id "sprakfun-qwiic:qwiic_Logo") (at 259.08 171.45 0) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b0dbdcb8-5abc-4dd6-966a-a3d509c89d40") (property "Reference" "G1" (at 259.08 167.64 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "qwiic_Logo" (at 259.08 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "sparkfun-qwiic:qwiic_5mm" (at 259.08 177.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 259.08 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 259.08 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "G1") (unit 1) ) ) ) ) (symbol (lib_id "fanpico:CD74HC4050NSR") (at 68.58 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "bdd45721-57d2-4880-b454-a09119643f5a") (property "Reference" "U3" (at 68.58 166.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "CD74HC4050NSR" (at 68.58 168.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 68.58 148.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Datasheet" "" (at 68.58 148.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) (hide yes) ) ) (property "Description" "" (at 68.58 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C131932" (at 68.58 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 68.58 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "29ed350d-b134-49f7-a982-78ce01792b40") ) (pin "10" (uuid "f0d712ae-36eb-48e3-afb6-bd0c337e80ea") ) (pin "11" (uuid "6fadd989-f881-48cb-a649-bcbe8e0250fa") ) (pin "12" (uuid "3da1762f-9a08-4c53-877d-5108a5cfac8b") ) (pin "14" (uuid "a7135468-f11b-4e86-b776-d41d6f97de0b") ) (pin "15" (uuid "f9bdc9b4-91e7-42e2-a534-22d575b7f4c3") ) (pin "2" (uuid "300e3404-d254-4eb5-b9f3-0d37e31021fc") ) (pin "3" (uuid "3211730b-780a-4e42-a799-8399e392fa4b") ) (pin "4" (uuid "2ef5e8a1-d42c-4d45-bd74-91858928c1b1") ) (pin "5" (uuid "f1cfc053-da86-46c0-90bb-a3fff52638fb") ) (pin "6" (uuid "cf69afb6-8a5c-4fa6-8321-24649a35efdd") ) (pin "7" (uuid "b5daeb35-2626-42b4-8f80-394177bb45f1") ) (pin "8" (uuid "1866805e-88c0-4cc7-bd77-6a741dca4d9c") ) (pin "9" (uuid "c7c404b6-929d-4049-838f-ae8609ed3831") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "U3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 44.45 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c526abfd-2bc7-437d-99d0-a96dfe3bbc5e") (property "Reference" "#PWR06" (at 44.45 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 46.99 111.7599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 44.45 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 44.45 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9110036a-5b83-40c2-be92-af6bd1f7fe9d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR06") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 25.4 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "cbfea856-81cc-4920-8136-231416e676cf") (property "Reference" "H1" (at 27.94 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 27.94 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ab36bf70-0043-4db6-aabd-62b615c4d6d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H1") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 255.27 124.46 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d62382f8-9ab4-4a55-ada9-6abd4e0cc693") (property "Reference" "#FLG0101" (at 255.27 122.555 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 255.27 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 255.27 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 255.27 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 255.27 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7618e572-bceb-4295-876c-15d22ba3a8a6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#FLG0101") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 46.99 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e00622ed-5963-4f24-8ca3-4156621128f2") (property "Reference" "#PWR08" (at 46.99 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 49.53 78.7399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 46.99 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 46.99 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 46.99 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a26fd422-6458-447b-82a1-4cc985900de7") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR08") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 237.49 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e04755e0-9ce8-4dda-887b-88e3f8cc0cec") (property "Reference" "#PWR088" (at 237.49 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 237.49 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 237.49 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 237.49 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 237.49 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "75c654ba-b7c8-4bff-98af-5c52b6cee3a8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR088") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 44.45 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f1270d61-b904-4fb6-a21c-60838b39d33e") (property "Reference" "#PWR05" (at 44.45 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 46.99 67.3099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 44.45 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "509c0ba5-48a2-48f3-8fee-83eebe7171d5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR05") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 276.86 139.7 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fa2deb6c-69aa-4fd2-8dc6-262f17f64052") (property "Reference" "#PWR082" (at 276.86 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 276.86 144.78 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 276.86 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 276.86 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 276.86 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "60f9df87-4cdd-42a3-a9f1-65449bbcf5ce") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR082") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 30.48 60.96 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fb0c09fb-eb10-423d-a2ff-19df142b215b") (property "Reference" "#PWR03" (at 34.29 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 26.67 60.96 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b27d10aa-d70c-44e6-a702-253c6072f2d6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "#PWR03") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 237.49 57.15 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fb32889d-5933-45b4-9953-204fa074ec4d") (property "Reference" "C31" (at 240.03 55.8862 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 240.03 58.4262 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 237.49 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 237.49 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 237.49 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 237.49 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 237.49 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ab334dc9-5863-4853-8edd-1ada490cf1c2") ) (pin "2" (uuid "85b7a253-3b40-447a-8fb9-eb13c0897632") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C31") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 49.53 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "fc6c8e15-a262-4b02-88cd-fdf30196bc30") (property "Reference" "H2" (at 52.07 184.1499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 52.07 186.6899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 49.53 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a6f8bf61-c9e4-4d10-a0f0-e5e25a074e51") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "H2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized") (at 250.19 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fcc16a5d-4d1c-4d4a-ba5a-f37cbdc9b768") (property "Reference" "C30" (at 252.73 132.08 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 250.19 134.62 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 251.1552 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 250.19 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor" (at 250.19 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 250.19 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 250.19 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7ea02e0b-fb26-409a-b5cd-535f77cfb691") ) (pin "2" (uuid "f5275cea-17a0-406c-90e1-a31fc6de4104") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (reference "C30") (unit 1) ) ) ) ) (sheet (at 144.78 176.53) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "20cc4b05-e726-4b05-ab1c-64b5db072e26") (property "Sheetname" "Power Rails" (at 144.78 175.8184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "power.kicad_sch" (at 144.78 180.9246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "3") ) ) ) ) (sheet (at 144.78 187.96) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4d4dd17e-947f-4b3c-bd12-d4039fccae25") (property "Sheetname" "Fan Channels" (at 144.78 187.2484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "fan_channels.kicad_sch" (at 144.78 192.3546 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "2") ) ) ) ) (sheet (at 144.78 163.83) (size 26.67 3.81) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4e9d9bbb-bb4b-4f71-a57a-a915249deb73") (property "Sheetname" "Sensors & Connectors" (at 144.78 163.1184 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sensors.kicad_sch" (at 144.78 168.2246 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "12") ) ) ) ) (sheet_instances (path "/" (page "1") ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/power.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "028ff83f-3fa5-4d87-a092-2685b6e33322") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Polarized_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "cap capacitor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "CP_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Polarized_Small_0_1" (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858) (stroke (width 0) (type default) ) (fill (type outline) ) ) (rectangle (start -1.524 0.6858) (end 1.524 0.3048) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.524) (xy -0.762 1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 1.27) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "C_Polarized_Small_1_1" (pin passive line (at 0 2.54 270) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 1.8542) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_0_1" (polyline (pts (xy -1.27 1.27) (xy -1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_Schottky" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode Schottky" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_Schottky_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_Schottky_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Regulator_Linear:AP1117-ADJ" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -3.81 3.175 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AP1117-ADJ" (at 0 3.175 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 2.54 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "linear regulator ldo adjustable positive obsolete" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "SOT?223*TabPin2*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AP1117-ADJ_0_1" (rectangle (start -5.08 -5.08) (end 5.08 1.905) (stroke (width 0.254) (type default) ) (fill (type background) ) ) ) (symbol "AP1117-ADJ_1_1" (pin input line (at 0 -7.62 90) (length 2.54) (name "ADJ" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_out line (at 7.62 0 180) (length 2.54) (name "VO" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin power_in line (at -7.62 0 0) (length 2.54) (name "VI" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+5V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+5V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+5V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) ) (junction (at 128.27 64.77) (diameter 0) (color 0 0 0 0) (uuid "01f7cfbe-9fad-4094-9428-ea8af2611bbc") ) (junction (at 158.75 31.75) (diameter 0) (color 0 0 0 0) (uuid "0d6e2ce9-4a83-4614-a1c6-2896d8d965ca") ) (junction (at 135.89 60.96) (diameter 0) (color 0 0 0 0) (uuid "295360cf-ee4d-440e-a32b-a0ee0c9db935") ) (junction (at 100.33 60.96) (diameter 0) (color 0 0 0 0) (uuid "5b8c9230-37b9-45e6-9def-26062bb34596") ) (junction (at 231.14 80.01) (diameter 0) (color 0 0 0 0) (uuid "63654d43-f757-49f5-a7a4-b2b333a03904") ) (junction (at 196.85 31.75) (diameter 0) (color 0 0 0 0) (uuid "6c57b5d5-7086-4a24-b79d-624268d804cd") ) (junction (at 180.34 31.75) (diameter 0) (color 0 0 0 0) (uuid "6f095a89-114c-4f7e-b7c9-3e7dc213e815") ) (junction (at 124.46 31.75) (diameter 0) (color 0 0 0 0) (uuid "80b6ead8-eb08-46d1-a087-4ae924840747") ) (junction (at 213.36 80.01) (diameter 0) (color 0 0 0 0) (uuid "92527673-be04-4bd1-8305-6af910966a9e") ) (junction (at 167.64 60.96) (diameter 0) (color 0 0 0 0) (uuid "a44e3f52-9a15-406b-8e1e-7eafe1d62cef") ) (junction (at 135.89 31.75) (diameter 0) (color 0 0 0 0) (uuid "a5305bac-19bc-475a-b7b0-218d11c8a355") ) (junction (at 158.75 44.45) (diameter 0) (color 0 0 0 0) (uuid "a851c512-8f77-4f46-8a15-29ba207e17d9") ) (junction (at 248.92 59.69) (diameter 0) (color 0 0 0 0) (uuid "b1db5784-d15c-4b56-a77a-94f715ca25cf") ) (junction (at 158.75 60.96) (diameter 0) (color 0 0 0 0) (uuid "c8721b86-c795-4cae-adf8-1a7a6136e421") ) (junction (at 128.27 31.75) (diameter 0) (color 0 0 0 0) (uuid "d609b045-b818-413d-8bd7-c32a13cef10a") ) (junction (at 100.33 31.75) (diameter 0) (color 0 0 0 0) (uuid "d66b1e7b-0bb3-45cc-b75b-3a033a7e140d") ) (junction (at 128.27 60.96) (diameter 0) (color 0 0 0 0) (uuid "dab80573-24a5-4d12-bb65-ff635d54695c") ) (junction (at 213.36 124.46) (diameter 0) (color 0 0 0 0) (uuid "ea9d622c-abdb-422c-a911-35ec1e1138eb") ) (junction (at 231.14 124.46) (diameter 0) (color 0 0 0 0) (uuid "ebed54b1-d5a7-4f45-8b9b-5703e12747dc") ) (junction (at 77.47 38.1) (diameter 0) (color 0 0 0 0) (uuid "ed5f4811-5edd-483f-b7f6-9d1e485fb88e") ) (junction (at 224.79 31.75) (diameter 0) (color 0 0 0 0) (uuid "f0cfee1e-2f27-4984-aed7-03f14161fd53") ) (junction (at 180.34 60.96) (diameter 0) (color 0 0 0 0) (uuid "f8689401-17d4-4228-8fc1-93e983e3e6cd") ) (junction (at 247.65 31.75) (diameter 0) (color 0 0 0 0) (uuid "fa77a7e6-cbd5-4f72-9c67-6c75f7f83ce1") ) (wire (pts (xy 167.64 53.34) (xy 167.64 60.96) ) (stroke (width 0) (type default) ) (uuid "028950f4-bef2-4cbe-9a33-a3dd6a71321d") ) (wire (pts (xy 148.59 39.37) (xy 148.59 44.45) ) (stroke (width 0) (type default) ) (uuid "061db99e-deab-4ffc-89a0-9df41413c93c") ) (wire (pts (xy 224.79 31.75) (xy 247.65 31.75) ) (stroke (width 0) (type default) ) (uuid "0807a7ca-530a-4fed-90ca-b08f9efbcec6") ) (wire (pts (xy 231.14 124.46) (xy 213.36 124.46) ) (stroke (width 0) (type default) ) (uuid "13170e57-9c1c-41a7-9858-fd30d0dd0fa2") ) (wire (pts (xy 196.85 31.75) (xy 224.79 31.75) ) (stroke (width 0) (type default) ) (uuid "18caae6f-2368-4aef-902f-14b0b1e39866") ) (wire (pts (xy 100.33 31.75) (xy 113.03 31.75) ) (stroke (width 0) (type default) ) (uuid "1c96e085-cdd1-4017-bab4-9b23052a3a39") ) (wire (pts (xy 180.34 39.37) (xy 180.34 31.75) ) (stroke (width 0) (type default) ) (uuid "2121f181-8d22-4040-b1e5-4398d7228ad2") ) (wire (pts (xy 128.27 60.96) (xy 128.27 64.77) ) (stroke (width 0) (type default) ) (uuid "21557492-85dd-41ed-9262-989cf42befd4") ) (wire (pts (xy 213.36 80.01) (xy 231.14 80.01) ) (stroke (width 0) (type default) ) (uuid "2aded452-f504-4f03-a076-548465232ec2") ) (wire (pts (xy 99.06 31.75) (xy 100.33 31.75) ) (stroke (width 0) (type default) ) (uuid "2bf20a9e-ba7f-4cde-94b6-20c9a0779c8e") ) (wire (pts (xy 158.75 44.45) (xy 158.75 46.99) ) (stroke (width 0) (type default) ) (uuid "2f3c6d8e-581c-4b2e-bf7d-a9cdedc021a8") ) (wire (pts (xy 224.79 31.75) (xy 224.79 41.91) ) (stroke (width 0) (type default) ) (uuid "34377ce7-06d6-48b2-9ccd-4c0b78616faf") ) (wire (pts (xy 135.89 31.75) (xy 140.97 31.75) ) (stroke (width 0) (type default) ) (uuid "36c4922a-64f4-402a-be2e-56b47c4822ab") ) (wire (pts (xy 77.47 38.1) (xy 95.25 38.1) ) (stroke (width 0) (type default) ) (uuid "3a2caa59-e3b4-48dc-93bb-785b8ec894c0") ) (wire (pts (xy 193.04 31.75) (xy 196.85 31.75) ) (stroke (width 0) (type default) ) (uuid "3a5b4a82-7987-48f2-a345-4716621e4ca6") ) (wire (pts (xy 180.34 31.75) (xy 185.42 31.75) ) (stroke (width 0) (type default) ) (uuid "3c79c968-ef02-4cc7-8148-1cb6969386e6") ) (wire (pts (xy 213.36 93.98) (xy 213.36 91.44) ) (stroke (width 0) (type default) ) (uuid "3de98d5f-595f-4c1c-a8bc-e8320e5d4cd6") ) (wire (pts (xy 156.21 31.75) (xy 158.75 31.75) ) (stroke (width 0) (type default) ) (uuid "46ffb84b-cd87-4b66-b7a9-8725206f69c2") ) (wire (pts (xy 128.27 64.77) (xy 128.27 66.04) ) (stroke (width 0) (type default) ) (uuid "4c819dc5-ede9-4b9e-9dd8-605261e8951f") ) (wire (pts (xy 77.47 58.42) (xy 77.47 60.96) ) (stroke (width 0) (type default) ) (uuid "527d596f-ae05-412c-90e2-c31451909bba") ) (wire (pts (xy 128.27 39.37) (xy 128.27 31.75) ) (stroke (width 0) (type default) ) (uuid "5297f216-50eb-4556-be39-94fd70cc5745") ) (wire (pts (xy 158.75 41.91) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "5a838764-fdbe-4c2f-8ddd-58a5aa169724") ) (wire (pts (xy 180.34 44.45) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "5cb79303-dad1-4856-bee3-a66f14ec97e2") ) (wire (pts (xy 231.14 124.46) (xy 231.14 128.27) ) (stroke (width 0) (type default) ) (uuid "606ad181-be65-4215-91ef-9bd8d1bd38ad") ) (wire (pts (xy 100.33 31.75) (xy 100.33 41.91) ) (stroke (width 0) (type default) ) (uuid "62ee965a-4821-4d94-887b-1a5d04f7039b") ) (wire (pts (xy 158.75 31.75) (xy 158.75 34.29) ) (stroke (width 0) (type default) ) (uuid "662c5b79-2f9c-4dff-b8ba-21b972d1581e") ) (wire (pts (xy 213.36 139.7) (xy 213.36 137.16) ) (stroke (width 0) (type default) ) (uuid "67c2175d-daf9-4462-9d89-ff28037e0bde") ) (wire (pts (xy 213.36 101.6) (xy 213.36 105.41) ) (stroke (width 0) (type default) ) (uuid "68de57ac-038c-423d-9c01-18a694f49867") ) (wire (pts (xy 135.89 60.96) (xy 158.75 60.96) ) (stroke (width 0) (type default) ) (uuid "79d374d1-e055-4e2b-9817-91ba266ac8a0") ) (wire (pts (xy 148.59 44.45) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "7c2eae6c-553a-4662-8c97-23af07dedb7c") ) (wire (pts (xy 77.47 38.1) (xy 77.47 41.91) ) (stroke (width 0) (type default) ) (uuid "7d8095ea-709e-403c-967c-1f115dd03bd6") ) (wire (pts (xy 124.46 31.75) (xy 128.27 31.75) ) (stroke (width 0) (type default) ) (uuid "82eabb8f-719a-4b79-9930-0fb8907c6cd6") ) (wire (pts (xy 231.14 82.55) (xy 231.14 80.01) ) (stroke (width 0) (type default) ) (uuid "83026252-dd5b-4063-b1c6-b0255100cfac") ) (wire (pts (xy 248.92 59.69) (xy 260.35 59.69) ) (stroke (width 0) (type default) ) (uuid "85cf0908-f81d-4c94-8e67-beb03d79aaf1") ) (wire (pts (xy 77.47 60.96) (xy 100.33 60.96) ) (stroke (width 0) (type default) ) (uuid "899203bc-a634-4416-b35a-271e69ef5882") ) (wire (pts (xy 231.14 80.01) (xy 254 80.01) ) (stroke (width 0) (type default) ) (uuid "8c263423-237a-4eda-8162-18bd6618b21b") ) (wire (pts (xy 196.85 31.75) (xy 196.85 35.56) ) (stroke (width 0) (type default) ) (uuid "8ca4aba5-7438-4fc7-929d-694f656ce194") ) (wire (pts (xy 128.27 31.75) (xy 135.89 31.75) ) (stroke (width 0) (type default) ) (uuid "8e789506-b14f-4139-9fbd-4c9e4150a674") ) (wire (pts (xy 124.46 64.77) (xy 128.27 64.77) ) (stroke (width 0) (type default) ) (uuid "8f03fe41-4544-4313-8dfa-ded50798111f") ) (wire (pts (xy 167.64 60.96) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "924ad17e-87dc-466e-9ecd-708486820e3a") ) (wire (pts (xy 100.33 49.53) (xy 100.33 50.8) ) (stroke (width 0) (type default) ) (uuid "93812bcf-8c0c-4a19-a2a0-d5c27b91df0f") ) (wire (pts (xy 46.99 38.1) (xy 77.47 38.1) ) (stroke (width 0) (type default) ) (uuid "9648eae9-b473-4dc5-9551-e384fad29c1d") ) (wire (pts (xy 247.65 31.75) (xy 247.65 33.02) ) (stroke (width 0) (type default) ) (uuid "975f12a4-518b-44d8-88c9-a118d9fbb2c4") ) (wire (pts (xy 224.79 59.69) (xy 248.92 59.69) ) (stroke (width 0) (type default) ) (uuid "9a2c15b4-3896-45bc-a27d-68a116687fe2") ) (wire (pts (xy 100.33 60.96) (xy 128.27 60.96) ) (stroke (width 0) (type default) ) (uuid "9b9a84e1-7f5f-4dbe-a185-1b5e2c41d78e") ) (wire (pts (xy 128.27 44.45) (xy 128.27 60.96) ) (stroke (width 0) (type default) ) (uuid "a1fc5aea-ea2a-4c21-9d1f-1f6fc017bdf8") ) (wire (pts (xy 100.33 58.42) (xy 100.33 60.96) ) (stroke (width 0) (type default) ) (uuid "a3f66686-b443-4515-95a5-8cf0fca17b9a") ) (wire (pts (xy 77.47 49.53) (xy 77.47 50.8) ) (stroke (width 0) (type default) ) (uuid "abbf254e-6709-43b1-934f-ad896d11b8a0") ) (wire (pts (xy 135.89 31.75) (xy 135.89 39.37) ) (stroke (width 0) (type default) ) (uuid "acb7986d-7240-4a82-ba35-d16785b62188") ) (wire (pts (xy 128.27 60.96) (xy 135.89 60.96) ) (stroke (width 0) (type default) ) (uuid "b695eb0c-10b2-4b92-86c1-39971818c939") ) (wire (pts (xy 158.75 54.61) (xy 158.75 60.96) ) (stroke (width 0) (type default) ) (uuid "c07a7704-11a1-4240-a2f0-e08014e8da61") ) (wire (pts (xy 196.85 45.72) (xy 196.85 43.18) ) (stroke (width 0) (type default) ) (uuid "c7b868c9-2bb8-4cc3-b568-6a4b13859c70") ) (wire (pts (xy 120.65 31.75) (xy 124.46 31.75) ) (stroke (width 0) (type default) ) (uuid "cb5e1a95-b86f-4dcc-ba68-746f23b5cb1e") ) (wire (pts (xy 196.85 53.34) (xy 196.85 60.96) ) (stroke (width 0) (type default) ) (uuid "cfc6eb53-5338-45e2-b660-71655399984b") ) (wire (pts (xy 213.36 147.32) (xy 213.36 152.4) ) (stroke (width 0) (type default) ) (uuid "d058f378-5aa6-4f03-8ace-ef6560686c6d") ) (wire (pts (xy 158.75 60.96) (xy 167.64 60.96) ) (stroke (width 0) (type default) ) (uuid "d5082638-32c4-4781-a5ec-6b9ad17c7ab8") ) (wire (pts (xy 167.64 48.26) (xy 167.64 44.45) ) (stroke (width 0) (type default) ) (uuid "d973601e-8aaa-4ed8-92ef-b86b1e281e8f") ) (wire (pts (xy 224.79 49.53) (xy 224.79 59.69) ) (stroke (width 0) (type default) ) (uuid "dd721f7c-4ed8-4c2f-b871-31c9de70f438") ) (wire (pts (xy 248.92 60.96) (xy 248.92 59.69) ) (stroke (width 0) (type default) ) (uuid "e11c9d45-8be5-4f8d-8bd3-d644f6e2f30f") ) (wire (pts (xy 167.64 44.45) (xy 158.75 44.45) ) (stroke (width 0) (type default) ) (uuid "e5f0aaba-0a61-4dbe-99d1-08926f9b9517") ) (wire (pts (xy 63.5 80.01) (xy 213.36 80.01) ) (stroke (width 0) (type default) ) (uuid "e7bac6d2-644a-416a-a5d8-8a88a91ae6ec") ) (wire (pts (xy 247.65 31.75) (xy 259.08 31.75) ) (stroke (width 0) (type default) ) (uuid "e8f46775-cd2b-4558-b261-76d8bd480661") ) (wire (pts (xy 135.89 44.45) (xy 135.89 60.96) ) (stroke (width 0) (type default) ) (uuid "ec18daec-7f06-479c-8c04-4fc52233c5b4") ) (wire (pts (xy 63.5 124.46) (xy 213.36 124.46) ) (stroke (width 0) (type default) ) (uuid "ec817dff-e7ef-492e-8264-380fadc5bcdb") ) (wire (pts (xy 213.36 80.01) (xy 213.36 83.82) ) (stroke (width 0) (type default) ) (uuid "f071de68-a1f6-47bb-8a7a-c6e049926ec3") ) (wire (pts (xy 158.75 31.75) (xy 180.34 31.75) ) (stroke (width 0) (type default) ) (uuid "f29dfbc1-fb05-4709-bf72-552d658008a4") ) (wire (pts (xy 213.36 124.46) (xy 213.36 129.54) ) (stroke (width 0) (type default) ) (uuid "fb172360-4b51-4746-9422-75bd49ab684b") ) (wire (pts (xy 46.99 25.4) (xy 95.25 25.4) ) (stroke (width 0) (type default) ) (uuid "fbacd240-e4c7-44a7-b48b-ac7aeb4ae5a7") ) (wire (pts (xy 237.49 124.46) (xy 231.14 124.46) ) (stroke (width 0) (type default) ) (uuid "fc07276d-4a2d-4d1c-af4e-24eda2f5877b") ) (wire (pts (xy 196.85 60.96) (xy 180.34 60.96) ) (stroke (width 0) (type default) ) (uuid "fd734556-b18c-487c-b6de-67bc81064261") ) (text "Power Rails" (exclude_from_sim no) (at 16.51 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "7d750c9d-d7d6-4011-9a1b-8a5d88cec8a2") ) (label "5V_REG_SEL" (at 100.33 31.75 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3dbd1529-22e5-43b9-a95b-78b769269bd8") ) (label "5V_REG_OUT" (at 162.56 31.75 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d8d8238b-3b6a-4f08-97af-a0bb65fe2766") ) (label "5V_REG_IN" (at 129.54 31.75 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e252f25d-c54c-4a71-9c11-9eb30a14741f") ) (global_label "VBUS" (shape input) (at 63.5 124.46 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3771d436-d487-49e5-83b7-fcd97c1f5d27") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 56.1883 124.3806 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "FAN1_PWR" (shape input) (at 46.99 25.4 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bad1944-0108-439d-b369-761cb5c3c2be") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 34.9007 25.3206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "3V3" (shape input) (at 63.5 80.01 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a00767bf-f242-4dfb-832c-ee8e323f4f11") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 57.5793 79.9306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AUX12V" (shape input) (at 46.99 38.1 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a7fbbebb-dae0-474d-ba96-bdbb68d5e57f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 37.4407 38.0206 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape output) (at 260.35 59.69 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f4097e6f-2c94-48b9-9f49-6b8002f84a57") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 267.3593 59.6106 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 124.46 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0afd2e10-551d-403d-8ebb-a3569d0a20dd") (property "Reference" "#FLG02" (at 124.46 29.845 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 124.46 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 124.46 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b9a9cd4b-d07a-4f35-a4df-82c7c4694f56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG02") (unit 1) ) ) ) ) (symbol (lib_id "Device:D") (at 116.84 31.75 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "14a165bd-0b65-4fb0-9565-152bd6300a32") (property "Reference" "D3" (at 116.84 34.29 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "ES1D 1A 200V" (at 116.84 36.83 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Diode" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C445494" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Device" "D" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Sim.Pins" "1=K 2=A" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 116.84 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ba70beda-274f-468b-b8a2-3813abb44b54") ) (pin "2" (uuid "f3d1557e-197c-4dbe-96d6-1cac9319a82d") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D3") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 213.36 133.35 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1fde763e-90ef-4ddc-b2e5-d750ee01b070") (property "Reference" "R7" (at 215.9 132.0799 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 215.9 134.6199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 211.582 133.35 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78d336ba-1d45-453f-9418-f4cf06fef625") ) (pin "2" (uuid "55707ce6-f84d-4d75-9aa2-a9ad19f844fc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R7") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 100.33 54.61 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "20071802-f4ee-4e33-9790-71f90550e35d") (property "Reference" "D35" (at 104.14 54.9274 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 104.14 57.4674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 100.33 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 100.33 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 100.33 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78e3147c-fb65-4c57-9233-9a1fb8f0bc2d") ) (pin "2" (uuid "b4eed141-8b40-45e5-9531-2f244c5b9282") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D35") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 180.34 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "27625c54-6268-4c25-bed4-fca1fa7ca75b") (property "Reference" "C8" (at 182.88 39.37 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 182.88 41.91 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 180.34 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "22dc2c98-8d2b-431e-b86a-f393bbea74b2") ) (pin "2" (uuid "f497ede9-bde6-4106-aea6-35c91bbc22f6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C8") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 196.85 49.53 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2fe78790-cca2-409c-b93b-37aabedf28fc") (property "Reference" "D4" (at 200.66 49.8474 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 200.66 52.3874 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 196.85 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "51ddc963-3d30-483d-9bc2-4132f910f060") ) (pin "2" (uuid "0156ed4a-ea56-4722-abd1-8c53663c89b8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D4") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 128.27 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "35b8e5b7-86db-4767-83b8-139f441e0d15") (property "Reference" "#FLG06" (at 231.14 130.175 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 231.14 133.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 231.14 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4938ca89-1a60-4caa-8779-14f9b0939b54") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG06") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 213.36 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "401ebed2-9a6b-4f43-85e9-9d349e9ed2dc") (property "Reference" "#PWR030" (at 213.36 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 213.36 110.49 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 213.36 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7cd3cb58-bf4e-48e0-9688-82d0eaadfb11") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR030") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 95.25 31.75 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4ad1e273-b8c7-4692-8f20-a03965035fd5") (property "Reference" "JP1" (at 92.71 30.4799 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Power Selector" (at 92.71 33.0199 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 95.25 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 95.25 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 95.25 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 95.25 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "01f8a431-8f1d-484b-adfb-52bf91b14015") ) (pin "2" (uuid "fad53864-49be-498c-8ddb-8660fa441076") ) (pin "3" (uuid "bf161ecb-0a1b-4f32-b753-7de2c5acf0fc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "JP1") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 196.85 39.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "536545a8-ec75-4173-afef-e4439b3a7241") (property "Reference" "R5" (at 199.39 38.0999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10k" (at 199.39 40.6399 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 195.072 39.37 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 196.85 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb5c2178-e587-4bcb-a28a-1cc92e885dee") ) (pin "2" (uuid "2590e1e1-9277-4805-91e0-0ff82117dd4b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R5") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 124.46 64.77 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "58655957-f60f-4545-8355-ae9b4994678a") (property "Reference" "#FLG01" (at 122.555 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 115.57 64.77 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 124.46 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a0d1c282-0cf5-4466-b722-e7221bb91d56") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG01") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 158.75 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5a65fde0-58e9-41b7-bb45-7d350448b336") (property "Reference" "R3" (at 161.29 36.8299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "330" (at 161.29 39.3699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 156.972 38.1 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C105881" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 158.75 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "94fbde5b-d434-4b17-9453-e8674feca3f2") ) (pin "2" (uuid "18aad770-9410-43bf-9964-de860ebb2447") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R3") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 167.64 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5cbb5df8-2bb6-4d5f-bb88-41a3b27c40d1") (property "Reference" "C7" (at 170.18 48.9838 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 16V" (at 170.18 51.5238 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7171" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 167.64 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2238d5cc-8204-4d20-9342-cd574c67db3a") ) (pin "2" (uuid "8d686ed2-73c8-42ff-a47d-31da8e433ade") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C7") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 77.47 45.72 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5de24edb-0b9c-4f50-ac3f-1caa590a2491") (property "Reference" "R2" (at 80.01 44.4499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 80.01 46.9899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 75.692 45.72 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 77.47 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 77.47 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 77.47 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 77.47 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "884e25f2-d181-4c22-bfed-b33fe1c3f7a8") ) (pin "2" (uuid "4a5a6558-8530-4ef8-95bf-a273cf95d5cb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R2") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 231.14 82.55 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "631d19df-47e9-46b5-9f03-a8b36e85564d") (property "Reference" "#FLG05" (at 231.14 84.455 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 231.14 87.63 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 231.14 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6a852513-0ca2-449a-8391-47d4d2773d84") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG05") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 213.36 97.79 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6823870e-28cc-4ec1-9b5a-c8beb3288006") (property "Reference" "D5" (at 217.17 98.1074 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 217.17 100.6474 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "14af03e9-cb54-48a8-bd97-db8352bc404b") ) (pin "2" (uuid "f5956280-eabc-48e6-b057-01316bad4e23") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D5") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 128.27 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "73191297-a3db-406e-bde7-d8a9700d1092") (property "Reference" "#PWR029" (at 128.27 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 128.27 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "72785cea-756d-4fe3-a390-f369061f060c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR029") (unit 1) ) ) ) ) (symbol (lib_id "power:+5V") (at 259.08 31.75 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "80fe98ae-b6bb-4c4d-a328-2228685fe207") (property "Reference" "#PWR032" (at 255.27 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+5V" (at 262.89 31.75 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+5V\"" (at 259.08 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c83113b7-e000-4a47-b128-d3671363e710") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR032") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 189.23 31.75 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "957eba50-6218-4e9d-a149-15ba007c2986") (property "Reference" "F2" (at 189.23 25.4 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 0.5A" (at 189.23 27.94 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 194.31 30.48 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C70072" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 189.23 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e4b2258e-bc50-4151-87f8-7e6b714f7d85") ) (pin "2" (uuid "702dd0c1-69e1-46a2-8bbf-7ea1ed37c4d2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "F2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Polarized_Small") (at 128.27 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9a6664d9-b6d9-4e81-817a-45c56239601e") (property "Reference" "C5" (at 123.19 40.64 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "10uF 25V" (at 116.84 43.18 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Polarized capacitor, small symbol" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C7194" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 128.27 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0f7544a4-ab8e-4f9b-91e3-5ba4e92e1ac4") ) (pin "2" (uuid "d281f145-6fd2-4512-9610-2764ef377070") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C5") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 100.33 45.72 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a9765eb4-7a11-4871-96a6-95d76921901d") (property "Reference" "R58" (at 102.87 44.4499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "49.9k" (at 102.87 46.9899 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 98.552 45.72 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 100.33 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 100.33 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ce70dcd6-c073-4862-aa4c-15805dcc1a34") ) (pin "2" (uuid "0f990af2-161e-4c71-a8bb-159158e56113") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R58") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 213.36 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "adba1fff-18c7-4fb6-97ae-324d243206c4") (property "Reference" "R6" (at 215.9 86.3599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "4.99k" (at 215.9 88.8999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 211.582 87.63 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114621" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ab6a180-794c-4ae0-bfa8-8c147a7fcef0") ) (pin "2" (uuid "9328c8c3-dcd3-4f00-a39f-fade45afabd1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R6") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 77.47 54.61 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ae4c6832-7e1c-4f4b-ac6d-c01372ca166a") (property "Reference" "D2" (at 81.28 54.9274 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 81.28 57.4674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 77.47 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 77.47 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 77.47 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 77.47 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 77.47 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8dc2c278-649b-4b66-a670-554bd943e6f6") ) (pin "2" (uuid "5afd1d61-5397-4e1a-9839-3af491bcebc1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D2") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 135.89 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b1335ea9-16da-44b9-9459-ec64501666b6") (property "Reference" "C6" (at 138.43 40.6462 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 138.43 43.1862 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 135.89 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2a91e0f5-8fd2-4fe3-9f2f-3caaf609a99b") ) (pin "2" (uuid "ff020eb8-22f7-4c53-80dd-4c5acbbe8264") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "C6") (unit 1) ) ) ) ) (symbol (lib_id "Regulator_Linear:AP1117-ADJ") (at 148.59 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b685b9c5-84cd-4f37-a40e-eb8f5465d0dd") (property "Reference" "U5" (at 148.59 24.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "SPX1117-ADJ" (at 148.59 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 148.59 26.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "http://www.diodes.com/datasheets/AP1117.pdf" (at 151.13 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "1A Low Dropout regulator, positive, adjustable output, SOT-223" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C67402" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 148.59 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a03290dc-5bf4-4876-a5ed-0f8ec60ae61c") ) (pin "2" (uuid "a6a10f38-3a15-4ce8-b02b-272c6aa02efd") ) (pin "3" (uuid "db402ed9-a87f-4cb2-b55d-934694f81f2e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "U5") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 247.65 33.02 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "be6a7bdf-cba9-48c9-9015-b1568cb26ba6") (property "Reference" "#FLG04" (at 247.65 34.925 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 247.65 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 247.65 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "70589d68-386a-47b4-abbe-9d76d68b515b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG04") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 254 80.01 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c3081ad6-d8e8-417c-b4c4-67183007b70e") (property "Reference" "#PWR033" (at 250.19 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 257.81 80.0099 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 254 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5ea5c4e1-6059-4cb8-87a2-8a8c96f0d1b1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR033") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 213.36 152.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d897ff9f-88ca-49e6-a493-27aafac3931d") (property "Reference" "#PWR031" (at 213.36 158.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 213.36 157.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 213.36 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c40bebcb-0c29-498a-ba2a-a58d3b3289e0") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#PWR031") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 248.92 60.96 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d9eb3553-5d5a-4c3d-8dfa-07b487c9d117") (property "Reference" "#FLG0103" (at 248.92 62.865 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 248.92 66.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 248.92 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "04913c01-2419-4361-b51c-791942f7b220") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "#FLG0103") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 158.75 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "dc0edcf1-e4ae-4d13-8878-e41c43e1c18b") (property "Reference" "R4" (at 161.29 49.5299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1k" (at 161.29 52.0699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 156.972 50.8 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22548" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 158.75 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1ee86bd9-870e-432d-a2ab-540290a16777") ) (pin "2" (uuid "8a0775a2-408d-4757-a8ce-641d2be1ef58") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "R4") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 213.36 143.51 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e4222b25-30ab-4bc3-8190-1f6c39b74dbb") (property "Reference" "D6" (at 217.17 143.8274 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "LED 0805 (green)" (at 217.17 146.3674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 213.36 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "80f557a6-2d76-417e-bf0b-8bda063ba0f9") ) (pin "2" (uuid "5a420f41-f924-4d93-b20d-c5b157a32cc2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D6") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_Schottky") (at 224.79 45.72 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "feba9514-0d4e-45e7-8d97-6a49db19119e") (property "Reference" "D1" (at 227.33 44.7674 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "SM5819PL 1A 40V" (at 227.33 47.3074 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SMA" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Schottky diode" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C669023 or C19992592" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 224.79 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d15b37e1-a5ca-49d1-a900-aa771cca720f") ) (pin "2" (uuid "9bdf9a7a-a184-4405-9f4f-bf9545518a5b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/20cc4b05-e726-4b05-ab1c-64b5db072e26" (reference "D1") (unit 1) ) ) ) ) ) ================================================ FILE: boards/fanpico-0804D/kicad/sensors.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "d585006f-9358-47f4-9303-a822a0a26736") (paper "A4") (title_block (title "FanPico-0804D v1.3b") (date "2024-08-29") (company "Timo Kokkonen ") (comment 3 "Fanpico firmware reference PCB.") ) (lib_symbols (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x02" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x02_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 1.27) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x03" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x03_1_1" (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 1.27 7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_02x05_Odd_Even_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 5.207) (end 0 4.953) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start -1.27 6.35) (end 3.81 -6.35) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (rectangle (start 3.81 -4.953) (end 2.54 -5.207) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 -2.413) (end 2.54 -2.667) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 0.127) (end 2.54 -0.127) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 2.667) (end 2.54 2.413) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 3.81 5.207) (end 2.54 4.953) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 5.08 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 -5.08 180) (length 3.81) (name "Pin_10" (effects (font (size 1.27 1.27) ) ) ) (number "10" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 5.08 180) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 2.54 180) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_5" (effects (font (size 1.27 1.27) ) ) ) (number "5" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 0 180) (length 3.81) (name "Pin_6" (effects (font (size 1.27 1.27) ) ) ) (number "6" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_7" (effects (font (size 1.27 1.27) ) ) ) (number "7" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 7.62 -2.54 180) (length 3.81) (name "Pin_8" (effects (font (size 1.27 1.27) ) ) ) (number "8" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_9" (effects (font (size 1.27 1.27) ) ) ) (number "9" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0.254 1.778 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "C_Small" (at 0.254 -2.032 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "capacitor cap" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "C_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_Small_0_1" (polyline (pts (xy -1.524 -0.508) (xy 1.524 -0.508) ) (stroke (width 0.3302) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 1.524 0.508) ) (stroke (width 0.3048) (type default) ) (fill (type none) ) ) ) (symbol "C_Small_1_1" (pin passive line (at 0 2.54 270) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -2.54 90) (length 2.032) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:D_TVS_Small" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "D_TVS_Small" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "D_TVS_Small_0_1" (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.508 1.016) (xy 0 1.016) (xy 0 -1.016) (xy -0.508 -1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 1.016) (xy -1.27 -1.016) (xy 1.27 1.016) (xy 1.27 -1.016) (xy -1.27 1.016) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "D_TVS_Small_1_1" (pin passive line (at -2.54 0 0) (length 1.27) (name "A1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 2.54 0 180) (length 1.27) (name "A2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_2_Open" (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom yes) (on_board yes) (property "Reference" "JP" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_2_Open" (at 0 -2.286 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPST" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*2Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_2_Open_0_0" (circle (center -2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 2.032 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_0_1" (arc (start 1.524 1.27) (mid 0 1.778) (end -1.524 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_2_Open_1_1" (pin passive line (at -5.08 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "JP" (at -2.54 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Jumper_3_Bridged12" (at 0 2.794 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "Jumper SPDT" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Jumper_3_Bridged12_0_0" (circle (center -3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (circle (center 3.302 0) (radius 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_0_1" (arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 -1.27) (xy 0 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Jumper_3_Bridged12_1_1" (pin passive line (at -6.35 0 0) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 2.54) (name "C" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 6.35 0 180) (length 2.54) (name "B" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:+3.3V" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "+3.3V_0_1" (polyline (pts (xy -0.762 1.27) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 0) (xy 0 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0.762 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "+3.3V_1_1" (pin power_in line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) ) (junction (at 82.55 171.45) (diameter 0) (color 0 0 0 0) (uuid "05264238-4bb7-43a0-82d6-b82bc1cb3e9d") ) (junction (at 236.22 30.48) (diameter 0) (color 0 0 0 0) (uuid "1758c02d-bb56-4a81-a7a2-79af230a65ef") ) (junction (at 254 85.09) (diameter 0) (color 0 0 0 0) (uuid "3b5aee16-2742-4864-b8c0-20638ee73c26") ) (junction (at 86.36 128.27) (diameter 0) (color 0 0 0 0) (uuid "3ed46b9a-5fa0-4a33-86f8-1b7105aab411") ) (junction (at 143.51 105.41) (diameter 0) (color 0 0 0 0) (uuid "518fc80d-b2ad-42c0-a550-6ff8be084388") ) (junction (at 232.41 138.43) (diameter 0) (color 0 0 0 0) (uuid "8b4528b3-ed09-40f1-950c-0c2b1561bb93") ) (junction (at 63.5 33.02) (diameter 0) (color 0 0 0 0) (uuid "8d6d84ae-550d-4bb8-8a37-b11861e3bd19") ) (junction (at 76.2 128.27) (diameter 0) (color 0 0 0 0) (uuid "91389b50-aa96-4685-9019-136f9f980e82") ) (junction (at 87.63 33.02) (diameter 0) (color 0 0 0 0) (uuid "939d4274-578d-4ff5-acad-753b7ce36b72") ) (junction (at 161.29 105.41) (diameter 0) (color 0 0 0 0) (uuid "966324f9-da69-4d56-ba50-7932782839e9") ) (junction (at 87.63 130.81) (diameter 0) (color 0 0 0 0) (uuid "9ea9920f-2988-4694-b35c-410fb41a572e") ) (junction (at 81.28 130.81) (diameter 0) (color 0 0 0 0) (uuid "a36ec13c-6a85-4480-95e7-c299d29a2f72") ) (junction (at 241.3 33.02) (diameter 0) (color 0 0 0 0) (uuid "b4ad9598-b8fb-4256-8077-3f758f78928b") ) (junction (at 149.86 130.81) (diameter 0) (color 0 0 0 0) (uuid "b503252a-0b60-4ff5-bd64-bb9383b44112") ) (junction (at 245.11 140.97) (diameter 0) (color 0 0 0 0) (uuid "b571bd82-00af-4850-89bc-49adc79b524f") ) (junction (at 48.26 125.73) (diameter 0) (color 0 0 0 0) (uuid "c2f60637-5e7d-4a57-8049-0ba2b7beecca") ) (junction (at 85.09 123.19) (diameter 0) (color 0 0 0 0) (uuid "c635f042-d7e7-41fd-b163-324dc0a239d3") ) (junction (at 83.82 125.73) (diameter 0) (color 0 0 0 0) (uuid "cfeb43d8-df2e-4069-b4c7-838776692622") ) (junction (at 87.63 76.2) (diameter 0) (color 0 0 0 0) (uuid "d8d4ae09-0e89-46ca-a91c-f33fd37d22d0") ) (junction (at 224.79 138.43) (diameter 0) (color 0 0 0 0) (uuid "d96461d6-16d9-44d9-9b78-575f18318f48") ) (junction (at 161.29 128.27) (diameter 0) (color 0 0 0 0) (uuid "e694b24c-5d17-4f74-b188-8dd9284f627e") ) (junction (at 63.5 76.2) (diameter 0) (color 0 0 0 0) (uuid "ec087b1e-38da-453c-b7d3-39ceb9080c5c") ) (junction (at 149.86 105.41) (diameter 0) (color 0 0 0 0) (uuid "ee265777-0a15-4dc6-856c-93ebc4c90df6") ) (junction (at 53.34 125.73) (diameter 0) (color 0 0 0 0) (uuid "fc204f00-b95a-4280-b7bb-fa2aab8c264d") ) (junction (at 143.51 125.73) (diameter 0) (color 0 0 0 0) (uuid "fcfd0a0f-62f4-4f3c-8d92-1bd50ad3797d") ) (no_connect (at 72.39 179.07) (uuid "399bf9af-2810-4d31-948c-f28cc8612949") ) (wire (pts (xy 63.5 22.86) (xy 132.08 22.86) ) (stroke (width 0) (type default) ) (uuid "00f410b0-15a8-4b41-9022-820ff4814c96") ) (wire (pts (xy 88.9 109.22) (xy 85.09 109.22) ) (stroke (width 0) (type default) ) (uuid "04c65aa8-1d6c-4a58-b92f-9b0151870a00") ) (wire (pts (xy 132.08 48.26) (xy 63.5 48.26) ) (stroke (width 0) (type default) ) (uuid "077f93c1-3305-4f8a-9a42-aa76eb0b30d1") ) (wire (pts (xy 87.63 114.3) (xy 87.63 130.81) ) (stroke (width 0) (type default) ) (uuid "0e097380-0d39-46e7-8476-09c8b4ef347d") ) (wire (pts (xy 53.34 76.2) (xy 63.5 76.2) ) (stroke (width 0) (type default) ) (uuid "0e3b0446-4649-4f96-941f-62a4a86d933e") ) (wire (pts (xy 161.29 105.41) (xy 161.29 110.49) ) (stroke (width 0) (type default) ) (uuid "1179089d-2f1d-4ce9-90ff-e21c420ce88f") ) (wire (pts (xy 53.34 139.7) (xy 53.34 143.51) ) (stroke (width 0) (type default) ) (uuid "198cc28a-f09e-4d6c-9e56-61702b35304b") ) (wire (pts (xy 116.84 78.74) (xy 132.08 78.74) ) (stroke (width 0) (type default) ) (uuid "19ef21f2-d39f-47dd-a593-8ed51ac6b64a") ) (wire (pts (xy 232.41 138.43) (xy 232.41 143.51) ) (stroke (width 0) (type default) ) (uuid "1da0aaba-eaa0-4597-b606-d78771fc2bc1") ) (wire (pts (xy 40.64 130.81) (xy 81.28 130.81) ) (stroke (width 0) (type default) ) (uuid "1e5e82f2-26bb-448d-a970-b64647d56f9b") ) (wire (pts (xy 143.51 115.57) (xy 143.51 125.73) ) (stroke (width 0) (type default) ) (uuid "2006c9ab-8cbf-48b1-8c5f-5d77f7ac6181") ) (wire (pts (xy 104.14 85.09) (xy 113.03 85.09) ) (stroke (width 0) (type default) ) (uuid "21e9e787-9a7d-467f-8a1d-5fc2791834e6") ) (wire (pts (xy 63.5 22.86) (xy 63.5 33.02) ) (stroke (width 0) (type default) ) (uuid "21ed8d62-3f95-43c3-8d54-5eba4cc044ac") ) (wire (pts (xy 87.63 29.21) (xy 87.63 33.02) ) (stroke (width 0) (type default) ) (uuid "249bbe64-b288-4ede-8987-d810752beafe") ) (wire (pts (xy 82.55 171.45) (xy 82.55 177.8) ) (stroke (width 0) (type default) ) (uuid "2697fd17-edd3-4161-9c08-c0b4cc49aa53") ) (polyline (pts (xy 194.31 106.68) (xy 270.51 106.68) ) (stroke (width 0) (type default) ) (uuid "26e96cd7-6f13-447c-beab-06aa46631838") ) (wire (pts (xy 149.86 130.81) (xy 173.99 130.81) ) (stroke (width 0) (type default) ) (uuid "2bd2ff0d-afb7-4957-8b6f-c007bc038ffd") ) (wire (pts (xy 63.5 33.02) (xy 87.63 33.02) ) (stroke (width 0) (type default) ) (uuid "2d993955-0e92-47f4-b697-c5f53634de79") ) (wire (pts (xy 236.22 41.91) (xy 236.22 43.18) ) (stroke (width 0) (type default) ) (uuid "2e968f5d-e1a8-4bb8-afb9-9c4240c2f5d6") ) (wire (pts (xy 229.87 33.02) (xy 241.3 33.02) ) (stroke (width 0) (type default) ) (uuid "2faeffa5-4b35-4dd1-ab24-5c703021d6d5") ) (wire (pts (xy 232.41 138.43) (xy 251.46 138.43) ) (stroke (width 0) (type default) ) (uuid "31a0f88e-abfb-40f8-aef3-9a7ba99ca289") ) (wire (pts (xy 215.9 138.43) (xy 224.79 138.43) ) (stroke (width 0) (type default) ) (uuid "324c197d-1b1e-40e1-a106-56c8ae02c441") ) (polyline (pts (xy 29.21 161.798) (xy 122.174 161.798) ) (stroke (width 0) (type default) ) (uuid "33e4e784-7fc7-4884-ade8-8a3b91af368b") ) (wire (pts (xy 213.36 92.71) (xy 227.33 92.71) ) (stroke (width 0) (type default) ) (uuid "376e2014-6111-4e55-8e06-b00646c75962") ) (wire (pts (xy 83.82 106.68) (xy 83.82 125.73) ) (stroke (width 0) (type default) ) (uuid "38e269b5-5a81-40a3-8f85-18c37c5b7289") ) (wire (pts (xy 245.11 148.59) (xy 245.11 149.86) ) (stroke (width 0) (type default) ) (uuid "3c2b9cd0-b897-4f82-ab2d-e262dfc02d4c") ) (wire (pts (xy 96.52 29.21) (xy 87.63 29.21) ) (stroke (width 0) (type default) ) (uuid "3ded02f6-3261-4d93-927b-60a0b8eda6be") ) (wire (pts (xy 228.6 140.97) (xy 245.11 140.97) ) (stroke (width 0) (type default) ) (uuid "405b955f-56bb-437e-a095-b470b77538b2") ) (wire (pts (xy 87.63 41.91) (xy 96.52 41.91) ) (stroke (width 0) (type default) ) (uuid "41b1de41-5ad9-4bdb-9a97-c9361c02ba95") ) (wire (pts (xy 143.51 125.73) (xy 173.99 125.73) ) (stroke (width 0) (type default) ) (uuid "49b8ba31-4647-4570-a710-7e5656a74686") ) (wire (pts (xy 53.34 33.02) (xy 63.5 33.02) ) (stroke (width 0) (type default) ) (uuid "49d6104e-9176-4f0e-aaa8-29e669a60268") ) (wire (pts (xy 63.5 90.17) (xy 63.5 78.74) ) (stroke (width 0) (type default) ) (uuid "4bff4d15-1446-4517-839c-9433d6f48458") ) (wire (pts (xy 224.79 121.92) (xy 218.44 121.92) ) (stroke (width 0) (type default) ) (uuid "4c4ed98a-27f6-46a1-b07d-2422eccdd1cc") ) (wire (pts (xy 48.26 134.62) (xy 48.26 125.73) ) (stroke (width 0) (type default) ) (uuid "4c847e76-c687-4d93-927f-09c67a125d70") ) (wire (pts (xy 236.22 30.48) (xy 236.22 36.83) ) (stroke (width 0) (type default) ) (uuid "4cab69f8-438e-4656-ac89-36ec2fc2bb24") ) (wire (pts (xy 63.5 76.2) (xy 87.63 76.2) ) (stroke (width 0) (type default) ) (uuid "4ce5bf56-c452-4e1d-bbe1-41bcfbeccefb") ) (wire (pts (xy 224.79 138.43) (xy 232.41 138.43) ) (stroke (width 0) (type default) ) (uuid "52c3dc56-1a3f-4fe7-853e-71ff80b34cea") ) (wire (pts (xy 127 125.73) (xy 143.51 125.73) ) (stroke (width 0) (type default) ) (uuid "5301bbf1-2996-470b-972a-115cd127a94f") ) (wire (pts (xy 143.51 105.41) (xy 149.86 105.41) ) (stroke (width 0) (type default) ) (uuid "5616e16d-e9b1-4430-9d2e-d3976082bc1e") ) (wire (pts (xy 53.34 125.73) (xy 53.34 134.62) ) (stroke (width 0) (type default) ) (uuid "594e2a7f-2a80-41d0-9c9d-dd82ecee68df") ) (wire (pts (xy 50.8 179.07) (xy 72.39 179.07) ) (stroke (width 0) (type default) ) (uuid "5ee5d8fe-d319-49d9-9bdb-d665692d4af4") ) (wire (pts (xy 27.94 125.73) (xy 48.26 125.73) ) (stroke (width 0) (type default) ) (uuid "5efb4ee5-db4c-4901-aede-2d0aac13d02f") ) (wire (pts (xy 63.5 66.04) (xy 132.08 66.04) ) (stroke (width 0) (type default) ) (uuid "60db9e27-0374-439a-8f9a-939b0aadab74") ) (wire (pts (xy 81.28 139.7) (xy 81.28 142.24) ) (stroke (width 0) (type default) ) (uuid "64f255aa-4d7c-4baf-b012-8c1e281435fc") ) (wire (pts (xy 63.5 48.26) (xy 63.5 35.56) ) (stroke (width 0) (type default) ) (uuid "6606d0e8-ac80-422e-aa4d-41d982eaa8cd") ) (wire (pts (xy 97.79 171.45) (xy 105.41 171.45) ) (stroke (width 0) (type default) ) (uuid "67d20fc3-6a51-4517-94de-98217e2a6d07") ) (wire (pts (xy 104.14 29.21) (xy 113.03 29.21) ) (stroke (width 0) (type default) ) (uuid "67d87b8d-be84-41ad-b997-4fc83a9e1381") ) (wire (pts (xy 88.9 106.68) (xy 83.82 106.68) ) (stroke (width 0) (type default) ) (uuid "6a01875d-df71-41fc-8c0c-1be221d3e79c") ) (wire (pts (xy 251.46 135.89) (xy 252.73 135.89) ) (stroke (width 0) (type default) ) (uuid "6b1b7ba5-c2b0-4174-8dbe-89d2be477505") ) (wire (pts (xy 40.64 128.27) (xy 76.2 128.27) ) (stroke (width 0) (type default) ) (uuid "6f26be5b-43e2-494b-8a61-4ca9043ad17d") ) (wire (pts (xy 149.86 105.41) (xy 149.86 110.49) ) (stroke (width 0) (type default) ) (uuid "70b94d78-4426-479e-83db-81ad23a10f0b") ) (wire (pts (xy 76.2 139.7) (xy 76.2 142.24) ) (stroke (width 0) (type default) ) (uuid "71125cdd-97cb-46f1-81de-7fd924d6c308") ) (wire (pts (xy 76.2 128.27) (xy 86.36 128.27) ) (stroke (width 0) (type default) ) (uuid "75f09bca-3b6a-44a6-ba56-58fbdc1e190f") ) (wire (pts (xy 245.11 140.97) (xy 245.11 143.51) ) (stroke (width 0) (type default) ) (uuid "763f3ab4-d5a5-42bd-ab8c-6b57705dd32b") ) (wire (pts (xy 241.3 41.91) (xy 241.3 43.18) ) (stroke (width 0) (type default) ) (uuid "797d9212-3da0-4496-abcc-308c456c53e3") ) (polyline (pts (xy 270.51 66.04) (xy 194.31 66.04) ) (stroke (width 0) (type default) ) (uuid "7b60be7a-8294-4a6f-9c33-957ad517142d") ) (wire (pts (xy 256.54 85.09) (xy 254 85.09) ) (stroke (width 0) (type default) ) (uuid "7c37ea8f-6b08-4035-bd02-e6f20ab3fe91") ) (wire (pts (xy 224.79 123.19) (xy 224.79 121.92) ) (stroke (width 0) (type default) ) (uuid "7d692e02-5a07-49d1-adc6-ef6496eccd06") ) (wire (pts (xy 87.63 85.09) (xy 87.63 76.2) ) (stroke (width 0) (type default) ) (uuid "7e5af5d1-cb1f-4eed-976a-64077d39aa3b") ) (wire (pts (xy 149.86 105.41) (xy 161.29 105.41) ) (stroke (width 0) (type default) ) (uuid "7ef8475b-91a1-4ce6-bfeb-331d79c12e7a") ) (wire (pts (xy 82.55 182.88) (xy 82.55 184.15) ) (stroke (width 0) (type default) ) (uuid "8245b34a-710d-4a7b-9fab-795dbf6ef28c") ) (wire (pts (xy 63.5 66.04) (xy 63.5 76.2) ) (stroke (width 0) (type default) ) (uuid "8916f103-fe47-4f1e-8585-81d31b6e452b") ) (wire (pts (xy 50.8 171.45) (xy 82.55 171.45) ) (stroke (width 0) (type default) ) (uuid "8a912b30-d979-4672-83a5-621c4aee4352") ) (wire (pts (xy 208.28 121.92) (xy 210.82 121.92) ) (stroke (width 0) (type default) ) (uuid "8cbd44d8-438a-45e7-8c72-5b788a8d08af") ) (wire (pts (xy 232.41 148.59) (xy 232.41 149.86) ) (stroke (width 0) (type default) ) (uuid "9266e795-b191-42b6-9cfc-d8d4cc77b51b") ) (wire (pts (xy 149.86 115.57) (xy 149.86 130.81) ) (stroke (width 0) (type default) ) (uuid "950b644a-a638-42c6-8663-9023260b959d") ) (wire (pts (xy 85.09 109.22) (xy 85.09 123.19) ) (stroke (width 0) (type default) ) (uuid "97897cab-9694-4af1-96f9-f4dd9241fbed") ) (wire (pts (xy 88.9 111.76) (xy 86.36 111.76) ) (stroke (width 0) (type default) ) (uuid "979df79b-51f7-4589-abef-58e28398c087") ) (wire (pts (xy 241.3 33.02) (xy 246.38 33.02) ) (stroke (width 0) (type default) ) (uuid "98dadf23-0f4d-49f4-936c-337fa2c8cd0b") ) (wire (pts (xy 104.14 41.91) (xy 113.03 41.91) ) (stroke (width 0) (type default) ) (uuid "98f28219-1903-423f-8493-20aabedec9cb") ) (wire (pts (xy 53.34 125.73) (xy 83.82 125.73) ) (stroke (width 0) (type default) ) (uuid "9b58a768-4db0-4173-a754-f35b0f337065") ) (wire (pts (xy 171.45 123.19) (xy 171.45 105.41) ) (stroke (width 0) (type default) ) (uuid "9c8636ef-d74e-478e-bc0e-f98416899c81") ) (wire (pts (xy 63.5 35.56) (xy 53.34 35.56) ) (stroke (width 0) (type default) ) (uuid "a16a9bb7-db53-4fc6-b3c4-23725deea405") ) (wire (pts (xy 86.36 111.76) (xy 86.36 128.27) ) (stroke (width 0) (type default) ) (uuid "a3a28806-20d6-4b71-9aa1-523aced2dc74") ) (wire (pts (xy 161.29 115.57) (xy 161.29 128.27) ) (stroke (width 0) (type default) ) (uuid "a3a60f84-49d5-4392-8adb-929b4bf2a975") ) (wire (pts (xy 53.34 78.74) (xy 63.5 78.74) ) (stroke (width 0) (type default) ) (uuid "a435e9a5-7616-4099-96f2-ede933ae7ed2") ) (wire (pts (xy 87.63 130.81) (xy 88.9 130.81) ) (stroke (width 0) (type default) ) (uuid "a64d260e-bab6-4121-a0d1-c1ab38f9cb50") ) (wire (pts (xy 83.82 125.73) (xy 88.9 125.73) ) (stroke (width 0) (type default) ) (uuid "a6eb682f-6127-49e6-a032-3526713defc2") ) (polyline (pts (xy 29.21 192.278) (xy 122.174 192.278) ) (stroke (width 0) (type default) ) (uuid "a72637bc-7482-47ed-8462-10e6fc7e31d8") ) (polyline (pts (xy 270.51 106.68) (xy 270.51 66.04) ) (stroke (width 0) (type default) ) (uuid "a83b3a5a-257b-43b9-9d28-3cbba2549a16") ) (wire (pts (xy 81.28 130.81) (xy 87.63 130.81) ) (stroke (width 0) (type default) ) (uuid "ac1c57de-dedc-4612-adc6-c0340f6fd886") ) (wire (pts (xy 81.28 130.81) (xy 81.28 134.62) ) (stroke (width 0) (type default) ) (uuid "ae6683eb-9188-4b61-907c-d7a2110c45aa") ) (wire (pts (xy 48.26 125.73) (xy 53.34 125.73) ) (stroke (width 0) (type default) ) (uuid "b7565c3d-6e4e-4ead-876a-339e22f01efe") ) (wire (pts (xy 236.22 30.48) (xy 246.38 30.48) ) (stroke (width 0) (type default) ) (uuid "b78c63b6-1589-400c-aaa7-3b7a827fbbdb") ) (wire (pts (xy 50.8 176.53) (xy 72.39 176.53) ) (stroke (width 0) (type default) ) (uuid "b8d81fc3-e785-4c6b-898f-db0a62b229e4") ) (wire (pts (xy 104.14 72.39) (xy 113.03 72.39) ) (stroke (width 0) (type default) ) (uuid "bd7ac43c-c4c0-4af3-b888-4db24c4cc50b") ) (wire (pts (xy 116.84 35.56) (xy 132.08 35.56) ) (stroke (width 0) (type default) ) (uuid "bdff4292-449a-408e-b737-210c242b7c9f") ) (wire (pts (xy 86.36 128.27) (xy 88.9 128.27) ) (stroke (width 0) (type default) ) (uuid "c4345f65-56b5-47aa-87ba-e8d1d07478c0") ) (wire (pts (xy 240.03 92.71) (xy 254 92.71) ) (stroke (width 0) (type default) ) (uuid "cb4203db-a22d-417c-ab33-1e9e58b02f0d") ) (wire (pts (xy 87.63 33.02) (xy 87.63 41.91) ) (stroke (width 0) (type default) ) (uuid "cdfeb42f-6696-4573-abda-3f7515f0d439") ) (polyline (pts (xy 29.21 192.278) (xy 29.21 161.798) ) (stroke (width 0) (type default) ) (uuid "cee9c282-a05f-4013-ab0e-d18b1d27a303") ) (wire (pts (xy 85.09 123.19) (xy 88.9 123.19) ) (stroke (width 0) (type default) ) (uuid "cff9000c-c4fc-4e1d-8016-b6a7d8ce94de") ) (wire (pts (xy 139.7 105.41) (xy 143.51 105.41) ) (stroke (width 0) (type default) ) (uuid "d20b2096-4ea8-4837-a59d-b4a1715dd98d") ) (wire (pts (xy 87.63 76.2) (xy 87.63 72.39) ) (stroke (width 0) (type default) ) (uuid "d20efc9b-0707-4e0d-9198-fcb9c7cd8e92") ) (wire (pts (xy 241.3 33.02) (xy 241.3 36.83) ) (stroke (width 0) (type default) ) (uuid "d222293d-9f03-40d3-b8cd-f16913b2d622") ) (polyline (pts (xy 194.31 66.04) (xy 194.31 106.68) ) (stroke (width 0) (type default) ) (uuid "d414fde8-c194-45ee-9c1b-44218d35b1eb") ) (wire (pts (xy 87.63 72.39) (xy 96.52 72.39) ) (stroke (width 0) (type default) ) (uuid "d5580b6d-1547-4903-bbc4-fd0ab88a6689") ) (wire (pts (xy 224.79 133.35) (xy 224.79 138.43) ) (stroke (width 0) (type default) ) (uuid "d60e648a-f3f8-40cb-b306-b02542b53e1d") ) (wire (pts (xy 139.7 128.27) (xy 161.29 128.27) ) (stroke (width 0) (type default) ) (uuid "d7b1a207-e0f9-4693-8485-b1ed52d66202") ) (wire (pts (xy 171.45 105.41) (xy 161.29 105.41) ) (stroke (width 0) (type default) ) (uuid "dcb27a5e-cef0-4cd3-b0cd-0ba08f100dc0") ) (wire (pts (xy 96.52 85.09) (xy 87.63 85.09) ) (stroke (width 0) (type default) ) (uuid "e078663f-f6ee-41ff-befc-1a2c87c034c5") ) (wire (pts (xy 50.8 173.99) (xy 72.39 173.99) ) (stroke (width 0) (type default) ) (uuid "e4116d09-79d7-482b-bc68-2a44fe25eef4") ) (wire (pts (xy 132.08 90.17) (xy 63.5 90.17) ) (stroke (width 0) (type default) ) (uuid "e63f4856-db36-46c6-9c02-2a6c34cdff98") ) (wire (pts (xy 88.9 114.3) (xy 87.63 114.3) ) (stroke (width 0) (type default) ) (uuid "e6a54040-88ed-41fa-bf58-b456c60f201c") ) (wire (pts (xy 161.29 128.27) (xy 173.99 128.27) ) (stroke (width 0) (type default) ) (uuid "e71ebd52-ecc6-41c2-a979-b45f40bb2ba8") ) (wire (pts (xy 254 92.71) (xy 254 85.09) ) (stroke (width 0) (type default) ) (uuid "e7267e4d-018e-4b58-b0a8-3b8c176ac8d8") ) (wire (pts (xy 76.2 128.27) (xy 76.2 134.62) ) (stroke (width 0) (type default) ) (uuid "e9108be6-e5f3-4cc2-af17-bf46f1892896") ) (wire (pts (xy 245.11 140.97) (xy 251.46 140.97) ) (stroke (width 0) (type default) ) (uuid "ea318429-c155-4011-96b8-778fc3f7c872") ) (wire (pts (xy 229.87 30.48) (xy 236.22 30.48) ) (stroke (width 0) (type default) ) (uuid "ebf283b9-11ef-41d9-8df3-997a691851f1") ) (wire (pts (xy 82.55 171.45) (xy 90.17 171.45) ) (stroke (width 0) (type default) ) (uuid "ecabde34-291c-46d9-a853-e1b9b58d297e") ) (wire (pts (xy 143.51 105.41) (xy 143.51 110.49) ) (stroke (width 0) (type default) ) (uuid "f0e2dec2-aa21-450b-8438-aac115025631") ) (wire (pts (xy 48.26 139.7) (xy 48.26 143.51) ) (stroke (width 0) (type default) ) (uuid "f43d1092-cc33-4216-aee3-132f201df66a") ) (wire (pts (xy 173.99 123.19) (xy 171.45 123.19) ) (stroke (width 0) (type default) ) (uuid "f63935c4-778f-4f84-9208-6bf169324664") ) (wire (pts (xy 139.7 130.81) (xy 149.86 130.81) ) (stroke (width 0) (type default) ) (uuid "f7197721-3810-4277-8b6d-cc97d9bd887d") ) (wire (pts (xy 40.64 123.19) (xy 85.09 123.19) ) (stroke (width 0) (type default) ) (uuid "f812479d-d27c-4b9c-982a-ad977a08b8ba") ) (wire (pts (xy 254 85.09) (xy 240.03 85.09) ) (stroke (width 0) (type default) ) (uuid "f8e89f6e-5646-4792-afd5-f4c0bc48d620") ) (wire (pts (xy 228.6 27.94) (xy 246.38 27.94) ) (stroke (width 0) (type default) ) (uuid "fb5c4415-29cc-4301-ba52-81f4c6d37b9e") ) (polyline (pts (xy 122.174 161.798) (xy 122.174 192.278) ) (stroke (width 0) (type default) ) (uuid "feca800e-838c-4ac5-88ce-b205341fa361") ) (rectangle (start 194.564 109.982) (end 270.764 156.972) (stroke (width 0) (type default) ) (fill (type none) ) (uuid bd338226-6b6b-4de1-b3ab-243124203da3) ) (text "Connectors / Sensors" (exclude_from_sim no) (at 19.05 17.78 0) (effects (font (size 2 2) ) (justify left bottom) ) (uuid "490ff861-9b1a-489c-8371-d793232cccff") ) (text "AUX Power Connector" (exclude_from_sim no) (at 68.58 165.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "63e848a9-e237-490d-b09d-aba8115e6505") ) (text "1-Wire Bus shares pins with Serial\n(This can't be used if Serial or SPI is in use)" (exclude_from_sim no) (at 234.442 114.554 0) (effects (font (size 1.27 1.27) ) ) (uuid "66f3f6ad-c7a9-4797-a7b3-492c14e98251") ) (text "Serial and I2C share MCU pins with SPI.\n(These can't be used if SPI is in use)" (exclude_from_sim no) (at 214.884 74.676 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "872e4ee1-8c89-4789-a63c-3846aa39575a") ) (label "AUX12_IN" (at 59.69 171.45 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5e41cf2e-f661-492b-9030-f5d4b6ae6c11") ) (global_label "TX_MISO" (shape input) (at 229.87 33.02 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "08c18cc4-1af6-48e7-92e1-e062fa26ce7d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 219.7159 32.9406 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 228.6 27.94 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e1334bd-23ef-489e-8565-a98a633c80d6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 222.3164 27.8606 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 240.03 90.17 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "161c2cf4-bf0f-4c07-8972-283fdbda7c4e") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.3136 90.2494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL_MOSI" (shape input) (at 40.64 128.27 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1dfb68bd-bc95-4c6d-9ab7-fd3ee11ceead") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.1555 128.1906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 252.73 135.89 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1f21d1c6-497c-4280-a7c4-5b135733c431") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 245.8743 135.89 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "SDA_SCK" (shape input) (at 40.64 130.81 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3b1fd764-973c-4159-8aa8-20713febd73c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.9417 130.7306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 240.03 95.25 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "4259f4f2-3546-4027-8088-674c0bb9d5cc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.3136 95.3294 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX_CS" (shape input) (at 229.87 30.48 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5753c167-6ec3-4788-b92d-354b21327b79") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 221.5302 30.4006 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 72.39 176.53 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "5905367f-3dc7-416a-bb02-4302428921bc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.6736 176.6094 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 139.7 105.41 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5c8b8088-0edd-47a4-ac04-befb6f3d9fbc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 133.4164 105.3306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 132.08 90.17 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "636ec398-3d70-4359-98b8-4ebd9a3143be") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 139.4521 90.2494 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL_MOSI" (shape input) (at 240.03 87.63 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "699aad88-1bb3-4bbd-8b29-64e419b540b0") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 251.5145 87.7094 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "RX_CS" (shape input) (at 227.33 90.17 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "77bd438f-f576-41eb-b9ea-41cb11db2e36") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 218.9902 90.0906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 132.08 35.56 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7988ac95-4624-454c-b52e-ec62e32b2c5c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.5969 35.4806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TX_MISO" (shape input) (at 227.33 85.09 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7bd478a7-b5fc-42f9-969f-0aaf955ab383") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 217.1759 85.0106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "VSYS" (shape input) (at 227.33 95.25 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8b8962f0-26e2-44db-955c-74b5d52a86a7") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.3207 95.1706 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 72.39 173.99 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "97418e30-d342-4cbd-9b71-5f2d1041e62f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 78.6736 174.0694 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SDA_SCK" (shape input) (at 139.7 128.27 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a2700ce9-d47d-421b-af0e-06277a9e567a") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.0017 128.1906 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "ADC_REF" (shape input) (at 132.08 78.74 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "aee7a529-6ac6-4a80-9568-e26a40779fdc") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 142.5969 78.6606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SCL_MOSI" (shape input) (at 139.7 130.81 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b9b03e6d-1d08-4e45-b005-b90ab1cfb65d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.2155 130.7306 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP1_READ" (shape input) (at 132.08 22.86 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c05c976b-1ed4-430c-aa71-ee5c6fb1a5ed") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.286 22.7806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 40.64 123.19 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c3c19ff0-1f21-4dd5-b725-a38516dc72dd") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 34.3564 123.1106 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TX_MISO" (shape input) (at 215.9 138.43 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cff7fa6c-1297-426b-979a-0e7438cc4403") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 205.7459 138.3506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "AUX12V" (shape output) (at 105.41 171.45 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d9855db4-938d-4902-9d2d-9958eeff7a74") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 114.9593 171.5294 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "SDA_SCK" (shape input) (at 227.33 87.63 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "de0cf31c-915b-41d4-9420-8f86718e8551") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 216.6317 87.5506 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TEMP2_READ" (shape input) (at 132.08 66.04 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f07b76b4-4f46-4a6e-9724-a7602f5db188") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.286 65.9606 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "AGND" (shape input) (at 132.08 48.26 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fb13280b-75f6-4af9-8280-b5793cf708fe") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 139.4521 48.1806 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 149.86 113.03 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "0ffd0e54-a376-4fb7-95dc-07d025a94cee") (property "Reference" "D73" (at 154.686 111.506 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 159.512 113.792 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 149.86 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 149.86 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 149.86 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 149.86 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "6bfe6d76-762b-4d40-9917-9e09a89b1a00") ) (pin "1" (uuid "1c9dbdc5-e921-4154-802d-275546665b76") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D73") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 214.63 121.92 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "1d1a8301-2e8c-4a8b-81b4-2a651297c3c3") (property "Reference" "R59" (at 214.63 124.46 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "4.7k" (at 214.63 119.38 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 214.63 120.142 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 214.63 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 214.63 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C99782" (at 214.63 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 214.63 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "406d7097-8998-45b5-b5b5-b9e282b376ec") ) (pin "2" (uuid "4064f17d-1409-4aa5-aaa5-5fc12d721d45") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R59") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 76.2 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "23afd3f4-36d3-42a8-9050-2e397ab66028") (property "Reference" "#PWR096" (at 76.2 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 76.2 147.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 76.2 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "145e72a6-093d-4f23-b4f1-225752e6e0f2") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR096") (unit 1) ) ) ) ) (symbol (lib_id "Device:C_Small") (at 48.26 137.16 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "28dd9e1e-dbf3-4782-9cbc-a3a86d1241f2") (property "Reference" "C32" (at 41.91 135.89 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "0.1uF" (at 40.64 138.43 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 48.26 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 48.26 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Unpolarized capacitor, small symbol" (at 48.26 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1591" (at 48.26 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 48.26 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "88cb34e0-405f-4907-9e0e-27d90265108d") ) (pin "2" (uuid "065266e7-8b6e-4f40-8a23-273672f2c3aa") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "C32") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 48.26 78.74 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "2ab9bb49-234a-4ed1-af89-c2604f58121c") (property "Reference" "J17" (at 45.72 72.39 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor2" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 48.26 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 48.26 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 48.26 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 48.26 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "78a9b55b-caff-4420-a6ae-19a7131d97be") ) (pin "2" (uuid "30a06f66-9fee-4536-b302-01811e2778bb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J17") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 81.28 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2aba8e86-a6ed-493d-b980-c30a76251638") (property "Reference" "#PWR095" (at 81.28 148.59 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 81.28 147.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 81.28 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 81.28 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 81.28 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "59222c38-31b5-498c-843b-14287f8c10e4") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR095") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 232.41 146.05 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3043139a-40d2-41e6-b8e9-62d1dbd52a4d") (property "Reference" "D36" (at 234.95 144.7799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 234.95 147.3199 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 232.41 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 232.41 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 232.41 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 232.41 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "577098bb-8264-41ec-8bc9-d56cfee8a501") ) (pin "1" (uuid "037bd2c1-2da9-4715-b796-3c7c1a74ccbc") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D36") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 45.72 176.53 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "32d11869-f2aa-448e-999e-866b16c452b4") (property "Reference" "J1" (at 43.18 176.5301 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Floppy / DC Connector" (at 57.15 182.88 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "FanPico:TE 171826-4 Floppy 4-pin Combo" (at 45.72 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 45.72 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 45.72 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 45.72 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C590635 / C720558" (at 45.72 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ff076654-70d7-4ea7-acc1-ca9f2cf66b02") ) (pin "2" (uuid "bf015ec5-74f2-4db6-8dd3-6bee265faa54") ) (pin "3" (uuid "f0771b12-0e44-4ffc-94d0-44335478b4f7") ) (pin "4" (uuid "6af8bfba-ab7b-49d4-aa4a-01b6b4ea1faf") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 232.41 149.86 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3a0dce97-57c7-48e4-aae4-4192ae66ec43") (property "Reference" "#PWR091" (at 232.41 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 232.41 154.94 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 232.41 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 232.41 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 232.41 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6b53b0ad-a04a-4c78-b221-c844011db011") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR091") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 113.03 78.74 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3be7e346-edf9-40ae-ac38-cc91a8a5fddd") (property "Reference" "JP11" (at 110.49 78.7399 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "NTC Value" (at 109.22 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 113.03 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 113.03 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 113.03 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 113.03 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7bf78f94-95ac-4ab3-bf3d-785debf049f1") ) (pin "2" (uuid "832fc1dd-d97f-47a8-b089-1a01c63b87d9") ) (pin "3" (uuid "61950248-00c8-472e-9ead-1d6c883cb5d8") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "JP11") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 82.55 180.34 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "45dbcc60-092e-4979-8b7d-84dc92a5cc97") (property "Reference" "D43" (at 85.09 179.0699 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "12V TVS" (at 85.09 181.6099 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 82.55 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 82.55 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 82.55 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C502541 or C5199168" (at 82.55 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "a39a1343-301c-45ae-8e84-f91ef54ffc20") ) (pin "1" (uuid "ea18a264-9a1f-4e67-9e39-214779c82505") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D43") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 93.98 171.45 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4c74a725-f10f-4273-b4be-b4c0a9315c7e") (property "Reference" "F1" (at 93.98 167.64 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 3A" (at 93.98 175.26 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 99.06 170.18 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 93.98 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 93.98 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C2977527" (at 93.98 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 93.98 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "4a6afc4c-451c-4825-b5d8-4c1046f2ba13") ) (pin "2" (uuid "dc9bb051-09b8-4555-8453-fa79b6e4832a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "F1") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 93.98 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d8b05b1-f18d-4998-9d6d-a27d459de37e") (property "Reference" "J3" (at 96.52 125.7299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "I2C (OLED)" (at 96.52 128.2699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 93.98 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 93.98 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 93.98 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 93.98 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "985cedae-e50b-4773-a371-982838e92c57") ) (pin "2" (uuid "8aab3543-4cbb-4d18-8f33-d37222d25e2d") ) (pin "3" (uuid "3800df87-a3ad-4ded-948b-8bc4ea0ce6a2") ) (pin "4" (uuid "c19d3082-c024-4f0e-bd14-15efaa4184dd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 48.26 143.51 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "564e8b0a-6edb-490c-a023-cb0fc6cd3ad3") (property "Reference" "#PWR087" (at 48.26 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 48.26 148.59 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 48.26 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 48.26 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 48.26 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d1a52821-f1e1-4570-8ce1-2964d3085977") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR087") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 53.34 143.51 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "573dee6d-5b1f-43f4-a550-007d1b45e72a") (property "Reference" "#PWR097" (at 53.34 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 53.34 148.59 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 53.34 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 53.34 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 53.34 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b46e866a-b469-41cc-bee8-d45ea9587a6a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR097") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 27.94 125.73 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5dd6ead8-2ab0-4201-9247-66fd8605564f") (property "Reference" "#PWR085" (at 31.75 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 24.13 125.7299 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 27.94 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 27.94 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 27.94 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e952d672-7cfa-4346-8d14-cb4bd61102bb") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR085") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 113.03 35.56 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5ed15fde-520c-48b7-b7ad-f1dab65ce507") (property "Reference" "JP10" (at 110.49 35.5599 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "NTC Value" (at 110.49 36.8299 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 113.03 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 113.03 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 113.03 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 113.03 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c8b2177d-d956-405f-ac31-a3d3e8631cfa") ) (pin "2" (uuid "d23eb086-ba4e-416f-9e49-d3cb4da12214") ) (pin "3" (uuid "1a5a4d35-b646-48e3-aa61-8f8ad827f86b") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "JP10") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 100.33 85.09 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "5effda4f-f509-4c42-bf3f-632077643ed1") (property "Reference" "R51" (at 100.33 82.55 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 100.33 87.63 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 100.33 86.868 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 100.33 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 100.33 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "23e8f6d6-dc05-413b-bdf4-3972f7aaa452") ) (pin "2" (uuid "a8fb4119-650e-4ac6-94c5-3cf1ab9f9325") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R51") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 245.11 149.86 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "64f1eded-147d-4476-b50b-6edbbc70d78d") (property "Reference" "#PWR092" (at 245.11 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 245.11 154.94 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 245.11 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 245.11 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 245.11 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "038b0022-eea9-4248-83da-22dcc7df6b33") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR092") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 256.54 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6c877e3a-824e-4899-8d98-f41a2e6f348f") (property "Reference" "J20" (at 259.08 137.1599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "1-Wire" (at 259.08 139.6999 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C68305 or C5188443" (at 256.54 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ff2c2b3b-d937-49f0-ac83-3bcc81368eea") ) (pin "2" (uuid "1ccc77de-d3b8-43d3-9429-7709ea385a3d") ) (pin "3" (uuid "7cafff1e-8311-45b0-997b-d8df16f63997") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J20") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 232.41 90.17 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6c8ccf28-571a-4874-954d-04889ea48734") (property "Reference" "J18" (at 232.41 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LCD (SPI)" (at 233.68 80.01 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 232.41 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 232.41 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 232.41 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 232.41 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6c3c17a3-b354-46df-abf8-701548de3e35") ) (pin "10" (uuid "cf2609e2-5052-419b-9511-a793518a4df9") ) (pin "2" (uuid "b55eed68-4b8c-4eee-a793-aac1202e17f9") ) (pin "3" (uuid "32552d6b-7bd5-44d3-a00e-85b3d63fa4d8") ) (pin "4" (uuid "ef80b7b7-74ed-4dd4-9239-6ea19e969f77") ) (pin "5" (uuid "23af5b05-ff7e-4812-bfac-36aa3231660e") ) (pin "6" (uuid "1e409584-b0b9-499d-ad7c-3bd934eef008") ) (pin "7" (uuid "f04a08a6-ffb3-4c32-9abb-2f2a8cf6d8a6") ) (pin "8" (uuid "99191788-278b-4546-8f8f-35cb0f6cc324") ) (pin "9" (uuid "b4755501-a9c8-4385-accd-cd1091a9b364") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J18") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 100.33 41.91 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6f5e15d3-8889-4380-8ba4-82af742cd899") (property "Reference" "R50" (at 100.33 39.37 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10k" (at 100.33 44.45 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 100.33 43.688 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 100.33 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C98220" (at 100.33 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "bb8f7dba-8ef6-4057-b135-05bf0aa71ee1") ) (pin "2" (uuid "82f32688-55a7-455e-a0b9-830a1e12ca5f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R50") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 236.22 39.37 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "7e8f922a-bb33-4f5e-826a-830407acd16a") (property "Reference" "D38" (at 231.14 37.846 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 225.806 40.386 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 236.22 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 236.22 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 236.22 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 236.22 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "dcdfe3cc-b73e-46c5-bd61-ca9104892768") ) (pin "1" (uuid "00ce661f-6972-4976-ad27-79cb32cb5625") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D38") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x02") (at 48.26 35.56 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "86718c7d-2943-402b-9e45-e521335cadab") (property "Reference" "J16" (at 45.72 29.21 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "Sensor1" (at 44.45 40.64 0) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 48.26 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 48.26 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 48.26 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 48.26 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2211dc9b-c955-4613-93c5-41b96fa1230a") ) (pin "2" (uuid "4cb7a894-bb4e-4af1-ac70-43aa5cd340b6") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J16") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 53.34 137.16 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8d09dbd4-ec55-4d01-8b1d-c5d7c604a592") (property "Reference" "D40" (at 55.88 135.8899 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 55.88 138.4299 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 53.34 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 53.34 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 53.34 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 53.34 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "8449f416-a511-43c4-81b1-1552db9f07da") ) (pin "1" (uuid "93daf019-8a4b-4030-90c6-6888a32fb745") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D40") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 93.98 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "918d6622-f969-49f5-8a3a-f4b4a9270800") (property "Reference" "J2" (at 96.52 109.2199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "I2C (OLED ALT)" (at 96.52 111.7599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (at 93.98 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 93.98 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 93.98 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 93.98 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5958ca2d-443b-416f-84aa-7ad4126167ef") ) (pin "2" (uuid "e0c6475d-e933-4231-bd55-b28cc5f22d39") ) (pin "3" (uuid "dd6685d9-951e-4042-ae99-6fe29da1ad1d") ) (pin "4" (uuid "6e6d68da-313a-4d90-845d-bb202b485348") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J2") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 208.28 121.92 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "92894710-36ad-425c-861a-5ca8aa09393f") (property "Reference" "#PWR090" (at 212.09 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 198.12 121.92 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 208.28 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 208.28 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 208.28 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9611531a-456d-4b82-b6f5-8d9207d4a376") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR090") (unit 1) ) ) ) ) (symbol (lib_id "Jumper:Jumper_2_Open") (at 224.79 128.27 90) (unit 1) (exclude_from_sim yes) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "972e63ce-6f99-4302-98b3-4b1b150a5c46") (property "Reference" "JP12" (at 226.06 126.9999 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "1-Wire Pull-Up Enable" (at 226.06 129.5399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 224.79 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 224.79 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Jumper, 2-pole, open" (at 224.79 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 224.79 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "ae49c0b7-8b66-4741-9885-b5633976e19a") ) (pin "1" (uuid "98302bfc-1379-44b5-b83c-3eb5da4d7641") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "JP12") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 241.3 39.37 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "97837558-d0f9-46d2-a819-7a11ef6794b2") (property "Reference" "D39" (at 243.84 38.0999 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 243.84 40.6399 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 241.3 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 241.3 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 241.3 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 241.3 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "67de74d4-cb35-4a17-8e17-6476e4dfed51") ) (pin "1" (uuid "e84cd810-297d-4a73-89bb-39ab5e61d9fd") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D39") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 76.2 137.16 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "9bf37cb9-fb14-4d24-bc94-69a470072f85") (property "Reference" "D41" (at 71.12 135.636 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 65.786 138.176 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 76.2 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 76.2 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 76.2 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 76.2 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "facae526-99f8-44fb-8ef2-7aae98945e3d") ) (pin "1" (uuid "5fce3147-8e9c-4895-84bc-1bb82923b4d5") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D41") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 245.11 146.05 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a1de4de3-d1d5-4bf2-82cc-caf80e12a622") (property "Reference" "D37" (at 247.65 144.7799 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 247.65 147.3199 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 245.11 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 245.11 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 245.11 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 245.11 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "3d6eb6c3-d1a9-4053-ab69-5906a49f282b") ) (pin "1" (uuid "d1a9cd03-e4f2-4e18-a4a1-5da374b4c3c8") ) (instances (project "" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D37") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 82.55 184.15 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a34a5973-628e-4f5b-b84a-37d8cb556468") (property "Reference" "#PWR098" (at 82.55 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 82.55 189.23 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 82.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 82.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 82.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "9bdb3137-e2d4-47af-b7cf-44f5a96cf5a1") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR098") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 161.29 113.03 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a6bcdde4-49dd-4a28-8a10-b884620f10e4") (property "Reference" "D74" (at 166.37 111.506 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 171.196 113.538 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 161.29 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 161.29 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 161.29 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 161.29 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "55620deb-8375-42df-ae04-5163351c5511") ) (pin "1" (uuid "4b9c1c05-4bbc-4ee3-9087-6a3fe019869f") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D74") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 256.54 85.09 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a9e9ded6-66d7-4bfa-872c-458c9f9ba7d4") (property "Reference" "#PWR086" (at 252.73 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 266.7 85.09 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 256.54 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 256.54 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 256.54 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b6146ded-7ba6-466b-b69f-5d61df638574") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR086") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 241.3 43.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ac88bd71-7744-4191-97f7-22a2ac696192") (property "Reference" "#PWR094" (at 241.3 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 241.3 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 241.3 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 241.3 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 241.3 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "f237bc1d-95e0-44db-8952-74ea5dfb946e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR094") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 143.51 113.03 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "b47cbb4c-d804-4fbf-ad7a-580558e6d29b") (property "Reference" "D72" (at 141.732 110.998 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 141.732 114.046 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 143.51 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 143.51 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 143.51 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 143.51 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "999b1277-d550-44f2-bdf5-e074b4b42b21") ) (pin "1" (uuid "b45c21f4-20dd-438a-aa4b-6c88eb8f634e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D72") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x03") (at 251.46 30.48 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b7bc6b02-4815-4959-b689-29dc65d07154") (property "Reference" "J19" (at 254 29.2099 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "Serial Console (TTL)" (at 254 31.7499 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 251.46 30.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 251.46 30.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 251.46 30.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 251.46 30.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a56f176d-af72-4cc2-b325-9fc21ad5b38b") ) (pin "2" (uuid "54b36f68-1d5e-46f7-96f3-6996981fefd5") ) (pin "3" (uuid "8f11dd03-dd90-4689-aca7-cfad251943ed") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J19") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 100.33 72.39 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "c9077187-c2d5-4e2d-80b4-68e896790b6b") (property "Reference" "R53" (at 100.33 69.85 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "100k" (at 100.33 74.93 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 100.33 74.168 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 100.33 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C14675" (at 100.33 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "0a166a2e-dcb3-46ba-bce7-bef6f3b4889f") ) (pin "2" (uuid "d772a577-a1d6-4254-a2c8-ccc79c4a513a") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R53") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 236.22 43.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cd77a504-a7ec-4df4-84c1-11a3fd095423") (property "Reference" "#PWR093" (at 236.22 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 236.22 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 236.22 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 236.22 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 236.22 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6c90fe79-35c9-4f51-ad42-a832073eddc9") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR093") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 127 125.73 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "dd811602-edec-4af8-b3b4-548b8ef4eb78") (property "Reference" "#PWR0129" (at 130.81 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 123.19 125.7299 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 127 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 127 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 127 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2f4a2231-2578-46e1-96ad-660619ad5b1e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR0129") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 213.36 92.71 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "e4725d44-31fa-41df-9c47-e555fc90888e") (property "Reference" "#PWR036" (at 217.17 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 203.2 92.71 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 213.36 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 213.36 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 213.36 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1d7ff64c-8fa3-4995-b73f-eb291d0eb751") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR036") (unit 1) ) ) ) ) (symbol (lib_id "Device:D_TVS_Small") (at 81.28 137.16 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f0b66849-68c7-40a2-8199-3ee6087311a6") (property "Reference" "D42" (at 83.82 135.8899 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Value" "3.3V TVS" (at 83.82 138.4299 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 81.28 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 81.28 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Bidirectional transient-voltage-suppression diode, small symbol" (at 81.28 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C78439" (at 81.28 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "b0cb882a-bf81-4e6d-8010-0064a89197ed") ) (pin "1" (uuid "dc05d6db-a3d8-43fa-9e11-3b34cace416e") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "D42") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 179.07 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f3d1411d-36fc-47cc-b18e-de4759d807f2") (property "Reference" "J21" (at 181.61 125.7299 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "QWIIC" (at 181.61 128.2699 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C160404" (at 179.07 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "456a83a6-1730-4328-9c90-9e3e2aa0b772") ) (pin "2" (uuid "83de61de-8a6e-4d2f-a771-b7abd38f20f3") ) (pin "3" (uuid "a56b0d12-4053-4938-b66b-7b64c45cb472") ) (pin "4" (uuid "2514a7d0-d582-4849-b772-dad0cb573287") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "J21") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 100.33 29.21 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f421aed5-1a7c-4cf7-87bd-ce21946df0ca") (property "Reference" "R52" (at 100.33 26.67 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "100k" (at 100.33 31.75 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 100.33 30.988 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 100.33 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 100.33 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C14675" (at 100.33 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 100.33 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "68ba4254-9cdb-4fdf-bef0-2356c662be41") ) (pin "2" (uuid "dd2a7d9c-3352-4a71-b127-bdcb2b9284d3") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "R52") (unit 1) ) ) ) ) (symbol (lib_id "power:+3.3V") (at 228.6 140.97 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "fa02c6d0-e992-42cb-a5f8-5b6a9b77ea47") (property "Reference" "#PWR089" (at 232.41 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "+3.3V" (at 218.44 140.97 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 228.6 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 228.6 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"+3.3V\"" (at 228.6 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "402246c8-94be-46e5-aedc-32fbb5256a3c") ) (instances (project "fanpico" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4e9d9bbb-bb4b-4f71-a57a-a915249deb73" (reference "#PWR089") (unit 1) ) ) ) ) ) ================================================ FILE: boards/oled-adapter/README.md ================================================ # FanPico-OLED-Adapter PCB Size: 25mm x 14.5mm This is small adapter for making it easier to mount larger 1.5" 128x128 pixel OLED modules. J1 is meant to be connected to FanPico J3 connector, then connecting OLED module to J2 (or J3). ![PCB Render](board.png) ## Change Log v1.0 - Initial revision. ================================================ FILE: boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_pcb ================================================ (kicad_pcb (version 20221018) (generator pcbnew) (general (thickness 1.6) ) (paper "A4") (layers (0 "F.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (pad_to_mask_clearance 0) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) (disableapertmacros false) (usegerberextensions true) (usegerberattributes true) (usegerberadvancedattributes true) (creategerberjobfile true) (dashed_line_dash_ratio 12.000000) (dashed_line_gap_ratio 3.000000) (svgprecision 4) (plotframeref false) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (dxfpolygonmode true) (dxfimperialunits true) (dxfusepcbnewfont true) (psnegative false) (psa4output false) (plotreference true) (plotvalue true) (plotinvisibletext false) (sketchpadsonfab false) (subtractmaskfromsilk true) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "GND") (net 2 "VCC") (net 3 "SCL") (net 4 "SDA") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tstamp 028221c7-3d08-4244-b9ee-28d36243694d) (at 156.8 97.78) (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x04 2.54mm single row") (property "Sheetfile" "fanpico-oled-adapter.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)") (property "ki_keywords" "connector") (path "/1a021620-bf70-427c-a4d9-84f887b0d5f2") (attr through_hole) (fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 190f560d-1324-4124-8bcc-8439a5ecdb69) ) (fp_text value "1.5\" OLED" (at 0 9.95) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 24356e5c-c5b2-4779-997f-13ab5addb19b) ) (fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 4b049e0a-c3c5-4a51-915f-46bf2d57e81e) ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e84d0ab-95d4-4953-89d5-2f5553f01276)) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 836cd84d-770b-471d-939f-a61c204b2b69)) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5a57c0f-3753-40d7-8b88-e62209ad4cb7)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 301fc5bb-c358-46fa-b5e6-fa642505d31e)) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa991d9a-497c-4ccc-9423-1ba41d07dc77)) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e529974-abc8-4774-ad16-336f9e7890cb)) (fp_line (start -1.8 -1.8) (end -1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22cff8f7-b195-4049-81ea-19b16762c9c5)) (fp_line (start -1.8 9.4) (end 1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee154d7d-4caa-435c-a758-9e44e8830443)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26860a71-3fcd-4b13-bcc8-95c8219cdbeb)) (fp_line (start 1.8 9.4) (end 1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19035974-8691-4504-8c84-1fb9086e9150)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c3bebfd-967c-4287-a72b-658e77da0507)) (fp_line (start -1.27 8.89) (end -1.27 -0.635) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28b3b4e1-722f-4f5d-b0cd-5bbfe675a6f7)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d95882e9-10a5-48c8-a334-2ade9cf33daf)) (fp_line (start 1.27 -1.27) (end 1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43f58d4c-017d-44f5-a259-0fe04f1585e1)) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95b54356-e4b3-4668-a0fe-e97ec976eb65)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 4 "SDA") (pinfunction "Pin_1") (pintype "passive") (tstamp cac94ef7-2737-483a-b520-3f800b897ff8)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 3 "SCL") (pinfunction "Pin_2") (pintype "passive") (tstamp aae8abc9-cc3a-474c-b95b-3cc063d570dc)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 209a9a2f-751c-400d-8d25-31f229654f0f)) (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 2 "VCC") (pinfunction "Pin_4") (pintype "passive") (tstamp 0f4e023e-70c9-4eed-b5c5-3a5ec1577ea1)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tstamp 0ef9d360-ca35-4ba8-97b4-783caabad596) (at 146.8 97.73) (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x04 2.54mm single row") (property "Sheetfile" "fanpico-oled-adapter.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)") (property "ki_keywords" "connector") (path "/8506e8bf-7714-498f-9a7d-dfbfea70201d") (attr through_hole) (fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp ada6d695-7841-4bdb-971b-90a44661d2da) ) (fp_text value "To_FanPico_J3" (at 0 9.95) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 46f66728-7ac9-4cea-8d45-194462a68969) ) (fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp f5f2c5bd-ee6f-4e29-9edd-d8ce0bc2f332) ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e1c4c5b-b160-4210-9ab1-74ff811893e2)) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04eaa129-4043-4629-894e-dd98d5b856b6)) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b15543f-3743-46cc-bca0-9cc0d6097f3f)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7e0d2a7-3818-41a5-a8be-7c417e86fb96)) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3427c79d-4126-410c-8137-6653896ca577)) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 234c3cb2-be01-4858-8976-a647a5893a86)) (fp_line (start -1.8 -1.8) (end -1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b00fbb2e-283d-4049-99f5-f038734a2550)) (fp_line (start -1.8 9.4) (end 1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 287988d7-4f08-4cb8-a0c4-54123b155260)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37784d4f-f329-413c-a2d8-a03c75db4698)) (fp_line (start 1.8 9.4) (end 1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16627529-800a-43f9-b276-c78f3d8390fe)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36a5d893-e038-4380-83d0-53b86c74d634)) (fp_line (start -1.27 8.89) (end -1.27 -0.635) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9312456c-e14f-4e52-9db2-8bb42582281f)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 583702fd-5ff7-48d5-9a7d-c12e1e4c3a4a)) (fp_line (start 1.27 -1.27) (end 1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1723eb18-7f2d-4e8d-b0a3-bea4a5e45080)) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2b89c9b-e909-41c6-86c4-a5d3c0bcae99)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp cde791e6-d514-4f43-a4cf-56f2dade80ea)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 2 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp c4802095-1be6-4cd0-b8e9-ed4c32f2c6b0)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 3 "SCL") (pinfunction "Pin_3") (pintype "passive") (tstamp a3be7fe3-4434-407c-93a9-59fadced4ecf)) (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 4 "SDA") (pinfunction "Pin_4") (pintype "passive") (tstamp 9ebea3f1-fb9f-467d-a1ff-fa6063384632)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (tstamp c2e6a0a5-dfcd-4200-942d-682284b60ff6) (at 141.8 97.78) (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x04 2.54mm single row") (property "Sheetfile" "fanpico-oled-adapter.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)") (property "ki_keywords" "connector") (path "/8df42fa9-c80b-4ffb-96bd-a05965086906") (attr through_hole) (fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 14b92b41-6a12-4cd9-a7d8-9c0f58564808) ) (fp_text value "1.3\" OLED (alt pinout)" (at 0 9.95) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 50a26882-bda2-4e3d-89ca-5733048142f5) ) (fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp c3098885-e9b1-4aa1-a5f9-be2172f5d037) ) (fp_line (start -1.33 -1.33) (end 0 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a975b158-0d07-44ff-af74-3a77b4a07dd8)) (fp_line (start -1.33 0) (end -1.33 -1.33) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63a28ef1-b097-4cbc-96f9-c2a1b1cf3fc3)) (fp_line (start -1.33 1.27) (end -1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df183e23-ca55-409d-a84e-74cb90fd07aa)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 789cfbce-a77a-405a-8fda-a567139a284e)) (fp_line (start -1.33 8.95) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 717f5ae2-1fe1-4ea7-8c22-c5d51d4c74a9)) (fp_line (start 1.33 1.27) (end 1.33 8.95) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78f82506-a9aa-439d-a351-f7f61d881766)) (fp_line (start -1.8 -1.8) (end -1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b79a87d7-81fb-4d92-b745-7811e2766008)) (fp_line (start -1.8 9.4) (end 1.8 9.4) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e72ac7d-2b9a-4488-b2b3-cdb31be4e18f)) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 144405c9-7c9d-4400-9caf-a5c691c88d19)) (fp_line (start 1.8 9.4) (end 1.8 -1.8) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb749003-fae8-4785-aff2-4967f4b1c57b)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b43cce89-b8db-4ef0-8236-c5870551f98f)) (fp_line (start -1.27 8.89) (end -1.27 -0.635) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbed99b9-f360-4690-9475-0ff49e69a441)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecb98248-542e-4405-9a91-cd388a3a860c)) (fp_line (start 1.27 -1.27) (end 1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22e8e2ff-a59b-4184-8960-e63179e51114)) (fp_line (start 1.27 8.89) (end -1.27 8.89) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66d0fbd9-fc25-442e-9fa3-30324a9b2e2c)) (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 2 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 0ae18513-94b6-475f-9930-09495988d249)) (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp b235873a-ede8-48b0-98cc-2fde28784ee0)) (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 3 "SCL") (pinfunction "Pin_3") (pintype "passive") (tstamp 6dbb6cc8-f27c-48d4-b9a8-cc25e3ed5f85)) (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (net 4 "SDA") (pinfunction "Pin_4") (pintype "passive") (tstamp c15e5c98-d5fa-4047-84f0-ef91f3a3be62)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (gr_rect (start 135.3 94.4) (end 160.3 108.9) (stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 274884aa-6ab7-45b8-83d7-c88a0aa30549)) (gr_text "FanPico OLED Adapter" (at 139.5 108.5) (layer "F.SilkS") (tstamp 10b44ed1-2456-4ce4-8b9f-c44a96c603e4) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "Vcc" (at 152.55 105.9) (layer "F.SilkS") (tstamp 3d94a2f2-15a5-4008-8751-5a604267f566) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SDA" (at 152.05 98.4) (layer "F.SilkS") (tstamp 4a134a9b-fac3-4b00-8a4a-38b98dca784d) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SDA" (at 148.3 105.9) (layer "F.SilkS") (tstamp 79d54d35-c802-4bac-8423-4521dcbe482e) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "Vcc" (at 148.3 100.9) (layer "F.SilkS") (tstamp 7cc02321-f4c1-4095-af2c-19e9166fe30a) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SCL" (at 148.3 103.4) (layer "F.SilkS") (tstamp 84970d9d-c3f4-4099-8985-28f2ee92a545) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SCL" (at 152.05 100.9) (layer "F.SilkS") (tstamp 863efbb8-4ba6-490c-9d14-ba1de65622a4) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "GND" (at 152.05 103.4) (layer "F.SilkS") (tstamp 8ac8267b-f162-450a-a587-398674786fe4) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SDA" (at 137.3 105.9) (layer "F.SilkS") (tstamp ba2cc0ca-b50e-407b-9e06-d07eef1f1627) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "SCL" (at 137.3 103.4) (layer "F.SilkS") (tstamp c7144a76-ee75-4af8-a103-fddadf33f278) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "GND" (at 137.3 100.9) (layer "F.SilkS") (tstamp d88f1abe-02d6-4efa-a8a6-9f18ab634f45) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "128x128 OLED" (at 158.55 96.15 -90) (layer "F.SilkS") (tstamp d9424546-3e76-4783-ba42-17dbe9bd87a4) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "128x64 OLED" (at 135.8 96.4 -90) (layer "F.SilkS") (tstamp e035f30a-ae59-4c71-a48a-0bac81c06055) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "GND" (at 148.3 98.4) (layer "F.SilkS") (tstamp e42f0a55-9469-4bc0-bc0d-9f36074caeec) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (gr_text "Vcc" (at 137.3 98.4) (layer "F.SilkS") (tstamp e6daa7ae-4194-4045-bd93-4804cfd42afd) (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) ) (via (at 144.3 104.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 66ecc376-e59e-4aa8-beab-e11c1395afc7)) (segment (start 153.2 105.4) (end 156.8 105.4) (width 0.75) (layer "B.Cu") (net 2) (tstamp 15e9bdcc-e214-481b-96b0-637f269baf9e)) (segment (start 141.8 97.78) (end 143.18 97.78) (width 0.75) (layer "B.Cu") (net 2) (tstamp 7f9d6ccb-8ce7-437f-a1dd-1038097682c2)) (segment (start 145.67 100.27) (end 146.8 100.27) (width 0.75) (layer "B.Cu") (net 2) (tstamp 8e5196c3-ede2-4a76-9d1f-a4275f28c211)) (segment (start 146.8 100.27) (end 148.07 100.27) (width 0.75) (layer "B.Cu") (net 2) (tstamp a5f43c1b-825b-4544-a637-bc47138dea5f)) (segment (start 143.18 97.78) (end 145.67 100.27) (width 0.75) (layer "B.Cu") (net 2) (tstamp d22baf89-435b-42fd-94c1-d9059c4bb8a8)) (segment (start 148.07 100.27) (end 153.2 105.4) (width 0.75) (layer "B.Cu") (net 2) (tstamp ed541383-da4d-4e39-a73e-30776e4cf402)) (segment (start 155.143604 100.32) (end 156.8 100.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp 6a54fa25-40f5-483c-9681-4845733e3cc6)) (segment (start 146.8 102.81) (end 152.653604 102.81) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7e2c7e47-b4a7-4248-9f8b-bd998b0fff78)) (segment (start 146.75 102.86) (end 146.8 102.81) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8e3ae538-2459-4e7e-b2dc-f2316693c19d)) (segment (start 141.8 102.86) (end 146.75 102.86) (width 0.25) (layer "F.Cu") (net 3) (tstamp db09a43a-e5e1-4459-a42f-a37386196baa)) (segment (start 152.653604 102.81) (end 155.143604 100.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp ef4c495d-e1a2-47c3-ad98-d47a49d1fe89)) (segment (start 148.84 103.26) (end 152.84 103.26) (width 0.25) (layer "F.Cu") (net 4) (tstamp 26be4d85-5a9a-457b-b404-2c7487901a70)) (segment (start 146.75 105.4) (end 146.8 105.35) (width 0.25) (layer "F.Cu") (net 4) (tstamp 2b57044d-58e4-4f75-8a98-197cd561e9bd)) (segment (start 146.8 105.3) (end 148.84 103.26) (width 0.25) (layer "F.Cu") (net 4) (tstamp 2bf12d82-363f-42ed-a628-6c3d22fd5f0f)) (segment (start 141.8 105.4) (end 146.75 105.4) (width 0.25) (layer "F.Cu") (net 4) (tstamp 51773348-a568-4a91-9f9e-ac3f6065b8ce)) (segment (start 154.5 101.6) (end 157.6 101.6) (width 0.25) (layer "F.Cu") (net 4) (tstamp 580b1608-9e6b-4646-9086-a0f7b453e862)) (segment (start 158.4 100.8) (end 158.4 98.4) (width 0.25) (layer "F.Cu") (net 4) (tstamp 734732f7-ac22-405c-8792-c6d2ac9bc241)) (segment (start 157.78 97.78) (end 156.8 97.78) (width 0.25) (layer "F.Cu") (net 4) (tstamp a6b57e0a-c281-4180-b776-92ed3687f3be)) (segment (start 157.6 101.6) (end 158.4 100.8) (width 0.25) (layer "F.Cu") (net 4) (tstamp c5aad770-a0d8-4bcd-990d-4f3f8404a99b)) (segment (start 158.4 98.4) (end 157.78 97.78) (width 0.25) (layer "F.Cu") (net 4) (tstamp cb2ed165-4c65-4af9-ae21-70cee9a4f355)) (segment (start 152.84 103.26) (end 154.5 101.6) (width 0.25) (layer "F.Cu") (net 4) (tstamp e1dbf08c-3a07-4fe1-ab5c-28ac3a2fa24c)) (segment (start 146.8 105.35) (end 146.8 105.3) (width 0.25) (layer "F.Cu") (net 4) (tstamp f70d364e-0826-4cdc-939a-c76466f48461)) (zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 682608db-214f-4a0b-871f-ba4f56c8904b) (hatch edge 0.5) (priority 1) (connect_pads (clearance 0.5)) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) (polygon (pts (xy 135.55 94.65) (xy 160.05 94.65) (xy 160.05 108.65) (xy 135.55 108.65) ) ) (filled_polygon (layer "F.Cu") (pts (xy 145.626822 103.505185) (xy 145.661357 103.538375) (xy 145.760079 103.679365) (xy 145.761505 103.681401) (xy 145.928597 103.848493) (xy 145.928603 103.848498) (xy 146.114158 103.978425) (xy 146.157783 104.033002) (xy 146.164977 104.1025) (xy 146.133454 104.164855) (xy 146.114158 104.181575) (xy 145.928597 104.311505) (xy 145.761505 104.478597) (xy 145.625967 104.672166) (xy 145.625963 104.672174) (xy 145.611634 104.702904) (xy 145.565462 104.755344) (xy 145.499252 104.7745) (xy 143.075227 104.7745) (xy 143.008188 104.754815) (xy 142.973652 104.721623) (xy 142.838494 104.528597) (xy 142.671402 104.361506) (xy 142.671396 104.361501) (xy 142.485842 104.231575) (xy 142.442217 104.176998) (xy 142.435023 104.1075) (xy 142.466546 104.045145) (xy 142.485842 104.028425) (xy 142.557249 103.978425) (xy 142.671401 103.898495) (xy 142.838495 103.731401) (xy 142.973653 103.538376) (xy 143.028229 103.494752) (xy 143.075227 103.4855) (xy 145.559783 103.4855) ) ) (filled_polygon (layer "F.Cu") (pts (xy 159.993039 94.669685) (xy 160.038794 94.722489) (xy 160.05 94.774) (xy 160.05 108.526) (xy 160.030315 108.593039) (xy 159.977511 108.638794) (xy 159.926 108.65) (xy 135.674 108.65) (xy 135.606961 108.630315) (xy 135.561206 108.577511) (xy 135.55 108.526) (xy 135.55 105.4) (xy 140.444341 105.4) (xy 140.464936 105.635403) (xy 140.464938 105.635413) (xy 140.526094 105.863655) (xy 140.526096 105.863659) (xy 140.526097 105.863663) (xy 140.605877 106.034752) (xy 140.625965 106.07783) (xy 140.625967 106.077834) (xy 140.72649 106.221395) (xy 140.761505 106.271401) (xy 140.928599 106.438495) (xy 141.025384 106.506264) (xy 141.122165 106.574032) (xy 141.122167 106.574033) (xy 141.12217 106.574035) (xy 141.336337 106.673903) (xy 141.564592 106.735063) (xy 141.752918 106.751539) (xy 141.799999 106.755659) (xy 141.8 106.755659) (xy 141.800001 106.755659) (xy 141.839234 106.752226) (xy 142.035408 106.735063) (xy 142.263663 106.673903) (xy 142.47783 106.574035) (xy 142.671401 106.438495) (xy 142.838495 106.271401) (xy 142.973653 106.078376) (xy 143.028229 106.034752) (xy 143.075227 106.0255) (xy 145.559783 106.0255) (xy 145.626822 106.045185) (xy 145.661357 106.078375) (xy 145.761505 106.221401) (xy 145.928599 106.388495) (xy 146.000011 106.438498) (xy 146.122165 106.524032) (xy 146.122167 106.524033) (xy 146.12217 106.524035) (xy 146.336337 106.623903) (xy 146.564592 106.685063) (xy 146.752918 106.701539) (xy 146.799999 106.705659) (xy 146.8 106.705659) (xy 146.800001 106.705659) (xy 146.839234 106.702226) (xy 147.035408 106.685063) (xy 147.263663 106.623903) (xy 147.47783 106.524035) (xy 147.671401 106.388495) (xy 147.838495 106.221401) (xy 147.974035 106.02783) (xy 148.073903 105.813663) (xy 148.135063 105.585408) (xy 148.155659 105.35) (xy 148.135063 105.114592) (xy 148.097577 104.974691) (xy 148.09924 104.904841) (xy 148.129669 104.854919) (xy 149.06277 103.921819) (xy 149.124094 103.888334) (xy 149.150452 103.8855) (xy 152.757257 103.8855) (xy 152.772877 103.887224) (xy 152.772904 103.886939) (xy 152.780666 103.887673) (xy 152.780666 103.887672) (xy 152.780667 103.887673) (xy 152.783999 103.887568) (xy 152.848847 103.885531) (xy 152.850794 103.8855) (xy 152.879347 103.8855) (xy 152.87935 103.8855) (xy 152.886228 103.88463) (xy 152.892041 103.884172) (xy 152.938627 103.882709) (xy 152.957869 103.877117) (xy 152.976912 103.873174) (xy 152.996792 103.870664) (xy 153.040122 103.853507) (xy 153.045646 103.851617) (xy 153.049396 103.850527) (xy 153.09039 103.838618) (xy 153.107629 103.828422) (xy 153.125103 103.819862) (xy 153.143727 103.812488) (xy 153.143727 103.812487) (xy 153.143732 103.812486) (xy 153.181449 103.785082) (xy 153.186305 103.781892) (xy 153.22642 103.75817) (xy 153.240589 103.743999) (xy 153.255379 103.731368) (xy 153.271587 103.719594) (xy 153.301299 103.683676) (xy 153.305212 103.679376) (xy 154.72277 102.261819) (xy 154.784094 102.228334) (xy 154.810452 102.2255) (xy 155.411721 102.2255) (xy 155.47876 102.245185) (xy 155.524515 102.297989) (xy 155.534459 102.367147) (xy 155.528241 102.391917) (xy 155.526567 102.396514) (xy 155.469364 102.609999) (xy 155.469364 102.61) (xy 156.366314 102.61) (xy 156.340507 102.650156) (xy 156.3 102.788111) (xy 156.3 102.931889) (xy 156.340507 103.069844) (xy 156.366314 103.11) (xy 155.469364 103.11) (xy 155.526567 103.323486) (xy 155.52657 103.323492) (xy 155.626399 103.537578) (xy 155.761894 103.731082) (xy 155.928917 103.898105) (xy 156.114595 104.028119) (xy 156.158219 104.082696) (xy 156.165412 104.152195) (xy 156.13389 104.214549) (xy 156.114595 104.231269) (xy 155.928594 104.361508) (xy 155.761505 104.528597) (xy 155.625965 104.722169) (xy 155.625964 104.722171) (xy 155.526098 104.936335) (xy 155.526094 104.936344) (xy 155.464938 105.164586) (xy 155.464936 105.164596) (xy 155.444341 105.399999) (xy 155.444341 105.4) (xy 155.464936 105.635403) (xy 155.464938 105.635413) (xy 155.526094 105.863655) (xy 155.526096 105.863659) (xy 155.526097 105.863663) (xy 155.605877 106.034752) (xy 155.625965 106.07783) (xy 155.625967 106.077834) (xy 155.72649 106.221395) (xy 155.761505 106.271401) (xy 155.928599 106.438495) (xy 156.025384 106.506265) (xy 156.122165 106.574032) (xy 156.122167 106.574033) (xy 156.12217 106.574035) (xy 156.336337 106.673903) (xy 156.564592 106.735063) (xy 156.752918 106.751539) (xy 156.799999 106.755659) (xy 156.8 106.755659) (xy 156.800001 106.755659) (xy 156.839234 106.752226) (xy 157.035408 106.735063) (xy 157.263663 106.673903) (xy 157.47783 106.574035) (xy 157.671401 106.438495) (xy 157.838495 106.271401) (xy 157.974035 106.07783) (xy 158.073903 105.863663) (xy 158.135063 105.635408) (xy 158.155659 105.4) (xy 158.135063 105.164592) (xy 158.073903 104.936337) (xy 157.974035 104.722171) (xy 157.973652 104.721623) (xy 157.838494 104.528597) (xy 157.671402 104.361506) (xy 157.671401 104.361505) (xy 157.485405 104.231269) (xy 157.441781 104.176692) (xy 157.434588 104.107193) (xy 157.46611 104.044839) (xy 157.485405 104.028119) (xy 157.671082 103.898105) (xy 157.838105 103.731082) (xy 157.9736 103.537578) (xy 158.073429 103.323492) (xy 158.073432 103.323486) (xy 158.130636 103.11) (xy 157.233686 103.11) (xy 157.259493 103.069844) (xy 157.3 102.931889) (xy 157.3 102.788111) (xy 157.259493 102.650156) (xy 157.233686 102.61) (xy 158.130636 102.61) (xy 158.130635 102.609999) (xy 158.073432 102.396513) (xy 158.073429 102.396507) (xy 157.988692 102.214786) (xy 157.9782 102.145708) (xy 158.00672 102.081924) (xy 158.028195 102.062058) (xy 158.031587 102.059594) (xy 158.061299 102.023676) (xy 158.065212 102.019376) (xy 158.783787 101.300802) (xy 158.796042 101.290986) (xy 158.795859 101.290764) (xy 158.801868 101.285791) (xy 158.801877 101.285786) (xy 158.848607 101.236022) (xy 158.849846 101.234743) (xy 158.87012 101.214471) (xy 158.874379 101.208978) (xy 158.878152 101.204561) (xy 158.910062 101.170582) (xy 158.919715 101.15302) (xy 158.930389 101.13677) (xy 158.942673 101.120936) (xy 158.96118 101.078167) (xy 158.963749 101.072924) (xy 158.986196 101.032093) (xy 158.986197 101.032092) (xy 158.991177 101.012691) (xy 158.997478 100.994288) (xy 159.005438 100.975896) (xy 159.01273 100.929849) (xy 159.013911 100.924152) (xy 159.0255 100.879019) (xy 159.0255 100.858982) (xy 159.027027 100.839582) (xy 159.03016 100.819804) (xy 159.025775 100.773415) (xy 159.0255 100.767577) (xy 159.0255 98.482737) (xy 159.027224 98.467123) (xy 159.026938 98.467096) (xy 159.027672 98.459333) (xy 159.025531 98.39117) (xy 159.0255 98.389223) (xy 159.0255 98.360651) (xy 159.0255 98.36065) (xy 159.024629 98.353759) (xy 159.024172 98.347945) (xy 159.022709 98.301374) (xy 159.022709 98.301372) (xy 159.01712 98.282137) (xy 159.013174 98.263084) (xy 159.010664 98.243208) (xy 158.993501 98.199859) (xy 158.991614 98.194346) (xy 158.978617 98.14961) (xy 158.978616 98.149608) (xy 158.968421 98.132369) (xy 158.95986 98.114893) (xy 158.952486 98.096269) (xy 158.952486 98.096267) (xy 158.942474 98.082488) (xy 158.925083 98.05855) (xy 158.9219 98.053705) (xy 158.89817 98.013579) (xy 158.898165 98.013573) (xy 158.884005 97.999413) (xy 158.87137 97.98462) (xy 158.859593 97.968412) (xy 158.823693 97.938713) (xy 158.819381 97.93479) (xy 158.280802 97.396212) (xy 158.27098 97.38395) (xy 158.270759 97.384134) (xy 158.265786 97.378122) (xy 158.216066 97.331432) (xy 158.214666 97.330075) (xy 158.194472 97.30988) (xy 158.192497 97.308139) (xy 158.192097 97.307505) (xy 158.191715 97.307123) (xy 158.191801 97.307036) (xy 158.155227 97.24904) (xy 158.150499 97.215125) (xy 158.150499 96.882129) (xy 158.150498 96.882123) (xy 158.150497 96.882116) (xy 158.144091 96.822517) (xy 158.125483 96.772627) (xy 158.093797 96.687671) (xy 158.093793 96.687664) (xy 158.007547 96.572455) (xy 158.007544 96.572452) (xy 157.892335 96.486206) (xy 157.892328 96.486202) (xy 157.757482 96.435908) (xy 157.757483 96.435908) (xy 157.697883 96.429501) (xy 157.697881 96.4295) (xy 157.697873 96.4295) (xy 157.697864 96.4295) (xy 155.902129 96.4295) (xy 155.902123 96.429501) (xy 155.842516 96.435908) (xy 155.707671 96.486202) (xy 155.707664 96.486206) (xy 155.592455 96.572452) (xy 155.592452 96.572455) (xy 155.506206 96.687664) (xy 155.506202 96.687671) (xy 155.455908 96.822517) (xy 155.449501 96.882116) (xy 155.449501 96.882123) (xy 155.4495 96.882135) (xy 155.4495 98.67787) (xy 155.449501 98.677876) (xy 155.455908 98.737483) (xy 155.506202 98.872328) (xy 155.506206 98.872335) (xy 155.592452 98.987544) (xy 155.592455 98.987547) (xy 155.707664 99.073793) (xy 155.707671 99.073797) (xy 155.839081 99.12281) (xy 155.895015 99.164681) (xy 155.919432 99.230145) (xy 155.90458 99.298418) (xy 155.88343 99.326673) (xy 155.761503 99.4486) (xy 155.626348 99.641623) (xy 155.571771 99.685248) (xy 155.524773 99.6945) (xy 155.226347 99.6945) (xy 155.210726 99.692775) (xy 155.210699 99.693061) (xy 155.202937 99.692326) (xy 155.134744 99.694469) (xy 155.132797 99.6945) (xy 155.104253 99.6945) (xy 155.097382 99.695367) (xy 155.091563 99.695825) (xy 155.044978 99.697289) (xy 155.044972 99.69729) (xy 155.02573 99.70288) (xy 155.006691 99.706823) (xy 154.986821 99.709334) (xy 154.986807 99.709337) (xy 154.943487 99.726488) (xy 154.937962 99.72838) (xy 154.893217 99.74138) (xy 154.893214 99.741381) (xy 154.87597 99.751579) (xy 154.858509 99.760133) (xy 154.839878 99.76751) (xy 154.839866 99.767517) (xy 154.802174 99.794902) (xy 154.797291 99.798109) (xy 154.757184 99.821829) (xy 154.743018 99.835995) (xy 154.728228 99.848627) (xy 154.712018 99.860404) (xy 154.712015 99.860407) (xy 154.682314 99.896309) (xy 154.678381 99.900631) (xy 152.430832 102.148181) (xy 152.369509 102.181666) (xy 152.343151 102.1845) (xy 148.075227 102.1845) (xy 148.008188 102.164815) (xy 147.973652 102.131623) (xy 147.838494 101.938597) (xy 147.671402 101.771506) (xy 147.671396 101.771501) (xy 147.485842 101.641575) (xy 147.442217 101.586998) (xy 147.435023 101.5175) (xy 147.466546 101.455145) (xy 147.485842 101.438425) (xy 147.508026 101.422891) (xy 147.671401 101.308495) (xy 147.838495 101.141401) (xy 147.974035 100.94783) (xy 148.073903 100.733663) (xy 148.135063 100.505408) (xy 148.155659 100.27) (xy 148.135063 100.034592) (xy 148.073903 99.806337) (xy 147.974035 99.592171) (xy 147.873734 99.448926) (xy 147.838496 99.3986) (xy 147.8245 99.384604) (xy 147.716179 99.276283) (xy 147.682696 99.214963) (xy 147.68768 99.145271) (xy 147.729551 99.089337) (xy 147.760529 99.072422) (xy 147.892086 99.023354) (xy 147.892093 99.02335) (xy 148.007187 98.93719) (xy 148.00719 98.937187) (xy 148.09335 98.822093) (xy 148.093354 98.822086) (xy 148.143596 98.687379) (xy 148.143598 98.687372) (xy 148.149999 98.627844) (xy 148.15 98.627827) (xy 148.15 97.98) (xy 147.233686 97.98) (xy 147.259493 97.939844) (xy 147.3 97.801889) (xy 147.3 97.658111) (xy 147.259493 97.520156) (xy 147.233686 97.48) (xy 148.15 97.48) (xy 148.15 96.832172) (xy 148.149999 96.832155) (xy 148.143598 96.772627) (xy 148.143596 96.77262) (xy 148.093354 96.637913) (xy 148.09335 96.637906) (xy 148.00719 96.522812) (xy 148.007187 96.522809) (xy 147.892093 96.436649) (xy 147.892086 96.436645) (xy 147.757379 96.386403) (xy 147.757372 96.386401) (xy 147.697844 96.38) (xy 147.05 96.38) (xy 147.05 97.294498) (xy 146.942315 97.24532) (xy 146.835763 97.23) (xy 146.764237 97.23) (xy 146.657685 97.24532) (xy 146.55 97.294498) (xy 146.55 96.38) (xy 145.902155 96.38) (xy 145.842627 96.386401) (xy 145.84262 96.386403) (xy 145.707913 96.436645) (xy 145.707906 96.436649) (xy 145.592812 96.522809) (xy 145.592809 96.522812) (xy 145.506649 96.637906) (xy 145.506645 96.637913) (xy 145.456403 96.77262) (xy 145.456401 96.772627) (xy 145.45 96.832155) (xy 145.45 97.48) (xy 146.366314 97.48) (xy 146.340507 97.520156) (xy 146.3 97.658111) (xy 146.3 97.801889) (xy 146.340507 97.939844) (xy 146.366314 97.98) (xy 145.45 97.98) (xy 145.45 98.627844) (xy 145.456401 98.687372) (xy 145.456403 98.687379) (xy 145.506645 98.822086) (xy 145.506649 98.822093) (xy 145.592809 98.937187) (xy 145.592812 98.93719) (xy 145.707906 99.02335) (xy 145.707913 99.023354) (xy 145.83947 99.072421) (xy 145.895403 99.114292) (xy 145.919821 99.179756) (xy 145.90497 99.248029) (xy 145.883819 99.276284) (xy 145.761503 99.3986) (xy 145.625965 99.592169) (xy 145.625964 99.592171) (xy 145.526098 99.806335) (xy 145.526094 99.806344) (xy 145.464938 100.034586) (xy 145.464936 100.034596) (xy 145.444341 100.269999) (xy 145.444341 100.27) (xy 145.464936 100.505403) (xy 145.464938 100.505413) (xy 145.526094 100.733655) (xy 145.526096 100.733659) (xy 145.526097 100.733663) (xy 145.593878 100.879019) (xy 145.625965 100.94783) (xy 145.625967 100.947834) (xy 145.761501 101.141395) (xy 145.761506 101.141402) (xy 145.928597 101.308493) (xy 145.928603 101.308498) (xy 146.114158 101.438425) (xy 146.157783 101.493002) (xy 146.164977 101.5625) (xy 146.133454 101.624855) (xy 146.114158 101.641575) (xy 145.928597 101.771505) (xy 145.761505 101.938597) (xy 145.625967 102.132166) (xy 145.625963 102.132174) (xy 145.611634 102.162904) (xy 145.565462 102.215344) (xy 145.499252 102.2345) (xy 143.075227 102.2345) (xy 143.008188 102.214815) (xy 142.973652 102.181623) (xy 142.838494 101.988597) (xy 142.671402 101.821506) (xy 142.671401 101.821505) (xy 142.485405 101.691269) (xy 142.441781 101.636692) (xy 142.434588 101.567193) (xy 142.46611 101.504839) (xy 142.485405 101.488119) (xy 142.671082 101.358105) (xy 142.838105 101.191082) (xy 142.9736 100.997578) (xy 143.073429 100.783492) (xy 143.073432 100.783486) (xy 143.130636 100.57) (xy 142.233686 100.57) (xy 142.259493 100.529844) (xy 142.3 100.391889) (xy 142.3 100.248111) (xy 142.259493 100.110156) (xy 142.233686 100.07) (xy 143.130636 100.07) (xy 143.130635 100.069999) (xy 143.073432 99.856513) (xy 143.073429 99.856507) (xy 142.9736 99.642422) (xy 142.973599 99.64242) (xy 142.838113 99.448926) (xy 142.838108 99.44892) (xy 142.716053 99.326865) (xy 142.682568 99.265542) (xy 142.687552 99.19585) (xy 142.729424 99.139917) (xy 142.7604 99.123002) (xy 142.892331 99.073796) (xy 143.007546 98.987546) (xy 143.093796 98.872331) (xy 143.144091 98.737483) (xy 143.1505 98.677873) (xy 143.150499 96.882128) (xy 143.144091 96.822517) (xy 143.125483 96.772627) (xy 143.093797 96.687671) (xy 143.093793 96.687664) (xy 143.007547 96.572455) (xy 143.007544 96.572452) (xy 142.892335 96.486206) (xy 142.892328 96.486202) (xy 142.757482 96.435908) (xy 142.757483 96.435908) (xy 142.697883 96.429501) (xy 142.697881 96.4295) (xy 142.697873 96.4295) (xy 142.697864 96.4295) (xy 140.902129 96.4295) (xy 140.902123 96.429501) (xy 140.842516 96.435908) (xy 140.707671 96.486202) (xy 140.707664 96.486206) (xy 140.592455 96.572452) (xy 140.592452 96.572455) (xy 140.506206 96.687664) (xy 140.506202 96.687671) (xy 140.455908 96.822517) (xy 140.449501 96.882116) (xy 140.449501 96.882123) (xy 140.4495 96.882135) (xy 140.4495 98.67787) (xy 140.449501 98.677876) (xy 140.455908 98.737483) (xy 140.506202 98.872328) (xy 140.506206 98.872335) (xy 140.592452 98.987544) (xy 140.592455 98.987547) (xy 140.707664 99.073793) (xy 140.707671 99.073797) (xy 140.767107 99.095965) (xy 140.839598 99.123002) (xy 140.895531 99.164873) (xy 140.919949 99.230337) (xy 140.905098 99.29861) (xy 140.883947 99.326865) (xy 140.761886 99.448926) (xy 140.6264 99.64242) (xy 140.626399 99.642422) (xy 140.52657 99.856507) (xy 140.526567 99.856513) (xy 140.469364 100.069999) (xy 140.469364 100.07) (xy 141.366314 100.07) (xy 141.340507 100.110156) (xy 141.3 100.248111) (xy 141.3 100.391889) (xy 141.340507 100.529844) (xy 141.366314 100.57) (xy 140.469364 100.57) (xy 140.526567 100.783486) (xy 140.52657 100.783492) (xy 140.626399 100.997578) (xy 140.761894 101.191082) (xy 140.928917 101.358105) (xy 141.114595 101.488119) (xy 141.158219 101.542696) (xy 141.165412 101.612195) (xy 141.13389 101.674549) (xy 141.114595 101.691269) (xy 140.928594 101.821508) (xy 140.761505 101.988597) (xy 140.625965 102.182169) (xy 140.625964 102.182171) (xy 140.526098 102.396335) (xy 140.526094 102.396344) (xy 140.464938 102.624586) (xy 140.464936 102.624596) (xy 140.444341 102.859999) (xy 140.444341 102.86) (xy 140.464936 103.095403) (xy 140.464938 103.095413) (xy 140.526094 103.323655) (xy 140.526096 103.323659) (xy 140.526097 103.323663) (xy 140.601563 103.4855) (xy 140.625965 103.53783) (xy 140.625967 103.537834) (xy 140.725069 103.679365) (xy 140.761501 103.731396) (xy 140.761506 103.731402) (xy 140.928597 103.898493) (xy 140.928603 103.898498) (xy 141.114158 104.028425) (xy 141.157783 104.083002) (xy 141.164977 104.1525) (xy 141.133454 104.214855) (xy 141.114158 104.231575) (xy 140.928597 104.361505) (xy 140.761505 104.528597) (xy 140.625965 104.722169) (xy 140.625964 104.722171) (xy 140.526098 104.936335) (xy 140.526094 104.936344) (xy 140.464938 105.164586) (xy 140.464936 105.164596) (xy 140.444341 105.399999) (xy 140.444341 105.4) (xy 135.55 105.4) (xy 135.55 94.774) (xy 135.569685 94.706961) (xy 135.622489 94.661206) (xy 135.674 94.65) (xy 159.926 94.65) ) ) ) (zone (net 1) (net_name "GND") (layer "B.Cu") (tstamp 5f052c21-133f-4946-a0b5-f6d28622f118) (hatch edge 0.5) (connect_pads (clearance 0.5)) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) (polygon (pts (xy 135.55 108.65) (xy 135.55 94.65) (xy 160.05 94.65) (xy 160.05 108.65) ) ) (filled_polygon (layer "B.Cu") (pts (xy 159.993039 94.669685) (xy 160.038794 94.722489) (xy 160.05 94.774) (xy 160.05 108.526) (xy 160.030315 108.593039) (xy 159.977511 108.638794) (xy 159.926 108.65) (xy 135.674 108.65) (xy 135.606961 108.630315) (xy 135.561206 108.577511) (xy 135.55 108.526) (xy 135.55 105.4) (xy 140.444341 105.4) (xy 140.464936 105.635403) (xy 140.464938 105.635413) (xy 140.526094 105.863655) (xy 140.526096 105.863659) (xy 140.526097 105.863663) (xy 140.608023 106.039354) (xy 140.625965 106.07783) (xy 140.625967 106.077834) (xy 140.679721 106.154602) (xy 140.761505 106.271401) (xy 140.928599 106.438495) (xy 141.025384 106.506264) (xy 141.122165 106.574032) (xy 141.122167 106.574033) (xy 141.12217 106.574035) (xy 141.336337 106.673903) (xy 141.564592 106.735063) (xy 141.752918 106.751539) (xy 141.799999 106.755659) (xy 141.8 106.755659) (xy 141.800001 106.755659) (xy 141.839234 106.752226) (xy 142.035408 106.735063) (xy 142.263663 106.673903) (xy 142.47783 106.574035) (xy 142.671401 106.438495) (xy 142.838495 106.271401) (xy 142.974035 106.07783) (xy 143.073903 105.863663) (xy 143.135063 105.635408) (xy 143.155659 105.4) (xy 143.135063 105.164592) (xy 143.073903 104.936337) (xy 142.974035 104.722171) (xy 142.939024 104.672169) (xy 142.838494 104.528597) (xy 142.671402 104.361506) (xy 142.671396 104.361501) (xy 142.485842 104.231575) (xy 142.442217 104.176998) (xy 142.435023 104.1075) (xy 142.466546 104.045145) (xy 142.485842 104.028425) (xy 142.557249 103.978425) (xy 142.671401 103.898495) (xy 142.838495 103.731401) (xy 142.974035 103.53783) (xy 143.073903 103.323663) (xy 143.135063 103.095408) (xy 143.155659 102.86) (xy 143.135063 102.624592) (xy 143.073903 102.396337) (xy 142.974035 102.182171) (xy 142.939024 102.132169) (xy 142.838494 101.988597) (xy 142.671402 101.821506) (xy 142.671401 101.821505) (xy 142.503844 101.70418) (xy 142.485405 101.691269) (xy 142.441781 101.636692) (xy 142.434588 101.567193) (xy 142.46611 101.504839) (xy 142.485405 101.488119) (xy 142.671082 101.358105) (xy 142.838105 101.191082) (xy 142.9736 100.997578) (xy 143.073429 100.783492) (xy 143.073432 100.783486) (xy 143.130636 100.57) (xy 142.233686 100.57) (xy 142.259493 100.529844) (xy 142.3 100.391889) (xy 142.3 100.248111) (xy 142.259493 100.110156) (xy 142.233686 100.07) (xy 143.130636 100.07) (xy 143.130635 100.069999) (xy 143.073432 99.856513) (xy 143.073429 99.856507) (xy 142.9736 99.642422) (xy 142.973599 99.64242) (xy 142.838113 99.448926) (xy 142.838108 99.44892) (xy 142.716053 99.326865) (xy 142.682568 99.265542) (xy 142.687552 99.19585) (xy 142.729424 99.139917) (xy 142.7604 99.123002) (xy 142.892331 99.073796) (xy 142.98718 99.002792) (xy 143.002656 98.991207) (xy 143.06812 98.966789) (xy 143.136393 98.98164) (xy 143.164648 99.002792) (xy 145.023992 100.862136) (xy 145.027396 100.865829) (xy 145.064362 100.90935) (xy 145.064366 100.909354) (xy 145.064369 100.909357) (xy 145.130123 100.959341) (xy 145.131335 100.960288) (xy 145.168283 100.989989) (xy 145.195702 101.01203) (xy 145.195872 101.012114) (xy 145.215814 101.024483) (xy 145.215971 101.024602) (xy 145.290905 101.05927) (xy 145.292366 101.05997) (xy 145.366307 101.096641) (xy 145.366481 101.096684) (xy 145.388626 101.10448) (xy 145.388803 101.104562) (xy 145.388806 101.104562) (xy 145.388807 101.104563) (xy 145.4011 101.107268) (xy 145.469432 101.122309) (xy 145.471023 101.122683) (xy 145.498959 101.12963) (xy 145.551111 101.1426) (xy 145.551284 101.142604) (xy 145.574602 101.14546) (xy 145.574784 101.1455) (xy 145.657302 101.1455) (xy 145.65898 101.145523) (xy 145.68933 101.146344) (xy 145.719208 101.147153) (xy 145.785688 101.168645) (xy 145.803531 101.183427) (xy 145.928597 101.308493) (xy 145.928603 101.308498) (xy 146.114158 101.438425) (xy 146.157783 101.493002) (xy 146.164977 101.5625) (xy 146.133454 101.624855) (xy 146.114158 101.641575) (xy 145.928597 101.771505) (xy 145.761505 101.938597) (xy 145.625965 102.132169) (xy 145.625964 102.132171) (xy 145.526098 102.346335) (xy 145.526094 102.346344) (xy 145.464938 102.574586) (xy 145.464936 102.574596) (xy 145.444341 102.809999) (xy 145.444341 102.81) (xy 145.464936 103.045403) (xy 145.464938 103.045413) (xy 145.526094 103.273655) (xy 145.526096 103.273659) (xy 145.526097 103.273663) (xy 145.549413 103.323664) (xy 145.625965 103.48783) (xy 145.625967 103.487834) (xy 145.761501 103.681395) (xy 145.761506 103.681402) (xy 145.928597 103.848493) (xy 145.928603 103.848498) (xy 146.114158 103.978425) (xy 146.157783 104.033002) (xy 146.164977 104.1025) (xy 146.133454 104.164855) (xy 146.114158 104.181575) (xy 145.928597 104.311505) (xy 145.761505 104.478597) (xy 145.625965 104.672169) (xy 145.625964 104.672171) (xy 145.526098 104.886335) (xy 145.526094 104.886344) (xy 145.464938 105.114586) (xy 145.464936 105.114596) (xy 145.444341 105.349999) (xy 145.444341 105.35) (xy 145.464936 105.585403) (xy 145.464938 105.585413) (xy 145.526094 105.813655) (xy 145.526096 105.813659) (xy 145.526097 105.813663) (xy 145.549413 105.863664) (xy 145.625965 106.02783) (xy 145.625967 106.027834) (xy 145.714649 106.154484) (xy 145.761505 106.221401) (xy 145.928599 106.388495) (xy 146.000011 106.438498) (xy 146.122165 106.524032) (xy 146.122167 106.524033) (xy 146.12217 106.524035) (xy 146.336337 106.623903) (xy 146.564592 106.685063) (xy 146.752918 106.701539) (xy 146.799999 106.705659) (xy 146.8 106.705659) (xy 146.800001 106.705659) (xy 146.839234 106.702226) (xy 147.035408 106.685063) (xy 147.263663 106.623903) (xy 147.47783 106.524035) (xy 147.671401 106.388495) (xy 147.838495 106.221401) (xy 147.974035 106.02783) (xy 148.073903 105.813663) (xy 148.135063 105.585408) (xy 148.155659 105.35) (xy 148.135063 105.114592) (xy 148.073903 104.886337) (xy 147.974035 104.672171) (xy 147.873506 104.528599) (xy 147.838494 104.478597) (xy 147.671402 104.311506) (xy 147.671396 104.311501) (xy 147.485842 104.181575) (xy 147.442217 104.126998) (xy 147.435023 104.0575) (xy 147.466546 103.995145) (xy 147.485842 103.978425) (xy 147.599989 103.898498) (xy 147.671401 103.848495) (xy 147.838495 103.681401) (xy 147.974035 103.48783) (xy 148.073903 103.273663) (xy 148.135063 103.045408) (xy 148.155659 102.81) (xy 148.135063 102.574592) (xy 148.073903 102.346337) (xy 147.974035 102.132171) (xy 147.873735 101.988926) (xy 147.838494 101.938597) (xy 147.671402 101.771506) (xy 147.671396 101.771501) (xy 147.485842 101.641575) (xy 147.442217 101.586998) (xy 147.435023 101.5175) (xy 147.466546 101.455145) (xy 147.485842 101.438425) (xy 147.599989 101.358498) (xy 147.671401 101.308495) (xy 147.683195 101.2967) (xy 147.744518 101.263216) (xy 147.81421 101.2682) (xy 147.858557 101.296701) (xy 152.553992 105.992136) (xy 152.557396 105.995829) (xy 152.594362 106.03935) (xy 152.594366 106.039354) (xy 152.594369 106.039357) (xy 152.660123 106.089341) (xy 152.661335 106.090288) (xy 152.698283 106.119989) (xy 152.725702 106.14203) (xy 152.725872 106.142114) (xy 152.745814 106.154483) (xy 152.745971 106.154602) (xy 152.820905 106.18927) (xy 152.822366 106.18997) (xy 152.896307 106.226641) (xy 152.896481 106.226684) (xy 152.918626 106.23448) (xy 152.918803 106.234562) (xy 152.918806 106.234562) (xy 152.918807 106.234563) (xy 152.9311 106.237268) (xy 152.999432 106.252309) (xy 153.001023 106.252683) (xy 153.028959 106.25963) (xy 153.081111 106.2726) (xy 153.081284 106.272604) (xy 153.104602 106.27546) (xy 153.104784 106.2755) (xy 153.187303 106.2755) (xy 153.188982 106.275523) (xy 153.224385 106.276481) (xy 153.271473 106.277757) (xy 153.271655 106.277721) (xy 153.295023 106.2755) (xy 155.714242 106.2755) (xy 155.781281 106.295185) (xy 155.801923 106.311819) (xy 155.928599 106.438495) (xy 156.025384 106.506265) (xy 156.122165 106.574032) (xy 156.122167 106.574033) (xy 156.12217 106.574035) (xy 156.336337 106.673903) (xy 156.564592 106.735063) (xy 156.752918 106.751539) (xy 156.799999 106.755659) (xy 156.8 106.755659) (xy 156.800001 106.755659) (xy 156.839234 106.752226) (xy 157.035408 106.735063) (xy 157.263663 106.673903) (xy 157.47783 106.574035) (xy 157.671401 106.438495) (xy 157.838495 106.271401) (xy 157.974035 106.07783) (xy 158.073903 105.863663) (xy 158.135063 105.635408) (xy 158.155659 105.4) (xy 158.135063 105.164592) (xy 158.073903 104.936337) (xy 157.974035 104.722171) (xy 157.939024 104.672169) (xy 157.838494 104.528597) (xy 157.671402 104.361506) (xy 157.671401 104.361505) (xy 157.485405 104.231269) (xy 157.441781 104.176692) (xy 157.434588 104.107193) (xy 157.46611 104.044839) (xy 157.485405 104.028119) (xy 157.671082 103.898105) (xy 157.838105 103.731082) (xy 157.9736 103.537578) (xy 158.073429 103.323492) (xy 158.073432 103.323486) (xy 158.130636 103.11) (xy 157.233686 103.11) (xy 157.259493 103.069844) (xy 157.3 102.931889) (xy 157.3 102.788111) (xy 157.259493 102.650156) (xy 157.233686 102.61) (xy 158.130636 102.61) (xy 158.130635 102.609999) (xy 158.073432 102.396513) (xy 158.073429 102.396507) (xy 157.9736 102.182422) (xy 157.973599 102.18242) (xy 157.838113 101.988926) (xy 157.838108 101.98892) (xy 157.671078 101.82189) (xy 157.485405 101.691879) (xy 157.44178 101.637302) (xy 157.434588 101.567804) (xy 157.46611 101.505449) (xy 157.485406 101.48873) (xy 157.486279 101.488119) (xy 157.671401 101.358495) (xy 157.838495 101.191401) (xy 157.974035 100.99783) (xy 158.073903 100.783663) (xy 158.135063 100.555408) (xy 158.155659 100.32) (xy 158.135063 100.084592) (xy 158.073903 99.856337) (xy 157.974035 99.642171) (xy 157.965962 99.630642) (xy 157.838496 99.4486) (xy 157.782139 99.392243) (xy 157.716567 99.326671) (xy 157.683084 99.265351) (xy 157.688068 99.195659) (xy 157.729939 99.139725) (xy 157.760915 99.12281) (xy 157.892331 99.073796) (xy 158.007546 98.987546) (xy 158.093796 98.872331) (xy 158.144091 98.737483) (xy 158.1505 98.677873) (xy 158.150499 96.882128) (xy 158.145112 96.832011) (xy 158.144091 96.822516) (xy 158.093797 96.687671) (xy 158.093793 96.687664) (xy 158.007547 96.572455) (xy 158.007544 96.572452) (xy 157.892335 96.486206) (xy 157.892328 96.486202) (xy 157.757482 96.435908) (xy 157.757483 96.435908) (xy 157.697883 96.429501) (xy 157.697881 96.4295) (xy 157.697873 96.4295) (xy 157.697864 96.4295) (xy 155.902129 96.4295) (xy 155.902123 96.429501) (xy 155.842516 96.435908) (xy 155.707671 96.486202) (xy 155.707664 96.486206) (xy 155.592455 96.572452) (xy 155.592452 96.572455) (xy 155.506206 96.687664) (xy 155.506202 96.687671) (xy 155.455908 96.822517) (xy 155.449501 96.882116) (xy 155.449501 96.882123) (xy 155.4495 96.882135) (xy 155.4495 98.67787) (xy 155.449501 98.677876) (xy 155.455908 98.737483) (xy 155.506202 98.872328) (xy 155.506206 98.872335) (xy 155.592452 98.987544) (xy 155.592455 98.987547) (xy 155.707664 99.073793) (xy 155.707671 99.073797) (xy 155.839081 99.12281) (xy 155.895015 99.164681) (xy 155.919432 99.230145) (xy 155.90458 99.298418) (xy 155.88343 99.326673) (xy 155.761503 99.4486) (xy 155.625965 99.642169) (xy 155.625964 99.642171) (xy 155.526098 99.856335) (xy 155.526094 99.856344) (xy 155.464938 100.084586) (xy 155.464936 100.084596) (xy 155.444341 100.319999) (xy 155.444341 100.32) (xy 155.464936 100.555403) (xy 155.464938 100.555413) (xy 155.526094 100.783655) (xy 155.526096 100.783659) (xy 155.526097 100.783663) (xy 155.564412 100.865829) (xy 155.625965 100.99783) (xy 155.625967 100.997834) (xy 155.7007 101.104563) (xy 155.761505 101.191401) (xy 155.928599 101.358495) (xy 156.066629 101.455145) (xy 156.114594 101.48873) (xy 156.158219 101.543307) (xy 156.165413 101.612805) (xy 156.13389 101.67516) (xy 156.114595 101.69188) (xy 155.928922 101.82189) (xy 155.92892 101.821891) (xy 155.761891 101.98892) (xy 155.761886 101.988926) (xy 155.6264 102.18242) (xy 155.626399 102.182422) (xy 155.52657 102.396507) (xy 155.526567 102.396513) (xy 155.469364 102.609999) (xy 155.469364 102.61) (xy 156.366314 102.61) (xy 156.340507 102.650156) (xy 156.3 102.788111) (xy 156.3 102.931889) (xy 156.340507 103.069844) (xy 156.366314 103.11) (xy 155.469364 103.11) (xy 155.526567 103.323486) (xy 155.52657 103.323492) (xy 155.626399 103.537578) (xy 155.761894 103.731082) (xy 155.928917 103.898105) (xy 156.114595 104.028119) (xy 156.158219 104.082696) (xy 156.165412 104.152195) (xy 156.13389 104.214549) (xy 156.114595 104.231269) (xy 155.928598 104.361505) (xy 155.86526 104.424842) (xy 155.801921 104.488182) (xy 155.740601 104.521666) (xy 155.714242 104.5245) (xy 153.614006 104.5245) (xy 153.546967 104.504815) (xy 153.526325 104.488181) (xy 151.170313 102.132169) (xy 148.715999 99.677855) (xy 148.712608 99.674176) (xy 148.675631 99.630643) (xy 148.609932 99.5807) (xy 148.608615 99.57967) (xy 148.544302 99.527973) (xy 148.544294 99.527968) (xy 148.54412 99.527882) (xy 148.524182 99.515514) (xy 148.524029 99.515398) (xy 148.449136 99.480748) (xy 148.447623 99.480023) (xy 148.3737 99.443362) (xy 148.373696 99.44336) (xy 148.373693 99.443359) (xy 148.373687 99.443357) (xy 148.37368 99.443355) (xy 148.373488 99.443307) (xy 148.351385 99.435525) (xy 148.351198 99.435438) (xy 148.351195 99.435437) (xy 148.270593 99.417694) (xy 148.26896 99.417311) (xy 148.188887 99.397399) (xy 148.188689 99.397394) (xy 148.165413 99.394543) (xy 148.165222 99.394501) (xy 148.165219 99.3945) (xy 148.165216 99.3945) (xy 148.165212 99.3945) (xy 148.082697 99.3945) (xy 148.081018 99.394477) (xy 147.998527 99.392243) (xy 147.998345 99.392278) (xy 147.974977 99.3945) (xy 147.885758 99.3945) (xy 147.818719 99.374815) (xy 147.798077 99.358181) (xy 147.716181 99.276285) (xy 147.682696 99.214962) (xy 147.68768 99.14527) (xy 147.729552 99.089337) (xy 147.760529 99.072422) (xy 147.892086 99.023354) (xy 147.892093 99.02335) (xy 148.007187 98.93719) (xy 148.00719 98.937187) (xy 148.09335 98.822093) (xy 148.093354 98.822086) (xy 148.143596 98.687379) (xy 148.143598 98.687372) (xy 148.149999 98.627844) (xy 148.15 98.627827) (xy 148.15 97.98) (xy 147.233686 97.98) (xy 147.259493 97.939844) (xy 147.3 97.801889) (xy 147.3 97.658111) (xy 147.259493 97.520156) (xy 147.233686 97.48) (xy 148.15 97.48) (xy 148.15 96.832172) (xy 148.149999 96.832155) (xy 148.143598 96.772627) (xy 148.143596 96.77262) (xy 148.093354 96.637913) (xy 148.09335 96.637906) (xy 148.00719 96.522812) (xy 148.007187 96.522809) (xy 147.892093 96.436649) (xy 147.892086 96.436645) (xy 147.757379 96.386403) (xy 147.757372 96.386401) (xy 147.697844 96.38) (xy 147.05 96.38) (xy 147.05 97.294498) (xy 146.942315 97.24532) (xy 146.835763 97.23) (xy 146.764237 97.23) (xy 146.657685 97.24532) (xy 146.55 97.294498) (xy 146.55 96.38) (xy 145.902155 96.38) (xy 145.842627 96.386401) (xy 145.84262 96.386403) (xy 145.707913 96.436645) (xy 145.707906 96.436649) (xy 145.592812 96.522809) (xy 145.592809 96.522812) (xy 145.506649 96.637906) (xy 145.506645 96.637913) (xy 145.456403 96.77262) (xy 145.456401 96.772627) (xy 145.45 96.832155) (xy 145.45 97.48) (xy 146.366314 97.48) (xy 146.340507 97.520156) (xy 146.3 97.658111) (xy 146.3 97.801889) (xy 146.340507 97.939844) (xy 146.366314 97.98) (xy 145.45 97.98) (xy 145.45 98.512493) (xy 145.430315 98.579532) (xy 145.377511 98.625287) (xy 145.308353 98.635231) (xy 145.244797 98.606206) (xy 145.238319 98.600174) (xy 144.897399 98.259254) (xy 143.825999 97.187855) (xy 143.822608 97.184176) (xy 143.785631 97.140643) (xy 143.719932 97.0907) (xy 143.718615 97.08967) (xy 143.654302 97.037973) (xy 143.654294 97.037968) (xy 143.65412 97.037882) (xy 143.634182 97.025514) (xy 143.634029 97.025398) (xy 143.559136 96.990748) (xy 143.557623 96.990023) (xy 143.4837 96.953362) (xy 143.483696 96.95336) (xy 143.483693 96.953359) (xy 143.483687 96.953357) (xy 143.48368 96.953355) (xy 143.483488 96.953307) (xy 143.461385 96.945525) (xy 143.461198 96.945438) (xy 143.461195 96.945437) (xy 143.380593 96.927694) (xy 143.37896 96.927311) (xy 143.298887 96.907399) (xy 143.298689 96.907394) (xy 143.275413 96.904543) (xy 143.275222 96.904501) (xy 143.275219 96.9045) (xy 143.275216 96.9045) (xy 143.275212 96.9045) (xy 143.260764 96.9045) (xy 143.193725 96.884815) (xy 143.14797 96.832011) (xy 143.144582 96.823833) (xy 143.093797 96.687671) (xy 143.093793 96.687664) (xy 143.007547 96.572455) (xy 143.007544 96.572452) (xy 142.892335 96.486206) (xy 142.892328 96.486202) (xy 142.757482 96.435908) (xy 142.757483 96.435908) (xy 142.697883 96.429501) (xy 142.697881 96.4295) (xy 142.697873 96.4295) (xy 142.697864 96.4295) (xy 140.902129 96.4295) (xy 140.902123 96.429501) (xy 140.842516 96.435908) (xy 140.707671 96.486202) (xy 140.707664 96.486206) (xy 140.592455 96.572452) (xy 140.592452 96.572455) (xy 140.506206 96.687664) (xy 140.506202 96.687671) (xy 140.455908 96.822517) (xy 140.449501 96.882116) (xy 140.449501 96.882123) (xy 140.4495 96.882135) (xy 140.4495 98.67787) (xy 140.449501 98.677876) (xy 140.455908 98.737483) (xy 140.506202 98.872328) (xy 140.506206 98.872335) (xy 140.592452 98.987544) (xy 140.592455 98.987547) (xy 140.707664 99.073793) (xy 140.707671 99.073797) (xy 140.767107 99.095965) (xy 140.839598 99.123002) (xy 140.895531 99.164873) (xy 140.919949 99.230337) (xy 140.905098 99.29861) (xy 140.883947 99.326865) (xy 140.761886 99.448926) (xy 140.6264 99.64242) (xy 140.626399 99.642422) (xy 140.52657 99.856507) (xy 140.526567 99.856513) (xy 140.469364 100.069999) (xy 140.469364 100.07) (xy 141.366314 100.07) (xy 141.340507 100.110156) (xy 141.3 100.248111) (xy 141.3 100.391889) (xy 141.340507 100.529844) (xy 141.366314 100.57) (xy 140.469364 100.57) (xy 140.526567 100.783486) (xy 140.52657 100.783492) (xy 140.626399 100.997578) (xy 140.761894 101.191082) (xy 140.928917 101.358105) (xy 141.114595 101.488119) (xy 141.158219 101.542696) (xy 141.165412 101.612195) (xy 141.13389 101.674549) (xy 141.114595 101.691269) (xy 140.928594 101.821508) (xy 140.761505 101.988597) (xy 140.625965 102.182169) (xy 140.625964 102.182171) (xy 140.526098 102.396335) (xy 140.526094 102.396344) (xy 140.464938 102.624586) (xy 140.464936 102.624596) (xy 140.444341 102.859999) (xy 140.444341 102.86) (xy 140.464936 103.095403) (xy 140.464938 103.095413) (xy 140.526094 103.323655) (xy 140.526096 103.323659) (xy 140.526097 103.323663) (xy 140.625847 103.537578) (xy 140.625965 103.53783) (xy 140.625967 103.537834) (xy 140.761501 103.731395) (xy 140.761506 103.731402) (xy 140.928597 103.898493) (xy 140.928603 103.898498) (xy 141.114158 104.028425) (xy 141.157783 104.083002) (xy 141.164977 104.1525) (xy 141.133454 104.214855) (xy 141.114158 104.231575) (xy 140.928597 104.361505) (xy 140.761505 104.528597) (xy 140.625965 104.722169) (xy 140.625964 104.722171) (xy 140.526098 104.936335) (xy 140.526094 104.936344) (xy 140.464938 105.164586) (xy 140.464936 105.164596) (xy 140.444341 105.399999) (xy 140.444341 105.4) (xy 135.55 105.4) (xy 135.55 94.774) (xy 135.569685 94.706961) (xy 135.622489 94.661206) (xy 135.674 94.65) (xy 159.926 94.65) ) ) ) ) ================================================ FILE: boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_prl ================================================ { "board": { "active_layer": 0, "active_layer_preset": "", "auto_track_width": true, "hidden_netclasses": [], "hidden_nets": [], "high_contrast_mode": 0, "net_color_mode": 1, "opacity": { "images": 0.6, "pads": 1.0, "tracks": 1.0, "vias": 1.0, "zones": 0.6 }, "selection_filter": { "dimensions": true, "footprints": true, "graphics": true, "keepouts": true, "lockedItems": false, "otherItems": true, "pads": true, "text": true, "tracks": true, "vias": true, "zones": true }, "visible_items": [ 0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 39, 40 ], "visible_layers": "ffdffff_ffffffff", "zone_display_mode": 1 }, "meta": { "filename": "fanpico-oled-adapter.kicad_prl", "version": 3 }, "project": { "files": [] } } ================================================ FILE: boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_pro ================================================ { "board": { "3dviewports": [], "design_settings": { "defaults": { "board_outline_line_width": 0.09999999999999999, "copper_line_width": 0.19999999999999998, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.049999999999999996, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.09999999999999999, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.15, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 0.762, "height": 1.524, "width": 1.524 }, "silk_line_width": 0.15, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.15, "silk_text_upright": false, "zones": { "min_clearance": 0.5 } }, "diff_pair_dimensions": [], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_type_mismatch": "ignore", "hole_clearance": "error", "hole_near_hole": "error", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "warning", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.0, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.19999999999999998, "min_microvia_drill": 0.09999999999999999, "min_resolved_spokes": 2, "min_silk_clearance": 0.0, "min_text_height": 0.7999999999999999, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.0, "min_via_annular_width": 0.09999999999999999, "min_via_diameter": 0.5, "solder_mask_clearance": 0.0, "solder_mask_min_width": 0.0, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 5, "td_on_pad_in_zone": false, "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, "td_onviapad": true } ], "teardrop_parameters": [ { "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [], "via_dimensions": [], "zones_allow_external_fillets": false }, "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "conflicting_netclasses": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "warning", "power_pin_not_driven": "error", "similar_labels": "warning", "simulation_model_issue": "ignore", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico-oled-adapter.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.25, "via_diameter": 0.8, "via_drill": 0.4, "wire_width": 6 } ], "meta": { "version": 3 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "specctra_dsn": "", "step": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "page_layout_descr_file": "", "plot_directory": "", "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "01a24222-42e6-4e92-be4c-2681fd306cd2", "" ] ], "text_variables": {} } ================================================ FILE: boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_sch ================================================ (kicad_sch (version 20230121) (generator eeschema) (uuid 01a24222-42e6-4e92-be4c-2681fd306cd2) (paper "A4") (title_block (title "FanPico OLED Adapter") (date "8/18/2023") (rev "1.0") (company "Timo Kokkonen ") (comment 3 "FanPico I2C OLED Display Mounting Adapter") ) (lib_symbols (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Conn_01x04" (at 0 -7.62 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Conn_01x04_1_1" (rectangle (start -1.27 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default)) (fill (type none)) ) (rectangle (start -1.27 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default)) (fill (type none)) ) (rectangle (start -1.27 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default)) (fill (type none)) ) (rectangle (start -1.27 2.667) (end 0 2.413) (stroke (width 0.1524) (type default)) (fill (type none)) ) (rectangle (start -1.27 3.81) (end 1.27 -6.35) (stroke (width 0.254) (type default)) (fill (type background)) ) (pin passive line (at -5.08 2.54 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Graphic:Logo_Open_Hardware_Small" (in_bom no) (on_board no) (property "Reference" "#SYM" (at 0 6.985 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0) (effects (font (size 1.27 1.27)) hide) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Sim.Enable" "0" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "Logo" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "Open Hardware logo, small" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Logo_Open_Hardware_Small_0_1" (polyline (pts (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) ) (stroke (width 0) (type default)) (fill (type outline)) ) ) ) ) (global_label "SDA" (shape input) (at 185.42 64.77 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 17acbf31-052d-4474-ab4e-7377f95a9ad3) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.9461 64.77 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "VCC" (shape input) (at 185.42 82.55 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 23cc7323-5c1b-4bb8-8cb1-9c0c39ec4327) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.8856 82.55 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "GND" (shape input) (at 144.78 64.77 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 262b05a6-fb49-48e3-939d-56df30100752) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 138.0037 64.77 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "SCL" (shape input) (at 185.42 87.63 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 2b9eb18a-1263-47ae-bdf5-890f6b9368eb) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 179.0066 87.63 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "VCC" (shape input) (at 185.42 72.39 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 3ea3f704-4656-40d5-b4cb-0358ba89742d) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.8856 72.39 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "SDA" (shape input) (at 144.78 72.39 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 5cff8103-6feb-468b-8946-e19f6abcdcc9) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 138.3061 72.39 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "SCL" (shape input) (at 144.78 69.85 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 615d302d-2e3f-409d-8bba-4a7a43dcb35d) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 138.3666 69.85 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "VCC" (shape input) (at 144.78 67.31 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 83aca0f9-69c1-403e-ab9a-b6889f617ee7) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 138.2456 67.31 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "GND" (shape input) (at 185.42 69.85 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid d58ed763-97e9-4cc1-8370-09c9e0fadf1b) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.6437 69.85 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "GND" (shape input) (at 185.42 85.09 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid db01d9f0-b85d-4038-b794-ee1c6d58be7c) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.6437 85.09 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "SDA" (shape input) (at 185.42 90.17 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid e77b4e22-c776-4902-a3a9-8f432a2b34bb) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 178.9461 90.17 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (global_label "SCL" (shape input) (at 185.42 67.31 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid e78465ee-9787-4793-a5c6-70a4c7f1fc42) (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 179.0066 67.31 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 190.5 67.31 0) (unit 1) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) (uuid 1a021620-bf70-427c-a4d9-84f887b0d5f2) (property "Reference" "J2" (at 193.04 67.31 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "1.5\" OLED" (at 193.04 69.85 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 190.5 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 190.5 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 5d9ab219-d231-4e20-b8c8-36df5b04307c)) (pin "2" (uuid c4e64eeb-0e37-43c9-bf8a-0969ce84e87f)) (pin "3" (uuid b94c5be2-748d-468d-b84b-97a32786b279)) (pin "4" (uuid 8b651663-c766-4476-9d60-5f78a5f8265f)) (instances (project "fanpico-oled-adapter" (path "/01a24222-42e6-4e92-be4c-2681fd306cd2" (reference "J2") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 149.86 67.31 0) (unit 1) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) (uuid 8506e8bf-7714-498f-9a7d-dfbfea70201d) (property "Reference" "J1" (at 152.4 67.31 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "To_FanPico_J3" (at 152.4 69.85 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 149.86 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 149.86 67.31 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d0498a82-4b51-4f48-aca5-b98e387d2ea6)) (pin "2" (uuid 119e5284-b3e6-41e0-b7c2-88c707d4346a)) (pin "3" (uuid c464bf82-42de-4d4e-baaf-4c07ac700af2)) (pin "4" (uuid 438e0990-f8f1-4836-bab5-813257921251)) (instances (project "fanpico-oled-adapter" (path "/01a24222-42e6-4e92-be4c-2681fd306cd2" (reference "J1") (unit 1) ) ) ) ) (symbol (lib_id "Connector_Generic:Conn_01x04") (at 190.5 85.09 0) (unit 1) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) (uuid 8df42fa9-c80b-4ffb-96bd-a05965086906) (property "Reference" "J3" (at 193.04 85.09 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Value" "1.3\" OLED (alt pinout)" (at 193.04 87.63 0) (effects (font (size 1.27 1.27)) (justify left)) ) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 190.5 85.09 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 190.5 85.09 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8e7bb566-e94c-4381-ace9-b5333939631c)) (pin "2" (uuid cc98d16d-4042-4f97-b290-6e988062eaae)) (pin "3" (uuid 9cec6b79-2402-43bc-b769-3da4e786aa7c)) (pin "4" (uuid 887287ff-19e5-44f4-936d-3b3a56f12afd)) (instances (project "fanpico-oled-adapter" (path "/01a24222-42e6-4e92-be4c-2681fd306cd2" (reference "J3") (unit 1) ) ) ) ) (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 274.32 173.99 0) (unit 1) (in_bom no) (on_board no) (dnp no) (fields_autoplaced) (uuid f1e06441-051d-4743-b85b-899411d9e0a0) (property "Reference" "#SYM2" (at 274.32 167.005 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "Logo_Open_Hardware_Small" (at 274.32 179.705 0) (effects (font (size 1.27 1.27)) hide) ) (property "Footprint" "" (at 274.32 173.99 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 274.32 173.99 0) (effects (font (size 1.27 1.27)) hide) ) (property "Sim.Enable" "0" (at 274.32 173.99 0) (effects (font (size 1.27 1.27)) hide) ) (instances (project "fanpico-oled-adapter" (path "/01a24222-42e6-4e92-be4c-2681fd306cd2" (reference "#SYM2") (unit 1) ) ) ) ) (sheet_instances (path "/" (page "1")) ) ) ================================================ FILE: boards/power-board/README.md ================================================ # FanPico PowerBoard PCB Size: 65mm x 65mm This is a small power injector board for powering high-power fans, that require too much current to be connected directly into Fan ports on FanPico boards. Board is meant to sit in between FanPico Fan ports and the high-power fans. Fan Power Supply (12V) should be connected into one of the power inputs (only on input should be used at a time). Fans should be connected into "FAN" ports on the board, and cables connected from "FANCTRL" ports into FanPico (FAN ports) for fan control/monitoring. Note, "FANCTRL" ports do not have voltage pin connected, so no power is drawn from the fan controller. ![PCB Render](board.png) ## Assembly note Install either F1 (polyfuse) or F2 (fuse holder for 5x20mm fuses), not both. ## Manufacturing note PCB should have at least 2oz copper thickness for adequate current carrying capacity. ## Change Log - v1.1 - Make tracks thicker for ground pins on power connectors. - v1.0 - Initial revision. ================================================ FILE: boards/power-board/bom.csv ================================================ "Reference","Value","Datasheet","Footprint","Qty","DNP","LCSC Part Number","Mouser Part Number" "D1","LED","~","Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder","1","","C434432","710-150080GS75000" "F1","Polyfuse 10A","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","C22446882","" "F2","10A","~","FanPico:Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal","1","","C717027","" "J1","Power Input 2","~","TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal","1","","C1509679","" "J2","Power Input 1","~","FanPico:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle","1","","C305826 or C7461144","571-3502111 / 571-1748041" "J3","AUX Power Output","~","TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal","1","","C1509679","" "J5","FAN1","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J6","FAN2","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J7","FAN3","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J8","FAN4","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J13","FANCTRL1","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J14","FANCTRL2","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J15","FANCTRL3","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "J16","FANCTRL4","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","C240840","538-47053-1000" "R1","49.9K","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","C114624","" ================================================ FILE: boards/power-board/kicad/fanpico_powerboard.kicad_pcb ================================================ (kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") (general (thickness 1.6) (legacy_teardrops no) ) (paper "A4") (layers (0 "F.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") (34 "B.Paste" user) (35 "F.Paste" user) (36 "B.SilkS" user "B.Silkscreen") (37 "F.SilkS" user "F.Silkscreen") (38 "B.Mask" user) (39 "F.Mask" user) (40 "Dwgs.User" user "User.Drawings") (41 "Cmts.User" user "User.Comments") (42 "Eco1.User" user "User.Eco1") (43 "Eco2.User" user "User.Eco2") (44 "Edge.Cuts" user) (45 "Margin" user) (46 "B.CrtYd" user "B.Courtyard") (47 "F.CrtYd" user "F.Courtyard") (48 "B.Fab" user) (49 "F.Fab" user) (50 "User.1" user) (51 "User.2" user) (52 "User.3" user) (53 "User.4" user) (54 "User.5" user) (55 "User.6" user) (56 "User.7" user) (57 "User.8" user) (58 "User.9" user) ) (setup (pad_to_mask_clearance 0) (allow_soldermask_bridges_in_footprints no) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) (disableapertmacros no) (usegerberextensions yes) (usegerberattributes yes) (usegerberadvancedattributes yes) (creategerberjobfile yes) (dashed_line_dash_ratio 12.000000) (dashed_line_gap_ratio 3.000000) (svgprecision 4) (plotframeref no) (viasonmask no) (mode 1) (useauxorigin no) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (pdf_front_fp_property_popups yes) (pdf_back_fp_property_popups yes) (dxfpolygonmode yes) (dxfimperialunits yes) (dxfusepcbnewfont yes) (psnegative no) (psa4output no) (plotreference yes) (plotvalue yes) (plotfptext yes) (plotinvisibletext no) (sketchpadsonfab no) (subtractmaskfromsilk yes) (outputformat 1) (mirror no) (drillshape 0) (scaleselection 1) (outputdirectory "kerbers/") ) ) (net 0 "") (net 1 "GND") (net 2 "Net-(D1-A)") (net 3 "PWR") (net 4 "12V") (net 5 "unconnected-(J2-Pin_4-Pad4)") (net 6 "PWM1") (net 7 "TACHO1") (net 8 "PWM2") (net 9 "TACHO2") (net 10 "TACHO3") (net 11 "PWM3") (net 12 "PWM4") (net 13 "TACHO4") (net 14 "unconnected-(J14-Pin_2-Pad2)") (net 15 "unconnected-(J15-Pin_2-Pad2)") (net 16 "unconnected-(J16-Pin_2-Pad2)") (net 17 "unconnected-(J13-Pin_2-Pad2)") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "122c5fd9-0152-493a-a90d-832992ab4838") (at 111 69) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H1" (at 0 -4.2 0) (layer "F.Fab") (uuid "2f40ce51-b2ad-4d22-bf36-f61d0a9f72a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "6c32842c-4ebf-4170-8f10-d0236f6a971d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "18255847-64fb-4855-977c-0e91f23b1852") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "61263197-a3c8-4171-b99f-b1518ba96a36") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6ccd5f05-ba60-4334-a9be-ee4b39bfd0ae") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f4888861-1d31-4d74-a474-8a44956dc51c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/8d822505-7e42-4073-89ed-547549cccb06") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files exclude_from_bom dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "dffc2761-9c9d-472c-9b53-9f269d15bd86") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "646ad9ef-0de8-4e1c-a7e9-bea91c99e8b1") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5ebe1678-bc07-4041-8f2e-438e930af49c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d255d3f3-d5e9-42a9-afde-6bb8d74d8e70") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "7163a738-1916-462a-97a6-edc6e2e83142") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d54ddb7e-3f05-46f6-a9bf-dbeba24e3216") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2b4178cc-3c28-4081-92a3-e9bea5b6fd0c") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (uuid "74f8102b-7647-4268-9bbc-7e3868360d00") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "80866ffc-13e0-477f-bb14-833d0bd2e3db") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "e6bc9f33-7502-48f9-9811-1302829000af") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "31a30ec3-6494-4117-91d6-34caa33c31c4") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "0d7ed684-9134-4019-b913-112575610e83") ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "125a682d-51ce-415e-a319-c984757c8458") (at 168 69) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H2" (at 0 -4.2 0) (layer "F.Fab") (uuid "df44a345-373f-466d-b462-190f9da97634") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at -2 3.2 0) (layer "F.Fab") (uuid "ff631744-de93-4776-a350-f611117022ab") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ff7a922f-364c-4172-846b-f865263a1d60") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "200e5fd6-a7e8-4813-84b1-facc7b3ff605") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "02e2511e-7b36-4f82-b5d8-1b80d4f73a43") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "11f4f9fe-2a32-43c8-939e-85ffee51ec28") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/a6a8cbd6-27c4-41d3-9336-2079b86b1b99") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files exclude_from_bom dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "e2e3d3d3-fb78-4039-9532-109c7adb76c5") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "ad4c1f40-7a72-426f-8012-ddd074c7f932") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "8db6372c-cd79-4ef5-8828-efb7a7e472e4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "8b5f3000-8449-4ff7-9545-6daee55d9873") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d8e315b1-5f88-4d17-bb3a-ad2bdc12736e") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "9c00aa5c-3bb5-466d-a728-9431336e94e3") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "4212a1e3-f5d9-48eb-9dfb-2286de9731bb") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (uuid "715a927c-ac11-4066-91b7-0d39d35f2ad2") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bcbaee8c-624a-43df-ab08-74d9495a3512") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f530c934-5a70-4984-a0f3-d40051cf2568") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "4869692f-db62-42e3-a39f-552d01794f86") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d14ed10f-6a67-4ba9-a6ed-cd0f08c6d59d") ) ) (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (layer "F.Cu") (uuid "135224fd-4486-464d-b38f-c7f85e3b7902") (at 113.5 110 -90) (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") (property "Reference" "J1" (at 9 -0.75 0) (layer "F.SilkS") (uuid "2bb8029e-ddd2-4b40-8244-579a3f5f241a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Power Input 2" (at 2.5 -6.805 -90) (unlocked yes) (layer "F.SilkS") (uuid "0ea984e6-53c7-4be3-ba5e-84640b5fc5a4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "cfff3d00-24c3-41e2-9e33-e0bb497e8c2c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "464bf364-21ee-431b-ad08-7c1ea8623279") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "561ee0a1-12ee-497c-b3d1-a14503f1d34e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1509679" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3fc2e817-89b1-485e-99ea-0fe62657140e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 -90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "36ae143f-dcf3-4d73-b7c5-b9ae88dafe2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TerminalBlock*:*") (path "/585950aa-c1db-4b1e-a1ba-676362a2262a") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start -2.8 4.9) (end -2.3 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a2d18d3-721a-4df7-9861-3d25263d32fa") ) (fp_line (start -2.56 4.66) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c3a13b9f-7c49-4b81-9abc-26b9ab89a64f") ) (fp_line (start -2.8 4.16) (end -2.8 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3a44d33f-013e-4bea-9867-cb75cc0a6a9d") ) (fp_line (start -2.56 4.1) (end 7.56 4.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "720933fe-a265-4966-a8e9-826d62f301c0") ) (fp_line (start -2.56 2.6) (end 7.56 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e7ab85fe-552e-4187-9772-234d8ec696bd") ) (fp_line (start 3.966 1.239) (end 3.931 1.274) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e9d35abb-c5f4-4696-8a9c-249f185271c2") ) (fp_line (start 3.773 1.023) (end 3.726 1.069) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "785cd4ef-a491-4cd3-8325-1831e3b12752") ) (fp_line (start 6.275 -1.069) (end 6.228 -1.023) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00b908da-8b04-4a72-a6d1-6741f2abed5c") ) (fp_line (start 6.07 -1.275) (end 6.035 -1.239) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "05d9e6e8-6b68-473a-aed9-fba969def24f") ) (fp_line (start -2.56 -2.301) (end 7.56 -2.301) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "127e893b-cad3-45b8-901c-a9462d7b886f") ) (fp_line (start -2.56 -5.261) (end -2.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8f248bc1-c16a-4833-9b91-fcc4ff2a5492") ) (fp_line (start -2.56 -5.261) (end 7.56 -5.261) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6929a445-30a1-4337-9c68-d497661c5299") ) (fp_line (start 7.56 -5.261) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00b167cc-dccb-4f4c-a03a-3913d6585f6f") ) (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c2fb61c0-bf45-4fa6-93dc-8ce9f43d9104") ) (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "12dc8b7b-c927-46f8-afee-f1da373fb6f8") ) (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "627986a9-f5d7-47dd-ae57-e169b5d288b3") ) (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "07761526-1d9c-4595-887d-0b97975c0e7a") ) (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "36b5ab29-9056-4104-b107-457e7579c245") ) (fp_circle (center 5 0) (end 6.68 0) (stroke (width 0.12) (type solid) ) (fill none) (layer "F.SilkS") (uuid "4e71164f-063e-4fb2-97a1-d4c7cc9d6b4c") ) (fp_line (start -3 5.1) (end 8 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b26a662c-05b6-45dc-b71e-961680de3433") ) (fp_line (start 8 5.1) (end 8 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "30f8556c-72d5-45c1-a9e2-6a967c5fd7c5") ) (fp_line (start -3 -5.71) (end -3 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "74c54b52-f59b-4e8e-84fd-b4c0a955785e") ) (fp_line (start 8 -5.71) (end -3 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0f0db0ef-e3f7-4f63-8b45-49f51d93bbed") ) (fp_line (start -2 4.6) (end -2.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3403f33f-a28d-4faf-8c78-5c8500f71bfe") ) (fp_line (start 7.5 4.6) (end -2 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8190427d-cec9-48c5-a606-467a2397aa90") ) (fp_line (start -2.5 4.1) (end 7.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b44bd206-7b38-45a8-9598-b79cc392fd0e") ) (fp_line (start -2.5 4.1) (end -2.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7120dcae-bdc8-4ece-82e9-95ecc4de62a6") ) (fp_line (start -2.5 2.6) (end 7.5 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e0cac947-e0c0-4867-a1ff-0fbd3cb16bce") ) (fp_line (start 1.138 -0.955) (end -0.955 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6166e256-ff66-4577-992a-a69ec3ef1945") ) (fp_line (start 6.138 -0.955) (end 4.046 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e5da2f87-9643-468a-b28c-a311d9fefda2") ) (fp_line (start 0.955 -1.138) (end -1.138 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f5fb2d56-9543-49ad-9bd9-0f71e4b5a849") ) (fp_line (start 5.955 -1.138) (end 3.863 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d3b4320d-b739-4ba5-80fa-c7d79e78a9d1") ) (fp_line (start -2.5 -2.3) (end 7.5 -2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1c792c96-c6e4-41f2-9d86-bb96c02df42a") ) (fp_line (start -2.5 -5.2) (end 7.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9716088c-24c3-4de5-9efc-afae17bea47d") ) (fp_line (start 7.5 -5.2) (end 7.5 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f29c5f0-3c9d-4c3b-be9c-ae6655a1506e") ) (fp_circle (center 0 0) (end 1.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "e375e58d-0b64-4bd8-a781-9690aa300893") ) (fp_circle (center 5 0) (end 6.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "8d66babb-6c1e-4d80-af43-fcd98b68a93a") ) (fp_text user "${REFERENCE}" (at 2.5 3.2 90) (layer "F.Fab") (uuid "d9a8f259-e3a6-4c64-bd26-eed13c74a5a3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 4 "12V") (pinfunction "Pin_1") (pintype "passive") (uuid "9a72e609-6a50-4569-8f5d-8953881e053d") ) (pad "2" thru_hole circle (at 5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "d189ca24-83af-41dd-ad50-887709a048a3") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "135a4fac-b77e-42de-80c3-1ded1794012a") (at 119 125) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J13" (at 7 2.5 0) (layer "F.SilkS") (uuid "38c8cc16-3e6f-48db-a441-69e183e1b2de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FANCTRL1" (at 4.05 -3.8 0) (layer "F.SilkS") (uuid "9a67d514-09ab-4b95-9efb-2c455c3a4153") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c0240403-89e0-4561-800a-e385eb400e02") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "7dd582a3-c284-488a-a215-69d1cd786bc2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ad03a0d-2078-400e-9cc5-2a12e7849312") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17a0bd34-e5ae-446e-9cbb-b0f7e5e8ac85") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc1d1463-4fa2-4929-897b-f9cc0ef3304b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/3e874be7-39f3-4b72-988d-f04452ac4001") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fae07dc9-6ede-45c9-ab5f-c861c1f0d575") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "481ae634-6e7d-4f23-b1e0-0263851ef18b") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "101a42aa-ef51-40b3-9151-87ee01a94bf7") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "086e0e8c-638b-43f4-b073-45ecaec8c191") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f6f85f93-653b-4105-b42d-66e264eb4518") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "10c627bd-fd16-45c4-97b4-a1e2e2b52267") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fb233ef6-6c3e-45cd-a469-ade89fe155dc") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8b021bb9-1b2a-4901-92c7-3d91fa63a81e") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "83a94d28-0332-41b5-b579-593259d16535") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c04608b0-0457-4b81-8714-6af7371dd99c") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d377c3ba-ba6c-40fb-807d-9b3bd36ad697") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d1851242-d143-4fb7-bcd2-5bad7aff9473") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "19893e04-ae8b-49ff-86f1-b85ba5b7f3bf") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "990937b3-78c9-444d-b166-cd12042dba7d") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c519993a-29f1-4716-9e9f-2476d7cac1c2") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "84a39af4-8e7f-4df4-859c-538641888a4e") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9d4b9c3-4431-4c9d-b6aa-59dadf50be2b") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2219544f-926b-47e6-8b95-13f064feeb9c") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1ae337c4-6b9b-4b91-b87c-acd891256c02") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e305ad47-d7f3-4d64-adf8-dbd9fe449373") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8957871b-8082-4252-854c-abbe9cbb3bc2") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "eb45e821-6664-46c1-a917-46fbd018eb6e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "20eb9fb3-0542-42ad-b4ae-3a06f1cc0b9b") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "f00f5300-766f-4da7-8962-36a24a0e9e2b") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 17 "unconnected-(J13-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (uuid "08ec36b0-cd1c-4247-ba3a-4d7cf72df98a") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 7 "TACHO1") (pinfunction "Pin_3") (pintype "passive") (uuid "e3f10453-7e0e-409d-8943-0e583b7096c6") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 6 "PWM1") (pinfunction "Pin_4") (pintype "passive") (uuid "d74d9961-cd19-4e53-b3b0-ff04a2d3633e") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle" (layer "F.Cu") (uuid "13e69964-9191-4f6d-88c2-481c3b031a4e") (at 118 96.13 90) (descr "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1") (tags "connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power") (property "Reference" "J2" (at -6.37 -0.25 180) (layer "F.SilkS") (uuid "95a6b372-bbb7-447f-b17d-5f49121985ee") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Power Input 1" (at 7.53 5.305 -90) (unlocked yes) (layer "F.SilkS") (uuid "8ccc73c0-f007-4ded-94f7-a46d32278563") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e0a1208e-f80a-4abf-b54b-7157d20baaf3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "86a5496b-5516-41ff-925b-95afbaacbc9d") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8aa37645-d726-4534-9c2d-66ec48026583") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C305826 or C7461144" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "692fc80e-3507-44ae-82ac-71baea14244e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "571-3502111" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87806acc-6141-4478-8c84-3ce21b742346") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/6c060192-f4aa-40cb-b945-a82a3d850e19") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 19.4 -10.5) (end 19.4 -7.7) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "94ee0b98-a5a6-4103-b7cd-6537f70c8712") ) (fp_line (start -4.1 -10.5) (end 19.4 -10.5) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "aa7b4fd0-be64-4e91-a4ba-c3ad888b3369") ) (fp_line (start -4.1 -7.7) (end -4.1 -10.5) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "dc171cbe-2d83-4709-9cb3-10829c63401c") ) (fp_line (start 14.29 -5.67) (end 14.29 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6d423b6c-86cf-415e-9196-42bdb739b73f") ) (fp_line (start 12.6 -5.67) (end 14.29 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a6a730cb-485a-4fa2-9ea8-7e34e6dbccb1") ) (fp_line (start 9.19 -5.67) (end 9.19 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0df9dd0e-fa8d-4df7-aabf-edcf496011d6") ) (fp_line (start 7.5 -5.67) (end 9.19 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d10b2f59-a564-4579-9080-59af5bbbbfc7") ) (fp_line (start 4.11 -5.67) (end 4.11 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fad7080b-daa3-44be-a601-9a412366d21a") ) (fp_line (start 2.42 -5.67) (end 4.11 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "104ed05d-377c-4af6-9fed-a8aa2ec74d41") ) (fp_line (start -0.78 -5.67) (end -0.78 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "544d596f-cff9-43ee-8584-91cfa5b8d6c7") ) (fp_line (start -2 -5.67) (end -0.78 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7d4112cf-f649-459d-aeb5-fb7dac01e7b2") ) (fp_line (start 17.6 -4.28) (end -2.3 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b5aee2ea-3995-4d0f-ba0c-ed6a30b192bc") ) (fp_line (start 12.6 -4.28) (end 12.6 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3038879b-01fd-402a-a83a-99da7fd552af") ) (fp_line (start 7.5 -4.28) (end 7.5 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cc47d39a-16f2-4a77-b939-c39727dba452") ) (fp_line (start 2.42 -4.28) (end 2.42 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2d1fa2c6-2d3d-4218-a0fc-a96071f278f4") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d185a93f-fb7a-4e29-9e1c-61c529c1944b") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "263a115c-df4c-4566-89b1-dbfff38f04de") ) (fp_line (start -4.15 -3.14) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3f3bd91e-1b74-4494-b145-6ef5dd945e9f") ) (fp_line (start 20.47 -1.86) (end 19.39 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b0bcf479-c477-46ad-9e7a-42a85869112f") ) (fp_line (start -5.23 -1.86) (end -4.15 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "49dc89e8-da6b-458c-9ce4-f8755cbfab48") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cce32178-9ce3-4426-8e46-5bf15fb6a9d9") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "15f826e1-e138-4b8d-acc7-581cf833e1bc") ) (fp_line (start 20.47 1.86) (end 20.47 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42212502-7b10-4083-a16d-b4cb1cba605c") ) (fp_line (start 19.39 1.86) (end 20.47 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0f1f70bc-2f04-495e-87b9-cc3a5ecb4f96") ) (fp_line (start -4.15 1.86) (end -5.23 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "764748be-6185-4183-ad43-b1acd26a4e5b") ) (fp_line (start -5.23 1.86) (end -5.23 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e71b87ac-2c68-4bdd-8a8a-2c02684428e5") ) (fp_line (start 19.39 3.14) (end 19.4 -3.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5cf97c1c-6217-4b28-8cbe-f89ec0f37a59") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3cdb9bf9-1661-49bd-9aa3-de8eb9be2834") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7547c4f6-557e-4d39-8054-f31c00cd292b") ) (fp_line (start -3.01 4.28) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0a8a9aef-3df1-4d77-befc-3e40a17b4444") ) (fp_arc (start 19.39 3.14) (mid 19.056102 3.946102) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2a50bb03-5b24-452a-b6d2-74d94cf7d685") ) (fp_arc (start -3.01 4.28) (mid -3.816102 3.946102) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3455b3ae-0064-4e7e-b71c-eded0b24e183") ) (fp_line (start 17.7 -5.67) (end 19.39 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "908398ba-917f-492b-b9d0-7adf91fe3f2b") ) (fp_line (start 17.7 -4.28) (end 17.7 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "984ac017-b373-4a18-8d49-97644a54206f") ) (fp_line (start -2.47 -4.28) (end -2.47 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "f3b538d6-2253-405e-bada-c34e106ba5d7") ) (fp_arc (start 18.25 -4.28) (mid 19.056102 -3.946102) (end 19.39 -3.14) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "eb6d1cb9-acc7-4edd-9e56-ed906aed3b93") ) (fp_arc (start -4.15 -3.14) (mid -3.816102 -3.946102) (end -3.01 -4.28) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "fa885330-acb2-4e29-a613-1e754a9568f9") ) (fp_line (start 20.57 -10.77) (end -5.33 -10.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "41155340-27ed-417a-8015-8d0d7580c767") ) (fp_line (start -5.33 -10.77) (end -5.33 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3789a3e2-b7df-4494-afee-cc5f06b2df0f") ) (fp_line (start 20.57 4.38) (end 20.57 -10.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d02034ce-d866-4a72-84cc-884f8bb9adb9") ) (fp_line (start -5.33 4.38) (end 20.57 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "52d5953c-8b4d-44c6-9e77-0700cfc4ce2e") ) (fp_line (start 17.85 -5.52) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "748d0811-6310-4395-90fe-3668f1bca6e4") ) (fp_line (start 14.14 -5.52) (end 14.14 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b355e518-3cd5-4c0c-a571-f78e98a3792b") ) (fp_line (start 12.75 -5.52) (end 14.14 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "05b7a974-2b8d-4460-8d6f-c1daf5383620") ) (fp_line (start 9.04 -5.52) (end 9.04 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32c0d843-b11f-4aa6-bdd6-6fbeaa0e9efb") ) (fp_line (start 7.65 -5.52) (end 9.04 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "251d8788-404e-425f-a81d-ddf2bbb7f792") ) (fp_line (start 3.96 -5.52) (end 3.96 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37f26a7f-95b3-4b4f-8a3f-4f087c0ac037") ) (fp_line (start 2.57 -5.52) (end 3.96 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d8105cb5-6cf8-487d-9254-f2c69d514f89") ) (fp_line (start -0.93 -5.52) (end -0.93 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e41a7732-b673-4a75-b8cb-39cea3456c4b") ) (fp_line (start -2.32 -5.52) (end -0.93 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f7160282-1c2e-460f-a10d-1a76ecc0e6b8") ) (fp_line (start 18.1 -4.13) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "42c66a7b-7d24-44db-93a5-c06a7bee605f") ) (fp_line (start 17.85 -4.13) (end 17.85 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9b9b7b0b-2bb5-4825-b08a-ff2c6720f91b") ) (fp_line (start 12.75 -4.13) (end 12.75 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b7e865d3-2628-4026-a9bb-963bbe211e10") ) (fp_line (start 7.65 -4.13) (end 7.65 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5268d305-13d4-4633-afea-b6fb4e600fdd") ) (fp_line (start 2.57 -4.13) (end 2.57 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94a555e3-2160-4ce8-b0f9-7ed347619883") ) (fp_line (start -2.32 -4.13) (end -2.32 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "463f3e33-0e44-449e-806d-b580b82fa793") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9850e670-83cc-462a-80b4-b0cd4c64e50a") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d893474a-92bd-4b47-9a20-db8ff636d0b8") ) (fp_line (start -4 -2.99) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "32d81566-73f4-4232-bfdc-d998889af8f2") ) (fp_line (start 20.32 -1.71) (end 19.24 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "16d4c538-e234-48a7-984a-2cc0f681f4af") ) (fp_line (start -5.08 -1.71) (end -4 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73e06e83-0946-4a10-87d2-e5dc62714ede") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "99a00889-fe46-4011-82b4-1fdde9d63b1f") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9928f810-bcc0-4b67-91f9-f332bdd16865") ) (fp_line (start 20.32 1.71) (end 20.32 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2840c8f5-d872-47b7-a939-2ada86b05a17") ) (fp_line (start 19.24 1.71) (end 20.32 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e28eda0d-c3af-4dd6-bcac-0b368f96ffa7") ) (fp_line (start -4 1.71) (end -5.08 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "982c1899-fe2c-4de1-9433-f8b56f694e31") ) (fp_line (start -5.08 1.71) (end -5.08 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a731e234-8666-49ac-a26f-cb4abd7665f5") ) (fp_line (start 19.24 2.99) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5ca0cd1c-3e57-4f08-8da6-f32288b8dfda") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "826e3411-0e6a-44c1-bc82-cbbeb7226d3d") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e6f85a9e-f710-4a6a-b511-ef0bf4c8d440") ) (fp_line (start -2.86 4.13) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9f52d9f2-85f9-478d-9dda-87d4c675d77c") ) (fp_arc (start 18.1 -4.13) (mid 18.906102 -3.796102) (end 19.24 -2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3e8e9e8c-d177-45a9-947a-4a068de93c85") ) (fp_arc (start -4 -2.99) (mid -3.666102 -3.796102) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9aea7652-e79b-4322-97de-7d4eed2080ce") ) (fp_arc (start 19.24 2.99) (mid 18.906102 3.796102) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8119dff3-53f8-4d82-829f-9c910333514e") ) (fp_arc (start -2.86 4.13) (mid -3.666102 3.796102) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "589d92a8-5edc-4cd8-b79f-baa89bd8ef5f") ) (fp_text user "${REFERENCE}" (at 8 0 90) (layer "F.Fab") (uuid "148b3ac0-944f-4239-b911-b999212c6561") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 4 "12V") (pinfunction "Pin_1") (pintype "passive") (uuid "6400d8fe-5bf7-41f3-9621-886723490de6") ) (pad "2" thru_hole circle (at 5.08 0 90) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "3e9fbd0f-cb17-4834-86e6-405661e8d719") ) (pad "3" thru_hole circle (at 10.16 0 90) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (uuid "84cd7a59-b86b-494d-946f-002e5158bad1") ) (pad "4" thru_hole circle (at 15.24 0 90) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 5 "unconnected-(J2-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (uuid "6e2b30e5-2aba-4586-a2a3-46500b1323e6") ) (pad "MP" thru_hole circle (at -4.23 -5.45 90) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "015679db-fb82-4b17-ac4b-86db3fa49b23") ) (pad "MP" thru_hole circle (at 19.47 -5.45 180) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "81a39b81-7dcd-4ce5-83b6-b284e8f7783e") ) (model "${KICAD8_3DMODEL_DIR}/Connector_TE-Connectivity.3dshapes/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") (uuid "150c41ba-d4cc-4654-b7bb-b30849b599b3") (at 142.5 91) (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") (tags "resistor handsolder") (property "Reference" "R1" (at 0 2.25 0) (layer "F.SilkS") (uuid "f05c00cf-ccd1-4fc3-a0b6-53d1b82b6e2c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "49.9K" (at 0 1.43 0) (layer "F.Fab") (uuid "e6c72815-5858-4481-aeb9-041dff389752") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d5607dc9-1d70-42e9-86b1-5087a9254258") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a6d9138d-c570-4d20-9132-e73700975c79") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resistor" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "df2ca6f2-58c2-48f7-a074-fa318d618a51") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C114624" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5a8e8925-4758-467d-ae28-a09d7230718e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b01104d9-9943-4e53-a738-ca6785f887ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "R_*") (path "/88139579-ebfe-47d6-92bb-3792f7b0144d") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr smd) (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4e854590-0483-4d10-9313-b5a6c4a07ce0") ) (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7da39957-e04a-4b5e-8727-1d6bba056b75") ) (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fabf70bf-4d16-4bb4-b14d-2d4c44eef1d0") ) (fp_line (start -1.65 0.73) (end -1.65 -0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1ca49041-7f35-4160-a6db-698f8d1a0092") ) (fp_line (start 1.65 -0.73) (end 1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e737c56e-dc75-4c08-9b33-75aed32ca7c6") ) (fp_line (start 1.65 0.73) (end -1.65 0.73) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "a5fa1940-799e-43bf-9c3a-a93a6c6d7e50") ) (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1d26ff5c-32f6-428e-b582-212badd9da52") ) (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "509143a5-d423-4b02-bd8c-59f1bfce4a66") ) (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8d670796-c8fd-4434-b24a-7bb992df9b38") ) (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f2b96fb3-ee9d-4825-acdd-141f6fce4ea3") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "eb60f5fa-f623-4237-860a-b42503aafed8") (effects (font (size 0.4 0.4) (thickness 0.06) ) ) ) (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 3 "PWR") (pintype "passive") (uuid "9f9b2106-2d62-4ee0-9479-6fcba5ee341a") ) (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (net 2 "Net-(D1-A)") (pintype "passive") (uuid "37af7923-a0d6-4b77-9fe7-712a33e31666") ) (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "159bd90d-c409-4cd6-8440-66e9ead674b3") (at 149.02 70 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J7" (at 7.6 2.2 0) (layer "F.SilkS") (uuid "2093a8d0-291d-4126-b96d-7e90fe81cfc3") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FAN3" (at 3.6 -3.8 0) (unlocked yes) (layer "F.SilkS") (uuid "2d5d4bb2-1661-4d7c-a0cd-d706ec4a7815") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5ddc5463-6cec-4cd3-8bab-a471f914fc5b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4f7090e9-d4f6-42df-9e98-982182c29ec0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "aae218ca-457f-43d8-8b84-d03d40337649") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "07c55fcc-e371-4ef1-a097-fbbd15a017ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dae05cea-6236-4886-9815-99130f9f4028") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/33877919-8ec8-4f7a-82ec-d316de4ea266") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "98ea6810-d043-43d6-82d5-fc7a1030bc7b") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ad7a411-67a4-40a0-83a0-ece048256e48") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ce915f8-8a0b-4e5e-9e85-ba1c8b311f0b") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bff1a2f9-72f1-4666-b383-98ff2b5701a7") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f0bb477-5ece-4607-8c73-6ca5f13cbb95") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69611036-9331-4a67-a5fe-eec1260ac9a2") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "14e4825c-4c94-4e55-b866-d481136201cc") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3eef939c-c4c0-4a28-9363-14eb16ce4d0e") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9af74123-758d-4ea9-bd3f-50a8c7fd2edd") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6b3dd429-74aa-4a35-888e-4db5f9dce1e1") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "90d50fd5-7984-4aa0-ab7b-55888929de81") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4eb4a7a6-80a3-41bd-a3e6-eb4c74adbf09") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b801ebe5-f910-4c52-af44-750ffdadbfa9") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d76a7235-7f85-454f-b311-d14a6da9cf35") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6df683de-12e1-49b5-a6ba-64899c1b0afb") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e7ba822e-fdad-4467-83a1-bf69fab44039") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2c8e6e22-109c-42d2-a736-74bf1e090f96") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3fa73892-17ed-44b6-896a-7e5c33b07d72") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f07dbdd-b3fe-457d-bd25-1fc17fd3a2ea") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a90dd1c-b57f-447a-b79d-8f421ffee634") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25effc71-ed68-4c3b-a180-32adb8abcd87") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "d6910ef2-a898-4603-9665-fede404a14ef") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "f3c1c275-b008-4623-8f75-0ebde802701c") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "ee6b91bf-93a1-4883-96f8-1b64591bac8d") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "24a3935e-f54a-4302-99aa-7417619159c7") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 10 "TACHO3") (pinfunction "Pin_3") (pintype "passive") (uuid "9542a585-4575-40f7-acd5-7c9c1e6e4a9c") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "PWM3") (pinfunction "Pin_4") (pintype "passive") (uuid "e27386f8-3998-44ae-ae0a-08843e4aad9e") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "26c4dcf2-e9ff-472a-a025-14635153f317") (at 141.4 125) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J15" (at 7 2.5 0) (layer "F.SilkS") (uuid "8526fdae-7ac7-442b-b290-5f124ea531d8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FANCTRL3" (at 4.05 -3.8 0) (layer "F.SilkS") (uuid "c58f04b3-0e1c-4d8e-b4b9-9e2a623fc92b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3565d576-e9b3-4830-810a-55da50d3ecdb") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f65b6840-f7a7-47eb-97db-c3b4da630c3f") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c2d28b60-3381-4382-84b3-a05851b22ca8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c49b31f9-a28f-4504-8edb-3c3d25871206") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e3a78788-3200-4f98-8227-127e72db99ec") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/d0099b4b-a307-400f-9e74-80d3c03c95da") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "afc20243-2331-46f7-ad37-e15b6ffa9583") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "eea71af2-dfba-4aa2-b4d5-0cd68295fa86") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ddadb885-c9a3-4ac8-a7aa-1d3a222796f6") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6e3da586-be8d-4af4-ab19-0b0c8e463739") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8939d7ad-0ead-476d-a4c0-c8b7a52efd1a") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7fba2c5d-7f19-49d6-b36a-a778e82d2d05") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cb29c92b-11ff-44d5-924d-a4be30d62723") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2f39aa6d-131d-4e8c-92bc-4a3f0b74fc64") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4d03013e-2656-43ae-ad3f-efb2268e3bb4") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "7715c036-e822-461e-a388-b9d1bec795f0") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4c1a7f5d-46fb-4299-8058-53e84dff7324") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "6554a3d8-ffdf-4358-888a-e8ca2d0f9d8a") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f82f6d2f-6aca-457a-a47c-8909f4997e3d") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "48b32ad9-e5a0-4302-b9fa-9e55468c7ac4") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd4a25f9-aa1f-4822-801a-7c5616627600") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fb147e58-f391-4f2b-a029-fab7abaf6517") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "afe80a4c-e6c7-4127-8834-a664b44378bf") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1adc1b3e-0283-4d37-b311-97075139d893") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "15b730f3-8007-4538-a02a-2b17a53352dd") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4279b6da-18b6-4d32-8387-e4215b5a5284") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "af2b2732-1a32-4f7c-8351-784ebcb1ab60") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "2be100de-a0a2-485d-8ab4-40c0198d2d37") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "dececd0d-2ffc-4ca8-a04e-427ab056af32") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "c7f69fc1-e969-496c-aaf4-400542b44ae6") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 15 "unconnected-(J15-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (uuid "882eb2da-407d-46e7-92a3-9005f9560590") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 10 "TACHO3") (pinfunction "Pin_3") (pintype "passive") (uuid "c93afffa-2b9b-4598-b451-275721433a9b") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 11 "PWM3") (pinfunction "Pin_4") (pintype "passive") (uuid "2eecad24-7f58-42e6-9f47-a38245719e6d") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "39650d20-f922-4e77-8480-12c7f83d5250") (at 152.6 125) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J16" (at 7 2.5 0) (layer "F.SilkS") (uuid "6b3d80b7-452f-4e78-840f-ac211984ef73") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FANCTRL4" (at 4.05 -3.8 0) (layer "F.SilkS") (uuid "79983a86-3d24-40b9-b4dd-065d38054559") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "87e7f490-07e4-4dc5-9eaa-33b91d01c244") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9c4ddf46-41f0-4415-85a6-253047ca43b8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dcf52253-3a6a-4e10-965d-224dbb305f48") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f2ab05eb-ef25-4ecc-a7bf-bb78ae158a68") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1feb8217-44e2-4e6a-a08a-6c8956f9b2ff") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/dbd42e67-107e-4bcb-b476-8cedf15e6fa3") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f7b2c906-a1f4-4dc9-b0a9-9826e4d8ef92") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "92dc0f23-5911-4601-b0c4-63ffb171b536") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d1f1d631-7750-4f6f-9cc7-942f0c61fde9") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4864c226-6376-4b89-96f6-00e2fd9122d7") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "7fa241c0-b6c5-44b8-9bce-09307e195238") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3424010e-acca-4d4d-af6f-3df071481c96") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c90ce668-946a-42c7-864d-abd19a6f1d6c") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c10ce28-ba63-4cef-aa6f-80b635fa0dda") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0ec61cd2-facd-4455-9300-78a9c92af567") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "40ef8ed2-f388-47f3-8512-d8e8ad2084e3") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b9b8256e-1e4b-41f2-8bf0-10335aae1b82") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "43bf3a51-1e4d-4fb7-b661-7fb79b2d644e") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3f61a8c1-96c9-45ca-a7b2-6f9706185a38") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "808c75c1-a930-462d-a25f-4b2db2b2bf48") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5f94363a-be77-45ee-9fb1-7245096ffede") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "13dfb127-d6e8-4e02-a9ec-3de9789131aa") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "56939446-bb06-405f-9aa2-539a20edcd06") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8f2ad605-406b-4ef3-9cf1-fa71554ec2fd") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d1bd2de5-08ce-4681-bd26-e07377d18d5e") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "583ae17a-48c6-4f37-a569-004c15974406") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef34bcb1-07be-4789-b233-92de9e52ec32") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "50972569-19ed-4cbe-a40c-7f5c26ef23ac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "fbf0abd5-61e2-4c82-8ad9-9b00e0a9e368") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "29045469-11a6-4df4-9ee3-eb9f0fdcfa5e") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 16 "unconnected-(J16-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (uuid "c816cbd8-9413-474e-91f3-d8726da03d44") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 13 "TACHO4") (pinfunction "Pin_3") (pintype "passive") (uuid "b1f35a14-600b-4120-a031-365cbdd2ad39") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 12 "PWM4") (pinfunction "Pin_4") (pintype "passive") (uuid "5e6b47f8-3d0c-49b3-87c6-a5d45cc9252e") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "47ad1dd3-6b9a-4f0e-9af6-e71b98dc4ffe") (at 111 126) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H4" (at 0 -4.2 0) (layer "F.Fab") (uuid "a73372ee-305e-43cb-bb1f-f87ab50a95e8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "01676d05-4eb5-4ec0-be24-45027fcca542") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "959be880-73fb-4efa-b7a4-6a1a267696d1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "38efbaca-b187-4b22-b14d-cc184790e8d0") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e191204e-db0e-4140-b245-7998ff1a7fc4") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "de89bfa5-fe73-4bfd-915b-832ac9c2ddbd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/00ef6f13-86ec-44b8-9042-d2e14e2fbf32") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files exclude_from_bom dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "4e808998-5dc9-4e98-908e-fbc9d95dcca4") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "b2c6b7a9-52dc-4643-a816-9d4acc46be76") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "6f4f1551-54f7-4f33-80ec-86fd265324a2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "bb79fab7-e116-49f9-983e-14e5a1eb727b") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d583c00a-7f1e-46c6-a41b-b67c183fa7d4") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "a5ccae93-3642-4348-9163-846ea18f62a8") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "1874ce3f-b53b-40a4-a1ee-2d101f11b58f") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (uuid "d163d903-6c7c-4f85-b507-892959aca742") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "72c6d05d-dace-452a-8e86-c1598970f5f3") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "20f4e051-7fe9-43d9-8047-f4681c1fbce4") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "d3d1ded1-6e66-403c-bc52-13864812a270") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "2915160f-b27c-4b45-9579-3cdef75a43ce") ) ) (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (layer "F.Cu") (uuid "504fb3aa-7814-42fc-9f79-83f99fb2c4d7") (at 165.305 111.5 90) (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") (property "Reference" "J3" (at -3.75 -0.055 180) (layer "F.SilkS") (uuid "7faea389-e7fd-4e76-96e4-e1058c38e046") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "AUX Power Output" (at 2.5 -6.805 90) (layer "F.SilkS") (uuid "572c632a-91d7-46f6-a1a2-a84865409f97") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e065c9f2-b3dd-4f8a-be59-ce6ac1d90894") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "de79e952-83be-4dfb-9879-518e2c0dbcf5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dce1ba2e-b01f-4893-82e1-7f775aa3e1ef") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C1509679" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2c855b9b-dc33-4822-a74c-8715e031886c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 90) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fc2a8eed-53a8-4f0b-b558-a21fac56879b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "TerminalBlock*:*") (path "/c26ee22d-6acb-43d4-bcff-8f76a3bb83b3") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 7.56 -5.261) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fde4b2e1-fbeb-4d48-b99b-bebc95ace7ca") ) (fp_line (start -2.56 -5.261) (end 7.56 -5.261) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e81f7d53-9115-4fc8-a172-f3fa71698aac") ) (fp_line (start -2.56 -5.261) (end -2.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "09274082-fe5b-4f61-a7f6-80bc4fb49460") ) (fp_line (start -2.56 -2.301) (end 7.56 -2.301) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4c58d006-40ef-46de-8330-3b29f95210d4") ) (fp_line (start 6.07 -1.275) (end 6.035 -1.239) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ebbaec9e-22ae-42ea-9a59-068cc45729c3") ) (fp_line (start 6.275 -1.069) (end 6.228 -1.023) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "42e3c6a7-266d-4b59-a7ad-6c9c07ffb612") ) (fp_line (start 3.773 1.023) (end 3.726 1.069) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "dd9b14ff-0a93-4e47-8d37-9a3806431809") ) (fp_line (start 3.966 1.239) (end 3.931 1.274) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d3512821-09f3-47ae-8bca-442ed083f246") ) (fp_line (start -2.56 2.6) (end 7.56 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "be698793-3814-4333-add4-cafcea05c825") ) (fp_line (start -2.56 4.1) (end 7.56 4.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4cdf7401-08f5-4a90-bf94-6d83e30bf6d2") ) (fp_line (start -2.8 4.16) (end -2.8 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e31f5a88-3a7c-4856-a0a4-345729012707") ) (fp_line (start -2.56 4.66) (end 7.56 4.66) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fa99c35c-956b-4895-b6a6-b4400945b085") ) (fp_line (start -2.8 4.9) (end -2.3 4.9) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4c2b6b07-40fc-4714-aa68-a26fefd427a1") ) (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "43f90928-9370-4f36-b259-eccfbe074e49") ) (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9afae4de-2124-4411-833e-2523fc68a181") ) (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "91b7642c-f6a6-4d9b-9094-111d99172153") ) (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "90aaa63d-57e7-4e44-a9b0-ac28173c3bcd") ) (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a365ee6c-a0f9-4624-84c2-f633c8bb74e8") ) (fp_circle (center 5 0) (end 6.68 0) (stroke (width 0.12) (type solid) ) (fill none) (layer "F.SilkS") (uuid "70ca3027-8126-4b82-8dfe-6bb6620c1f02") ) (fp_line (start 8 -5.71) (end -3 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5b8d2f23-5f8a-46be-85c2-b89d70e44f5a") ) (fp_line (start -3 -5.71) (end -3 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "87e63852-bff4-4381-9272-442ed09944e9") ) (fp_line (start 8 5.1) (end 8 -5.71) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "592c87f7-9025-40a4-a1ea-22a5ef4e53d8") ) (fp_line (start -3 5.1) (end 8 5.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "fab16cbd-d401-4433-b52b-031b31326cc5") ) (fp_line (start 7.5 -5.2) (end 7.5 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fc7e95b7-6aa2-4f7d-8c5a-1132fc679690") ) (fp_line (start -2.5 -5.2) (end 7.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c35a9cb1-b2a3-448e-a499-1b20d74f5880") ) (fp_line (start -2.5 -2.3) (end 7.5 -2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "577c3643-f960-4920-bcbe-e5facb89a863") ) (fp_line (start 5.955 -1.138) (end 3.863 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a0c5ef70-0306-4edd-831f-a9f475c59f39") ) (fp_line (start 0.955 -1.138) (end -1.138 0.955) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "7ec26314-a9e6-4fdb-ac9e-040cf94d237d") ) (fp_line (start 6.138 -0.955) (end 4.046 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "91b960cb-27a2-405b-97ae-86e26e629020") ) (fp_line (start 1.138 -0.955) (end -0.955 1.138) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9c96c05d-14ee-4912-9bde-f33b1ccf437a") ) (fp_line (start -2.5 2.6) (end 7.5 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c8b9e8f0-c0e2-4dd8-b5fd-83d724c73658") ) (fp_line (start -2.5 4.1) (end -2.5 -5.2) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3b26fa25-ddad-4dc2-8ead-6cf647448a27") ) (fp_line (start -2.5 4.1) (end 7.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5aba0337-a5e3-496d-aa88-79f64261df5a") ) (fp_line (start 7.5 4.6) (end -2 4.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "be9f9ee5-a597-4aa2-97e7-3dd33baf0678") ) (fp_line (start -2 4.6) (end -2.5 4.1) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "89525e0e-7d85-4469-9449-3ae234b9c6e5") ) (fp_circle (center 5 0) (end 6.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "acacf73c-b509-4996-bd3c-e3c1481cfb04") ) (fp_circle (center 0 0) (end 1.5 0) (stroke (width 0.1) (type solid) ) (fill none) (layer "F.Fab") (uuid "425d3eac-9341-45c5-8738-efba5ba828a9") ) (fp_text user "${REFERENCE}" (at 2.5 3.2 90) (layer "F.Fab") (uuid "3875d09b-9352-4f3a-a37b-cda3cdbb13df") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pinfunction "Pin_1") (pintype "passive") (uuid "677e8699-8333-4454-a1fa-189e3d158c04") ) (pad "2" thru_hole circle (at 5 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (uuid "00cde20b-c4f2-4312-b490-6880b93af9e1") ) (model "${KICAD8_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "5f2b238c-b14c-4ed8-a0ca-32706d906708") (at 130.22 125) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J14" (at 7 2.5 0) (layer "F.SilkS") (uuid "4e9f5d3a-958b-4913-a190-ea3d2c26c60f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FANCTRL2" (at 4.05 -3.8 0) (layer "F.SilkS") (uuid "383299f1-0b71-4892-9842-c4a7988a2885") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9ee9d593-894d-49c2-9529-ec65d00a9e4b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "802f24cb-c49c-441d-a9d4-043925e57f52") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "589ca678-eedb-49ef-9731-c6835debc365") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "8ab5b73a-df95-4ca9-8b84-e34cea107990") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "48849c2b-9fa1-44ea-8066-5054d0077fda") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/d293bf06-4fa6-4a6a-8caf-33de5190bc15") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr through_hole) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f4290080-4699-46a6-baa6-6fdf87d3a22d") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a0ddadc7-a40c-4680-8b05-7ec376830481") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bbbcd6fd-d5fc-4b68-88a4-112f43b3c495") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "04cb3011-44e7-438f-b586-df8dbba58834") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a1f28366-c264-466f-ab86-645ed0b1dcd4") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "92774485-26e4-4ec0-a943-7e7e66888201") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "59ec2393-2995-44b8-89f6-9d5565032cd0") ) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6bf25080-b8e1-49f6-85b9-d6ae61187017") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "1faaa32e-0327-40ff-b167-8cd2dc266bd7") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d7577c2f-d921-4c7d-97f1-092f10207d7e") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "68c1f050-a5df-4e90-916e-f10b6ab66e9c") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d25e0e5f-935a-4a53-9f7d-8b9741248636") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "252e2d1d-97f1-4722-82d6-6e246ba568a0") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "53d5803b-f33c-43c8-a99e-3d4ef6949817") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8d4b23d1-b640-44b2-bdf4-aec1c33dda86") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "36c2fcab-35bf-4375-a490-d90bb92a2a2a") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ec94e3bf-0102-4b1f-8054-7b8ca0fe295e") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "bec56284-f41d-4ac1-9591-b975aae4ad82") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef4d5278-5c59-47ca-9110-ad426a032900") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "dd114147-ef88-4ba5-a5b2-918d86942eb1") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3c16328d-1119-45fe-b965-c8214d672c8f") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "e2ecd43e-c357-44de-a054-c01123791955") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 90) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "b602a24b-16ef-407c-b2dc-116af3880804") ) (pad "1" thru_hole rect (at 0 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "ee300eca-0b78-4f03-ac2c-9cf475601795") ) (pad "2" thru_hole oval (at 2.54 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 14 "unconnected-(J14-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (uuid "fe34684f-1113-4656-b3f0-4050cfc952f4") ) (pad "3" thru_hole oval (at 5.08 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 9 "TACHO2") (pinfunction "Pin_3") (pintype "passive") (uuid "c2983a43-8531-49b5-8fbd-715a778be77d") ) (pad "4" thru_hole oval (at 7.62 0 90) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 8 "PWM2") (pinfunction "Pin_4") (pintype "passive") (uuid "83aa5d22-3c15-4368-b5d1-7e5be6159556") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "6553fd97-7cde-43fa-b86b-19169ea92391") (at 160.22 70 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J8" (at 7.6 2.2 0) (layer "F.SilkS") (uuid "45a597d4-d181-4430-891b-8d2a13712a5c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FAN4" (at 3.6 -3.8 180) (unlocked yes) (layer "F.SilkS") (uuid "f2c95857-88e9-4195-ab45-a0dc022e673b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f3fcff13-e5a7-4267-a370-f04fae3d3a34") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1f35d68e-8f99-4e2b-9832-64817ecd2e5b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9d0d2d92-9fa0-495a-989a-da0fa7ed8498") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6fff4e47-e3b7-4bd3-aa71-c9b81f67964b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "dd67e80a-099a-48fb-b30f-9854f0184ecb") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/cb46f6da-9c03-41d5-ac68-56f41f3bfc29") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1ed31519-9f5c-4398-a32d-56c19ce16bf6") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a38c2b28-cd16-4a6e-977c-d6a0a9369bc9") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4b9210e7-d2c2-402b-b979-aa0c25088581") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ec859d08-1164-4d7c-b263-eccd0113d75a") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0eb96a33-8602-4d6a-bfa7-38c431d79ad5") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e340006-dd24-4c12-95f7-cab72508d40a") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a0fd2bb3-2b50-45a8-a70a-f7955356c859") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "18ee697a-571b-472f-b105-473344f5e44c") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "835c3bb7-ca0a-4322-8856-dc438477e088") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2e3cd228-f210-4687-a65f-1e7dadd16b91") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "0e3e9430-ab64-487a-977e-21e133e6fb8d") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "b13afbb2-7576-4068-a210-ef5d6a910e0d") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ad31167f-8016-491f-b25b-e0b70c76869c") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "93690686-24bb-4dc0-92ae-ff959a4750e8") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f3a4bb1a-c9ce-45ee-90e1-5281785115d0") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4a9e2456-538f-4722-b6d4-ca3e01f07e9d") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "047f53d8-b044-48f8-854d-480e78efdac8") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e2569dca-6f69-4f21-b60c-d3ee29a6e45a") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef5ca425-6c1a-4553-8b7b-f3202ca9d196") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "151e22d6-3690-43e3-9ddb-94be4e546348") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "587db6a0-96e3-4b6b-b21d-fc2f69d97a32") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "cb09b07e-3d4f-45f9-a7be-c75f8b9effe8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "bb0bed78-6455-44dd-9217-fb05d1591cb8") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "1f0371b0-d18e-44e0-b67e-4113c09abe67") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "2a992343-9a2e-42f3-b216-d3d5b9ad84b8") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 13 "TACHO4") (pinfunction "Pin_3") (pintype "passive") (uuid "a12c66dd-ef94-4a93-9442-61ba6cecc89e") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 12 "PWM4") (pinfunction "Pin_4") (pintype "passive") (uuid "1fd82533-35f3-4b57-bf85-464a55abe861") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "85f14139-4051-464a-b4f7-2008bffccb50") (at 126.62 70 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J5" (at 7.6 2.2 0) (layer "F.SilkS") (uuid "1e278e08-cdf8-473a-bb63-b9bd67fda8d5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FAN1" (at 3.6 -3.8 180) (unlocked yes) (layer "F.SilkS") (uuid "c439ac11-ce06-4d28-a64e-df562acb87d8") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "1cf18bd3-80b4-4cd8-869c-9e70593f58f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4d4edf1d-1608-4cdb-876d-4c2ff8f802c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "d2591000-1314-49ed-a478-eee6e316c4ca") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "30858640-9497-4961-aee5-f8215736353c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "92dfd438-401a-448d-96dc-113558d4e056") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/ea730192-640f-4b59-b238-ab730ec8d235") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "53aef823-6972-49bd-9b8d-7cc9573e2cbb") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e865312b-5ff1-45e3-827f-7264efce60fb") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fca17e5f-f0ab-4509-825a-8c405cabe61f") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "11757f24-0d7a-4cfd-810d-d1c9a7c65e69") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0598eeb6-ec12-485f-9579-dfdaeefe4870") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9c785bd5-c125-4495-8f2b-10897ec7bb29") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5e4aa0a6-06bf-4d70-9f93-464915d8c1b5") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c7fc82d2-d72d-43ba-85bb-99f15664d234") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4082962e-ded3-436b-a385-e666ff2d54bd") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2323b9d8-539b-4369-974a-5c7590798884") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "07f2eba2-9d53-4910-b3e4-314de9c7f60f") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "26b31910-aae7-48f1-a6ee-1d0d627dd699") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "67e4cd17-468d-4cfd-ae3c-823fbd448070") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9be4b525-4372-4c8b-a044-590d211a310e") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "815aa389-d4fc-4d99-ba19-3387f54e42e6") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "17b93615-73bd-4ef3-b7c2-6618f094cf66") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1533ae77-1127-45da-8d5c-a4824d5864b4") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ed8ec72b-2e4c-470a-997f-fa8ed554ed7d") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8ab08451-c5bb-4552-a5c0-4517da942bc8") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4c59da05-2fd2-43be-ac86-015796b40c9c") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "13502640-1c3e-44cf-9083-f327a57503ea") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "6ae3b7bb-735c-4f39-a616-39a27957ef2b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "af479b67-d9f6-461a-97c2-b4d388940c2d") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "401fdc29-d79d-4d63-9c77-870caa27e0ac") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "de9f7857-1ee9-453e-8d63-68ca5bb5708c") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 7 "TACHO1") (pinfunction "Pin_3") (pintype "passive") (uuid "ca4d9995-941e-4fde-a170-2512490b3a73") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 6 "PWM1") (pinfunction "Pin_4") (pintype "passive") (uuid "377e9f76-a257-46ec-b461-49ca70011939") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (layer "F.Cu") (uuid "8d7e5403-a791-483c-9b94-e3b3587b4fac") (at 134.105 92.88) (descr "Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator") (tags "fuse handsolder") (property "Reference" "F1" (at 0 3.62 0) (layer "F.SilkS") (uuid "851052a9-9ad9-4310-8fb6-5e2d125801cf") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Polyfuse 10A" (at -0.105 1.87 0) (layer "F.Fab") (uuid "64391733-cb6f-4969-91b1-4af36eeb791a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6952892a-671e-4462-8468-489e45b1a3f8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2032b6f2-09d4-40ef-8b48-31c0b3e35560") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "3f5fe160-9e39-4e5c-9825-40f374659d74") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C22446882" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "009e28d5-1a1c-4717-9043-f2cbe440817f") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "103639cd-08f7-421d-89a1-6e0bf2889fa2") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*polyfuse* *PTC*") (path "/6bce634f-cf21-41ea-be72-8b8e72434ace") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr smd) (fp_line (start -2.203752 -2.67) (end 2.203752 -2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c1d201cc-5dcb-48a1-a862-304f6e990435") ) (fp_line (start -2.203752 2.67) (end 2.203752 2.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1923af5e-9533-49d2-9d2d-1e91f767d2f1") ) (fp_line (start -4.78 -2.98) (end 4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "269da079-e723-4641-82fe-3ba8fd5d25b5") ) (fp_line (start -4.78 2.98) (end -4.78 -2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e1b88cb1-eae2-4732-bc6f-5b6a1359f7ed") ) (fp_line (start 4.78 -2.98) (end 4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5a1637d1-2aa2-4712-b60c-bef8a2f93ef0") ) (fp_line (start 4.78 2.98) (end -4.78 2.98) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9e48029d-4b74-4a67-b770-6164b77083ca") ) (fp_line (start -3.6775 -2.56) (end 3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ead8f38d-3c4a-42b6-9281-c93749e03e64") ) (fp_line (start -3.6775 2.56) (end -3.6775 -2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0c0b919c-3418-4e82-9b21-7eeaaad60d56") ) (fp_line (start 3.6775 -2.56) (end 3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "68777893-94dc-4744-9c94-bf49898a4be2") ) (fp_line (start 3.6775 2.56) (end -3.6775 2.56) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "89471e62-e5fe-4477-ab7b-edfda27f59f1") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "5408596b-ed68-43bb-8e2c-b6f0568cf0de") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" smd roundrect (at -3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 4 "12V") (pintype "passive") (uuid "d5cca7b4-a85a-4ccc-ac92-bd18c79d5ff2") ) (pad "2" smd roundrect (at 3.475 0) (size 2.1 5.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.119048) (net 3 "PWR") (pintype "passive") (uuid "66fb7d56-7165-4981-87d3-641ed3bee067") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_2920_7451Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "FanPico:Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal" (layer "F.Cu") (uuid "c893dbf0-5b07-4efc-acf2-4075f08d4053") (at 130.5 100) (descr "Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf") (tags "fuse clip open") (property "Reference" "F2" (at 10.25 3.5 0) (layer "F.SilkS") (uuid "f119ed5a-1a29-49d6-9c5e-be1663a6a69a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "10A" (at 10.25 3.5 0) (layer "F.Fab") (uuid "60a9d366-9c7e-47c1-b432-ab67187a2c2e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "FanPico:Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "401c9cb5-23b2-4a52-8c7f-a1e8da568a74") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ccf7edb6-17ca-42bf-9aea-00f8962b08ac") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Fuse" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "bbc56e30-0db3-4439-83fa-3486addc244a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C717027" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e862edcb-30ef-4943-8c69-94a152f9cb5b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "a2ca1e04-b770-4eb0-9734-bab31cc25763") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "*Fuse*") (path "/e9e360ec-5e6e-4582-9ecd-e13b21f3b66a") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr through_hole) (fp_line (start 0.6 -2.6) (end 0.6 -1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "49ce601f-5950-4f8b-a052-803ff9b5bec2") ) (fp_line (start 0.6 2.6) (end 0.6 1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c582771a-812d-4621-b81b-c5bf8dcac1e1") ) (fp_line (start 4.6 -2.6) (end 0.6 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fea89daf-92d2-4f89-b5ed-4bef8470c23b") ) (fp_line (start 4.6 -2.6) (end 4.6 -1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3ecfab58-66e0-4453-b41f-a22071ad0645") ) (fp_line (start 4.6 2.6) (end 0.6 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "94ac748a-dc61-4a2e-994d-829c066589b9") ) (fp_line (start 4.6 2.6) (end 4.6 1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6f1ba093-3b0b-47df-9865-0a3af371a866") ) (fp_line (start 15.9 -2.6) (end 15.9 -1.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "db9113da-4b71-4bda-a3b6-655ce6dbd217") ) (fp_line (start 15.9 -2.5) (end 4.6 -2.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1bf3b84b-d0a6-4fb9-9cb0-9cbf5d3975ff") ) (fp_line (start 15.9 2.5) (end 4.6 2.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9a1f1446-b3a2-4ad2-87e2-5c594429b0f0") ) (fp_line (start 15.9 2.6) (end 15.9 1.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "a6415664-8dc4-4089-a1c8-55d52d2bc2ea") ) (fp_line (start 15.9 2.6) (end 19.9 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "753281bb-2f21-4f2c-bd92-c51791e30353") ) (fp_line (start 19.9 -2.6) (end 15.9 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "31165c37-0b98-46bf-91d6-bd025da54d0a") ) (fp_line (start 19.9 -1.2) (end 19.9 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "597ae9f8-46d2-4516-90fc-2b2680681ad7") ) (fp_line (start 19.9 1.2) (end 19.9 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ecf3cfda-b0a1-4233-ae86-c6c82cd54ca4") ) (fp_line (start -1.9 -3.25) (end -1.9 3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "644ba785-84d8-448b-a830-5e170541a563") ) (fp_line (start -1.9 -3.25) (end 22.4 -3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "cff72ede-7ce2-4522-bd4f-aee3598e07a2") ) (fp_line (start 22.4 3.25) (end -1.9 3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "5c75819d-160f-4551-a530-48c8063b0296") ) (fp_line (start 22.4 3.25) (end 22.4 -3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "24637a05-d61a-4f74-a75a-8ccec3dcf1d3") ) (fp_line (start 0.6 -2.6) (end 4.6 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "707557c6-1fd2-4d3c-9031-4239b2ba04ed") ) (fp_line (start 0.6 2.6) (end 0.6 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "28b1abf8-e0f0-496e-962f-e12f3f2f1b68") ) (fp_line (start 4.6 -2.6) (end 4.6 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "40ae1aa3-d114-4a07-8101-009c5ee492c7") ) (fp_line (start 4.6 -2.5) (end 15.9 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f54830df-632e-472a-93f6-12dfc61f81a8") ) (fp_line (start 4.6 2.6) (end 0.6 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "409282f7-7e91-4539-8dbf-ed4335ad6041") ) (fp_line (start 15.9 -2.6) (end 15.9 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "37c95d94-b608-4cbd-833b-e8099b76c099") ) (fp_line (start 15.9 2.5) (end 4.6 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "01703375-d4d3-49b5-b536-2e4b4d9b798d") ) (fp_line (start 15.9 2.6) (end 19.9 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5a2e72a5-d44f-45bd-9735-72aa5148d2f6") ) (fp_line (start 19.9 -2.6) (end 15.9 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ee663089-90ce-4eda-bbd7-73298b6aeec2") ) (fp_line (start 19.9 2.6) (end 19.9 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d5dbf493-30ad-4243-8136-745aaea7092d") ) (fp_text user "${REFERENCE}" (at 10.25 0 0) (layer "F.Fab") (uuid "a66ad864-e0e5-4fc4-a864-f22cb8794d89") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.25) (net 4 "12V") (pintype "passive") (uuid "2d22f202-6186-443e-81a9-5d4f4877fb5b") ) (pad "1" thru_hole roundrect (at 5.2 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.25) (net 4 "12V") (pintype "passive") (uuid "5d317943-f7d1-4308-80d8-b07f09499918") ) (pad "2" thru_hole circle (at 15.3 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pintype "passive") (uuid "db2d904e-acdd-449f-ba87-1cfbc963dc41") ) (pad "2" thru_hole circle (at 20.5 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pintype "passive") (uuid "a9dd516a-07ad-45a1-82ce-6217512ecf53") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") (uuid "ce9e4797-a0f1-4bdc-a0c8-0f2e90aa7485") (at 146.25 91.25 180) (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") (tags "diode handsolder") (property "Reference" "D1" (at -0.25 -2 0) (layer "F.SilkS") (uuid "5619815c-5f22-456f-9a61-89ccd4657733") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "LED" (at 0 1.65 0) (layer "F.Fab") (uuid "5d3c5fa8-f9a6-4608-a625-cf6e23e83b6a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "49911aa6-a4c2-40a9-a8a2-9025dd21379b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "422fd74b-3463-4b1b-adf6-1874cc35478e") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Light emitting diode" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "9324c745-c96e-4d79-8c2b-4de1f9ccd0fd") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "C434432" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "489c5caa-fb72-45d2-9e58-d2c980340eba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "2ee002ab-ff75-49f6-ab02-0f7eb5952b5b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") (path "/72bca949-3cca-431e-9e14-9ef070604402") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (attr smd) (fp_line (start 1 -0.96) (end -1.86 -0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "24f3b37f-7bd2-4548-bf3e-d75a0f39b577") ) (fp_line (start -1.86 0.96) (end 1 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c5d97a2d-a145-4ecb-840c-fedf34e84b7f") ) (fp_line (start -1.86 -0.96) (end -1.86 0.96) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d76195f8-a47c-406d-95b4-f621c847fad8") ) (fp_line (start 1.85 0.95) (end -1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c653301e-bb0b-48ca-9818-e66a31f31fe1") ) (fp_line (start 1.85 -0.95) (end 1.85 0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f427c6cb-032f-47d8-9a28-8d75f393a2e3") ) (fp_line (start -1.85 0.95) (end -1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "59099c09-c7b3-49a2-ae47-26a4a182577a") ) (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "3c22619c-6c0a-4b1b-92ba-243ca1ebda72") ) (fp_line (start 1 0.6) (end 1 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ca1db774-ec0d-4eb0-8f72-9651927b0757") ) (fp_line (start 1 -0.6) (end -0.7 -0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "25d9bccf-809e-42fc-b475-26b37623e18c") ) (fp_line (start -0.7 -0.6) (end -1 -0.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "403739f8-1e4f-4709-9060-4bbc4f300f3c") ) (fp_line (start -1 0.6) (end 1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "324de392-5629-4bd0-9a47-e0ee37d8e4c1") ) (fp_line (start -1 -0.3) (end -1 0.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f05f4f4-4ef1-43a1-b3b9-c6f8a863a583") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "299bd00b-7421-4673-b57e-4eadcf99ecf8") (effects (font (size 0.5 0.5) (thickness 0.08) ) ) ) (pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 1 "GND") (pinfunction "K") (pintype "passive") (uuid "29ec23a7-12ba-421f-8b0f-9f594f60f1ff") ) (pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) (net 2 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (uuid "b6db2eb9-3936-4478-b0a6-8b0bfb1444d8") ) (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu") (uuid "e154b492-97a0-42c7-81cb-f7ddc23352be") (at 137.82 70 180) (descr "4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf") (tags "pin header 4-pin CPU fan") (property "Reference" "J6" (at 7.6 2.2 0) (layer "F.SilkS") (uuid "381e0a88-d6c2-408c-bd90-9d56cd09f70d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "FAN2" (at 3.6 -3.8 180) (unlocked yes) (layer "F.SilkS") (uuid "1c68b932-1f8c-4aa0-9935-e7548c417dd6") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08dd3a2c-9b77-4b2e-9774-5278d38ddf90") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6d0b545c-45b2-4107-80bd-fe887773f476") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0e4b6e08-d83b-4c3d-a23f-5d4c457d05a3") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "LCSC Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "6dd73305-967f-47cc-9768-50aacf7c852e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c4421b83-bb74-4309-b20a-c5b3ac898fd4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "Connector*:*_1x??_*") (path "/3625af7d-e1de-4d78-ad29-82068afedcda") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 1) (attr through_hole) (fp_line (start 8.95 3.4) (end -1.35 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "11748586-dd9a-44a6-ac90-3520739f63e3") ) (fp_line (start 8.95 -2.55) (end 8.95 3.4) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ae629f60-8f98-4d4b-8fb3-b7ec36c31423") ) (fp_line (start 5.75 -2.55) (end 8.95 -2.55) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "722e5cf1-7f24-4a01-8def-b1e74b0848bc") ) (fp_line (start 5.08 2.29) (end 5.08 3.3) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6a0c5f74-7b4f-4de4-8cf5-1f0446958a47") ) (fp_line (start 0 3.3) (end 0 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3d6825db-b8a9-4290-b3a7-28f3388113a2") ) (fp_line (start 0 2.29) (end 5.08 2.29) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "051094ef-0034-4573-8bf7-95fa952850b5") ) (fp_line (start -1.35 3.4) (end -1.35 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "78a48345-758e-4b50-a4d5-c5c5f20194a1") ) (fp_line (start -1.35 -2.6) (end 4.4 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6c3c85e7-a9ee-46f7-92ec-21582d69f4ca") ) (fp_line (start 9.35 -3.2) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "935b4077-690e-4dd6-8e58-c5f22625060d") ) (fp_line (start 9.35 -3.2) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "88506544-12ed-4e46-aa7e-67676c755523") ) (fp_line (start -1.75 3.8) (end 9.35 3.8) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "2c5e4972-d6be-482c-88f0-1703e2ca1ce9") ) (fp_line (start -1.75 3.8) (end -1.75 -3.2) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "9cc8bb17-0a95-4ae2-92de-868f75b5b328") ) (fp_line (start 8.85 3.3) (end -1.2 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d7fc2f12-666d-4b25-8604-a9bb5727955c") ) (fp_line (start 8.85 -2.5) (end 8.85 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "1fbdc604-4dd8-4c6b-8da4-66f40e20f29d") ) (fp_line (start 5.75 -2.5) (end 8.85 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0e5b3b1-a2a6-4aa6-a0b2-2dfe2eee7a1b") ) (fp_line (start 5.1 3.3) (end 5.1 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "de9e3dbb-85e2-4b12-8d75-2f74241995e9") ) (fp_line (start 5.1 2.3) (end 0 2.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "effc842c-9904-4600-b5a6-8f99a15c9e34") ) (fp_line (start 0 2.3) (end 0 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "592f8514-7bf0-4e15-99d6-89cbfb479e9a") ) (fp_line (start -1.2 3.3) (end -1.25 3.3) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9866de38-e612-4ea0-9224-773aeecb9fa8") ) (fp_line (start -1.25 3.3) (end -1.25 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "305997b7-791f-4772-b806-e3af6dd42d3d") ) (fp_line (start -1.25 -2.5) (end 4.4 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d9da22c7-2d39-44af-a5c3-12ddeecd1f63") ) (fp_text user "${REFERENCE}" (at 1.85 -1.75 0) (layer "F.Fab") (uuid "c975c296-4cae-4602-ad85-066f26b61fa5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "" np_thru_hole circle (at 5.08 -2.16 270) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (uuid "c237b051-d51b-49a1-8501-c8f67ad0a5d1") ) (pad "1" thru_hole rect (at 0 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (uuid "418457b8-d9da-4f91-bd09-b819f9f199ae") ) (pad "2" thru_hole oval (at 2.54 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 3 "PWR") (pinfunction "Pin_2") (pintype "passive") (uuid "f4bfc247-b6f1-4cc1-ba91-0e1aacc9bb0b") ) (pad "3" thru_hole oval (at 5.08 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 9 "TACHO2") (pinfunction "Pin_3") (pintype "passive") (uuid "ecacb40e-7bc4-4e05-8329-4c4d37cf1f73") ) (pad "4" thru_hole oval (at 7.62 0 270) (size 2.03 1.73) (drill 1.02) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 8 "PWM2") (pinfunction "Pin_4") (pintype "passive") (uuid "6422046d-cf8a-48d8-8e74-c68057ae5a31") ) (model "${KICAD8_3DMODEL_DIR}/Connector.3dshapes/FanPinHeader_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) (footprint "Symbol:OSHW-Logo_11.4x12mm_SilkScreen" (layer "F.Cu") (uuid "f5ca014b-d6c6-467e-885d-8810ffb04819") (at 161.25 88.75) (descr "Open Source Hardware Logo") (tags "Logo OSHW") (property "Reference" "REF**" (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "f0636c42-a804-4471-bd24-c8a1b9959cc5") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "OSHW-Logo_11.4x12mm_SilkScreen" (at 0.75 0 0) (layer "F.Fab") (hide yes) (uuid "ac90c2b0-9843-47bf-a7e2-88a03713d782") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "Symbol:OSHW-Logo_11.4x12mm_SilkScreen" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "199628d9-710d-4e91-9b86-a8fdf4d06332") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "44cbfc0b-53c8-48e6-b6b9-7573b3ea1fb2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "14f87698-fdd7-4dff-b28d-d4a746ae9cc8") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr exclude_from_pos_files exclude_from_bom) (fp_poly (pts (xy 3.563637 2.887472) (xy 3.64929 2.913641) (xy 3.704437 2.946707) (xy 3.722401 2.972855) (xy 3.717457 3.003852) (xy 3.685372 3.052547) (xy 3.658243 3.087035) (xy 3.602317 3.149383) (xy 3.560299 3.175615) (xy 3.52448 3.173903) (xy 3.418224 3.146863) (xy 3.340189 3.148091) (xy 3.27682 3.178735) (xy 3.255546 3.19667) (xy 3.187451 3.259779) (xy 3.187451 4.083922) (xy 2.913529 4.083922) (xy 2.913529 2.888628) (xy 3.05049 2.888628) (xy 3.132719 2.891879) (xy 3.175144 2.903426) (xy 3.187445 2.925952) (xy 3.187451 2.92662) (xy 3.19326 2.950215) (xy 3.219531 2.947138) (xy 3.255931 2.930115) (xy 3.331111 2.898439) (xy 3.392158 2.879381) (xy 3.470708 2.874496) (xy 3.563637 2.887472) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "feb1ec4a-d8fb-4df7-aebb-f23ffec972dd") ) (fp_poly (pts (xy 3.238446 4.755883) (xy 3.334177 4.774755) (xy 3.388677 4.802699) (xy 3.446008 4.849123) (xy 3.364441 4.952111) (xy 3.31415 5.014479) (xy 3.280001 5.044907) (xy 3.246063 5.049555) (xy 3.196406 5.034586) (xy 3.173096 5.026117) (xy 3.078063 5.013622) (xy 2.991032 5.040406) (xy 2.927138 5.100915) (xy 2.916759 5.120208) (xy 2.905456 5.171314) (xy 2.896732 5.2655) (xy 2.890997 5.396089) (xy 2.88866 5.556405) (xy 2.888627 5.579211) (xy 2.888627 5.976471) (xy 2.614705 5.976471) (xy 2.614705 4.756275) (xy 2.751666 4.756275) (xy 2.830638 4.758337) (xy 2.871779 4.767513) (xy 2.886992 4.78829) (xy 2.888627 4.807886) (xy 2.888627 4.859497) (xy 2.95424 4.807886) (xy 3.029475 4.772675) (xy 3.130544 4.755265) (xy 3.238446 4.755883) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "317bb9ac-7120-41e2-9475-748133601bc4") ) (fp_poly (pts (xy -1.967236 4.758921) (xy -1.92997 4.770091) (xy -1.917957 4.794633) (xy -1.917451 4.805712) (xy -1.915296 4.836572) (xy -1.900449 4.841417) (xy -1.860343 4.82026) (xy -1.83652 4.805806) (xy -1.761362 4.77485) (xy -1.671594 4.759544) (xy -1.577471 4.758367) (xy -1.489246 4.769799) (xy -1.417174 4.79232) (xy -1.371508 4.824409) (xy -1.362502 4.864545) (xy -1.367047 4.875415) (xy -1.400179 4.920534) (xy -1.451555 4.976026) (xy -1.460848 4.984996) (xy -1.509818 5.026245) (xy -1.552069 5.039572) (xy -1.611159 5.030271) (xy -1.634831 5.02409) (xy -1.708496 5.009246) (xy -1.76029 5.015921) (xy -1.804031 5.039465) (xy -1.844098 5.071061) (xy -1.873608 5.110798) (xy -1.894116 5.166252) (xy -1.907176 5.245003) (xy -1.914344 5.354629) (xy -1.917176 5.502706) (xy -1.917451 5.592111) (xy -1.917451 5.976471) (xy -2.166471 5.976471) (xy -2.166471 4.756275) (xy -2.041961 4.756275) (xy -1.967236 4.758921) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "fa9fbb5c-ba54-4470-a008-c2214b5e6c45") ) (fp_poly (pts (xy 1.967254 3.276245) (xy 1.969608 3.458879) (xy 1.978207 3.5976) (xy 1.99536 3.698147) (xy 2.023374 3.766254) (xy 2.064557 3.807659) (xy 2.121217 3.828097) (xy 2.191372 3.833318) (xy 2.264848 3.827468) (xy 2.320657 3.806093) (xy 2.361109 3.763458) (xy 2.388509 3.693825) (xy 2.405167 3.59146) (xy 2.413389 3.450624) (xy 2.41549 3.276245) (xy 2.41549 2.888628) (xy 2.689411 2.888628) (xy 2.689411 4.083922) (xy 2.552451 4.083922) (xy 2.469884 4.080576) (xy 2.427368 4.068826) (xy 2.41549 4.04652) (xy 2.408336 4.026654) (xy 2.379865 4.030857) (xy 2.322476 4.058971) (xy 2.190945 4.102342) (xy 2.051438 4.09927) (xy 1.917765 4.052174) (xy 1.854108 4.014971) (xy 1.805553 3.974691) (xy 1.770081 3.924291) (xy 1.745674 3.856729) (xy 1.730313 3.764965) (xy 1.721982 3.641955) (xy 1.718662 3.480659) (xy 1.718235 3.355928) (xy 1.718235 2.888628) (xy 1.967254 2.888628) (xy 1.967254 3.276245) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "ff378f0a-ab79-485c-bcd1-306a4a578c3f") ) (fp_poly (pts (xy -1.49324 2.909199) (xy -1.431264 2.938802) (xy -1.371241 2.981561) (xy -1.325514 3.030775) (xy -1.292207 3.093544) (xy -1.269445 3.176971) (xy -1.255353 3.288159) (xy -1.248058 3.434209) (xy -1.245682 3.622223) (xy -1.245645 3.641912) (xy -1.245098 4.083922) (xy -1.51902 4.083922) (xy -1.51902 3.676435) (xy -1.519215 3.525471) (xy -1.520564 3.416056) (xy -1.524212 3.339933) (xy -1.531304 3.288848) (xy -1.542987 3.254545) (xy -1.560406 3.228768) (xy -1.584671 3.203298) (xy -1.669565 3.148571) (xy -1.762239 3.138416) (xy -1.850527 3.173017) (xy -1.88123 3.19877) (xy -1.903771 3.222982) (xy -1.919954 3.248912) (xy -1.930832 3.284708) (xy -1.937458 3.338519) (xy -1.940885 3.418493) (xy -1.942166 3.532779) (xy -1.942353 3.671907) (xy -1.942353 4.083922) (xy -2.216275 4.083922) (xy -2.216275 2.888628) (xy -2.079314 2.888628) (xy -1.997084 2.891879) (xy -1.95466 2.903426) (xy -1.942359 2.925952) (xy -1.942353 2.92662) (xy -1.936646 2.948681) (xy -1.911473 2.946177) (xy -1.861422 2.921937) (xy -1.747906 2.886271) (xy -1.618055 2.882305) (xy -1.49324 2.909199) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "bd98ad8a-21a6-4a25-9fba-2bfc940732a1") ) (fp_poly (pts (xy 4.390976 2.899056) (xy 4.535256 2.960348) (xy 4.580699 2.990185) (xy 4.638779 3.036036) (xy 4.675238 3.072089) (xy 4.681568 3.083832) (xy 4.663693 3.109889) (xy 4.61795 3.154105) (xy 4.581328 3.184965) (xy 4.481088 3.26552) (xy 4.401935 3.198918) (xy 4.340769 3.155921) (xy 4.281129 3.141079) (xy 4.212872 3.144704) (xy 4.104482 3.171652) (xy 4.029872 3.227587) (xy 3.98453 3.318014) (xy 3.963947 3.448435) (xy 3.963942 3.448517) (xy 3.965722 3.59429) (xy 3.993387 3.701245) (xy 4.048571 3.774064) (xy 4.086192 3.798723) (xy 4.186105 3.829431) (xy 4.292822 3.829449) (xy 4.385669 3.799655) (xy 4.407647 3.785098) (xy 4.462765 3.747914) (xy 4.505859 3.74182) (xy 4.552335 3.769496) (xy 4.603716 3.819205) (xy 4.685046 3.903116) (xy 4.594749 3.977546) (xy 4.455236 4.061549) (xy 4.297912 4.102947) (xy 4.133503 4.09995) (xy 4.025531 4.0725) (xy 3.899331 4.00462) (xy 3.798401 3.897831) (xy 3.752548 3.822451) (xy 3.71541 3.714297) (xy 3.696827 3.577318) (xy 3.696684 3.428864) (xy 3.714865 3.286281) (xy 3.751255 3.166918) (xy 3.756987 3.15468) (xy 3.841865 3.034655) (xy 3.956782 2.947267) (xy 4.092659 2.894329) (xy 4.240417 2.877654) (xy 4.390976 2.899056) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "8bafedf5-773c-4e36-a59b-b1fa81774e0f") ) (fp_poly (pts (xy 1.209547 2.903364) (xy 1.335502 2.971959) (xy 1.434047 3.080245) (xy 1.480478 3.168315) (xy 1.500412 3.246101) (xy 1.513328 3.356993) (xy 1.518863 3.484738) (xy 1.516654 3.613084) (xy 1.506337 3.725779) (xy 1.494286 3.785969) (xy 1.453634 3.868311) (xy 1.38323 3.95577) (xy 1.298382 4.032251) (xy 1.214397 4.081655) (xy 1.212349 4.082439) (xy 1.108134 4.104027) (xy 0.984627 4.104562) (xy 0.867261 4.084908) (xy 0.821942 4.069155) (xy 0.70522 4.002966) (xy 0.621624 3.916246) (xy 0.566701 3.801438) (xy 0.535995 3.650982) (xy 0.529047 3.572173) (xy 0.529933 3.473145) (xy 0.796862 3.473145) (xy 0.805854 3.617645) (xy 0.831736 3.72776) (xy 0.872868 3.798116) (xy 0.902172 3.818235) (xy 0.977251 3.832265) (xy 1.066494 3.828111) (xy 1.14365 3.807922) (xy 1.163883 3.796815) (xy 1.217265 3.732123) (xy 1.2525 3.633119) (xy 1.267498 3.512632) (xy 1.260172 3.383494) (xy 1.243799 3.305775) (xy 1.19679 3.215771) (xy 1.122582 3.159509) (xy 1.033209 3.140057) (xy 0.940707 3.160481) (xy 0.869653 3.210437) (xy 0.832312 3.251655) (xy 0.810518 3.292281) (xy 0.80013 3.347264) (xy 0.797006 3.431549) (xy 0.796862 3.473145) (xy 0.529933 3.473145) (xy 0.53093 3.361874) (xy 0.56518 3.189423) (xy 0.631802 3.054814) (xy 0.730799 2.95804) (xy 0.862175 2.899094) (xy 0.890385 2.892259) (xy 1.059926 2.876213) (xy 1.209547 2.903364) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "f1e9226d-33f4-4aef-a7be-03509e334389") ) (fp_poly (pts (xy 0.557528 4.761332) (xy 0.656014 4.768726) (xy 0.784776 5.154706) (xy 0.913537 5.540686) (xy 0.953911 5.403726) (xy 0.978207 5.319083) (xy 1.010167 5.204697) (xy 1.044679 5.078963) (xy 1.062928 5.01152) (xy 1.131571 4.756275) (xy 1.414773 4.756275) (xy 1.330122 5.023971) (xy 1.288435 5.155638) (xy 1.238074 5.314458) (xy 1.185481 5.480128) (xy 1.13853 5.627843) (xy 1.031589 5.96402) (xy 0.800661 5.979044) (xy 0.73805 5.772316) (xy 0.699438 5.643896) (xy 0.6573 5.502322) (xy 0.620472 5.377285) (xy 0.619018 5.372309) (xy 0.591511 5.287586) (xy 0.567242 5.229778) (xy 0.550243 5.207918) (xy 0.54675 5.210446) (xy 0.53449 5.244336) (xy 0.511195 5.31693) (xy 0.4797 5.419101) (xy 0.442842 5.54172) (xy 0.422899 5.609167) (xy 0.314895 5.976471) (xy 0.085679 5.976471) (xy -0.097561 5.3975) (xy -0.149037 5.235091) (xy -0.19593 5.087602) (xy -0.236023 4.96196) (xy -0.267103 4.865095) (xy -0.286955 4.803934) (xy -0.292989 4.786065) (xy -0.288212 4.767768) (xy -0.250703 4.759755) (xy -0.172645 4.760557) (xy -0.160426 4.761163) (xy -0.015674 4.768726) (xy 0.07913 5.117353) (xy 0.113977 5.244497) (xy 0.145117 5.356265) (xy 0.169809 5.442953) (xy 0.185312 5.494856) (xy 0.188176 5.503318) (xy 0.200046 5.493587) (xy 0.223983 5.443172) (xy 0.257239 5.358935) (xy 0.297064 5.247741) (xy 0.33073 5.147297) (xy 0.459041 4.753939) (xy 0.557528 4.761332) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "e427b139-d9b5-4342-b7b0-a442d298a918") ) (fp_poly (pts (xy -5.026753 2.901568) (xy -4.896478 2.959163) (xy -4.797581 3.055334) (xy -4.729918 3.190229) (xy -4.693345 3.363996) (xy -4.690724 3.391126) (xy -4.68867 3.582408) (xy -4.715301 3.750073) (xy -4.768999 3.885967) (xy -4.797753 3.929681) (xy -4.897909 4.022198) (xy -5.025463 4.082119) (xy -5.168163 4.106985) (xy -5.31376 4.094339) (xy -5.424438 4.055391) (xy -5.519616 3.989755) (xy -5.597406 3.903699) (xy -5.598751 3.901685) (xy -5.630343 3.84857) (xy -5.650873 3.79516) (xy -5.663305 3.727754) (xy -5.670603 3.632653) (xy -5.673818 3.554666) (xy -5.675156 3.483944) (xy -5.426186 3.483944) (xy -5.423753 3.554348) (xy -5.41492 3.648068) (xy -5.399336 3.708214) (xy -5.371234 3.751006) (xy -5.344914 3.776002) (xy -5.251608 3.828338) (xy -5.15398 3.835333) (xy -5.063058 3.797676) (xy -5.017598 3.755479) (xy -4.984838 3.712956) (xy -4.965677 3.672267) (xy -4.957267 3.619314) (xy -4.956763 3.539997) (xy -4.959355 3.46695) (xy -4.964929 3.362601) (xy -4.973766 3.29492) (xy -4.989693 3.250774) (xy -5.016538 3.217031) (xy -5.037811 3.197746) (xy -5.126794 3.147086) (xy -5.222789 3.14456) (xy -5.303281 3.174567) (xy -5.371947 3.237231) (xy -5.412856 3.340168) (xy -5.426186 3.483944) (xy -5.675156 3.483944) (xy -5.676754 3.399582) (xy -5.67174 3.2836) (xy -5.656717 3.196367) (xy -5.629624 3.12753) (xy -5.5884 3.066737) (xy -5.573115 3.048686) (xy -5.477546 2.958746) (xy -5.375039 2.906211) (xy -5.249679 2.884201) (xy -5.18855 2.882402) (xy -5.026753 2.901568) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "29ed3a28-c1ee-4341-a725-6469c08963bb") ) (fp_poly (pts (xy -0.398432 5.976471) (xy -0.535393 5.976471) (xy -0.614889 5.97414) (xy -0.656292 5.964488) (xy -0.671199 5.943525) (xy -0.672353 5.929351) (xy -0.674867 5.900927) (xy -0.69072 5.895475) (xy -0.732379 5.912998) (xy -0.764776 5.929351) (xy -0.889151 5.968103) (xy -1.024354 5.970346) (xy -1.134274 5.941444) (xy -1.236634 5.871619) (xy -1.31466 5.768555) (xy -1.357386 5.646989) (xy -1.358474 5.640192) (xy -1.364822 5.566032) (xy -1.367979 5.45957) (xy -1.367725 5.379052) (xy -1.095711 5.379052) (xy -1.08941 5.48607) (xy -1.075075 5.574278) (xy -1.055669 5.62409) (xy -0.982254 5.692162) (xy -0.895086 5.716564) (xy -0.805196 5.696831) (xy -0.728383 5.637968) (xy -0.699292 5.598379) (xy -0.682283 5.551138) (xy -0.674316 5.482181) (xy -0.672353 5.378607) (xy -0.675866 5.276039) (xy -0.685143 5.185921) (xy -0.698294 5.125613) (xy -0.700486 5.120208) (xy -0.753522 5.05594) (xy -0.830933 5.020656) (xy -0.917546 5.014959) (xy -0.998193 5.039453) (xy -1.057703 5.094742) (xy -1.063876 5.105743) (xy -1.083199 5.172827) (xy -1.093726 5.269284) (xy -1.095711 5.379052) (xy -1.367725 5.379052) (xy -1.367596 5.338225) (xy -1.365806 5.272918) (xy -1.353627 5.111355) (xy -1.328315 4.990053) (xy -1.286207 4.900379) (xy -1.223641 4.833699) (xy -1.1629 4.794557) (xy -1.078036 4.76704) (xy -0.972485 4.757603) (xy -0.864402 4.76529) (xy -0.771942 4.789146) (xy -0.72309 4.817685) (xy -0.672353 4.863601) (xy -0.672353 4.283137) (xy -0.398432 4.283137) (xy -0.398432 5.976471) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "ff7cffd2-d93e-43d3-9149-2f22cdb9ac53") ) (fp_poly (pts (xy 5.303287 2.884355) (xy 5.367051 2.899845) (xy 5.4893 2.956569) (xy 5.593834 3.043202) (xy 5.66618 3.147074) (xy 5.676119 3.170396) (xy 5.689754 3.231484) (xy 5.699298 3.321853) (xy 5.702549 3.41319) (xy 5.702549 3.585882) (xy 5.34147 3.585882) (xy 5.192546 3.586445) (xy 5.087632 3.589864) (xy 5.020937 3.598731) (xy 4.986666 3.615641) (xy 4.979028 3.643189) (xy 4.992229 3.683968) (xy 5.015877 3.731683) (xy 5.081843 3.811314) (xy 5.173512 3.850987) (xy 5.285555 3.849695) (xy 5.412472 3.806514) (xy 5.522158 3.753224) (xy 5.613173 3.825191) (xy 5.704188 3.897157) (xy 5.618563 3.976269) (xy 5.50425 4.051017) (xy 5.363666 4.096084) (xy 5.212449 4.108696) (xy 5.066236 4.086079) (xy 5.042647 4.078405) (xy 4.914141 4.011296) (xy 4.818551 3.911247) (xy 4.753861 3.775271) (xy 4.718057 3.60038) (xy 4.71764 3.596632) (xy 4.714434 3.406032) (xy 4.727393 3.338035) (xy 4.980392 3.338035) (xy 5.003627 3.348491) (xy 5.06671 3.3565) (xy 5.159706 3.361073) (xy 5.218638 3.361765) (xy 5.328537 3.361332) (xy 5.397252 3.358578) (xy 5.433405 3.351321) (xy 5.445615 3.337376) (xy 5.442504 3.314562) (xy 5.439894 3.305735) (xy 5.395344 3.2228) (xy 5.325279 3.15596) (xy 5.263446 3.126589) (xy 5.181301 3.128362) (xy 5.098062 3.16499) (xy 5.028238 3.225634) (xy 4.986337 3.299456) (xy 4.980392 3.338035) (xy 4.727393 3.338035) (xy 4.746385 3.238395) (xy 4.809773 3.097711) (xy 4.900878 2.987974) (xy 5.015978 2.913174) (xy 5.151355 2.877304) (xy 5.303287 2.884355) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "0c37763f-1317-4076-b13a-01da5a9069f4") ) (fp_poly (pts (xy 0.027759 2.884345) (xy 0.122059 2.902229) (xy 0.21989 2.939633) (xy 0.230343 2.944402) (xy 0.304531 2.983412) (xy 0.35591 3.019664) (xy 0.372517 3.042887) (xy 0.356702 3.080761) (xy 0.318288 3.136644) (xy 0.301237 3.157505) (xy 0.230969 3.239618) (xy 0.140379 3.186168) (xy 0.054164 3.150561) (xy -0.045451 3.131529) (xy -0.140981 3.130326) (xy -0.214939 3.14821) (xy -0.232688 3.159373) (xy -0.266488 3.210553) (xy -0.270596 3.269509) (xy -0.245304 3.315567) (xy -0.230344 3.324499) (xy -0.185514 3.335592) (xy -0.106714 3.34863) (xy -0.009574 3.361088) (xy 0.008346 3.363042) (xy 0.164365 3.39003) (xy 0.277523 3.435873) (xy 0.352569 3.504803) (xy 0.394253 3.601054) (xy 0.407238 3.718617) (xy 0.389299 3.852254) (xy 0.33105 3.957195) (xy 0.232255 4.03363) (xy 0.092682 4.081748) (xy -0.062255 4.100732) (xy -0.188602 4.100504) (xy -0.291087 4.083262) (xy -0.361079 4.059457) (xy -0.449517 4.017978) (xy -0.531246 3.969842) (xy -0.560295 3.948655) (xy -0.635 3.887676) (xy -0.544902 3.796508) (xy -0.454804 3.705339) (xy -0.352368 3.773128) (xy -0.249626 3.824042) (xy -0.139913 3.850673) (xy -0.034449 3.853483) (xy 0.055546 3.832935) (xy 0.118854 3.789493) (xy 0.139296 3.752838) (xy 0.136229 3.694053) (xy 0.085434 3.649099) (xy -0.012952 3.618057) (xy -0.120744 3.60371) (xy -0.286635 3.576337) (xy -0.409876 3.524693) (xy -0.492114 3.447266) (xy -0.534999 3.342544) (xy -0.54094 3.218387) (xy -0.511594 3.088702) (xy -0.444691 2.990677) (xy -0.339629 2.923866) (xy -0.19581 2.88782) (xy -0.089262 2.880754) (xy 0.027759 2.884345) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "81d26342-6351-4a5f-b172-c9c988039f1f") ) (fp_poly (pts (xy 4.025307 4.762784) (xy 4.144337 4.793731) (xy 4.244021 4.8576) (xy 4.292288 4.905313) (xy 4.371408 5.018106) (xy 4.416752 5.14895) (xy 4.43233 5.309792) (xy 4.43241 5.322794) (xy 4.432549 5.45353) (xy 3.680091 5.45353) (xy 3.69613 5.52201) (xy 3.725091 5.584031) (xy 3.775778 5.648654) (xy 3.786379 5.658971) (xy 3.877494 5.714805) (xy 3.9814 5.724275) (xy 4.101 5.68754) (xy 4.121274 5.677647) (xy 4.183456 5.647574) (xy 4.225106 5.63044) (xy 4.232373 5.628855) (xy 4.25774 5.644242) (xy 4.30612 5.681887) (xy 4.330679 5.702459) (xy 4.38157 5.749714) (xy 4.398281 5.780917) (xy 4.386683 5.80962) (xy 4.380483 5.817468) (xy 4.338493 5.851819) (xy 4.269206 5.893565) (xy 4.220882 5.917935) (xy 4.083711 5.960873) (xy 3.931847 5.974786) (xy 3.788024 5.9583) (xy 3.747745 5.946496) (xy 3.623078 5.879689) (xy 3.530671 5.776892) (xy 3.46999 5.637105) (xy 3.440498 5.45933) (xy 3.43726 5.366373) (xy 3.446714 5.231033) (xy 3.68549 5.231033) (xy 3.708584 5.241038) (xy 3.770662 5.248888) (xy 3.860914 5.253521) (xy 3.922058 5.254314) (xy 4.03204 5.253549) (xy 4.101457 5.24997) (xy 4.139538 5.241649) (xy 4.155515 5.226657) (xy 4.158627 5.204903) (xy 4.137278 5.137892) (xy 4.083529 5.071664) (xy 4.012822 5.020832) (xy 3.942089 5.000038) (xy 3.846016 5.018484) (xy 3.762849 5.071811) (xy 3.705186 5.148677) (xy 3.68549 5.231033) (xy 3.446714 5.231033) (xy 3.451028 5.169291) (xy 3.49352 5.012271) (xy 3.565635 4.894069) (xy 3.668273 4.81344) (xy 3.802332 4.769139) (xy 3.874957 4.760607) (xy 4.025307 4.762784) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "b05cd2ce-0e29-47e0-af96-5ce3a5d3d873") ) (fp_poly (pts (xy -2.686796 2.916354) (xy -2.661981 2.928037) (xy -2.576094 2.990951) (xy -2.494879 3.082769) (xy -2.434236 3.183868) (xy -2.416988 3.230349) (xy -2.401251 3.313376) (xy -2.391867 3.413713) (xy -2.390728 3.455147) (xy -2.390589 3.585882) (xy -3.143047 3.585882) (xy -3.127007 3.654363) (xy -3.087637 3.735355) (xy -3.018806 3.805351) (xy -2.936919 3.850441) (xy -2.884737 3.859804) (xy -2.813971 3.848441) (xy -2.72954 3.819943) (xy -2.700858 3.806831) (xy -2.594791 3.753858) (xy -2.504272 3.822901) (xy -2.452039 3.869597) (xy -2.424247 3.90814) (xy -2.42284 3.919452) (xy -2.447668 3.946868) (xy -2.502083 3.988532) (xy -2.551472 4.021037) (xy -2.684748 4.079468) (xy -2.834161 4.105915) (xy -2.982249 4.099039) (xy -3.100295 4.063096) (xy -3.221982 3.986101) (xy -3.30846 3.884728) (xy -3.362559 3.75357) (xy -3.387109 3.587224) (xy -3.389286 3.511108) (xy -3.380573 3.336685) (xy -3.379503 3.331611) (xy -3.130173 3.331611) (xy -3.123306 3.347968) (xy -3.095083 3.356988) (xy -3.036873 3.360854) (xy -2.940042 3.361749) (xy -2.902757 3.361765) (xy -2.789317 3.360413) (xy -2.717378 3.355505) (xy -2.678687 3.34576) (xy -2.664995 3.329899) (xy -2.66451 3.324805) (xy -2.680137 3.284326) (xy -2.719247 3.227621) (xy -2.736061 3.207766) (xy -2.798481 3.151611) (xy -2.863547 3.129532) (xy -2.898603 3.127686) (xy -2.993442 3.150766) (xy -3.072973 3.212759) (xy -3.123423 3.302802) (xy -3.124317 3.305735) (xy -3.130173 3.331611) (xy -3.379503 3.331611) (xy -3.351601 3.199343) (xy -3.29941 3.089461) (xy -3.235579 3.011461) (xy -3.117567 2.926882) (xy -2.978842 2.881686) (xy -2.83129 2.8776) (xy -2.686796 2.916354) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "bc7071b8-ae97-4b13-8dea-829a57539dc2") ) (fp_poly (pts (xy 2.056459 4.763669) (xy 2.16142 4.789163) (xy 2.191761 4.802669) (xy 2.250573 4.838046) (xy 2.295709 4.87789) (xy 2.329106 4.92912) (xy 2.352701 4.998654) (xy 2.368433 5.093409) (xy 2.378239 5.220305) (xy 2.384057 5.386258) (xy 2.386266 5.497108) (xy 2.394396 5.976471) (xy 2.255531 5.976471) (xy 2.171287 5.972938) (xy 2.127884 5.960866) (xy 2.116666 5.940594) (xy 2.110744 5.918674) (xy 2.084266 5.922865) (xy 2.048186 5.940441) (xy 1.957862 5.967382) (xy 1.841777 5.974642) (xy 1.71968 5.962767) (xy 1.611321 5.932305) (xy 1.601602 5.928077) (xy 1.502568 5.858505) (xy 1.437281 5.761789) (xy 1.40724 5.648738) (xy 1.409535 5.608122) (xy 1.654633 5.608122) (xy 1.676229 5.662782) (xy 1.740259 5.701952) (xy 1.843565 5.722974) (xy 1.898774 5.725766) (xy 1.990782 5.71862) (xy 2.051941 5.690848) (xy 2.066862 5.677647) (xy 2.107287 5.605829) (xy 2.116666 5.540686) (xy 2.116666 5.45353) (xy 1.995269 5.45353) (xy 1.854153 5.460722) (xy 1.755173 5.483345) (xy 1.692633 5.522964) (xy 1.678631 5.540628) (xy 1.654633 5.608122) (xy 1.409535 5.608122) (xy 1.413941 5.530157) (xy 1.45888 5.416855) (xy 1.520196 5.340285) (xy 1.557332 5.307181) (xy 1.593687 5.285425) (xy 1.64099 5.272161) (xy 1.710973 5.264528) (xy 1.815364 5.25967) (xy 1.85677 5.258273) (xy 2.116666 5.24978) (xy 2.116285 5.171116) (xy 2.106219 5.088428) (xy 2.069829 5.038431) (xy 1.996311 5.006489) (xy 1.994339 5.00592) (xy 1.890105 4.993361) (xy 1.788108 5.009766) (xy 1.712305 5.049657) (xy 1.68189 5.069354) (xy 1.649132 5.066629) (xy 1.598721 5.038091) (xy 1.569119 5.01795) (xy 1.511218 4.974919) (xy 1.475352 4.942662) (xy 1.469597 4.933427) (xy 1.493295 4.885636) (xy 1.563313 4.828562) (xy 1.593725 4.809305) (xy 1.681155 4.77614) (xy 1.798983 4.75735) (xy 1.929866 4.753129) (xy 2.056459 4.763669) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "a1cab6ec-14bc-4322-af61-6d511c7dda45") ) (fp_poly (pts (xy -2.74128 4.765922) (xy -2.62413 4.79718) (xy -2.534949 4.853837) (xy -2.472016 4.928045) (xy -2.452452 4.959716) (xy -2.438008 4.992891) (xy -2.427911 5.035329) (xy -2.421385 5.094788) (xy -2.417658 5.179029) (xy -2.415954 5.29581) (xy -2.4155 5.45289) (xy -2.415491 5.494565) (xy -2.415491 5.976471) (xy -2.53502 5.976471) (xy -2.611261 5.971131) (xy -2.667634 5.957604) (xy -2.681758 5.949262) (xy -2.72037 5.934864) (xy -2.759808 5.949262) (xy -2.824738 5.967237) (xy -2.919055 5.974472) (xy -3.023593 5.971333) (xy -3.119189 5.958186) (xy -3.175 5.941318) (xy -3.283002 5.871986) (xy -3.350497 5.775772) (xy -3.380841 5.647844) (xy -3.381123 5.644559) (xy -3.37846 5.587808) (xy -3.137647 5.587808) (xy -3.116595 5.652358) (xy -3.082303 5.688686) (xy -3.013468 5.716162) (xy -2.92261 5.727129) (xy -2.829958 5.721731) (xy -2.755744 5.70011) (xy -2.734951 5.686239) (xy -2.698619 5.622143) (xy -2.689412 5.549278) (xy -2.689412 5.45353) (xy -2.827173 5.45353) (xy -2.958047 5.463605) (xy -3.057259 5.492148) (xy -3.118977 5.536639) (xy -3.137647 5.587808) (xy -3.37846 5.587808) (xy -3.374564 5.50479) (xy -3.328466 5.394282) (xy -3.2418 5.310712) (xy -3.229821 5.30311) (xy -3.178345 5.278357) (xy -3.114632 5.263368) (xy -3.025565 5.256082) (xy -2.919755 5.254407) (xy -2.689412 5.254314) (xy -2.689412 5.157755) (xy -2.699183 5.082836) (xy -2.724116 5.032644) (xy -2.727035 5.029972) (xy -2.782519 5.008015) (xy -2.866273 4.999505) (xy -2.958833 5.003687) (xy -3.04073 5.019809) (xy -3.089327 5.04399) (xy -3.115659 5.063359) (xy -3.143465 5.067057) (xy -3.181839 5.051188) (xy -3.239875 5.011855) (xy -3.326669 4.945164) (xy -3.334635 4.938916) (xy -3.330553 4.9158) (xy -3.296499 4.877352) (xy -3.24474 4.834627) (xy -3.187545 4.798679) (xy -3.169575 4.790191) (xy -3.104028 4.773252) (xy -3.00798 4.76117) (xy -2.900671 4.756323) (xy -2.895653 4.756313) (xy -2.74128 4.765922) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "393bff0b-3894-4a0d-a18d-94c11f2a31a9") ) (fp_poly (pts (xy -3.780091 2.90956) (xy -3.727588 2.935499) (xy -3.662842 2.9807) (xy -3.615653 3.029991) (xy -3.583335 3.091885) (xy -3.563203 3.174896) (xy -3.55257 3.287538) (xy -3.548753 3.438324) (xy -3.54853 3.503149) (xy -3.549182 3.645221) (xy -3.551888 3.746757) (xy -3.557776 3.817015) (xy -3.567973 3.865256) (xy -3.583606 3.900738) (xy -3.599872 3.924943) (xy -3.703705 4.027929) (xy -3.825979 4.089874) (xy -3.957886 4.108506) (xy -4.090616 4.081549) (xy -4.132667 4.062486) (xy -4.233334 4.010015) (xy -4.233334 4.832259) (xy -4.159865 4.794267) (xy -4.063059 4.764872) (xy -3.944072 4.757342) (xy -3.825255 4.771245) (xy -3.735527 4.802476) (xy -3.661101 4.861954) (xy -3.59751 4.947066) (xy -3.592729 4.955805) (xy -3.572563 4.996966) (xy -3.557835 5.038454) (xy -3.547697 5.088713) (xy -3.541301 5.156184) (xy -3.537799 5.249309) (xy -3.536342 5.376531) (xy -3.536079 5.519701) (xy -3.536079 5.976471) (xy -3.81 5.976471) (xy -3.81 5.134231) (xy -3.886617 5.069763) (xy -3.966207 5.018194) (xy -4.041578 5.008818) (xy -4.117367 5.032947) (xy -4.157759 5.056574) (xy -4.187821 5.090227) (xy -4.209203 5.141087) (xy -4.22355 5.216334) (xy -4.23251 5.323146) (xy -4.23773 5.468704) (xy -4.239569 5.565588) (xy -4.245785 5.96402) (xy -4.37652 5.971547) (xy -4.507255 5.979073) (xy -4.507255 3.506582) (xy -4.233334 3.506582) (xy -4.22635 3.644423) (xy -4.202818 3.740107) (xy -4.158865 3.799641) (xy -4.090618 3.829029) (xy -4.021667 3.834902) (xy -3.943614 3.828154) (xy -3.891811 3.801594) (xy -3.859417 3.766499) (xy -3.833916 3.728752) (xy -3.818735 3.6867) (xy -3.811981 3.627779) (xy -3.811759 3.539428) (xy -3.814032 3.465448) (xy -3.819251 3.354) (xy -3.827021 3.280833) (xy -3.840105 3.234422) (xy -3.861268 3.203244) (xy -3.88124 3.185223) (xy -3.964686 3.145925) (xy -4.063449 3.139579) (xy -4.120159 3.153116) (xy -4.176308 3.201233) (xy -4.213501 3.294833) (xy -4.231528 3.433254) (xy -4.233334 3.506582) (xy -4.507255 3.506582) (xy -4.507255 2.888628) (xy -4.370295 2.888628) (xy -4.288065 2.891879) (xy -4.24564 2.903426) (xy -4.233339 2.925952) (xy -4.233334 2.92662) (xy -4.227626 2.948681) (xy -4.202453 2.946176) (xy -4.152402 2.921935) (xy -4.035781 2.884851) (xy -3.904571 2.880953) (xy -3.780091 2.90956) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "20bbff9d-c05c-4f0d-877a-96e0ad967c2f") ) (fp_poly (pts (xy 0.746535 -5.366828) (xy 0.859117 -4.769637) (xy 1.274531 -4.59839) (xy 1.689944 -4.427143) (xy 2.188302 -4.766022) (xy 2.327868 -4.860378) (xy 2.454028 -4.944625) (xy 2.560895 -5.014917) (xy 2.642582 -5.067408) (xy 2.693201 -5.098251) (xy 2.706986 -5.104902) (xy 2.73182 -5.087797) (xy 2.784888 -5.040511) (xy 2.86024 -4.969083) (xy 2.951929 -4.879555) (xy 3.054007 -4.777966) (xy 3.160526 -4.670357) (xy 3.265536 -4.562768) (xy 3.363091 -4.46124) (xy 3.447242 -4.371814) (xy 3.51204 -4.300529) (xy 3.551538 -4.253427) (xy 3.56098 -4.237663) (xy 3.547391 -4.208602) (xy 3.509293 -4.144934) (xy 3.450694 -4.052888) (xy 3.375597 -3.938691) (xy 3.288009 -3.808571) (xy 3.237254 -3.734354) (xy 3.144745 -3.598833) (xy 3.06254 -3.476539) (xy 2.99463 -3.37356) (xy 2.945 -3.295982) (xy 2.91764 -3.249894) (xy 2.913529 -3.240208) (xy 2.922849 -3.212681) (xy 2.948254 -3.148527) (xy 2.985911 -3.056765) (xy 3.031986 -2.946416) (xy 3.082646 -2.8265) (xy 3.134059 -2.706036) (xy 3.182389 -2.594046) (xy 3.223806 -2.499548) (xy 3.254474 -2.431563) (xy 3.270562 -2.399112) (xy 3.271511 -2.397835) (xy 3.296772 -2.391638) (xy 3.364046 -2.377815) (xy 3.46636 -2.357723) (xy 3.596741 -2.332721) (xy 3.748216 -2.304169) (xy 3.836594 -2.287704) (xy 3.998452 -2.256886) (xy 4.144649 -2.227561) (xy 4.267787 -2.201334) (xy 4.360469 -2.179809) (xy 4.415301 -2.16459) (xy 4.426323 -2.159762) (xy 4.437119 -2.127081) (xy 4.445829 -2.05327) (xy 4.45246 -1.946963) (xy 4.457018 -1.816788) (xy 4.459509 -1.671379) (xy 4.459938 -1.519365) (xy 4.458311 -1.369378) (xy 4.454635 -1.230049) (xy 4.448915 -1.11001) (xy 4.441158 -1.01789) (xy 4.431368 -0.962323) (xy 4.425496 -0.950755) (xy 4.390399 -0.93689) (xy 4.316028 -0.917067) (xy 4.212223 -0.893616) (xy 4.088819 -0.868864) (xy 4.045741 -0.860857) (xy 3.838047 -0.822814) (xy 3.673984 -0.792176) (xy 3.54813 -0.767726) (xy 3.455065 -0.748246) (xy 3.389367 -0.732519) (xy 3.345617 -0.719327) (xy 3.318392 -0.707451) (xy 3.302272 -0.695675) (xy 3.300017 -0.693347) (xy 3.277503 -0.655855) (xy 3.243158 -0.58289) (xy 3.200411 -0.483388) (xy 3.152692 -0.366282) (xy 3.10343 -0.240507) (xy 3.056055 -0.114998) (xy 3.013995 0.00131) (xy 2.98068 0.099484) (xy 2.959541 0.170588) (xy 2.954005 0.205687) (xy 2.954466 0.206917) (xy 2.973223 0.235606) (xy 3.015776 0.29873) (xy 3.077653 0.389718) (xy 3.154382 0.502) (xy 3.241491 0.629005) (xy 3.266299 0.665098) (xy 3.354753 0.795948) (xy 3.432588 0.915336) (xy 3.495566 1.016407) (xy 3.539445 1.092304) (xy 3.559985 1.136172) (xy 3.56098 1.141562) (xy 3.543722 1.169889) (xy 3.496036 1.226006) (xy 3.42405 1.303882) (xy 3.333897 1.397485) (xy 3.231705 1.500786) (xy 3.123606 1.607751) (xy 3.015728 1.712351) (xy 2.914204 1.808554) (xy 2.825162 1.890329) (xy 2.754733 1.951645) (xy 2.709047 1.986471) (xy 2.696409 1.992157) (xy 2.666991 1.978765) (xy 2.606761 1.942644) (xy 2.52553 1.889881) (xy 2.46303 1.847412) (xy 2.349785 1.769485) (xy 2.215674 1.677729) (xy 2.081155 1.58612) (xy 2.008833 1.537091) (xy 1.764038 1.371515) (xy 1.558551 1.48262) (xy 1.464936 1.531293) (xy 1.38533 1.569126) (xy 1.331467 1.590703) (xy 1.317757 1.593706) (xy 1.30127 1.571538) (xy 1.268745 1.508894) (xy 1.222609 1.411554) (xy 1.16529 1.285294) (xy 1.099216 1.135895) (xy 1.026815 0.969133) (xy 0.950516 0.790787) (xy 0.872746 0.606636) (xy 0.795934 0.422457) (xy 0.722506 0.24403) (xy 0.654892 0.077132) (xy 0.59552 -0.072458) (xy 0.546816 -0.198962) (xy 0.51121 -0.296601) (xy 0.49113 -0.359598) (xy 0.4879 -0.381234) (xy 0.513496 -0.408831) (xy 0.569539 -0.45363) (xy 0.644311 -0.506321) (xy 0.650587 -0.51049) (xy 0.843845 -0.665186) (xy 0.999674 -0.845664) (xy 1.116724 -1.046153) (xy 1.193645 -1.260881) (xy 1.229086 -1.484078) (xy 1.221697 -1.709974) (xy 1.170127 -1.932796) (xy 1.073026 -2.146776) (xy 1.044458 -2.193591) (xy 0.895868 -2.382637) (xy 0.720327 -2.534443) (xy 0.52391 -2.648221) (xy 0.312693 -2.72318) (xy 0.092753 -2.758533) (xy -0.129837 -2.753488) (xy -0.348999 -2.707256) (xy -0.558658 -2.619049) (xy -0.752739 -2.488076) (xy -0.812774 -2.434918) (xy -0.965565 -2.268516) (xy -1.076903 -2.093343) (xy -1.153277 -1.896989) (xy -1.195813 -1.702538) (xy -1.206314 -1.483913) (xy -1.171299 -1.264203) (xy -1.094327 -1.050835) (xy -0.978953 -0.851233) (xy -0.828734 -0.672826) (xy -0.647227 -0.523038) (xy -0.623373 -0.507249) (xy -0.547799 -0.455543) (xy -0.490349 -0.410743) (xy -0.462883 -0.382138) (xy -0.462483 -0.381234) (xy -0.46838 -0.350291) (xy -0.491755 -0.280064) (xy -0.530179 -0.17633) (xy -0.581223 -0.044865) (xy -0.642458 0.108552) (xy -0.711456 0.278146) (xy -0.785786 0.458138) (xy -0.863022 0.642753) (xy -0.940732 0.826213) (xy -1.016489 1.002741) (xy -1.087863 1.166559) (xy -1.152426 1.311892) (xy -1.207748 1.432962) (xy -1.2514 1.523992) (xy -1.280954 1.579205) (xy -1.292856 1.593706) (xy -1.329223 1.582414) (xy -1.39727 1.55213) (xy -1.485263 1.508265) (xy -1.533649 1.48262) (xy -1.739137 1.371515) (xy -1.983932 1.537091) (xy -2.108894 1.621915) (xy -2.245705 1.715261) (xy -2.373911 1.803153) (xy -2.438129 1.847412) (xy -2.528449 1.908063) (xy -2.604929 1.956126) (xy -2.657593 1.985515) (xy -2.674698 1.991727) (xy -2.699595 1.974968) (xy -2.754695 1.928181) (xy -2.834657 1.856225) (xy -2.934139 1.763957) (xy -3.0478 1.656235) (xy -3.119685 1.587071) (xy -3.245449 1.463502) (xy -3.354137 1.352979) (xy -3.441355 1.26023) (xy -3.502711 1.189982) (xy -3.533809 1.146965) (xy -3.536792 1.138235) (xy -3.522947 1.105029) (xy -3.484688 1.037887) (xy -3.426258 0.943608) (xy -3.351903 0.82899) (xy -3.265865 0.700828) (xy -3.241397 0.665098) (xy -3.152245 0.535234) (xy -3.072262 0.418314) (xy -3.00592 0.320907) (xy -2.957689 0.249584) (xy -2.932043 0.210915) (xy -2.929565 0.206917) (xy -2.933271 0.1761) (xy -2.952939 0.108344) (xy -2.98514 0.012584) (xy -3.026445 -0.102246) (xy -3.073425 -0.227211) (xy -3.122651 -0.353376) (xy -3.170692 -0.471807) (xy -3.214119 -0.57357) (xy -3.249504 -0.649729) (xy -3.273416 -0.691351) (xy -3.275116 -0.693347) (xy -3.289738 -0.705242) (xy -3.314435 -0.717005) (xy -3.354628 -0.729854) (xy -3.415737 -0.745006) (xy -3.503183 -0.763679) (xy -3.622388 -0.78709) (xy -3.778773 -0.816458) (xy -3.977757 -0.853) (xy -4.02084 -0.860857) (xy -4.148529 -0.885528) (xy -4.259847 -0.909662) (xy -4.344955 -0.930931) (xy -4.394017 -0.947007) (xy -4.400595 -0.950755) (xy -4.411436 -0.983982) (xy -4.420247 -1.058234) (xy -4.427024 -1.164879) (xy -4.43176 -1.295288) (xy -4.43445 -1.440828) (xy -4.435087 -1.592869) (xy -4.433666 -1.742779) (xy -4.43018 -1.881927) (xy -4.424624 -2.001683) (xy -4.416992 -2.093414) (xy -4.407278 -2.148489) (xy -4.401422 -2.159762) (xy -4.36882 -2.171132) (xy -4.294582 -2.189631) (xy -4.186104 -2.213653) (xy -4.050783 -2.241593) (xy -3.896015 -2.271847) (xy -3.811692 -2.287704) (xy -3.651704 -2.317611) (xy -3.509033 -2.344705) (xy -3.390652 -2.367624) (xy -3.303535 -2.385012) (xy -3.254655 -2.395508) (xy -3.24661 -2.397835) (xy -3.233013 -2.424069) (xy -3.204271 -2.48726) (xy -3.164215 -2.578378) (xy -3.116676 -2.688398) (xy -3.065485 -2.80829) (xy -3.014474 -2.929028) (xy -2.967474 -3.041584) (xy -2.928316 -3.136929) (xy -2.900831 -3.206038) (xy -2.888851 -3.239881) (xy -2.888628 -3.24136) (xy -2.902209 -3.268058) (xy -2.940285 -3.329495) (xy -2.998853 -3.419566) (xy -3.073912 -3.532165) (xy -3.16146 -3.661185) (xy -3.212353 -3.735294) (xy -3.305091 -3.871178) (xy -3.387459 -3.994546) (xy -3.455439 -4.099158) (xy -3.505012 -4.178772) (xy -3.532158 -4.227148) (xy -3.536079 -4.237993) (xy -3.519225 -4.263235) (xy -3.472632 -4.317131) (xy -3.402251 -4.393642) (xy -3.314035 -4.486732) (xy -3.213935 -4.59036) (xy -3.107902 -4.698491) (xy -3.001889 -4.805085) (xy -2.901848 -4.904105) (xy -2.81373 -4.989513) (xy -2.743487 -5.05527) (xy -2.697072 -5.095339) (xy -2.681544 -5.104902) (xy -2.656261 -5.091455) (xy -2.595789 -5.05368) (xy -2.506008 -4.99542) (xy -2.392797 -4.920521) (xy -2.262036 -4.83283) (xy -2.1634 -4.766022) (xy -1.665043 -4.427143) (xy -1.249629 -4.59839) (xy -0.834216 -4.769637) (xy -0.721634 -5.366828) (xy -0.609051 -5.96402) (xy 0.633952 -5.96402) (xy 0.746535 -5.366828) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "F.SilkS") (uuid "b00f2cc0-8ecb-4b4a-9c01-affe735b305b") ) ) (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu") (uuid "f6094db6-66ae-43b0-8717-4c998e913cdb") (at 168 126) (descr "Mounting Hole 3.2mm, M3") (tags "mounting hole 3.2mm m3") (property "Reference" "H3" (at 0 -4.2 0) (layer "F.Fab") (uuid "3dcac79f-d1a9-4be9-b751-e0feba749100") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.2 0) (layer "F.Fab") (uuid "4e1503fd-a57b-4cba-b98d-69639238c6f4") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e06806a3-3765-4c63-bb62-68bf847536f2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "4bfc83b1-1d23-4a4d-b8c8-9f74a50c7a8c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "c6941ef6-93c0-4462-96f3-c29805d93782") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Mouser Part Number" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0dc2ada7-1b57-471e-a6e9-710908fbf31c") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property ki_fp_filters "MountingHole*Pad*") (path "/028eb97f-e056-44ab-9ff4-3ddfbc645fd1") (sheetname "Root") (sheetfile "fanpico_powerboard.kicad_sch") (zone_connect 2) (attr exclude_from_pos_files exclude_from_bom dnp) (fp_circle (center 0 0) (end 3.2 0) (stroke (width 0.15) (type solid) ) (fill none) (layer "Cmts.User") (uuid "5cb55801-719e-4f7d-87c3-b7007475c4e8") ) (fp_circle (center 0 0) (end 3.45 0) (stroke (width 0.05) (type solid) ) (fill none) (layer "F.CrtYd") (uuid "72510e22-427a-41bf-8c4e-5e5b70bca82e") ) (fp_text user "${REFERENCE}" (at 0 0 0) (layer "F.Fab") (uuid "b6c1d57e-21c8-4d9d-863c-f2050c8844ba") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "b7bea0ad-6d80-4cb9-8c02-f54883534eda") ) (pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "f9737a8b-ee96-46c2-a25d-46d23dbf82b8") ) (pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "017d1bc4-dbc0-4590-854f-5a0e64c6f39e") ) (pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "dda6740a-3f2e-4875-8db9-0b8187819d04") ) (pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (uuid "8cf97880-fa97-46b0-9891-2e2fdfb40fb0") ) (pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "4119f257-9340-4a69-a1b2-589a6f534c0c") ) (pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "fe5412b5-b852-47d7-a3d3-825f8a2e2932") ) (pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "11ac8873-152e-46bb-b267-40bd5e5fef1e") ) (pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (uuid "3d682a4b-4774-4e69-b4ed-a5ea8a2fc112") ) ) (footprint "Symbol:Symbol_ESD-Logo_CopperTop" (layer "B.Cu") (uuid "786e5b0b-a86d-4f5c-9f06-91b21875e2c5") (at 132.90475 114.7439 180) (descr "ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top,") (tags "ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top,") (property "Reference" "REF**" (at -0.0508 9.5504 0) (layer "Dwgs.User") (uuid "30b9e985-de30-4950-b526-ec778f36a3a1") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Symbol_ESD-Logo_CopperTop" (at 0 -6.94944 0) (layer "B.Fab") (uuid "6f9f4c7e-2f26-4b0c-b5a1-ffee44d4e0e6") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Footprint" "Symbol:Symbol_ESD-Logo_CopperTop" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "76f5284e-c323-4795-9002-f895a4be1566") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "5341c9ab-a990-4260-bd9b-fa106a523795") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "75ed2c50-90ac-49a4-aff4-cde2ecd5c5fb") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_line (start 4.96062 -2.47142) (end 3.15976 1.3081) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "820a9308-5228-47d2-8e3b-4c53d6a859ca") ) (fp_line (start 4.90982 -3.3909) (end -5.15112 -3.31216) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "9cda62d8-c0c6-4243-bc2f-ca026c0d3c46") ) (fp_line (start 4.37896 -1.38176) (end 2.1209 -0.04064) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "20f71289-8577-4b3a-a6a7-e51ad07ec60e") ) (fp_line (start 4.09956 -0.72136) (end 2.4511 0.56896) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "3b1c47c7-f72a-4a8e-b0e8-5bc5105dd61e") ) (fp_line (start 3.54076 0.39878) (end 2.70002 1.0287) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "ac290858-c1cd-438b-acda-c65adb56e319") ) (fp_line (start 3.27914 -3.31216) (end 3.25882 -3.31216) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a7f8b24f-64ab-46a7-a70d-5c4481245f6d") ) (fp_line (start 3.25882 -3.31216) (end 0.5207 -1.4605) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "060d4459-f74c-4219-9d01-d32a12e9d293") ) (fp_line (start 3.10896 1.38938) (end 2.77876 1.2573) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "34ebac0e-e971-406a-9e8b-9a76568230ac") ) (fp_line (start 2.77876 1.2573) (end 2.49936 0.82804) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "3d5c5b1c-ba00-442e-a878-74b1d8cee0b2") ) (fp_line (start 2.49936 0.82804) (end 2.16916 0.28956) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "c17b8fcc-d9fd-4781-be44-2ae9ab026b34") ) (fp_line (start 2.16916 0.28956) (end 1.65862 -0.54102) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a857afe5-2e48-404e-94e3-6664c83e492d") ) (fp_line (start 2.16916 -3.29184) (end 0.23876 -1.8415) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "3bfd0cde-f23a-45b2-a2aa-5e51465cf5c2") ) (fp_line (start 1.85928 3.64744) (end -0.7493 5.3975) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "b36773f8-2ea6-4ea3-a7a7-8b90ef9b2ea9") ) (fp_line (start 1.67894 -0.6223) (end 1.61036 -0.65278) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "5f9b95a9-b4d7-44d8-833b-0cf832d224f9") ) (fp_line (start 1.61036 -0.65278) (end 4.96062 -2.47142) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "30ddf36b-7760-4772-8f57-ab08d7adef43") ) (fp_line (start 1.57988 4.65836) (end -0.35052 6.0579) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "16a25fc7-446c-4ef0-9966-142d55d775e5") ) (fp_line (start 1.24968 3.31724) (end 2.19964 3.59918) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "47f1c180-22ef-43c8-aa04-29eb99fba780") ) (fp_line (start 1.19888 3.41884) (end -1.01092 4.86918) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "da545547-e56f-4f2b-98fe-74c1b16e5851") ) (fp_line (start 1.04902 -3.31216) (end 1.02108 -3.31216) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "45c9da67-7747-4e92-9a96-3ff3562582f7") ) (fp_line (start 1.02108 -3.31216) (end -0.35052 -2.30124) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "72db7a2f-eac6-42f8-ae7b-662bdaa2bb8b") ) (fp_line (start 0.94996 5.92836) (end -0.0889 6.6675) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "6f79aed6-43ab-4db4-b269-b786a4908ce2") ) (fp_line (start 0.86868 -1.1811) (end 4.90982 -3.3909) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "49e54974-6648-4a25-98d7-c0aa66448169") ) (fp_line (start 0.8001 -0.98044) (end 0.1905 -1.5113) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "9898361a-79b3-493e-a550-23af8b326f8a") ) (fp_line (start 0.56896 -1.81102) (end 0.30988 -1.4605) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "f250ed97-087a-4a06-8279-e4285078b595") ) (fp_line (start 0.45974 3.08864) (end -1.3589 4.2291) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "98efb9bd-0c70-427f-a74e-ecf0312706b2") ) (fp_line (start 0.45974 0.18796) (end -0.40132 1.27762) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "1bd86a77-b8ae-445d-8460-a994a1461302") ) (fp_line (start 0.30988 -0.32258) (end 0.45974 0.18796) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "3464357d-1917-48fc-a484-728efe689570") ) (fp_line (start 0.23876 -0.14224) (end 0.06096 0.0889) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "251c7c2e-099b-49ee-9120-1576cba659b2") ) (fp_line (start 0.21082 7.3787) (end 2.09042 3.64744) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "bd067c4d-39e4-49b2-94d2-93c3491aa385") ) (fp_line (start 0.1905 -1.5113) (end -0.32004 -2.02184) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "439ea2b0-130c-40d5-8a96-dab7beb0b8b9") ) (fp_line (start 0.10922 -2.1717) (end 0.07874 -2.1717) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "480ae0f0-2cac-474a-8d8b-0e1d41f6c882") ) (fp_line (start 0.07874 -2.1717) (end -0.22098 -1.99136) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "5e5e9d92-875f-44d9-9a44-e35225067401") ) (fp_line (start 0.06096 0.4191) (end -0.65024 0.92964) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "adb467bc-4c67-405f-833c-c679e21fcff9") ) (fp_line (start 0.06096 0.0889) (end -0.4191 0.61722) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "020b3da8-c3f2-4a48-af98-7ebf72304dbe") ) (fp_line (start -0.02032 -3.3909) (end -1.53924 -2.37236) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "9e3101f9-ac53-4d57-ba1d-31024f456c36") ) (fp_line (start -0.07112 -0.5715) (end -0.29972 -0.44196) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "50aa3ce0-242a-403b-98ac-282d83c97fa2") ) (fp_line (start -0.29972 -0.44196) (end -0.72898 -0.98044) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "2f6c4c7f-e46d-4555-98a8-793c2106f0ea") ) (fp_line (start -0.32004 -2.02184) (end -0.62992 -2.68224) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a3175476-3861-43a0-9e88-bdbcc5a41126") ) (fp_line (start -0.40132 1.27762) (end -0.62992 1.12776) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "0501e227-802b-4b51-aab2-aed023509aea") ) (fp_line (start -0.4191 2.80924) (end -0.44958 2.80924) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "71a8d6a4-0239-4142-b7b3-4a3fc138baf9") ) (fp_line (start -0.4191 0.61722) (end -0.77978 0.49784) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "88cf1b6e-03e6-4ccc-aa0a-7872ecae54ef") ) (fp_line (start -0.44958 2.80924) (end -1.71958 3.59918) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a1e099e4-2dd9-434b-9c37-49f76aaeb72a") ) (fp_line (start -0.62992 1.12776) (end -1.47066 0.49784) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "317f887c-6c61-4266-a154-257f1834965d") ) (fp_line (start -0.62992 -2.68224) (end -0.86106 -2.37236) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "51f5d98f-aca4-44f0-a936-6d7f02a51363") ) (fp_line (start -0.65024 2.64922) (end 1.24968 3.31724) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "e95dc428-b9ca-4736-a9b3-875c72e52e5a") ) (fp_line (start -0.70104 -0.37084) (end -1.14046 -0.16256) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "87f10ef0-c50f-4a52-a438-1320bfcaeec6") ) (fp_line (start -0.70104 -1.59258) (end 0.30988 -0.32258) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a90b745a-4472-4a94-aa97-468917627476") ) (fp_line (start -0.72898 -0.98044) (end -0.70104 -0.37084) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "9e474925-14df-4d01-bbc9-65098a198b82") ) (fp_line (start -0.77978 0.49784) (end -1.10998 0.6477) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "a2e1922a-14bf-42c1-b67c-e6c0ca79317a") ) (fp_line (start -0.86106 -2.37236) (end -0.70104 -1.59258) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "42628b53-63a9-4b45-9da4-7a1e7c019ef9") ) (fp_line (start -1.01092 -1.5621) (end -1.10998 -1.87198) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "d4d5d5f8-08cd-4d70-93f9-a14da9de9e59") ) (fp_line (start -1.03124 2.26822) (end -2.04978 2.9591) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "ac50eed5-7e40-4206-9567-7f5ef652bcc8") ) (fp_line (start -1.10998 -1.87198) (end -1.38938 -1.64084) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "26f7fecf-60ba-4944-8b85-573b7e73d199") ) (fp_line (start -1.14046 -0.16256) (end -1.01092 -1.5621) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "59732121-3f77-4da0-9b2d-e04f9c0879a5") ) (fp_line (start -1.14046 -3.31216) (end -4.34086 -1.66116) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "438ba10e-eae9-4109-b42b-248389525d7a") ) (fp_line (start -1.31064 1.83896) (end -1.31064 1.81864) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "0b0c8d9b-3158-4fbd-a35d-3dea167f5ace") ) (fp_line (start -1.31064 1.81864) (end -2.23012 2.44856) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "4c265f7c-8e08-48b9-a596-688b790825bc") ) (fp_line (start -1.38938 -1.64084) (end -1.51892 -0.80264) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "4e1d5006-3fd6-4fd3-86c1-cbe96e3b22e0") ) (fp_line (start -1.47066 0.49784) (end -1.71958 0.16764) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "7dfb010e-0bd1-44a8-80e4-f21f39577483") ) (fp_line (start -1.51892 -0.80264) (end -1.51892 0.1397) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "4d62c095-9cd0-41a2-b544-269ae30ed914") ) (fp_line (start -1.62052 -2.35204) (end -1.99136 -2.77114) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "02e9d154-1cbc-41a1-aea9-63dbb06e642c") ) (fp_line (start -1.6891 1.48844) (end -2.50952 1.9685) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "12c0afdb-101f-437d-9968-4e32227bb127") ) (fp_line (start -1.71958 0.16764) (end -1.77038 0.11938) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "c983f062-c8b2-4cd2-a2aa-65cebc0637a8") ) (fp_line (start -1.77038 0.11938) (end -1.84912 -0.42164) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "8bd03b03-1b8d-4398-a4f7-ebacabfe34b0") ) (fp_line (start -1.84912 -0.42164) (end -1.84912 -1.48082) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "c074641f-0503-4bc6-bf5d-688a58b57843") ) (fp_line (start -1.84912 -1.48082) (end -1.62052 -2.35204) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "f78f479e-5385-46b2-8a73-13bd611eb01d") ) (fp_line (start -1.86944 1.15824) (end -1.89992 1.15824) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "16e94fe9-9287-4723-99be-5f256e90771f") ) (fp_line (start -1.8796 1.13792) (end -0.65024 2.64922) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "913e99ad-82d0-4cf9-b098-38183f01e444") ) (fp_line (start -1.89992 1.15824) (end -2.76098 1.5875) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "686e0f72-cfd6-4d14-940b-86d1282d54a7") ) (fp_line (start -1.99136 -2.77114) (end -2.4892 -1.10236) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "394fdcf0-3b46-41f4-9914-70dd3b917cda") ) (fp_line (start -2.17932 -3.36042) (end -4.5593 -2.2225) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "f70212d8-dcc5-4b2c-a583-1c7dc78e0449") ) (fp_line (start -2.37998 -1.99136) (end -2.41046 -1.99136) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "b494de34-78fe-4bdf-84df-89dc5b509044") ) (fp_line (start -2.41046 -1.99136) (end -4.03098 -1.20142) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "3ad7962c-8474-4a76-8288-a2f1f10a60d9") ) (fp_line (start -2.46126 -1.38176) (end -3.74904 -0.65278) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "5601ca69-7107-4165-8498-d33059095777") ) (fp_line (start -2.47904 -0.75184) (end -3.55092 -0.16256) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "94ef80c9-7d4f-481e-964e-2a0bac98891f") ) (fp_line (start -2.4892 -1.10236) (end -2.37998 0.57912) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "8f35b74f-0e76-44bc-9e22-015c1ca77f22") ) (fp_line (start -2.6289 -0.06096) (end -3.37058 0.33782) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "1296a900-9fb0-4b7a-b3fb-3358603c8eda") ) (fp_line (start -2.76098 1.5875) (end 0.21082 7.3787) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "fc8943f5-3607-4c69-8a54-82bb68de7545") ) (fp_line (start -3.09118 0.84836) (end -2.46126 0.56896) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "5fdf85e2-47de-4160-afa9-cc48b2c5e22d") ) (fp_line (start -3.64998 -3.34264) (end -4.77012 -2.75082) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "b0f508e2-fdaf-4599-a7f3-32450b333949") ) (fp_line (start -5.15112 -3.31216) (end -3.09118 0.84836) (stroke (width 0.3048) (type solid) ) (layer "B.Cu") (uuid "e4290f19-db07-494f-ae37-0ada71d93807") ) ) (footprint "Symbol:KiCad-Logo2_5mm_Copper" (layer "B.Cu") (uuid "bb37a848-d483-48f4-b367-c9eea3e1139e") (at 149.25 112.75 180) (descr "KiCad Logo") (tags "Logo KiCad") (property "Reference" "REF**" (at 0 5.08 0) (layer "B.SilkS") (hide yes) (uuid "ba2ac161-7e56-4072-82c5-242ca7871e29") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Value" "KiCad-Logo2_5mm_Copper" (at 0 -5.08 0) (layer "B.Fab") (hide yes) (uuid "f972bd85-c776-4b62-9b58-9880369c1aa6") (effects (font (size 1 1) (thickness 0.15) ) (justify mirror) ) ) (property "Footprint" "Symbol:KiCad-Logo2_5mm_Copper" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "4804455d-0aea-4d7a-9cf4-9414bef34079") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "8a02b9ac-6900-47f2-ae5e-8f806a2d38b8") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) (uuid "1742b65f-b7da-4219-a5a8-7650fa9f837a") (effects (font (size 1.27 1.27) (thickness 0.15) ) (justify mirror) ) ) (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) (fp_poly (pts (xy 4.188614 -2.275877) (xy 4.212327 -2.290647) (xy 4.238978 -2.312227) (xy 4.238978 -2.633773) (xy 4.238893 -2.72783) (xy 4.238529 -2.801932) (xy 4.237724 -2.858704) (xy 4.236313 -2.900768) (xy 4.234133 -2.930748) (xy 4.231021 -2.951267) (xy 4.226814 -2.964949) (xy 4.221348 -2.974416) (xy 4.217472 -2.979082) (xy 4.186034 -2.999575) (xy 4.150233 -2.998739) (xy 4.118873 -2.981264) (xy 4.092222 -2.959684) (xy 4.092222 -2.312227) (xy 4.118873 -2.290647) (xy 4.144594 -2.274949) (xy 4.1656 -2.269067) (xy 4.188614 -2.275877) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "8950612e-ab68-4f8c-9da6-7ea0e94e2d53") ) (fp_poly (pts (xy -2.923822 -2.291645) (xy -2.917242 -2.299218) (xy -2.912079 -2.308987) (xy -2.908164 -2.323571) (xy -2.905324 -2.345585) (xy -2.903387 -2.377648) (xy -2.902183 -2.422375) (xy -2.901539 -2.482385) (xy -2.901284 -2.560294) (xy -2.901245 -2.635956) (xy -2.901314 -2.729802) (xy -2.901638 -2.803689) (xy -2.902386 -2.860232) (xy -2.903732 -2.902049) (xy -2.905846 -2.931757) (xy -2.9089 -2.951973) (xy -2.913066 -2.965314) (xy -2.918516 -2.974398) (xy -2.923822 -2.980267) (xy -2.956826 -2.999947) (xy -2.991991 -2.998181) (xy -3.023455 -2.976717) (xy -3.030684 -2.968337) (xy -3.036334 -2.958614) (xy -3.040599 -2.944861) (xy -3.043673 -2.924389) (xy -3.045752 -2.894512) (xy -3.04703 -2.852541) (xy -3.047701 -2.795789) (xy -3.047959 -2.721567) (xy -3.048 -2.637537) (xy -3.048 -2.324485) (xy -3.020291 -2.296776) (xy -2.986137 -2.273463) (xy -2.953006 -2.272623) (xy -2.923822 -2.291645) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "497962f9-ace3-4d00-be08-3e82ee4b51a1") ) (fp_poly (pts (xy -2.273043 2.973429) (xy -2.176768 2.949191) (xy -2.090184 2.906359) (xy -2.015373 2.846581) (xy -1.954418 2.771506) (xy -1.909399 2.68278) (xy -1.883136 2.58647) (xy -1.877286 2.489205) (xy -1.89214 2.395346) (xy -1.92584 2.307489) (xy -1.976528 2.22823) (xy -2.042345 2.160164) (xy -2.121434 2.105888) (xy -2.211934 2.067998) (xy -2.2632 2.055574) (xy -2.307698 2.048053) (xy -2.341999 2.045081) (xy -2.37496 2.046906) (xy -2.415434 2.053775) (xy -2.448531 2.06075) (xy -2.541947 2.092259) (xy -2.625619 2.143383) (xy -2.697665 2.212571) (xy -2.7562 2.298272) (xy -2.770148 2.325511) (xy -2.786586 2.361878) (xy -2.796894 2.392418) (xy -2.80246 2.42455) (xy -2.804669 2.465693) (xy -2.804948 2.511778) (xy -2.800861 2.596135) (xy -2.787446 2.665414) (xy -2.762256 2.726039) (xy -2.722846 2.784433) (xy -2.684298 2.828698) (xy -2.612406 2.894516) (xy -2.537313 2.939947) (xy -2.454562 2.96715) (xy -2.376928 2.977424) (xy -2.273043 2.973429) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "f85567f1-730a-47b4-a887-1803caf7d158") ) (fp_poly (pts (xy 4.963065 -2.269163) (xy 5.041772 -2.269542) (xy 5.102863 -2.270333) (xy 5.148817 -2.27167) (xy 5.182114 -2.273683) (xy 5.205236 -2.276506) (xy 5.220662 -2.280269) (xy 5.230871 -2.285105) (xy 5.235813 -2.288822) (xy 5.261457 -2.321358) (xy 5.264559 -2.355138) (xy 5.248711 -2.385826) (xy 5.238348 -2.398089) (xy 5.227196 -2.40645) (xy 5.211035 -2.411657) (xy 5.185642 -2.414457) (xy 5.146798 -2.415596) (xy 5.09028 -2.415821) (xy 5.07918 -2.415822) (xy 4.933244 -2.415822) (xy 4.933244 -2.686756) (xy 4.933148 -2.772154) (xy 4.932711 -2.837864) (xy 4.931712 -2.886774) (xy 4.929928 -2.921773) (xy 4.927137 -2.945749) (xy 4.923117 -2.961593) (xy 4.917645 -2.972191) (xy 4.910666 -2.980267) (xy 4.877734 -3.000112) (xy 4.843354 -2.998548) (xy 4.812176 -2.975906) (xy 4.809886 -2.9731) (xy 4.802429 -2.962492) (xy 4.796747 -2.950081) (xy 4.792601 -2.93285) (xy 4.78975 -2.907784) (xy 4.787954 -2.871867) (xy 4.786972 -2.822083) (xy 4.786564 -2.755417) (xy 4.786489 -2.679589) (xy 4.786489 -2.415822) (xy 4.647127 -2.415822) (xy 4.587322 -2.415418) (xy 4.545918 -2.41384) (xy 4.518748 -2.410547) (xy 4.501646 -2.404992) (xy 4.490443 -2.396631) (xy 4.489083 -2.395178) (xy 4.472725 -2.361939) (xy 4.474172 -2.324362) (xy 4.492978 -2.291645) (xy 4.50025 -2.285298) (xy 4.509627 -2.280266) (xy 4.523609 -2.276396) (xy 4.544696 -2.273537) (xy 4.575389 -2.271535) (xy 4.618189 -2.270239) (xy 4.675595 -2.269498) (xy 4.75011 -2.269158) (xy 4.844233 -2.269068) (xy 4.86426 -2.269067) (xy 4.963065 -2.269163) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "ff6955fb-c343-4332-b28e-f0ec99ab197d") ) (fp_poly (pts (xy 6.228823 -2.274533) (xy 6.260202 -2.296776) (xy 6.287911 -2.324485) (xy 6.287911 -2.63392) (xy 6.287838 -2.725799) (xy 6.287495 -2.79784) (xy 6.286692 -2.85278) (xy 6.285241 -2.89336) (xy 6.282952 -2.922317) (xy 6.279636 -2.942391) (xy 6.275105 -2.956321) (xy 6.269169 -2.966845) (xy 6.264514 -2.9731) (xy 6.233783 -2.997673) (xy 6.198496 -3.000341) (xy 6.166245 -2.985271) (xy 6.155588 -2.976374) (xy 6.148464 -2.964557) (xy 6.144167 -2.945526) (xy 6.141991 -2.914992) (xy 6.141228 -2.868662) (xy 6.141155 -2.832871) (xy 6.141155 -2.698045) (xy 5.644444 -2.698045) (xy 5.644444 -2.8207) (xy 5.643931 -2.876787) (xy 5.641876 -2.915333) (xy 5.637508 -2.941361) (xy 5.630056 -2.959897) (xy 5.621047 -2.9731) (xy 5.590144 -2.997604) (xy 5.555196 -3.000506) (xy 5.521738 -2.983089) (xy 5.512604 -2.973959) (xy 5.506152 -2.961855) (xy 5.501897 -2.943001) (xy 5.499352 -2.91362) (xy 5.498029 -2.869937) (xy 5.497443 -2.808175) (xy 5.497375 -2.794) (xy 5.496891 -2.677631) (xy 5.496641 -2.581727) (xy 5.496723 -2.504177) (xy 5.497231 -2.442869) (xy 5.498262 -2.39569) (xy 5.499913 -2.36053) (xy 5.502279 -2.335276) (xy 5.505457 -2.317817) (xy 5.509544 -2.306041) (xy 5.514634 -2.297835) (xy 5.520266 -2.291645) (xy 5.552128 -2.271844) (xy 5.585357 -2.274533) (xy 5.616735 -2.296776) (xy 5.629433 -2.311126) (xy 5.637526 -2.326978) (xy 5.642042 -2.349554) (xy 5.644006 -2.384078) (xy 5.644444 -2.435776) (xy 5.644444 -2.551289) (xy 6.141155 -2.551289) (xy 6.141155 -2.432756) (xy 6.141662 -2.378148) (xy 6.143698 -2.341275) (xy 6.148035 -2.317307) (xy 6.155447 -2.301415) (xy 6.163733 -2.291645) (xy 6.195594 -2.271844) (xy 6.228823 -2.274533) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "6acba46a-7fb4-4f7a-a7b9-a2adbf4baf5b") ) (fp_poly (pts (xy 1.018309 -2.269275) (xy 1.147288 -2.273636) (xy 1.256991 -2.286861) (xy 1.349226 -2.309741) (xy 1.425802 -2.34307) (xy 1.488527 -2.387638) (xy 1.539212 -2.444236) (xy 1.579663 -2.513658) (xy 1.580459 -2.515351) (xy 1.604601 -2.577483) (xy 1.613203 -2.632509) (xy 1.606231 -2.687887) (xy 1.583654 -2.751073) (xy 1.579372 -2.760689) (xy 1.550172 -2.816966) (xy 1.517356 -2.860451) (xy 1.475002 -2.897417) (xy 1.41719 -2.934135) (xy 1.413831 -2.936052) (xy 1.363504 -2.960227) (xy 1.306621 -2.978282) (xy 1.239527 -2.990839) (xy 1.158565 -2.998522) (xy 1.060082 -3.001953) (xy 1.025286 -3.002251) (xy 0.859594 -3.002845) (xy 0.836197 -2.9731) (xy 0.829257 -2.963319) (xy 0.823842 -2.951897) (xy 0.819765 -2.936095) (xy 0.816837 -2.913175) (xy 0.814867 -2.880396) (xy 0.814225 -2.856089) (xy 0.970844 -2.856089) (xy 1.064726 -2.856089) (xy 1.119664 -2.854483) (xy 1.17606 -2.850255) (xy 1.222345 -2.844292) (xy 1.225139 -2.84379) (xy 1.307348 -2.821736) (xy 1.371114 -2.7886) (xy 1.418452 -2.742847) (xy 1.451382 -2.682939) (xy 1.457108 -2.667061) (xy 1.462721 -2.642333) (xy 1.460291 -2.617902) (xy 1.448467 -2.5854) (xy 1.44134 -2.569434) (xy 1.418 -2.527006) (xy 1.38988 -2.49724) (xy 1.35894 -2.476511) (xy 1.296966 -2.449537) (xy 1.217651 -2.429998) (xy 1.125253 -2.418746) (xy 1.058333 -2.41627) (xy 0.970844 -2.415822) (xy 0.970844 -2.856089) (xy 0.814225 -2.856089) (xy 0.813668 -2.835021) (xy 0.81305 -2.774311) (xy 0.812825 -2.695526) (xy 0.8128 -2.63392) (xy 0.8128 -2.324485) (xy 0.840509 -2.296776) (xy 0.852806 -2.285544) (xy 0.866103 -2.277853) (xy 0.884672 -2.27304) (xy 0.912786 -2.270446) (xy 0.954717 -2.26941) (xy 1.014737 -2.26927) (xy 1.018309 -2.269275) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "aa933c9a-4224-4245-bbc9-2ba601f0e930") ) (fp_poly (pts (xy -6.121371 -2.269066) (xy -6.081889 -2.269467) (xy -5.9662 -2.272259) (xy -5.869311 -2.28055) (xy -5.787919 -2.295232) (xy -5.718723 -2.317193) (xy -5.65842 -2.347322) (xy -5.603708 -2.38651) (xy -5.584167 -2.403532) (xy -5.55175 -2.443363) (xy -5.52252 -2.497413) (xy -5.499991 -2.557323) (xy -5.487679 -2.614739) (xy -5.4864 -2.635956) (xy -5.494417 -2.694769) (xy -5.515899 -2.759013) (xy -5.546999 -2.819821) (xy -5.583866 -2.86833) (xy -5.589854 -2.874182) (xy -5.640579 -2.915321) (xy -5.696125 -2.947435) (xy -5.759696 -2.971365) (xy -5.834494 -2.987953) (xy -5.923722 -2.998041) (xy -6.030582 -3.002469) (xy -6.079528 -3.002845) (xy -6.141762 -3.002545) (xy -6.185528 -3.001292) (xy -6.214931 -2.998554) (xy -6.234079 -2.993801) (xy -6.247077 -2.986501) (xy -6.254045 -2.980267) (xy -6.260626 -2.972694) (xy -6.265788 -2.962924) (xy -6.269703 -2.94834) (xy -6.272543 -2.926326) (xy -6.27448 -2.894264) (xy -6.275684 -2.849536) (xy -6.276328 -2.789526) (xy -6.276583 -2.711617) (xy -6.276622 -2.635956) (xy -6.27687 -2.535041) (xy -6.276817 -2.454427) (xy -6.275857 -2.415822) (xy -6.129867 -2.415822) (xy -6.129867 -2.856089) (xy -6.036734 -2.856004) (xy -5.980693 -2.854396) (xy -5.921999 -2.850256) (xy -5.873028 -2.844464) (xy -5.871538 -2.844226) (xy -5.792392 -2.82509) (xy -5.731002 -2.795287) (xy -5.684305 -2.752878) (xy -5.654635 -2.706961) (xy -5.636353 -2.656026) (xy -5.637771 -2.6082) (xy -5.658988 -2.556933) (xy -5.700489 -2.503899) (xy -5.757998 -2.4646) (xy -5.83275 -2.438331) (xy -5.882708 -2.429035) (xy -5.939416 -2.422507) (xy -5.999519 -2.417782) (xy -6.050639 -2.415817) (xy -6.053667 -2.415808) (xy -6.129867 -2.415822) (xy -6.275857 -2.415822) (xy -6.27526 -2.391851) (xy -6.270998 -2.345055) (xy -6.26283 -2.311778) (xy -6.249556 -2.289759) (xy -6.229974 -2.276739) (xy -6.202883 -2.270457) (xy -6.167082 -2.268653) (xy -6.121371 -2.269066) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "52787911-cc8e-461f-bf30-27ca564b17d6") ) (fp_poly (pts (xy -1.300114 -2.273448) (xy -1.276548 -2.287273) (xy -1.245735 -2.309881) (xy -1.206078 -2.342338) (xy -1.15598 -2.385708) (xy -1.093843 -2.441058) (xy -1.018072 -2.509451) (xy -0.931334 -2.588084) (xy -0.750711 -2.751878) (xy -0.745067 -2.532029) (xy -0.743029 -2.456351) (xy -0.741063 -2.399994) (xy -0.738734 -2.359706) (xy -0.735606 -2.332235) (xy -0.731245 -2.314329) (xy -0.725216 -2.302737) (xy -0.717084 -2.294208) (xy -0.712772 -2.290623) (xy -0.678241 -2.27167) (xy -0.645383 -2.274441) (xy -0.619318 -2.290633) (xy -0.592667 -2.312199) (xy -0.589352 -2.627151) (xy -0.588435 -2.719779) (xy -0.587968 -2.792544) (xy -0.588113 -2.848161) (xy -0.589032 -2.889342) (xy -0.590887 -2.918803) (xy -0.593839 -2.939255) (xy -0.59805 -2.953413) (xy -0.603682 -2.963991) (xy -0.609927 -2.972474) (xy -0.623439 -2.988207) (xy -0.636883 -2.998636) (xy -0.652124 -3.002639) (xy -0.671026 -2.999094) (xy -0.695455 -2.986879) (xy -0.727273 -2.964871) (xy -0.768348 -2.931949) (xy -0.820542 -2.886991) (xy -0.885722 -2.828875) (xy -0.959556 -2.762099) (xy -1.224845 -2.521458) (xy -1.230489 -2.740589) (xy -1.232531 -2.816128) (xy -1.234502 -2.872354) (xy -1.236839 -2.912524) (xy -1.239981 -2.939896) (xy -1.244364 -2.957728) (xy -1.250424 -2.969279) (xy -1.2586 -2.977807) (xy -1.262784 -2.981282) (xy -1.299765 -3.000372) (xy -1.334708 -2.997493) (xy -1.365136 -2.9731) (xy -1.372097 -2.963286) (xy -1.377523 -2.951826) (xy -1.381603 -2.935968) (xy -1.384529 -2.912963) (xy -1.386492 -2.880062) (xy -1.387683 -2.834516) (xy -1.388292 -2.773573) (xy -1.388511 -2.694486) (xy -1.388534 -2.635956) (xy -1.38846 -2.544407) (xy -1.388113 -2.472687) (xy -1.387301 -2.418045) (xy -1.385833 -2.377732) (xy -1.383519 -2.348998) (xy -1.380167 -2.329093) (xy -1.375588 -2.315268) (xy -1.369589 -2.304772) (xy -1.365136 -2.298811) (xy -1.35385 -2.284691) (xy -1.343301 -2.274029) (xy -1.331893 -2.267892) (xy -1.31803 -2.267343) (xy -1.300114 -2.273448) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "d71b3840-66fe-4381-ac11-0a84a7f36f47") ) (fp_poly (pts (xy -1.950081 -2.274599) (xy -1.881565 -2.286095) (xy -1.828943 -2.303967) (xy -1.794708 -2.327499) (xy -1.785379 -2.340924) (xy -1.775893 -2.372148) (xy -1.782277 -2.400395) (xy -1.80243 -2.427182) (xy -1.833745 -2.439713) (xy -1.879183 -2.438696) (xy -1.914326 -2.431906) (xy -1.992419 -2.418971) (xy -2.072226 -2.417742) (xy -2.161555 -2.428241) (xy -2.186229 -2.43269) (xy -2.269291 -2.456108) (xy -2.334273 -2.490945) (xy -2.380461 -2.536604) (xy -2.407145 -2.592494) (xy -2.412663 -2.621388) (xy -2.409051 -2.680012) (xy -2.385729 -2.731879) (xy -2.344824 -2.775978) (xy -2.288459 -2.811299) (xy -2.21876 -2.836829) (xy -2.137852 -2.851559) (xy -2.04786 -2.854478) (xy -1.95091 -2.844575) (xy -1.945436 -2.843641) (xy -1.906875 -2.836459) (xy -1.885494 -2.829521) (xy -1.876227 -2.819227) (xy -1.874006 -2.801976) (xy -1.873956 -2.792841) (xy -1.873956 -2.754489) (xy -1.942431 -2.754489) (xy -2.0029 -2.750347) (xy -2.044165 -2.737147) (xy -2.068175 -2.71373) (xy -2.076877 -2.678936) (xy -2.076983 -2.674394) (xy -2.071892 -2.644654) (xy -2.054433 -2.623419) (xy -2.021939 -2.609366) (xy -1.971743 -2.601173) (xy -1.923123 -2.598161) (xy -1.852456 -2.596433) (xy -1.801198 -2.59907) (xy -1.766239 -2.6088) (xy -1.74447 -2.628353) (xy -1.73278 -2.660456) (xy -1.72806 -2.707838) (xy -1.7272 -2.770071) (xy -1.728609 -2.839535) (xy -1.732848 -2.886786) (xy -1.739936 -2.912012) (xy -1.741311 -2.913988) (xy -1.780228 -2.945508) (xy -1.837286 -2.97047) (xy -1.908869 -2.98834) (xy -1.991358 -2.998586) (xy -2.081139 -3.000673) (xy -2.174592 -2.994068) (xy -2.229556 -2.985956) (xy -2.315766 -2.961554) (xy -2.395892 -2.921662) (xy -2.462977 -2.869887) (xy -2.473173 -2.859539) (xy -2.506302 -2.816035) (xy -2.536194 -2.762118) (xy -2.559357 -2.705592) (xy -2.572298 -2.654259) (xy -2.573858 -2.634544) (xy -2.567218 -2.593419) (xy -2.549568 -2.542252) (xy -2.524297 -2.488394) (xy -2.494789 -2.439195) (xy -2.468719 -2.406334) (xy -2.407765 -2.357452) (xy -2.328969 -2.318545) (xy -2.235157 -2.290494) (xy -2.12915 -2.274179) (xy -2.032 -2.270192) (xy -1.950081 -2.274599) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "0ec5f3ec-3dfc-437e-a755-2285bc534375") ) (fp_poly (pts (xy 0.230343 -2.26926) (xy 0.306701 -2.270174) (xy 0.365217 -2.272311) (xy 0.408255 -2.276175) (xy 0.438183 -2.282267) (xy 0.457368 -2.29109) (xy 0.468176 -2.303146) (xy 0.472973 -2.318939) (xy 0.474127 -2.33897) (xy 0.474133 -2.341335) (xy 0.473131 -2.363992) (xy 0.468396 -2.381503) (xy 0.457333 -2.394574) (xy 0.437348 -2.403913) (xy 0.405846 -2.410227) (xy 0.360232 -2.414222) (xy 0.297913 -2.416606) (xy 0.216293 -2.418086) (xy 0.191277 -2.418414) (xy -0.0508 -2.421467) (xy -0.054186 -2.486378) (xy -0.057571 -2.551289) (xy 0.110576 -2.551289) (xy 0.176266 -2.551531) (xy 0.223172 -2.552556) (xy 0.255083 -2.554811) (xy 0.275791 -2.558742) (xy 0.289084 -2.564798) (xy 0.298755 -2.573424) (xy 0.298817 -2.573493) (xy 0.316356 -2.607112) (xy 0.315722 -2.643448) (xy 0.297314 -2.674423) (xy 0.293671 -2.677607) (xy 0.280741 -2.685812) (xy 0.263024 -2.691521) (xy 0.23657 -2.695162) (xy 0.197432 -2.697167) (xy 0.141662 -2.697964) (xy 0.105994 -2.698045) (xy -0.056445 -2.698045) (xy -0.056445 -2.856089) (xy 0.190161 -2.856089) (xy 0.27158 -2.856231) (xy 0.33341 -2.856814) (xy 0.378637 -2.858068) (xy 0.410248 -2.860227) (xy 0.431231 -2.863523) (xy 0.444573 -2.868189) (xy 0.453261 -2.874457) (xy 0.45545 -2.876733) (xy 0.471614 -2.90828) (xy 0.472797 -2.944168) (xy 0.459536 -2.975285) (xy 0.449043 -2.985271) (xy 0.438129 -2.990769) (xy 0.421217 -2.995022) (xy 0.395633 -2.99818) (xy 0.358701 -3.000392) (xy 0.307746 -3.001806) (xy 0.240094 -3.002572) (xy 0.153069 -3.002838) (xy 0.133394 -3.002845) (xy 0.044911 -3.002787) (xy -0.023773 -3.002467) (xy -0.075436 -3.001667) (xy -0.112855 -3.000167) (xy -0.13881 -2.997749) (xy -0.156078 -2.994194) (xy -0.167438 -2.989282) (xy -0.175668 -2.982795) (xy -0.180183 -2.978138) (xy -0.186979 -2.969889) (xy -0.192288 -2.959669) (xy -0.196294 -2.9448) (xy -0.199179 -2.922602) (xy -0.201126 -2.890393) (xy -0.202319 -2.845496) (xy -0.202939 -2.785228) (xy -0.203171 -2.706911) (xy -0.2032 -2.640994) (xy -0.203129 -2.548628) (xy -0.202792 -2.476117) (xy -0.202002 -2.420737) (xy -0.200574 -2.379765) (xy -0.198321 -2.350478) (xy -0.195057 -2.330153) (xy -0.190596 -2.316066) (xy -0.184752 -2.305495) (xy -0.179803 -2.298811) (xy -0.156406 -2.269067) (xy 0.133774 -2.269067) (xy 0.230343 -2.26926) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "a834e002-f599-4bc5-bad3-ce69eeecf629") ) (fp_poly (pts (xy -4.712794 -2.269146) (xy -4.643386 -2.269518) (xy -4.590997 -2.270385) (xy -4.552847 -2.271946) (xy -4.526159 -2.274403) (xy -4.508153 -2.277957) (xy -4.496049 -2.28281) (xy -4.487069 -2.289161) (xy -4.483818 -2.292084) (xy -4.464043 -2.323142) (xy -4.460482 -2.358828) (xy -4.473491 -2.39051) (xy -4.479506 -2.396913) (xy -4.489235 -2.403121) (xy -4.504901 -2.40791) (xy -4.529408 -2.411514) (xy -4.565661 -2.414164) (xy -4.616565 -2.416095) (xy -4.685026 -2.417539) (xy -4.747617 -2.418418) (xy -4.995334 -2.421467) (xy -4.998719 -2.486378) (xy -5.002105 -2.551289) (xy -4.833958 -2.551289) (xy -4.760959 -2.551919) (xy -4.707517 -2.554553) (xy -4.670628 -2.560309) (xy -4.647288 -2.570304) (xy -4.634494 -2.585656) (xy -4.629242 -2.607482) (xy -4.628445 -2.627738) (xy -4.630923 -2.652592) (xy -4.640277 -2.670906) (xy -4.659383 -2.683637) (xy -4.691118 -2.691741) (xy -4.738359 -2.696176) (xy -4.803983 -2.697899) (xy -4.839801 -2.698045) (xy -5.000978 -2.698045) (xy -5.000978 -2.856089) (xy -4.752622 -2.856089) (xy -4.671213 -2.856202) (xy -4.609342 -2.856712) (xy -4.563968 -2.85787) (xy -4.532054 -2.85993) (xy -4.510559 -2.863146) (xy -4.496443 -2.867772) (xy -4.486668 -2.874059) (xy -4.481689 -2.878667) (xy -4.46461 -2.90556) (xy -4.459111 -2.929467) (xy -4.466963 -2.958667) (xy -4.481689 -2.980267) (xy -4.489546 -2.987066) (xy -4.499688 -2.992346) (xy -4.514844 -2.996298) (xy -4.537741 -2.999113) (xy -4.571109 -3.000982) (xy -4.617675 -3.002098) (xy -4.680167 -3.002651) (xy -4.761314 -3.002833) (xy -4.803422 -3.002845) (xy -4.893598 -3.002765) (xy -4.963924 -3.002398) (xy -5.017129 -3.001552) (xy -5.05594 -3.000036) (xy -5.083087 -2.997659) (xy -5.101298 -2.994229) (xy -5.1133 -2.989554) (xy -5.121822 -2.983444) (xy -5.125156 -2.980267) (xy -5.131755 -2.97267) (xy -5.136927 -2.96287) (xy -5.140846 -2.948239) (xy -5.143684 -2.926152) (xy -5.145615 -2.893982) (xy -5.146812 -2.849103) (xy -5.147448 -2.788889) (xy -5.147697 -2.710713) (xy -5.147734 -2.637923) (xy -5.1477 -2.544707) (xy -5.147465 -2.471431) (xy -5.14683 -2.415458) (xy -5.145594 -2.374151) (xy -5.143556 -2.344872) (xy -5.140517 -2.324984) (xy -5.136277 -2.31185) (xy -5.130635 -2.302832) (xy -5.123391 -2.295293) (xy -5.121606 -2.293612) (xy -5.112945 -2.286172) (xy -5.102882 -2.280409) (xy -5.088625 -2.276112) (xy -5.067383 -2.273064) (xy -5.036364 -2.271051) (xy -4.992777 -2.26986) (xy -4.933831 -2.269275) (xy -4.856734 -2.269083) (xy -4.802001 -2.269067) (xy -4.712794 -2.269146) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "3eabd569-c447-48ac-ab62-63bf71dd7e72") ) (fp_poly (pts (xy 3.744665 -2.271034) (xy 3.764255 -2.278035) (xy 3.76501 -2.278377) (xy 3.791613 -2.298678) (xy 3.80627 -2.319561) (xy 3.809138 -2.329352) (xy 3.808996 -2.342361) (xy 3.804961 -2.360895) (xy 3.796146 -2.387257) (xy 3.781669 -2.423752) (xy 3.760645 -2.472687) (xy 3.732188 -2.536365) (xy 3.695415 -2.617093) (xy 3.675175 -2.661216) (xy 3.638625 -2.739985) (xy 3.604315 -2.812423) (xy 3.573552 -2.87588) (xy 3.547648 -2.927708) (xy 3.52791 -2.965259) (xy 3.51565 -2.985884) (xy 3.513224 -2.988733) (xy 3.482183 -3.001302) (xy 3.447121 -2.999619) (xy 3.419 -2.984332) (xy 3.417854 -2.983089) (xy 3.406668 -2.966154) (xy 3.387904 -2.93317) (xy 3.363875 -2.88838) (xy 3.336897 -2.836032) (xy 3.327201 -2.816742) (xy 3.254014 -2.67015) (xy 3.17424 -2.829393) (xy 3.145767 -2.884415) (xy 3.11935 -2.932132) (xy 3.097148 -2.968893) (xy 3.081319 -2.991044) (xy 3.075954 -2.995741) (xy 3.034257 -3.002102) (xy 2.999849 -2.988733) (xy 2.989728 -2.974446) (xy 2.972214 -2.942692) (xy 2.948735 -2.896597) (xy 2.92072 -2.839285) (xy 2.889599 -2.77388) (xy 2.856799 -2.703507) (xy 2.82375 -2.631291) (xy 2.791881 -2.560355) (xy 2.762619 -2.493825) (xy 2.737395 -2.434826) (xy 2.717636 -2.386481) (xy 2.704772 -2.351915) (xy 2.700231 -2.334253) (xy 2.700277 -2.333613) (xy 2.711326 -2.311388) (xy 2.73341 -2.288753) (xy 2.73471 -2.287768) (xy 2.761853 -2.272425) (xy 2.786958 -2.272574) (xy 2.796368 -2.275466) (xy 2.807834 -2.281718) (xy 2.82001 -2.294014) (xy 2.834357 -2.314908) (xy 2.852336 -2.346949) (xy 2.875407 -2.392688) (xy 2.90503 -2.454677) (xy 2.931745 -2.511898) (xy 2.96248 -2.578226) (xy 2.990021 -2.637874) (xy 3.012938 -2.687725) (xy 3.029798 -2.724664) (xy 3.039173 -2.745573) (xy 3.04054 -2.748845) (xy 3.046689 -2.743497) (xy 3.060822 -2.721109) (xy 3.081057 -2.684946) (xy 3.105515 -2.638277) (xy 3.115248 -2.619022) (xy 3.148217 -2.554004) (xy 3.173643 -2.506654) (xy 3.193612 -2.474219) (xy 3.21021 -2.453946) (xy 3.225524 -2.443082) (xy 3.24164 -2.438875) (xy 3.252143 -2.4384) (xy 3.27067 -2.440042) (xy 3.286904 -2.446831) (xy 3.303035 -2.461566) (xy 3.321251 -2.487044) (xy 3.343739 -2.526061) (xy 3.372689 -2.581414) (xy 3.388662 -2.612903) (xy 3.41457 -2.663087) (xy 3.437167 -2.704704) (xy 3.454458 -2.734242) (xy 3.46445 -2.748189) (xy 3.465809 -2.74877) (xy 3.472261 -2.737793) (xy 3.486708 -2.70929) (xy 3.507703 -2.666244) (xy 3.533797 -2.611638) (xy 3.563546 -2.548454) (xy 3.57818 -2.517071) (xy 3.61625 -2.436078) (xy 3.646905 -2.373756) (xy 3.671737 -2.328071) (xy 3.692337 -2.296989) (xy 3.710298 -2.278478) (xy 3.72721 -2.270504) (xy 3.744665 -2.271034) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "c6e6408f-2c49-4fc7-9a8e-ec9adef003d6") ) (fp_poly (pts (xy -3.691703 -2.270351) (xy -3.616888 -2.275581) (xy -3.547306 -2.28375) (xy -3.487002 -2.29455) (xy -3.44002 -2.307673) (xy -3.410406 -2.322813) (xy -3.40586 -2.327269) (xy -3.390054 -2.36185) (xy -3.394847 -2.397351) (xy -3.419364 -2.427725) (xy -3.420534 -2.428596) (xy -3.434954 -2.437954) (xy -3.450008 -2.442876) (xy -3.471005 -2.443473) (xy -3.503257 -2.439861) (xy -3.552073 -2.432154) (xy -3.556 -2.431505) (xy -3.628739 -2.422569) (xy -3.707217 -2.418161) (xy -3.785927 -2.418119) (xy -3.859361 -2.422279) (xy -3.922011 -2.430479) (xy -3.96837 -2.442557) (xy -3.971416 -2.443771) (xy -4.005048 -2.462615) (xy -4.016864 -2.481685) (xy -4.007614 -2.500439) (xy -3.978047 -2.518337) (xy -3.928911 -2.534837) (xy -3.860957 -2.549396) (xy -3.815645 -2.556406) (xy -3.721456 -2.569889) (xy -3.646544 -2.582214) (xy -3.587717 -2.594449) (xy -3.541785 -2.607661) (xy -3.505555 -2.622917) (xy -3.475838 -2.641285) (xy -3.449442 -2.663831) (xy -3.42823 -2.685971) (xy -3.403065 -2.716819) (xy -3.390681 -2.743345) (xy -3.386808 -2.776026) (xy -3.386667 -2.787995) (xy -3.389576 -2.827712) (xy -3.401202 -2.857259) (xy -3.421323 -2.883486) (xy -3.462216 -2.923576) (xy -3.507817 -2.954149) (xy -3.561513 -2.976203) (xy -3.626692 -2.990735) (xy -3.706744 -2.998741) (xy -3.805057 -3.001218) (xy -3.821289 -3.001177) (xy -3.886849 -2.999818) (xy -3.951866 -2.99673) (xy -4.009252 -2.992356) (xy -4.051922 -2.98714) (xy -4.055372 -2.986541) (xy -4.097796 -2.976491) (xy -4.13378 -2.963796) (xy -4.15415 -2.95219) (xy -4.173107 -2.921572) (xy -4.174427 -2.885918) (xy -4.158085 -2.854144) (xy -4.154429 -2.850551) (xy -4.139315 -2.839876) (xy -4.120415 -2.835276) (xy -4.091162 -2.836059) (xy -4.055651 -2.840127) (xy -4.01597 -2.843762) (xy -3.960345 -2.846828) (xy -3.895406 -2.849053) (xy -3.827785 -2.850164) (xy -3.81 -2.850237) (xy -3.742128 -2.849964) (xy -3.692454 -2.848646) (xy -3.65661 -2.845827) (xy -3.630224 -2.84105) (xy -3.608926 -2.833857) (xy -3.596126 -2.827867) (xy -3.568 -2.811233) (xy -3.550068 -2.796168) (xy -3.547447 -2.791897) (xy -3.552976 -2.774263) (xy -3.57926 -2.757192) (xy -3.624478 -2.741458) (xy -3.686808 -2.727838) (xy -3.705171 -2.724804) (xy -3.80109 -2.709738) (xy -3.877641 -2.697146) (xy -3.93778 -2.686111) (xy -3.98446 -2.67572) (xy -4.020637 -2.665056) (xy -4.049265 -2.653205) (xy -4.073298 -2.639251) (xy -4.095692 -2.622281) (xy -4.119402 -2.601378) (xy -4.12738 -2.594049) (xy -4.155353 -2.566699) (xy -4.17016 -2.545029) (xy -4.175952 -2.520232) (xy -4.176889 -2.488983) (xy -4.166575 -2.427705) (xy -4.135752 -2.37564) (xy -4.084595 -2.332958) (xy -4.013283 -2.299825) (xy -3.9624 -2.284964) (xy -3.9071 -2.275366) (xy -3.840853 -2.269936) (xy -3.767706 -2.268367) (xy -3.691703 -2.270351) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "3e2e4fff-cf6f-4487-af63-286bb8e82c87") ) (fp_poly (pts (xy 0.328429 2.050929) (xy 0.48857 2.029755) (xy 0.65251 1.989615) (xy 0.822313 1.930111) (xy 1.000043 1.850846) (xy 1.01131 1.845301) (xy 1.069005 1.817275) (xy 1.120552 1.793198) (xy 1.162191 1.774751) (xy 1.190162 1.763614) (xy 1.199733 1.761067) (xy 1.21895 1.756059) (xy 1.223561 1.751853) (xy 1.218458 1.74142) (xy 1.202418 1.715132) (xy 1.177288 1.675743) (xy 1.144914 1.626009) (xy 1.107143 1.568685) (xy 1.065822 1.506524) (xy 1.022798 1.442282) (xy 0.979917 1.378715) (xy 0.939026 1.318575) (xy 0.901971 1.26462) (xy 0.8706 1.219603) (xy 0.846759 1.186279) (xy 0.832294 1.167403) (xy 0.830309 1.165213) (xy 0.820191 1.169862) (xy 0.79785 1.187038) (xy 0.76728 1.21356) (xy 0.751536 1.228036) (xy 0.655047 1.303318) (xy 0.548336 1.358759) (xy 0.432832 1.393859) (xy 0.309962 1.40812) (xy 0.240561 1.406949) (xy 0.119423 1.389788) (xy 0.010205 1.353906) (xy -0.087418 1.299041) (xy -0.173772 1.22493) (xy -0.249185 1.131312) (xy -0.313982 1.017924) (xy -0.351399 0.931333) (xy -0.395252 0.795634) (xy -0.427572 0.64815) (xy -0.448443 0.492686) (xy -0.457949 0.333044) (xy -0.456173 0.173027) (xy -0.443197 0.016439) (xy -0.419106 -0.132918) (xy -0.383982 -0.27124) (xy -0.337908 -0.394724) (xy -0.321627 -0.428978) (xy -0.25338 -0.543064) (xy -0.172921 -0.639557) (xy -0.08143 -0.71767) (xy 0.019911 -0.776617) (xy 0.12992 -0.815612) (xy 0.247415 -0.833868) (xy 0.288883 -0.835211) (xy 0.410441 -0.82429) (xy 0.530878 -0.791474) (xy 0.648666 -0.737439) (xy 0.762277 -0.662865) (xy 0.853685 -0.584539) (xy 0.900215 -0.540008) (xy 1.081483 -0.837271) (xy 1.12658 -0.911433) (xy 1.167819 -0.979646) (xy 1.203735 -1.039459) (xy 1.232866 -1.08842) (xy 1.25375 -1.124079) (xy 1.264924 -1.143984) (xy 1.266375 -1.147079) (xy 1.258146 -1.156718) (xy 1.232567 -1.173999) (xy 1.192873 -1.197283) (xy 1.142297 -1.224934) (xy 1.084074 -1.255315) (xy 1.021437 -1.28679) (xy 0.957621 -1.317722) (xy 0.89586 -1.346473) (xy 0.839388 -1.371408) (xy 0.791438 -1.390889) (xy 0.767986 -1.399318) (xy 0.634221 -1.437133) (xy 0.496327 -1.462136) (xy 0.348622 -1.47514) (xy 0.221833 -1.477468) (xy 0.153878 -1.476373) (xy 0.088277 -1.474275) (xy 0.030847 -1.471434) (xy -0.012597 -1.468106) (xy -0.026702 -1.466422) (xy -0.165716 -1.437587) (xy -0.307243 -1.392468) (xy -0.444725 -1.33375) (xy -0.571606 -1.26412) (xy -0.649111 -1.211441) (xy -0.776519 -1.103239) (xy -0.894822 -0.976671) (xy -1.001828 -0.834866) (xy -1.095348 -0.680951) (xy -1.17319 -0.518053) (xy -1.217044 -0.400756) (xy -1.267292 -0.217128) (xy -1.300791 -0.022581) (xy -1.317551 0.178675) (xy -1.317584 0.382432) (xy -1.300899 0.584479) (xy -1.267507 0.780608) (xy -1.21742 0.966609) (xy -1.213603 0.978197) (xy -1.150719 1.14025) (xy -1.073972 1.288168) (xy -0.980758 1.426135) (xy -0.868473 1.558339) (xy -0.824608 1.603601) (xy -0.688466 1.727543) (xy -0.548509 1.830085) (xy -0.402589 1.912344) (xy -0.248558 1.975436) (xy -0.084268 2.020477) (xy 0.011289 2.037967) (xy 0.170023 2.053534) (xy 0.328429 2.050929) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "3cb7e1bf-0305-4499-90a8-e3f475fd018a") ) (fp_poly (pts (xy 6.186507 0.527755) (xy 6.186526 0.293338) (xy 6.186552 0.080397) (xy 6.186625 -0.112168) (xy 6.186782 -0.285459) (xy 6.187064 -0.440576) (xy 6.187509 -0.57862) (xy 6.188156 -0.700692) (xy 6.189045 -0.807894) (xy 6.190213 -0.901326) (xy 6.191701 -0.98209) (xy 6.193546 -1.051286) (xy 6.195789 -1.110015) (xy 6.198469 -1.159379) (xy 6.201623 -1.200478) (xy 6.205292 -1.234413) (xy 6.209513 -1.262286) (xy 6.214327 -1.285198) (xy 6.219773 -1.304249) (xy 6.225888 -1.32054) (xy 6.232712 -1.335173) (xy 6.240285 -1.349249) (xy 6.248645 -1.363868) (xy 6.253839 -1.372974) (xy 6.288104 -1.433689) (xy 5.429955 -1.433689) (xy 5.429955 -1.337733) (xy 5.429224 -1.29437) (xy 5.427272 -1.261205) (xy 5.424463 -1.243424) (xy 5.423221 -1.241778) (xy 5.411799 -1.248662) (xy 5.389084 -1.266505) (xy 5.366385 -1.285879) (xy 5.3118 -1.326614) (xy 5.242321 -1.367617) (xy 5.16527 -1.405123) (xy 5.087965 -1.435364) (xy 5.057113 -1.445012) (xy 4.988616 -1.459578) (xy 4.905764 -1.469539) (xy 4.816371 -1.474583) (xy 4.728248 -1.474396) (xy 4.649207 -1.468666) (xy 4.611511 -1.462858) (xy 4.473414 -1.424797) (xy 4.346113 -1.367073) (xy 4.230292 -1.290211) (xy 4.126637 -1.194739) (xy 4.035833 -1.081179) (xy 3.969031 -0.970381) (xy 3.914164 -0.853625) (xy 3.872163 -0.734276) (xy 3.842167 -0.608283) (xy 3.823311 -0.471594) (xy 3.814732 -0.320158) (xy 3.814006 -0.242711) (xy 3.8161 -0.185934) (xy 4.645217 -0.185934) (xy 4.645424 -0.279002) (xy 4.648337 -0.366692) (xy 4.654 -0.443772) (xy 4.662455 -0.505009) (xy 4.665038 -0.51735) (xy 4.69684 -0.624633) (xy 4.738498 -0.711658) (xy 4.790363 -0.778642) (xy 4.852781 -0.825805) (xy 4.9261 -0.853365) (xy 5.010669 -0.861541) (xy 5.106835 -0.850551) (xy 5.170311 -0.834829) (xy 5.219454 -0.816639) (xy 5.273583 -0.790791) (xy 5.314244 -0.767089) (xy 5.3848 -0.720721) (xy 5.3848 0.42947) (xy 5.317392 0.473038) (xy 5.238867 0.51396) (xy 5.154681 0.540611) (xy 5.069557 0.552535) (xy 4.988216 0.549278) (xy 4.91538 0.530385) (xy 4.883426 0.514816) (xy 4.825501 0.471819) (xy 4.776544 0.415047) (xy 4.73539 0.342425) (xy 4.700874 0.251879) (xy 4.671833 0.141334) (xy 4.670552 0.135467) (xy 4.660381 0.073212) (xy 4.652739 -0.004594) (xy 4.64767 -0.09272) (xy 4.645217 -0.185934) (xy 3.8161 -0.185934) (xy 3.821857 -0.029895) (xy 3.843802 0.165941) (xy 3.879786 0.344668) (xy 3.929759 0.506155) (xy 3.993668 0.650274) (xy 4.071462 0.776894) (xy 4.163089 0.885885) (xy 4.268497 0.977117) (xy 4.313662 1.008068) (xy 4.414611 1.064215) (xy 4.517901 1.103826) (xy 4.627989 1.127986) (xy 4.74933 1.137781) (xy 4.841836 1.136735) (xy 4.97149 1.125769) (xy 5.084084 1.103954) (xy 5.182875 1.070286) (xy 5.271121 1.023764) (xy 5.319986 0.989552) (xy 5.349353 0.967638) (xy 5.371043 0.952667) (xy 5.379253 0.948267) (xy 5.380868 0.959096) (xy 5.382159 0.989749) (xy 5.383138 1.037474) (xy 5.383817 1.099521) (xy 5.38421 1.173138) (xy 5.38433 1.255573) (xy 5.384188 1.344075) (xy 5.383797 1.435893) (xy 5.383171 1.528276) (xy 5.38232 1.618472) (xy 5.38126 1.703729) (xy 5.380001 1.781297) (xy 5.378556 1.848424) (xy 5.376938 1.902359) (xy 5.375161 1.94035) (xy 5.374669 1.947333) (xy 5.367092 2.017749) (xy 5.355531 2.072898) (xy 5.337792 2.120019) (xy 5.311682 2.166353) (xy 5.305415 2.175933) (xy 5.280983 2.212622) (xy 6.186311 2.212622) (xy 6.186507 0.527755) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "20d7bd47-9fd1-4cd3-b152-869ce0070d6f") ) (fp_poly (pts (xy 2.673574 1.133448) (xy 2.825492 1.113433) (xy 2.960756 1.079798) (xy 3.080239 1.032275) (xy 3.184815 0.970595) (xy 3.262424 0.907035) (xy 3.331265 0.832901) (xy 3.385006 0.753129) (xy 3.42791 0.660909) (xy 3.443384 0.617839) (xy 3.456244 0.578858) (xy 3.467446 0.542711) (xy 3.47712 0.507566) (xy 3.485396 0.47159) (xy 3.492403 0.43295) (xy 3.498272 0.389815) (xy 3.503131 0.340351) (xy 3.50711 0.282727) (xy 3.51034 0.215109) (xy 3.512949 0.135666) (xy 3.515067 0.042564) (xy 3.516824 -0.066027) (xy 3.518349 -0.191942) (xy 3.519772 -0.337012) (xy 3.521025 -0.479778) (xy 3.522351 -0.635968) (xy 3.523556 -0.771239) (xy 3.524766 -0.887246) (xy 3.526106 -0.985645) (xy 3.5277 -1.068093) (xy 3.529675 -1.136246) (xy 3.532156 -1.19176) (xy 3.535269 -1.236292) (xy 3.539138 -1.271498) (xy 3.543889 -1.299034) (xy 3.549648 -1.320556) (xy 3.556539 -1.337722) (xy 3.564689 -1.352186) (xy 3.574223 -1.365606) (xy 3.585266 -1.379638) (xy 3.589566 -1.385071) (xy 3.605386 -1.40791) (xy 3.612422 -1.423463) (xy 3.612444 -1.423922) (xy 3.601567 -1.426121) (xy 3.570582 -1.428147) (xy 3.521957 -1.429942) (xy 3.458163 -1.431451) (xy 3.381669 -1.432616) (xy 3.294944 -1.43338) (xy 3.200457 -1.433686) (xy 3.18955 -1.433689) (xy 2.766657 -1.433689) (xy 2.763395 -1.337622) (xy 2.760133 -1.241556) (xy 2.698044 -1.292543) (xy 2.600714 -1.360057) (xy 2.490813 -1.414749) (xy 2.404349 -1.444978) (xy 2.335278 -1.459666) (xy 2.251925 -1.469659) (xy 2.162159 -1.474646) (xy 2.073845 -1.474313) (xy 1.994851 -1.468351) (xy 1.958622 -1.462638) (xy 1.818603 -1.424776) (xy 1.692178 -1.369932) (xy 1.58026 -1.298924) (xy 1.483762 -1.212568) (xy 1.4036 -1.111679) (xy 1.340687 -0.997076) (xy 1.296312 -0.870984) (xy 1.283978 -0.814401) (xy 1.276368 -0.752202) (xy 1.272739 -0.677363) (xy 1.272245 -0.643467) (xy 1.27231 -0.640282) (xy 2.032248 -0.640282) (xy 2.041541 -0.715333) (xy 2.069728 -0.77916) (xy 2.118197 -0.834798) (xy 2.123254 -0.839211) (xy 2.171548 -0.874037) (xy 2.223257 -0.89662) (xy 2.283989 -0.90854) (xy 2.359352 -0.911383) (xy 2.377459 -0.910978) (xy 2.431278 -0.908325) (xy 2.471308 -0.902909) (xy 2.506324 -0.892745) (xy 2.545103 -0.87585) (xy 2.555745 -0.870672) (xy 2.616396 -0.834844) (xy 2.663215 -0.792212) (xy 2.675952 -0.776973) (xy 2.720622 -0.720462) (xy 2.720622 -0.524586) (xy 2.720086 -0.445939) (xy 2.718396 -0.387988) (xy 2.715428 -0.348875) (xy 2.711057 -0.326741) (xy 2.706972 -0.320274) (xy 2.691047 -0.317111) (xy 2.657264 -0.314488) (xy 2.61034 -0.312655) (xy 2.554993 -0.311857) (xy 2.546106 -0.311842) (xy 2.42533 -0.317096) (xy 2.32266 -0.333263) (xy 2.236106 -0.360961) (xy 2.163681 -0.400808) (xy 2.108751 -0.447758) (xy 2.064204 -0.505645) (xy 2.03948 -0.568693) (xy 2.032248 -0.640282) (xy 1.27231 -0.640282) (xy 1.274178 -0.549712) (xy 1.282522 -0.470812) (xy 1.298768 -0.39959) (xy 1.324405 -0.328864) (xy 1.348401 -0.276493) (xy 1.40702 -0.181196) (xy 1.485117 -0.09317) (xy 1.580315 -0.014017) (xy 1.690238 0.05466) (xy 1.81251 0.111259) (xy 1.944755 0.154179) (xy 2.009422 0.169118) (xy 2.145604 0.191223) (xy 2.294049 0.205806) (xy 2.445505 0.212187) (xy 2.572064 0.210555) (xy 2.73395 0.203776) (xy 2.72653 0.262755) (xy 2.707238 0.361908) (xy 2.676104 0.442628) (xy 2.632269 0.505534) (xy 2.574871 0.551244) (xy 2.503048 0.580378) (xy 2.415941 0.593553) (xy 2.312686 0.591389) (xy 2.274711 0.587388) (xy 2.13352 0.56222) (xy 1.996707 0.521186) (xy 1.902178 0.483185) (xy 1.857018 0.46381) (xy 1.818585 0.44824) (xy 1.792234 0.438595) (xy 1.784546 0.436548) (xy 1.774802 0.445626) (xy 1.758083 0.474595) (xy 1.734232 0.523783) (xy 1.703093 0.593516) (xy 1.664507 0.684121) (xy 1.65791 0.699911) (xy 1.627853 0.772228) (xy 1.600874 0.837575) (xy 1.578136 0.893094) (xy 1.560806 0.935928) (xy 1.550048 0.963219) (xy 1.546941 0.972058) (xy 1.55694 0.976813) (xy 1.583217 0.98209) (xy 1.611489 0.985769) (xy 1.641646 0.990526) (xy 1.689433 0.999972) (xy 1.750612 1.01318) (xy 1.820946 1.029224) (xy 1.896194 1.04718) (xy 1.924755 1.054203) (xy 2.029816 1.079791) (xy 2.11748 1.099853) (xy 2.192068 1.115031) (xy 2.257903 1.125965) (xy 2.319307 1.133296) (xy 2.380602 1.137665) (xy 2.44611 1.139713) (xy 2.504128 1.140111) (xy 2.673574 1.133448) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "86afb9a5-e725-4727-b9fb-85325195f40c") ) (fp_poly (pts (xy -2.9464 2.510946) (xy -2.935535 2.397007) (xy -2.903918 2.289384) (xy -2.853015 2.190385) (xy -2.784293 2.102316) (xy -2.699219 2.027484) (xy -2.602232 1.969616) (xy -2.495964 1.929995) (xy -2.38895 1.911427) (xy -2.2833 1.912566) (xy -2.181125 1.93207) (xy -2.084534 1.968594) (xy -1.995638 2.020795) (xy -1.916546 2.087327) (xy -1.849369 2.166848) (xy -1.796217 2.258013) (xy -1.759199 2.359477) (xy -1.740427 2.469898) (xy -1.738489 2.519794) (xy -1.738489 2.607733) (xy -1.68656 2.607733) (xy -1.650253 2.604889) (xy -1.623355 2.593089) (xy -1.596249 2.569351) (xy -1.557867 2.530969) (xy -1.557867 0.339398) (xy -1.557876 0.077261) (xy -1.557908 -0.163241) (xy -1.557972 -0.383048) (xy -1.558076 -0.583101) (xy -1.558227 -0.764344) (xy -1.558434 -0.927716) (xy -1.558706 -1.07416) (xy -1.55905 -1.204617) (xy -1.559474 -1.320029) (xy -1.559987 -1.421338) (xy -1.560597 -1.509484) (xy -1.561312 -1.58541) (xy -1.56214 -1.650057) (xy -1.563089 -1.704367) (xy -1.564167 -1.74928) (xy -1.565383 -1.78574) (xy -1.566745 -1.814687) (xy -1.568261 -1.837063) (xy -1.569938 -1.853809) (xy -1.571786 -1.865868) (xy -1.573813 -1.87418) (xy -1.576025 -1.879687) (xy -1.577108 -1.881537) (xy -1.581271 -1.888549) (xy -1.584805 -1.894996) (xy -1.588635 -1.9009) (xy -1.593682 -1.906286) (xy -1.600871 -1.911178) (xy -1.611123 -1.915598) (xy -1.625364 -1.919572) (xy -1.644514 -1.923121) (xy -1.669499 -1.92627) (xy -1.70124 -1.929042) (xy -1.740662 -1.931461) (xy -1.788686 -1.933551) (xy -1.846237 -1.935335) (xy -1.914237 -1.936837) (xy -1.99361 -1.93808) (xy -2.085279 -1.939089) (xy -2.190166 -1.939885) (xy -2.309196 -1.940494) (xy -2.44329 -1.940939) (xy -2.593373 -1.941243) (xy -2.760367 -1.94143) (xy -2.945196 -1.941524) (xy -3.148783 -1.941548) (xy -3.37205 -1.941525) (xy -3.615922 -1.94148) (xy -3.881321 -1.941437) (xy -3.919704 -1.941432) (xy -4.186682 -1.941389) (xy -4.432002 -1.941318) (xy -4.656583 -1.941213) (xy -4.861345 -1.941066) (xy -5.047206 -1.940869) (xy -5.215088 -1.940616) (xy -5.365908 -1.9403) (xy -5.500587 -1.939913) (xy -5.620044 -1.939447) (xy -5.725199 -1.938897) (xy -5.816971 -1.938253) (xy -5.896279 -1.937511) (xy -5.964043 -1.936661) (xy -6.021182 -1.935697) (xy -6.068617 -1.934611) (xy -6.107266 -1.933397) (xy -6.138049 -1.932047) (xy -6.161885 -1.930555) (xy -6.179694 -1.928911) (xy -6.192395 -1.927111) (xy -6.200908 -1.925145) (xy -6.205266 -1.923477) (xy -6.213728 -1.919906) (xy -6.221497 -1.91727) (xy -6.228602 -1.914634) (xy -6.235073 -1.911062) (xy -6.240939 -1.905621) (xy -6.246229 -1.897375) (xy -6.250974 -1.88539) (xy -6.255202 -1.868731) (xy -6.258943 -1.846463) (xy -6.262227 -1.817652) (xy -6.265083 -1.781363) (xy -6.26754 -1.736661) (xy -6.269629 -1.682611) (xy -6.271378 -1.618279) (xy -6.272817 -1.54273) (xy -6.273976 -1.45503) (xy -6.274883 -1.354243) (xy -6.275569 -1.239434) (xy -6.276063 -1.10967) (xy -6.276395 -0.964015) (xy -6.276593 -0.801535) (xy -6.276687 -0.621295) (xy -6.276708 -0.42236) (xy -6.276685 -0.203796) (xy -6.276646 0.035332) (xy -6.276622 0.29596) (xy -6.276622 0.338111) (xy -6.276636 0.601008) (xy -6.276661 0.842268) (xy -6.276671 1.062835) (xy -6.276642 1.263648) (xy -6.276548 1.445651) (xy -6.276362 1.609784) (xy -6.276059 1.756989) (xy -6.275614 1.888208) (xy -6.275034 1.998133) (xy -5.972197 1.998133) (xy -5.932407 1.940289) (xy -5.921236 1.924521) (xy -5.911166 1.910559) (xy -5.902138 1.897216) (xy -5.894097 1.883307) (xy -5.886986 1.867644) (xy -5.880747 1.849042) (xy -5.875325 1.826314) (xy -5.870662 1.798273) (xy -5.866701 1.763733) (xy -5.863385 1.721508) (xy -5.860659 1.670411) (xy -5.858464 1.609256) (xy -5.856745 1.536856) (xy -5.855444 1.452025) (xy -5.854505 1.353578) (xy -5.85387 1.240326) (xy -5.853484 1.111084) (xy -5.853288 0.964666) (xy -5.853227 0.799884) (xy -5.853243 0.615553) (xy -5.85328 0.410487) (xy -5.853289 0.287867) (xy -5.853265 0.070918) (xy -5.853231 -0.124642) (xy -5.853243 -0.299999) (xy -5.853358 -0.456341) (xy -5.85363 -0.594857) (xy -5.854118 -0.716734) (xy -5.854876 -0.82316) (xy -5.855962 -0.915322) (xy -5.857431 -0.994409) (xy -5.85934 -1.061608) (xy -5.861744 -1.118107) (xy -5.864701 -1.165093) (xy -5.868266 -1.203755) (xy -5.872495 -1.23528) (xy -5.877446 -1.260855) (xy -5.883173 -1.28167) (xy -5.889733 -1.298911) (xy -5.897183 -1.313765) (xy -5.905579 -1.327422) (xy -5.914976 -1.341069) (xy -5.925432 -1.355893) (xy -5.931523 -1.364783) (xy -5.970296 -1.4224) (xy -5.438732 -1.4224) (xy -5.315483 -1.422365) (xy -5.212987 -1.422215) (xy -5.12942 -1.421878) (xy -5.062956 -1.421286) (xy -5.011771 -1.420367) (xy -4.974041 -1.419051) (xy -4.94794 -1.417269) (xy -4.931644 -1.414951) (xy -4.923328 -1.412026) (xy -4.921168 -1.408424) (xy -4.923339 -1.404075) (xy -4.924535 -1.402645) (xy -4.949685 -1.365573) (xy -4.975583 -1.312772) (xy -4.999192 -1.25077) (xy -5.007461 -1.224357) (xy -5.012078 -1.206416) (xy -5.015979 -1.185355) (xy -5.019248 -1.159089) (xy -5.021966 -1.125532) (xy -5.024215 -1.082599) (xy -5.026077 -1.028204) (xy -5.027636 -0.960262) (xy -5.028972 -0.876688) (xy -5.030169 -0.775395) (xy -5.031308 -0.6543) (xy -5.031685 -0.6096) (xy -5.032702 -0.484449) (xy -5.03346 -0.380082) (xy -5.033903 -0.294707) (xy -5.03397 -0.226533) (xy -5.033605 -0.173765) (xy -5.032748 -0.134614) (xy -5.031341 -0.107285) (xy -5.029325 -0.089986) (xy -5.026643 -0.080926) (xy -5.023236 -0.078312) (xy -5.019044 -0.080351) (xy -5.014571 -0.084667) (xy -5.004216 -0.097602) (xy -4.982158 -0.126676) (xy -4.949957 -0.169759) (xy -4.909174 -0.224718) (xy -4.86137 -0.289423) (xy -4.808105 -0.361742) (xy -4.75094 -0.439544) (xy -4.691437 -0.520698) (xy -4.631155 -0.603072) (xy -4.571655 -0.684536) (xy -4.514498 -0.762957) (xy -4.461245 -0.836204) (xy -4.413457 -0.902147) (xy -4.372693 -0.958654) (xy -4.340516 -1.003593) (xy -4.318485 -1.034834) (xy -4.313917 -1.041466) (xy -4.290996 -1.078369) (xy -4.264188 -1.126359) (xy -4.238789 -1.175897) (xy -4.235568 -1.182577) (xy -4.21389 -1.230772) (xy -4.201304 -1.268334) (xy -4.195574 -1.30416) (xy -4.194456 -1.3462) (xy -4.19509 -1.4224) (xy -3.040651 -1.4224) (xy -3.131815 -1.328669) (xy -3.178612 -1.278775) (xy -3.228899 -1.222295) (xy -3.274944 -1.168026) (xy -3.295369 -1.142673) (xy -3.325807 -1.103128) (xy -3.365862 -1.049916) (xy -3.414361 -0.984667) (xy -3.470135 -0.909011) (xy -3.532011 -0.824577) (xy -3.598819 -0.732994) (xy -3.669387 -0.635892) (xy -3.742545 -0.534901) (xy -3.817121 -0.43165) (xy -3.891944 -0.327768) (xy -3.965843 -0.224885) (xy -4.037646 -0.124631) (xy -4.106184 -0.028636) (xy -4.170284 0.061473) (xy -4.228775 0.144064) (xy -4.280486 0.217508) (xy -4.324247 0.280176) (xy -4.358885 0.330439) (xy -4.38323 0.366666) (xy -4.396111 0.387229) (xy -4.397869 0.391332) (xy -4.38991 0.402658) (xy -4.369115 0.429838) (xy -4.336847 0.471171) (xy -4.29447 0.524956) (xy -4.243347 0.589494) (xy -4.184841 0.663082) (xy -4.120314 0.744022) (xy -4.051131 0.830612) (xy -3.978653 0.921152) (xy -3.904246 1.01394) (xy -3.844517 1.088298) (xy -2.833511 1.088298) (xy -2.827602 1.075341) (xy -2.813272 1.053092) (xy -2.812225 1.051609) (xy -2.793438 1.021456) (xy -2.773791 0.984625) (xy -2.769892 0.976489) (xy -2.766356 0.96806) (xy -2.76323 0.957941) (xy -2.760486 0.94474) (xy -2.758092 0.927062) (xy -2.756019 0.903516) (xy -2.754235 0.872707) (xy -2.752712 0.833243) (xy -2.751419 0.783731) (xy -2.750326 0.722777) (xy -2.749403 0.648989) (xy -2.748619 0.560972) (xy -2.747945 0.457335) (xy -2.74735 0.336684) (xy -2.746805 0.197626) (xy -2.746279 0.038768) (xy -2.745745 -0.140089) (xy -2.745206 -0.325207) (xy -2.744772 -0.489145) (xy -2.744509 -0.633303) (xy -2.744484 -0.759079) (xy -2.744765 -0.867871) (xy -2.745419 -0.961077) (xy -2.746514 -1.040097) (xy -2.748118 -1.106328) (xy -2.750297 -1.16117) (xy -2.753119 -1.206021) (xy -2.756651 -1.242278) (xy -2.760961 -1.271341) (xy -2.766117 -1.294609) (xy -2.772185 -1.313479) (xy -2.779233 -1.329351) (xy -2.787329 -1.343622) (xy -2.79654 -1.357691) (xy -2.80504 -1.370158) (xy -2.822176 -1.396452) (xy -2.832322 -1.414037) (xy -2.833511 -1.417257) (xy -2.822604 -1.418334) (xy -2.791411 -1.419335) (xy -2.742223 -1.420235) (xy -2.677333 -1.42101) (xy -2.59903 -1.421637) (xy -2.509607 -1.422091) (xy -2.411356 -1.422349) (xy -2.342445 -1.4224) (xy -2.237452 -1.42218) (xy -2.14061 -1.421548) (xy -2.054107 -1.420549) (xy -1.980132 -1.419227) (xy -1.920874 -1.417626) (xy -1.87852 -1.415791) (xy -1.85526 -1.413765) (xy -1.851378 -1.412493) (xy -1.859076 -1.397591) (xy -1.867074 -1.38956) (xy -1.880246 -1.372434) (xy -1.897485 -1.342183) (xy -1.909407 -1.317622) (xy -1.936045 -1.258711) (xy -1.93912 -0.081845) (xy -1.942195 1.095022) (xy -2.387853 1.095022) (xy -2.48567 1.094858) (xy -2.576064 1.094389) (xy -2.65663 1.093653) (xy -2.724962 1.092684) (xy -2.778656 1.09152) (xy -2.815305 1.090197) (xy -2.832504 1.088751) (xy -2.833511 1.088298) (xy -3.844517 1.088298) (xy -3.82927 1.107278) (xy -3.75509 1.199463) (xy -3.683069 1.288796) (xy -3.614569 1.373576) (xy -3.550955 1.452102) (xy -3.493588 1.522674) (xy -3.443833 1.583591) (xy -3.403052 1.633153) (xy -3.385888 1.653822) (xy -3.299596 1.754484) (xy -3.222997 1.837741) (xy -3.154183 1.905562) (xy -3.091248 1.959911) (xy -3.081867 1.967278) (xy -3.042356 1.997883) (xy -4.174116 1.998133) (xy -4.168827 1.950156) (xy -4.17213 1.892812) (xy -4.193661 1.824537) (xy -4.233635 1.744788) (xy -4.278943 1.672505) (xy -4.295161 1.64986) (xy -4.323214 1.612304) (xy -4.36143 1.561979) (xy -4.408137 1.501027) (xy -4.461661 1.431589) (xy -4.520331 1.355806) (xy -4.582475 1.27582) (xy -4.646421 1.193772) (xy -4.710495 1.111804) (xy -4.773027 1.032057) (xy -4.832343 0.956673) (xy -4.886771 0.887793) (xy -4.934639 0.827558) (xy -4.974275 0.778111) (xy -5.004006 0.741592) (xy -5.022161 0.720142) (xy -5.02522 0.716844) (xy -5.028079 0.724851) (xy -5.030293 0.755145) (xy -5.031857 0.807444) (xy -5.032767 0.881469) (xy -5.03302 0.976937) (xy -5.032613 1.093566) (xy -5.031704 1.213555) (xy -5.030382 1.345667) (xy -5.028857 1.457406) (xy -5.026881 1.550975) (xy -5.024206 1.628581) (xy -5.020582 1.692426) (xy -5.015761 1.744717) (xy -5.009494 1.787656) (xy -5.001532 1.823449) (xy -4.991627 1.8543) (xy -4.979531 1.882414) (xy -4.964993 1.909995) (xy -4.950311 1.935034) (xy -4.912314 1.998133) (xy -5.972197 1.998133) (xy -6.275034 1.998133) (xy -6.275001 2.004383) (xy -6.274195 2.106456) (xy -6.27317 2.195367) (xy -6.2719 2.272059) (xy -6.27036 2.337473) (xy -6.268524 2.392551) (xy -6.266367 2.438235) (xy -6.263863 2.475466) (xy -6.260987 2.505187) (xy -6.257713 2.528338) (xy -6.254015 2.545861) (xy -6.249869 2.558699) (xy -6.245247 2.567792) (xy -6.240126 2.574082) (xy -6.234478 2.578512) (xy -6.228279 2.582022) (xy -6.221504 2.585555) (xy -6.215508 2.589124) (xy -6.210275 2.5917) (xy -6.202099 2.594028) (xy -6.189886 2.596122) (xy -6.172541 2.597993) (xy -6.148969 2.599653) (xy -6.118077 2.601116) (xy -6.078768 2.602392) (xy -6.02995 2.603496) (xy -5.970527 2.604439) (xy -5.899404 2.605233) (xy -5.815488 2.605891) (xy -5.717683 2.606425) (xy -5.604894 2.606847) (xy -5.476029 2.607171) (xy -5.329991 2.607408) (xy -5.165686 2.60757) (xy -4.98202 2.60767) (xy -4.777897 2.60772) (xy -4.566753 2.607733) (xy -2.9464 2.607733) (xy -2.9464 2.510946) ) (stroke (width 0.01) (type solid) ) (fill solid) (layer "B.Cu") (uuid "0a26000e-f25a-4a70-a89b-b5eaf03b1275") ) ) (gr_arc (start 107 68.5) (mid 108.025126 66.025126) (end 110.5 65) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "33f4413a-8ea0-4777-aad2-672f95af9e66") ) (gr_arc (start 110.5 130) (mid 108.025126 128.974874) (end 107 126.5) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "56ab7b61-7954-4be8-9dd5-c42a0347a267") ) (gr_line (start 107 126.5) (end 107 68.5) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "79c87257-a967-4e7e-9fb3-918bdd05c53b") ) (gr_line (start 168.5 130) (end 110.5 130) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "7ec42dcd-b7aa-4931-992e-f4169bdb8304") ) (gr_arc (start 168.5 65) (mid 170.974874 66.025126) (end 172 68.5) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "ab67a0fa-2e0d-49cc-8967-5614f63891c4") ) (gr_line (start 110.5 65) (end 168.5 65) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "b20fd86e-23e1-4fcb-b764-2d22072d88f8") ) (gr_arc (start 172 126.5) (mid 170.974874 128.974874) (end 168.5 130) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "b7e4daab-1572-4998-9406-9bfe4e31cc18") ) (gr_line (start 172 68.5) (end 172 126.5) (stroke (width 0.05) (type default) ) (layer "Edge.Cuts") (uuid "be5632d0-ff98-4e2b-b4d3-74eda76c2979") ) (gr_text "NOTE! Only use one power input at a time.\n" (at 125.75 96 270) (layer "F.SilkS") (uuid "1b56e60f-5f81-4291-804b-e739de7c686a") (effects (font (size 0.9 0.9) (thickness 0.1) ) (justify bottom) ) ) (gr_text "Max 10A Fuse" (at 140.25 88.5 0) (layer "F.SilkS") (uuid "22f5d903-f313-4268-8457-f4685931be7e") (effects (font (size 1 1) (thickness 0.1) ) (justify bottom) ) ) (gr_text "FanPico PowerBoard v1.1\nby Timo Kokkonen\n\n2024-10-06\n" (at 140.25 114.75 0) (layer "F.SilkS") (uuid "5d1bfddb-33cd-4c75-bd06-fed2a55fe566") (effects (font (size 1 1) (thickness 0.1) ) (justify bottom) ) ) (gr_text "-" (at 170.5 106 270) (layer "F.SilkS") (uuid "638a054e-9cbe-46c1-bb49-e02320309a05") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (gr_text "kokkonen.net/fanpico/" (at 170.5 95.75 90) (layer "F.SilkS") (uuid "849b0d4e-11b4-451f-9101-b19e83dcc469") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (gr_text "+" (at 170.5 111 270) (layer "F.SilkS") (uuid "8df3efbb-2fff-42c1-8daa-d56800e29783") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (gr_text "5x20mm" (at 137.5 100.5 0) (layer "F.SilkS") (uuid "9a5c429d-810f-4e10-8d2d-35d274779958") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (gr_text "+" (at 107.5 109.3 -90) (layer "F.SilkS") (uuid "ac161a11-b621-4129-9915-5f4e9e4d2f4c") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (gr_text "-" (at 107.5 114.3 -90) (layer "F.SilkS") (uuid "c9eb8759-ef81-42ba-b277-10c6c29d4ad6") (effects (font (size 1 1) (thickness 0.1) ) (justify left bottom) ) ) (segment (start 165.305 102.105) (end 165.3 102.1) (width 2) (layer "F.Cu") (net 1) (uuid "09910bac-adda-4165-a92d-df53cfcef64d") ) (segment (start 165.3 102) (end 165.2 102) (width 2) (layer "F.Cu") (net 1) (uuid "134d23f4-cddb-423b-b0e1-27f4f425ebdb") ) (segment (start 118 91.05) (end 118 85.97) (width 2) (layer "F.Cu") (net 1) (uuid "1d59c5d5-f1d2-4d05-a961-6f8e4dd47be4") ) (segment (start 149 67.3) (end 160.2 67.3) (width 1.5) (layer "F.Cu") (net 1) (uuid "30738ed2-46b7-41a7-9091-d612d9a77c62") ) (segment (start 160.2 67.3) (end 160.22 67.32) (width 1.5) (layer "F.Cu") (net 1) (uuid "30f164d7-0853-4d19-9531-3c2812e07270") ) (segment (start 126.62 67.62) (end 126.6 67.6) (width 1.5) (layer "F.Cu") (net 1) (uuid "3494cbfe-e968-4f75-a39a-b70564c77c3f") ) (segment (start 165.3 102.1) (end 165.3 102) (width 2) (layer "F.Cu") (net 1) (uuid "35218dc5-0ae0-4e1c-88ad-06502a71908d") ) (segment (start 137.82 67.32) (end 137.82 70) (width 1.5) (layer "F.Cu") (net 1) (uuid "4f7936aa-fbc1-4fdf-931d-7fb98a7b653e") ) (segment (start 137.82 67.32) (end 148.98 67.32) (width 1.5) (layer "F.Cu") (net 1) (uuid "9a9a7bf7-8126-46e8-999d-4da8a2dd11b9") ) (segment (start 137.8 67.3) (end 137.82 67.32) (width 1.5) (layer "F.Cu") (net 1) (uuid "9d1b6862-b431-4c21-acd9-0db330995144") ) (segment (start 165.2 102) (end 165.3 102.1) (width 2) (layer "F.Cu") (net 1) (uuid "b2d86756-f487-491e-b18e-cec109467ae3") ) (segment (start 113.5 115) (end 124 115) (width 2) (layer "F.Cu") (net 1) (uuid "ba1eb3ae-43a7-4a7c-9275-52490d318ec6") ) (segment (start 126.6 67.6) (end 126.9 67.3) (width 1.5) (layer "F.Cu") (net 1) (uuid "c25608b8-1c14-47cb-b1ac-2f9aee97087f") ) (segment (start 126.9 67.3) (end 137.8 67.3) (width 1.5) (layer "F.Cu") (net 1) (uuid "cfd926ae-78e6-484b-bc19-21918b87deda") ) (segment (start 148.98 67.32) (end 149 67.3) (width 1.5) (layer "F.Cu") (net 1) (uuid "d063b1d8-0722-4196-9e55-d557d03484aa") ) (segment (start 126.62 70) (end 126.62 67.62) (width 1.5) (layer "F.Cu") (net 1) (uuid "d48b2b37-d6dc-4a6f-93b5-80892d27e1dd") ) (segment (start 149.02 67.32) (end 149.02 70) (width 1.5) (layer "F.Cu") (net 1) (uuid "d7dfe0d0-8f68-4011-b4b4-59cab3917a52") ) (segment (start 149 67.3) (end 149.02 67.32) (width 1.5) (layer "F.Cu") (net 1) (uuid "e259d140-9d6d-4028-8418-4ab9a98784fb") ) (segment (start 160.22 67.32) (end 160.22 70) (width 1.5) (layer "F.Cu") (net 1) (uuid "ebb26011-7ba2-4a19-a7ea-c6b3168feec9") ) (segment (start 165.305 106.5) (end 165.305 104.8) (width 2) (layer "F.Cu") (net 1) (uuid "ee87df1d-0378-4ac3-940c-6daedc9d56b2") ) (segment (start 165.305 104.8) (end 165.305 102.105) (width 2) (layer "F.Cu") (net 1) (uuid "efe9f969-173f-4222-80a1-23a42873e501") ) (via (at 141 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "00c71cb3-b6a3-44cb-ad85-156c50c08824") ) (via (at 143 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "0748636f-8eec-44d6-9629-102984ec8853") ) (via (at 143 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "1288bb50-ed01-44f2-a1cd-a8002736e7c5") ) (via (at 129.3 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "14593db5-cbc8-4d16-af77-ce990a8670f4") ) (via (at 139 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "197867b5-d007-4054-838f-f42044eb6277") ) (via (at 140 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "1d2fb167-41c0-4ff4-b936-88eecb039566") ) (via (at 133 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "2618bb51-3544-4cfe-b4fe-ce8e8edb94c8") ) (via (at 143 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "2aa5dbf7-fe74-4c19-b4e6-c457280e7041") ) (via (at 134 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "323d3de2-bdf8-46e0-868c-0d33c07be170") ) (via (at 133 79.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "41db9d2e-4910-4015-b02e-fc722e620810") ) (via (at 151.8 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "43d42dce-6e09-4470-8dcf-34deb4c79084") ) (via (at 138.9 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "452a585c-058d-4119-a2aa-040d15174381") ) (via (at 136 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "4b96cc88-d587-4c30-b057-19f7c75ccd3b") ) (via (at 136 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "59c7e810-4cb8-4d70-b73b-ece3febb65ef") ) (via (at 124 115) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (uuid "5bd09b84-2c3c-4657-b88c-a599448805e8") ) (via (at 137 79.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "5d86c3ad-ada2-489c-8409-2fbc928a8585") ) (via (at 137 83.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "6335d07b-8414-46e9-8e8b-0b9c01efcd84") ) (via (at 117.7 121.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "68498607-fa9b-4785-8384-3d55acb7df2a") ) (via (at 137 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "6929bbf4-4902-4da4-9c42-d2f48b4df788") ) (via (at 142 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "6cecdda5-7f44-4596-8c2f-ed834f4bdb20") ) (via (at 137 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "6def5cb4-aad1-4bdc-aedc-551b8a89e344") ) (via (at 135 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "6e34402a-6645-44b4-96c9-4aca2cfb7ce4") ) (via (at 139.75 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "70866452-caf0-41fb-841f-ad2d3482efea") ) (via (at 137 80.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "730c66ad-2986-49d2-b2b7-66997d89b265") ) (via (at 135 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "75b03ff8-0291-4239-940a-561a03fb6d74") ) (via (at 133 80.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "7601c605-977f-4881-b0ca-c15951199bc1") ) (via (at 142 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "7830a0af-f3ae-4d2b-be27-e43cd01d3c5e") ) (via (at 136 80.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "7ae0492f-d829-4ab8-abee-f654e7187b02") ) (via (at 136 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "7e34b425-c0c4-4dd3-bdde-b7a84c9b972a") ) (via (at 141 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "803b74cb-ff86-4b57-8ce8-f7bcb042af3c") ) (via (at 143 80.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "80a83f04-ae1f-430a-a07c-3cd58d611e6e") ) (via (at 140 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "84971dc0-e0eb-4f5b-918a-3a5dd754c10f") ) (via (at 141 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "866737fa-7fa3-4a79-8913-445d944686d4") ) (via (at 118.6 121.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "87bb0392-cb72-40c6-b2a1-e46cb78a50e5") ) (via (at 134 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "88f3a212-86de-4157-8b3d-0df4a65a4dc0") ) (via (at 136 79.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "89e7976e-c75c-4d3b-9390-15e4d5a39843") ) (via (at 136 84.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "8ddb29ea-e63b-4efa-bd78-2ac2d80290d7") ) (via (at 137 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "91303f85-e08f-4448-a52e-8b2b4cac8cb2") ) (via (at 139 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "9446543a-dd89-4c9f-9f13-43b505fa1623") ) (via (at 141 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "9578bcc7-1537-4aeb-8d3d-bcead9ba0491") ) (via (at 165.3 102) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (uuid "987b2769-745b-45e9-be2a-279589483474") ) (via (at 151 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "9c93b5f2-9c4d-4ecf-968d-e3326a4819bb") ) (via (at 143 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "9cfbb40c-2028-4a01-bdde-dfbaad2a34db") ) (via (at 142 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "9e3c3579-87d5-4f0a-8efa-2525372fd9fc") ) (via (at 138 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "ac78a7d5-6855-4063-90ab-10d7af8b2959") ) (via (at 140 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "ad56ce99-8f8c-4fc6-8bce-6509ab675a6d") ) (via (at 136 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "af5bf3bd-631d-45db-9475-8cd00da16cea") ) (via (at 137 84.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "b54dac91-8e9a-4201-a7e4-0f305fd6a41a") ) (via (at 134 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "b7ab3e86-802c-4df6-968f-9031b5ccf43d") ) (via (at 138 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "b7f5af28-6b43-4265-8c14-cf7276b9d438") ) (via (at 139 81.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "bdf7b819-f09c-4bcf-b42a-6f3f6f5eeffc") ) (via (at 143 84.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "bf0b073a-2793-4a5c-ba87-0513e13414d3") ) (via (at 143 83.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "c544a1d4-7538-48dd-89aa-dd22f5f0667c") ) (via (at 142 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "c71b2725-9ffb-44ff-b0b5-c956bb8e9a56") ) (via (at 140.6 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "c8b90f35-e1c5-45f6-9379-7c3e79f21ccd") ) (via (at 138 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "cf3ff52a-5a78-4a2b-a27d-fbdcc13da36f") ) (via (at 134 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "d1b65f17-18bb-4cd7-8ef9-58209a7e4b9d") ) (via (at 133 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "d1e0fb37-80c7-4f5a-bd2e-78cb3bb082ca") ) (via (at 143 79.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "d516ed73-8112-4484-8713-9175bd54bfc8") ) (via (at 140 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "dc1d083b-9ef6-4cfa-a091-fb3afca741fa") ) (via (at 139 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "dd937f21-3758-4655-850e-61a96f89361c") ) (via (at 138 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "e0ae05f8-1652-49fc-bb69-c223b76ec255") ) (via (at 133 82.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "e226070d-3f18-490a-8df4-db200cfc0c54") ) (via (at 133 83.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "e2c8b9b8-0725-4058-940f-ad66e3e01f3c") ) (via (at 127.7 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "e3445138-c8a4-4c5e-a40a-0787e958d340") ) (via (at 137 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "e8e8f4e1-dff9-4457-a3fb-80d17c98f371") ) (via (at 150.2 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "ec081028-2c4c-45bb-b84f-c5aeac7f211f") ) (via (at 128.5 72.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "f22d1244-390d-4353-898f-f855d1c3768b") ) (via (at 133 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "f3276e4a-1e58-4fc7-b9ac-a16173518b4a") ) (via (at 136 83.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "f58e1c32-ebe1-4c36-8143-4bbc8e6881fb") ) (via (at 135 78.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "f6b10cd7-bfab-4d7d-a19d-0179c5e6134e") ) (via (at 135 85.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "f754723f-b0ff-4730-8812-bf205770b2e7") ) (via (at 133 84.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free yes) (net 1) (uuid "fbf2e611-9505-4695-81de-d207e86bdd4b") ) (segment (start 165.3 106.495) (end 165.305 106.5) (width 2) (layer "B.Cu") (net 1) (uuid "0dc46828-9dd3-4ff2-8116-713a4daf58ef") ) (segment (start 118 91.05) (end 118 85.97) (width 2) (layer "B.Cu") (net 1) (uuid "3f180149-e57e-461d-97ea-e991e6bfbe5b") ) (segment (start 165.3 102) (end 165.3 106.495) (width 2) (layer "B.Cu") (net 1) (uuid "b608b77e-f503-404d-9da5-d1e47c479ddc") ) (segment (start 113.5 115) (end 124 115) (width 2) (layer "B.Cu") (net 1) (uuid "b99b2370-1d52-4bd5-add2-b2457d3c4727") ) (segment (start 144.975 91) (end 145.225 91.25) (width 0.2) (layer "F.Cu") (net 2) (uuid "b97198ad-61f4-4855-ac39-5511b3b7783a") ) (segment (start 143.4125 91) (end 144.975 91) (width 0.2) (layer "F.Cu") (net 2) (uuid "da889599-c744-4da2-bef8-49d2c2c75ffe") ) (segment (start 142 75.5) (end 144.5 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "0d1997d8-33a0-4650-b85e-841d16777eb6") ) (segment (start 146 75.5) (end 146 78.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "1af6628c-7f48-4892-9345-e2aba6b87b0e") ) (segment (start 141.5875 91) (end 139.46 91) (width 0.2) (layer "F.Cu") (net 3) (uuid "1d303747-1da6-47ab-8057-1c27df04b928") ) (segment (start 146 78.5) (end 151 83.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "206b1d0b-3f58-4299-b735-3c497dab2e3e") ) (segment (start 126.5 75.5) (end 137.5 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "2439fd2c-4a5c-40ed-a67a-4cb43dce9bfb") ) (segment (start 146 75.5) (end 155.65 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "2e3e559d-b35d-4aa7-be27-a5771f223c7a") ) (segment (start 143 100) (end 137.58 94.58) (width 3.5) (layer "F.Cu") (net 3) (uuid "4383e778-76dc-44fa-94ab-03055088f87c") ) (segment (start 151 100) (end 143 100) (width 3.5) (layer "F.Cu") (net 3) (uuid "4e7ee5be-1b5a-4438-b786-4ee3623abb88") ) (segment (start 165.305 111.5) (end 162 111.5) (width 3) (layer "F.Cu") (net 3) (uuid "529d859e-d346-4736-90c7-47f7bbfdc3f7") ) (segment (start 135.28 73.28) (end 137.5 75.5) (width 2) (layer "F.Cu") (net 3) (uuid "5607ad49-548d-43fd-9b5d-04db6d131fb3") ) (segment (start 146.48 75.02) (end 146 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "5a165814-c1d1-49fb-a7d1-e2cb265fe59a") ) (segment (start 124.08 70) (end 124.08 73.08) (width 2) (layer "F.Cu") (net 3) (uuid "5b15325a-b301-4eb0-8352-f9c86bccbd38") ) (segment (start 144.5 75.5) (end 146 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "6b6703ae-bbe8-43b2-a6c0-fbb2d8635c0c") ) (segment (start 139.46 91) (end 137.58 92.88) (width 0.2) (layer "F.Cu") (net 3) (uuid "7a8d41ac-acea-4436-a30f-ca6a8af1f4c1") ) (segment (start 137.58 94.58) (end 137.6 90.1) (width 3.5) (layer "F.Cu") (net 3) (uuid "948efa67-0a6b-4438-bd40-da1237957905") ) (segment (start 155.65 75.5) (end 157.68 73.47) (width 2) (layer "F.Cu") (net 3) (uuid "aad549b8-f55c-4b4f-9660-b94c32fd6baa") ) (segment (start 137.5 75.5) (end 142 75.5) (width 2.5) (layer "F.Cu") (net 3) (uuid "af5b1088-c6e3-4622-b3d2-f8474eb41923") ) (segment (start 135.28 70) (end 135.28 73.28) (width 2) (layer "F.Cu") (net 3) (uuid "bb48fb8e-0fc8-4a17-bbd3-3efe92022f2b") ) (segment (start 151 100.5) (end 151 100) (width 3) (layer "F.Cu") (net 3) (uuid "c4dde8de-3b58-41ec-b9cf-96827a6e6609") ) (segment (start 146.48 70) (end 146.48 75.02) (width 2) (layer "F.Cu") (net 3) (uuid "c7b61f0a-eb35-4a9f-9fd5-5eae70d4b71d") ) (segment (start 124.08 73.08) (end 126.5 75.5) (width 2) (layer "F.Cu") (net 3) (uuid "cd3b3d9c-7026-46d0-8984-254977e1afce") ) (segment (start 162 111.5) (end 151 100.5) (width 3) (layer "F.Cu") (net 3) (uuid "d31f8079-7fd0-4f2b-8f2a-8144dcadc2e0") ) (segment (start 151 83.5) (end 151 100) (width 2.5) (layer "F.Cu") (net 3) (uuid "f17bb1c9-4279-47a3-940c-840c2e0218b2") ) (segment (start 157.68 73.47) (end 157.68 70) (width 2) (layer "F.Cu") (net 3) (uuid "fd81d749-3e28-4888-89d0-30412975595e") ) (segment (start 137.5 75.5) (end 145.5 75.5) (width 2.5) (layer "B.Cu") (net 3) (uuid "268cf4a2-d53d-42e7-af71-ed4592eaed8b") ) (segment (start 135.28 70) (end 135.28 73.28) (width 2) (layer "B.Cu") (net 3) (uuid "469ffdfc-c304-47f5-9556-0032c616541f") ) (segment (start 151 100.5) (end 151 100) (width 3) (layer "B.Cu") (net 3) (uuid "4d8fbb63-6954-489b-a5d9-595344962e70") ) (segment (start 155.5 75.5) (end 126.5 75.5) (width 2.5) (layer "B.Cu") (net 3) (uuid "68e2e2f6-559a-4d8a-a978-c07f69ec3604") ) (segment (start 146 76) (end 145.5 75.5) (width 2.5) (layer "B.Cu") (net 3) (uuid "70d9f8e1-6ed6-436a-a990-9388f630a9b2") ) (segment (start 151 100) (end 145.8 100) (width 3) (layer "B.Cu") (net 3) (uuid "712451a4-1fdc-4752-b494-874039bcbfc3") ) (segment (start 146 78.5) (end 146 76) (width 2.5) (layer "B.Cu") (net 3) (uuid "71bdfe0e-530b-4ec5-bab5-87e6e166dc65") ) (segment (start 165.305 111.5) (end 162 111.5) (width 3) (layer "B.Cu") (net 3) (uuid "7c45d7a6-2d18-4b95-861a-d071305cdecc") ) (segment (start 126.5 75.5) (end 124.08 73.08) (width 2) (layer "B.Cu") (net 3) (uuid "80c40359-7fde-4cba-a8c2-8effce5d4183") ) (segment (start 157.68 73.32) (end 155.5 75.5) (width 2) (layer "B.Cu") (net 3) (uuid "9483bd43-9242-47ce-952a-1d2ac64acdb6") ) (segment (start 145.5 75.5) (end 146.48 74.52) (width 2) (layer "B.Cu") (net 3) (uuid "9919facd-f8f5-451c-b1d1-5959e805468f") ) (segment (start 146.48 74.52) (end 146.48 70) (width 2) (layer "B.Cu") (net 3) (uuid "9ad726ef-56d2-4d31-9951-bfe7b2ff8124") ) (segment (start 124.08 73.08) (end 124.08 70) (width 2) (layer "B.Cu") (net 3) (uuid "9c6459ca-1149-4a1c-85ff-452186a46227") ) (segment (start 151 100) (end 151 83.5) (width 2.5) (layer "B.Cu") (net 3) (uuid "a51e8a59-e1a2-4407-ba49-b03210b17bd0") ) (segment (start 162 111.5) (end 151 100.5) (width 3) (layer "B.Cu") (net 3) (uuid "aa119770-9035-44c8-a1d9-62eeada747a3") ) (segment (start 157.68 70) (end 157.68 73.32) (width 2) (layer "B.Cu") (net 3) (uuid "b3d731c1-7fe2-4cbd-858f-d8fbdf902ff7") ) (segment (start 151 83.5) (end 146 78.5) (width 2.5) (layer "B.Cu") (net 3) (uuid "b4f67524-2674-4caf-8cb0-051c973a5b32") ) (segment (start 135.28 73.28) (end 137.5 75.5) (width 2) (layer "B.Cu") (net 3) (uuid "bfdefa0a-2aff-4d0e-8377-837cc063623c") ) (segment (start 130.5 90) (end 126.5 90) (width 3.5) (layer "F.Cu") (net 4) (uuid "39a42836-b441-499a-b6f4-534af1798e63") ) (segment (start 130.5 90) (end 130.63 92.88) (width 3.5) (layer "F.Cu") (net 4) (uuid "3f65bc49-cd0d-45b8-9477-ae8515038bf9") ) (segment (start 130.5 100) (end 130.6 99.9) (width 3.5) (layer "F.Cu") (net 4) (uuid "495f1a82-642f-408b-85c0-2e456014f72d") ) (segment (start 126.5 90) (end 120.37 96.13) (width 3.5) (layer "F.Cu") (net 4) (uuid "5d814a02-120a-4d31-bfd6-d596ab6c115e") ) (segment (start 120.5 110) (end 113.5 110) (width 3.5) (layer "F.Cu") (net 4) (uuid "679d1362-4144-41c8-91ee-6ca8c9f00e23") ) (segment (start 130.6 99.9) (end 130.5 90) (width 3.5) (layer "F.Cu") (net 4) (uuid "8355d930-63c8-4d8f-bb20-872d710fd5cc") ) (segment (start 120.37 96.13) (end 118 96.13) (width 3.5) (layer "F.Cu") (net 4) (uuid "c271f756-fe52-45d0-aa36-60e17781cd7c") ) (segment (start 130.5 100) (end 120.5 110) (width 3.5) (layer "F.Cu") (net 4) (uuid "d3d0389a-fbe5-44c1-8a79-8c3207ca6709") ) (segment (start 135.7 100) (end 130.5 100) (width 3.5) (layer "F.Cu") (net 4) (uuid "fb880e2a-6cbd-4dfb-ae8a-c99c236c8688") ) (segment (start 130.5 100) (end 135.7 100) (width 3.5) (layer "B.Cu") (net 4) (uuid "01c3a8d2-e84a-4a34-85b3-34856b057108") ) (segment (start 130.5 100) (end 130.5 90.32) (width 3.5) (layer "B.Cu") (net 4) (uuid "04c931d7-c6e0-44d5-ae78-4c711db151f1") ) (segment (start 130.5 90.32) (end 130.18 90) (width 3.5) (layer "B.Cu") (net 4) (uuid "3a9c7b27-0213-4a81-93aa-7c37f18442cf") ) (segment (start 120.5 110) (end 113.5 110) (width 3.5) (layer "B.Cu") (net 4) (uuid "4faa1148-1c7b-45da-8dba-8b864cfdd4be") ) (segment (start 120.37 96.13) (end 118 96.13) (width 3.5) (layer "B.Cu") (net 4) (uuid "4fe619ec-7798-4d86-8dd3-08453636198a") ) (segment (start 126.5 90) (end 120.37 96.13) (width 3.5) (layer "B.Cu") (net 4) (uuid "64332aeb-920c-4a2d-bb58-1caab99acabb") ) (segment (start 130.5 100) (end 120.5 110) (width 3.5) (layer "B.Cu") (net 4) (uuid "dd443bcb-d09f-411e-9552-fca51a73a240") ) (segment (start 130.18 90) (end 126.5 90) (width 3.5) (layer "B.Cu") (net 4) (uuid "e9bb8463-bf1b-4372-ba4d-e5e29a2fc284") ) (segment (start 116.4 120.084314) (end 114.715686 118.4) (width 0.2) (layer "B.Cu") (net 6) (uuid "13b03a42-b492-4114-bd66-189d97d58442") ) (segment (start 114.715686 118.4) (end 110.834314 118.4) (width 0.2) (layer "B.Cu") (net 6) (uuid "2f110806-7c38-4d3a-802c-b95ee0fb5f0c") ) (segment (start 109.55 117.115686) (end 109.55 84.581372) (width 0.2) (layer "B.Cu") (net 6) (uuid "3adebb53-8e8c-4159-92c7-cb210a17ad4c") ) (segment (start 109.55 84.581372) (end 115.91 78.221372) (width 0.2) (layer "B.Cu") (net 6) (uuid "55520c09-2ebf-4ed4-a424-972096941a0f") ) (segment (start 110.834314 118.4) (end 109.55 117.115686) (width 0.2) (layer "B.Cu") (net 6) (uuid "5a3f44d6-37e8-4ec4-a6cd-db5a885cc4af") ) (segment (start 126.62 125) (end 124.12 127.5) (width 0.2) (layer "B.Cu") (net 6) (uuid "60dbf145-ce70-4ff8-b259-fc4d5cbdca09") ) (segment (start 116.4 126.268628) (end 116.4 120.084314) (width 0.2) (layer "B.Cu") (net 6) (uuid "67d7a517-4091-4734-acad-f42e945529e8") ) (segment (start 115.91 78.221372) (end 115.91 75.064314) (width 0.2) (layer "B.Cu") (net 6) (uuid "96db5c07-e075-4acf-bb0c-4f1b448a5884") ) (segment (start 119 71.974314) (end 119 70) (width 0.2) (layer "B.Cu") (net 6) (uuid "a0d3a762-f993-4d7e-bc38-4d1229f19dbb") ) (segment (start 124.12 127.5) (end 117.631372 127.5) (width 0.2) (layer "B.Cu") (net 6) (uuid "aa6794fd-b9ec-47b5-bd0d-818dd531ad23") ) (segment (start 117.631372 127.5) (end 116.4 126.268628) (width 0.2) (layer "B.Cu") (net 6) (uuid "db20d996-d74f-410a-8a5d-b1e993511351") ) (segment (start 115.91 75.064314) (end 119 71.974314) (width 0.2) (layer "B.Cu") (net 6) (uuid "e097991c-417b-4b7a-a4b9-b6ea73091e57") ) (segment (start 109.95 84.747058) (end 109.95 116.95) (width 0.2) (layer "B.Cu") (net 7) (uuid "40f13fc7-a7c2-4c91-b797-61a43e00b284") ) (segment (start 116.31 78.387058) (end 109.95 84.747058) (width 0.2) (layer "B.Cu") (net 7) (uuid "8e7e9596-9354-48d1-abce-9f8765d0a333") ) (segment (start 116.31 75.23) (end 116.31 78.387058) (width 0.2) (layer "B.Cu") (net 7) (uuid "8fd533c5-0a29-42f6-84e7-6bc8c9ad5fc1") ) (segment (start 117.5 118) (end 124.08 124.58) (width 0.2) (layer "B.Cu") (net 7) (uuid "9119777b-3a4a-4e60-b01b-5789d2b57cfe") ) (segment (start 124.08 124.58) (end 124.08 125) (width 0.2) (layer "B.Cu") (net 7) (uuid "b1611eb8-e304-46fe-9e2c-4e48e71ed743") ) (segment (start 109.95 116.95) (end 111 118) (width 0.2) (layer "B.Cu") (net 7) (uuid "b4ae1776-f9fa-4eb5-95cc-a6d211a7d4fc") ) (segment (start 111 118) (end 117.5 118) (width 0.2) (layer "B.Cu") (net 7) (uuid "bd6bea86-ba4a-43ea-92fe-5c6511d9acf5") ) (segment (start 121.54 70) (end 116.31 75.23) (width 0.2) (layer "B.Cu") (net 7) (uuid "f195dc74-0bcc-4fed-984c-02472e5ac820") ) (segment (start 137.84 126.231873) (end 137.84 125) (width 0.2) (layer "B.Cu") (net 8) (uuid "037a850f-276f-4eaf-bc56-e3ec2ad7f536") ) (segment (start 117.465686 127.9) (end 136.171873 127.9) (width 0.2) (layer "B.Cu") (net 8) (uuid "0952d332-aeb2-4324-b57e-7ed9517fedf5") ) (segment (start 116 126.434314) (end 117.465686 127.9) (width 0.2) (layer "B.Cu") (net 8) (uuid "0dc82706-6934-425d-b3a7-1957c34e5752") ) (segment (start 117.5 72.908628) (end 115.51 74.898628) (width 0.2) (layer "B.Cu") (net 8) (uuid "1ac10daf-18ea-4ad9-9500-5902dd31470f") ) (segment (start 130.2 70) (end 130.2 68.2) (width 0.2) (layer "B.Cu") (net 8) (uuid "1c847018-766e-42ed-8b8a-bf6919b7a751") ) (segment (start 130.2 68.2) (end 130 68) (width 0.2) (layer "B.Cu") (net 8) (uuid "3529b497-36d7-4e7b-91db-7091c3d7b514") ) (segment (start 109.15 117.281372) (end 110.668628 118.8) (width 0.2) (layer "B.Cu") (net 8) (uuid "4e447536-b756-4207-8350-b7c32994f765") ) (segment (start 115.51 78.055686) (end 109.15 84.415686) (width 0.2) (layer "B.Cu") (net 8) (uuid "5b3fa0a6-6cfb-492e-be55-0343882ecce6") ) (segment (start 118.5 68) (end 117.5 69) (width 0.2) (layer "B.Cu") (net 8) (uuid "5f1ccc28-e3e9-489d-baeb-3e69ef229e28") ) (segment (start 115.51 74.898628) (end 115.51 78.055686) (width 0.2) (layer "B.Cu") (net 8) (uuid "705eff53-83b5-49c9-a31a-ef98f6a90fc5") ) (segment (start 114.55 118.8) (end 116 120.25) (width 0.2) (layer "B.Cu") (net 8) (uuid "913a1035-608c-4465-87bc-ecce21f4df33") ) (segment (start 110.668628 118.8) (end 114.55 118.8) (width 0.2) (layer "B.Cu") (net 8) (uuid "b463ba17-f9f2-4137-974e-0497cc1f0fc8") ) (segment (start 136.171873 127.9) (end 137.84 126.231873) (width 0.2) (layer "B.Cu") (net 8) (uuid "c92a9f9a-d909-47db-a12f-3a7c71c7f7ad") ) (segment (start 117.5 69) (end 117.5 72.908628) (width 0.2) (layer "B.Cu") (net 8) (uuid "d3fb1e05-975b-4406-8b75-8799d5c90f8b") ) (segment (start 109.15 84.415686) (end 109.15 117.281372) (width 0.2) (layer "B.Cu") (net 8) (uuid "e5f1715f-96ad-49bb-aea3-7cbf55c40d6c") ) (segment (start 116 120.25) (end 116 126.434314) (width 0.2) (layer "B.Cu") (net 8) (uuid "f334e79f-81d4-470b-bf2f-f981c909bcba") ) (segment (start 130 68) (end 118.5 68) (width 0.2) (layer "B.Cu") (net 8) (uuid "f92cc3d5-1bb7-4e59-a014-1009ca22572f") ) (segment (start 132.74 70) (end 132.74 69.74) (width 0.2) (layer "B.Cu") (net 9) (uuid "08d4e4aa-fee0-4bcd-b3c2-c5b5aa5fbb81") ) (segment (start 132.74 69.74) (end 130.6 67.6) (width 0.2) (layer "B.Cu") (net 9) (uuid "10dd2473-39da-415e-9a64-ae4fb200c2ac") ) (segment (start 136.337559 128.3) (end 139.005 125.632559) (width 0.2) (layer "B.Cu") (net 9) (uuid "29253aef-66d1-44ad-b1c3-7046f334c9d6") ) (segment (start 110.502942 119.2) (end 114.384314 119.2) (width 0.2) (layer "B.Cu") (net 9) (uuid "2eadedeb-d6b0-4795-a9f2-eef7ac938ed0") ) (segment (start 108.75 84.25) (end 108.75 117.447058) (width 0.2) (layer "B.Cu") (net 9) (uuid "354bb035-50bb-47fd-b91b-1993ed1d4061") ) (segment (start 114.384314 119.2) (end 115.6 120.415686) (width 0.2) (layer "B.Cu") (net 9) (uuid "46f797ac-df0b-4b7d-af62-44efc436a602") ) (segment (start 115.11 77.89) (end 108.75 84.25) (width 0.2) (layer "B.Cu") (net 9) (uuid "4f53f383-5be2-47c1-9c3c-4cadce14d48c") ) (segment (start 138.322559 123.685) (end 136.615 123.685) (width 0.2) (layer "B.Cu") (net 9) (uuid "503a5e8b-b63a-4a5a-8a48-c63cf186b1d3") ) (segment (start 130.6 67.6) (end 118.334314 67.6) (width 0.2) (layer "B.Cu") (net 9) (uuid "50b8ee6e-9b1e-436a-b35b-df4ffed69bf0") ) (segment (start 139.005 124.367441) (end 138.322559 123.685) (width 0.2) (layer "B.Cu") (net 9) (uuid "588d98da-1484-4ec6-8c6f-13b419fcb3ac") ) (segment (start 117.1 72.742942) (end 115.11 74.732942) (width 0.2) (layer "B.Cu") (net 9) (uuid "59110ef9-8d47-4880-9453-9a3b216d2eee") ) (segment (start 139.005 125.632559) (end 139.005 124.367441) (width 0.2) (layer "B.Cu") (net 9) (uuid "751e2dc9-0180-41f6-8bae-9a8cb10a71e6") ) (segment (start 136.615 123.685) (end 135.3 125) (width 0.2) (layer "B.Cu") (net 9) (uuid "79cae492-408e-44cd-9d01-294e48f9fe1e") ) (segment (start 115.11 74.732942) (end 115.11 77.89) (width 0.2) (layer "B.Cu") (net 9) (uuid "b039df9c-5200-49aa-933a-2c2d5b16b052") ) (segment (start 108.75 117.447058) (end 110.502942 119.2) (width 0.2) (layer "B.Cu") (net 9) (uuid "c31bb7b5-f93a-43ad-bc07-d974a5d81f81") ) (segment (start 115.6 120.415686) (end 115.6 126.6) (width 0.2) (layer "B.Cu") (net 9) (uuid "cbb6f614-ae9b-4027-9ebd-a007587e34b9") ) (segment (start 117.1 68.834314) (end 117.1 72.742942) (width 0.2) (layer "B.Cu") (net 9) (uuid "ce75d37f-a2b7-4f37-ad00-2c38bba8b33b") ) (segment (start 117.3 128.3) (end 136.337559 128.3) (width 0.2) (layer "B.Cu") (net 9) (uuid "d08f4aa1-42ac-46a0-9e66-045926e47c10") ) (segment (start 115.6 126.6) (end 117.3 128.3) (width 0.2) (layer "B.Cu") (net 9) (uuid "f9334658-1fb5-4bf0-bca7-84ce6f02cd69") ) (segment (start 118.334314 67.6) (end 117.1 68.834314) (width 0.2) (layer "B.Cu") (net 9) (uuid "fb42b580-bc34-4586-92cc-37c773f355b7") ) (segment (start 147.98 123.5) (end 146.48 125) (width 0.2) (layer "B.Cu") (net 10) (uuid "06223299-f3ce-4147-827c-d953755ee700") ) (segment (start 163.6 69.768628) (end 163.6 93.665686) (width 0.2) (layer "B.Cu") (net 10) (uuid "0c6025fe-c453-44f7-af4e-57eb1a01b079") ) (segment (start 169.4 114.231372) (end 161.385 122.246372) (width 0.2) (layer "B.Cu") (net 10) (uuid "38678ac2-d2d4-410b-9a94-15a9e1294bd1") ) (segment (start 161.481372 67.65) (end 163.6 69.768628) (width 0.2) (layer "B.Cu") (net 10) (uuid "3f43d924-ebec-4d80-a1ab-886946f9e495") ) (segment (start 151.665686 127.85) (end 150.185 126.369314) (width 0.2) (layer "B.Cu") (net 10) (uuid "41c23fba-7581-4a05-a46d-57b996dcbf76") ) (segment (start 159.625937 127.85) (end 151.665686 127.85) (width 0.2) (layer "B.Cu") (net 10) (uuid "5012fae9-3182-4750-ba45-a50047d8be34") ) (segment (start 150.185 126.369314) (end 150.185 124.185) (width 0.2) (layer "B.Cu") (net 10) (uuid "557177bc-2908-4f55-9b88-493ea9399a25") ) (segment (start 163.6 93.665686) (end 169.4 99.465686) (width 0.2) (layer "B.Cu") (net 10) (uuid "5960a86c-de60-4836-a41a-bb67aadfc2bb") ) (segment (start 161.385 122.246372) (end 161.385 126.090937) (width 0.2) (layer "B.Cu") (net 10) (uuid "6bbfbb83-2583-4f10-9c79-b5f293aa60f3") ) (segment (start 143.94 68.56) (end 144.85 67.65) (width 0.2) (layer "B.Cu") (net 10) (uuid "762837e8-5647-46fc-930e-71662e290824") ) (segment (start 149.5 123.5) (end 147.98 123.5) (width 0.2) (layer "B.Cu") (net 10) (uuid "b46e8cf2-9a4c-47b4-b420-91e301f818fc") ) (segment (start 143.94 70) (end 143.94 68.56) (width 0.2) (layer "B.Cu") (net 10) (uuid "ba537e29-c30c-4e58-9bd1-51ae4db689a2") ) (segment (start 169.4 99.465686) (end 169.4 114.231372) (width 0.2) (layer "B.Cu") (net 10) (uuid "de0a3604-a17e-4670-8d16-1718698d5501") ) (segment (start 144.85 67.65) (end 161.481372 67.65) (width 0.2) (layer "B.Cu") (net 10) (uuid "dfa8dceb-9e33-41ac-af25-fff23145d7c3") ) (segment (start 150.185 124.185) (end 149.5 123.5) (width 0.2) (layer "B.Cu") (net 10) (uuid "e7e52071-6a63-4dac-a7e3-4b40a4d1bda1") ) (segment (start 161.385 126.090937) (end 159.625937 127.85) (width 0.2) (layer "B.Cu") (net 10) (uuid "ed6e4d56-6d17-45a1-b6ad-30230c175984") ) (segment (start 141.4 70) (end 141.7 70) (width 0.2) (layer "B.Cu") (net 11) (uuid "001321b1-563c-4445-a3da-ec6f53149023") ) (segment (start 159.791623 128.25) (end 151.5 128.25) (width 0.2) (layer "B.Cu") (net 11) (uuid "0afceb2a-507b-4acd-963e-407ca50955e3") ) (segment (start 161.881372 67.484315) (end 164 69.602942) (width 0.2) (layer "B.Cu") (net 11) (uuid "16c48c72-c8f3-4456-80fa-0bbf77905967") ) (segment (start 141.7 70) (end 144.45 67.25) (width 0.2) (layer "B.Cu") (net 11) (uuid "1dd502c4-dc72-4d72-a1fb-4fd2673531b8") ) (segment (start 164 93.5) (end 169.8 99.3) (width 0.2) (layer "B.Cu") (net 11) (uuid "44647f5a-35a0-47aa-b448-6d3337f01857") ) (segment (start 161.785 122.412058) (end 161.785 126.256623) (width 0.2) (layer "B.Cu") (net 11) (uuid "4c89a118-6937-4924-8228-01abae10a1ec") ) (segment (start 161.647058 67.25) (end 161.881372 67.484315) (width 0.2) (layer "B.Cu") (net 11) (uuid "85c1a721-14bb-4cfd-bfde-3e85386bdd37") ) (segment (start 144.45 67.25) (end 161.647058 67.25) (width 0.2) (layer "B.Cu") (net 11) (uuid "937bc771-a313-4934-b676-d3c6d5f3640b") ) (segment (start 169.8 99.3) (end 169.8 114.397058) (width 0.2) (layer "B.Cu") (net 11) (uuid "a174e363-85c2-4068-b348-272d3836e919") ) (segment (start 149.02 125.77) (end 149.02 125) (width 0.2) (layer "B.Cu") (net 11) (uuid "a23b4f83-be3c-4183-83b2-95c263006d7f") ) (segment (start 151.5 128.25) (end 149.02 125.77) (width 0.2) (layer "B.Cu") (net 11) (uuid "a578728f-6ded-43dd-9469-0edc3697e9ef") ) (segment (start 149.02 125) (end 149.02 124.414314) (width 0.2) (layer "B.Cu") (net 11) (uuid "a991de16-2b61-41e4-94d1-04237ed4b76a") ) (segment (start 161.785 126.256623) (end 159.791623 128.25) (width 0.2) (layer "B.Cu") (net 11) (uuid "b7a984fa-4c0e-4dc6-a80d-ce18eed84d8f") ) (segment (start 169.8 114.397058) (end 161.785 122.412058) (width 0.2) (layer "B.Cu") (net 11) (uuid "be802c88-d4d2-4ab6-b30f-7e43d352af08") ) (segment (start 164 69.602942) (end 164 93.5) (width 0.2) (layer "B.Cu") (net 11) (uuid "fedfcd6a-ff89-4111-b3f8-ea2afac0b50f") ) (segment (start 163.2 93.831372) (end 169 99.631372) (width 0.2) (layer "B.Cu") (net 12) (uuid "0d9ea5ab-76fa-46d2-b5f4-1a33a39684ca") ) (segment (start 169 99.631372) (end 169 114.065686) (width 0.2) (layer "B.Cu") (net 12) (uuid "157121da-6bcb-40e8-95fc-eda5496039a8") ) (segment (start 161.55 68.284315) (end 163.2 69.934315) (width 0.2) (layer "B.Cu") (net 12) (uuid "85002c7c-9e08-4b9a-90a0-c6b6f16c7ea1") ) (segment (start 154.55 68.05) (end 161.315686 68.05) (width 0.2) (layer "B.Cu") (net 12) (uuid "920dc40d-b500-42af-994d-4104867a1f06") ) (segment (start 163.2 69.934315) (end 163.2 93.831372) (width 0.2) (layer "B.Cu") (net 12) (uuid "a0fd7a16-b5e1-43c5-84aa-0b556afd293b") ) (segment (start 160.22 122.845686) (end 160.22 125) (width 0.2) (layer "B.Cu") (net 12) (uuid "a5ea25c5-3155-42b3-887c-52444fabc24a") ) (segment (start 161.315686 68.05) (end 161.55 68.284315) (width 0.2) (layer "B.Cu") (net 12) (uuid "bcc05480-132d-45ab-9543-7f0aca408f4b") ) (segment (start 152.6 70) (end 154.55 68.05) (width 0.2) (layer "B.Cu") (net 12) (uuid "f2217be7-7c30-4cdd-a9d5-97b8ea7969ac") ) (segment (start 169 114.065686) (end 160.22 122.845686) (width 0.2) (layer "B.Cu") (net 12) (uuid "f2d03d8c-fccd-46f0-829a-26607625ed98") ) (segment (start 157.68 124.82) (end 157.68 125) (width 0.2) (layer "B.Cu") (net 13) (uuid "3074ffa8-2738-4de8-8559-c6643dfe138d") ) (segment (start 155.14 70) (end 156.69 68.45) (width 0.2) (layer "B.Cu") (net 13) (uuid "94802294-c029-4749-bfa3-b4cfbb23bcaf") ) (segment (start 162.8 93.997058) (end 168.5 99.697058) (width 0.2) (layer "B.Cu") (net 13) (uuid "95c89419-9f94-4ad0-b049-bba2283f5978") ) (segment (start 168.5 114) (end 157.68 124.82) (width 0.2) (layer "B.Cu") (net 13) (uuid "98845958-7a56-45b4-9b4a-4b1b32b3ccb2") ) (segment (start 156.69 68.45) (end 161.15 68.45) (width 0.2) (layer "B.Cu") (net 13) (uuid "b8414e54-be5e-4902-8868-846f01719f3a") ) (segment (start 168.5 99.697058) (end 168.5 114) (width 0.2) (layer "B.Cu") (net 13) (uuid "cc0de4dd-51d8-4dc6-862e-c458acfb0bdd") ) (segment (start 161.15 68.45) (end 162.8 70.1) (width 0.2) (layer "B.Cu") (net 13) (uuid "d2297d92-4f04-478b-af6e-dcf4f96fd9e0") ) (segment (start 162.8 70.1) (end 162.8 93.997058) (width 0.2) (layer "B.Cu") (net 13) (uuid "f7a98630-f0bf-44b8-819d-492456ab2159") ) (zone (net 1) (net_name "GND") (layers "F&B.Cu") (uuid "3cef8434-cfd6-443c-9523-b7f3bc4c5238") (hatch edge 0.5) (connect_pads (clearance 0.5) ) (min_thickness 0.25) (filled_areas_thickness no) (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) ) (polygon (pts (xy 107 65) (xy 172 65) (xy 172 130) (xy 107 130) ) ) (filled_polygon (layer "F.Cu") (pts (xy 168.503244 65.50067) (xy 168.807046 65.516592) (xy 168.819953 65.517949) (xy 168.951089 65.538718) (xy 169.117209 65.565028) (xy 169.129896 65.567724) (xy 169.420625 65.645625) (xy 169.432965 65.649635) (xy 169.713938 65.75749) (xy 169.72579 65.762767) (xy 169.993968 65.899411) (xy 170.005199 65.905896) (xy 170.257608 66.069812) (xy 170.268109 66.077441) (xy 170.50201 66.26685) (xy 170.511655 66.275535) (xy 170.724464 66.488344) (xy 170.733149 66.497989) (xy 170.922558 66.73189) (xy 170.930187 66.742391) (xy 171.094101 66.994796) (xy 171.100591 67.006036) (xy 171.237231 67.274206) (xy 171.24251 67.286064) (xy 171.350363 67.567033) (xy 171.354374 67.579376) (xy 171.432273 67.870097) (xy 171.434971 67.882794) (xy 171.48205 68.180046) (xy 171.483407 68.192953) (xy 171.49933 68.496756) (xy 171.4995 68.503246) (xy 171.4995 126.496753) (xy 171.49933 126.503243) (xy 171.483407 126.807046) (xy 171.48205 126.819953) (xy 171.434971 127.117205) (xy 171.432273 127.129902) (xy 171.354374 127.420623) (xy 171.350363 127.432966) (xy 171.24251 127.713935) (xy 171.237231 127.725793) (xy 171.100591 127.993963) (xy 171.094101 128.005203) (xy 170.930187 128.257608) (xy 170.922558 128.268109) (xy 170.733149 128.50201) (xy 170.724464 128.511655) (xy 170.511655 128.724464) (xy 170.50201 128.733149) (xy 170.268109 128.922558) (xy 170.257608 128.930187) (xy 170.005203 129.094101) (xy 169.993963 129.100591) (xy 169.725793 129.237231) (xy 169.713935 129.24251) (xy 169.432966 129.350363) (xy 169.420623 129.354374) (xy 169.129902 129.432273) (xy 169.117205 129.434971) (xy 168.819953 129.48205) (xy 168.807046 129.483407) (xy 168.503244 129.49933) (xy 168.496754 129.4995) (xy 110.503246 129.4995) (xy 110.496756 129.49933) (xy 110.192953 129.483407) (xy 110.180046 129.48205) (xy 109.882794 129.434971) (xy 109.870097 129.432273) (xy 109.579376 129.354374) (xy 109.567033 129.350363) (xy 109.286064 129.24251) (xy 109.274206 129.237231) (xy 109.006036 129.100591) (xy 108.994796 129.094101) (xy 108.742391 128.930187) (xy 108.73189 128.922558) (xy 108.497989 128.733149) (xy 108.488344 128.724464) (xy 108.275535 128.511655) (xy 108.26685 128.50201) (xy 108.077441 128.268109) (xy 108.069812 128.257608) (xy 107.905896 128.005199) (xy 107.899408 127.993963) (xy 107.762768 127.725793) (xy 107.757489 127.713935) (xy 107.649636 127.432966) (xy 107.645625 127.420623) (xy 107.567726 127.129902) (xy 107.565028 127.117205) (xy 107.517949 126.819953) (xy 107.516592 126.807046) (xy 107.50067 126.503243) (xy 107.5005 126.496753) (xy 107.5005 123.937155) (xy 117.635 123.937155) (xy 117.635 124.75) (xy 118.55544 124.75) (xy 118.524755 124.803147) (xy 118.49 124.932857) (xy 118.49 125.067143) (xy 118.524755 125.196853) (xy 118.55544 125.25) (xy 117.635 125.25) (xy 117.635 126.062844) (xy 117.641401 126.122372) (xy 117.641403 126.122379) (xy 117.691645 126.257086) (xy 117.691649 126.257093) (xy 117.777809 126.372187) (xy 117.777812 126.37219) (xy 117.892906 126.45835) (xy 117.892913 126.458354) (xy 118.02762 126.508596) (xy 118.027627 126.508598) (xy 118.087155 126.514999) (xy 118.087172 126.515) (xy 118.75 126.515) (xy 118.75 125.44456) (xy 118.803147 125.475245) (xy 118.932857 125.51) (xy 119.067143 125.51) (xy 119.196853 125.475245) (xy 119.25 125.44456) (xy 119.25 126.515) (xy 119.912828 126.515) (xy 119.912844 126.514999) (xy 119.972372 126.508598) (xy 119.972379 126.508596) (xy 120.107086 126.458354) (xy 120.107093 126.45835) (xy 120.222187 126.37219) (xy 120.22219 126.372187) (xy 120.30835 126.257093) (xy 120.308355 126.257084) (xy 120.351659 126.140979) (xy 120.393529 126.085045) (xy 120.458994 126.060627) (xy 120.527267 126.075478) (xy 120.555522 126.09663) (xy 120.650437 126.191545) (xy 120.824322 126.31788) (xy 120.918251 126.365739) (xy 121.015829 126.415458) (xy 121.015832 126.415459) (xy 121.147839 126.45835) (xy 121.220245 126.481876) (xy 121.432533 126.5155) (xy 121.432534 126.5155) (xy 121.647466 126.5155) (xy 121.647467 126.5155) (xy 121.859755 126.481876) (xy 121.859758 126.481875) (xy 121.859759 126.481875) (xy 122.064167 126.415459) (xy 122.06417 126.415458) (xy 122.149088 126.37219) (xy 122.255678 126.31788) (xy 122.429563 126.191545) (xy 122.581545 126.039563) (xy 122.70788 125.865678) (xy 122.707879 125.865678) (xy 122.709682 125.863198) (xy 122.765012 125.820532) (xy 122.834625 125.814553) (xy 122.89642 125.847159) (xy 122.910318 125.863198) (xy 122.91212 125.865678) (xy 123.038455 126.039563) (xy 123.190437 126.191545) (xy 123.364322 126.31788) (xy 123.458251 126.365739) (xy 123.555829 126.415458) (xy 123.555832 126.415459) (xy 123.687839 126.45835) (xy 123.760245 126.481876) (xy 123.972533 126.5155) (xy 123.972534 126.5155) (xy 124.187466 126.5155) (xy 124.187467 126.5155) (xy 124.399755 126.481876) (xy 124.399758 126.481875) (xy 124.399759 126.481875) (xy 124.604167 126.415459) (xy 124.60417 126.415458) (xy 124.689088 126.37219) (xy 124.795678 126.31788) (xy 124.969563 126.191545) (xy 125.121545 126.039563) (xy 125.24788 125.865678) (xy 125.247879 125.865678) (xy 125.249682 125.863198) (xy 125.305012 125.820532) (xy 125.374625 125.814553) (xy 125.43642 125.847159) (xy 125.450318 125.863198) (xy 125.45212 125.865678) (xy 125.578455 126.039563) (xy 125.730437 126.191545) (xy 125.904322 126.31788) (xy 125.998251 126.365739) (xy 126.095829 126.415458) (xy 126.095832 126.415459) (xy 126.227839 126.45835) (xy 126.300245 126.481876) (xy 126.512533 126.5155) (xy 126.512534 126.5155) (xy 126.727466 126.5155) (xy 126.727467 126.5155) (xy 126.939755 126.481876) (xy 126.939758 126.481875) (xy 126.939759 126.481875) (xy 127.144167 126.415459) (xy 127.14417 126.415458) (xy 127.229088 126.37219) (xy 127.335678 126.31788) (xy 127.509563 126.191545) (xy 127.661545 126.039563) (xy 127.78788 125.865678) (xy 127.885458 125.67417) (xy 127.951876 125.469755) (xy 127.9855 125.257467) (xy 127.9855 124.742533) (xy 127.951876 124.530245) (xy 127.951875 124.530241) (xy 127.951875 124.53024) (xy 127.885459 124.325832) (xy 127.885458 124.325829) (xy 127.797315 124.15284) (xy 127.78788 124.134322) (xy 127.661545 123.960437) (xy 127.638263 123.937155) (xy 128.855 123.937155) (xy 128.855 124.75) (xy 129.77544 124.75) (xy 129.744755 124.803147) (xy 129.71 124.932857) (xy 129.71 125.067143) (xy 129.744755 125.196853) (xy 129.77544 125.25) (xy 128.855 125.25) (xy 128.855 126.062844) (xy 128.861401 126.122372) (xy 128.861403 126.122379) (xy 128.911645 126.257086) (xy 128.911649 126.257093) (xy 128.997809 126.372187) (xy 128.997812 126.37219) (xy 129.112906 126.45835) (xy 129.112913 126.458354) (xy 129.24762 126.508596) (xy 129.247627 126.508598) (xy 129.307155 126.514999) (xy 129.307172 126.515) (xy 129.97 126.515) (xy 129.97 125.44456) (xy 130.023147 125.475245) (xy 130.152857 125.51) (xy 130.287143 125.51) (xy 130.416853 125.475245) (xy 130.47 125.44456) (xy 130.47 126.515) (xy 131.132828 126.515) (xy 131.132844 126.514999) (xy 131.192372 126.508598) (xy 131.192379 126.508596) (xy 131.327086 126.458354) (xy 131.327093 126.45835) (xy 131.442187 126.37219) (xy 131.44219 126.372187) (xy 131.52835 126.257093) (xy 131.528355 126.257084) (xy 131.571659 126.140979) (xy 131.613529 126.085045) (xy 131.678994 126.060627) (xy 131.747267 126.075478) (xy 131.775522 126.09663) (xy 131.870437 126.191545) (xy 132.044322 126.31788) (xy 132.138251 126.365739) (xy 132.235829 126.415458) (xy 132.235832 126.415459) (xy 132.367839 126.45835) (xy 132.440245 126.481876) (xy 132.652533 126.5155) (xy 132.652534 126.5155) (xy 132.867466 126.5155) (xy 132.867467 126.5155) (xy 133.079755 126.481876) (xy 133.079758 126.481875) (xy 133.079759 126.481875) (xy 133.284167 126.415459) (xy 133.28417 126.415458) (xy 133.369088 126.37219) (xy 133.475678 126.31788) (xy 133.649563 126.191545) (xy 133.801545 126.039563) (xy 133.92788 125.865678) (xy 133.927879 125.865678) (xy 133.929682 125.863198) (xy 133.985012 125.820532) (xy 134.054625 125.814553) (xy 134.11642 125.847159) (xy 134.130318 125.863198) (xy 134.13212 125.865678) (xy 134.258455 126.039563) (xy 134.410437 126.191545) (xy 134.584322 126.31788) (xy 134.678251 126.365739) (xy 134.775829 126.415458) (xy 134.775832 126.415459) (xy 134.907839 126.45835) (xy 134.980245 126.481876) (xy 135.192533 126.5155) (xy 135.192534 126.5155) (xy 135.407466 126.5155) (xy 135.407467 126.5155) (xy 135.619755 126.481876) (xy 135.619758 126.481875) (xy 135.619759 126.481875) (xy 135.824167 126.415459) (xy 135.82417 126.415458) (xy 135.909088 126.37219) (xy 136.015678 126.31788) (xy 136.189563 126.191545) (xy 136.341545 126.039563) (xy 136.46788 125.865678) (xy 136.467879 125.865678) (xy 136.469682 125.863198) (xy 136.525012 125.820532) (xy 136.594625 125.814553) (xy 136.65642 125.847159) (xy 136.670318 125.863198) (xy 136.67212 125.865678) (xy 136.798455 126.039563) (xy 136.950437 126.191545) (xy 137.124322 126.31788) (xy 137.218251 126.365739) (xy 137.315829 126.415458) (xy 137.315832 126.415459) (xy 137.447839 126.45835) (xy 137.520245 126.481876) (xy 137.732533 126.5155) (xy 137.732534 126.5155) (xy 137.947466 126.5155) (xy 137.947467 126.5155) (xy 138.159755 126.481876) (xy 138.159758 126.481875) (xy 138.159759 126.481875) (xy 138.364167 126.415459) (xy 138.36417 126.415458) (xy 138.449088 126.37219) (xy 138.555678 126.31788) (xy 138.729563 126.191545) (xy 138.881545 126.039563) (xy 139.00788 125.865678) (xy 139.105458 125.67417) (xy 139.171876 125.469755) (xy 139.2055 125.257467) (xy 139.2055 124.742533) (xy 139.171876 124.530245) (xy 139.171875 124.530241) (xy 139.171875 124.53024) (xy 139.105459 124.325832) (xy 139.105458 124.325829) (xy 139.017315 124.15284) (xy 139.00788 124.134322) (xy 138.881545 123.960437) (xy 138.858263 123.937155) (xy 140.035 123.937155) (xy 140.035 124.75) (xy 140.95544 124.75) (xy 140.924755 124.803147) (xy 140.89 124.932857) (xy 140.89 125.067143) (xy 140.924755 125.196853) (xy 140.95544 125.25) (xy 140.035 125.25) (xy 140.035 126.062844) (xy 140.041401 126.122372) (xy 140.041403 126.122379) (xy 140.091645 126.257086) (xy 140.091649 126.257093) (xy 140.177809 126.372187) (xy 140.177812 126.37219) (xy 140.292906 126.45835) (xy 140.292913 126.458354) (xy 140.42762 126.508596) (xy 140.427627 126.508598) (xy 140.487155 126.514999) (xy 140.487172 126.515) (xy 141.15 126.515) (xy 141.15 125.44456) (xy 141.203147 125.475245) (xy 141.332857 125.51) (xy 141.467143 125.51) (xy 141.596853 125.475245) (xy 141.65 125.44456) (xy 141.65 126.515) (xy 142.312828 126.515) (xy 142.312844 126.514999) (xy 142.372372 126.508598) (xy 142.372379 126.508596) (xy 142.507086 126.458354) (xy 142.507093 126.45835) (xy 142.622187 126.37219) (xy 142.62219 126.372187) (xy 142.70835 126.257093) (xy 142.708355 126.257084) (xy 142.751659 126.140979) (xy 142.793529 126.085045) (xy 142.858994 126.060627) (xy 142.927267 126.075478) (xy 142.955522 126.09663) (xy 143.050437 126.191545) (xy 143.224322 126.31788) (xy 143.318251 126.365739) (xy 143.415829 126.415458) (xy 143.415832 126.415459) (xy 143.547839 126.45835) (xy 143.620245 126.481876) (xy 143.832533 126.5155) (xy 143.832534 126.5155) (xy 144.047466 126.5155) (xy 144.047467 126.5155) (xy 144.259755 126.481876) (xy 144.259758 126.481875) (xy 144.259759 126.481875) (xy 144.464167 126.415459) (xy 144.46417 126.415458) (xy 144.549088 126.37219) (xy 144.655678 126.31788) (xy 144.829563 126.191545) (xy 144.981545 126.039563) (xy 145.10788 125.865678) (xy 145.107879 125.865678) (xy 145.109682 125.863198) (xy 145.165012 125.820532) (xy 145.234625 125.814553) (xy 145.29642 125.847159) (xy 145.310318 125.863198) (xy 145.31212 125.865678) (xy 145.438455 126.039563) (xy 145.590437 126.191545) (xy 145.764322 126.31788) (xy 145.858251 126.365739) (xy 145.955829 126.415458) (xy 145.955832 126.415459) (xy 146.087839 126.45835) (xy 146.160245 126.481876) (xy 146.372533 126.5155) (xy 146.372534 126.5155) (xy 146.587466 126.5155) (xy 146.587467 126.5155) (xy 146.799755 126.481876) (xy 146.799758 126.481875) (xy 146.799759 126.481875) (xy 147.004167 126.415459) (xy 147.00417 126.415458) (xy 147.089088 126.37219) (xy 147.195678 126.31788) (xy 147.369563 126.191545) (xy 147.521545 126.039563) (xy 147.64788 125.865678) (xy 147.647879 125.865678) (xy 147.649682 125.863198) (xy 147.705012 125.820532) (xy 147.774625 125.814553) (xy 147.83642 125.847159) (xy 147.850318 125.863198) (xy 147.85212 125.865678) (xy 147.978455 126.039563) (xy 148.130437 126.191545) (xy 148.304322 126.31788) (xy 148.398251 126.365739) (xy 148.495829 126.415458) (xy 148.495832 126.415459) (xy 148.627839 126.45835) (xy 148.700245 126.481876) (xy 148.912533 126.5155) (xy 148.912534 126.5155) (xy 149.127466 126.5155) (xy 149.127467 126.5155) (xy 149.339755 126.481876) (xy 149.339758 126.481875) (xy 149.339759 126.481875) (xy 149.544167 126.415459) (xy 149.54417 126.415458) (xy 149.629088 126.37219) (xy 149.735678 126.31788) (xy 149.909563 126.191545) (xy 150.061545 126.039563) (xy 150.18788 125.865678) (xy 150.285458 125.67417) (xy 150.351876 125.469755) (xy 150.3855 125.257467) (xy 150.3855 124.742533) (xy 150.351876 124.530245) (xy 150.351875 124.530241) (xy 150.351875 124.53024) (xy 150.285459 124.325832) (xy 150.285458 124.325829) (xy 150.197315 124.15284) (xy 150.18788 124.134322) (xy 150.061545 123.960437) (xy 150.038263 123.937155) (xy 151.235 123.937155) (xy 151.235 124.75) (xy 152.15544 124.75) (xy 152.124755 124.803147) (xy 152.09 124.932857) (xy 152.09 125.067143) (xy 152.124755 125.196853) (xy 152.15544 125.25) (xy 151.235 125.25) (xy 151.235 126.062844) (xy 151.241401 126.122372) (xy 151.241403 126.122379) (xy 151.291645 126.257086) (xy 151.291649 126.257093) (xy 151.377809 126.372187) (xy 151.377812 126.37219) (xy 151.492906 126.45835) (xy 151.492913 126.458354) (xy 151.62762 126.508596) (xy 151.627627 126.508598) (xy 151.687155 126.514999) (xy 151.687172 126.515) (xy 152.35 126.515) (xy 152.35 125.44456) (xy 152.403147 125.475245) (xy 152.532857 125.51) (xy 152.667143 125.51) (xy 152.796853 125.475245) (xy 152.85 125.44456) (xy 152.85 126.515) (xy 153.512828 126.515) (xy 153.512844 126.514999) (xy 153.572372 126.508598) (xy 153.572379 126.508596) (xy 153.707086 126.458354) (xy 153.707093 126.45835) (xy 153.822187 126.37219) (xy 153.82219 126.372187) (xy 153.90835 126.257093) (xy 153.908355 126.257084) (xy 153.951659 126.140979) (xy 153.993529 126.085045) (xy 154.058994 126.060627) (xy 154.127267 126.075478) (xy 154.155522 126.09663) (xy 154.250437 126.191545) (xy 154.424322 126.31788) (xy 154.518251 126.365739) (xy 154.615829 126.415458) (xy 154.615832 126.415459) (xy 154.747839 126.45835) (xy 154.820245 126.481876) (xy 155.032533 126.5155) (xy 155.032534 126.5155) (xy 155.247466 126.5155) (xy 155.247467 126.5155) (xy 155.459755 126.481876) (xy 155.459758 126.481875) (xy 155.459759 126.481875) (xy 155.664167 126.415459) (xy 155.66417 126.415458) (xy 155.749088 126.37219) (xy 155.855678 126.31788) (xy 156.029563 126.191545) (xy 156.181545 126.039563) (xy 156.30788 125.865678) (xy 156.307879 125.865678) (xy 156.309682 125.863198) (xy 156.365012 125.820532) (xy 156.434625 125.814553) (xy 156.49642 125.847159) (xy 156.510318 125.863198) (xy 156.51212 125.865678) (xy 156.638455 126.039563) (xy 156.790437 126.191545) (xy 156.964322 126.31788) (xy 157.058251 126.365739) (xy 157.155829 126.415458) (xy 157.155832 126.415459) (xy 157.287839 126.45835) (xy 157.360245 126.481876) (xy 157.572533 126.5155) (xy 157.572534 126.5155) (xy 157.787466 126.5155) (xy 157.787467 126.5155) (xy 157.999755 126.481876) (xy 157.999758 126.481875) (xy 157.999759 126.481875) (xy 158.204167 126.415459) (xy 158.20417 126.415458) (xy 158.289088 126.37219) (xy 158.395678 126.31788) (xy 158.569563 126.191545) (xy 158.721545 126.039563) (xy 158.84788 125.865678) (xy 158.847879 125.865678) (xy 158.849682 125.863198) (xy 158.905012 125.820532) (xy 158.974625 125.814553) (xy 159.03642 125.847159) (xy 159.050318 125.863198) (xy 159.05212 125.865678) (xy 159.178455 126.039563) (xy 159.330437 126.191545) (xy 159.504322 126.31788) (xy 159.598251 126.365739) (xy 159.695829 126.415458) (xy 159.695832 126.415459) (xy 159.827839 126.45835) (xy 159.900245 126.481876) (xy 160.112533 126.5155) (xy 160.112534 126.5155) (xy 160.327466 126.5155) (xy 160.327467 126.5155) (xy 160.539755 126.481876) (xy 160.539758 126.481875) (xy 160.539759 126.481875) (xy 160.744167 126.415459) (xy 160.74417 126.415458) (xy 160.829088 126.37219) (xy 160.935678 126.31788) (xy 161.109563 126.191545) (xy 161.261545 126.039563) (xy 161.38788 125.865678) (xy 161.485458 125.67417) (xy 161.551876 125.469755) (xy 161.5855 125.257467) (xy 161.5855 124.742533) (xy 161.551876 124.530245) (xy 161.551875 124.530241) (xy 161.551875 124.53024) (xy 161.485459 124.325832) (xy 161.485458 124.325829) (xy 161.397315 124.15284) (xy 161.38788 124.134322) (xy 161.261545 123.960437) (xy 161.109563 123.808455) (xy 160.935678 123.68212) (xy 160.935674 123.682118) (xy 160.74417 123.584541) (xy 160.744167 123.58454) (xy 160.539757 123.518124) (xy 160.398229 123.495708) (xy 160.327467 123.4845) (xy 160.112533 123.4845) (xy 160.04177 123.495708) (xy 159.900243 123.518124) (xy 159.90024 123.518124) (xy 159.695832 123.58454) (xy 159.695829 123.584541) (xy 159.504321 123.68212) (xy 159.420657 123.742906) (xy 159.330437 123.808455) (xy 159.330435 123.808457) (xy 159.330434 123.808457) (xy 159.178457 123.960434) (xy 159.178457 123.960435) (xy 159.178455 123.960437) (xy 159.081023 124.094539) (xy 159.050318 124.136802) (xy 158.994988 124.179467) (xy 158.925374 124.185446) (xy 158.863579 124.15284) (xy 158.849682 124.136802) (xy 158.836836 124.119121) (xy 158.721545 123.960437) (xy 158.569563 123.808455) (xy 158.395678 123.68212) (xy 158.395674 123.682118) (xy 158.265725 123.615905) (xy 158.214929 123.56793) (xy 158.198134 123.500109) (xy 158.220672 123.433974) (xy 158.234333 123.417744) (xy 158.301789 123.350289) (xy 158.389394 123.219179) (xy 158.449737 123.073497) (xy 158.4805 122.918842) (xy 158.4805 122.761158) (xy 158.4805 122.761155) (xy 158.480499 122.761153) (xy 158.449738 122.60651) (xy 158.449737 122.606503) (xy 158.449735 122.606498) (xy 158.389397 122.460827) (xy 158.38939 122.460814) (xy 158.301789 122.329711) (xy 158.301786 122.329707) (xy 158.190292 122.218213) (xy 158.190288 122.21821) (xy 158.059185 122.130609) (xy 158.059172 122.130602) (xy 157.913501 122.070264) (xy 157.913489 122.070261) (xy 157.758845 122.0395) (xy 157.758842 122.0395) (xy 157.601158 122.0395) (xy 157.601155 122.0395) (xy 157.44651 122.070261) (xy 157.446498 122.070264) (xy 157.300827 122.130602) (xy 157.300814 122.130609) (xy 157.169711 122.21821) (xy 157.169707 122.218213) (xy 157.058213 122.329707) (xy 157.05821 122.329711) (xy 156.970609 122.460814) (xy 156.970602 122.460827) (xy 156.910264 122.606498) (xy 156.910261 122.60651) (xy 156.8795 122.761153) (xy 156.8795 122.918846) (xy 156.910261 123.073489) (xy 156.910264 123.073501) (xy 156.970602 123.219172) (xy 156.970609 123.219185) (xy 157.05821 123.350288) (xy 157.058213 123.350292) (xy 157.12566 123.417739) (xy 157.159145 123.479062) (xy 157.154161 123.548754) (xy 157.112289 123.604687) (xy 157.094275 123.615904) (xy 156.964323 123.682118) (xy 156.842678 123.770499) (xy 156.790437 123.808455) (xy 156.790435 123.808457) (xy 156.790434 123.808457) (xy 156.638457 123.960434) (xy 156.638457 123.960435) (xy 156.638455 123.960437) (xy 156.541023 124.094539) (xy 156.510318 124.136802) (xy 156.454988 124.179467) (xy 156.385374 124.185446) (xy 156.323579 124.15284) (xy 156.309682 124.136802) (xy 156.296836 124.119121) (xy 156.181545 123.960437) (xy 156.029563 123.808455) (xy 155.855678 123.68212) (xy 155.855674 123.682118) (xy 155.66417 123.584541) (xy 155.664167 123.58454) (xy 155.459757 123.518124) (xy 155.318229 123.495708) (xy 155.247467 123.4845) (xy 155.032533 123.4845) (xy 154.96177 123.495708) (xy 154.820243 123.518124) (xy 154.82024 123.518124) (xy 154.615832 123.58454) (xy 154.615829 123.584541) (xy 154.424321 123.68212) (xy 154.250438 123.808454) (xy 154.155522 123.90337) (xy 154.094198 123.936854) (xy 154.024507 123.93187) (xy 153.968574 123.889998) (xy 153.951659 123.859021) (xy 153.908354 123.742913) (xy 153.90835 123.742906) (xy 153.82219 123.627812) (xy 153.822187 123.627809) (xy 153.707093 123.541649) (xy 153.707086 123.541645) (xy 153.572379 123.491403) (xy 153.572372 123.491401) (xy 153.512844 123.485) (xy 152.85 123.485) (xy 152.85 124.555439) (xy 152.796853 124.524755) (xy 152.667143 124.49) (xy 152.532857 124.49) (xy 152.403147 124.524755) (xy 152.35 124.555439) (xy 152.35 123.485) (xy 151.687155 123.485) (xy 151.627627 123.491401) (xy 151.62762 123.491403) (xy 151.492913 123.541645) (xy 151.492906 123.541649) (xy 151.377812 123.627809) (xy 151.377809 123.627812) (xy 151.291649 123.742906) (xy 151.291645 123.742913) (xy 151.241403 123.87762) (xy 151.241401 123.877627) (xy 151.235 123.937155) (xy 150.038263 123.937155) (xy 149.909563 123.808455) (xy 149.735678 123.68212) (xy 149.735674 123.682118) (xy 149.54417 123.584541) (xy 149.544167 123.58454) (xy 149.339757 123.518124) (xy 149.198229 123.495708) (xy 149.127467 123.4845) (xy 148.912533 123.4845) (xy 148.84177 123.495708) (xy 148.700243 123.518124) (xy 148.70024 123.518124) (xy 148.495832 123.58454) (xy 148.495829 123.584541) (xy 148.304321 123.68212) (xy 148.220657 123.742906) (xy 148.130437 123.808455) (xy 148.130435 123.808457) (xy 148.130434 123.808457) (xy 147.978457 123.960434) (xy 147.978457 123.960435) (xy 147.978455 123.960437) (xy 147.881023 124.094539) (xy 147.850318 124.136802) (xy 147.794988 124.179467) (xy 147.725374 124.185446) (xy 147.663579 124.15284) (xy 147.649682 124.136802) (xy 147.636836 124.119121) (xy 147.521545 123.960437) (xy 147.369563 123.808455) (xy 147.195678 123.68212) (xy 147.195674 123.682118) (xy 147.065725 123.615905) (xy 147.014929 123.56793) (xy 146.998134 123.500109) (xy 147.020672 123.433974) (xy 147.034333 123.417744) (xy 147.101789 123.350289) (xy 147.189394 123.219179) (xy 147.249737 123.073497) (xy 147.2805 122.918842) (xy 147.2805 122.761158) (xy 147.2805 122.761155) (xy 147.280499 122.761153) (xy 147.249738 122.60651) (xy 147.249737 122.606503) (xy 147.249735 122.606498) (xy 147.189397 122.460827) (xy 147.18939 122.460814) (xy 147.101789 122.329711) (xy 147.101786 122.329707) (xy 146.990292 122.218213) (xy 146.990288 122.21821) (xy 146.859185 122.130609) (xy 146.859172 122.130602) (xy 146.713501 122.070264) (xy 146.713489 122.070261) (xy 146.558845 122.0395) (xy 146.558842 122.0395) (xy 146.401158 122.0395) (xy 146.401155 122.0395) (xy 146.24651 122.070261) (xy 146.246498 122.070264) (xy 146.100827 122.130602) (xy 146.100814 122.130609) (xy 145.969711 122.21821) (xy 145.969707 122.218213) (xy 145.858213 122.329707) (xy 145.85821 122.329711) (xy 145.770609 122.460814) (xy 145.770602 122.460827) (xy 145.710264 122.606498) (xy 145.710261 122.60651) (xy 145.6795 122.761153) (xy 145.6795 122.918846) (xy 145.710261 123.073489) (xy 145.710264 123.073501) (xy 145.770602 123.219172) (xy 145.770609 123.219185) (xy 145.85821 123.350288) (xy 145.858213 123.350292) (xy 145.92566 123.417739) (xy 145.959145 123.479062) (xy 145.954161 123.548754) (xy 145.912289 123.604687) (xy 145.894275 123.615904) (xy 145.764323 123.682118) (xy 145.642678 123.770499) (xy 145.590437 123.808455) (xy 145.590435 123.808457) (xy 145.590434 123.808457) (xy 145.438457 123.960434) (xy 145.438457 123.960435) (xy 145.438455 123.960437) (xy 145.341023 124.094539) (xy 145.310318 124.136802) (xy 145.254988 124.179467) (xy 145.185374 124.185446) (xy 145.123579 124.15284) (xy 145.109682 124.136802) (xy 145.096836 124.119121) (xy 144.981545 123.960437) (xy 144.829563 123.808455) (xy 144.655678 123.68212) (xy 144.655674 123.682118) (xy 144.46417 123.584541) (xy 144.464167 123.58454) (xy 144.259757 123.518124) (xy 144.118229 123.495708) (xy 144.047467 123.4845) (xy 143.832533 123.4845) (xy 143.76177 123.495708) (xy 143.620243 123.518124) (xy 143.62024 123.518124) (xy 143.415832 123.58454) (xy 143.415829 123.584541) (xy 143.224321 123.68212) (xy 143.050438 123.808454) (xy 142.955522 123.90337) (xy 142.894198 123.936854) (xy 142.824507 123.93187) (xy 142.768574 123.889998) (xy 142.751659 123.859021) (xy 142.708354 123.742913) (xy 142.70835 123.742906) (xy 142.62219 123.627812) (xy 142.622187 123.627809) (xy 142.507093 123.541649) (xy 142.507086 123.541645) (xy 142.372379 123.491403) (xy 142.372372 123.491401) (xy 142.312844 123.485) (xy 141.65 123.485) (xy 141.65 124.555439) (xy 141.596853 124.524755) (xy 141.467143 124.49) (xy 141.332857 124.49) (xy 141.203147 124.524755) (xy 141.15 124.555439) (xy 141.15 123.485) (xy 140.487155 123.485) (xy 140.427627 123.491401) (xy 140.42762 123.491403) (xy 140.292913 123.541645) (xy 140.292906 123.541649) (xy 140.177812 123.627809) (xy 140.177809 123.627812) (xy 140.091649 123.742906) (xy 140.091645 123.742913) (xy 140.041403 123.87762) (xy 140.041401 123.877627) (xy 140.035 123.937155) (xy 138.858263 123.937155) (xy 138.729563 123.808455) (xy 138.555678 123.68212) (xy 138.555674 123.682118) (xy 138.36417 123.584541) (xy 138.364167 123.58454) (xy 138.159757 123.518124) (xy 138.018229 123.495708) (xy 137.947467 123.4845) (xy 137.732533 123.4845) (xy 137.66177 123.495708) (xy 137.520243 123.518124) (xy 137.52024 123.518124) (xy 137.315832 123.58454) (xy 137.315829 123.584541) (xy 137.124321 123.68212) (xy 137.040657 123.742906) (xy 136.950437 123.808455) (xy 136.950435 123.808457) (xy 136.950434 123.808457) (xy 136.798457 123.960434) (xy 136.798457 123.960435) (xy 136.798455 123.960437) (xy 136.701023 124.094539) (xy 136.670318 124.136802) (xy 136.614988 124.179467) (xy 136.545374 124.185446) (xy 136.483579 124.15284) (xy 136.469682 124.136802) (xy 136.456836 124.119121) (xy 136.341545 123.960437) (xy 136.189563 123.808455) (xy 136.015678 123.68212) (xy 136.015674 123.682118) (xy 135.885725 123.615905) (xy 135.834929 123.56793) (xy 135.818134 123.500109) (xy 135.840672 123.433974) (xy 135.854333 123.417744) (xy 135.921789 123.350289) (xy 136.009394 123.219179) (xy 136.069737 123.073497) (xy 136.1005 122.918842) (xy 136.1005 122.761158) (xy 136.1005 122.761155) (xy 136.100499 122.761153) (xy 136.069738 122.60651) (xy 136.069737 122.606503) (xy 136.069735 122.606498) (xy 136.009397 122.460827) (xy 136.00939 122.460814) (xy 135.921789 122.329711) (xy 135.921786 122.329707) (xy 135.810292 122.218213) (xy 135.810288 122.21821) (xy 135.679185 122.130609) (xy 135.679172 122.130602) (xy 135.533501 122.070264) (xy 135.533489 122.070261) (xy 135.378845 122.0395) (xy 135.378842 122.0395) (xy 135.221158 122.0395) (xy 135.221155 122.0395) (xy 135.06651 122.070261) (xy 135.066498 122.070264) (xy 134.920827 122.130602) (xy 134.920814 122.130609) (xy 134.789711 122.21821) (xy 134.789707 122.218213) (xy 134.678213 122.329707) (xy 134.67821 122.329711) (xy 134.590609 122.460814) (xy 134.590602 122.460827) (xy 134.530264 122.606498) (xy 134.530261 122.60651) (xy 134.4995 122.761153) (xy 134.4995 122.918846) (xy 134.530261 123.073489) (xy 134.530264 123.073501) (xy 134.590602 123.219172) (xy 134.590609 123.219185) (xy 134.67821 123.350288) (xy 134.678213 123.350292) (xy 134.74566 123.417739) (xy 134.779145 123.479062) (xy 134.774161 123.548754) (xy 134.732289 123.604687) (xy 134.714275 123.615904) (xy 134.584323 123.682118) (xy 134.462678 123.770499) (xy 134.410437 123.808455) (xy 134.410435 123.808457) (xy 134.410434 123.808457) (xy 134.258457 123.960434) (xy 134.258457 123.960435) (xy 134.258455 123.960437) (xy 134.161023 124.094539) (xy 134.130318 124.136802) (xy 134.074988 124.179467) (xy 134.005374 124.185446) (xy 133.943579 124.15284) (xy 133.929682 124.136802) (xy 133.916836 124.119121) (xy 133.801545 123.960437) (xy 133.649563 123.808455) (xy 133.475678 123.68212) (xy 133.475674 123.682118) (xy 133.28417 123.584541) (xy 133.284167 123.58454) (xy 133.079757 123.518124) (xy 132.938229 123.495708) (xy 132.867467 123.4845) (xy 132.652533 123.4845) (xy 132.58177 123.495708) (xy 132.440243 123.518124) (xy 132.44024 123.518124) (xy 132.235832 123.58454) (xy 132.235829 123.584541) (xy 132.044321 123.68212) (xy 131.870438 123.808454) (xy 131.775522 123.90337) (xy 131.714198 123.936854) (xy 131.644507 123.93187) (xy 131.588574 123.889998) (xy 131.571659 123.859021) (xy 131.528354 123.742913) (xy 131.52835 123.742906) (xy 131.44219 123.627812) (xy 131.442187 123.627809) (xy 131.327093 123.541649) (xy 131.327086 123.541645) (xy 131.192379 123.491403) (xy 131.192372 123.491401) (xy 131.132844 123.485) (xy 130.47 123.485) (xy 130.47 124.555439) (xy 130.416853 124.524755) (xy 130.287143 124.49) (xy 130.152857 124.49) (xy 130.023147 124.524755) (xy 129.97 124.555439) (xy 129.97 123.485) (xy 129.307155 123.485) (xy 129.247627 123.491401) (xy 129.24762 123.491403) (xy 129.112913 123.541645) (xy 129.112906 123.541649) (xy 128.997812 123.627809) (xy 128.997809 123.627812) (xy 128.911649 123.742906) (xy 128.911645 123.742913) (xy 128.861403 123.87762) (xy 128.861401 123.877627) (xy 128.855 123.937155) (xy 127.638263 123.937155) (xy 127.509563 123.808455) (xy 127.335678 123.68212) (xy 127.335674 123.682118) (xy 127.14417 123.584541) (xy 127.144167 123.58454) (xy 126.939757 123.518124) (xy 126.798229 123.495708) (xy 126.727467 123.4845) (xy 126.512533 123.4845) (xy 126.44177 123.495708) (xy 126.300243 123.518124) (xy 126.30024 123.518124) (xy 126.095832 123.58454) (xy 126.095829 123.584541) (xy 125.904321 123.68212) (xy 125.820657 123.742906) (xy 125.730437 123.808455) (xy 125.730435 123.808457) (xy 125.730434 123.808457) (xy 125.578457 123.960434) (xy 125.578457 123.960435) (xy 125.578455 123.960437) (xy 125.481023 124.094539) (xy 125.450318 124.136802) (xy 125.394988 124.179467) (xy 125.325374 124.185446) (xy 125.263579 124.15284) (xy 125.249682 124.136802) (xy 125.236836 124.119121) (xy 125.121545 123.960437) (xy 124.969563 123.808455) (xy 124.795678 123.68212) (xy 124.795674 123.682118) (xy 124.665725 123.615905) (xy 124.614929 123.56793) (xy 124.598134 123.500109) (xy 124.620672 123.433974) (xy 124.634333 123.417744) (xy 124.701789 123.350289) (xy 124.789394 123.219179) (xy 124.849737 123.073497) (xy 124.8805 122.918842) (xy 124.8805 122.761158) (xy 124.8805 122.761155) (xy 124.880499 122.761153) (xy 124.849738 122.60651) (xy 124.849737 122.606503) (xy 124.849735 122.606498) (xy 124.789397 122.460827) (xy 124.78939 122.460814) (xy 124.701789 122.329711) (xy 124.701786 122.329707) (xy 124.590292 122.218213) (xy 124.590288 122.21821) (xy 124.459185 122.130609) (xy 124.459172 122.130602) (xy 124.313501 122.070264) (xy 124.313489 122.070261) (xy 124.158845 122.0395) (xy 124.158842 122.0395) (xy 124.001158 122.0395) (xy 124.001155 122.0395) (xy 123.84651 122.070261) (xy 123.846498 122.070264) (xy 123.700827 122.130602) (xy 123.700814 122.130609) (xy 123.569711 122.21821) (xy 123.569707 122.218213) (xy 123.458213 122.329707) (xy 123.45821 122.329711) (xy 123.370609 122.460814) (xy 123.370602 122.460827) (xy 123.310264 122.606498) (xy 123.310261 122.60651) (xy 123.2795 122.761153) (xy 123.2795 122.918846) (xy 123.310261 123.073489) (xy 123.310264 123.073501) (xy 123.370602 123.219172) (xy 123.370609 123.219185) (xy 123.45821 123.350288) (xy 123.458213 123.350292) (xy 123.52566 123.417739) (xy 123.559145 123.479062) (xy 123.554161 123.548754) (xy 123.512289 123.604687) (xy 123.494275 123.615904) (xy 123.364323 123.682118) (xy 123.242678 123.770499) (xy 123.190437 123.808455) (xy 123.190435 123.808457) (xy 123.190434 123.808457) (xy 123.038457 123.960434) (xy 123.038457 123.960435) (xy 123.038455 123.960437) (xy 122.941023 124.094539) (xy 122.910318 124.136802) (xy 122.854988 124.179467) (xy 122.785374 124.185446) (xy 122.723579 124.15284) (xy 122.709682 124.136802) (xy 122.696836 124.119121) (xy 122.581545 123.960437) (xy 122.429563 123.808455) (xy 122.255678 123.68212) (xy 122.255674 123.682118) (xy 122.06417 123.584541) (xy 122.064167 123.58454) (xy 121.859757 123.518124) (xy 121.718229 123.495708) (xy 121.647467 123.4845) (xy 121.432533 123.4845) (xy 121.36177 123.495708) (xy 121.220243 123.518124) (xy 121.22024 123.518124) (xy 121.015832 123.58454) (xy 121.015829 123.584541) (xy 120.824321 123.68212) (xy 120.650438 123.808454) (xy 120.555522 123.90337) (xy 120.494198 123.936854) (xy 120.424507 123.93187) (xy 120.368574 123.889998) (xy 120.351659 123.859021) (xy 120.308354 123.742913) (xy 120.30835 123.742906) (xy 120.22219 123.627812) (xy 120.222187 123.627809) (xy 120.107093 123.541649) (xy 120.107086 123.541645) (xy 119.972379 123.491403) (xy 119.972372 123.491401) (xy 119.912844 123.485) (xy 119.25 123.485) (xy 119.25 124.555439) (xy 119.196853 124.524755) (xy 119.067143 124.49) (xy 118.932857 124.49) (xy 118.803147 124.524755) (xy 118.75 124.555439) (xy 118.75 123.485) (xy 118.087155 123.485) (xy 118.027627 123.491401) (xy 118.02762 123.491403) (xy 117.892913 123.541645) (xy 117.892906 123.541649) (xy 117.777812 123.627809) (xy 117.777809 123.627812) (xy 117.691649 123.742906) (xy 117.691645 123.742913) (xy 117.641403 123.87762) (xy 117.641401 123.877627) (xy 117.635 123.937155) (xy 107.5005 123.937155) (xy 107.5005 114.999995) (xy 111.694953 114.999995) (xy 111.694953 115.000004) (xy 111.715113 115.269026) (xy 111.715113 115.269028) (xy 111.775142 115.532033) (xy 111.775148 115.532052) (xy 111.873709 115.783181) (xy 111.873708 115.783181) (xy 112.008602 116.016822) (xy 112.062294 116.084151) (xy 112.062295 116.084151) (xy 112.898958 115.247488) (xy 112.923978 115.30789) (xy 112.995112 115.414351) (xy 113.085649 115.504888) (xy 113.19211 115.576022) (xy 113.25251 115.601041) (xy 112.414848 116.438702) (xy 112.597483 116.56322) (xy 112.597485 116.563221) (xy 112.840539 116.680269) (xy 112.840537 116.680269) (xy 113.098337 116.75979) (xy 113.098343 116.759792) (xy 113.365101 116.799999) (xy 113.36511 116.8) (xy 113.63489 116.8) (xy 113.634898 116.799999) (xy 113.901656 116.759792) (xy 113.901662 116.75979) (xy 114.159461 116.680269) (xy 114.402521 116.563218) (xy 114.58515 116.438702) (xy 113.747488 115.601041) (xy 113.80789 115.576022) (xy 113.914351 115.504888) (xy 114.004888 115.414351) (xy 114.076022 115.30789) (xy 114.101041 115.247488) (xy 114.937703 116.084151) (xy 114.937704 116.08415) (xy 114.991393 116.016828) (xy 114.9914 116.016817) (xy 115.12629 115.783181) (xy 115.224851 115.532052) (xy 115.224857 115.532033) (xy 115.284886 115.269028) (xy 115.284886 115.269026) (xy 115.305047 115.000004) (xy 115.305047 114.999995) (xy 115.284886 114.730973) (xy 115.284886 114.730971) (xy 115.224857 114.467966) (xy 115.224851 114.467947) (xy 115.12629 114.216818) (xy 115.126291 114.216818) (xy 114.991397 113.983177) (xy 114.937704 113.915847) (xy 114.101041 114.75251) (xy 114.076022 114.69211) (xy 114.004888 114.585649) (xy 113.914351 114.495112) (xy 113.80789 114.423978) (xy 113.747488 114.398958) (xy 114.58515 113.561296) (xy 114.402517 113.436779) (xy 114.402516 113.436778) (xy 114.15946 113.31973) (xy 114.159462 113.31973) (xy 113.901662 113.240209) (xy 113.901656 113.240207) (xy 113.634898 113.2) (xy 113.365101 113.2) (xy 113.098343 113.240207) (xy 113.098337 113.240209) (xy 112.840538 113.31973) (xy 112.597485 113.436778) (xy 112.597476 113.436783) (xy 112.414848 113.561296) (xy 113.252511 114.398958) (xy 113.19211 114.423978) (xy 113.085649 114.495112) (xy 112.995112 114.585649) (xy 112.923978 114.69211) (xy 112.898958 114.752511) (xy 112.062295 113.915848) (xy 112.0086 113.98318) (xy 111.873709 114.216818) (xy 111.775148 114.467947) (xy 111.775142 114.467966) (xy 111.715113 114.730971) (xy 111.715113 114.730973) (xy 111.694953 114.999995) (xy 107.5005 114.999995) (xy 107.5005 109.852486) (xy 111.2495 109.852486) (xy 111.2495 110.147513) (xy 111.281571 110.391113) (xy 111.288007 110.439993) (xy 111.364361 110.724951) (xy 111.364364 110.724961) (xy 111.477254 110.9975) (xy 111.477258 110.99751) (xy 111.624761 111.252993) (xy 111.678623 111.323188) (xy 111.703536 111.385416) (xy 111.705908 111.40748) (xy 111.70591 111.407486) (xy 111.756202 111.542328) (xy 111.756206 111.542335) (xy 111.842452 111.657544) (xy 111.842455 111.657547) (xy 111.957664 111.743793) (xy 111.957671 111.743797) (xy 112.092516 111.794091) (xy 112.114581 111.796463) (xy 112.176815 111.821378) (xy 112.246995 111.87523) (xy 112.246998 111.875232) (xy 112.247006 111.875238) (xy 112.274508 111.891116) (xy 112.502489 112.022741) (xy 112.50249 112.022741) (xy 112.502493 112.022743) (xy 112.775048 112.135639) (xy 113.060007 112.211993) (xy 113.352494 112.2505) (xy 113.352501 112.2505) (xy 120.6475 112.2505) (xy 120.647505 112.2505) (xy 120.647506 112.2505) (xy 120.681532 112.24602) (xy 120.939993 112.211994) (xy 121.192184 112.144419) (xy 121.224952 112.135639) (xy 121.497507 112.022743) (xy 121.752994 111.875238) (xy 121.987042 111.695646) (xy 122.195646 111.487042) (xy 122.20101 111.481678) (xy 122.201025 111.48166) (xy 131.395869 102.286819) (xy 131.457192 102.253334) (xy 131.48355 102.2505) (xy 135.847499 102.2505) (xy 135.847506 102.2505) (xy 136.139993 102.211993) (xy 136.424952 102.135639) (xy 136.697507 102.022743) (xy 136.952994 101.875238) (xy 137.187042 101.695646) (xy 137.395646 101.487042) (xy 137.575238 101.252994) (xy 137.722743 100.997507) (xy 137.835639 100.724952) (xy 137.911993 100.439993) (xy 137.9505 100.147506) (xy 137.9505 99.852494) (xy 137.911993 99.560007) (xy 137.835639 99.275048) (xy 137.722743 99.002493) (xy 137.716908 98.992387) (xy 137.575238 98.747006) (xy 137.395647 98.512959) (xy 137.395641 98.512952) (xy 137.187047 98.304358) (xy 137.18704 98.304352) (xy 136.952993 98.124761) (xy 136.69751 97.977258) (xy 136.6975 97.977254) (xy 136.424961 97.864364) (xy 136.424954 97.864362) (xy 136.424952 97.864361) (xy 136.139993 97.788007) (xy 136.091113 97.781571) (xy 135.847513 97.7495) (xy 135.847506 97.7495) (xy 132.951646 97.7495) (xy 132.884607 97.729815) (xy 132.838852 97.677011) (xy 132.827652 97.626752) (xy 132.8275 97.611678) (xy 132.786548 93.55747) (xy 132.79396 93.513976) (xy 132.796157 93.507913) (xy 132.859584 93.219801) (xy 132.884862 92.925875) (xy 132.750626 89.95203) (xy 132.7505 89.946438) (xy 132.7505 89.852499) (xy 132.750499 89.852484) (xy 132.74999 89.84862) (xy 132.748934 89.833673) (xy 132.748895 89.82977) (xy 132.744174 89.796511) (xy 132.743073 89.784714) (xy 132.741559 89.751162) (xy 132.725103 89.65864) (xy 132.724257 89.653168) (xy 132.711993 89.560007) (xy 132.710979 89.556226) (xy 132.707982 89.541537) (xy 132.707436 89.53769) (xy 132.707436 89.537687) (xy 132.698414 89.50533) (xy 132.695781 89.493766) (xy 132.689902 89.460709) (xy 132.661514 89.371135) (xy 132.659961 89.36582) (xy 132.635639 89.275048) (xy 132.634139 89.271427) (xy 132.629258 89.25728) (xy 132.628209 89.253518) (xy 132.628207 89.253511) (xy 132.615045 89.222622) (xy 132.61092 89.211492) (xy 132.600776 89.179483) (xy 132.560938 89.094379) (xy 132.558698 89.089298) (xy 132.522743 89.002493) (xy 132.522741 89.002489) (xy 132.522739 89.002485) (xy 132.520792 88.999113) (xy 132.5141 88.985715) (xy 132.512565 88.982112) (xy 132.495484 88.953206) (xy 132.489941 88.942709) (xy 132.475705 88.912296) (xy 132.425115 88.833143) (xy 132.42221 88.828365) (xy 132.375238 88.747006) (xy 132.372854 88.743899) (xy 132.364471 88.731489) (xy 132.362486 88.728129) (xy 132.362477 88.728117) (xy 132.341781 88.701701) (xy 132.33491 88.692008) (xy 132.316828 88.663718) (xy 132.316826 88.663715) (xy 132.256338 88.591845) (xy 132.252833 88.587485) (xy 132.195647 88.512959) (xy 132.192887 88.510199) (xy 132.18296 88.498995) (xy 132.18054 88.495907) (xy 132.156561 88.472408) (xy 132.148491 88.463704) (xy 132.126866 88.438009) (xy 132.097314 88.41101) (xy 132.057507 88.374641) (xy 132.053464 88.370776) (xy 131.987047 88.304359) (xy 131.987042 88.304354) (xy 131.983925 88.301962) (xy 131.972635 88.29216) (xy 131.969848 88.289429) (xy 131.969834 88.289417) (xy 131.943005 88.269257) (xy 131.933857 88.261671) (xy 131.909073 88.239028) (xy 131.909056 88.239014) (xy 131.832035 88.185254) (xy 131.827549 88.181971) (xy 131.752994 88.124762) (xy 131.752991 88.12476) (xy 131.749593 88.122798) (xy 131.737114 88.11455) (xy 131.733991 88.112203) (xy 131.733985 88.112199) (xy 131.704748 88.095711) (xy 131.694686 88.089382) (xy 131.667165 88.070172) (xy 131.667145 88.070159) (xy 131.58375 88.026903) (xy 131.578845 88.024217) (xy 131.497513 87.97726) (xy 131.497491 87.977249) (xy 131.493872 87.97575) (xy 131.480439 87.96921) (xy 131.477022 87.967283) (xy 131.477019 87.967282) (xy 131.445886 87.954753) (xy 131.435087 87.949793) (xy 131.405288 87.934336) (xy 131.316943 87.902328) (xy 131.311731 87.900305) (xy 131.224947 87.864359) (xy 131.224944 87.864358) (xy 131.221151 87.863341) (xy 131.206983 87.858612) (xy 131.203338 87.857145) (xy 131.170835 87.848787) (xy 131.159483 87.84528) (xy 131.127923 87.833846) (xy 131.127915 87.833844) (xy 131.127914 87.833843) (xy 131.127912 87.833843) (xy 131.036156 87.813642) (xy 131.03073 87.812319) (xy 130.963429 87.794286) (xy 130.939993 87.788007) (xy 130.936099 87.787494) (xy 130.921417 87.78465) (xy 130.920707 87.784467) (xy 130.917627 87.783675) (xy 130.884305 87.77963) (xy 130.872593 87.777635) (xy 130.8398 87.770416) (xy 130.839796 87.770415) (xy 130.746193 87.762365) (xy 130.740634 87.76176) (xy 130.647507 87.7495) (xy 130.647506 87.7495) (xy 130.643593 87.7495) (xy 130.62865 87.748596) (xy 130.627227 87.748423) (xy 130.624764 87.748124) (xy 130.59119 87.748463) (xy 130.579319 87.748013) (xy 130.545875 87.745137) (xy 130.452029 87.749374) (xy 130.446438 87.7495) (xy 126.352492 87.7495) (xy 126.318467 87.753978) (xy 126.318467 87.753979) (xy 126.284441 87.758458) (xy 126.060008 87.788005) (xy 125.835266 87.848225) (xy 125.835265 87.848224) (xy 125.775053 87.864359) (xy 125.775051 87.864359) (xy 125.502499 87.977254) (xy 125.502489 87.977258) (xy 125.247006 88.124761) (xy 125.012959 88.304352) (xy 125.012953 88.304357) (xy 124.804354 88.512958) (xy 124.80435 88.512962) (xy 119.474132 93.843181) (xy 119.412809 93.876666) (xy 119.386451 93.8795) (xy 117.852486 93.8795) (xy 117.574085 93.916153) (xy 117.560007 93.918007) (xy 117.275048 93.994361) (xy 117.275038 93.994364) (xy 117.002499 94.107254) (xy 117.002494 94.107256) (xy 116.802212 94.222888) (xy 116.740214 94.2395) (xy 116.56213 94.2395) (xy 116.562123 94.239501) (xy 116.502516 94.245908) (xy 116.367671 94.296202) (xy 116.367664 94.296206) (xy 116.252455 94.382452) (xy 116.252452 94.382455) (xy 116.166206 94.497664) (xy 116.166202 94.497671) (xy 116.115908 94.632517) (xy 116.109501 94.692116) (xy 116.1095 94.692135) (xy 116.1095 94.870214) (xy 116.092887 94.932214) (xy 115.977258 95.132489) (xy 115.977254 95.132499) (xy 115.864364 95.405038) (xy 115.864361 95.405048) (xy 115.81815 95.577513) (xy 115.788008 95.690004) (xy 115.788006 95.690015) (xy 115.7495 95.982486) (xy 115.7495 96.277513) (xy 115.781571 96.521113) (xy 115.788007 96.569993) (xy 115.788008 96.569995) (xy 115.864361 96.854951) (xy 115.864364 96.854961) (xy 115.977254 97.1275) (xy 115.977258 97.12751) (xy 116.092887 97.327785) (xy 116.1095 97.389784) (xy 116.1095 97.567869) (xy 116.109501 97.567876) (xy 116.115908 97.627483) (xy 116.166202 97.762328) (xy 116.166206 97.762335) (xy 116.252452 97.877544) (xy 116.252455 97.877547) (xy 116.367664 97.963793) (xy 116.367671 97.963797) (xy 116.412618 97.980561) (xy 116.502517 98.014091) (xy 116.562127 98.0205) (xy 116.740213 98.020499) (xy 116.802214 98.037112) (xy 117.002485 98.152739) (xy 117.00249 98.152741) (xy 117.002493 98.152743) (xy 117.002498 98.152745) (xy 117.224233 98.244591) (xy 117.275048 98.265639) (xy 117.560007 98.341993) (xy 117.852494 98.3805) (xy 117.852501 98.3805) (xy 120.5175 98.3805) (xy 120.517505 98.3805) (xy 120.517506 98.3805) (xy 120.551532 98.37602) (xy 120.809993 98.341994) (xy 121.034732 98.281774) (xy 121.094952 98.265639) (xy 121.367507 98.152743) (xy 121.622994 98.005238) (xy 121.857042 97.825646) (xy 122.065646 97.617042) (xy 122.07101 97.611678) (xy 122.071025 97.61166) (xy 127.395868 92.286819) (xy 127.457191 92.253334) (xy 127.483549 92.2505) (xy 128.149364 92.2505) (xy 128.216403 92.270185) (xy 128.262158 92.322989) (xy 128.273357 92.373247) (xy 128.27894 92.925875) (xy 128.339537 98.925153) (xy 128.32053 98.992387) (xy 128.303224 99.014086) (xy 119.604132 107.713181) (xy 119.542809 107.746666) (xy 119.516451 107.7495) (xy 113.352486 107.7495) (xy 113.074085 107.786153) (xy 113.060007 107.788007) (xy 112.775048 107.864361) (xy 112.775038 107.864364) (xy 112.502499 107.977254) (xy 112.502489 107.977258) (xy 112.247007 108.12476) (xy 112.17681 108.178624) (xy 112.114583 108.203536) (xy 112.092519 108.205908) (xy 112.092513 108.20591) (xy 111.957671 108.256202) (xy 111.957664 108.256206) (xy 111.842455 108.342452) (xy 111.842452 108.342455) (xy 111.756206 108.457664) (xy 111.756202 108.457671) (xy 111.705908 108.592516) (xy 111.703536 108.614584) (xy 111.678623 108.676812) (xy 111.624761 108.747006) (xy 111.477258 109.002489) (xy 111.477254 109.002499) (xy 111.364364 109.275038) (xy 111.364361 109.275048) (xy 111.288008 109.560004) (xy 111.288006 109.560015) (xy 111.2495 109.852486) (xy 107.5005 109.852486) (xy 107.5005 100.359994) (xy 110.044556 100.359994) (xy 110.044556 100.360005) (xy 110.06431 100.674004) (xy 110.064311 100.674011) (xy 110.12327 100.983083) (xy 110.220497 101.282316) (xy 110.220499 101.282321) (xy 110.354461 101.567003) (xy 110.354464 101.567009) (xy 110.523051 101.832661) (xy 110.523054 101.832665) (xy 110.723606 102.07509) (xy 110.723608 102.075092) (xy 110.72361 102.075094) (xy 110.78808 102.135635) (xy 110.952968 102.290476) (xy 110.952978 102.290484) (xy 111.207504 102.475408) (xy 111.207509 102.47541) (xy 111.207516 102.475416) (xy 111.483234 102.626994) (xy 111.483239 102.626996) (xy 111.483241 102.626997) (xy 111.483242 102.626998) (xy 111.775771 102.742818) (xy 111.775774 102.742819) (xy 112.080523 102.821065) (xy 112.080527 102.821066) (xy 112.14601 102.829338) (xy 112.39267 102.860499) (xy 112.392679 102.860499) (xy 112.392682 102.8605) (xy 112.392684 102.8605) (xy 112.707316 102.8605) (xy 112.707318 102.8605) (xy 112.707321 102.860499) (xy 112.707329 102.860499) (xy 112.893593 102.836968) (xy 113.019473 102.821066) (xy 113.324225 102.742819) (xy 113.324228 102.742818) (xy 113.616757 102.626998) (xy 113.616758 102.626997) (xy 113.616756 102.626997) (xy 113.616766 102.626994) (xy 113.892484 102.475416) (xy 114.14703 102.290478) (xy 114.37639 102.075094) (xy 114.576947 101.832663) (xy 114.745537 101.567007) (xy 114.879503 101.282315) (xy 114.976731 100.983079) (xy 115.035688 100.674015) (xy 115.050411 100.439995) (xy 115.055444 100.360005) (xy 115.055444 100.359994) (xy 115.035689 100.045995) (xy 115.035688 100.045988) (xy 115.035688 100.045985) (xy 114.976731 99.736921) (xy 114.879503 99.437685) (xy 114.745537 99.152993) (xy 114.650027 99.002493) (xy 114.576948 98.887338) (xy 114.576945 98.887334) (xy 114.376393 98.644909) (xy 114.376391 98.644907) (xy 114.347565 98.617837) (xy 114.14703 98.429522) (xy 114.147027 98.42952) (xy 114.147021 98.429515) (xy 113.892495 98.244591) (xy 113.892488 98.244586) (xy 113.892484 98.244584) (xy 113.616766 98.093006) (xy 113.616763 98.093004) (xy 113.616758 98.093002) (xy 113.616757 98.093001) (xy 113.324228 97.977181) (xy 113.324225 97.97718) (xy 113.019476 97.898934) (xy 113.019463 97.898932) (xy 112.707329 97.8595) (xy 112.707318 97.8595) (xy 112.392682 97.8595) (xy 112.39267 97.8595) (xy 112.080536 97.898932) (xy 112.080523 97.898934) (xy 111.775774 97.97718) (xy 111.775771 97.977181) (xy 111.483242 98.093001) (xy 111.483241 98.093002) (xy 111.207516 98.244584) (xy 111.207504 98.244591) (xy 110.952978 98.429515) (xy 110.952968 98.429523) (xy 110.723608 98.644907) (xy 110.723606 98.644909) (xy 110.523054 98.887334) (xy 110.523051 98.887338) (xy 110.354464 99.15299) (xy 110.354461 99.152996) (xy 110.220499 99.437678) (xy 110.220497 99.437683) (xy 110.12327 99.736916) (xy 110.064311 100.045988) (xy 110.06431 100.045995) (xy 110.044556 100.359994) (xy 107.5005 100.359994) (xy 107.5005 91.049998) (xy 116.105172 91.049998) (xy 116.105172 91.050001) (xy 116.124459 91.319663) (xy 116.12446 91.31967) (xy 116.181924 91.58383) (xy 116.276404 91.837141) (xy 116.276406 91.837145) (xy 116.405965 92.074415) (xy 116.40597 92.074423) (xy 116.498464 92.19798) (xy 116.498465 92.197981) (xy 117.216732 91.479714) (xy 117.308692 91.617342) (xy 117.432658 91.741308) (xy 117.570285 91.833266) (xy 116.852017 92.551533) (xy 116.975583 92.644033) (xy 116.975584 92.644034) (xy 117.212854 92.773593) (xy 117.212858 92.773595) (xy 117.466169 92.868075) (xy 117.730329 92.925539) (xy 117.730336 92.92554) (xy 117.999999 92.944828) (xy 118.000001 92.944828) (xy 118.269663 92.92554) (xy 118.26967 92.925539) (xy 118.53383 92.868075) (xy 118.787141 92.773595) (xy 118.787145 92.773593) (xy 119.024424 92.644029) (xy 119.14798 92.551534) (xy 119.147981 92.551533) (xy 118.429714 91.833267) (xy 118.567342 91.741308) (xy 118.691308 91.617342) (xy 118.783267 91.479714) (xy 119.501533 92.197981) (xy 119.501534 92.19798) (xy 119.594029 92.074424) (xy 119.723593 91.837145) (xy 119.723595 91.837141) (xy 119.818075 91.58383) (xy 119.875539 91.31967) (xy 119.87554 91.319663) (xy 119.894828 91.050001) (xy 119.894828 91.049998) (xy 119.87554 90.780336) (xy 119.875539 90.780329) (xy 119.818075 90.516169) (xy 119.723595 90.262858) (xy 119.723593 90.262854) (xy 119.594034 90.025584) (xy 119.594033 90.025583) (xy 119.501533 89.902017) (xy 118.783266 90.620284) (xy 118.691308 90.482658) (xy 118.567342 90.358692) (xy 118.429714 90.266732) (xy 119.147981 89.548465) (xy 119.14798 89.548464) (xy 119.024423 89.45597) (xy 119.024415 89.455965) (xy 118.787145 89.326406) (xy 118.787141 89.326404) (xy 118.53383 89.231924) (xy 118.26967 89.17446) (xy 118.269663 89.174459) (xy 118.000001 89.155172) (xy 117.999999 89.155172) (xy 117.730336 89.174459) (xy 117.730329 89.17446) (xy 117.466169 89.231924) (xy 117.212858 89.326404) (xy 117.212854 89.326406) (xy 116.975584 89.455965) (xy 116.975576 89.45597) (xy 116.852017 89.548464) (xy 117.570285 90.266732) (xy 117.432658 90.358692) (xy 117.308692 90.482658) (xy 117.216732 90.620285) (xy 116.498464 89.902017) (xy 116.40597 90.025576) (xy 116.405965 90.025584) (xy 116.276406 90.262854) (xy 116.276404 90.262858) (xy 116.181924 90.516169) (xy 116.12446 90.780329) (xy 116.124459 90.780336) (xy 116.105172 91.049998) (xy 107.5005 91.049998) (xy 107.5005 85.969998) (xy 116.105172 85.969998) (xy 116.105172 85.970001) (xy 116.124459 86.239663) (xy 116.12446 86.23967) (xy 116.181924 86.50383) (xy 116.276404 86.757141) (xy 116.276406 86.757145) (xy 116.405965 86.994415) (xy 116.40597 86.994423) (xy 116.498464 87.11798) (xy 116.498465 87.117981) (xy 117.216732 86.399714) (xy 117.308692 86.537342) (xy 117.432658 86.661308) (xy 117.570285 86.753266) (xy 116.852017 87.471533) (xy 116.975583 87.564033) (xy 116.975584 87.564034) (xy 117.212854 87.693593) (xy 117.212858 87.693595) (xy 117.466169 87.788075) (xy 117.730329 87.845539) (xy 117.730336 87.84554) (xy 117.999999 87.864828) (xy 118.000001 87.864828) (xy 118.269663 87.84554) (xy 118.26967 87.845539) (xy 118.53383 87.788075) (xy 118.787141 87.693595) (xy 118.787145 87.693593) (xy 119.024424 87.564029) (xy 119.14798 87.471534) (xy 119.147981 87.471533) (xy 118.429714 86.753267) (xy 118.567342 86.661308) (xy 118.691308 86.537342) (xy 118.783267 86.399714) (xy 119.501533 87.117981) (xy 119.501534 87.11798) (xy 119.594029 86.994424) (xy 119.723593 86.757145) (xy 119.723595 86.757141) (xy 119.818075 86.50383) (xy 119.875539 86.23967) (xy 119.87554 86.239663) (xy 119.894828 85.970001) (xy 119.894828 85.969998) (xy 119.87554 85.700336) (xy 119.875539 85.700329) (xy 119.818075 85.436169) (xy 119.723595 85.182858) (xy 119.723593 85.182854) (xy 119.594034 84.945584) (xy 119.594033 84.945583) (xy 119.501533 84.822017) (xy 118.783266 85.540284) (xy 118.691308 85.402658) (xy 118.567342 85.278692) (xy 118.429714 85.186732) (xy 119.147981 84.468465) (xy 119.14798 84.468464) (xy 119.024423 84.37597) (xy 119.024415 84.375965) (xy 118.787145 84.246406) (xy 118.787141 84.246404) (xy 118.53383 84.151924) (xy 118.26967 84.09446) (xy 118.269663 84.094459) (xy 118.000001 84.075172) (xy 117.999999 84.075172) (xy 117.730336 84.094459) (xy 117.730329 84.09446) (xy 117.466169 84.151924) (xy 117.212858 84.246404) (xy 117.212854 84.246406) (xy 116.975584 84.375965) (xy 116.975576 84.37597) (xy 116.852017 84.468464) (xy 117.570285 85.186732) (xy 117.432658 85.278692) (xy 117.308692 85.402658) (xy 117.216732 85.540285) (xy 116.498464 84.822017) (xy 116.40597 84.945576) (xy 116.405965 84.945584) (xy 116.276406 85.182854) (xy 116.276404 85.182858) (xy 116.181924 85.436169) (xy 116.12446 85.700329) (xy 116.124459 85.700336) (xy 116.105172 85.969998) (xy 107.5005 85.969998) (xy 107.5005 80.889998) (xy 116.104671 80.889998) (xy 116.104671 80.890001) (xy 116.123963 81.159733) (xy 116.123964 81.15974) (xy 116.181443 81.423971) (xy 116.275948 81.677349) (xy 116.27595 81.677353) (xy 116.405544 81.914686) (xy 116.405549 81.914694) (xy 116.567599 82.131169) (xy 116.567615 82.131187) (xy 116.758812 82.322384) (xy 116.75883 82.3224) (xy 116.975305 82.48445) (xy 116.975313 82.484455) (xy 117.212646 82.614049) (xy 117.212648 82.61405) (xy 117.212652 82.614052) (xy 117.466024 82.708555) (xy 117.466027 82.708555) (xy 117.466028 82.708556) (xy 117.537534 82.724111) (xy 117.730267 82.766037) (xy 117.980707 82.783949) (xy 117.999999 82.785329) (xy 118 82.785329) (xy 118.000001 82.785329) (xy 118.018005 82.784041) (xy 118.269733 82.766037) (xy 118.533976 82.708555) (xy 118.787348 82.614052) (xy 119.024692 82.484452) (xy 119.241177 82.322394) (xy 119.432394 82.131177) (xy 119.594452 81.914692) (xy 119.724052 81.677348) (xy 119.818555 81.423976) (xy 119.876037 81.159733) (xy 119.895329 80.89) (xy 119.876037 80.620267) (xy 119.818555 80.356024) (xy 119.724052 80.102652) (xy 119.594452 79.865308) (xy 119.438267 79.656668) (xy 119.4324 79.64883) (xy 119.432384 79.648812) (xy 119.241187 79.457615) (xy 119.241169 79.457599) (xy 119.024694 79.295549) (xy 119.024686 79.295544) (xy 118.787353 79.16595) (xy 118.787349 79.165948) (xy 118.533971 79.071443) (xy 118.26974 79.013964) (xy 118.269733 79.013963) (xy 118.000001 78.994671) (xy 117.999999 78.994671) (xy 117.730266 79.013963) (xy 117.730259 79.013964) (xy 117.466028 79.071443) (xy 117.21265 79.165948) (xy 117.212646 79.16595) (xy 116.975313 79.295544) (xy 116.975305 79.295549) (xy 116.75883 79.457599) (xy 116.758812 79.457615) (xy 116.567615 79.648812) (xy 116.567599 79.64883) (xy 116.405549 79.865305) (xy 116.405544 79.865313) (xy 116.27595 80.102646) (xy 116.275948 80.10265) (xy 116.181443 80.356028) (xy 116.123964 80.620259) (xy 116.123963 80.620266) (xy 116.104671 80.889998) (xy 107.5005 80.889998) (xy 107.5005 76.659994) (xy 110.044556 76.659994) (xy 110.044556 76.660005) (xy 110.06431 76.974004) (xy 110.064311 76.974011) (xy 110.064312 76.974015) (xy 110.120809 77.270185) (xy 110.12327 77.283083) (xy 110.220497 77.582316) (xy 110.220499 77.582321) (xy 110.354461 77.867003) (xy 110.354464 77.867009) (xy 110.523051 78.132661) (xy 110.523054 78.132665) (xy 110.723606 78.37509) (xy 110.723608 78.375092) (xy 110.952968 78.590476) (xy 110.952978 78.590484) (xy 111.207504 78.775408) (xy 111.207509 78.77541) (xy 111.207516 78.775416) (xy 111.483234 78.926994) (xy 111.483239 78.926996) (xy 111.483241 78.926997) (xy 111.483242 78.926998) (xy 111.775771 79.042818) (xy 111.775774 79.042819) (xy 112.080523 79.121065) (xy 112.080527 79.121066) (xy 112.14601 79.129338) (xy 112.39267 79.160499) (xy 112.392679 79.160499) (xy 112.392682 79.1605) (xy 112.392684 79.1605) (xy 112.707316 79.1605) (xy 112.707318 79.1605) (xy 112.707321 79.160499) (xy 112.707329 79.160499) (xy 112.893593 79.136968) (xy 113.019473 79.121066) (xy 113.324225 79.042819) (xy 113.397105 79.013964) (xy 113.616757 78.926998) (xy 113.616758 78.926997) (xy 113.616756 78.926997) (xy 113.616766 78.926994) (xy 113.892484 78.775416) (xy 114.14703 78.590478) (xy 114.37639 78.375094) (xy 114.576947 78.132663) (xy 114.745537 77.867007) (xy 114.879503 77.582315) (xy 114.976731 77.283079) (xy 115.035688 76.974015) (xy 115.036657 76.958611) (xy 115.055444 76.660005) (xy 115.055444 76.659994) (xy 115.035689 76.345995) (xy 115.035688 76.345988) (xy 115.035688 76.345985) (xy 114.976731 76.036921) (xy 114.879503 75.737685) (xy 114.745537 75.452993) (xy 114.576947 75.187337) (xy 114.576945 75.187334) (xy 114.376393 74.944909) (xy 114.376391 74.944907) (xy 114.147031 74.729523) (xy 114.147021 74.729515) (xy 113.892495 74.544591) (xy 113.892488 74.544586) (xy 113.892484 74.544584) (xy 113.616766 74.393006) (xy 113.616763 74.393004) (xy 113.616758 74.393002) (xy 113.616757 74.393001) (xy 113.324228 74.277181) (xy 113.324225 74.27718) (xy 113.019476 74.198934) (xy 113.019463 74.198932) (xy 112.707329 74.1595) (xy 112.707318 74.1595) (xy 112.392682 74.1595) (xy 112.39267 74.1595) (xy 112.080536 74.198932) (xy 112.080523 74.198934) (xy 111.775774 74.27718) (xy 111.775771 74.277181) (xy 111.483242 74.393001) (xy 111.483241 74.393002) (xy 111.207516 74.544584) (xy 111.207504 74.544591) (xy 110.952978 74.729515) (xy 110.952968 74.729523) (xy 110.723608 74.944907) (xy 110.723606 74.944909) (xy 110.523054 75.187334) (xy 110.523051 75.187338) (xy 110.354464 75.45299) (xy 110.354461 75.452996) (xy 110.220499 75.737678) (xy 110.220497 75.737683) (xy 110.12327 76.036916) (xy 110.064311 76.345988) (xy 110.06431 76.345995) (xy 110.044556 76.659994) (xy 107.5005 76.659994) (xy 107.5005 69.742534) (xy 117.6345 69.742534) (xy 117.6345 70.257465) (xy 117.668124 70.469756) (xy 117.668124 70.469759) (xy 117.73454 70.674167) (xy 117.734541 70.67417) (xy 117.809117 70.820532) (xy 117.83212 70.865678) (xy 117.958455 71.039563) (xy 118.110437 71.191545) (xy 118.284322 71.31788) (xy 118.378251 71.365739) (xy 118.475829 71.415458) (xy 118.475832 71.415459) (xy 118.666494 71.477408) (xy 118.680245 71.481876) (xy 118.892533 71.5155) (xy 118.892534 71.5155) (xy 119.107466 71.5155) (xy 119.107467 71.5155) (xy 119.319755 71.481876) (xy 119.319758 71.481875) (xy 119.319759 71.481875) (xy 119.524167 71.415459) (xy 119.52417 71.415458) (xy 119.715678 71.31788) (xy 119.889563 71.191545) (xy 120.041545 71.039563) (xy 120.16788 70.865678) (xy 120.167879 70.865678) (xy 120.169682 70.863198) (xy 120.225012 70.820532) (xy 120.294625 70.814553) (xy 120.35642 70.847159) (xy 120.370318 70.863198) (xy 120.37212 70.865678) (xy 120.498455 71.039563) (xy 120.650437 71.191545) (xy 120.824322 71.31788) (xy 120.906582 71.359793) (xy 120.954274 71.384094) (xy 121.00507 71.432069) (xy 121.021865 71.49989) (xy 120.999328 71.566025) (xy 120.985661 71.58226) (xy 120.91821 71.649711) (xy 120.830609 71.780814) (xy 120.830602 71.780827) (xy 120.770264 71.926498) (xy 120.770261 71.92651) (xy 120.7395 72.081153) (xy 120.7395 72.238846) (xy 120.770261 72.393489) (xy 120.770264 72.393501) (xy 120.830602 72.539172) (xy 120.830609 72.539185) (xy 120.91821 72.670288) (xy 120.918213 72.670292) (xy 121.029707 72.781786) (xy 121.029711 72.781789) (xy 121.160814 72.86939) (xy 121.160827 72.869397) (xy 121.306498 72.929735) (xy 121.306503 72.929737) (xy 121.461153 72.960499) (xy 121.461156 72.9605) (xy 121.461158 72.9605) (xy 121.618844 72.9605) (xy 121.618845 72.960499) (xy 121.773497 72.929737) (xy 121.919179 72.869394) (xy 122.050289 72.781789) (xy 122.161789 72.670289) (xy 122.249394 72.539179) (xy 122.309737 72.393497) (xy 122.333883 72.27211) (xy 122.366268 72.210199) (xy 122.426984 72.175625) (xy 122.496753 72.179364) (xy 122.553425 72.220231) (xy 122.579006 72.285249) (xy 122.5795 72.296301) (xy 122.5795 73.198097) (xy 122.616446 73.431368) (xy 122.689433 73.655996) (xy 122.796657 73.866434) (xy 122.935484 74.057511) (xy 122.935485 74.057512) (xy 124.77764 75.899668) (xy 124.809734 75.955255) (xy 124.838842 76.063887) (xy 124.926653 76.275881) (xy 124.926657 76.27589) (xy 125.041392 76.474617) (xy 125.181081 76.656661) (xy 125.181089 76.65667) (xy 125.34333 76.818911) (xy 125.343338 76.818918) (xy 125.525382 76.958607) (xy 125.525385 76.958608) (xy 125.525388 76.958611) (xy 125.724112 77.073344) (xy 125.724117 77.073346) (xy 125.724123 77.073349) (xy 125.81548 77.11119) (xy 125.936113 77.161158) (xy 126.157762 77.220548) (xy 126.385266 77.2505) (xy 137.385266 77.2505) (xy 141.885266 77.2505) (xy 144.1255 77.2505) (xy 144.192539 77.270185) (xy 144.238294 77.322989) (xy 144.2495 77.3745) (xy 144.2495 78.614741) (xy 144.274446 78.804215) (xy 144.279452 78.842238) (xy 144.279453 78.84224) (xy 144.338842 79.063887) (xy 144.42665 79.275876) (xy 144.426657 79.275891) (xy 144.438007 79.295549) (xy 144.541389 79.474612) (xy 144.611235 79.565636) (xy 144.675071 79.64883) (xy 144.681082 79.656663) (xy 144.681086 79.656668) (xy 149.213181 84.188762) (xy 149.246666 84.250085) (xy 149.2495 84.276443) (xy 149.2495 97.6255) (xy 149.229815 97.692539) (xy 149.177011 97.738294) (xy 149.1255 97.7495) (xy 143.98355 97.7495) (xy 143.916511 97.729815) (xy 143.895869 97.713181) (xy 139.871213 93.688526) (xy 139.837728 93.627203) (xy 139.834895 93.600297) (xy 139.842534 91.889406) (xy 139.843273 91.723946) (xy 139.863257 91.656995) (xy 139.916265 91.611477) (xy 139.967272 91.6005) (xy 140.625099 91.6005) (xy 140.692138 91.620185) (xy 140.730638 91.659404) (xy 140.75466 91.69835) (xy 140.87665 91.82034) (xy 141.023484 91.910908) (xy 141.187247 91.965174) (xy 141.288323 91.9755) (xy 141.886676 91.975499) (xy 141.886684 91.975498) (xy 141.886687 91.975498) (xy 141.94203 91.969844) (xy 141.987753 91.965174) (xy 142.151516 91.910908) (xy 142.29835 91.82034) (xy 142.412319 91.706371) (xy 142.473642 91.672886) (xy 142.543334 91.67787) (xy 142.587681 91.706371) (xy 142.70165 91.82034) (xy 142.848484 91.910908) (xy 143.012247 91.965174) (xy 143.113323 91.9755) (xy 143.711676 91.975499) (xy 143.711684 91.975498) (xy 143.711687 91.975498) (xy 143.76703 91.969844) (xy 143.812753 91.965174) (xy 143.976516 91.910908) (xy 144.011377 91.889405) (xy 144.078767 91.870965) (xy 144.145431 91.891887) (xy 144.190201 91.945528) (xy 144.194178 91.955937) (xy 144.215186 92.019334) (xy 144.307288 92.168656) (xy 144.431344 92.292712) (xy 144.580666 92.384814) (xy 144.747203 92.439999) (xy 144.849991 92.4505) (xy 145.600008 92.450499) (xy 145.600016 92.450498) (xy 145.600019 92.450498) (xy 145.656302 92.444748) (xy 145.702797 92.439999) (xy 145.869334 92.384814) (xy 146.018656 92.292712) (xy 146.142712 92.168656) (xy 146.144752 92.165347) (xy 146.146745 92.163555) (xy 146.147193 92.162989) (xy 146.147289 92.163065) (xy 146.196694 92.118623) (xy 146.265656 92.107395) (xy 146.32974 92.135234) (xy 146.355829 92.165339) (xy 146.357681 92.168341) (xy 146.357683 92.168344) (xy 146.481654 92.292315) (xy 146.630875 92.384356) (xy 146.63088 92.384358) (xy 146.797302 92.439505) (xy 146.797309 92.439506) (xy 146.900019 92.449999) (xy 147.024999 92.449999) (xy 147.525 92.449999) (xy 147.649972 92.449999) (xy 147.649986 92.449998) (xy 147.752697 92.439505) (xy 147.919119 92.384358) (xy 147.919124 92.384356) (xy 148.068345 92.292315) (xy 148.192315 92.168345) (xy 148.284356 92.019124) (xy 148.284358 92.019119) (xy 148.339505 91.852697) (xy 148.339506 91.85269) (xy 148.349999 91.749986) (xy 148.35 91.749973) (xy 148.35 91.5) (xy 147.525 91.5) (xy 147.525 92.449999) (xy 147.024999 92.449999) (xy 147.025 92.449998) (xy 147.025 91) (xy 147.525 91) (xy 148.349999 91) (xy 148.349999 90.750028) (xy 148.349998 90.750013) (xy 148.339505 90.647302) (xy 148.284358 90.48088) (xy 148.284356 90.480875) (xy 148.192315 90.331654) (xy 148.068345 90.207684) (xy 147.919124 90.115643) (xy 147.919119 90.115641) (xy 147.752697 90.060494) (xy 147.75269 90.060493) (xy 147.649986 90.05) (xy 147.525 90.05) (xy 147.525 91) (xy 147.025 91) (xy 147.025 90.05) (xy 146.900027 90.05) (xy 146.900012 90.050001) (xy 146.797302 90.060494) (xy 146.63088 90.115641) (xy 146.630875 90.115643) (xy 146.481654 90.207684) (xy 146.357683 90.331655) (xy 146.357679 90.33166) (xy 146.355826 90.334665) (xy 146.354018 90.33629) (xy 146.353202 90.337323) (xy 146.353025 90.337183) (xy 146.303874 90.381385) (xy 146.234911 90.392601) (xy 146.170831 90.364752) (xy 146.144753 90.334653) (xy 146.144737 90.334628) (xy 146.142712 90.331344) (xy 146.018656 90.207288) (xy 145.869334 90.115186) (xy 145.702797 90.060001) (xy 145.702795 90.06) (xy 145.60001 90.0495) (xy 144.849998 90.0495) (xy 144.84998 90.049501) (xy 144.747203 90.06) (xy 144.7472 90.060001) (xy 144.580668 90.115185) (xy 144.580663 90.115187) (xy 144.431344 90.207288) (xy 144.37884 90.259791) (xy 144.317516 90.293275) (xy 144.247824 90.288289) (xy 144.203479 90.259789) (xy 144.123351 90.179661) (xy 144.12335 90.17966) (xy 144.018821 90.115186) (xy 143.976518 90.089093) (xy 143.976513 90.089091) (xy 143.975069 90.088612) (xy 143.812753 90.034826) (xy 143.812751 90.034825) (xy 143.711678 90.0245) (xy 143.11333 90.0245) (xy 143.113312 90.024501) (xy 143.012247 90.034825) (xy 142.848484 90.089092) (xy 142.848481 90.089093) (xy 142.701648 90.179661) (xy 142.587681 90.293629) (xy 142.526358 90.327114) (xy 142.456666 90.32213) (xy 142.412319 90.293629) (xy 142.298351 90.179661) (xy 142.29835 90.17966) (xy 142.193821 90.115186) (xy 142.151518 90.089093) (xy 142.151513 90.089091) (xy 142.150069 90.088612) (xy 141.987753 90.034826) (xy 141.987751 90.034825) (xy 141.886678 90.0245) (xy 141.28833 90.0245) (xy 141.288312 90.024501) (xy 141.187247 90.034825) (xy 141.023484 90.089092) (xy 141.023481 90.089093) (xy 140.876648 90.179661) (xy 140.754659 90.30165) (xy 140.730638 90.340596) (xy 140.67869 90.387321) (xy 140.625099 90.3995) (xy 139.97374 90.3995) (xy 139.906701 90.379815) (xy 139.860946 90.327011) (xy 139.849741 90.274946) (xy 139.850043 90.207288) (xy 139.851136 89.962542) (xy 139.813935 89.669886) (xy 139.738854 89.384589) (xy 139.627176 89.111533) (xy 139.616857 89.093475) (xy 139.530699 88.942693) (xy 139.480813 88.85539) (xy 139.302268 88.620542) (xy 139.094597 88.411009) (xy 138.861353 88.230374) (xy 138.861348 88.230371) (xy 138.861345 88.230369) (xy 138.606528 88.08173) (xy 138.334477 87.967617) (xy 138.334473 87.967616) (xy 138.049869 87.889994) (xy 138.049864 87.889993) (xy 138.049863 87.889993) (xy 137.757551 87.850181) (xy 137.757544 87.85018) (xy 137.465234 87.848876) (xy 137.462542 87.848864) (xy 137.462541 87.848864) (xy 137.46254 87.848864) (xy 137.169886 87.886064) (xy 136.884593 87.961144) (xy 136.884592 87.961145) (xy 136.88459 87.961145) (xy 136.884589 87.961146) (xy 136.845197 87.977257) (xy 136.611531 88.072824) (xy 136.355389 88.219187) (xy 136.243361 88.304358) (xy 136.120543 88.397732) (xy 135.911009 88.605403) (xy 135.734637 88.833143) (xy 135.730371 88.838651) (xy 135.730369 88.838654) (xy 135.58173 89.093472) (xy 135.581728 89.093475) (xy 135.46762 89.365516) (xy 135.467617 89.365526) (xy 135.389994 89.65013) (xy 135.389992 89.650138) (xy 135.35018 89.942454) (xy 135.330193 94.419651) (xy 135.329597 94.428434) (xy 135.329765 94.428445) (xy 135.3295 94.432492) (xy 135.3295 94.574663) (xy 135.329499 94.575216) (xy 135.328864 94.717465) (xy 135.329111 94.721508) (xy 135.328943 94.721518) (xy 135.329066 94.723464) (xy 135.329234 94.723454) (xy 135.329499 94.727501) (xy 135.348069 94.868562) (xy 135.34814 94.869108) (xy 135.366066 95.01012) (xy 135.366839 95.014099) (xy 135.366677 95.01413) (xy 135.367054 95.016047) (xy 135.367215 95.016016) (xy 135.368006 95.019994) (xy 135.404855 95.157513) (xy 135.404997 95.158049) (xy 135.441143 95.295403) (xy 135.442432 95.299254) (xy 135.442272 95.299307) (xy 135.442894 95.301153) (xy 135.443053 95.3011) (xy 135.444359 95.304946) (xy 135.498692 95.43612) (xy 135.498902 95.43663) (xy 135.552823 95.568466) (xy 135.554601 95.572112) (xy 135.554453 95.572183) (xy 135.555314 95.573938) (xy 135.555462 95.573866) (xy 135.55726 95.577513) (xy 135.628224 95.700425) (xy 135.6285 95.700905) (xy 135.699189 95.824614) (xy 135.701427 95.827996) (xy 135.701288 95.828087) (xy 135.702365 95.829707) (xy 135.702505 95.829614) (xy 135.704764 95.832994) (xy 135.791115 95.945529) (xy 135.791449 95.945966) (xy 135.877732 96.059457) (xy 135.877737 96.059462) (xy 135.880394 96.06252) (xy 135.880267 96.062629) (xy 135.881554 96.064103) (xy 135.881681 96.063993) (xy 135.884353 96.06704) (xy 135.884354 96.067041) (xy 135.984884 96.167571) (xy 135.98508 96.167768) (xy 136.085411 96.268999) (xy 136.088452 96.27169) (xy 136.08834 96.271815) (xy 136.094952 96.277639) (xy 141.304353 101.487041) (xy 141.304354 101.487042) (xy 141.512953 101.695642) (xy 141.512959 101.695647) (xy 141.747008 101.87524) (xy 141.74701 101.875241) (xy 141.894511 101.9604) (xy 141.894512 101.9604) (xy 142.002494 102.022744) (xy 142.128868 102.07509) (xy 142.275046 102.135639) (xy 142.275047 102.135639) (xy 142.275049 102.13564) (xy 142.560007 102.211994) (xy 142.852495 102.250501) (xy 142.852502 102.250501) (xy 143.151346 102.250501) (xy 143.151378 102.2505) (xy 149.870004 102.2505) (xy 149.937043 102.270185) (xy 149.957685 102.286819) (xy 160.678141 113.007276) (xy 160.678146 113.00728) (xy 160.678149 113.007283) (xy 160.723821 113.042328) (xy 160.723824 113.04233) (xy 160.723825 113.042332) (xy 160.873973 113.157544) (xy 160.886197 113.166924) (xy 161.106458 113.294091) (xy 161.113303 113.298043) (xy 161.355581 113.398398) (xy 161.608884 113.466271) (xy 161.738882 113.483385) (xy 161.86888 113.5005) (xy 161.868887 113.5005) (xy 165.436113 113.5005) (xy 165.43612 113.5005) (xy 165.696116 113.46627) (xy 165.949419 113.398398) (xy 166.162979 113.309937) (xy 166.210432 113.300499) (xy 166.652871 113.300499) (xy 166.652872 113.300499) (xy 166.712483 113.294091) (xy 166.847331 113.243796) (xy 166.962546 113.157546) (xy 167.048796 113.042331) (xy 167.099091 112.907483) (xy 167.1055 112.847873) (xy 167.105499 112.405429) (xy 167.114938 112.357977) (xy 167.159457 112.2505) (xy 167.203398 112.144419) (xy 167.27127 111.891116) (xy 167.3055 111.63112) (xy 167.3055 111.36888) (xy 167.27127 111.108884) (xy 167.203398 110.855581) (xy 167.203394 110.855571) (xy 167.114938 110.642019) (xy 167.105499 110.594566) (xy 167.105499 110.152129) (xy 167.105498 110.152123) (xy 167.105002 110.147513) (xy 167.099091 110.092517) (xy 167.048796 109.957669) (xy 167.048795 109.957668) (xy 167.048793 109.957664) (xy 166.962547 109.842455) (xy 166.962544 109.842452) (xy 166.847335 109.756206) (xy 166.847328 109.756202) (xy 166.712482 109.705908) (xy 166.712483 109.705908) (xy 166.652883 109.699501) (xy 166.652881 109.6995) (xy 166.652873 109.6995) (xy 166.652865 109.6995) (xy 166.21043 109.6995) (xy 166.162977 109.690061) (xy 165.949419 109.601602) (xy 165.696116 109.53373) (xy 165.638339 109.526123) (xy 165.436127 109.4995) (xy 165.43612 109.4995) (xy 162.879996 109.4995) (xy 162.812957 109.479815) (xy 162.792315 109.463181) (xy 159.829129 106.499995) (xy 163.499953 106.499995) (xy 163.499953 106.500004) (xy 163.520113 106.769026) (xy 163.520113 106.769028) (xy 163.580142 107.032033) (xy 163.580148 107.032052) (xy 163.678709 107.283181) (xy 163.678708 107.283181) (xy 163.813602 107.516822) (xy 163.867294 107.584151) (xy 164.703957 106.747487) (xy 164.728978 106.80789) (xy 164.800112 106.914351) (xy 164.890649 107.004888) (xy 164.99711 107.076022) (xy 165.05751 107.101041) (xy 164.219848 107.938702) (xy 164.402483 108.06322) (xy 164.402485 108.063221) (xy 164.645539 108.180269) (xy 164.645537 108.180269) (xy 164.903337 108.25979) (xy 164.903343 108.259792) (xy 165.170101 108.299999) (xy 165.17011 108.3) (xy 165.43989 108.3) (xy 165.439898 108.299999) (xy 165.706656 108.259792) (xy 165.706662 108.25979) (xy 165.964461 108.180269) (xy 166.207521 108.063218) (xy 166.39015 107.938702) (xy 165.552488 107.101041) (xy 165.61289 107.076022) (xy 165.719351 107.004888) (xy 165.809888 106.914351) (xy 165.881022 106.80789) (xy 165.906041 106.747488) (xy 166.742703 107.584151) (xy 166.742704 107.58415) (xy 166.796393 107.516828) (xy 166.7964 107.516817) (xy 166.93129 107.283181) (xy 167.029851 107.032052) (xy 167.029857 107.032033) (xy 167.089886 106.769028) (xy 167.089886 106.769026) (xy 167.110047 106.500004) (xy 167.110047 106.499995) (xy 167.089886 106.230973) (xy 167.089886 106.230971) (xy 167.029857 105.967966) (xy 167.029851 105.967947) (xy 166.93129 105.716818) (xy 166.931291 105.716818) (xy 166.796397 105.483177) (xy 166.742704 105.415847) (xy 165.906041 106.25251) (xy 165.881022 106.19211) (xy 165.809888 106.085649) (xy 165.719351 105.995112) (xy 165.61289 105.923978) (xy 165.552488 105.898958) (xy 166.39015 105.061296) (xy 166.207517 104.936779) (xy 166.207516 104.936778) (xy 165.96446 104.81973) (xy 165.964462 104.81973) (xy 165.706662 104.740209) (xy 165.706656 104.740207) (xy 165.439898 104.7) (xy 165.170101 104.7) (xy 164.903343 104.740207) (xy 164.903337 104.740209) (xy 164.645538 104.81973) (xy 164.402485 104.936778) (xy 164.402476 104.936783) (xy 164.219848 105.061296) (xy 165.057511 105.898958) (xy 164.99711 105.923978) (xy 164.890649 105.995112) (xy 164.800112 106.085649) (xy 164.728978 106.19211) (xy 164.703958 106.252511) (xy 163.867295 105.415848) (xy 163.8136 105.48318) (xy 163.678709 105.716818) (xy 163.580148 105.967947) (xy 163.580142 105.967966) (xy 163.520113 106.230971) (xy 163.520113 106.230973) (xy 163.499953 106.499995) (xy 159.829129 106.499995) (xy 153.286819 99.957685) (xy 153.253334 99.896362) (xy 153.2505 99.870004) (xy 153.2505 99.8525) (xy 153.250499 99.852486) (xy 153.235284 99.736921) (xy 153.211993 99.560007) (xy 153.135639 99.275048) (xy 153.022743 99.002493) (xy 153.016908 98.992387) (xy 152.875238 98.747006) (xy 152.776124 98.617837) (xy 152.75093 98.552668) (xy 152.7505 98.542351) (xy 152.7505 83.385265) (xy 152.720549 83.157764) (xy 152.720549 83.157761) (xy 152.661158 82.936114) (xy 152.590711 82.766037) (xy 152.573349 82.72412) (xy 152.573344 82.724111) (xy 152.564363 82.708556) (xy 152.509801 82.614052) (xy 152.458611 82.525388) (xy 152.388765 82.434363) (xy 152.31892 82.343339) (xy 152.318915 82.343333) (xy 147.786819 77.811237) (xy 147.753334 77.749914) (xy 147.7505 77.723556) (xy 147.7505 77.3745) (xy 147.770185 77.307461) (xy 147.822989 77.261706) (xy 147.8745 77.2505) (xy 155.764727 77.2505) (xy 155.764734 77.2505) (xy 155.992238 77.220548) (xy 156.213887 77.161158) (xy 156.425888 77.073344) (xy 156.624612 76.958611) (xy 156.806661 76.818919) (xy 156.806665 76.818914) (xy 156.80667 76.818911) (xy 156.968911 76.65667) (xy 156.968914 76.656665) (xy 156.968919 76.656661) (xy 157.108611 76.474612) (xy 157.223344 76.275888) (xy 157.311158 76.063887) (xy 157.340265 75.955253) (xy 157.372356 75.899669) (xy 158.824518 74.44751) (xy 158.963343 74.256433) (xy 159.070568 74.045992) (xy 159.143553 73.821368) (xy 159.154938 73.749487) (xy 159.1805 73.588096) (xy 159.1805 71.639) (xy 159.200185 71.571961) (xy 159.252989 71.526206) (xy 159.3045 71.515) (xy 159.97 71.515) (xy 159.97 70.44456) (xy 160.023147 70.475245) (xy 160.152857 70.51) (xy 160.287143 70.51) (xy 160.416853 70.475245) (xy 160.47 70.44456) (xy 160.47 71.515) (xy 161.132828 71.515) (xy 161.132844 71.514999) (xy 161.192372 71.508598) (xy 161.192379 71.508596) (xy 161.327086 71.458354) (xy 161.327093 71.45835) (xy 161.442187 71.37219) (xy 161.44219 71.372187) (xy 161.52835 71.257093) (xy 161.528354 71.257086) (xy 161.578596 71.122379) (xy 161.578598 71.122372) (xy 161.584999 71.062844) (xy 161.585 71.062827) (xy 161.585 70.25) (xy 160.66456 70.25) (xy 160.695245 70.196853) (xy 160.73 70.067143) (xy 160.73 69.932857) (xy 160.695245 69.803147) (xy 160.66456 69.75) (xy 161.585 69.75) (xy 161.585 68.937172) (xy 161.584999 68.937155) (xy 161.578598 68.877627) (xy 161.578596 68.87762) (xy 161.528354 68.742913) (xy 161.52835 68.742906) (xy 161.44219 68.627812) (xy 161.442187 68.627809) (xy 161.327093 68.541649) (xy 161.327086 68.541645) (xy 161.192379 68.491403) (xy 161.192372 68.491401) (xy 161.132844 68.485) (xy 160.47 68.485) (xy 160.47 69.555439) (xy 160.416853 69.524755) (xy 160.287143 69.49) (xy 160.152857 69.49) (xy 160.023147 69.524755) (xy 159.97 69.555439) (xy 159.97 68.485) (xy 159.307155 68.485) (xy 159.247627 68.491401) (xy 159.24762 68.491403) (xy 159.112913 68.541645) (xy 159.112906 68.541649) (xy 158.997812 68.627809) (xy 158.997809 68.627812) (xy 158.911649 68.742906) (xy 158.911645 68.742913) (xy 158.879456 68.829218) (xy 158.837585 68.885152) (xy 158.77212 68.909569) (xy 158.703847 68.894717) (xy 158.675593 68.873566) (xy 158.657512 68.855485) (xy 158.65751 68.855483) (xy 158.466433 68.716657) (xy 158.25599 68.60943) (xy 158.251499 68.607571) (xy 158.251532 68.607489) (xy 158.239095 68.602336) (xy 158.204176 68.584544) (xy 158.204167 68.58454) (xy 157.999757 68.518124) (xy 157.858229 68.495708) (xy 157.787467 68.4845) (xy 157.572533 68.4845) (xy 157.50177 68.495708) (xy 157.360243 68.518124) (xy 157.36024 68.518124) (xy 157.155831 68.584541) (xy 157.15583 68.584541) (xy 157.120904 68.602337) (xy 157.108472 68.607486) (xy 157.108507 68.607569) (xy 157.104005 68.609433) (xy 156.893566 68.716657) (xy 156.78455 68.795862) (xy 156.70249 68.855483) (xy 156.702488 68.855485) (xy 156.702487 68.855485) (xy 156.535485 69.022487) (xy 156.535478 69.022496) (xy 156.481373 69.096964) (xy 156.426043 69.13963) (xy 156.35643 69.145608) (xy 156.294635 69.113002) (xy 156.280738 69.096964) (xy 156.268954 69.080745) (xy 156.181545 68.960437) (xy 156.029563 68.808455) (xy 155.855678 68.68212) (xy 155.66417 68.584541) (xy 155.664167 68.58454) (xy 155.459757 68.518124) (xy 155.318229 68.495708) (xy 155.247467 68.4845) (xy 155.032533 68.4845) (xy 154.96177 68.495708) (xy 154.820243 68.518124) (xy 154.82024 68.518124) (xy 154.615832 68.58454) (xy 154.615829 68.584541) (xy 154.424321 68.68212) (xy 154.340657 68.742906) (xy 154.250437 68.808455) (xy 154.250435 68.808457) (xy 154.250434 68.808457) (xy 154.098457 68.960434) (xy 154.098457 68.960435) (xy 154.098455 68.960437) (xy 154.001023 69.094539) (xy 153.970318 69.136802) (xy 153.914988 69.179467) (xy 153.845374 69.185446) (xy 153.783579 69.15284) (xy 153.769682 69.136802) (xy 153.740738 69.096964) (xy 153.641545 68.960437) (xy 153.489563 68.808455) (xy 153.315678 68.68212) (xy 153.12417 68.584541) (xy 153.124167 68.58454) (xy 152.919757 68.518124) (xy 152.778229 68.495708) (xy 152.707467 68.4845) (xy 152.492533 68.4845) (xy 152.42177 68.495708) (xy 152.280243 68.518124) (xy 152.28024 68.518124) (xy 152.075832 68.58454) (xy 152.075829 68.584541) (xy 151.884321 68.68212) (xy 151.800657 68.742906) (xy 151.710437 68.808455) (xy 151.710435 68.808457) (xy 151.710434 68.808457) (xy 151.558457 68.960434) (xy 151.558457 68.960435) (xy 151.558455 68.960437) (xy 151.504198 69.035114) (xy 151.43212 69.134321) (xy 151.334541 69.325829) (xy 151.33454 69.325832) (xy 151.268124 69.53024) (xy 151.268124 69.530243) (xy 151.2345 69.742534) (xy 151.2345 70.257465) (xy 151.268124 70.469756) (xy 151.268124 70.469759) (xy 151.33454 70.674167) (xy 151.334541 70.67417) (xy 151.409117 70.820532) (xy 151.43212 70.865678) (xy 151.558455 71.039563) (xy 151.710437 71.191545) (xy 151.884322 71.31788) (xy 151.978251 71.365739) (xy 152.075829 71.415458) (xy 152.075832 71.415459) (xy 152.266494 71.477408) (xy 152.280245 71.481876) (xy 152.492533 71.5155) (xy 152.492534 71.5155) (xy 152.707466 71.5155) (xy 152.707467 71.5155) (xy 152.919755 71.481876) (xy 152.919758 71.481875) (xy 152.919759 71.481875) (xy 153.124167 71.415459) (xy 153.12417 71.415458) (xy 153.315678 71.31788) (xy 153.489563 71.191545) (xy 153.641545 71.039563) (xy 153.76788 70.865678) (xy 153.767879 70.865678) (xy 153.769682 70.863198) (xy 153.825012 70.820532) (xy 153.894625 70.814553) (xy 153.95642 70.847159) (xy 153.970318 70.863198) (xy 153.97212 70.865678) (xy 154.098455 71.039563) (xy 154.250437 71.191545) (xy 154.424322 71.31788) (xy 154.506582 71.359793) (xy 154.554274 71.384094) (xy 154.60507 71.432069) (xy 154.621865 71.49989) (xy 154.599328 71.566025) (xy 154.585661 71.58226) (xy 154.51821 71.649711) (xy 154.430609 71.780814) (xy 154.430602 71.780827) (xy 154.370264 71.926498) (xy 154.370261 71.92651) (xy 154.3395 72.081153) (xy 154.3395 72.238846) (xy 154.370261 72.393489) (xy 154.370264 72.393501) (xy 154.430602 72.539172) (xy 154.430609 72.539185) (xy 154.51821 72.670288) (xy 154.518213 72.670292) (xy 154.629707 72.781786) (xy 154.629711 72.781789) (xy 154.760814 72.86939) (xy 154.760827 72.869397) (xy 154.906498 72.929735) (xy 154.906503 72.929737) (xy 155.061153 72.960499) (xy 155.061156 72.9605) (xy 155.061158 72.9605) (xy 155.218844 72.9605) (xy 155.218845 72.960499) (xy 155.373497 72.929737) (xy 155.519179 72.869394) (xy 155.650289 72.781789) (xy 155.761789 72.670289) (xy 155.849394 72.539179) (xy 155.909737 72.393497) (xy 155.933883 72.27211) (xy 155.966268 72.210199) (xy 156.026984 72.175625) (xy 156.096753 72.179364) (xy 156.153425 72.220231) (xy 156.179006 72.285249) (xy 156.1795 72.296301) (xy 156.1795 72.79711) (xy 156.159815 72.864149) (xy 156.143181 72.884791) (xy 155.314792 73.713181) (xy 155.253469 73.746666) (xy 155.227111 73.7495) (xy 148.1045 73.7495) (xy 148.037461 73.729815) (xy 147.991706 73.677011) (xy 147.9805 73.6255) (xy 147.9805 71.639) (xy 148.000185 71.571961) (xy 148.052989 71.526206) (xy 148.1045 71.515) (xy 148.77 71.515) (xy 148.77 70.44456) (xy 148.823147 70.475245) (xy 148.952857 70.51) (xy 149.087143 70.51) (xy 149.216853 70.475245) (xy 149.27 70.44456) (xy 149.27 71.515) (xy 149.932828 71.515) (xy 149.932844 71.514999) (xy 149.992372 71.508598) (xy 149.992379 71.508596) (xy 150.127086 71.458354) (xy 150.127093 71.45835) (xy 150.242187 71.37219) (xy 150.24219 71.372187) (xy 150.32835 71.257093) (xy 150.328354 71.257086) (xy 150.378596 71.122379) (xy 150.378598 71.122372) (xy 150.384999 71.062844) (xy 150.385 71.062827) (xy 150.385 70.25) (xy 149.46456 70.25) (xy 149.495245 70.196853) (xy 149.53 70.067143) (xy 149.53 69.932857) (xy 149.495245 69.803147) (xy 149.46456 69.75) (xy 150.385 69.75) (xy 150.385 68.937172) (xy 150.384999 68.937155) (xy 150.378598 68.877627) (xy 150.378596 68.87762) (xy 150.328354 68.742913) (xy 150.32835 68.742906) (xy 150.24219 68.627812) (xy 150.242187 68.627809) (xy 150.127093 68.541649) (xy 150.127086 68.541645) (xy 149.992379 68.491403) (xy 149.992372 68.491401) (xy 149.932844 68.485) (xy 149.27 68.485) (xy 149.27 69.555439) (xy 149.216853 69.524755) (xy 149.087143 69.49) (xy 148.952857 69.49) (xy 148.823147 69.524755) (xy 148.77 69.555439) (xy 148.77 68.485) (xy 148.107155 68.485) (xy 148.047627 68.491401) (xy 148.04762 68.491403) (xy 147.912913 68.541645) (xy 147.912906 68.541649) (xy 147.797812 68.627809) (xy 147.797809 68.627812) (xy 147.711649 68.742906) (xy 147.711645 68.742913) (xy 147.679456 68.829218) (xy 147.637585 68.885152) (xy 147.57212 68.909569) (xy 147.503847 68.894717) (xy 147.475593 68.873566) (xy 147.457512 68.855485) (xy 147.45751 68.855483) (xy 147.266433 68.716657) (xy 147.05599 68.60943) (xy 147.051499 68.607571) (xy 147.051532 68.607489) (xy 147.039095 68.602336) (xy 147.004176 68.584544) (xy 147.004167 68.58454) (xy 146.799757 68.518124) (xy 146.658229 68.495708) (xy 146.587467 68.4845) (xy 146.372533 68.4845) (xy 146.30177 68.495708) (xy 146.160243 68.518124) (xy 146.16024 68.518124) (xy 145.955831 68.584541) (xy 145.95583 68.584541) (xy 145.920904 68.602337) (xy 145.908472 68.607486) (xy 145.908507 68.607569) (xy 145.904005 68.609433) (xy 145.693566 68.716657) (xy 145.58455 68.795862) (xy 145.50249 68.855483) (xy 145.502488 68.855485) (xy 145.502487 68.855485) (xy 145.335485 69.022487) (xy 145.335478 69.022496) (xy 145.281373 69.096964) (xy 145.226043 69.13963) (xy 145.15643 69.145608) (xy 145.094635 69.113002) (xy 145.080738 69.096964) (xy 145.068954 69.080745) (xy 144.981545 68.960437) (xy 144.829563 68.808455) (xy 144.655678 68.68212) (xy 144.46417 68.584541) (xy 144.464167 68.58454) (xy 144.259757 68.518124) (xy 144.118229 68.495708) (xy 144.047467 68.4845) (xy 143.832533 68.4845) (xy 143.76177 68.495708) (xy 143.620243 68.518124) (xy 143.62024 68.518124) (xy 143.415832 68.58454) (xy 143.415829 68.584541) (xy 143.224321 68.68212) (xy 143.140657 68.742906) (xy 143.050437 68.808455) (xy 143.050435 68.808457) (xy 143.050434 68.808457) (xy 142.898457 68.960434) (xy 142.898457 68.960435) (xy 142.898455 68.960437) (xy 142.801023 69.094539) (xy 142.770318 69.136802) (xy 142.714988 69.179467) (xy 142.645374 69.185446) (xy 142.583579 69.15284) (xy 142.569682 69.136802) (xy 142.540738 69.096964) (xy 142.441545 68.960437) (xy 142.289563 68.808455) (xy 142.115678 68.68212) (xy 141.92417 68.584541) (xy 141.924167 68.58454) (xy 141.719757 68.518124) (xy 141.578229 68.495708) (xy 141.507467 68.4845) (xy 141.292533 68.4845) (xy 141.22177 68.495708) (xy 141.080243 68.518124) (xy 141.08024 68.518124) (xy 140.875832 68.58454) (xy 140.875829 68.584541) (xy 140.684321 68.68212) (xy 140.600657 68.742906) (xy 140.510437 68.808455) (xy 140.510435 68.808457) (xy 140.510434 68.808457) (xy 140.358457 68.960434) (xy 140.358457 68.960435) (xy 140.358455 68.960437) (xy 140.304198 69.035114) (xy 140.23212 69.134321) (xy 140.134541 69.325829) (xy 140.13454 69.325832) (xy 140.068124 69.53024) (xy 140.068124 69.530243) (xy 140.0345 69.742534) (xy 140.0345 70.257465) (xy 140.068124 70.469756) (xy 140.068124 70.469759) (xy 140.13454 70.674167) (xy 140.134541 70.67417) (xy 140.209117 70.820532) (xy 140.23212 70.865678) (xy 140.358455 71.039563) (xy 140.510437 71.191545) (xy 140.684322 71.31788) (xy 140.778251 71.365739) (xy 140.875829 71.415458) (xy 140.875832 71.415459) (xy 141.066494 71.477408) (xy 141.080245 71.481876) (xy 141.292533 71.5155) (xy 141.292534 71.5155) (xy 141.507466 71.5155) (xy 141.507467 71.5155) (xy 141.719755 71.481876) (xy 141.719758 71.481875) (xy 141.719759 71.481875) (xy 141.924167 71.415459) (xy 141.92417 71.415458) (xy 142.115678 71.31788) (xy 142.289563 71.191545) (xy 142.441545 71.039563) (xy 142.56788 70.865678) (xy 142.567879 70.865678) (xy 142.569682 70.863198) (xy 142.625012 70.820532) (xy 142.694625 70.814553) (xy 142.75642 70.847159) (xy 142.770318 70.863198) (xy 142.77212 70.865678) (xy 142.898455 71.039563) (xy 143.050437 71.191545) (xy 143.224322 71.31788) (xy 143.306582 71.359793) (xy 143.354274 71.384094) (xy 143.40507 71.432069) (xy 143.421865 71.49989) (xy 143.399328 71.566025) (xy 143.385661 71.58226) (xy 143.31821 71.649711) (xy 143.230609 71.780814) (xy 143.230602 71.780827) (xy 143.170264 71.926498) (xy 143.170261 71.92651) (xy 143.1395 72.081153) (xy 143.1395 72.238846) (xy 143.170261 72.393489) (xy 143.170264 72.393501) (xy 143.230602 72.539172) (xy 143.230609 72.539185) (xy 143.31821 72.670288) (xy 143.318213 72.670292) (xy 143.429707 72.781786) (xy 143.429711 72.781789) (xy 143.560814 72.86939) (xy 143.560827 72.869397) (xy 143.706498 72.929735) (xy 143.706503 72.929737) (xy 143.861153 72.960499) (xy 143.861156 72.9605) (xy 143.861158 72.9605) (xy 144.018844 72.9605) (xy 144.018845 72.960499) (xy 144.173497 72.929737) (xy 144.319179 72.869394) (xy 144.450289 72.781789) (xy 144.561789 72.670289) (xy 144.649394 72.539179) (xy 144.709737 72.393497) (xy 144.733883 72.27211) (xy 144.766268 72.210199) (xy 144.826984 72.175625) (xy 144.896753 72.179364) (xy 144.953425 72.220231) (xy 144.979006 72.285249) (xy 144.9795 72.296301) (xy 144.9795 73.6255) (xy 144.959815 73.692539) (xy 144.907011 73.738294) (xy 144.8555 73.7495) (xy 137.922889 73.7495) (xy 137.85585 73.729815) (xy 137.835208 73.713181) (xy 136.816819 72.694792) (xy 136.783334 72.633469) (xy 136.7805 72.607111) (xy 136.7805 71.639) (xy 136.800185 71.571961) (xy 136.852989 71.526206) (xy 136.9045 71.515) (xy 137.57 71.515) (xy 137.57 70.44456) (xy 137.623147 70.475245) (xy 137.752857 70.51) (xy 137.887143 70.51) (xy 138.016853 70.475245) (xy 138.07 70.44456) (xy 138.07 71.515) (xy 138.732828 71.515) (xy 138.732844 71.514999) (xy 138.792372 71.508598) (xy 138.792379 71.508596) (xy 138.927086 71.458354) (xy 138.927093 71.45835) (xy 139.042187 71.37219) (xy 139.04219 71.372187) (xy 139.12835 71.257093) (xy 139.128354 71.257086) (xy 139.178596 71.122379) (xy 139.178598 71.122372) (xy 139.184999 71.062844) (xy 139.185 71.062827) (xy 139.185 70.25) (xy 138.26456 70.25) (xy 138.295245 70.196853) (xy 138.33 70.067143) (xy 138.33 69.932857) (xy 138.295245 69.803147) (xy 138.26456 69.75) (xy 139.185 69.75) (xy 139.185 68.937172) (xy 139.184999 68.937155) (xy 139.178598 68.877627) (xy 139.178596 68.87762) (xy 139.128354 68.742913) (xy 139.12835 68.742906) (xy 139.04219 68.627812) (xy 139.042187 68.627809) (xy 138.927093 68.541649) (xy 138.927086 68.541645) (xy 138.792379 68.491403) (xy 138.792372 68.491401) (xy 138.732844 68.485) (xy 138.07 68.485) (xy 138.07 69.555439) (xy 138.016853 69.524755) (xy 137.887143 69.49) (xy 137.752857 69.49) (xy 137.623147 69.524755) (xy 137.57 69.555439) (xy 137.57 68.485) (xy 136.907155 68.485) (xy 136.847627 68.491401) (xy 136.84762 68.491403) (xy 136.712913 68.541645) (xy 136.712906 68.541649) (xy 136.597812 68.627809) (xy 136.597809 68.627812) (xy 136.511649 68.742906) (xy 136.511645 68.742913) (xy 136.479456 68.829218) (xy 136.437585 68.885152) (xy 136.37212 68.909569) (xy 136.303847 68.894717) (xy 136.275593 68.873566) (xy 136.257512 68.855485) (xy 136.25751 68.855483) (xy 136.066433 68.716657) (xy 135.85599 68.60943) (xy 135.851499 68.607571) (xy 135.851532 68.607489) (xy 135.839095 68.602336) (xy 135.804176 68.584544) (xy 135.804167 68.58454) (xy 135.599757 68.518124) (xy 135.458229 68.495708) (xy 135.387467 68.4845) (xy 135.172533 68.4845) (xy 135.10177 68.495708) (xy 134.960243 68.518124) (xy 134.96024 68.518124) (xy 134.755831 68.584541) (xy 134.75583 68.584541) (xy 134.720904 68.602337) (xy 134.708472 68.607486) (xy 134.708507 68.607569) (xy 134.704005 68.609433) (xy 134.493566 68.716657) (xy 134.38455 68.795862) (xy 134.30249 68.855483) (xy 134.302488 68.855485) (xy 134.302487 68.855485) (xy 134.135485 69.022487) (xy 134.135478 69.022496) (xy 134.081373 69.096964) (xy 134.026043 69.13963) (xy 133.95643 69.145608) (xy 133.894635 69.113002) (xy 133.880738 69.096964) (xy 133.868954 69.080745) (xy 133.781545 68.960437) (xy 133.629563 68.808455) (xy 133.455678 68.68212) (xy 133.26417 68.584541) (xy 133.264167 68.58454) (xy 133.059757 68.518124) (xy 132.918229 68.495708) (xy 132.847467 68.4845) (xy 132.632533 68.4845) (xy 132.56177 68.495708) (xy 132.420243 68.518124) (xy 132.42024 68.518124) (xy 132.215832 68.58454) (xy 132.215829 68.584541) (xy 132.024321 68.68212) (xy 131.940657 68.742906) (xy 131.850437 68.808455) (xy 131.850435 68.808457) (xy 131.850434 68.808457) (xy 131.698457 68.960434) (xy 131.698457 68.960435) (xy 131.698455 68.960437) (xy 131.601023 69.094539) (xy 131.570318 69.136802) (xy 131.514988 69.179467) (xy 131.445374 69.185446) (xy 131.383579 69.15284) (xy 131.369682 69.136802) (xy 131.340738 69.096964) (xy 131.241545 68.960437) (xy 131.089563 68.808455) (xy 130.915678 68.68212) (xy 130.72417 68.584541) (xy 130.724167 68.58454) (xy 130.519757 68.518124) (xy 130.378229 68.495708) (xy 130.307467 68.4845) (xy 130.092533 68.4845) (xy 130.02177 68.495708) (xy 129.880243 68.518124) (xy 129.88024 68.518124) (xy 129.675832 68.58454) (xy 129.675829 68.584541) (xy 129.484321 68.68212) (xy 129.400657 68.742906) (xy 129.310437 68.808455) (xy 129.310435 68.808457) (xy 129.310434 68.808457) (xy 129.158457 68.960434) (xy 129.158457 68.960435) (xy 129.158455 68.960437) (xy 129.104198 69.035114) (xy 129.03212 69.134321) (xy 128.934541 69.325829) (xy 128.93454 69.325832) (xy 128.868124 69.53024) (xy 128.868124 69.530243) (xy 128.8345 69.742534) (xy 128.8345 70.257465) (xy 128.868124 70.469756) (xy 128.868124 70.469759) (xy 128.93454 70.674167) (xy 128.934541 70.67417) (xy 129.009117 70.820532) (xy 129.03212 70.865678) (xy 129.158455 71.039563) (xy 129.310437 71.191545) (xy 129.484322 71.31788) (xy 129.578251 71.365739) (xy 129.675829 71.415458) (xy 129.675832 71.415459) (xy 129.866494 71.477408) (xy 129.880245 71.481876) (xy 130.092533 71.5155) (xy 130.092534 71.5155) (xy 130.307466 71.5155) (xy 130.307467 71.5155) (xy 130.519755 71.481876) (xy 130.519758 71.481875) (xy 130.519759 71.481875) (xy 130.724167 71.415459) (xy 130.72417 71.415458) (xy 130.915678 71.31788) (xy 131.089563 71.191545) (xy 131.241545 71.039563) (xy 131.36788 70.865678) (xy 131.367879 70.865678) (xy 131.369682 70.863198) (xy 131.425012 70.820532) (xy 131.494625 70.814553) (xy 131.55642 70.847159) (xy 131.570318 70.863198) (xy 131.57212 70.865678) (xy 131.698455 71.039563) (xy 131.850437 71.191545) (xy 132.024322 71.31788) (xy 132.106582 71.359793) (xy 132.154274 71.384094) (xy 132.20507 71.432069) (xy 132.221865 71.49989) (xy 132.199328 71.566025) (xy 132.185661 71.58226) (xy 132.11821 71.649711) (xy 132.030609 71.780814) (xy 132.030602 71.780827) (xy 131.970264 71.926498) (xy 131.970261 71.92651) (xy 131.9395 72.081153) (xy 131.9395 72.238846) (xy 131.970261 72.393489) (xy 131.970264 72.393501) (xy 132.030602 72.539172) (xy 132.030609 72.539185) (xy 132.11821 72.670288) (xy 132.118213 72.670292) (xy 132.229707 72.781786) (xy 132.229711 72.781789) (xy 132.360814 72.86939) (xy 132.360827 72.869397) (xy 132.506498 72.929735) (xy 132.506503 72.929737) (xy 132.661153 72.960499) (xy 132.661156 72.9605) (xy 132.661158 72.9605) (xy 132.818844 72.9605) (xy 132.818845 72.960499) (xy 132.973497 72.929737) (xy 133.119179 72.869394) (xy 133.250289 72.781789) (xy 133.361789 72.670289) (xy 133.449394 72.539179) (xy 133.509737 72.393497) (xy 133.533883 72.27211) (xy 133.566268 72.210199) (xy 133.626984 72.175625) (xy 133.696753 72.179364) (xy 133.753425 72.220231) (xy 133.779006 72.285249) (xy 133.7795 72.296301) (xy 133.7795 73.398097) (xy 133.812445 73.606102) (xy 133.80349 73.675395) (xy 133.758494 73.728847) (xy 133.691743 73.749487) (xy 133.689972 73.7495) (xy 126.92289 73.7495) (xy 126.855851 73.729815) (xy 126.835209 73.713181) (xy 125.616819 72.494791) (xy 125.583334 72.433468) (xy 125.5805 72.40711) (xy 125.5805 71.639) (xy 125.600185 71.571961) (xy 125.652989 71.526206) (xy 125.7045 71.515) (xy 126.37 71.515) (xy 126.37 70.44456) (xy 126.423147 70.475245) (xy 126.552857 70.51) (xy 126.687143 70.51) (xy 126.816853 70.475245) (xy 126.87 70.44456) (xy 126.87 71.515) (xy 127.532828 71.515) (xy 127.532844 71.514999) (xy 127.592372 71.508598) (xy 127.592379 71.508596) (xy 127.727086 71.458354) (xy 127.727093 71.45835) (xy 127.842187 71.37219) (xy 127.84219 71.372187) (xy 127.92835 71.257093) (xy 127.928354 71.257086) (xy 127.978596 71.122379) (xy 127.978598 71.122372) (xy 127.984999 71.062844) (xy 127.985 71.062827) (xy 127.985 70.25) (xy 127.06456 70.25) (xy 127.095245 70.196853) (xy 127.13 70.067143) (xy 127.13 69.932857) (xy 127.095245 69.803147) (xy 127.06456 69.75) (xy 127.985 69.75) (xy 127.985 68.937172) (xy 127.984999 68.937155) (xy 127.978598 68.877627) (xy 127.978596 68.87762) (xy 127.928354 68.742913) (xy 127.92835 68.742906) (xy 127.84219 68.627812) (xy 127.842187 68.627809) (xy 127.727093 68.541649) (xy 127.727086 68.541645) (xy 127.592379 68.491403) (xy 127.592372 68.491401) (xy 127.532844 68.485) (xy 126.87 68.485) (xy 126.87 69.555439) (xy 126.816853 69.524755) (xy 126.687143 69.49) (xy 126.552857 69.49) (xy 126.423147 69.524755) (xy 126.37 69.555439) (xy 126.37 68.485) (xy 125.707155 68.485) (xy 125.647627 68.491401) (xy 125.64762 68.491403) (xy 125.512913 68.541645) (xy 125.512906 68.541649) (xy 125.397812 68.627809) (xy 125.397809 68.627812) (xy 125.311649 68.742906) (xy 125.311645 68.742913) (xy 125.279456 68.829218) (xy 125.237585 68.885152) (xy 125.17212 68.909569) (xy 125.103847 68.894717) (xy 125.075593 68.873566) (xy 125.057512 68.855485) (xy 125.05751 68.855483) (xy 124.866433 68.716657) (xy 124.65599 68.60943) (xy 124.651499 68.607571) (xy 124.651532 68.607489) (xy 124.639095 68.602336) (xy 124.604176 68.584544) (xy 124.604167 68.58454) (xy 124.399757 68.518124) (xy 124.258229 68.495708) (xy 124.187467 68.4845) (xy 123.972533 68.4845) (xy 123.90177 68.495708) (xy 123.760243 68.518124) (xy 123.76024 68.518124) (xy 123.555831 68.584541) (xy 123.55583 68.584541) (xy 123.520904 68.602337) (xy 123.508472 68.607486) (xy 123.508507 68.607569) (xy 123.504005 68.609433) (xy 123.293566 68.716657) (xy 123.18455 68.795862) (xy 123.10249 68.855483) (xy 123.102488 68.855485) (xy 123.102487 68.855485) (xy 122.935485 69.022487) (xy 122.935478 69.022496) (xy 122.881373 69.096964) (xy 122.826043 69.13963) (xy 122.75643 69.145608) (xy 122.694635 69.113002) (xy 122.680738 69.096964) (xy 122.668954 69.080745) (xy 122.581545 68.960437) (xy 122.429563 68.808455) (xy 122.255678 68.68212) (xy 122.06417 68.584541) (xy 122.064167 68.58454) (xy 121.859757 68.518124) (xy 121.718229 68.495708) (xy 121.647467 68.4845) (xy 121.432533 68.4845) (xy 121.36177 68.495708) (xy 121.220243 68.518124) (xy 121.22024 68.518124) (xy 121.015832 68.58454) (xy 121.015829 68.584541) (xy 120.824321 68.68212) (xy 120.740657 68.742906) (xy 120.650437 68.808455) (xy 120.650435 68.808457) (xy 120.650434 68.808457) (xy 120.498457 68.960434) (xy 120.498457 68.960435) (xy 120.498455 68.960437) (xy 120.401023 69.094539) (xy 120.370318 69.136802) (xy 120.314988 69.179467) (xy 120.245374 69.185446) (xy 120.183579 69.15284) (xy 120.169682 69.136802) (xy 120.140738 69.096964) (xy 120.041545 68.960437) (xy 119.889563 68.808455) (xy 119.715678 68.68212) (xy 119.52417 68.584541) (xy 119.524167 68.58454) (xy 119.319757 68.518124) (xy 119.178229 68.495708) (xy 119.107467 68.4845) (xy 118.892533 68.4845) (xy 118.82177 68.495708) (xy 118.680243 68.518124) (xy 118.68024 68.518124) (xy 118.475832 68.58454) (xy 118.475829 68.584541) (xy 118.284321 68.68212) (xy 118.200657 68.742906) (xy 118.110437 68.808455) (xy 118.110435 68.808457) (xy 118.110434 68.808457) (xy 117.958457 68.960434) (xy 117.958457 68.960435) (xy 117.958455 68.960437) (xy 117.904198 69.035114) (xy 117.83212 69.134321) (xy 117.734541 69.325829) (xy 117.73454 69.325832) (xy 117.668124 69.53024) (xy 117.668124 69.530243) (xy 117.6345 69.742534) (xy 107.5005 69.742534) (xy 107.5005 68.503246) (xy 107.50067 68.496756) (xy 107.516592 68.192953) (xy 107.517949 68.180046) (xy 107.565028 67.882794) (xy 107.567723 67.870107) (xy 107.645627 67.579368) (xy 107.649636 67.567033) (xy 107.757493 67.286054) (xy 107.762763 67.274215) (xy 107.899415 67.006023) (xy 107.905891 66.994808) (xy 108.069819 66.74238) (xy 108.077434 66.731899) (xy 108.266858 66.497979) (xy 108.275525 66.488354) (xy 108.488354 66.275525) (xy 108.497979 66.266858) (xy 108.731899 66.077434) (xy 108.74238 66.069819) (xy 108.994808 65.905891) (xy 109.006023 65.899415) (xy 109.274215 65.762763) (xy 109.286054 65.757493) (xy 109.56704 65.649633) (xy 109.579368 65.645627) (xy 109.870107 65.567723) (xy 109.882786 65.565029) (xy 110.180046 65.517949) (xy 110.192951 65.516592) (xy 110.496756 65.500669) (xy 110.503246 65.5005) (xy 110.565892 65.5005) (xy 168.434108 65.5005) (xy 168.496754 65.5005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 117.266942 118.620185) (xy 117.287584 118.636819) (xy 121.95721 123.306445) (xy 121.990695 123.367768) (xy 121.985711 123.43746) (xy 121.943839 123.493393) (xy 121.878375 123.51781) (xy 121.850131 123.516599) (xy 121.686306 123.490651) (xy 121.647467 123.4845) (xy 121.432533 123.4845) (xy 121.376386 123.493393) (xy 121.220243 123.518124) (xy 121.22024 123.518124) (xy 121.015832 123.58454) (xy 121.015829 123.584541) (xy 120.824321 123.68212) (xy 120.650438 123.808454) (xy 120.555522 123.90337) (xy 120.494198 123.936854) (xy 120.424507 123.93187) (xy 120.368574 123.889998) (xy 120.351659 123.859021) (xy 120.308354 123.742913) (xy 120.30835 123.742906) (xy 120.22219 123.627812) (xy 120.222187 123.627809) (xy 120.107093 123.541649) (xy 120.107086 123.541645) (xy 119.972379 123.491403) (xy 119.972372 123.491401) (xy 119.912844 123.485) (xy 119.25 123.485) (xy 119.25 124.555439) (xy 119.196853 124.524755) (xy 119.067143 124.49) (xy 118.932857 124.49) (xy 118.803147 124.524755) (xy 118.75 124.555439) (xy 118.75 123.485) (xy 118.087155 123.485) (xy 118.027627 123.491401) (xy 118.02762 123.491403) (xy 117.892913 123.541645) (xy 117.892906 123.541649) (xy 117.777812 123.627809) (xy 117.777809 123.627812) (xy 117.691649 123.742906) (xy 117.691645 123.742913) (xy 117.641403 123.87762) (xy 117.641401 123.877627) (xy 117.635 123.937155) (xy 117.635 124.75) (xy 118.55544 124.75) (xy 118.524755 124.803147) (xy 118.49 124.932857) (xy 118.49 125.067143) (xy 118.524755 125.196853) (xy 118.55544 125.25) (xy 117.635 125.25) (xy 117.635 126.062844) (xy 117.641401 126.122372) (xy 117.641403 126.122379) (xy 117.691645 126.257086) (xy 117.691649 126.257093) (xy 117.777809 126.372187) (xy 117.777812 126.37219) (xy 117.892906 126.45835) (xy 117.892913 126.458354) (xy 118.02762 126.508596) (xy 118.027627 126.508598) (xy 118.087155 126.514999) (xy 118.087172 126.515) (xy 118.75 126.515) (xy 118.75 125.44456) (xy 118.803147 125.475245) (xy 118.932857 125.51) (xy 119.067143 125.51) (xy 119.196853 125.475245) (xy 119.25 125.44456) (xy 119.25 126.515) (xy 119.912828 126.515) (xy 119.912844 126.514999) (xy 119.972372 126.508598) (xy 119.972379 126.508596) (xy 120.107086 126.458354) (xy 120.107093 126.45835) (xy 120.222187 126.37219) (xy 120.22219 126.372187) (xy 120.30835 126.257093) (xy 120.308355 126.257084) (xy 120.351659 126.140979) (xy 120.393529 126.085045) (xy 120.458994 126.060627) (xy 120.527267 126.075478) (xy 120.555522 126.09663) (xy 120.650437 126.191545) (xy 120.824322 126.31788) (xy 120.859251 126.335677) (xy 121.015829 126.415458) (xy 121.015832 126.415459) (xy 121.206494 126.477408) (xy 121.220245 126.481876) (xy 121.432533 126.5155) (xy 121.432534 126.5155) (xy 121.647466 126.5155) (xy 121.647467 126.5155) (xy 121.859755 126.481876) (xy 121.859758 126.481875) (xy 121.859759 126.481875) (xy 122.064167 126.415459) (xy 122.06417 126.415458) (xy 122.092029 126.401263) (xy 122.255678 126.31788) (xy 122.429563 126.191545) (xy 122.581545 126.039563) (xy 122.70788 125.865678) (xy 122.707879 125.865678) (xy 122.709682 125.863198) (xy 122.765012 125.820532) (xy 122.834625 125.814553) (xy 122.89642 125.847159) (xy 122.910318 125.863198) (xy 122.91212 125.865678) (xy 123.038455 126.039563) (xy 123.190437 126.191545) (xy 123.364322 126.31788) (xy 123.399251 126.335677) (xy 123.555829 126.415458) (xy 123.555832 126.415459) (xy 123.746494 126.477408) (xy 123.760245 126.481876) (xy 123.972533 126.5155) (xy 123.972534 126.5155) (xy 123.97624 126.516087) (xy 124.039375 126.546016) (xy 124.076306 126.605328) (xy 124.075308 126.675191) (xy 124.044524 126.726239) (xy 123.907582 126.863182) (xy 123.846262 126.896666) (xy 123.819903 126.8995) (xy 117.931469 126.8995) (xy 117.86443 126.879815) (xy 117.843788 126.863181) (xy 117.036819 126.056212) (xy 117.003334 125.994889) (xy 117.0005 125.968531) (xy 117.0005 120.173374) (xy 117.000501 120.173361) (xy 117.000501 120.005258) (xy 116.959576 119.852528) (xy 116.959573 119.852523) (xy 116.880524 119.715604) (xy 116.880518 119.715596) (xy 115.977102 118.812181) (xy 115.943617 118.750858) (xy 115.948601 118.681167) (xy 115.990473 118.625233) (xy 116.055937 118.600816) (xy 116.064783 118.6005) (xy 117.199903 118.6005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 129.286069 68.620185) (xy 129.331824 68.672989) (xy 129.341768 68.742147) (xy 129.312743 68.805703) (xy 129.306711 68.812181) (xy 129.158457 68.960434) (xy 129.158457 68.960435) (xy 129.158455 68.960437) (xy 129.104198 69.035114) (xy 129.03212 69.134321) (xy 128.934541 69.325829) (xy 128.93454 69.325832) (xy 128.868124 69.53024) (xy 128.868124 69.530243) (xy 128.8345 69.742534) (xy 128.8345 70.257465) (xy 128.868124 70.469756) (xy 128.868124 70.469759) (xy 128.93454 70.674167) (xy 128.934541 70.67417) (xy 129.009117 70.820532) (xy 129.03212 70.865678) (xy 129.158455 71.039563) (xy 129.310437 71.191545) (xy 129.484322 71.31788) (xy 129.531794 71.342068) (xy 129.675829 71.415458) (xy 129.675832 71.415459) (xy 129.866494 71.477408) (xy 129.880245 71.481876) (xy 130.092533 71.5155) (xy 130.092534 71.5155) (xy 130.307466 71.5155) (xy 130.307467 71.5155) (xy 130.519755 71.481876) (xy 130.519758 71.481875) (xy 130.519759 71.481875) (xy 130.724167 71.415459) (xy 130.72417 71.415458) (xy 130.752029 71.401263) (xy 130.915678 71.31788) (xy 131.089563 71.191545) (xy 131.241545 71.039563) (xy 131.36788 70.865678) (xy 131.367879 70.865678) (xy 131.369682 70.863198) (xy 131.425012 70.820532) (xy 131.494625 70.814553) (xy 131.55642 70.847159) (xy 131.570318 70.863198) (xy 131.57212 70.865678) (xy 131.698455 71.039563) (xy 131.850437 71.191545) (xy 132.024322 71.31788) (xy 132.071794 71.342068) (xy 132.154274 71.384094) (xy 132.20507 71.432069) (xy 132.221865 71.49989) (xy 132.199328 71.566025) (xy 132.185661 71.58226) (xy 132.11821 71.649711) (xy 132.030609 71.780814) (xy 132.030602 71.780827) (xy 131.970264 71.926498) (xy 131.970261 71.92651) (xy 131.9395 72.081153) (xy 131.9395 72.238846) (xy 131.970261 72.393489) (xy 131.970264 72.393501) (xy 132.030602 72.539172) (xy 132.030609 72.539185) (xy 132.11821 72.670288) (xy 132.118213 72.670292) (xy 132.229707 72.781786) (xy 132.229711 72.781789) (xy 132.360814 72.86939) (xy 132.360827 72.869397) (xy 132.506498 72.929735) (xy 132.506503 72.929737) (xy 132.661153 72.960499) (xy 132.661156 72.9605) (xy 132.661158 72.9605) (xy 132.818844 72.9605) (xy 132.818845 72.960499) (xy 132.973497 72.929737) (xy 133.119179 72.869394) (xy 133.250289 72.781789) (xy 133.361789 72.670289) (xy 133.449394 72.539179) (xy 133.509737 72.393497) (xy 133.533883 72.27211) (xy 133.566268 72.210199) (xy 133.626984 72.175625) (xy 133.696753 72.179364) (xy 133.753425 72.220231) (xy 133.779006 72.285249) (xy 133.7795 72.296301) (xy 133.7795 73.398097) (xy 133.812445 73.606102) (xy 133.80349 73.675395) (xy 133.758494 73.728847) (xy 133.691743 73.749487) (xy 133.689972 73.7495) (xy 126.92289 73.7495) (xy 126.855851 73.729815) (xy 126.835209 73.713181) (xy 125.616819 72.494791) (xy 125.583334 72.433468) (xy 125.5805 72.40711) (xy 125.5805 71.639) (xy 125.600185 71.571961) (xy 125.652989 71.526206) (xy 125.7045 71.515) (xy 126.37 71.515) (xy 126.37 70.44456) (xy 126.423147 70.475245) (xy 126.552857 70.51) (xy 126.687143 70.51) (xy 126.816853 70.475245) (xy 126.87 70.44456) (xy 126.87 71.515) (xy 127.532828 71.515) (xy 127.532844 71.514999) (xy 127.592372 71.508598) (xy 127.592379 71.508596) (xy 127.727086 71.458354) (xy 127.727093 71.45835) (xy 127.842187 71.37219) (xy 127.84219 71.372187) (xy 127.92835 71.257093) (xy 127.928354 71.257086) (xy 127.978596 71.122379) (xy 127.978598 71.122372) (xy 127.984999 71.062844) (xy 127.985 71.062827) (xy 127.985 70.25) (xy 127.06456 70.25) (xy 127.095245 70.196853) (xy 127.13 70.067143) (xy 127.13 69.932857) (xy 127.095245 69.803147) (xy 127.06456 69.75) (xy 127.985 69.75) (xy 127.985 68.937172) (xy 127.984999 68.937155) (xy 127.978598 68.877627) (xy 127.978596 68.87762) (xy 127.937649 68.767833) (xy 127.932665 68.698141) (xy 127.96615 68.636818) (xy 128.027474 68.603334) (xy 128.053831 68.6005) (xy 129.21903 68.6005) ) ) (filled_polygon (layer "B.Cu") (pts (xy 152.461425 68.270185) (xy 152.50718 68.322989) (xy 152.517124 68.392147) (xy 152.488099 68.455703) (xy 152.429321 68.493477) (xy 152.413784 68.496973) (xy 152.280243 68.518124) (xy 152.28024 68.518124) (xy 152.075832 68.58454) (xy 152.075829 68.584541) (xy 151.884321 68.68212) (xy 151.801702 68.742147) (xy 151.710437 68.808455) (xy 151.710435 68.808457) (xy 151.710434 68.808457) (xy 151.558457 68.960434) (xy 151.558457 68.960435) (xy 151.558455 68.960437) (xy 151.504198 69.035114) (xy 151.43212 69.134321) (xy 151.334541 69.325829) (xy 151.33454 69.325832) (xy 151.268124 69.53024) (xy 151.268124 69.530243) (xy 151.2345 69.742534) (xy 151.2345 70.257465) (xy 151.268124 70.469756) (xy 151.268124 70.469759) (xy 151.33454 70.674167) (xy 151.334541 70.67417) (xy 151.409117 70.820532) (xy 151.43212 70.865678) (xy 151.558455 71.039563) (xy 151.710437 71.191545) (xy 151.884322 71.31788) (xy 151.931794 71.342068) (xy 152.075829 71.415458) (xy 152.075832 71.415459) (xy 152.266494 71.477408) (xy 152.280245 71.481876) (xy 152.492533 71.5155) (xy 152.492534 71.5155) (xy 152.707466 71.5155) (xy 152.707467 71.5155) (xy 152.919755 71.481876) (xy 152.919758 71.481875) (xy 152.919759 71.481875) (xy 153.124167 71.415459) (xy 153.12417 71.415458) (xy 153.152029 71.401263) (xy 153.315678 71.31788) (xy 153.489563 71.191545) (xy 153.641545 71.039563) (xy 153.76788 70.865678) (xy 153.767879 70.865678) (xy 153.769682 70.863198) (xy 153.825012 70.820532) (xy 153.894625 70.814553) (xy 153.95642 70.847159) (xy 153.970318 70.863198) (xy 153.97212 70.865678) (xy 154.098455 71.039563) (xy 154.250437 71.191545) (xy 154.424322 71.31788) (xy 154.471794 71.342068) (xy 154.554274 71.384094) (xy 154.60507 71.432069) (xy 154.621865 71.49989) (xy 154.599328 71.566025) (xy 154.585661 71.58226) (xy 154.51821 71.649711) (xy 154.430609 71.780814) (xy 154.430602 71.780827) (xy 154.370264 71.926498) (xy 154.370261 71.92651) (xy 154.3395 72.081153) (xy 154.3395 72.238846) (xy 154.370261 72.393489) (xy 154.370264 72.393501) (xy 154.430602 72.539172) (xy 154.430609 72.539185) (xy 154.51821 72.670288) (xy 154.518213 72.670292) (xy 154.629707 72.781786) (xy 154.629711 72.781789) (xy 154.760814 72.86939) (xy 154.760827 72.869397) (xy 154.906498 72.929735) (xy 154.906503 72.929737) (xy 155.061153 72.960499) (xy 155.061156 72.9605) (xy 155.061158 72.9605) (xy 155.218844 72.9605) (xy 155.218845 72.960499) (xy 155.373497 72.929737) (xy 155.519179 72.869394) (xy 155.650289 72.781789) (xy 155.761789 72.670289) (xy 155.849394 72.539179) (xy 155.909737 72.393497) (xy 155.933883 72.27211) (xy 155.966268 72.210199) (xy 156.026984 72.175625) (xy 156.096753 72.179364) (xy 156.153425 72.220231) (xy 156.179006 72.285249) (xy 156.1795 72.296301) (xy 156.1795 72.64711) (xy 156.159815 72.714149) (xy 156.143181 72.734791) (xy 155.164792 73.713181) (xy 155.103469 73.746666) (xy 155.077111 73.7495) (xy 148.1045 73.7495) (xy 148.037461 73.729815) (xy 147.991706 73.677011) (xy 147.9805 73.6255) (xy 147.9805 71.639) (xy 148.000185 71.571961) (xy 148.052989 71.526206) (xy 148.1045 71.515) (xy 148.77 71.515) (xy 148.77 70.44456) (xy 148.823147 70.475245) (xy 148.952857 70.51) (xy 149.087143 70.51) (xy 149.216853 70.475245) (xy 149.27 70.44456) (xy 149.27 71.515) (xy 149.932828 71.515) (xy 149.932844 71.514999) (xy 149.992372 71.508598) (xy 149.992379 71.508596) (xy 150.127086 71.458354) (xy 150.127093 71.45835) (xy 150.242187 71.37219) (xy 150.24219 71.372187) (xy 150.32835 71.257093) (xy 150.328354 71.257086) (xy 150.378596 71.122379) (xy 150.378598 71.122372) (xy 150.384999 71.062844) (xy 150.385 71.062827) (xy 150.385 70.25) (xy 149.46456 70.25) (xy 149.495245 70.196853) (xy 149.53 70.067143) (xy 149.53 69.932857) (xy 149.495245 69.803147) (xy 149.46456 69.75) (xy 150.385 69.75) (xy 150.385 68.937172) (xy 150.384999 68.937155) (xy 150.378598 68.877627) (xy 150.378596 68.87762) (xy 150.328354 68.742913) (xy 150.32835 68.742906) (xy 150.24219 68.627812) (xy 150.242187 68.627809) (xy 150.127093 68.541649) (xy 150.127086 68.541645) (xy 149.990446 68.490682) (xy 149.934512 68.448811) (xy 149.910095 68.383347) (xy 149.924947 68.315074) (xy 149.974352 68.265668) (xy 150.033779 68.2505) (xy 152.394386 68.2505) ) ) (filled_polygon (layer "B.Cu") (pts (xy 168.503244 65.50067) (xy 168.807046 65.516592) (xy 168.819953 65.517949) (xy 168.951089 65.538718) (xy 169.117209 65.565028) (xy 169.129896 65.567724) (xy 169.420625 65.645625) (xy 169.432965 65.649635) (xy 169.713938 65.75749) (xy 169.72579 65.762767) (xy 169.993968 65.899411) (xy 170.005199 65.905896) (xy 170.257608 66.069812) (xy 170.268109 66.077441) (xy 170.50201 66.26685) (xy 170.511655 66.275535) (xy 170.724464 66.488344) (xy 170.733149 66.497989) (xy 170.922558 66.73189) (xy 170.930187 66.742391) (xy 171.094101 66.994796) (xy 171.100591 67.006036) (xy 171.237231 67.274206) (xy 171.24251 67.286064) (xy 171.350363 67.567033) (xy 171.354374 67.579376) (xy 171.432273 67.870097) (xy 171.434971 67.882794) (xy 171.48205 68.180046) (xy 171.483407 68.192953) (xy 171.49933 68.496756) (xy 171.4995 68.503246) (xy 171.4995 126.496753) (xy 171.49933 126.503243) (xy 171.483407 126.807046) (xy 171.48205 126.819953) (xy 171.434971 127.117205) (xy 171.432273 127.129902) (xy 171.354374 127.420623) (xy 171.350363 127.432966) (xy 171.24251 127.713935) (xy 171.237231 127.725793) (xy 171.100591 127.993963) (xy 171.094101 128.005203) (xy 170.930187 128.257608) (xy 170.922558 128.268109) (xy 170.733149 128.50201) (xy 170.724464 128.511655) (xy 170.511655 128.724464) (xy 170.50201 128.733149) (xy 170.268109 128.922558) (xy 170.257608 128.930187) (xy 170.005203 129.094101) (xy 169.993963 129.100591) (xy 169.725793 129.237231) (xy 169.713935 129.24251) (xy 169.432966 129.350363) (xy 169.420623 129.354374) (xy 169.129902 129.432273) (xy 169.117205 129.434971) (xy 168.819953 129.48205) (xy 168.807046 129.483407) (xy 168.503244 129.49933) (xy 168.496754 129.4995) (xy 110.503246 129.4995) (xy 110.496756 129.49933) (xy 110.192953 129.483407) (xy 110.180046 129.48205) (xy 109.882794 129.434971) (xy 109.870097 129.432273) (xy 109.579376 129.354374) (xy 109.567033 129.350363) (xy 109.286064 129.24251) (xy 109.274206 129.237231) (xy 109.006036 129.100591) (xy 108.994796 129.094101) (xy 108.742391 128.930187) (xy 108.73189 128.922558) (xy 108.497989 128.733149) (xy 108.488344 128.724464) (xy 108.275535 128.511655) (xy 108.26685 128.50201) (xy 108.077441 128.268109) (xy 108.069812 128.257608) (xy 107.905896 128.005199) (xy 107.899408 127.993963) (xy 107.762768 127.725793) (xy 107.757489 127.713935) (xy 107.649636 127.432966) (xy 107.645625 127.420623) (xy 107.612411 127.296666) (xy 107.567724 127.129896) (xy 107.565028 127.117205) (xy 107.517949 126.819953) (xy 107.516592 126.807046) (xy 107.50067 126.503243) (xy 107.5005 126.496753) (xy 107.5005 117.526112) (xy 108.149498 117.526112) (xy 108.167523 117.59338) (xy 108.190423 117.678843) (xy 108.211718 117.715726) (xy 108.227049 117.74228) (xy 108.269479 117.815773) (xy 108.388349 117.934643) (xy 108.388355 117.934648) (xy 110.018081 119.564374) (xy 110.018091 119.564385) (xy 110.022421 119.568715) (xy 110.022422 119.568716) (xy 110.134226 119.68052) (xy 110.134228 119.680521) (xy 110.134232 119.680524) (xy 110.271151 119.759573) (xy 110.271158 119.759577) (xy 110.382961 119.789534) (xy 110.423884 119.8005) (xy 110.423885 119.8005) (xy 114.084217 119.8005) (xy 114.151256 119.820185) (xy 114.171898 119.836819) (xy 114.963181 120.628102) (xy 114.996666 120.689425) (xy 114.9995 120.715783) (xy 114.9995 126.51333) (xy 114.999499 126.513348) (xy 114.999499 126.679054) (xy 114.999498 126.679054) (xy 114.999499 126.679057) (xy 115.040423 126.831785) (xy 115.040424 126.831787) (xy 115.040423 126.831787) (xy 115.050844 126.849835) (xy 115.050845 126.849837) (xy 115.119475 126.968709) (xy 115.119481 126.968717) (xy 115.238349 127.087585) (xy 115.238355 127.08759) (xy 116.815139 128.664374) (xy 116.815149 128.664385) (xy 116.819479 128.668715) (xy 116.81948 128.668716) (xy 116.931284 128.78052) (xy 116.931286 128.780521) (xy 116.93129 128.780524) (xy 116.98161 128.809576) (xy 116.981615 128.809578) (xy 117.068209 128.859574) (xy 117.06821 128.859574) (xy 117.068215 128.859577) (xy 117.220943 128.9005) (xy 117.379057 128.9005) (xy 136.25089 128.9005) (xy 136.250906 128.900501) (xy 136.258502 128.900501) (xy 136.416613 128.900501) (xy 136.416616 128.900501) (xy 136.569344 128.859577) (xy 136.655946 128.809577) (xy 136.65595 128.809575) (xy 136.706268 128.780524) (xy 136.706267 128.780524) (xy 136.706275 128.78052) (xy 136.818079 128.668716) (xy 136.818079 128.668714) (xy 136.828283 128.658511) (xy 136.828287 128.658506) (xy 139.373713 126.11308) (xy 139.373716 126.113079) (xy 139.48552 126.001275) (xy 139.535639 125.914463) (xy 139.564577 125.864344) (xy 139.6055 125.711617) (xy 139.6055 125.553502) (xy 139.6055 124.288384) (xy 139.604728 124.2855) (xy 139.564577 124.135656) (xy 139.535639 124.085536) (xy 139.48552 123.998725) (xy 139.373716 123.886921) (xy 139.373715 123.88692) (xy 139.369385 123.88259) (xy 139.369374 123.88258) (xy 138.810149 123.323355) (xy 138.810147 123.323352) (xy 138.691276 123.204481) (xy 138.691271 123.204477) (xy 138.564497 123.131285) (xy 138.564496 123.131284) (xy 138.554346 123.125423) (xy 138.493252 123.109053) (xy 138.401616 123.084499) (xy 138.243502 123.084499) (xy 138.235906 123.084499) (xy 138.23589 123.0845) (xy 136.701669 123.0845) (xy 136.701653 123.084499) (xy 136.694057 123.084499) (xy 136.535943 123.084499) (xy 136.459579 123.104961) (xy 136.383212 123.125423) (xy 136.373063 123.131284) (xy 136.37306 123.131286) (xy 136.254404 123.199791) (xy 136.186504 123.216263) (xy 136.120477 123.19341) (xy 136.077287 123.138488) (xy 136.070646 123.068935) (xy 136.070788 123.068211) (xy 136.080482 123.019481) (xy 136.090451 122.96936) (xy 136.1005 122.918844) (xy 136.1005 122.761155) (xy 136.100499 122.761153) (xy 136.080536 122.660793) (xy 136.069737 122.606503) (xy 136.069735 122.606498) (xy 136.009397 122.460827) (xy 136.00939 122.460814) (xy 135.921789 122.329711) (xy 135.921786 122.329707) (xy 135.810292 122.218213) (xy 135.810288 122.21821) (xy 135.679185 122.130609) (xy 135.679172 122.130602) (xy 135.533501 122.070264) (xy 135.533489 122.070261) (xy 135.378845 122.0395) (xy 135.378842 122.0395) (xy 135.221158 122.0395) (xy 135.221155 122.0395) (xy 135.06651 122.070261) (xy 135.066498 122.070264) (xy 134.920827 122.130602) (xy 134.920814 122.130609) (xy 134.789711 122.21821) (xy 134.789707 122.218213) (xy 134.678213 122.329707) (xy 134.67821 122.329711) (xy 134.590609 122.460814) (xy 134.590602 122.460827) (xy 134.530264 122.606498) (xy 134.530261 122.60651) (xy 134.4995 122.761153) (xy 134.4995 122.918846) (xy 134.530261 123.073489) (xy 134.530264 123.073501) (xy 134.590602 123.219172) (xy 134.590609 123.219185) (xy 134.67821 123.350288) (xy 134.678213 123.350292) (xy 134.74566 123.417739) (xy 134.779145 123.479062) (xy 134.774161 123.548754) (xy 134.732289 123.604687) (xy 134.714275 123.615904) (xy 134.584323 123.682118) (xy 134.462678 123.770499) (xy 134.410437 123.808455) (xy 134.410435 123.808457) (xy 134.410434 123.808457) (xy 134.258457 123.960434) (xy 134.258457 123.960435) (xy 134.258455 123.960437) (xy 134.167567 124.085533) (xy 134.130318 124.136802) (xy 134.074988 124.179467) (xy 134.005374 124.185446) (xy 133.943579 124.15284) (xy 133.929682 124.136802) (xy 133.892435 124.085536) (xy 133.801545 123.960437) (xy 133.649563 123.808455) (xy 133.475678 123.68212) (xy 133.475674 123.682118) (xy 133.28417 123.584541) (xy 133.284167 123.58454) (xy 133.079757 123.518124) (xy 132.923614 123.493393) (xy 132.867467 123.4845) (xy 132.652533 123.4845) (xy 132.596386 123.493393) (xy 132.440243 123.518124) (xy 132.44024 123.518124) (xy 132.235832 123.58454) (xy 132.235829 123.584541) (xy 132.044321 123.68212) (xy 131.870438 123.808454) (xy 131.775522 123.90337) (xy 131.714198 123.936854) (xy 131.644507 123.93187) (xy 131.588574 123.889998) (xy 131.571659 123.859021) (xy 131.528354 123.742913) (xy 131.52835 123.742906) (xy 131.44219 123.627812) (xy 131.442187 123.627809) (xy 131.327093 123.541649) (xy 131.327086 123.541645) (xy 131.192379 123.491403) (xy 131.192372 123.491401) (xy 131.132844 123.485) (xy 130.47 123.485) (xy 130.47 124.555439) (xy 130.416853 124.524755) (xy 130.287143 124.49) (xy 130.152857 124.49) (xy 130.023147 124.524755) (xy 129.97 124.555439) (xy 129.97 123.485) (xy 129.307155 123.485) (xy 129.247627 123.491401) (xy 129.24762 123.491403) (xy 129.112913 123.541645) (xy 129.112906 123.541649) (xy 128.997812 123.627809) (xy 128.997809 123.627812) (xy 128.911649 123.742906) (xy 128.911645 123.742913) (xy 128.861403 123.87762) (xy 128.861401 123.877627) (xy 128.855 123.937155) (xy 128.855 124.75) (xy 129.77544 124.75) (xy 129.744755 124.803147) (xy 129.71 124.932857) (xy 129.71 125.067143) (xy 129.744755 125.196853) (xy 129.77544 125.25) (xy 128.855 125.25) (xy 128.855 126.062844) (xy 128.861401 126.122372) (xy 128.861403 126.122379) (xy 128.911645 126.257086) (xy 128.911649 126.257093) (xy 128.997809 126.372187) (xy 128.997812 126.37219) (xy 129.112906 126.45835) (xy 129.112913 126.458354) (xy 129.24762 126.508596) (xy 129.247627 126.508598) (xy 129.307155 126.514999) (xy 129.307172 126.515) (xy 129.97 126.515) (xy 129.97 125.44456) (xy 130.023147 125.475245) (xy 130.152857 125.51) (xy 130.287143 125.51) (xy 130.416853 125.475245) (xy 130.47 125.44456) (xy 130.47 126.515) (xy 131.132828 126.515) (xy 131.132844 126.514999) (xy 131.192372 126.508598) (xy 131.192379 126.508596) (xy 131.327086 126.458354) (xy 131.327093 126.45835) (xy 131.442187 126.37219) (xy 131.44219 126.372187) (xy 131.52835 126.257093) (xy 131.528355 126.257084) (xy 131.571659 126.140979) (xy 131.613529 126.085045) (xy 131.678994 126.060627) (xy 131.747267 126.075478) (xy 131.775522 126.09663) (xy 131.870437 126.191545) (xy 132.044322 126.31788) (xy 132.079251 126.335677) (xy 132.235829 126.415458) (xy 132.235832 126.415459) (xy 132.426494 126.477408) (xy 132.440245 126.481876) (xy 132.652533 126.5155) (xy 132.652534 126.5155) (xy 132.867466 126.5155) (xy 132.867467 126.5155) (xy 133.079755 126.481876) (xy 133.079758 126.481875) (xy 133.079759 126.481875) (xy 133.284167 126.415459) (xy 133.28417 126.415458) (xy 133.312029 126.401263) (xy 133.475678 126.31788) (xy 133.649563 126.191545) (xy 133.801545 126.039563) (xy 133.92788 125.865678) (xy 133.927879 125.865678) (xy 133.929682 125.863198) (xy 133.985012 125.820532) (xy 134.054625 125.814553) (xy 134.11642 125.847159) (xy 134.130318 125.863198) (xy 134.13212 125.865678) (xy 134.258455 126.039563) (xy 134.410437 126.191545) (xy 134.584322 126.31788) (xy 134.619251 126.335677) (xy 134.775829 126.415458) (xy 134.775832 126.415459) (xy 134.966494 126.477408) (xy 134.980245 126.481876) (xy 135.192533 126.5155) (xy 135.192534 126.5155) (xy 135.407466 126.5155) (xy 135.407467 126.5155) (xy 135.619755 126.481876) (xy 135.619758 126.481875) (xy 135.619759 126.481875) (xy 135.824167 126.415459) (xy 135.82417 126.415458) (xy 135.852029 126.401263) (xy 136.015678 126.31788) (xy 136.189563 126.191545) (xy 136.341545 126.039563) (xy 136.46788 125.865678) (xy 136.467879 125.865678) (xy 136.469682 125.863198) (xy 136.525012 125.820532) (xy 136.594625 125.814553) (xy 136.65642 125.847159) (xy 136.670318 125.863198) (xy 136.798452 126.039559) (xy 136.798457 126.039565) (xy 136.903083 126.144191) (xy 136.936568 126.205514) (xy 136.931584 126.275206) (xy 136.903083 126.319553) (xy 135.959457 127.263181) (xy 135.898134 127.296666) (xy 135.871776 127.2995) (xy 125.469097 127.2995) (xy 125.402058 127.279815) (xy 125.356303 127.227011) (xy 125.346359 127.157853) (xy 125.375384 127.094297) (xy 125.381416 127.087819) (xy 125.500526 126.968709) (xy 126.010359 126.458874) (xy 126.07168 126.425391) (xy 126.136356 126.428626) (xy 126.290408 126.478679) (xy 126.300245 126.481876) (xy 126.512533 126.5155) (xy 126.512534 126.5155) (xy 126.727466 126.5155) (xy 126.727467 126.5155) (xy 126.939755 126.481876) (xy 126.939758 126.481875) (xy 126.939759 126.481875) (xy 127.144167 126.415459) (xy 127.14417 126.415458) (xy 127.172029 126.401263) (xy 127.335678 126.31788) (xy 127.509563 126.191545) (xy 127.661545 126.039563) (xy 127.78788 125.865678) (xy 127.885458 125.67417) (xy 127.951876 125.469755) (xy 127.9855 125.257467) (xy 127.9855 124.742533) (xy 127.951876 124.530245) (xy 127.951875 124.530241) (xy 127.951875 124.53024) (xy 127.885459 124.325832) (xy 127.885458 124.325829) (xy 127.835739 124.228251) (xy 127.78788 124.134322) (xy 127.661545 123.960437) (xy 127.509563 123.808455) (xy 127.335678 123.68212) (xy 127.335674 123.682118) (xy 127.14417 123.584541) (xy 127.144167 123.58454) (xy 126.939757 123.518124) (xy 126.783614 123.493393) (xy 126.727467 123.4845) (xy 126.512533 123.4845) (xy 126.456386 123.493393) (xy 126.300243 123.518124) (xy 126.30024 123.518124) (xy 126.095832 123.58454) (xy 126.095829 123.584541) (xy 125.904321 123.68212) (xy 125.820657 123.742906) (xy 125.730437 123.808455) (xy 125.730435 123.808457) (xy 125.730434 123.808457) (xy 125.578457 123.960434) (xy 125.578457 123.960435) (xy 125.578455 123.960437) (xy 125.487567 124.085533) (xy 125.450318 124.136802) (xy 125.394988 124.179467) (xy 125.325374 124.185446) (xy 125.263579 124.15284) (xy 125.249682 124.136802) (xy 125.212435 124.085536) (xy 125.121545 123.960437) (xy 124.969563 123.808455) (xy 124.795678 123.68212) (xy 124.795674 123.682118) (xy 124.665725 123.615905) (xy 124.614929 123.56793) (xy 124.598134 123.500109) (xy 124.620672 123.433974) (xy 124.634333 123.417744) (xy 124.701789 123.350289) (xy 124.789394 123.219179) (xy 124.795483 123.20448) (xy 124.8258 123.131286) (xy 124.849737 123.073497) (xy 124.8805 122.918842) (xy 124.8805 122.761158) (xy 124.8805 122.761155) (xy 124.880499 122.761153) (xy 124.860536 122.660793) (xy 124.849737 122.606503) (xy 124.849735 122.606498) (xy 124.789397 122.460827) (xy 124.78939 122.460814) (xy 124.701789 122.329711) (xy 124.701786 122.329707) (xy 124.590292 122.218213) (xy 124.590288 122.21821) (xy 124.459185 122.130609) (xy 124.459172 122.130602) (xy 124.313501 122.070264) (xy 124.313489 122.070261) (xy 124.158845 122.0395) (xy 124.158842 122.0395) (xy 124.001158 122.0395) (xy 124.001155 122.0395) (xy 123.84651 122.070261) (xy 123.846498 122.070264) (xy 123.700827 122.130602) (xy 123.700814 122.130609) (xy 123.569711 122.21821) (xy 123.569707 122.218213) (xy 123.458213 122.329707) (xy 123.45821 122.329711) (xy 123.370609 122.460814) (xy 123.370602 122.460827) (xy 123.310264 122.606498) (xy 123.310261 122.606508) (xy 123.296701 122.674679) (xy 123.264316 122.73659) (xy 123.2036 122.771164) (xy 123.13383 122.767423) (xy 123.087403 122.738168) (xy 117.98759 117.638355) (xy 117.987588 117.638352) (xy 117.868715 117.519479) (xy 117.824789 117.494119) (xy 117.766271 117.460334) (xy 117.731785 117.440423) (xy 117.579057 117.399499) (xy 117.420943 117.399499) (xy 117.413347 117.399499) (xy 117.413331 117.3995) (xy 111.300097 117.3995) (xy 111.233058 117.379815) (xy 111.212416 117.363181) (xy 111.068785 117.21955) (xy 127.288084 117.21955) (xy 127.288436 117.222897) (xy 127.288946 117.242265) (xy 127.288771 117.245627) (xy 127.2958 117.293972) (xy 127.296412 117.298861) (xy 127.301515 117.34746) (xy 127.302511 117.350666) (xy 127.306794 117.36958) (xy 127.307276 117.372899) (xy 127.307277 117.372902) (xy 127.323601 117.418939) (xy 127.325155 117.423617) (xy 127.33964 117.47028) (xy 127.339644 117.470291) (xy 127.34125 117.473249) (xy 127.349128 117.490934) (xy 127.350258 117.494119) (xy 127.36536 117.51948) (xy 127.375246 117.536082) (xy 127.377682 117.540365) (xy 127.400996 117.583313) (xy 127.401003 117.583323) (xy 127.403146 117.5859) (xy 127.414337 117.601728) (xy 127.41606 117.604621) (xy 127.416064 117.604625) (xy 127.434234 117.624789) (xy 127.464489 117.687768) (xy 127.455893 117.757107) (xy 127.446612 117.774332) (xy 127.434192 117.798111) (xy 127.427923 117.808779) (xy 127.413934 117.830074) (xy 127.413934 117.830075) (xy 127.403872 117.854914) (xy 127.398856 117.865763) (xy 127.386447 117.889521) (xy 127.379281 117.913978) (xy 127.375215 117.925661) (xy 127.36565 117.949274) (xy 127.365648 117.949283) (xy 127.360626 117.975603) (xy 127.357823 117.98722) (xy 127.350288 118.01294) (xy 127.350286 118.012952) (xy 127.348031 118.038321) (xy 127.346321 118.050578) (xy 127.341546 118.075604) (xy 127.341756 118.102411) (xy 127.341273 118.114355) (xy 127.338901 118.14105) (xy 127.341639 118.166381) (xy 127.342353 118.178736) (xy 127.342552 118.20421) (xy 127.342552 118.204216) (xy 127.347988 118.230469) (xy 127.349844 118.242271) (xy 127.352726 118.268915) (xy 127.352727 118.26892) (xy 127.360354 118.293228) (xy 127.363465 118.305205) (xy 127.368631 118.330151) (xy 127.379077 118.354825) (xy 127.3832 118.36604) (xy 127.391229 118.391625) (xy 127.391233 118.391634) (xy 127.403454 118.413983) (xy 127.408844 118.425127) (xy 127.418775 118.448581) (xy 127.418775 118.448582) (xy 127.433839 118.47075) (xy 127.440072 118.480947) (xy 127.452178 118.503084) (xy 127.452935 118.504468) (xy 127.469291 118.524016) (xy 127.476737 118.533874) (xy 127.491063 118.554955) (xy 127.491065 118.554957) (xy 127.491066 118.554958) (xy 127.510155 118.573751) (xy 127.518262 118.582541) (xy 127.535463 118.603097) (xy 127.535473 118.603108) (xy 127.555313 118.619075) (xy 127.564557 118.627308) (xy 127.582713 118.645182) (xy 127.605115 118.659898) (xy 127.614775 118.666933) (xy 127.635658 118.683741) (xy 127.658244 118.695537) (xy 127.66891 118.701806) (xy 127.690204 118.715795) (xy 127.715054 118.72586) (xy 127.725899 118.730875) (xy 127.749654 118.743284) (xy 127.774096 118.750444) (xy 127.785796 118.754516) (xy 127.809404 118.76408) (xy 127.809403 118.76408) (xy 127.819374 118.765981) (xy 127.83573 118.769101) (xy 127.847351 118.771905) (xy 127.873077 118.779443) (xy 127.898464 118.781698) (xy 127.910709 118.783407) (xy 127.935737 118.788183) (xy 127.96255 118.787972) (xy 127.974463 118.788454) (xy 128.001181 118.790829) (xy 128.026518 118.788089) (xy 128.038855 118.787375) (xy 132.681308 118.751042) (xy 132.729541 118.760398) (xy 132.735663 118.762922) (xy 132.861843 118.787805) (xy 132.990241 118.787593) (xy 132.990453 118.787593) (xy 132.990454 118.787592) (xy 133.116549 118.762294) (xy 133.130041 118.756679) (xy 133.176713 118.747165) (xy 134.883654 118.733806) (xy 134.921377 118.740119) (xy 134.921425 118.739927) (xy 134.923969 118.740553) (xy 134.925911 118.740878) (xy 134.926499 118.741085) (xy 134.927339 118.741382) (xy 134.92734 118.741382) (xy 134.927343 118.741383) (xy 135.002359 118.752188) (xy 135.054635 118.759718) (xy 135.183062 118.752867) (xy 135.255073 118.734506) (xy 135.284736 118.730667) (xy 136.380384 118.722092) (xy 136.41792 118.727602) (xy 136.423647 118.72937) (xy 136.551575 118.742591) (xy 136.679625 118.730601) (xy 136.700146 118.724483) (xy 136.734594 118.71932) (xy 138.007637 118.709357) (xy 138.024577 118.710387) (xy 138.035443 118.711801) (xy 138.076654 118.709033) (xy 138.083972 118.708759) (xy 138.125283 118.708437) (xy 138.136008 118.706215) (xy 138.152843 118.703918) (xy 138.163764 118.703186) (xy 138.203674 118.692423) (xy 138.210752 118.690738) (xy 138.251221 118.682359) (xy 138.261308 118.678087) (xy 138.277361 118.672555) (xy 138.287939 118.669703) (xy 138.32495 118.651376) (xy 138.331615 118.648318) (xy 138.369653 118.632214) (xy 138.378702 118.626063) (xy 138.393389 118.617492) (xy 138.403196 118.612637) (xy 138.435949 118.587421) (xy 138.441848 118.583151) (xy 138.476025 118.559927) (xy 138.483701 118.552128) (xy 138.496419 118.540869) (xy 138.505105 118.534183) (xy 138.532298 118.503073) (xy 138.537263 118.497721) (xy 138.566252 118.468277) (xy 138.572267 118.459118) (xy 138.582538 118.445602) (xy 138.58975 118.437354) (xy 138.610352 118.401536) (xy 138.614183 118.39531) (xy 138.636864 118.360786) (xy 138.640973 118.350639) (xy 138.64842 118.33536) (xy 138.653878 118.325873) (xy 138.667096 118.286725) (xy 138.669631 118.279893) (xy 138.68515 118.241585) (xy 138.687203 118.230821) (xy 138.691522 118.214394) (xy 138.695025 118.204023) (xy 138.698314 118.178736) (xy 138.700352 118.163067) (xy 138.701513 118.155819) (xy 138.709253 118.115253) (xy 138.709167 118.104311) (xy 138.710199 118.087339) (xy 138.711611 118.076487) (xy 138.708843 118.035272) (xy 138.708569 118.027944) (xy 138.708247 117.986649) (xy 138.707177 117.981482) (xy 138.706027 117.975927) (xy 138.703728 117.959081) (xy 138.702996 117.948167) (xy 138.702995 117.948161) (xy 138.692239 117.908275) (xy 138.690547 117.901171) (xy 138.682169 117.860709) (xy 138.677903 117.850635) (xy 138.672365 117.834568) (xy 138.669513 117.823991) (xy 138.651165 117.786933) (xy 138.648128 117.780313) (xy 138.638303 117.757107) (xy 138.632026 117.74228) (xy 138.632024 117.742277) (xy 138.625869 117.733221) (xy 138.617306 117.718548) (xy 138.370244 117.21955) (xy 137.871727 116.212682) (xy 137.863684 116.191933) (xy 137.855332 116.162878) (xy 137.855329 116.162873) (xy 137.855328 116.162869) (xy 137.796373 116.048587) (xy 137.79637 116.048583) (xy 137.796369 116.048581) (xy 137.789054 116.039397) (xy 137.774924 116.017165) (xy 137.774757 116.016828) (xy 137.308188 115.074485) (xy 142.451589 115.074485) (xy 142.451589 115.384375) (xy 142.451662 115.47634) (xy 142.451667 115.478119) (xy 142.451668 115.478119) (xy 142.451668 115.47823) (xy 142.452011 115.550271) (xy 142.452012 115.550372) (xy 142.452059 115.555229) (xy 142.452863 115.610245) (xy 142.453134 115.621024) (xy 142.454585 115.661626) (xy 142.455846 115.683586) (xy 142.458135 115.712542) (xy 142.463372 115.755505) (xy 142.463374 115.755518) (xy 142.46669 115.775592) (xy 142.4849 115.850298) (xy 142.489431 115.864228) (xy 142.530249 115.957121) (xy 142.530252 115.957126) (xy 142.536174 115.967627) (xy 142.536179 115.967635) (xy 142.536185 115.967645) (xy 142.568395 116.017165) (xy 142.571296 116.021625) (xy 142.575945 116.027873) (xy 142.575947 116.027875) (xy 142.57595 116.027879) (xy 142.611914 116.065114) (xy 142.666668 116.121804) (xy 142.666672 116.121807) (xy 142.666673 116.121808) (xy 142.697404 116.146381) (xy 142.708627 116.155102) (xy 142.835873 116.225257) (xy 142.977729 116.25672) (xy 143.013016 116.259388) (xy 143.01302 116.259387) (xy 143.013021 116.259388) (xy 143.079594 116.256855) (xy 143.128562 116.254992) (xy 143.267617 116.21284) (xy 143.299868 116.19777) (xy 143.299878 116.197763) (xy 143.303382 116.195842) (xy 143.304113 116.197176) (xy 143.365171 116.179544) (xy 143.425285 116.195398) (xy 143.474921 116.223243) (xy 143.475991 116.223843) (xy 143.617611 116.256353) (xy 143.652559 116.259255) (xy 143.793403 116.251394) (xy 143.930525 116.203326) (xy 143.963983 116.185909) (xy 143.967369 116.184104) (xy 143.976997 116.178972) (xy 143.978053 116.180952) (xy 144.036286 116.164127) (xy 144.099751 116.181919) (xy 144.108789 116.187365) (xy 144.116068 116.19167) (xy 144.156384 116.20791) (xy 144.25085 116.245963) (xy 144.395465 116.260085) (xy 144.429845 116.258521) (xy 144.430277 116.258498) (xy 144.435671 116.258223) (xy 144.435676 116.258222) (xy 144.435681 116.258222) (xy 144.578097 116.229396) (xy 144.672538 116.179589) (xy 144.741018 116.165729) (xy 144.793577 116.183397) (xy 144.793741 116.183086) (xy 144.795678 116.184104) (xy 144.796534 116.184392) (xy 144.798072 116.185362) (xy 144.931079 116.24239) (xy 144.931616 116.24262) (xy 145.075884 116.259936) (xy 145.109975 116.259139) (xy 145.111687 116.2591) (xy 145.1741 116.25138) (xy 145.21256 116.246623) (xy 145.348261 116.194677) (xy 145.372059 116.181415) (xy 145.440199 116.165975) (xy 145.494843 116.182588) (xy 145.511855 116.1925) (xy 145.545173 116.211912) (xy 145.545175 116.211913) (xy 145.545177 116.211914) (xy 145.564939 116.219916) (xy 145.57316 116.223245) (xy 145.576218 116.224483) (xy 145.647643 116.247456) (xy 145.792293 116.261215) (xy 145.792299 116.261214) (xy 145.792302 116.261215) (xy 145.822959 116.259743) (xy 145.827355 116.259532) (xy 145.91046 116.248655) (xy 145.952637 116.233012) (xy 146.022335 116.228158) (xy 146.031694 116.230598) (xy 146.097058 116.250402) (xy 146.138755 116.256763) (xy 146.259079 116.260759) (xy 146.378771 116.233013) (xy 146.400626 116.227947) (xy 146.402657 116.227158) (xy 146.435037 116.214577) (xy 146.441047 116.212198) (xy 146.566705 116.139238) (xy 146.666717 116.033831) (xy 146.676838 116.019544) (xy 146.707287 115.970998) (xy 146.724801 115.939244) (xy 146.732675 115.924395) (xy 146.756154 115.8783) (xy 146.759903 115.870787) (xy 146.787918 115.813475) (xy 146.790257 115.808627) (xy 146.821378 115.743222) (xy 146.822121 115.741644) (xy 146.823105 115.739556) (xy 146.849189 115.683589) (xy 146.85591 115.66917) (xy 146.8574 115.665944) (xy 146.890449 115.593728) (xy 146.891914 115.590497) (xy 146.916788 115.53513) (xy 146.962216 115.482047) (xy 147.029132 115.461949) (xy 147.096292 115.48122) (xy 147.142372 115.533741) (xy 147.150512 115.55717) (xy 147.163035 115.609658) (xy 147.185615 115.672853) (xy 147.199334 115.707096) (xy 147.199993 115.70874) (xy 147.201686 115.712542) (xy 147.204281 115.71837) (xy 147.217489 115.745796) (xy 147.217493 115.745804) (xy 147.222533 115.755518) (xy 147.24669 115.802075) (xy 147.246694 115.802083) (xy 147.292335 115.874471) (xy 147.292338 115.874475) (xy 147.29234 115.874478) (xy 147.295237 115.878317) (xy 147.325154 115.91796) (xy 147.325166 115.917975) (xy 147.396953 115.995057) (xy 147.396956 115.995059) (xy 147.39696 115.995063) (xy 147.409302 116.005835) (xy 147.439308 116.032025) (xy 147.439318 116.032033) (xy 147.501302 116.078347) (xy 147.501303 116.078348) (xy 147.559134 116.115078) (xy 147.579746 116.127495) (xy 147.579773 116.127511) (xy 147.583132 116.129428) (xy 147.615126 116.146215) (xy 147.665453 116.17039) (xy 147.732053 116.196805) (xy 147.788936 116.21486) (xy 147.849467 116.23007) (xy 147.916561 116.242627) (xy 147.916567 116.242627) (xy 147.91658 116.24263) (xy 147.933047 116.244947) (xy 147.962245 116.249056) (xy 148.028138 116.255309) (xy 148.043185 116.256737) (xy 148.043187 116.256737) (xy 148.043207 116.256739) (xy 148.073661 116.258712) (xy 148.172144 116.262143) (xy 148.185546 116.262434) (xy 148.208583 116.262631) (xy 148.220203 116.262731) (xy 148.220204 116.262731) (xy 148.220284 116.262731) (xy 148.220342 116.262732) (xy 148.222884 116.262748) (xy 148.22291 116.262748) (xy 148.223054 116.262749) (xy 148.223053 116.262749) (xy 148.388567 116.263342) (xy 148.388568 116.263341) (xy 148.388576 116.263342) (xy 148.414641 116.262769) (xy 148.557321 116.235286) (xy 148.562508 116.232612) (xy 148.631111 116.219393) (xy 148.662595 116.226627) (xy 148.687368 116.235854) (xy 148.70428 116.240107) (xy 148.704284 116.240107) (xy 148.704289 116.240109) (xy 148.745282 116.247763) (xy 148.766243 116.251677) (xy 148.791827 116.254835) (xy 148.823846 116.257767) (xy 148.860778 116.259979) (xy 148.877138 116.260696) (xy 148.928093 116.26211) (xy 148.936474 116.262273) (xy 149.004126 116.263039) (xy 149.008346 116.26307) (xy 149.00844 116.26307) (xy 149.008535 116.263071) (xy 149.095252 116.263336) (xy 149.095253 116.263336) (xy 149.096344 116.263337) (xy 149.096749 116.263338) (xy 149.116424 116.263345) (xy 149.116446 116.263345) (xy 149.116901 116.263345) (xy 149.116941 116.263345) (xy 149.136387 116.263332) (xy 149.205566 116.263287) (xy 149.206589 116.263283) (xy 149.207467 116.263281) (xy 149.276151 116.262961) (xy 149.281677 116.262906) (xy 149.33334 116.262106) (xy 149.345884 116.261757) (xy 149.345899 116.261756) (xy 149.345913 116.261756) (xy 149.383287 116.260258) (xy 149.3833 116.260257) (xy 149.383303 116.260257) (xy 149.410209 116.258466) (xy 149.436164 116.256048) (xy 149.491749 116.247763) (xy 149.503617 116.245319) (xy 149.509008 116.24421) (xy 149.509017 116.244208) (xy 149.519234 116.240985) (xy 149.608686 116.212767) (xy 149.608692 116.212764) (xy 149.610037 116.21234) (xy 149.679892 116.210944) (xy 149.695583 116.216364) (xy 149.7572 116.24239) (xy 149.772441 116.246393) (xy 149.851054 116.260578) (xy 149.996226 116.254391) (xy 150.015128 116.250846) (xy 150.149336 116.205695) (xy 150.173765 116.19348) (xy 150.17378 116.19347) (xy 150.175067 116.19277) (xy 150.175277 116.192724) (xy 150.175726 116.1925) (xy 150.175783 116.192614) (xy 150.243349 116.177963) (xy 150.291301 116.191455) (xy 150.313192 116.202756) (xy 150.3156 116.203999) (xy 150.443791 116.249339) (xy 150.446647 116.250349) (xy 150.454823 116.250845) (xy 150.591672 116.259148) (xy 150.591677 116.259147) (xy 150.591684 116.259148) (xy 150.626627 116.256269) (xy 150.637986 116.255205) (xy 150.778867 116.219629) (xy 150.801604 116.206216) (xy 150.869344 116.189109) (xy 150.904614 116.195649) (xy 150.914841 116.199136) (xy 150.963635 116.215769) (xy 150.963638 116.215769) (xy 150.963639 116.21577) (xy 151.035222 116.23364) (xy 151.095943 116.244947) (xy 151.178432 116.255193) (xy 151.178444 116.255193) (xy 151.178445 116.255194) (xy 151.178595 116.255205) (xy 151.229494 116.258948) (xy 151.319275 116.261035) (xy 151.363917 116.259979) (xy 151.367131 116.259903) (xy 151.385707 116.25859) (xy 151.460583 116.253298) (xy 151.499128 116.249097) (xy 151.542946 116.24263) (xy 151.554059 116.24099) (xy 151.554061 116.240989) (xy 151.554092 116.240985) (xy 151.618592 116.227158) (xy 151.704802 116.202756) (xy 151.793288 116.168549) (xy 151.797391 116.166505) (xy 151.866176 116.154242) (xy 151.916172 116.171001) (xy 151.923218 116.175202) (xy 151.945373 116.188413) (xy 151.952717 116.19271) (xy 151.952718 116.19271) (xy 151.952721 116.192712) (xy 152.072434 116.240279) (xy 152.087751 116.246365) (xy 152.232431 116.259804) (xy 152.267596 116.258038) (xy 152.399212 116.233868) (xy 152.487988 116.19034) (xy 152.556845 116.178502) (xy 152.589689 116.186977) (xy 152.617548 116.19842) (xy 152.617554 116.198421) (xy 152.617562 116.198425) (xy 152.700422 116.224469) (xy 152.716017 116.227946) (xy 152.765578 116.238996) (xy 152.765581 116.238996) (xy 152.765601 116.239001) (xy 152.82589 116.248701) (xy 152.905942 116.256707) (xy 152.943886 116.259079) (xy 153.042199 116.261556) (xy 153.056346 116.261716) (xy 153.072578 116.261675) (xy 153.081869 116.261567) (xy 153.147429 116.260208) (xy 153.161068 116.259743) (xy 153.226085 116.256655) (xy 153.240664 116.255754) (xy 153.29805 116.25138) (xy 153.311491 116.250046) (xy 153.321177 116.249086) (xy 153.321186 116.249084) (xy 153.321195 116.249084) (xy 153.363865 116.243868) (xy 153.38925 116.240115) (xy 153.3927 116.239516) (xy 153.42305 116.233293) (xy 153.423054 116.233292) (xy 153.423064 116.23329) (xy 153.465449 116.223249) (xy 153.465451 116.223248) (xy 153.465474 116.223243) (xy 153.494017 116.214852) (xy 153.563884 116.214832) (xy 153.573539 116.218101) (xy 153.614488 116.233867) (xy 153.62088 116.236328) (xy 153.636036 116.24028) (xy 153.702551 116.252983) (xy 153.713999 116.25439) (xy 153.725447 116.255798) (xy 153.759178 116.258813) (xy 153.759185 116.258813) (xy 153.759192 116.258814) (xy 153.79256 116.260683) (xy 153.808878 116.261335) (xy 153.808895 116.261335) (xy 153.80891 116.261336) (xy 153.855427 116.262451) (xy 153.85782 116.26249) (xy 153.863158 116.262578) (xy 153.91247 116.263014) (xy 153.925626 116.263131) (xy 153.926665 116.263136) (xy 153.929022 116.26315) (xy 154.010169 116.263332) (xy 154.011169 116.263333) (xy 154.053277 116.263345) (xy 154.053294 116.263345) (xy 154.05382 116.263345) (xy 154.053875 116.263345) (xy 154.079179 116.263322) (xy 154.144192 116.263265) (xy 154.145951 116.263258) (xy 154.146262 116.263258) (xy 154.156627 116.263203) (xy 154.216529 116.262892) (xy 154.219354 116.262861) (xy 154.22204 116.262833) (xy 154.231768 116.262678) (xy 154.275258 116.261987) (xy 154.287056 116.261663) (xy 154.325865 116.260147) (xy 154.350469 116.25859) (xy 154.35466 116.258223) (xy 154.377616 116.256213) (xy 154.427577 116.249338) (xy 154.445788 116.245908) (xy 154.536587 116.219916) (xy 154.548589 116.215241) (xy 154.634198 116.168834) (xy 154.702516 116.154192) (xy 154.746345 116.16577) (xy 154.756095 116.170386) (xy 154.76627 116.175202) (xy 154.766271 116.175203) (xy 154.766274 116.175204) (xy 154.766278 116.175206) (xy 154.829849 116.199136) (xy 154.899167 116.219756) (xy 154.973965 116.236344) (xy 155.027143 116.245221) (xy 155.116371 116.255309) (xy 155.152586 116.258103) (xy 155.259446 116.262531) (xy 155.27666 116.262954) (xy 155.325606 116.26333) (xy 155.331989 116.263339) (xy 155.394223 116.263039) (xy 155.406371 116.262836) (xy 155.450137 116.261583) (xy 155.482861 116.259593) (xy 155.510396 116.257028) (xy 155.512265 116.256855) (xy 155.512267 116.256854) (xy 155.587917 116.244018) (xy 155.607065 116.239265) (xy 155.734061 116.188907) (xy 155.745311 116.182589) (xy 155.747045 116.181615) (xy 155.747048 116.181612) (xy 155.747059 116.181607) (xy 155.83746 116.116961) (xy 155.844428 116.110727) (xy 155.889377 116.065124) (xy 155.895958 116.057551) (xy 155.961997 115.961177) (xy 155.967159 115.951407) (xy 156.008832 115.845279) (xy 156.012747 115.830695) (xy 156.026007 115.763658) (xy 156.028847 115.741644) (xy 156.032114 115.707111) (xy 156.034051 115.675049) (xy 156.034795 115.658001) (xy 156.035999 115.613273) (xy 156.036155 115.605014) (xy 156.036799 115.545004) (xy 156.036825 115.541197) (xy 156.036827 115.540952) (xy 156.03708 115.463387) (xy 156.037083 115.461808) (xy 156.037122 115.38646) (xy 156.037122 115.386219) (xy 156.037368 115.286222) (xy 156.03737 115.284824) (xy 156.037367 115.279971) (xy 156.037317 115.204091) (xy 156.037159 115.191736) (xy 156.036199 115.153131) (xy 156.036198 115.153129) (xy 156.036198 115.153115) (xy 156.036199 115.153112) (xy 156.035602 115.129141) (xy 156.033656 115.095548) (xy 156.029394 115.048752) (xy 156.029291 115.048139) (xy 156.021238 115.000004) (xy 156.016781 114.973363) (xy 156.008613 114.940086) (xy 156.006576 114.932064) (xy 155.987083 114.885922) (xy 155.979127 114.816507) (xy 155.983324 114.799514) (xy 155.995779 114.760997) (xy 155.995779 114.760994) (xy 155.995787 114.760972) (xy 156.000015 114.744313) (xy 156.008647 114.703309) (xy 156.012388 114.681041) (xy 156.016159 114.654278) (xy 156.019443 114.625467) (xy 156.021153 114.607705) (xy 156.024009 114.571416) (xy 156.024233 114.568064) (xy 156.024813 114.559405) (xy 156.026427 114.530031) (xy 156.027271 114.514678) (xy 156.027659 114.506377) (xy 156.029748 114.452327) (xy 156.02994 114.446485) (xy 156.031689 114.382153) (xy 156.031785 114.378001) (xy 156.033224 114.302452) (xy 156.033272 114.299476) (xy 156.033273 114.299425) (xy 156.033275 114.299289) (xy 156.034433 114.211649) (xy 156.034454 114.209742) (xy 156.035361 114.108946) (xy 156.035362 114.108837) (xy 156.035374 114.107293) (xy 156.03606 113.992484) (xy 156.036065 113.991377) (xy 156.036559 113.861613) (xy 156.036562 113.860834) (xy 156.036894 113.715179) (xy 156.036895 113.714637) (xy 156.037093 113.552157) (xy 156.037093 113.551801) (xy 156.037187 113.371561) (xy 156.037187 113.371349) (xy 156.037208 113.172414) (xy 156.037208 113.172306) (xy 156.037185 112.953742) (xy 156.037185 112.953713) (xy 156.037146 112.714585) (xy 156.037122 112.45404) (xy 156.037122 112.411916) (xy 156.037136 112.149045) (xy 156.037161 111.907785) (xy 156.037161 111.907755) (xy 156.037171 111.687188) (xy 156.037171 111.687091) (xy 156.037142 111.486278) (xy 156.037142 111.486088) (xy 156.037048 111.304085) (xy 156.037048 111.30377) (xy 156.036862 111.139637) (xy 156.036861 111.139165) (xy 156.036816 111.117135) (xy 156.036558 110.991905) (xy 156.036558 110.991904) (xy 156.036556 110.991375) (xy 156.036556 110.991307) (xy 156.036111 110.860052) (xy 156.036108 110.859168) (xy 156.035527 110.749174) (xy 156.035527 110.749164) (xy 156.035495 110.743005) (xy 156.035486 110.741659) (xy 156.03468 110.639614) (xy 156.034662 110.637771) (xy 156.034468 110.620983) (xy 156.033636 110.548748) (xy 156.033634 110.548593) (xy 156.033603 110.546337) (xy 156.032696 110.491584) (xy 156.03233 110.469488) (xy 156.032304 110.468194) (xy 156.032264 110.466149) (xy 156.032259 110.465926) (xy 156.030719 110.400512) (xy 156.030577 110.395519) (xy 156.028741 110.340441) (xy 156.028456 110.333372) (xy 156.026299 110.287688) (xy 156.025716 110.277508) (xy 156.023212 110.240277) (xy 156.02199 110.225364) (xy 156.019114 110.195643) (xy 156.016457 110.17333) (xy 156.013183 110.150179) (xy 156.007211 110.116249) (xy 156.003513 110.098726) (xy 155.98981 110.047253) (xy 155.985664 110.034415) (xy 155.954953 109.959981) (xy 155.950331 109.950888) (xy 155.891133 109.859897) (xy 155.886012 109.853607) (xy 155.805185 109.774236) (xy 155.799537 109.769806) (xy 155.736011 109.727257) (xy 155.729812 109.723747) (xy 155.721801 109.719392) (xy 155.714326 109.715328) (xy 155.705454 109.710702) (xy 155.703656 109.709745) (xy 155.690968 109.702861) (xy 155.683229 109.699051) (xy 155.683252 109.699004) (xy 155.68124 109.698039) (xy 155.671839 109.694936) (xy 155.600076 109.667315) (xy 155.600069 109.667313) (xy 155.600068 109.667312) (xy 155.591905 109.664988) (xy 155.538372 109.652814) (xy 155.538347 109.652809) (xy 155.526153 109.650719) (xy 155.494655 109.646324) (xy 155.492936 109.646138) (xy 155.477291 109.644451) (xy 155.477266 109.644448) (xy 155.477259 109.644448) (xy 155.458434 109.64277) (xy 155.43482 109.641107) (xy 155.423082 109.640416) (xy 155.392238 109.638956) (xy 155.384682 109.638654) (xy 155.36172 109.637909) (xy 155.34533 109.637377) (xy 155.34527 109.637375) (xy 155.345198 109.637373) (xy 155.340332 109.637238) (xy 155.291514 109.636134) (xy 155.287998 109.636066) (xy 155.22878 109.635126) (xy 155.22878 109.635127) (xy 155.226087 109.635091) (xy 155.226087 109.63509) (xy 155.159818 109.634351) (xy 155.155103 109.634299) (xy 155.155042 109.634298) (xy 155.155004 109.634298) (xy 155.153505 109.634283) (xy 155.153407 109.634283) (xy 155.121692 109.634034) (xy 155.069412 109.633624) (xy 155.069412 109.633623) (xy 155.068345 109.633616) (xy 155.068345 109.633617) (xy 155.013504 109.633317) (xy 154.97047 109.633083) (xy 154.970415 109.633082) (xy 154.969644 109.633078) (xy 154.969644 109.633079) (xy 154.901919 109.632825) (xy 154.856804 109.632657) (xy 154.856597 109.632656) (xy 154.85622 109.632654) (xy 154.85622 109.632655) (xy 154.768882 109.632435) (xy 154.727313 109.632331) (xy 154.727293 109.63233) (xy 154.726857 109.63233) (xy 154.726851 109.632329) (xy 154.580819 109.632093) (xy 154.580819 109.632092) (xy 154.580565 109.632092) (xy 154.580543 109.632091) (xy 154.425049 109.631938) (xy 154.416189 109.63193) (xy 154.416128 109.63193) (xy 154.415964 109.63193) (xy 154.232298 109.63183) (xy 154.232264 109.63183) (xy 154.232145 109.63183) (xy 154.028022 109.63178) (xy 154.028007 109.63178) (xy 154.027928 109.63178) (xy 153.816784 109.631767) (xy 153.81678 109.631767) (xy 152.415543 109.631767) (xy 152.348504 109.612082) (xy 152.322038 109.589209) (xy 152.319278 109.58604) (xy 152.279021 109.54477) (xy 152.20713 109.478953) (xy 152.207127 109.47895) (xy 152.161547 109.444822) (xy 152.12666 109.4187) (xy 152.051568 109.37327) (xy 152.051566 109.373269) (xy 151.946738 109.325085) (xy 151.946733 109.325083) (xy 151.946728 109.325081) (xy 151.946725 109.32508) (xy 151.864 109.297885) (xy 151.863997 109.297884) (xy 151.771529 109.27676) (xy 151.693908 109.266488) (xy 151.671115 109.265426) (xy 151.607311 109.262453) (xy 151.607303 109.262453) (xy 151.607297 109.262453) (xy 151.607293 109.262452) (xy 151.503425 109.266447) (xy 151.503418 109.266448) (xy 151.398417 109.281517) (xy 151.30213 109.305758) (xy 151.224623 109.334315) (xy 151.200412 109.343236) (xy 151.20041 109.343237) (xy 151.2004 109.343241) (xy 151.113831 109.386066) (xy 151.113823 109.38607) (xy 151.021508 109.444822) (xy 151.021506 109.444823) (xy 150.946697 109.504599) (xy 150.946694 109.504602) (xy 150.86906 109.581634) (xy 150.86905 109.581645) (xy 150.843984 109.612517) (xy 150.786444 109.652153) (xy 150.780871 109.653841) (xy 150.695162 109.677619) (xy 150.668273 109.689415) (xy 150.658852 109.693663) (xy 150.658842 109.693668) (xy 150.537028 109.77286) (xy 150.537027 109.772861) (xy 150.50991 109.796609) (xy 150.485271 109.819669) (xy 150.446891 109.85805) (xy 150.446887 109.858054) (xy 150.378408 109.943032) (xy 150.378405 109.943037) (xy 150.318046 110.075203) (xy 150.318045 110.075207) (xy 150.297367 110.219031) (xy 150.297367 110.407985) (xy 150.277682 110.475024) (xy 150.224878 110.520779) (xy 150.15572 110.530723) (xy 150.101976 110.508798) (xy 150.101969 110.508809) (xy 150.101772 110.509115) (xy 150.101762 110.509109) (xy 150.101732 110.509154) (xy 150.100228 110.508119) (xy 150.100222 110.508115) (xy 150.049202 110.475209) (xy 149.903282 110.39295) (xy 149.903277 110.392947) (xy 149.903263 110.39294) (xy 149.846091 110.365251) (xy 149.84608 110.365246) (xy 149.692053 110.302156) (xy 149.633526 110.282228) (xy 149.469241 110.237188) (xy 149.426191 110.227366) (xy 149.343301 110.212195) (xy 149.330622 110.209875) (xy 149.325442 110.209148) (xy 149.288537 110.203969) (xy 149.129807 110.188403) (xy 149.116104 110.187845) (xy 149.071583 110.186035) (xy 149.071573 110.186035) (xy 149.07157 110.186035) (xy 148.913199 110.188639) (xy 148.913179 110.188639) (xy 148.913177 110.18864) (xy 148.913172 110.18864) (xy 148.913159 110.188641) (xy 148.872648 110.191642) (xy 148.854655 110.192976) (xy 148.854646 110.192977) (xy 148.854629 110.192979) (xy 148.694531 110.214147) (xy 148.694491 110.214154) (xy 148.640018 110.224392) (xy 148.476088 110.26453) (xy 148.428652 110.278613) (xy 148.367563 110.30002) (xy 148.258859 110.338114) (xy 148.219754 110.353655) (xy 148.042007 110.432927) (xy 148.02454 110.441117) (xy 148.014564 110.446026) (xy 148.013997 110.446303) (xy 147.962301 110.471415) (xy 147.960607 110.472222) (xy 147.941737 110.481035) (xy 147.919153 110.491584) (xy 147.916906 110.492606) (xy 147.893984 110.502761) (xy 147.886793 110.505682) (xy 147.807205 110.535134) (xy 147.687025 110.616772) (xy 147.687012 110.616783) (xy 147.682407 110.620983) (xy 147.631906 110.67418) (xy 147.631904 110.674184) (xy 147.556613 110.79846) (xy 147.519387 110.938914) (xy 147.522526 111.057321) (xy 147.504625 111.124858) (xy 147.453053 111.171997) (xy 147.384182 111.183769) (xy 147.369229 111.181086) (xy 147.340973 111.174204) (xy 147.334013 111.172561) (xy 147.246384 111.152507) (xy 147.234348 111.149905) (xy 147.186748 111.140219) (xy 147.159728 111.134721) (xy 147.159712 111.134718) (xy 147.159702 111.134716) (xy 147.141569 111.131366) (xy 147.07575 111.120434) (xy 147.05263 111.117136) (xy 146.991196 111.109802) (xy 146.966983 111.107495) (xy 146.905689 111.103126) (xy 146.885338 111.102082) (xy 146.819921 111.100038) (xy 146.819882 111.100037) (xy 146.819842 111.100036) (xy 146.808843 111.099826) (xy 146.807343 111.099798) (xy 146.749393 111.0994) (xy 146.736698 111.099606) (xy 146.725813 111.099783) (xy 146.719379 111.100036) (xy 146.556363 111.106446) (xy 146.509754 111.110425) (xy 146.509749 111.110425) (xy 146.509745 111.110426) (xy 146.357827 111.130441) (xy 146.357822 111.130441) (xy 146.357814 111.130443) (xy 146.301346 111.141147) (xy 146.301303 111.141157) (xy 146.166063 111.174786) (xy 146.16605 111.174789) (xy 146.100585 111.195842) (xy 146.100574 111.195846) (xy 145.981091 111.243369) (xy 145.981087 111.243371) (xy 145.981072 111.243377) (xy 145.910419 111.278007) (xy 145.910405 111.278015) (xy 145.805836 111.339691) (xy 145.741732 111.384451) (xy 145.741725 111.384457) (xy 145.664125 111.448009) (xy 145.664121 111.448012) (xy 145.611952 111.497035) (xy 145.611493 111.496546) (xy 145.552575 111.528945) (xy 145.482869 111.524166) (xy 145.437549 111.494905) (xy 145.429798 111.487042) (xy 145.424511 111.481678) (xy 145.421007 111.478123) (xy 145.421005 111.478122) (xy 145.420999 111.478115) (xy 145.315591 111.386883) (xy 145.315585 111.386878) (xy 145.315584 111.386877) (xy 145.2701 111.351787) (xy 145.270078 111.351771) (xy 145.224915 111.320822) (xy 145.184498 111.295808) (xy 145.184468 111.29579) (xy 145.083533 111.239651) (xy 145.08353 111.239649) (xy 145.046699 111.22245) (xy 145.018182 111.209133) (xy 145.018174 111.20913) (xy 145.01817 111.209128) (xy 145.018146 111.209118) (xy 144.914894 111.169522) (xy 144.84153 111.147541) (xy 144.731433 111.123379) (xy 144.66309 111.113169) (xy 144.663074 111.113168) (xy 144.541767 111.103375) (xy 144.541772 111.103375) (xy 144.541746 111.103374) (xy 144.541745 111.103374) (xy 144.500151 111.101933) (xy 144.433834 111.07994) (xy 144.389935 111.025584) (xy 144.380474 110.975342) (xy 144.381773 110.914983) (xy 144.381791 110.914304) (xy 144.383172 110.868226) (xy 144.383258 110.866046) (xy 144.383262 110.865963) (xy 144.398772 110.811624) (xy 144.433384 110.749447) (xy 144.474321 110.61003) (xy 144.474321 110.464726) (xy 144.468911 110.446303) (xy 144.454014 110.395568) (xy 144.433384 110.325309) (xy 144.418504 110.302156) (xy 144.35483 110.203076) (xy 144.354828 110.203073) (xy 144.354827 110.203072) (xy 144.245014 110.107918) (xy 144.245012 110.107917) (xy 144.24501 110.107915) (xy 144.112847 110.047558) (xy 144.11284 110.047556) (xy 143.989695 110.029851) (xy 143.969017 110.026878) (xy 143.063689 110.026878) (xy 143.017022 110.030213) (xy 142.991091 110.032066) (xy 142.851678 110.072984) (xy 142.851669 110.072988) (xy 142.729427 110.151528) (xy 142.634261 110.26133) (xy 142.573884 110.393497) (xy 142.553189 110.537314) (xy 142.552993 112.222193) (xy 142.552993 112.222204) (xy 142.552974 112.456595) (xy 142.552974 112.4566) (xy 142.552948 112.669377) (xy 142.552948 112.669409) (xy 142.552875 112.86164) (xy 142.552875 112.861705) (xy 142.552718 113.034882) (xy 142.552718 113.034996) (xy 142.552437 113.189424) (xy 142.552436 113.189597) (xy 142.552116 113.288904) (xy 142.551996 113.326194) (xy 142.55141 113.436783) (xy 142.551355 113.44706) (xy 142.551353 113.44743) (xy 142.550483 113.552382) (xy 142.550477 113.552904) (xy 142.54935 113.64305) (xy 142.549339 113.643784) (xy 142.547935 113.71998) (xy 142.547912 113.721002) (xy 142.546231 113.784036) (xy 142.546185 113.785463) (xy 142.544275 113.835467) (xy 142.544183 113.837454) (xy 142.54289 113.861278) (xy 142.527063 113.9155) (xy 142.517306 113.932788) (xy 142.49753 113.971615) (xy 142.497528 113.97162) (xy 142.456592 114.111035) (xy 142.456592 114.111037) (xy 142.456592 114.256341) (xy 142.493973 114.383649) (xy 142.497529 114.395757) (xy 142.497532 114.395764) (xy 142.576082 114.51799) (xy 142.576084 114.517992) (xy 142.576086 114.517995) (xy 142.585285 114.525966) (xy 142.593588 114.533161) (xy 142.631361 114.59194) (xy 142.631359 114.661809) (xy 142.602564 114.710361) (xy 142.603118 114.710859) (xy 142.603195 114.710921) (xy 142.603191 114.710925) (xy 142.603324 114.711044) (xy 142.601109 114.713508) (xy 142.53263 114.798486) (xy 142.532627 114.798491) (xy 142.472268 114.930657) (xy 142.472267 114.930661) (xy 142.451589 115.074485) (xy 137.308188 115.074485) (xy 136.929367 114.309371) (xy 136.918935 114.278839) (xy 136.918466 114.276513) (xy 136.918466 114.276511) (xy 136.880831 114.15353) (xy 136.819926 114.040255) (xy 136.769486 113.979101) (xy 136.754026 113.955229) (xy 136.588323 113.620553) (xy 136.586099 113.61581) (xy 136.566685 113.57204) (xy 136.564189 113.568498) (xy 136.554429 113.552095) (xy 136.552507 113.548214) (xy 136.552504 113.54821) (xy 136.523273 113.510238) (xy 136.520167 113.506023) (xy 136.516275 113.5005) (xy 136.492603 113.466905) (xy 136.48947 113.463923) (xy 136.476697 113.44974) (xy 136.474053 113.446305) (xy 136.47405 113.446302) (xy 136.474049 113.446301) (xy 136.437978 113.414768) (xy 136.434108 113.411238) (xy 136.399442 113.37825) (xy 136.399437 113.378245) (xy 136.399435 113.378243) (xy 136.399431 113.37824) (xy 136.395777 113.375928) (xy 136.380492 113.364517) (xy 136.377224 113.36166) (xy 136.377223 113.361659) (xy 136.374828 113.360282) (xy 136.373823 113.359231) (xy 136.372271 113.358123) (xy 136.372481 113.357828) (xy 136.326534 113.309791) (xy 136.313203 113.241204) (xy 136.313467 113.238676) (xy 136.313825 113.235575) (xy 136.313967 113.234406) (xy 136.321524 113.175034) (xy 136.321523 113.175022) (xy 136.321602 113.172274) (xy 136.321618 113.17205) (xy 136.321621 113.171886) (xy 136.321654 113.17044) (xy 136.321656 113.170366) (xy 136.32165 113.170154) (xy 136.321695 113.167402) (xy 136.321697 113.167392) (xy 136.316815 113.107572) (xy 136.316737 113.106556) (xy 136.312558 113.046737) (xy 136.312555 113.046727) (xy 136.312096 113.044019) (xy 136.312065 113.043774) (xy 136.312045 113.043661) (xy 136.311779 113.042149) (xy 136.311778 113.042143) (xy 136.311733 113.041946) (xy 136.311238 113.039222) (xy 136.311237 113.039208) (xy 136.294801 112.981568) (xy 136.294487 112.98044) (xy 136.278736 112.922654) (xy 136.278735 112.922652) (xy 136.278734 112.922648) (xy 136.277744 112.920052) (xy 136.277679 112.919858) (xy 136.277667 112.919826) (xy 136.277104 112.918376) (xy 136.277078 112.918309) (xy 136.276991 112.918113) (xy 136.275971 112.915529) (xy 136.275971 112.915528) (xy 136.248617 112.862223) (xy 136.248034 112.861069) (xy 136.221359 112.807559) (xy 136.219872 112.805191) (xy 136.214566 112.795867) (xy 136.213417 112.793627) (xy 133.302415 107.120906) (xy 133.294984 107.103151) (xy 133.293788 107.099527) (xy 133.293787 107.099523) (xy 133.269936 107.05739) (xy 133.267563 107.05299) (xy 133.245454 107.009904) (xy 133.243064 107.00689) (xy 133.232317 106.990934) (xy 133.23043 106.987601) (xy 133.198833 106.950949) (xy 133.195618 106.947061) (xy 133.165541 106.909134) (xy 133.162617 106.906651) (xy 133.148961 106.893097) (xy 133.146456 106.890191) (xy 133.108291 106.860387) (xy 133.104382 106.857203) (xy 133.067509 106.825894) (xy 133.067499 106.825887) (xy 133.064157 106.824028) (xy 133.048122 106.813401) (xy 133.045091 106.811034) (xy 133.045087 106.811032) (xy 133.045086 106.811031) (xy 133.045083 106.811029) (xy 133.001853 106.789252) (xy 132.997363 106.786874) (xy 132.955113 106.763373) (xy 132.951458 106.762197) (xy 132.933668 106.754905) (xy 132.932306 106.754219) (xy 132.930228 106.753172) (xy 132.883594 106.740252) (xy 132.878725 106.738795) (xy 132.832686 106.723982) (xy 132.83268 106.723981) (xy 132.82886 106.72354) (xy 132.810004 106.719862) (xy 132.806299 106.718836) (xy 132.806287 106.718833) (xy 132.758044 106.71526) (xy 132.752986 106.714781) (xy 132.704916 106.709232) (xy 132.701082 106.709545) (xy 132.681869 106.709617) (xy 132.678042 106.709334) (xy 132.678019 106.709334) (xy 132.630026 106.715238) (xy 132.624977 106.715755) (xy 132.576744 106.719692) (xy 132.576738 106.719693) (xy 132.573034 106.720749) (xy 132.554196 106.724568) (xy 132.550386 106.725036) (xy 132.550382 106.725037) (xy 132.504447 106.740196) (xy 132.499596 106.741688) (xy 132.453058 106.754959) (xy 132.453056 106.754959) (xy 132.453056 106.75496) (xy 132.449624 106.756721) (xy 132.431904 106.764138) (xy 132.428251 106.765343) (xy 132.42825 106.765344) (xy 132.386169 106.789165) (xy 132.3817 106.791575) (xy 132.338642 106.813671) (xy 132.338626 106.813681) (xy 132.335614 106.81607) (xy 132.319675 106.826807) (xy 132.316335 106.828697) (xy 132.316333 106.828699) (xy 132.279697 106.86028) (xy 132.275786 106.863514) (xy 132.237865 106.893587) (xy 132.237857 106.893594) (xy 132.235375 106.896518) (xy 132.221833 106.910162) (xy 132.218927 106.912667) (xy 132.218922 106.912672) (xy 132.189145 106.950803) (xy 132.185939 106.954739) (xy 132.154626 106.991617) (xy 132.154616 106.991633) (xy 132.152748 106.99499) (xy 132.142138 107.010997) (xy 132.13977 107.01403) (xy 132.139761 107.014043) (xy 132.117981 107.057278) (xy 132.115605 107.061764) (xy 132.092101 107.104019) (xy 132.090928 107.107666) (xy 132.083634 107.125461) (xy 131.431538 108.41996) (xy 131.425875 108.430008) (xy 131.367374 108.523383) (xy 131.367373 108.523385) (xy 131.332502 108.615092) (xy 131.327341 108.626806) (xy 130.749279 109.774338) (xy 130.744201 109.783443) (xy 130.734873 109.798631) (xy 130.734869 109.798639) (xy 130.73128 109.808336) (xy 130.725735 109.821074) (xy 130.340871 110.585083) (xy 130.309368 110.624676) (xy 130.238427 110.683612) (xy 130.157433 110.783521) (xy 130.097491 110.897307) (xy 130.060899 111.0206) (xy 130.049063 111.148665) (xy 130.062439 111.276579) (xy 130.100511 111.399421) (xy 130.153443 111.497035) (xy 130.161819 111.51248) (xy 130.244005 111.611405) (xy 130.331847 111.682616) (xy 130.343911 111.692396) (xy 130.397755 111.72076) (xy 130.457697 111.752338) (xy 130.457696 111.752338) (xy 130.925291 111.891116) (xy 131.450826 112.04709) (xy 131.456657 112.048979) (xy 132.202797 112.311325) (xy 133.078674 112.619287) (xy 133.135388 112.660094) (xy 133.161038 112.725086) (xy 133.147479 112.793627) (xy 133.099016 112.843957) (xy 133.086006 112.850405) (xy 133.082591 112.851855) (xy 133.072313 112.855691) (xy 133.043847 112.864904) (xy 133.024317 112.875811) (xy 133.012321 112.881686) (xy 132.991742 112.890423) (xy 132.991739 112.890425) (xy 132.967002 112.907268) (xy 132.957684 112.913027) (xy 132.931565 112.927615) (xy 132.931559 112.927619) (xy 132.914536 112.942123) (xy 132.90392 112.950223) (xy 132.885437 112.96281) (xy 132.885434 112.962812) (xy 132.864459 112.984157) (xy 132.856445 112.991622) (xy 132.833673 113.011027) (xy 132.833669 113.011031) (xy 132.819799 113.028582) (xy 132.810965 113.0386) (xy 132.795296 113.054547) (xy 132.778902 113.079555) (xy 132.772491 113.08845) (xy 131.93934 114.142791) (xy 131.937192 114.145433) (xy 131.902824 114.186551) (xy 131.899395 114.191585) (xy 131.899365 114.191565) (xy 131.896134 114.196452) (xy 131.896163 114.196471) (xy 131.892872 114.201599) (xy 131.868475 114.249344) (xy 131.866884 114.252355) (xy 131.841177 114.299425) (xy 131.838796 114.305031) (xy 131.838762 114.305016) (xy 131.836545 114.310443) (xy 131.836579 114.310457) (xy 131.834353 114.316122) (xy 131.819741 114.367705) (xy 131.818768 114.370968) (xy 131.802738 114.422148) (xy 131.801497 114.42811) (xy 131.801461 114.428102) (xy 131.800343 114.433864) (xy 131.800379 114.433871) (xy 131.7993 114.43987) (xy 131.795033 114.493308) (xy 131.794717 114.496684) (xy 131.793819 114.505027) (xy 131.767083 114.569576) (xy 131.70969 114.609424) (xy 131.639865 114.611918) (xy 131.579776 114.576266) (xy 131.564892 114.556704) (xy 131.291721 114.112291) (xy 131.291652 114.112178) (xy 131.15596 113.890897) (xy 130.996465 113.630799) (xy 130.990528 113.618973) (xy 130.990476 113.619001) (xy 130.987666 113.613589) (xy 130.958292 113.568459) (xy 130.95651 113.565639) (xy 130.945822 113.54821) (xy 130.928362 113.519737) (xy 130.928359 113.519734) (xy 130.924682 113.514878) (xy 130.924728 113.514842) (xy 130.916604 113.504411) (xy 130.890254 113.463928) (xy 130.709744 113.186601) (xy 130.70385 113.175571) (xy 130.703709 113.175649) (xy 130.700772 113.170312) (xy 130.700769 113.170308) (xy 130.700768 113.170305) (xy 130.669699 113.125012) (xy 130.668084 113.122596) (xy 130.638109 113.076542) (xy 130.634303 113.071789) (xy 130.634427 113.071689) (xy 130.632067 113.068813) (xy 130.631946 113.068916) (xy 130.628018 113.064248) (xy 130.588737 113.025912) (xy 130.586614 113.02379) (xy 130.57961 113.016616) (xy 130.54827 112.984511) (xy 130.548266 112.984508) (xy 130.548262 112.984504) (xy 130.543603 112.980585) (xy 130.543705 112.980463) (xy 130.540833 112.978106) (xy 130.540733 112.978232) (xy 130.535977 112.974425) (xy 130.535975 112.974423) (xy 130.518128 112.96281) (xy 130.489987 112.944499) (xy 130.487489 112.94283) (xy 130.442208 112.911779) (xy 130.436867 112.908841) (xy 130.436943 112.908702) (xy 130.433654 112.906944) (xy 130.433581 112.907085) (xy 130.42817 112.904277) (xy 130.377193 112.883885) (xy 130.374421 112.882737) (xy 130.32399 112.861134) (xy 130.323988 112.861133) (xy 130.323985 112.861132) (xy 130.323981 112.861131) (xy 130.318184 112.859296) (xy 130.318232 112.859143) (xy 130.306253 112.85551) (xy 130.06504 112.759025) (xy 129.978563 112.724434) (xy 129.852133 112.700885) (xy 129.85213 112.700885) (xy 129.847485 112.700941) (xy 129.723531 112.702452) (xy 129.723522 112.702453) (xy 129.597709 112.729079) (xy 129.597704 112.72908) (xy 129.479492 112.779743) (xy 129.373437 112.852493) (xy 129.283609 112.944539) (xy 129.213467 113.052337) (xy 129.211198 113.056709) (xy 129.20053 113.07373) (xy 129.183237 113.096908) (xy 127.36136 116.920536) (xy 127.359153 116.924941) (xy 127.336404 116.968173) (xy 127.336399 116.968184) (xy 127.335445 116.971404) (xy 127.328511 116.989478) (xy 127.32706 116.992522) (xy 127.327057 116.992532) (xy 127.315045 117.039905) (xy 127.31374 117.044653) (xy 127.299865 117.09148) (xy 127.299863 117.091488) (xy 127.299555 117.094842) (xy 127.29628 117.113921) (xy 127.295452 117.117186) (xy 127.29545 117.117201) (xy 127.292911 117.165996) (xy 127.292558 117.170906) (xy 127.288084 117.21955) (xy 111.068785 117.21955) (xy 110.586819 116.737584) (xy 110.553334 116.676261) (xy 110.5505 116.649903) (xy 110.5505 114.999995) (xy 111.694953 114.999995) (xy 111.694953 115.000004) (xy 111.715113 115.269026) (xy 111.715113 115.269028) (xy 111.775142 115.532033) (xy 111.775148 115.532052) (xy 111.873709 115.783181) (xy 111.873708 115.783181) (xy 112.008602 116.016822) (xy 112.062294 116.084151) (xy 112.062295 116.084151) (xy 112.898958 115.247488) (xy 112.923978 115.30789) (xy 112.995112 115.414351) (xy 113.085649 115.504888) (xy 113.19211 115.576022) (xy 113.25251 115.601041) (xy 112.414848 116.438702) (xy 112.597483 116.56322) (xy 112.597485 116.563221) (xy 112.840539 116.680269) (xy 112.840537 116.680269) (xy 113.098337 116.75979) (xy 113.098343 116.759792) (xy 113.365101 116.799999) (xy 113.36511 116.8) (xy 113.63489 116.8) (xy 113.634898 116.799999) (xy 113.901656 116.759792) (xy 113.901662 116.75979) (xy 114.159461 116.680269) (xy 114.402521 116.563218) (xy 114.58515 116.438702) (xy 113.747488 115.601041) (xy 113.80789 115.576022) (xy 113.914351 115.504888) (xy 114.004888 115.414351) (xy 114.076022 115.30789) (xy 114.101041 115.247488) (xy 114.937703 116.084151) (xy 114.937704 116.08415) (xy 114.991393 116.016828) (xy 114.9914 116.016817) (xy 115.12629 115.783181) (xy 115.224851 115.532052) (xy 115.224857 115.532033) (xy 115.284886 115.269028) (xy 115.284886 115.269026) (xy 115.305047 115.000004) (xy 115.305047 114.999995) (xy 115.284886 114.730973) (xy 115.284886 114.730971) (xy 115.224857 114.467966) (xy 115.224851 114.467947) (xy 115.12629 114.216818) (xy 115.126291 114.216818) (xy 114.991397 113.983177) (xy 114.937704 113.915847) (xy 114.101041 114.75251) (xy 114.076022 114.69211) (xy 114.004888 114.585649) (xy 113.914351 114.495112) (xy 113.80789 114.423978) (xy 113.747488 114.398958) (xy 114.58515 113.561296) (xy 114.402517 113.436779) (xy 114.402516 113.436778) (xy 114.15946 113.31973) (xy 114.159462 113.31973) (xy 113.901662 113.240209) (xy 113.901656 113.240207) (xy 113.634898 113.2) (xy 113.365101 113.2) (xy 113.098343 113.240207) (xy 113.098337 113.240209) (xy 112.840538 113.31973) (xy 112.597485 113.436778) (xy 112.597476 113.436783) (xy 112.414848 113.561296) (xy 113.252511 114.398958) (xy 113.19211 114.423978) (xy 113.085649 114.495112) (xy 112.995112 114.585649) (xy 112.923978 114.69211) (xy 112.898958 114.752511) (xy 112.062295 113.915848) (xy 112.0086 113.98318) (xy 111.873709 114.216818) (xy 111.775148 114.467947) (xy 111.775142 114.467966) (xy 111.715113 114.730971) (xy 111.715113 114.730973) (xy 111.694953 114.999995) (xy 110.5505 114.999995) (xy 110.5505 109.852486) (xy 111.2495 109.852486) (xy 111.2495 110.147513) (xy 111.27664 110.353655) (xy 111.288007 110.439993) (xy 111.342928 110.644961) (xy 111.364361 110.724951) (xy 111.364364 110.724961) (xy 111.477254 110.9975) (xy 111.477258 110.99751) (xy 111.624761 111.252993) (xy 111.678623 111.323188) (xy 111.703536 111.385416) (xy 111.705908 111.40748) (xy 111.70591 111.407486) (xy 111.756202 111.542328) (xy 111.756206 111.542335) (xy 111.842452 111.657544) (xy 111.842455 111.657547) (xy 111.957664 111.743793) (xy 111.957671 111.743797) (xy 112.092516 111.794091) (xy 112.114581 111.796463) (xy 112.176815 111.821378) (xy 112.246995 111.87523) (xy 112.246998 111.875232) (xy 112.247006 111.875238) (xy 112.394986 111.960674) (xy 112.502489 112.022741) (xy 112.50249 112.022741) (xy 112.502493 112.022743) (xy 112.775048 112.135639) (xy 113.060007 112.211993) (xy 113.352494 112.2505) (xy 113.352501 112.2505) (xy 120.647499 112.2505) (xy 120.647505 112.2505) (xy 120.647506 112.2505) (xy 120.68155 112.246018) (xy 120.939993 112.211994) (xy 121.192184 112.144419) (xy 121.224952 112.135639) (xy 121.497507 112.022743) (xy 121.752994 111.875238) (xy 121.987042 111.695646) (xy 122.195646 111.487042) (xy 122.20101 111.481678) (xy 122.201025 111.48166) (xy 131.395869 102.286819) (xy 131.457192 102.253334) (xy 131.48355 102.2505) (xy 135.847499 102.2505) (xy 135.847506 102.2505) (xy 136.139993 102.211993) (xy 136.424952 102.135639) (xy 136.697507 102.022743) (xy 136.952994 101.875238) (xy 137.187042 101.695646) (xy 137.395646 101.487042) (xy 137.575238 101.252994) (xy 137.722743 100.997507) (xy 137.835639 100.724952) (xy 137.911993 100.439993) (xy 137.9505 100.147506) (xy 137.9505 99.852494) (xy 137.911993 99.560007) (xy 137.835639 99.275048) (xy 137.722743 99.002493) (xy 137.681629 98.931282) (xy 137.575238 98.747006) (xy 137.395647 98.512959) (xy 137.395641 98.512952) (xy 137.187047 98.304358) (xy 137.18704 98.304352) (xy 136.952993 98.124761) (xy 136.69751 97.977258) (xy 136.6975 97.977254) (xy 136.424961 97.864364) (xy 136.424954 97.864362) (xy 136.424952 97.864361) (xy 136.139993 97.788007) (xy 136.091113 97.781571) (xy 135.847513 97.7495) (xy 135.847506 97.7495) (xy 132.8745 97.7495) (xy 132.807461 97.729815) (xy 132.761706 97.677011) (xy 132.7505 97.6255) (xy 132.7505 90.172493) (xy 132.74721 90.147505) (xy 132.74721 90.147504) (xy 132.731158 90.025576) (xy 132.711994 89.880007) (xy 132.635639 89.595048) (xy 132.524364 89.326406) (xy 132.522747 89.322501) (xy 132.522737 89.322481) (xy 132.495352 89.27505) (xy 132.495351 89.275049) (xy 132.375238 89.067006) (xy 132.195647 88.832959) (xy 132.195642 88.832953) (xy 131.987042 88.624354) (xy 131.875647 88.512959) (xy 131.667046 88.304357) (xy 131.66704 88.304352) (xy 131.432993 88.124761) (xy 131.17751 87.977258) (xy 131.177495 87.977251) (xy 130.904952 87.864361) (xy 130.844732 87.848225) (xy 130.844732 87.848224) (xy 130.619991 87.788005) (xy 130.400716 87.759137) (xy 130.361532 87.753979) (xy 130.361531 87.753978) (xy 130.327507 87.7495) (xy 130.327506 87.7495) (xy 126.352494 87.7495) (xy 126.352492 87.7495) (xy 126.318467 87.753978) (xy 126.318467 87.753979) (xy 126.284441 87.758458) (xy 126.060008 87.788005) (xy 125.835266 87.848225) (xy 125.835265 87.848224) (xy 125.775053 87.864359) (xy 125.775051 87.864359) (xy 125.502499 87.977254) (xy 125.502489 87.977258) (xy 125.247006 88.124761) (xy 125.012959 88.304352) (xy 125.012953 88.304357) (xy 124.804354 88.512958) (xy 124.80435 88.512962) (xy 119.474132 93.843181) (xy 119.412809 93.876666) (xy 119.386451 93.8795) (xy 117.852486 93.8795) (xy 117.574085 93.916153) (xy 117.560007 93.918007) (xy 117.275048 93.994361) (xy 117.275038 93.994364) (xy 117.002499 94.107254) (xy 117.002494 94.107256) (xy 116.802212 94.222888) (xy 116.740214 94.2395) (xy 116.56213 94.2395) (xy 116.562123 94.239501) (xy 116.502516 94.245908) (xy 116.367671 94.296202) (xy 116.367664 94.296206) (xy 116.252455 94.382452) (xy 116.252452 94.382455) (xy 116.166206 94.497664) (xy 116.166202 94.497671) (xy 116.115908 94.632517) (xy 116.109501 94.692116) (xy 116.1095 94.692135) (xy 116.1095 94.870214) (xy 116.092887 94.932214) (xy 115.977258 95.132489) (xy 115.977254 95.132499) (xy 115.864364 95.405038) (xy 115.864361 95.405048) (xy 115.788008 95.690004) (xy 115.788006 95.690015) (xy 115.7495 95.982486) (xy 115.7495 96.277513) (xy 115.781571 96.521113) (xy 115.788007 96.569993) (xy 115.788008 96.569995) (xy 115.864361 96.854951) (xy 115.864364 96.854961) (xy 115.977254 97.1275) (xy 115.977258 97.12751) (xy 116.092887 97.327785) (xy 116.1095 97.389784) (xy 116.1095 97.567869) (xy 116.109501 97.567876) (xy 116.115908 97.627483) (xy 116.166202 97.762328) (xy 116.166206 97.762335) (xy 116.252452 97.877544) (xy 116.252455 97.877547) (xy 116.367664 97.963793) (xy 116.367671 97.963797) (xy 116.412618 97.980561) (xy 116.502517 98.014091) (xy 116.562127 98.0205) (xy 116.740213 98.020499) (xy 116.802214 98.037112) (xy 117.002485 98.152739) (xy 117.00249 98.152741) (xy 117.002493 98.152743) (xy 117.174361 98.223933) (xy 117.224233 98.244591) (xy 117.275048 98.265639) (xy 117.560007 98.341993) (xy 117.852494 98.3805) (xy 117.852501 98.3805) (xy 120.5175 98.3805) (xy 120.517505 98.3805) (xy 120.517506 98.3805) (xy 120.551532 98.37602) (xy 120.809993 98.341994) (xy 121.034732 98.281774) (xy 121.094952 98.265639) (xy 121.367507 98.152743) (xy 121.622994 98.005238) (xy 121.857042 97.825646) (xy 122.065646 97.617042) (xy 122.07101 97.611678) (xy 122.071025 97.61166) (xy 127.395868 92.286819) (xy 127.457191 92.253334) (xy 127.483549 92.2505) (xy 128.1255 92.2505) (xy 128.192539 92.270185) (xy 128.238294 92.322989) (xy 128.2495 92.3745) (xy 128.2495 99.01645) (xy 128.229815 99.083489) (xy 128.213181 99.104131) (xy 119.604132 107.713181) (xy 119.542809 107.746666) (xy 119.516451 107.7495) (xy 113.352486 107.7495) (xy 113.074085 107.786153) (xy 113.060007 107.788007) (xy 112.775048 107.864361) (xy 112.775038 107.864364) (xy 112.502499 107.977254) (xy 112.502489 107.977258) (xy 112.247007 108.12476) (xy 112.17681 108.178624) (xy 112.114583 108.203536) (xy 112.092519 108.205908) (xy 112.092513 108.20591) (xy 111.957671 108.256202) (xy 111.957664 108.256206) (xy 111.842455 108.342452) (xy 111.842452 108.342455) (xy 111.756206 108.457664) (xy 111.756202 108.457671) (xy 111.705908 108.592516) (xy 111.703536 108.614584) (xy 111.678623 108.676812) (xy 111.624761 108.747006) (xy 111.477258 109.002489) (xy 111.477254 109.002499) (xy 111.364364 109.275038) (xy 111.364361 109.275048) (xy 111.302854 109.504599) (xy 111.288008 109.560004) (xy 111.288006 109.560015) (xy 111.2495 109.852486) (xy 110.5505 109.852486) (xy 110.5505 102.19908) (xy 110.570185 102.132041) (xy 110.622989 102.086286) (xy 110.692147 102.076342) (xy 110.755703 102.105367) (xy 110.75938 102.108685) (xy 110.788079 102.135635) (xy 110.952968 102.290476) (xy 110.952978 102.290484) (xy 111.207504 102.475408) (xy 111.207509 102.47541) (xy 111.207516 102.475416) (xy 111.483234 102.626994) (xy 111.483239 102.626996) (xy 111.483241 102.626997) (xy 111.483242 102.626998) (xy 111.775771 102.742818) (xy 111.775774 102.742819) (xy 112.080523 102.821065) (xy 112.080527 102.821066) (xy 112.14601 102.829338) (xy 112.39267 102.860499) (xy 112.392679 102.860499) (xy 112.392682 102.8605) (xy 112.392684 102.8605) (xy 112.707316 102.8605) (xy 112.707318 102.8605) (xy 112.707321 102.860499) (xy 112.707329 102.860499) (xy 112.893593 102.836968) (xy 113.019473 102.821066) (xy 113.324225 102.742819) (xy 113.324228 102.742818) (xy 113.616757 102.626998) (xy 113.616758 102.626997) (xy 113.616756 102.626997) (xy 113.616766 102.626994) (xy 113.892484 102.475416) (xy 114.14703 102.290478) (xy 114.37639 102.075094) (xy 114.576947 101.832663) (xy 114.745537 101.567007) (xy 114.879503 101.282315) (xy 114.976731 100.983079) (xy 115.035688 100.674015) (xy 115.035689 100.674004) (xy 115.055444 100.360005) (xy 115.055444 100.359994) (xy 115.035689 100.045995) (xy 115.035688 100.045988) (xy 115.035688 100.045985) (xy 114.976731 99.736921) (xy 114.879503 99.437685) (xy 114.745537 99.152993) (xy 114.66809 99.030955) (xy 114.576948 98.887338) (xy 114.576945 98.887334) (xy 114.376393 98.644909) (xy 114.376391 98.644907) (xy 114.147031 98.429523) (xy 114.147021 98.429515) (xy 113.892495 98.244591) (xy 113.892488 98.244586) (xy 113.892484 98.244584) (xy 113.616766 98.093006) (xy 113.616763 98.093004) (xy 113.616758 98.093002) (xy 113.616757 98.093001) (xy 113.324228 97.977181) (xy 113.324225 97.97718) (xy 113.019476 97.898934) (xy 113.019463 97.898932) (xy 112.707329 97.8595) (xy 112.707318 97.8595) (xy 112.392682 97.8595) (xy 112.39267 97.8595) (xy 112.080536 97.898932) (xy 112.080523 97.898934) (xy 111.775774 97.97718) (xy 111.775771 97.977181) (xy 111.483242 98.093001) (xy 111.483241 98.093002) (xy 111.207516 98.244584) (xy 111.207504 98.244591) (xy 110.952978 98.429515) (xy 110.952968 98.429523) (xy 110.759384 98.611311) (xy 110.697039 98.642853) (xy 110.627538 98.635682) (xy 110.572948 98.592075) (xy 110.550599 98.525876) (xy 110.5505 98.520919) (xy 110.5505 91.049998) (xy 116.105172 91.049998) (xy 116.105172 91.050001) (xy 116.124459 91.319663) (xy 116.12446 91.31967) (xy 116.181924 91.58383) (xy 116.276404 91.837141) (xy 116.276406 91.837145) (xy 116.405965 92.074415) (xy 116.40597 92.074423) (xy 116.498464 92.19798) (xy 116.498465 92.197981) (xy 117.216732 91.479714) (xy 117.308692 91.617342) (xy 117.432658 91.741308) (xy 117.570285 91.833266) (xy 116.852017 92.551533) (xy 116.975583 92.644033) (xy 116.975584 92.644034) (xy 117.212854 92.773593) (xy 117.212858 92.773595) (xy 117.466169 92.868075) (xy 117.730329 92.925539) (xy 117.730336 92.92554) (xy 117.999999 92.944828) (xy 118.000001 92.944828) (xy 118.269663 92.92554) (xy 118.26967 92.925539) (xy 118.53383 92.868075) (xy 118.787141 92.773595) (xy 118.787145 92.773593) (xy 119.024424 92.644029) (xy 119.14798 92.551534) (xy 119.147981 92.551533) (xy 118.429714 91.833267) (xy 118.567342 91.741308) (xy 118.691308 91.617342) (xy 118.783267 91.479714) (xy 119.501533 92.197981) (xy 119.501534 92.19798) (xy 119.594029 92.074424) (xy 119.723593 91.837145) (xy 119.723595 91.837141) (xy 119.818075 91.58383) (xy 119.875539 91.31967) (xy 119.87554 91.319663) (xy 119.894828 91.050001) (xy 119.894828 91.049998) (xy 119.87554 90.780336) (xy 119.875539 90.780329) (xy 119.818075 90.516169) (xy 119.723595 90.262858) (xy 119.723593 90.262854) (xy 119.594034 90.025584) (xy 119.594033 90.025583) (xy 119.501533 89.902017) (xy 118.783266 90.620284) (xy 118.691308 90.482658) (xy 118.567342 90.358692) (xy 118.429714 90.266732) (xy 119.147981 89.548465) (xy 119.14798 89.548464) (xy 119.024423 89.45597) (xy 119.024415 89.455965) (xy 118.787145 89.326406) (xy 118.787141 89.326404) (xy 118.53383 89.231924) (xy 118.26967 89.17446) (xy 118.269663 89.174459) (xy 118.000001 89.155172) (xy 117.999999 89.155172) (xy 117.730336 89.174459) (xy 117.730329 89.17446) (xy 117.466169 89.231924) (xy 117.212858 89.326404) (xy 117.212854 89.326406) (xy 116.975584 89.455965) (xy 116.975576 89.45597) (xy 116.852017 89.548464) (xy 117.570285 90.266732) (xy 117.432658 90.358692) (xy 117.308692 90.482658) (xy 117.216732 90.620285) (xy 116.498464 89.902017) (xy 116.40597 90.025576) (xy 116.405965 90.025584) (xy 116.276406 90.262854) (xy 116.276404 90.262858) (xy 116.181924 90.516169) (xy 116.12446 90.780329) (xy 116.124459 90.780336) (xy 116.105172 91.049998) (xy 110.5505 91.049998) (xy 110.5505 85.969998) (xy 116.105172 85.969998) (xy 116.105172 85.970001) (xy 116.124459 86.239663) (xy 116.12446 86.23967) (xy 116.181924 86.50383) (xy 116.276404 86.757141) (xy 116.276406 86.757145) (xy 116.405965 86.994415) (xy 116.40597 86.994423) (xy 116.498464 87.11798) (xy 116.498465 87.117981) (xy 117.216732 86.399714) (xy 117.308692 86.537342) (xy 117.432658 86.661308) (xy 117.570285 86.753266) (xy 116.852017 87.471533) (xy 116.975583 87.564033) (xy 116.975584 87.564034) (xy 117.212854 87.693593) (xy 117.212858 87.693595) (xy 117.466169 87.788075) (xy 117.730329 87.845539) (xy 117.730336 87.84554) (xy 117.999999 87.864828) (xy 118.000001 87.864828) (xy 118.269663 87.84554) (xy 118.26967 87.845539) (xy 118.53383 87.788075) (xy 118.787141 87.693595) (xy 118.787145 87.693593) (xy 119.024424 87.564029) (xy 119.14798 87.471534) (xy 119.147981 87.471533) (xy 118.429714 86.753267) (xy 118.567342 86.661308) (xy 118.691308 86.537342) (xy 118.783267 86.399714) (xy 119.501533 87.117981) (xy 119.501534 87.11798) (xy 119.594029 86.994424) (xy 119.723593 86.757145) (xy 119.723595 86.757141) (xy 119.818075 86.50383) (xy 119.875539 86.23967) (xy 119.87554 86.239663) (xy 119.894828 85.970001) (xy 119.894828 85.969998) (xy 119.87554 85.700336) (xy 119.875539 85.700329) (xy 119.818075 85.436169) (xy 119.723595 85.182858) (xy 119.723593 85.182854) (xy 119.594034 84.945584) (xy 119.594033 84.945583) (xy 119.501533 84.822017) (xy 118.783266 85.540284) (xy 118.691308 85.402658) (xy 118.567342 85.278692) (xy 118.429714 85.186732) (xy 119.147981 84.468465) (xy 119.14798 84.468464) (xy 119.024423 84.37597) (xy 119.024415 84.375965) (xy 118.787145 84.246406) (xy 118.787141 84.246404) (xy 118.53383 84.151924) (xy 118.26967 84.09446) (xy 118.269663 84.094459) (xy 118.000001 84.075172) (xy 117.999999 84.075172) (xy 117.730336 84.094459) (xy 117.730329 84.09446) (xy 117.466169 84.151924) (xy 117.212858 84.246404) (xy 117.212854 84.246406) (xy 116.975584 84.375965) (xy 116.975576 84.37597) (xy 116.852017 84.468464) (xy 117.570285 85.186732) (xy 117.432658 85.278692) (xy 117.308692 85.402658) (xy 117.216732 85.540285) (xy 116.498464 84.822017) (xy 116.40597 84.945576) (xy 116.405965 84.945584) (xy 116.276406 85.182854) (xy 116.276404 85.182858) (xy 116.181924 85.436169) (xy 116.12446 85.700329) (xy 116.124459 85.700336) (xy 116.105172 85.969998) (xy 110.5505 85.969998) (xy 110.5505 85.047154) (xy 110.570185 84.980115) (xy 110.586814 84.959478) (xy 114.656293 80.889998) (xy 116.104671 80.889998) (xy 116.104671 80.890001) (xy 116.123963 81.159733) (xy 116.123964 81.15974) (xy 116.181443 81.423971) (xy 116.275948 81.677349) (xy 116.27595 81.677353) (xy 116.405544 81.914686) (xy 116.405549 81.914694) (xy 116.567599 82.131169) (xy 116.567615 82.131187) (xy 116.758812 82.322384) (xy 116.75883 82.3224) (xy 116.975305 82.48445) (xy 116.975313 82.484455) (xy 117.212646 82.614049) (xy 117.212648 82.61405) (xy 117.212652 82.614052) (xy 117.466024 82.708555) (xy 117.466027 82.708555) (xy 117.466028 82.708556) (xy 117.537534 82.724111) (xy 117.730267 82.766037) (xy 117.980707 82.783949) (xy 117.999999 82.785329) (xy 118 82.785329) (xy 118.000001 82.785329) (xy 118.018005 82.784041) (xy 118.269733 82.766037) (xy 118.533976 82.708555) (xy 118.787348 82.614052) (xy 119.024692 82.484452) (xy 119.241177 82.322394) (xy 119.432394 82.131177) (xy 119.594452 81.914692) (xy 119.724052 81.677348) (xy 119.818555 81.423976) (xy 119.876037 81.159733) (xy 119.895329 80.89) (xy 119.876037 80.620267) (xy 119.818555 80.356024) (xy 119.724052 80.102652) (xy 119.594452 79.865308) (xy 119.438267 79.656668) (xy 119.4324 79.64883) (xy 119.432384 79.648812) (xy 119.241187 79.457615) (xy 119.241169 79.457599) (xy 119.024694 79.295549) (xy 119.024686 79.295544) (xy 118.787353 79.16595) (xy 118.787349 79.165948) (xy 118.533971 79.071443) (xy 118.26974 79.013964) (xy 118.269733 79.013963) (xy 118.000001 78.994671) (xy 117.999999 78.994671) (xy 117.730266 79.013963) (xy 117.730259 79.013964) (xy 117.466028 79.071443) (xy 117.21265 79.165948) (xy 117.212646 79.16595) (xy 116.975313 79.295544) (xy 116.975305 79.295549) (xy 116.75883 79.457599) (xy 116.758812 79.457615) (xy 116.567615 79.648812) (xy 116.567599 79.64883) (xy 116.405549 79.865305) (xy 116.405544 79.865313) (xy 116.27595 80.102646) (xy 116.275948 80.10265) (xy 116.181443 80.356028) (xy 116.123964 80.620259) (xy 116.123963 80.620266) (xy 116.104671 80.889998) (xy 114.656293 80.889998) (xy 116.668506 78.877785) (xy 116.668511 78.877782) (xy 116.678714 78.867578) (xy 116.678716 78.867578) (xy 116.79052 78.755774) (xy 116.848017 78.656186) (xy 116.869577 78.618843) (xy 116.9105 78.466116) (xy 116.9105 78.308001) (xy 116.9105 75.530096) (xy 116.930185 75.463057) (xy 116.946814 75.44242) (xy 120.557579 71.831654) (xy 120.6189 71.798171) (xy 120.688592 71.803155) (xy 120.744525 71.845027) (xy 120.768942 71.910491) (xy 120.766875 71.943528) (xy 120.7395 72.081153) (xy 120.7395 72.238846) (xy 120.770261 72.393489) (xy 120.770264 72.393501) (xy 120.830602 72.539172) (xy 120.830609 72.539185) (xy 120.91821 72.670288) (xy 120.918213 72.670292) (xy 121.029707 72.781786) (xy 121.029711 72.781789) (xy 121.160814 72.86939) (xy 121.160827 72.869397) (xy 121.306498 72.929735) (xy 121.306503 72.929737) (xy 121.461153 72.960499) (xy 121.461156 72.9605) (xy 121.461158 72.9605) (xy 121.618844 72.9605) (xy 121.618845 72.960499) (xy 121.773497 72.929737) (xy 121.919179 72.869394) (xy 122.050289 72.781789) (xy 122.161789 72.670289) (xy 122.249394 72.539179) (xy 122.309737 72.393497) (xy 122.333883 72.27211) (xy 122.366268 72.210199) (xy 122.426984 72.175625) (xy 122.496753 72.179364) (xy 122.553425 72.220231) (xy 122.579006 72.285249) (xy 122.5795 72.296301) (xy 122.5795 73.198097) (xy 122.616446 73.431368) (xy 122.689433 73.655996) (xy 122.796657 73.866434) (xy 122.935484 74.057511) (xy 122.935485 74.057512) (xy 124.77764 75.899668) (xy 124.809734 75.955255) (xy 124.838842 76.063887) (xy 124.926653 76.275881) (xy 124.926657 76.27589) (xy 125.041392 76.474617) (xy 125.181081 76.656661) (xy 125.181089 76.65667) (xy 125.34333 76.818911) (xy 125.343338 76.818918) (xy 125.525382 76.958607) (xy 125.525385 76.958608) (xy 125.525388 76.958611) (xy 125.724112 77.073344) (xy 125.724117 77.073346) (xy 125.724123 77.073349) (xy 125.81548 77.11119) (xy 125.936113 77.161158) (xy 126.157762 77.220548) (xy 126.385266 77.2505) (xy 137.385266 77.2505) (xy 144.1255 77.2505) (xy 144.192539 77.270185) (xy 144.238294 77.322989) (xy 144.2495 77.3745) (xy 144.2495 78.614741) (xy 144.274446 78.804215) (xy 144.279452 78.842238) (xy 144.279453 78.84224) (xy 144.338842 79.063887) (xy 144.42665 79.275876) (xy 144.426657 79.275891) (xy 144.531567 79.457599) (xy 144.541389 79.474612) (xy 144.611235 79.565636) (xy 144.675071 79.64883) (xy 144.681082 79.656663) (xy 144.681086 79.656668) (xy 149.213181 84.188762) (xy 149.246666 84.250085) (xy 149.2495 84.276443) (xy 149.2495 97.8755) (xy 149.229815 97.942539) (xy 149.177011 97.988294) (xy 149.1255 97.9995) (xy 145.668872 97.9995) (xy 145.437772 98.029926) (xy 145.408884 98.03373) (xy 145.187681 98.093001) (xy 145.155581 98.101602) (xy 145.155571 98.101605) (xy 144.913309 98.201953) (xy 144.913299 98.201958) (xy 144.686196 98.333075) (xy 144.478148 98.492718) (xy 144.292718 98.678148) (xy 144.133075 98.886196) (xy 144.001958 99.113299) (xy 144.001953 99.113309) (xy 143.901605 99.355571) (xy 143.901603 99.355578) (xy 143.901602 99.355581) (xy 143.83373 99.608884) (xy 143.833242 99.61259) (xy 143.7995 99.868872) (xy 143.7995 100.131127) (xy 143.826123 100.333339) (xy 143.83373 100.391116) (xy 143.901602 100.644418) (xy 143.901605 100.644428) (xy 144.001953 100.88669) (xy 144.001958 100.8867) (xy 144.133075 101.113803) (xy 144.292718 101.321851) (xy 144.292726 101.32186) (xy 144.47814 101.507274) (xy 144.478148 101.507281) (xy 144.686196 101.666924) (xy 144.913299 101.798041) (xy 144.913309 101.798046) (xy 145.155571 101.898394) (xy 145.155581 101.898398) (xy 145.408884 101.96627) (xy 145.66888 102.0005) (xy 149.620004 102.0005) (xy 149.687043 102.020185) (xy 149.707685 102.036819) (xy 160.678143 113.007278) (xy 160.678148 113.007282) (xy 160.678149 113.007283) (xy 160.752386 113.064246) (xy 160.752387 113.064248) (xy 160.886199 113.166926) (xy 160.886201 113.166927) (xy 161.019339 113.243793) (xy 161.101721 113.291356) (xy 161.113303 113.298043) (xy 161.355581 113.398398) (xy 161.608884 113.466271) (xy 161.738882 113.483385) (xy 161.86888 113.5005) (xy 161.868887 113.5005) (xy 165.436113 113.5005) (xy 165.43612 113.5005) (xy 165.696116 113.46627) (xy 165.949419 113.398398) (xy 166.162979 113.309937) (xy 166.210432 113.300499) (xy 166.652871 113.300499) (xy 166.652872 113.300499) (xy 166.712483 113.294091) (xy 166.847331 113.243796) (xy 166.962546 113.157546) (xy 167.048796 113.042331) (xy 167.099091 112.907483) (xy 167.1055 112.847873) (xy 167.105499 112.405429) (xy 167.114938 112.357977) (xy 167.203398 112.144419) (xy 167.27127 111.891116) (xy 167.3055 111.63112) (xy 167.3055 111.36888) (xy 167.27127 111.108884) (xy 167.203398 110.855581) (xy 167.198876 110.844663) (xy 167.114938 110.642019) (xy 167.105499 110.594566) (xy 167.105499 110.152129) (xy 167.105498 110.152123) (xy 167.105434 110.151529) (xy 167.099091 110.092517) (xy 167.092633 110.075203) (xy 167.048797 109.957671) (xy 167.048793 109.957664) (xy 166.962547 109.842455) (xy 166.962544 109.842452) (xy 166.847335 109.756206) (xy 166.847328 109.756202) (xy 166.712482 109.705908) (xy 166.712483 109.705908) (xy 166.652883 109.699501) (xy 166.652881 109.6995) (xy 166.652873 109.6995) (xy 166.652865 109.6995) (xy 166.21043 109.6995) (xy 166.162977 109.690061) (xy 166.161425 109.689418) (xy 165.949419 109.601602) (xy 165.696116 109.53373) (xy 165.638339 109.526123) (xy 165.436127 109.4995) (xy 165.43612 109.4995) (xy 162.879996 109.4995) (xy 162.812957 109.479815) (xy 162.792315 109.463181) (xy 159.829129 106.499995) (xy 163.499953 106.499995) (xy 163.499953 106.500004) (xy 163.520113 106.769026) (xy 163.520113 106.769028) (xy 163.580142 107.032033) (xy 163.580148 107.032052) (xy 163.678709 107.283181) (xy 163.678708 107.283181) (xy 163.813602 107.516822) (xy 163.867294 107.584151) (xy 164.703957 106.747487) (xy 164.728978 106.80789) (xy 164.800112 106.914351) (xy 164.890649 107.004888) (xy 164.99711 107.076022) (xy 165.05751 107.101041) (xy 164.219848 107.938702) (xy 164.402483 108.06322) (xy 164.402485 108.063221) (xy 164.645539 108.180269) (xy 164.645537 108.180269) (xy 164.903337 108.25979) (xy 164.903343 108.259792) (xy 165.170101 108.299999) (xy 165.17011 108.3) (xy 165.43989 108.3) (xy 165.439898 108.299999) (xy 165.706656 108.259792) (xy 165.706662 108.25979) (xy 165.964461 108.180269) (xy 166.207521 108.063218) (xy 166.39015 107.938702) (xy 165.552488 107.101041) (xy 165.61289 107.076022) (xy 165.719351 107.004888) (xy 165.809888 106.914351) (xy 165.881022 106.80789) (xy 165.906041 106.747488) (xy 166.742703 107.584151) (xy 166.742704 107.58415) (xy 166.796393 107.516828) (xy 166.7964 107.516817) (xy 166.93129 107.283181) (xy 167.029851 107.032052) (xy 167.029857 107.032033) (xy 167.089886 106.769028) (xy 167.089886 106.769026) (xy 167.110047 106.500004) (xy 167.110047 106.499995) (xy 167.089886 106.230973) (xy 167.089886 106.230971) (xy 167.029857 105.967966) (xy 167.029851 105.967947) (xy 166.93129 105.716818) (xy 166.931291 105.716818) (xy 166.796397 105.483177) (xy 166.742704 105.415847) (xy 165.906041 106.25251) (xy 165.881022 106.19211) (xy 165.809888 106.085649) (xy 165.719351 105.995112) (xy 165.61289 105.923978) (xy 165.552488 105.898958) (xy 166.39015 105.061296) (xy 166.207517 104.936779) (xy 166.207516 104.936778) (xy 165.96446 104.81973) (xy 165.964462 104.81973) (xy 165.706662 104.740209) (xy 165.706656 104.740207) (xy 165.439898 104.7) (xy 165.170101 104.7) (xy 164.903343 104.740207) (xy 164.903337 104.740209) (xy 164.645538 104.81973) (xy 164.402485 104.936778) (xy 164.402476 104.936783) (xy 164.219848 105.061296) (xy 165.057511 105.898958) (xy 164.99711 105.923978) (xy 164.890649 105.995112) (xy 164.800112 106.085649) (xy 164.728978 106.19211) (xy 164.703958 106.252511) (xy 163.867295 105.415848) (xy 163.8136 105.48318) (xy 163.678709 105.716818) (xy 163.580148 105.967947) (xy 163.580142 105.967966) (xy 163.520113 106.230971) (xy 163.520113 106.230973) (xy 163.499953 106.499995) (xy 159.829129 106.499995) (xy 152.999883 99.670749) (xy 152.968125 99.61259) (xy 152.967321 99.612806) (xy 152.966432 99.609488) (xy 152.966398 99.609426) (xy 152.966337 99.609135) (xy 152.96627 99.608884) (xy 152.898398 99.355581) (xy 152.865036 99.275038) (xy 152.798046 99.113309) (xy 152.798043 99.113304) (xy 152.798043 99.113303) (xy 152.767112 99.059728) (xy 152.7505 98.997729) (xy 152.7505 83.385265) (xy 152.720549 83.157764) (xy 152.720549 83.157761) (xy 152.661158 82.936114) (xy 152.590711 82.766037) (xy 152.573349 82.72412) (xy 152.573344 82.724111) (xy 152.564363 82.708556) (xy 152.509801 82.614052) (xy 152.458611 82.525388) (xy 152.388765 82.434363) (xy 152.31892 82.343339) (xy 152.318915 82.343333) (xy 147.786819 77.811237) (xy 147.753334 77.749914) (xy 147.7505 77.723556) (xy 147.7505 77.3745) (xy 147.770185 77.307461) (xy 147.822989 77.261706) (xy 147.8745 77.2505) (xy 155.614727 77.2505) (xy 155.614734 77.2505) (xy 155.842238 77.220548) (xy 156.063887 77.161158) (xy 156.275888 77.073344) (xy 156.474612 76.958611) (xy 156.656661 76.818919) (xy 156.656665 76.818914) (xy 156.65667 76.818911) (xy 156.818911 76.65667) (xy 156.818914 76.656665) (xy 156.818919 76.656661) (xy 156.958611 76.474612) (xy 157.073344 76.275888) (xy 157.161158 76.063887) (xy 157.190265 75.955253) (xy 157.222356 75.899669) (xy 158.824518 74.29751) (xy 158.963343 74.106433) (xy 159.070568 73.895992) (xy 159.143553 73.671368) (xy 159.169249 73.509128) (xy 159.1805 73.438092) (xy 159.1805 71.639) (xy 159.200185 71.571961) (xy 159.252989 71.526206) (xy 159.3045 71.515) (xy 159.97 71.515) (xy 159.97 70.44456) (xy 160.023147 70.475245) (xy 160.152857 70.51) (xy 160.287143 70.51) (xy 160.416853 70.475245) (xy 160.47 70.44456) (xy 160.47 71.515) (xy 161.132828 71.515) (xy 161.132844 71.514999) (xy 161.192372 71.508598) (xy 161.192379 71.508596) (xy 161.327086 71.458354) (xy 161.327093 71.45835) (xy 161.442187 71.37219) (xy 161.44219 71.372187) (xy 161.52835 71.257093) (xy 161.528354 71.257086) (xy 161.578596 71.122379) (xy 161.578598 71.122372) (xy 161.584999 71.062844) (xy 161.585 71.062827) (xy 161.585 70.25) (xy 160.66456 70.25) (xy 160.695245 70.196853) (xy 160.73 70.067143) (xy 160.73 69.932857) (xy 160.695245 69.803147) (xy 160.66456 69.75) (xy 161.549403 69.75) (xy 161.616442 69.769685) (xy 161.637084 69.786319) (xy 162.163181 70.312416) (xy 162.196666 70.373739) (xy 162.1995 70.400097) (xy 162.1995 93.910388) (xy 162.199499 93.910406) (xy 162.199499 94.076112) (xy 162.199498 94.076112) (xy 162.238827 94.222888) (xy 162.240423 94.228843) (xy 162.255388 94.254762) (xy 162.298116 94.32877) (xy 162.319479 94.365773) (xy 162.438349 94.484643) (xy 162.438355 94.484648) (xy 167.863181 99.909474) (xy 167.896666 99.970797) (xy 167.8995 99.997155) (xy 167.8995 113.699902) (xy 167.879815 113.766941) (xy 167.863181 113.787583) (xy 158.692181 122.958583) (xy 158.630858 122.992068) (xy 158.561166 122.987084) (xy 158.505233 122.945212) (xy 158.480816 122.879748) (xy 158.4805 122.870902) (xy 158.4805 122.761155) (xy 158.480499 122.761153) (xy 158.460536 122.660793) (xy 158.449737 122.606503) (xy 158.449735 122.606498) (xy 158.389397 122.460827) (xy 158.38939 122.460814) (xy 158.301789 122.329711) (xy 158.301786 122.329707) (xy 158.190292 122.218213) (xy 158.190288 122.21821) (xy 158.059185 122.130609) (xy 158.059172 122.130602) (xy 157.913501 122.070264) (xy 157.913489 122.070261) (xy 157.758845 122.0395) (xy 157.758842 122.0395) (xy 157.601158 122.0395) (xy 157.601155 122.0395) (xy 157.44651 122.070261) (xy 157.446498 122.070264) (xy 157.300827 122.130602) (xy 157.300814 122.130609) (xy 157.169711 122.21821) (xy 157.169707 122.218213) (xy 157.058213 122.329707) (xy 157.05821 122.329711) (xy 156.970609 122.460814) (xy 156.970602 122.460827) (xy 156.910264 122.606498) (xy 156.910261 122.60651) (xy 156.8795 122.761153) (xy 156.8795 122.918846) (xy 156.910261 123.073489) (xy 156.910264 123.073501) (xy 156.970602 123.219172) (xy 156.970609 123.219185) (xy 157.05821 123.350288) (xy 157.058213 123.350292) (xy 157.12566 123.417739) (xy 157.159145 123.479062) (xy 157.154161 123.548754) (xy 157.112289 123.604687) (xy 157.094275 123.615904) (xy 156.964323 123.682118) (xy 156.842678 123.770499) (xy 156.790437 123.808455) (xy 156.790435 123.808457) (xy 156.790434 123.808457) (xy 156.638457 123.960434) (xy 156.638457 123.960435) (xy 156.638455 123.960437) (xy 156.547567 124.085533) (xy 156.510318 124.136802) (xy 156.454988 124.179467) (xy 156.385374 124.185446) (xy 156.323579 124.15284) (xy 156.309682 124.136802) (xy 156.272435 124.085536) (xy 156.181545 123.960437) (xy 156.029563 123.808455) (xy 155.855678 123.68212) (xy 155.855674 123.682118) (xy 155.66417 123.584541) (xy 155.664167 123.58454) (xy 155.459757 123.518124) (xy 155.303614 123.493393) (xy 155.247467 123.4845) (xy 155.032533 123.4845) (xy 154.976386 123.493393) (xy 154.820243 123.518124) (xy 154.82024 123.518124) (xy 154.615832 123.58454) (xy 154.615829 123.584541) (xy 154.424321 123.68212) (xy 154.250438 123.808454) (xy 154.155522 123.90337) (xy 154.094198 123.936854) (xy 154.024507 123.93187) (xy 153.968574 123.889998) (xy 153.951659 123.859021) (xy 153.908354 123.742913) (xy 153.90835 123.742906) (xy 153.82219 123.627812) (xy 153.822187 123.627809) (xy 153.707093 123.541649) (xy 153.707086 123.541645) (xy 153.572379 123.491403) (xy 153.572372 123.491401) (xy 153.512844 123.485) (xy 152.85 123.485) (xy 152.85 124.555439) (xy 152.796853 124.524755) (xy 152.667143 124.49) (xy 152.532857 124.49) (xy 152.403147 124.524755) (xy 152.35 124.555439) (xy 152.35 123.485) (xy 151.687155 123.485) (xy 151.627627 123.491401) (xy 151.62762 123.491403) (xy 151.492913 123.541645) (xy 151.492906 123.541649) (xy 151.377812 123.627809) (xy 151.377809 123.627812) (xy 151.291649 123.742906) (xy 151.291645 123.742913) (xy 151.241403 123.87762) (xy 151.241401 123.877627) (xy 151.235 123.937155) (xy 151.235 124.75) (xy 152.15544 124.75) (xy 152.124755 124.803147) (xy 152.09 124.932857) (xy 152.09 125.067143) (xy 152.124755 125.196853) (xy 152.15544 125.25) (xy 151.235 125.25) (xy 151.235 126.062844) (xy 151.241401 126.122372) (xy 151.241403 126.122379) (xy 151.291645 126.257086) (xy 151.291649 126.257093) (xy 151.353278 126.339418) (xy 151.36891 126.381327) (xy 151.395697 126.387155) (xy 151.410582 126.396721) (xy 151.49291 126.458352) (xy 151.492913 126.458354) (xy 151.62762 126.508596) (xy 151.627627 126.508598) (xy 151.687155 126.514999) (xy 151.687172 126.515) (xy 152.35 126.515) (xy 152.35 125.44456) (xy 152.403147 125.475245) (xy 152.532857 125.51) (xy 152.667143 125.51) (xy 152.796853 125.475245) (xy 152.85 125.44456) (xy 152.85 126.515) (xy 153.512828 126.515) (xy 153.512844 126.514999) (xy 153.572372 126.508598) (xy 153.572379 126.508596) (xy 153.707086 126.458354) (xy 153.707093 126.45835) (xy 153.822187 126.37219) (xy 153.82219 126.372187) (xy 153.90835 126.257093) (xy 153.908355 126.257084) (xy 153.951659 126.140979) (xy 153.993529 126.085045) (xy 154.058994 126.060627) (xy 154.127267 126.075478) (xy 154.155522 126.09663) (xy 154.250437 126.191545) (xy 154.424322 126.31788) (xy 154.459251 126.335677) (xy 154.615829 126.415458) (xy 154.615832 126.415459) (xy 154.806494 126.477408) (xy 154.820245 126.481876) (xy 155.032533 126.5155) (xy 155.032534 126.5155) (xy 155.247466 126.5155) (xy 155.247467 126.5155) (xy 155.459755 126.481876) (xy 155.459758 126.481875) (xy 155.459759 126.481875) (xy 155.664167 126.415459) (xy 155.66417 126.415458) (xy 155.692029 126.401263) (xy 155.855678 126.31788) (xy 156.029563 126.191545) (xy 156.181545 126.039563) (xy 156.30788 125.865678) (xy 156.307879 125.865678) (xy 156.309682 125.863198) (xy 156.365012 125.820532) (xy 156.434625 125.814553) (xy 156.49642 125.847159) (xy 156.510318 125.863198) (xy 156.51212 125.865678) (xy 156.638455 126.039563) (xy 156.790437 126.191545) (xy 156.964322 126.31788) (xy 156.999251 126.335677) (xy 157.155829 126.415458) (xy 157.155832 126.415459) (xy 157.346494 126.477408) (xy 157.360245 126.481876) (xy 157.572533 126.5155) (xy 157.572534 126.5155) (xy 157.787466 126.5155) (xy 157.787467 126.5155) (xy 157.999755 126.481876) (xy 157.999758 126.481875) (xy 157.999759 126.481875) (xy 158.204167 126.415459) (xy 158.20417 126.415458) (xy 158.232029 126.401263) (xy 158.395678 126.31788) (xy 158.569563 126.191545) (xy 158.721545 126.039563) (xy 158.84788 125.865678) (xy 158.847879 125.865678) (xy 158.849682 125.863198) (xy 158.905012 125.820532) (xy 158.974625 125.814553) (xy 159.03642 125.847159) (xy 159.050318 125.863198) (xy 159.05212 125.865678) (xy 159.178455 126.039563) (xy 159.330437 126.191545) (xy 159.504322 126.31788) (xy 159.539251 126.335677) (xy 159.695829 126.415458) (xy 159.695835 126.41546) (xy 159.892397 126.479326) (xy 159.950073 126.518763) (xy 159.977272 126.583121) (xy 159.965358 126.651968) (xy 159.941761 126.684938) (xy 159.413521 127.213181) (xy 159.352198 127.246666) (xy 159.32584 127.2495) (xy 151.965783 127.2495) (xy 151.898744 127.229815) (xy 151.878102 127.213181) (xy 151.248589 126.583668) (xy 151.217747 126.527186) (xy 151.179702 126.512997) (xy 151.166331 126.50141) (xy 150.821819 126.156898) (xy 150.788334 126.095575) (xy 150.7855 126.069217) (xy 150.7855 124.105943) (xy 150.785499 124.105937) (xy 150.783771 124.099486) (xy 150.783771 124.099487) (xy 150.775489 124.068579) (xy 150.744577 123.953215) (xy 150.695791 123.868716) (xy 150.66552 123.816284) (xy 150.553716 123.70448) (xy 150.553715 123.704479) (xy 150.549385 123.700149) (xy 150.549374 123.700139) (xy 149.98759 123.138355) (xy 149.987588 123.138352) (xy 149.868717 123.019481) (xy 149.868716 123.01948) (xy 149.781904 122.96936) (xy 149.781904 122.969359) (xy 149.7819 122.969358) (xy 149.731785 122.940423) (xy 149.579057 122.899499) (xy 149.420943 122.899499) (xy 149.413347 122.899499) (xy 149.413331 122.8995) (xy 147.90094 122.8995) (xy 147.860019 122.910464) (xy 147.860019 122.910465) (xy 147.828756 122.918842) (xy 147.748214 122.940423) (xy 147.748209 122.940426) (xy 147.61129 123.019475) (xy 147.611282 123.019481) (xy 147.499478 123.131286) (xy 147.499477 123.131287) (xy 147.462421 123.168342) (xy 147.401097 123.201827) (xy 147.331406 123.196841) (xy 147.275473 123.154969) (xy 147.251057 123.089504) (xy 147.253124 123.056468) (xy 147.260482 123.019481) (xy 147.270451 122.96936) (xy 147.2805 122.918844) (xy 147.2805 122.761155) (xy 147.280499 122.761153) (xy 147.260536 122.660793) (xy 147.249737 122.606503) (xy 147.249735 122.606498) (xy 147.189397 122.460827) (xy 147.18939 122.460814) (xy 147.101789 122.329711) (xy 147.101786 122.329707) (xy 146.990292 122.218213) (xy 146.990288 122.21821) (xy 146.859185 122.130609) (xy 146.859172 122.130602) (xy 146.713501 122.070264) (xy 146.713489 122.070261) (xy 146.558845 122.0395) (xy 146.558842 122.0395) (xy 146.401158 122.0395) (xy 146.401155 122.0395) (xy 146.24651 122.070261) (xy 146.246498 122.070264) (xy 146.100827 122.130602) (xy 146.100814 122.130609) (xy 145.969711 122.21821) (xy 145.969707 122.218213) (xy 145.858213 122.329707) (xy 145.85821 122.329711) (xy 145.770609 122.460814) (xy 145.770602 122.460827) (xy 145.710264 122.606498) (xy 145.710261 122.60651) (xy 145.6795 122.761153) (xy 145.6795 122.918846) (xy 145.710261 123.073489) (xy 145.710264 123.073501) (xy 145.770602 123.219172) (xy 145.770609 123.219185) (xy 145.85821 123.350288) (xy 145.858213 123.350292) (xy 145.92566 123.417739) (xy 145.959145 123.479062) (xy 145.954161 123.548754) (xy 145.912289 123.604687) (xy 145.894275 123.615904) (xy 145.764323 123.682118) (xy 145.642678 123.770499) (xy 145.590437 123.808455) (xy 145.590435 123.808457) (xy 145.590434 123.808457) (xy 145.438457 123.960434) (xy 145.438457 123.960435) (xy 145.438455 123.960437) (xy 145.347567 124.085533) (xy 145.310318 124.136802) (xy 145.254988 124.179467) (xy 145.185374 124.185446) (xy 145.123579 124.15284) (xy 145.109682 124.136802) (xy 145.072435 124.085536) (xy 144.981545 123.960437) (xy 144.829563 123.808455) (xy 144.655678 123.68212) (xy 144.655674 123.682118) (xy 144.46417 123.584541) (xy 144.464167 123.58454) (xy 144.259757 123.518124) (xy 144.103614 123.493393) (xy 144.047467 123.4845) (xy 143.832533 123.4845) (xy 143.776386 123.493393) (xy 143.620243 123.518124) (xy 143.62024 123.518124) (xy 143.415832 123.58454) (xy 143.415829 123.584541) (xy 143.224321 123.68212) (xy 143.050438 123.808454) (xy 142.955522 123.90337) (xy 142.894198 123.936854) (xy 142.824507 123.93187) (xy 142.768574 123.889998) (xy 142.751659 123.859021) (xy 142.708354 123.742913) (xy 142.70835 123.742906) (xy 142.62219 123.627812) (xy 142.622187 123.627809) (xy 142.507093 123.541649) (xy 142.507086 123.541645) (xy 142.372379 123.491403) (xy 142.372372 123.491401) (xy 142.312844 123.485) (xy 141.65 123.485) (xy 141.65 124.555439) (xy 141.596853 124.524755) (xy 141.467143 124.49) (xy 141.332857 124.49) (xy 141.203147 124.524755) (xy 141.15 124.555439) (xy 141.15 123.485) (xy 140.487155 123.485) (xy 140.427627 123.491401) (xy 140.42762 123.491403) (xy 140.292913 123.541645) (xy 140.292906 123.541649) (xy 140.177812 123.627809) (xy 140.177809 123.627812) (xy 140.091649 123.742906) (xy 140.091645 123.742913) (xy 140.041403 123.87762) (xy 140.041401 123.877627) (xy 140.035 123.937155) (xy 140.035 124.75) (xy 140.95544 124.75) (xy 140.924755 124.803147) (xy 140.89 124.932857) (xy 140.89 125.067143) (xy 140.924755 125.196853) (xy 140.95544 125.25) (xy 140.035 125.25) (xy 140.035 126.062844) (xy 140.041401 126.122372) (xy 140.041403 126.122379) (xy 140.091645 126.257086) (xy 140.091649 126.257093) (xy 140.177809 126.372187) (xy 140.177812 126.37219) (xy 140.292906 126.45835) (xy 140.292913 126.458354) (xy 140.42762 126.508596) (xy 140.427627 126.508598) (xy 140.487155 126.514999) (xy 140.487172 126.515) (xy 141.15 126.515) (xy 141.15 125.44456) (xy 141.203147 125.475245) (xy 141.332857 125.51) (xy 141.467143 125.51) (xy 141.596853 125.475245) (xy 141.65 125.44456) (xy 141.65 126.515) (xy 142.312828 126.515) (xy 142.312844 126.514999) (xy 142.372372 126.508598) (xy 142.372379 126.508596) (xy 142.507086 126.458354) (xy 142.507093 126.45835) (xy 142.622187 126.37219) (xy 142.62219 126.372187) (xy 142.70835 126.257093) (xy 142.708355 126.257084) (xy 142.751659 126.140979) (xy 142.793529 126.085045) (xy 142.858994 126.060627) (xy 142.927267 126.075478) (xy 142.955522 126.09663) (xy 143.050437 126.191545) (xy 143.224322 126.31788) (xy 143.259251 126.335677) (xy 143.415829 126.415458) (xy 143.415832 126.415459) (xy 143.606494 126.477408) (xy 143.620245 126.481876) (xy 143.832533 126.5155) (xy 143.832534 126.5155) (xy 144.047466 126.5155) (xy 144.047467 126.5155) (xy 144.259755 126.481876) (xy 144.259758 126.481875) (xy 144.259759 126.481875) (xy 144.464167 126.415459) (xy 144.46417 126.415458) (xy 144.492029 126.401263) (xy 144.655678 126.31788) (xy 144.829563 126.191545) (xy 144.981545 126.039563) (xy 145.10788 125.865678) (xy 145.107879 125.865678) (xy 145.109682 125.863198) (xy 145.165012 125.820532) (xy 145.234625 125.814553) (xy 145.29642 125.847159) (xy 145.310318 125.863198) (xy 145.31212 125.865678) (xy 145.438455 126.039563) (xy 145.590437 126.191545) (xy 145.764322 126.31788) (xy 145.799251 126.335677) (xy 145.955829 126.415458) (xy 145.955832 126.415459) (xy 146.146494 126.477408) (xy 146.160245 126.481876) (xy 146.372533 126.5155) (xy 146.372534 126.5155) (xy 146.587466 126.5155) (xy 146.587467 126.5155) (xy 146.799755 126.481876) (xy 146.799758 126.481875) (xy 146.799759 126.481875) (xy 147.004167 126.415459) (xy 147.00417 126.415458) (xy 147.032029 126.401263) (xy 147.195678 126.31788) (xy 147.369563 126.191545) (xy 147.521545 126.039563) (xy 147.64788 125.865678) (xy 147.647879 125.865678) (xy 147.649682 125.863198) (xy 147.705012 125.820532) (xy 147.774625 125.814553) (xy 147.83642 125.847159) (xy 147.850318 125.863198) (xy 147.85212 125.865678) (xy 147.978455 126.039563) (xy 148.130437 126.191545) (xy 148.304322 126.31788) (xy 148.339251 126.335677) (xy 148.495829 126.415458) (xy 148.495832 126.415459) (xy 148.686494 126.477408) (xy 148.700245 126.481876) (xy 148.877174 126.509899) (xy 148.940308 126.539828) (xy 148.945455 126.54469) (xy 151.131284 128.73052) (xy 151.131286 128.730521) (xy 151.13129 128.730524) (xy 151.268209 128.809573) (xy 151.268212 128.809575) (xy 151.268216 128.809577) (xy 151.420943 128.850501) (xy 151.420945 128.850501) (xy 151.586654 128.850501) (xy 151.58667 128.8505) (xy 159.704954 128.8505) (xy 159.70497 128.850501) (xy 159.712566 128.850501) (xy 159.870677 128.850501) (xy 159.87068 128.850501) (xy 160.023408 128.809577) (xy 160.037043 128.801704) (xy 160.073714 128.780533) (xy 160.073728 128.780524) (xy 160.073737 128.780519) (xy 160.160339 128.73052) (xy 160.272143 128.618716) (xy 160.272143 128.618714) (xy 160.282347 128.608511) (xy 160.28235 128.608506) (xy 162.26552 126.625339) (xy 162.344577 126.488408) (xy 162.385501 126.33568) (xy 162.385501 126.177565) (xy 162.385501 126.16997) (xy 162.3855 126.169952) (xy 162.3855 122.712155) (xy 162.405185 122.645116) (xy 162.421819 122.624474) (xy 166.330498 118.715795) (xy 170.28052 114.765774) (xy 170.359577 114.628842) (xy 170.400501 114.476115) (xy 170.400501 114.318) (xy 170.400501 114.310405) (xy 170.4005 114.310387) (xy 170.4005 99.38906) (xy 170.400501 99.389047) (xy 170.400501 99.220944) (xy 170.382293 99.152993) (xy 170.359577 99.068216) (xy 170.359344 99.067812) (xy 170.280524 98.93129) (xy 170.280518 98.931282) (xy 164.636819 93.287583) (xy 164.603334 93.22626) (xy 164.6005 93.199902) (xy 164.6005 69.692001) (xy 164.600501 69.691988) (xy 164.600501 69.523887) (xy 164.600501 69.523885) (xy 164.559577 69.371157) (xy 164.559575 69.371154) (xy 164.559575 69.371152) (xy 164.559574 69.371151) (xy 164.527059 69.314834) (xy 164.527057 69.314832) (xy 164.480521 69.234228) (xy 164.48052 69.234226) (xy 164.368716 69.122422) (xy 164.368715 69.122421) (xy 164.364385 69.118091) (xy 164.364374 69.118081) (xy 162.286715 67.040423) (xy 162.127578 66.881285) (xy 162.127578 66.881284) (xy 162.015775 66.769481) (xy 162.015767 66.769475) (xy 161.878848 66.690426) (xy 161.878843 66.690423) (xy 161.807963 66.671431) (xy 161.726115 66.649499) (xy 161.560407 66.649499) (xy 161.560391 66.6495) (xy 144.529057 66.6495) (xy 144.370942 66.6495) (xy 144.218215 66.690423) (xy 144.218214 66.690423) (xy 144.218212 66.690424) (xy 144.218209 66.690425) (xy 144.168096 66.719359) (xy 144.168095 66.71936) (xy 144.137649 66.736938) (xy 144.081285 66.769479) (xy 144.081282 66.769481) (xy 143.969478 66.881286) (xy 142.214469 68.636294) (xy 142.153146 68.669779) (xy 142.083454 68.664795) (xy 142.070505 68.659103) (xy 142.000498 68.623433) (xy 141.92417 68.584541) (xy 141.924167 68.58454) (xy 141.719757 68.518124) (xy 141.564144 68.493477) (xy 141.507467 68.4845) (xy 141.292533 68.4845) (xy 141.235856 68.493477) (xy 141.080243 68.518124) (xy 141.08024 68.518124) (xy 140.875832 68.58454) (xy 140.875829 68.584541) (xy 140.684321 68.68212) (xy 140.601702 68.742147) (xy 140.510437 68.808455) (xy 140.510435 68.808457) (xy 140.510434 68.808457) (xy 140.358457 68.960434) (xy 140.358457 68.960435) (xy 140.358455 68.960437) (xy 140.304198 69.035114) (xy 140.23212 69.134321) (xy 140.134541 69.325829) (xy 140.13454 69.325832) (xy 140.068124 69.53024) (xy 140.068124 69.530243) (xy 140.0345 69.742534) (xy 140.0345 70.257465) (xy 140.068124 70.469756) (xy 140.068124 70.469759) (xy 140.13454 70.674167) (xy 140.134541 70.67417) (xy 140.209117 70.820532) (xy 140.23212 70.865678) (xy 140.358455 71.039563) (xy 140.510437 71.191545) (xy 140.684322 71.31788) (xy 140.731794 71.342068) (xy 140.875829 71.415458) (xy 140.875832 71.415459) (xy 141.066494 71.477408) (xy 141.080245 71.481876) (xy 141.292533 71.5155) (xy 141.292534 71.5155) (xy 141.507466 71.5155) (xy 141.507467 71.5155) (xy 141.719755 71.481876) (xy 141.719758 71.481875) (xy 141.719759 71.481875) (xy 141.924167 71.415459) (xy 141.92417 71.415458) (xy 141.952029 71.401263) (xy 142.115678 71.31788) (xy 142.289563 71.191545) (xy 142.441545 71.039563) (xy 142.56788 70.865678) (xy 142.567879 70.865678) (xy 142.569682 70.863198) (xy 142.625012 70.820532) (xy 142.694625 70.814553) (xy 142.75642 70.847159) (xy 142.770318 70.863198) (xy 142.77212 70.865678) (xy 142.898455 71.039563) (xy 143.050437 71.191545) (xy 143.224322 71.31788) (xy 143.271794 71.342068) (xy 143.354274 71.384094) (xy 143.40507 71.432069) (xy 143.421865 71.49989) (xy 143.399328 71.566025) (xy 143.385661 71.58226) (xy 143.31821 71.649711) (xy 143.230609 71.780814) (xy 143.230602 71.780827) (xy 143.170264 71.926498) (xy 143.170261 71.92651) (xy 143.1395 72.081153) (xy 143.1395 72.238846) (xy 143.170261 72.393489) (xy 143.170264 72.393501) (xy 143.230602 72.539172) (xy 143.230609 72.539185) (xy 143.31821 72.670288) (xy 143.318213 72.670292) (xy 143.429707 72.781786) (xy 143.429711 72.781789) (xy 143.560814 72.86939) (xy 143.560827 72.869397) (xy 143.706498 72.929735) (xy 143.706503 72.929737) (xy 143.861153 72.960499) (xy 143.861156 72.9605) (xy 143.861158 72.9605) (xy 144.018844 72.9605) (xy 144.018845 72.960499) (xy 144.173497 72.929737) (xy 144.319179 72.869394) (xy 144.450289 72.781789) (xy 144.561789 72.670289) (xy 144.649394 72.539179) (xy 144.709737 72.393497) (xy 144.733883 72.27211) (xy 144.766268 72.210199) (xy 144.826984 72.175625) (xy 144.896753 72.179364) (xy 144.953425 72.220231) (xy 144.979006 72.285249) (xy 144.9795 72.296301) (xy 144.9795 73.6255) (xy 144.959815 73.692539) (xy 144.907011 73.738294) (xy 144.8555 73.7495) (xy 137.922889 73.7495) (xy 137.85585 73.729815) (xy 137.835208 73.713181) (xy 136.816819 72.694792) (xy 136.783334 72.633469) (xy 136.7805 72.607111) (xy 136.7805 71.639) (xy 136.800185 71.571961) (xy 136.852989 71.526206) (xy 136.9045 71.515) (xy 137.57 71.515) (xy 137.57 70.44456) (xy 137.623147 70.475245) (xy 137.752857 70.51) (xy 137.887143 70.51) (xy 138.016853 70.475245) (xy 138.07 70.44456) (xy 138.07 71.515) (xy 138.732828 71.515) (xy 138.732844 71.514999) (xy 138.792372 71.508598) (xy 138.792379 71.508596) (xy 138.927086 71.458354) (xy 138.927093 71.45835) (xy 139.042187 71.37219) (xy 139.04219 71.372187) (xy 139.12835 71.257093) (xy 139.128354 71.257086) (xy 139.178596 71.122379) (xy 139.178598 71.122372) (xy 139.184999 71.062844) (xy 139.185 71.062827) (xy 139.185 70.25) (xy 138.26456 70.25) (xy 138.295245 70.196853) (xy 138.33 70.067143) (xy 138.33 69.932857) (xy 138.295245 69.803147) (xy 138.26456 69.75) (xy 139.185 69.75) (xy 139.185 68.937172) (xy 139.184999 68.937155) (xy 139.178598 68.877627) (xy 139.178596 68.87762) (xy 139.128354 68.742913) (xy 139.12835 68.742906) (xy 139.04219 68.627812) (xy 139.042187 68.627809) (xy 138.927093 68.541649) (xy 138.927086 68.541645) (xy 138.792379 68.491403) (xy 138.792372 68.491401) (xy 138.732844 68.485) (xy 138.07 68.485) (xy 138.07 69.555439) (xy 138.016853 69.524755) (xy 137.887143 69.49) (xy 137.752857 69.49) (xy 137.623147 69.524755) (xy 137.57 69.555439) (xy 137.57 68.485) (xy 136.907155 68.485) (xy 136.847627 68.491401) (xy 136.84762 68.491403) (xy 136.712913 68.541645) (xy 136.712906 68.541649) (xy 136.597812 68.627809) (xy 136.597809 68.627812) (xy 136.511649 68.742906) (xy 136.511645 68.742913) (xy 136.479456 68.829218) (xy 136.437585 68.885152) (xy 136.37212 68.909569) (xy 136.303847 68.894717) (xy 136.275593 68.873566) (xy 136.257512 68.855485) (xy 136.257511 68.855484) (xy 136.25751 68.855483) (xy 136.066433 68.716657) (xy 136.042393 68.704408) (xy 135.85599 68.60943) (xy 135.851499 68.607571) (xy 135.851532 68.607489) (xy 135.839095 68.602336) (xy 135.804176 68.584544) (xy 135.804167 68.58454) (xy 135.599757 68.518124) (xy 135.444144 68.493477) (xy 135.387467 68.4845) (xy 135.172533 68.4845) (xy 135.115856 68.493477) (xy 134.960243 68.518124) (xy 134.96024 68.518124) (xy 134.755831 68.584541) (xy 134.75583 68.584541) (xy 134.720904 68.602337) (xy 134.708472 68.607486) (xy 134.708507 68.607569) (xy 134.704005 68.609433) (xy 134.493566 68.716657) (xy 134.440436 68.755259) (xy 134.30249 68.855483) (xy 134.302488 68.855485) (xy 134.302487 68.855485) (xy 134.135485 69.022487) (xy 134.135478 69.022496) (xy 134.081373 69.096964) (xy 134.026043 69.13963) (xy 133.95643 69.145608) (xy 133.894635 69.113002) (xy 133.880738 69.096964) (xy 133.868954 69.080745) (xy 133.781545 68.960437) (xy 133.629563 68.808455) (xy 133.455678 68.68212) (xy 133.453806 68.681166) (xy 133.26417 68.584541) (xy 133.264167 68.58454) (xy 133.059757 68.518124) (xy 132.904144 68.493477) (xy 132.847467 68.4845) (xy 132.632533 68.4845) (xy 132.575856 68.493477) (xy 132.436993 68.515471) (xy 132.3677 68.506517) (xy 132.329914 68.480679) (xy 131.08759 67.238355) (xy 131.087588 67.238352) (xy 130.968717 67.119481) (xy 130.968716 67.11948) (xy 130.881904 67.06936) (xy 130.881904 67.069359) (xy 130.8819 67.069358) (xy 130.831785 67.040423) (xy 130.679057 66.999499) (xy 130.520943 66.999499) (xy 130.513347 66.999499) (xy 130.513331 66.9995) (xy 118.420984 66.9995) (xy 118.420968 66.999499) (xy 118.413372 66.999499) (xy 118.255257 66.999499) (xy 118.178893 67.019961) (xy 118.102528 67.040423) (xy 118.102523 67.040426) (xy 117.965604 67.119475) (xy 117.965596 67.119481) (xy 116.619481 68.465596) (xy 116.619479 68.465599) (xy 116.581999 68.530518) (xy 116.581998 68.53052) (xy 116.540423 68.602528) (xy 116.531235 68.636818) (xy 116.499499 68.755257) (xy 116.499499 68.755259) (xy 116.499499 68.92336) (xy 116.4995 68.923373) (xy 116.4995 72.442844) (xy 116.479815 72.509883) (xy 116.463181 72.530525) (xy 114.629481 74.364224) (xy 114.629479 74.364227) (xy 114.579361 74.451036) (xy 114.579359 74.451038) (xy 114.550425 74.501151) (xy 114.550424 74.501152) (xy 114.538785 74.544591) (xy 114.509499 74.653885) (xy 114.509499 74.653887) (xy 114.509499 74.783355) (xy 114.489814 74.850394) (xy 114.43701 74.896149) (xy 114.367852 74.906093) (xy 114.304296 74.877068) (xy 114.300615 74.873747) (xy 114.147031 74.729523) (xy 114.147021 74.729515) (xy 113.892495 74.544591) (xy 113.892488 74.544586) (xy 113.892484 74.544584) (xy 113.616766 74.393006) (xy 113.616763 74.393004) (xy 113.616758 74.393002) (xy 113.616757 74.393001) (xy 113.324228 74.277181) (xy 113.324225 74.27718) (xy 113.019476 74.198934) (xy 113.019463 74.198932) (xy 112.707329 74.1595) (xy 112.707318 74.1595) (xy 112.392682 74.1595) (xy 112.39267 74.1595) (xy 112.080536 74.198932) (xy 112.080523 74.198934) (xy 111.775774 74.27718) (xy 111.775771 74.277181) (xy 111.483242 74.393001) (xy 111.483241 74.393002) (xy 111.207516 74.544584) (xy 111.207504 74.544591) (xy 110.952978 74.729515) (xy 110.952968 74.729523) (xy 110.723608 74.944907) (xy 110.723606 74.944909) (xy 110.523054 75.187334) (xy 110.523051 75.187338) (xy 110.354464 75.45299) (xy 110.354461 75.452996) (xy 110.220499 75.737678) (xy 110.220497 75.737683) (xy 110.12327 76.036916) (xy 110.064311 76.345988) (xy 110.06431 76.345995) (xy 110.044556 76.659994) (xy 110.044556 76.660005) (xy 110.06431 76.974004) (xy 110.064311 76.974011) (xy 110.064312 76.974015) (xy 110.120809 77.270185) (xy 110.12327 77.283083) (xy 110.220497 77.582316) (xy 110.220499 77.582321) (xy 110.354461 77.867003) (xy 110.354464 77.867009) (xy 110.523051 78.132661) (xy 110.523054 78.132665) (xy 110.723606 78.37509) (xy 110.723608 78.375092) (xy 110.952968 78.590476) (xy 110.952978 78.590484) (xy 111.207504 78.775408) (xy 111.207509 78.77541) (xy 111.207516 78.775416) (xy 111.483234 78.926994) (xy 111.483239 78.926996) (xy 111.483241 78.926997) (xy 111.483242 78.926998) (xy 111.775771 79.042818) (xy 111.775774 79.042819) (xy 112.066767 79.117533) (xy 112.080527 79.121066) (xy 112.14601 79.129338) (xy 112.39267 79.160499) (xy 112.392679 79.160499) (xy 112.392682 79.1605) (xy 112.392684 79.1605) (xy 112.690902 79.1605) (xy 112.757941 79.180185) (xy 112.803696 79.232989) (xy 112.81364 79.302147) (xy 112.784615 79.365703) (xy 112.778583 79.372181) (xy 108.269481 83.881282) (xy 108.269479 83.881285) (xy 108.219361 83.968094) (xy 108.219359 83.968096) (xy 108.190425 84.018209) (xy 108.190424 84.01821) (xy 108.190423 84.018215) (xy 108.149499 84.170943) (xy 108.149499 84.170945) (xy 108.149499 84.339046) (xy 108.1495 84.339059) (xy 108.1495 117.360388) (xy 108.149499 117.360406) (xy 108.149499 117.526112) (xy 108.149498 117.526112) (xy 107.5005 117.526112) (xy 107.5005 68.503246) (xy 107.50067 68.496756) (xy 107.506614 68.383347) (xy 107.516592 68.192951) (xy 107.517949 68.180046) (xy 107.565028 67.882794) (xy 107.567723 67.870107) (xy 107.645627 67.579368) (xy 107.649636 67.567033) (xy 107.757493 67.286054) (xy 107.762763 67.274215) (xy 107.899415 67.006023) (xy 107.905891 66.994808) (xy 108.069819 66.74238) (xy 108.077434 66.731899) (xy 108.266858 66.497979) (xy 108.275525 66.488354) (xy 108.488354 66.275525) (xy 108.497979 66.266858) (xy 108.731899 66.077434) (xy 108.74238 66.069819) (xy 108.994808 65.905891) (xy 109.006023 65.899415) (xy 109.274215 65.762763) (xy 109.286054 65.757493) (xy 109.56704 65.649633) (xy 109.579368 65.645627) (xy 109.870107 65.567723) (xy 109.882786 65.565029) (xy 110.180046 65.517949) (xy 110.192951 65.516592) (xy 110.496756 65.500669) (xy 110.503246 65.5005) (xy 110.565892 65.5005) (xy 168.434108 65.5005) (xy 168.496754 65.5005) ) ) ) (group "" (uuid "51499b4c-efe0-48f6-9bc8-c4621c8d47bf") (members "33f4413a-8ea0-4777-aad2-672f95af9e66" "56ab7b61-7954-4be8-9dd5-c42a0347a267" "79c87257-a967-4e7e-9fb3-918bdd05c53b" "7ec42dcd-b7aa-4931-992e-f4169bdb8304" "ab67a0fa-2e0d-49cc-8967-5614f63891c4" "b20fd86e-23e1-4fcb-b764-2d22072d88f8" "b7e4daab-1572-4998-9406-9bfe4e31cc18" "be5632d0-ff98-4e2b-b4d3-74eda76c2979" ) ) ) ================================================ FILE: boards/power-board/kicad/fanpico_powerboard.kicad_prl ================================================ { "board": { "active_layer": 0, "active_layer_preset": "All Layers", "auto_track_width": true, "hidden_netclasses": [], "hidden_nets": [], "high_contrast_mode": 0, "net_color_mode": 1, "opacity": { "images": 0.6, "pads": 1.0, "tracks": 1.0, "vias": 1.0, "zones": 0.6 }, "selection_filter": { "dimensions": true, "footprints": true, "graphics": true, "keepouts": true, "lockedItems": false, "otherItems": true, "pads": true, "text": true, "tracks": true, "vias": true, "zones": true }, "visible_items": [ 0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 39, 40 ], "visible_layers": "fffffff_ffffffff", "zone_display_mode": 1 }, "git": { "repo_password": "", "repo_type": "", "repo_username": "", "ssh_key": "" }, "meta": { "filename": "fanpico_powerboard.kicad_prl", "version": 3 }, "project": { "files": [] } } ================================================ FILE: boards/power-board/kicad/fanpico_powerboard.kicad_pro ================================================ { "board": { "3dviewports": [], "design_settings": { "defaults": { "apply_defaults_to_fp_fields": false, "apply_defaults_to_fp_shapes": false, "apply_defaults_to_fp_text": false, "board_outline_line_width": 0.05, "copper_line_width": 0.2, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": false, "text_position": 0, "units_format": 1 }, "fab_line_width": 0.1, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.1, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 0.762, "height": 1.524, "width": 1.524 }, "silk_line_width": 0.1, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.1, "silk_text_upright": false, "zones": { "min_clearance": 0.5 } }, "diff_pair_dimensions": [ { "gap": 0.0, "via_gap": 0.0, "width": 0.0 } ], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "ignore", "hole_clearance": "error", "hole_near_hole": "error", "holes_co_located": "warning", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "npth_inside_courtyard": "ignore", "padstack": "warning", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_dangling": "warning", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.5, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.2, "min_microvia_drill": 0.1, "min_resolved_spokes": 2, "min_silk_clearance": 0.0, "min_text_height": 0.8, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.0, "min_via_annular_width": 0.1, "min_via_diameter": 0.5, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, "td_onviapad": true } ], "teardrop_parameters": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [ 0.0, 0.2, 0.5, 0.75, 1.0, 1.5, 2.0, 3.0 ], "tuning_pattern_settings": { "diff_pair_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 1.0 }, "diff_pair_skew_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 }, "single_track_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 } }, "via_dimensions": [ { "diameter": 0.0, "drill": 0.0 } ], "zones_allow_external_fillets": false }, "ipc2581": { "dist": "", "distpn": "", "internal_id": "", "mfg": "", "mpn": "" }, "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "conflicting_netclasses": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "similar_labels": "warning", "simulation_model_issue": "ignore", "unannotated": "error", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "fanpico_powerboard.kicad_pro", "version": 1 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.2, "via_diameter": 0.6, "via_drill": 0.3, "wire_width": 6 } ], "meta": { "version": 3 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "plot": "kerbers/", "pos_files": "", "specctra_dsn": "", "step": "", "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "bom_export_filename": "bom.csv", "bom_fmt_presets": [], "bom_fmt_settings": { "field_delimiter": ",", "keep_line_breaks": false, "keep_tabs": false, "name": "CSV", "ref_delimiter": ",", "ref_range_delimiter": "", "string_delimiter": "\"" }, "bom_presets": [], "bom_settings": { "exclude_dnp": false, "fields_ordered": [ { "group_by": false, "label": "Reference", "name": "Reference", "show": true }, { "group_by": true, "label": "Value", "name": "Value", "show": true }, { "group_by": false, "label": "Datasheet", "name": "Datasheet", "show": true }, { "group_by": false, "label": "Footprint", "name": "Footprint", "show": true }, { "group_by": false, "label": "Qty", "name": "${QUANTITY}", "show": true }, { "group_by": true, "label": "DNP", "name": "${DNP}", "show": true }, { "group_by": false, "label": "#", "name": "${ITEM_NUMBER}", "show": false }, { "group_by": false, "label": "Description", "name": "Description", "show": false }, { "group_by": false, "label": "LCSC Part Number", "name": "LCSC Part Number", "show": true }, { "group_by": false, "label": "Mouser Part Number", "name": "Mouser Part Number", "show": true } ], "filter_string": "", "group_symbols": true, "name": "", "sort_asc": true, "sort_field": "Reference" }, "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "operating_point_overlay_i_precision": 3, "operating_point_overlay_i_range": "~A", "operating_point_overlay_v_precision": 3, "operating_point_overlay_v_range": "~V", "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "page_layout_descr_file": "", "plot_directory": "", "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "4448a583-d87a-4af7-9117-9a08dad19471", "Root" ] ], "text_variables": {} } ================================================ FILE: boards/power-board/kicad/fanpico_powerboard.kicad_sch ================================================ (kicad_sch (version 20231120) (generator "eeschema") (generator_version "8.0") (uuid "4448a583-d87a-4af7-9117-9a08dad19471") (paper "A4") (title_block (title "FanPico PowerBoard") (date "2024-08-02") (rev "1.0") (company "Timo Kokkonen ") ) (lib_symbols (symbol "Connector:Conn_01x04_Pin" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Conn_01x04_Pin" (at 0 -7.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_locked" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "ki_keywords" "connector" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Conn_01x04_Pin_1_1" (polyline (pts (xy 1.27 -5.08) (xy 0.8636 -5.08) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -2.54) (xy 0.8636 -2.54) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 0) (xy 0.8636 0) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 2.54) (xy 0.8636 2.54) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (rectangle (start 0.8636 -4.953) (end 0 -5.207) (stroke (width 0.1524) (type default) ) (fill (type outline) ) ) (rectangle (start 0.8636 -2.413) (end 0 -2.667) (stroke (width 0.1524) (type default) ) (fill (type outline) ) ) (rectangle (start 0.8636 0.127) (end 0 -0.127) (stroke (width 0.1524) (type default) ) (fill (type outline) ) ) (rectangle (start 0.8636 2.667) (end 0 2.413) (stroke (width 0.1524) (type default) ) (fill (type outline) ) ) (pin passive line (at 5.08 2.54 180) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 0 180) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 -2.54 180) (length 3.81) (name "Pin_3" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 5.08 -5.08 180) (length 3.81) (name "Pin_4" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "J" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Screw_Terminal_01x02" (at 0 -5.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "screw terminal" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Screw_Terminal_01x02_1_1" (rectangle (start -1.27 1.27) (end 1.27 -3.81) (stroke (width 0.254) (type default) ) (fill (type background) ) ) (circle (center 0 -2.54) (radius 0.635) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.5334 -2.2098) (xy 0.3302 -3.048) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.5334 0.3302) (xy 0.3302 -0.508) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.3556 -2.032) (xy 0.508 -2.8702) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.3556 0.508) (xy 0.508 -0.3302) ) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (circle (center 0 0) (radius 0.635) (stroke (width 0.1524) (type default) ) (fill (type none) ) ) (pin passive line (at -5.08 0 0) (length 3.81) (name "Pin_1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) (name "Pin_2" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Fuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Fuse" (at -1.905 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Fuse" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "fuse" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*Fuse*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Fuse_0_1" (rectangle (start -0.762 -2.54) (end 0.762 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Fuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "D" (at 0 2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 0 -2.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "LED diode" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LED_0_1" (polyline (pts (xy -1.27 -1.27) (xy -1.27 1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.27 0) (xy 1.27 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) ) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LED_1_1" (pin passive line (at -3.81 0 0) (length 2.54) (name "K" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 3.81 0 180) (length 2.54) (name "A" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "F" (at -2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse" (at 2.54 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 1.27 -5.08 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "Polyfuse_0_1" (rectangle (start -0.762 2.54) (end 0.762 -2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0 2.54) (xy 0 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "Polyfuse_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0) ) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "R" (at 2.032 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "R" (at 0 0 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at -1.778 0 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "R res resistor" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "R_*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "R_0_1" (rectangle (start -1.016 -2.54) (end 1.016 2.54) (stroke (width 0.254) (type default) ) (fill (type none) ) ) ) (symbol "R_1_1" (pin passive line (at 0 3.81 270) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin passive line (at 0 -3.81 90) (length 1.27) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (exclude_from_sim yes) (in_bom no) (on_board yes) (property "Reference" "H" (at 0 6.35 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "MountingHole_Pad" (at 0 4.445 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "mounting hole" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MountingHole_Pad_0_1" (circle (center 0 1.27) (radius 1.27) (stroke (width 1.27) (type default) ) (fill (type none) ) ) ) (symbol "MountingHole_Pad_1_1" (pin input line (at 0 -2.54 90) (length 2.54) (name "1" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:GND" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (at 0 -6.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "global power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "GND_0_1" (polyline (pts (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "GND_1_1" (pin power_in line (at 0 0 270) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) ) (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "#FLG" (at 0 1.905 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 0 3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "ki_keywords" "flag power" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "PWR_FLAG_0_0" (pin power_out line (at 0 0 90) (length 0) (name "~" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) ) (symbol "PWR_FLAG_0_1" (polyline (pts (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) ) ) (junction (at 110.49 63.5) (diameter 0) (color 0 0 0 0) (uuid "9491a09c-1ae6-4584-9673-f7306d896cdd") ) (junction (at 125.73 63.5) (diameter 0) (color 0 0 0 0) (uuid "9bff266e-5777-4822-aa8a-d98a39297675") ) (junction (at 118.11 63.5) (diameter 0) (color 0 0 0 0) (uuid "ae84bf67-feb2-443d-9652-5c9af29614ec") ) (junction (at 130.81 88.9) (diameter 0) (color 0 0 0 0) (uuid "ed3dc208-6cc8-49da-a21b-e5cff5d49f24") ) (junction (at 130.81 63.5) (diameter 0) (color 0 0 0 0) (uuid "fdcbdf35-7a18-46c2-a274-d07a0b9e1af8") ) (no_connect (at 201.93 110.49) (uuid "14b0c554-ee27-4d4f-a2fd-e22d91955dcc") ) (no_connect (at 217.17 110.49) (uuid "624bef55-8814-4e86-8e02-bc6016a61ccb") ) (no_connect (at 232.41 110.49) (uuid "7545542c-8217-4f1e-9c29-ec49db5c2567") ) (no_connect (at 53.34 60.96) (uuid "bb5ef1df-7023-43de-bd9f-5feebf16d328") ) (no_connect (at 246.38 110.49) (uuid "cd7c7eac-c5f7-4e31-b458-0ffa5a074569") ) (wire (pts (xy 130.81 88.9) (xy 130.81 92.71) ) (stroke (width 0) (type default) ) (uuid "017234da-ffe9-4b17-a2db-f8a8e31afd5c") ) (wire (pts (xy 45.72 60.96) (xy 53.34 60.96) ) (stroke (width 0) (type default) ) (uuid "05c822f1-4686-48fa-a29b-672089976bfa") ) (wire (pts (xy 130.81 63.5) (xy 130.81 67.31) ) (stroke (width 0) (type default) ) (uuid "55123629-41e1-4cad-a13e-97481b3665dc") ) (wire (pts (xy 125.73 63.5) (xy 130.81 63.5) ) (stroke (width 0) (type default) ) (uuid "581a7403-d29a-40e8-81b2-a54fd68483c9") ) (wire (pts (xy 48.26 35.56) (xy 55.88 35.56) ) (stroke (width 0) (type default) ) (uuid "7f82d4a3-9308-4ddc-86b8-0c84f5d87f08") ) (wire (pts (xy 130.81 83.82) (xy 130.81 88.9) ) (stroke (width 0) (type default) ) (uuid "809845eb-4cd6-4398-8b3e-293fa58166be") ) (wire (pts (xy 118.11 63.5) (xy 118.11 68.58) ) (stroke (width 0) (type default) ) (uuid "952396e7-4bd5-4a54-a34a-3fde5dd77068") ) (wire (pts (xy 130.81 63.5) (xy 143.51 63.5) ) (stroke (width 0) (type default) ) (uuid "9edbf54b-aaf0-4ca9-bbb5-b7042dd20d60") ) (wire (pts (xy 130.81 74.93) (xy 130.81 76.2) ) (stroke (width 0) (type default) ) (uuid "9f2b4b37-cf9d-41a8-93f7-216d2a7f7f02") ) (wire (pts (xy 45.72 58.42) (xy 53.34 58.42) ) (stroke (width 0) (type default) ) (uuid "a5741e3d-349e-4a87-a7dd-e5dd00153382") ) (wire (pts (xy 48.26 38.1) (xy 55.88 38.1) ) (stroke (width 0) (type default) ) (uuid "a9dd4646-0e17-4a40-88f4-e67e32859c72") ) (wire (pts (xy 125.73 63.5) (xy 125.73 68.58) ) (stroke (width 0) (type default) ) (uuid "aca6f065-6b5a-45b6-8ded-28eb5e8888b8") ) (wire (pts (xy 45.72 53.34) (xy 53.34 53.34) ) (stroke (width 0) (type default) ) (uuid "ad025e03-e7a2-4778-8102-267a15f551b3") ) (wire (pts (xy 110.49 60.96) (xy 110.49 63.5) ) (stroke (width 0) (type default) ) (uuid "baa965f6-3a8f-44e7-80cb-e26f1d53a59e") ) (wire (pts (xy 45.72 55.88) (xy 53.34 55.88) ) (stroke (width 0) (type default) ) (uuid "e1a936d4-73a5-4d65-82b2-393dd271820b") ) (wire (pts (xy 110.49 63.5) (xy 118.11 63.5) ) (stroke (width 0) (type default) ) (uuid "e2b021af-ec2a-49db-a79a-c4f18f27f9e9") ) (wire (pts (xy 107.95 63.5) (xy 110.49 63.5) ) (stroke (width 0) (type default) ) (uuid "e5b381a9-bde7-4ffe-9b3d-a115e8b1c003") ) (rectangle (start 187.452 83.058) (end 257.048 127.762) (stroke (width 0) (type default) ) (fill (type none) ) (uuid aa13ba36-fb27-4e34-af7d-0401dfbc851d) ) (rectangle (start 187.706 24.638) (end 257.302 69.342) (stroke (width 0) (type default) ) (fill (type none) ) (uuid e6ad9cb1-6507-4bab-bff1-2ea4a3789ffd) ) (text "To Fans" (exclude_from_sim no) (at 221.488 27.94 0) (effects (font (size 1.27 1.27) ) ) (uuid "7a02fedb-b5f0-4a4c-9f6f-690dee8d1223") ) (text "To Fan Controller (FanPico)" (exclude_from_sim no) (at 222.25 86.106 0) (effects (font (size 1.27 1.27) ) ) (uuid "8f31f269-02a3-477a-b639-8355e88f64bc") ) (global_label "PWM2" (shape input) (at 210.82 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0d9c7e3d-3bd0-4f16-8cee-28ad4758d923") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 210.82 61.7075 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM1" (shape input) (at 195.58 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e8993e7-59e2-44ec-821e-f974cdb8c658") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 195.58 61.7075 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWR" (shape output) (at 143.51 63.5 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "13d210f7-4988-4d74-8295-e92eada7687d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 150.4866 63.5 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "PWM4" (shape input) (at 240.03 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "14e6a7e8-5618-4cb1-aaa1-ed27beb0a9c4") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 240.03 61.7075 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO4" (shape input) (at 243.84 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1e300cea-5fb9-4a0c-8703-1ba2854f29b1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 243.84 120.6719 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO3" (shape input) (at 228.6 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2e6f933f-9603-4bc8-83ce-3765630cb168") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 228.6 63.5219 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 218.44 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3547b824-b3b1-4722-be1f-efbe35afb141") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 218.44 60.1957 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWR" (shape input) (at 231.14 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "36285897-f9f8-43c5-a9f6-90bc38b71e6d") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 231.14 60.3166 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 53.34 58.42 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "43e684ab-1a0c-4d5c-93d5-d75a81fcd003") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 60.1957 58.42 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TACHO2" (shape input) (at 214.63 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "54fcd60e-e2df-4e31-af41-d6cb7b612c73") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.63 120.6719 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM4" (shape input) (at 241.3 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5501a0de-51ff-40b4-a292-a04d83b81f20") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 241.3 118.8575 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWR" (shape input) (at 215.9 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "59ab4664-c95f-4028-b7f3-d753ba4ec72c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 60.3166 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM1" (shape input) (at 196.85 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5d437820-aab5-49c5-8c5e-75fcd5fa1173") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 196.85 118.8575 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO1" (shape input) (at 198.12 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5db7d091-213d-45e1-9dbd-13c0439429ea") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 63.5219 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO2" (shape input) (at 213.36 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6e637a2e-eb7b-4666-9848-e743dd7ebb80") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 213.36 63.5219 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "12V" (shape output) (at 53.34 53.34 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "76c953fd-93f0-4946-81b2-5f132f4f76c0") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 59.8328 53.34 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 247.65 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "771d06d8-a54b-4bfb-9c23-c298e850e5b9") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 247.65 60.1957 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "12V" (shape output) (at 55.88 38.1 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "79653405-8418-4dbc-8d0d-31aa3429c0f6") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.3728 38.1 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 248.92 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "82f32d9e-4c94-45cf-91e8-bf976b5659b1") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 248.92 117.3457 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO1" (shape input) (at 199.39 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "96e45945-08ee-41bf-9028-b3cabb9be485") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 199.39 120.6719 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM3" (shape input) (at 226.06 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9d495f90-89ae-46ce-9dcc-db94629fde16") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 226.06 61.7075 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 53.34 55.88 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a04c942e-f6fc-4935-816f-f2c35484a342") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 60.1957 55.88 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "PWR" (shape input) (at 49.53 83.82 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a6d7274b-5816-4681-82f6-55c131c3d2ce") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 56.5066 83.82 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 219.71 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "aa06f0d5-afaa-4c9d-9a43-8f28155f013f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 219.71 117.3457 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 49.53 81.28 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ae6f10cf-b9ef-4932-96dc-c15e19383410") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 56.3857 81.28 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "GND" (shape input) (at 55.88 35.56 0) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b722f5f9-414c-4729-82b5-2eff6117b4d0") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.7357 35.56 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "TACHO3" (shape input) (at 229.87 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "be8e17df-eca3-494f-abd6-26245ecaaa56") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 229.87 120.6719 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM2" (shape input) (at 212.09 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c27833cc-1c4b-407f-937d-674422bb6e0c") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 212.09 118.8575 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWR" (shape input) (at 245.11 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c3980492-e116-4668-bae0-b121762f35a0") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 245.11 60.3166 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 234.95 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d5a9e97c-31da-4d3c-bdab-c80aef822ae8") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 234.95 117.3457 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWR" (shape input) (at 200.66 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ddb14934-a9f6-4d68-9248-93fa3cd5fc14") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 200.66 60.3166 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 233.68 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e182736e-fc36-428a-9fae-65df40382961") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 233.68 60.1957 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "12V" (shape input) (at 107.95 63.5 180) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e5407301-9d84-4c4a-a041-13954e575480") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 101.4572 63.5 0) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "PWM3" (shape input) (at 227.33 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eac3c2bb-f789-4bf1-82e3-1465425ea136") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 227.33 118.8575 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 203.2 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ec978afb-7c37-44ea-9076-55b6a0849b41") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.2 60.1957 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "GND" (shape input) (at 204.47 110.49 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eecd239f-951d-4237-bdfc-d99c3fbe4489") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.47 117.3457 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (global_label "TACHO4" (shape input) (at 242.57 53.34 270) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fc5cbc43-df59-4b78-a331-28b5c8bca496") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 242.57 63.5219 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 95.25 187.96 0) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "00ef6f13-86ec-44b8-9042-d2e14e2fbf32") (property "Reference" "H4" (at 97.79 185.4199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 97.79 187.9599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 95.25 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 95.25 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 95.25 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 95.25 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "669d0fec-f11c-4855-b272-8c2ec340075f") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "H4") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 71.12 187.96 0) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "028eb97f-e056-44ab-9ff4-3ddfbc645fd1") (property "Reference" "H3" (at 73.66 185.4199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 73.66 187.9599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 71.12 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 71.12 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 71.12 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 71.12 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "8ee92f5c-2a0b-43b5-b7aa-a8e374f89e40") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "H3") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 130.81 92.71 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2575ae75-d3d8-406c-9881-2611fe50b233") (property "Reference" "#PWR02" (at 130.81 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 130.81 97.79 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 130.81 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 130.81 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 130.81 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "ce7ab66d-36cf-4e73-a175-03cfe33c1f8c") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#PWR02") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 45.72 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "334dbd99-7e4d-44b9-8ee3-29c6a9ee7656") (property "Reference" "#PWR07" (at 45.72 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 45.72 195.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 45.72 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 45.72 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 45.72 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e6a1f5de-3c2e-45cb-9ef0-6fe5c83ed2ee") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#PWR07") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 231.14 48.26 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "33877919-8ec8-4f7a-82ec-d316de4ea266") (property "Reference" "J7" (at 229.87 45.72 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FAN3" (at 229.87 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 231.14 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 231.14 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 231.14 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 231.14 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 231.14 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "055dd955-94f0-452e-bfcc-87073e64c419") ) (pin "2" (uuid "66be2174-9901-4368-afb1-1c767a9b7b62") ) (pin "4" (uuid "e1c9c942-0910-47ad-af80-fb2fa06f121c") ) (pin "3" (uuid "dc7be1e9-a7a4-45e7-a12b-f3c0f45f6566") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J7") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 215.9 48.26 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3625af7d-e1de-4d78-ad29-82068afedcda") (property "Reference" "J6" (at 214.63 45.72 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FAN2" (at 214.63 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 215.9 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 215.9 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 215.9 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 215.9 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 215.9 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "6f6cdda2-5556-4fec-a3ac-6d2ba73c492d") ) (pin "2" (uuid "fb146c6e-9124-4d69-b0b0-60e9393e52a2") ) (pin "4" (uuid "3d7311bb-99c7-4d7f-916a-20c335f9d83d") ) (pin "3" (uuid "e6696cef-fe29-4c99-a5af-0a80b51583c2") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J6") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 110.49 60.96 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3842ad26-fd39-4a13-b163-c92e1931780c") (property "Reference" "#FLG01" (at 110.49 59.055 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 110.49 55.88 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 110.49 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 110.49 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 110.49 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "e5df7f32-a37b-4b4c-a56e-86ced82a1df7") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#FLG01") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 201.93 105.41 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3e874be7-39f3-4b72-988d-f04452ac4001") (property "Reference" "J13" (at 200.66 102.87 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FANCTRL1" (at 200.66 100.33 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 201.93 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 201.93 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 201.93 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 201.93 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 201.93 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "5f365c5e-c6ab-4558-92c5-d458e59ad7bc") ) (pin "2" (uuid "6b71e162-1f63-4a11-a531-d33a52921588") ) (pin "4" (uuid "cc30f259-70c5-4513-bd0a-0da12b2821f7") ) (pin "3" (uuid "a9c2578e-db81-4c57-ac92-96ce1ecfb4bd") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J13") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 43.18 38.1 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "585950aa-c1db-4b1e-a1ba-676362a2262a") (property "Reference" "J1" (at 43.18 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Power Input 2" (at 43.18 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 43.18 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 43.18 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 43.18 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1509679" (at 43.18 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 43.18 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "7df9c5ae-96f5-489e-a8da-7d80307c50c1") ) (pin "2" (uuid "b58f2038-ac0c-439e-a183-7485a0612bf9") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J1") (unit 1) ) ) ) ) (symbol (lib_id "Device:Polyfuse") (at 121.92 63.5 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6bce634f-cf21-41ea-be72-8b8e72434ace") (property "Reference" "F1" (at 121.92 57.15 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Polyfuse 10A" (at 121.92 59.69 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder" (at 127 62.23 0) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) (property "Datasheet" "~" (at 121.92 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resettable fuse, polymeric positive temperature coefficient" (at 121.92 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C22446882" (at 121.92 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 121.92 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "8992bf1f-5641-4a2f-b860-5dc6afc69c23") ) (pin "1" (uuid "4b2e9f68-8572-4701-8a67-805d765451be") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "F1") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 40.64 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6c060192-f4aa-40cb-b945-a82a3d850e19") (property "Reference" "J2" (at 41.275 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "Power Input 1" (at 41.275 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle" (at 40.64 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 40.64 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 40.64 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C305826 or C7461144" (at 40.64 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "571-3502111 / 571-1748041" (at 40.64 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "57f6f66d-e8a1-49dc-bfee-cb0013cfeed2") ) (pin "1" (uuid "f8c52ddc-4ddd-45d2-9380-8757419f7e44") ) (pin "3" (uuid "6a224fd2-1ed7-4e97-b662-b1ec5ec05673") ) (pin "4" (uuid "d49e730b-5b08-44b7-bd11-9747d8b3c184") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J2") (unit 1) ) ) ) ) (symbol (lib_id "Device:LED") (at 130.81 80.01 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "72bca949-3cca-431e-9e14-9ef070604402") (property "Reference" "D1" (at 138.43 81.5975 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "LED" (at 135.89 81.5975 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 130.81 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 130.81 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Light emitting diode" (at 130.81 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C434432" (at 130.81 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "710-150080GS75000" (at 130.81 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "2391943c-82d7-4268-892a-0eda012d7741") ) (pin "2" (uuid "a703729e-7c8a-4139-8c70-4a9a2512472e") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "D1") (unit 1) ) ) ) ) (symbol (lib_id "power:PWR_FLAG") (at 130.81 88.9 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7871c6e5-2d28-47e1-a43a-ec57ff835874") (property "Reference" "#FLG02" (at 128.905 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "PWR_FLAG" (at 127 88.8999 90) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "" (at 130.81 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 130.81 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Special symbol for telling ERC where power comes from" (at 130.81 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "c6655a6d-b508-4a54-adee-fdae89ba366f") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#FLG02") (unit 1) ) ) ) ) (symbol (lib_id "Device:R") (at 130.81 71.12 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "88139579-ebfe-47d6-92bb-3792f7b0144d") (property "Reference" "R1" (at 137.16 71.12 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "49.9K" (at 134.62 71.12 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 129.032 71.12 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 130.81 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Resistor" (at 130.81 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C114624" (at 130.81 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 130.81 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a8c7d42a-fc82-4ee1-bd9d-0e519548e234") ) (pin "2" (uuid "b0997fbd-98ba-4511-819c-134463c5ed08") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "R1") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 20.32 187.96 0) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "8d822505-7e42-4073-89ed-547549cccb06") (property "Reference" "H1" (at 22.86 185.4199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 22.86 187.9599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 20.32 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 20.32 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 20.32 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 20.32 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "dbc3fc04-e7a9-405e-b46c-35f25162ac3a") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "H1") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 20.32 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8fe85bc4-234b-4819-b135-775ac53119b6") (property "Reference" "#PWR06" (at 20.32 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 20.32 195.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 20.32 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 20.32 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 20.32 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "017672a9-d19e-4408-87aa-1e5c9734f15f") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#PWR06") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 71.12 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "92774477-5ee7-46e9-8a6d-53a8b8b57e1d") (property "Reference" "#PWR08" (at 71.12 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 71.12 195.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 71.12 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 71.12 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 71.12 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "a4f50495-d55f-43bb-9d1a-f47bde31347a") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#PWR08") (unit 1) ) ) ) ) (symbol (lib_id "Mechanical:MountingHole_Pad") (at 45.72 187.96 0) (unit 1) (exclude_from_sim yes) (in_bom no) (on_board yes) (dnp yes) (fields_autoplaced yes) (uuid "a6a8cbd6-27c4-41d3-9336-2079b86b1b99") (property "Reference" "H2" (at 48.26 185.4199 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Value" "MountingHole_Pad" (at 48.26 187.9599 0) (effects (font (size 1.27 1.27) ) (justify left) ) ) (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 45.72 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 45.72 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Mounting Hole with connection" (at 45.72 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 45.72 187.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "46d935d8-10bc-418f-9b67-828bfab541ab") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "H2") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 44.45 83.82 180) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c26ee22d-6acb-43d4-bcff-8f76a3bb83b3") (property "Reference" "J3" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "AUX Power Output" (at 44.45 77.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C1509679" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 44.45 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "24c49ec6-805c-4bb5-907f-36cd441c4f53") ) (pin "2" (uuid "40773127-a9e9-4d5f-86cd-f398681c917c") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J3") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 245.11 48.26 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "cb46f6da-9c03-41d5-ac68-56f41f3bfc29") (property "Reference" "J8" (at 243.84 45.72 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FAN4" (at 243.84 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 245.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 245.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 245.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 245.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 245.11 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "067ba584-c202-4923-bcaf-138ab75429e8") ) (pin "2" (uuid "f197ab85-37e7-4056-82d4-51b70258e164") ) (pin "4" (uuid "75a9ca9b-8966-45f6-aaad-f9f81decc269") ) (pin "3" (uuid "909955cc-706c-44a6-88d0-fec6dc47214d") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J8") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 232.41 105.41 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "d0099b4b-a307-400f-9e74-80d3c03c95da") (property "Reference" "J15" (at 231.14 102.87 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FANCTRL3" (at 231.14 100.33 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 232.41 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 232.41 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 232.41 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 232.41 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 232.41 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "1c06d0f7-fe38-48bc-a6f6-a2081634b987") ) (pin "2" (uuid "ab550a50-09e9-491b-8657-9f014638967a") ) (pin "4" (uuid "6184b45c-e52e-4edd-a257-0c4fb0740150") ) (pin "3" (uuid "3bd76e1a-8ec0-42df-a63a-13512530b862") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J15") (unit 1) ) ) ) ) (symbol (lib_id "power:GND") (at 95.25 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d0c09e24-d58f-4f6c-8d8d-fb97088276b6") (property "Reference" "#PWR09" (at 95.25 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "GND" (at 95.25 195.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 95.25 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 95.25 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 95.25 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "df2f4691-c265-4b05-ba93-072769e9b49d") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "#PWR09") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 217.17 105.41 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "d293bf06-4fa6-4a6a-8caf-33de5190bc15") (property "Reference" "J14" (at 215.9 102.87 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FANCTRL2" (at 215.9 100.33 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 217.17 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 217.17 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 217.17 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 217.17 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 217.17 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "dd8552eb-e436-4af9-8226-e0939244bbc6") ) (pin "2" (uuid "7925f847-bfa9-46e2-88d8-1647fbf4f3b8") ) (pin "4" (uuid "70e2937f-5559-4cde-9a4a-0d93b2ea32af") ) (pin "3" (uuid "c01c6e25-7808-4793-9a52-b7baa01e6f4c") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J14") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 246.38 105.41 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "dbd42e67-107e-4bcb-b476-8cedf15e6fa3") (property "Reference" "J16" (at 245.11 102.87 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FANCTRL4" (at 245.11 100.33 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 246.38 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 246.38 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 246.38 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 246.38 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 246.38 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "d7743777-419a-427b-8329-98bc2af9aa0a") ) (pin "2" (uuid "95d29632-f942-46eb-923f-9541c34f8312") ) (pin "4" (uuid "e875f55a-a271-41dd-84fa-8fa067c8945c") ) (pin "3" (uuid "3e4f6323-90c7-4537-ba2c-de7f6af43b26") ) (instances (project "fanpico_powerboard" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J16") (unit 1) ) ) ) ) (symbol (lib_id "Device:Fuse") (at 121.92 68.58 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "e9e360ec-5e6e-4582-9ecd-e13b21f3b66a") (property "Reference" "F2" (at 121.92 71.374 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "10A" (at 121.92 73.914 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "FanPico:Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal" (at 121.92 70.358 90) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 121.92 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Fuse" (at 121.92 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C717027" (at 121.92 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "" (at 121.92 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "094ea33d-88ef-4fc8-aab3-dadbef3df632") ) (pin "2" (uuid "a87ec3a6-b234-453d-b8b4-a6a3a332e5f9") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "F2") (unit 1) ) ) ) ) (symbol (lib_id "Connector:Conn_01x04_Pin") (at 200.66 48.26 270) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "ea730192-640f-4b59-b238-ab730ec8d235") (property "Reference" "J5" (at 199.39 45.72 90) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "FAN1" (at 199.39 43.18 90) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical" (at 200.66 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "~" (at 200.66 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "Generic connector, single row, 01x04, script generated" (at 200.66 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "LCSC Part Number" "C240840" (at 200.66 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Mouser Part Number" "538-47053-1000" (at 200.66 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "1" (uuid "b5291e1c-fb2a-410b-b36a-b587296247cd") ) (pin "2" (uuid "a50a2730-c4f3-4d87-86b8-023968c2cc47") ) (pin "4" (uuid "ec85699e-dbce-4657-a5ad-701c6fb778b8") ) (pin "3" (uuid "043ae045-a9cc-434c-a40b-7999e2d72d58") ) (instances (project "" (path "/4448a583-d87a-4af7-9117-9a08dad19471" (reference "J5") (unit 1) ) ) ) ) (sheet_instances (path "/" (page "1") ) ) ) ================================================ FILE: build.sh ================================================ #!/bin/sh # # build.sh # BUILD_DIR=./build error() { echo "`basename $0`: $*"; } fatal() { echo "`basename $0`: $*"; exit 1; } # asm hack (CMake cant seem to handle .incbin in .s file) for s_file in src/*.s; do d_file=$(echo $s_file | sed -e 's/\.s/.json/') if [ -s "$d_file" ]; then if [ "$d_file" -nt "$s_file" ]; then echo "$d_file updated: touch $s_file" touch "$s_file" fi fi done [ -d "${BUILD_DIR}" ] || mkdir -p "${BUILD_DIR}" || fatal "failed to create: $BUILD_DIR" cd "${BUILD_DIR}" || fatal "cannot access: $BUILD_DIR" cmake .. || fatal "cmake failed" make -j if [ $? -eq 0 ]; then echo "Build successful." picotool info -a fanpico.uf2 else echo "Build failed." exit 1 fi # eof :-) ================================================ FILE: build_httpd_fs.sh ================================================ #!/bin/sh # # build_httpd_fs.sh # SERVER="FanPico (https://github.com/tjko/fanpico)" FSDIR=src/httpd-fs/ FSDATAFILE=src/fanpico_fsdata.c fatal() { echo "`basename $0`: $*"; exit 1; } [ -d "$FSDIR" ] || fatal "cannot find fs directory: $FSDIR" ./contrib/makefsdata ${FSDIR} -m -svr:"${SERVER}" -ssi:src/httpd-fs_ssi.list -f:${FSDATAFILE} -x:html~,shtml~,json~,~ [ $? -eq 0 ] || fatal "makefsdata failed" dos2unix ${FSDATAFILE} [ $? -eq 0 ] || fatal "dos2unix failed" # HACK: make sure next build will recompile fanpico_fsdata.c... find build/ -type f -name 'fs.c.obj' -print -delete ================================================ FILE: cmake/pico_sdk_import.cmake ================================================ # This is a copy of /external/pico_sdk_import.cmake # This can be dropped into an external project to help locate this SDK # It should be include()ed prior to project() if (DEFINED ENV{PICO_SDK_PATH} AND (NOT PICO_SDK_PATH)) set(PICO_SDK_PATH $ENV{PICO_SDK_PATH}) message("Using PICO_SDK_PATH from environment ('${PICO_SDK_PATH}')") endif () if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT} AND (NOT PICO_SDK_FETCH_FROM_GIT)) set(PICO_SDK_FETCH_FROM_GIT $ENV{PICO_SDK_FETCH_FROM_GIT}) message("Using PICO_SDK_FETCH_FROM_GIT from environment ('${PICO_SDK_FETCH_FROM_GIT}')") endif () if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT_PATH} AND (NOT PICO_SDK_FETCH_FROM_GIT_PATH)) set(PICO_SDK_FETCH_FROM_GIT_PATH $ENV{PICO_SDK_FETCH_FROM_GIT_PATH}) message("Using PICO_SDK_FETCH_FROM_GIT_PATH from environment ('${PICO_SDK_FETCH_FROM_GIT_PATH}')") endif () if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT_TAG} AND (NOT PICO_SDK_FETCH_FROM_GIT_TAG)) set(PICO_SDK_FETCH_FROM_GIT_TAG $ENV{PICO_SDK_FETCH_FROM_GIT_TAG}) message("Using PICO_SDK_FETCH_FROM_GIT_TAG from environment ('${PICO_SDK_FETCH_FROM_GIT_TAG}')") endif () if (PICO_SDK_FETCH_FROM_GIT AND NOT PICO_SDK_FETCH_FROM_GIT_TAG) set(PICO_SDK_FETCH_FROM_GIT_TAG "master") message("Using master as default value for PICO_SDK_FETCH_FROM_GIT_TAG") endif() set(PICO_SDK_PATH "${PICO_SDK_PATH}" CACHE PATH "Path to the Raspberry Pi Pico SDK") set(PICO_SDK_FETCH_FROM_GIT "${PICO_SDK_FETCH_FROM_GIT}" CACHE BOOL "Set to ON to fetch copy of SDK from git if not otherwise locatable") set(PICO_SDK_FETCH_FROM_GIT_PATH "${PICO_SDK_FETCH_FROM_GIT_PATH}" CACHE FILEPATH "location to download SDK") set(PICO_SDK_FETCH_FROM_GIT_TAG "${PICO_SDK_FETCH_FROM_GIT_TAG}" CACHE FILEPATH "release tag for SDK") if (NOT PICO_SDK_PATH) if (PICO_SDK_FETCH_FROM_GIT) include(FetchContent) set(FETCHCONTENT_BASE_DIR_SAVE ${FETCHCONTENT_BASE_DIR}) if (PICO_SDK_FETCH_FROM_GIT_PATH) get_filename_component(FETCHCONTENT_BASE_DIR "${PICO_SDK_FETCH_FROM_GIT_PATH}" REALPATH BASE_DIR "${CMAKE_SOURCE_DIR}") endif () # GIT_SUBMODULES_RECURSE was added in 3.17 if (${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.17.0") FetchContent_Declare( pico_sdk GIT_REPOSITORY https://github.com/raspberrypi/pico-sdk GIT_TAG ${PICO_SDK_FETCH_FROM_GIT_TAG} GIT_SUBMODULES_RECURSE FALSE ) else () FetchContent_Declare( pico_sdk GIT_REPOSITORY https://github.com/raspberrypi/pico-sdk GIT_TAG ${PICO_SDK_FETCH_FROM_GIT_TAG} ) endif () if (NOT pico_sdk) message("Downloading Raspberry Pi Pico SDK") FetchContent_Populate(pico_sdk) set(PICO_SDK_PATH ${pico_sdk_SOURCE_DIR}) endif () set(FETCHCONTENT_BASE_DIR ${FETCHCONTENT_BASE_DIR_SAVE}) else () message(FATAL_ERROR "SDK location was not specified. Please set PICO_SDK_PATH or set PICO_SDK_FETCH_FROM_GIT to on to fetch from git." ) endif () endif () get_filename_component(PICO_SDK_PATH "${PICO_SDK_PATH}" REALPATH BASE_DIR "${CMAKE_BINARY_DIR}") if (NOT EXISTS ${PICO_SDK_PATH}) message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' not found") endif () set(PICO_SDK_INIT_CMAKE_FILE ${PICO_SDK_PATH}/pico_sdk_init.cmake) if (NOT EXISTS ${PICO_SDK_INIT_CMAKE_FILE}) message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' does not appear to contain the Raspberry Pi Pico SDK") endif () set(PICO_SDK_PATH ${PICO_SDK_PATH} CACHE PATH "Path to the Raspberry Pi Pico SDK" FORCE) include(${PICO_SDK_INIT_CMAKE_FILE}) ================================================ FILE: commands.md ================================================ # Fanpico: Command Reference Fanpico uses "SCPI like" command set. Command syntax should be mostly SCPI and IEE488.2 compliant, to make it easier to control and configure Fanpico units. ## Command Set Fanpico supports following commands: * [*IDN?](#idn) * [*RST](#rst) * [CONFigure?](#configure) * [CONFigure:SAVe](#configuresave) * [CONFigure:Read?](#configureread) * [CONFigure:UPLOAD](#configureupload) * [CONFigure:DELete](#configuredelete) * [CONFigure:FANx:NAME](#configurefanxname) * [CONFigure:FANx:NAME?](#configurefanxname-1) * [CONFigure:FANx:MINpwm](#configurefanxminpwm) * [CONFigure:FANx:MINpwm?](#configurefanxminpwm-1) * [CONFigure:FANx:MAXpwm](#configurefanxmaxpwm) * [CONFigure:FANx:MAXpwm?](#configurefanxmaxpwm-1) * [CONFigure:FANx:PWMCoeff](#configurefanxpwmcoeff) * [CONFigure:FANx:PWMCoeff?](#configurefanxpwmcoeff-1) * [CONFigure:FANx:RPMFactor](#configurefanxrpmfactor) * [CONFigure:FANx:RPMFactor?](#configurefanxrpmfactor-1) * [CONFigure:FANx:RPMMOde](#configurefanxrpmmode) * [CONFigure:FANx:RPMMOde?](#configurefanxrpmmode-1) * [CONFigure:FANx:SOUrce](#configurefanxsource) * [CONFigure:FANx:SOUrce?](#configurefanxsource-1) * [CONFigure:FANx:PWMMap](#configurefanxpwmmap) * [CONFigure:FANx:PWMMap?](#configurefanxpwmmap-1) * [CONFigure:FANx:FILTER](#configurefanxfilter) * [CONFigure:FANx:FILTER?](#configurefanxfilter-1) * [CONFigure:FANx:HYSTeresis:TACho](#configurefanxhysteresistacho) * [CONFigure:FANx:HYSTeresis:TACho?](#configurefanxhysteresistacho-1) * [CONFigure:FANx:HYSTeresis:PWM](#configurefanxhysteresispwm) * [CONFigure:FANx:HYSTeresis:PWM?](#configurefanxhysteresispwm-1) * [CONFigure:MBFANx:NAME](#configurembfanxname) * [CONFigure:MBFANx:NAME?](#configurembfanxname-1) * [CONFigure:MBFANx:MINrpm](#configurembfanxminrpm) * [CONFigure:MBFANx:MINrpm?](#configurembfanxminrpm-1) * [CONFigure:MBFANx:MAXrpm](#configurembfanxmaxrpm) * [CONFigure:MBFANx:MAXrpm?](#configurembfanxmaxrpm-1) * [CONFigure:MBFANx:RPMCoeff](#configurembfanxrpmcoeff) * [CONFigure:MBFANx:RPMCoeff?](#configurembfanxrpmcoeff-1) * [CONFigure:MBFANx:RPMFactor](#configurembfanxrpmfactor) * [CONFigure:MBFANx:RPMFactor?](#configurembfanxrpmfactor-1) * [CONFigure:MBFANx:RPMMOde](#configurembfanxrpmmode) * [CONFigure:MBFANx:RPMMOde?](#configurembfanxrpmmode-1) * [CONFigure:MBFANx:SOUrce](#configurembfanxsource) * [CONFigure:MBFANx:SOUrce?](#configurembfanxsource-1) * [CONFigure:MBFANx:RPMMap](#configurembfanxrpmmap) * [CONFigure:MBFANx:RPMMap?](#configurembfanxrpmmap-1) * [CONFigure:MBFANx:FILTER](#configurembfanxfilter) * [CONFigure:MBFANx:FILTER?](#configurembfanxfilter-1) * [CONFigure:SENSORx:NAME](#configuresensorxname) * [CONFigure:SENSORx:NAME?](#configuresensorxname-1) * [CONFigure:SENSORx:TEMPOffset](#configuresensorxtempoffset) * [CONFigure:SENSORx:TEMPOffset?](#configuresensorxtempoffset-1) * [CONFigure:SENSORx:TEMPCoeff](#configuresensorxtempcoeff) * [CONFigure:SENSORx:TEMPCoeff?](#configuresensorxtempcoeff-1) * [CONFigure:SENSORx:TEMPMap](#configuresensorxtempmap) * [CONFigure:SENSORx:TEMPMap?](#configuresensorxtempmap-1) * [CONFigure:SENSORx:BETAcoeff](#configuresensorxbetacoeff) * [CONFigure:SENSORx:BETAcoeff?](#configuresensorxbetacoeff-1) * [CONFigure:SENSORx:THERmistor](#configuresensorxthermistor) * [CONFigure:SENSORx:THERmistor?](#configuresensorxthermistor-1) * [CONFigure:SENSORx:TEMPNominal](#configuresensorxtempnominal) * [CONFigure:SENSORx:TEMPNominal?](#configuresensorxtempnominal-1) * [CONFigure:SENSORx:FILTER](#configuresensorxfilter) * [CONFigure:SENSORx:FILTER?](#configuresensorxfilter-1) * [CONFigure:VSENSORS?](#configurevsensors) * [CONFigure:VSENSORS:SOUrces?](#configurevsensorssources) * [CONFigure:VSENSORx:NAME](#configurevsensorxname) * [CONFigure:VSENSORx:NAME?](#configurevsensorxname-1) * [CONFigure:VSENSORx:SOUrce](#configurevsensorxsource) * [CONFigure:VSENSORx:SOUrce?](#configurevsensorxsource-1) * [CONFigure:VSENSORx:TEMPMap](#configurevsensorxtempmap) * [CONFigure:VSENSORx:TEMPMap?](#configurevsensorxtempmap-1) * [CONFigure:VSENSORx:FILTER](#configurevsensorxfilter) * [CONFigure:VSENSORx:FILTER?](#configurevsensorxfilter-1) * [EXIT](#exit) * [MEASure:Read?](#measureread) * [MEASure:FANx?](#measurefanx) * [MEASure:FANx:Read?](#measurefanxread) * [MEASure:FANx:RPM?](#measurefanxrpm) * [MEASure:FANx:PWM?](#measurefanxpwm) * [MEASure:FANx:TACho?](#measurefanxtacho) * [MEASure:MBFANx?](#measurembfanx) * [MEASure:MBFANx:Read?](#measurembfanxread) * [MEASure:MBFANx:RPM?](#measurembfanxrpm) * [MEASure:MBFANx:PWM?](#measurembfanxpwm) * [MEASure:MBFANx:TACho?](#measurembfanxtacho) * [MEASure:SENSORx?](#measuresensorx) * [MEASure:SENSORx:Read?](#measuresensorxread) * [MEASure:SENSORx:TEMP?](#measuresensorxtemp) * [MEASure:VSENSORS?](#measurevsensors) * [MEASure:VSENSORx?](#measurevsensorx) * [MEASure:VSENSORx:HUMidity?](#measurevsensorxhumidity) * [MEASure:VSENSORx:PREssure?](#measurevsensorxpressure) * [MEASure:VSENSORx:Read?](#measurevsensorxread) * [MEASure:VSENSORx:TEMP?](#measurevsensorxtemp) * [Read?](#read) * [SYStem:ERRor?](#systemerror) * [SYStem:BOARD?](#systemboard) * [SYStem:DEBug](#systemdebug) * [SYStem:DEBug?](#systemdebug-1) * [SYStem:LOG](#systemlog) * [SYStem:LOG?](#systemlog-1) * [SYStem:SYSLOG](#systemsyslog) * [SYStem:SYSLOG?](#systemsyslog-1) * [SYStem:DISPlay](#systemdisplay) * [SYStem:DISPlay?](#systemdisplay) * [SYStem:DISPlay:LAYOUTR](#systemdisplaylayoutr) * [SYStem:DISPlay:LAYOUTR?](#systemdisplaylayoutr-1) * [SYStem:DISPlay:LOGO](#systemdisplaylogo) * [SYStem:DISPlay:LOGO?](#systemdisplaylogo-1) * [SYStem:DISPlay:THEMe](#systemdisplaytheme) * [SYStem:DISPlay:THEMe?](#systemdisplaytheme-1) * [SYStem:ECHO](#systemecho) * [SYStem:ECHO?](#systemecho) * [SYStem:FANS?](#systemfans) * [SYStem:FLASH?](#systemflash) * [SYStem:HTTP:SERVer](#systemhttpserver) * [SYStem:HTTP:SERVer?](#systemhttpserver-1) * [SYStem:HTTP:PORT](#systemhttpport) * [SYStem:HTTP:PORT?](#systemhttpport-1) * [SYStem:HTTP:TLSPORT](#systemhttptlsport) * [SYStem:HTTP:TLSPORT?](#systemhttptlsport-1) * [SYStem:HTTP:MASK:FAN](#systemmqttmaskfan) * [SYStem:HTTP:MASK:FAN?](#systemmqttmaskfan-1) * [SYStem:HTTP:MASK:MBFAN](#systemmqttmaskmbfan) * [SYStem:HTTP:MASK:MBFAN?](#systemmqttmaskmbfan-1) * [SYStem:HTTP:MASK:SENSOR](#systemmqttmasksensor) * [SYStem:HTTP:MASK:SENSOR?](#systemmqttmasksensor-1) * [SYStem:HTTP:MASK:VSENSOR](#systemmqttmaskvsensor) * [SYStem:HTTP:MASK:VSENSOR?](#systemmqttmaskvsensor-1) * [SYStem:I2C?](#systemi2c) * [SYStem:I2C:SCAN?](#systemi2cscan) * [SYStem:I2C:SPEED](#systemi2cspeed) * [SYStem:I2C:SPEED?](#systemi2cspeed?) * [SYStem:LED](#systemled) * [SYStem:LED?](#systemled-1) * [SYStem:LFS?](#systemlfs) * [SYStem:LFS:COPY](#systemlfscopy) * [SYStem:LFS:DELete](#systemlfsdelete) * [SYStem:LFS:DIR?](#systemlfsdir) * [SYStem:LFS:FORMAT](#systemlfsformat) * [SYStem:LFS:REName](#systemlfsrename) * [SYStem:MBFANS?](#systemmbfans) * [SYStem:MEM](#systemmem) * [SYStem:MEM?](#systemmem-1) * [SYStem:MQTT:SERVer](#systemmqttserver) * [SYStem:MQTT:SERVer?](#systemmqttserver-1) * [SYStem:MQTT:PORT](#systemmqttport) * [SYStem:MQTT:PORT?](#systemmqttport-1) * [SYStem:MQTT:USER](#systemmqttuser) * [SYStem:MQTT:USER?](#systemmqttuser-1) * [SYStem:MQTT:PASSword](#systemmqttpassword) * [SYStem:MQTT:PASSword?](#systemmqttpassword-1) * [SYStem:MQTT:SCPI](#systemmqttscpi) * [SYStem:MQTT:SCPI?](#systemmqttscpi-1) * [SYStem:MQTT:TLS](#systemmqtttls) * [SYStem:MQTT:TLS?](#systemmqtttls-1) * [SYStem:MQTT:HA:DISCovery](#systemmqtthadiscovery) * [SYStem:MQTT:HA:DISCcovery?](#systemmqtthadiscovery-1) * [SYStem:MQTT:INTerval:STATUS](#systemmqttintervalstatus) * [SYStem:MQTT:INTerval:STATUS?](#systemmqttintervalstatus-1) * [SYStem:MQTT:INTerval:TEMP](#systemmqttintervaltemp) * [SYStem:MQTT:INTerval:TEMP?](#systemmqttintervaltemp-1) * [SYStem:MQTT:INTerval:VSENsor](#systemmqttintervalvsensor) * [SYStem:MQTT:INTerval:VSENsor?](#systemmqttintervalvsensor-1) * [SYStem:MQTT:INTerval:RPM](#systemmqttintervalrpm) * [SYStem:MQTT:INTerval:RPM?](#systemmqttintervalrpm-1) * [SYStem:MQTT:INTerval:PWM](#systemmqttintervalpwm) * [SYStem:MQTT:INTerval:PWM?](#systemmqttintervalpwm-1) * [SYStem:MQTT:MASK:TEMP](#systemmqttmasktemp) * [SYStem:MQTT:MASK:TEMP?](#systemmqttmasktemp-1) * [SYStem:MQTT:MASK:VTEMP](#systemmqttmaskvtemp) * [SYStem:MQTT:MASK:VTEMP?](#systemmqttmaskvtemp-1) * [SYStem:MQTT:MASK:VHUMidity](#systemmqttmaskvhumidity) * [SYStem:MQTT:MASK:VHUMidity?](#systemmqttmaskvhumidity-1) * [SYStem:MQTT:MASK:VPREssure](#systemmqttmaskvpressure) * [SYStem:MQTT:MASK:VPREssure?](#systemmqttmaskvpressure-1) * [SYStem:MQTT:MASK:FANRPM](#systemmqttmaskfanrpm) * [SYStem:MQTT:MASK:FANRPM?](#systemmqttmaskfanrpm-1) * [SYStem:MQTT:MASK:FANPWM](#systemmqttmaskfanpwm) * [SYStem:MQTT:MASK:FANPWM?](#systemmqttmaskfanpwm-1) * [SYStem:MQTT:MASK:MBFANRPM](#systemmqttmaskmbfanrpm) * [SYStem:MQTT:MASK:MBFANRPM?](#systemmqttmaskmbfanrpm-1) * [SYStem:MQTT:MASK:MBFANPWM](#systemmqttmaskmbfanpwm) * [SYStem:MQTT:MASK:MBFANPWM?](#systemmqttmaskmbfanpwm-1) * [SYStem:MQTT:TOPIC:STATus](#systemmqtttopicstatus) * [SYStem:MQTT:TOPIC:STATus?](#systemmqtttopicstatus-1) * [SYStem:MQTT:TOPIC:COMMand](#systemmqtttopiccommand) * [SYStem:MQTT:TOPIC:COMMand?](#systemmqtttopiccommand-1) * [SYStem:MQTT:TOPIC:RESPonse](#systemmqtttopicresponse) * [SYStem:MQTT:TOPIC:RESPonse?](#systemmqttopicresponse-1) * [SYStem:MQTT:TOPIC:TEMP](#systemmqtttopictemp) * [SYStem:MQTT:TOPIC:TEMP?](#systemmqttopictemp-1) * [SYStem:MQTT:TOPIC:VTEMP](#systemmqtttopicvtemp) * [SYStem:MQTT:TOPIC:VTEMP?](#systemmqttopicvtemp-1) * [SYStem:MQTT:TOPIC:VHUMidity](#systemmqtttopicvhumidity) * [SYStem:MQTT:TOPIC:VHUMidity?](#systemmqttopicvhumidity-1) * [SYStem:MQTT:TOPIC:VPREssure](#systemmqtttopicvpressure) * [SYStem:MQTT:TOPIC:VPREssure?](#systemmqttopicvpressure-1) * [SYStem:MQTT:TOPIC:FANRPM](#systemmqtttopicfanrpm) * [SYStem:MQTT:TOPIC:FANRPM?](#systemmqttopicfanrpm-1) * [SYStem:MQTT:TOPIC:FANPWM](#systemmqtttopicfanpwm) * [SYStem:MQTT:TOPIC:FANPWM?](#systemmqttopicfanpwm-1) * [SYStem:MQTT:TOPIC:MBFANRPM](#systemmqtttopicmbfanrpm) * [SYStem:MQTT:TOPIC:MBFANRPM?](#systemmqttopicmbfanrpm-1) * [SYStem:MQTT:TOPIC:MBFANPWM](#systemmqtttopicmbfanpwm) * [SYStem:MQTT:TOPIC:MBFANPWM?](#systemmqttopicmbfanpwm-1) * [SYStem:NAME](#systemname) * [SYStem:NAME?](#systemname-1) * [SYStem:ONEWIRE](#systemonewire) * [SYStem:ONEWIRE?](#systemonewire-1) * [SYStem:ONEWIRE:SENSORS?](#systemonewiresensors) * [SYStem:SENSORS?](#systemsensors) * [SYStem:SERIAL](#systemserial) * [SYStem:SERIAL?](#systemserial-1) * [SYStem:SNMP:AGENT](#systemsnmpagent) * [SYStem:SNMP:AGENT?](#systemsnmpagent-1) * [SYStem:SNMP:COMmunity](#systemsnmpcommunity) * [SYStem:SNMP:COMmunity?](#systemsnmpcommunity-1) * [SYStem:SNMP:CONTact](#systemsnmpcontact) * [SYStem:SNMP:CONTact?](#systemsnmpcontact-1) * [SYStem:SNMP:LOCAtion](#systemsnmplocation) * [SYStem:SNMP:LOCAtion?](#systemsnmplocation-1) * [SYStem:SNMP:WRITecommunity](#systemsnmpwritecommunity) * [SYStem:SNMP:WRITecommunity?](#systemsnmpwritecommunity-1) * [SYStem:SNMP:TRAPs:AUTH](#systemsnmptrapsauth) * [SYStem:SNMP:TRAPs:AUTH?](#systemsnmptrapsauth-1) * [SYStem:SNMP:TRAPs:COMMunity](#systemsnmptrapscommunity) * [SYStem:SNMP:TRAPs:COMMunity?](#systemsnmptrapscommunity-1) * [SYStem:SNMP:TRAPs:DESTination](#systemsnmptrapsdestination) * [SYStem:SNMP:TRAPs:DESTination?](#systemsnmptrapsdestination-1) * [SYStem:SPI](#systemspi) * [SYStem:SPI?](#systemspi-1) * [SYStem:SSH:SERVer](#systemsshserver) * [SYStem:SSH:SERVer?](#systemsshserver-1) * [SYStem:SSH:ACLs](#systemsshacls) * [SYStem:SSH:ACLs?](#systemsshacls-1) * [SYStem:SSH:AUTH](#systemsshauth) * [SYStem:SSH:AUTH?](#systemsshauth-1) * [SYStem:SSH:PORT](#systemsshport) * [SYStem:SSH:PORT?](#systemsshport-1) * [SYStem:SSH:USER](#systemsshuser) * [SYStem:SSH:USER?](#systemsshuser-1) * [SYStem:SSH:PASSword](#systemsshpassword) * [SYStem:SSH:PASSword?](#systemsshpassword-1) * [SYStem:SSH:KEY?](#systemsshkey) * [SYStem:SSH:KEY:CREate](#systemsshkeycreate) * [SYStem:SSH:KEY:DELete](#systemsshkeydelete) * [SYStem:SSH:KEY:LIST?](#systemsshkeylist) * [SYStem:SSH:PUBKEY?](#systemsshpubkey) * [SYStem:SSH:PUBKEY:ADD](#systemsshpubkeyadd) * [SYStem:SSH:PUBKEY:DELete](#systemsshpubkeydelete) * [SYStem:SSH:PUBKEY:LIST?](#systemsshpubkeylist) * [SYStem:TELNET:SERVer](#systemtelnetserver) * [SYStem:TELNET:SERVer?](#systemtelnetserver-1) * [SYStem:TELNET:ACLs](#systemtelnetacls) * [SYStem:TELNET:ACLs?](#systemtelnetacls-1) * [SYStem:TELNET:AUTH](#systemtelnetauth) * [SYStem:TELNET:AUTH?](#systemtelnetauth-1) * [SYStem:TELNET:PORT](#systemtelnetport) * [SYStem:TELNET:PORT?](#systemtelnetport-1) * [SYStem:TELNET:RAWmode](#systemtelnetrawmode) * [SYStem:TELNET:RAWmode?](#systemtelnetrawmode-1) * [SYStem:TELNET:USER](#systemtelnetuser) * [SYStem:TELNET:USER?](#systemtelnetuser-1) * [SYStem:TELNET:PASSword](#systemtelnetpassword) * [SYStem:TELNET:PASSword?](#systemtelnetpassword-1) * [SYStem:TIME](#systemtime) * [SYStem:TIME?](#systemtime-1) * [SYStem:TIMEZONE](#systemtimezone) * [SYStem:TIMEZONE?](#systemtimezone-1) * [SYStem:TLS:CERT](#systemtlscert) * [SYStem:TLS:CERT?](#systemtlscert-1) * [SYStem:TLS:PKEY](#systemtlspkey) * [SYStem:TLS:PKEY?](#systemtlspkey-1) * [SYStem:UPTIme?](#systemuptime) * [SYStem:UPGRADE](#systemupgrade) * [SYStem:VERsion?](#systemversion) * [SYStem:VREFadc](#systemvrefadc) * [SYStem:VREFadc?](#systemvrefadc-1) * [SYStem:VSENSORS?](#systemvsensors) * [SYStem:WIFI?](#systemwifi) * [SYStem:WIFI:AUTHmode](#systemwifiauthmode) * [SYStem:WIFI:AUTHmode?](#systemwifiauthmode-1) * [SYStem:WIFI:COUntry](#systemwificountry) * [SYStem:WIFI:COUntry?](#systemwificountry-1) * [SYStem:WIFI:HOSTname](#systemwifihostname) * [SYStem:WIFI:HOSTname?](#systemwifihostname-1) * [SYStem:WIFI:INFO?](#systemwifiinfo) * [SYStem:WIFI:IPaddress](#systemwifiipaddress) * [SYStem:WIFI:IPaddress?](#systemwifiipaddress-1) * [SYStem:WIFI:MODE](#systemwifimode) * [SYStem:WIFI:MODE?](#systemwifimode-1) * [SYStem:WIFI:NETMASK](#systemwifinetmask) * [SYStem:WIFI:NETMASK?](#systemwifinetmask-1) * [SYStem:WIFI:GATEWAY](#systemwifigateway) * [SYStem:WIFI:GATEWAY?](#systemwifigateway-1) * [SYStem:WIFI:DNS](#systemwifidns) * [SYStem:WIFI:DNS?](#systemwifidns-1) * [SYStem:WIFI:NTPClient](#systemwifintpclient) * [SYStem:WIFI:NTPClient?](#systemwifintpclient-1) * [SYStem:WIFI:NTP](#systemwifintp) * [SYStem:WIFI:NTP?](#systemwifintp-1) * [SYStem:WIFI:SYSLOGClient](#systemwifisyslogclient) * [SYStem:WIFI:SYSLOGClient?](#systemwifisyslogclient-1) * [SYStem:WIFI:SYSLOG](#systemwifisyslog) * [SYStem:WIFI:SYSLOG?](#systemwifisyslog-1) * [SYStem:WIFI:MAC?](#systemwifimac) * [SYStem:WIFI:REJOIN](#systemwifirejoin) * [SYStem:WIFI:SSID](#systemwifissid) * [SYStem:WIFI:SSID?](#systemwifissid-1) * [SYStem:WIFI:STATus?](#systemwifistatus) * [SYStem:WIFI:STATS?](#systemwifistats) * [SYStem:WIFI:PASSword](#systemwifipassword) * [SYStem:WIFI:PASSword?](#systemwifipassword-1) * [WHO?](#who) * [WRIte:VSENSORx](#writevsensorx) Additionally unit will respond to following standard SCPI commands to provide compatibility in case some program unconditionally will send these: * *CLS * *ESE * *ESE? * *ESR? * *OPC * *OPC? * *SRE * *SRE? * *STB? * *TST? * *WAI ### Common Commands #### *IDN? Identify device. This returns string that contains following fields: ``` ,,, ``` Example: ``` *IDN? TJKO Industries,FANPICO-0804,e660c0d1c768a330,1.0 ``` #### *RST Reset unit. This triggers Fanpico to perform (warm) reboot. ``` *RST ``` ### CONFigure: Commands for configuring the device settings. #### CONFigure? Display current configuration in JSON format. Same as CONFigure:Read? Example: ``` CONF? ``` #### CONFigure:SAVe Save current configuration into flash memory. Example: ``` CONF:SAVE ``` #### CONFigure:Read? Display (backup) current configuration in JSON format. Example: ``` CONF:READ? ``` #### CONFigure:UPLOAD? Upload (previous backed up) configuration in JSON format. This command waits up to 10 seconds for the configuration to be uploaded. End of configuration is signified by empty line (after end of configuration). (To cancel uploading configuration, two empty lines can be sent.) Example: ``` CONF:UPLOAD Paste FanPico configuration in JSON format: [Received 5937 bytes] Clearing config... Loading config... [ 112.487339][0] Config version: fanpico-config-v1 Configuration successfully loaded. ``` #### CONFigure:DELete Delete current configuration saved into flash. After unit has been reset it will be using default configuration. Example: ``` CONF:DEL *RST ``` ### CONFigure:FANx Commands FANx commands are used to configure specific fan output port. Where x is a number from 1 to 8. For example: ``` CONFIGURE:FAN8:NAME Exhaust Fan 2 ``` #### CONFigure:FANx:NAME Set name for fan (output) port. For example: ``` CONF:FAN1:NAME CPU Fan 1 ``` #### CONFigure:FANx:NAME? Query name of a fan (output) port. For example: ``` CONF:FAN1:NAME? CPU Fan 1 ``` #### CONFigure:FANx:HYSTeresis:TACho new: release v1.6.4 \ Set the hysteresis threshold for a given tacho fan (output) port. For example: ``` CONF:FAN1:HYST:TACHO 1.5 ``` #### CONFigure:FANx:HYSTeresis:TACho? new: release v1.6.4 \ Query the hysteresis threshold for a given tacho fan (output) port. For example: ``` CONF:FAN1:HYST:TACHO? 1.500000 ``` #### CONFigure:FANx:HYSTeresis:PWM new: release v1.6.4 \ Set the hysteresis threshold for a given tacho PWM (output) port. For example: ``` CONF:FAN1:HYST:PWM 2.0 ``` #### CONFigure:FANx:HYSTereris:PWM? new: release v1.6.4 \ Query the hysteresis threshold for a given PWM fan (output) port. For example: ``` CONF:FAN1:HYST:PWM? 2.000000 ``` #### CONFigure:FANx:MINpwm Set absolute minimum PWM duty cycle (%) for given fan port. This can be used to make sure that fan always sees a minimum duty cycle (overriding the normal fan signal). Default: 0 % Example: Set minimum PWM duty cycle to 20% for FAN1 ``` CONF:FAN1:MIN 20 ``` #### CONFigure:FANx:MINpwm? Query current minimum PWM duty cycle (%) configured on a fan port. Example: ``` CONF:FAN1:MIN? 20 ``` #### CONFigure:FANx:MAXpwm Set absolute maximum PWM duty cycle (%) for given fan port. This can be used to make sure that fan never sees higher duty cycle than given value (overriding the normal fan signal). Default: 100 % Example: Set maximum PWM duty cycle to 95% for FAN1 ``` CONF:FAN1:MAX 95 ``` #### CONFigure:FANx:MAXpwm? Query current maximum PWM duty cycle (%) configured on a fan port. Example: ``` CONF:FAN1:MAX? 95 ``` #### CONFigure:FANx:PWMCoeff Set scaling factor for the fan PWM (output) signal. This is applied to the PWM duty cycle before MAXpwm and MINpwm limits are applied. Default: 1.0 Example: Set FAN6 to run 20% slower than signal its configured to follow. ``` CONF:FAN6:PWMC 0.8 ``` #### CONFigure:FANx:PWMCoeff? Query current PWM duty cycle (%) scaling factor configured on a fan port. Example: ``` CONF:FAN6:PWMC? 0.8 ``` #### CONFigure:FANx:RPMFactor Set number of pulses fan generates per one revolution. This is used to calculate RPM measurement based on the Tachometer signal from the fan. PC Fans typically send 2 pulses per revolution (per Intel specifications). Default: 2 Example: Adjust factor for a fan that produces 4 pulses per revolution ``` CONF:FAN1:RPMF 4 ``` #### CONFigure:FANx:RPMFactor? Query current RPM conversion factor configured on a fan port. Example: ``` CONF:FAN1:RPMF? 4 ``` #### CONFigure:FANx:RPMMOde Configure what type tachometer signal fan is sending. Supported signal types: Signal Type|Setting|Notes -----------|-------|----- Tachometer|TACHO|Fan is sending normal tachometer pulses to indicate rotation speed. Locked Rotor (Alarm)|LRA,low_rpm,high_rpm|Parameters indicate mapping from LRA to RPM speeds (corresponding to LOW and HIGH signal received from the fan). Default: TACHO (fan sends standard tachometer pulses to indicate rotation speed) Example: Fan is not sending tachometer signal but Locked Rotor Alam signal (LRA) on tachometer pin (we map HIGH signal to mean 0 RPM and LOW signal to mean 2000 RPM) ``` CONF:FAN1:RPMMODE LRA,2000,0 ``` Example: Fan is sending Locked Rotor (Alarm) signal (LRA), where polarity in reversed (LOW signal indicates lockup/failure): ``` CONF:FAN2:RPMMODE LRA,0,2000 ``` #### CONFigure:FANx:RPMMOde? Query current RPM tachometer signal settings for a fan. Example: ``` CONF:FAN1:RPMMODE? TACHO CONF:FAN2:RPMMODE? LRA,0,2000 ``` #### CONFigure:FANx:SOUrce Configure source for the PWM signal of a fan. Source types: * MBFAN (set fan to follow duty cycle from motherboard fan port) * SENSOR (set fan to follow temperature based duty cycle) * VSENSOR (set fan to follow temperature based duty cycle) * FAN (set fan to follow another FAN output duty cycle) * FIXED (set fan to run on fixed duty cycle) Defaults: FAN|SOURCE ---|------ 1|MBFAN,1 2|MBFAN,2 3|MBFAN,3 4|MBFAN,4 5|MBFAN,1 6|MBFAN,2 7|MBFAN,3 8|MBFAN,4 Example: Set FAN 5 to follow temperature sensor 2 ``` CONF:FAN5:SOURCE SENSOR,2 ``` Example: Set FAN 6 to run always at fixed 50% duty cycle (speed) ``` CONF:FAN6:SOURCE FIXED,50 ``` #### CONFigure:FANx:SOUrce? Query current signal source for a fan. Command returns response in following format: ``` source_type,source_no ``` Example: ``` CONF:FAN1:SOU? mbfan,1 ``` #### CONFigure:FANx:PWMMap Set mapping (curve) for the PWM duty cycle signal. This can be used to customize how fan will respond to input signal it receives. Mapping is specified with up to 32 points (that can be plotted as a curve) that map the relation of the input signal (x value) to output signal (y value). Mapping should at minimum include that start and end points of the expected input signal (typically 0 and 100). Default mapping is linear (1:1) mapping: x|y -|- 0|0 100|100 Example: Configure Fan to run at 20% duty cycle between 0-20% input signal then scale linearly to 100% by the time input signal reaches 100% ``` CONF:FAN1:PWMMAP 0,20,20,20,100,100 ``` Example: Assuming we have "fancy" PWM fan that actually stops spinning on 0% duty cycle. And we want fan not run until input PWM signal duty cycle is over 30%, and we want fan to reach full speed by the time 90% duty signal is received. ``` CONF:FAN1:PWMMAP 0,0,30,0,90,100 ``` #### CONFigure:FANx:PWMMap? Display currently active mapping (curve) for the PWM duty signal. Mapping is displayed as comma separated list of values: ``` x_1,y_1,x_2,y_2,...,x_n,y_n ``` For example: ``` CONF:FAN1:PWMMAP? 0,0,100,100 ``` #### CONFigure:FANx:FILTER Configure filter to be applied for the PWM signal controlling the fan. Filter|Description|Arguments|Argument Descriptions|Example|Notes ------|-----------|---------|---------------------|-------|------- none|No Filter||| lossypeak|Lossy Peak Detector|decay_rate,decay_start_delay|* decay rate [points per second] (valid values: > 0.0)
* decay start delay [seconds] (valid values: >= 0.0)|CONF:FAN1:FILTER lossypeak,1.5,15|This can be useful for smoothing out erratic (CPU Fan) PWM signal from motherboard. sma|Simple Moving Average|window_size|* window size [points] (valid range: 2..32)
|CONF:FAN1:FILTER sma,10|This can be useful for filtering temperature sensor signal. For example: ``` CONF:FAN1:FILTER lossypeak,1.0,30 ``` #### CONFigure:FANx:FILTER? Display currently active (PWM) filter for the fan. Format: filter,arg_1,arg_2,...arg_n For example: ``` CONF:FAN1:FILTER? lossypeak,1.0,30.0 ``` ### CONFigure:MBFANx Commands MBFANx commands are used to configure specific motherboard fan input port. Where x is a number from 1 to 4. For example: ``` CONF:MBFAN4:NAME Water Pump ``` #### CONFigure:MBFANx:NAME Set name for motherboard fan (input) port. For example: ``` CONF:MBFAN1:NAME CPU Fan ``` #### CONFigure:MBFANx:NAME? Query name of a motherboard fan (input) port. For example: ``` CONF:MBFAN1:NAME? CPU Fan ``` #### CONFigure:MBFANx:MINrpm Set absolute minimum RPM value for given motherboard fan port. This can be used to make sure motherboard never sees "fan" running slower than this value (even if fan is not running at all). Default: 0 Example: Set minimum RPM (sent to motheboard) to be at least 500 ``` CONF:MBFAN1:MIN 500 ``` #### CONFigure:MBFANx:MINrpm? Query current minimum RPM value configured on a motherboard fan port. Example: ``` CONF:MBFAN1:MIN? 500 ``` #### CONFigure:MBFANx:MAXrpm Set absolute maximum value for given motherboard fan port. This can be used to make sure motherboard never sees "fan" running ffaster than this value. Default: 10000 Example: Set maximum RPM value motheboard can see to 3000 ``` CONF:MBFAN1:MAX 3000 ``` #### CONFigure:MBFANx:MAXrpm? Query current maximum RPM value configured on a motherboard fan port. Example: ``` CONF:MBFAN1:MAX? 3000 ``` #### CONFigure:MBFANx:RPMCoeff Set scaling factor for the motherboard fan Tachometer (output) signal. This is applied to adjust the output RPM (and tachometer signal frequency). Default: 1.0 Example: Scale the MBFAN4 port Tachometer (RPM) values to be 20% higher than input. ``` CONF:MBFAN4:RPMC 1.2 ``` #### CONFigure:MBFANx:RPMCoeff? Query current TAchometer (RPM) scaling factor configured on a motherboard fan port. Example: ``` CONF:MBFAN6:RPMC? 1.2 ``` #### CONFigure:MBFANx:RPMFactor Set number of pulses per one revolution in the generated tachometer signal (going out to motherboard). This is mainly only needed if using Fanpico with something else than PC motherboard, that expects to see tachometer signal from Fans that produce other than the default 2 pulses per revolution. Default: 2 Example: Adjust factor for (emulating fan that produces 4 pulses per revolution ``` CONF:MBFAN1:RPMF 4 ``` #### CONFigure:MBFANx:RPMFactor? Query current RPM conversion factor configured on a motherboard fan port. Example: ``` CONF:MBFAN1:RPMF? 4 ``` #### CONFigure:MBFANx:RPMMOde Configure what type tachometer signal is sent (out) to motherboard. Supported signal types: Signal Type|Setting|Notes -----------|-------|----- Tachometer|TACHO|Send normal tachometer pulses to indicate rotation speed. Locked Rotor (Alarm)|LRA,threshold_rpm,locked_signal_level|Send Locked Rotor Alarm signal, when RPM is below threshold RPM speed send the indicated signal (HIGH or LOW). *NOTE!* When changing RPM Mode for a mbfan (output), system must be reset before change takes effect. Default: TACHO (standard tachometer pulses to indicate rotation speed) Example: Send 'HIGH' Locked Rotor (Alarm) signal (when RPM drops below 200 RPM) ``` CONF:MBFAN1:RPMMODE LRA,200,HIGH ``` Example: Send 'LOW' Locked Rotor (Alarm) signal (when RPM drops below 500 RPM) ``` CONF:MBFAN2:RPMMODE LRA,500,LOW ``` #### CONFigure:FANx:RPMMOde? Query current RPM tachometer signal settings for a fan. Example: ``` CONF:FAN1:RPMMODE? TACHO CONF:FAN2:RPMMODE? LRA,0,2000 ``` #### CONFigure:MBFANx:SOUrce Configure source for the Tachometer (RPM) signal for a motheboard fan (output) port. Source types: Type|Parameters|Description|Example ----|----------|-----------|------ FAN|n|Return tachometer signal of a specified fan|FAN,1 FIXED|rpm|Return static tachometer signal at specified rpm|FIXED,1500 MIN|n1,n2,...|Return slowest FAN speed acros specified fans|MIN,2,7,8 MAX|n1,n2,...|Return fastest FAN speed acros specified fans|MAX,2,7,8 AVG|n1,n2,...|Return average FAN speed acros specified fans|AVG,2,7,8 Defaults: MBFAN|SOURCE ---|------ 1|FAN,1 2|FAN,2 3|FAN,3 4|FAN,4 Example: Set MBFAN 2 to follow Tachometer signal from FAN8 ``` CONF:MBFAN2:SOURCE FAN,8 ``` Example: Set MBFAN 4 to see fixed 1500 RPM tachometer signal ``` CONF:MBFAN4:SOURCE FIXED,1500 ``` Example: Set MBFAN 1 to return slowest fan speed from FAN1, FAN2, and FAN3 ``` CONF:MBFAN1:SOURCE MIN,1,2,3 ``` #### CONFigure:MBFANx:SOUrce? Query current signal source for a motherboar fan (Tachometer output). Command returns response in following format: ``` source_type,source_no ``` Example: ``` CONF:MBFAN1:SOU? fan,1 ``` #### CONFigure:MBFANx:RPMMap Set mapping (curve) for the Tachometer (RPM) output signal to motherboard. This can be used to customize what motherboard sees as the "fan" RPM. Mapping is specified with up to 32 points (that can be plotted as a curve) that map the relation of the input signal (x value) to output signal (y value). Mapping should at minimum include that start and end points of the expected input signal (typically 0 and 100). Default mapping is linear (1:1) mapping: x|y -|- 0|0 10000|10000 Example: Assuming we have configured FAN1 to only run above 30% PWM signal, but our motherboard sets alarm when it doesn't detect fan running, we can provide 'fake' 500RPM speed to the motherboard until fan is actually running at least 500 RPM... ``` CONF:MBFAN1:RPMMAP 0,500,500,500,10000,10000 ``` #### CONFigure:MBFANx:RPMMap? Display currently active mapping (curve) for the tachometer signal sent to motherboard fan port. Mapping is displayed as comma separated list of values: ``` x_1,y_1,x_2,y_2,...,x_n,y_n ``` For example: ``` CONF:MBFAN1:RPMMAP? 0,0,10000,10000 ``` #### CONFigure:MBFANx:FILTER Configure filter to be applied to the PWM signal received (from motheboard, etc.) List of available filters can be found here: [Available Filters](#configurefanfilter) By default, no filter is applied (filter is set to "none"). Example: Set filter for the input signal to "Lossy Peak Detector", that is often useful with erratic PWM signals (like CPU Fan control signal on many motherboards). ``` CONF:MBFAN1:FILTER lossypeak,1.5,10 ``` #### CONFigure:MBFANx:FILTER? Display currently active filter for the input PWM signal. Format: filter,arg_1,arg_2,...arg_n For example: ``` CONF:MBFAN1:FILTER? none, ``` ### CONFigure:SENSORx Commands SENSORx commands are used to configure specific (temperature) sensor. Where x is a number from 1 to 3. Sensor|Description ------|----------- 1|Thermistor connected to SENSOR1 connector. 2|Thermistor connected to SENSOR2 connector. 3|Internal temperature sensor on RP2040 (can be used for "Ambient" temperature measurementes as RP2040 doesn't heat up significantly). For example: ``` CONF:SENSOR1:NAME Air Intake ``` #### CONFigure:SENSORx:NAME Set name for temperature sensor. For example: ``` CONF:SENSOR1:NAME Air Intake ``` #### CONFigure:SENSORx:NAME? Query name of a temperature sensor. For example: ``` CONF:SENSOR1:NAME? Air Intake ``` #### CONFigure:SENSORx:TEMPOffset Set offset that is applied to measured temperature. This can be used as a grude calibration method by setting offset to the difference of actual temperature vs. what sensor is reporting. Default: 0.0 For example: Sensor is reporting 2.5 degrees "high", so set offset to -2.5: ``` CONF:SENSOR1:TEMPO -2.5 ``` #### CONFigure:SENSORx:TEMPOffset? Get the current temperature offset configured for the sensor. For example: ``` CONF:SENSOR1:TEMPO? -2.5 ``` #### CONFigure:SENSORx:TEMPCoeff Set coefficient that is used to multiply the (raw) temperature sensor reports. This can be used to correct error in temperature measurements. Default: 1.0 For example: Sensor is consistently reading 10% higher than actual temperature ``` CONF:SENSOR1:TEMPC 0.9 ``` #### CONFigure:SENSORx:TEMPCoeff? Get the current temperature coefficient configured for the sensor. For example: ``` CONF:SENSOR1:TEMPC? 0.9 ``` #### CONFigure:SENSORx:TEMPMap Set mapping (curve) for converting temperature to PWM signal duty cycle (%). This can be used to customize how temperature affects fan speed. Mapping is specified with up to 32 points (that can be plotted as a curve) that map the relation of the temperature (x value) to output PWM signal (y value). Mapping should at minimum include that start and end points of the expected input signal. Default mapping: x (Temperature in C)|y (Fan Duty Cycle in %) -|- 20|0 50|100 Example: Set Fan to start running at 20% duty cycle at 25C and to be full speed at 50C ``` CONF:SENSOR1:TEMPMAP 25,20,50,100 ``` #### CONFigure:SENSORx:TEMPMap? Display currently active mapping (curve) for convertin measured temperature to PWM duty cycle (%) for the fan output signal. Mapping is displayed as comma separated list of values: ``` x_1,y_1,x_2,y_2,...,x_n,y_n ``` For example: ``` CONF:SENSOR1:TEMPMAP? 20,0,50,10000 ``` #### CONFigure:SENSORx:BETAcoeff Set beta coefficient of thermistor used to measure temperature. Typically thermistor beta coefficient is in the range 3000-4000. Default: 3950 For example: ``` CONF:SENSOR1:BETA 3950 ``` #### CONFigure:SENSORx:BETAcoeff? Get the configured beta coefficient of the thermistor used to measure temperature. For example: ``` CONF:SENSOR1:BETA? 3950 ``` #### CONFigure:SENSORx:THERmistor Set thermistor nominal resistance at nominal (room) temperature. Typically this is either 10000 (for 10k thermistors) or 100000 (for 100k thermistors). Default: 10000 For example: configure 100k thermistor ``` CONF:SENSOR1:THER 100000 ``` #### CONFigure:SENSORx:THERmistor? Get the thermistor nominal resistance at nominal (room) temperature. For example: ``` CONF:SENSOR1:THER? 100000 ``` #### CONFigure:SENSORx:TEMPNominal Set nominal temperature of the thermistor (in C). Typically nominal temperature is around room temperature. Default: 25.0 For example: ``` CONF:SENSOR1:TEMPN 25.0 ``` #### CONFigure:SENSORx:TEMPNominal? Get nominal temperature of the thermistor (in C). For example: ``` CONF:SENSOR1:TEMPN? 25.0 ``` #### CONFigure:SENSORx:FILTER Configure filter to be applied to the temperature signal received from the sensor. List of available filters can be found here: [Available Filters](#configurefanfilter) By default, no filter is applied (filter is set to "none"). Example: Set filter for the input signal to "Simple Moving Average", that can be useful with noisy readings from temperature sensors. ``` CONF:SENSOR1:FILTER sma,10 ``` #### CONFigure:SENSORx:FILTER? Display currently active filter for the temperature signal received from the sensor. Format: filter,arg_1,arg_2,...arg_n For example: ``` CONF:SENSOR1:FILTER? sma,10 ``` #### CONFigure:VSENSORS? This is same as CONFigure::VSENSORS:SOUrces? command. #### CONFigure:VSENSORS:SOUrces? Return virtual sensor (source) configuration information for all virtual sensors in CSV format. Format: ,,,,... Example: ``` CONF:VSENSORS:SOURCES? vsensor1,onewire,22cd991800000020 vsensor2,i2c,0x48,TMP117 vsensor3,i2c,0x37,PCT2075 vsensor4,i2c,0x77,DPS310 vsensor5,i2c,0x76,BMP280 vsensor6,i2c,0x49,ADT7410 vsensor7,i2c,0x38,AHT2x vsensor8,manual,0.00,30 ``` ### CONFigure:VSENSORx Commands VSENSORx (where x is the sensor number) commands are used to configure virtual temperature sensors. These can be "sensors" that are updated by software, like "CPU Temperature" of host system. Or these can be be virtual sensors that report value of multiple physical sensors fed through a mathematical formula. Where x is a number from 1 to 8. Virtual Sensor Mode|Description ------|----------- manual|Manually updated (by software) sensor values. For example host CPU Temperature. max|Maximum temperature of configured source sensors. min|Minimum temperature of configured source sensors. avg|Average temperature of configured source sensors. delta|Temperature delta between readings from two source sensors. onewire|Reading from digital 1-Wire sensor #### CONFigure:VSENSORx:NAME Set name for virtual temperature sensor. For example: ``` CONF:VSENSOR1:NAME CPU Temperature ``` #### CONFigure:VSENSORx:NAME? Query name of a virtual temperature sensor. For example: ``` CONF:VSENSOR1:NAME? CPU Temperature ``` #### CONFigure:VSENSORx:SOUrce Configure source for the virtual temperature sensor. Source types: MODE|Description|No of Parameters|Parameters ----|-----------|----------------|---------- MANUAL|Temperature updated by external program/driver|2|default_temperature_C,timeout MAX|Maximum temperatore between source sensors|2+|sensor_a,sensor_b, ... MIN|Minimum temperature between source sensors|2+|sensor_a,sensor_b, ... AVG|Average temperature between source sensors|2+|sensor_a,sensor_b, ... DELTA|Temperature delta between to source sensors|2|sensor_a,sensor_b ONEWIRE|Temperature reading from digital 1-Wire sensor|1|onewire_address I2C|Temperature reading from digital I2C sensor|2|i2c_address,sensor_type_or_alias Note, in "manual" mode if timeout_ms is set to zero, then sensor's temperature reading will never revert back to default value (if no updates are being received). Sensor numbering: - SENSORS: 1, 2, ... - VSENSORS: 101, 102, ... Supported I2C sensors: Sensor Type|Aliases|Possible Addresses|Description|Notes -----------|-------|------------------|-----------|----- ADT7410||0x48, 0x49, 0x4a, 0x4b|16bit Digital Temperature Sensor, 0.5C accuracy AHT1x|||AHT1x Series Temperature and Humidity sensors (AHT10, AHT11 ,...) AHT2x|||AHT2x Series Temperature and Humidity sensors (AHT20, AHT21 ,...) AM2320||0x5c|Temperature and Humidity Sensor, 0.5C accuracy|Not found when scanning bus. May not work above 100kHz bus speeds. AS621x|AS6212, AS6214, AS6218||AS621x Series sensors: AS6212 (0.2C), AS6214 (0.4C), AC6218 (0.8C) BMP180|||16bit, 0.5C accuracy BMP280||0x76, 0x77|20bit, 0.5C accuracy DPS310||0x77, 0x76|24bit, 0.5C accuracy HDC302x|HDC3022, HDC3021, HDC3020|0x44, 0x45, 0x46, 0x47|HDC302x Series Temperature and Humiditysensors HTS221||0x5f|Temperature and Humidity Sensor HTU21D||0x40|Temperature and Humidity Sensor, 0.4C accuracy|Not found when scanning bus (SYS:I2C:SCAN?) HTU31D||0x40, 0x41|Temperature and Humidity Sensor, 0.3C accuracy LPSxx|LPS22, LPS25, LPS28, LPS33, LPS35|0x5d, 0x5c|LPSxx Series Temperature and Pressure sensors MCP9808|||Digital Temperature Sensor, 0.5C accuracy MPL115A2||0x60|Digital Barometer|Temperature sensor not calibrated. MPL3115A2||0x60|Temperature and Pressure sensor with Altimetry, 1C accuracy MS5611||0x76, 0x77|Temperature and Pressure Sensor|Not found when scanning bus (SYS:I2C:SCAN?) MS8607||0x76 and 0x40|Temperature, Humidity and Pressure Sensor|Not found when scanning bus (SYS:I2C:SCAN?), appears as two seprate devices. PCT2075|||Digital Temperature Sensor, 1C accuracy SHT3x|SHT30, SHT31, SHT35|0x44, 0x34|SHT3x Series Temperature and Humidity sensors|Not always found when scanning bus (SYS:I2C:SCAN?) SHT4x|SHT40, SHT41, SHT43, SHT45|0x44|SHT4x Series Temperature and Humidity sensors|Not always found when scanning bus (SYS:I2C:SCAN?) SHTC3||0x70|Temperature and Humidity sensor, 0.2C accuracy SI7021||0x40|Temperature and Humidity sensor, 0.4C accuracy STTS22H||0x38, 0x3c, 0x3e, 0x3f|Temperature Sensor, 0.5C accuracy TC74|TC74A0|0x48 - 0x4f|Digital Thermal Sensor, 2C accuracy TMP102||0x48, 0x49, 0x4a, 0x4b|Temperature Sensor, 2C accuracy TMP117||0x48, 0x49, 0x4a, 0x4b|Temperature Sensor, 0.1C accuracy Defaults: Default for all virtual sensors is to be in "MANUAL" mode and revert automatically to 0C if no temperature update has been received within 30 seconds. VSENSOR|SOURCE ---|------ 1|MANUAL,0,30 ...|... Example: Set VSENSOR1 to report temperature that is updated by external program. And to sensor reading to revert to default value of 99C if no update has been received within 5 seconds. ``` CONF:VSENSOR2:SOURCE manual,99,5 ``` Example: Set VSENSOR2 to follow report temperature delta between SENSOR1 and SENSOR2. ``` CONF:VSENSOR2:SOURCE delta,1,2 ``` Example: Set VSENSOR3 to report average temperature between SENSOR1, SENSOR2, and VSENSOR1 ``` CONF:VSENSOR3:SOURCE avg,1,2,101 ``` Example: Set VSENSOR4 to report temperature from 1-Wire sensor with address 2871d86a0000005a: ``` CONF:VSENSOR4:SOURCE onewire,2871d86a0000005a ``` (to get list of currently active 1-Wire sensors use: SYS:ONEWIRE:SENSORS?) Example: Set VSENSOR5 to report temperature from TMP117 (I2C) sensor with address 0x48: ``` CONF:VSENSOR5:SOURCE i2c,0x48,tmp117 ``` (to get list of currently active I2C sensor addresses, use: SYS:I2C:SCAN?) #### CONFigure:VSENSORx:SOUrce? Query a virtual temperature sensor configuration (temperature reading source). Command returns response in following format: ``` mode,parameter,parameter,... ``` Example: ``` CONF:VSENSOR1:SOU? manual,99.0,5 ``` #### CONFigure:VSENSORx:TEMPMap Set mapping (curve) for converting temperature to PWM signal duty cycle (%). This can be used to customize how temperature affects fan speed. Mapping is specified with up to 32 points (that can be plotted as a curve) that map the relation of the temperature (x value) to output PWM signal (y value). Mapping should at minimum include that start and end points of the expected input signal. Default mapping: x (Temperature in C)|y (Fan Duty Cycle in %) -|- 20|0 50|100 Example: Set Fan to start running at 20% duty cycle at 25C and to be full speed at 50C ``` CONF:VSENSOR1:TEMPMAP 25,20,50,100 ``` #### CONFigure:VSENSORx:TEMPMap? Display currently active mapping (curve) for convertin measured temperature to PWM duty cycle (%) for the fan output signal. Mapping is displayed as comma separated list of values: ``` x_1,y_1,x_2,y_2,...,x_n,y_n ``` For example: ``` CONF:VSENSOR1:TEMPMAP? 20,0,50,10000 ``` #### CONFigure:VSENSORx:FILTER Configure filter to be applied to the temperature signal received from the sensor. List of available filters can be found here: [Available Filters](#configurefanfilter) By default, no filter is applied (filter is set to "none"). Example: Set filter for the input signal to "Simple Moving Average", that can be useful with noisy readings from temperature sensors. ``` CONF:VSENSOR1:FILTER sma,10 ``` #### CONFigure:VSENSORx:FILTER? Display currently active filter for the temperature signal received from the sensor. Format: filter,arg_1,arg_2,...arg_n For example: ``` CONF:VENSOR1:FILTER? sma,10 ``` #### EXIT Disconnect remote connection. This will disconnect active telnet connection. ``` EXIT ``` ### MEASure Commands These commands are for reading (measuring) the current input/output values on Fan and Motherboard Fan ports. #### MEASure:Read? This command returns all measurements for all FAN and MBFAN, and SENSOR ports. (This is same as: Read?) Response format: ``` mbfan,"",,, ... fan,"",,, ... sensor,"",, ... vsensor,"",, ``` Example: ``` MEAS:READ? mbfan1,"CPU Fan",1020,34.00,63.0 mbfan2,"Chassis Fan 1",468,15.60,63.0 mbfan3,"Chassis Fan 2",534,17.80,63.0 mbfan4,"Chassis Fan 3",417,13.90,63.0 fan1,"CPU Fan",1020,34.00,63.0 fan2,"Rear Exhaust",468,15.60,31.5 fan3,"unused",0,0.00,20.0 fan4,"unused",0,0.00,20.0 fan5,"Front Intake 1",534,17.80,35.0 fan6,"Front Intake 2",420,14.00,35.0 fan7,"Top Exhaust 1",417,13.90,22.8 fan8,"Top Exhaust 2",462,15.40,22.8 sensor1,"Intake Air",22.4,7.9 sensor2,"Exhaust Air",30.5,35.0 sensor3,"RPi Pico",26.5,21.8 vsensor1,"CPU Temp",55.0,60.5 vsensor2,"unused",0.0,20.0 vsensor3,"unused",0.0,20.0 vsensor4,"unused",0.0,20.0 vsensor5,"unused",0.0,20.0 vsensor6,"unused",0.0,20.0 vsensor7,"unused",0.0,20.0 vsensor8,"unused",0.0,20.0 ``` ### MEASure:FANx Commands #### MEASure:FANx? Return current fan speed (RPM), tacho meter frequency (Hz), and output PWM signal duty cycle (%) for a fan. Response format: ``` ,, ``` Example: ``` MEAS:FAN1? 42,34.4,1032 ``` #### MEASure:FANx:Read? Return current fan speed (RPM), tacho meter frequency (Hz), and output PWM signal duty cycle (%) for a fan. This is same as: MEASure:FANx? Response format: ``` ,, ``` Example: ``` MEAS:FAN1:R? 42,34.4,1032 ``` #### MEASure:FANx:RPM? Return current fan speed (RPM). Example: ``` MEAS:FAN1:RPM? 1032 ``` #### MEASure:FANx:PWM? Return current fan (output) PWM signal duty cycle (%). Example: ``` MEAS:FAN1:PWM? 42 ``` #### MEASure:FANx:TACHo? Return current fan tachometer (speed) signal frequency (Hz). Example: ``` MEAS:FAN1:TACH? 34.4 ``` ### MEASure:MBFANx Commands #### MEASure:MBFANx? Return current motherboard fan connector signals. Output fan speed speed (RPM), output tacho meter frequency (Hz), and input PWM signal duty cycle (%) for a mbfan. Response format: ``` ,, ``` Example: ``` MEAS:MBFAN1? 49,34.4,1032 ``` #### MEASure:MBFANx:Read? Return current fan speed (RPM), tacho meter frequency (Hz), and output PWM signal duty cycle (%) for a fan. This is same as: MEASure:MBFANx? Response format: ``` ,, ``` Example: ``` MEAS:MBFAN1:R? 49,34.4,1032 ``` #### MEASure:MBFANx:RPM? Return current fan speed (RPM) reported out to motherboard. Example: ``` MEAS:MBFAN1:RPM? 1032 ``` #### MEASure:MBFANx:PWM? Return current fan (input) PWM signal duty cycle (%) received from motherboard. Example: ``` MEAS:MBFAN1:PWM? 49 ``` #### MEASure:MBFANx:TACHo? Return current fan tachometer (speed) signal frequency (Hz) reported out to motherboard. Example: ``` MEAS:MBFAN1:TACH? 34.4 ``` ### MEASure:SENSORx Commands #### MEASure:SENSORx? Return current temperature (C) measured by the sensor. Example: ``` MEAS:SENSOR1? 25 ``` #### MEASure:SENSORx:Read? Return current temperature (C) measured by the sensor. This is same as: MEASure:SENSORx? Example: ``` MEAS:SENSOR1:R? 25 ``` #### MEASure:SENSORx:TEMP? Return current temperature (C) measured by the sensor. This is same as: MEASure:SENSORx? Example: ``` MEAS:SENSOR1:TEMP? 25 ``` #### MEASure:VSENSORS? Return all measurements for all virtual sensors. Format: sensor,temperature_C,humidity_%,pressure_hPa Example: ``` MEAS:VSENSORS? vsensor1,"vsensor1",24.4,0,0 vsensor2,"vsensor2",24.9,0,0 vsensor3,"vsensor3",24.8,43,0 vsensor4,"vsensor4",26.5,0,997 vsensor5,"vsensor5",25.1,0,991 vsensor6,"vsensor6",0.0,0,0 vsensor7,"vsensor7",0.0,0,0 vsensor8,"vsensor8",0.0,0,0 ``` #### MEASure:VENSORx? Return current temperature (C) measured by the sensor. Example: ``` MEAS:VSENSOR1? 25 ``` #### MEASure:VSENSORx:HUMidity? Return current humidity (%) measured by the sensor. Example: ``` MEAS:VSENSOR1:HUM? 45 ``` #### MEASure:VSENSORx:PREssure? Return current pressure (hPa) measured by the sensor. Example: ``` MEAS:VSENSOR1:PRE? 1013 ``` #### MEASure:VSENSORx:Read? Return current temperature (C) measured by the sensor. This is same as: MEASure:VSENSORx? Example: ``` MEAS:VSENSOR1:R? 25 ``` #### MEASure:VSENSORx:TEMP? Return current temperature (C) measured by the sensor. This is same as: MEASure:VSENSORx? Example: ``` MEAS:VSENSOR1:TEMP? 25 ``` ### Read Commands #### Read? This command returns all measurements for all FAN and MBFAN, and SENSOR ports. (This is same as: MEASure:Read?) Response format: ``` mbfan,"",,, ... fan,"",,, ... sensor,"",, ... vsensor,"",, ``` Example: ``` mbfan1,"CPU Fan",1020,34.00,63.0 mbfan2,"Chassis Fan 1",468,15.60,63.0 mbfan3,"Chassis Fan 2",534,17.80,63.0 mbfan4,"Chassis Fan 3",417,13.90,63.0 fan1,"CPU Fan",1020,34.00,63.0 fan2,"Rear Exhaust",468,15.60,31.5 fan3,"unused",0,0.00,20.0 fan4,"unused",0,0.00,20.0 fan5,"Front Intake 1",534,17.80,35.0 fan6,"Front Intake 2",420,14.00,35.0 fan7,"Top Exhaust 1",417,13.90,22.8 fan8,"Top Exhaust 2",462,15.40,22.8 sensor1,"Intake Air",22.4,7.9 sensor2,"Exhaust Air",30.5,35.0 sensor3,"RPi Pico",26.5,21.8 vsensor1,"CPU Temp",55.0,60.5 vsensor2,"unused",0.0,20.0 vsensor3,"unused",0.0,20.0 vsensor4,"unused",0.0,20.0 vsensor5,"unused",0.0,20.0 vsensor6,"unused",0.0,20.0 vsensor7,"unused",0.0,20.0 vsensor8,"unused",0.0,20.0 ``` ### SYStem Commands #### SYStem:ERRor? Display status from last command. Example: ``` SYS:ERR? 0,"No Error" ``` #### SYStem:BOARD? Display information about FanPico board in use and the Pico module attached. Example: ``` SYS:BOARD? Hardware Model: FANPICO-0804D Board: pico_w MCU: RP2040-B2 @ 200MHz RAM: 264KB Flash: 2048KB @ 100MHz Serial Number: e6614c311b7ca431 ``` #### SYStem:DEBug Set the system debug level. This controls the logging to the console. Default: 0 (do not log any debug messages) Example: Enable verbose debug output ``` SYS:DEBUG 2 ``` #### SYStem:DEBug? Display current system debug level. Example: ``` SYS:DEBUG? 0 ``` #### SYStem:LOG Set the system logging level. This controls the level of logging to the console. Default: WARNING Log Levels: Level|Name -----|---- 0|EMERG 1|ALERT 2|CRIT 3|ERR 4|WARNING 5|NOTICE 6|INFO 7|DEBUG Example: Enable verbose debug output ``` SYS:LOG DEBUG ``` #### SYStem:LOG? Display current system logging level. Example: ``` SYS:LOG? NOTICE ``` #### SYStem:SYSLOG Set the syslog logging level. This controls the level of logging to a remote syslog server. Default: ERR Log Levels: Level|Name -----|---- 0|EMERG 1|ALERT 2|CRIT 3|ERR 4|WARNING 5|NOTICE 6|INFO 7|DEBUG Example: Enable logging of NOTICE (and lower level) message: ``` SYS:LOG NOTICE ``` #### SYStem:SYSLOG? Display current syslog logging level. Example: ``` SYS:SYSLOG? ERR ``` #### SYStem:DISPlay Set display (module) parameters as a comma separated list. This can be used to set display module type if cannot be automatically detected. Additionally this can be used to set some display parameters like brightness. Default: default Currently supported values: Value|Description|Notes -----|-----------|----- default|Use default settings (auto-detect). none|Disable OLED support|Skips scanning for OLED panel. 128x64|OLED 128x64 module installed.|OLED 128x128|OLED 128x128 module installed.|OLED 132x64|OLED 132x64 installed (some 1.3" 128x64 modules need this setting!)|OLED flip|Flip display (upside down)|OLED and LCD invert|Invert display|OLED and LCD brightness=n|Set display brightness (%) to n (where n=0..100) [default: 50]|OLED rotate=n|Rotate display n degrees (where n=0, 90, 180, 270) [default: 90]|LCD only swapcolors|Swap Red and Blue colors (use if colors dont show up correctly)|LCD only spifreq=n|Set SPI Bus frequency (values < 1000 assumed to be in MHz, values >1000 assumed to be in Hz) [default: 48 (MHz)]|LCD only 16bit|Use 16bit SPI bus transfers only (needed often for display modules made for Raspberry Pi)|LCD only Example: 1.3" (SH1106) module installed that doesn't get detected correctly ``` SYS:DISP 132x64 ``` Example: Invert display and set brightnes to 30% ``` SYS:DISP default,invert,brightness=30 ``` #### SYStem:DISPlay? Display current display module setting. Example: ``` SYS:DISP? 132x64,flip,invert,brightness=75 ``` #### SYStem:DISPlay:LAYOUTR Configure (OLED) Display layout for the right side of the screen. Layout is specified as a comma delimited string describing what to display on each row (8 rows available if using 128x64 OLEd module, 10 rows available with 128x128 pixel modules). Syntax: ,,... Where tow specifications can be one of the following: Type|Description|Notes ----|-----------|----- Mn|MBFan input n|n=1..4 Sn|Sensor input n|n=1..3 Vn|Virtual Sensor input n|n=1..8 -|Horizontal Line| Ltext|Line with "text"|Max length 9 characters. Default: When this setting is not set following defaults are used based on the OLED module size: Screen Size|Available Rows|Default Configuration -----------|--------------|--------------------- 128x64|8|M1,M2,M3,M4,-,S1,S2,S3 128x128|10|LMB Inputs,M1,M2,M3,M4,-,LSensors,S1,S2,S3 Example: configure custom theme (for 128x64 display): ``` SYS:DISP:LAYOUTR M1,M2,-,S1,S2,S3,V1,V2 ``` #### SYStem:DISPlay:LAYOUTR? Display currently configured (OLED) Display layout for the right side of the screen. Example: ``` SYS:DISP:THEME? M1,M2,-,S1,S2,S3,V1,V2 ``` #### SYStem:DISPlay:LOGO Configure (LCD) Display boot logo. Currently available logos: Name|Description ----|----------- default|Default FanPico boot logo. custom|Custom boot logo (only available if firmware has been compiled with custom logo included). Example: configure custom logo ``` SYS:DISP:LOGO custom ``` #### SYStem:DISPlay:LOGO? Display currently configured (LCD) Display boot logo. Example: ``` SYS:DISP:LOGO? default ``` #### SYStem:DISPlay:THEMe Configure (LCD) Display theme to use. Default: default Example: configure custom theme ``` SYS:DISP:THEME custom ``` #### SYStem:DISPlay:THEMe? Display currently configured (LCD) display theme name. Example: ``` SYS:DISP:THEME? default ``` #### SYStem:ECHO Enable or disaple local echo on the console. This can be useful if interactively programming Fanpico. Value|Status -----|------ 0|Local Echo disabled. 1|Local Echo enabled. Default: 0 Example: enable local echo ``` SYS:ECHO 1 ``` Example: disable local echo ``` SYS:ECHO 0 ``` #### SYStem:ECHO? Display local echo status: Example: ``` SYS:ECHO? 0 ``` #### SYStem:FANS? Display number of FAN output ports available. Example: ``` SYS:FANS? 8 ``` ### SYStem:FLASH? Returns information about Pico flash memory usage. Example: ``` SYS:FLASH? Flash memory size: 2097152 Binary size: 683520 LittleFS size: 262144 Unused flash memory: 1151488 ``` #### SYStem:HTTP:SERVer Enable or disable built-in HTTP server that displays status information about the unit. Default: ON Example (disable HTTP server): ``` SYS:HTTP:SERVER OFF ``` #### SYStem:HTTP:SERVer? Query currently status of HTTP server. Example: ``` SYS:HTTP:SERVER? ON ``` #### SYStem:HTTP:PORT Set web server HTTP port. Default: 0 (use default HTTP port tcp/80) Example: ``` SYS:HTTP:PORT 8080 ``` #### SYStem:HTTP:PORT? Query currently set web server (HTTP) port. If return value is zero (0), then default HTTP port is being used. Example: ``` SYS:HTTP:PORT? 0 ``` #### SYStem:HTTP:TLSPORT Set web server HTTPS port use for TLS/SSL connections. Default: 0 (use default HTTPS port tcp/443) Example: ``` SYS:HTTP:TLSPORT 8443 ``` #### SYStem:HTTP:TLSPORT? Query currently set web server HTTPS port. If return value is zero (0), then default HTTPS port is being used. Example: ``` SYS:HTTP:TLSPORT? 0 ``` #### SYStem:HTTP:MASK:FAN Configure which fan ports should be displayed on HTTP server. Fans can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: 1-8 (display all fans) Example: ``` SYS:HTTP:MASK:FAN 1-4,8 ``` #### SYStem:HTTP:MASK:FAN? Query which fan ports are configured to be displayed on HTTP server. Example: ``` SYS:HTTP:MASK:FAN? 1-8 ``` #### SYStem:HTTP:MASK:MBFAN Configure which mbfan ports should be displayed on HTTP server. Fans can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: 1-4 (display all mbfans) Example: ``` SYS:HTTP:MASK:MBFAN 1,3,4 ``` #### SYStem:HTTP:MASK:MBFAN? Query which mbfan ports are configured to be displayed on HTTP server. Example: ``` SYS:HTTP:MASK:MBFAN? 1,3-4 ``` #### SYStem:HTTP:MASK:SENSOR Configure which temperature sensors should be displayed on HTTP server. Sensors can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: 1-3 (display all sensors) Example: ``` SYS:HTTP:MASK:SENSOR 1,3 ``` #### SYStem:HTTP:MASK:SENSOR? Query which sensors are configured to be displayed on HTTP server. Example: ``` SYS:HTTP:MASK:SENSOR? 1,3 ``` #### SYStem:HTTP:MASK:VSENSOR Configure which virtual sensors should be displayed on HTTP server. Sensors can be specified as comma separated list (1,3,7) or as range (1-3) or as combination of both. Default: 1-8 (display all virtual sensors) Example: ``` SYS:HTTP:MASK:VSENSOR 1-4 ``` #### SYStem:HTTP:MASK:VSENSOR? Query which virtual sensors are configured to be displayed on HTTP server. Example: ``` SYS:HTTP:MASK:VSENSOR? 1-4 ``` ### SYStem:I2C? Returns status if I2C bus is active (available) currently. Depending on board model I2C may not be available at all or may only be available if SPI is not active. Returns: status|description ------|----------- 0|I2C Bus not available 1|I2C Bus available Example: ``` SYS:I2C? 1 ``` ### SYStem:I2C:SCAN? Scan I2C Bus for active devices. This returns addresses of any devices found on I2C bus. Example: ``` SYS:I2C:SCAN?? Scanning I2C Bus... 0x3c Device(s) found: 1 ``` ### SYStem:I2C:SPEED Set speed that I2C bus operates. Note, change won't take effect until unit is rebooted. Speed range: 10000 - 3400000 (speeds over 1000000 may not work reliably) Default: 1000000 (1000 kHz or 1000 kbit/s) Example: ``` SYS:I2C:SPEED 1000000 CONF:SAVE ``` ### SYStem:I2C:SPEED? Return currently configured I2C bus speed (Hz or bit/s). Example: ``` SYS:I2C:SPEED? 1000000 ``` #### SYStem:LED Set system indicator LED operating mode. Supported modes: mode|description ----|----------- 0 | LED blinking slowly [default] 1 | LED on (continuously) 2 | LED off Default: 0 Example to set LED to be on continuously: ``` SYS:LED 1 ``` #### SYStem:LED? Query current system LED operating mode. Example: ``` SYS:LED? 0 ``` #### SYStem:LFS? Display information about the LittleFS filesystem in the flash memory. Example: ``` SYS:LFS? Filesystem size: 262144 Filesystem used: 24576 Filesystem free: 237568 Number of files: 3 Number of subdirectories: 0 ``` #### SYStem:LFS:COPY Copy a file on the flash filesystem (littlefs). If destination file already exists copy will fail. Parameters: Example: ``` SYS:LFS:COPY fanpico.cfg fanpico-backup.cfg ``` #### SYStem:LFS:DELete Delete file from the flash filesystem (littlefs). parameters: Example (delete TLS certificate and private key): ``` SYS:LFS:DEL cert.pem SYS:LFS:DEL key.pem ``` #### SYStem:LFS:DIR? List contents of the flash filesystem (littlefs). Example: ``` SYS:LFS:DIR? Directory: / . .. cert.pem 1286 fanpico.cfg 7012 key.pem 1709 ``` #### SYStem:LFS:FORMAT Format flash filesystem. This will erase current configuration (including any TLS certificates saved in flash). Example (format filesystem and save current configuration): ``` SYS:LFS:FORMAT CONF:SAVE ``` #### SYStem:LFS:REName Rename a file on the flash filesystem (littlefs). Parameters: Example: ``` SYS:LFS:REN fanpico-backup.cfg fanpico.cfg ``` #### SYStem:MBFANS? Display number of MBFAN input ports available. Example: ``` SYS:MBFANS? 4 ``` ### SYStem:MEM Test how much available (heap) memory system currently has. This does simple test to try to determine what is the largest block of heap memory that is currently available as well as try allocating as many as possible small block of memory to determine roughly the total available heap memory. This command takes optional 'blocksize' parameter to specify the memory block size to use in the tests. Default is 1024 bytes. Example: ``` SYS:MEM 512 Largest available memory block: 114688 bytes Total available memory: 111104 bytes (217 x 512bytes) ``` ### SYStem:MEM? Returns information about heap and stack size. As well as information about current (heap) memory usage as returned by _mallinfo()_ system call. Note, _mallinfo()_ does not always "see" all of the available heap memory, unless ```SYS:MEM``` command has been run first. Example: ``` SYS:MEM? Core0 stack size: 8192 Core1 stack size: 4096 Heap size: 136604 mallinfo: Total non-mmapped bytes (arena): 136604 # of free chunks (ordblks): 2 # of free fastbin blocks (smblks): 0 # of mapped regions (hblks): 0 Bytes in mapped regions (hblkhd): 0 Max. total allocated space (usmblks): 0 Free bytes held in fastbins (fsmblks): 0 Total allocated space (uordblks): 21044 Total free space (fordblks): 115560 Topmost releasable block (keepcost): 114808 ``` ### SYStem:MQTT Commands FanPico has MQTT Client that can be configured to publish (send) periodic status updates to a topic. Additionally MQTT Client support subscribing to a "command" topic to listen for commands. This allows remotely controlling BrickPico. To enable MQTT at minimum server and user must be configured. To explicitly disbable MQTT set server to empty string. #### SYStem:MQTT:SERVer Set MQTT server to connect to. This parameter expects a DNS name as argument. Default: (when this setting is empty string, MQTT is explicitly disabled) Example (configure MQTT server name): ``` SYS:MQTT:SERVER io.adafruit.com ``` Example (disable MQTT): ``` SYS:MQTT:SERVER ``` #### SYStem:MQTT:SERVer? Query currently set MQTT server name. Example: ``` SYS:MQTT:SERVER? io.adafruit.com ``` #### SYStem:MQTT:PORT Set MQTT server (TCP) port. This setting is needed when MQTT server is not using standard port. If this setting is not set (value is left to default "0"), then standard MQTT port is used. - Secure (TLS) Port = 8883 - Insecure Port = 1883 Default: 0 (when this setting is 0 use default MQTT ports) Example: ``` SYS:MQTT:PORT 9883 ``` #### SYStem:MQTT:PORT? Query currently set MQTT (TCP) port. If return value is zero (0), then default MQTT port is being used. Example: ``` SYS:MQTT:PORT? 0 ``` #### SYStem:MQTT:USER Set MQTT username to use when connecting to MQTT server. Default: Example: ``` SYS:MQTT:USER myusername ``` #### SYStem:MQTT:USER? Query currently set MQTT username. Example: ``` SYS:MQTT:USER? myusername ``` #### SYStem:MQTT:PASS Set MQTT password to use when connecting to MQTT server. Default: Example: ``` SYS:MQTT:PASS mymqttpassword ``` #### SYStem:MQTT:PASS? Query currently set MQTT password. Example: ``` SYS:MQTT:PASS? mymqttpassword ``` #### SYStem:MQTT:SCPI Configure if SCPI all commands will be accepted via MQTT. If this is not enabled then only "WRITE" commands are allowed. This is potentially "dangerous" feature, so only enable if you understand the potential risks allowing device to be remotely configured. Default: OFF Example: ``` SYS:MQTT:SCPI ON ``` #### SYStem:MQTT:SCPI? Query whether all SCPI commands are allowed via MQTT. Example: ``` SYS:MQTT:SCPI? OFF ``` #### SYStem:MQTT:TLS Enable/disable use of secure connection mode (TLS/SSL) when connecting to MQTT server. Default is TLS on to protect MQTT credentials (usename/password). Default: ON Example: ``` SYS:MQTT:TLS OFF ``` #### SYStem:MQTT:TLS? Query whether TLS is enabled or disabled for MQTT. Example: ``` SYS:MQTT:TLS? ON ``` #### SYStem:MQTT:HA:DISCovery Configure Home Assistant MQTT Discovery prefix. This must be set to enable Home Assistant support/integration in FanPico. If this is left to empty (string), then Home Assistant support is disabled. Default: Example (enable Home Assistant support using default prefix): ``` SYS:MQTT:HA:DISC homeassistant ``` #### SYStem:MQTT:HA:DISCovery? Query currently set Home Assistant MQTT Discovery prefix. Note, if this is empty, then Home Assistant support is disabled. Example: ``` SYS:MQTT:HA:DISC? homeassistant ``` #### SYStem:MQTT:INTerval:STATUS Configure how often unit will publish (send) status message to status topic. Set this to 0 (seconds) to disable publishing status updates. Recommended values are 60 (seconds) or higher. Default: 600 (every 10 minutes) Example: ``` SYS:MQTT:INT:STATUS 3600 ``` #### SYStem:MQTT:INTerval:STATUS? Query how often unit is setup to publish data to status topic. Example: ``` SYS:MQTT:INT:STATUS? 3600 ``` #### SYStem:MQTT:INTerval:TEMP Configure how often unit will publish (send) status temperature sensor status messages. Set this to 0 (seconds) to disable publishing status updates. Recommended values are 60 (seconds) or higher. Default: 0 (disabled) Example: ``` SYS:MQTT:INT:TEMP 60 ``` #### SYStem:MQTT:INTerval:TEMP? Query how often unit is setup to publish temperature status messages. Example: ``` SYS:MQTT:INT:TEMP? 60 ``` #### SYStem:MQTT:INTerval:VSENsor Configure how often unit will publish (send) virtual sensor status messages. Set this to 0 (seconds) to disable publishing status updates. Recommended values are 60 (seconds) or higher. Default: 0 (disabled) Example: ``` SYS:MQTT:INT:VSEN 60 ``` #### SYStem:MQTT:INTerval:VSENsor? Query how often unit is setup to publish virtual sensor status messages. Example: ``` SYS:MQTT:INT:VSENP? 60 ``` #### SYStem:MQTT:INTerval:RPM Configure how often unit will publish (send) RPM status updates for fans (and mbfans). Set this to 0 (seconds) to disable publishing status updates. Recommended values are 60 (seconds) or higher. Default: 0 (disabled) Example: ``` SYS:MQTT:INT:RPM 60 ``` #### SYStem:MQTT:INTerval:RPM? Query how often unit is setup to publish fan/mbfan RPM status messages. Example: ``` SYS:MQTT:INT:RPM? 60 ``` #### SYStem:MQTT:INTerval:PWM Configure how often unit will publish (send) PWM (duty cycle) status updates for fans/mbfans. Set this to 0 (seconds) to disable publishing status updates. Recommended values are 60 (seconds) or higher. Default: 0 (disabled) Example: ``` SYS:MQTT:INT:PWM 60 ``` #### SYStem:MQTT:INTerval:PWM? Query how often unit is setup to publish fan/mbfan PWM (duty cycle) status messages. Example: ``` SYS:MQTT:INT:PWM? 60 ``` #### SYStem:MQTT:MASK:TEMP Configure which temperature sensors should publish (send) data to MQTT server. Sensors can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any sensor) Example: ``` SYS:MQTT:MASK:TEMP 1,3 ``` #### SYStem:MQTT:MASK:TEMP? Query which sensors are configured to publish (send) data to MQTT server. Example: ``` SYS:MQTT:MASK:TEMP? 1,3 ``` #### SYStem:MQTT:MASK:VTEMP Configure which virtual sensors should publish (send) temperature data to MQTT server. Sensors can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any sensor) Example: ``` SYS:MQTT:MASK:VTEMP 1,2,3,4 ``` #### SYStem:MQTT:MASK:VTEMP? Query which virtual sensors are configured to publish (send) temperature data to MQTT server. Example: ``` SYS:MQTT:MASK:VTEMP? 1-4 ``` #### SYStem:MQTT:MASK:VHUMidity Configure which virtual sensors should publish (send) humidity data to MQTT server. Sensors can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any sensor) Example: ``` SYS:MQTT:MASK:VHUM 1,2 ``` #### SYStem:MQTT:MASK:VHUMidity? Query which virtual sensors are configured to publish (send) humidity data to MQTT server. Example: ``` SYS:MQTT:MASK:VHUM? 1-2 ``` #### SYStem:MQTT:MASK:VPREssure Configure which virtual sensors should publish (send) pressure data to MQTT server. Sensors can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any sensor) Example: ``` SYS:MQTT:MASK:VPRE 1,2 ``` #### SYStem:MQTT:MASK:VPREssure? Query which virtual sensors are configured to publish (send) pressure data to MQTT server. Example: ``` SYS:MQTT:MASK:VPRE? 1-2 ``` #### SYStem:MQTT:MASK:FANRPM Configure which fan ports should publish (send) RPM data to MQTT server. Ports can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any port) Example: ``` SYS:MQTT:MASK:FANRPM 1,3,5-8 ``` #### SYStem:MQTT:MASK:FANRPM? Query which fans are configured to publish (send) RPM data to MQTT server. Example: ``` SYS:MQTT:MASK:FANRPM? 1-8 ``` #### SYStem:MQTT:MASK:FANPWM Configure which fan ports should publish (send) PWM data to MQTT server. Ports can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any port) Example: ``` SYS:MQTT:MASK:FANPWM 1-4 ``` #### SYStem:MQTT:MASK:FANPWM? Query which fans are configured to publish (send) PWM data to MQTT server. Example: ``` SYS:MQTT:MASK:FANPWM? 1-4 ``` #### SYStem:MQTT:MASK:MBFANRPM Configure which mbfan ports should publish (send) RPM data to MQTT server. Ports can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any port) Example: ``` SYS:MQTT:MASK:MBFANRPM 1,4 ``` #### SYStem:MQTT:MASK:MBFANRPM? Query which mbfans are configured to publish (send) RPM data to MQTT server. Example: ``` SYS:MQTT:MASK:MBFANRPM? 1,4 ``` #### SYStem:MQTT:MASK:MBFANPWM Configure which mbfan ports should publish (send) PWM data to MQTT server. Ports can be specified as comma separated list (2,3) or as range (1-3) or as combination of both. Default: (do not publish data from any port) Example: ``` SYS:MQTT:MASK:MBFANPWM 1-2 ``` #### SYStem:MQTT:MASK:MBFANPWM? Query which mbfans are configured to publish (send) PWM data to MQTT server. Example: ``` SYS:MQTT:MASK:MBFANPWM? 1-2 ``` #### SYStem:MQTT:TOPIC:STATus Configure topic to publish unit status information periodically. If this is left to empty (string), then no status information is published to MQTT server. Default: Example: ``` SYS:MQTT:TOPIC:STATUS musername/feeds/fanpico1 ``` #### SYStem:MQTT:TOPIC:STATus? Query currently set topic for publishing unit status information to. Example: ``` SYS:MQTT:TOPIC:STATUS? myusername/feeds/fanpico1 ``` #### SYStem:MQTT:TOPIC:COMMand Configure topic to subscribe to to wait for commands to control outputs. If this is left to empty (string), then unit won't subcrible (and accept) any commands from MQTT. Default: Example: ``` SYS:MQTT:TOPIC:COMM musername/feeds/cmd ``` #### SYStem:MQTT:TOPIC:COMMand? Query currently set topic for subscribing to wait for commands. Example: ``` SYS:MQTT:TOPIC:COMM? myusername/feeds/cmd ``` #### SYStem:MQTT:TOPIC:RESPonse Configure topic to publish responses to commands received from the command topic. If this is left to empty, then unit won't send response to any commands. Default: Example: ``` SYS:MQTT:TOPIC:RESP musername/feeds/response ``` #### SYStem:MQTT:TOPIC:RESPonse? Query currently set topic for publishing responses to commands. Example: ``` SYS:MQTT:TOPIC:RESP? myusername/feeds/response ``` #### SYStem:MQTT:TOPIC:TEMP Configure topic template for publishing temperature sensor data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:TEMP mysername/feeds/temp%d ``` #### SYStem:MQTT:TOPIC:TEMP? Query currently set topic template for temperature sensor data. Example: ``` SYS:MQTT:TOPIC:TEMP? myusername/feeds/temp%d ``` #### SYStem:MQTT:TOPIC:VTEMP Configure topic template for publishing virtual sensor temperature data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:VTEMP mysername/feeds/vtemp%d ``` #### SYStem:MQTT:TOPIC:VTEMP? Query currently set topic template for virtual sensor temperature data. Example: ``` SYS:MQTT:TOPIC:VTEMP? myusername/feeds/vtemp%d ``` #### SYStem:MQTT:TOPIC:VHUMidity Configure topic template for publishing virtual sensor humidity data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:VHUM mysername/feeds/humidity%d ``` #### SYStem:MQTT:TOPIC:VHUMidity? Query currently set topic template for virtual sensor humidity data. Example: ``` SYS:MQTT:TOPIC:VHUM? myusername/feeds/humidity%d ``` #### SYStem:MQTT:TOPIC:VPREssure Configure topic template for publishing virtual sensor pressure data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:VPRE mysername/feeds/pressure%d ``` #### SYStem:MQTT:TOPIC:VPREssure? Query currently set topic template for virtual sensor pressure data. Example: ``` SYS:MQTT:TOPIC:VPRE? myusername/feeds/pressure%d ``` #### SYStem:MQTT:TOPIC:FANRPM Configure topic template for publishing fan RPM data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:FANRPM musername/feeds/fanrpm%d ``` #### SYStem:MQTT:TOPIC:FANRPM? Query currently set topic template for fan RPM data. Example: ``` SYS:MQTT:TOPIC:FANRPM? myusername/feeds/fanrpm%d ``` #### SYStem:MQTT:TOPIC:FANPWM Configure topic template for publishing fan PWM data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:FANPWM musername/feeds/fanpwm%d ``` #### SYStem:MQTT:TOPIC:FANPWM? Query currently set topic template for fan PWM data. Example: ``` SYS:MQTT:TOPIC:FANPWM? myusername/feeds/fanpwm%d ``` #### SYStem:MQTT:TOPIC:MBFANRPM Configure topic template for publishing mbfan RPM data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:MBFANRPM musername/feeds/mbfanrpm%d ``` #### SYStem:MQTT:TOPIC:MBFANRPM? Query currently set topic template for mbfan RPM data. Example: ``` SYS:MQTT:TOPIC:MBFANRPM? myusername/feeds/mbfanrpm%d ``` #### SYStem:MQTT:TOPIC:MBFANPWM Configure topic template for publishing mbfan PWM data to. If this is left to empty, then unit won't send response to any commands. This is template string where ```%d``` should be used to mark the port number. Default: Example: ``` SYS:MQTT:TOPIC:MBFANPWM musername/feeds/mbfanpwm%d ``` #### SYStem:MQTT:TOPIC:MBFANPWM? Query currently set topic template for mbfan PWM data. Example: ``` SYS:MQTT:TOPIC:MBFANPWM? myusername/feeds/mbfanpwm%d ``` #### SYStem:NAME Set name of the system. (Default: fanpico1) Example: ``` SYS:NAME HomeServer ``` #### SYStem:NAME? Get name of the system. Example: ``` SYS:NAME? HomeServer ``` #### SYStem:ONEWIRE new: release v1.6.4 \ Enable or disable 1-Wire Bus. This is disabled by default. Enabling 1-Wire bus allows use of 1-Wire temperature sensors. Note, unit must be rebooted for the change to take effect. Example (enable 1-Wire bus): ``` SYS:ONEWIRE ON ``` #### SYStem:ONEWIRE? new: release v1.6.4 \ Return status whether 1-Wire bus is currently enabled or disabled. Status|Description ------|----------- ON|Enabled OFF|Disabled Example: ``` SYS:ONEWIRE? OFF ``` #### SYStem:ONEWIRE:SENSORS? new: release v1.6.4 \ Return list of currently active (detected at boot time) 1-Wire bus devices, and last temperature measurement results. Output format: ,, Example: ``` SYS:ONEWIRE:SENSORS? 1,28821e6a000000cf,23.4 2,2871d86a0000005a,23.0 3,22a275180000003c,23.9 ``` #### SYStem:SENSORS? Display number of (temperature) sensors available. Last temperature sensor is the internal temperature sensor on the RP2040. Example: ``` SYS:SENSORS? 3 ``` #### SYStem:SERIAL Enable or disable TTL Serial Console. This is enabled by default if board has this connector. Reason to disable this could be to use the second I2C bus that is sharing pins with the UART. Example (disable serial console): ``` SYS:SERIAL OFF ``` #### SYStem:SERIAL? Return status of TTL Serial Console. Status|Description ------|----------- ON|Enabled OFF|Disabled Example: ``` SYS:SERIAL? ON ``` ### SYStem:SNMP Commands #### SYStem:SNMP:AGENT Enable or disable SNMP Agent. This is disabled by default. Example (enable SNMP Agent): ``` SYS:SNMP:AGET ON CONF:SAVE *RST ``` #### SYStem:SNMP:AGENT? Return status of SNMP Agent. Status|Description ------|----------- ON|Enabled OFF|Disabled Example: ``` SYS:SNMP:AGENT? ON ``` #### SYStem:SNMP:COMMunity Set SNMP (read-only) community name. (Default: public) Example: ``` SYS:SNMP:COMM secret123 ``` #### SYStem:SNMP:COMMunity? Display current SNMP (read-only) community name. Example: ``` SYS:SNMP:COMM? public ``` #### SYStem:SNMP:CONTact Set system contact information (sysContact). (Default is no contact information.) Example: ``` SYS:SNMP:CONTACT B.O.F.H. ``` #### SYStem:SNMP:CONTact? Display current SNMP system contact information (sysContact). Example: ``` SYS:SNMP:CONT? B.O.F.H. ``` #### SYStem:SNMP:LOCAtion Set system location information (sysLocation). (Default is no location information.) Example: ``` SYS:SNMP:LOCA Server Room ``` #### SYStem:SNMP:LOCAtion? Display current SNMP system location information (sysLocation). Example: ``` SYS:SNMP:LOCA? Server Room ``` #### SYStem:SNMP:WRITecommunity Set SNMP (write) community name. (Default: ) Note, when this is set to empty value (string), SNMP write access is disabled. Example: ``` SYS:SNMP:WRIT secret456 ``` #### SYStem:SNMP:WRITecommunity? Display current SNMP (write) community name. Example: ``` SYS:SNMP:WRIT? private ``` #### SYStem:SNMP:TRAPs:AUTH Enable or disable sending authentication traps. Example: ``` SYS:SNMP:TRAP:AUTH ON ``` #### SYStem:SNMP:TRAPs:AUTH? Display status of sending of authentication traps. Example: ``` SYS:SNMP:TRAP:AUTH? OFF ``` #### SYStem:SNMP:TRAPs:COMMunity Set SNMP traps community name. (Default: ) To enable SNMP traps both trap community and trap destination (IP) must be set. Example: ``` SYS:SNMP:TRAP:COMM public ``` #### SYStem:SNMP:TRAPs:COMMunity? Display current SNMP traps community name. Example: ``` SYS:SNMP:TRAP:COMM? public ``` #### SYStem:SNMP:TRAPs:DESTination Set destination IP address for sending SNMP traps to. To disable sending traps, set IP to: 0.0.0.0 (Default: 0.0.0.0) Example: ``` SYS:SNMP:TRAP:DEST 192.168.42.42 ``` #### SYStem:SNMP:TRAPs:DESTination? Display current SNMP trap destination IP? Example: ``` SYS:SNMP:TRAP:DEST? 192.168.42.42 ``` #### SYStem:SPI Enable or disable SPI bus (on boards that have "SPI" connector). Reason to enable SPI bus would be to connect LCD panel on the SPI connector. NOTE! On 0804D boards, when SPI bus is enabled I2C (OLED display) and Serial (TTL) connectors cannot be used as these share pins with the SPI bus. Example (enable SPI bus): ``` SYS:SPI 1 ``` #### SYStem:SPI? Return status of SPI bus. Status|Description ------|----------- 1|Enabled 0|Disabled Example: ``` SYS:SPI? 0 ``` ### SSH Server Commands #### SYStem:SSH:SERVer Control whether SSH server is enabled or not. After making change configuration needs to be saved and unit reset. Default: OFF Example: ``` SYS:SSH:SERV ON ``` #### SYStem:SSH:SERVer? Display whether SSH server status. Example: ``` SYS:SSH:SERV? OFF ``` #### SYStem:SSH:ACLs Configure ACL(s) to limit from which subnets (or IPs) connnections to SSH server is allowed. If no ACLs have been setup then connections from any (source) IP is allowed. Default: 0.0.0.0/0 (none) Example (allow subnet 192.168.1.0/255.255.255.0 and single IP 172.30.1.42): ``` SYS:SSH:ACLS 192.168.1.0/24,172.30.1.42/32 ``` Example (remove all ACLs): ``` SYS:SSH:ACLS 0.0.0.0/0 ``` #### SYStem:SSH:ACLs? Display currently configured ACL(s) for the SSH server. If no ACLs have been setup then connections from any (source) IP is allowed. Example: ``` SYS:SSH:ACLs? 192.168.1.0/24, 172.30.1.42/32 ``` #### SYStem:SSH:AUTH Toggle SSH server authentication mode. When enabled then SSH server will require user to authenticate (password or publickey authentication). When off, no authentication is needed. Default: ON Example: ``` SYS:SSH:AUTH OFF ``` #### SYStem:SSH:AUTH? Display whether SSH server authentication is enabled or not. Example: ``` SYS:SSH:AUTH? ON ``` #### SYStem:SSH:PORT Set TCP port where SSH server will listen on. If this setting is not set then default port will be used. Default: 22 (default SSH port) Example: ``` SYS:SSH:PORT 8022 ``` #### SYStem:SSH:PORT? Display currently configured port for SSH server. (if port is set to 0, then default Telnet port will be used) Example: ``` SYS:SSH:PORT? 8022 ``` #### SYStem:SSH:USER Configure username that is allowed to login to this server using SSH. When no username is set, password authentication is disabled. Default: Example (set username): ``` SYS:SSH:USER admin ``` Example (remove username): ``` SYS:SSH:USER ``` #### SYStem:SSH:USER? Display currently configured SSH user (login) name. When no username is set, password authentication is disabled. Example: ``` SYS:SSH:USER? admin ``` #### SYStem:SSH:PASSword Configure password for the SSH user. Password is hashed using SHA-512 Crypt algorithm. Default: Example (set passwod): ``` SYS:SSH:PASS mypassword ``` Example (remove password): ``` SYS:SSH:PASS ``` #### SYStem:SSH:PASSword? Display currently configured SSH user password hash. When no password is set, password authentication is disabled. Example: ``` SYS:SSH:PASS? $6$QvD5AkWSuydeH/EB$UsYA0cymsCRSse78fN4bMb5q0hM5B7YUNSFd3zJfMDbTG7DOH8iuMufVjsvqBOxR9YCJYSHno4CFeOhLtTGLx. ``` #### SYStem:SSH:KEY? Display list of server private keys. Currently there is no support to extract/export private keys. This command only displays SHA256 checksums for each key. Example: ``` SYS:SSH:KEY? ecdsa 121 SHA256:bDd9a2FrWRCyGxwgNZzzejEh+0ivXkww6nbM+4cIfSg ed25519 82 SHA256:/si832zNTkrxn0MHh8dhwfa6KlDAPcTRHsoqZbeVaSM ``` #### SYStem:SSH:KEY:CREate Create SSH Server Private Key. Generated key is saved on the filesystem (littlefs) and is used by the SSH server as its server private key. Command takes key type as parameter. Currently supported key types: - ECDSA - ED25519 - ALL (create all supported keys) Example: ``` SYS:SSH:KEY:CREATE ED25519 Generating ed25519 private key... OK ``` #### SYStem:SSH:KEY:DELete Delete SSH Server Private key. Key is deleted from the internal filesystem (littlefs). When rotating server keys, old key must be first removed, before new one can be created. Command takes key type as parameter. Example: ``` SYS:SSH:KEY:DEL ECDSA Deleting ecdsa private key... Private key deleted. ``` #### SYStem:SSH:KEY:LIST? Display list of server private keys. This is same as command SYS:SSH:KEY? #### SYStem:SSH:PUBKEY? Display list of user name and public key pairs that can be used to login using publicky authentication. Example: ``` SYS:SSH:PUBKEY? 1: admin ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOOWu9+yEevReQUXEDgEMAIrs1DERTwZeSRRhIqioC6x admin@ws1 2: testuser ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBH+E8WDRmrU2fKizKDyQXdLj3YGh7w5Wl7F2clpzHvGWIoBAJ/nsyUpMCqujzG7eD0EOKukBcb6vqyf2IQ96GLU= testuser@localhost ``` #### SYStem:SSH:PUBKEY:ADD Add SSH public key for user to authenticate with. Command takes two parameters "username", and "public key" (in OpenSSH format). Currently up to 4 pubic keys can be added. Parameters: Example: ``` SYS:SSH:PUBKEY ADD amdin ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOOWu9+yEevReQUXEDgEMAIrs1DERTwZeSRRhIqioC6x admin@ws1 SSH Public key added: slot 1: ssh-ed25519 (admin) ``` #### SYStem:SSH:PUBKEY:DELete Delete SSH Public key. Parameters: (Command SYS:SSH:PUBKEY? can be used to find out key numbers.) Example: ``` SYS:SSH:PUBKEY:DEL 1 SSH Public key deleted: slot 1: admin:ssh-ed25519 (admin@ws1) ``` #### SYStem:SSH:PUBKEY:LIST? Display list of user name and public key pairs that can be used to login This is same as SYS:SSH:PUBKEY? ### Telnet Server Commands #### SYStem:TELNET:SERVer Control whether Telnet server is enabled or not. After making change configuration needs to be saved and unit reset. Default: OFF Example: ``` SYS:TELNET:SERV ON ``` #### SYStem:TELNET:SERVer? Display whether Telnet server status. Example: ``` SYS:TELNET:SERV? OFF ``` #### SYStem:TELNET:ACLs Configure ACL(s) to limit from which subnets (or IPs) connnections to Telnet server is allowed. If no ACLs have been setup then connections from any (source) IP is allowed. Default: 0.0.0.0/0 (none) Example (allow subnet 192.168.1.0/255.255.255.0 and single IP 172.30.1.42): ``` SYS:TELNET:ACLS 192.168.1.0/24,172.30.1.42/32 ``` Example (remove all ACLs): ``` SYS:TELNET:ACLS 0.0.0.0/0 ``` #### SYStem:TELNET:ACLs? Display currently configured ACL(s) for the Telnet server. If no ACLs have been setup then connections from any (source) IP is allowed. Example: ``` SYS:TELNET:ACLs? 192.168.1.0/24, 172.30.1.42/32 ``` #### SYStem:TELNET:AUTH Toggle Telnet server authentication mode. When enabled then Telnet server will prompt user for login/password. When off, no authentication is needed. Default: ON Example: ``` SYS:TELNET:AUTH OFF ``` #### SYStem:TELNET:AUTH? Display whether Telnet server authentication is enabled or not. Example: ``` SYS:TELNET:AUTH? ON ``` #### SYStem:TELNET:PORT Set TCP port where Telnet server will listen on. If this setting is not set then default port will be used. Default: 23 (default Telnet port) Example: ``` SYS:TELNET:PORT 8000 ``` #### SYStem:TELNET:PORT? Display currently configured port for Telnet server. (if port is set to 0, then default Telnet port will be used) Example: ``` SYS:TELNET:PORT? 8000 ``` #### SYStem:TELNET:RAWmode Configure Telnet server mode. By default Telnet server uses Telnet protocol, but setting this option causes Telnet protocol to be disabled. And server uses "raw TCP" mode. Default: OFF Example: ``` SYS:TELNET:RAW ON ``` #### SYStem:TELNET:RAWmode? Display if "raw TCP" mode is enabled or not. Example: ``` SYS:TELNET:RAW? OFF ``` #### SYStem:TELNET:USER Configure username that is allowed to login to this server using Telnet. Default: Example: ``` SYS:TELNET:USER admin ``` #### SYStem:TELNET:USER? Display currently configured telnet user (login) name. Example: ``` SYS:TELNET:USER? admin ``` #### SYStem:TELNET:PASSword Configure password for the telnet user. Password is hashed using SHA-512 Crypt algorithm. Default: Example: ``` SYS:TELNET:PASS mypassword ``` #### SYStem:TELNET:PASSword? Display currently configured telnet user password hash. Example: ``` SYS:TELNET:PASS? $6$QvD5AkWSuydeH/EB$UsYA0cymsCRSse78fN4bMb5q0hM5B7YUNSFd3zJfMDbTG7DOH8iuMufVjsvqBOxR9YCJYSHno4CFeOhLtTGLx. ``` #### SYStem:TIME Set system Real-Time Clock (RTC) time. This command expects time in following format: YYYY-MM-DD HH:MM:SS Example: ``` SYS:TIME 2022-09-19 18:55:42 ``` #### SYStem:TIME? Return current Real-Time Clock (RTC) time. This is only available if using Pico W and it has successfully gotten time from a NTP server or RTC has been initialized using SYStem:TIME command. Command returns nothing if RTC has not been initialized. Example: ``` SYS:TIME? 2022-09-19 18:55:42 ``` #### SYStem:TIMEZONE Set POSIX timezone to use when getting time from a NTP server. If DHCP server does not supply POSIX Timezone (DHCP Option 100), then this command can be used to specify local timezone. This command takes POSIX timezone string as argument (or if argument is blank, then it clears existinh timezone setting). Example (set Pacific Standard time as local timezone): ``` SYS:TIMEZONE PST8PDT7,M3.2.0/2,M11.1.0/02:00:00 ``` Example (clear timezone setting): ``` SYS:TIMEZONE ``` #### SYStem:TIMEZONE? Return current POSIX timezone setting. Command returns nothing if no timezone has been set. Example: ``` SYS:TIMEZONE? PST8PDT7,M3.2.0/2,M11.1.0/02:00:00 ``` #### SYStem:TLS:CERT Upload or delete TLS certificate for the HTTP server. Note, both certificate and private key must be installed before HTTPS server will activate (when system is restarted next time). When run without arguments this will prompt to paste TLS (X.509) certificate in PEM format. When run with "DELETE" argument currently installed certificate will be deleted. Example (upload/paste certificate): ``` SYS:TLS:CERT Paste certificate in PEM format: ``` Example (delete existing certificate from flash memory): ``` SYS:TLS:CERT DELETE ``` #### SYStem:TLS:CERT? Display currently installed certificate. Example: ``` SYS:TLS:CERT? ``` #### SYStem:TLS:PKEY Upload or delete (TLS Certificate) Private key for the HTTP server. Note, both certificate and private key must be installed before HTTPS server will activate (when system is restarted next time). When run without arguments this will prompt to paste private key in PEM format. When run with "DELETE" argument currently installed private key will be deleted. Example (upload/paste private key): ``` SYS:TLS:PKEY Paste private key in PEM format: ``` Example (upload/paste EC private key and EC parameters): ``` SYS:TLS:PKEY 2 Paste private key in PEM format: ``` Example (delete existing private key from flash memory): ``` SYS:TLS:PKEY DELETE ``` #### SYStem:TLS:PKEY? Display currently installed private key. Example: ``` SYS:TLS:CERT? ``` #### SYStem:UPTIme? Return time elapsed since unit was last rebooted (soft reset). Command also returns total time unit has been on since last cold reset and number of times unit has been soft reset since. Example: ``` SYS:UPTIME? 10:58:40 up 0 days, 02:32 since cold boot 1 days, 11:39 (soft reset count: 5) ``` #### SYStem:UPGRADE Reboot unit to USB (BOOTSEL) mode for firmware upgrade. This command triggers fanpico to reboot and enter USB "mode", where new firmware can simply be copied to the USB drive that appears. After file has been copied, fanpico will automatically reboot to new firmware image. Example: ``` SYS:VER? ``` #### SYStem:VERsion? Display software version and copyright information. Example: ``` SYS:VER? ``` #### SYStem:VSENSORS? Display number of virtual (temperature) sensors available. Example: ``` SYS:VSENSORS? 8 ``` #### SYStem:VREFadc new: release v1.6.4 \ Set actual (measured with a volt meter) reference voltage (Vref) for ADC. Example: ``` SYS:VREFADC 3.002 ``` #### SYStem:VREFadc? new: release v1.6.4 \ Display currently configured ADC voltage reference voltage. Example: ``` SYS:VREFADC? 3.0000 ``` #### SYStem:WIFI? Check if the unit support WiFi networking. This should be used to determine if any other "WIFI" commands will be available. Return values: 0 = No WiFi support (Pico). 1 = WiFi supported (Pico W). Example: ``` SYS:WIFI? 1 ``` #### SYStem:WIFI:AUTHmode Set Wi-Fi Authentication mode. Following modes are currently supported: Mode|Description|Notes ----|-----------|----- default|Use system default|Currently default is WPA2 WPA3_WPA2|Use WPA3/WPA2 (mixed) mode| WPA3|Use WPA3 only| WPA2|Use WPA2 only| WPA2_WPA|Use WPA2/WPA (mixed) mode|Not recommended. WPA|Use WPA only|Not recommended. OPEN|Use "Open" mode|No authentication. Example: ``` SYS:WIFI:AUTH WPA3_WPA2 ``` #### SYStem:WIFI:AUTHmode? Return currently configured Authentication mode for the WiFi interface. Example: ``` SYS:WIFI:AUTH? default ``` #### SYStem:WIFI:COUntry Set Wi-Fi Country code. By default, the country setting for the wireless adapter is unset. This means driver will use default world-wide safe setting, which can mean that some channels are unavailable. Country codes are two letter (ISO 3166) codes. For example, Finland = FI, Great Britain = GB, United States of Americ = US, ... Example: ``` SYS:WIFI:COUNTRY US ``` #### SYStem:WIFI:COUntry? Return currently configured country code for the Wi-Fi interface. Codes used are the ISO 3166 standard two letter codes ('XX' means unset/worldwide setting). Example: ``` SYS:WIFI:COUNTRY? US ``` #### SYStem:WIFI:HOSTname Set system hostname. This will be used with DHCP and SYSLOG. If hostname is not defined then system will default to generating hostname as follows: FanPico-xxxxxxxxxxxxxxxx (where "xxxxxxxxxxxxxxxx" is the FanPico serial number) Example: ``` SYS:WIFI:HOSTNAME fanpico1 ``` #### SYStem:WIFI:HOSTname? Return currently configured system hostname. Example: ``` SYS:WIFI:HOSTNAME? fanpico1 ``` #### SYStem:WIFI:IPaddress Set staticlly configured IP address. Set address to "0.0.0.0" to enable DHCP. Example: ``` SYS:WIFI:IP 192.168.1.42 ``` #### SYStem:WIFI:IPaddress? Display currently configured (static) IP address. If no static address is configured, DHCP will be used. Set address to "0.0.0.0" to enable DHCP. Example: ``` SYS:WIFI:IP? 0.0.0.0 ``` #### SYStem:WIFI:MODE Set WiFi connection mode. Normally this setting is not needed with modern APs. However, if FanPico is failing to connect to WiFi network, this couldbe due to old firmware on the AP (upgrading to latest firmware typically helps). If firmware update did not help or there is no updated firmware available, setting connection mode to synchronous can help (however this could cause FanPico to "hang" for up to 60 seconds during boot up). Mode|Description ------|----------- 0|Asynchronous connection mode (default) 1|Synchronous connection mode ( Default: 0 Example: ``` SYS:WIFI:MODE 1 ``` #### SYStem:WIFI:MODE? Display currently configured WiFi connection mode? Example: ``` SYS:WIFI:MODE? 0 ``` #### SYStem:WIFI:NETMASK Set statically configured netmask. Example: ``` SYS:WIFI:NETMASK 255.255.255.0 ``` #### SYStem:WIFI:NETMASK? Display currently configured (static) netmask. Example: ``` SYS:WIFI:NETMASK? 255.255.255.0 ``` #### SYStem:WIFI:GATEWAY Set statically configured default gateway (router). Example: ``` SYS:WIFI:GATEWAY 192.168.1.1 ``` #### SYStem:WIFI:GATEWAY? Display currently configured default gateway (router). Example: ``` SYS:WIFI:GATEWAY? 192.168.1.1 ``` #### SYStem:WIFI:DNS Configure (static) DNS Server IP addresses. Note, set to "0.0.0.0" to use servers provided by DHCP. Example (configure two DNS servers): ``` SYS:WIFI:DNS 8.8.8.8,8.8.4.4 ``` Example (configure one DNS server): ``` SYS:WIFI:DNS 192.168.1.1 ``` #### SYStem:WIFI:DNS? Display currently configured (static) DNS Server IP addresses. If DHCP is active, it may configure DNS servers. To see currently active DNS servers see SYS:WIFI:INFO? Example: ``` SYS:WIFI:DNS? 8.8.8.8, 8.8.4.4 ``` #### SYStem:NTPClient Enable or disable NTP client that sychronizes clock to network time server time. Default: ON Example (disable NTP client): ``` SYS:NTPC OFF ``` #### SYStem:NTPClient? Query currently status of NTP client. Example: ``` SYS:NTPC? ON ``` #### SYStem:WIFI:NTPservers Configure IP for NTP server to use. Set to "0.0.0.0" to use server provided by DHCP. Example: ``` SYS:WIFI:NTP 192.168.1.10,192.168.1.11 ``` #### SYStem:WIFI:NTPservers? Display currently configure NTP server. Note, "0.0.0.0" means to use DHCP. Example: ``` SYS:WIFI:NTP? 192.168.1.10 ``` #### SYStem:SYSLOGClient Enable or disable Syslog client that relays log messages to a remote (syslog) server. Default: ON Example (disable Syslog client): ``` SYS:SYSLOGC OFF ``` #### SYStem:SYSLOGClient? Query currently status of Syslog client. Example: ``` SYS:SYSLOGC? ON ``` #### SYStem:WIFI:SYSLOGserver Configure IP for Syslog server to use. Set to "0.0.0.0" to use server provided by DHCP. Example: ``` SYS:WIFI:SYSLOG 192.168.1.20 ``` #### SYStem:WIFI:SYSLOGserver? Display currently configured Syslog server. Note, "0.0.0.0" means to use DHCP. Example: ``` SYS:WIFI:SYSLOG? 192.168.1.20 ``` #### SYStem:WIFI:MAC? Display WiFi adapter MAC (Ethernet) address. Example: ``` SYS:WIFI:MAC? 28:cd:c1:01:02:03 ``` #### SYStem:WIFI:REJOIN Trigger attempt to rejoin to WiFi network. If system is currently joined to a network, this causes system leaving from the current network first. System will automatically attempt to rejoin WiFi network if connection fails, so this command should normally not be needed. Example: ``` SYS:WIFI:REJOIN ``` #### SYStem:WIFI:SSID Set Wi-Fi network SSID. FanPico will automatically try joining to this network. Example: ``` SYS:WIFI:SSID mynetwork ``` #### SYStem:WIFI:SSID? Display currently configured Wi-Fi network SSID. Example: ``` SYS:WIFI:SSID? mynetwork ``` #### SYStem:WIFI:INFO? Display information about the WiFi network current state. Example: ``` SYS:WIFI:INFO? Network Link: Up WiFi Status: Link Up (2 days, 00:11:42 since last change) MAC Address: 28:cd:c1:xx:xx:xx DHCP Client: Enabled DHCP Hostname: FanPico-e6614c31xxxxxxxxx IP Address: 192.168.1.170 Netmask: 255.255.255.0 Gateway: 192.168.1.1 DNS Servers: 8.8.8.8, 8.8.4.4 NTP Servers: 192.168.1.10 Log Server: 0.0.0.0 ``` #### SYStem:WIFI:STATus? Display WiFi Link status. Return value: link_status,current_ip,current_netmask,current_gateway,link_status_code Link Status: Link Status|Description -----|----------- Link Down|Not connected to a WiFi network. Joining|Connecting to WiFi. No IP|Connected to WiFi, but no IP address. Link Up|Connected to WiFi with and IP address. Link Fail|Connection failed. Network Fail|No matching SSID found (could be out of range, or down). Auth Fail|Authentication failed (wrong password) Example: ``` SYS:WIFI:STAT? Link Up,192.168.1.42,255.255.255.0,192.168.1.1,3 ``` #### SYStem:WIFI:STATS? Display TCP/IP stack (LwIP) statistics. NOTE, this command only works on "Debug" builds of the firmware currently. Example ``` SYS:WIFI:STATS? ``` #### SYStem:WIFI:PASSword Set Wi-Fi (PSK) password/passrase. Example ``` SYS:WIFI:PASS mynetworkpassword ``` #### SYStem:WIFI:PASSword? Display currently configured Wi-Fi (PSK) password/passphrase. Example: ``` SYS:WIFI:PASS? mynetworkpassword ``` ### WHO? Display remote connection information. This displays information about currently connected telnet session. Example: ``` WHO? admin telnet 192.168.1.10:59422 (Connected) ``` ### WRIte Commands These commands are for sending (writing) information from host to FanPico unit. #### WRIte:VSENSORx Set/update temperature of a virtual sensor. This can be used by a program on the host system to feed external temperature information into FanPico. Example: Set VSENSOR1 temperature to 42.1C ``` WRITE:VSENSOR1 42.1 ``` ================================================ FILE: compile.sh ================================================ #!/bin/sh # # build.sh # BUILD_DIR=./build error() { echo "`basename $0`: $*"; } fatal() { echo "`basename $0`: $*"; exit 1; } # asm hack (CMake cant seem to handle .incbin in .s file) for s_file in src/*.s; do d_file=$(echo $s_file | sed -e 's/\.s/.json/') if [ -s "$d_file" ]; then if [ "$d_file" -nt "$s_file" ]; then echo "$d_file updated: touch $s_file" touch "$s_file" fi fi done [ -d "${BUILD_DIR}" ] || mkdir -p "${BUILD_DIR}" || fatal "failed to create: $BUILD_DIR" cd "${BUILD_DIR}" || fatal "cannot access: $BUILD_DIR" [ -s Makefile ] || cmake .. || fatal "cmake failed" make -j if [ $? -eq 0 ]; then echo "Build successful." picotool info -a fanpico.uf2 else echo "Build failed." exit 1 fi # eof :-) ================================================ FILE: contrib/build_makefsdata.sh ================================================ #!/bin/sh INCLUDES="-I ${PICO_SDK_PATH}/lib/lwip/src/include/ -I ${PICO_SDK_PATH}/lib/lwip/contrib/ports/unix/port/include/" #gcc ${INCLUDES} -I ../build/ -I ../src/ -o makefsdata ${PICO_SDK_PATH}/lib/lwip/src/apps/http/makefsdata/makefsdata.c gcc ${INCLUDES} -I ${PICO_SDK_PATH}/lib/lwip/src/apps/http/makefsdata -I ../src -I ../build -o makefsdata makefsdata.c ================================================ FILE: contrib/kicad_extract_netclasses.py ================================================ #!/usr/bin/env python3 # # kicad_extract_netclasses.py # # import sys import re import json def parse_kicad_project_json(json_data): j = json.loads(json_data) for netclass in j['net_settings']['classes']: name = re.sub(r'^.*_|ma$', '', netclass['name']) if 'nets' in netclass: for net in netclass['nets']: print('%s,"%s"' % (name, net)) for file in sys.argv[1:]: try: with open(file) as f: data = f.read() parse_kicad_project_json(data) exit(0) except IOError as e: print(e) # eof ================================================ FILE: contrib/makefsdata.patch ================================================ --- a/src/apps/http/makefsdata/makefsdata.c +++ b/src/apps/http/makefsdata/makefsdata.c @@ -882,7 +882,7 @@ static int checkSsiByFilelist(const char* filename_listfile) ssi_file_lines = lines; ssi_file_num_lines = l; } - return 0; + return 1; } static int is_ssi_file(const char *filename) @@ -1093,6 +1093,11 @@ int file_write_http_header(FILE *data_file, const char *filename, int file_size, memset(hdr_buf, 0, sizeof(hdr_buf)); + + if (strstr(filename, "303.") == filename) { + return written; + } + if (useHttp11) { response_type = HTTP_HDR_OK_11; } @@ -1254,6 +1259,15 @@ int file_write_http_header(FILE *data_file, const char *filename, int file_size, LWIP_UNUSED_ARG(is_compressed); #endif + if (file_type != HTTP_HDR_SSI && is_ssi_file(filename)) { + const char *no_cache_str = "Expires: Fri, 10 Apr 2008 14:00:00 GMT\r\nPragma: no-cache\r\n"; + cur_string = no_cache_str; + cur_len = strlen(cur_string); + fprintf(data_file, NEWLINE "/* \"%s\" (%"SZT_F" bytes) */" NEWLINE, cur_string, cur_len); + written += file_put_ascii(data_file, cur_string, cur_len, &i); + i = 0; + } + /* write content-type, ATTENTION: this includes the double-CRLF! */ cur_string = file_type; cur_len = strlen(cur_string); ================================================ FILE: credits.txt ================================================ FanPico: Smart PWM (PC) Fan Controller Copyright (C) 2021-2026 Timo Kokkonen https://kokkonen.net/fanpico This program comes with ABSOLUTELY NO WARRANTY. This is free software: you can redistribute it and/or modify it under the terms of GNU General Public License, either version 3 of the License, or (at your option) any later version. Libraries used in FanPico: pico-sdk Copyright 2020 (c) 2020 Raspberry Pi (Trading) Ltd. https://github.com/raspberrypi/pico-sdk cJSON Copyright (c) 2009-2017 Dave Gamble and cJSON contributors https://github.com/DaveGamble/cJSON pico-lfs Copyright (c) 2024 Timo Kokkonen https://github.com/tjko/pico-lfs The little filesystem Copyright (c) 2022, The littlefs authors. Copyright (c) 2017, Arm Limited. All rights reserved. https://github.com/littlefs-project/littlefs ss_oled (Small, Simple OLED library) Copyright (c) 2017-2019 BitBank Software, Inc. Written by Larry Bank https://github.com/tjko/ss_oled-lib bb_spi_lcd (SPI LCD library) Copyright (c) 2017-2019 Larry Bank https://github.com/tjko/bb_spi_lcd-lib libb64 Created by Chris Venter https://github.com/libb64/libb64 pico-telnetd Copryight (c) 2024 Timo Kokkonen https://github.com/tjko/pico-telnetd pico-1wire-lib Copryight (c) 2024 Timo Kokkonen https://github.com/tjko/pico-1wire-lib pico-sensor-lib Copryight (c) 2024 Timo Kokkonen https://github.com/tjko/pico-sensor-lib pico-sshd Copryight (c) 2025 Timo Kokkonen https://github.com/tjko/pico-sshd wolfssl Copyright (C) 2006-2025 wolfSSL Inc. https://github.com/wolfSSL/wolfssl wolfssh Copyright (C) 2014-2024 wolfSSL Inc. https://github.com/wolfSSL/wolfssh ================================================ FILE: debug.sh ================================================ #!/bin/sh # # Launch openocd for debugging. # openocd -f interface/cmsis-dap.cfg \ -f target/rp2040.cfg \ -c "adapter speed 5000" # eof :-) ================================================ FILE: flash.sh ================================================ #!/bin/sh # # Flash Fanpico firmware using picoprobe # openocd -f interface/cmsis-dap.cfg \ -c "adapter speed 5000" \ -f target/rp2040.cfg \ -c "program build/fanpico.elf verify reset exit" # eof :-) ================================================ FILE: kicad/FanPico.pretty/D_SOT-23_ANK.kicad_mod ================================================ (footprint "D_SOT-23_ANK" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "SOT-23, Single Diode") (tags "SOT-23") (property "LCSC Part Number" "C2844172") (property "Sheetfile" "extra_fan_channel.kicad_sch") (property "Sheetname" "Fan8") (property "Sim.Device" "D") (property "Sim.Pins" "1=K 2=A") (property "ki_description" "Diode") (property "ki_keywords" "diode") (attr smd) (fp_text reference "D33" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 3ccd2cca-c0bc-4d7a-bf8f-569096b7c1ff) ) (fp_text value "BAT54C" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 741dd0a5-0190-45fc-b861-9e60d587e997) ) (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1c43645f-e0f3-441f-ab73-fbded7de3e0f) ) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e514a9e-a91a-4d0a-a570-1cdac8d0d6d4)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbe2e893-466a-4a1c-93f3-dbdaf9503cca)) (fp_line (start 0.76 1.58) (end -0.7 1.58) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4da3d64b-d8c2-4bc8-99bc-a76ef29a9957)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de5b924a-1462-4fa9-9348-0894ec9efd37)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d9015d9-97a9-4adb-9320-7c72499f5aa1)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9802322f-f606-4ea8-b3cd-97c7bcbf2687)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d72b457-3b5c-4fd5-86ca-516b427a76f5)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2bf8eba-ab8a-4785-ab25-a791546a5f78)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77388f03-5e6f-449f-bd81-555f897bbf6b)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a453568b-a309-403a-8de3-975ebab0dd38)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea1ff5ae-1467-4be2-936c-060ec9d32b3d)) (fp_line (start -0.15 -0.65) (end -0.15 -0.25) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84e90982-af71-4f0f-9cb3-5a6dc04bf5b0)) (fp_line (start -0.15 -0.45) (end -0.4 -0.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca8e208d-4ba4-419c-b453-3d0447b15810)) (fp_line (start -0.15 -0.25) (end 0.15 -0.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b89ebd1e-2f86-49a2-a235-b45f2df96b1e)) (fp_line (start 0.15 -0.65) (end 0.15 -0.25) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54286a68-9599-4637-83ff-2e072a961b1a)) (fp_line (start 0.15 -0.45) (end -0.15 -0.65) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0bcd20a-edce-456a-82da-c07ed56fbc40)) (fp_line (start 0.15 -0.45) (end 0.4 -0.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01a36fb1-079c-442a-b1d9-5d487012df3b)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcafaf0f-c091-4e9f-a103-c763c4b8ca34)) (pad "" smd rect (at -1.1 0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 54daed2c-8203-4a85-a531-7608b09a4098)) (pad "1" smd rect (at 1.1 0) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3debd49-e2ed-43d5-af97-ea0e779ceab7)) (pad "2" smd rect (at -1.1 -0.95) (size 1.1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c8d8d413-15b8-4c8a-9afb-922f7ac61894)) (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOT-23.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.kicad_mod ================================================ (footprint "Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (descr "Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf") (tags "fuse clip open") (property "Reference" "REF**" (at 10.25 -3.5 0) (layer "F.SilkS") (uuid "4b2faaca-ea8a-45ff-96f7-9c84dbd6b827") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal" (at 10.25 3.5 0) (layer "F.Fab") (uuid "0acaf939-8307-4f11-874e-a193f44a55ed") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "17414b27-3f38-4221-adea-6d58b7e7e6fc") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "e4a00651-48e2-4d01-bf96-d7a27cf8256c") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "5d269974-f707-417d-9476-37b7ed135df5") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr through_hole) (fp_line (start 0.6 -2.6) (end 0.6 -1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1b1548c2-b109-4fc4-95b0-2bb4a700f3ce") ) (fp_line (start 0.6 2.6) (end 0.6 1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "e6216877-0c92-4f6b-a438-f930d20ba9ba") ) (fp_line (start 4.6 -2.6) (end 0.6 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5456ca40-a7a4-42bd-a10d-8ccb2511cbe1") ) (fp_line (start 4.6 -2.6) (end 4.6 -1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "69e8710e-6218-4b6e-8db0-eaeab8478013") ) (fp_line (start 4.6 2.6) (end 0.6 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "82c511d0-3975-4ace-9105-d43d486600ef") ) (fp_line (start 4.6 2.6) (end 4.6 1.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bc8ee4b6-7780-4d42-8cc3-136150254968") ) (fp_line (start 15.9 -2.6) (end 15.9 -1.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "5731d22b-18c2-4920-9f80-2a6ce209edf2") ) (fp_line (start 15.9 -2.5) (end 4.6 -2.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "80af0ec6-5f6d-4b15-a47c-8ad196343281") ) (fp_line (start 15.9 2.5) (end 4.6 2.5) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c7d352a2-cf41-41b3-a221-8df8cbed387a") ) (fp_line (start 15.9 2.6) (end 15.9 1.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "64213eb0-4c81-4425-b639-aaa857275359") ) (fp_line (start 15.9 2.6) (end 19.9 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4305b927-7a64-435b-9a47-af685fe70d9e") ) (fp_line (start 19.9 -2.6) (end 15.9 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8f9276a5-4ba3-4385-a900-156381dab819") ) (fp_line (start 19.9 -1.2) (end 19.9 -2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ef6ca327-0b37-4042-a0ff-0eefae303b20") ) (fp_line (start 19.9 1.2) (end 19.9 2.6) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "2b0175f4-7d47-478e-b3e6-ce672e2d7055") ) (fp_line (start -1.9 -3.25) (end -1.9 3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d33953f7-bc7b-4103-947a-59e9278f5423") ) (fp_line (start -1.9 -3.25) (end 22.4 -3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "61fa851c-0703-4688-bf0f-9cc32a6397f8") ) (fp_line (start 22.4 3.25) (end -1.9 3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "20617b25-3b5f-49c0-83cd-5a2833d3a305") ) (fp_line (start 22.4 3.25) (end 22.4 -3.25) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "e65148b4-eb46-42d9-b5f0-58ed22e50085") ) (fp_line (start 0.6 -2.6) (end 4.6 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6f79164a-ca63-4219-8918-281bfcb8510a") ) (fp_line (start 0.6 2.6) (end 0.6 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "f26d4370-ccd0-4f31-9650-b7d3e2ea7fbc") ) (fp_line (start 4.6 -2.6) (end 4.6 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b71e8876-a927-4bd4-afad-057dc5f5d44b") ) (fp_line (start 4.6 -2.5) (end 15.9 -2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3ff4471a-d9da-4126-af01-ea9a764303aa") ) (fp_line (start 4.6 2.6) (end 0.6 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "0abc5d62-b78a-40f7-9340-f0462695a9d9") ) (fp_line (start 15.9 -2.6) (end 15.9 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cd904fde-884f-489c-bafe-13dcf58ca270") ) (fp_line (start 15.9 2.5) (end 4.6 2.5) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "6865f33e-5f44-4bb4-8876-a58f89f83813") ) (fp_line (start 15.9 2.6) (end 19.9 2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "cccdd42d-5b5e-4b2a-98fd-ac3fa5a22c14") ) (fp_line (start 19.9 -2.6) (end 15.9 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "00efd808-ebaa-4f25-9257-0371adb426e0") ) (fp_line (start 19.9 2.6) (end 19.9 -2.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ce9aa4c0-4504-4a0d-8ccf-449927b83544") ) (fp_text user "${REFERENCE}" (at 10.25 0 0) (layer "F.Fab") (uuid "8f216ee7-5fed-4361-8308-69733424c5c0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole roundrect (at 0 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.25) (uuid "d02cc305-cc9d-4a81-9683-c30ba7989ea7") ) (pad "1" thru_hole roundrect (at 5.2 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (roundrect_rratio 0.25) (uuid "5806c078-0d32-4b71-9bbc-3ddaa984d634") ) (pad "2" thru_hole circle (at 15.3 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "db35f27a-af77-4fd1-afe1-db6d6e1d9277") ) (pad "2" thru_hole circle (at 20.5 0) (size 2.4 2.4) (drill 1.4) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "fa96c103-a249-4d74-a8f7-f53b2f60fbfe") ) (model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) ================================================ FILE: kicad/FanPico.pretty/IND-SMD_L7.2-W6.6_GPSR07X0.kicad_mod ================================================ (footprint "IND-SMD_L7.2-W6.6_GPSR07X0" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (property "Reference" "U?" (at 0 -4.127 0) (layer "F.SilkS") (uuid "8be6c492-5d5b-42fa-b020-7d3d9b06abea") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "IND-SMD_L7.2-W6.6_GPSR07X0" (at 0 4.127 0) (layer "F.Fab") (uuid "f335c3f3-5005-4cca-bec6-66eeec8b7d0e") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "93e35f74-7c7d-414f-9360-e35994e30be0") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "407cfd72-d922-4c58-98ab-5dca1defa7bd") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "9d5e3171-c1ab-4a36-bed6-36b5fdc79774") (effects (font (size 1 1) (thickness 0.15) ) ) ) (fp_line (start -3.3 -3.3) (end -3.3 -1.981) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "3d38ca4c-611f-483d-bbd3-fc70fc2637da") ) (fp_line (start -3.3 -3.3) (end 3.3 -3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "f83bb0e1-7e9a-4270-8cad-6a6e7e5654ae") ) (fp_line (start -3.3 1.981) (end -3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "d5d14cd4-74fb-4665-adbb-c0c72ad4f896") ) (fp_line (start -3.3 3.3) (end 3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "6c3c858e-1ff2-48a1-9729-0e11c3f38573") ) (fp_line (start 3.3 -3.3) (end 3.3 -1.981) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "a1ae3b7c-10bd-4d08-ab48-78fffb7c510a") ) (fp_line (start 3.3 1.981) (end 3.3 3.3) (stroke (width 0.254) (type default) ) (layer "F.SilkS") (uuid "3adf709c-22e3-472e-8aa8-fb2164158a57") ) (fp_poly (pts (xy -1.9 1.5) (xy -3.6 1.5) (xy -3.6 -1.5) (xy -1.9 -1.5) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "175eaedc-0e19-4490-9f7d-cfd9b1afb064") ) (fp_poly (pts (xy 1.9 -1.5) (xy 3.6 -1.5) (xy 3.6 1.5) (xy 1.9 1.5) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "2b522128-674d-4346-b847-a48852c88bc6") ) (fp_line (start -3.25 -3.25) (end 3.25 -3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "b42b9c03-6233-4e86-8591-fc86c13bfeae") ) (fp_line (start -3.25 3.25) (end -3.25 -3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "4bfb0d7d-1ad5-43f4-8c75-9cf3f914f1b1") ) (fp_line (start 3.25 -3.25) (end 3.25 3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "1d47caae-a571-409f-9545-a9f3ce70dda3") ) (fp_line (start 3.25 3.25) (end -3.25 3.25) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "8643b4e2-d442-43d2-92f0-673b56f17349") ) (fp_poly (pts (xy -3.54 3.25) (xy -3.557574 3.207574) (xy -3.6 3.19) (xy -3.642426 3.207574) (xy -3.66 3.25) (xy -3.642426 3.292426) (xy -3.6 3.31) (xy -3.557574 3.292426) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.3") (uuid "63f5d44c-4989-4b5e-bd4e-e026e2f3b0ee") ) (pad "1" smd rect (at -2.85 0) (size 2.35 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "4e2e5fd7-c3e4-4644-9c8e-f8f9ce7f7b98") ) (pad "2" smd rect (at 2.85 0) (size 2.35 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "dd061365-5618-424a-a99e-d348a3058872") ) ) ================================================ FILE: kicad/FanPico.pretty/L_7.3x7.3_H3.5_HandSolder.kicad_mod ================================================ (footprint "L_7.3x7.3_H3.5_HandSolder" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "Choke, SMD, 7.3x7.3mm 3.5mm height") (tags "Choke SMD") (attr smd) (fp_text reference "REF**" (at 0 -4.45) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp eb236df9-1960-49e8-83d0-62fd2a7e6193) ) (fp_text value "L_7.3x7.3_H3.5_HandSolder" (at 0 4.45) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp e3961442-f0e6-4000-a5c2-373c3850bd4c) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp b4075839-d604-4aa6-b4cd-950253cd8bde) ) (fp_line (start -3.7 -3.7) (end 3.7 -3.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc209817-7a04-4708-bf2a-dee965ca5f3b)) (fp_line (start -3.7 -1.4) (end -3.7 -3.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9d3a66d-6d87-44a6-ae14-98e434eb3856)) (fp_line (start -3.7 3.7) (end -3.7 1.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd7fb431-b96b-43d1-9fa9-15d25127b262)) (fp_line (start 3.7 -3.7) (end 3.7 -1.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e32f65b5-0724-4fe6-ae8b-54f63539ac51)) (fp_line (start 3.7 1.4) (end 3.7 3.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55407252-d480-41d7-9feb-d368a87ae032)) (fp_line (start 3.7 3.7) (end -3.7 3.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3895957e-4269-409e-ae51-4b55dc35411e)) (fp_line (start -4.2 -3.9) (end -4.2 3.9) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbeea1b5-41a1-4e20-8189-fe444888e655)) (fp_line (start -4.2 3.9) (end 4.2 3.9) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5b030e1-0f36-40a9-94e4-efafc0c5347a)) (fp_line (start 4.2 -3.9) (end -4.2 -3.9) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd7149de-5c23-417f-a510-b1ea80379f9a)) (fp_line (start 4.2 3.9) (end 4.2 -3.9) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e87cd71b-c9a3-477e-8f5d-da84f745bff2)) (fp_line (start -3.65 -3.65) (end -3.65 -1.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d499dd14-fa6b-443e-892d-22480402b5fa)) (fp_line (start -3.65 -3.65) (end 3.65 -3.65) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ee52075-f325-4b57-b240-29a1e8ef3272)) (fp_line (start -3.65 3.65) (end -3.65 1.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f20e824e-4664-49ca-99a7-ca05b4ce97b6)) (fp_line (start 3.65 -3.65) (end 3.65 -1.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1e25a2d-6e12-4c09-91b0-8d68bea20bf0)) (fp_line (start 3.65 3.65) (end -3.65 3.65) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49bedc29-e808-4fdc-988c-10b51af8197b)) (fp_line (start 3.65 3.65) (end 3.65 1.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1204f6c0-4c43-42e4-9b48-f3599afea00b)) (fp_arc (start -2.29 -2.29) (mid 0 -3.238549) (end 2.29 -2.29) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 979d1c12-1d0c-4e87-8ce5-7546a74831c8)) (fp_arc (start 2.29 2.29) (mid 0 3.238549) (end -2.29 2.29) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4d7304e-a61b-443c-8c40-39146349af19)) (pad "1" smd rect (at -3.3 0) (size 1.7 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fe5bd15d-b094-4525-89ee-5d5e3d439b04)) (pad "2" smd rect (at 3.3 0) (size 1.7 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 207b27e1-8835-40c4-a829-82905db4313e)) (model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_7.3x7.3_H3.5.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/OLED_module.kicad_mod ================================================ (footprint "OLED_module" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5A19A429) (descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") (tags "Through hole socket strip THT 1x04 2.54mm single row") (attr through_hole) (fp_text reference "REF**" (at 0 -2.77) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp f2b54470-c210-48e0-af04-601bc8f080b6) ) (fp_text value "OLED_module" (at 0 19) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d53e0302-0db9-4055-a945-e949bb69a01a) ) (fp_text user "${REFERENCE}" (at 0 7.5 180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 12818457-a928-4a58-a768-32818fc42d8d) ) (fp_line (start -5.33 4) (end -5.33 2.67) (layer "F.SilkS") (width 0.12) (tstamp 0b0caae4-3516-4e1d-8c34-db4d96d41b69)) (fp_line (start -5.33 2.67) (end -4 2.67) (layer "F.SilkS") (width 0.12) (tstamp 1bbfb789-b903-4d94-a84c-27c31d6ddb87)) (fp_line (start -2.73 5.33) (end 4.95 5.33) (layer "F.SilkS") (width 0.12) (tstamp 257cdb19-4025-4fa7-9a74-b2d22e8ba58d)) (fp_line (start -2.73 5.33) (end -2.73 2.67) (layer "F.SilkS") (width 0.12) (tstamp 7046adf6-9740-4d25-b205-d1fffb82b005)) (fp_line (start -2.73 2.67) (end 4.95 2.67) (layer "F.SilkS") (width 0.12) (tstamp c8cf58ba-8863-4630-be56-78a2eb8d55bd)) (fp_line (start 4.95 5.33) (end 4.95 2.67) (layer "F.SilkS") (width 0.12) (tstamp d1e4446c-7a25-4f49-846a-5ec9b3ac753a)) (fp_line (start 5.4 5.8) (end -5.8 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 59f28584-bc37-4ee4-9d8d-83313332dd22)) (fp_line (start -5.8 2.25) (end 5.4 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 63d51db6-ac13-4c8e-a47e-37785e50651f)) (fp_line (start -5.8 5.8) (end -5.8 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 7fbbaabf-f9c9-4c65-84ac-eb48bbb94306)) (fp_line (start 5.4 2.25) (end 5.4 5.8) (layer "F.CrtYd") (width 0.05) (tstamp f7f34377-dc94-4e23-abc2-c9ec3682eb39)) (fp_line (start -5.27 3.365) (end -4.635 2.73) (layer "F.Fab") (width 0.1) (tstamp 4488ae3b-6026-4638-a2e4-db8d518174db)) (fp_line (start -4.635 2.73) (end 4.89 2.73) (layer "F.Fab") (width 0.1) (tstamp 71b610dc-6482-4490-9131-865e7f856685)) (fp_line (start 4.89 5.27) (end -5.27 5.27) (layer "F.Fab") (width 0.1) (tstamp 7949220b-fca3-49a1-9b4c-fac10faf8d69)) (fp_line (start -5.27 5.27) (end -5.27 3.365) (layer "F.Fab") (width 0.1) (tstamp 7c45869b-ce5d-4b65-9c7c-2e902cfe9d0a)) (fp_line (start 4.89 2.73) (end 4.89 5.27) (layer "F.Fab") (width 0.1) (tstamp f97fc5e6-8b3e-4567-9586-3ebba4b86f3f)) (pad "" thru_hole circle (at 15.01 32.5) (size 5 5) (drill 3) (layers *.Cu *.Mask) (tstamp 1c2e4c7e-ccb6-45e1-9d63-ae819b8333b7)) (pad "" thru_hole circle (at 15.01 4 90) (size 5 5) (drill 3) (layers *.Cu *.Mask) (tstamp 66ab9ece-7823-4e18-9ec4-cce3a0bb3175)) (pad "" thru_hole circle (at -15.39 32.5) (size 5 5) (drill 3) (layers *.Cu *.Mask) (tstamp a89a5d67-3731-4d3d-a0e9-7f594b450382)) (pad "" thru_hole circle (at -15.39 4) (size 5 5) (drill 3) (layers *.Cu *.Mask) (tstamp ce25d9f1-9ed6-4e08-99ee-951a1b0a0eea)) (pad "1" thru_hole rect (at -4 4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 2e08a263-3e07-43ef-b8ac-536cb45b6165)) (pad "2" thru_hole oval (at -1.46 4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 21d635ce-212a-436e-8900-6f95ebc71c55)) (pad "3" thru_hole oval (at 1.08 4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 4eed0372-d89a-4fec-bea1-b5660297ac7d)) (pad "4" thru_hole oval (at 3.62 4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 1f92a149-11c2-4b9c-9f4d-d30f134bf31d)) (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/P2PAK.kicad_mod ================================================ (footprint "P2PAK" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/") (tags "D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426") (attr smd) (fp_text reference "REF**" (at 0 -6.65) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 59193125-b8f7-46bc-a064-e36fb587a449) ) (fp_text value "P2PAK" (at 0 6.65) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ca32b377-6b36-4524-a86d-3b4164842a92) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9d662572-cd7a-4e47-8222-c41d4861f508) ) (fp_line (start -4.9875 -5.2) (end -4.9875 -4.25) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3857e79b-e45d-409f-a75a-40dd9af94f9e)) (fp_line (start -4.9875 -4.25) (end -10.1125 -4.25) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9442f8a-488d-47ec-802e-e55965d1e02b)) (fp_line (start -4.975 4.25) (end -6.075 4.25) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3ab057c-36bd-474b-881c-353545e09d63)) (fp_line (start -4.975 5.2) (end -4.975 4.25) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16ab745b-4b60-4779-b5ad-ff67ec296037)) (fp_line (start -3.4875 -5.2) (end -4.9875 -5.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ae73466-2a15-4145-bd69-47c9b372402d)) (fp_line (start -3.475 5.2) (end -4.975 5.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe4309f1-237f-413f-b163-57eab7652742)) (fp_line (start -11.2 -5.65) (end -11.2 5.65) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7df9a44c-c062-4bf4-9862-979c05d24365)) (fp_line (start -11.2 5.65) (end 7 5.65) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74a0dced-d89f-4818-a844-4b22b95c027d)) (fp_line (start 7 -5.65) (end -11.2 -5.65) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88fdbe00-1b77-4a7b-b747-01f0f3636d9c)) (fp_line (start 7 5.65) (end 7 -5.65) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d14e804-eba4-413d-91a2-10bfd112f23f)) (fp_line (start -9.325 -3.8) (end -9.325 -3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a722944-225f-4257-9f1a-10fefe589fcc)) (fp_line (start -9.325 -3) (end -4.625 -3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45e33a55-ae9f-481f-a4dc-9f65ffa267ed)) (fp_line (start -9.325 -2.1) (end -9.325 -1.3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ce32da0-ec98-422c-882a-517778117c89)) (fp_line (start -9.325 -1.3) (end -4.625 -1.3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8212891e-8410-41eb-a029-23a96dcc2378)) (fp_line (start -9.325 -0.4) (end -9.325 0.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 958cca9b-c435-4b10-961e-1939e090327a)) (fp_line (start -9.325 0.4) (end -4.625 0.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ccf9f01-8e7a-4929-b505-25e32797c428)) (fp_line (start -9.325 1.3) (end -9.325 2.1) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87555d98-c1df-4914-9f5b-193429cc0423)) (fp_line (start -9.325 2.1) (end -4.625 2.1) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a415fa2-8194-4617-ad67-e1bde09cd944)) (fp_line (start -9.325 3) (end -9.325 3.8) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 193a1d63-d215-447f-97d4-3ceaf3cd64b1)) (fp_line (start -9.325 3.8) (end -4.625 3.8) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da604117-f47b-4c5f-8896-095fae501073)) (fp_line (start -4.625 -4) (end -3.625 -5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48cbd2f0-a107-4291-b412-71fa3afa18e3)) (fp_line (start -4.625 -3.8) (end -9.325 -3.8) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 106d1025-3b4d-4747-9740-220aebd5d38a)) (fp_line (start -4.625 -2.1) (end -9.325 -2.1) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce9a1a92-4863-46fa-bda0-0ea86c782d0f)) (fp_line (start -4.625 -0.4) (end -9.325 -0.4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1820ab56-14b5-4611-9bab-932cfcd0ce27)) (fp_line (start -4.625 1.3) (end -9.325 1.3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f273fa0-89be-44f3-a006-ed00c67f285e)) (fp_line (start -4.625 3) (end -9.325 3) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58a3431b-4db8-4135-8ec3-55a9e36b15b9)) (fp_line (start -4.625 5) (end -4.625 -4) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 884743db-45ac-402d-92bc-d420bf2edc4a)) (fp_line (start -3.625 -5) (end 4.625 -5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8e09c3a-adfd-47d9-9d0f-08a1c95eb48f)) (fp_line (start 4.625 -5) (end 4.625 5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43a42839-20bd-4114-9ce5-fb7ffe581de0)) (fp_line (start 4.625 -5) (end 5.625 -5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d125ea87-4bbd-45f2-86ed-048caf7bc43c)) (fp_line (start 4.625 5) (end -4.625 5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd0f7ca0-67f6-4dda-8779-52038de32c2f)) (fp_line (start 5.625 -5) (end 5.625 5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0e520a6-c505-4f73-902d-80f5a8abf05b)) (fp_line (start 5.625 5) (end 4.625 5) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fa11795-db07-4228-a20a-8577d29797f0)) (pad "1" smd roundrect (at -8.9 -3.4) (size 4.2 1.15) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273) (tstamp 46a7d388-6f4a-45cf-8a62-430150e67937)) (pad "2" smd roundrect (at -8.9 -1.7) (size 4.2 1.15) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273) (tstamp 2fd9784b-f40c-4360-a864-5a9367221cb3)) (pad "3" smd roundrect (at -8.9 0) (size 4.2 1.15) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273) (tstamp 14e51831-a9dc-4925-abbf-9f8e5b3a0cd2)) (pad "3" smd roundrect (at -0.925 -2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945) (tstamp faa48586-87a6-43a6-b188-0a37e433d521)) (pad "3" smd roundrect (at -0.925 2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945) (tstamp f353ae76-86d5-4e82-a353-d44e1932d860)) (pad "3" smd roundrect (at 1.5 0) (size 9.75 11) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.026596) (tstamp 858fa285-2b6b-4848-a2df-06cf2ecd5ab6)) (pad "3" smd roundrect (at 3.925 -2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945) (tstamp 1fb716f2-9cdb-4cae-b993-020130f4f0cd)) (pad "3" smd roundrect (at 3.925 2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945) (tstamp d0646937-803a-46f7-a40a-b690f94dba90)) (pad "4" smd roundrect (at -8.9 1.7) (size 4.2 1.15) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273) (tstamp e8223a0a-2095-4a4f-b8c7-ef581f4750f0)) (pad "5" smd roundrect (at -8.9 3.4) (size 4.2 1.15) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273) (tstamp fb9a3fd7-9aad-4a3e-8984-c5c20e82113c)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-263-5_TabPin3.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/RPi_Pico_PicoW_SMD_TH.kicad_mod ================================================ (footprint "RPi_Pico_PicoW_SMD_TH" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x20 2.54mm double row") (fp_text reference "U2" (at 0 0) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9770c02b-e18f-4633-9b06-6881b94a9d1a) ) (fp_text value "Pico" (at 0 2.159) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 1f8f536e-7f83-43a2-a891-e9593df2b1ee) ) (fp_text user "GP12" (at -13.2 14.2925 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 03943a42-cf0c-45b7-a9f9-e7bed50ae524) ) (fp_text user "GP2" (at -12.9 -16.51 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 08138ea7-490c-46a6-8bd8-49d5c9c3e8f0) ) (fp_text user "GND" (at -12.8 19.05 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 08c02e4e-9e87-4f03-9cf1-25c75cbd6a8e) ) (fp_text user "GP17" (at 13.054 21.59 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 0bb7fb44-bbcc-4165-a5d8-83226e255c1e) ) (fp_text user "GP27" (at 13.054 -3.8 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 0f87a0d3-ce1f-4d01-a247-19f7a5d9d62e) ) (fp_text user "GP11" (at -13.2 11.7525 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 105d8994-0645-4058-abc7-7a8084b35fbe) ) (fp_text user "AGND" (at 13.054 -6.35 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 153942f5-a462-44fe-b3a1-0dfce1ac5bf5) ) (fp_text user "GP3" (at -12.8 -13.97 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 1db772c7-52bf-4cd8-9b01-4652c3413dc1) ) (fp_text user "GP28" (at 13.054 -9.144 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 1f7c8fdd-2117-44dc-b782-0a886ca1a349) ) (fp_text user "GP7" (at -12.7 -1.3 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 20384398-d3f4-4c03-86b4-20d583a1a2d8) ) (fp_text user "GND" (at -12.8 -19.05 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 37b4ea1f-8369-4610-9bb9-d7292e218f48) ) (fp_text user "3V3" (at 12.9 -13.9 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 38dbb038-b624-463d-a6bf-100ad7247409) ) (fp_text user "GND" (at 12.8 19.05 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 440e54cd-941f-4df2-968e-5d11b323961f) ) (fp_text user "GP13" (at -13.054 16.8325 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 467b2b4e-a3c4-435e-9d43-06f6c1bebb8f) ) (fp_text user "GP14" (at -13.1 21.59 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 4770ba66-8809-48b6-b935-3ba228a3cea4) ) (fp_text user "GP6" (at -12.8 -3.81 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 6069b06a-4d9d-428e-a0d5-d2dccf7f345c) ) (fp_text user "GP19" (at 13.054 13.97 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 64574606-f0a8-4fba-95df-627c7979d6c9) ) (fp_text user "RUN" (at 13 1.27 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 765685f7-d0fa-46fe-9852-e41ceeb8f8b1) ) (fp_text user "GP9" (at -12.8 3.81 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7f4c0cdf-b27f-493f-be0a-3b69cbbee767) ) (fp_text user "3V3_EN" (at 13.7 -17.2 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 84a1b90c-b487-4cfe-9117-3e8f314a45ba) ) (fp_text user "VSYS" (at 13.2 -21.59 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 89a1aedf-d33b-4b23-ae7c-9cb74038258b) ) (fp_text user "GP15" (at -13.054 24.13 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 97b72add-901b-48d9-841b-59d6cf4b5f52) ) (fp_text user "GND" (at -12.8 -6.35 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp a117b542-a531-4d98-aec2-f361f6b43c21) ) (fp_text user "GND" (at 12.8 6.35 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp b96b3cc7-537f-4f00-91a9-9e30b31ada4f) ) (fp_text user "GND" (at 12.8 -19.05 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp ba98c835-f077-4f76-9395-e7696912c474) ) (fp_text user "GP26" (at 13.054 -1.27 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp c856620b-eb0a-4d35-aa03-ff49242251d8) ) (fp_text user "GP4" (at -12.8 -11.43 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp cb4bc87b-030f-4081-a121-e8793ab70907) ) (fp_text user "GP20" (at 13.054 11.43 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp d06049b2-8b5b-47a3-918c-cd9791b8e17b) ) (fp_text user "GP16" (at 13.054 24.13 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp d374ace6-8636-47f3-9e58-f46ae5d861e4) ) (fp_text user "GP22" (at 13.054 3.81 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp d7b25f40-3ba3-4d06-9ced-639d5d19c074) ) (fp_text user "GP18" (at 13.054 16.51 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp d8af7e55-3384-4643-93e0-fee9e52a06d3) ) (fp_text user "GP8" (at -12.8 1.27 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp e5ac2217-5e6b-4f06-82e7-82b6fdea1941) ) (fp_text user "GP10" (at -13.054 8.89 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp e672436b-0e0a-4bb1-984f-f0c558b6f651) ) (fp_text user "VREF" (at 13.0675 -11.7425 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp e754f526-293f-4101-a555-8cb1630779fd) ) (fp_text user "GP5" (at -12.8 -8.89 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp e8498514-5e93-4d99-9b09-9a1b630e8380) ) (fp_text user "GP21" (at 13.054 8.9 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp ea194ace-9177-4bda-b592-60ad570ee81d) ) (fp_text user "GND" (at -12.8 6.35 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp ed73f421-210f-463e-8416-475f22c56ef2) ) (fp_text user "GP0" (at -12.8 -24.13 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f559e54f-a3f9-4df4-b59c-cfcc907b1fed) ) (fp_text user "VBUS" (at 13.3 -24.2 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f5d6ede0-46ad-4eff-b838-3945a401caa2) ) (fp_text user "GP1" (at -12.9 -21.6 45) (layer "F.SilkS") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp fef82338-3ae3-4332-a6e4-066fcb6cc2f6) ) (fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2) (layer "Cmts.User") (effects (font (size 1 1) (thickness 0.15))) (tstamp 32e6e0eb-d034-4567-9b38-1567746a6d90) ) (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6e38957b-39f3-4f36-9e4f-a337632a7ed6) ) (fp_line (start -10.5 -25.5) (end -10.5 -25.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6449a26-17f2-4fb7-b0bf-871e2e859dbf)) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf6a78b9-fbcc-4705-b189-ae12d01b3aa6)) (fp_line (start -10.5 -23.1) (end -10.5 -22.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b9e4686-aeec-4ca8-9f44-5e12d75e9a4f)) (fp_line (start -10.5 -22.833) (end -7.493 -22.833) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1e7b798-61ee-4fe8-b9cf-3b74b206974f)) (fp_line (start -10.5 -20.5) (end -10.5 -20.1) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 621a5f33-e941-45fe-b868-d1e6f62c0a90)) (fp_line (start -10.5 -18) (end -10.5 -17.6) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a00e32da-2325-456e-94c7-5da3c664ec54)) (fp_line (start -10.5 -15.4) (end -10.5 -15) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c114e22d-03b8-48d1-96fe-2d6fa7da5d79)) (fp_line (start -10.5 -12.9) (end -10.5 -12.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8703c751-9c77-4a40-bee8-aa848c9147d4)) (fp_line (start -10.5 -10.4) (end -10.5 -10) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9027d96a-52f5-476c-b81e-c82532d3dcb7)) (fp_line (start -10.5 -7.8) (end -10.5 -7.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab7a940c-0ea8-49f0-9530-8651ca44a75c)) (fp_line (start -10.5 -5.3) (end -10.5 -4.9) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e41eeca2-199e-4beb-99de-6e4969131852)) (fp_line (start -10.5 -2.7) (end -10.5 -2.3) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c6ecf50-a72f-45a5-b4a3-3a1b01eadf98)) (fp_line (start -10.5 -0.2) (end -10.5 0.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61e3aa6d-3d36-4f65-95c1-b733035c5512)) (fp_line (start -10.5 2.3) (end -10.5 2.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3327a932-5e03-4aa6-8362-81785ea92525)) (fp_line (start -10.5 4.9) (end -10.5 5.3) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42589d9e-02db-4a0f-86dc-45d67956db2d)) (fp_line (start -10.5 7.4) (end -10.5 7.8) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdb571c0-ea0e-4113-a2a4-a2bd703e0646)) (fp_line (start -10.5 10) (end -10.5 10.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dce5a07-beb5-42b7-a8d2-c3be0a18a557)) (fp_line (start -10.5 12.5) (end -10.5 12.9) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c7799b2-7df3-4942-aa4d-e05eef0c8337)) (fp_line (start -10.5 15.1) (end -10.5 15.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d50b6861-4ff1-42a1-85c6-8c0f16d1ebb2)) (fp_line (start -10.5 17.6) (end -10.5 18) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e98dba53-f49e-46e7-a354-7e4e19349dc2)) (fp_line (start -10.5 20.1) (end -10.5 20.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63623788-5140-4207-bb59-394139482a44)) (fp_line (start -10.5 22.7) (end -10.5 23.1) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0eacd98-fa95-4603-9128-384589d45684)) (fp_line (start -7.493 -22.833) (end -7.493 -25.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb970423-221e-4e30-a536-9504cfa9cd2b)) (fp_line (start -7.3 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6d7f9c6-9504-4931-812e-d87c7d38a45c)) (fp_line (start 10.5 -25.5) (end 10.5 -25.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2741238-d2d1-41a1-b6b7-d357e6612949)) (fp_line (start 10.5 -23.1) (end 10.5 -22.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ac46659-5028-4e30-922a-eac266322fa4)) (fp_line (start 10.5 -20.5) (end 10.5 -20.1) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e9f8182-42dc-4160-88f0-44ba0a2e613c)) (fp_line (start 10.5 -18) (end 10.5 -17.6) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d44f6fba-47c5-4941-a414-d5a75dcedee3)) (fp_line (start 10.5 -15.4) (end 10.5 -15) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 154b56bd-b8d0-4a7d-a540-602fd011bdf2)) (fp_line (start 10.5 -12.9) (end 10.5 -12.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f893b53-0fa2-4ac2-99d8-5fa9e26b921c)) (fp_line (start 10.5 -10.4) (end 10.5 -10) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8421619-bfcc-4db9-9d95-17391592de97)) (fp_line (start 10.5 -7.8) (end 10.5 -7.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a48641a6-6ca8-4f12-938a-1e9d3a5e266d)) (fp_line (start 10.5 -5.3) (end 10.5 -4.9) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fcdf2b5-3521-4ae3-bc59-3621daf28711)) (fp_line (start 10.5 -2.7) (end 10.5 -2.3) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9696384a-4540-4194-989f-c35c4193e758)) (fp_line (start 10.5 -0.2) (end 10.5 0.2) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fdaa659-e193-400d-bdcf-eed518b6f97a)) (fp_line (start 10.5 2.3) (end 10.5 2.7) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38c3ea8b-f37e-49af-9f8b-696a922b0a81)) (fp_line (start 10.5 4.9) (end 10.5 5.3) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35682d85-1b72-4b49-a989-596b09b5a55d)) (fp_line (start 10.5 7.4) (end 10.5 7.8) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bbcb3f7-df71-4f8b-90dc-62bb6fa2b59b)) (fp_line (start 10.5 10) (end 10.5 10.4) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26418ada-878b-4b11-a98a-a4f3266c07b5)) (fp_line (start 10.5 12.5) (end 10.5 12.9) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6aa9ccd2-cbb1-4fb1-88ca-fdf45fa3ae37)) (fp_line (start 10.5 15.1) (end 10.5 15.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c6db7c5-49fe-42f0-acb6-29470da129fa)) (fp_line (start 10.5 17.6) (end 10.5 18) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0f637e7-82e9-4cb4-a540-df6b3d4c13ca)) (fp_line (start 10.5 20.1) (end 10.5 20.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 584f842b-34f3-443c-911a-d4cd7a8b43c4)) (fp_line (start 10.5 22.7) (end 10.5 23.1) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf70cffa-c8e4-442f-8fcf-01a3478fb9b7)) (fp_line (start 10.5 25.5) (end 7.3 25.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b9e8302-7ef9-4cfb-be1f-36056a3426f4)) (fp_line (start -7.1 17) (end 7.1 17) (stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 53581202-4de6-4ac5-afb2-e5629c4013e6)) (fp_line (start -7.1 25.5) (end -7.1 17) (stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 28f255f6-e7cb-4ae4-897a-3fa02e5267ba)) (fp_line (start 7.1 17) (end 7.1 25.5) (stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 60c3cc07-2386-45a9-bd66-c863b9f22855)) (fp_poly (pts (xy -1.5 -14.9) (xy -3.5 -14.9) (xy -3.5 -16.9) (xy -1.5 -16.9) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 885ed6c5-6a6e-4d02-8bca-95a7554d2c5e)) (fp_poly (pts (xy -1.5 -12.4) (xy -3.5 -12.4) (xy -3.5 -14.4) (xy -1.5 -14.4) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 95dc2b5d-a634-43b0-9617-3d932b02f27b)) (fp_poly (pts (xy -1.5 -9.9) (xy -3.5 -9.9) (xy -3.5 -11.9) (xy -1.5 -11.9) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 6487a342-1294-43f9-bcf2-f6bcf1e5a949)) (fp_poly (pts (xy 1.575 6.6) (xy -0.425 6.6) (xy -0.425 4.6) (xy 1.575 4.6) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 332b3c55-c524-4be7-9270-ffc28a026100)) (fp_poly (pts (xy 3.7 -20.2) (xy -3.7 -20.2) (xy -3.7 -24.9) (xy 3.7 -24.9) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 669e854c-c106-4cc2-83af-4ff887d6dcca)) (fp_poly (pts (xy 4.125 6.6) (xy 2.125 6.6) (xy 2.125 4.6) (xy 4.125 4.6) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 6e42a067-15d6-49e7-b9c8-0ec6246389c4)) (fp_poly (pts (xy 6.65 6.6) (xy 4.65 6.6) (xy 4.65 4.6) (xy 6.65 4.6) ) (stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp c84bddec-7398-479a-bd35-786250956b9d)) (fp_line (start -11 -26) (end 11 -26) (stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp b034889c-ecff-4750-9dad-c7aea947e3f2)) (fp_line (start -11 26) (end -11 -26) (stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 23e759c5-fa3c-4bcf-b974-5c71f5324d2f)) (fp_line (start 11 -26) (end 11 26) (stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp a3279d11-2898-406f-bee7-c916b0881c10)) (fp_line (start 11 26) (end -11 26) (stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 1d1b2de8-50a7-4eba-bd3b-e94eea6b2633)) (fp_line (start -10.5 -25.5) (end 10.5 -25.5) (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 7d20675d-2d35-4674-8544-90076d7e03b5)) (fp_line (start -10.5 -24.2) (end -9.2 -25.5) (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 72a3118c-9096-4ea3-88ce-3305a515579a)) (fp_line (start -10.5 25.5) (end -10.5 -25.5) (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp d49883a0-12d2-460e-a097-191433d186d5)) (fp_line (start 10.5 -25.5) (end 10.5 25.5) (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 34e7070e-5b7a-4cac-95bf-5cc9057f2070)) (fp_line (start 10.5 25.5) (end -10.5 25.5) (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp f1c9562b-91d6-477d-9dd5-1ece50a5ba97)) (pad "" np_thru_hole oval (at -2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 9d159fa7-ba62-43fd-995a-a5b3b530999b)) (pad "" np_thru_hole oval (at -2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "F&B.Cu" "*.Mask") (tstamp b921f2b2-54c3-4c0d-9f70-641897ea6142)) (pad "" np_thru_hole oval (at 0.5841 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp d0a841a1-9e4f-41fa-8928-3da2216a2657)) (pad "" np_thru_hole oval (at 2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp c900ddb8-689b-4b93-b62a-9035ad2046a5)) (pad "" np_thru_hole oval (at 2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 8a8ed353-c8e0-485a-9070-c8deac2cc33e)) (pad "" np_thru_hole oval (at 3.1241 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 404d4a8c-2814-4571-a7a4-2127d1ed95a9)) (pad "" np_thru_hole oval (at 5.6641 5.6) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 48ad4d05-5002-4b9a-a2cf-310be291a4aa)) (pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 3c14836e-d1e0-4317-b386-5748f4f0ad4c)) (pad "1" smd rect (at -8.89 -24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp b43718f5-dc30-40be-9253-c06344cd48d2)) (pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 07820dfb-89d1-4352-b8db-059cbdf1b6ca)) (pad "2" smd rect (at -8.89 -21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 249a1a0b-52d8-48f3-9059-65666187508e)) (pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 48f08a82-ecfd-42e6-b577-730395651fd2)) (pad "3" smd rect (at -8.89 -19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp aa3b40f4-0f1d-42d4-9d37-6be4fddffc05)) (pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 42525cf8-0382-444e-a6a1-65547583c51d)) (pad "4" smd rect (at -8.89 -16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 163b9e02-3cc0-43b2-9f19-59ee3ab10272)) (pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 7733dc63-e152-48c3-9123-283e7e6e4b0e)) (pad "5" smd rect (at -8.89 -13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 510307aa-04d1-4d55-8f06-1bf5daff489c)) (pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 913c2df8-2358-4e1c-9f1f-8208a2c2292b)) (pad "6" smd rect (at -8.89 -11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 614aba8c-f618-4357-ba4f-2be9cdb764ed)) (pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 5c1e4150-f096-48e4-9c0a-0577ad9218bf)) (pad "7" smd rect (at -8.89 -8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 8e25278b-e45e-44f5-a2ba-dc072cdfc665)) (pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp a5ee59ed-a32d-4115-b659-b91670558b51)) (pad "8" smd rect (at -8.89 -6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 8c7661a3-1cf3-4ce2-b22f-1960844cb968)) (pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp b75093d9-5390-4de1-bc9f-c37c1b3be5bf)) (pad "9" smd rect (at -8.89 -3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 0ed453e1-fa47-43fb-b873-573ab62dba5e)) (pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp b8ec75be-0053-4b95-a156-a0d708b5092f)) (pad "10" smd rect (at -8.89 -1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp bb18f56f-c07e-4905-a72f-7508a4aaf3ba)) (pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 2ae43cce-6524-41bf-bab8-d8f2683d2357)) (pad "11" smd rect (at -8.89 1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp ceeca828-8ea9-487d-8413-67fc2ad11278)) (pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp c49392f2-4df2-429e-8135-5c21c5e1382c)) (pad "12" smd rect (at -8.89 3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 00eedf01-f868-45fe-a111-fb3be2341d4e)) (pad "13" thru_hole rect (at -8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 6c9d3182-b4a7-4e39-8027-db9922e3602d)) (pad "13" smd rect (at -8.89 6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 590fbb12-ac01-402e-b778-947517cfe6ee)) (pad "14" thru_hole oval (at -8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 02a1641e-ae45-4799-9f89-87c804222e8f)) (pad "14" smd rect (at -8.89 8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 03fc67c0-a6d9-4fce-8f43-aae1f2f8dca2)) (pad "15" thru_hole oval (at -8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp d4f92b42-6760-4903-8118-ed963ee70cca)) (pad "15" smd rect (at -8.89 11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 196a01b9-9b72-491b-8502-821e660e05e5)) (pad "16" thru_hole oval (at -8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 1ac14973-eace-4535-9713-ecee36584dab)) (pad "16" smd rect (at -8.89 13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 1cb9c272-c2d3-469e-a4c6-bbbea1d506f0)) (pad "17" thru_hole oval (at -8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp dccd5505-6a85-4bc4-b10f-a5fa40f712c6)) (pad "17" smd rect (at -8.89 16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 17aedee9-50ea-4cff-bbe3-6ef8b2ea9fbd)) (pad "18" thru_hole rect (at -8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp d312b1f8-a365-4a4c-9fed-54919508271f)) (pad "18" smd rect (at -8.89 19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 6787577b-04dd-4568-b274-0c9ad31e5f4c)) (pad "19" thru_hole oval (at -8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 52c4d482-d914-4d96-88d0-b67a01867455)) (pad "19" smd rect (at -8.89 21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 7b631c1b-343e-4d60-95fa-0ed31d3322bf)) (pad "20" thru_hole oval (at -8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 91690ac3-0915-4763-b7d5-a410c6258938)) (pad "20" smd rect (at -8.89 24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask") (tstamp d539dd7d-d6c8-4a16-bfb7-4e67f395709c)) (pad "21" thru_hole oval (at 8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 6dfbdf83-6c1c-4ba6-a2ba-88f7d36efcb1)) (pad "21" smd rect (at 8.89 24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 1d475a6d-2f2c-4746-a69d-39bd546073d7)) (pad "22" thru_hole oval (at 8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp f75f84e1-5a68-4300-a17b-530ea7581009)) (pad "22" smd rect (at 8.89 21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 2adac1d8-d035-4946-9fdd-4789634098c5)) (pad "23" thru_hole rect (at 8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 22b6aa9f-cb29-425e-9296-59c2c24b93de)) (pad "23" smd rect (at 8.89 19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 6433c1c4-b5b0-485b-9ab4-bf7326fef425)) (pad "24" thru_hole oval (at 8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 7edec757-24b8-481f-a696-582c714a74a1)) (pad "24" smd rect (at 8.89 16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp c4433478-32e3-474c-b9aa-32c18a407658)) (pad "25" thru_hole oval (at 8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp b13fd526-a8ed-4be1-b109-55f70b539f56)) (pad "25" smd rect (at 8.89 13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 1335a61c-9225-4d54-a9de-8fb685dcbd0c)) (pad "26" thru_hole oval (at 8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp cc707d4a-e9fa-416d-b112-a02ab5dc05ed)) (pad "26" smd rect (at 8.89 11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 61e98edf-ed4d-495c-a23b-1f3178aa250b)) (pad "27" thru_hole oval (at 8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 85747fc6-a170-458c-b3a7-43d328a9ca22)) (pad "27" smd rect (at 8.89 8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp dc5dc4a1-a7d0-42a5-a830-7df496110069)) (pad "28" thru_hole rect (at 8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp ac168c28-338b-4952-a2a4-d486d051a95b)) (pad "28" smd rect (at 8.89 6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 243193ca-7a49-487b-89fb-f73c9d0bb143)) (pad "29" thru_hole oval (at 8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 5ed5ba52-9f14-4a9b-ab62-88877ee7e18e)) (pad "29" smd rect (at 8.89 3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 54bee376-9c1e-4ea7-93c9-ec734e544b43)) (pad "30" thru_hole oval (at 8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 7b37c693-968e-4b6f-ab86-92a6b44be2bf)) (pad "30" smd rect (at 8.89 1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp b1b9bf63-7ffe-4fea-89ac-5c816787830b)) (pad "31" thru_hole oval (at 8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 2fcaaf16-63a9-46e8-8e86-90a13fba37ae)) (pad "31" smd rect (at 8.89 -1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 8e7cd60b-3fc9-43cb-af96-b26852cf668a)) (pad "32" thru_hole oval (at 8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 59b65ef6-3aa2-4d5d-ac18-67dad283355e)) (pad "32" smd rect (at 8.89 -3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 663bab59-f3ee-4d37-a702-e575fb92a3d7)) (pad "33" thru_hole rect (at 8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 9fad803b-c805-4425-af5b-472e241f1550)) (pad "33" smd rect (at 8.89 -6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 95f8b40c-fd94-47ad-adfb-bc9a376fa7bb)) (pad "34" thru_hole oval (at 8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 10d897cd-b73e-4f5d-a656-ec910cae761f)) (pad "34" smd rect (at 8.89 -8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 362bce95-f42a-4ba9-a3ee-b2ce531c8aa5)) (pad "35" thru_hole oval (at 8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp c57165a5-8579-4420-81b2-07425a403a72)) (pad "35" smd rect (at 8.89 -11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp e71e9a2a-2076-4135-853a-0b38d46fca16)) (pad "36" thru_hole oval (at 8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp 20b4a9fd-06c0-445f-afed-146759f2bb5b)) (pad "36" smd rect (at 8.89 -13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp ee3d621e-237d-4382-b7e3-a9fcf17e4bec)) (pad "37" thru_hole oval (at 8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp e0b2b98e-47e3-486b-a0ec-d7330e62b063)) (pad "37" smd rect (at 8.89 -16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 3817a24d-d23c-415c-b6f7-fe1dd06f5ba1)) (pad "38" thru_hole rect (at 8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp efa4a51f-b208-4369-8af4-36e147e1f938)) (pad "38" smd rect (at 8.89 -19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 1c92e6b7-9cbf-4c7a-a924-5052f9906a0f)) (pad "39" thru_hole oval (at 8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp cccd4cea-c88e-4fc0-907f-447edef8bc42)) (pad "39" smd rect (at 8.89 -21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp 332867b2-3be3-4674-b436-1bcb7b34df15)) (pad "40" thru_hole oval (at 8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask") (tstamp f2e38f9a-9471-4d1c-a231-9b0e914557b6)) (pad "40" smd rect (at 8.89 -24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask") (tstamp dc8741d5-8cc8-4f96-892f-3db0a67f653d)) ) ================================================ FILE: kicad/FanPico.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod ================================================ (footprint "SW-SMD_L3.9-W3.0-P4.45" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (property "Reference" "U?" (at 0 -2.3175 0) (layer "F.SilkS") (uuid "bbba9bf8-f568-4dff-93f4-188d481f9c5a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "SW-SMD_L3.9-W3.0-P4.45" (at 0 2.3175 0) (layer "F.Fab") (uuid "84b46b65-f9ea-4b41-a310-bd54f906b1da") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "b38e28bf-4cc1-421e-9c35-f5aedda0aaac") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "99184caa-1125-43d7-a730-3387a1cb2f83") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "98f6ae38-0ad4-48ce-afe3-006e6aec3a1a") (effects (font (size 1 1) (thickness 0.15) ) ) ) (fp_line (start -2.026 -1.541) (end -2.026 -0.883) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "b52a9ce3-c555-432e-9a79-af40422e2b08") ) (fp_line (start -2.026 1.541) (end -2.026 0.883) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "7d612e73-44e6-4b05-a67c-ac17d7ce2d36") ) (fp_line (start 2.026 -1.541) (end -2.026 -1.541) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "69aa2b11-df61-4113-b1ea-0eb2464e02f0") ) (fp_line (start 2.026 1.541) (end -2.026 1.541) (stroke (width 0.1525) (type default) ) (layer "F.SilkS") (uuid "3b2238af-8538-4908-8fa1-c59c22b1b63d") ) (fp_circle (center 0 0) (end 0.9 0) (stroke (width 0.254) (type default) ) (fill none) (layer "F.SilkS") (uuid "ab3a65e0-a559-435d-941b-0f3798e9fe58") ) (fp_poly (pts (xy 1.95 -1.6175) (xy 1.95 -0.8325) (xy 2.255 -0.8325) (xy 2.255 -1.6175) ) (stroke (width 0) (type default) ) (fill solid) (layer "F.SilkS") (uuid "32c562fd-cb44-4f15-9262-0b24c7292faf") ) (fp_poly (pts (xy 1.95 1.6175) (xy 1.95 0.8325) (xy 2.255 0.8325) (xy 2.255 1.6175) ) (stroke (width 0) (type default) ) (fill solid) (layer "F.SilkS") (uuid "a229c8b1-7bf9-4118-ade1-d6c3605cc31f") ) (fp_poly (pts (xy -2.5 -0.65) (xy -2.5 0.65) (xy -1.6 0.65) (xy -1.6 -0.65) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "b1bdaf29-5911-4abf-acb8-486207461f73") ) (fp_poly (pts (xy 2.5 -0.65) (xy 2.5 0.65) (xy 1.6 0.65) (xy 1.6 -0.65) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.1") (uuid "3ee21371-88b9-43f3-b964-00eb5e67aea6") ) (fp_line (start -1.95 -1.465) (end 1.95 -1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "fb41e282-d398-4411-9db5-38c295d2d190") ) (fp_line (start -1.95 1.465) (end -1.95 -1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "0f3c8c7f-84b7-4efa-876e-074ddcb63525") ) (fp_line (start 1.95 -1.465) (end 1.95 1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "754539a9-8b2d-46f9-a714-2afb9503661e") ) (fp_line (start 1.95 1.465) (end -1.95 1.465) (stroke (width 0.051) (type default) ) (layer "User.2") (uuid "06edbb7d-693e-49cf-bf8c-4797a70a4ede") ) (fp_poly (pts (xy 2.56 -1.465) (xy 2.542426 -1.507426) (xy 2.5 -1.525) (xy 2.457574 -1.507426) (xy 2.44 -1.465) (xy 2.457574 -1.422574) (xy 2.5 -1.405) (xy 2.542426 -1.422574) ) (stroke (width 0) (type default) ) (fill solid) (layer "User.3") (uuid "5ad0161f-049c-4d13-aa5a-d29b14d393d5") ) (pad "1" smd rect (at -2.185 0) (size 1.23 1.36) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "55cdecad-d029-4b45-b97f-519d7665f752") ) (pad "2" smd rect (at 2.185 0) (size 1.23 1.36) (layers "F.Cu" "F.Paste" "F.Mask") (uuid "89661d92-1e2a-4033-93cb-aa8a839e073d") ) ) ================================================ FILE: kicad/FanPico.pretty/SW_PUSH_6mm_SMD_2.kicad_mod ================================================ (footprint "SW_PUSH_6mm_SMD_2" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf") (tags "tact sw push 6mm") (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (fp_text reference "SW1" (at 3.15 2.2 -180) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp c932219a-b46f-4b77-8797-49ae25993662) ) (fp_text value "SW_Push" (at 3.75 6.7 -180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 9a58ba45-633d-4a57-90b7-914093c153b5) ) (fp_text user "${REFERENCE}" (at 3.25 2.25 -180) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp d27bb157-b806-4ffd-8122-beb2ed55f1b4) ) (fp_line (start -0.25 1.5) (end -0.25 3) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8564e698-aeaa-49d7-a9e4-3313427ae637)) (fp_line (start 1 5.5) (end 5.5 5.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fe80961-56e1-43c4-b457-a0b6dc136df3)) (fp_line (start 5.5 -1) (end 1 -1) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c30e19e-adec-47c8-9887-c50aa432087f)) (fp_line (start 6.75 3) (end 6.75 1.5) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b60d0743-2afc-48ba-8967-52d4ed7edf8c)) (fp_line (start -3.5 -1.25) (end -3.5 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba4ee4d2-08a2-4daf-bc53-929765f392cc)) (fp_line (start -3.5 5.75) (end -3.5 -1.25) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67537a35-ee28-42f0-b895-bdbe68df1579)) (fp_line (start -3.5 5.75) (end -3.5 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e758ea9-63f3-4f61-a15f-f61d34fe1956)) (fp_line (start -1.5 -1.5) (end -3.5 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0d4f06e-7581-4024-9bc9-e2531b8259a2)) (fp_line (start -1.5 -1.5) (end -1.25 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb8cd998-2ddb-44a8-917e-4c2616ef66be)) (fp_line (start -1.5 6) (end -3.5 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2154594-9525-4fa0-be1c-e4c08be01676)) (fp_line (start -1.5 6) (end -1.25 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 123bd937-9ae3-445c-a429-7670940cd85a)) (fp_line (start -1.25 -1.5) (end 7.75 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 126ced91-944f-433c-b3d4-3e6ed0b6c479)) (fp_line (start 7.75 -1.5) (end 8 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81125056-eec3-4805-be6f-fc4dfb250474)) (fp_line (start 7.75 6) (end -1.25 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5f0c6a9-08d8-4284-8495-ef600b6f6196)) (fp_line (start 7.75 6) (end 8 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36483524-bd24-484c-b1c9-e64a87baf7ed)) (fp_line (start 8 -1.5) (end 10 -1.5) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00499377-9ed6-4b0e-91cf-4690064fbfd9)) (fp_line (start 10 -1.5) (end 10 -1.25) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 552bb836-20dd-44bd-b6af-44b3f3c790e6)) (fp_line (start 10 -1.25) (end 10 5.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d94fe19c-52f6-4472-a542-c95a593bad37)) (fp_line (start 10 6) (end 8 6) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed6f2a14-c76f-4c10-a98d-51454b638e0c)) (fp_line (start 10 6) (end 10 5.75) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f332ba5-9d56-4446-ac08-4f055b06236c)) (fp_line (start 0.25 -0.75) (end 3.25 -0.75) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4c30736-118a-428b-8c90-b97842d10a22)) (fp_line (start 0.25 5.25) (end 0.25 -0.75) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c403d99f-3af4-455f-82dc-8b1099b2e706)) (fp_line (start 3.25 -0.75) (end 6.25 -0.75) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6aecdc9d-baa5-4749-94f9-e73578ff5d07)) (fp_line (start 6.25 -0.75) (end 6.25 5.25) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e74558c-6e3a-4c43-b480-748790b1eba8)) (fp_line (start 6.25 5.25) (end 0.25 5.25) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8143e223-a5e5-45bf-a6ee-36d81aa52747)) (fp_circle (center 3.25 2.25) (end 1.25 2.5) (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 1c85da63-0412-4473-9b35-98f5067bd349)) (pad "1" smd roundrect (at -1 0 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (tstamp 75a995e6-a040-4dee-bf07-89f7bb5b1b8f)) (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp d225942a-9181-4243-b096-77aee5313770)) (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp 94d7f4c5-9677-41dd-b60f-377ef631fe70)) (pad "1" smd roundrect (at 7.5 0 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (tstamp 8a9cdfc5-7771-4016-92bd-332ddeed6451)) (pad "2" smd roundrect (at -1 4.5 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (tstamp 1e554fda-767b-4719-912d-8ff0b3a29734)) (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp d01f5fdd-3121-4c2a-a1a2-bc26438899d3)) (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp 146cf59e-c715-44ec-b0dd-1d915c2d04ac)) (pad "2" smd roundrect (at 7.5 4.5 90) (size 2 3) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25) (tstamp 8e249070-c0f5-47a0-99de-d0ff84d4a0d7)) (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/TE 171826-4 Floppy 4-pin Combo.kicad_mod ================================================ (footprint "TE 171826-4 Floppy 4-pin Combo" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (descr "Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf") (tags "connector barrel jack") (property "Reference" "REF**" (at 1.29 -9.5 0) (layer "F.SilkS") (uuid "73c032d7-ea3b-4237-b31a-fc426f7f7f8b") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "Floppy BarrelJack Combo 12V" (at 1.29 8.5 0) (layer "F.Fab") (hide yes) (uuid "4586abf0-479c-42f1-9b2c-2ebfb9cdd513") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 1.29 -7 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "f542c23c-e52a-43e8-8d12-a19efa9267c2") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 1.29 -7 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "626b3a13-d41f-4d0a-b826-0460696e6c42") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 1.29 -7 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "ea736bb9-7693-4583-83cc-0c443a1f2b5b") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr through_hole) (fp_line (start -5.92 -8) (end -5.92 6.7) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "896774bf-a6e6-4512-aeeb-901accd3df1d") ) (fp_line (start -5.92 -8) (end -3.5 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "2a5ef115-6a9e-49f8-bf6c-db8f63bccf1d") ) (fp_line (start -5.92 6.7) (end -5.3 6.7) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "4147189e-f1b6-41bf-a185-102d4d23050e") ) (fp_line (start -4.98 -6.782) (end -3.5 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "31f3e4ba-5198-445d-a38f-a020ea7d9b19") ) (fp_line (start -4.98 -2.182) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "c277e65c-fb02-4da5-80fe-a7e3096980d2") ) (fp_line (start -4.98 -0.782) (end -4.98 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "0fcacf7f-2e43-4040-9b23-27c65ab86150") ) (fp_line (start -4.98 0) (end 5.02 0) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "b5c23f7e-05b6-4282-bc67-1dcaa7416667") ) (fp_line (start -4.98 6.718) (end -4.98 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "f8efe57f-cfce-40fe-afff-586dd3ecd6b6") ) (fp_line (start -1.25 0) (end -1.25 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "302e6809-97ba-4487-a8b5-899e8223cca3") ) (fp_line (start -1.25 2) (end 1.29 2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "aeb28202-0eca-41a6-a25f-e1b36b012db5") ) (fp_line (start 1.29 2) (end 1.29 0) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "cc64c40c-3338-46d7-bb30-366302ec4dd3") ) (fp_line (start 1.4 -8) (end 3.57 -8) (stroke (width 0.12) (type dash) ) (layer "F.SilkS") (uuid "d26ab68a-328c-4bf5-9af9-71a03f060cad") ) (fp_line (start 3.57 -8) (end 3.57 -7.1) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "104be74d-fd49-4464-9292-f479823360a3") ) (fp_line (start 5.02 -6.782) (end 1.4 -6.782) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "f47d215a-597d-4bb3-857f-b7b18aa2a129") ) (fp_line (start 5.02 -6.782) (end 5.02 -2.182) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "73aa2237-09e6-4390-97ae-3ecac742fbda") ) (fp_line (start 5.02 -2.182) (end 5.02 -0.782) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "cbaf3c81-3816-48b3-8932-e46d92f1a974") ) (fp_line (start 5.02 -0.782) (end 5.02 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "231b12ca-7f88-4f13-9e0c-d0637ab84a0f") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.SilkS") (uuid "e479b6d0-f6c6-4d40-952c-7fc30577b2a6") ) (fp_line (start -5.3 -8.4) (end -5.3 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "53984a07-b2be-42ff-8eab-cf6ceef8cae4") ) (fp_line (start -5.3 7.1) (end 6.29 7.1) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4665ad48-c5bb-4ac5-8b09-4bbf273992b5") ) (fp_line (start 6.29 -8.4) (end -5.3 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "62e0a91a-d976-4402-95a9-9b146ece67df") ) (fp_line (start 6.29 -6.5) (end 6.29 -8.4) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "04337ed3-ece9-41d4-89c2-79636e098a96") ) (fp_line (start 6.29 7.1) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "4083caf3-83f6-4a86-b2de-9d0453bdd912") ) (fp_line (start 7.49 -6.5) (end 6.29 -6.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "f7745485-e81f-436d-b53e-4e365c8eff47") ) (fp_line (start 7.49 -6.5) (end 7.49 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "c5f21de7-0b2b-4090-8c56-67f480e63d14") ) (fp_line (start 7.49 -1.5) (end 6.29 -1.5) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "d5ca2006-b256-4ac3-b96b-0b8157b703c9") ) (fp_line (start -5.6 -6.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b5eaf2a-2415-42bc-89fa-af390ef66b5e") ) (fp_line (start -5.6 6.6) (end -5.6 -6.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3cecfda4-f9ef-4d8d-8ad9-96d4f4042102") ) (fp_line (start -4.98 -6.782) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "42bcd1f4-bfdb-4aeb-ab43-61a8c13dad92") ) (fp_line (start -4.98 6.718) (end -4.98 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "2b6e21e3-8da8-4f3c-a7b3-9dc0670e9b10") ) (fp_line (start 3.4 -7.9) (end -4.6 -7.9) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "64a93e66-27d9-4774-a037-48cbf304c735") ) (fp_line (start 3.4 -7.9) (end 3.4 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a74048fb-b585-4493-8feb-46728cb258e7") ) (fp_line (start 3.4 6.6) (end -5.6 6.6) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "2efb3af3-df6e-42a5-b44a-d96f7e6c2f83") ) (fp_line (start 5.02 6.718) (end -4.98 6.718) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "0e8118f0-22f6-4a7b-82db-cd812879a10d") ) (fp_line (start 5.02 6.718) (end 5.02 -6.782) (stroke (width 0.127) (type solid) ) (layer "F.Fab") (uuid "fe7135c7-a1a2-468b-93f7-7294a801feac") ) (fp_text user "${REFERENCE}" (at 0.7 3.4 0) (layer "F.Fab") (uuid "547ddf32-ec84-4585-831c-b295f592c871") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole oval (at 3.77 -4 90) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "5d39fec5-4085-460d-88ff-a1f403366a77") ) (pad "2" thru_hole oval (at -1.03 -1.2) (size 4 1.8) (drill oval 3 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "d1de6fa5-8f29-4c80-8e50-9a503e5d9a28") ) (pad "2" thru_hole circle (at 1.27 -4.582) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "59508334-e274-4a13-be4c-0011c3765b2f") ) (pad "3" thru_hole circle (at -1.23 -4.582) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "77f266d6-9733-482f-a9fb-5139fdc9b2d6") ) (pad "4" thru_hole circle (at -3.73 -4.582) (size 1.75 1.75) (drill 0.9) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "bf86dd31-ef73-4b22-a4ae-3ca757cf5ec2") ) (pad "4" thru_hole rect (at -1.03 -7) (size 4.4 1.8) (drill oval 3.4 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "099bc827-8011-4a85-aabe-4e4e302bdf44") ) (model "${KICAD8_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Wuerth_6941xx301002.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) ================================================ FILE: kicad/FanPico.pretty/TE 171826-4 Floppy 4-pin.kicad_mod ================================================ (footprint "TE 171826-4 Floppy 4-pin" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 6204BF02) (property "Sheetfile" "fanpico.kicad_sch") (property "Sheetname" "") (attr through_hole) (fp_text reference "J3" (at 6.1375 0 90) (layer "F.SilkS") (effects (font (size 1.004331 1.004331) (thickness 0.15))) (tstamp 94798d61-2118-47bd-8909-3a43ac1f6312) ) (fp_text value "Floppy Power Connector" (at 1.991485 7.991205) (layer "F.Fab") (effects (font (size 1.003283 1.003283) (thickness 0.15))) (tstamp 7e1e74a9-0c5d-4a47-bf93-32a9b293b99d) ) (fp_line (start -5 -0.75) (end -5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp 0fcacf7f-2e43-4040-9b23-27c65ab86150)) (fp_line (start 5 -0.75) (end 5 6.75) (layer "F.SilkS") (width 0.127) (tstamp 231b12ca-7f88-4f13-9e0c-d0637ab84a0f)) (fp_line (start -1.27 -0.762) (end -1.27 2.032) (layer "F.SilkS") (width 0.12) (tstamp 302e6809-97ba-4487-a8b5-899e8223cca3)) (fp_line (start -5 -6.75) (end 5 -6.75) (layer "F.SilkS") (width 0.127) (tstamp 31f3e4ba-5198-445d-a38f-a020ea7d9b19)) (fp_line (start 5 -6.75) (end 5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp 73aa2237-09e6-4390-97ae-3ecac742fbda)) (fp_line (start -5 -2.15) (end 5 -2.15) (layer "F.SilkS") (width 0.127) (tstamp 932c112f-3f33-4ec0-89f8-22ef5c784b66)) (fp_line (start -1.27 2.032) (end 1.27 2.032) (layer "F.SilkS") (width 0.12) (tstamp aeb28202-0eca-41a6-a25f-e1b36b012db5)) (fp_line (start -5 -0.75) (end 5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp b5c23f7e-05b6-4282-bc67-1dcaa7416667)) (fp_line (start -5 -2.15) (end -5 -6.75) (layer "F.SilkS") (width 0.127) (tstamp c277e65c-fb02-4da5-80fe-a7e3096980d2)) (fp_line (start 5 -2.15) (end 5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp cbaf3c81-3816-48b3-8932-e46d92f1a974)) (fp_line (start 1.27 2.032) (end 1.27 -0.762) (layer "F.SilkS") (width 0.12) (tstamp cc64c40c-3338-46d7-bb30-366302ec4dd3)) (fp_line (start 5 6.75) (end -5 6.75) (layer "F.SilkS") (width 0.127) (tstamp e479b6d0-f6c6-4d40-952c-7fc30577b2a6)) (fp_line (start -5 6.75) (end -5 -0.75) (layer "F.SilkS") (width 0.127) (tstamp f8efe57f-cfce-40fe-afff-586dd3ecd6b6)) (fp_line (start 5.25 7) (end -5.25 7) (layer "F.CrtYd") (width 0.05) (tstamp 220a9f28-16e2-4c5c-a8a1-0bfca7296ba3)) (fp_line (start -5.25 -7) (end 5.25 -7) (layer "F.CrtYd") (width 0.05) (tstamp bc6c2ceb-78a1-4c12-a301-82a91ea5e005)) (fp_line (start 5.25 -7) (end 5.25 7) (layer "F.CrtYd") (width 0.05) (tstamp c7944985-4e73-4a6a-9161-88093ecfec31)) (fp_line (start -5.25 7) (end -5.25 -7) (layer "F.CrtYd") (width 0.05) (tstamp edff238c-1a25-42c2-95f9-c1646be62a9d)) (fp_line (start 5 6.75) (end -5 6.75) (layer "F.Fab") (width 0.127) (tstamp 0e8118f0-22f6-4a7b-82db-cd812879a10d)) (fp_line (start -5 6.75) (end -5 -6.75) (layer "F.Fab") (width 0.127) (tstamp 2b6e21e3-8da8-4f3c-a7b3-9dc0670e9b10)) (fp_line (start -5 -6.75) (end 5 -6.75) (layer "F.Fab") (width 0.127) (tstamp 42bcd1f4-bfdb-4aeb-ab43-61a8c13dad92)) (fp_line (start 5 6.75) (end 5 -6.75) (layer "F.Fab") (width 0.127) (tstamp fe7135c7-a1a2-468b-93f7-7294a801feac)) (pad "1" thru_hole rect (at 3.75 -4.55) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (tstamp 6303f94c-8d01-4048-8b9d-6d9d9f59693c)) (pad "2" thru_hole circle (at 1.25 -4.55) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (tstamp 59508334-e274-4a13-be4c-0011c3765b2f)) (pad "3" thru_hole circle (at -1.25 -4.55) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (tstamp 77f266d6-9733-482f-a9fb-5139fdc9b2d6)) (pad "4" thru_hole circle (at -3.75 -4.55) (size 1.408 1.408) (drill 0.9) (layers *.Cu *.Mask) (tstamp bf86dd31-ef73-4b22-a4ae-3ca757cf5ec2)) ) ================================================ FILE: kicad/FanPico.pretty/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.kicad_mod ================================================ (footprint "TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (descr "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1") (tags "connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power") (property "Reference" "REF**" (at 8.89 -6.5 0) (layer "F.SilkS") (uuid "23ca6746-c718-4f11-b862-7af9c59db32d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical" (at 7.62 5.01 0) (layer "F.Fab") (uuid "c3fb906a-9f52-4b10-aa87-6f68c4589736") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "34c994e9-b756-45ad-9b1f-c79f26cefbb1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b134cce2-cf58-467e-bbae-2260fadb2011") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0eabd3c8-0229-4301-bb95-21669283b38a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr through_hole) (fp_line (start -5.23 -1.86) (end -4.15 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86109265-15c2-4e6e-b41a-c521d3a4ace2") ) (fp_line (start -5.23 1.86) (end -5.23 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4ff64008-4784-4cd3-992b-b4f4bfc6c792") ) (fp_line (start -4.15 -3.14) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bae2c984-5afa-4800-b798-fbb7dc48a3bc") ) (fp_line (start -4.15 1.86) (end -5.23 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9196a118-a37c-4736-99f1-f4e0eb616284") ) (fp_line (start -3.01 4.28) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d47e3389-7769-41f9-b6e3-a3c4057a178a") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6be421d2-ee91-4f4d-870b-bd1b6ec1e2ea") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f5a950a3-b2d8-4071-9fa9-740c83c1d728") ) (fp_line (start -2.47 -5.67) (end -0.78 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e4eff1f-ecad-4ed4-898d-46195616041a") ) (fp_line (start -2.47 -4.28) (end -2.47 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "ebb57421-4c2d-4ac3-a49e-ef0abdb128e9") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00ff7edf-f172-4acf-85fe-e705b1ddf27b") ) (fp_line (start -0.78 -5.67) (end -0.78 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "56c15ad1-0227-4803-a9ac-b7b5467f6748") ) (fp_line (start 2.42 -5.67) (end 4.11 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3b54e2bd-bf4f-4dad-b8b7-5b4ba0088b99") ) (fp_line (start 2.42 -4.28) (end 2.42 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8558078-0561-49ea-8146-a20273c5919e") ) (fp_line (start 4.11 -5.67) (end 4.11 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0d4defa0-7e43-4616-9fdc-ce1c432a1d17") ) (fp_line (start 7.5 -5.67) (end 9.19 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "502a6b42-779d-4e52-b869-584c9acb519f") ) (fp_line (start 7.5 -4.28) (end 7.5 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a5bc4ed-c20b-44c4-b864-afb986100b94") ) (fp_line (start 9.19 -5.67) (end 9.19 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fcd9bcd2-8d5f-4b7c-86bf-ced92408c590") ) (fp_line (start 12.6 -5.67) (end 14.29 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b62b65c2-c159-44e9-b92f-6cddc082ed4e") ) (fp_line (start 12.6 -4.28) (end 12.6 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1dfe4ea2-3ec0-4115-ae98-330956efac9b") ) (fp_line (start 14.29 -5.67) (end 14.29 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "292a5188-e7c6-45ed-8727-afa75915bd05") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "39b40dda-5e5f-47e2-a7ea-64bd4c2a829a") ) (fp_line (start 17.7 -5.67) (end 19.39 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "27d6e243-413b-4c8a-b6f0-90e586f4f4e2") ) (fp_line (start 17.7 -4.28) (end 17.7 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "40ee1421-0dfc-431f-8cf1-bd68d104dd4b") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6429295-e53b-4ce2-8c04-5077d4950d8d") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "20bc06bd-5e83-4a5f-9530-31a878f78ca1") ) (fp_line (start 18.25 -4.28) (end -3.01 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "696c71d8-375d-4511-bf7a-c8f4b54ac9f1") ) (fp_line (start 19.39 1.86) (end 20.47 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "917af0a5-03ea-4849-9f64-c26051625975") ) (fp_line (start 19.39 3.14) (end 19.39 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d0320447-bdec-439e-968d-6d3a49ed48cb") ) (fp_line (start 20.47 -1.86) (end 19.39 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "79ffdd25-aee8-4297-a7e9-0b7bd71bfe5c") ) (fp_line (start 20.47 1.86) (end 20.47 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "50b7e51f-faab-406a-8937-61dd3b35454a") ) (fp_arc (start -4.15 -3.14) (mid -3.816102 -3.946102) (end -3.01 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b59cf819-42fa-419f-a435-44ef90326661") ) (fp_arc (start -3.01 4.28) (mid -3.816102 3.946102) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b562a72f-c66b-4f33-90dd-966b2144c995") ) (fp_arc (start 18.25 -4.28) (mid 19.056102 -3.946102) (end 19.39 -3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f23ac201-ba2c-4753-b5ea-61e940f8391d") ) (fp_arc (start 19.39 3.14) (mid 19.056102 3.946102) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "861444c2-db10-423b-80e3-0b38d18f1881") ) (fp_line (start -5.33 -5.77) (end -5.33 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc47cb2b-7ca0-41cd-8fe9-4ef4b0b62432") ) (fp_line (start -5.33 4.38) (end 20.57 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "58a2774e-3375-49a7-a346-d5e5f14d91aa") ) (fp_line (start 20.57 -5.77) (end -5.33 -5.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "38776de3-89c8-4927-805d-061b1c24ab1b") ) (fp_line (start 20.57 4.38) (end 20.57 -5.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "88b33499-ceff-4f25-a0e7-b7a106f85de2") ) (fp_line (start -5.08 -1.71) (end -4 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4312f671-7c01-4108-b7bf-aaf81ba2f104") ) (fp_line (start -5.08 1.71) (end -5.08 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9028de7e-7335-41e7-8dbc-c7c41a465aa2") ) (fp_line (start -4 -2.99) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3935383a-47a9-4e6b-950b-539349c2515d") ) (fp_line (start -4 1.71) (end -5.08 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0605d9d-e7b9-4f74-b13c-d8ecd8ab9598") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac8d8f07-dbf2-42fb-8795-75015daca835") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "027fed4e-fa65-4738-a48a-75ce02751010") ) (fp_line (start -2.86 4.13) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "708ba15c-f062-4df9-99e8-7524c472c687") ) (fp_line (start -2.32 -5.52) (end -0.93 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94249f39-4f85-4419-bd57-4a7f2cbddb1b") ) (fp_line (start -2.32 -4.13) (end -2.32 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22e69e75-3fa1-4a91-b97e-86829553dc1e") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "de303ed9-5fd2-4709-9838-b9648b022335") ) (fp_line (start -0.93 -5.52) (end -0.93 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3571398-e1b1-49d6-a8f1-011b71869af9") ) (fp_line (start 2.57 -5.52) (end 3.96 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5eeb6303-7732-47a8-a2e9-c38ee9ff9f4e") ) (fp_line (start 2.57 -4.13) (end 2.57 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c5f05fc5-9c60-42b5-a19e-3edaa5f39777") ) (fp_line (start 3.96 -5.52) (end 3.96 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9a05c8d8-a8b5-4370-a26c-39bab946c180") ) (fp_line (start 7.65 -5.52) (end 9.04 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b43e918-080b-4f02-9676-769138d24130") ) (fp_line (start 7.65 -4.13) (end 7.65 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e6674c7-deb0-4d8b-8a7f-bdc94f0ad0df") ) (fp_line (start 9.04 -5.52) (end 9.04 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef00ab0b-0416-41e3-8f47-4428642f58b6") ) (fp_line (start 12.75 -5.52) (end 14.14 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "956f8dcc-eda3-4093-a3c9-d1fe64445894") ) (fp_line (start 12.75 -4.13) (end 12.75 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49d3c36c-0f64-47cd-84b4-f962adbd2828") ) (fp_line (start 14.14 -5.52) (end 14.14 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e46541f0-13c4-4260-b2d6-0bc34840249f") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "86db06aa-f759-442c-aceb-5ac5a6241be0") ) (fp_line (start 17.85 -5.52) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "007f1f56-30cc-4d58-af97-3ae8c5f6f73b") ) (fp_line (start 17.85 -4.13) (end 17.85 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b81189cd-2e3d-42dc-9be2-c07eb75e1acd") ) (fp_line (start 18.1 -4.13) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e769c136-06c1-4a51-b9c0-8b2938432fed") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a12376a-094e-4aa5-9204-d11dc1f47316") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fef125f7-f2a8-483d-99e3-9c6f0d8c84b5") ) (fp_line (start 19.24 1.71) (end 20.32 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "655ba34c-7689-45af-993d-de67bf8ead22") ) (fp_line (start 19.24 2.99) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0336cb8-0987-481b-a89d-de05ee2393d5") ) (fp_line (start 20.32 -1.71) (end 19.24 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "225e3673-ca45-4fcc-b888-3102635ea7a8") ) (fp_line (start 20.32 1.71) (end 20.32 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "288f706e-043a-4ab6-a089-bb67de437d21") ) (fp_arc (start -4 -2.99) (mid -3.666102 -3.796102) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "93c32018-3468-4938-97bb-445d5532f329") ) (fp_arc (start -2.86 4.13) (mid -3.666102 3.796102) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b86ae0e2-d53c-43ae-8d0e-57cac04e53df") ) (fp_arc (start 18.1 -4.13) (mid 18.906102 -3.796102) (end 19.24 -2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a07e4bad-9da8-493c-a38a-3df555d38820") ) (fp_arc (start 19.24 2.99) (mid 18.906102 3.796102) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73a2a499-b00e-4691-9ecc-5b88fb356b6a") ) (fp_text user "${REFERENCE}" (at 8 0 0) (layer "F.Fab") (uuid "82e7219e-2a05-4a55-861b-40ed9e9a9512") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "c29e0cdc-fcc2-4a13-beeb-dbbbfda7d8b8") ) (pad "2" thru_hole circle (at 5.08 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "7f6d0771-f084-436e-b04a-cdfa11721351") ) (pad "3" thru_hole circle (at 10.16 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "effb71ae-8d20-49a8-ba19-50506ce2ef99") ) (pad "4" thru_hole circle (at 15.24 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "fa477f51-e796-4065-b75a-08644ca03d7b") ) (model "${KICAD8_3DMODEL_DIR}/Connector_TE-Connectivity.3dshapes/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) ================================================ FILE: kicad/FanPico.pretty/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle.kicad_mod ================================================ (footprint "TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle" (version 20240108) (generator "pcbnew") (generator_version "8.0") (layer "F.Cu") (descr "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1") (tags "connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power") (property "Reference" "REF**" (at 8.89 -6.5 0) (layer "F.SilkS") (uuid "23ca6746-c718-4f11-b862-7af9c59db32d") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Value" "TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle" (at 7.62 5.01 0) (layer "F.Fab") (uuid "c3fb906a-9f52-4b10-aa87-6f68c4589736") (effects (font (size 1 1) (thickness 0.15) ) ) ) (property "Footprint" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "34c994e9-b756-45ad-9b1f-c79f26cefbb1") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Datasheet" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "b134cce2-cf58-467e-bbae-2260fadb2011") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (property "Description" "" (at 0 0 0) (unlocked yes) (layer "F.Fab") (hide yes) (uuid "0eabd3c8-0229-4301-bb95-21669283b38a") (effects (font (size 1.27 1.27) (thickness 0.15) ) ) ) (attr through_hole) (fp_line (start -5.23 -1.86) (end -4.15 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "86109265-15c2-4e6e-b41a-c521d3a4ace2") ) (fp_line (start -5.23 1.86) (end -5.23 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4ff64008-4784-4cd3-992b-b4f4bfc6c792") ) (fp_line (start -4.15 -3.14) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "bae2c984-5afa-4800-b798-fbb7dc48a3bc") ) (fp_line (start -4.15 1.86) (end -5.23 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "9196a118-a37c-4736-99f1-f4e0eb616284") ) (fp_line (start -4.1 -10.5) (end 19.4 -10.5) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "1091863c-ee7a-4808-9b0e-ed1807d7e89c") ) (fp_line (start -4.1 -7.7) (end -4.1 -10.5) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "4dc42b73-4227-49f8-a8b5-de9ebba41589") ) (fp_line (start -3.01 4.28) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d47e3389-7769-41f9-b6e3-a3c4057a178a") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "6be421d2-ee91-4f4d-870b-bd1b6ec1e2ea") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "f5a950a3-b2d8-4071-9fa9-740c83c1d728") ) (fp_line (start -2 -5.67) (end -0.78 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "8e4eff1f-ecad-4ed4-898d-46195616041a") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "00ff7edf-f172-4acf-85fe-e705b1ddf27b") ) (fp_line (start -0.78 -5.67) (end -0.78 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "56c15ad1-0227-4803-a9ac-b7b5467f6748") ) (fp_line (start 2.42 -5.67) (end 4.11 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "3b54e2bd-bf4f-4dad-b8b7-5b4ba0088b99") ) (fp_line (start 2.42 -4.28) (end 2.42 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d8558078-0561-49ea-8146-a20273c5919e") ) (fp_line (start 4.11 -5.67) (end 4.11 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "0d4defa0-7e43-4616-9fdc-ce1c432a1d17") ) (fp_line (start 7.5 -5.67) (end 9.19 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "502a6b42-779d-4e52-b869-584c9acb519f") ) (fp_line (start 7.5 -4.28) (end 7.5 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "4a5bc4ed-c20b-44c4-b864-afb986100b94") ) (fp_line (start 9.19 -5.67) (end 9.19 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "fcd9bcd2-8d5f-4b7c-86bf-ced92408c590") ) (fp_line (start 12.6 -5.67) (end 14.29 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b62b65c2-c159-44e9-b92f-6cddc082ed4e") ) (fp_line (start 12.6 -4.28) (end 12.6 -5.67) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "1dfe4ea2-3ec0-4115-ae98-330956efac9b") ) (fp_line (start 14.29 -5.67) (end 14.29 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "292a5188-e7c6-45ed-8727-afa75915bd05") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "39b40dda-5e5f-47e2-a7ea-64bd4c2a829a") ) (fp_line (start 17.6 -4.28) (end -2.3 -4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "696c71d8-375d-4511-bf7a-c8f4b54ac9f1") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "c6429295-e53b-4ce2-8c04-5077d4950d8d") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "20bc06bd-5e83-4a5f-9530-31a878f78ca1") ) (fp_line (start 19.39 1.86) (end 20.47 1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "917af0a5-03ea-4849-9f64-c26051625975") ) (fp_line (start 19.39 3.14) (end 19.4 -3.2) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "d0320447-bdec-439e-968d-6d3a49ed48cb") ) (fp_line (start 19.4 -10.5) (end 19.4 -7.7) (stroke (width 0.12) (type default) ) (layer "F.SilkS") (uuid "0e5dde12-3ca6-4246-b66c-0f121d7670d6") ) (fp_line (start 20.47 -1.86) (end 19.39 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "79ffdd25-aee8-4297-a7e9-0b7bd71bfe5c") ) (fp_line (start 20.47 1.86) (end 20.47 -1.86) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "50b7e51f-faab-406a-8937-61dd3b35454a") ) (fp_arc (start -3.01 4.28) (mid -3.816102 3.946102) (end -4.15 3.14) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "b562a72f-c66b-4f33-90dd-966b2144c995") ) (fp_arc (start 19.39 3.14) (mid 19.056102 3.946102) (end 18.25 4.28) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") (uuid "861444c2-db10-423b-80e3-0b38d18f1881") ) (fp_line (start -2.47 -4.28) (end -2.47 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "ebb57421-4c2d-4ac3-a49e-ef0abdb128e9") ) (fp_line (start 17.7 -5.67) (end 19.39 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "27d6e243-413b-4c8a-b6f0-90e586f4f4e2") ) (fp_line (start 17.7 -4.28) (end 17.7 -5.67) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "40ee1421-0dfc-431f-8cf1-bd68d104dd4b") ) (fp_arc (start -4.15 -3.14) (mid -3.816102 -3.946102) (end -3.01 -4.28) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "b59cf819-42fa-419f-a435-44ef90326661") ) (fp_arc (start 18.25 -4.28) (mid 19.056102 -3.946102) (end 19.39 -3.14) (stroke (width 0.12) (type solid) ) (layer "Dwgs.User") (uuid "f23ac201-ba2c-4753-b5ea-61e940f8391d") ) (fp_line (start -5.33 -10.77) (end -5.33 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "dc47cb2b-7ca0-41cd-8fe9-4ef4b0b62432") ) (fp_line (start -5.33 4.38) (end 20.57 4.38) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "58a2774e-3375-49a7-a346-d5e5f14d91aa") ) (fp_line (start 20.57 -10.77) (end -5.33 -10.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "38776de3-89c8-4927-805d-061b1c24ab1b") ) (fp_line (start 20.57 4.38) (end 20.57 -10.77) (stroke (width 0.05) (type solid) ) (layer "F.CrtYd") (uuid "88b33499-ceff-4f25-a0e7-b7a106f85de2") ) (fp_line (start -5.08 -1.71) (end -4 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "4312f671-7c01-4108-b7bf-aaf81ba2f104") ) (fp_line (start -5.08 1.71) (end -5.08 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9028de7e-7335-41e7-8dbc-c7c41a465aa2") ) (fp_line (start -4 -2.99) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3935383a-47a9-4e6b-950b-539349c2515d") ) (fp_line (start -4 1.71) (end -5.08 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "d0605d9d-e7b9-4f74-b13c-d8ecd8ab9598") ) (fp_line (start -2.95 -3.22) (end 18.19 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ac8d8f07-dbf2-42fb-8795-75015daca835") ) (fp_line (start -2.95 1.39) (end -2.95 -3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "027fed4e-fa65-4738-a48a-75ce02751010") ) (fp_line (start -2.86 4.13) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "708ba15c-f062-4df9-99e8-7524c472c687") ) (fp_line (start -2.32 -5.52) (end -0.93 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "94249f39-4f85-4419-bd57-4a7f2cbddb1b") ) (fp_line (start -2.32 -4.13) (end -2.32 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "22e69e75-3fa1-4a91-b97e-86829553dc1e") ) (fp_line (start -1.12 3.22) (end -2.95 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "de303ed9-5fd2-4709-9838-b9648b022335") ) (fp_line (start -0.93 -5.52) (end -0.93 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c3571398-e1b1-49d6-a8f1-011b71869af9") ) (fp_line (start 2.57 -5.52) (end 3.96 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5eeb6303-7732-47a8-a2e9-c38ee9ff9f4e") ) (fp_line (start 2.57 -4.13) (end 2.57 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c5f05fc5-9c60-42b5-a19e-3edaa5f39777") ) (fp_line (start 3.96 -5.52) (end 3.96 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "9a05c8d8-a8b5-4370-a26c-39bab946c180") ) (fp_line (start 7.65 -5.52) (end 9.04 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "5b43e918-080b-4f02-9676-769138d24130") ) (fp_line (start 7.65 -4.13) (end 7.65 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "8e6674c7-deb0-4d8b-8a7f-bdc94f0ad0df") ) (fp_line (start 9.04 -5.52) (end 9.04 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "ef00ab0b-0416-41e3-8f47-4428642f58b6") ) (fp_line (start 12.75 -5.52) (end 14.14 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "956f8dcc-eda3-4093-a3c9-d1fe64445894") ) (fp_line (start 12.75 -4.13) (end 12.75 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "49d3c36c-0f64-47cd-84b4-f962adbd2828") ) (fp_line (start 14.14 -5.52) (end 14.14 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e46541f0-13c4-4260-b2d6-0bc34840249f") ) (fp_line (start 16.36 3.22) (end -1.12 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "86db06aa-f759-442c-aceb-5ac5a6241be0") ) (fp_line (start 17.85 -5.52) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "007f1f56-30cc-4d58-af97-3ae8c5f6f73b") ) (fp_line (start 17.85 -4.13) (end 17.85 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b81189cd-2e3d-42dc-9be2-c07eb75e1acd") ) (fp_line (start 18.1 -4.13) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "e769c136-06c1-4a51-b9c0-8b2938432fed") ) (fp_line (start 18.19 -3.22) (end 18.19 1.39) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "3a12376a-094e-4aa5-9204-d11dc1f47316") ) (fp_line (start 18.19 1.39) (end 16.36 3.22) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "fef125f7-f2a8-483d-99e3-9c6f0d8c84b5") ) (fp_line (start 19.24 1.71) (end 20.32 1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "655ba34c-7689-45af-993d-de67bf8ead22") ) (fp_line (start 19.24 2.99) (end 19.24 -5.52) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "c0336cb8-0987-481b-a89d-de05ee2393d5") ) (fp_line (start 20.32 -1.71) (end 19.24 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "225e3673-ca45-4fcc-b888-3102635ea7a8") ) (fp_line (start 20.32 1.71) (end 20.32 -1.71) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "288f706e-043a-4ab6-a089-bb67de437d21") ) (fp_arc (start -4 -2.99) (mid -3.666102 -3.796102) (end -2.86 -4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "93c32018-3468-4938-97bb-445d5532f329") ) (fp_arc (start -2.86 4.13) (mid -3.666102 3.796102) (end -4 2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "b86ae0e2-d53c-43ae-8d0e-57cac04e53df") ) (fp_arc (start 18.1 -4.13) (mid 18.906102 -3.796102) (end 19.24 -2.99) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "a07e4bad-9da8-493c-a38a-3df555d38820") ) (fp_arc (start 19.24 2.99) (mid 18.906102 3.796102) (end 18.1 4.13) (stroke (width 0.1) (type solid) ) (layer "F.Fab") (uuid "73a2a499-b00e-4691-9ecc-5b88fb356b6a") ) (fp_text user "${REFERENCE}" (at 8 0 0) (layer "F.Fab") (uuid "82e7219e-2a05-4a55-861b-40ed9e9a9512") (effects (font (size 1 1) (thickness 0.15) ) ) ) (pad "1" thru_hole rect (at 0 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "c29e0cdc-fcc2-4a13-beeb-dbbbfda7d8b8") ) (pad "2" thru_hole circle (at 5.08 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "7f6d0771-f084-436e-b04a-cdfa11721351") ) (pad "3" thru_hole circle (at 10.16 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "effb71ae-8d20-49a8-ba19-50506ce2ef99") ) (pad "4" thru_hole circle (at 15.24 0) (size 2.78 2.78) (drill 1.78) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "fa477f51-e796-4065-b75a-08644ca03d7b") ) (pad "MP" thru_hole circle (at -4.23 -5.45) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "13523e2f-297b-4746-a392-9e42b177b0b1") ) (pad "MP" thru_hole circle (at 19.47 -5.45 90) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask") (remove_unused_layers no) (uuid "3f175170-91ef-4357-922d-9d5fe531fa4d") ) (model "${KICAD8_3DMODEL_DIR}/Connector_TE-Connectivity.3dshapes/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.wrl" (offset (xyz 0 0 0) ) (scale (xyz 1 1 1) ) (rotate (xyz 0 0 0) ) ) ) ================================================ FILE: kicad/FanPico.pretty/TSOT-26.kicad_mod ================================================ (footprint "TSOT-26" (version 20221018) (generator pcbnew) (layer "F.Cu") (descr "TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "TSOT TO_SOT_SMD") (attr smd) (fp_text reference "REF**" (at 0 -2.4) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp e5f85019-ee8d-436f-ad37-2385a4d5baeb) ) (fp_text value "TSOT-26" (at 0 2.4) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 2ac81080-3210-45ab-9337-af7caea2a155) ) (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") (effects (font (size 0.4 0.4) (thickness 0.06))) (tstamp f33af309-2b7f-49ab-bac2-d1742c23f0be) ) (fp_line (start 0 -1.56) (end -1.8 -1.56) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1a3c501-0992-4efb-a215-fa1a9133e6eb)) (fp_line (start 0 -1.56) (end 0.8 -1.56) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0156eab0-739e-4685-b798-9b7f3a1898a3)) (fp_line (start 0 1.56) (end -0.8 1.56) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92dc4786-0829-4ebf-9b5c-1ef69ba34667)) (fp_line (start 0 1.56) (end 0.8 1.56) (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43d26116-cd68-47a2-8ac8-cb962cde5547)) (fp_line (start -2.05 -1.7) (end -2.05 1.7) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d7bf887-20f7-4b29-99ed-dadf8df0b42c)) (fp_line (start -2.05 1.7) (end 2.05 1.7) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6017566f-891c-4832-8c2e-7dde018426ff)) (fp_line (start 2.05 -1.7) (end -2.05 -1.7) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efb77f93-0c6f-4b97-a320-8c3e2fa8cc77)) (fp_line (start 2.05 1.7) (end 2.05 -1.7) (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dae658cd-5445-47cd-a503-f0f515e44d6b)) (fp_line (start -0.8 -1.05) (end -0.4 -1.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72b8ea2e-3e88-480f-b405-e7242599ec3c)) (fp_line (start -0.8 1.45) (end -0.8 -1.05) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09be43a7-c7a4-4c69-80f5-b69962ac60be)) (fp_line (start -0.4 -1.45) (end 0.8 -1.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce945bc2-3c68-4f06-b4b8-08539242732c)) (fp_line (start 0.8 -1.45) (end 0.8 1.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84070510-01bf-447a-8cbb-d235591e202c)) (fp_line (start 0.8 1.45) (end -0.8 1.45) (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06abafc8-46ce-4ad9-9fc4-d3f3a2cdcedc)) (pad "1" smd roundrect (at -1.2 -0.95) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d6d92df7-27ff-4f4d-a0bf-271c986fbcb8)) (pad "2" smd roundrect (at -1.2 0) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 6998b8a2-eb56-4db5-95a9-d744fca72c7c)) (pad "3" smd roundrect (at -1.2 0.95) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 0df4f1ad-8d52-4b58-9783-bda29e813377)) (pad "4" smd roundrect (at 1.2 0.95) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2fc9be8f-2da2-4b74-8fbf-8ca0aade6ef4)) (pad "5" smd roundrect (at 1.2 0) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp f9122a79-508a-4f7b-8aef-54ddc84afa8d)) (pad "6" smd roundrect (at 1.2 -0.95) (size 1.2 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 508d8d67-af29-447d-ba0c-0d777f551b07)) (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TSOT-23-6.wrl" hide (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) ================================================ FILE: kicad/FanPico.pretty/ToolingHole_1.152mm.kicad_mod ================================================ (footprint "ToolingHole_1.152mm" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5B924920) (descr "Mounting Hole 2mm, no annular") (tags "mounting hole 2mm no annular") (attr exclude_from_pos_files exclude_from_bom) (fp_text reference "REF**" (at -0.05 -2.65) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp a6c85626-27f1-4353-8b9d-ea3e559a3b58) ) (fp_text value "ToolingHole_1.152mm" (at 0 3.1) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5994e56d-d6af-4c4c-97b6-e7c444cebb1c) ) (fp_text user "${REFERENCE}" (at -0.025 -3.2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) (tstamp ab0d0b3e-4d37-4ce2-84a8-10c03ad56292) ) (fp_circle (center 0 0) (end 0.825 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp c42e164e-6e17-4713-9d55-c383b3e110ac)) (fp_circle (center 0 0) (end 1.05 0.025) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 69b07897-e8d8-44e3-904e-f1afe3ecde02)) (pad "" np_thru_hole circle (at 0 0) (size 1.152 1.152) (drill 1.152) (layers F&B.Cu *.Mask) (solder_mask_margin 0.148) (clearance 0.5) (tstamp e8294527-4882-4155-8d13-f98b1ba28bee)) ) ================================================ FILE: kicad/README.md ================================================ # KiCad Symbols and Footprints used in FanPico PCBs Non-standard symbols and footprints used in FanPico and BrickPico PCB designs: - Symbols: fanpico.kicad_sym - Footprints: FanPico.pretty ================================================ FILE: kicad/fanpico.kicad_sym ================================================ (kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor) (symbol "CD74HC4050NSR" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) (property "Reference" "U" (at -12.7 16.2306 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Value" "CD74HC4050NSR" (at -12.7 -19.2278 0) (effects (font (size 1.27 1.27)) (justify left bottom)) ) (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (symbol "CD74HC4050NSR_0_0" (rectangle (start -12.7 -15.24) (end 12.7 15.24) (stroke (width 0.4064) (type default)) (fill (type background)) ) (pin power_in line (at 17.78 12.7 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016)))) (number "1" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 0 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016)))) (number "10" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "5A" (effects (font (size 1.016 1.016)))) (number "11" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 -2.54 180) (length 5.08) (name "5Y" (effects (font (size 1.016 1.016)))) (number "12" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "6A" (effects (font (size 1.016 1.016)))) (number "14" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 -5.08 180) (length 5.08) (name "6Y" (effects (font (size 1.016 1.016)))) (number "15" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016)))) (number "2" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016)))) (number "3" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016)))) (number "4" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016)))) (number "5" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016)))) (number "6" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016)))) (number "7" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 -10.16 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016)))) (number "8" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 0 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016)))) (number "9" (effects (font (size 1.016 1.016)))) ) ) ) (symbol "LD29300" (in_bom yes) (on_board yes) (property "Reference" "U" (at -6.35 6.35 0) (effects (font (size 1.27 1.27))) ) (property "Value" "LD29300" (at 2.54 6.35 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "Package_TO_SOT_SMD:TO-263-5_TabPin3" (at 2.54 -6.35 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (property "Datasheet" "https://www.st.com/resource/en/datasheet/ld29300.pdf" (at 0 12.7 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_keywords" "3A LDO linear voltage regulator adjustable positive" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_description" "3A very low dropout linear regulator, adjustable output, TO-263" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "ki_fp_filters" "TO*263*" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "LD29300_1_1" (rectangle (start -7.62 5.08) (end 7.62 -5.08) (stroke (width 0.254) (type default)) (fill (type background)) ) (pin input line (at -10.16 2.54 0) (length 2.54) (name "EN" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -10.16 0 0) (length 2.54) (name "VIN" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -2.54 -7.62 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin power_out line (at 10.16 0 180) (length 2.54) (name "VOUT" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) (pin input line (at 1.27 -7.62 90) (length 2.54) (name "ADJ" (effects (font (size 1.27 1.27)))) (number "5" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "Pico" (in_bom yes) (on_board yes) (property "Reference" "U4" (at 0 31.75 0) (effects (font (size 1.27 1.27))) ) (property "Value" "Pico" (at 0 29.21 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "FanPico:RPi_Pico_PicoW_SMD_TH" (at 0 0 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "Pico_0_0" (text "Raspberry Pi Pico" (at 0 21.59 0) (effects (font (size 1.27 1.27))) ) ) (symbol "Pico_0_1" (rectangle (start -15.24 26.67) (end 15.24 -26.67) (stroke (width 0) (type solid)) (fill (type background)) ) ) (symbol "Pico_1_1" (pin bidirectional line (at -17.78 24.13 0) (length 2.54) (name "GPIO0" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 1.27 0) (length 2.54) (name "GPIO7" (effects (font (size 1.27 1.27)))) (number "10" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -1.27 0) (length 2.54) (name "GPIO8" (effects (font (size 1.27 1.27)))) (number "11" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -3.81 0) (length 2.54) (name "GPIO9" (effects (font (size 1.27 1.27)))) (number "12" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 -6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "13" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -8.89 0) (length 2.54) (name "GPIO10" (effects (font (size 1.27 1.27)))) (number "14" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -11.43 0) (length 2.54) (name "GPIO11" (effects (font (size 1.27 1.27)))) (number "15" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -13.97 0) (length 2.54) (name "GPIO12" (effects (font (size 1.27 1.27)))) (number "16" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -16.51 0) (length 2.54) (name "GPIO13" (effects (font (size 1.27 1.27)))) (number "17" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 -19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "18" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -21.59 0) (length 2.54) (name "GPIO14" (effects (font (size 1.27 1.27)))) (number "19" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 21.59 0) (length 2.54) (name "GPIO1" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 -24.13 0) (length 2.54) (name "GPIO15" (effects (font (size 1.27 1.27)))) (number "20" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -24.13 180) (length 2.54) (name "GPIO16" (effects (font (size 1.27 1.27)))) (number "21" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -21.59 180) (length 2.54) (name "GPIO17" (effects (font (size 1.27 1.27)))) (number "22" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 -19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "23" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -16.51 180) (length 2.54) (name "GPIO18" (effects (font (size 1.27 1.27)))) (number "24" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -13.97 180) (length 2.54) (name "GPIO19" (effects (font (size 1.27 1.27)))) (number "25" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -11.43 180) (length 2.54) (name "GPIO20" (effects (font (size 1.27 1.27)))) (number "26" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -8.89 180) (length 2.54) (name "GPIO21" (effects (font (size 1.27 1.27)))) (number "27" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 -6.35 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "28" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 -3.81 180) (length 2.54) (name "GPIO22" (effects (font (size 1.27 1.27)))) (number "29" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 19.05 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) (pin input line (at 17.78 -1.27 180) (length 2.54) (name "RUN" (effects (font (size 1.27 1.27)))) (number "30" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 1.27 180) (length 2.54) (name "GPIO26_ADC0" (effects (font (size 1.27 1.27)))) (number "31" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 3.81 180) (length 2.54) (name "GPIO27_ADC1" (effects (font (size 1.27 1.27)))) (number "32" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 6.35 180) (length 2.54) (name "AGND" (effects (font (size 1.27 1.27)))) (number "33" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 17.78 8.89 180) (length 2.54) (name "GPIO28_ADC2" (effects (font (size 1.27 1.27)))) (number "34" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 11.43 180) (length 2.54) (name "ADC_VREF" (effects (font (size 1.27 1.27)))) (number "35" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 13.97 180) (length 2.54) (name "3V3" (effects (font (size 1.27 1.27)))) (number "36" (effects (font (size 1.27 1.27)))) ) (pin input line (at 17.78 16.51 180) (length 2.54) (name "3V3_EN" (effects (font (size 1.27 1.27)))) (number "37" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 19.05 180) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "38" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 21.59 180) (length 2.54) (name "VSYS" (effects (font (size 1.27 1.27)))) (number "39" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 16.51 0) (length 2.54) (name "GPIO2" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 17.78 24.13 180) (length 2.54) (name "VBUS" (effects (font (size 1.27 1.27)))) (number "40" (effects (font (size 1.27 1.27)))) ) (pin input line (at -2.54 -29.21 90) (length 2.54) (name "SWCLK" (effects (font (size 1.27 1.27)))) (number "41" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at 0 -29.21 90) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "42" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at 2.54 -29.21 90) (length 2.54) (name "SWDIO" (effects (font (size 1.27 1.27)))) (number "43" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 13.97 0) (length 2.54) (name "GPIO3" (effects (font (size 1.27 1.27)))) (number "5" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 11.43 0) (length 2.54) (name "GPIO4" (effects (font (size 1.27 1.27)))) (number "6" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 8.89 0) (length 2.54) (name "GPIO5" (effects (font (size 1.27 1.27)))) (number "7" (effects (font (size 1.27 1.27)))) ) (pin power_in line (at -17.78 6.35 0) (length 2.54) (name "GND" (effects (font (size 1.27 1.27)))) (number "8" (effects (font (size 1.27 1.27)))) ) (pin bidirectional line (at -17.78 3.81 0) (length 2.54) (name "GPIO6" (effects (font (size 1.27 1.27)))) (number "9" (effects (font (size 1.27 1.27)))) ) ) ) (symbol "SN74AHCT125PW" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) (property "Reference" "U1" (at 0 22.86 0) (effects (font (size 1.27 1.27))) ) (property "Value" "SN74AHCT125QDRQ1" (at 0 20.32 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27)) (justify left bottom) hide) ) (property "LCSC Part Number" "C155176" (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (symbol "SN74AHCT125PW_0_0" (rectangle (start -12.7 -17.78) (end 12.7 17.78) (stroke (width 0.4064) (type solid)) (fill (type background)) ) (pin input line (at -17.78 0 0) (length 5.08) (name "~{1OE}" (effects (font (size 1.016 1.016)))) (number "1" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -5.08 0) (length 5.08) (name "~{3OE}" (effects (font (size 1.016 1.016)))) (number "10" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 2.54 180) (length 5.08) (name "4Y" (effects (font (size 1.016 1.016)))) (number "11" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 2.54 0) (length 5.08) (name "4A" (effects (font (size 1.016 1.016)))) (number "12" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -7.62 0) (length 5.08) (name "~{4OE}" (effects (font (size 1.016 1.016)))) (number "13" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 15.24 180) (length 5.08) (name "VCC" (effects (font (size 1.016 1.016)))) (number "14" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 10.16 0) (length 5.08) (name "1A" (effects (font (size 1.016 1.016)))) (number "2" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 10.16 180) (length 5.08) (name "1Y" (effects (font (size 1.016 1.016)))) (number "3" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 -2.54 0) (length 5.08) (name "~{2OE}" (effects (font (size 1.016 1.016)))) (number "4" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 7.62 0) (length 5.08) (name "2A" (effects (font (size 1.016 1.016)))) (number "5" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 7.62 180) (length 5.08) (name "2Y" (effects (font (size 1.016 1.016)))) (number "6" (effects (font (size 1.016 1.016)))) ) (pin power_in line (at 17.78 -15.24 180) (length 5.08) (name "GND" (effects (font (size 1.016 1.016)))) (number "7" (effects (font (size 1.016 1.016)))) ) (pin output line (at 17.78 5.08 180) (length 5.08) (name "3Y" (effects (font (size 1.016 1.016)))) (number "8" (effects (font (size 1.016 1.016)))) ) (pin input line (at -17.78 5.08 0) (length 5.08) (name "3A" (effects (font (size 1.016 1.016)))) (number "9" (effects (font (size 1.016 1.016)))) ) ) ) ) ================================================ FILE: mibs/TJKO-FanPico-MIB ================================================ TJKO-FanPico-MIB DEFINITIONS ::= BEGIN IMPORTS devices FROM TJKO-ROOT-MIB MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Integer32 FROM SNMPv2-SMI OBJECT-GROUP, MODULE-COMPLIANCE FROM SNMPv2-CONF TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC ; fanpico MODULE-IDENTITY LAST-UPDATED "202503190000Z" ORGANIZATION "TJKO Industries" CONTACT-INFO "Timo Kokkonen EMail: tjko@iki.fi https://kokkonen.net/fanpico/" DESCRIPTION "The MIB module for FanPico Smart PWM (PC) Fan Controllers." REVISION "202503190000Z" DESCRIPTION "Initial revision of this MIB module." ::= { devices 1 } fanpicoObjects OBJECT IDENTIFIER ::= { fanpico 1 } fanpicoTraps OBJECT IDENTIFIER ::= { fanpico 2 } fanpicoConformance OBJECT IDENTIFIER ::= { fanpico 3 } fanpicoCompliance OBJECT IDENTIFIER ::= { fanpicoConformance 1 } fanpicoGroups OBJECT IDENTIFIER ::= { fanpicoConformance 2 } fanpicoBasicCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "Compliance statement for the entities in this fanpico MIB." MODULE MANDATORY-GROUPS { fanpicoFanGroup, fanpicoMBFanGroup, fanpicoSensorGroup } ::= { fanpicoCompliance 1 } fanpicoFanGroup OBJECT-GROUP OBJECTS { fanCount, fanName, fanRPM, fanDutyCycle, fanFrequency } STATUS current DESCRIPTION "Fan Information Objects" ::= { fanpicoGroups 1 } fanpicoMBFanGroup OBJECT-GROUP OBJECTS { mbfanCount, mbfanName, mbfanRPM, mbfanDutyCycle, mbfanFrequency } STATUS current DESCRIPTION "MBFan Information Objects" ::= { fanpicoGroups 2 } fanpicoSensorGroup OBJECT-GROUP OBJECTS { sensorCount, sensorName, sensorTemperature, sensorDutyCycle, vsensorCount, vsensorName, vsensorTemperature, vsensorHumidity, vsensorPressure, vsensorDutyCycle } STATUS current DESCRIPTION "Sensor Information Objects" ::= { fanpicoGroups 3 } -- -- Textual Conventions -- SpeedRPM ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-0" STATUS current DESCRIPTION "This data type represents fan speed expressed in RPM." SYNTAX Unsigned32 TachoHz ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-0" STATUS current DESCRIPTION "This data type represents tachometer signal frequency expressed in Hz." SYNTAX Unsigned32 DutyCycle ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-0" STATUS current DESCRIPTION "This data type represents PWM signal duty cycle expressed in %." SYNTAX Unsigned32 (0..100) TemperatureC ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-1" STATUS current DESCRIPTION "This data type represents temperature in Celcius." SYNTAX Integer32 HumidityPercent ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-1" STATUS current DESCRIPTION "This data type represents relative humidity expressed in %." SYNTAX Unsigned32 (0..100) BarometricPressure ::= TEXTUAL-CONVENTION DISPLAY-HINT "d-1" STATUS current DESCRIPTION "This data type represents barometric pressure expressed in hPa." SYNTAX Unsigned32 -- -- "Fan" Information -- fanCount OBJECT-TYPE SYNTAX Integer32 (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "Number of Fan (output) ports present on the device." ::= { fanpicoObjects 1 } fanTable OBJECT-TYPE SYNTAX SEQUENCE OF FanTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains current Fan statuses." ::= { fanpicoObjects 2 } fanTableEntry OBJECT-TYPE SYNTAX FanTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Fan status table entry." INDEX { fanID } ::= { fanTable 1 } FanTableEntry ::= SEQUENCE { fanID Integer32, fanName DisplayString, fanRPM SpeedRPM, fanFrequency TachoHz, fanDutyCycle DutyCycle } fanID OBJECT-TYPE SYNTAX Integer32 (1..255) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Fan port number." ::= { fanTableEntry 1 } fanName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Fan port name." ::= { fanTableEntry 2 } fanRPM OBJECT-TYPE SYNTAX SpeedRPM MAX-ACCESS read-only STATUS current DESCRIPTION "Fan RPM." ::= { fanTableEntry 3 } fanFrequency OBJECT-TYPE SYNTAX TachoHz MAX-ACCESS read-only STATUS current DESCRIPTION "Fan tachometer signal frequency." ::= { fanTableEntry 4 } fanDutyCycle OBJECT-TYPE SYNTAX DutyCycle MAX-ACCESS read-only STATUS current DESCRIPTION "Fan PWM signal duty cycle." ::= { fanTableEntry 5 } -- -- "MB Fan" Information -- mbfanCount OBJECT-TYPE SYNTAX Integer32 (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "Number of MB Fan (input) ports present on the device." ::= { fanpicoObjects 3 } mbfanTable OBJECT-TYPE SYNTAX SEQUENCE OF MbfanTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains current MB Fan statuses." ::= { fanpicoObjects 4 } mbfanTableEntry OBJECT-TYPE SYNTAX MbfanTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "MB Fan status table entry." INDEX { mbfanID } ::= { mbfanTable 1 } MbfanTableEntry ::= SEQUENCE { mbfanID Integer32, mbfanName DisplayString, mbfanRPM SpeedRPM, mbfanFrequency TachoHz, mbfanDutyCycle DutyCycle } mbfanID OBJECT-TYPE SYNTAX Integer32 (1..255) MAX-ACCESS not-accessible STATUS current DESCRIPTION "MB Fan port number." ::= { mbfanTableEntry 1 } mbfanName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "MB Fan port name." ::= { mbfanTableEntry 2 } mbfanRPM OBJECT-TYPE SYNTAX SpeedRPM MAX-ACCESS read-only STATUS current DESCRIPTION "MB Fan RPM." ::= { mbfanTableEntry 3 } mbfanFrequency OBJECT-TYPE SYNTAX TachoHz MAX-ACCESS read-only STATUS current DESCRIPTION "MB Fan tachometer signal frequency." ::= { mbfanTableEntry 4 } mbfanDutyCycle OBJECT-TYPE SYNTAX DutyCycle MAX-ACCESS read-only STATUS current DESCRIPTION "MB Fan PWM signal duty cycle." ::= { mbfanTableEntry 5 } -- -- "Sensor" Information -- sensorCount OBJECT-TYPE SYNTAX Integer32 (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "Number of analog sensor ports present on the device." ::= { fanpicoObjects 5 } sensorTable OBJECT-TYPE SYNTAX SEQUENCE OF SensorTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains current Sensor temperatures." ::= { fanpicoObjects 6 } sensorTableEntry OBJECT-TYPE SYNTAX SensorTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Sensor status table entry." INDEX { sensorID } ::= { sensorTable 1 } SensorTableEntry ::= SEQUENCE { sensorID Integer32, sensorName DisplayString, sensorTemperature TemperatureC, sensorDutyCycle DutyCycle } sensorID OBJECT-TYPE SYNTAX Integer32 (1..255) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Sensor port number." ::= { sensorTableEntry 1 } sensorName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Sensor port name." ::= { sensorTableEntry 2 } sensorTemperature OBJECT-TYPE SYNTAX TemperatureC MAX-ACCESS read-only STATUS current DESCRIPTION "Sensor Temperature (C)." ::= { sensorTableEntry 3 } sensorDutyCycle OBJECT-TYPE SYNTAX DutyCycle MAX-ACCESS read-only STATUS current DESCRIPTION "Sensor gnerated PWM signal duty cycle." ::= { sensorTableEntry 4 } -- -- "VSensor" Information -- vsensorCount OBJECT-TYPE SYNTAX Integer32 (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "Number of virtual sensor ports present on the device." ::= { fanpicoObjects 7 } vsensorTable OBJECT-TYPE SYNTAX SEQUENCE OF VsensorTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains current virtual sensor outputs." ::= { fanpicoObjects 8 } vsensorTableEntry OBJECT-TYPE SYNTAX VsensorTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Virtual Sensor status table entry." INDEX { vsensorID } ::= { vsensorTable 1 } VsensorTableEntry ::= SEQUENCE { vsensorID Integer32, vsensorName DisplayString, vsensorTemperature TemperatureC, vsensorHumidity HumidityPercent, vsensorPressure BarometricPressure, vsensorDutyCycle DutyCycle } vsensorID OBJECT-TYPE SYNTAX Integer32 (1..255) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Virtual Sensor number." ::= { vsensorTableEntry 1 } vsensorName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Virtual Sensor name." ::= { vsensorTableEntry 2 } vsensorTemperature OBJECT-TYPE SYNTAX TemperatureC MAX-ACCESS read-only STATUS current DESCRIPTION "Virtual Sensor Temperature (C)." ::= { vsensorTableEntry 3 } vsensorHumidity OBJECT-TYPE SYNTAX HumidityPercent MAX-ACCESS read-only STATUS current DESCRIPTION "Virtual Sensor Humidity (%)." ::= { vsensorTableEntry 4 } vsensorPressure OBJECT-TYPE SYNTAX BarometricPressure MAX-ACCESS read-only STATUS current DESCRIPTION "Virtual Sensor Pressure (hPa)." ::= { vsensorTableEntry 5 } vsensorDutyCycle OBJECT-TYPE SYNTAX DutyCycle MAX-ACCESS read-only STATUS current DESCRIPTION "Virtual Sensor generated PWM signal duty cycle." ::= { vsensorTableEntry 6 } END ================================================ FILE: mibs/TJKO-ROOT-MIB ================================================ TJKO-ROOT-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-IDENTITY, enterprises FROM SNMPv2-SMI ; tjko MODULE-IDENTITY LAST-UPDATED "202503180000Z" ORGANIZATION "TJKO Industries" CONTACT-INFO "Timo Kokkonen EMail: tjko@iki.fi" DESCRIPTION "The TJKO root MIB." REVISION "202503180000Z" DESCRIPTION "Initial revision of this MIB module." ::= { enterprises 63264 } devices OBJECT-IDENTITY STATUS current DESCRIPTION "Device specific MIBs are defined under this object." ::= { tjko 1 } END ================================================ FILE: src/bi_decl.c ================================================ /* bi_decl.c Copyright (C) 2021-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include "pico/stdlib.h" #include "pico/binary_info.h" #include "fanpico.h" #define BI_TAG 0xf720 #define BOOT_SETTINGS 0x0001 void set_binary_info(struct fanpico_fw_settings *settings) { bi_decl(bi_program_description("FanPico-" FANPICO_MODEL " - Smart PWM Fan Controller")); bi_decl(bi_program_version_string(FANPICO_VERSION FANPICO_BUILD_TAG)); bi_decl(bi_program_build_date_string("__DATE__")); bi_decl(bi_program_url("https://kokkonen.net/fanpico/")); bi_decl(bi_program_feature_group(BI_TAG, BOOT_SETTINGS, "boot settings")); bi_decl(bi_ptr_int32(BI_TAG, BOOT_SETTINGS, sysclock, 0)); bi_decl(bi_ptr_int32(BI_TAG, BOOT_SETTINGS, safemode, 0)); bi_decl(bi_ptr_int32(BI_TAG, BOOT_SETTINGS, bootdelay, 0)); settings->sysclock = sysclock; settings->safemode = safemode; settings->bootdelay = bootdelay; bi_decl(bi_block_device( BI_TAG, "littlefs", XIP_BASE + FANPICO_FS_OFFSET, FANPICO_FS_SIZE, NULL, BINARY_INFO_BLOCK_DEV_FLAG_READ | BINARY_INFO_BLOCK_DEV_FLAG_WRITE | BINARY_INFO_BLOCK_DEV_FLAG_PT_NONE)); #ifndef LIB_PIC_CYW43_ARCH #if LED_PIN >= 0 bi_decl(bi_1pin_with_name(LED_PIN, "On-board LED (output)")); #endif #endif #if TX_PIN >= 0 bi_decl(bi_1pin_with_name(TX_PIN, "TX (Serial) / MISO (SPI)")); bi_decl(bi_1pin_with_name(RX_PIN, "RX (Serial) / CS (SPI)")); #endif #if SDA_PIN >= 0 bi_decl(bi_1pin_with_name(SDA_PIN, "SDA (I2C) / SCK (SPI)")); bi_decl(bi_1pin_with_name(SCL_PIN, "SCL (I2C) / MOSI (SPI)")); #endif #if TACHO_READ_MULTIPLEX > 0 bi_decl(bi_1pin_with_name(FAN_TACHO_READ_PIN, "Multiplexer A [tacho signal] (input)")); bi_decl(bi_1pin_with_name(FAN_TACHO_READ_S0_PIN, "Multiplexer S0 (output)")); bi_decl(bi_1pin_with_name(FAN_TACHO_READ_S1_PIN, "Multiplexer S1 (output)")); bi_decl(bi_1pin_with_name(FAN_TACHO_READ_S2_PIN, "Multiplexer S2 (output)")); #else #if FAN1_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN1_TACHO_READ_PIN, "Fan1 tacho signal (input)")); #endif #if FAN2_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN2_TACHO_READ_PIN, "Fan2 tacho signal (input)")); #endif #if FAN3_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN3_TACHO_READ_PIN, "Fan3 tacho signal (input)")); #endif #if FAN4_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN4_TACHO_READ_PIN, "Fan4 tacho signal (input)")); #endif #if FAN5_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN5_TACHO_READ_PIN, "Fan5 tacho signal (input)")); #endif #if FAN6_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN6_TACHO_READ_PIN, "Fan6 tacho signal (input)")); #endif #if FAN7_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN7_TACHO_READ_PIN, "Fan7 tacho signal (input)")); #endif #if FAN8_TACHO_READ_PIN >= 0 bi_decl(bi_1pin_with_name(FAN8_TACHO_READ_PIN, "Fan8 tacho signal (input)")); #endif #endif /* TACHO_READ_MULTIPLEX > 0 */ bi_decl(bi_1pin_with_name(FAN1_PWM_GEN_PIN, "Fan1 PWM signal (output)")); bi_decl(bi_1pin_with_name(FAN2_PWM_GEN_PIN, "Fan2 PWM signal (output)")); #if FAN3_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN3_PWM_GEN_PIN, "Fan3 PWM signal (output)")); #endif #if FAN4_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN4_PWM_GEN_PIN, "Fan4 PWM signal (output)")); #endif #if FAN5_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN5_PWM_GEN_PIN, "Fan5 PWM signal (output)")); #endif #if FAN6_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN6_PWM_GEN_PIN, "Fan6 PWM signal (output)")); #endif #if FAN7_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN7_PWM_GEN_PIN, "Fan7 PWM signal (output)")); #endif #if FAN8_PWM_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(FAN8_PWM_GEN_PIN, "Fan8 PWM signal (output)")); #endif #if MBFAN1_TACHO_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN1_TACHO_GEN_PIN, "MB Fan1 tacho signal (output)")); #endif #if MBFAN2_TACHO_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN2_TACHO_GEN_PIN, "MB Fan2 tacho signal (output)")); #endif #if MBFAN3_TACHO_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN3_TACHO_GEN_PIN, "MB Fan3 tacho signal (output)")); #endif #if MBFAN4_TACHO_GEN_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN4_TACHO_GEN_PIN, "MB Fan4 tacho signal (output)")); #endif #if MBFAN1_PWM_READ_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN1_PWM_READ_PIN, "MB Fan1 PWM signal (input)")); #endif #if MBFAN2_PWM_READ_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN2_PWM_READ_PIN, "MB Fan2 PWM signal (input)")); #endif #if MBFAN3_PWM_READ_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN3_PWM_READ_PIN, "MB Fan3 PWM signal (input)")); #endif #if MBFAN4_PWM_READ_PIN >= 0 bi_decl(bi_1pin_with_name(MBFAN4_PWM_READ_PIN, "MB Fan4 PWM signal (input)")); #endif #if SENSOR1_READ_PIN >= 0 bi_decl(bi_1pin_with_name(SENSOR1_READ_PIN, "Temperature Sensor1 (input)")); #endif #if SENSOR2_READ_PIN >= 0 bi_decl(bi_1pin_with_name(SENSOR2_READ_PIN, "Temperature Sensor2 (input)")); #endif } ================================================ FILE: src/boards/0200.h ================================================ /* boards/0200.h */ #define FANPICO_MODEL "0200" #define FAN_COUNT 2 /* Number of Fan outputs on the board */ #define MBFAN_COUNT 0 /* Number of (Motherboard) Fan inputs on the board */ #define SENSOR_COUNT 3 /* Number of sensor inputs on the board */ #define LED_PIN 25 /* Pins for Fan Signals */ #define TACHO_READ_MULTIPLEX 0 /* pins for multiplexed read */ #define FAN_TACHO_READ_PIN -1 #define FAN_TACHO_READ_S0_PIN -1 #define FAN_TACHO_READ_S1_PIN -1 #define FAN_TACHO_READ_S2_PIN -1 /* pins for direct read / multiplexer ports (if multiplexer in use) */ #define FAN1_TACHO_READ_PIN 18 #define FAN2_TACHO_READ_PIN 19 #define FAN3_TACHO_READ_PIN -1 #define FAN4_TACHO_READ_PIN -1 #define FAN5_TACHO_READ_PIN -1 #define FAN6_TACHO_READ_PIN -1 #define FAN7_TACHO_READ_PIN -1 #define FAN8_TACHO_READ_PIN -1 #define FAN1_PWM_GEN_PIN 20 /* PWM2A */ #define FAN2_PWM_GEN_PIN 21 /* PWM2B */ #define FAN3_PWM_GEN_PIN -1 #define FAN4_PWM_GEN_PIN -1 #define FAN5_PWM_GEN_PIN -1 #define FAN6_PWM_GEN_PIN -1 #define FAN7_PWM_GEN_PIN -1 #define FAN8_PWM_GEN_PIN -1 /* Pins for Motherboar Fan Connector Signals */ #define MBFAN1_TACHO_GEN_PIN -1 #define MBFAN2_TACHO_GEN_PIN -1 #define MBFAN3_TACHO_GEN_PIN -1 #define MBFAN4_TACHO_GEN_PIN -1 #define MBFAN1_PWM_READ_PIN -1 #define MBFAN2_PWM_READ_PIN -1 #define MBFAN3_PWM_READ_PIN -1 #define MBFAN4_PWM_READ_PIN -1 /* Pins for temperature sensors */ #define SENSOR1_READ_PIN 27 /* ADC1 / GPIO27 */ #define SENSOR2_READ_PIN 28 /* ADC2 / GPIO28 */ #define SENSOR1_READ_ADC 1 /* ADC1 / GPIO27 */ #define SENSOR2_READ_ADC 2 /* ADC2 / GPIO28 */ #define SENSOR3_READ_ADC ADC_TEMPERATURE_CHANNEL_NUM /* Internal Temperature sensor */ /* Interface Pins */ /* I2C */ #define I2C_HW 2 /* 1=i2c0, 2=i2c1, 0=bitbang... */ #define SDA_PIN 2 #define SCL_PIN 3 /* Serial */ #define TX_PIN 0 #define RX_PIN 1 /* SPI */ #define SPI_SHARED 0 /* 0 = dedicated pins, 1 = shared with serial/i2c */ #define SCK_PIN 10 #define MOSI_PIN 11 #define MISO_PIN -1 #define CS_PIN 9 #define DC_PIN 8 #define LCD_RESET_PIN 12 #define LCD_LIGHT_PIN -1 #define ONEWIRE_SUPPORT 1 #define ONEWIRE_SHARED 0 /* 0 = dedicated pins, 1 = shared with serial */ #define ONEWIRE_PIN 15 #define OLED_DISPLAY 1 #define LCD_DISPLAY 0 #define TTL_SERIAL 1 #define TTL_SERIAL_UART uart0 #define TTL_SERIAL_SPEED 115200 /* Use non-default OLED layouts for this board */ #define R_LAYOUT_128x64 "LSensors,S1,S2,S3,V1,V2,V3,V4" #define R_LAYOUT_128x128 "LSensors,S1,S2,S3,V1,V2,V3,V4,V5,V6" ================================================ FILE: src/boards/0200.json ================================================ { "id": "fanpico-config-v1", "debug": 0, "display_type": "none", "local_echo": false, "led_mode": 0, "spi_active": 0, "serial_active": 1, "sensors": [ { "id": 0, "name": "sensor1", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "sensor2", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "pico_temp", "sensor_type": 0, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "vsensors": [ { "id": 0, "name": "vsensor1", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "vsensor2", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "vsensor3", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 3, "name": "vsensor4", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 4, "name": "vsensor5", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 5, "name": "vsensor6", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 6, "name": "vsensor7", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 7, "name": "vsensor8", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "fans": [ { "id": 0, "name": "fan1", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "sensor", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 1, "name": "fan2", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "sensor", "source_id": 1, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 } ], "mbfans": [ ] } ================================================ FILE: src/boards/0401D.h ================================================ /* boards/0401D.h */ #define FANPICO_MODEL "0401D" #define FAN_COUNT 4 /* Number of Fan outputs on the board */ #define MBFAN_COUNT 1 /* Number of (Motherboard) Fan inputs on the board */ #define SENSOR_COUNT 3 /* Number of sensor inputs on the board */ #define LED_PIN 25 /* Pins for Fan Signals */ #define TACHO_READ_MULTIPLEX 0 /* pins for multiplexed read */ #define FAN_TACHO_READ_PIN -1 #define FAN_TACHO_READ_S0_PIN -1 #define FAN_TACHO_READ_S1_PIN -1 #define FAN_TACHO_READ_S2_PIN -1 /* pins for direct read / multiplexer ports (if multiplexer in use) */ #define FAN1_TACHO_READ_PIN 18 #define FAN2_TACHO_READ_PIN 19 #define FAN3_TACHO_READ_PIN 20 #define FAN4_TACHO_READ_PIN 21 #define FAN5_TACHO_READ_PIN -1 #define FAN6_TACHO_READ_PIN -1 #define FAN7_TACHO_READ_PIN -1 #define FAN8_TACHO_READ_PIN -1 #define FAN1_PWM_GEN_PIN 4 /* PWM2A */ #define FAN2_PWM_GEN_PIN 5 /* PWM2B */ #define FAN3_PWM_GEN_PIN 6 /* PWM3A */ #define FAN4_PWM_GEN_PIN 7 /* PWM3B */ #define FAN5_PWM_GEN_PIN -1 #define FAN6_PWM_GEN_PIN -1 #define FAN7_PWM_GEN_PIN -1 #define FAN8_PWM_GEN_PIN -1 /* Pins for Motherboar Fan Connector Signals */ #define MBFAN1_TACHO_GEN_PIN 16 #define MBFAN2_TACHO_GEN_PIN -1 #define MBFAN3_TACHO_GEN_PIN -1 #define MBFAN4_TACHO_GEN_PIN -1 #define MBFAN1_PWM_READ_PIN 13 /* PWM6B */ #define MBFAN2_PWM_READ_PIN -1 #define MBFAN3_PWM_READ_PIN -1 #define MBFAN4_PWM_READ_PIN -1 /* Pins for temperature sensors */ #define SENSOR1_READ_PIN 27 /* ADC1 / GPIO27 */ #define SENSOR2_READ_PIN 28 /* ADC2 / GPIO28 */ #define SENSOR1_READ_ADC 1 /* ADC1 / GPIO27 */ #define SENSOR2_READ_ADC 2 /* ADC2 / GPIO28 */ #define SENSOR3_READ_ADC ADC_TEMPERATURE_CHANNEL_NUM /* Internal Temperature sensor */ /* Interface Pins */ /* I2C */ #define I2C_HW 2 /* 1=i2c0, 2=i2c1, 0=bitbang... */ #define SDA_PIN 2 #define SCL_PIN 3 /* Serial */ #define TX_PIN 0 #define RX_PIN 1 /* SPI */ #define SPI_SHARED 0 /* 0 = dedicated pins, 1 = shared with serial/i2c */ #define SCK_PIN 10 #define MOSI_PIN 11 #define MISO_PIN -1 #define CS_PIN 9 #define DC_PIN 8 #define LCD_RESET_PIN 12 #define LCD_LIGHT_PIN -1 #define ONEWIRE_SUPPORT 1 #define ONEWIRE_SHARED 0 /* 0 = dedicated pins, 1 = shared with serial */ #define ONEWIRE_PIN 15 #define OLED_DISPLAY 1 #define LCD_DISPLAY 1 #define TTL_SERIAL 1 #define TTL_SERIAL_UART uart0 #define TTL_SERIAL_SPEED 115200 /* Use non-default OLED layouts for this board */ #define R_LAYOUT_128x64 "LMB Input,M1,-,LSensors,S1,S2,S3,V1" #define R_LAYOUT_128x128 "LMB Input,M1,-,LSensors,S1,S2,S3,V1,V2,V3" ================================================ FILE: src/boards/0401D.json ================================================ { "id": "fanpico-config-v1", "debug": 0, "local_echo": false, "led_mode": 0, "spi_active": 0, "serial_active": 1, "sensors": [ { "id": 0, "name": "sensor1", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "sensor2", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "pico_temp", "sensor_type": 0, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "vsensors": [ { "id": 0, "name": "vsensor1", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "vsensor2", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "vsensor3", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 3, "name": "vsensor4", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 4, "name": "vsensor5", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 5, "name": "vsensor6", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 6, "name": "vsensor7", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 7, "name": "vsensor8", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "fans": [ { "id": 0, "name": "fan1", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 1, "name": "fan2", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 2, "name": "fan3", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 3, "name": "fan4", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 } ], "mbfans": [ { "id": 0, "name": "mbfan1", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 0, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] } ] } ================================================ FILE: src/boards/0804.h ================================================ /* boards/0804.h */ #define FANPICO_MODEL "0804" #define FAN_COUNT 8 /* Number of Fan outputs on the board */ #define MBFAN_COUNT 4 /* Number of (Motherboard) Fan inputs on the board */ #define SENSOR_COUNT 3 /* Number of sensor inputs on the board */ #define LED_PIN 25 /* Pins for Fan Signals */ #define TACHO_READ_MULTIPLEX 0 /* pins for multiplexed read */ #define FAN_TACHO_READ_PIN -1 #define FAN_TACHO_READ_S0_PIN -1 #define FAN_TACHO_READ_S1_PIN -1 #define FAN_TACHO_READ_S2_PIN -1 /* pins for direct read / multiplexer ports (if multiplexer in use) */ #define FAN1_TACHO_READ_PIN 2 #define FAN2_TACHO_READ_PIN 3 #define FAN3_TACHO_READ_PIN 20 #define FAN4_TACHO_READ_PIN 21 #define FAN5_TACHO_READ_PIN 22 #define FAN6_TACHO_READ_PIN 26 #define FAN7_TACHO_READ_PIN 1 #define FAN8_TACHO_READ_PIN 0 #define FAN1_PWM_GEN_PIN 4 /* PWM2A */ #define FAN2_PWM_GEN_PIN 5 /* PWM2B */ #define FAN3_PWM_GEN_PIN 6 /* PWM3A */ #define FAN4_PWM_GEN_PIN 7 /* PWM3B */ #define FAN5_PWM_GEN_PIN 8 /* PWM4A */ #define FAN6_PWM_GEN_PIN 9 /* PWM4B */ #define FAN7_PWM_GEN_PIN 10 /* PWM5A */ #define FAN8_PWM_GEN_PIN 11 /* PWM5B */ /* Pins for Motherboar Fan Connector Signals */ #define MBFAN1_TACHO_GEN_PIN 12 #define MBFAN2_TACHO_GEN_PIN 14 #define MBFAN3_TACHO_GEN_PIN 16 #define MBFAN4_TACHO_GEN_PIN 18 #define MBFAN1_PWM_READ_PIN 13 /* PWM6B */ #define MBFAN2_PWM_READ_PIN 15 /* PWM7B */ #define MBFAN3_PWM_READ_PIN 17 /* PWM0B */ #define MBFAN4_PWM_READ_PIN 19 /* PWM1B */ /* Pins for temperature sensors */ #define SENSOR1_READ_PIN 27 /* ADC1 / GPIO27 */ #define SENSOR2_READ_PIN 28 /* ADC2 / GPIO28 */ #define SENSOR1_READ_ADC 1 /* ADC1 / GPIO27 */ #define SENSOR2_READ_ADC 2 /* ADC2 / GPIO28 */ #define SENSOR3_READ_ADC ADC_TEMPERATURE_CHANNEL_NUM /* Internal Temperature sensor */ /* Interface Pins */ /* I2C */ #define I2C_HW 1 /* 1=i2c0, 2=i2c1, 0=bitbang... */ #define SDA_PIN -1 #define SCL_PIN -1 /* Serial */ #define TX_PIN -1 #define RX_PIN -1 /* SPI */ #define SPI_SHARED 1 /* 0 = dedicated pins, 1 = shared with serial/i2c */ #define SCK_PIN -1 #define MOSI_PIN -1 #define MISO_PIN -1 #define CS_PIN -1 #define DC_PIN -1 #define LCD_RESET_PIN -1 #define LCD_LIGHT_PIN -1 #define ONEWIRE_SUPPORT 0 #define ONEWIRE_SHARED 1 /* 0 = dedicated pins, 1 = shared with serial */ #define ONEWIRE_PIN -1 ================================================ FILE: src/boards/0804.json ================================================ { "id": "fanpico-config-v1", "debug": 0, "local_echo": false, "led_mode": 0, "sensors": [ { "id": 0, "name": "sensor1", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "sensor2", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "pico_temp", "sensor_type": 0, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "vsensors": [ { "id": 0, "name": "vsensor1", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "vsensor2", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "vsensor3", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 3, "name": "vsensor4", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 4, "name": "vsensor5", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 5, "name": "vsensor6", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 6, "name": "vsensor7", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 7, "name": "vsensor8", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "fans": [ { "id": 0, "name": "fan1", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 1, "name": "fan2", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 1, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 2, "name": "fan3", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 2, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 3, "name": "fan4", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 3, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 4, "name": "fan5", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 5, "name": "fan6", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 1, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 6, "name": "fan7", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 2, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 7, "name": "fan8", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 3, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 } ], "mbfans": [ { "id": 0, "name": "mbfan1", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 0, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 1, "name": "mbfan2", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 1, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 2, "name": "mbfan3", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 2, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 3, "name": "mbfan4", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 3, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] } ] } ================================================ FILE: src/boards/0804D.h ================================================ /* boards/0804D.h */ #define FANPICO_MODEL "0804D" #define FAN_COUNT 8 /* Number of Fan outputs on the board */ #define MBFAN_COUNT 4 /* Number of (Motherboard) Fan inputs on the board */ #define SENSOR_COUNT 3 /* Number of sensor inputs on the board */ #define LED_PIN 25 /* Pins for Fan Signals */ #define TACHO_READ_MULTIPLEX 1 /* pins for multiplexed read */ #define FAN_TACHO_READ_PIN 26 #define FAN_TACHO_READ_S0_PIN 22 #define FAN_TACHO_READ_S1_PIN 21 #define FAN_TACHO_READ_S2_PIN 20 /* pins for direct read / multiplexer ports (if multiplexer in use) */ #define FAN1_TACHO_READ_PIN 7 #define FAN2_TACHO_READ_PIN 5 #define FAN3_TACHO_READ_PIN 3 #define FAN4_TACHO_READ_PIN 0 #define FAN5_TACHO_READ_PIN 1 #define FAN6_TACHO_READ_PIN 2 #define FAN7_TACHO_READ_PIN 6 #define FAN8_TACHO_READ_PIN 4 #define FAN1_PWM_GEN_PIN 4 /* PWM2A */ #define FAN2_PWM_GEN_PIN 5 /* PWM2B */ #define FAN3_PWM_GEN_PIN 6 /* PWM3A */ #define FAN4_PWM_GEN_PIN 7 /* PWM3B */ #define FAN5_PWM_GEN_PIN 8 /* PWM4A */ #define FAN6_PWM_GEN_PIN 9 /* PWM4B */ #define FAN7_PWM_GEN_PIN 10 /* PWM5A */ #define FAN8_PWM_GEN_PIN 11 /* PWM5B */ /* Pins for Motherboar Fan Connector Signals */ #define MBFAN1_TACHO_GEN_PIN 12 #define MBFAN2_TACHO_GEN_PIN 14 #define MBFAN3_TACHO_GEN_PIN 16 #define MBFAN4_TACHO_GEN_PIN 18 #define MBFAN1_PWM_READ_PIN 13 /* PWM6B */ #define MBFAN2_PWM_READ_PIN 15 /* PWM7B */ #define MBFAN3_PWM_READ_PIN 17 /* PWM0B */ #define MBFAN4_PWM_READ_PIN 19 /* PWM1B */ /* Pins for temperature sensors */ #define SENSOR1_READ_PIN 27 /* ADC1 / GPIO27 */ #define SENSOR2_READ_PIN 28 /* ADC2 / GPIO28 */ #define SENSOR1_READ_ADC 1 /* ADC1 / GPIO27 */ #define SENSOR2_READ_ADC 2 /* ADC2 / GPIO28 */ #define SENSOR3_READ_ADC ADC_TEMPERATURE_CHANNEL_NUM /* Internal Temperature sensor */ /* Interface Pins */ /* I2C */ #define I2C_HW 2 /* 1=i2c0, 2=i2c1, 0=bitbang... */ #define SDA_PIN 2 #define SCL_PIN 3 /* Serial */ #define TX_PIN 0 #define RX_PIN 1 /* SPI */ #define SPI_SHARED 1 /* 0 = dedicated pins, 1 = shared with serial/i2c */ #define SCK_PIN 2 #define MOSI_PIN 3 #define MISO_PIN -1 #define CS_PIN 1 #define DC_PIN 0 #define LCD_RESET_PIN -1 #define LCD_LIGHT_PIN -1 #define ONEWIRE_SUPPORT 1 #define ONEWIRE_SHARED 1 /* 0 = dedicated pins, 1 = shared with serial */ #define ONEWIRE_PIN 0 #define OLED_DISPLAY 1 #define LCD_DISPLAY 1 #define TTL_SERIAL 1 #define TTL_SERIAL_UART uart0 #define TTL_SERIAL_SPEED 115200 ================================================ FILE: src/boards/0804D.json ================================================ { "id": "fanpico-config-v1", "debug": 0, "local_echo": false, "led_mode": 0, "spi_active": 0, "serial_active": 1, "sensors": [ { "id": 0, "name": "sensor1", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "sensor2", "sensor_type": 1, "series_resistance": 10000, "thermistor_nominal": 10000, "temperature_nominal": 25.0, "beta_coefficient": 3950, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "pico_temp", "sensor_type": 0, "temp_offset": 0.0, "temp_coefficient": 1.0, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "vsensors": [ { "id": 0, "name": "vsensor1", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 1, "name": "vsensor2", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 2, "name": "vsensor3", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 3, "name": "vsensor4", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 4, "name": "vsensor5", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 5, "name": "vsensor6", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 6, "name": "vsensor7", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] }, { "id": 7, "name": "vsensor8", "mode": "manual", "default_temp": 0, "timeout": 30, "temp_map": [ [ 20, 0 ], [ 50, 100 ] ] } ], "fans": [ { "id": 0, "name": "fan1", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 1, "name": "fan2", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 1, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 2, "name": "fan3", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 2, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 3, "name": "fan4", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 3, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 4, "name": "fan5", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 0, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 5, "name": "fan6", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 1, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 6, "name": "fan7", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 2, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 }, { "id": 7, "name": "fan8", "min_pwm": 0, "max_pwm": 100, "pwm_coefficient": 1.0, "source_type": "mbfan", "source_id": 3, "pwm_map": [ [ 0, 0 ], [ 100, 100 ] ], "rpm_factor": 2 } ], "mbfans": [ { "id": 0, "name": "mbfan1", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 0, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 1, "name": "mbfan2", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 1, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 2, "name": "mbfan3", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 2, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] }, { "id": 3, "name": "mbfan4", "min_rpm": 0, "max_rpm": 10000, "rpm_coefficient": 1.0, "rpm_factor": 2, "source_type": "fan", "source_id": 3, "rpm_map": [ [ 0, 0 ], [ 10000, 10000 ] ] } ] } ================================================ FILE: src/command.c ================================================ /* command.c Copyright (C) 2021-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include #include #include #include "pico/stdlib.h" #include "pico/unique_id.h" #include "pico/bootrom.h" #include "pico/util/datetime.h" #include "pico/aon_timer.h" #include "pico/rand.h" #include "hardware/watchdog.h" #include "cJSON.h" #include "b64/ccommon.h" #include "fanpico.h" #include "command_util.h" #include "pico_sensor_lib.h" #include "lfs.h" #ifdef WIFI_SUPPORT #include "lwip/ip_addr.h" #include "lwip/stats.h" #include "wolfssl/version.h" #include "wolfssh/version.h" #include "pico_telnetd/util.h" #include "util_net.h" #endif struct error_t { const char *error; int error_num; }; /* For now, mimic some actual instrument error codes/responses... */ const struct error_t error_codes[] = { { "No Error", 0 }, { "Command Error", -100 }, { "Syntax Error", -102 }, { "Undefined Header", -113 }, { NULL, 0 } }; int last_error_num = 0; const struct fanpico_state *st = NULL; struct fanpico_config *conf = NULL; /* credits.s */ extern const char fanpico_credits_text[]; /* Command functions */ int cmd_idn(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int i; pico_unique_board_id_t board_id; if (!query) return 1; printf("TJKO Industries,FANPICO-%s,", FANPICO_MODEL); pico_get_unique_board_id(&board_id); for (i = 0; i < PICO_UNIQUE_BOARD_ID_SIZE_BYTES; i++) printf("%02x", board_id.id[i]); printf(",%s%s\n", FANPICO_VERSION, FANPICO_BUILD_TAG); return 0; } int cmd_exit(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; #if WIFI_SUPPORT telnetserver_disconnect(); sshserver_disconnect(); #endif return 0; } int cmd_who(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; #if WIFI_SUPPORT telnetserver_who(); sshserver_who(); #endif return 0; } int cmd_usb_boot(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { char buf[64]; const char *msg[] = { "FIRMWARE UPGRADE MODE", "=====================", "Use file (.uf2):", buf, "", "Copy file to: RPI-RP2", "", "Press RESET to abort.", }; if (query) return 1; snprintf(buf, sizeof(buf), " fanpico-%s-%s", FANPICO_MODEL, PICO_BOARD); display_message(8, msg); reset_usb_boot(0, 0); return 0; /* should never get this far... */ } int cmd_board(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (cmd && !query) return 1; print_rp2_board_info(); return 0; } int cmd_version(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { const char* credits = fanpico_credits_text; if (cmd && !query) return 1; printf("FanPico-%s v%s%s (%s; %s; SDK v%s; %s)\n\n", FANPICO_MODEL, FANPICO_VERSION, FANPICO_BUILD_TAG, __DATE__, PICO_CMAKE_BUILD_TYPE, PICO_SDK_VERSION_STRING, PICO_BOARD); if (query) { printf("%s\n", credits); #ifdef __GNUC__ printf("Compiled with: GCC v%s\n", __VERSION__); #endif printf("littlefs: %d.%d\n", LFS_VERSION_MAJOR, LFS_VERSION_MINOR); printf("cJSON: %d.%d.%d\n", CJSON_VERSION_MAJOR, CJSON_VERSION_MINOR, CJSON_VERSION_PATCH); printf("libb64: %d.%d\n", BASE64_VER_MAJOR, BASE64_VER_MINOR); #ifdef WIFI_SUPPORT printf("wolfSSH: %s\n", LIBWOLFSSH_VERSION_STRING); printf("wolfSSL: %s\n", LIBWOLFSSL_VERSION_STRING); #endif printf("\n"); } return 0; } int cmd_fans(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; printf("%d\n", FAN_COUNT); return 0; } int cmd_led(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int mode; if (query) { printf("%d\n", conf->led_mode); } else if (str_to_int(args, &mode, 10)) { if (mode >= 0 && mode <= 2) { log_msg(LOG_NOTICE, "Set system LED mode: %d -> %d", conf->led_mode, mode); conf->led_mode = mode; } } return 0; } int cmd_mbfans(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; printf("%d\n", MBFAN_COUNT); return 0; } int cmd_sensors(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; printf("%d\n", SENSOR_COUNT); return 0; } int cmd_vsensors(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; printf("%d\n", VSENSOR_COUNT); return 0; } int cmd_vsensors_sources(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; for (int i = 0; i < VSENSOR_COUNT; i++) { const struct vsensor_input *v = &conf->vsensors[i]; printf("vsensor%d,%s", i + 1, vsmode2str(v->mode)); switch (v->mode) { case VSMODE_MANUAL: printf(",%0.2f,%ld", v->default_temp, v->timeout); break; case VSMODE_ONEWIRE: printf(",%016llx", v->onewire_addr); break; case VSMODE_I2C: printf(",0x%02x,%s", v->i2c_addr, i2c_sensor_type_str(v->i2c_type)); break; default: for (int j = 0; j < VSENSOR_SOURCE_MAX_COUNT; j++) { if (v->sensors[j]) printf(",%d", v->sensors[j]); } break; } printf("\n"); } return 0; } int cmd_null(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { log_msg(LOG_INFO, "null command: %s %s (query=%d)", cmd, args, query); return 0; } int cmd_debug(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int level; if (query) { printf("%d\n", get_debug_level()); } else if (str_to_int(args, &level, 10)) { set_debug_level((level < 0 ? 0 : level)); } return 0; } int cmd_log_level(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int level = get_log_level(); int new_level; const char *name, *new_name; name = log_priority2str(level); if (query) { if (name) { printf("%s\n", name); } else { printf("%d\n", level); } } else { if ((new_level = str2log_priority(args)) < 0) return 1; new_name = log_priority2str(new_level); log_msg(LOG_NOTICE, "Change log level: %s (%d) -> %s (%d)", (name ? name : ""), level, new_name, new_level); set_log_level(new_level); } return 0; } int cmd_syslog_level(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int level = get_syslog_level(); int new_level; const char *name, *new_name; name = log_priority2str(level); if (query) { if (name) { printf("%s\n", name); } else { printf("%d\n", level); } } else { if ((new_level = str2log_priority(args)) < 0) return 1; new_name = log_priority2str(new_level); log_msg(LOG_NOTICE, "Change syslog level: %s (%d) -> %s (%d)", (name ? name : "N/A"), level, new_name, new_level); set_syslog_level(new_level); } return 0; } int cmd_echo(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->local_echo, "Command Echo"); } int cmd_display_type(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->display_type, sizeof(conf->display_type), "Display Type", NULL); } int cmd_display_theme(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->display_theme, sizeof(conf->display_theme), "Display Theme", NULL); } int cmd_display_logo(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->display_logo, sizeof(conf->display_logo), "Display Logo", NULL); } int cmd_display_layout_r(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->display_layout_r, sizeof(conf->display_layout_r), "Display Layout (Right)", NULL); } int cmd_reset(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { const char *msg[] = { " Rebooting...", }; if (query) return 1; log_msg(LOG_ALERT, "Initiating reboot..."); display_message(1, msg); update_persistent_memory(); watchdog_disable(); sleep_ms(500); watchdog_reboot(0, SRAM_END, 1); while (1); /* Should never get this far... */ return 0; } int cmd_save_config(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; save_config(); return 0; } int cmd_print_config(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; print_config(); return 0; } int cmd_upload_config(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; #if WATCHDOG_ENABLED watchdog_disable(); #endif upload_config(); #if WATCHDOG_ENABLED watchdog_enable(WATCHDOG_REBOOT_DELAY, 1); #endif return 0; } int cmd_delete_config(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; delete_config(); return 0; } int cmd_one(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) printf("1\n"); return 0; } int cmd_zero(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) printf("0\n"); return 0; } int cmd_read(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int i; double rpm, pwm; if (!query) return 1; for (i = 0; i < MBFAN_COUNT; i++) { rpm = st->mbfan_freq[i] * 60 / conf->mbfans[i].rpm_factor; printf("mbfan%d,\"%s\",%.0lf,%.2f,%.1f\n", i+1, conf->mbfans[i].name, rpm, st->mbfan_freq[i], st->mbfan_duty[i]); } for (i = 0; i < FAN_COUNT; i++) { rpm = st->fan_freq[i] * 60 / conf->fans[i].rpm_factor; printf("fan%d,\"%s\",%.0lf,%.2f,%.1f\n", i+1, conf->fans[i].name, rpm, st->fan_freq[i], st->fan_duty[i]); } for (i = 0; i < SENSOR_COUNT; i++) { pwm = sensor_get_duty(&conf->sensors[i].map, st->temp[i]); printf("sensor%d,\"%s\",%.1lf,%.1f\n", i+1, conf->sensors[i].name, st->temp[i], pwm); } for (i = 0; i < VSENSOR_COUNT; i++) { pwm = sensor_get_duty(&conf->vsensors[i].map, st->vtemp[i]); printf("vsensor%d,\"%s\",%.1lf,%.1f\n", i+1, conf->vsensors[i].name, st->vtemp[i], pwm); } return 0; } int cmd_vsensors_read(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int i; if (!query) return 1; for (i = 0; i < VSENSOR_COUNT; i++) { printf("vsensor%d,\"%s\",%.1lf,%.0f,%0.0f\n", i+1, conf->vsensors[i].name, st->vtemp[i], st->vhumidity[i], st->vpressure[i]); } return 0; } int cmd_fan_name(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_string_setting(cmd, args, query, prev_cmd, 0, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, name), sizeof(conf->fans[0].name), "fan%d: Name", NULL); } int cmd_fan_min_pwm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint8_setting(cmd, args, query, prev_cmd, 0, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, min_pwm), "fan%d: Min PWM", 0, 100); } int cmd_fan_max_pwm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint8_setting(cmd, args, query, prev_cmd, 0, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, max_pwm), "fan%d: Max PWM", 0, 100); } int cmd_fan_pwm_coef(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, pwm_coefficient), "fan%d: PWM Coefficient", 0.0, 1000.0); } int cmd_fan_pwm_map(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan, i, count; int val; char *arg, *t, *saveptr; struct pwm_map *map; struct pwm_map new_map; int ret = 0; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= FAN_COUNT) return 1; map = &conf->fans[fan].map; new_map.points = 0; if (query) { for (i = 0; i < map->points; i++) { if (i > 0) printf(","); printf("%u,%u", map->pwm[i][0], map->pwm[i][1]); } printf("\n"); } else { if (!(arg = strdup(args))) return 2; count = 0; t = strtok_r(arg, ",", &saveptr); while (t) { val = atoi(t); new_map.pwm[count / 2][count % 2] = val; count++; t = strtok_r(NULL, ",", &saveptr); } if ((count >= 4) && (count % 2 == 0)) { new_map.points = count / 2; *map = new_map; } else { log_msg(LOG_WARNING, "fan%d: invalid new map: %s", fan + 1, args); ret = 2; } free(arg); } return ret; } int cmd_fan_filter(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; int ret = 0; char *tok, *saveptr, *param; struct fan_output *f; enum signal_filter_types new_filter; void *new_ctx; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= FAN_COUNT) return 1; f = &conf->fans[fan]; if (query) { printf("%s", filter2str(f->filter)); tok = filter_print_args(f->filter, f->filter_ctx); if (tok) { printf(",%s\n", tok); free(tok); } else { printf(",\n"); } } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { new_filter = str2filter(tok); tok += strlen(tok) + 1; new_ctx = filter_parse_args(new_filter, tok); if (new_filter == FILTER_NONE || new_ctx != NULL) { f->filter = new_filter; if (f->filter_ctx) free(f->filter_ctx); f->filter_ctx = new_ctx; } else { ret = 1; } } free(param); } return ret; } int cmd_fan_rpm_factor(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint8_setting(cmd, args, query, prev_cmd, 0, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, rpm_factor), "fan%d: RPM factor", 1, 8); } int cmd_fan_rpm_mode(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int ret = 0; int fan, val; struct fan_output *f; char *tok, *saveptr, *param; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= FAN_COUNT) return 1; f = &conf->fans[fan]; if (query) { printf("%s", rpm_mode2str(f->rpm_mode)); if (f->rpm_mode == RMODE_LRA) printf(",%d,%d", f->lra_low, f->lra_high); printf("\n"); } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { val = str2rpm_mode(tok); if (val != f->rpm_mode) { log_msg(LOG_NOTICE, "fan%d: rpm_mode change '%s' --> '%s'", fan + 1, rpm_mode2str(f->rpm_mode), rpm_mode2str(val)); f->rpm_mode = val; } if (f->rpm_mode == RMODE_LRA) { if ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { if (str_to_int(tok, &val, 10)) { f->lra_low = clamp_int(val, 0, 100000); } if ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { if (str_to_int(tok, &val, 10)) { f->lra_high = clamp_int(val, 0, 100000); } } } } } else { ret = 2; } free(param); } return ret; } int cmd_fan_source(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; int type, val, d_o, d_n; char *tok, *saveptr, *param; int ret = 0; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= FAN_COUNT) return 1; if (query) { val = conf->fans[fan].s_id; if (conf->fans[fan].s_type != PWM_FIXED) val++; printf("%s,%u\n", pwm_source2str(conf->fans[fan].s_type), val); } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { type = str2pwm_source(tok); d_n = (type != PWM_FIXED ? 1 : 0); if ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { val = atoi(tok) - d_n; if (valid_pwm_source_ref(type, val)) { d_o = (conf->fans[fan].s_type != PWM_FIXED ? 1 : 0); log_msg(LOG_NOTICE, "fan%d: change source %s,%u --> %s,%u", fan + 1, pwm_source2str(conf->fans[fan].s_type), conf->fans[fan].s_id + d_o, pwm_source2str(type), val + d_n); conf->fans[fan].s_type = type; conf->fans[fan].s_id = val; } else { log_msg(LOG_WARNING, "fan%d: invalid source: %s", fan + 1, args); ret = 2; } } } free(param); } return ret; } int cmd_fan_tacho_hys(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 1, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, tacho_hyst), "fan%d: Tachometer Hysteresis", 0.0, 10000.0); } int cmd_fan_pwm_hys(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 1, conf->fans, FAN_COUNT, sizeof(conf->fans[0]), offsetof(struct fan_output, pwm_hyst), "fan%d: PWM Hysteresis", 0.0, 10000.0); } int cmd_fan_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; double rpm; if (!query) return 1; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < FAN_COUNT) { rpm = st->fan_freq[fan] * 60.0 / conf->fans[fan].rpm_factor; log_msg(LOG_DEBUG, "fan%d (tacho = %fHz) rpm = %.1lf", fan + 1, st->fan_freq[fan], rpm); printf("%.0lf\n", rpm); return 0; } return 1; } int cmd_fan_tacho(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; float f; if (!query) return 1; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < FAN_COUNT) { f = st->fan_freq[fan]; log_msg(LOG_DEBUG, "fan%d tacho = %fHz", fan + 1, f); printf("%.1f\n", f); return 0; } return 1; } int cmd_fan_pwm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; float d; if (!query) return 1; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < FAN_COUNT) { d = st->fan_duty[fan]; log_msg(LOG_DEBUG, "fan%d duty = %f%%", fan + 1, d); printf("%.0f\n", d); return 0; } return 1; } int cmd_fan_read(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; double rpm; float d, f; if (!query) return 1; if (!strncasecmp(get_prev_cmd(prev_cmd, 0), "fan", 3)) { fan = get_prev_cmd_index(prev_cmd, 0) - 1; } else { fan = get_cmd_index(cmd) - 1; } if (fan >= 0 && fan < FAN_COUNT) { d = st->fan_duty[fan]; f = st->fan_freq[fan]; rpm = f * 60.0 / conf->fans[fan].rpm_factor; log_msg(LOG_DEBUG, "fan%d duty = %f%%, freq = %fHz, speed = %fRPM", fan + 1, d, f, rpm); printf("%.0f,%.1f,%.0f\n", d, f, rpm); return 0; } return 1; } int cmd_mbfan_name(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_string_setting(cmd, args, query, prev_cmd, 0, conf->mbfans, MBFAN_COUNT, sizeof(conf->mbfans[0]), offsetof(struct mb_input, name), sizeof(conf->mbfans[0].name), "mbfan%d: Name", NULL); } int cmd_mbfan_min_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint16_setting(cmd, args, query, prev_cmd, 0, conf->mbfans, MBFAN_COUNT, sizeof(conf->mbfans[0]), offsetof(struct mb_input, min_rpm), "mbfan%d: Min RPM", 0, 50000); } int cmd_mbfan_max_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint16_setting(cmd, args, query, prev_cmd, 0, conf->mbfans, MBFAN_COUNT, sizeof(conf->mbfans[0]), offsetof(struct mb_input, max_rpm), "mbfan%d: Max RPM", 0, 50000); } int cmd_mbfan_rpm_coef(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->mbfans, MBFAN_COUNT, sizeof(conf->mbfans[0]), offsetof(struct mb_input, rpm_coefficient), "mbfan%d: RPM Coefficient", 0.0, 1000.0); } int cmd_mbfan_rpm_factor(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_uint8_setting(cmd, args, query, prev_cmd, 0, conf->mbfans, MBFAN_COUNT, sizeof(conf->mbfans[0]), offsetof(struct mb_input, rpm_factor), "mbfan%d: RPM factor", 1, 8); } int cmd_mbfan_rpm_map(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan, i, count; int val; char *arg, *t, *saveptr; struct tacho_map *map; struct tacho_map new_map; int ret = 0; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= MBFAN_COUNT) return 0; map = &conf->mbfans[fan].map; new_map.points = 0; if (query) { for (i = 0; i < map->points; i++) { if (i > 0) printf(","); printf("%u,%u", map->tacho[i][0], map->tacho[i][1]); } printf("\n"); } else { if (!(arg = strdup(args))) return 2; count = 0; t = strtok_r(arg, ",", &saveptr); while (t) { val = atoi(t); new_map.tacho[count / 2][count % 2] = val; count++; t = strtok_r(NULL, ",", &saveptr); } if ((count >= 4) && (count % 2 == 0)) { new_map.points = count / 2; *map = new_map; } else { log_msg(LOG_WARNING, "mbfan%d: invalid new map: %s", fan + 1, args); ret = 2; } free(arg); } return ret; } int cmd_mbfan_rpm_mode(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int ret = 0; int fan, val; char *tok, *saveptr, *param; struct mb_input *m; fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= MBFAN_COUNT) return 1; m = &conf->mbfans[fan]; if (query) { printf("%s", rpm_mode2str(m->rpm_mode)); if (m->rpm_mode == RMODE_LRA) printf(",%d,%s", m->lra_treshold, (m->lra_invert ? "HIGH" : "LOW")); printf("\n"); } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { val = str2rpm_mode(tok); if (val != m->rpm_mode) { log_msg(LOG_NOTICE, "mbfan%d: rpm_mode change '%s' -> '%s'", fan + 1, rpm_mode2str(m->rpm_mode), rpm_mode2str(val)); m->rpm_mode = val; } if (m->rpm_mode == RMODE_LRA) { if ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { if (str_to_int(tok, &val, 10)) { m->lra_treshold = clamp_int(val, 0, 100000); } if ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { bool invert = false; if (!strncasecmp(tok, "HIGH", 1)) invert = true; m->lra_invert = invert; } } } } else { ret = 2; } free(param); } return ret; } int cmd_mbfan_source(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; int type, val, d_o, d_n, ocount; char *tok, *saveptr, *param; uint8_t new_sources[FAN_MAX_COUNT]; enum tacho_source_types s_type; int ret = 0; memset(new_sources, 0, sizeof(new_sources)); fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan < 0 || fan >= MBFAN_COUNT) return 1; s_type = conf->mbfans[fan].s_type; if (query) { printf("%s,", tacho_source2str(s_type)); switch (s_type) { case TACHO_FIXED: case TACHO_FAN: val = conf->mbfans[fan].s_id; if (s_type != TACHO_FIXED) val++; printf("%u", val); break; case TACHO_MIN: case TACHO_MAX: case TACHO_AVG: ocount = 0; for (int i = 0; i < FAN_COUNT; i++) { if (conf->mbfans[fan].sources[i]) { if (ocount > 0) printf(","); printf("%u", i + 1); ocount++; } } break; } printf("\n"); } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { type = str2tacho_source(tok); d_n = (type != TACHO_FIXED ? 1 : 0); while ((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { val = atoi(tok) - d_n; if (valid_tacho_source_ref(type, val)) { if (type == TACHO_FIXED || type == TACHO_FAN) { d_o = (conf->mbfans[fan].s_type != TACHO_FIXED ? 1 : 0); log_msg(LOG_NOTICE, "mbfan%d: change source %s,%u --> %s,%u", fan + 1, tacho_source2str(conf->mbfans[fan].s_type), conf->mbfans[fan].s_id + d_o, tacho_source2str(type), val + d_n); conf->mbfans[fan].s_type = type; conf->mbfans[fan].s_id = val; break; } new_sources[val] = 1; } else { log_msg(LOG_WARNING, "mbfan%d: invalid source: %s", fan + 1, args); ret = 2; break; } } if (type == TACHO_MIN || type == TACHO_MAX || type == TACHO_AVG) { int scount = 0; for (int i = 0; i < FAN_COUNT; i++) { if (new_sources[i]) scount++; } if (scount >= 2) { log_msg(LOG_NOTICE, "mbfan%d: new source %s", fan + 1, args); conf->mbfans[fan].s_type = type; conf->mbfans[fan].s_id = 0; memcpy(conf->mbfans[fan].sources, new_sources, sizeof(conf->mbfans[fan].sources)); } else { log_msg(LOG_WARNING, "mbfan%d: too few parameters: %s", fan + 1, args); ret = 2; } } } free(param); } return ret; } int cmd_mbfan_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; double rpm; if (query) { fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < MBFAN_COUNT) { rpm = st->mbfan_freq[fan] * 60.0 / conf->mbfans[fan].rpm_factor; log_msg(LOG_DEBUG, "mbfan%d (tacho = %fHz) rpm = %.1lf", fan+1, st->mbfan_freq[fan], rpm); printf("%.0lf\n", rpm); return 0; } } return 1; } int cmd_mbfan_tacho(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; float f; if (query) { fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < MBFAN_COUNT) { f = st->mbfan_freq[fan]; log_msg(LOG_DEBUG, "mbfan%d tacho = %fHz", fan + 1, f); printf("%.1f\n", f); return 0; } } return 1; } int cmd_mbfan_pwm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; float d; if (query) { fan = get_prev_cmd_index(prev_cmd, 0) - 1; if (fan >= 0 && fan < MBFAN_COUNT) { d = st->mbfan_duty[fan]; log_msg(LOG_DEBUG, "mbfan%d duty = %f%%", fan + 1, d); printf("%.0f\n", d); return 0; } } return 1; } int cmd_mbfan_read(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int fan; double rpm; float d, f; if (!query) return 1; if (!strncasecmp(get_prev_cmd(prev_cmd, 0), "mbfan", 5)) { fan = get_prev_cmd_index(prev_cmd, 0) - 1; } else { fan = get_cmd_index(cmd) - 1; } if (fan >= 0 && fan < MBFAN_COUNT) { d = st->mbfan_duty[fan]; f = st->mbfan_freq[fan]; rpm = f * 60.0 / conf->mbfans[fan].rpm_factor; log_msg(LOG_DEBUG, "mbfan%d duty = %f%%, freq = %fHz, speed = %fRPM", fan + 1, d, f, rpm); printf("%.0f,%.1f,%.0f\n", d, f, rpm); return 0; } return 1; } int cmd_mbfan_filter(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int mbfan; int ret = 0; char *tok, *saveptr, *param; struct mb_input *m; enum signal_filter_types new_filter; void *new_ctx; mbfan = get_prev_cmd_index(prev_cmd, 0) - 1; if (mbfan < 0 || mbfan >= MBFAN_COUNT) return 1; m = &conf->mbfans[mbfan]; if (query) { printf("%s", filter2str(m->filter)); tok = filter_print_args(m->filter, m->filter_ctx); if (tok) { printf(",%s\n", tok); free(tok); } else { printf(",\n"); } } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { new_filter = str2filter(tok); tok += strlen(tok) + 1; new_ctx = filter_parse_args(new_filter, tok); if (new_filter == FILTER_NONE || new_ctx != NULL) { m->filter = new_filter; if (m->filter_ctx) free(m->filter_ctx); m->filter_ctx = new_ctx; } else { ret = 1; } } free(param); } return ret; } int cmd_sensor_name(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_string_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, name), sizeof(conf->sensors[0].name), "sensor%d: Name", NULL); } int cmd_sensor_temp_offset(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, temp_offset), "sensor%d: Temperature Offset", -10000.0, 10000.0); } int cmd_sensor_temp_coef(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, temp_coefficient), "sensor%d: Temperature Coefficient", 0.0, 1000.0); } int cmd_sensor_temp_nominal(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, temp_nominal), "sensor%d: Temperature Nominal", -50.0, 100.0); } int cmd_sensor_ther_nominal(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, thermistor_nominal), "sensor%d: Thermistor Nominal", 0.0, 100000.0); } int cmd_adc_vref(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return float_setting(cmd, args, query, prev_cmd, &conf->adc_vref, 0.0, 100.0, "ADC Reference Voltage"); } int cmd_sensor_beta_coef(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_float_setting(cmd, args, query, prev_cmd, 0, conf->sensors, SENSOR_COUNT, sizeof(conf->sensors[0]), offsetof(struct sensor_input, beta_coefficient), "sensor%d: Beta Coefficient", 0.0, 100000.0); } int cmd_sensor_temp_map(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor, i, count; float val; char *arg, *t, *saveptr; struct temp_map *map; struct temp_map new_map; int ret = 0; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor < 0 || sensor >= SENSOR_COUNT) return 1; map = &conf->sensors[sensor].map; new_map.points = 0; if (query) { for (i = 0; i < map->points; i++) { if (i > 0) printf(","); printf("%f,%f", map->temp[i][0], map->temp[i][1]); } printf("\n"); } else { if (!(arg = strdup(args))) return 2; count = 0; t = strtok_r(arg, ",", &saveptr); while (t) { val = atof(t); new_map.temp[count / 2][count % 2] = val; count++; t = strtok_r(NULL, ",", &saveptr); } if ((count >= 4) && (count % 2 == 0)) { new_map.points = count / 2; *map = new_map; } else { log_msg(LOG_WARNING, "sensor%d: invalid new map: %s", sensor + 1, args); ret = 2; } free(arg); } return ret; } int cmd_sensor_temp(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; float d; if (!query) return 1; if (!strncasecmp(get_prev_cmd(prev_cmd, 0), "sensor", 6)) { sensor = get_prev_cmd_index(prev_cmd, 0) - 1; } else { sensor = get_cmd_index(cmd) - 1; } if (sensor >= 0 && sensor < SENSOR_COUNT) { d = st->temp[sensor]; log_msg(LOG_DEBUG, "sensor%d temperature = %fC", sensor + 1, d); printf("%.0f\n", d); return 0; } return 1; } int cmd_sensor_filter(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; int ret = 0; char *tok, *saveptr, *param; struct sensor_input *s; enum signal_filter_types new_filter; void *new_ctx; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor < 0 || sensor >= SENSOR_COUNT) return 1; s = &conf->sensors[sensor]; if (query) { printf("%s", filter2str(s->filter)); tok = filter_print_args(s->filter, s->filter_ctx); if (tok) { printf(",%s\n", tok); free(tok); } else { printf(",\n"); } } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { new_filter = str2filter(tok); tok += strlen(tok) + 1; new_ctx = filter_parse_args(new_filter, tok); if (new_filter == FILTER_NONE || new_ctx != NULL) { s->filter = new_filter; if (s->filter_ctx) free(s->filter_ctx); s->filter_ctx = new_ctx; } else { ret = 1; } } free(param); } return ret; } int cmd_vsensor_name(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return array_string_setting(cmd, args, query, prev_cmd, 0, conf->vsensors, VSENSOR_COUNT, sizeof(conf->vsensors[0]), offsetof(struct vsensor_input, name), sizeof(conf->vsensors[0].name), "vensor%d: Name", NULL); } int cmd_vsensor_source(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { struct vsensor_input *v; int sensor, val, i; uint8_t vsmode, selected[VSENSOR_SOURCE_MAX_COUNT]; float default_temp; int timeout; char *tok, *saveptr, *param, temp_str[32], tmp[8]; int ret = 0; int count = 0; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor < 0 || sensor >= VSENSOR_COUNT) return 1; v = &conf->vsensors[sensor]; if (query) { printf("%s", vsmode2str(v->mode)); if (v->mode == VSMODE_MANUAL) { printf(",%0.2f,%ld", v->default_temp, v->timeout); } else if (v->mode == VSMODE_ONEWIRE) { printf(",%016llx", v->onewire_addr); } else if (v->mode == VSMODE_I2C) { printf(",0x%02x,%s", v->i2c_addr, i2c_sensor_type_str(v->i2c_type)); } else { for(i = 0; i < VSENSOR_SOURCE_MAX_COUNT; i++) { if (v->sensors[i]) printf(",%d", v->sensors[i]); } } printf("\n"); } else { ret = 2; if ((param = strdup(args)) == NULL) return 1; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { vsmode = str2vsmode(tok); if (vsmode == VSMODE_MANUAL) { tok = strtok_r(NULL, ",", &saveptr); if (str_to_float(tok, &default_temp)) { tok = strtok_r(NULL, ",", &saveptr); if (str_to_int(tok, &timeout, 10)) { if (timeout < 0) timeout = 0; log_msg(LOG_NOTICE, "vsensor%d: set source to %s,%0.2f,%d", sensor + 1, vsmode2str(vsmode), default_temp, timeout); v->mode = vsmode; v->default_temp = default_temp; v->timeout = timeout; ret = 0; } } } else if (vsmode == VSMODE_ONEWIRE) { tok = strtok_r(NULL, ",", &saveptr); uint64_t addr = strtoull(tok, NULL, 16); if (addr > 0) { log_msg(LOG_NOTICE, "vsensor%d: set source to %s,%016llx", sensor + 1, vsmode2str(vsmode), addr); v->mode = vsmode; v->onewire_addr = addr; ret = 0; } } else if (vsmode == VSMODE_I2C) { tok = strtok_r(NULL, ",", &saveptr); if (str_to_int(tok, &val, 16)) { if (val > 0 && val < 128 && !i2c_reserved_address(val)) { tok = strtok_r(NULL, ",", &saveptr); uint type = get_i2c_sensor_type(tok); if (type > 0) { log_msg(LOG_NOTICE, "vsensor%d: set source to %s,0x%02x,%s", sensor + 1, vsmode2str(vsmode), val, i2c_sensor_type_str(type)); v->mode = vsmode; v->i2c_type = type; v->i2c_addr = val; ret = 0; } } } } else { temp_str[0] = 0; for(i = 0; i < VSENSOR_SOURCE_MAX_COUNT; i++) selected[i] = 0; while((tok = strtok_r(NULL, ",", &saveptr)) != NULL) { if (count < VSENSOR_SOURCE_MAX_COUNT && str_to_int(tok, &val, 10)) { if ((val >= 1 && val <= SENSOR_COUNT) || (val >= 101 && val <= 100 + VSENSOR_COUNT)) { selected[count++] = val; snprintf(tmp, sizeof(tmp), ",%d", val); strncatenate(temp_str, tmp, sizeof(temp_str)); } } } if (count >= 2) { log_msg(LOG_NOTICE, "vsensor%d: set source to %s%s", sensor + 1, vsmode2str(vsmode), temp_str); v->mode = vsmode; for(i = 0; i < SENSOR_COUNT; i++) { v->sensors[i] = selected[i]; } ret = 0; } } } free(param); } return ret; } int cmd_vsensor_temp_map(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor, i, count; float val; char *arg, *t, *saveptr; struct temp_map *map; struct temp_map new_map; int ret = 0; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor < 0 || sensor >= VSENSOR_COUNT) return 1; map = &conf->vsensors[sensor].map; new_map.points = 0; if (query) { for (i = 0; i < map->points; i++) { if (i > 0) printf(","); printf("%f,%f", map->temp[i][0], map->temp[i][1]); } printf("\n"); } else { if (!(arg = strdup(args))) return 2; count = 0; t = strtok_r(arg, ",", &saveptr); while (t) { val = atof(t); new_map.temp[count / 2][count % 2] = val; count++; t = strtok_r(NULL, ",", &saveptr); } if ((count >= 4) && (count % 2 == 0)) { new_map.points = count / 2; *map = new_map; } else { log_msg(LOG_WARNING, "vsensor%d: invalid new map: %s", sensor + 1, args); ret = 2; } free(arg); } return ret; } int cmd_vsensor_temp(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; float d; if (!query) return 1; if (!strncasecmp(get_prev_cmd(prev_cmd, 0), "vsensor", 7)) { sensor = get_prev_cmd_index(prev_cmd, 0) - 1; } else { sensor = get_cmd_index(cmd) - 1; } if (sensor >= 0 && sensor < VSENSOR_COUNT) { d = st->vtemp[sensor]; log_msg(LOG_DEBUG, "vsensor%d temperature = %fC", sensor + 1, d); printf("%.0f\n", d); return 0; } return 1; } int cmd_vsensor_humidity(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; float d; if (!query) return 1; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor >= 0 && sensor < VSENSOR_COUNT) { d = st->vhumidity[sensor]; log_msg(LOG_DEBUG, "vsensor%d humidity = %f%%", sensor + 1, d); printf("%.0f\n", d); return 0; } return 1; } int cmd_vsensor_pressure(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; float d; if (!query) return 1; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor >= 0 && sensor < VSENSOR_COUNT) { d = st->vpressure[sensor]; log_msg(LOG_DEBUG, "vsensor%d pressure = %fhPa", sensor + 1, d); printf("%.0f\n", d); return 0; } return 1; } int cmd_vsensor_filter(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; int ret = 0; char *tok, *saveptr, *param; struct vsensor_input *s; enum signal_filter_types new_filter; void *new_ctx; sensor = get_prev_cmd_index(prev_cmd, 0) - 1; if (sensor < 0 || sensor >= VSENSOR_COUNT) return 1; s = &conf->vsensors[sensor]; if (query) { printf("%s", filter2str(s->filter)); tok = filter_print_args(s->filter, s->filter_ctx); if (tok) { printf(",%s\n", tok); free(tok); } else { printf(",\n"); } } else { if (!(param = strdup(args))) return 2; if ((tok = strtok_r(param, ",", &saveptr)) != NULL) { new_filter = str2filter(tok); tok += strlen(tok) + 1; new_ctx = filter_parse_args(new_filter, tok); if (new_filter == FILTER_NONE || new_ctx != NULL) { s->filter = new_filter; if (s->filter_ctx) free(s->filter_ctx); s->filter_ctx = new_ctx; } else { ret = 1; } } free(param); } return ret; } int cmd_vsensor_write(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int sensor; float val; if (query) return 1; if (!strncasecmp(get_prev_cmd(prev_cmd, 0), "vsensor", 7)) { sensor = get_prev_cmd_index(prev_cmd, 0) - 1; } else { sensor = get_cmd_index(cmd) - 1; } if (sensor >= 0 && sensor < VSENSOR_COUNT) { if (conf->vsensors[sensor].mode == VSMODE_MANUAL) { if (str_to_float(args, &val)) { log_msg(LOG_INFO, "vsensor%d: write temperature = %fC", sensor + 1, val); conf->vtemp[sensor] = val; conf->vtemp_updated[sensor] = get_absolute_time(); return 0; } } else { return 2; } } return 1; } int cmd_wifi(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { #ifdef WIFI_SUPPORT if (rp2_is_picow()) { printf("1\n"); return 0; } #endif printf("0\n"); return 0; } return 1; } #ifdef WIFI_SUPPORT int cmd_wifi_ip(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_change(cmd, args, query, prev_cmd, "IP", &conf->ip); } int cmd_wifi_netmask(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_change(cmd, args, query, prev_cmd, "Netmask", &conf->netmask); } int cmd_wifi_gateway(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_change(cmd, args, query, prev_cmd, "Default Gateway", &conf->gateway); } int cmd_wifi_dns(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_list_change(cmd, args, query, prev_cmd, "DNS Servers", conf->dns_servers, DNS_MAX_SERVERS); } int cmd_wifi_syslog_client(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->syslog_active, "Syslog Client"); } int cmd_wifi_syslog(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_change(cmd, args, query, prev_cmd, "Syslog Server", &conf->syslog_server); } int cmd_wifi_ntp_client(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->ntp_active, "NTP Client"); } int cmd_wifi_ntp(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_list_change(cmd, args, query, prev_cmd, "NTP Servers", conf->ntp_servers, SNTP_MAX_SERVERS); } int cmd_wifi_mac(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { printf("%s\n", mac_address_str(net_state->mac)); return 0; } return 1; } int cmd_wifi_ssid(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->wifi_ssid, sizeof(conf->wifi_ssid), "WiFi SSID", NULL); } int cmd_wifi_status(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { wifi_status(); return 0; } return 1; } int cmd_wifi_stats(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { stats_display(); return 0; } return 1; } int cmd_wifi_info(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { wifi_info_display(); return 0; } return 1; } int cmd_wifi_rejoin(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) { wifi_rejoin(); return 0; } return 1; } int cmd_wifi_country(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->wifi_country, sizeof(conf->wifi_country), "WiFi Country", valid_wifi_country); } int cmd_wifi_password(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->wifi_passwd, sizeof(conf->wifi_passwd), "WiFi Password", NULL); } int cmd_wifi_hostname(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->hostname, sizeof(conf->hostname), "WiFi Hostname", valid_hostname); } int cmd_wifi_auth_mode(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { uint32_t type; if (query) { printf("%s\n", conf->wifi_auth_mode); } else { if (!wifi_get_auth_type(args, &type)) return 1; if (strncmp(conf->wifi_auth_mode, args, sizeof(conf->wifi_auth_mode))) { log_msg(LOG_NOTICE, "WiFi Auth Type change %s --> %s", conf->wifi_auth_mode, args); strncopy(conf->wifi_auth_mode, args, sizeof(conf->wifi_auth_mode)); } } return 0; } int cmd_wifi_mode(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint8_setting(cmd, args, query, prev_cmd, &conf->wifi_mode, 0, 1, "WiFi Mode"); } int cmd_mqtt_server(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_server, sizeof(conf->mqtt_server), "MQTT Server", NULL); } int cmd_mqtt_port(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint16_setting(cmd, args, query, prev_cmd, &conf->mqtt_port, 0, 65535, "MQTT Port"); } int cmd_mqtt_user(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_user, sizeof(conf->mqtt_user), "MQTT User", NULL); } int cmd_mqtt_pass(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_pass, sizeof(conf->mqtt_pass), "MQTT Password", NULL); } int cmd_mqtt_status_interval(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->mqtt_status_interval, 0, (86400 * 30), "MQTT Publish Status Interval"); } int cmd_mqtt_temp_interval(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->mqtt_temp_interval, 0, (86400 * 30), "MQTT Publish Temp Interval"); } int cmd_mqtt_vsensor_interval(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->mqtt_vsensor_interval, 0, (86400 * 30), "MQTT Publish VSENSOR Interval"); } int cmd_mqtt_rpm_interval(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->mqtt_rpm_interval, 0, (86400 * 30), "MQTT Publish RPM Interval"); } int cmd_mqtt_duty_interval(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->mqtt_duty_interval, 0, (86400 * 30), "MQTT Publish PWM Interval"); } int cmd_mqtt_allow_scpi(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->mqtt_allow_scpi, "MQTT Allow SCPI Commands"); } int cmd_mqtt_status_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_status_topic, sizeof(conf->mqtt_status_topic), "MQTT Status Topic", NULL); } int cmd_mqtt_cmd_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_cmd_topic, sizeof(conf->mqtt_cmd_topic), "MQTT Command Topic", NULL); } int cmd_mqtt_resp_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_resp_topic, sizeof(conf->mqtt_resp_topic), "MQTT Response Topic", NULL); } int cmd_mqtt_temp_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_temp_topic, sizeof(conf->mqtt_temp_topic), "MQTT Temperature Topic", NULL); } int cmd_mqtt_vtemp_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_vtemp_topic, sizeof(conf->mqtt_vtemp_topic), "MQTT VTemperature Topic", NULL); } int cmd_mqtt_vhumidity_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_vhumidity_topic, sizeof(conf->mqtt_vhumidity_topic), "MQTT VHumidity Topic", NULL); } int cmd_mqtt_vpressure_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_vpressure_topic, sizeof(conf->mqtt_vpressure_topic), "MQTT VPressure Topic", NULL); } int cmd_mqtt_fan_rpm_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_fan_rpm_topic, sizeof(conf->mqtt_fan_rpm_topic), "MQTT Fan RPM Topic", NULL); } int cmd_mqtt_fan_duty_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_fan_duty_topic, sizeof(conf->mqtt_fan_duty_topic), "MQTT Fan PWM Topic", NULL); } int cmd_mqtt_mbfan_rpm_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_mbfan_rpm_topic, sizeof(conf->mqtt_mbfan_rpm_topic), "MQTT MBFan RPM Topic", NULL); } int cmd_mqtt_mbfan_duty_topic(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_mbfan_duty_topic, sizeof(conf->mqtt_mbfan_duty_topic), "MQTT MBFan PWM Topic", NULL); } int cmd_mqtt_ha_discovery(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->mqtt_ha_discovery_prefix, sizeof(conf->mqtt_ha_discovery_prefix), "MQTT Home Assistant Discovery Prefix", NULL); } int cmd_mqtt_mask_temp(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_temp_mask, SENSOR_MAX_COUNT, 1, "MQTT Temperature Mask"); } int cmd_mqtt_mask_vtemp(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_vtemp_mask, VSENSOR_MAX_COUNT, 1, "MQTT VSENSOR Temperature Mask"); } int cmd_mqtt_mask_vhumidity(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_vhumidity_mask, VSENSOR_MAX_COUNT, 1, "MQTT VSENSOR Humidity Mask"); } int cmd_mqtt_mask_vpressure(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_vpressure_mask, VSENSOR_MAX_COUNT, 1, "MQTT VSENSOR Pressure Mask"); } int cmd_mqtt_mask_fan_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_fan_rpm_mask, FAN_MAX_COUNT, 1, "MQTT Fan RPM Mask"); } int cmd_mqtt_mask_fan_duty(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_fan_duty_mask, FAN_MAX_COUNT, 1, "MQTT Fan PWM Mask"); } int cmd_mqtt_mask_mbfan_rpm(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_mbfan_rpm_mask, MBFAN_MAX_COUNT, 1, "MQTT MBFan RPM Mask"); } int cmd_mqtt_mask_mbfan_duty(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->mqtt_mbfan_duty_mask, MBFAN_MAX_COUNT, 1, "MQTT MBFan PWM Mask"); } #if TLS_SUPPORT int cmd_mqtt_tls(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->mqtt_tls, "MQTT TLS Mode"); } int cmd_tls_pkey(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { char *buf; uint32_t buf_len = 4096; uint32_t file_size; int incount = 1; int res = 0; if (query) { res = flash_read_file(&buf, &file_size, "key.pem"); if (res == 0 && buf != NULL) { printf("%s\n", buf); free(buf); return 0; } else { printf("No private key present.\n"); } return 2; } if ((buf = malloc(buf_len)) == NULL) { log_msg(LOG_ERR,"cmd_tls_pkey(): not enough memory"); return 2; } buf[0] = 0; #if WATCHDOG_ENABLED watchdog_disable(); #endif if (!strncasecmp(args, "DELETE", 7)) { res = flash_delete_file("key.pem"); if (res == -2) { printf("No private key present.\n"); res = 0; } else if (res) { printf("Failed to delete private key: %d\n", res); res = 2; } else { printf("Private key successfully deleted.\n"); } } else { int v; if (str_to_int(args, &v, 10)) { if (v >= 1 && v <= 3) incount = v; } printf("Paste private key in PEM format:\n"); for(int i = 0; i < incount; i++) { if (read_pem_file(buf, buf_len, 5000, true) != 1) { printf("Invalid private key!\n"); res = 2; break; } } if (res == 0) { res = flash_write_file(buf, strlen(buf) + 1, "key.pem"); if (res) { printf("Failed to save private key.\n"); res = 2; } else { printf("Private key successfully saved. (length=%u)\n", strlen(buf)); res = 0; } } } #if WATCHDOG_ENABLED watchdog_enable(WATCHDOG_REBOOT_DELAY, 1); #endif free(buf); return res; } int cmd_tls_cert(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { char *buf; uint32_t buf_len = 8192; uint32_t file_size; int res = 0; if (query) { res = flash_read_file(&buf, &file_size, "cert.pem"); if (res == 0 && buf != NULL) { printf("%s\n", buf); free(buf); return 0; } else { printf("No certificate present.\n"); } return 2; } if ((buf = malloc(buf_len)) == NULL) { log_msg(LOG_ERR,"cmd_tls_cert(): not enough memory"); return 2; } buf[0] = 0; #if WATCHDOG_ENABLED watchdog_disable(); #endif if (!strncasecmp(args, "DELETE", 7)) { res = flash_delete_file("cert.pem"); if (res == -2) { printf("No certificate present.\n"); res = 0; } else if (res) { printf("Failed to delete certificate: %d\n", res); res = 2; } else { printf("Certificate successfully deleted.\n"); } } else { printf("Paste certificate in PEM format:\n"); if (read_pem_file(buf, buf_len, 5000, false) != 1) { printf("Invalid private key!\n"); res = 2; } else { res = flash_write_file(buf, strlen(buf) + 1, "cert.pem"); if (res) { printf("Failed to save certificate.\n"); res = 2; } else { printf("Certificate successfully saved. (length=%u)\n", strlen(buf)); res = 0; } } } #if WATCHDOG_ENABLED watchdog_enable(WATCHDOG_REBOOT_DELAY, 1); #endif free(buf); return res; } #endif /* TLS_SUPPORT */ int cmd_ssh_auth(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->ssh_auth, "SSH Server Authentication"); } int cmd_ssh_server(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->ssh_active, "SSH Server"); } int cmd_ssh_port(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint16_setting(cmd, args, query, prev_cmd, &conf->ssh_port, 0, 65535, "SSH Port"); } int cmd_ssh_user(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->ssh_user, sizeof(conf->ssh_user), "SSH Username", NULL); } int cmd_ssh_pass(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { printf("%s\n", cfg->ssh_pwhash); return 0; } if (strlen(args) > 0) { strncopy(conf->ssh_pwhash, generate_sha512crypt_pwhash(args), sizeof(conf->ssh_pwhash)); } else { conf->ssh_pwhash[0] = 0; log_msg(LOG_NOTICE, "SSH password removed."); } return 0; } int cmd_ssh_pkey(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; ssh_list_pkeys(); return 0; } int cmd_ssh_pkey_create(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; return ssh_create_pkey(args); } int cmd_ssh_pkey_del(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; return ssh_delete_pkey(args); } int cmd_ssh_pubkey(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int count = 0; char tmp[255]; if (!query) return 1; for (int i = 0; i < SSH_MAX_PUB_KEYS; i++) { struct ssh_public_key *k = &conf->ssh_pub_keys[i]; if (k->pubkey_size == 0 || strlen(k->username) < 1) continue; printf("%d: %s, %s\n", ++count, k->username, ssh_pubkey_to_str(k, tmp, sizeof(tmp))); } if (count < 1) { printf("No SSH (authentication) public keys found.\n"); } return 0; } int cmd_ssh_pubkey_add(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { struct ssh_public_key pubkey; char *s, *username, *pkey, *saveptr; int res = 0; if (query) return 1; if (!(s = strdup(args))) return 2; if ((username = strtok_r(s, " ", &saveptr))) { username = trim_str(username); if (strlen(username) < 1) username = NULL; } if ((pkey = strtok_r(NULL, ",", &saveptr))) { pkey = trim_str(pkey); if (str_to_ssh_pubkey(pkey, &pubkey)) pkey = NULL; } if (username && pkey) { int idx = -1; /* Check for first available slot */ for(int i = 0; i < SSH_MAX_PUB_KEYS; i++) { if (conf->ssh_pub_keys[i].pubkey_size == 0) { idx = i; break; } } if (idx < 0) { printf("Maximum number of public keys already added.\n"); res = 2; } else { strncopy(pubkey.username, username, sizeof(pubkey.username)); conf->ssh_pub_keys[idx] = pubkey; log_msg(LOG_INFO, "SSH Public key added: slot %d: %s (%s)\n", idx + 1, pubkey.type, pubkey.username); } } free(s); return res; } int cmd_ssh_pubkey_del(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int idx; if (query) return 1; if (!str_to_int(args, &idx, 10)) return 2; if (idx < 1 || idx > SSH_MAX_PUB_KEYS) return 2; idx--; if (conf->ssh_pub_keys[idx].pubkey_size > 0) { log_msg(LOG_INFO, "SSH Public key deleted: slot %d: %s:%s (%s)\n", idx + 1, conf->ssh_pub_keys[idx].username, conf->ssh_pub_keys[idx].type, conf->ssh_pub_keys[idx].name); memset(&conf->ssh_pub_keys[idx], 0, sizeof(struct ssh_public_key)); } return 0; } int cmd_ssh_acls(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return acl_list_change(cmd, args, query, prev_cmd, "SSH Server ACLs", conf->ssh_acls, SSH_MAX_ACL_ENTRIES); } int cmd_telnet_auth(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->telnet_auth, "Telnet Server Authentication"); } int cmd_telnet_rawmode(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->telnet_raw_mode, "Telnet Server Raw Mode"); } int cmd_telnet_server(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->telnet_active, "Telnet Server"); } int cmd_telnet_port(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint16_setting(cmd, args, query, prev_cmd, &conf->telnet_port, 0, 65535, "Telnet Port"); } int cmd_telnet_user(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->telnet_user, sizeof(conf->telnet_user), "Telnet Username", NULL); } int cmd_telnet_pass(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) { printf("%s\n", cfg->telnet_pwhash); return 0; } if (strlen(args) > 0) { strncopy(conf->telnet_pwhash, generate_sha512crypt_pwhash(args), sizeof(conf->telnet_pwhash)); } else { conf->telnet_pwhash[0] = 0; log_msg(LOG_NOTICE, "Telnet password removed."); } return 0; } int cmd_telnet_acls(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return acl_list_change(cmd, args, query, prev_cmd, "Telnet Server ACLs", conf->telnet_acls, TELNET_MAX_ACL_ENTRIES); } int cmd_snmp_agent(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->snmp_active, "SNMP Agent"); } int cmd_snmp_community(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->snmp_community, sizeof(conf->snmp_community), "SNMP Community", NULL); } int cmd_snmp_community_write(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->snmp_community_write, sizeof(conf->snmp_community_write), "SNMP Community (Write)", NULL); } int cmd_snmp_contact(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->snmp_contact, sizeof(conf->snmp_contact), "SNMP sysContact", NULL); } int cmd_snmp_location(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->snmp_location, sizeof(conf->snmp_location), "SNMP sysLocation", NULL); } int cmd_snmp_auth_traps(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->snmp_auth_traps, "SNMP Authentication Traps"); } int cmd_snmp_community_trap(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->snmp_community_trap, sizeof(conf->snmp_community_trap), "SNMP Traps Community", NULL); } int cmd_snmp_trap_dst(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return ip_change(cmd, args, query, prev_cmd, "SNMP Trap Destination", &conf->snmp_trap_dst); } int cmd_http_server(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->http_active, "HTTP Server"); } int cmd_http_port(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint16_setting(cmd, args, query, prev_cmd, &conf->http_port, 0, 65535, "HTTP Server Port"); } int cmd_http_tlsport(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint16_setting(cmd, args, query, prev_cmd, &conf->https_port, 0, 65535, "HTTPS Server Port"); } int cmd_http_mask_fan(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->http_fan_mask, FAN_MAX_COUNT, 1, "HTTP Fan Mask"); } int cmd_http_mask_mbfan(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->http_mbfan_mask, MBFAN_MAX_COUNT, 1, "HTTP MBFan Mask"); } int cmd_http_mask_sensor(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->http_sensor_mask, SENSOR_MAX_COUNT, 1, "HTTP Sensor Mask"); } int cmd_http_mask_vsensor(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bitmask16_setting(cmd, args, query, prev_cmd, &conf->http_vsensor_mask, VSENSOR_MAX_COUNT, 1, "HTTP Virtual Sensor Mask"); } #endif /* WIFI_SUPPOERT */ int cmd_time(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { struct timespec ts; time_t t; char buf[32]; if (query) { if (aon_timer_is_running()) { aon_timer_get_time(&ts); time_t_to_str(buf, sizeof(buf), timespec_to_time_t(&ts)); printf("%s\n", buf); } return 0; } if (str_to_time_t(args, &t)) { time_t_to_timespec(t, &ts); if (aon_timer_is_running()) { aon_timer_set_time(&ts); } else { aon_timer_start(&ts); } time_t_to_str(buf, sizeof(buf), t); log_msg(LOG_NOTICE, "Set system clock: %s", buf); return 0; } return 2; } int cmd_timezone(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->timezone, sizeof(conf->timezone), "Timezone", NULL); } int cmd_uptime(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { const struct persistent_memory_block *m = persistent_mem; struct timespec ts; uint64_t uptime; char buf[32]; if (!query) return 1; if (aon_timer_is_running()) { if (aon_timer_get_time(&ts)) { time_t_to_str(buf, sizeof(buf), timespec_to_time_t(&ts)); printf("%s ", buf + 11); } } uptime = to_us_since_boot(get_absolute_time()); uptime_to_str(buf, sizeof(buf), uptime, false); printf("up %s%s\n", buf, (rebooted_by_watchdog ? " [rebooted by watchdog]" : "")); uptime_to_str(buf, sizeof(buf), uptime + m->total_uptime, false); printf("since cold boot %s (soft reset count: %lu)\n", buf, m->warmstart); return 0; } int cmd_err(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; for (int i = 0; error_codes[i].error != NULL; i++) { if (error_codes[i].error_num == last_error_num) { printf("%d,\"%s\"\n", last_error_num, error_codes[i].error); last_error_num = 0; return 0; } } printf("-1,\"Internal Error\"\n"); return 0; } int cmd_name(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return string_setting(cmd, args, query, prev_cmd, conf->name, sizeof(conf->name), "System Name", NULL); } int cmd_lfs(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { size_t size, free, used, files, dirs; if (!query) return 1; if (flash_get_fs_info(&size, &free, &files, &dirs, NULL) < 0) return 2; used = size - free; printf("Filesystem size: %u\n", size); printf("Filesystem used: %u\n", used); printf("Filesystem free: %u\n", free); printf("Number of files: %u\n", files); printf("Number of subdirectories: %u\n", dirs); return 0; } int cmd_lfs_del(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; if (strlen(args) < 1) return 2; if (flash_delete_file(args)) return 2; return 0; } int cmd_lfs_dir(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; flash_list_directory("/", true); return 0; } int cmd_lfs_format(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; printf("Formatting flash filesystem...\n"); if (flash_format(true)) return 2; printf("Filesystem successfully formatted.\n"); return 0; } int cmd_lfs_ren(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { char *saveptr, *oldname, *newname, *arg; int res = 2; if (query) return 1; if (!(arg = strdup(args))) return 2; oldname = strtok_r(arg, " \t", &saveptr); if (oldname && strlen(oldname) > 0) { newname = strtok_r(NULL, " \t", &saveptr); if (newname && strlen(newname) > 0) { if (!flash_rename_file(oldname, newname)) { res = 0; } } } free(arg); return res; } int cmd_lfs_copy(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { char *saveptr, *srcname, *dstname, *arg; int res = 2; if (query) return 1; if (!(arg = strdup(args))) return 2; srcname = strtok_r(arg, " \t", &saveptr); if (srcname && strlen(srcname) > 0) { dstname = strtok_r(NULL, " \t", &saveptr); if (dstname && strlen(dstname) > 0) { if (strcmp(srcname, dstname)) { if (!flash_copy_file(srcname, dstname, false)) { res = 0; } } } } free(arg); return res; } int cmd_flash(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; print_rp2040_flashinfo(); return 0; } int cmd_psram(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; print_psram_info(); return 0; } /* Disable optimizations since GCC 15.2 causes test for largest available memory block to fail... */ int __attribute__((optimize("O0"))) cmd_memory(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { const int TEST_MEM_SIZE = 1024 * 1024; int blocksize; if (query) { print_rp2_meminfo(); printf("mallinfo:\n"); print_mallinfo(); return 0; } if (str_to_int(args, &blocksize, 10)) { if (blocksize < 512) blocksize = 512; if (blocksize > 8192) blocksize= 8192; } else { blocksize = 1024; } /* Test for largest available memory block... */ void *buf = NULL; size_t bufsize = blocksize; do { if (!(buf = malloc(bufsize))) break; free(buf); bufsize += blocksize; } while (bufsize <= TEST_MEM_SIZE); printf("Largest available memory block: %u bytes\n", bufsize - blocksize); /* Test how much memory available in 'blocksize' blocks... */ int i = 0; int max = TEST_MEM_SIZE / blocksize + 1; size_t refbufsize = max * sizeof(void*); void **refbuf = malloc(refbufsize); if (refbuf) { memset(refbuf, 0, refbufsize); while (i < max) { if (!(refbuf[i] = malloc(blocksize))) break; i++; } } printf("Total available memory: %u bytes\n", i * blocksize + refbufsize); if (refbuf) { i = 0; while (i < max && refbuf[i]) { free(refbuf[i++]); } free(refbuf); } return 0; } int cmd_memtest(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (query) return 1; #if WATCHDOG_ENABLED watchdog_disable(); #endif rp2_memtest(); #if WATCHDOG_ENABLED watchdog_enable(WATCHDOG_REBOOT_DELAY, 1); #endif return 0; } int cmd_onewire(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->onewire_active, "1-Wire Bus status"); } int cmd_onewire_sensors(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { int i; if (!query) return 1; if (!conf->onewire_active) return -1; for (i = 0; i < ONEWIRE_MAX_COUNT; i++) { uint64_t addr = onewire_address(i); if (addr) printf("%d,%016llx,%1.1f\n", i + 1, addr, st->onewire_temp[i]); } return 0; } int cmd_i2c(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; display_i2c_status(); return 0; } int cmd_i2c_scan(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { if (!query) return 1; scan_i2c_bus(); return 0; } int cmd_i2c_speed(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return uint32_setting(cmd, args, query, prev_cmd, &conf->i2c_speed, 10000, 3400000, "I2C Bus Speed (Hz)"); } int cmd_serial(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->serial_active, "Serial Console status"); } int cmd_spi(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd) { return bool_setting(cmd, args, query, prev_cmd, &conf->spi_active, "SPI (LCD Display) status"); } const struct cmd_t display_commands[] = { { "LAYOUTR", 7, NULL, cmd_display_layout_r }, { "LOGO", 4, NULL, cmd_display_logo }, { "THEMe", 4, NULL, cmd_display_theme }, { 0, 0, 0, 0 } }; const struct cmd_t lfs_commands[] = { { "COPY", 4, NULL, cmd_lfs_copy }, { "DELete", 3, NULL, cmd_lfs_del }, { "DIRectory", 3, NULL, cmd_lfs_dir }, { "FORMAT", 6, NULL, cmd_lfs_format }, { "REName", 3, NULL, cmd_lfs_ren }, { 0, 0, 0, 0 } }; const struct cmd_t wifi_commands[] = { #ifdef WIFI_SUPPORT { "AUTHmode", 4, NULL, cmd_wifi_auth_mode }, { "COUntry", 3, NULL, cmd_wifi_country }, { "GATEway", 4, NULL, cmd_wifi_gateway }, { "HOSTname", 4, NULL, cmd_wifi_hostname }, { "IPaddress", 2, NULL, cmd_wifi_ip }, { "MAC", 3, NULL, cmd_wifi_mac }, { "NETMask", 4, NULL, cmd_wifi_netmask }, { "DNS", 3, NULL, cmd_wifi_dns }, { "NTPClient", 4, NULL, cmd_wifi_ntp_client }, { "NTP", 3, NULL, cmd_wifi_ntp }, { "MODE", 4, NULL, cmd_wifi_mode }, { "PASSword", 4, NULL, cmd_wifi_password }, { "REJOIN", 6, NULL, cmd_wifi_rejoin }, { "SSID", 4, NULL, cmd_wifi_ssid }, { "STATS", 5, NULL, cmd_wifi_stats }, { "STATus", 4, NULL, cmd_wifi_status }, { "INFO", 4, NULL, cmd_wifi_info }, { "SYSLOGClient", 7, NULL, cmd_wifi_syslog_client }, { "SYSLOG", 6, NULL, cmd_wifi_syslog }, #endif { 0, 0, 0, 0 } }; #ifdef WIFI_SUPPORT const struct cmd_t http_mask_commands[] = { { "SENSOR", 6, NULL, cmd_http_mask_sensor }, { "VSENSOR", 7, NULL, cmd_http_mask_vsensor }, { "FAN", 3, NULL, cmd_http_mask_fan }, { "MBFAN", 5, NULL, cmd_http_mask_mbfan }, { 0, 0, 0, 0 } }; const struct cmd_t http_commands[] = { { "MASK", 4, http_mask_commands, NULL }, { "PORT", 4, NULL, cmd_http_port }, { "TLSPORT", 7, NULL, cmd_http_tlsport }, { "SERVer", 4, NULL, cmd_http_server }, { 0, 0, 0, 0 } }; const struct cmd_t mqtt_mask_commands[] = { { "TEMP", 4, NULL, cmd_mqtt_mask_temp }, { "VTEMP", 5, NULL, cmd_mqtt_mask_vtemp }, { "VHUMidity", 4, NULL, cmd_mqtt_mask_vhumidity }, { "VPREssure", 4, NULL, cmd_mqtt_mask_vpressure }, { "FANRPM", 6, NULL, cmd_mqtt_mask_fan_rpm }, { "FANPWM", 6, NULL, cmd_mqtt_mask_fan_duty }, { "MBFANRPM", 8, NULL, cmd_mqtt_mask_mbfan_rpm }, { "MBFANPWM", 8, NULL, cmd_mqtt_mask_mbfan_duty }, { 0, 0, 0, 0 } }; const struct cmd_t mqtt_interval_commands[] = { { "STATUS", 6, NULL, cmd_mqtt_status_interval }, { "TEMP", 4, NULL, cmd_mqtt_temp_interval }, { "VSENsor", 4, NULL, cmd_mqtt_vsensor_interval }, { "RPM", 3, NULL, cmd_mqtt_rpm_interval }, { "PWM", 3, NULL, cmd_mqtt_duty_interval }, { 0, 0, 0, 0 } }; const struct cmd_t mqtt_topic_commands[] = { { "STATus", 4, NULL, cmd_mqtt_status_topic }, { "COMMand", 4, NULL, cmd_mqtt_cmd_topic }, { "RESPonse", 4, NULL, cmd_mqtt_resp_topic }, { "TEMP", 4, NULL, cmd_mqtt_temp_topic }, { "VTEMP", 5, NULL, cmd_mqtt_vtemp_topic }, { "VHUMidity", 4, NULL, cmd_mqtt_vhumidity_topic }, { "VPREssure", 4, NULL, cmd_mqtt_vpressure_topic }, { "FANRPM", 6, NULL, cmd_mqtt_fan_rpm_topic }, { "FANPWM", 6, NULL, cmd_mqtt_fan_duty_topic }, { "MBFANRPM", 8, NULL, cmd_mqtt_mbfan_rpm_topic }, { "MBFANPWM", 8, NULL, cmd_mqtt_mbfan_duty_topic }, { 0, 0, 0, 0 } }; const struct cmd_t mqtt_ha_commands[] = { { "DISCovery", 4, NULL, cmd_mqtt_ha_discovery }, { 0, 0, 0, 0 } }; const struct cmd_t mqtt_commands[] = { { "SERVer", 4, NULL, cmd_mqtt_server }, { "PORT", 4, NULL, cmd_mqtt_port }, { "USER", 4, NULL, cmd_mqtt_user }, { "PASSword", 4, NULL, cmd_mqtt_pass }, { "SCPI", 4, NULL, cmd_mqtt_allow_scpi }, #if TLS_SUPPORT { "TLS", 3, NULL, cmd_mqtt_tls }, #endif { "HA", 2, mqtt_ha_commands, NULL }, { "INTerval", 3, mqtt_interval_commands, NULL }, { "MASK", 4, mqtt_mask_commands, NULL }, { "TOPIC", 5, mqtt_topic_commands, NULL }, { 0, 0, 0, 0 } }; const struct cmd_t snmp_trap_commands[] = { { "AUTH", 4, NULL, cmd_snmp_auth_traps }, { "COMMunity", 4, NULL, cmd_snmp_community_trap }, { "DESTination", 4, NULL, cmd_snmp_trap_dst }, { 0, 0, 0, 0 } }; const struct cmd_t snmp_commands[] = { { "AGENT", 5, NULL, cmd_snmp_agent }, { "COMMunity", 4, NULL, cmd_snmp_community }, { "CONTact", 4, NULL, cmd_snmp_contact }, { "LOCAtion", 4, NULL, cmd_snmp_location }, { "TRAPs", 4, snmp_trap_commands, NULL }, { "WRITecommunity", 4, NULL, cmd_snmp_community_write }, { 0, 0, 0, 0 } }; const struct cmd_t ssh_pkey_commands[] = { { "CREate", 3, NULL, cmd_ssh_pkey_create }, { "DELete", 3, NULL, cmd_ssh_pkey_del }, { "LIST", 4, NULL, cmd_ssh_pkey }, { 0, 0, 0, 0 } }; const struct cmd_t ssh_pubkey_commands[] = { { "ADD", 3, NULL, cmd_ssh_pubkey_add }, { "DELete", 3, NULL, cmd_ssh_pubkey_del }, { "LIST", 4, NULL, cmd_ssh_pubkey }, { 0, 0, 0, 0 } }; const struct cmd_t ssh_commands[] = { { "ACLs", 3, NULL, cmd_ssh_acls }, { "AUTH", 4, NULL, cmd_ssh_auth }, { "PORT", 4, NULL, cmd_ssh_port }, { "SERVer", 4, NULL, cmd_ssh_server }, { "PASSword", 4, NULL, cmd_ssh_pass }, { "USER", 4, NULL, cmd_ssh_user }, { "KEY", 3, ssh_pkey_commands, cmd_ssh_pkey }, { "PUBKEY", 6, ssh_pubkey_commands, cmd_ssh_pubkey }, { 0, 0, 0, 0 } }; const struct cmd_t telnet_commands[] = { { "ACLs", 3, NULL, cmd_telnet_acls }, { "AUTH", 4, NULL, cmd_telnet_auth }, { "PORT", 4, NULL, cmd_telnet_port }, { "RAWmode", 3, NULL, cmd_telnet_rawmode }, { "SERVer", 4, NULL, cmd_telnet_server }, { "PASSword", 4, NULL, cmd_telnet_pass }, { "USER", 4, NULL, cmd_telnet_user }, { 0, 0, 0, 0 } }; const struct cmd_t tls_commands[] = { #if TLS_SUPPORT { "CERT", 4, NULL, cmd_tls_cert }, { "PKEY", 4, NULL, cmd_tls_pkey }, #endif { 0, 0, 0, 0 } }; #endif const struct cmd_t i2c_commands[] = { { "SCAN", 4, NULL, cmd_i2c_scan }, { "SPEED", 5, NULL, cmd_i2c_speed }, { 0, 0, 0, 0 } }; #if ONEWIRE_SUPPORT const struct cmd_t onewire_commands[] = { { "SENsors", 3, NULL, cmd_onewire_sensors }, { 0, 0, 0, 0 } }; #endif const struct cmd_t system_commands[] = { { "BOARD", 5, NULL, cmd_board }, { "DEBUG", 5, NULL, cmd_debug }, /* Obsolete ? */ { "DISPlay", 4, display_commands, cmd_display_type }, { "ECHO", 4, NULL, cmd_echo }, { "ERRor", 3, NULL, cmd_err }, { "FANS", 4, NULL, cmd_fans }, { "FLASH", 5, NULL, cmd_flash }, { "I2C", 3, i2c_commands, cmd_i2c }, { "LED", 3, NULL, cmd_led }, { "LFS", 3, lfs_commands, cmd_lfs }, { "LOG", 3, NULL, cmd_log_level }, { "MBFANS", 6, NULL, cmd_mbfans }, { "MEMTEST", 7, NULL, cmd_memtest }, { "MEMory", 3, NULL, cmd_memory }, { "NAME", 4, NULL, cmd_name }, #if ONEWIRE_SUPPORT { "ONEWIRE", 7, onewire_commands, cmd_onewire }, #endif { "PSRAM", 5, NULL, cmd_psram }, { "SENSORS", 7, NULL, cmd_sensors }, { "SERIAL", 6, NULL, cmd_serial }, { "SPI", 3, NULL, cmd_spi }, { "SYSLOG", 6, NULL, cmd_syslog_level }, { "TIMEZONE", 8, NULL, cmd_timezone }, { "TIME", 4, NULL, cmd_time }, { "UPGRADE", 7, NULL, cmd_usb_boot }, { "UPTIme", 4, NULL, cmd_uptime }, { "VERsion", 3, NULL, cmd_version }, { "VREFadc", 4, NULL, cmd_adc_vref }, { "VSENSORS", 8, NULL, cmd_vsensors }, { "WIFI", 4, wifi_commands, cmd_wifi }, #if WIFI_SUPPORT { "HTTP", 4, http_commands, NULL }, { "MQTT", 4, mqtt_commands, NULL }, { "SNMP", 4, snmp_commands, NULL }, { "TELNET", 6, telnet_commands, NULL }, { "SSH", 3, ssh_commands, NULL }, { "TLS", 3, tls_commands, NULL }, #endif { 0, 0, 0, 0 } }; const struct cmd_t fan_hyst_commands[] = { { "TACho", 3, NULL, cmd_fan_tacho_hys }, { "PWM", 3, NULL, cmd_fan_pwm_hys }, { 0, 0, 0, 0 } }; const struct cmd_t fan_c_commands[] = { { "FILTER", 6, NULL, cmd_fan_filter }, { "MAXpwm", 3, NULL, cmd_fan_max_pwm }, { "MINpwm", 3, NULL, cmd_fan_min_pwm }, { "NAME", 4, NULL, cmd_fan_name }, { "PWMCoeff", 4, NULL, cmd_fan_pwm_coef }, { "PWMMap", 4, NULL, cmd_fan_pwm_map }, { "RPMFactor", 4, NULL, cmd_fan_rpm_factor }, { "RPMMOde", 5, NULL, cmd_fan_rpm_mode }, { "SOUrce", 3, NULL, cmd_fan_source }, { "HYSTeresis",4, fan_hyst_commands, NULL }, { 0, 0, 0, 0 } }; const struct cmd_t mbfan_c_commands[] = { { "FILTER", 6, NULL, cmd_mbfan_filter }, { "MAXrpm", 3, NULL, cmd_mbfan_max_rpm }, { "MINrpm", 3, NULL, cmd_mbfan_min_rpm }, { "NAME", 4, NULL, cmd_mbfan_name }, { "RPMCoeff", 4, NULL, cmd_mbfan_rpm_coef }, { "RPMFactor", 4, NULL, cmd_mbfan_rpm_factor }, { "RPMMOde", 5, NULL, cmd_mbfan_rpm_mode }, { "RPMMap", 4, NULL, cmd_mbfan_rpm_map }, { "SOUrce", 3, NULL, cmd_mbfan_source }, { 0, 0, 0, 0 } }; const struct cmd_t sensor_c_commands[] = { { "BETAcoeff", 4, NULL, cmd_sensor_beta_coef }, { "FILTER", 6, NULL, cmd_sensor_filter }, { "NAME", 4, NULL, cmd_sensor_name }, { "TEMPCoeff", 5, NULL, cmd_sensor_temp_coef }, { "TEMPMap", 5, NULL, cmd_sensor_temp_map }, { "TEMPNominal", 5, NULL, cmd_sensor_temp_nominal }, { "TEMPOffset", 5, NULL, cmd_sensor_temp_offset }, { "THERmistor", 4, NULL, cmd_sensor_ther_nominal }, { 0, 0, 0, 0 } }; const struct cmd_t vsensor_c_commands[] = { { "FILTER", 6, NULL, cmd_vsensor_filter }, { "NAME", 4, NULL, cmd_vsensor_name }, { "SOUrce", 3, NULL, cmd_vsensor_source }, { "TEMPMap", 5, NULL, cmd_vsensor_temp_map }, { 0, 0, 0, 0 } }; const struct cmd_t vsensors_c_commands[] = { { "SOUrce", 3, NULL, cmd_vsensors_sources }, { 0, 0, 0, 0 } }; const struct cmd_t config_commands[] = { { "DELete", 3, NULL, cmd_delete_config }, { "FAN", 3, fan_c_commands, NULL }, { "MBFAN", 5, mbfan_c_commands, NULL }, { "Read", 1, NULL, cmd_print_config }, { "SAVe", 3, NULL, cmd_save_config }, { "SENSOR", 6, sensor_c_commands, NULL }, { "UPLOAD", 6, NULL, cmd_upload_config }, { "VSENSORS", 8, vsensors_c_commands, cmd_vsensors_sources }, { "VSENSOR", 7, vsensor_c_commands, NULL }, { 0, 0, 0, 0 } }; const struct cmd_t fan_commands[] = { { "PWM", 3, NULL, cmd_fan_pwm }, { "Read", 1, NULL, cmd_fan_read }, { "RPM", 3, NULL, cmd_fan_rpm }, { "TACho", 3, NULL, cmd_fan_tacho }, { 0, 0, 0, 0 } }; const struct cmd_t mbfan_commands[] = { { "PWM", 3, NULL, cmd_mbfan_pwm }, { "Read", 1, NULL, cmd_mbfan_read }, { "RPM", 3, NULL, cmd_mbfan_rpm }, { "TACho", 3, NULL, cmd_mbfan_tacho }, { 0, 0, 0, 0 } }; const struct cmd_t sensor_commands[] = { { "Read", 1, NULL, cmd_sensor_temp }, { "TEMP", 4, NULL, cmd_sensor_temp }, { 0, 0, 0, 0 } }; const struct cmd_t vsensor_commands[] = { { "HUMidity", 3, NULL, cmd_vsensor_humidity }, { "PREssure", 3, NULL, cmd_vsensor_pressure }, { "Read", 1, NULL, cmd_vsensor_temp }, { "TEMP", 4, NULL, cmd_vsensor_temp }, { 0, 0, 0, 0 } }; const struct cmd_t measure_commands[] = { { "FAN", 3, fan_commands, cmd_fan_read }, { "MBFAN", 5, mbfan_commands, cmd_mbfan_read }, { "Read", 1, NULL, cmd_read }, { "SENSOR", 6, sensor_commands, cmd_sensor_temp }, { "VSENSORS", 8, NULL, cmd_vsensors_read }, { "VSENSOR", 7, vsensor_commands, cmd_vsensor_temp }, { 0, 0, 0, 0 } }; const struct cmd_t write_commands[] = { { "VSENSOR", 7, NULL, cmd_vsensor_write }, { 0, 0, 0, 0 } }; const struct cmd_t commands[] = { { "*CLS", 4, NULL, cmd_null }, { "*ESE", 4, NULL, cmd_null }, { "*ESR", 4, NULL, cmd_zero }, { "*IDN", 4, NULL, cmd_idn }, { "*OPC", 4, NULL, cmd_one }, { "*RST", 4, NULL, cmd_reset }, { "*SRE", 4, NULL, cmd_zero }, { "*STB", 4, NULL, cmd_zero }, { "*TST", 4, NULL, cmd_zero }, { "*WAI", 4, NULL, cmd_null }, { "CONFigure", 4, config_commands, cmd_print_config }, { "EXIT", 4, NULL, cmd_exit }, { "MEAsure", 3, measure_commands, NULL }, { "SYStem", 3, system_commands, NULL }, { "Read", 1, NULL, cmd_read }, { "WHO", 3, NULL, cmd_who }, { "WRIte", 3, write_commands, NULL }, { 0, 0, 0, 0 } }; /** * Process command string received from user. * * Splits command string into multiple commands by ';' character. * And executes each command using run_cmd() function. * * @param state Current system state. * @param config Current system configuration. * @param command command string */ void process_command(const struct fanpico_state *state, struct fanpico_config *config, char *command) { char *saveptr, *cmd; struct prev_cmd_t cmd_stack; const struct cmd_t *cmd_level = commands; if (!state || !config || !command) return; st = state; conf = config; cmd = strtok_r(command, ";", &saveptr); while (cmd) { cmd = trim_str(cmd); log_msg(LOG_DEBUG, "command: '%s'", cmd); if (cmd && strlen(cmd) > 0) { cmd_stack.depth = 0; cmd_stack.cmds[0] = NULL; cmd_level = run_cmd(cmd, commands, cmd_level, &cmd_stack, &last_error_num); } cmd = strtok_r(NULL, ";", &saveptr); } } /** * Return last command status code. * * @return status code */ int last_command_status() { return last_error_num; } ================================================ FILE: src/command_util.c ================================================ /* command_util.c Copyright (C) 2021-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include #include #include "pico/stdlib.h" #include "pico/unique_id.h" #include "pico/bootrom.h" #include "pico/util/datetime.h" #include "pico/aon_timer.h" #include "pico/rand.h" #include "hardware/clocks.h" #include "hardware/watchdog.h" #include "cJSON.h" #include "pico_sensor_lib.h" #include "fanpico.h" #ifdef WIFI_SUPPORT #include "lwip/ip_addr.h" #include "lwip/stats.h" #include "pico_telnetd/util.h" #endif #include "command_util.h" /** * Process (SCPI) command and execute associated command function. * * This process splits command into subcommands using ':' character. * And tries to find the command in the command structure, finally * calling the command function if command is found. * * @param cmd Command string. * @param cmd_level pointer to command structure tree to start search. * @param cmd_stack data structure to store subcommands found when parsing the command. * * @return command result (SCPI error code) */ const struct cmd_t* run_cmd(char *cmd, const struct cmd_t *commands, const struct cmd_t *cmd_level, struct prev_cmd_t *cmd_stack, int *last_error_num) { int i, query, cmd_len, total_len; char *saveptr1, *saveptr2, *t, *sub, *s, *arg; int res = -1; total_len = strlen(cmd); t = strtok_r(cmd, " \t", &saveptr1); if (t && strlen(t) > 0) { cmd_len = strlen(t); if (*t == ':' || *t == '*') { /* reset command level to 'root' */ cmd_level = commands; cmd_stack->depth = 0; } /* Split command to subcommands and search from command tree ... */ sub = strtok_r(t, ":", &saveptr2); while (sub && strlen(sub) > 0) { s = sub; sub = NULL; i = 0; while (cmd_level[i].cmd) { if (!strncasecmp(s, cmd_level[i].cmd, cmd_level[i].min_match)) { sub = strtok_r(NULL, ":", &saveptr2); if (cmd_level[i].subcmds && sub && strlen(sub) > 0) { /* Match for subcommand...*/ if (cmd_stack->depth < MAX_CMD_DEPTH) cmd_stack->cmds[cmd_stack->depth++] = s; cmd_level = cmd_level[i].subcmds; } else if (cmd_level[i].func) { /* Match for command */ query = (s[strlen(s)-1] == '?' ? 1 : 0); arg = t + cmd_len + 1; if (!query) mutex_enter_blocking(config_mutex); res = cmd_level[i].func(s, (total_len > cmd_len+1 ? arg : ""), query, cmd_stack); if (!query) mutex_exit(config_mutex); } break; } i++; } } } if (res < 0) { log_msg(LOG_INFO, "Unknown command."); *last_error_num = -113; } else if (res == 0) { *last_error_num = 0; } else if (res == 1) { *last_error_num = -100; } else if (res == 2) { *last_error_num = -102; } else { *last_error_num = -1; } return cmd_level; } /** * Extract (unsigned) number from end of command string. * * If string is "MBFAN3" return value is 3. * * @param cmd command string * * @return number extracted from string (negative values indicates error) */ int get_cmd_index(const char *cmd) { const char *s; uint len; int idx; if (!cmd) return -1; s = cmd; len = strnlen(cmd, 256); if (len < 1 || len >= 256) return -2; /* Skip any spaces and letters at the beginning of the string... */ while (len > 1) { if (isalpha((int)*s) || isblank((int)*s)) { s++; len--; } else { break; } } if (!str_to_int(s, &idx, 10)) return -3; return idx; } /** * Return earlier (sub)command string * * If full command was "CONF:FAN2:HYST:PWM". Depth 0 returns "HYST" * and depth 1 returns "FAN2". * * @param prev_cmd Structure storing previous sub commands * @param depth Which command to return (0=last, 1=2nd to last, ...) * * @return (sub)command string */ const char* get_prev_cmd(const struct prev_cmd_t *prev_cmd, uint depth) { char *cmd; if (!prev_cmd) cmd = NULL; else if (depth >= prev_cmd->depth) cmd = NULL; else cmd = prev_cmd->cmds[prev_cmd->depth - depth - 1]; return (cmd ? cmd : ""); } /** * Return number from end of an earlier (sub)command * * If full command was "CONF:FAN3:NAME?", then depth 0 returns "FAN3" * and depth 1 returns "CONF". * * @param prev_cmd Structure storing previous sub commands * @param depth Which command to return (0=last, 1=2nd to last, ...) * * @return number extracted from specified subcommand (negative value indicates error) */ int get_prev_cmd_index(const struct prev_cmd_t *prev_cmd, uint depth) { int idx; if (!prev_cmd) return -1; if (depth >= prev_cmd->depth) return -2; idx = get_cmd_index(prev_cmd->cmds[prev_cmd->depth - depth - 1]); return idx; } /* Helper functions for commands */ int string_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, char *var, size_t var_len, const char *name, validate_str_func_t validate_func) { if (query) { printf("%s\n", var); } else { if (validate_func) { if (!validate_func(args)) { log_msg(LOG_WARNING, "%s invalid argument: '%s'", name, args); return 2; } } if (strcmp(var, args)) { log_msg(LOG_NOTICE, "%s change '%s' --> '%s'", name, var, args); strncopy(var, args, var_len); } } return 0; } int bitmask16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint16_t *mask, uint16_t len, uint8_t base, const char *name) { uint32_t old = *mask; uint32_t new; if (query) { printf("%s\n", bitmask_to_str(old, len, base, true)); return 0; } if (!str_to_bitmask(args, len, &new, base)) { if (old != new) { char *o = strdup(bitmask_to_str(old, len, base, true)); if (o) { log_msg(LOG_NOTICE, "%s change '%s' --> '%s'", name, o, bitmask_to_str(new, len, base, true)); free(o); } else { log_msg(LOG_NOTICE, "%s change 0x%08lx --> 0x%08lx", name, old, new); } *mask = new; } return 0; } return 1; } int uint32_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint32_t *var, uint32_t min_val, uint32_t max_val, const char *name) { uint32_t val; int v; if (query) { printf("%lu\n", *var); return 0; } if (str_to_int(args, &v, 10)) { val = v; if (val >= min_val && val <= max_val) { if (*var != val) { log_msg(LOG_NOTICE, "%s change %u --> %u", name, *var, val); *var = val; } } else { log_msg(LOG_WARNING, "Invalid %s value: %s", name, args); return 2; } return 0; } return 1; } int uint16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint16_t *var, uint16_t min_val, uint16_t max_val, const char *name) { uint16_t val; int v; if (query) { printf("%u\n", *var); return 0; } if (str_to_int(args, &v, 10)) { val = v; if (val >= min_val && val <= max_val) { if (*var != val) { log_msg(LOG_NOTICE, "%s change %u --> %u", name, *var, val); *var = val; } } else { log_msg(LOG_WARNING, "Invalid %s value: %s", name, args); return 2; } return 0; } return 1; } int uint8_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint8_t *var, uint8_t min_val, uint8_t max_val, const char *name) { uint8_t val; int v; if (query) { printf("%u\n", *var); return 0; } if (str_to_int(args, &v, 10)) { val = v; if (val >= min_val && val <= max_val) { if (*var != val) { log_msg(LOG_NOTICE, "%s change %u --> %u", name, *var, val); *var = val; } } else { log_msg(LOG_WARNING, "Invalid %s value: %s", name, args); return 2; } return 0; } return 1; } int float_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, float *var, float min_val, float max_val, const char *name) { float val; if (query) { printf("%f\n", *var); return 0; } if (str_to_float(args, &val)) { if (val >= min_val && val <= max_val) { if (*var != val) { log_msg(LOG_NOTICE, "%s change %f --> %f", name, *var, val); *var = val; } return 0; } } log_msg(LOG_WARNING, "Invalid %s value: '%s'", name, args); return 1; } int bool_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, bool *var, const char *name) { bool val; if (query) { printf("%s\n", (*var ? "ON" : "OFF")); return 0; } if ((args[0] == '1' && args[1] == 0) || !strncasecmp(args, "true", 5) || !strncasecmp(args, "on", 3)) { val = true; } else if ((args[0] == '0' && args[1] == 0) || !strncasecmp(args, "false", 6) || !strncasecmp(args, "off", 4)) { val = false; } else { log_msg(LOG_WARNING, "Invalid %s value: %s", name, args); return 2; } if (*var != val) { log_msg(LOG_NOTICE, "%s change %s --> %s", name, (*var ? "ON" : "OFF"), (val ? "ON" : "OFF"));; *var = val; } return 0; } #ifdef WIFI_SUPPORT int ip_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, ip_addr_t *ip) { ip_addr_t tmpip; if (query) { printf("%s\n", ipaddr_ntoa(ip)); } else { if (!ipaddr_aton(args, &tmpip)) return 2; log_msg(LOG_NOTICE, "%s change '%s' --> %s'", name, ipaddr_ntoa(ip), args); ip_addr_copy(*ip, tmpip); } return 0; } int ip_list_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, ip_addr_t *ip, uint32_t list_len) { ip_addr_t tmpip; char buf[255], tmp[20]; char *t, *arg, *saveptr; int idx = 0; if (query) { for (int i = 0; i < list_len; i++) { if (i > 0) { if (ip_addr_isany(&ip[i])) break; printf(", "); } printf("%s", ipaddr_ntoa(&ip[i])); } printf("\n"); } else { if (!(arg = strdup(args))) return 2; t = strtok_r(arg, ",", &saveptr); while (t && idx < list_len) { t = trim_str(t); if (ipaddr_aton(t, &tmpip)) { ip_addr_copy(ip[idx], tmpip); idx++; if (ip_addr_isany(&tmpip)) break; } t = strtok_r(NULL, ",", &saveptr); } free(arg); if (idx == 0) return 1; buf[0] = 0; for (int i = 0; i < list_len; i++) { if (i >= idx) { ip_addr_set_zero(&ip[i]); } else { snprintf(tmp, sizeof(tmp), "%s%s", (i > 0 ? ", " : ""), ipaddr_ntoa(&ip[i])); strncatenate(buf, tmp, sizeof(buf)); } } log_msg(LOG_NOTICE, "%s changed to '%s'", name, buf); } return 0; } int acl_list_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, acl_entry_t *acl, uint32_t list_len) { ip_addr_t tmpip; char buf[255], tmp[32]; char *t, *t2, *arg, *saveptr, *saveptr2; int prefix; int idx = 0; if (query) { for (int i = 0; i < list_len; i++) { if (i > 0) { if (acl[i].prefix == 0) break; printf(", "); } printf("%s/%u", ipaddr_ntoa(&acl[i].ip), acl[i].prefix); } printf("\n"); return 0; } if (!(arg = strdup(args))) return 2; t = strtok_r(arg, ",", &saveptr); while (t && idx < list_len) { t = trim_str(t); t2 = strtok_r(t, "/", &saveptr2); if (t2 && ipaddr_aton(t2, &tmpip)) { t2 = strtok_r(NULL, "/", &saveptr2); if (t2 && str_to_int(t2, &prefix, 10)) { ip_addr_copy(acl[idx].ip, tmpip); acl[idx].prefix = clamp_int(prefix, 0, IP_IS_V6(tmpip) ? 128 : 32); idx++; if (acl[idx - 1].prefix == 0) break; } } t = strtok_r(NULL, ",", &saveptr); } free(arg); if (idx == 0) return 1; buf[0] = 0; for (int i = 0; i < list_len; i++) { if (i >= idx) { ip_addr_set_zero(&acl[i].ip); acl[i].prefix = 0; } else { snprintf(tmp, sizeof(tmp), "%s%s/%u", (i > 0 ? ", " : ""), ipaddr_ntoa(&acl[i].ip), acl[i].prefix); strncatenate(buf, tmp, sizeof(buf)); } } log_msg(LOG_NOTICE, "%s changed to '%s'", name, buf); return 0; } #endif int array_string_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, size_t var_len, const char *name_template, validate_str_func_t validate_func) { int idx = get_prev_cmd_index(prev_cmd, cmd_offset) - 1; if (idx >= 0 && idx < array_size) { char *var = (char*)(array + (idx * element_size) + var_offset); char name[64]; snprintf(name, sizeof(name), name_template, idx + 1); name[sizeof(name) - 1 ] = 0; if (query) { printf("%s\n", var); } else { if (validate_func) { if (!validate_func(args)) { log_msg(LOG_WARNING, "%s invalid argument: '%s'", name, args); return 2; } } if (strcmp(var, args)) { log_msg(LOG_NOTICE, "%s change '%s' --> '%s'", name, var, args); strncopy(var, args, var_len); } } return 0; } return 1; } int array_uint8_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, uint8_t min_val, uint8_t max_val) { int idx = get_prev_cmd_index(prev_cmd, cmd_offset) - 1; if (idx >= 0 && idx < array_size) { uint8_t *var = (uint8_t*)(array + (idx * element_size) + var_offset); int val; char name[64]; snprintf(name, sizeof(name), name_template, idx + 1); name[sizeof(name) - 1 ] = 0; if (query) { printf("%u\n", *var); } else if (str_to_int(args, &val, 10)) { if (val < min_val || val > max_val) { log_msg(LOG_WARNING, "%s invalid argument: '%s'", name, args); return 2; } if (val != *var) { log_msg(LOG_NOTICE, "%s change %d --> %d", name, *var, val); *var = val; } return 0; } } return 1; } int array_uint16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, uint16_t min_val, uint16_t max_val) { int idx = get_prev_cmd_index(prev_cmd, cmd_offset) - 1; if (idx >= 0 && idx < array_size) { uint16_t *var = (uint16_t*)(array + (idx * element_size) + var_offset); int val; char name[64]; snprintf(name, sizeof(name), name_template, idx + 1); name[sizeof(name) - 1 ] = 0; if (query) { printf("%u\n", *var); } else if (str_to_int(args, &val, 10)) { if (val < min_val || val > max_val) { log_msg(LOG_WARNING, "%s invalid argument: '%s'", name, args); return 2; } if (val != *var) { log_msg(LOG_NOTICE, "%s change %d --> %d", name, *var, val); *var = val; } return 0; } } return 1; } int array_float_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, float min_val, float max_val) { int idx = get_prev_cmd_index(prev_cmd, cmd_offset) - 1; if (idx >= 0 && idx < array_size) { float *var = (float*)(array + (idx * element_size) + var_offset); float val; char name[64]; snprintf(name, sizeof(name), name_template, idx + 1); name[sizeof(name) - 1 ] = 0; if (query) { printf("%f\n", *var); } else if (str_to_float(args, &val)) { if (val < min_val || val > max_val) { log_msg(LOG_WARNING, "%s invalid argument: '%s'", name, args); return 2; } if (val != *var) { log_msg(LOG_NOTICE, "%s change %f --> %f", name, *var, val); *var = val; } return 0; } } return 1; } ================================================ FILE: src/command_util.h ================================================ /* command_util.h Copyright (C) 2021-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef FANPICO_COMMAND_UTIL_H #define FANPICO_COMMAND_UTIL_H 1 #ifdef WIFI_SUPPORT #include "lwip/ip_addr.h" #endif #define MAX_CMD_DEPTH 16 typedef int (*validate_str_func_t)(const char *args); struct prev_cmd_t { uint depth; char* cmds[MAX_CMD_DEPTH]; }; struct cmd_t { const char *cmd; uint8_t min_match; const struct cmd_t *subcmds; int (*func)(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd); }; /* command_util.h */ const struct cmd_t* run_cmd(char *cmd, const struct cmd_t *commands, const struct cmd_t *cmd_level, struct prev_cmd_t *cmd_stack, int *last_error_num); int get_cmd_index(const char *cmd); const char* get_prev_cmd(const struct prev_cmd_t *prev_cmd, uint depth); int get_prev_cmd_index(const struct prev_cmd_t *prev_cmd, uint depth); int string_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, char *var, size_t var_len, const char *name, validate_str_func_t validate_func); int bitmask16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint16_t *mask, uint16_t len, uint8_t base, const char *name); int float_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, float *var, float min_val, float max_val, const char *name); int uint32_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint32_t *var, uint32_t min_val, uint32_t max_val, const char *name); int uint16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint16_t *var, uint16_t min_val, uint16_t max_val, const char *name); int uint8_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, uint8_t *var, uint8_t min_val, uint8_t max_val, const char *name); int bool_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, bool *var, const char *name); #ifdef WIFI_SUPPORT int ip_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, ip_addr_t *ip); int ip_list_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, ip_addr_t *ip, uint32_t list_len); int acl_list_change(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, const char *name, acl_entry_t *ip, uint32_t list_len); #endif int array_string_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, size_t var_len, const char *name, validate_str_func_t validate_func); int array_uint8_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, uint8_t min_val, uint8_t max_val); int array_uint16_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, uint16_t min_val, uint16_t max_val); int array_float_setting(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd, int cmd_offset, void *array, size_t array_size, size_t element_size, size_t var_offset, const char *name_template, float min_val, float max_val); /* command.c */ int cmd_board(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd); int cmd_version(const char *cmd, const char *args, int query, struct prev_cmd_t *prev_cmd); #endif /* FANPICO_COMMAND_UTIL_H */ ================================================ FILE: src/config.c ================================================ /* config.c Copyright (C) 2021-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "pico/mutex.h" #include "cJSON.h" #include "pico_sensor_lib.h" #ifdef WIFI_SUPPORT #include "lwip/ip_addr.h" #endif #include "fanpico.h" /* Default configuration embedded using default_config.s */ extern const char fanpico_default_config[]; struct fanpico_config fanpico_config; const struct fanpico_config *cfg = &fanpico_config; auto_init_mutex(config_mutex_inst); mutex_t *config_mutex = &config_mutex_inst; int str2pwm_source(const char *s) { int ret = PWM_FIXED; if (s) { if (!strncasecmp(s, "mbfan", 5)) ret = PWM_MB; else if (!strncasecmp(s, "sensor", 6)) ret = PWM_SENSOR; else if (!strncasecmp(s, "vsensor", 7)) ret = PWM_VSENSOR; else if (!strncasecmp(s, "fan", 3)) ret = PWM_FAN; } return ret; } const char* pwm_source2str(enum pwm_source_types source) { if (source == PWM_MB) return "mbfan"; else if (source == PWM_SENSOR) return "sensor"; else if (source == PWM_VSENSOR) return "vsensor"; else if (source == PWM_FAN) return "fan"; return "fixed"; } int valid_pwm_source_ref(enum pwm_source_types source, uint16_t s_id) { int ret = 0; switch (source) { case PWM_FIXED: ret = (s_id >= 0 && s_id <= 100 ? 1 : 0); break; ;; case PWM_MB: ret = (s_id >= 0 && s_id < MBFAN_MAX_COUNT ? 1 : 0); break; case PWM_SENSOR: ret = (s_id >= 0 && s_id < SENSOR_MAX_COUNT ? 1 : 0); break; case PWM_VSENSOR: ret = (s_id >= 0 && s_id < VSENSOR_MAX_COUNT ? 1 : 0); break; case PWM_FAN: ret = (s_id >= 0 && s_id < FAN_MAX_COUNT ? 1 : 0); break; } return ret; } int str2vsmode(const char *s) { int ret = VSMODE_MANUAL; if (s) { if (!strncasecmp(s, "max", 3)) ret = VSMODE_MAX; else if (!strncasecmp(s, "min", 3)) ret = VSMODE_MIN; else if (!strncasecmp(s, "avg", 3)) ret = VSMODE_AVG; else if (!strncasecmp(s, "delta", 5)) ret = VSMODE_DELTA; else if (!strncasecmp(s, "onewire", 7)) ret = VSMODE_ONEWIRE; else if (!strncasecmp(s, "i2c", 3)) ret = VSMODE_I2C; } return ret; } const char* vsmode2str(enum vsensor_modes mode) { if (mode == VSMODE_MAX) return "max"; else if (mode == VSMODE_MIN) return "min"; else if (mode == VSMODE_AVG) return "avg"; else if (mode == VSMODE_DELTA) return "delta"; else if (mode == VSMODE_ONEWIRE) return "onewire"; else if (mode == VSMODE_I2C) return "i2c"; return "manual"; } int str2rpm_mode(const char *s) { int ret = RMODE_TACHO; if (s) { if (!strncasecmp(s, "lra", 5)) ret = RMODE_LRA; } return ret; } const char* rpm_mode2str(enum rpm_modes mode) { if (mode == RMODE_LRA) return "lra"; return "tacho"; } int str2tacho_source(const char *s) { int ret = 0; if (s) { if (!strncasecmp(s, "fixed", 5)) ret = TACHO_FIXED; else if (!strncasecmp(s, "fan", 3)) ret = TACHO_FAN; else if (!strncasecmp(s, "min", 3)) ret = TACHO_MIN; else if (!strncasecmp(s, "max", 3)) ret = TACHO_MAX; else if (!strncasecmp(s, "avg", 3)) ret = TACHO_AVG; } return ret; } const char* tacho_source2str(enum tacho_source_types source) { if (source == TACHO_FAN) return "fan"; else if (source == TACHO_MIN) return "min"; else if (source == TACHO_MAX) return "max"; else if (source == TACHO_AVG) return "avg"; return "fixed"; } const char* onewireaddr2str(uint64_t addr) { static char s[17]; snprintf(s, sizeof(s), "%016llx", addr); return s; } uint64_t str2onewireaddr(const char *s) { return strtoull(s, NULL, 16); } int valid_tacho_source_ref(enum tacho_source_types source, uint16_t s_id) { int ret = 0; switch (source) { case TACHO_FIXED: ret = (s_id >= 0 && s_id <= 50000 ? 1 : 0); break; ;; case TACHO_FAN: case TACHO_MIN: case TACHO_MAX: case TACHO_AVG: ret = (s_id >= 0 && s_id < FAN_MAX_COUNT ? 1 : 0); break; } return ret; } static void json2pwm_map(cJSON *item, struct pwm_map *map) { cJSON *row; int c = 0; cJSON_ArrayForEach(row, item) { if (c < MAX_MAP_POINTS) { map->pwm[c][0] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 0)); map->pwm[c][1] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 1)); c++; } } map->points = c; } static cJSON* pwm_map2json(const struct pwm_map *map) { int i; cJSON *o, *row; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (i = 0; i < map->points; i++) { if ((row = cJSON_CreateArray())) { cJSON_AddItemToArray(row, cJSON_CreateNumber(map->pwm[i][0])); cJSON_AddItemToArray(row, cJSON_CreateNumber(map->pwm[i][1])); cJSON_AddItemToArray(o, row); } } return o; } static void json2filter(cJSON *item, enum signal_filter_types *filter, void **filter_ctx) { cJSON *args; *filter = str2filter(cJSON_GetStringValue(cJSON_GetObjectItem(item, "name"))); if ((args = cJSON_GetObjectItem(item, "args")) && *filter != FILTER_NONE) { *filter_ctx = filter_parse_args(*filter, cJSON_GetStringValue(args)); if (!*filter_ctx) *filter = FILTER_NONE; } } static cJSON* filter2json(enum signal_filter_types filter, void *filter_ctx) { cJSON *o; char *s; if ((o = cJSON_CreateObject()) == NULL) return NULL; cJSON_AddItemToObject(o, "name", cJSON_CreateString(filter2str(filter))); if ((s = filter_print_args(filter, filter_ctx))) { cJSON_AddItemToObject(o, "args", cJSON_CreateString(s)); free(s); } return o; } static void json2tacho_map(cJSON *item, struct tacho_map *map) { cJSON *row; int c = 0; cJSON_ArrayForEach(row, item) { if (c < MAX_MAP_POINTS) { map->tacho[c][0] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 0)); map->tacho[c][1] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 1)); c++; } } map->points = c; } static cJSON* tacho_map2json(const struct tacho_map *map) { int i; cJSON *o, *row; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (i = 0; i < map->points; i++) { if ((row = cJSON_CreateArray())) { cJSON_AddItemToArray(row, cJSON_CreateNumber(map->tacho[i][0])); cJSON_AddItemToArray(row, cJSON_CreateNumber(map->tacho[i][1])); cJSON_AddItemToArray(o, row); } } return o; } static void json2tacho_sources(cJSON *item, uint8_t *sources) { int i; cJSON *o; for (i = 0; i < FAN_MAX_COUNT; i++) sources[i] = 0; cJSON_ArrayForEach(o, item) { i = cJSON_GetNumberValue(o) - 1; if (i >= 0 && i < FAN_MAX_COUNT) sources[i] = 1; } } static cJSON* tacho_sources2json(const uint8_t *sources) { int i; cJSON *o; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (i = 0; i < FAN_COUNT; i++) { if (sources[i]) cJSON_AddItemToArray(o, cJSON_CreateNumber(i + 1)); } return o; } static void json2temp_map(cJSON *item, struct temp_map *map) { cJSON *row; int c = 0; cJSON_ArrayForEach(row, item) { if (c < MAX_MAP_POINTS) { map->temp[c][0] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 0)); map->temp[c][1] = cJSON_GetNumberValue(cJSON_GetArrayItem(row, 1)); c++; } } map->points = c; } static cJSON* temp_map2json(const struct temp_map *map) { int i; cJSON *o, *row; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (i = 0; i < map->points; i++) { if ((row = cJSON_CreateArray())) { cJSON_AddItemToArray(row, cJSON_CreateNumber(map->temp[i][0])); cJSON_AddItemToArray(row, cJSON_CreateNumber(map->temp[i][1])); cJSON_AddItemToArray(o, row); } } return o; } static void json2vsensors(cJSON *item, uint8_t *s) { cJSON *o; int i,val; int count = 0; for (i = 0; i < SENSOR_MAX_COUNT; i++) s[i] = 0; cJSON_ArrayForEach(o, item) { val = cJSON_GetNumberValue(o); if (count < SENSOR_COUNT && val >= 1 && val <= SENSOR_COUNT) { s[count++] = val; } } } static cJSON* vsensors2json(const uint8_t *s) { int i; cJSON *o; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (i = 0; i < SENSOR_COUNT; i++) { if (s[i]) { cJSON_AddItemToArray(o, cJSON_CreateNumber(s[i])); } } return o; } #ifdef WIFI_SUPPORT static void json2iplist(cJSON *item, ip_addr_t *list, uint32_t len) { cJSON *o; char *val; ip_addr_t tmpip; int count = 0; for (int i = 0; i < len; i++) ip_addr_set_any(0, &list[i]); cJSON_ArrayForEach(o, item) { val = cJSON_GetStringValue(o); if (val && count < len) { if (ipaddr_aton(val, &tmpip)) { ip_addr_copy(list[count++], tmpip); } } } } static cJSON* iplist2json(const ip_addr_t *list, uint32_t len) { cJSON *o; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (int i = 0; i < len; i++) { if (!ip_addr_isany(&list[i])) cJSON_AddItemToArray(o, cJSON_CreateString(ipaddr_ntoa(&list[i]))); } return o; } static void json2acllist(cJSON *item, acl_entry_t *list, uint32_t len) { cJSON *o; char *val; ip_addr_t tmpip; int count = 0; char *s, *tok, *saveptr; int prefix; for (int i = 0; i < len; i++) { ip_addr_set_any(0, &list[i].ip); list[i].prefix = 0; } cJSON_ArrayForEach(o, item) { val = cJSON_GetStringValue(o); if (val && count < len && (s = strdup(val))) { tok = strtok_r(s, "/", &saveptr); if (tok && ipaddr_aton(tok, &tmpip)) { tok = strtok_r(NULL, "/", &saveptr); if (tok && str_to_int(tok, &prefix, 10)) { ip_addr_copy(list[count].ip, tmpip); list[count].prefix = clamp_int(prefix, 0, IP_IS_V6(tmpip) ? 128 : 32); count++; } } free(s); } } } static cJSON* acllist2json(const acl_entry_t *list, uint32_t len) { cJSON *o; char tmp[128]; int count = 0; if ((o = cJSON_CreateArray()) == NULL) return NULL; for (int i = 0; i < len; i++) { if (list[i].prefix > 0) { snprintf(tmp, sizeof(tmp), "%s/%u", ipaddr_ntoa(&list[i].ip), list[i].prefix); cJSON_AddItemToArray(o, cJSON_CreateString(tmp)); count++; } } if (count < 1) { cJSON_Delete(o); o = NULL; } return o; } static void json2sshpubkeys(cJSON *list, struct ssh_public_key *keys) { cJSON *r, *user, *pkey; struct ssh_public_key *k; int idx = 0; for (int i = 0; i < SSH_MAX_PUB_KEYS; i++) { keys[i].username[0] = 0; keys[i].type[0] = 0; keys[i].name[0] = 0; keys[i].pubkey_size = 0; } cJSON_ArrayForEach(r, list) { k = &keys[idx]; user = cJSON_GetObjectItem(r, "user"); pkey = cJSON_GetObjectItem(r, "pubkey"); if (user && pkey) { if (str_to_ssh_pubkey(cJSON_GetStringValue(pkey), k) == 0) { strncopy(k->username, cJSON_GetStringValue(user), sizeof(k->username)); idx++; } } if (idx >= SSH_MAX_PUB_KEYS) break; } } static cJSON* sshpubkeys2json(const struct ssh_public_key *keys) { const size_t buf_len = 256; char *buf; int count = 0; cJSON *o, *r; if (!(buf = calloc(1, buf_len))) return NULL; if ((o = cJSON_CreateArray())) { for (int i = 0; i < SSH_MAX_PUB_KEYS; i++) { const struct ssh_public_key *k = &keys[i]; if (k->pubkey_size > 0 && strlen(k->username) > 0) { if (ssh_pubkey_to_str(k, buf, buf_len)) { if ((r = cJSON_CreateObject())) { cJSON_AddItemToObject(r, "pubkey", cJSON_CreateString(buf)); cJSON_AddItemToObject(r, "user", cJSON_CreateString(k->username)); cJSON_AddItemToArray(o, r); count++; } } } } } free(buf); if (count < 1) { cJSON_Delete(o); o = NULL; } return o; } #endif void clear_config(struct fanpico_config *cfg) { int i, j; struct sensor_input *s; struct vsensor_input *vs; struct fan_output *f; struct mb_input *m; memset(cfg, 0, sizeof(struct fanpico_config)); for (i = 0; i < SENSOR_MAX_COUNT; i++) { s = &cfg->sensors[i]; s->name[0] = 0; s->type = TEMP_INTERNAL; s->thermistor_nominal = 0.0; s->beta_coefficient = 0.0; s->temp_nominal = 0.0; s->temp_offset = 0.0; s->temp_coefficient = 0.0; s->map.points = 0; s->filter = FILTER_NONE; s->filter_ctx = NULL; } for (i = 0; i < VSENSOR_MAX_COUNT; i++) { vs = &cfg->vsensors[i]; vs->name[0] = 0; vs->mode = VSMODE_MANUAL; vs->default_temp = 0.0; vs->timeout = 60; for (j = 0; j < VSENSOR_SOURCE_MAX_COUNT; j++) vs->sensors[j] = 0; vs->onewire_addr = 0; vs->i2c_type = 0; vs->i2c_addr = 0; vs->map.points = 2; vs->map.temp[0][0] = 20.0; vs->map.temp[0][1] = 0.0; vs->map.temp[1][0] = 50.0; vs->map.temp[1][1] = 100.0; vs->filter = FILTER_NONE; vs->filter_ctx = NULL; cfg->vtemp[i] = 0.0; cfg->vhumidity[i] = 0.0; cfg->vpressure[i] = 0.0; cfg->vtemp_updated[i] = from_us_since_boot(0); cfg->i2c_context[i] = NULL; } for (i = 0; i < FAN_MAX_COUNT; i++) { f = &cfg->fans[i]; f->name[0] = 0; f->min_pwm = 0; f->max_pwm = 0; f->pwm_coefficient = 0.0; f->s_type = PWM_FIXED; f->s_id = 0; f->map.points = 0; f->rpm_mode = RMODE_TACHO; f->lra_low = 1000; f->lra_high = 0; f->rpm_factor = 2; f->filter = FILTER_NONE; f->filter_ctx = NULL; f->tacho_hyst = FAN_TACHO_HYSTERESIS; f->pwm_hyst = FAN_PWM_HYSTERESIS; } for (i = 0; i < MBFAN_MAX_COUNT; i++) { m=&cfg->mbfans[i]; m->name[0] = 0; m->min_rpm = 0; m->max_rpm = 0; m->rpm_mode = RMODE_TACHO; m->lra_treshold = 200; m->lra_invert = false; m->rpm_coefficient = 0.0; m->rpm_factor = 2; m->s_type = TACHO_FIXED; m->s_id = 0; m->map.points = 0; m->filter = FILTER_NONE; m->filter_ctx = NULL; for (j = 0; j < FAN_MAX_COUNT; j++) m->sources[j] = 0; } cfg->local_echo = false; cfg->spi_active = false; cfg->serial_active = false; cfg->onewire_active = false; cfg->i2c_speed = I2C_DEFAULT_SPEED; cfg->adc_vref = ADC_REF_VOLTAGE; cfg->led_mode = 0; strncopy(cfg->name, "fanpico1", sizeof(cfg->name)); strncopy(cfg->display_type, "default", sizeof(cfg->display_type)); strncopy(cfg->display_theme, "default", sizeof(cfg->display_theme)); strncopy(cfg->display_logo, "default", sizeof(cfg->display_logo)); strncopy(cfg->display_layout_r, "", sizeof(cfg->display_layout_r)); strncopy(cfg->timezone, "", sizeof(cfg->timezone)); #ifdef WIFI_SUPPORT cfg->wifi_ssid[0] = 0; cfg->wifi_passwd[0] = 0; strncopy(cfg->wifi_auth_mode, "default", sizeof(cfg->wifi_auth_mode)); cfg->wifi_mode = 0; cfg->hostname[0] = 0; strncopy(cfg->wifi_country, "XX", sizeof(cfg->wifi_country)); for (int i = 0; i < DNS_MAX_SERVERS; i++) { ip_addr_set_any(0, &cfg->dns_servers[i]); } cfg->syslog_active = true; ip_addr_set_any(0, &cfg->syslog_server); cfg->ntp_active = true; for (int i = 0; i < SNTP_MAX_SERVERS; i++) { ip_addr_set_any(0, &cfg->ntp_servers[i]); } ip_addr_set_any(0, &cfg->ip); ip_addr_set_any(0, &cfg->netmask); ip_addr_set_any(0, &cfg->gateway); cfg->mqtt_server[0] = 0; cfg->mqtt_port = 0; cfg->mqtt_tls = true; cfg->mqtt_allow_scpi = false; cfg->mqtt_user[0] = 0; cfg->mqtt_pass[0] = 0; cfg->mqtt_status_topic[0] = 0; cfg->mqtt_cmd_topic[0] = 0; cfg->mqtt_resp_topic[0] = 0; cfg->mqtt_temp_mask = 0; cfg->mqtt_vtemp_mask = 0; cfg->mqtt_vhumidity_mask = 0; cfg->mqtt_vpressure_mask = 0; cfg->mqtt_fan_rpm_mask = 0; cfg->mqtt_fan_duty_mask = 0; cfg->mqtt_mbfan_rpm_mask = 0; cfg->mqtt_mbfan_duty_mask = 0; cfg->mqtt_temp_topic[0] = 0; cfg->mqtt_vtemp_topic[0] = 0; cfg->mqtt_vhumidity_topic[0] = 0; cfg->mqtt_vpressure_topic[0] = 0; cfg->mqtt_fan_rpm_topic[0] = 0; cfg->mqtt_fan_duty_topic[0] = 0; cfg->mqtt_mbfan_rpm_topic[0] = 0; cfg->mqtt_mbfan_duty_topic[0] = 0; cfg->mqtt_status_interval = DEFAULT_MQTT_STATUS_INTERVAL; cfg->mqtt_temp_interval = DEFAULT_MQTT_TEMP_INTERVAL; cfg->mqtt_vsensor_interval = DEFAULT_MQTT_TEMP_INTERVAL; cfg->mqtt_rpm_interval = DEFAULT_MQTT_RPM_INTERVAL; cfg->mqtt_duty_interval = DEFAULT_MQTT_DUTY_INTERVAL; cfg->mqtt_ha_discovery_prefix[0] = 0; cfg->telnet_active = false; cfg->telnet_auth = true; cfg->telnet_raw_mode = false; cfg->telnet_port = 0; cfg->telnet_user[0] = 0; cfg->telnet_pwhash[0] = 0; cfg->snmp_active = 0; strncopy(cfg->snmp_community, "public", sizeof(cfg->snmp_community)); cfg->snmp_community_write[0] = 0; cfg->snmp_contact[0] = 0; cfg->snmp_location[0] = 0; cfg->snmp_community_trap[0] = 0; cfg->snmp_auth_traps = false; ip_addr_set_any(0, &cfg->snmp_trap_dst); cfg->ssh_active = false; cfg->ssh_auth = true; cfg->ssh_port = 0; cfg->ssh_user[0] = 0; cfg->ssh_pwhash[0] = 0; for (int i = 0; i < SSH_MAX_PUB_KEYS; i++) { cfg->ssh_pub_keys[i].username[0] = 0; cfg->ssh_pub_keys[i].type[0] = 0; cfg->ssh_pub_keys[i].name[0] = 0; cfg->ssh_pub_keys[i].pubkey_size = 0; } cfg->http_active = true; cfg->http_port = 0; cfg->https_port = 0; cfg->http_fan_mask = (1 << FAN_COUNT) - 1; cfg->http_mbfan_mask = (1 << MBFAN_COUNT) - 1; cfg->http_sensor_mask = (1 << SENSOR_COUNT) - 1; cfg->http_vsensor_mask = (1 << VSENSOR_COUNT) - 1; #endif } #define NUM_TO_JSON(name, var) { \ cJSON_AddItemToObject(config, name, \ cJSON_CreateNumber(var)); \ } #define STRING_TO_JSON(name, var) { \ if (strlen(var) > 0) \ cJSON_AddItemToObject(config, name, \ cJSON_CreateString(var)); \ } #define PASSWD_TO_JSON(name, var) { \ if (strlen(var) > 0) { \ char *p = base64encode(var); \ if (p) \ cJSON_AddItemToObject(config, name, \ cJSON_CreateString(p)); \ free(p); \ } \ } #define IP_TO_JSON(name, var) { \ if (!ip_addr_isany(var)) \ cJSON_AddItemToObject(config, name, \ cJSON_CreateString(ipaddr_ntoa(var))); \ } #define BITMASK_TO_JSON(name, var, max_count) { \ if (var) \ cJSON_AddItemToObject(config, name, \ cJSON_CreateString( \ bitmask_to_str(var, max_count, 1, true))); \ } cJSON *config_to_json(const struct fanpico_config *cfg) { cJSON *config = cJSON_CreateObject(); cJSON *fans, *mbfans, *sensors, *vsensors, *o; int i; if (!config) return NULL; cJSON_AddItemToObject(config, "id", cJSON_CreateString("fanpico-config-v1")); cJSON_AddItemToObject(config, "debug", cJSON_CreateNumber(get_debug_level())); cJSON_AddItemToObject(config, "log_level", cJSON_CreateNumber(get_log_level())); cJSON_AddItemToObject(config, "syslog_level", cJSON_CreateNumber(get_syslog_level())); cJSON_AddItemToObject(config, "local_echo", cJSON_CreateBool(cfg->local_echo)); cJSON_AddItemToObject(config, "led_mode", cJSON_CreateNumber(cfg->led_mode)); cJSON_AddItemToObject(config, "spi_active", cJSON_CreateNumber(cfg->spi_active)); cJSON_AddItemToObject(config, "serial_active", cJSON_CreateNumber(cfg->serial_active)); cJSON_AddItemToObject(config, "onewire_active", cJSON_CreateNumber(cfg->onewire_active)); cJSON_AddItemToObject(config, "i2c_speed", cJSON_CreateNumber(cfg->i2c_speed)); cJSON_AddItemToObject(config, "adc_vref", cJSON_CreateNumber(cfg->adc_vref)); //Zitt STRING_TO_JSON("display_type", cfg->display_type); STRING_TO_JSON("display_theme", cfg->display_theme); STRING_TO_JSON("display_logo", cfg->display_logo); STRING_TO_JSON("display_layout_r", cfg->display_layout_r); STRING_TO_JSON("name", cfg->name); STRING_TO_JSON("timezone", cfg->timezone); #ifdef WIFI_SUPPORT STRING_TO_JSON("hostname", cfg->hostname); STRING_TO_JSON("wifi_country", cfg->wifi_country); STRING_TO_JSON("wifi_ssid", cfg->wifi_ssid); PASSWD_TO_JSON("wifi_passwd", cfg->wifi_passwd); STRING_TO_JSON("wifi_auth_mode", cfg->wifi_auth_mode); if (cfg->wifi_mode != 0) NUM_TO_JSON("wifi_mode", cfg->wifi_mode); if (!ip_addr_isany(&cfg->dns_servers[0])) cJSON_AddItemToObject(config, "dns_servers", iplist2json(cfg->dns_servers, DNS_MAX_SERVERS)); if (cfg->syslog_active != true) NUM_TO_JSON("ntp_active", cfg->syslog_active); IP_TO_JSON("syslog_server", &cfg->syslog_server); if (cfg->ntp_active != true) NUM_TO_JSON("ntp_active", cfg->ntp_active); if (!ip_addr_isany(&cfg->ntp_servers[0])) cJSON_AddItemToObject(config, "ntp_servers", iplist2json(cfg->ntp_servers, SNTP_MAX_SERVERS)); IP_TO_JSON("ip", &cfg->ip); IP_TO_JSON("netmask", &cfg->netmask); IP_TO_JSON("gateway", &cfg->gateway); STRING_TO_JSON("mqtt_server", cfg->mqtt_server); if (cfg->mqtt_port > 0) NUM_TO_JSON("mqtt_port", cfg->mqtt_port); STRING_TO_JSON("mqtt_user", cfg->mqtt_user); PASSWD_TO_JSON("mqtt_pass", cfg->mqtt_pass); STRING_TO_JSON("mqtt_status_topic", cfg->mqtt_status_topic); STRING_TO_JSON("mqtt_cmd_topic", cfg->mqtt_cmd_topic); STRING_TO_JSON("mqtt_resp_topic", cfg->mqtt_resp_topic); if (cfg->mqtt_tls != true) NUM_TO_JSON("mqtt_tls", cfg->mqtt_tls); if (cfg->mqtt_allow_scpi == true) NUM_TO_JSON("mqtt_allow_scpi", cfg->mqtt_allow_scpi); if (cfg->mqtt_status_interval != DEFAULT_MQTT_STATUS_INTERVAL) NUM_TO_JSON("mqtt_status_interval", cfg->mqtt_status_interval); if (cfg->mqtt_temp_interval != DEFAULT_MQTT_TEMP_INTERVAL) NUM_TO_JSON("mqtt_temp_interval", cfg->mqtt_temp_interval); if (cfg->mqtt_vsensor_interval != DEFAULT_MQTT_TEMP_INTERVAL) NUM_TO_JSON("mqtt_vsensor_interval", cfg->mqtt_vsensor_interval); if (cfg->mqtt_rpm_interval != DEFAULT_MQTT_RPM_INTERVAL) NUM_TO_JSON("mqtt_rpm_interval", cfg->mqtt_rpm_interval); if (cfg->mqtt_duty_interval != DEFAULT_MQTT_DUTY_INTERVAL) NUM_TO_JSON("mqtt_duty_interval", cfg->mqtt_duty_interval); BITMASK_TO_JSON("mqtt_temp_mask", cfg->mqtt_temp_mask, SENSOR_MAX_COUNT); BITMASK_TO_JSON("mqtt_vtemp_mask", cfg->mqtt_vtemp_mask, VSENSOR_MAX_COUNT); BITMASK_TO_JSON("mqtt_vhumidity_mask", cfg->mqtt_vhumidity_mask, VSENSOR_MAX_COUNT); BITMASK_TO_JSON("mqtt_vpressure_mask", cfg->mqtt_vpressure_mask, VSENSOR_MAX_COUNT); BITMASK_TO_JSON("mqtt_fan_rpm_mask", cfg->mqtt_fan_rpm_mask, FAN_MAX_COUNT); BITMASK_TO_JSON("mqtt_fan_duty_mask", cfg->mqtt_fan_duty_mask, FAN_MAX_COUNT); BITMASK_TO_JSON("mqtt_mbfan_rpm_mask", cfg->mqtt_mbfan_rpm_mask, MBFAN_MAX_COUNT); BITMASK_TO_JSON("mqtt_mbfan_duty_mask", cfg->mqtt_mbfan_duty_mask, MBFAN_MAX_COUNT); STRING_TO_JSON("mqtt_temp_topic", cfg->mqtt_temp_topic); STRING_TO_JSON("mqtt_vtemp_topic", cfg->mqtt_vtemp_topic); STRING_TO_JSON("mqtt_vhumidity_topic", cfg->mqtt_vhumidity_topic); STRING_TO_JSON("mqtt_vpressure_topic", cfg->mqtt_vpressure_topic); STRING_TO_JSON("mqtt_fan_rpm_topic", cfg->mqtt_fan_rpm_topic); STRING_TO_JSON("mqtt_fan_duty_topic", cfg->mqtt_fan_duty_topic); STRING_TO_JSON("mqtt_mbfan_rpm_topic", cfg->mqtt_mbfan_rpm_topic); STRING_TO_JSON("mqtt_mbfan_duty_topic", cfg->mqtt_mbfan_duty_topic); STRING_TO_JSON("mqtt_ha_discovery_prefix", cfg->mqtt_ha_discovery_prefix); if (cfg->telnet_active) NUM_TO_JSON("telnet_active", cfg->telnet_active); if (cfg->telnet_auth != true) NUM_TO_JSON("telnet_auth", cfg->telnet_auth); if (cfg->telnet_raw_mode) NUM_TO_JSON("telnet_raw_mode", cfg->telnet_raw_mode); if (cfg->telnet_port > 0) NUM_TO_JSON("telnet_port", cfg->telnet_port); STRING_TO_JSON("telnet_user", cfg->telnet_user); STRING_TO_JSON("telnet_pwhash", cfg->telnet_pwhash); if ((o = acllist2json(cfg->telnet_acls, TELNET_MAX_ACL_ENTRIES))) cJSON_AddItemToObject(config, "telnet_acls", o); if (cfg->snmp_active) NUM_TO_JSON("snmp_active", cfg->snmp_active); STRING_TO_JSON("snmp_community", cfg->snmp_community); STRING_TO_JSON("snmp_community_write", cfg->snmp_community_write); STRING_TO_JSON("snmp_contact", cfg->snmp_contact); STRING_TO_JSON("snmp_location", cfg->snmp_location); STRING_TO_JSON("snmp_community_trap", cfg->snmp_community_trap); if (cfg->snmp_auth_traps) cJSON_AddItemToObject(config, "snmp_auth_traps", cJSON_CreateNumber(cfg->snmp_auth_traps)); IP_TO_JSON("snmp_trap_dst", &cfg->snmp_trap_dst); if (cfg->ssh_active) NUM_TO_JSON("ssh_active", cfg->ssh_active); if (cfg->ssh_auth != true) NUM_TO_JSON("ssh_auth", cfg->ssh_auth); if (cfg->ssh_port > 0) NUM_TO_JSON("ssh_port", cfg->ssh_port); STRING_TO_JSON("ssh_user", cfg->ssh_user); STRING_TO_JSON("ssh_pwhash", cfg->ssh_pwhash); if ((o = sshpubkeys2json(cfg->ssh_pub_keys))) cJSON_AddItemToObject(config, "ssh_pubkeys", o); if ((o = acllist2json(cfg->ssh_acls, SSH_MAX_ACL_ENTRIES))) cJSON_AddItemToObject(config, "ssh_acls", o); if (!cfg->http_active) NUM_TO_JSON("http_active", cfg->http_active); if (cfg->http_port > 0) NUM_TO_JSON("http_port", cfg->http_port); if (cfg->https_port > 0) NUM_TO_JSON("https_port", cfg->https_port); if (cfg->http_fan_mask != (1 << FAN_COUNT) - 1) BITMASK_TO_JSON("http_fan_mask", cfg->http_fan_mask, FAN_MAX_COUNT); if (cfg->http_mbfan_mask != (1 << MBFAN_COUNT) - 1) BITMASK_TO_JSON("http_mbfan_mask", cfg->http_mbfan_mask, MBFAN_MAX_COUNT); if (cfg->http_sensor_mask != (1 << SENSOR_COUNT) - 1) BITMASK_TO_JSON("http_sensor_mask", cfg->http_sensor_mask, SENSOR_MAX_COUNT); if (cfg->http_vsensor_mask != (1 << VSENSOR_COUNT) - 1) BITMASK_TO_JSON("http_vsensor_mask", cfg->http_vsensor_mask, VSENSOR_MAX_COUNT); #endif /* Fan outputs */ fans = cJSON_CreateArray(); if (!fans) goto panic; for (i = 0; i < FAN_COUNT; i++) { const struct fan_output *f = &cfg->fans[i]; o = cJSON_CreateObject(); if (!o) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(f->name)); cJSON_AddItemToObject(o, "min_pwm", cJSON_CreateNumber(f->min_pwm)); cJSON_AddItemToObject(o, "max_pwm", cJSON_CreateNumber(f->max_pwm)); cJSON_AddItemToObject(o, "pwm_coefficient", cJSON_CreateNumber(f->pwm_coefficient)); cJSON_AddItemToObject(o, "source_type", cJSON_CreateString(pwm_source2str(f->s_type))); cJSON_AddItemToObject(o, "source_id", cJSON_CreateNumber(f->s_id)); cJSON_AddItemToObject(o, "pwm_map", pwm_map2json(&f->map)); cJSON_AddItemToObject(o, "filter", filter2json(f->filter, f->filter_ctx)); cJSON_AddItemToObject(o, "rpm_mode", cJSON_CreateString(rpm_mode2str(f->rpm_mode))); cJSON_AddItemToObject(o, "rpm_factor", cJSON_CreateNumber(f->rpm_factor)); cJSON_AddItemToObject(o, "lra_low", cJSON_CreateNumber(f->lra_low)); cJSON_AddItemToObject(o, "lra_high", cJSON_CreateNumber(f->lra_high)); cJSON_AddItemToObject(o, "tach_hyst", cJSON_CreateNumber(f->tacho_hyst)); cJSON_AddItemToObject(o, "pwm_hyst", cJSON_CreateNumber(f->pwm_hyst)); cJSON_AddItemToArray(fans, o); } cJSON_AddItemToObject(config, "fans", fans); /* MB Fan inputs */ mbfans = cJSON_CreateArray(); if (!mbfans) goto panic; for (i = 0; i < MBFAN_COUNT; i++) { const struct mb_input *m = &cfg->mbfans[i]; o = cJSON_CreateObject(); if (!o) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(m->name)); cJSON_AddItemToObject(o, "min_rpm", cJSON_CreateNumber(m->min_rpm)); cJSON_AddItemToObject(o, "max_rpm", cJSON_CreateNumber(m->max_rpm)); cJSON_AddItemToObject(o, "rpm_mode", cJSON_CreateString(rpm_mode2str(m->rpm_mode))); cJSON_AddItemToObject(o, "rpm_coefficient", cJSON_CreateNumber(m->rpm_coefficient)); cJSON_AddItemToObject(o, "rpm_factor", cJSON_CreateNumber(m->rpm_factor)); cJSON_AddItemToObject(o, "lra_treshold", cJSON_CreateNumber(m->lra_treshold)); if (m->lra_invert != false) cJSON_AddItemToObject(o, "lra_invert", cJSON_CreateNumber(m->lra_invert)); cJSON_AddItemToObject(o, "source_type", cJSON_CreateString(tacho_source2str(m->s_type))); cJSON_AddItemToObject(o, "source_id", cJSON_CreateNumber(m->s_id)); if (m->s_type == TACHO_MIN || m->s_type == TACHO_MAX || m->s_type == TACHO_AVG) cJSON_AddItemToObject(o, "sources", tacho_sources2json(m->sources)); cJSON_AddItemToObject(o, "rpm_map", tacho_map2json(&m->map)); cJSON_AddItemToObject(o, "filter", filter2json(m->filter, m->filter_ctx)); cJSON_AddItemToArray(mbfans, o); } cJSON_AddItemToObject(config, "mbfans", mbfans); /* Sensor inputs */ sensors = cJSON_CreateArray(); if (!sensors) goto panic; for (i = 0; i < SENSOR_COUNT; i++) { const struct sensor_input *s = &cfg->sensors[i]; o = cJSON_CreateObject(); if (!o) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(s->name)); cJSON_AddItemToObject(o, "sensor_type", cJSON_CreateNumber(s->type)); cJSON_AddItemToObject(o, "temp_offset", cJSON_CreateNumber(s->temp_offset)); cJSON_AddItemToObject(o, "temp_coefficient", cJSON_CreateNumber(s->temp_coefficient)); cJSON_AddItemToObject(o, "temp_map", temp_map2json(&s->map)); if (s->type == TEMP_EXTERNAL) { cJSON_AddItemToObject(o, "temperature_nominal", cJSON_CreateNumber(s->temp_nominal)); cJSON_AddItemToObject(o, "thermistor_nominal", cJSON_CreateNumber(s->thermistor_nominal)); cJSON_AddItemToObject(o, "beta_coefficient", cJSON_CreateNumber(s->beta_coefficient)); } cJSON_AddItemToObject(o, "filter", filter2json(s->filter, s->filter_ctx)); cJSON_AddItemToArray(sensors, o); } cJSON_AddItemToObject(config, "sensors", sensors); /* Virtual Sensors */ vsensors = cJSON_CreateArray(); if (!vsensors) goto panic; for (i = 0; i < VSENSOR_COUNT; i++) { const struct vsensor_input *s = &cfg->vsensors[i]; o = cJSON_CreateObject(); if (!o) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(s->name)); cJSON_AddItemToObject(o, "mode", cJSON_CreateString(vsmode2str(s->mode))); cJSON_AddItemToObject(o, "temp_map", temp_map2json(&s->map)); if (s->mode == VSMODE_MANUAL) { cJSON_AddItemToObject(o, "default_temp", cJSON_CreateNumber(s->default_temp)); cJSON_AddItemToObject(o, "timeout", cJSON_CreateNumber(s->timeout)); } else if (s->mode == VSMODE_ONEWIRE) { cJSON_AddItemToObject(o, "onewire_addr", cJSON_CreateString(onewireaddr2str(s->onewire_addr))); } else if (s->mode == VSMODE_I2C) { cJSON_AddItemToObject(o, "i2c_type", cJSON_CreateString(i2c_sensor_type_str(s->i2c_type))); cJSON_AddItemToObject(o, "i2c_addr", cJSON_CreateNumber(s->i2c_addr)); } else { cJSON_AddItemToObject(o, "sensors", vsensors2json(s->sensors)); } cJSON_AddItemToObject(o, "filter", filter2json(s->filter, s->filter_ctx)); cJSON_AddItemToArray(vsensors, o); } cJSON_AddItemToObject(config, "vsensors", vsensors); return config; panic: cJSON_Delete(config); return NULL; } #define JSON_TO_NUM(obj, name, var) { \ cJSON *ref; \ if ((ref = cJSON_GetObjectItem(obj, name))) { \ var = cJSON_GetNumberValue(ref); \ } \ } #define JSON_TO_IP(obj, name, var) { \ cJSON *ref; \ if ((ref = cJSON_GetObjectItem(obj, name))) { \ if ((val = cJSON_GetStringValue(ref))) \ ipaddr_aton(val, var); \ } \ } #define JSON_TO_BITMASK(obj, name, var, max_count) { \ cJSON *ref; \ if ((ref = cJSON_GetObjectItem(obj, name))) { \ uint32_t m; \ if (!str_to_bitmask(cJSON_GetStringValue(ref), \ max_count, &m, 1)) \ var = m; \ } \ } #define JSON_TO_STRING(obj, name, var) { \ cJSON *ref; \ if ((ref = cJSON_GetObjectItem(obj, name))) { \ if ((val = cJSON_GetStringValue(ref))) \ strncopy(var, val, sizeof(var)); \ } \ } #define JSON_TO_PASSWD(obj, name, var) { \ cJSON *ref; \ if ((ref = cJSON_GetObjectItem(obj, name))) { \ if ((val = cJSON_GetStringValue(ref))) { \ char *p = base64decode(val); \ if (p) { \ strncopy(var, p, sizeof(var)); \ free(p); \ } \ } \ } \ } int json_to_config(cJSON *config, struct fanpico_config *cfg) { cJSON *ref, *item, *r; int id; const char *val; if (!config || !cfg) return -1; /* Parse JSON configuration */ if ((ref = cJSON_GetObjectItem(config, "id"))) log_msg(LOG_INFO, "Config version: %s", ref->valuestring); if ((ref = cJSON_GetObjectItem(config, "debug"))) set_debug_level(cJSON_GetNumberValue(ref)); if ((ref = cJSON_GetObjectItem(config, "log_level"))) set_log_level(cJSON_GetNumberValue(ref)); if ((ref = cJSON_GetObjectItem(config, "syslog_level"))) set_syslog_level(cJSON_GetNumberValue(ref)); if ((ref = cJSON_GetObjectItem(config, "local_echo"))) cfg->local_echo = (cJSON_IsTrue(ref) ? true : false); JSON_TO_NUM(config, "led_mode", cfg->led_mode); JSON_TO_NUM(config, "spi_active", cfg->spi_active); JSON_TO_NUM(config, "serial_active", cfg->serial_active); JSON_TO_NUM(config, "onewire_active", cfg->onewire_active); JSON_TO_NUM(config, "i2c_speed", cfg->i2c_speed); JSON_TO_NUM(config, "adc_vref", cfg->adc_vref); JSON_TO_STRING(config, "display_type", cfg->display_type); JSON_TO_STRING(config, "display_theme", cfg->display_theme); JSON_TO_STRING(config, "display_logo", cfg->display_logo); JSON_TO_STRING(config, "display_layout_r", cfg->display_layout_r); JSON_TO_STRING(config, "name", cfg->name); JSON_TO_STRING(config, "timezone", cfg->timezone); #ifdef WIFI_SUPPORT JSON_TO_STRING(config, "hostname", cfg->hostname); JSON_TO_STRING(config, "wifi_country", cfg->wifi_country); JSON_TO_STRING(config, "wifi_ssid", cfg->wifi_ssid); JSON_TO_PASSWD(config, "wifi_passwd", cfg->wifi_passwd); JSON_TO_STRING(config, "wifi_auth_mode", cfg->wifi_auth_mode); JSON_TO_NUM(config, "wifi_mode", cfg->wifi_mode); if ((ref = cJSON_GetObjectItem(config, "dns_servers"))) { json2iplist(ref, cfg->dns_servers, DNS_MAX_SERVERS); } JSON_TO_NUM(config, "syslog_active", cfg->syslog_active); JSON_TO_IP(config, "syslog_server", &cfg->syslog_server); JSON_TO_NUM(config, "ntp_active", cfg->ntp_active); if ((ref = cJSON_GetObjectItem(config, "ntp_servers"))) { json2iplist(ref, cfg->ntp_servers, SNTP_MAX_SERVERS); } else { JSON_TO_IP(config, "ntp_server", &cfg->ntp_servers[0]); } JSON_TO_IP(config, "ip", &cfg->ip); JSON_TO_IP(config, "netmask", &cfg->netmask); JSON_TO_IP(config, "gateway", &cfg->gateway); JSON_TO_STRING(config, "mqtt_server", cfg->mqtt_server); JSON_TO_NUM(config, "mqtt_port", cfg->mqtt_port); JSON_TO_NUM(config, "mqtt_tls", cfg->mqtt_tls); JSON_TO_NUM(config, "mqtt_allow_scpi", cfg->mqtt_allow_scpi); JSON_TO_STRING(config, "mqtt_user", cfg->mqtt_user); JSON_TO_PASSWD(config, "mqtt_pass", cfg->mqtt_pass); JSON_TO_STRING(config, "mqtt_status_topic", cfg->mqtt_status_topic); JSON_TO_STRING(config, "mqtt_cmd_topic", cfg->mqtt_cmd_topic); JSON_TO_STRING(config, "mqtt_resp_topic", cfg->mqtt_resp_topic); JSON_TO_NUM(config, "mqtt_status_interval", cfg->mqtt_status_interval); JSON_TO_NUM(config, "mqtt_temp_interval", cfg->mqtt_temp_interval); JSON_TO_NUM(config, "mqtt_vsensor_interval", cfg->mqtt_vsensor_interval); JSON_TO_NUM(config, "mqtt_rpm_interval", cfg->mqtt_rpm_interval); JSON_TO_NUM(config, "mqtt_duty_interval", cfg->mqtt_duty_interval); JSON_TO_BITMASK(config, "mqtt_temp_mask", cfg->mqtt_temp_mask, SENSOR_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_vtemp_mask", cfg->mqtt_vtemp_mask, VSENSOR_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_vhumidity_mask", cfg->mqtt_vhumidity_mask, VSENSOR_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_vpressure_mask", cfg->mqtt_vpressure_mask, VSENSOR_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_fan_rpm_mask", cfg->mqtt_fan_rpm_mask, FAN_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_fan_duty_mask", cfg->mqtt_fan_duty_mask, FAN_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_mbfan_rpm_mask", cfg->mqtt_mbfan_rpm_mask, MBFAN_MAX_COUNT); JSON_TO_BITMASK(config, "mqtt_mbfan_duty_mask", cfg->mqtt_mbfan_duty_mask, MBFAN_MAX_COUNT); JSON_TO_STRING(config, "mqtt_temp_topic", cfg->mqtt_temp_topic); JSON_TO_STRING(config, "mqtt_vtemp_topic", cfg->mqtt_vtemp_topic); JSON_TO_STRING(config, "mqtt_vhumidity_topic", cfg->mqtt_vhumidity_topic); JSON_TO_STRING(config, "mqtt_vpressure_topic", cfg->mqtt_vpressure_topic); JSON_TO_STRING(config, "mqtt_fan_rpm_topic", cfg->mqtt_fan_rpm_topic); JSON_TO_STRING(config, "mqtt_fan_duty_topic", cfg->mqtt_fan_duty_topic); JSON_TO_STRING(config, "mqtt_mbfan_rpm_topic", cfg->mqtt_mbfan_rpm_topic); JSON_TO_STRING(config, "mqtt_mbfan_duty_topic", cfg->mqtt_mbfan_duty_topic); JSON_TO_STRING(config, "mqtt_ha_discovery_prefix", cfg->mqtt_ha_discovery_prefix); JSON_TO_NUM(config, "telnet_active", cfg->telnet_active); JSON_TO_NUM(config, "telnet_auth", cfg->telnet_auth); JSON_TO_NUM(config, "telnet_raw_mode", cfg->telnet_raw_mode); JSON_TO_NUM(config, "telnet_port", cfg->telnet_port); JSON_TO_STRING(config, "telnet_user", cfg->telnet_user); JSON_TO_STRING(config, "telnet_pwhash", cfg->telnet_pwhash); if ((ref = cJSON_GetObjectItem(config, "telnet_acls"))) json2acllist(ref, cfg->telnet_acls, TELNET_MAX_ACL_ENTRIES); JSON_TO_NUM(config, "snmp_active", cfg->snmp_active); JSON_TO_STRING(config, "snmp_community", cfg->snmp_community); JSON_TO_STRING(config, "snmp_community_write", cfg->snmp_community_write); JSON_TO_STRING(config, "snmp_contact", cfg->snmp_contact); JSON_TO_STRING(config, "snmp_location", cfg->snmp_location); JSON_TO_STRING(config, "snmp_community_trap", cfg->snmp_community_trap); JSON_TO_NUM(config, "snmp_auth_traps", cfg->snmp_auth_traps); JSON_TO_IP(config, "snmp_trap_dst", &cfg->snmp_trap_dst); JSON_TO_NUM(config, "ssh_active", cfg->ssh_active); JSON_TO_NUM(config, "ssh_auth", cfg->ssh_auth); JSON_TO_NUM(config, "ssh_port", cfg->ssh_port); JSON_TO_STRING(config, "ssh_user", cfg->ssh_user); JSON_TO_STRING(config, "ssh_pwhash", cfg->ssh_pwhash); if ((ref = cJSON_GetObjectItem(config, "ssh_pubkeys"))) json2sshpubkeys(ref, cfg->ssh_pub_keys); if ((ref = cJSON_GetObjectItem(config, "ssh_acls"))) json2acllist(ref, cfg->ssh_acls, SSH_MAX_ACL_ENTRIES); JSON_TO_NUM(config, "http_active", cfg->http_active); JSON_TO_NUM(config, "http_port", cfg->http_port); JSON_TO_NUM(config, "https_port", cfg->https_port); JSON_TO_BITMASK(config, "http_fan_mask", cfg->http_fan_mask, FAN_MAX_COUNT); JSON_TO_BITMASK(config, "http_mbfan_mask", cfg->http_mbfan_mask, MBFAN_MAX_COUNT); JSON_TO_BITMASK(config, "http_sensor_mask", cfg->http_sensor_mask, SENSOR_MAX_COUNT); JSON_TO_BITMASK(config, "http_vsensor_mask", cfg->http_vsensor_mask, VSENSOR_MAX_COUNT); #endif /* Fan output configurations */ ref = cJSON_GetObjectItem(config, "fans"); cJSON_ArrayForEach(item, ref) { id = (int)cJSON_GetNumberValue(cJSON_GetObjectItem(item, "id")); if (id >= 0 && id < FAN_COUNT) { struct fan_output *f = &cfg->fans[id]; JSON_TO_STRING(item, "name", f->name); JSON_TO_NUM(item, "min_pwm", f->min_pwm); JSON_TO_NUM(item, "max_pwm", f->max_pwm); JSON_TO_NUM(item, "pwm_coefficient", f->pwm_coefficient); JSON_TO_NUM(item, "rpm_factor", f->rpm_factor); JSON_TO_NUM(item, "lra_low", f->lra_low); JSON_TO_NUM(item, "lra_high", f->lra_high); JSON_TO_NUM(item, "tach_hyst", f->tacho_hyst); JSON_TO_NUM(item, "pwm_hyst", f->pwm_hyst); JSON_TO_NUM(item, "source_id", f->s_id); if ((r = cJSON_GetObjectItem(item, "source_type"))) f->s_type = str2pwm_source(cJSON_GetStringValue(r)); if ((r = cJSON_GetObjectItem(item, "rpm_mode"))) f->rpm_mode = str2rpm_mode(cJSON_GetStringValue(r)); if ((r = cJSON_GetObjectItem(item, "pwm_map"))) json2pwm_map(r, &f->map); if ((r = cJSON_GetObjectItem(item, "filter"))) json2filter(r, &f->filter, &f->filter_ctx); } } /* MB Fan input configurations */ ref = cJSON_GetObjectItem(config, "mbfans"); cJSON_ArrayForEach(item, ref) { id = (int)cJSON_GetNumberValue(cJSON_GetObjectItem(item, "id")); if (id >= 0 && id < MBFAN_COUNT) { struct mb_input *m = &cfg->mbfans[id]; JSON_TO_STRING(item, "name", m->name); JSON_TO_NUM(item, "min_rpm", m->min_rpm); JSON_TO_NUM(item, "max_rpm", m->max_rpm); JSON_TO_NUM(item, "rpm_coefficient", m->rpm_coefficient); JSON_TO_NUM(item, "rpm_factor", m->rpm_factor); JSON_TO_NUM(item, "lra_treshold", m->lra_treshold); JSON_TO_NUM(item, "lra_invert", m->lra_invert); JSON_TO_NUM(item, "source_id", m->s_id); if ((r = cJSON_GetObjectItem(item, "source_type"))) m->s_type = str2tacho_source(cJSON_GetStringValue(r)); if ((r = cJSON_GetObjectItem(item, "rpm_mode"))) m->rpm_mode = str2rpm_mode(cJSON_GetStringValue(r)); if ((r = cJSON_GetObjectItem(item, "sources"))) json2tacho_sources(r, m->sources); if ((r = cJSON_GetObjectItem(item, "rpm_map"))) json2tacho_map(r, &m->map); if ((r = cJSON_GetObjectItem(item, "filter"))) json2filter(r, &m->filter, &m->filter_ctx); } } /* Sensor input configurations */ ref = cJSON_GetObjectItem(config, "sensors"); cJSON_ArrayForEach(item, ref) { id = (int)cJSON_GetNumberValue(cJSON_GetObjectItem(item, "id")); if (id >= 0 && id < SENSOR_COUNT) { struct sensor_input *s = &cfg->sensors[id]; JSON_TO_STRING(item, "name", s->name); JSON_TO_NUM(item, "sensor_type", s->type); if (s->type == TEMP_EXTERNAL) { JSON_TO_NUM(item, "temperature_nominal", s->temp_nominal); JSON_TO_NUM(item, "thermistor_nominal", s->thermistor_nominal); JSON_TO_NUM(item, "beta_coefficient", s->beta_coefficient); } JSON_TO_NUM(item, "temp_offset", s->temp_offset); JSON_TO_NUM(item, "temp_coefficient", s->temp_coefficient); if ((r = cJSON_GetObjectItem(item, "temp_map"))) json2temp_map(r, &s->map); if ((r = cJSON_GetObjectItem(item, "filter"))) json2filter(r, &s->filter, &s->filter_ctx); } } /* Virtual Sensor configurations */ ref = cJSON_GetObjectItem(config, "vsensors"); cJSON_ArrayForEach(item, ref) { id = (int)cJSON_GetNumberValue(cJSON_GetObjectItem(item, "id")); if (id >= 0 && id < VSENSOR_COUNT) { struct vsensor_input *s = &cfg->vsensors[id]; JSON_TO_STRING(item, "name", s->name); if (( r = cJSON_GetObjectItem(item, "mode"))) s->mode = str2vsmode(cJSON_GetStringValue(r)); if (s->mode == VSMODE_MANUAL) { JSON_TO_NUM(item, "default_temp", s->default_temp); JSON_TO_NUM(item, "timeout", s->timeout); } else if (s->mode == VSMODE_ONEWIRE) { if ((r = cJSON_GetObjectItem(item, "onewire_addr"))) s->onewire_addr = str2onewireaddr(cJSON_GetStringValue(r)); } else if (s->mode == VSMODE_I2C) { if ((r = cJSON_GetObjectItem(item, "i2c_type"))) s->i2c_type = get_i2c_sensor_type(cJSON_GetStringValue(r)); JSON_TO_NUM(item, "i2c_addr", s->i2c_addr); } else { if ((r = cJSON_GetObjectItem(item, "sensors"))) json2vsensors(r, s->sensors); } if ((r = cJSON_GetObjectItem(item, "temp_map"))) json2temp_map(r, &s->map); if ((r = cJSON_GetObjectItem(item, "filter"))) json2filter(r, &s->filter, &s->filter_ctx); } } return 0; } void read_config(bool use_default_config) { const char *default_config = fanpico_default_config; uint32_t default_config_size = strlen(default_config); cJSON *config = NULL; int res; uint32_t file_size; char *buf = NULL; if (!use_default_config) { log_msg(LOG_INFO, "Reading configuration..."); res = flash_read_file(&buf, &file_size, "fanpico.cfg"); if (res == 0 && buf != NULL) { /* parse saved config... */ config = cJSON_Parse(buf); if (!config) { const char *error_str = cJSON_GetErrorPtr(); log_msg(LOG_ERR, "Failed to parse saved config: %s", (error_str ? error_str : "") ); } free(buf); } } if (!config) { log_msg(LOG_NOTICE, "Using default configuration..."); log_msg(LOG_DEBUG, "config size = %lu", default_config_size); /* printf("default config:\n---\n%s\n---\n", default_config); */ config = cJSON_Parse(fanpico_default_config); if (!config) { const char *error_str = cJSON_GetErrorPtr(); panic("Failed to parse default config: %s\n", (error_str ? error_str : "") ); } } /* Parse JSON configuration */ mutex_enter_blocking(config_mutex); clear_config(&fanpico_config); if (json_to_config(config, &fanpico_config) < 0) { log_msg(LOG_ERR, "Error parsing JSON configuration"); } if (use_default_config) { /* Enable more verbose logging if in "safe-mode" ... */ set_log_level(LOG_INFO); fanpico_config.local_echo = true; } mutex_exit(config_mutex); cJSON_Delete(config); } void save_config() { cJSON *config; char *str; log_msg(LOG_NOTICE, "Saving configuration..."); config = config_to_json(cfg); if (!config) { log_msg(LOG_ALERT, "Out of memory!"); return; } if ((str = cJSON_Print(config)) == NULL) { log_msg(LOG_ERR, "Failed to generate JSON output"); } else { uint32_t config_size = strlen(str) + 1; flash_write_file(str, config_size, "fanpico.cfg"); free(str); } cJSON_Delete(config); } void print_config() { cJSON *config; char *str; config = config_to_json(cfg); if (!config) { log_msg(LOG_ALERT, "Out of memory"); return; } if ((str = cJSON_Print(config)) == NULL) { log_msg(LOG_ERR, "Failed to generate JSON output"); } else { printf("Current Configuration:\n%s\n\n", str); free(str); } cJSON_Delete(config); } #define CONFIG_READ_TIMEOUT 10000 // 10s #define CONFIG_READ_BUF_SIZE 2048 #define BLANK_LINE_COUNT 2 // Number of blank lines to signify end of config... void upload_config() { absolute_time_t t_timeout = get_absolute_time(); cJSON *config = NULL; cJSON *ref; char *buf = NULL; char tmp[256]; uint32_t buf_len = CONFIG_READ_BUF_SIZE * 3; uint32_t buf_used = 0; int state = 0; int blank_count = 0; if (!(buf = malloc(buf_len))) { log_msg(LOG_ERR,"upload_config(): not enough memory (%lu)", buf_len); return; } tmp[0] = 0; printf("Paste FanPico configuration in JSON format:\n"); while (1) { char *line; uint32_t line_len; int r; if ((r = getstring_timeout_ms(tmp, sizeof(tmp), 100)) < 0) break; if (r > 0) { line = trim_str(tmp); line_len = strnlen(line, sizeof(tmp)); blank_count = (line_len ? 0 : blank_count + 1); if (blank_count >= BLANK_LINE_COUNT) break; if (state == 0) { if (line_len) state = 1; else continue; } if (state == 1) { if (!line_len) { if (blank_count >= 1) break; continue; } if ((buf_len - buf_used) < line_len + 1) { char *new_buf; buf_len += CONFIG_READ_BUF_SIZE; if (!(new_buf = realloc(buf, buf_len))) { log_msg(LOG_ERR,"upload_config(): not enough memory (%lu)", buf_len); goto panic; } buf = new_buf; } memcpy(&buf[buf_used], line, line_len); buf_used += line_len; buf[buf_used++] = '\n'; tmp[0] = 0; } } if (time_passed(&t_timeout, CONFIG_READ_TIMEOUT)) { printf("Timeout!\n"); break; } } buf[buf_used] = 0; printf("[Received %lu bytes]\n\n", buf_used); if (buf_used < 1) { printf("No configuration received.\n"); goto panic; } if (!(config = cJSON_Parse(buf))) { printf("Failed to parse uploaded config"); goto panic; } if (!(ref = cJSON_GetObjectItem(config, "id"))) { printf("Uploaded JSON object missing 'id' field.\n"); goto panic; } if (strncmp(ref->valuestring, "fanpico-config-v", 16)) { printf("Invalid configuration uploaded.\n"); goto panic; } printf("Clearing config...\n"); clear_config(&fanpico_config); printf("Loading config...\n"); if (json_to_config(config, &fanpico_config) < 0) { printf("Error parsing JSON configuration\n"); } else { printf("Configuration successfully loaded.\n"); } panic: if (buf) free(buf); if (config) cJSON_Delete(config); } void delete_config() { int res; res = flash_delete_file("fanpico.cfg"); if (res) { log_msg(LOG_ERR, "Failed to delete configuration."); } } ================================================ FILE: src/config.h.in ================================================ #ifndef FANPICO_CONFIG_H #define FANPICO_CONFIG_H 1 #define FANPICO_VERSION "@fanpico_VERSION@" #define FANPICO_VERSION_MAJOR "@fanpico_VERSION_MAJOR@" #define FANPICO_VERSION_MINOR "@fanpico_VERSION_MINOR@" #include "boards/@FANPICO_BOARD@.h" #define FANPICO_BOARD "@FANPICO_BOARD@" #define FANPICO_DEFAULT_CONFIG "boards/@FANPICO_BOARD@.json" #define FANPICO_CUSTOM_THEME @FANPICO_CUSTOM_THEME@ #define FANPICO_CUSTOM_LOGO @FANPICO_CUSTOM_LOGO@ #define FANPICO_BUILD_TAG "@FANPICO_BUILD@" #include "fanpico-compile.h" #endif /* FANPICO_CONFIG_H */ ================================================ FILE: src/crc32.c ================================================ /* crc32.c Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is part of the libiberty library. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combined executable.) This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* #include "libiberty.h" */ /* This table was generated by the following program. #include int main () { unsigned int i, j; unsigned int c; int table[256]; for (i = 0; i < 256; i++) { for (c = i << 24, j = 8; j > 0; --j) c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1); table[i] = c; } printf ("static const unsigned int crc32_table[] =\n{\n"); for (i = 0; i < 256; i += 4) { printf (" 0x%08x, 0x%08x, 0x%08x, 0x%08x", table[i + 0], table[i + 1], table[i + 2], table[i + 3]); if (i + 4 < 256) putchar (','); putchar ('\n'); } printf ("};\n"); return 0; } For more information on CRC, see, e.g., http://www.ross.net/crc/download/crc_v3.txt. */ static const unsigned int crc32_table[] = { 0x00000000, 0x04c11db7, 0x09823b6e, 0x0d4326d9, 0x130476dc, 0x17c56b6b, 0x1a864db2, 0x1e475005, 0x2608edb8, 0x22c9f00f, 0x2f8ad6d6, 0x2b4bcb61, 0x350c9b64, 0x31cd86d3, 0x3c8ea00a, 0x384fbdbd, 0x4c11db70, 0x48d0c6c7, 0x4593e01e, 0x4152fda9, 0x5f15adac, 0x5bd4b01b, 0x569796c2, 0x52568b75, 0x6a1936c8, 0x6ed82b7f, 0x639b0da6, 0x675a1011, 0x791d4014, 0x7ddc5da3, 0x709f7b7a, 0x745e66cd, 0x9823b6e0, 0x9ce2ab57, 0x91a18d8e, 0x95609039, 0x8b27c03c, 0x8fe6dd8b, 0x82a5fb52, 0x8664e6e5, 0xbe2b5b58, 0xbaea46ef, 0xb7a96036, 0xb3687d81, 0xad2f2d84, 0xa9ee3033, 0xa4ad16ea, 0xa06c0b5d, 0xd4326d90, 0xd0f37027, 0xddb056fe, 0xd9714b49, 0xc7361b4c, 0xc3f706fb, 0xceb42022, 0xca753d95, 0xf23a8028, 0xf6fb9d9f, 0xfbb8bb46, 0xff79a6f1, 0xe13ef6f4, 0xe5ffeb43, 0xe8bccd9a, 0xec7dd02d, 0x34867077, 0x30476dc0, 0x3d044b19, 0x39c556ae, 0x278206ab, 0x23431b1c, 0x2e003dc5, 0x2ac12072, 0x128e9dcf, 0x164f8078, 0x1b0ca6a1, 0x1fcdbb16, 0x018aeb13, 0x054bf6a4, 0x0808d07d, 0x0cc9cdca, 0x7897ab07, 0x7c56b6b0, 0x71159069, 0x75d48dde, 0x6b93dddb, 0x6f52c06c, 0x6211e6b5, 0x66d0fb02, 0x5e9f46bf, 0x5a5e5b08, 0x571d7dd1, 0x53dc6066, 0x4d9b3063, 0x495a2dd4, 0x44190b0d, 0x40d816ba, 0xaca5c697, 0xa864db20, 0xa527fdf9, 0xa1e6e04e, 0xbfa1b04b, 0xbb60adfc, 0xb6238b25, 0xb2e29692, 0x8aad2b2f, 0x8e6c3698, 0x832f1041, 0x87ee0df6, 0x99a95df3, 0x9d684044, 0x902b669d, 0x94ea7b2a, 0xe0b41de7, 0xe4750050, 0xe9362689, 0xedf73b3e, 0xf3b06b3b, 0xf771768c, 0xfa325055, 0xfef34de2, 0xc6bcf05f, 0xc27dede8, 0xcf3ecb31, 0xcbffd686, 0xd5b88683, 0xd1799b34, 0xdc3abded, 0xd8fba05a, 0x690ce0ee, 0x6dcdfd59, 0x608edb80, 0x644fc637, 0x7a089632, 0x7ec98b85, 0x738aad5c, 0x774bb0eb, 0x4f040d56, 0x4bc510e1, 0x46863638, 0x42472b8f, 0x5c007b8a, 0x58c1663d, 0x558240e4, 0x51435d53, 0x251d3b9e, 0x21dc2629, 0x2c9f00f0, 0x285e1d47, 0x36194d42, 0x32d850f5, 0x3f9b762c, 0x3b5a6b9b, 0x0315d626, 0x07d4cb91, 0x0a97ed48, 0x0e56f0ff, 0x1011a0fa, 0x14d0bd4d, 0x19939b94, 0x1d528623, 0xf12f560e, 0xf5ee4bb9, 0xf8ad6d60, 0xfc6c70d7, 0xe22b20d2, 0xe6ea3d65, 0xeba91bbc, 0xef68060b, 0xd727bbb6, 0xd3e6a601, 0xdea580d8, 0xda649d6f, 0xc423cd6a, 0xc0e2d0dd, 0xcda1f604, 0xc960ebb3, 0xbd3e8d7e, 0xb9ff90c9, 0xb4bcb610, 0xb07daba7, 0xae3afba2, 0xaafbe615, 0xa7b8c0cc, 0xa379dd7b, 0x9b3660c6, 0x9ff77d71, 0x92b45ba8, 0x9675461f, 0x8832161a, 0x8cf30bad, 0x81b02d74, 0x857130c3, 0x5d8a9099, 0x594b8d2e, 0x5408abf7, 0x50c9b640, 0x4e8ee645, 0x4a4ffbf2, 0x470cdd2b, 0x43cdc09c, 0x7b827d21, 0x7f436096, 0x7200464f, 0x76c15bf8, 0x68860bfd, 0x6c47164a, 0x61043093, 0x65c52d24, 0x119b4be9, 0x155a565e, 0x18197087, 0x1cd86d30, 0x029f3d35, 0x065e2082, 0x0b1d065b, 0x0fdc1bec, 0x3793a651, 0x3352bbe6, 0x3e119d3f, 0x3ad08088, 0x2497d08d, 0x2056cd3a, 0x2d15ebe3, 0x29d4f654, 0xc5a92679, 0xc1683bce, 0xcc2b1d17, 0xc8ea00a0, 0xd6ad50a5, 0xd26c4d12, 0xdf2f6bcb, 0xdbee767c, 0xe3a1cbc1, 0xe760d676, 0xea23f0af, 0xeee2ed18, 0xf0a5bd1d, 0xf464a0aa, 0xf9278673, 0xfde69bc4, 0x89b8fd09, 0x8d79e0be, 0x803ac667, 0x84fbdbd0, 0x9abc8bd5, 0x9e7d9662, 0x933eb0bb, 0x97ffad0c, 0xafb010b1, 0xab710d06, 0xa6322bdf, 0xa2f33668, 0xbcb4666d, 0xb8757bda, 0xb5365d03, 0xb1f740b4 }; /* @deftypefn Extension {unsigned int} crc32 (const unsigned char *@var{buf}, @ int @var{len}, unsigned int @var{init}) Compute the 32-bit CRC of @var{buf} which has length @var{len}. The starting value is @var{init}; this may be used to compute the CRC of data split across multiple buffers by passing the return value of each call as the @var{init} parameter of the next. This is used by the @command{gdb} remote protocol for the @samp{qCRC} command. In order to get the same results as gdb for a block of data, you must pass the first CRC parameter as @code{0xffffffff}. This CRC can be specified as: Width : 32 Poly : 0x04c11db7 Init : parameter, typically 0xffffffff RefIn : false RefOut : false XorOut : 0 This differs from the "standard" CRC-32 algorithm in that the values are not reflected, and there is no final XOR value. These differences make it easy to compose the values of multiple blocks. @end deftypefn */ unsigned int xcrc32 (const unsigned char *buf, int len, unsigned int init) { unsigned int crc = init; while (len--) { crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; buf++; } return crc; } ================================================ FILE: src/credits.s ================================================ # credits.s # Copyright (C) 2021-2022 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # # # Stub for embedding credits.txt in the executable. # .global fanpico_credits_text .global fanpico_credits_text_end .section .rodata .p2align 2 fanpico_credits_text: .incbin "credits.txt" .byte 0x00 fanpico_credits_text_end: # eof ================================================ FILE: src/default_config.S ================================================ # default_config.S # Copyright (C) 2021-2024 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # #include "config.h" # # Stub for embedding default_config.json in the executable. # .global fanpico_default_config .global fanpico_default_config_end .section .rodata .p2align 2 fanpico_default_config: .incbin FANPICO_DEFAULT_CONFIG .byte 0x00 fanpico_default_config_end: # eof ================================================ FILE: src/dhcp.c ================================================ /* dhcp.c Copyright (C) 2022-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "pico/cyw43_arch.h" #include "lwip/prot/dhcp.h" #include "fanpico.h" #define DHCP_OPTION_LOG 7 #define DHCP_OPTION_POSIX_TZ 100 /* LwIP DHCP hook to customize option 55 (Parameter-Request) when DHCP * client send DHCP_REQUEST message... */ void pico_dhcp_option_add_hook(struct netif *netif, struct dhcp *dhcp, u8_t state, struct dhcp_msg *msg, u8_t msg_type, u16_t *options_len_ptr) { u8_t new_parameters[] = { DHCP_OPTION_LOG, DHCP_OPTION_POSIX_TZ, 0 }; u16_t extra_len = sizeof(new_parameters) - 1; u16_t orig_len = *options_len_ptr; u16_t old_ptr = 0; u16_t new_ptr = 0; struct dhcp_msg tmp; if (msg_type != DHCP_REQUEST) return; LWIP_ASSERT("dhcp option overflow", *options_len_ptr + extra_len <= DHCP_OPTIONS_LEN); /* Copy options to temporary buffer, so we can 'edit' option 55... */ memcpy(tmp.options, msg->options, sizeof(tmp.options)); /* Rebuild options... */ while (old_ptr < orig_len) { u8_t code = tmp.options[old_ptr++]; u8_t len = tmp.options[old_ptr++]; msg->options[new_ptr++] = code; msg->options[new_ptr++] = (code == 55 ? len + extra_len : len); for (int i = 0; i < len; i++) { msg->options[new_ptr++] = tmp.options[old_ptr++]; } if (code == 55) { for (int i = 0; i < extra_len; i++) { msg->options[new_ptr++] = new_parameters[i]; } } } *options_len_ptr = new_ptr; } /* LwIP DHCP hook to parse additional DHCP options received. */ void pico_dhcp_option_parse_hook(struct netif *netif, struct dhcp *dhcp, u8_t state, struct dhcp_msg *msg, u8_t msg_type, u8_t option, u8_t option_len, struct pbuf *pbuf, u16_t option_value_offset) { struct persistent_memory_block *m = persistent_mem; ip4_addr_t log_ip; char timezone[64]; if (msg_type != DHCP_ACK) return; log_msg(LOG_DEBUG, "Parse DHCP option (msg=%02x): %u (len=%u,offset=%u)", msg_type, option, option_len, option_value_offset); if (option == DHCP_OPTION_LOG && option_len >= 4) { memcpy(&log_ip.addr, pbuf->payload + option_value_offset, 4); if (ip_addr_isany(&cfg->syslog_server)) { /* If no syslog server configured, use one from DHCP... */ if (!ip_addr_cmp(&net_state->syslog_server, &log_ip)) { ip_addr_copy(net_state->syslog_server, log_ip); log_msg(LOG_INFO, "Using Log Server from DHCP: %s", ip4addr_ntoa(&log_ip)); } } else { log_msg(LOG_DEBUG, "Ignoring Log Server from DHCP: %s", ip4addr_ntoa(&log_ip)); } } else if (option == DHCP_OPTION_POSIX_TZ && option_len > 0) { int len = (option_len < sizeof(timezone) ? option_len : sizeof(timezone) - 1); memcpy(timezone, pbuf->payload + option_value_offset, len); timezone[len] = 0; if (strlen(cfg->timezone) < 1) { if (strncmp(timezone, m->timezone, len + 1)) { log_msg(LOG_INFO, "Using timezone from DHCP: %s", timezone); update_persistent_memory_tz(timezone); setenv("TZ", m->timezone, 1); tzset(); } } else { log_msg(LOG_DEBUG, "Ignoring timezone from DHCP: %s", timezone); } } } ================================================ FILE: src/display.c ================================================ /* display.c Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include "pico/stdlib.h" #include "fanpico.h" void display_init() { #if OLED_DISPLAY || LCD_DISPLAY #if OLED_DISPLAY if (!cfg->spi_active) oled_display_init(); #endif #if LCD_DISPLAY if (cfg->spi_active) lcd_display_init(); #endif #else log_msg(LOG_NOTICE, "No Display Support"); #endif } void clear_display() { #if LCD_DISPLAY if (cfg->spi_active) lcd_clear_display(); #endif #if OLED_DISPLAY if (!cfg->spi_active) oled_clear_display(); #endif } void display_status(const struct fanpico_state *state, const struct fanpico_config *config) { #if LCD_DISPLAY if (cfg->spi_active) lcd_display_status(state, config); #endif #if OLED_DISPLAY if (!cfg->spi_active) oled_display_status(state, config); #endif } void display_message(int rows, const char **text_lines) { #if LCD_DISPLAY if (cfg->spi_active) lcd_display_message(rows, text_lines); #endif #if OLED_DISPLAY if (!cfg->spi_active) oled_display_message(rows, text_lines); #endif } /* eof :-) */ ================================================ FILE: src/display_lcd.c ================================================ /* display_lcd.c Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "bb_spi_lcd.h" #include "fanpico.h" #if LCD_DISPLAY static SPILCD lcd; static uint8_t lcd_found = 0; /* Macros for converting RGB888 colorspace to RGB565 */ /* Convert 24bit color space to 16bit color space. */ #define RGB565(rgb) (uint16_t)( ((rgb & 0xf80000) >> 8) | ((rgb & 0xfc00) >> 5) | ((rgb & 0xf8) >> 3) ) /* Generate 16bit color from 8bit RGB components. */ #define RGB565C(r, g, b) (uint16_t)( ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | ((b & 0xf8) >> 3) ) struct lcd_type { const char* name; int dtype; int flags; int orientation; int32_t spi_freq; const uint8_t *custom_init; uint32_t custom_init_len; int invert_offset; int rgb_offset; }; enum display_field_types { INVALID_FIELDTYPE = 0, FAN, MBFAN, SENSOR, VSENSOR, UPTIME, TIME, DATE, DATE_TIME, IP, MODEL, VERSION, MODEL_VERSION, DISPLAY_FIELD_TYPE_COUNT }; enum display_data_types { INVALID_DATATYPE = 0, LABEL, RPM, PWM, TEMP, OTHER, DISPLAY_DATA_TYPE_COUNT }; typedef struct display_field { enum display_field_types type; enum display_data_types data; int id; int x; int y; uint16_t fg; uint16_t bg; int font; } display_field_t; struct display_theme { const display_field_t *bg; /* background items, draw only once */ const display_field_t *fg; /* foreground items */ const uint8_t *bmp; const char* fan_name_fmt; uint8_t fan_name_len; const char* mbfan_name_fmt; uint8_t mbfan_name_len; const char* sensor_name_fmt; uint8_t sensor_name_len; const char* vsensor_name_fmt; uint8_t vsensor_name_len; }; struct display_theme_entry { const char *name; const struct display_theme *theme_small; /* 320x240 */ const struct display_theme *theme_normal; /* 480x320 */ }; typedef struct display_logo { const char *name; uint16_t width; uint16_t height; const uint8_t *bmp; } display_logo_t; static uint16_t bg_color = RGB565(0x006163); static uint16_t text_color = RGB565(0x07a3aa); #include "themes/default-320x240.h" #include "themes/default-480x320.h" #if FANPICO_CUSTOM_THEME > 0 #include "themes/custom-320x240.h" #include "themes/custom-480x320.h" #endif const struct display_theme_entry themes[] = { {"default", &theme_default_320x240, &theme_default_480x320}, #if FANPICO_CUSTOM_THEME > 0 {"custom", &theme_custom_320x240, &theme_custom_480x320}, #endif {NULL, NULL, NULL} }; #include "logos/default.h" #if FANPICO_CUSTOM_LOGO > 0 #include "logos/custom.h" #endif const display_logo_t* logos[] = { &default_lcd_logo_entry, #if FANPICO_CUSTOM_LOGO > 0 &custom_lcd_logo_entry, #endif NULL }; const struct display_theme *theme = NULL; const uint8_t waveshare35a[] = { 1, 0x01, LCD_DELAY, 50, 1, 0x28, 2, 0xb0, 0x00, 1, 0x11, 1, 0x20, // no-invert [12] 2, 0x3a, 0x55, 2, 0x36, 0x28, // RGB mode [18] 2, 0xc2, 0x44, 5, 0xc5, 0x00, 0x00, 0x00, 0x00, 16, 0xe0, 0x0f, 0x1f, 0x1c, 0x0c, 0x0f, 0x08, 0x48, 0x98, 0x37, 0x0a, 0x13, 0x04, 0x11, 0x0d, 0x00, 16, 0xe1, 0x0f, 0x32, 0x2e, 0x0b, 0x0d, 0x05, 0x47, 0x75, 0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00, 16, 0xe2, 0x0f, 0x32, 0x2e, 0x0b, 0x0d, 0x05, 0x47, 0x75, 0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00, 1, 0x11, LCD_DELAY, 150, 1, 0x29, LCD_DELAY, 25, 0 }; const uint8_t waveshare35b[] = { 1, 0x01, LCD_DELAY, 50, 1, 0x28, 2, 0xb0, 0x00, 1, 0x11, 1, 0x21, // invert [12] 2, 0x3a, 0x55, 2, 0x36, 0x28, // RGB mode [18] 3, 0xc0, 0x09, 0x09, 3, 0xc1, 0x41, 0x00, 3, 0xc5, 0x00, 0x36, 16, 0xe0, 0x00, 0x2c, 0x2c, 0x0b, 0x0c, 0x04, 0x4c, 0x64, 0x36, 0x03, 0x0e, 0x01, 0x10, 0x01, 0x00, 16, 0xe1, 0x0f, 0x37, 0x37, 0x0c, 0x0f, 0x05, 0x50, 0x32, 0x36, 0x04, 0x0b, 0x00, 0x19, 0x14, 0x0f, 1, 0x11, LCD_DELAY, 150, 1, 0x29, LCD_DELAY, 25, 0 }; const uint8_t waveshare35bv2[] = { 1, 0x01, LCD_DELAY, 50, 1, 0x28, 2, 0xb0, 0x00, 1, 0x11, 1, 0x21, // invert [12] 2, 0x3a, 0x55, 2, 0x36, 0x28, // RGB mode [18] 2, 0xc2, 0x33, 4, 0xc5, 0x00, 0x1e, 0x80, 2, 0xb1, 0xb0, 16, 0xe0, 0x00, 0x13, 0x18, 0x04, 0x0f, 0x06, 0x3a, 0x56, 0x4d, 0x03, 0x0a, 0x06, 0x30, 0x3e, 0x0f, 16, 0xe1, 0x00, 0x13, 0x18, 0x01, 0x11, 0x06, 0x38, 0x34, 0x4d, 0x06, 0x0d, 0x0b, 0x31, 0x37, 0x0f, 1, 0x11, LCD_DELAY, 150, 1, 0x29, LCD_DELAY, 25, 0 }; const struct lcd_type lcd_types[] = { /* Generic controllers/panels */ {"ILI9341", LCD_ILI9341, FLAGS_NONE, LCD_ORIENTATION_90, -1, NULL, 0, -1, -1}, // {"ILI9342", LCD_ILI9342, FLAGS_NONE, LCD_ORIENTATION_90, -1, NULL, 0, -1, -1}, {"ST7789", LCD_ST7789, FLAGS_NONE, LCD_ORIENTATION_90, -1, NULL, 0, -1, -1}, {"ILI9486", LCD_ILI9486, FLAGS_NONE, LCD_ORIENTATION_90, -1, NULL, 0, -1, -1}, {"HX8357", LCD_HX8357, FLAGS_NONE, LCD_ORIENTATION_90, -1, NULL, 0, -1, -1}, /* Panel/module specific support */ {"waveshare35a", LCD_ILI9486, FLAGS_16BIT|FLAGS_SWAP_RB|FLAGS_SWAP_X, LCD_ORIENTATION_90, -1, waveshare35a, sizeof(waveshare35a), 12, 18}, {"waveshare35b", LCD_ILI9486, FLAGS_16BIT|FLAGS_SWAP_RB|FLAGS_SWAP_X, LCD_ORIENTATION_90, -1, waveshare35b, sizeof(waveshare35b), 12, 18}, {"waveshare35bv2", LCD_ILI9486, FLAGS_16BIT|FLAGS_SWAP_RB|FLAGS_SWAP_X, LCD_ORIENTATION_90, -1, waveshare35bv2, sizeof(waveshare35bv2), 12, 18}, {NULL, -1, -1, -1, -1, NULL, 0, -1, -1} }; void draw_rounded_box(SPILCD *lcd, uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t r, uint16_t color) { spilcdRectangle(lcd, x + r, y, width - (2 * r), r, color, color, 1, DRAW_TO_LCD); spilcdRectangle(lcd, x, y + r, width, height - (2 * r), color, color, 1, DRAW_TO_LCD); spilcdRectangle(lcd, x + r, y + height - r, width - (2 * r), r, color, color, 1, DRAW_TO_LCD); spilcdEllipse(lcd, x + r, y + r, r, r, color, 1, DRAW_TO_LCD); spilcdEllipse(lcd, x + width - r - 1, y + r, r, r, color, 1, DRAW_TO_LCD); spilcdEllipse(lcd, x + r, y + height - r, r, r, color, 1, DRAW_TO_LCD); spilcdEllipse(lcd, x + width - r - 1, y + height - r, r, r, color, 1, DRAW_TO_LCD); } void lcd_display_init() { int dtype = LCD_INVALID; int flags = FLAGS_NONE; int orientation = LCD_ORIENTATION_90; int32_t spi_freq = SPI_DEFAULT_SPEED; const char *lcd_name = ""; int val; char *args, *tok, *saveptr; int theme_idx; if (!cfg) return; memset(&lcd, 0, sizeof(lcd)); args = strdup(cfg->display_type); if (!args) return; tok = strtok_r(args, ",", &saveptr); while (tok) { if (!strncmp(tok,"lcd=", 4)) { char *t = tok + 4; int i = 0; while (lcd_types[i].name) { const struct lcd_type *l = &lcd_types[i]; if (!strcmp(l->name, t)) { lcd_name = l->name; dtype = l->dtype; if (l->flags >= 0) flags = l->flags; if (l->orientation >= 0) orientation = l->orientation; if (l->spi_freq >= 0) spi_freq = l->spi_freq; if (l->custom_init) spilcdCustomInit(&lcd, l->custom_init, l->custom_init_len, l->invert_offset, l->rgb_offset); break; } i++; } } else if (!strncmp(tok, "rotate=", 7)) { if (str_to_int(tok + 7, &val, 10)) { switch(val) { case 90: orientation = LCD_ORIENTATION_90; break; case 180: orientation = LCD_ORIENTATION_180; break; case 270: orientation = LCD_ORIENTATION_270; break; default: orientation = LCD_ORIENTATION_0; } } } else if (!strncmp(tok, "spifreq=", 8)) { if (str_to_int(tok + 8, &val, 10)) { if (val > 0 && val < 1000) { spi_freq = val * 1000 * 1000; } else if (val >= 1000) { spi_freq = val; } } } else if (!strncmp(tok, "invert", 6)) flags ^= FLAGS_INVERT; else if (!strncmp(tok, "swapcolors", 10)) flags ^= FLAGS_SWAP_RB; else if (!strncmp(tok, "16bit", 5)) flags |= FLAGS_16BIT; tok = strtok_r(NULL, ",", &saveptr); } free(args); if (dtype == LCD_INVALID) { log_msg(LOG_NOTICE, "No LCD type configured!"); return; } lcd_found = 1; log_msg(LOG_NOTICE, "Initializing LCD display..."); log_msg(LOG_INFO, "SPI Frequency: %ld Hz", spi_freq); int res = spilcdInit(&lcd, dtype, flags, spi_freq, CS_PIN, DC_PIN, LCD_RESET_PIN, LCD_LIGHT_PIN, MISO_PIN, MOSI_PIN, SCK_PIN); log_msg(LOG_DEBUG, "spilcdInit(): %d", res); spilcdSetOrientation(&lcd, orientation); spilcdFill(&lcd, 0, DRAW_TO_LCD); log_msg(LOG_NOTICE, "LCD display: %s %dx%d", lcd_name, lcd.iCurrentWidth, lcd.iCurrentHeight); /* Draw logo to screen */ const display_logo_t *logo = logos[0]; /* Default logo */ if (strlen(cfg->display_logo) > 0) { int idx = 0; while (logos[idx]) { if (!strncmp(cfg->display_logo, logos[idx]->name, sizeof(cfg->display_logo))) { logo = logos[idx]; break; } idx++; } } int w_c = lcd.iCurrentWidth / 2; int h_c = lcd.iCurrentHeight / 2; spilcdDrawBMP(&lcd, logo->bmp, w_c - (logo->width / 2), h_c - ((logo->height + 80) / 2), 0, -1, DRAW_TO_LCD); h_c += logo->height / 2; spilcdWriteString(&lcd, w_c - 100, h_c, "FanPico-" FANPICO_MODEL, text_color, 0, FONT_16x16, DRAW_TO_LCD); spilcdWriteString(&lcd, w_c - 40, h_c + 25, "v" FANPICO_VERSION, text_color, 0, FONT_16x16, DRAW_TO_LCD); spilcdWriteString(&lcd, w_c - 50, h_c + 55, "Initializing...", text_color, 0, FONT_8x8, DRAW_TO_LCD); /* Select theme to use... */ theme_idx = 0; /* use first theme by default... */ if (strlen(cfg->display_theme) > 0) { int i = 0; while (themes[i].name) { if (!strcmp(themes[i].name, cfg->display_theme)) { theme_idx = i; break; } i++; } } theme = (lcd.iCurrentWidth >= 480 ? themes[theme_idx].theme_normal : themes[theme_idx].theme_small); log_msg(LOG_INFO, "LCD theme: %s", themes[theme_idx].name); } void lcd_clear_display() { if (!lcd_found) return; spilcdFill(&lcd, 0, DRAW_TO_LCD); } void draw_fields(const struct fanpico_state *state, const struct fanpico_config *conf, const struct display_theme *theme, int mode) { int i = 0; char buf[64]; double val; struct tm t; const display_field_t *list; list = (mode ? theme->fg : theme->bg); while (list[i].type > INVALID_FIELDTYPE && list[i].type < DISPLAY_FIELD_TYPE_COUNT) { const display_field_t *f = &list[i]; buf[0] = 0; switch (f->data) { case LABEL: switch (f->type) { case FAN: snprintf(buf, theme->fan_name_len + 1, theme->fan_name_fmt, conf->fans[f->id].name); break; case MBFAN: snprintf(buf, theme->mbfan_name_len + 1, theme->mbfan_name_fmt, conf->mbfans[f->id].name); break; case SENSOR: snprintf(buf, theme->sensor_name_len + 1, theme->sensor_name_fmt, conf->sensors[f->id].name); break; case VSENSOR: snprintf(buf, theme->vsensor_name_len + 1, theme->vsensor_name_fmt, conf->vsensors[f->id].name); break; case MODEL_VERSION: snprintf(buf, sizeof(buf), "%s", "FanPico-" FANPICO_MODEL " v" FANPICO_VERSION); break; default: break; } break; case RPM: switch (f->type) { case FAN: val = state->fan_freq[f->id] * 60 / conf->fans[f->id].rpm_factor; break; case MBFAN: val = state->mbfan_freq[f->id] * 60 / conf->mbfans[f->id].rpm_factor; break; default: val = 0.0; } snprintf(buf, 5, "%4.0lf", val); break; case PWM: switch (f->type) { case FAN: val = state->fan_duty[f->id]; break; case MBFAN: val = state->mbfan_duty[f->id]; break; default: val = 0.0; } snprintf(buf, 4, "%3.0lf", val); break; case TEMP: switch (f->type) { case SENSOR: val = state->temp[f->id]; break; case VSENSOR: val = state->vtemp[f->id]; break; default: val = 0.0; } snprintf(buf, 5, "%2.1lf", val); break; case OTHER: switch (f->type) { case IP: const char* net_ip = network_ip(); snprintf(buf, 16, "%15s", (net_ip ? net_ip : "")); break; case DATE_TIME: if (rtc_get_tm(&t)) { snprintf(buf, sizeof(buf), "%04d-%02d-%02d %02d:%02d:%02d", t.tm_year + 1900, t.tm_mon + 1, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec); } break; case DATE: if (rtc_get_tm(&t)) { snprintf(buf, sizeof(buf), "%04d-%02d-%02d", t.tm_year + 1900, t.tm_mon + 1, t.tm_mday); } break; case TIME: if (rtc_get_tm(&t)) { snprintf(buf, sizeof(buf), "%02d:%02d:%02d", t.tm_hour, t.tm_min, t.tm_sec); } break; case UPTIME: { uint32_t secs = to_us_since_boot(get_absolute_time()) / 1000000; uint32_t mins = secs / 60; uint32_t hours = mins / 60; uint32_t days = hours / 24; snprintf(buf, 13, "%03lu+%02lu:%02lu:%02lu", days % 1000, hours % 24, mins % 60, secs % 60); } break; default: break; } break; default: buf[0] = 0; } if (strlen(buf) > 0) spilcdWriteString(&lcd, f->x, f->y, buf, f->fg, f->bg, f->font, DRAW_TO_LCD); i++; } } void lcd_display_status(const struct fanpico_state *state, const struct fanpico_config *conf) { static uint8_t bg_drawn = 0; if (!lcd_found || !state) return; if (!bg_drawn) { /* draw background graphics only once... */ bg_drawn = 1; //spilcdRectangle(&lcd, 0, 0, lcd.iCurrentWidth -1, lcd.iCurrentHeight - 1, 0xffff, 0xffff, 0, DRAW_TO_LCD); if (theme->bmp) { spilcdDrawBMP(&lcd, theme->bmp, 0, 0, 0, -1, DRAW_TO_LCD); draw_fields(state, conf, theme, 0); return; } else { spilcdFill(&lcd, 0x0000, DRAW_TO_LCD); if (bg_color != 0) draw_rounded_box(&lcd, 0, 0, lcd.iCurrentWidth - 1, lcd.iCurrentHeight -1 , 10, bg_color); draw_fields(state, conf, theme, 0); } } draw_fields(state, conf, theme, 1); } void lcd_display_message(int rows, const char **text_lines) { int screen_rows = lcd.iCurrentHeight / 16; int start_row = 0; if (!lcd_found) return; lcd_clear_display(); if (rows < screen_rows) { start_row = (screen_rows - rows) / 2; } for(int i = 0; i < rows; i++) { int row = start_row + i; char *text = (char*)text_lines[i]; if (row >= screen_rows) break; spilcdWriteString(&lcd, 0, row * 16, (text ? text : ""), 65535, 0, FONT_12x16, DRAW_TO_LCD); } } #endif /* eod :-) */ ================================================ FILE: src/display_oled.c ================================================ /* display_oled.c Copyright (C) 2022-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "hardware/i2c.h" #include "ss_oled.h" #include "fanpico.h" #ifdef OLED_DISPLAY enum layout_item_types { BLANK = 0, LABEL = 1, LINE = 2, MBFAN = 3, SENSOR = 4, VSENSOR = 5, }; struct layout_item { enum layout_item_types type; uint8_t idx; const char *label; }; #define R_LAYOUT_MAX 10 static SSOLED oled; static uint8_t ucBuffer[(128*128)/8]; static uint8_t oled_width = 128; static uint8_t oled_height = 64; static uint8_t oled_found = 0; static uint8_t r_lines = 8; static struct layout_item r_layout[R_LAYOUT_MAX]; /* Default screen layouts for inputs/sensors */ #ifndef R_LAYOUT_128x64 #define R_LAYOUT_128x64 "M1,M2,M3,M4,-,S1,S2,S3" #endif #ifndef R_LAYOUT_128x128 #define R_LAYOUT_128x128 "LMB Inputs,M1,M2,M3,M4,-,LSensors,S1,S2,S3" #endif void parse_r_layout(const char *layout) { int i; char *tok, *saveptr, *tmp; for (i = 0; i < R_LAYOUT_MAX; i++) { r_layout[i].type = BLANK; r_layout[i].idx = 0; r_layout[i].label = NULL; } if (!layout) return; tmp = strdup(layout); if (!tmp) return; log_msg(LOG_DEBUG, "parse OLED right layout: '%s", tmp); i = 0; tok = strtok_r(tmp, ",", &saveptr); while (tok && i < r_lines) { switch (tok[0]) { case '-': r_layout[i].type = LINE; break; case 'L': r_layout[i].type = LABEL; r_layout[i].idx = strlen(tok) - 1; r_layout[i].label = layout + (tok - tmp) + 1; break; case 'M': r_layout[i].type = MBFAN; r_layout[i].idx = clamp_int(atoi(tok + 1), 1, MBFAN_COUNT) - 1; break; case 'S': r_layout[i].type = SENSOR; r_layout[i].idx = clamp_int(atoi(tok + 1), 1, SENSOR_COUNT) - 1; break; case 'V': r_layout[i].type = VSENSOR; r_layout[i].idx = clamp_int(atoi(tok + 1), 1, VSENSOR_COUNT) - 1; break; }; tok = strtok_r(NULL, ",", &saveptr); i++; } free(tmp); } void oled_display_init() { int res; int retries = 0; int dtype = OLED_128x64; int invert = 0; int flip = 0; uint8_t brightness = 50; /* display brightness: 0..100 */ uint8_t disp_brightness = 0; int val; char *tok, *args, *saveptr; /* Check if display settings are configured using SYS:DISP command... */ if (cfg) { args = strdup(cfg->display_type); if (args) { tok = strtok_r(args, ",", &saveptr); while (tok) { if (!strncmp(tok, "none", 4)) dtype = -1; else if (!strncmp(tok, "132x64", 6)) dtype = OLED_132x64; else if (!strncmp(tok, "128x128", 7)) { dtype = OLED_128x128; oled_height = 128; r_lines = 10; } else if (!strncmp(tok, "invert", 6)) invert = 1; else if (!strncmp(tok, "flip", 4)) flip =1; else if (!strncmp(tok, "brightness=", 11)) { if (str_to_int(tok + 11, &val, 10)) { if (val >=0 && val <= 100) brightness = val; } } tok = strtok_r(NULL, ",", &saveptr); } free(args); } } if (dtype < 0) { log_msg(LOG_NOTICE, "OLED display support disabled."); return; } if (strlen(cfg->display_layout_r) > 1) { parse_r_layout(cfg->display_layout_r); } else { parse_r_layout(r_lines == 8 ? R_LAYOUT_128x64 : R_LAYOUT_128x128); } disp_brightness = (brightness / 100.0) * 255; log_msg(LOG_DEBUG, "Set display brightness: %u%% (0x%x)\n", brightness, disp_brightness); log_msg(LOG_NOTICE, "Initializing OLED Display..."); do { sleep_ms(50); res = oledInit(&oled, dtype, -1, flip, invert, I2C_HW, SDA_PIN, SCL_PIN, LCD_RESET_PIN, cfg->i2c_speed, true); } while (res == OLED_NOT_FOUND && retries++ < 10); if (res == OLED_NOT_FOUND) { log_msg(LOG_ERR, "No OLED Display Connected!"); return; } char *disp_model = ""; uint8_t disp_addr = 0; switch (res) { case OLED_SSD1306_3C: disp_model = "SSD1306"; disp_addr = 0x3c; break; case OLED_SSD1306_3D: disp_model = "SSD1306"; disp_addr = 0x3d; break; case OLED_SH1106_3C: disp_model = "SH1106"; disp_addr = 0x3c; break; case OLED_SH1106_3D: disp_model = "SH1106"; disp_addr = 0x3d; break; case OLED_SH1107_3C: disp_model = "SH1107"; disp_addr = 0x3c; break; case OLED_SH1107_3D: disp_model = "SH1107"; disp_addr = 0x3d; break; default: disp_model = "Unknown"; } log_msg(LOG_NOTICE, "I2C OLED Display: %s (at %02x)", disp_model, disp_addr); /* Initialize screen. */ oledSetBackBuffer(&oled, ucBuffer); oledFill(&oled, 0, 1); oledSetContrast(&oled, disp_brightness); /* Display model and firmware version. */ int y_o = (oled_height > 64 ? 4 : 0); oledWriteString(&oled, 0, 15, y_o + 1, "FanPico-" FANPICO_MODEL, FONT_8x8, 0, 1); oledWriteString(&oled, 0, 40, y_o + 3, "v" FANPICO_VERSION, FONT_8x8, 0, 1); oledWriteString(&oled, 0, 40, y_o + 4, " " FANPICO_BUILD_TAG, FONT_8x8, 0, 1); oledWriteString(&oled, 0, 20, y_o + 6, "Initializing...", FONT_6x8, 0, 1); oled_found = 1; } void oled_clear_display() { if (!oled_found) return; oledFill(&oled, 0, 1); } void oled_display_status(const struct fanpico_state *state, const struct fanpico_config *conf) { char buf[64]; int i; double rpm, pwm, temp; struct tm t; static uint32_t counter = 0; static int bg_drawn = 0; if (!oled_found || !state) return; int h_pos = 70; int fan_row_offset = ((oled_height > 64 || FAN_COUNT < 4) ? 1 : 0); if (!bg_drawn) { /* Draw "background" only once... */ oled_clear_display(); if (fan_row_offset > 0) { oledWriteString(&oled, 0, 0, 0, "Fans", FONT_6x8, 0, 1); } for (i = 0; i < r_lines; i++) { struct layout_item *l = &r_layout[i]; char label[16]; int y = i * 8; if (l->type == LINE) { oledDrawLine(&oled, h_pos, y + 4, oled_width - 1, y + 4, 1); } else if (l->type == LABEL) { int len = l->idx; if (len >= sizeof(label)) len = sizeof(label) - 1; memcpy(label, l->label, len); label[len] = 0; oledWriteString(&oled, 0, h_pos + 2, i, label, FONT_6x8, 0, 1); } } oledDrawLine(&oled, h_pos, 0, h_pos, r_lines * 8 - 1, 1); bg_drawn = 1; } for (i = 0; i < FAN_COUNT; i++) { rpm = state->fan_freq[i] * 60 / conf->fans[i].rpm_factor; pwm = state->fan_duty[i]; snprintf(buf, sizeof(buf), "%d:%4.0lf %3.0lf%%", i + 1, rpm, pwm); oledWriteString(&oled, 0 , 0, i + fan_row_offset, buf, FONT_6x8, 0, 1); } for (i = 0; i < r_lines; i++) { struct layout_item *l = &r_layout[i]; int write_buf = 0; if (l->type == MBFAN) { pwm = state->mbfan_duty[l->idx]; snprintf(buf, sizeof(buf), "%d: %4.0lf%% ", l->idx + 1, pwm); write_buf = 1; } else if (l->type == SENSOR) { temp = state->temp[l->idx]; snprintf(buf, sizeof(buf), "s%d:%5.1lfC", l->idx + 1, temp); write_buf = 1; } else if (l->type == VSENSOR) { temp = state->vtemp[l->idx]; snprintf(buf, sizeof(buf), "v%d:%5.1lfC", l->idx + 1, temp); write_buf = 1; } if (write_buf) { if (oled_height <= 64 && i == 0) { buf[8] = (counter++ % 2 == 0 ? '*' : ' '); } oledWriteString(&oled, 0 , h_pos + 2, i, buf, FONT_6x8, 0, 1); } else if (FAN_COUNT > 4 && i == 0 && oled_height <= 64) { /* Handle case where first row has static content... */ buf[0] = (counter++ % 2 == 0 ? '*' : ' '); buf[1] = 0; oledWriteString(&oled, 0, h_pos + 2 + (8*6), i, buf, FONT_6x8, 0, 1); } } /* Uptime & NTP time */ uint32_t secs = to_us_since_boot(get_absolute_time()) / 1000000; uint32_t mins = secs / 60; uint32_t hours = mins / 60; uint32_t days = hours / 24; if (oled_height > 64) { /* IP */ const char *ip = network_ip(); if (ip) { /* Center align the IP string */ int delta = (15 + 1) - strlen(ip); if (delta < 0) delta = 0; int offset = delta / 2; memset(buf, ' ', 8); snprintf(buf + offset, sizeof(buf), " %s", ip); oledWriteString(&oled, 0, 10 + (delta % 2 ? 3 : 0), 15, buf, FONT_6x8, 0, 1); } /* Uptime / Clock */ snprintf(buf, sizeof(buf), "%03lu+%02lu:%02lu:%02lu", days % 1000, hours % 24, mins % 60, secs % 60); if (rtc_get_tm(&t)) { oledWriteString(&oled, 0, 28, 14, buf, FONT_6x8, 0, 1); snprintf(buf, sizeof(buf), "%02d:%02d:%02d", t.tm_hour, t.tm_min, t.tm_sec); oledWriteString(&oled, 0, 16, 11, buf, FONT_12x16, 0, 1); } else { oledWriteString(&oled, 0, 28, 12, buf, FONT_6x8, 0, 1); } } else if (FAN_COUNT <= 4) { /* Uptime / Clock */ snprintf(buf, sizeof(buf), "%03lu+%02lu:%02lu", days % 1000, hours % 24, mins % 60); oledWriteString(&oled, 0, 6, 7, buf, FONT_6x8, 0, 1); if (rtc_get_tm(&t)) { snprintf(buf, sizeof(buf), "%02d%c%02d", t.tm_hour, (t.tm_sec % 2 ? ':' : ' '), t.tm_min); oledWriteString(&oled, 0, 3, 5, buf, FONT_12x16, 0, 1); } } } void oled_display_message(int rows, const char **text_lines) { int screen_rows = oled_height / 8; int start_row = 0; if (!oled_found) return; oled_clear_display(); if (rows < screen_rows) { start_row = (screen_rows - rows) / 2; } for(int i = 0; i < rows; i++) { int row = start_row + i; char *text = (char*)text_lines[i]; if (row >= screen_rows) break; oledWriteString(&oled, 0, 0, row, (text ? text : ""), FONT_6x8, 0, 1); } } #endif /* eof :-) */ ================================================ FILE: src/fanpico-compile.h.in ================================================ #ifndef FANPICO_COMPILE_H #define FANPICO_COMPILE_H 1 #define TLS_SUPPORT @TLS_SUPPORT@ #ifdef NDEBUG #define ALTCP_MBEDTLS_ENTROPY_PTR (const unsigned char*)"@EXTRA_ENTROPY@" #define ALTCP_MBEDTLS_ENTROPY_LEN @EXTRA_ENTROPY_LEN@ #endif #endif /* FANPICO_COMPILE_H */ ================================================ FILE: src/fanpico.c ================================================ /* fanpico.c Copyright (C) 2021-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "pico/mutex.h" #include "pico/multicore.h" #include "pico/util/datetime.h" #include "pico/aon_timer.h" #ifdef LIB_PICO_CYW43_ARCH #include "pico/cyw43_arch.h" #endif #include "hardware/adc.h" #include "hardware/gpio.h" #include "hardware/pwm.h" #include "hardware/clocks.h" #include "hardware/watchdog.h" #include "hardware/vreg.h" #include "fanpico.h" #include "command_util.h" #include "psram.h" #ifdef FANPICO_PSRAM_PIN #if TX_PIN == 0 /* Check for non-standard boards that may have PSRAM on pin 0 (Serial TX) */ #if FANPICO_PSRAM_PIN == TX_PIN #undef TTL_SERIAL #endif #endif #endif static struct fanpico_state core1_state; static struct fanpico_config core1_config; static struct fanpico_state transfer_state; static struct fanpico_state system_state; const struct fanpico_state *fanpico_state = &system_state; static struct fanpico_fw_settings system_settings; const struct fanpico_fw_settings *fw_settings = &system_settings; #ifdef WIFI_SUPPORT static struct fanpico_network_state network_state; struct fanpico_network_state *net_state = &network_state; #endif struct persistent_memory_block __uninitialized_ram(persistent_memory); struct persistent_memory_block *persistent_mem = &persistent_memory; #define PERSISTENT_MEMORY_ID 0x42c0ffee #define PERSISTENT_MEMORY_CRC_LEN offsetof(struct persistent_memory_block, crc32) auto_init_mutex(pmem_mutex_inst); mutex_t *pmem_mutex = &pmem_mutex_inst; auto_init_mutex(state_mutex_inst); mutex_t *state_mutex = &state_mutex_inst; bool rebooted_by_watchdog = false; static char input_buf[1024]; static void update_persistent_memory_crc() { struct persistent_memory_block *m = persistent_mem; m->crc32 = xcrc32((unsigned char*)m, PERSISTENT_MEMORY_CRC_LEN, 0); } static void init_persistent_memory() { struct persistent_memory_block *m = persistent_mem; uint32_t crc; if (m->id == PERSISTENT_MEMORY_ID && m->len == sizeof(persistent_memory)) { crc = xcrc32((unsigned char*)m, PERSISTENT_MEMORY_CRC_LEN, 0); if (crc == m->crc32) { printf("Found persistent memory block\n"); if (strlen(m->timezone) > 0) { /* Restore timezone */ setenv("TZ", m->timezone, 1); tzset(); } if (m->saved_time.tv_sec > 0) aon_timer_start(&m->saved_time); if (m->uptime) { m->prev_uptime = m->uptime; m->total_uptime += m->uptime; } m->warmstart++; update_persistent_memory_crc(); return; } printf("Found corrupt persistent memory block" " (CRC-32 mismatch %08lx != %08lx)\n", crc, m->crc32); } printf("Initializing persistent memory block...\n"); memset(m, 0, sizeof(*m)); m->id = PERSISTENT_MEMORY_ID; m->len = sizeof(persistent_memory); update_persistent_memory_crc(); } void update_persistent_memory() { struct persistent_memory_block *m = persistent_mem; struct timespec t; if (mutex_enter_timeout_us(pmem_mutex, 100)) { if (aon_timer_is_running()) { aon_timer_get_time(&t); m->saved_time = t; } m->uptime = to_us_since_boot(get_absolute_time()); update_persistent_memory_crc(); mutex_exit(pmem_mutex); } else { log_msg(LOG_DEBUG, "update_persistent_memory(): Failed to get pmem_mutex"); } } void update_persistent_memory_tz(const char *tz) { struct persistent_memory_block *m = persistent_mem; if (mutex_enter_timeout_us(pmem_mutex, 100)) { strncopy(m->timezone, tz, sizeof(m->timezone)); update_persistent_memory_crc(); mutex_exit(pmem_mutex); } else { log_msg(LOG_DEBUG, "update_persistent_memory_tz(): Failed to get pmem_mutex"); } } void boot_reason() { #if PICO_RP2040 printf(" CHIP_RESET: %08lx\n", vreg_and_chip_reset_hw->chip_reset); #endif printf("WATCHDOG_REASON: %08lx\n", watchdog_hw->reason); } static void setup() { struct persistent_memory_block *m = persistent_mem; char buf[32]; int i = 0; if (fw_settings->sysclock > 0 && fw_settings->sysclock < 1000) { rp2_set_sys_clock(fw_settings->sysclock * 1000); } stdio_usb_init(); /* Wait a while for USB Serial to connect... */ while (i++ < 40) { if (stdio_usb_connected()) break; sleep_ms(50); } if (fw_settings->bootdelay > 0) sleep_ms(fw_settings->bootdelay * 1000); lfs_setup(false); read_config(fw_settings->safemode); #if TTL_SERIAL /* Initialize serial console if configured... */ if(cfg->serial_active && (!cfg->spi_active || !SPI_SHARED)) { stdio_uart_init_full(TTL_SERIAL_UART, TTL_SERIAL_SPEED, TX_PIN, RX_PIN); } #endif printf("\n\n"); #ifndef NDEBUG boot_reason(); #endif if (watchdog_enable_caused_reboot()) { printf("\n[Rebooted by watchdog]\n"); rebooted_by_watchdog = true; } printf("\n"); psram_setup(); /* Run "SYStem:VERsion?" command... */ cmd_version(NULL, NULL, 0, NULL); /* Run "SYStem:BOARD?" command... */ cmd_board(NULL, NULL, 0, NULL); printf("\n"); init_persistent_memory(); printf("\n"); if (fw_settings->safemode) printf("*** Booting into Safe Mode ***\n\n"); log_msg(LOG_NOTICE, "System starting..."); if (m->prev_uptime) { uptime_to_str(buf, sizeof(buf), m->prev_uptime, true); log_msg(LOG_NOTICE, "Uptime before last soft reset: %s", buf); uptime_to_str(buf, sizeof(buf), m->total_uptime, true); log_msg(LOG_NOTICE, "Uptime since cold boot: %s (soft reset count: %lu)", buf, m->warmstart); } /* Setup timezone */ if (strlen(cfg->timezone) > 1) { log_msg(LOG_NOTICE, "Set timezone: %s", cfg->timezone); update_persistent_memory_tz(cfg->timezone); setenv("TZ", cfg->timezone, 1); tzset(); } if (aon_timer_is_running()) { struct timespec ts; aon_timer_get_time(&ts); log_msg(LOG_NOTICE, "RTC clock time: %s", time_t_to_str(buf, sizeof(buf), timespec_to_time_t(&ts))); } setup_i2c_bus((struct fanpico_config *)cfg); display_init(); network_init(); /* Enable ADC */ log_msg(LOG_NOTICE, "Initialize ADC..."); adc_init(); adc_set_temp_sensor_enabled(true); if (SENSOR1_READ_PIN > 0) adc_gpio_init(SENSOR1_READ_PIN); if (SENSOR2_READ_PIN > 0) adc_gpio_init(SENSOR2_READ_PIN); /* Setup GPIO pins... */ log_msg(LOG_NOTICE, "Initialize GPIO..."); /* Initialize status LED... */ if (rp2_is_picow()) { /* On pico_w, LED is connected to the radio GPIO... */ #ifdef LIB_PICO_CYW43_ARCH cyw43_arch_lwip_begin(); cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, 0); cyw43_arch_lwip_end(); #endif } else { #if LED_PIN > 0 gpio_init(LED_PIN); gpio_set_dir(LED_PIN, GPIO_OUT); gpio_put(LED_PIN, 0); #endif } /* Configure PWM pins... */ setup_pwm_outputs(); setup_pwm_inputs(); for (i = 0; i < FAN_COUNT; i++) { set_pwm_duty_cycle(i, 0); } /* Configure Tacho pins... */ setup_tacho_outputs(); setup_tacho_inputs(); /* Configure 1-Wire pins... */ setup_onewire_bus(); log_msg(LOG_NOTICE, "System initialization complete."); } static void clear_state(struct fanpico_state *s) { int i; memset(s, 0, sizeof(struct fanpico_state)); for (i = 0; i < MBFAN_MAX_COUNT; i++) { s->mbfan_duty[i] = 0.0; s->mbfan_duty_prev[i] = 0.0; s->mbfan_freq[i] = 0.0; s->mbfan_freq_prev[i] = 0.0; } for (i = 0; i < FAN_MAX_COUNT; i++) { s->fan_duty[i] = 0.0; s->fan_duty_prev[i] = 0.0; s->fan_freq[i] = 0.0; s->fan_freq_prev[i] = 0.0; } for (i = 0; i < SENSOR_MAX_COUNT; i++) { s->temp[i] = 0.0; s->temp_prev[i] = 0.0; } for (i = 0; i < VSENSOR_MAX_COUNT; i++) { s->vtemp[i] = 0.0; s->vtemp_prev[i] = 0.0; s->vtemp_updated[i] = from_us_since_boot(0); s->vpressure[i] = -1.0; s->vhumidity[i] = -1.0; } } /* update_system_state() * System state gets updated by core1 periodically (using state_mutex) * to intermediate buffer transfer_state. * This function updates system state from that buffer. */ static void update_system_state() { if (mutex_enter_timeout_us(state_mutex, 1000)) { memcpy(&system_state, &transfer_state, sizeof(system_state)); mutex_exit(state_mutex); } else { log_msg(LOG_INFO, "update_system_state(): failed to get system_mutex"); } } static void update_outputs(struct fanpico_state *state, const struct fanpico_config *config) { int i; /* Update fan PWM signals */ for (i = 0; i < FAN_COUNT; i++) { float hyst = cfg->fans[i].pwm_hyst; state->fan_duty[i] = calculate_pwm_duty(state, config, i); if (check_for_change(state->fan_duty_prev[i], state->fan_duty[i], hyst)) { log_msg(LOG_INFO, "fan%d: Set output PWM %.1f%% --> %.1f%%", i+1, state->fan_duty_prev[i], state->fan_duty[i]); state->fan_duty_prev[i] = state->fan_duty[i]; set_pwm_duty_cycle(i, state->fan_duty[i]); } } /* Update mb tacho signals */ for (i = 0; i < MBFAN_COUNT; i++) { state->mbfan_freq[i] = calculate_tacho_freq(state, config, i); if (check_for_change(state->mbfan_freq_prev[i], state->mbfan_freq[i], 1.0)) { log_msg(LOG_INFO, "mbfan%d: Set output Tacho %.2fHz --> %.2fHz", i+1, state->mbfan_freq_prev[i], state->mbfan_freq[i]); state->mbfan_freq_prev[i] = state->mbfan_freq[i]; if (cfg->mbfans[i].rpm_mode == RMODE_TACHO) { set_tacho_output_freq(i, state->mbfan_freq[i]); } else { int rpm = state->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; bool lra = (rpm < cfg->mbfans[i].lra_treshold ? true : false); set_lra_output(i, cfg->mbfans[i].lra_invert ? !lra : lra); } } } } static void core1_main() { struct fanpico_config *config = &core1_config; struct fanpico_state *state = &core1_state; absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_temp, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_onewire_temp, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_tacho, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_poll_pwm, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_set_outputs, 0); absolute_time_t t_last, t_now, t_config, t_state; int onewire_delay = 5000; int64_t max_delta = 0; int64_t delta; log_msg(LOG_INFO, "core1: started..."); /* Allow core0 to pause this core... */ multicore_lockout_victim_init(); setup_tacho_input_interrupts(); t_state = t_config = t_last = get_absolute_time(); while (1) { t_now = get_absolute_time(); delta = absolute_time_diff_us(t_last, t_now); t_last = t_now; if (delta > max_delta) { max_delta = delta; log_msg(LOG_INFO, "core1: max_loop_time=%lld", max_delta); } /* Tachometer inputs from Fans */ read_tacho_inputs(); if (time_passed(&t_tacho, 1000)) { /* Calculate frequencies from input tachometer signals peridocially */ log_msg(LOG_DEBUG, "Updating tacho input signals."); update_tacho_input_freq(state); } /* PWM input signals (duty cycles) from "motherboard". */ get_pwm_duty_cycles(config); if (time_passed(&t_poll_pwm, 200)) { //log_msg(LOG_DEBUG, "Read PWM inputs"); for (int i = 0; i < MBFAN_COUNT; i++) { state->mbfan_duty[i] = roundf(mbfan_pwm_duty[i]); if (check_for_change(state->mbfan_duty_prev[i], state->mbfan_duty[i], 1.5)) { log_msg(LOG_INFO, "mbfan%d: Input PWM change %.1f%% --> %.1f%%", i+1, state->mbfan_duty_prev[i], state->mbfan_duty[i]); state->mbfan_duty_prev[i] = state->mbfan_duty[i]; } } } /* Read temperature sensors periodically */ if (time_passed(&t_temp, 2000)) { log_msg(LOG_DEBUG, "Read temperature sensors"); for (int i = 0; i < SENSOR_COUNT; i++) { state->temp[i] = get_temperature(i, config); if (check_for_change(state->temp_prev[i], state->temp[i], 0.5)) { log_msg(LOG_INFO, "sensor%d: Temperature change %.1fC --> %.1fC", i+1, state->temp_prev[i], state->temp[i]); state->temp_prev[i] = state->temp[i]; } } log_msg(LOG_DEBUG, "Update virtual sensors"); for (int i = 0; i < VSENSOR_COUNT; i++) { state->vtemp[i] = get_vsensor(i, config, state); if (check_for_change(state->vtemp_prev[i], state->vtemp[i], 0.5)) { log_msg(LOG_INFO, "vsensor%d: Temperature change %.1fC --> %.1fC", i+1, state->vtemp_prev[i], state->vtemp[i]); state->vtemp_prev[i] = state->vtemp[i]; } } } /* Read 1-Wire temperature sensors */ if (config->onewire_active && onewire_delay > 0) { if (time_passed(&t_onewire_temp, onewire_delay)) { onewire_delay = onewire_read_temps(config, state); } } if (time_passed(&t_set_outputs, 500)) { log_msg(LOG_DEBUG, "Updating output signals."); update_outputs(state, config); } if (time_passed(&t_config, 1000)) { /* Attempt to update config from core0 */ if (mutex_enter_timeout_us(config_mutex, 100)) { memcpy(config, cfg, sizeof(*config)); mutex_exit(config_mutex); } else { log_msg(LOG_DEBUG, "failed to get config_mutex"); } } if (time_passed(&t_state, 500)) { /* Attempt to update system state on core0 */ if (mutex_enter_timeout_us(state_mutex, 100)) { memcpy(&transfer_state, state, sizeof(transfer_state)); mutex_exit(state_mutex); } else { log_msg(LOG_DEBUG, "failed to get state_mutex"); } } } } int main() { absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_led, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_network, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_watchdog, 0); absolute_time_t t_now, t_last, t_display, t_ram, t_i2c_temp, t_led_start; uint8_t led_state = 0; int64_t max_delta = 0; int64_t led_max_delta = 0; int64_t delta; int c; int i_ptr = 0; int i2c_temp_delay = 1000; set_binary_info(&system_settings); clear_state(&system_state); clear_state(&transfer_state); #ifdef WIFI_SUPPORT memset(&network_state, 0, sizeof(network_state)); #endif /* Initialize MCU and other hardware... */ if (get_debug_level() >= 2) print_mallinfo(); setup(); if (get_debug_level() >= 2) print_mallinfo(); /* Start second core (core1)... */ memcpy(&core1_config, cfg, sizeof(core1_config)); memcpy(&core1_state, &system_state, sizeof(core1_state)); multicore_launch_core1(core1_main); #if WATCHDOG_ENABLED watchdog_enable(WATCHDOG_REBOOT_DELAY, 1); log_msg(LOG_NOTICE, "Watchdog enabled."); #endif t_last = get_absolute_time(); t_i2c_temp = t_ram = t_display = t_last; while (1) { t_now = get_absolute_time(); delta = absolute_time_diff_us(t_last, t_now); t_last = t_now; if (delta > max_delta) { max_delta = delta; log_msg(LOG_INFO, "core0: max_loop_time=%lld", max_delta); } if (time_passed(&t_network, 1)) { network_poll(); } if (time_passed(&t_ram, 1000)) { log_msg(LOG_DEBUG, "update persistent mem start"); update_persistent_memory(); //log_msg(LOG_DEBUG, "update persistent mem end"); } /* Toggle LED every 1000ms */ if (time_passed(&t_led, 1000)) { uint8_t old_led_state = led_state; if (cfg->led_mode == 0) { /* Slow blinking */ led_state = (led_state > 0 ? 0 : 1); } else if (cfg->led_mode == 1) { /* Always on */ led_state = 1; } else { /* Always off */ led_state = 0; } if (led_state != old_led_state) { log_msg(LOG_DEBUG, "toggle LED start: %u", led_state); t_led_start = get_absolute_time(); if (rp2_is_picow()) { #ifdef LIB_PICO_CYW43_ARCH cyw43_arch_lwip_begin(); cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, led_state); cyw43_arch_lwip_end(); #endif } else { #if LED_PIN > 0 gpio_put(LED_PIN, led_state); #endif } t_now = get_absolute_time(); log_msg(LOG_DEBUG, "toggle LED end"); delta = absolute_time_diff_us(t_led_start, t_now); if (delta > led_max_delta) { led_max_delta = delta; log_msg(LOG_INFO, "core0: max_led_gpio_time=%lld", led_max_delta); } } } /* Update display every 1000ms */ if (time_passed(&t_display, 1000)) { log_msg(LOG_DEBUG, "update display start"); update_system_state(); display_status(fanpico_state, cfg); log_msg(LOG_DEBUG, "update display end"); } /* Poll I2C Temperature Sensors */ if (i2c_temp_delay > 0 && time_passed(&t_i2c_temp, i2c_temp_delay)) { //log_msg(LOG_DEBUG, "I2C sensor poll start"); i2c_temp_delay = i2c_read_temps((struct fanpico_config*)cfg); //log_msg(LOG_DEBUG, "I2C sensor poll end"); } /* Process any (user) input */ while ((c = getchar_timeout_us(0)) != PICO_ERROR_TIMEOUT) { //log_msg(LOG_DEBUG, "character received: %02x", c); if (c == 0xff || c == 0x00) continue; if (c == 0x7f || c == 0x08) { if (i_ptr > 0) i_ptr--; if (cfg->local_echo) printf("\b \b"); continue; } if (c == 10 || c == 13 || i_ptr >= sizeof(input_buf) - 1) { if (cfg->local_echo) printf("\r\n"); input_buf[i_ptr] = 0; if (i_ptr > 0) { log_msg(LOG_DEBUG,"user command start"); update_system_state(); process_command(fanpico_state, (struct fanpico_config *)cfg, input_buf); log_msg(LOG_DEBUG,"user command end"); i_ptr = 0; } continue; } input_buf[i_ptr++] = c; if (cfg->local_echo) printf("%c", c); } if (time_passed(&t_watchdog, 1000)) { #if WATCHDOG_ENABLED log_msg(LOG_DEBUG,"watchdog update"); watchdog_update(); #endif } } } /* eof :-) */ ================================================ FILE: src/fanpico.h ================================================ /* fanpico.h Copyright (C) 2021-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef FANPICO_H #define FANPICO_H 1 #include "config.h" #include "log.h" #include #include "pico/mutex.h" #ifdef LIB_PICO_CYW43_ARCH #define WIFI_SUPPORT 1 #include "lwip/ip_addr.h" #include "lwip/apps/sntp.h" #endif #ifndef FANPICO_MODEL #error unknown board model #endif #define FAN_MAX_COUNT 8 /* Max number of Fan outputs on the board */ #define MBFAN_MAX_COUNT 4 /* Max number of (Motherboard) Fan inputs on the board */ #define SENSOR_MAX_COUNT 3 /* Max number of sensor inputs on the board */ #define VSENSOR_MAX_COUNT 8 /* Max number of virtual sensors */ #define VSENSOR_SOURCE_MAX_COUNT 8 #define VSENSOR_COUNT 8 #define ONEWIRE_MAX_COUNT 8 #define SENSOR_SERIES_RESISTANCE 10000.0 #define ADC_REF_VOLTAGE 3.0 #define FAN_TACHO_HYSTERESIS 1.0 #define FAN_PWM_HYSTERESIS 1.0 #define ADC_MAX_VALUE (1 << 12) #define ADC_AVG_WINDOW 10 #define MAX_NAME_LEN 64 #define MAX_MAP_POINTS 32 #define MAX_GPIO_PINS 32 #define WIFI_SSID_MAX_LEN 32 #define WIFI_PASSWD_MAX_LEN 64 #define WIFI_COUNTRY_MAX_LEN 3 #define MQTT_MAX_TOPIC_LEN 48 #define MQTT_MAX_USERNAME_LEN 80 #define MQTT_MAX_PASSWORD_LEN 64 #define DEFAULT_MQTT_STATUS_INTERVAL 600 #define DEFAULT_MQTT_TEMP_INTERVAL 60 #define DEFAULT_MQTT_RPM_INTERVAL 60 #define DEFAULT_MQTT_DUTY_INTERVAL 60 #define HTTP_SERVER_DEFAULT_PORT 80 #define HTTPS_SERVER_DEFAULT_PORT 443 #define TELNET_MAX_ACL_ENTRIES 4 #define SSH_MAX_ACL_ENTRIES 4 #define SSH_MAX_PUB_KEYS 4 #define MAX_USERNAME_LEN 16 #define MAX_PWHASH_LEN 128 #ifdef NDEBUG #define WATCHDOG_ENABLED 1 #define WATCHDOG_REBOOT_DELAY 8000 #endif #ifndef I2C_DEFAULT_SPEED #define I2C_DEFAULT_SPEED 1000000L /* Default I2C bus frequency 1MHz */ #endif #ifndef SPI_DEFAULT_SPEED #define SPI_DEFAULT_SPEED 30000000L /* Default SPI bus frequency 30MHz */ #endif #define FANPICO_FS_SIZE (256*1024) #define FANPICO_FS_OFFSET (PICO_FLASH_SIZE_BYTES - FANPICO_FS_SIZE) enum pwm_source_types { PWM_FIXED = 0, /* Fixed speed set by s_id */ PWM_MB = 1, /* Mb pwm signal */ PWM_SENSOR = 2, /* Sensor signal */ PWM_FAN = 3, /* Another fan */ PWM_VSENSOR = 4, /* Virtual sensor */ }; #define PWM_SOURCE_ENUM_MAX 4 enum signal_filter_types { FILTER_NONE = 0, /* No filtering */ FILTER_LOSSYPEAK = 1, /* "Lossy Peak Detector" with time decay */ FILTER_SMA = 2, /* Simple moving average */ }; #define FILTER_ENUM_MAX 2 enum tacho_source_types { TACHO_FIXED = 0, /* Fixed speed set by s_id */ TACHO_FAN = 1, /* Fan tacho signal */ TACHO_MIN = 2, /* Slowest tacho signal from a group of fans. */ TACHO_MAX = 3, /* Fastest tacho signal from a group of fans. */ TACHO_AVG = 4, /* Average tacho signal from a group of fans. */ }; #define TACHO_ENUM_MAX 4 enum temp_sensor_types { TEMP_INTERNAL = 0, TEMP_EXTERNAL = 1, }; #define TEMP_ENUM_MAX 1 enum vsensor_modes { VSMODE_MANUAL = 0, VSMODE_MAX = 1, VSMODE_MIN = 2, VSMODE_AVG = 3, VSMODE_DELTA = 4, VSMODE_ONEWIRE = 5, VSMODE_I2C = 6, }; #define VSMODE_ENUM_MAX 6 enum rpm_modes { RMODE_TACHO = 0, /* Normal Tachometer signal */ RMODE_LRA = 1, /* Locked Rotor Alarm signal */ }; #define RPMMODE_ENUM_MAX 1 #ifdef WIFI_SUPPORT typedef struct acl_entry_t { ip_addr_t ip; uint8_t prefix; } acl_entry_t; #endif struct ssh_public_key { char username[MAX_USERNAME_LEN + 1]; char type[32 + 1]; char name[32 + 1]; uint8_t pubkey[128]; uint16_t pubkey_size; }; struct pwm_map { uint8_t points; uint8_t pwm[MAX_MAP_POINTS][2]; }; struct tacho_map { uint8_t points; uint16_t tacho[MAX_MAP_POINTS][2]; }; struct temp_map { uint8_t points; float temp[MAX_MAP_POINTS][2]; }; struct fan_output { char name[MAX_NAME_LEN]; float tacho_hyst; float pwm_hyst; /* output PWM signal settings */ uint8_t min_pwm; uint8_t max_pwm; float pwm_coefficient; enum pwm_source_types s_type; uint16_t s_id; struct pwm_map map; enum signal_filter_types filter; void *filter_ctx; /* input Tacho signal settings */ uint8_t rpm_mode; uint8_t rpm_factor; uint16_t lra_low; uint16_t lra_high; }; struct mb_input { char name[MAX_NAME_LEN]; /* output Tacho signal settings */ uint8_t rpm_mode; uint16_t min_rpm; uint16_t max_rpm; float rpm_coefficient; uint8_t rpm_factor; uint16_t lra_treshold; bool lra_invert; enum tacho_source_types s_type; uint16_t s_id; uint8_t sources[FAN_MAX_COUNT]; struct tacho_map map; /* input PWM signal settings */ enum signal_filter_types filter; void *filter_ctx; }; struct sensor_input { enum temp_sensor_types type; char name[MAX_NAME_LEN]; float thermistor_nominal; float temp_nominal; float beta_coefficient; float temp_offset; float temp_coefficient; struct temp_map map; enum signal_filter_types filter; void *filter_ctx; }; struct vsensor_input { char name[MAX_NAME_LEN]; uint8_t mode; float default_temp; int32_t timeout; uint8_t sensors[VSENSOR_SOURCE_MAX_COUNT]; uint64_t onewire_addr; uint8_t i2c_type; uint8_t i2c_addr; struct temp_map map; enum signal_filter_types filter; void *filter_ctx; }; struct fanpico_config { struct sensor_input sensors[SENSOR_MAX_COUNT]; struct vsensor_input vsensors[VSENSOR_MAX_COUNT]; struct fan_output fans[FAN_MAX_COUNT]; struct mb_input mbfans[MBFAN_MAX_COUNT]; bool local_echo; uint8_t led_mode; char display_type[64]; char display_theme[16]; char display_logo[16]; char display_layout_r[64]; char name[32]; char timezone[64]; bool spi_active; bool serial_active; bool onewire_active; uint32_t i2c_speed; float adc_vref; #ifdef WIFI_SUPPORT char wifi_ssid[WIFI_SSID_MAX_LEN + 1]; char wifi_passwd[WIFI_PASSWD_MAX_LEN + 1]; char wifi_country[WIFI_COUNTRY_MAX_LEN + 1]; char wifi_auth_mode[16]; uint8_t wifi_mode; char hostname[32]; ip_addr_t dns_servers[DNS_MAX_SERVERS]; bool syslog_active; ip_addr_t syslog_server; bool ntp_active; ip_addr_t ntp_servers[SNTP_MAX_SERVERS]; ip_addr_t ip; ip_addr_t netmask; ip_addr_t gateway; char mqtt_server[32]; uint16_t mqtt_port; bool mqtt_tls; bool mqtt_allow_scpi; char mqtt_user[MQTT_MAX_USERNAME_LEN + 1]; char mqtt_pass[MQTT_MAX_PASSWORD_LEN + 1]; char mqtt_status_topic[MQTT_MAX_TOPIC_LEN + 1]; uint32_t mqtt_status_interval; char mqtt_cmd_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_resp_topic[MQTT_MAX_TOPIC_LEN + 1]; uint16_t mqtt_temp_mask; uint16_t mqtt_vtemp_mask; uint16_t mqtt_vhumidity_mask; uint16_t mqtt_vpressure_mask; uint16_t mqtt_fan_rpm_mask; uint16_t mqtt_fan_duty_mask; uint16_t mqtt_mbfan_rpm_mask; uint16_t mqtt_mbfan_duty_mask; char mqtt_temp_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_vtemp_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_vhumidity_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_vpressure_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_fan_rpm_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_fan_duty_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_mbfan_rpm_topic[MQTT_MAX_TOPIC_LEN + 1]; char mqtt_mbfan_duty_topic[MQTT_MAX_TOPIC_LEN + 1]; uint32_t mqtt_temp_interval; uint32_t mqtt_vsensor_interval; uint32_t mqtt_rpm_interval; uint32_t mqtt_duty_interval; char mqtt_ha_discovery_prefix[32 + 1]; bool telnet_active; bool telnet_auth; bool telnet_raw_mode; uint16_t telnet_port; char telnet_user[MAX_USERNAME_LEN + 1]; char telnet_pwhash[MAX_PWHASH_LEN + 1]; acl_entry_t telnet_acls[TELNET_MAX_ACL_ENTRIES]; bool snmp_active; char snmp_community[SNMP_MAX_COMMUNITY_STR_LEN + 1]; char snmp_community_write[SNMP_MAX_COMMUNITY_STR_LEN + 1]; char snmp_contact[32 + 1]; char snmp_location[32 + 1]; char snmp_community_trap[SNMP_MAX_COMMUNITY_STR_LEN + 1]; bool snmp_auth_traps; ip_addr_t snmp_trap_dst; bool ssh_active; bool ssh_auth; uint16_t ssh_port; char ssh_user[MAX_USERNAME_LEN + 1]; char ssh_pwhash[MAX_PWHASH_LEN + 1]; struct ssh_public_key ssh_pub_keys[SSH_MAX_PUB_KEYS]; acl_entry_t ssh_acls[SSH_MAX_ACL_ENTRIES]; bool http_active; uint16_t http_port; uint16_t https_port; uint16_t http_fan_mask; uint16_t http_mbfan_mask; uint16_t http_sensor_mask; uint16_t http_vsensor_mask; #endif /* Non-config items */ float vtemp[VSENSOR_MAX_COUNT]; float vhumidity[VSENSOR_MAX_COUNT]; float vpressure[VSENSOR_MAX_COUNT]; absolute_time_t vtemp_updated[VSENSOR_MAX_COUNT]; void *i2c_context[VSENSOR_MAX_COUNT]; }; /* Firmware settings that can be modified with picotool */ struct fanpico_fw_settings { bool safemode; /* Safe mode disables loading saved configuration during boot. */ int bootdelay; /* Delay (seconds) after initializing USB console during boot. */ int sysclock; /* Set system clock in MHz (overclocking) */ }; #if WIFI_SUPPORT struct fanpico_network_state { ip_addr_t ip; ip_addr_t netmask; ip_addr_t gateway; ip_addr_t syslog_server; ip_addr_t ntp_servers[SNTP_MAX_SERVERS]; ip_addr_t dns_servers[DNS_MAX_SERVERS]; uint8_t mac[6]; char hostname[32]; bool netif_up; int wifi_status; absolute_time_t wifi_status_change; }; #endif struct fanpico_state { /* inputs */ float mbfan_duty[MBFAN_MAX_COUNT]; float mbfan_duty_prev[MBFAN_MAX_COUNT]; float fan_freq[FAN_MAX_COUNT]; float fan_freq_prev[FAN_MAX_COUNT]; float temp[SENSOR_MAX_COUNT]; float temp_prev[SENSOR_MAX_COUNT]; float vtemp[VSENSOR_MAX_COUNT]; float vhumidity[VSENSOR_MAX_COUNT]; float vpressure[VSENSOR_MAX_COUNT]; absolute_time_t vtemp_updated[VSENSOR_MAX_COUNT]; float vtemp_prev[VSENSOR_MAX_COUNT]; float onewire_temp[ONEWIRE_MAX_COUNT]; absolute_time_t onewire_temp_updated[VSENSOR_MAX_COUNT]; float prev_onewire_temp[ONEWIRE_MAX_COUNT]; /* outputs */ float fan_duty[FAN_MAX_COUNT]; float fan_duty_prev[FAN_MAX_COUNT]; float mbfan_freq[MBFAN_MAX_COUNT]; float mbfan_freq_prev[MBFAN_MAX_COUNT]; }; /* Memory structure that persists over soft resets */ struct persistent_memory_block { uint32_t id; uint32_t len; struct timespec saved_time; uint64_t uptime; uint64_t prev_uptime; uint64_t total_uptime; uint32_t warmstart; char timezone[64]; uint32_t crc32; }; /* fanpico.c */ extern struct persistent_memory_block *persistent_mem; extern const struct fanpico_state *fanpico_state; #if WIFI_SUPPORT extern struct fanpico_network_state *net_state; #endif extern bool rebooted_by_watchdog; extern mutex_t *state_mutex; void update_display_state(); void update_persistent_memory(); void update_persistent_memory_tz(const char *tz); /* bi_decl.c */ void set_binary_info(struct fanpico_fw_settings *settings); /* command.c */ void process_command(const struct fanpico_state *state, struct fanpico_config *config, char *command); int last_command_status(); /* config.c */ extern mutex_t *config_mutex; extern const struct fanpico_config *cfg; int str2pwm_source(const char *s); const char* pwm_source2str(enum pwm_source_types source); int str2vsmode(const char *s); const char* vsmode2str(enum vsensor_modes mode); int str2rpm_mode(const char *s); const char* rpm_mode2str(enum rpm_modes mode); int valid_pwm_source_ref(enum pwm_source_types source, uint16_t s_id); int str2tacho_source(const char *s); const char* tacho_source2str(enum tacho_source_types source); int valid_tacho_source_ref(enum tacho_source_types source, uint16_t s_id); void read_config(bool use_default_config); void save_config(); void delete_config(); void print_config(); void upload_config(); /* display.c */ void display_init(); void clear_display(); void display_message(int rows, const char **text_lines); void display_status(const struct fanpico_state *state, const struct fanpico_config *config); /* display_lcd.c */ void lcd_display_init(); void lcd_clear_display(); void lcd_display_status(const struct fanpico_state *state,const struct fanpico_config *conf); void lcd_display_message(int rows, const char **text_lines); /* display_oled.c */ void oled_display_init(); void oled_clear_display(); void oled_display_status(const struct fanpico_state *state, const struct fanpico_config *conf); void oled_display_message(int rows, const char **text_lines); /* flash.h */ void lfs_setup(bool multicore); int flash_format(bool multicore); int flash_read_file(char **bufptr, uint32_t *sizeptr, const char *filename); int flash_write_file(const char *buf, uint32_t size, const char *filename); int flash_delete_file(const char *filename); int flash_rename_file(const char *oldname, const char *newname); int flash_copy_file(const char *srcname, const char *dstname, bool overwrite); int flash_file_size(const char *filename); int flash_get_fs_info(size_t *size, size_t *free, size_t *files, size_t *directories, size_t *filesizetotal); int flash_list_directory(const char *path, bool recursive); void print_rp2040_flashinfo(); /* network.c */ #if WIFI_SUPPORT bool wifi_get_auth_type(const char *name, uint32_t *type); const char* wifi_auth_type_name(uint32_t type); const char* wifi_link_status_text(int status); void set_pico_system_time(long unsigned int sec); void wifi_status(); void wifi_info_display(); void wifi_rejoin(); void wifi_mac(); #endif void network_init(); void network_poll(); const char *network_ip(); #if WIFI_SUPPORT /* httpd.c */ u16_t fanpico_ssi_handler(const char *tag, char *insert, int insertlen, u16_t current_tag_part, u16_t *next_tag_part); /* mqtt.c */ void fanpico_setup_mqtt_client(); int fanpico_mqtt_client_active(); void fanpico_mqtt_reconnect(); void fanpico_mqtt_publish(); void fanpico_mqtt_publish_temp(); void fanpico_mqtt_publish_vsensor(); void fanpico_mqtt_publish_rpm(); void fanpico_mqtt_publish_duty(); void fanpico_mqtt_scpi_command(); /* telnetd.c */ void telnetserver_init(); void telnetserver_disconnect(); void telnetserver_who(); /* sshd.c */ void sshserver_init(); void sshserver_disconnect(); void sshserver_who(); /* ssh_util.c */ void ssh_list_pkeys(); int ssh_create_pkey(const char* args); int ssh_delete_pkey(const char* args); int ssh_get_pkey(int index, char** buf_ptr, uint32_t* buf_size_ptr, const char** name_ptr); #if WIFI_SUPPORT int str_to_ssh_pubkey(const char *s, struct ssh_public_key *pk); const char* ssh_pubkey_to_str(const struct ssh_public_key *pk, char *s, size_t s_len); #endif /* snmp.c */ void fanpico_snmp_init(); void fanpico_snmp_startup_trap(bool warmstart); #endif /* onewire.c */ void setup_onewire_bus(); int onewire_read_temps(struct fanpico_config *config, struct fanpico_state *state); uint64_t onewire_address(uint sensor); /* i2c.c */ void scan_i2c_bus(); void display_i2c_status(); void setup_i2c_bus(struct fanpico_config *config); int i2c_read_temps(struct fanpico_config *config); /* tls.c */ int read_pem_file(char *buf, uint32_t size, uint32_t timeout, bool append); #ifdef WIFI_SUPPORT struct altcp_tls_config* tls_server_config(); #endif /* pwm.c */ extern float mbfan_pwm_duty[MBFAN_MAX_COUNT]; void setup_pwm_inputs(); void setup_pwm_outputs(); void set_pwm_duty_cycle(uint fan, float duty); float get_pwm_duty_cycle(uint fan); void get_pwm_duty_cycles(const struct fanpico_config *config); double pwm_map(const struct pwm_map *map, double val); double calculate_pwm_duty(struct fanpico_state *state, const struct fanpico_config *config, int i); /* filters.c */ int str2filter(const char *s); const char* filter2str(enum signal_filter_types source); void* filter_parse_args(enum signal_filter_types filter, char *args); char* filter_print_args(enum signal_filter_types filter, void *ctx); float filter(enum signal_filter_types filter, void *ctx, float input); /* sensors.c */ double get_temperature(uint8_t input, const struct fanpico_config *config); double sensor_get_duty(const struct temp_map *map, double temp); double get_vsensor(uint8_t i, struct fanpico_config *config, struct fanpico_state *state); /* tacho.c */ void setup_tacho_inputs(); void setup_tacho_input_interrupts(); void setup_tacho_outputs(); void read_tacho_inputs(); void update_tacho_input_freq(struct fanpico_state *state); void set_tacho_output_freq(uint fan, double frequency); void set_lra_output(uint fan, bool lra); double tacho_map(const struct tacho_map *map, double val); double calculate_tacho_freq(struct fanpico_state *state, const struct fanpico_config *config, int i); /* log.c */ int str2log_priority(const char *pri); const char* log_priority2str(int pri); int str2log_facility(const char *facility); const char* log_facility2str(int facility); void log_msg(int priority, const char *format, ...); int get_debug_level(); void set_debug_level(int level); int get_log_level(); void set_log_level(int level); int get_syslog_level(); void set_syslog_level(int level); void debug(int debug_level, const char *fmt, ...); /* util.c */ void print_mallinfo(); char *trim_str(char *s); int str_to_int(const char *str, int *val, int base); int str_to_float(const char *str, float *val); time_t timespec_to_time_t(const struct timespec *ts); struct timespec* time_t_to_timespec(time_t t, struct timespec *ts); char* time_t_to_str(char *buf, size_t size, const time_t t); char* uptime_to_str(char *buf, size_t size, uint64_t uptime, bool show_secs); bool str_to_time_t(const char *str, time_t *t); bool rtc_get_tm(struct tm *tm); bool rtc_get_time(time_t *t); int check_for_change(double oldval, double newval, double threshold); int64_t pow_i64(int64_t x, uint8_t y); double round_decimal(double val, unsigned int decimal); char* base64encode_raw(const void *input, size_t input_len); int base64decode_raw(const void *input, size_t input_len, void **output); char* base64encode(const char *input); char* base64decode(const char *input); char *strncopy(char *dst, const char *src, size_t size); char *strncatenate(char *dst, const char *src, size_t size); int clamp_int(int val, int min, int max); void* memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen); char *bitmask_to_str(uint32_t mask, uint16_t len, uint8_t base, bool range); int str_to_bitmask(const char *str, uint16_t len, uint32_t *mask, uint8_t base); /* util_rp2.c */ uint32_t get_stack_pointer(); uint32_t get_stack_free(); void print_rp2_meminfo(); void print_irqinfo(); #if PICO_SDK_VERSION_MAJOR < 2 void watchdog_disable(); #endif const char *rp2_model_str(); const char *pico_serial_str(); int time_passed(absolute_time_t *t, uint32_t ms); int time_elapsed(absolute_time_t t, uint32_t ms); int getstring_timeout_ms(char *str, uint32_t maxlen, uint32_t timeout); float get_rp2_dvdd(); void print_rp2_board_info(); void print_psram_info(); void rp2_memtest(); void rp2_set_sys_clock(uint32_t khz); int rp2_is_picow(); /* crc32.c */ unsigned int xcrc32 (const unsigned char *buf, int len, unsigned int init); #endif /* FANPICO_H */ ================================================ FILE: src/fanpico_fsdata.c ================================================ #include "lwip/apps/fs.h" #include "lwip/def.h" #define file_NULL (struct fsdata_file *) NULL #ifndef FS_FILE_FLAGS_HEADER_INCLUDED #define FS_FILE_FLAGS_HEADER_INCLUDED 1 #endif #ifndef FS_FILE_FLAGS_HEADER_PERSISTENT #define FS_FILE_FLAGS_HEADER_PERSISTENT 0 #endif /* FSDATA_FILE_ALIGNMENT: 0=off, 1=by variable, 2=by include */ #ifndef FSDATA_FILE_ALIGNMENT #define FSDATA_FILE_ALIGNMENT 0 #endif #ifndef FSDATA_ALIGN_PRE #define FSDATA_ALIGN_PRE #endif #ifndef FSDATA_ALIGN_POST #define FSDATA_ALIGN_POST #endif #if FSDATA_FILE_ALIGNMENT==2 #include "fsdata_alignment.h" #endif #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__img_fanpico_icon_png = 0; #endif static const unsigned char FSDATA_ALIGN_PRE data__img_fanpico_icon_png[] FSDATA_ALIGN_POST = { /* /img/fanpico-icon.png (22 chars) */ 0x2f,0x69,0x6d,0x67,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2d,0x69,0x63,0x6f, 0x6e,0x2e,0x70,0x6e,0x67,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Content-Length: 7504 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x37,0x35,0x30,0x34,0x0d,0x0a, /* "Last-Modified: Sat, 25 Feb 2023 22:57:51 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x61,0x74,0x2c,0x20,0x32,0x35,0x20,0x46,0x65,0x62,0x20,0x32,0x30,0x32,0x33,0x20, 0x32,0x32,0x3a,0x35,0x37,0x3a,0x35,0x31,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Content-Type: image/png " (27 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x0d,0x0a,0x0d,0x0a, /* raw file data (7504 bytes) */ 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, 0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x40,0x08,0x06,0x00,0x00,0x00,0xaa,0x69,0x71, 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b, 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x1d,0x02,0x49,0x44,0x41,0x54,0x78,0x9c, 0xed,0x9b,0x69,0x98,0x1c,0xe5,0x75,0xef,0x7f,0xe7,0xad,0xaa,0x5e,0xa7,0x67,0xa6, 0x67,0xd3,0x68,0x16,0x49,0x83,0x04,0x12,0x12,0x68,0x65,0xb5,0x85,0xc1,0x78,0x03, 0x64,0xbc,0x62,0xe7,0x1a,0x87,0xc7,0x8e,0xf1,0xc5,0x89,0xd7,0x38,0xf1,0x82,0xe3, 0x38,0x5c,0xdb,0x71,0x4c,0x92,0x6b,0x1b,0x6f,0xd7,0x89,0xed,0x04,0x27,0xac,0x06, 0x63,0x5f,0x0c,0x06,0x89,0x5d,0x20,0xb1,0x4b,0x20,0x90,0x84,0xf6,0x6d,0xa4,0x91, 0x46,0x9a,0xad,0x67,0x7a,0xba,0xbb,0xb6,0xf7,0xe4,0x43,0xb5,0x16,0x40,0x37,0xb6, 0x2f,0xf0,0xf8,0x43,0xf2,0xf6,0x53,0x4f,0xcf,0xf4,0x54,0x57,0x9d,0xf3,0x3f,0xdb, 0xff,0x9c,0xb7,0x46,0x54,0x95,0xff,0xca,0xcb,0xfc,0xa1,0x05,0xf8,0x43,0xaf,0xff, 0x06,0xe0,0x0f,0x2d,0xc0,0x1f,0x7a,0xb9,0xb7,0xd9,0xdb,0xd9,0x74,0x60,0x33,0x9d, 0x4d,0x53,0xa8,0x69,0x8d,0xc1,0x83,0x07,0x69,0xca,0x37,0x31,0x3c,0x36,0x4c,0x57, 0xf3,0x54,0xc6,0xc6,0xc6,0xe8,0xcc,0x4d,0x61,0x60,0x60,0x80,0xb9,0x27,0xce,0x65, 0xc3,0xb6,0x0d,0xcc,0x38,0xb9,0x8f,0x71,0x3b,0x41,0xa1,0xb1,0x81,0xa0,0x1a,0xd0, 0x99,0xeb,0xa4,0x12,0x55,0x48,0x49,0x8a,0x06,0xa7,0x21,0x7b,0x28,0x38,0x94,0x19, 0x1c,0x3b,0xd8,0x98,0x36,0xa9,0xa6,0x9a,0x5f,0x6b,0x41,0xa5,0x63,0xa4,0x3c,0x72, 0xca,0x58,0x69,0xb4,0xaf,0xff,0xe0,0xde,0x36,0x2c,0xcd,0x13,0xfe,0xb8,0x3b,0x5e, 0x9e,0xe8,0xf0,0x83,0x9a,0xbb,0x68,0xce,0xe2,0x95,0xe7,0x9e,0x72,0xee,0x9d,0xfd, 0xc3,0x7b,0xa6,0x86,0x1a,0xcd,0xda,0x3f,0x7e,0xa0,0xbd,0x5c,0x99,0x48,0x9f,0x32, 0xef,0x94,0x7b,0xce,0x6c,0x3b,0xfd,0xfb,0x55,0xad,0xf2,0x5a,0xa5,0x2a,0xb9,0x35, 0xfe,0x15,0xdb,0x0e,0x6d,0xe7,0x84,0x29,0x7d,0x04,0x04,0x0c,0x0e,0x1f,0xa2,0xad, 0xb9,0x95,0xe1,0xb1,0x61,0xfa,0x5a,0x67,0x30,0x34,0x3a,0x4c,0x47,0xaa,0x9d,0x6d, 0x5b,0xb6,0x3a,0xed,0xad,0xed,0x4d,0xcf,0x6d,0x7e,0xae,0xd0,0x38,0xb5,0x29,0x37, 0x61,0xcb,0x05,0x75,0x6c,0x43,0xad,0x5a,0xeb,0xad,0x96,0xab,0x27,0x57,0xfc,0xea, 0x8c,0x89,0xc9,0x89,0xde,0xd2,0x44,0x69,0xe1,0xd0,0xe8,0x50,0x6e,0x74,0x6c,0x94, 0x58,0x63,0xc8,0x42,0x6d,0xac,0x46,0x79,0x64,0x0c,0x50,0x50,0x07,0x34,0x06,0x15, 0xc0,0x41,0x54,0xd0,0x20,0x44,0x5c,0x0f,0x2d,0x00,0x5b,0x42,0xe8,0x70,0x70,0x73, 0x29,0xdc,0x31,0xc3,0xd7,0x7f,0xf8,0x8d,0xf3,0x4e,0x2c,0x9e,0xb8,0x72,0x2c,0x1c, 0x7b,0x4d,0x00,0x70,0x5b,0x4d,0x2b,0x03,0x85,0x03,0xe9,0xfd,0xa3,0x07,0xa6,0x97, 0xab,0xe3,0x0d,0xfd,0x7b,0xf7,0x16,0xf6,0x98,0x74,0x4f,0xff,0xde,0xfe,0xee,0xd5, 0xfe,0x23,0x9d,0x63,0xe3,0xa5,0x13,0x6a,0x93,0xd5,0xce,0x52,0x65,0xbc,0xc7,0x8f, 0xfc,0xe2,0x78,0x65,0x3c,0x57,0x8d,0x6a,0x58,0xb5,0x04,0x71,0x00,0x0e,0x84,0x1a, 0x42,0x29,0x84,0x09,0xa0,0xdd,0xa5,0xb9,0xa9,0x48,0xae,0x21,0x7f,0x28,0x6d,0x52, 0x03,0xfe,0x88,0x9f,0x9d,0x35,0x7d,0xd6,0x53,0x3a,0x43,0xdb,0xf6,0x3c,0xb7,0x6b, 0xde,0xe8,0xc6,0xa1,0x1e,0x06,0x80,0x22,0xd0,0x02,0xea,0x59,0xa8,0x92,0x80,0xd0, 0xe7,0x61,0x32,0x29,0xbc,0x11,0x2f,0x6c,0xcb,0xb4,0x3d,0xb2,0xf7,0x81,0xdd,0xe7, 0x97,0x4a,0xa5,0x2b,0x7a,0xdb,0x7a,0x57,0xe2,0xbc,0x36,0x2e,0xe0,0x6e,0x38,0xb8, 0xf1,0x2d,0xdf,0xfb,0xf7,0x6b,0xae,0xdf,0xfe,0xdc,0xd6,0x0e,0xaa,0x16,0x3c,0x60, 0x12,0x90,0xfa,0x19,0x39,0x20,0x0d,0xe4,0x5d,0x8c,0xeb,0x20,0xa1,0xa0,0x81,0x22, 0xae,0x60,0x8c,0xc1,0x96,0x2d,0xec,0x0f,0xf1,0xbc,0x34,0x3d,0x0b,0x7a,0x7f,0xbd, 0xf4,0xa2,0x73,0xff,0x21,0x0a,0xc2,0x67,0x5a,0xfb,0x5a,0x2b,0x2b,0xae,0xba,0xeb, 0x9e,0xe1,0x9b,0x06,0xe7,0xb4,0x7e,0x65,0xde,0x86,0x77,0x7d,0xe9,0xbd,0xdf,0x7c, 0xf8,0xfe,0x87,0x4c,0xf4,0x8e,0xe8,0x3d,0x8f,0xfd,0x66,0xf5,0x55,0x07,0x96,0x0f, 0x9c,0xc2,0x78,0x84,0xf4,0x78,0xd0,0x64,0x20,0x06,0x1d,0x8c,0x31,0x53,0xd2,0xc8, 0x28,0xde,0x68,0x34,0x7a,0x1e,0x97,0x0a,0x7e,0xa9,0x96,0x75,0x10,0x5c,0x9c,0xd7, 0x04,0x00,0xe7,0x85,0xb6,0x4d,0x6b,0x76,0xde,0xbc,0xb5,0x35,0x37,0xbd,0xe1,0x07, 0xa9,0x42,0x6e,0x4b,0xb8,0xb3,0x36,0x9f,0x46,0x83,0xd7,0x9b,0x23,0xd3,0x9d,0xc3, 0x14,0x52,0x78,0xa9,0x34,0xaa,0x60,0x27,0x2d,0x5a,0x8e,0xd1,0xd8,0xa2,0x22,0xd8, 0x91,0x1a,0xba,0x33,0xe2,0x84,0xd3,0x66,0xae,0xbc,0xf0,0x43,0x6f,0x7f,0xc7,0xcc, 0x05,0xb3,0xbe,0x9b,0x4b,0x67,0xfb,0x3d,0x93,0x0a,0x97,0x4e,0x3f,0x87,0x67,0xd6, 0xac,0xf9,0xe3,0xdd,0x0f,0xee,0x5a,0x7c,0x28,0x3d,0xb4,0x78,0xfe,0xc5,0x0b,0xfe, 0xde,0x71,0x5d,0x6d,0x6a,0x6a,0xde,0x78,0xfa,0x5b,0xcf,0xf8,0x11,0xd3,0xc8,0xf6, 0xaf,0xdf,0xb3,0x54,0x06,0x15,0x62,0x81,0x06,0x41,0x5c,0x43,0x1c,0xc7,0xe0,0x82, 0x51,0x23,0xd1,0x70,0xc8,0x29,0x8b,0x4f,0xdd,0x72,0xee,0x8c,0x73,0x6f,0xf6,0xf1, 0xf1,0xf0,0x48,0xbd,0xca,0x2f,0x53,0xda,0x36,0xd6,0xc8,0x24,0xcc,0x5c,0x7a,0xd2, 0xa7,0xba,0x67,0x76,0x5d,0xc6,0x01,0x20,0x70,0x88,0x9c,0x88,0xca,0xde,0x0a,0xfe, 0xed,0x65,0xfc,0x27,0xaa,0x38,0x69,0x07,0xe3,0x1a,0x70,0x0c,0xd2,0xe8,0x42,0x39, 0x80,0x18,0xde,0xfc,0xf1,0xb7,0x7d,0xf9,0xfd,0x9f,0xfd,0xe0,0x79,0xc5,0xa9,0xad, 0xcf,0x8f,0x8d,0x96,0x18,0x1e,0x1b,0xa1,0x77,0x4a,0x2f,0x33,0xb3,0x33,0xf9,0xe4, 0xd7,0x3f,0xf3,0x3e,0x16,0x41,0xf9,0xa9,0x52,0x71,0xef,0xc6,0xfe,0x25,0xbd,0xad, 0xbd,0x04,0xbe,0x4f,0x38,0x1e,0xf2,0xa7,0x7f,0xfc,0x89,0x2b,0x3f,0xf0,0xcd,0xcb, 0xfe,0x42,0xad,0x45,0x07,0x63,0xd8,0x5b,0x77,0xf1,0x08,0x62,0x89,0xa1,0x45,0x60, 0xb7,0x52,0x1e,0x2c,0x17,0x02,0x42,0x7c,0x7c,0x7c,0x82,0x57,0xfd,0x70,0x17,0x9c, 0xba,0xe0,0xa1,0x87,0x6e,0xbe,0xff,0xfc,0xed,0xb7,0x6c,0xf9,0x85,0xf5,0x6c,0x8b, 0x60,0x60,0x58,0x61,0x26,0xc8,0x30,0xe8,0x66,0x45,0xe6,0x83,0xb1,0x06,0x49,0x09, 0x04,0xa0,0xa5,0x90,0x96,0xa9,0x6d,0xdb,0x2f,0xb8,0xe4,0xa2,0x4b,0x4f,0x9e,0x37, 0xef,0xc9,0xfe,0x9d,0x7b,0x98,0xac,0x54,0x88,0xc2,0x88,0xe6,0x42,0x13,0xdd,0x3d, 0xdd,0xac,0xb7,0xcf,0xd3,0xed,0x74,0x8f,0xbf,0xef,0x9b,0x1f,0xb8,0xf2,0xd6,0x0b, 0x6e,0xba,0x7a,0xef,0xfa,0x3d,0x6f,0x99,0x7f,0xca,0x82,0x35,0x4d,0xc5,0x46,0xfc, 0x38,0x60,0xe7,0xd0,0x4e,0x76,0xae,0xda,0x3e,0x9b,0x08,0xa4,0x45,0x60,0x44,0xc1, 0x80,0xf4,0x08,0x3a,0x69,0x09,0x33,0x21,0xcc,0x80,0xc9,0x60,0xb2,0x73,0x98,0x61, 0x46,0x18,0x7d,0x4d,0x42,0xc0,0x9c,0x7a,0xc6,0xfc,0x15,0x74,0x42,0x65,0xdd,0xc4, 0x7b,0x6b,0x07,0x2a,0x6f,0xa4,0xdd,0x49,0xd8,0xc1,0xb0,0x42,0xaf,0x20,0x17,0x79, 0xb0,0xc4,0x21,0x0a,0x23,0xac,0x6f,0x91,0x06,0x81,0x8a,0xa5,0xc5,0xb6,0x6e,0x6d, 0x9f,0x36,0xe5,0x49,0x3f,0xe3,0x23,0x9e,0x50,0x29,0x4d,0xe0,0x8f,0x57,0x18,0x1e, 0x1c,0xe2,0x40,0x69,0x90,0x40,0x02,0x06,0xe2,0xfd,0xbc,0xe1,0x4d,0xe7,0x7e,0x8b, 0x13,0x61,0xc3,0x63,0xeb,0xdf,0xb2,0x65,0xff,0x16,0x26,0xca,0x65,0x4e,0xe8,0x39, 0x81,0x72,0x75,0xbc,0xe5,0xf1,0x1b,0x56,0x7f,0x0c,0x0b,0x18,0x81,0x76,0x60,0x4c, 0x61,0x54,0x91,0xac,0x21,0x9a,0x88,0x60,0x2f,0x44,0x44,0x85,0x14,0x1e,0x19,0xd2, 0xaf,0xba,0xfb,0xa7,0x48,0x61,0xba,0xba,0xba,0x9e,0x64,0x0a,0xe0,0x81,0xf8,0x06, 0xf2,0x40,0x93,0x40,0x45,0x93,0x84,0x38,0xd7,0xa0,0x39,0x88,0x2a,0x11,0x38,0x80, 0x23,0xc8,0xa0,0xcb,0xb6,0x5b,0x36,0x5f,0xf0,0x4f,0x1f,0xf9,0x7e,0xf9,0xe9,0x5f, 0x3e,0xf9,0xb1,0x74,0x6b,0x9a,0x62,0x4f,0x0b,0x46,0x0d,0x51,0x14,0xb1,0xea,0xb1, 0x47,0xd8,0xb3,0x77,0x0f,0xe5,0x78,0x82,0xa2,0xdb,0x12,0x2d,0xfc,0xf0,0x92,0xbb, 0x87,0x0f,0x8c,0x2c,0x6a,0x6b,0x6d,0x23,0xd7,0x90,0x47,0xc4,0xa0,0xae,0x34,0x33, 0x04,0xec,0x06,0xf5,0x63,0xa4,0xc9,0x80,0x02,0x07,0x15,0x2c,0x10,0x03,0x87,0xc0, 0xaf,0xf9,0x78,0xa4,0x4c,0x96,0x2c,0x59,0x32,0xaf,0xfa,0xe1,0xf6,0xb4,0xf6,0xec, 0xa6,0x51,0x60,0x50,0xe1,0x20,0xb0,0x29,0x82,0xe9,0x06,0x16,0x3a,0x89,0x20,0x43, 0x0a,0x35,0x90,0x66,0x83,0x3a,0x3e,0x3c,0x67,0x90,0x8d,0x20,0x6d,0x0e,0x7e,0x7f, 0x2d,0xbf,0xfc,0xaa,0x3b,0xff,0x69,0xdd,0x2f,0xd6,0x7e,0x7a,0xd1,0x07,0x97,0x7c, 0xb2,0x71,0x56,0xd3,0x83,0x69,0x3f,0xcd,0xc0,0x81,0x01,0xf6,0xee,0xe9,0x27,0x97, 0xcb,0x53,0x71,0x2b,0xcc,0x5e,0x30,0xe7,0xfa,0xad,0x4f,0x6c,0x5d,0xb4,0x65,0xf3, 0x66,0x7a,0xa7,0xf6,0xd2,0xee,0xb6,0xf3,0xcf,0xff,0xfc,0xa3,0xff,0xcd,0x08,0x9c, 0xfe,0x8d,0xb3,0x7e,0xb4,0xfe,0xf1,0xf5,0x6f,0xf7,0xf7,0x55,0x7b,0x99,0xd4,0x84, 0x1f,0x8c,0x28,0x92,0x02,0xb5,0x10,0xd5,0x22,0x2d,0x52,0x54,0x01,0x42,0xa2,0x57, 0x3d,0x04,0x5c,0x2f,0x93,0xda,0xdb,0xd5,0xd7,0x33,0x3a,0xb0,0xba,0xbf,0x48,0x07, 0xb0,0xc0,0x40,0x04,0x8c,0x2b,0xb4,0x18,0x88,0x15,0x44,0x50,0xe3,0x93,0xa9,0xe5, 0x23,0x76,0xd9,0xd0,0x4f,0xd7,0xb2,0xc4,0x82,0xb8,0x0e,0x3a,0xc5,0xb2,0x7f,0xed, 0xc0,0xdc,0xfd,0xbf,0x1a,0x78,0xa0,0xf7,0xb2,0xe9,0xbf,0x5c,0xfc,0x91,0xd3,0xae, 0x9c,0x3a,0xaf,0x6b,0xab,0x19,0x16,0x76,0x6f,0xdf,0x45,0x47,0xcb,0x14,0xf6,0xee, 0xd9,0xbb,0x30,0xa8,0xd4,0x0a,0xfb,0x0f,0xec,0xe7,0x8c,0x33,0xce,0xa4,0xa4,0x63, 0x85,0x0d,0x5f,0x5d,0xf7,0xee,0xae,0x8b,0x7a,0x57,0x7f,0xea,0xaf,0x3e,0xfb,0xf1, 0x1f,0x7d,0xff,0x07,0x43,0x8f,0xfd,0xc3,0x23,0x5f,0xa1,0xc1,0x49,0xaa,0x6f,0x49, 0xa1,0x31,0xa9,0xc3,0x81,0x1f,0x78,0x43,0x1c,0x72,0x47,0x19,0x0d,0x23,0xe2,0x57, 0x1d,0x00,0x43,0x55,0xc2,0x59,0xf3,0x66,0xad,0x66,0xb2,0xfe,0xc9,0x1c,0x07,0x4e, 0x72,0xc0,0x57,0x98,0x54,0xc8,0x83,0x16,0x42,0xdc,0x54,0xa6,0xb2,0xf4,0x94,0xa5, 0xdf,0x31,0x22,0xa1,0xa6,0xea,0x19,0x3b,0x00,0x19,0x31,0xc8,0x6c,0x0f,0x16,0x08, 0xfd,0xd7,0xed,0x7e,0xcf,0x9d,0x1f,0xba,0x7d,0xcb,0x9a,0x9b,0x9f,0xfa,0x46,0x24, 0x71,0x53,0xf7,0xf4,0x6e,0x66,0xce,0x9a,0xc5,0xc0,0xbe,0x81,0xf7,0x87,0xa5,0x40, 0x32,0x36,0x83,0xab,0x0e,0xb7,0x5e,0x7f,0xcb,0x97,0x01,0xde,0xf9,0xd5,0x77,0x7d, 0x34,0x43,0x9a,0x86,0x7c,0xde,0xc5,0x82,0x4c,0x33,0x09,0xe7,0x50,0x12,0x23,0xc4, 0xe0,0x57,0x6b,0xe1,0x08,0xa3,0xd1,0x28,0x63,0x94,0x5e,0x83,0xc3,0x2d,0x66,0x9b, 0x98,0x7f,0xd6,0xc2,0xbb,0x1f,0xee,0x78,0xf0,0xed,0x5a,0x50,0xc4,0x00,0x2e,0x90, 0x11,0xa4,0x06,0xda,0x68,0x60,0xb7,0xe5,0xb4,0x3f,0x3a,0xfd,0xa6,0x8e,0x68,0xca, 0xd3,0x95,0x5d,0x95,0xcf,0xd3,0x67,0x20,0x43,0x42,0x96,0x2c,0xb0,0xdf,0x22,0x27, 0xb8,0xe0,0x28,0xf1,0xda,0x88,0x17,0xae,0x5a,0xff,0x57,0xbb,0x57,0xef,0xfa,0xd8, 0xb2,0xab,0xde,0x71,0x45,0xdc,0x6c,0xd7,0xed,0x7e,0x72,0xc7,0xf4,0xc6,0x8e,0xe2, 0x9a,0x33,0xde,0x7a,0x26,0xb5,0xf1,0x1a,0xf7,0x7f,0x69,0xc5,0x17,0x1b,0x4f,0x6f, 0x1e,0x9e,0x7f,0xda,0xc2,0x4d,0x6b,0x47,0xd7,0x72,0xff,0x8f,0xee,0xfd,0x02,0xa6, 0xae,0x78,0x03,0x50,0x03,0x42,0x05,0x01,0x3f,0xf2,0x43,0x8f,0x94,0x36,0xd0,0x40, 0x48,0xf8,0xaa,0x7b,0x80,0x3b,0x61,0x27,0x28,0x36,0x35,0xaf,0xa3,0x1b,0xc8,0x58, 0x08,0x80,0x10,0x30,0xa0,0xa1,0xa2,0x61,0x08,0x29,0x78,0xdb,0x05,0x17,0x7c,0xfd, 0x89,0x7f,0x7d,0xf4,0x43,0xc4,0x24,0x49,0xd2,0xe5,0x68,0xb2,0xb2,0xc0,0xa0,0x85, 0xbc,0x20,0x39,0x41,0xdb,0x85,0xca,0x78,0xb9,0xf5,0xd6,0xaf,0xdc,0x78,0x9b,0xd3, 0x9d,0xc2,0x96,0x62,0x10,0x6d,0x5b,0x73,0xc7,0x93,0xef,0x8d,0x0f,0xc6,0x9d,0x1c, 0x80,0x37,0x7c,0xfd,0xbc,0xcb,0x04,0xc3,0x3d,0x3f,0x5e,0xf1,0x35,0x13,0x19,0x47, 0x3a,0x25,0xb6,0x25,0xeb,0x90,0x91,0x04,0x89,0x98,0x84,0x66,0x47,0x91,0x49,0xe1, 0x62,0xc8,0xe1,0xe3,0xbf,0xfa,0x00,0xc4,0x51,0x4c,0xb1,0xb1,0x79,0xa7,0x4c,0x71, 0xd0,0x5a,0x0c,0xb5,0xba,0x7b,0x3b,0x24,0x6e,0x38,0x1c,0xd3,0xd8,0xd3,0xb2,0x7f, 0x76,0x71,0xf6,0xee,0xd2,0x69,0xa3,0x1b,0xee,0x9d,0xbe,0x9c,0x78,0x5f,0x8c,0x86, 0x40,0x2b,0x48,0x87,0x0b,0x3e,0x30,0x69,0x21,0x0b,0x2c,0x74,0x90,0x31,0x85,0x71, 0x07,0x1d,0x8e,0x89,0x77,0x06,0xc8,0x74,0x8f,0x71,0x5b,0x9a,0x7e,0xf7,0xd5,0x77, 0xfe,0x82,0x1a,0xb8,0xf3,0x53,0x83,0xf3,0xde,0x75,0xea,0xdd,0x0f,0x2e,0xbf,0xff, 0xdd,0x93,0x5b,0xc7,0x17,0x7f,0xe4,0x07,0x57,0x9c,0xf3,0xd3,0x2b,0xfe,0xe9,0x61, 0xf5,0x62,0x24,0xed,0x42,0x4a,0xc0,0x26,0x1e,0x10,0x55,0xa3,0x4e,0x90,0x76,0x17, 0xf7,0x50,0x64,0x5f,0x83,0x24,0x58,0xa3,0x46,0x5f,0x6b,0xdf,0xc0,0xcc,0xb9,0xb3, 0x76,0x6e,0xbb,0x6f,0x73,0x1f,0x85,0xfa,0x5f,0x94,0xa4,0x3e,0x8f,0xc3,0xac,0xa5, 0xb3,0x96,0x97,0x4a,0x25,0xde,0x78,0xee,0xf9,0xb7,0x8d,0xdf,0x30,0xb1,0x64,0xd3, 0x43,0x1b,0xdf,0x38,0x36,0x34,0xba,0x70,0xf4,0xd0,0x58,0xef,0x81,0xc1,0xfd,0xe7, 0x92,0x02,0xf2,0x26,0xc9,0x19,0x55,0x4d,0x00,0x31,0x20,0x4d,0x0e,0xe4,0x12,0x8b, 0x4a,0xc1,0x45,0x8b,0x0a,0x81,0x25,0x1a,0x09,0x5a,0x6f,0xfe,0xf4,0xf5,0xf7,0x4e, 0x9d,0xd6,0xb5,0xed,0x0d,0x9f,0x7f,0xe3,0xfb,0x77,0x3c,0xb2,0xbd,0x68,0xe3,0x58, 0x8e,0x78,0x55,0x0a,0x08,0x04,0x04,0x6c,0x2d,0xce,0xd6,0xa8,0xb5,0x2a,0xf6,0x50, 0x2d,0x7e,0x0d,0x3c,0x20,0x9b,0xc9,0xd1,0x23,0xd3,0x78,0xfd,0x79,0x4b,0x7f,0xb1, 0x6d,0xf9,0xe6,0xcf,0x13,0x25,0x59,0x1f,0xea,0x1d,0x5a,0xc1,0xe8,0x92,0x73,0x96, 0xfc,0x8b,0x8f,0xcf,0xf6,0x60,0x3b,0xd9,0x7c,0x66,0xed,0xa2,0x4b,0x96,0xac,0x3d, 0x6b,0xf6,0xd9,0x3c,0xb0,0xf2,0xbe,0x33,0xaf,0x7d,0xfb,0x4f,0x1e,0xc7,0x03,0x99, 0x5d,0xb7,0x9c,0x2a,0xe2,0x02,0x8d,0x82,0xaa,0x26,0x1e,0x95,0x15,0xc4,0x82,0x54, 0x04,0xc5,0x41,0x0b,0xb8,0xbb,0xef,0xd8,0xf9,0xe6,0xc5,0xd7,0x9f,0xf6,0xbd,0x93, 0x67,0xcf,0xab,0x0c,0x6f,0x1d,0x5a,0x48,0x9a,0x24,0xf4,0xea,0x11,0x00,0x80,0x03, 0x71,0x10,0x13,0x10,0xf8,0xa0,0x44,0xe6,0x95,0xe4,0x00,0x25,0x76,0xd2,0x44,0x64, 0x51,0x14,0xea,0x15,0xc5,0xdd,0x53,0xda,0x83,0x9f,0xf1,0x69,0x9e,0xd2,0xfc,0x10, 0x05,0x3e,0xaf,0xb1,0x45,0x9c,0x7a,0xe7,0x35,0xa6,0x34,0x9d,0xd0,0x3a,0xb1,0x74, 0xe1,0x39,0xab,0x4b,0x93,0x63,0xdc,0x7b,0xff,0x7d,0x64,0x9d,0x2c,0xbd,0x6e,0x2f, 0xa9,0x1e,0x8f,0x67,0x7e,0xba,0xe6,0xc7,0x94,0x41,0x0a,0x02,0xdb,0x6d,0xd2,0x39, 0x2a,0xa8,0xa9,0x5f,0x3f,0x26,0x21,0x53,0xbe,0xa2,0x13,0x9a,0x94,0x54,0x47,0x90, 0xbc,0x41,0xdb,0x2c,0x4f,0xff,0xea,0xc9,0x2f,0x9e,0x75,0xde,0xeb,0xee,0x28,0xb6, 0xb7,0x0c,0x1e,0xd1,0xdc,0xad,0x03,0x20,0x80,0x0b,0x41,0x1c,0xe0,0x13,0x98,0x14, 0x1e,0xb1,0xd8,0xdf,0x5b,0x6d,0x41,0xb1,0xc6,0x25,0xa0,0x91,0x74,0x6d,0x8c,0xe2, 0x5d,0x9b,0x49,0xf7,0xd7,0xd0,0x96,0x2c,0x88,0xe0,0xe6,0x24,0x87,0x87,0x47,0x53, 0xae,0x69,0x30,0x71,0x3d,0x0b,0xd9,0x3a,0x1d,0x16,0xa8,0x8e,0x56,0x73,0x19,0xb2, 0x8d,0xbb,0x27,0xf7,0x8c,0x07,0x12,0xe2,0x8e,0x38,0xd3,0xb6,0x6c,0xde,0xd4,0xf9, 0xe8,0xb5,0x8f,0x2c,0xd9,0x74,0xef,0x0b,0xf3,0x11,0x92,0x73,0xad,0x42,0xb5,0xce, 0x20,0x5b,0x0d,0x54,0xeb,0x4a,0x64,0x00,0x47,0xc0,0x28,0x78,0x92,0x78,0x57,0x00, 0x14,0xe0,0xc0,0xae,0xc1,0x85,0x6b,0x37,0xae,0xa1,0x5a,0xae,0x0e,0x38,0x79,0x87, 0xb8,0x14,0x25,0x00,0x1c,0xf6,0x02,0x85,0xd0,0x0f,0xa9,0x51,0x6b,0x70,0x30,0x44, 0xf2,0x7b,0xe4,0x00,0x01,0x25,0x4d,0x48,0x1e,0x43,0x4c,0xf3,0xbd,0x2f,0xd0,0xf5, 0x89,0x55,0xe4,0xb6,0x8e,0x62,0x72,0x4d,0x30,0xad,0x25,0xc1,0xbb,0x21,0x9b,0x27, 0x25,0x1e,0xbd,0x27,0xf4,0x6e,0xcf,0xb6,0x35,0xc4,0xd5,0x3d,0x65,0x87,0x4c,0xfd, 0x22,0x59,0x83,0x5f,0xad,0xb9,0xbf,0xbc,0xfb,0x17,0xef,0xd9,0xf7,0xe4,0xde,0xb1, 0x2d,0x0f,0x6f,0xfa,0xca,0xf0,0x0b,0xc3,0x8b,0x6c,0x18,0x8b,0x4e,0x26,0x7e,0x2a, 0x69,0x49,0x5c,0x37,0x20,0x51,0x32,0x4b,0x92,0x40,0x2b,0x24,0x25,0xed,0x70,0xa9, 0x54,0x45,0x63,0x92,0x86,0x4a,0x13,0xeb,0x86,0x95,0x5a,0xde,0xd6,0x2c,0xaf,0x7b, 0xd3,0xeb,0xaa,0x2b,0xbf,0xfb,0x40,0xb5,0x34,0x3a,0x9a,0xa5,0xa1,0xde,0x18,0x4d, 0x2a,0x44,0x50,0x1b,0xaf,0xe1,0xab,0xdf,0xd8,0x28,0x8d,0x88,0xc8,0xcb,0xf4,0x7c, 0xf9,0xb2,0x58,0x1a,0x50,0x0a,0x38,0xc1,0x08,0xad,0xf7,0x6c,0xa4,0xf5,0xbb,0xeb, 0x29,0xdc,0xd7,0x0f,0x22,0xf8,0xd3,0x9b,0x91,0xf6,0x46,0xa4,0x23,0x9f,0x00,0x30, 0x5a,0x1d,0x65,0x4c,0xc6,0x68,0xcf,0x77,0x8c,0xcd,0x9c,0x3d,0xf3,0xf9,0xf5,0xeb, 0xd6,0x2d,0xa4,0x35,0xb1,0xaa,0x78,0x2e,0xe4,0xe0,0xe7,0x5f,0xbf,0xe1,0x5a,0x1e, 0xab,0x5f,0xbf,0x85,0xc4,0xad,0x1b,0x40,0xaa,0x92,0xd4,0xec,0x2c,0x49,0xe2,0x0b, 0x49,0xda,0x58,0x5b,0xe7,0xf3,0xae,0x24,0xef,0xa1,0x45,0xf2,0x0e,0x8e,0x23,0xc4, 0x95,0x38,0xf1,0x84,0x08,0xd2,0x4d,0x19,0xbf,0xd0,0x58,0xc8,0x55,0x47,0xaa,0x0d, 0xa9,0x54,0xaa,0x86,0x21,0x4b,0x45,0x61,0x20,0xe9,0x0c,0x71,0xa0,0x56,0xab,0x51, 0x08,0x1a,0xcc,0x8c,0xf4,0x34,0x86,0x19,0xf9,0x4f,0x14,0x57,0x14,0x43,0x44,0x11, 0x29,0x0f,0x91,0xfe,0xee,0x6a,0xb2,0xff,0xf6,0x3c,0x99,0xad,0xc9,0x77,0xc2,0xce, 0x06,0x6c,0xca,0x24,0x53,0xe0,0x63,0x86,0x4b,0x6e,0x5b,0xbe,0x0d,0x14,0x7a,0x9d, 0x1e,0x16,0x9f,0xb5,0xf8,0xee,0xf5,0xb7,0xad,0x5b,0x78,0x94,0x71,0x2a,0x58,0x81, 0x06,0x03,0x39,0x8b,0x34,0xd6,0x1b,0x16,0x55,0x34,0x2b,0x49,0xcc,0x8f,0x03,0xe5, 0xfa,0x15,0xbd,0xba,0xb5,0xeb,0xe1,0x73,0x64,0xe6,0x2c,0x89,0xa7,0x48,0xd6,0x41, 0xcb,0x31,0xa2,0x40,0xde,0x20,0xd6,0xc4,0x77,0x7d,0xe6,0x8e,0xb5,0x83,0x03,0x07, 0xfa,0xd4,0x25,0x25,0xc6,0x81,0x6d,0x9a,0xd0,0xf0,0x99,0xc9,0x94,0xc8,0x86,0x31, 0x51,0x1c,0x75,0x27,0xd1,0x7c,0xfc,0xb1,0x98,0xa0,0x58,0x5c,0x62,0x1a,0x29,0xdc, 0xbb,0x91,0xdc,0xc7,0x6e,0xc7,0xec,0xdc,0x43,0x9c,0x2a,0x10,0x74,0x17,0xc0,0x35, 0x60,0x15,0xb1,0xca,0x4b,0x07,0x4b,0xee,0x44,0x6d,0x02,0x45,0x39,0xc4,0x21,0xa6, 0x74,0x75,0x3e,0x4c,0x81,0x2f,0xa9,0x46,0x24,0x35,0x09,0xc4,0x07,0xaf,0x21,0x43, 0x94,0xf5,0xb1,0x91,0xc5,0x18,0x81,0xac,0x41,0x73,0x89,0x38,0x92,0x95,0x84,0x18, 0xa1,0x49,0xdc,0xd7,0xea,0x3c,0xfe,0x70,0xb8,0x1a,0xc0,0x11,0xec,0x78,0x4c,0x3c, 0x1e,0x27,0x21,0x00,0x18,0xcf,0xa1,0x36,0x54,0xcd,0x1d,0x78,0xbe,0x32,0x1b,0x48, 0x4a,0x5f,0x97,0x03,0xaa,0x09,0x1d,0x6e,0x05,0x4a,0x09,0x78,0x23,0x3a,0x32,0xf3, 0x10,0x87,0x18,0x39,0xae,0x07,0x28,0x16,0x0f,0x9f,0x22,0x1d,0x37,0xdd,0x4b,0xc3, 0xa5,0x2b,0x88,0x3c,0x87,0x68,0x46,0x67,0xe2,0x89,0x4a,0xf2,0xfe,0xff,0x58,0x6e, 0xc1,0x4d,0x0a,0x7f,0x5a,0xd2,0x74,0x4f,0xe9,0xde,0x49,0x23,0x09,0x0d,0xf5,0xea, 0x56,0xf4,0x41,0x52,0x75,0x01,0x7d,0x20,0x23,0x78,0x05,0x0f,0xac,0x10,0x11,0x61, 0xc5,0x26,0x2d,0xb4,0x23,0xc9,0x77,0x4a,0x1c,0x65,0x88,0x01,0x49,0x12,0xac,0xdf, 0x5f,0x04,0x54,0x2d,0xe9,0x54,0x1a,0xff,0x40,0x0d,0x36,0x25,0x7f,0xc8,0xcc,0xc9, 0xd6,0xb2,0x5d,0xb9,0x43,0x63,0xe1,0x58,0x2f,0x5b,0x92,0xb2,0x49,0x5e,0xa0,0x02, 0x1a,0xc6,0x54,0x2b,0xd5,0xbd,0xe9,0x7c,0x1a,0xe7,0x25,0xe6,0x13,0x2c,0x11,0x19, 0x22,0x1a,0xe9,0xfc,0xd7,0x47,0xe9,0xba,0x7c,0x25,0x71,0x77,0x11,0x9b,0x01,0x82, 0xdf,0xad,0x71,0x32,0xcd,0x99,0x22,0xcd,0x99,0x22,0x69,0x37,0xc3,0xfc,0xee,0xf9, 0xdb,0x7a,0xe6,0x4e,0x4f,0x80,0x56,0x12,0x77,0x09,0x95,0xd8,0x53,0x28,0x08,0x04, 0x8a,0xa6,0x15,0x37,0xe5,0x51,0x88,0xf2,0xe4,0x34,0x8b,0x49,0x1b,0xd4,0xab,0x9f, 0xdf,0x4e,0x02,0x46,0x40,0x62,0xf9,0x7a,0x22,0x3b,0x9c,0xd9,0xd5,0x28,0x8e,0xe7, 0x10,0x6c,0xf3,0x69,0xb7,0xed,0xfa,0xd6,0x8f,0x5d,0x70,0xdf,0xbb,0x7f,0xfc,0xbe, 0x6f,0xfc,0xed,0x13,0x57,0xf7,0x9c,0xf2,0x89,0xf9,0x77,0xe8,0xae,0x38,0x09,0xa9, 0x29,0x06,0x4d,0xd7,0xc1,0x8b,0xa1,0x34,0x31,0xee,0xf8,0xf8,0xd4,0x8e,0x79,0xf9, 0x5a,0xa1,0x8c,0x30,0x41,0x8a,0xf6,0x1f,0x3e,0x40,0xf7,0xe5,0xf7,0x12,0x75,0x35, 0x60,0x5b,0xd3,0x49,0xb9,0xfd,0x1d,0x97,0x5b,0xd3,0x2a,0x00,0x35,0xa9,0x32,0x8d, 0xe9,0xf1,0xdc,0x53,0xe7,0x3e,0xb1,0xf7,0x9e,0xdd,0x17,0xd6,0xcd,0x85,0x0a,0xd8, 0x6c,0x0c,0xcd,0xc0,0x36,0xd0,0x2c,0xc4,0x8d,0x16,0xb7,0xe6,0xa2,0x22,0xd4,0x8c, 0x4f,0x6c,0xe2,0xc4,0xed,0x7d,0x41,0x0f,0xd9,0x24,0x2c,0x72,0x24,0x09,0x72,0x14, 0x68,0x4a,0x00,0x30,0xb1,0x41,0x07,0x2d,0xb9,0xd6,0x5c,0xff,0xd7,0x7e,0xfe,0xb7, 0x17,0x9c,0x79,0xf2,0x59,0x1b,0x37,0xb2,0x09,0x0f,0x8f,0xcd,0x2b,0x37,0xbf,0x9f, 0x01,0xa0,0x53,0xd0,0x2e,0xc1,0x69,0x73,0x93,0x01,0xe9,0x84,0xa5,0x56,0xad,0xce, 0x0c,0x08,0x08,0xed,0x61,0x22,0xa4,0x58,0xe3,0x11,0x62,0xe8,0xfb,0xec,0x6f,0xe8, 0xbe,0xe6,0x19,0xfc,0xce,0x36,0x6c,0x4b,0x1a,0x13,0xfd,0x7e,0xe3,0x73,0xe3,0xc6, 0x0e,0x6e,0xec,0xe0,0x44,0x0e,0x9e,0x7a,0xcc,0x9f,0xb7,0x60,0x39,0x05,0x50,0xa9, 0xbb,0x90,0x24,0xc4,0x46,0x5a,0x4d,0x52,0x86,0x04,0x42,0x27,0xa4,0x96,0xf2,0x09, 0x3c,0x1f,0xeb,0xd8,0x84,0xee,0x96,0x40,0xd7,0x44,0x49,0x42,0x9c,0xd4,0xc4,0x0b, 0x3c,0x20,0x50,0x18,0x03,0xa9,0x26,0x80,0xd8,0xfe,0x98,0x39,0x17,0xce,0xbd,0x23, 0x75,0x72,0x66,0xe3,0x76,0x76,0x90,0x23,0xcb,0x9a,0x7d,0x4f,0xbf,0xed,0xe0,0x1d, 0x03,0x6d,0x34,0x82,0xf6,0x09,0xd2,0x2c,0xa4,0x73,0x69,0xb2,0x5d,0x0d,0xd0,0x00, 0x71,0x2d,0x6e,0x6c,0xa2,0x91,0xbc,0xc9,0xd3,0x60,0xf2,0xe4,0x4d,0x23,0x2e,0x33, 0x98,0x71,0xdd,0x0b,0xf4,0x5c,0xf3,0x14,0xb5,0xf6,0x22,0x71,0x83,0x87,0xfc,0x1e, 0x96,0x3f,0x02,0xc0,0x9e,0xc9,0x7e,0xf6,0x4c,0xf6,0xd3,0x3f,0xd9,0xcf,0x86,0x68, 0x3d,0xd9,0x96,0xcc,0xe3,0xb4,0x90,0xec,0xde,0x38,0x24,0xae,0xec,0x93,0xec,0xda, 0xe4,0x93,0xb2,0xa7,0xe3,0x96,0x8a,0x56,0xa9,0x52,0xc3,0x8a,0x45,0x06,0x40,0xd7, 0xc5,0x47,0xdd,0xfd,0xf0,0x24,0xc9,0x27,0x09,0x8d,0x40,0xd1,0x2a,0xe8,0x98,0x45, 0x32,0xc2,0x33,0xff,0xe7,0xe9,0x3f,0xfb,0xdc,0xd2,0x3f,0xdf,0xb1,0x69,0x7c,0xb3, 0x34,0x53,0xe4,0x86,0xab,0xaf,0xfb,0x31,0x23,0x20,0xb3,0x9c,0xa4,0xc1,0xca,0x1b, 0x6c,0x35,0xc6,0xcd,0x7a,0x90,0x83,0xd8,0x8f,0x9b,0x5c,0x3c,0x5c,0x1c,0x0c,0x2e, 0x3e,0xad,0xb4,0x3c,0xb2,0x8e,0xce,0x3f,0x79,0x88,0x5a,0x73,0x0b,0x9a,0x73,0x93, 0x0c,0xff,0xff,0xb1,0xdc,0xd6,0x42,0xeb,0x91,0x5f,0x8a,0xa6,0x48,0xfb,0x94,0x8e, 0x09,0x32,0x52,0xe7,0xf0,0x75,0x85,0x6a,0x8a,0x3a,0x40,0x3a,0xb1,0xa4,0x8a,0x25, 0xb4,0x41,0x92,0xad,0x0f,0x02,0xfb,0x15,0xf1,0x24,0x01,0x2c,0x26,0x89,0xdd,0x46, 0x49,0x92,0x59,0x08,0xec,0xb3,0xe0,0x24,0xdd,0x1d,0x59,0xc1,0x66,0xac,0x8c,0xae, 0x1e,0xe9,0xbb,0xf6,0x53,0x3f,0xb9,0x63,0xd7,0xa7,0x77,0xdc,0xb9,0xef,0xd1,0x3d, 0xd3,0x58,0x68,0xd0,0xbc,0xe0,0x76,0xb8,0xa4,0xb2,0xe9,0x64,0x0a,0x6d,0x13,0xc0, 0xab,0x61,0x95,0x51,0x46,0x19,0x66,0x8c,0x80,0x36,0xa6,0xae,0x7a,0x8e,0x69,0xe7, 0xfd,0x1a,0xeb,0x39,0xc4,0xc5,0x0c,0x12,0xd9,0x97,0x95,0xb7,0xdf,0x19,0x80,0x82, 0x69,0x3c,0xf2,0x4b,0x8a,0x34,0x27,0x14,0x67,0x0e,0xb4,0xf5,0x4c,0x09,0x87,0xd6, 0x1d,0xf0,0xc8,0x93,0x34,0x38,0x15,0x45,0x52,0x06,0x52,0x16,0xad,0xda,0x84,0xd7, 0xe7,0x40,0x46,0x24,0x89,0xf1,0x14,0x89,0x00,0x87,0x89,0x9a,0x2b,0x09,0x38,0x61, 0x9d,0xfe,0x1e,0x6e,0x74,0xd2,0xc9,0x39,0xe2,0x1a,0x98,0x0e,0x3b,0x7e,0xbd,0x6d, 0xd9,0x8e,0x47,0xb7,0x2d,0xe3,0x54,0x17,0x7c,0xc5,0x14,0x0d,0xd9,0x8e,0x1c,0xd4, 0xc0,0x71,0x1d,0x8c,0x63,0x30,0x27,0xb9,0x8c,0x07,0xa5,0x62,0x84,0xe2,0xd3,0x41, 0xcb,0x8a,0xe7,0xe9,0xbb,0xe8,0x01,0xd4,0x75,0x08,0xbb,0xf2,0x89,0xf2,0xaf,0x60, 0x19,0xb5,0x96,0xc3,0x47,0xc5,0x4e,0xd2,0x45,0x57,0x69,0xfe,0x82,0x53,0x57,0x33, 0x5e,0x17,0x3a,0xae,0xd7,0x7b,0x17,0xa4,0xc7,0x41,0x47,0x95,0xe6,0x33,0x5a,0x9f, 0xef,0x99,0x37,0xed,0x7e,0x1d,0xa9,0xd7,0xec,0x63,0xd1,0x77,0x49,0x3c,0x27,0x24, 0x09,0x89,0x6a,0xbd,0x16,0x1f,0xbb,0x11,0x7f,0xb8,0xd9,0x69,0x4c,0x4a,0x1d,0x3b, 0x14,0xd3,0xe0,0xd0,0x38,0xa3,0x09,0xd7,0xba,0xa4,0x72,0x29,0x62,0x1b,0x13,0xed, 0x0b,0xb1,0x6b,0x23,0xb4,0x98,0x2d,0x76,0xb1,0x90,0xd9,0x37,0x6e,0xe1,0xd4,0x4b, 0x1e,0x87,0x86,0x0c,0xc1,0xd4,0xec,0x2b,0x56,0x1e,0xc0,0xec,0xaf,0xee,0xe7,0xf0, 0xb1,0xaf,0xba,0x8f,0x03,0xf1,0x01,0xa6,0xcd,0x9c,0x7e,0x2f,0x1e,0xa8,0xaf,0x10, 0x26,0xca,0xdb,0x48,0x89,0x67,0xc5,0xb0,0x04,0xbb,0xec,0x4b,0x17,0x7f,0xca,0x53, 0x2f,0xb9,0xfb,0x4b,0x59,0x5f,0xe6,0x98,0x69,0x91,0x07,0x5a,0xb6,0xe8,0x64,0x9d, 0xda,0x1e,0x56,0xbc,0xde,0x8d,0x4a,0x2c,0x98,0xaa,0x81,0x91,0x98,0x7c,0x57,0x03, 0xe9,0x6c,0x1a,0x31,0x82,0xa4,0x93,0x8b,0xd5,0x4a,0x55,0x18,0x77,0x69,0x6d,0xeb, 0x1d,0x09,0x6f,0xfe,0x15,0xf9,0x0f,0xde,0x42,0x58,0x70,0x88,0x7a,0x1b,0x90,0x97, 0x66,0x7b,0x91,0x64,0x7e,0xf1,0x3b,0xf5,0x0b,0x47,0x97,0xeb,0xb9,0xde,0x8b,0x3e, 0x88,0x89,0x98,0xd1,0x37,0xe3,0x51,0x9a,0x80,0xc9,0x08,0x62,0x2f,0xb1,0x68,0x06, 0x18,0x8e,0x39,0xfd,0x9d,0x67,0xdf,0x7a,0xe6,0x82,0x33,0x37,0xdc,0xf2,0xd8,0x0d, 0x6f,0x39,0x7a,0xf3,0x63,0x8e,0xc3,0x43,0x4d,0x40,0x27,0x94,0x8e,0xf9,0x9d,0xdb, 0xa3,0xed,0x41,0x66,0xb4,0x7f,0xa4,0x1b,0x43,0xbd,0x61,0x12,0x48,0x0b,0xe2,0x08, 0xb6,0x2d,0x26,0xb5,0x28,0x8b,0xd7,0x92,0x22,0x0c,0x23,0xc4,0x15,0xc2,0xc9,0x80, 0x89,0x83,0x55,0xda,0xe6,0x4c,0xa7,0xef,0x84,0xc2,0x60,0xdf,0x27,0x9f,0xce,0x8c, 0xaf,0x5e,0xf9,0xf5,0xa6,0x8e,0x96,0x72,0x5c,0x4c,0x6d,0xc0,0x8f,0x0e,0x00,0xf3, 0x81,0xc5,0x40,0x01,0x18,0x20,0xb6,0x55,0xa2,0xb8,0x1f,0x63,0x5e,0x40,0xe4,0xf1, 0xdf,0x19,0x80,0xb8,0xf2,0x62,0xc6,0x54,0x4b,0xd5,0xc8,0xa6,0x32,0x7b,0xf1,0x80, 0x21,0x92,0xf6,0x38,0xa8,0xd7,0xf5,0x08,0xe6,0xbc,0xf1,0xe4,0xdf,0x8c,0x1c,0x1c, 0x19,0x0a,0x2b,0xe1,0x51,0xe5,0x0f,0x9b,0x35,0xcd,0x51,0xeb,0x0b,0x30,0xa2,0x4c, 0x39,0xa3,0x73,0x47,0xe5,0xb4,0x6a,0x71,0xe4,0xdf,0x46,0xbb,0x25,0x9d,0x30,0x3c, 0x49,0x09,0xea,0x82,0xed,0xb4,0xb8,0x73,0x72,0xb4,0x4e,0x6b,0x83,0xb2,0x32,0x59, 0xf5,0xa9,0x59,0x87,0x62,0xa6,0x7b,0xec,0xcd,0x67,0x2c,0xba,0x6d,0xa9,0x9d,0xfe, 0x37,0x6d,0x37,0xae,0x1b,0x98,0xb9,0xb1,0xda,0x98,0xca,0x17,0x97,0x89,0xe7,0x5e, 0xa4,0xe3,0xd5,0xab,0x45,0x04,0x1c,0x73,0x1d,0x46,0x96,0x03,0xa3,0x58,0xcd,0x48, 0x10,0xbd,0x9e,0x30,0xfa,0x4b,0x6b,0xcc,0x0c,0x84,0x01,0x90,0x8f,0x83,0xde,0xf7, 0xdb,0x00,0x90,0x5b,0x27,0x7e,0xf9,0xa2,0x0f,0x72,0xa9,0x3c,0x93,0xe1,0x64,0xf1, 0x4f,0x2f,0xbf,0x62,0x70,0x64,0xe5,0x90,0x27,0x9d,0x4e,0x92,0xd9,0x7b,0x0c,0x4c, 0x55,0xf2,0xad,0xb9,0xfe,0x65,0x6f,0xbb,0xf8,0xcb,0x63,0x77,0x8f,0xce,0x5e,0xf1, 0x9d,0xbb,0xfe,0x12,0x9b,0x34,0xcf,0x52,0x4c,0x76,0x78,0x71,0xea,0x00,0x00,0x84, 0xa0,0x73,0x2c,0xcc,0x30,0x48,0xd5,0x4d,0xdc,0x3e,0x4c,0xfa,0x36,0x8a,0x82,0x37, 0x35,0x45,0x3e,0x9d,0x23,0x1e,0x89,0x99,0xdc,0x5f,0xa3,0x29,0x6a,0xe2,0xfc,0xcc, 0xec,0xda,0x05,0xb9,0x39,0x9f,0x5c,0x38,0x5e,0x78,0xbe,0xf1,0xf9,0xa1,0x05,0xe1, 0x48,0x79,0x91,0x75,0x8c,0x1b,0x1b,0x6d,0x0f,0xc5,0x1a,0x83,0x4c,0x13,0x68,0x45, 0xb8,0x05,0x58,0x2b,0xca,0x73,0x51,0xca,0x5d,0x1f,0x15,0xd2,0x78,0x65,0x1f,0xa7, 0x1a,0xa2,0x86,0x1b,0x14,0xb9,0x54,0xe0,0x36,0xe0,0x4a,0x60,0x5b,0xe2,0x92,0x8a, 0x38,0x0e,0xd2,0xd6,0x88,0x4c,0x69,0x04,0x05,0xb9,0x7d,0xf2,0x37,0x2f,0x02,0xc0, 0xa8,0x61,0x4a,0x7e,0x0a,0x7f,0xf1,0xad,0xcf,0x3e,0xba,0xea,0x6f,0x56,0x9e,0x2d, 0x33,0x1d,0x28,0x03,0x59,0x90,0xd7,0x79,0x58,0xbf,0x46,0xaa,0x21,0xcb,0x65,0x9f, 0xb8,0xec,0xfd,0xe9,0xc1,0x4c,0xed,0x85,0x9f,0x6f,0x38,0xff,0xd9,0x3b,0x9f,0x39, 0x67,0x74,0x60,0x64,0x09,0x4d,0xf5,0xf3,0xbc,0x7a,0xd7,0x98,0x16,0xf4,0x74,0x03, 0x93,0x24,0x83,0xd2,0x96,0x64,0x4c,0x26,0x4d,0x82,0x5b,0x74,0x89,0x27,0x2c,0x76, 0xbf,0x4f,0x77,0xe1,0x04,0xce,0x5e,0xf8,0x86,0x15,0x4b,0x9f,0xae,0x3d,0xfa,0x86, 0xa7,0xc3,0x6c,0x61,0x52,0x3e,0x52,0xae,0x55,0x3b,0x34,0x9f,0x7e,0xca,0xa4,0xbd, 0xdb,0xad,0x61,0x39,0x46,0x76,0x49,0x6c,0xc7,0x92,0x79,0xb1,0x82,0x72,0x16,0x22, 0x6f,0x15,0xe5,0x03,0xd6,0x30,0x27,0xcc,0xb8,0xcf,0x39,0xb1,0x3e,0xef,0x04,0xf1, 0x16,0x84,0xb5,0xaa,0xfc,0x0c,0x68,0xad,0x67,0x84,0x5f,0x03,0x7f,0x83,0xea,0xba, 0x97,0x02,0xe0,0x8e,0xf9,0x63,0x2f,0x02,0x40,0x51,0x9a,0xd2,0x8d,0x4c,0x9f,0x3b, 0xe3,0x85,0x55,0x85,0x95,0x67,0x6b,0xad,0x5e,0xe3,0xd3,0x60,0xc7,0x63,0xbc,0xee, 0x3c,0x12,0x09,0xff,0xf2,0x9d,0x9f,0xdc,0x32,0x6b,0xf6,0x49,0x1b,0xe7,0xbc,0x6f, 0xee,0xcd,0x27,0x2e,0x9c,0xb3,0x6a,0xdd,0x2f,0x9e,0x5d,0x12,0xed,0x0d,0xd1,0x58, 0xd1,0x52,0x8c,0x96,0x14,0x33,0xcb,0x41,0x33,0xc0,0x41,0x0b,0x4d,0x06,0x6d,0x54, 0xb0,0x16,0x9d,0xb0,0x84,0x3b,0x42,0xba,0x8a,0xbd,0xbc,0xe9,0x6d,0x6f,0xbf,0xeb, 0x82,0x4b,0xde,0xff,0xb5,0x96,0xcd,0x23,0x4f,0x74,0xdc,0x7d,0x37,0xa9,0x89,0xa1, 0x85,0x93,0xb9,0xd4,0x95,0xe4,0xf2,0xe7,0x8b,0xc8,0x83,0xf6,0x48,0xe6,0x3c,0xa6, 0x8d,0x37,0x06,0x94,0xc7,0x51,0x7d,0x5c,0x85,0xaf,0x19,0xcb,0xf3,0xd9,0x89,0x60, 0x7e,0x2c,0x32,0xdf,0x7a,0xe6,0x73,0x22,0xec,0x34,0xb1,0xf6,0x28,0xf4,0x22,0x5c, 0x84,0xf2,0x51,0xe0,0x69,0x94,0x17,0x80,0x4b,0x31,0xb2,0xfe,0x48,0x08,0xdc,0xa9, 0xcb,0x5f,0x16,0x17,0x3d,0xf4,0x70,0x67,0xff,0x9d,0x97,0xfe,0xf5,0xb2,0x2b,0x6f, 0xa0,0x04,0xa4,0x40,0x8a,0x0e,0x3a,0x53,0xf0,0xda,0x3d,0x1a,0x5b,0x9a,0x11,0x84, 0xf1,0xb1,0x12,0xc1,0xd8,0x24,0x5e,0x5b,0x96,0x4c,0x31,0x8b,0x13,0x3a,0x44,0xa3, 0x11,0xe1,0xa0,0x8f,0xdf,0x5f,0x83,0x16,0x70,0xdb,0x52,0x60,0x84,0x28,0x15,0x40, 0xd5,0x40,0x98,0x63,0x7a,0x6e,0x3a,0xe7,0x9d,0x7b,0xe1,0xed,0x67,0x9f,0x72,0xfa, 0x57,0x67,0x46,0xf9,0x67,0x8a,0x03,0x01,0xe1,0x35,0xf7,0x91,0x5b,0xdb,0xbf,0x50, 0x1b,0xd2,0xab,0xac,0xd1,0x61,0x84,0xe9,0xc7,0x58,0x85,0xc3,0x2e,0x8c,0x08,0x7e, 0x31,0x8b,0xeb,0xc7,0xb8,0x65,0x1f,0x35,0x82,0xc2,0x13,0x16,0x3d,0xc3,0x41,0x26, 0x10,0x1a,0x8f,0xe4,0xa4,0xa3,0xd8,0x81,0xb2,0x10,0xe5,0x11,0xe2,0xb8,0xc1,0x74, 0x34,0xbf,0x43,0xfa,0xda,0xef,0xc0,0x2a,0x6e,0x40,0xf0,0x32,0x00,0x46,0x18,0xa1, 0xbb,0xb7,0xfb,0x71,0xe9,0x73,0xd0,0x27,0x62,0xeb,0x65,0xd3,0xcb,0xc3,0x81,0xe0, 0x74,0xba,0x9c,0xf6,0x58,0x2c,0x61,0x14,0x90,0x36,0x69,0x9a,0x9b,0x9a,0x91,0x62, 0x11,0x55,0x08,0x27,0x03,0x30,0x90,0x6a,0x4e,0xe1,0xb6,0x7b,0x34,0x9e,0x59,0xc4, 0x4e,0xc4,0x94,0x87,0xcb,0xf8,0xc6,0xc2,0x64,0x23,0xdd,0x93,0x8d,0x9c,0x5f,0x9a, 0x7a,0xf0,0xc2,0xf3,0x96,0xf5,0xf6,0x36,0xcf,0x0b,0x1a,0xaf,0xdd,0x42,0x6d,0xf9, 0x73,0x4c,0xa6,0xbc,0x45,0x69,0x3f,0xfa,0xb8,0xe6,0xdc,0x8f,0x5a,0xa3,0x00,0x79, 0x94,0x7f,0x44,0xf8,0x1e,0xd0,0xff,0x52,0xf9,0xac,0x91,0xac,0xaa,0x2e,0x01,0xde, 0x2c,0x56,0xaf,0x52,0x49,0x1e,0x32,0x31,0x50,0x10,0xcb,0xcf,0xd4,0x95,0x0f,0x63, 0x0c,0x12,0xbe,0x28,0xc1,0x3f,0x9b,0x80,0x43,0xc5,0x96,0x26,0x7f,0xed,0x4c,0x14, 0x0c,0xc6,0xa8,0x3b,0x11,0x4e,0xbc,0x0c,0x80,0x40,0x02,0x72,0x6e,0x7e,0x6f,0x71, 0x4a,0x91,0x91,0xca,0xd0,0xfe,0xcc,0x89,0x99,0x6b,0xbc,0xb4,0xf7,0xf3,0x4a,0xb9, 0x0c,0x25,0x43,0xf9,0xf1,0x12,0xe1,0xd9,0x39,0xb2,0x8d,0x59,0xd2,0x92,0xc6,0x38, 0x06,0xcf,0x75,0x51,0x55,0x8c,0x6b,0xc8,0xe4,0x33,0x54,0xab,0x55,0x0e,0x4d,0xd6, 0x08,0x82,0x2c,0x27,0x8f,0xb7,0xf1,0xfa,0x52,0xc7,0x73,0xe7,0xec,0xcd,0x1f,0x58, 0x38,0x92,0x5f,0x94,0xde,0xb2,0x69,0x46,0x34,0xf4,0x54,0x46,0x2a,0xc1,0x9b,0xd3, 0x9d,0x85,0x65,0xd6,0xf1,0x67,0x1a,0x4b,0x8b,0x75,0x9d,0x35,0x24,0x4f,0x28,0x75, 0x01,0x9f,0x43,0xf9,0x1c,0xf0,0x02,0xb0,0x16,0x18,0x42,0xa4,0x88,0x70,0x76,0x6a, 0xac,0xea,0x99,0x58,0x2b,0x88,0xd4,0x6c,0xca,0xb9,0x11,0xd5,0xe1,0x74,0x68,0x67, 0xa9,0x30,0x0b,0xf4,0x43,0x24,0x53,0x89,0xcf,0xbc,0xc8,0x7b,0x0e,0x47,0x91,0xeb, 0x7c,0x85,0x28,0xfe,0xc7,0x78,0xeb,0xfe,0x19,0x88,0xec,0x74,0x0b,0xa6,0xc0,0xf1, 0xd6,0x74,0x9d,0x11,0x9c,0xbe,0xe4,0x8c,0x7b,0x56,0xfc,0xe4,0xae,0xb7,0x4e,0x6c, 0x2d,0xdd,0x43,0x0d,0xa4,0xc5,0x21,0x65,0x52,0x71,0xb0,0xbf,0xea,0x54,0x07,0xcb, 0xc4,0xe9,0x18,0x0d,0x15,0xd7,0x73,0x49,0xa5,0x52,0x64,0xf3,0x19,0xe2,0xd8,0x72, 0xe0,0x60,0x89,0xf2,0xfe,0x0a,0xd3,0x4a,0xad,0x5c,0x3c,0xd4,0xcd,0x9b,0x86,0x9b, 0xbf,0xdd,0xe5,0xe4,0xfe,0xb2,0x38,0xe1,0x15,0x82,0x38,0x18,0xaf,0x05,0xfe,0x66, 0x6d,0x4a,0xa1,0x2d,0x99,0x61,0xb1,0xf6,0xdb,0x39,0x6b,0x3e,0x50,0xcb,0xb9,0x07, 0x6d,0x64,0x93,0x76,0x36,0x11,0x76,0x06,0xf0,0x35,0xe0,0x32,0xe0,0xe4,0x63,0xc2, 0xe1,0x71,0x37,0xb4,0x7f,0xad,0x22,0xab,0x14,0x7c,0x4d,0xbb,0x10,0x59,0x34,0x88, 0x13,0x12,0x24,0x72,0x9e,0xc4,0xf6,0x4e,0x2c,0x6f,0x46,0xf8,0x28,0x7a,0x64,0x9a, 0x09,0x8a,0x00,0x17,0x23,0x02,0xb1,0xfd,0x34,0xf0,0x59,0x59,0xad,0x4f,0x1c,0x17, 0x80,0x22,0x45,0xfa,0xfd,0xfe,0xb6,0x2b,0xbf,0xf8,0x85,0xdb,0x4b,0xfb,0xc6,0xb2, 0xa7,0x9c,0x3f,0xff,0xa1,0x05,0x6f,0x5d,0xb4,0xea,0xef,0x3f,0xf7,0xcd,0x9f,0x87, 0x35,0xdf,0xcd,0x2f,0x68,0x22,0x8e,0x62,0xb4,0x2e,0xb0,0x8a,0x12,0xfb,0x31,0xa9, 0xa0,0x89,0xbe,0x4a,0x87,0x2e,0xdd,0xd5,0x20,0x17,0x1d,0x68,0x61,0x66,0x2d,0xf3, 0x3f,0xc6,0xdb,0xcd,0xcf,0x9d,0xaa,0x90,0x2d,0xf3,0xfa,0xc8,0xd1,0x55,0x75,0x61, 0x6e,0x04,0x3e,0x78,0x38,0x46,0xc3,0x8c,0x83,0x1b,0xd8,0xa4,0xa5,0x7d,0x31,0x99, 0xfb,0x9f,0xc0,0x8f,0xeb,0x3f,0x5f,0x08,0x1c,0x4d,0x5a,0x0a,0xb6,0x21,0x0d,0x71, 0x8c,0xa9,0x84,0x09,0x13,0x4c,0x96,0x87,0x52,0x46,0x48,0x01,0x9b,0x81,0xff,0x8b, 0xd0,0x80,0xf2,0x89,0x63,0xae,0xbb,0x13,0x38,0x41,0x56,0xe9,0xf1,0x49,0x93,0xa2, 0xb4,0xd0,0xc2,0x6e,0x76,0xb3,0x8b,0xdd,0x34,0xd0,0x40,0x2d,0xae,0x71,0xc5,0x15, 0x7f,0xa2,0x66,0x4a,0x0a,0x6f,0x8d,0x4b,0xd8,0x1f,0x90,0xbe,0x38,0x47,0x75,0x64, 0x1c,0x0e,0xc1,0xac,0x93,0x16,0x8f,0xbe,0xa7,0x70,0xe6,0x0d,0x17,0xdd,0x55,0x7d, 0xb0,0x67,0x4b,0xf9,0x36,0x93,0xcf,0xde,0x38,0x94,0x8f,0x3f,0x18,0x68,0x44,0x61, 0x02,0xac,0xe1,0x33,0x2a,0x5c,0x03,0x6c,0x44,0x98,0x77,0x6c,0xb2,0x0a,0xd3,0x0e, 0x6e,0x78,0x5c,0x00,0xea,0xaa,0x72,0x3b,0xf0,0xae,0x97,0x7e,0x6a,0xb3,0x1e,0x58, 0x8b,0xa9,0x45,0xc7,0x02,0x00,0x70,0x39,0xf0,0xd3,0x97,0x5c,0x67,0x3d,0x09,0x53, 0x39,0x19,0x91,0x7d,0xc4,0xb6,0xc7,0x28,0xc7,0x7f,0x19,0x0c,0x13,0x4c,0x70,0x90, 0x43,0x04,0xe5,0x80,0x6c,0x25,0xcb,0xe9,0xce,0x69,0xa9,0x79,0x0b,0x17,0xec,0xb7, 0xcf,0x06,0xf8,0x9b,0x2a,0x58,0x22,0xaa,0xc3,0xe3,0xcc,0x6e,0x9d,0x37,0xf9,0xd7, 0x97,0x7f,0xf5,0x3b,0xd7,0x5e,0x7d,0xdd,0x8c,0x2b,0x2a,0x27,0x7d,0xaa,0xf3,0x89, 0xc1,0x65,0xe5,0x34,0x8c,0x99,0x70,0xb7,0x17,0x18,0x0a,0x15,0x87,0xd8,0x51,0x54, 0xf8,0x48,0x92,0x99,0x65,0x9b,0x11,0xea,0x02,0x27,0x42,0x7b,0x61,0x9c,0xf4,0xf4, 0x06,0x34,0x95,0x0c,0x64,0xeb,0x2e,0x9d,0x70,0x75,0xa1,0xf4,0x32,0x60,0x04,0x4c, 0x2d,0xc4,0x04,0xf1,0x4b,0x95,0x07,0x78,0x6f,0xfd,0x7d,0x88,0xc4,0x8b,0x04,0x38, 0x15,0x98,0x0b,0xf4,0x13,0xdb,0x6e,0x52,0xee,0x39,0xf2,0x88,0x3e,0xf6,0xd2,0x2f, 0x02,0x60,0x30,0x38,0x38,0x3c,0x5b,0x5b,0x87,0xe7,0x79,0x9c,0xe8,0xcc,0x24,0x4b, 0x8e,0xcd,0xe5,0xcd,0x27,0x7d,0xe3,0xfb,0x7f,0xbb,0xfc,0xe0,0xa1,0x83,0x7d,0x53, 0xbb,0xbb,0xb6,0x5e,0x7a,0xc6,0x07,0xee,0x7b,0xe7,0xd9,0xef,0xfc,0x5f,0x79,0xb7, 0xfb,0xe0,0xe0,0x5d,0x77,0x93,0x7a,0xf7,0xb5,0xd0,0x9c,0xdb,0xaf,0x69,0xa7,0x13, 0xd5,0x12,0x56,0xdf,0x8d,0x91,0x07,0x11,0x39,0x0d,0x78,0x0a,0x80,0xd8,0xee,0x0f, 0x3a,0x0a,0xb3,0xbc,0x6a,0x58,0x31,0xe3,0x35,0xd4,0x3d,0xa6,0x55,0x94,0x04,0x00, 0xa9,0x45,0xe0,0x18,0x10,0xae,0x27,0x8a,0x3f,0x88,0xc8,0x04,0xc2,0x59,0x28,0x1b, 0x8f,0x2b,0xf0,0x8b,0x80,0x91,0x6f,0x89,0xb5,0x7f,0xa1,0x91,0x7d,0x16,0xd7,0x9c, 0x0b,0x8c,0x1b,0x3f,0x42,0x3d,0x07,0x75,0x1d,0x50,0xbd,0x48,0x6b,0xc1,0x6f,0x4c, 0x47,0xf3,0x86,0xdf,0x0a,0xc0,0x3a,0xff,0x39,0x8c,0x31,0xf4,0x79,0x33,0xa8,0x52, 0x21,0x43,0x16,0x83,0x91,0xfe,0x91,0x3d,0xd3,0x0a,0xa6,0xb0,0xfb,0x75,0xcd,0xaf, 0xe3,0xa0,0x1e,0xe4,0x90,0x38,0xe4,0xbf,0xf8,0x4b,0x1a,0xfe,0xe1,0x5e,0xc2,0x19, 0x9d,0x6f,0x24,0xb6,0xf7,0xaa,0xaa,0x23,0x08,0x22,0xfc,0x5a,0xe1,0xed,0xd4,0x7b, 0x46,0x89,0x2c,0x93,0xcd,0xe9,0x91,0x4c,0xa4,0x17,0x3a,0x93,0xc1,0x93,0x9a,0x28, 0x7a,0xa4,0x6e,0x6b,0xca,0x45,0xfc,0x68,0x21,0xf0,0x77,0xc0,0x85,0x2f,0x4e,0xe4, 0xfc,0x15,0x70,0x13,0xb0,0xeb,0x58,0x95,0x81,0x69,0xc0,0xeb,0x81,0xab,0x88,0xed, 0x49,0x51,0xc6,0x2d,0x39,0x4d,0xf9,0x36,0x53,0xaa,0x46,0x5a,0x0d,0xb0,0x8d,0x19, 0xc4,0x8f,0x90,0x28,0x06,0x91,0x3e,0xa2,0x78,0x07,0xd9,0x74,0xe8,0xfe,0x56,0x34, 0x8f,0x59,0x2e,0x2e,0x63,0xd1,0x18,0x8d,0x6e,0x41,0x8b,0xc5,0xd6,0xdd,0xe3,0x07, 0xc6,0xd8,0x95,0xdb,0x05,0x91,0x22,0xb9,0x66,0xb4,0x3d,0x8f,0xe2,0x80,0xd5,0x07, 0x51,0xe6,0x8a,0xeb,0x7c,0x07,0xd5,0x8b,0x62,0x6b,0xdf,0x21,0xca,0x3e,0x03,0x1f, 0x55,0x91,0x0e,0x4d,0x39,0xef,0xc9,0x97,0xfc,0x77,0xaa,0xc8,0x13,0xea,0x3a,0x4f, 0xa1,0xba,0x9c,0x24,0x59,0xc5,0xc0,0xa9,0x84,0xf1,0x85,0xc0,0xa2,0xc3,0xbb,0x6a, 0x31,0x8a,0x83,0x1c,0xc6,0xe7,0xef,0xea,0xc0,0x80,0xea,0x0e,0x44,0x26,0x49,0x9e, 0x3c,0xee,0x39,0x8c,0x44,0x2c,0x20,0x22,0x1f,0x30,0x51,0x1c,0x39,0x61,0x4c,0x79, 0x46,0x2b,0x13,0x0b,0xba,0xc9,0x3f,0xd3,0x4f,0xc3,0xae,0x11,0xac,0xe7,0xfc,0x19, 0xae,0x03,0x61,0xb4,0xef,0xf7,0x02,0x20,0xb9,0x81,0xe0,0xc7,0x3e,0x93,0xd5,0x49, 0xa2,0x38,0x42,0x10,0xd4,0x28,0x82,0x81,0x52,0x8d,0xba,0x60,0x80,0x6e,0x01,0x96, 0x81,0x84,0xa8,0xba,0x9a,0x49,0x5d,0xaa,0xc8,0xc3,0xf8,0x21,0x38,0xe6,0xdf,0x55, 0x99,0x89,0xea,0xf7,0x50,0xbd,0x08,0x38,0xfd,0x28,0xdb,0x03,0xb1,0x16,0x11,0x21, 0x46,0x09,0xd1,0x31,0x07,0xe9,0x07,0x86,0x10,0xb6,0xa9,0xc8,0x30,0xca,0x1c,0x51, 0x9d,0x8b,0x63,0xfa,0xb0,0xea,0x1d,0x95,0x2d,0x01,0x4b,0x1d,0xb3,0xd5,0x8d,0xec, 0xdd,0x3a,0x5c,0x86,0x30,0x46,0x0b,0x19,0xb4,0x90,0x21,0xca,0xb8,0xa0,0xfa,0x61, 0xe0,0xf3,0xf5,0xaf,0x7c,0xf9,0xf7,0x06,0xe0,0x65,0x4b,0x95,0x38,0xd3,0x42,0xea, 0xd9,0xcd,0x64,0xbf,0xbd,0x8a,0xa8,0x29,0x8f,0x86,0x71,0xe2,0xd1,0x61,0x3c,0x0b, 0xd7,0xb8,0xc6,0x18,0xac,0x91,0x5e,0xeb,0xb9,0x98,0x30,0x3a,0xbc,0x53,0xb3,0x3d, 0x01,0x88,0x3f,0x07,0xbe,0xf3,0x62,0x94,0x05,0x15,0xb9,0x4b,0xe0,0x86,0x34,0x72, 0x87,0x20,0x13,0x1c,0xde,0x18,0x33,0xd4,0xbb,0x4d,0x41,0x33,0x2e,0x52,0x8d,0xba, 0x51,0xfd,0x14,0xc2,0x17,0xac,0x26,0xbb,0x6e,0x8e,0x32,0xaa,0x46,0xc0,0x18,0xc4, 0x81,0x28,0x8e,0x89,0xf7,0x8f,0x2e,0x4e,0x1d,0x9a,0xf8,0x02,0x46,0xfe,0xa8,0x1e, 0x4b,0xbf,0x04,0x6e,0x7c,0xc5,0x00,0xa8,0x6b,0x10,0x1b,0x90,0xbb,0x6e,0x03,0xa9, 0xae,0x0e,0xe2,0x93,0x5a,0x21,0x56,0x8c,0x31,0x44,0x1a,0x57,0x2a,0x5b,0xf6,0x92, 0xa9,0x46,0x38,0x93,0x7a,0x95,0x9a,0xf0,0x06,0x8c,0x40,0x7c,0xcc,0x28,0x2b,0x29, 0x8b,0x87,0x50,0xae,0xaf,0x7f,0x52,0xc3,0xea,0x25,0x18,0xf9,0x8d,0x18,0xc1,0xc4, 0x16,0x5b,0x1f,0xc7,0x27,0x37,0x7c,0x11,0x52,0x00,0xfb,0x50,0xae,0x44,0xe4,0x69, 0xd0,0x5b,0x5d,0x04,0x2b,0x2c,0xb0,0x86,0x8f,0x3b,0xc2,0x8e,0xd8,0x33,0x6f,0x73, 0x77,0x0f,0xfd,0x51,0xcb,0xa6,0x81,0xa9,0xd9,0x48,0xb0,0x69,0x17,0x54,0xaf,0x41, 0xe4,0xb3,0xa8,0xf2,0xca,0x01,0x70,0x1a,0x30,0xeb,0xb7,0xa3,0xff,0xfa,0x18,0x61, 0x7b,0x01,0xf6,0x0c,0x91,0xec,0xd7,0x09,0x0a,0x03,0xe9,0xd0,0x2e,0x47,0xb9,0x40, 0x8d,0x9c,0xa8,0x22,0xf7,0x89,0xf2,0x31,0x12,0xeb,0x1f,0x55,0x48,0xe4,0x06,0xd0, 0x05,0x24,0xae,0x79,0x33,0xae,0x49,0x7a,0x74,0x11,0xac,0xe7,0x1c,0xdd,0xe3,0x93, 0x7a,0xd9,0xd4,0xa4,0xab,0x94,0xc8,0x22,0x69,0x17,0xa9,0x86,0x58,0xd5,0x99,0xc7, 0x3c,0x56,0x90,0x36,0x41,0xfc,0x43,0xac,0x12,0x3b,0x86,0x7c,0x39,0xc2,0x88,0xb3, 0x25,0x4a,0xc9,0x0a,0x54,0xbf,0x05,0xec,0x3e,0x7c,0xfb,0x57,0x0c,0x80,0x90,0xc2, 0xdd,0x32,0x8a,0x8e,0x4d,0xa0,0x39,0x17,0xad,0xca,0x31,0x8a,0x81,0x49,0x79,0x97, 0xa8,0xab,0xcf,0x6b,0x35,0xe8,0x13,0xc7,0xbc,0x09,0x23,0xdb,0x80,0x7f,0x01,0xae, 0x03,0xf6,0x0b,0xf8,0xa8,0x66,0xeb,0xbb,0x91,0x48,0x14,0xcf,0x0f,0xba,0x9a,0x1d, 0xb7,0xec,0xc7,0xe2,0x47,0xd8,0x7c,0x06,0xa9,0xf8,0x87,0xb3,0xf7,0x91,0xdd,0x69, 0x2c,0x88,0x2a,0xea,0x38,0xc4,0xc2,0x87,0x8c,0xea,0xd5,0x88,0x24,0xa4,0x48,0xea, 0xb3,0xc1,0x5c,0x6a,0x8b,0x44,0xf1,0x4f,0xad,0xea,0x4d,0x56,0x64,0xef,0xf1,0xe4, 0x7f,0xc5,0x00,0x58,0x94,0xf4,0x40,0x15,0x72,0x4d,0xd8,0xa9,0x2d,0x49,0x10,0x1e, 0xbb,0x54,0x27,0x25,0xe3,0xce,0xb5,0x63,0x93,0xd7,0x33,0x52,0x7e,0x2f,0xae,0x01, 0x63,0x2e,0x47,0xf5,0x72,0x10,0x62,0xd1,0xfa,0xd0,0x58,0x92,0xb9,0xa9,0x91,0xc5, 0x76,0xbc,0xf2,0x02,0x91,0x7e,0x14,0x47,0x1e,0x4e,0x06,0x9d,0xc7,0xb9,0xb1,0xc1, 0x41,0x39,0x33,0x08,0x82,0x2f,0x58,0x8d,0xdf,0x99,0x13,0x27,0x79,0x0e,0xc3,0x31, 0x88,0xd5,0x95,0x92,0x4b,0x7f,0x4d,0x9a,0xf3,0x0f,0xd8,0xc1,0xd1,0xff,0x54,0xfe, 0x57,0x9e,0x04,0xeb,0x37,0x4d,0x9e,0xed,0x3b,0xce,0x98,0x3a,0xb6,0x68,0x28,0x35, 0x67,0x46,0xc7,0x25,0xda,0xde,0xfc,0x61,0xbb,0x7d,0xe0,0x1d,0x40,0x2f,0xc6,0x74, 0x01,0x0d,0xb1,0x6a,0x1c,0xa3,0xd9,0x34,0x92,0x3c,0x97,0x62,0x0c,0x99,0xc9,0xf0, 0x44,0x85,0x95,0x9a,0x72,0x9e,0xa3,0x16,0xdc,0x8c,0xd5,0xc7,0x81,0x08,0xc5,0x45, 0x75,0x16,0xb0,0x04,0x91,0x65,0x1a,0xc5,0x3d,0x29,0x55,0x44,0x1c,0xac,0xb5,0x1b, 0x48,0xb9,0xf7,0x38,0xdd,0x6d,0x37,0xd9,0x7d,0xc3,0x09,0xe1,0xaa,0xc7,0xc3,0x6b, 0x0e,0xc0,0x71,0x2d,0x74,0xec,0x8a,0x92,0xbe,0x5c,0x9a,0x72,0x3f,0x93,0x94,0xf7, 0x33,0x8d,0x2d,0x92,0xf6,0xc0,0x5a,0xc7,0x0b,0x89,0xd3,0x90,0xb5,0xaa,0x6f,0x50, 0x91,0x65,0xc0,0x69,0xea,0x98,0x79,0x40,0xa3,0x44,0x76,0xbe,0x84,0xfe,0x7c,0x4c, 0x9d,0x29,0xaa,0x05,0x6b,0x21,0x88,0x20,0xe5,0x25,0x5b,0xf2,0xc8,0x93,0x9a,0x84, 0xd3,0x0f,0x30,0x82,0x49,0xb9,0x49,0x91,0x51,0xe5,0x77,0xf9,0x57,0xb3,0x57,0x07, 0x80,0xdf,0xb6,0x44,0x92,0x44,0x16,0x44,0x2f,0x15,0x2a,0x86,0x23,0x8f,0x56,0xac, 0x00,0x56,0x60,0x04,0x2c,0x45,0x54,0x2f,0x40,0xe4,0x62,0x44,0x4e,0x04,0x3a,0x80, 0x2c,0xaa,0x8a,0xeb,0x56,0x68,0x6e,0x38,0x40,0xc5,0x5f,0x41,0x10,0xdd,0x8c,0x91, 0x4d,0x47,0xae,0xa6,0xa0,0xc7,0xf3,0xc2,0xff,0x4c,0xb4,0xff,0xfe,0xdf,0xe1,0xff, 0xe2,0xeb,0xbf,0x01,0xf8,0x43,0x0b,0xf0,0x87,0x5e,0xff,0x01,0xdd,0xdc,0xff,0x0a, 0x40,0x5c,0x66,0xd9,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, }; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__img_fanpico_png = 1; #endif static const unsigned char FSDATA_ALIGN_PRE data__img_fanpico_png[] FSDATA_ALIGN_POST = { /* /img/fanpico.png (17 chars) */ 0x2f,0x69,0x6d,0x67,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2e,0x70,0x6e,0x67, 0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Content-Length: 3077 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x33,0x30,0x37,0x37,0x0d,0x0a, /* "Last-Modified: Sat, 24 Sep 2022 22:39:16 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x61,0x74,0x2c,0x20,0x32,0x34,0x20,0x53,0x65,0x70,0x20,0x32,0x30,0x32,0x32,0x20, 0x32,0x32,0x3a,0x33,0x39,0x3a,0x31,0x36,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Content-Type: image/png " (27 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x69,0x6d, 0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x0d,0x0a,0x0d,0x0a, /* raw file data (3077 bytes) */ 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, 0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x47,0x08,0x03,0x00,0x00,0x00,0xa7,0x1c,0x30, 0xbc,0x00,0x00,0x01,0xd7,0x50,0x4c,0x54,0x45,0x00,0x00,0x00,0xff,0xff,0xff,0x27, 0x27,0x27,0x51,0x50,0x51,0x6f,0x6e,0x6f,0x45,0x46,0x45,0xc5,0xc5,0xc5,0xb9,0xb9, 0xb9,0xb1,0xb1,0xb1,0xa4,0xa4,0xa4,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9a,0x9a,0x9a, 0x99,0x99,0x99,0x96,0x96,0x96,0x95,0x95,0x95,0x94,0x94,0x94,0x93,0x93,0x93,0x92, 0x92,0x92,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8e,0x8e,0x8e,0x8c,0x8c,0x8c,0x8b,0x8b, 0x8b,0x8a,0x8a,0x8a,0x87,0x87,0x87,0x85,0x85,0x85,0x84,0x84,0x84,0x83,0x83,0x83, 0x82,0x82,0x82,0x81,0x81,0x81,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7d, 0x7d,0x7d,0x7b,0x7b,0x7b,0x7a,0x7a,0x7a,0x79,0x79,0x79,0x78,0x78,0x78,0x77,0x77, 0x77,0x76,0x76,0x76,0x75,0x75,0x75,0x74,0x74,0x74,0x73,0x73,0x73,0x71,0x71,0x71, 0x70,0x70,0x70,0x6f,0x6f,0x6f,0x6e,0x6e,0x6e,0x6d,0x6d,0x6d,0x6c,0x6c,0x6c,0x6b, 0x6b,0x6b,0x6a,0x6a,0x6a,0x69,0x69,0x69,0x68,0x68,0x68,0x67,0x67,0x67,0x66,0x66, 0x66,0x65,0x65,0x65,0x64,0x64,0x64,0x63,0x63,0x63,0x62,0x62,0x62,0x61,0x61,0x61, 0x60,0x60,0x60,0x5f,0x5f,0x5f,0x5e,0x5e,0x5e,0x5d,0x5d,0x5d,0x5c,0x5c,0x5c,0x5b, 0x5b,0x5b,0x5a,0x5a,0x5a,0x59,0x59,0x59,0x58,0x58,0x58,0x57,0x57,0x57,0x56,0x56, 0x56,0x55,0x55,0x55,0x54,0x54,0x54,0x53,0x53,0x53,0x52,0x52,0x52,0x51,0x51,0x51, 0x50,0x50,0x50,0x4f,0x4f,0x4f,0x4e,0x4e,0x4e,0x4d,0x4d,0x4d,0x4c,0x4c,0x4c,0x4b, 0x4b,0x4b,0x4a,0x4a,0x4a,0x49,0x49,0x49,0x48,0x48,0x48,0x47,0x47,0x47,0x46,0x46, 0x46,0x45,0x45,0x45,0x44,0x44,0x44,0x43,0x43,0x43,0x42,0x42,0x42,0x41,0x41,0x41, 0x40,0x40,0x40,0x3f,0x3f,0x3f,0x3e,0x3e,0x3e,0x3d,0x3d,0x3d,0x3c,0x3c,0x3c,0x3b, 0x3b,0x3b,0x3a,0x3a,0x3a,0x39,0x39,0x39,0x38,0x38,0x38,0x37,0x37,0x37,0x36,0x36, 0x36,0x35,0x35,0x35,0x34,0x34,0x34,0x33,0x33,0x33,0x32,0x32,0x32,0x31,0x31,0x31, 0x30,0x30,0x30,0x2f,0x2f,0x2f,0x2e,0x2e,0x2e,0x2d,0x2d,0x2d,0x2c,0x2c,0x2c,0x2b, 0x2b,0x2b,0x2a,0x2a,0x2a,0x29,0x29,0x29,0x28,0x28,0x28,0x26,0x26,0x26,0x25,0x25, 0x25,0x24,0x24,0x24,0x23,0x23,0x23,0x22,0x22,0x22,0x21,0x21,0x21,0x20,0x20,0x20, 0x1f,0x1f,0x1f,0x1e,0x1e,0x1e,0x1d,0x1d,0x1d,0x1c,0x1c,0x1c,0x1b,0x1b,0x1b,0x1a, 0x1a,0x1a,0x19,0x19,0x19,0x18,0x18,0x18,0x17,0x17,0x17,0x16,0x16,0x16,0x15,0x15, 0x15,0x14,0x14,0x14,0x13,0x13,0x13,0x12,0x12,0x12,0x11,0x11,0x11,0x10,0x10,0x10, 0x0f,0x0f,0x0f,0x0e,0x0e,0x0e,0x0d,0x0d,0x0d,0x0c,0x0c,0x0c,0x0b,0x0b,0x0b,0x0a, 0x0a,0x0a,0x09,0x09,0x09,0x08,0x08,0x08,0x07,0x07,0x07,0x06,0x06,0x06,0x05,0x05, 0x05,0x04,0x04,0x04,0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x01,0xff,0xff,0xff, 0x60,0xc5,0xca,0xac,0x00,0x00,0x00,0x9d,0x74,0x52,0x4e,0x53,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xcb,0xfc,0xbc,0x4c,0x00,0x00,0x00, 0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01,0x00,0x9a, 0x9c,0x18,0x00,0x00,0x09,0x2b,0x49,0x44,0x41,0x54,0x58,0x85,0xed,0x98,0x6b,0x90, 0x5c,0x45,0x15,0xc7,0xff,0xdd,0xf7,0x3d,0xcf,0x9d,0xe7,0x6e,0x76,0x37,0xcb,0x0a, 0x04,0xf2,0xe0,0x95,0x98,0x84,0xa7,0x14,0x08,0x84,0x87,0x90,0x52,0xab,0x10,0x2c, 0xc5,0xa2,0xac,0x25,0xbc,0x94,0x42,0x12,0x44,0x57,0x94,0x04,0x90,0xac,0x79,0x48, 0x88,0x20,0x18,0xa2,0x7c,0xb0,0x84,0x92,0x92,0x8a,0x15,0x8a,0x47,0x09,0x56,0xac, 0x12,0x4a,0x50,0x2a,0x21,0x04,0xb3,0x26,0xe6,0xb1,0x61,0x9f,0xec,0xec,0xcc,0xce, 0xcc,0xbd,0x3b,0xf7,0xd1,0xf7,0x76,0xfb,0x61,0x67,0x36,0xbb,0x49,0xc8,0x0c,0x16, 0x1f,0xfc,0x60,0x7f,0xea,0x39,0xe7,0xf4,0x6f,0xfe,0xdd,0x7d,0xef,0x39,0xdd,0x97, 0x6c,0xc5,0x67,0xdb,0xe8,0x67,0xcc,0xfb,0x3f,0xf0,0x33,0x68,0x72,0x1d,0xff,0x8b, 0x63,0x42,0x21,0x94,0x99,0x99,0x10,0x9c,0x8f,0x45,0x2c,0xf9,0xb5,0xff,0x0a,0xf8, 0x22,0x2a,0x36,0x21,0x3c,0x88,0x8b,0x70,0xd4,0xf0,0x84,0x20,0xb4,0xc5,0x80,0x1b, 0x9f,0xb3,0xef,0xcc,0xc3,0x9f,0x4a,0xe1,0x8b,0xa3,0x2a,0x91,0x14,0x02,0x49,0x21, 0xe1,0x54,0x72,0xc2,0xaa,0xec,0xd3,0xcb,0xfc,0xf4,0x45,0xcd,0x56,0x99,0x49,0x12, 0x2d,0x0e,0x7f,0xae,0xc0,0xcf,0xab,0x0b,0x24,0x5b,0x01,0xac,0x59,0xc8,0x45,0x46, 0x63,0x1e,0x75,0x2b,0x01,0x84,0x40,0x60,0xcc,0x29,0xbe,0xf6,0x30,0x80,0x83,0xcf, 0xff,0x18,0xe8,0xb9,0x31,0x36,0x54,0x76,0xa8,0x5a,0x08,0xfb,0xa3,0x2a,0xad,0x37, 0x67,0xb2,0x15,0xd8,0xd1,0xb6,0xa3,0xad,0xb5,0x58,0x34,0x19,0xd7,0x75,0x49,0x93, 0x08,0x9f,0x1d,0xde,0xb6,0x12,0x00,0x5e,0xff,0xc3,0x03,0x73,0x00,0xe0,0x8d,0x45, 0xa3,0x25,0x8b,0x22,0x90,0x4a,0x6e,0x43,0xc0,0xf2,0x6b,0x37,0xc1,0x79,0x3b,0x47, 0x52,0xe1,0x21,0x16,0x25,0x4c,0x74,0xe6,0xae,0xaa,0x7a,0x8b,0x51,0x09,0x00,0xf0, 0xec,0xb5,0xac,0x50,0xa4,0x41,0x61,0x96,0x9f,0xab,0x07,0xa4,0x00,0xbc,0x0e,0x7c, 0x3f,0x88,0x4b,0xf1,0x45,0x0b,0x52,0x13,0x01,0x78,0xfb,0xce,0x1a,0x0f,0xcf,0xde, 0xbe,0x1a,0x00,0xf0,0x61,0x74,0x6d,0x2a,0xc1,0x69,0x7a,0xc4,0xad,0x83,0x03,0xa4, 0xe5,0xc0,0x5f,0xcf,0x3d,0xb8,0x90,0x31,0x33,0x48,0x58,0x83,0x4c,0x41,0xf3,0xbb, 0x77,0x4c,0x79,0x2f,0x5e,0x66,0xce,0x03,0x80,0x66,0xba,0x50,0x44,0x5d,0x4f,0xa6, 0x92,0xb3,0xa0,0x01,0x85,0x7d,0x3c,0xcd,0x86,0x2b,0x86,0xf7,0xfe,0x07,0x95,0x08, 0x71,0xc8,0xdc,0x69,0xee,0x6d,0x67,0x03,0x00,0xe6,0x6a,0xb4,0xc4,0xd2,0xb2,0x13, 0x8d,0xd5,0x55,0x48,0x01,0x1c,0x96,0x2b,0x86,0xc1,0x21,0x79,0x22,0x4c,0x3d,0x3d, 0xb5,0xa4,0xf0,0xc7,0x29,0xf7,0xd7,0x19,0x00,0xe0,0x9e,0x07,0xc3,0x3e,0x8c,0x08, 0x0c,0x51,0x6c,0x04,0xd8,0xe3,0xd1,0xd8,0xbc,0x36,0x0a,0x39,0x46,0x18,0x3d,0x33, 0x5d,0x1a,0xbd,0xc8,0x7e,0xaa,0xe6,0x2f,0x02,0xc0,0x9e,0xb5,0x5b,0xdf,0x69,0x35, 0x10,0x8a,0x4a,0x46,0xae,0x11,0x20,0x0a,0xe1,0xca,0x1e,0x2b,0x4a,0x09,0x75,0xe8, 0x69,0xa9,0x09,0xc9,0x18,0xda,0xbf,0x6b,0xbc,0xea,0x4f,0x03,0xc0,0x13,0x19,0xdc, 0x94,0xae,0xf8,0x4a,0x48,0x28,0x5a,0x43,0xc0,0xe1,0x50,0x30,0x38,0x44,0x54,0x94, 0x63,0x1f,0xed,0x8b,0x71,0xd0,0xb8,0x7f,0x6b,0x53,0xd7,0xdb,0x00,0xb0,0x2a,0x04, 0x60,0xfb,0x2f,0x01,0x20,0x6f,0x0b,0x99,0xe8,0x46,0x43,0xc0,0x0f,0x54,0x8b,0x7a, 0x96,0xca,0xfd,0xe6,0x7b,0x6f,0xbe,0x4b,0x78,0x2e,0x8f,0x2b,0x3b,0x36,0x3d,0xd7, 0xf5,0x1b,0xe0,0x54,0x06,0x60,0xfb,0xaf,0x81,0x17,0x54,0x6a,0x71,0x42,0xd4,0xba, 0x0a,0x65,0x00,0xe8,0xe7,0x0e,0x51,0x40,0x49,0x62,0xe7,0x39,0x2f,0x3f,0xdd,0xe7, 0x09,0x89,0xc6,0x59,0x01,0x8f,0xb0,0x37,0xde,0xbe,0xc4,0x00,0x9e,0xc1,0x9d,0xc0, 0x8d,0x07,0xc3,0x15,0x9f,0x50,0x57,0x34,0xa4,0x70,0x7d,0x91,0x29,0x94,0x4b,0x34, 0xbb,0x13,0xb8,0x33,0xa4,0xd2,0x80,0x93,0x58,0x61,0xcd,0xf8,0xd8,0xe9,0xdf,0x9d, 0x95,0xeb,0xdd,0xde,0x75,0x09,0xf0,0x92,0xec,0x19,0x8a,0xc7,0x85,0x5f,0x17,0x38, 0x99,0x6d,0x86,0x24,0x59,0x80,0x86,0x0a,0x9b,0x71,0x43,0xe9,0x70,0x26,0x32,0xcc, 0xa2,0x21,0x37,0x97,0x8e,0xd8,0xc3,0xb6,0x17,0x9e,0x97,0x67,0xf8,0xed,0x2d,0x48, 0xbb,0xb2,0x4d,0x25,0x55,0x6d,0x0c,0x78,0x60,0x9e,0x07,0x4e,0x52,0xef,0x5e,0x0a, 0x7c,0x13,0xc0,0xc7,0xb3,0xf2,0x8e,0x11,0x25,0xb6,0x1d,0x48,0xa4,0x54,0x1a,0xbc, 0xf2,0xc8,0x2d,0x80,0xa5,0x52,0x2a,0xb8,0x5a,0x2f,0x21,0x57,0x4b,0x40,0x6f,0x8c, 0x52,0x4a,0x22,0xfb,0xab,0xc6,0x73,0xd6,0xb6,0xa7,0xf9,0xcf,0x1c,0xa6,0xab,0x42, 0x0e,0x47,0x0c,0x13,0x00,0x26,0x68,0x00,0xc2,0x05,0x6b,0x0c,0x38,0xae,0x52,0x4a, 0x88,0xb4,0x69,0xd2,0xf6,0xd2,0xdd,0x4f,0x6a,0xd9,0xb6,0xb5,0xea,0x66,0x4a,0xe5, 0x88,0xae,0x84,0xbc,0xc4,0x46,0xa0,0x42,0x83,0x00,0x82,0x7b,0x8d,0x01,0x1f,0x77, 0x65,0x22,0xb8,0x7a,0xcf,0xa4,0xed,0x9a,0x2d,0x42,0x09,0x34,0x2d,0xe8,0xa6,0x3c, 0x08,0xb8,0x08,0xe4,0xd2,0x5c,0x20,0xa7,0x0a,0xee,0x0b,0xd2,0xd8,0x83,0x0d,0x8c, 0x86,0x00,0x78,0x69,0x3c,0xb6,0xd7,0xe9,0xea,0x92,0x98,0x50,0x34,0xb9,0x42,0x14, 0xce,0x25,0x4e,0x84,0x80,0x93,0x01,0x06,0x74,0x9b,0x19,0x1a,0x0d,0x35,0x08,0x1c, 0x88,0x50,0x22,0x46,0x96,0x14,0x0e,0xfd,0xdc,0x5f,0xbf,0x21,0xa0,0x3c,0x50,0xb8, 0x27,0x13,0x0e,0x89,0x30,0x4a,0x84,0xec,0x02,0x2e,0x93,0x9a,0x92,0x12,0xa9,0xbb, 0x29,0xd5,0x80,0xde,0x0b,0x89,0x22,0xa0,0xe1,0x09,0xc7,0x23,0x8c,0x09,0x1d,0x44, 0x50,0x22,0x38,0x04,0x31,0xa3,0x32,0x9f,0x50,0x7e,0x71,0xca,0xd5,0xf9,0x4c,0x88, 0x54,0xa2,0x4a,0x83,0x0a,0xbb,0x25,0x41,0x88,0x52,0xc9,0xc9,0x84,0x32,0xbb,0x52, 0x18,0x33,0x4b,0x90,0x41,0x20,0xc0,0xe3,0x94,0xc3,0x6c,0xde,0xbd,0xbd,0x35,0x12, 0x52,0x1c,0xd3,0x97,0x1a,0x04,0xc2,0xa2,0x10,0x02,0x36,0xa5,0x5e,0xc9,0x61,0xcc, 0x1a,0xcb,0x3b,0xb2,0xa0,0x54,0x80,0x48,0x04,0xbe,0x91,0x04,0xe2,0xf9,0x09,0xdd, 0xae,0xb0,0x46,0x37,0x05,0xfb,0xa3,0x42,0x70,0xc9,0xf6,0x89,0xe3,0x08,0xce,0x41, 0xd6,0x9b,0x01,0x21,0x2a,0x11,0x04,0xc4,0x0f,0xcd,0xb6,0xef,0x6e,0x5b,0xc5,0x12, 0x41,0x89,0xd8,0x75,0xb3,0x4d,0x6d,0x91,0x0f,0xcc,0x2d,0x81,0xab,0x8e,0x2b,0x39, 0x0e,0x21,0xa0,0x8f,0xdf,0x55,0x49,0x79,0xc2,0xe8,0xb9,0x93,0x22,0xd8,0xf2,0x0c, 0x45,0xcb,0x42,0xd8,0xd2,0x40,0xd1,0x67,0x75,0xcf,0x42,0xb5,0x80,0x21,0xd9,0x17, 0x5c,0xf6,0x6c,0xc9,0xf3,0x7c,0x16,0x04,0x2b,0x82,0xb6,0x98,0xc2,0xf0,0x50,0x44, 0x55,0x62,0x8f,0x51,0x00,0xf8,0x3d,0x31,0x47,0x2b,0x05,0xab,0x61,0xe0,0x4f,0x2b, 0x82,0x0b,0xea,0x39,0x92,0xa4,0x81,0x4a,0xae,0xbe,0xe0,0x7e,0x16,0x0b,0x71,0xa1, 0xeb,0x72,0x74,0x32,0xe0,0xf2,0x89,0x11,0xd3,0xf5,0x73,0x41,0xa3,0x40,0x8c,0x4b, 0x3c,0x40,0xe0,0x10,0x35,0x62,0x68,0x68,0x9a,0xfb,0x9d,0xa7,0x21,0xe2,0xaa,0x2c, 0xab,0x31,0x25,0xd2,0xf5,0x2a,0xf0,0x7c,0x78,0xb8,0x58,0xe1,0x86,0x5b,0x17,0x28, 0x2d,0xaf,0x76,0x3e,0x8c,0x3a,0x81,0xe4,0x19,0xcd,0x8e,0xa4,0x20,0xd6,0x4a,0xae, 0x11,0xc4,0x2a,0xd9,0x22,0x63,0xe8,0xa4,0xb2,0x6c,0xf3,0x9e,0x4b,0xf5,0x01,0xdb, 0xcc,0x23,0x20,0x99,0xf6,0x46,0x15,0x0e,0x86,0x88,0xe0,0x8a,0xe5,0x4b,0x2d,0x89, 0x78,0x96,0xbb,0x3c,0xe0,0x82,0xa9,0x8f,0x4e,0x50,0x16,0x50,0xef,0xe1,0x55,0xfd, 0xfd,0x16,0xcb,0x09,0xce,0x26,0xfa,0x1a,0x9e,0xf2,0x21,0x43,0x96,0xb9,0x52,0xb1, 0x7e,0xb2,0xeb,0x1f,0x3f,0xf0,0x03,0x02,0xca,0x7c,0x4d,0xfa,0x11,0x11,0x00,0x08, 0xcf,0xab,0x29,0x3a,0xe8,0x0a,0x57,0x4d,0x66,0x1b,0x06,0x3e,0x4a,0x54,0x95,0x2b, 0xfc,0xdf,0x3d,0x17,0x0e,0x80,0x43,0x08,0xc1,0x04,0x15,0xaa,0xc6,0x09,0x04,0x91, 0x38,0x9f,0x65,0xe6,0xb8,0x23,0x91,0xf9,0x73,0x1a,0x06,0xc2,0x34,0x54,0x4d,0x90, 0xc8,0x83,0xf8,0x2a,0x20,0x04,0x02,0x5f,0x82,0xfc,0x90,0x2f,0x13,0x49,0xd5,0x8c, 0xb0,0x32,0x3c,0x2a,0x0b,0x2e,0x25,0xfb,0x46,0x5e,0xdd,0xd1,0x28,0x70,0x24,0x2c, 0x87,0x29,0x95,0x9e,0xc1,0xf7,0x9e,0x05,0x04,0x18,0x07,0xe4,0x5b,0x07,0x64,0x83, 0x7a,0xcc,0x7a,0xa0,0x77,0x67,0x19,0x3c,0xde,0x7a,0xe8,0x95,0xc5,0xd7,0x2d,0x28, 0x58,0x13,0x15,0xbb,0x62,0x33,0xd1,0x65,0x9e,0x00,0x78,0x34,0x1d,0x15,0x16,0xba, 0x9b,0x6f,0xb3,0x8b,0x00,0x6e,0x7b,0xca,0x47,0xe0,0x43,0x70,0xd6,0x74,0xa4,0xa4, 0xb3,0x80,0xb8,0xd7,0xec,0x76,0x12,0x9a,0x77,0xe8,0x1b,0xcb,0x00,0x64,0xfb,0x9a, 0x49,0x39,0x0b,0x00,0x5b,0xf7,0xb6,0x47,0xc9,0xb1,0xc0,0xa9,0xc7,0x06,0x2f,0x7d, 0xb1,0x72,0xb1,0x62,0x15,0x47,0x3a,0x97,0xc7,0x7a,0x5e,0xbf,0xde,0xf5,0xc1,0x85, 0x34,0x68,0xc1,0x0c,0x60,0xe6,0xcb,0x7a,0x67,0x32,0x39,0x67,0x6c,0xc9,0x16,0xc3, 0xe0,0x77,0x2c,0x7f,0x65,0x77,0x24,0x3a,0x1a,0x03,0x90,0xd1,0xf6,0xf1,0xf0,0x31, 0x40,0x72,0xf4,0xf2,0x58,0x2e,0x3f,0xbc,0x66,0xf8,0x80,0x92,0xd9,0xb6,0x11,0xfd, 0x6d,0x81,0x67,0x33,0x88,0x5e,0x64,0xc7,0x5f,0xf8,0xb2,0x2d,0x52,0x91,0x7d,0x6f, 0x3d,0x05,0x57,0xbe,0xfd,0x68,0xf4,0x47,0x4c,0xe2,0x3c,0xa3,0x07,0x3c,0x6c,0xc6, 0x3e,0x01,0xd8,0x4f,0x1d,0xe4,0x46,0x4d,0xbb,0xcd,0xea,0x5d,0xa0,0xa7,0xd2,0x11, 0x4d,0x1b,0xda,0x9b,0x0e,0x2c,0x42,0x53,0xea,0xdf,0x77,0x3d,0x09,0xa0,0xaf,0x45, 0x9f,0x36,0x72,0xff,0x86,0xee,0x4e,0x00,0x80,0x08,0x4a,0xa9,0x13,0xad,0x21,0x06, 0x4e,0x93,0x43,0x63,0x94,0xe2,0x88,0x32,0xdf,0x2a,0xf4,0xc9,0x99,0x54,0xdc,0xa2, 0x39,0xae,0x6f,0xbb,0xe2,0xbd,0xee,0xb3,0x01,0xe0,0x95,0xa5,0xd3,0x79,0xd8,0x80, 0x6a,0xd1,0x27,0xb2,0xc3,0x8f,0xee,0xed,0x34,0x85,0x4f,0x7f,0xfb,0xfd,0xb1,0x25, 0xbb,0xc6,0x4b,0x10,0x01,0x14,0x39,0x08,0xe0,0xab,0x51,0xc2,0x45,0xc7,0xe0,0xcd, 0x00,0x00,0xcf,0xff,0x48,0xef,0x9c,0x0a,0xfe,0x78,0x9c,0x82,0x84,0x5b,0x6b,0x6a, 0xd7,0x4d,0x61,0xa6,0xa5,0xa3,0xfe,0xbb,0xcf,0xff,0x52,0x44,0x24,0x16,0xe9,0x42, 0x70,0xc7,0x74,0x9d,0x71,0x57,0x72,0x3d,0xe3,0xd4,0xce,0x0b,0x00,0x58,0x7e,0x97, 0x3d,0xaa,0x29,0x5d,0x5d,0xe3,0x39,0xa0,0xdc,0xd5,0x25,0xf4,0xf6,0xd9,0x1d,0x6d, 0xc4,0xaa,0xc9,0x5a,0x3d,0x45,0x39,0xba,0xcb,0xb8,0x62,0x7b,0x4b,0xa1,0xcd,0x1b, 0x3a,0xcb,0xf6,0xe0,0x73,0xe1,0xb3,0x48,0xd2,0x88,0xce,0xbb,0x6c,0xf6,0xa0,0xf0, 0xb4,0xdb,0xaf,0x36,0x96,0xeb,0x4d,0x89,0x18,0x3b,0xf4,0x85,0xf1,0xee,0x33,0x42, 0xf3,0x6f,0x23,0xba,0xaa,0xc8,0x4a,0x94,0x99,0x93,0x65,0xf5,0x87,0x17,0xc8,0xda, 0xf1,0x40,0xd0,0xdf,0x5d,0xfb,0xdc,0xdf,0x16,0xbb,0x83,0x56,0x54,0x93,0x21,0x9d, 0x92,0x89,0xb4,0x2f,0x9d,0x0d,0x38,0x3e,0x31,0xbf,0x55,0x0d,0x9f,0x7f,0x83,0x8d, 0xa5,0xd9,0x44,0x73,0x6d,0x84,0x9a,0x2b,0xf0,0x10,0xd0,0xfb,0xce,0x45,0x89,0x5a, 0x39,0x24,0xc7,0x7e,0x73,0x78,0x7f,0xb7,0x3a,0x6b,0x98,0x85,0x33,0xee,0xbb,0x1d, 0xd7,0x23,0x09,0xa0,0x32,0x9c,0x8d,0x4e,0xf3,0xdb,0xa3,0xa7,0x4c,0x0f,0xaf,0xdc, 0xbb,0x8a,0x42,0x0f,0x9c,0xd6,0x5a,0xcc,0x71,0x85,0x7b,0x8c,0x9e,0x9f,0xf9,0x53, 0x5c,0x7e,0xab,0xfb,0x2a,0x4c,0x56,0xa4,0x92,0x32,0x9d,0x07,0xa5,0x69,0x46,0xf8, 0xc4,0x4a,0xc4,0xb2,0x18,0xd0,0xf2,0xb5,0xa0,0xe3,0x6a,0xc4,0x5b,0xe7,0xa1,0x9f, 0xbc,0xb3,0xac,0x1b,0xd8,0x63,0x95,0x00,0xc0,0xf4,0x67,0xf8,0xf3,0x33,0x46,0x4c, 0xe4,0xa2,0x67,0x64,0x81,0xf6,0x8a,0x54,0xdb,0x9f,0xe9,0x6b,0x08,0x00,0xb8,0x6c, 0x5d,0xff,0x9f,0x57,0x5e,0x0e,0x00,0x81,0x3e,0x92,0x06,0x0e,0xf0,0xf5,0x8b,0xa6, 0xbd,0x0a,0x43,0x25,0x32,0x4d,0xb0,0x38,0xd8,0x3c,0xb9,0x9e,0x19,0x51,0x3b,0x39, 0x1e,0x7f,0x56,0xd9,0x58,0xeb,0xb4,0x76,0x3d,0xba,0xe2,0x11,0x2b,0x20,0x28,0xeb, 0xb5,0x37,0xe1,0x3d,0x25,0x4c,0x4a,0x9a,0xd3,0x56,0xfd,0x39,0x96,0xcf,0xd6,0x3c, 0xc5,0x96,0x6a,0xe7,0xb8,0x4d,0x99,0xd1,0x06,0xd7,0xdc,0x37,0x17,0x28,0x58,0x52, 0x34,0x06,0x20,0x3f,0x26,0x01,0xa1,0x90,0xa2,0xc8,0x60,0x01,0xb8,0xc3,0x4c,0x35, 0x96,0xac,0x46,0x1e,0x49,0x57,0xb3,0xc4,0xc9,0xeb,0x6c,0x0b,0xa2,0x00,0x92,0x1d, 0x69,0x1c,0xea,0x1b,0x3c,0x9c,0xdb,0x18,0xee,0xc8,0xae,0x7e,0x6f,0xdb,0x9b,0xfb, 0x72,0x81,0x2c,0x97,0x72,0x0f,0x61,0x56,0x8d,0xf7,0xaf,0x47,0x6a,0x59,0xe7,0xe4, 0xc7,0xb3,0x60,0xf5,0xe4,0x7d,0x56,0xd3,0xbc,0xfc,0x63,0x58,0xb9,0xd6,0x54,0xd5, 0x2d,0x35,0x5f,0x2e,0x01,0x52,0xce,0x4c,0xca,0x63,0x1b,0x56,0xd4,0xcc,0xc7,0x6d, 0xca,0x8c,0x66,0x0b,0x2f,0x31,0xd9,0x0b,0x89,0x73,0x2f,0x5d,0x77,0x73,0xd3,0x74, 0xf5,0xe4,0xf3,0xeb,0xce,0xcd,0x00,0x58,0xf1,0xf2,0x57,0x9a,0xcb,0xd7,0xd5,0xcc, 0x27,0x57,0xf8,0xe1,0x62,0xfe,0xe6,0x95,0x93,0xdd,0xb0,0x5b,0x3c,0x66,0xb9,0xe3, 0x79,0xd0,0x43,0xf0,0x95,0x9e,0xf8,0xae,0xc5,0xb7,0x4c,0x59,0x4f,0xbe,0x86,0x17, 0x98,0xca,0xd2,0xa1,0xaa,0x44,0xfd,0xd8,0xff,0x1e,0xec,0x01,0x78,0xbc,0x33,0x9e, 0x94,0x16,0x4f,0xb3,0xd6,0x39,0xe2,0x26,0x6c,0x10,0x7f,0x7f,0xe1,0x12,0x60,0xef, 0xa6,0x35,0x33,0x5d,0xa2,0x74,0x5f,0x24,0x2b,0x34,0x24,0x67,0x9a,0xeb,0x9d,0x99, 0x0d,0xa8,0x4e,0x47,0xeb,0x0a,0xdc,0xbf,0x69,0x65,0x51,0x0f,0x1f,0xbd,0x47,0xfd, 0xe5,0xac,0x62,0x3a,0x33,0x74,0x82,0x7b,0xd5,0xc9,0x9f,0xc3,0x6a,0x33,0x15,0xdf, 0x73,0xdc,0x20,0x90,0x33,0x74,0xb4,0xb8,0x08,0xf8,0x67,0xb4,0x45,0x72,0x78,0xf4, 0x84,0xb1,0x75,0x4f,0xf5,0x00,0x50,0x1d,0x6a,0x51,0xee,0xc5,0x9a,0x4a,0xaa,0xf2, 0x38,0x7e,0x35,0x34,0xfb,0x13,0x62,0x1b,0x02,0x56,0x5b,0x04,0xc0,0x90,0xee,0xe7, 0xc7,0xae,0xba,0x09,0x9f,0xc4,0x6b,0x6c,0xca,0x9f,0xa6,0xfd,0xef,0x7f,0x90,0xfc, 0x0f,0x96,0x12,0xfb,0xbe,0xcf,0x81,0x2e,0x0b,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, 0x44,0xae,0x42,0x60,0x82,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__404_html = 2; #endif static const unsigned char FSDATA_ALIGN_PRE data__404_html[] FSDATA_ALIGN_POST = { /* /404.html (10 chars) */ 0x2f,0x34,0x30,0x34,0x2e,0x68,0x74,0x6d,0x6c,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 404 File not found " (29 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x34,0x30,0x34,0x20,0x46,0x69,0x6c, 0x65,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x0d,0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Content-Length: 521 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x35,0x32,0x31,0x0d,0x0a, /* "Last-Modified: Sat, 24 Sep 2022 03:53:07 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x61,0x74,0x2c,0x20,0x32,0x34,0x20,0x53,0x65,0x70,0x20,0x32,0x30,0x32,0x32,0x20, 0x30,0x33,0x3a,0x35,0x33,0x3a,0x30,0x37,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Content-Type: text/html " (27 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a, /* raw file data (521 bytes) */ 0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x3c,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x69, 0x74,0x6c,0x65,0x3e,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x3a,0x20,0x45,0x72,0x72, 0x6f,0x72,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x3c,0x2f,0x68,0x65,0x61,0x64, 0x3e,0x0a,0x3c,0x62,0x6f,0x64,0x79,0x20,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x3d, 0x22,0x77,0x68,0x69,0x74,0x65,0x22,0x20,0x74,0x65,0x78,0x74,0x3d,0x22,0x62,0x6c, 0x61,0x63,0x6b,0x22,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c, 0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a, 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x20,0x76,0x61,0x6c,0x69,0x67,0x6e, 0x3d,0x22,0x74,0x6f,0x70,0x22,0x3e,0x3c,0x74,0x64,0x20,0x77,0x69,0x64,0x74,0x68, 0x3d,0x22,0x38,0x30,0x22,0x3e,0x09,0x20,0x20,0x0a,0x09,0x20,0x20,0x3c,0x61,0x20, 0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69, 0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61, 0x6e,0x70,0x69,0x63,0x6f,0x2f,0x22,0x3e,0x3c,0x69,0x6d,0x67,0x20,0x73,0x72,0x63, 0x3d,0x22,0x2f,0x69,0x6d,0x67,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2e,0x70, 0x6e,0x67,0x22,0x0a,0x09,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3d,0x22,0x30, 0x22,0x20,0x61,0x6c,0x74,0x3d,0x22,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20,0x6c, 0x6f,0x67,0x6f,0x22,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x46,0x61,0x6e,0x50, 0x69,0x63,0x6f,0x20,0x6c,0x6f,0x67,0x6f,0x22,0x3e,0x3c,0x2f,0x61,0x3e,0x0a,0x09, 0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22, 0x35,0x30,0x30,0x22,0x3e,0x09,0x20,0x20,0x0a,0x09,0x20,0x20,0x3c,0x68,0x31,0x3e, 0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x3c,0x2f,0x68,0x31,0x3e,0x0a,0x09,0x20,0x20, 0x3c,0x68,0x32,0x3e,0x34,0x30,0x34,0x20,0x2d,0x20,0x50,0x61,0x67,0x65,0x20,0x6e, 0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x09,0x20, 0x20,0x3c,0x70,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x53,0x6f,0x72,0x72,0x79,0x2c, 0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x67,0x65,0x20,0x79,0x6f,0x75,0x20,0x61,0x72, 0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x77,0x61,0x73, 0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x6f,0x6e,0x20,0x74,0x68, 0x69,0x73,0x0a,0x09,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x20, 0x0a,0x09,0x20,0x20,0x3c,0x2f,0x70,0x3e,0x0a,0x09,0x3c,0x2f,0x74,0x64,0x3e,0x3c, 0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x26,0x6e,0x62,0x73,0x70,0x3b,0x0a,0x09,0x3c, 0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, 0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e, 0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x0a,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__fanpico_css = 3; #endif static const unsigned char FSDATA_ALIGN_PRE data__fanpico_css[] FSDATA_ALIGN_POST = { /* /fanpico.css (13 chars) */ 0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2e,0x63,0x73,0x73,0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Content-Length: 1054 " (18+ bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20, 0x31,0x30,0x35,0x34,0x0d,0x0a, /* "Last-Modified: Sat, 24 Sep 2022 23:27:15 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x61,0x74,0x2c,0x20,0x32,0x34,0x20,0x53,0x65,0x70,0x20,0x32,0x30,0x32,0x32,0x20, 0x32,0x33,0x3a,0x32,0x37,0x3a,0x31,0x35,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Content-Type: text/css " (26 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x63,0x73,0x73,0x0d,0x0a,0x0d,0x0a, /* raw file data (1054 bytes) */ 0x2f,0x2a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20,0x43,0x53,0x53,0x20,0x2a, 0x2f,0x0a,0x0a,0x23,0x62,0x31,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x62,0x61,0x63, 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x31,0x36,0x35,0x36,0x37, 0x3b,0x0a,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64, 0x69,0x75,0x73,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x70, 0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x7d,0x0a, 0x0a,0x23,0x6c,0x31,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x33,0x61,0x33,0x61,0x61,0x3b,0x0a, 0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75, 0x73,0x3a,0x20,0x35,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64, 0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x70, 0x72,0x65,0x74,0x74,0x79,0x20,0x74,0x72,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69, 0x6c,0x64,0x28,0x65,0x76,0x65,0x6e,0x29,0x20,0x74,0x64,0x20,0x7b,0x0a,0x20,0x20, 0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30, 0x31,0x39,0x33,0x36,0x37,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x73,0x63,0x20,0x7b,0x0a, 0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x30,0x30,0x25,0x3b,0x0a, 0x7d,0x0a,0x0a,0x2e,0x73,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2d,0x77,0x65,0x62, 0x6b,0x69,0x74,0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x20, 0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a, 0x20,0x38,0x32,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x65,0x69,0x67,0x68,0x74, 0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64, 0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b, 0x0a,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a, 0x20,0x23,0x64,0x33,0x64,0x33,0x64,0x33,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x75, 0x74,0x6c,0x69,0x6e,0x65,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20, 0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x20,0x30,0x2e,0x37,0x3b,0x0a,0x20, 0x20,0x20,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74,0x2d,0x74,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x2e,0x32,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20, 0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6f,0x70,0x61,0x63, 0x69,0x74,0x79,0x20,0x2e,0x32,0x73,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x73,0x3a,0x68, 0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x61,0x63,0x69, 0x74,0x79,0x3a,0x20,0x31,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x73,0x3a,0x3a,0x2d,0x77, 0x65,0x62,0x6b,0x69,0x74,0x2d,0x73,0x6c,0x69,0x64,0x65,0x72,0x2d,0x74,0x68,0x75, 0x6d,0x62,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2d,0x77,0x65,0x62,0x6b,0x69,0x74, 0x2d,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x6e, 0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63, 0x65,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x77,0x69,0x64, 0x74,0x68,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x65, 0x69,0x67,0x68,0x74,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20, 0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x35, 0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, 0x6e,0x64,0x3a,0x20,0x23,0x34,0x43,0x41,0x46,0x35,0x30,0x3b,0x0a,0x20,0x20,0x20, 0x20,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72, 0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x73,0x3a,0x3a,0x2d,0x6d,0x6f,0x7a,0x2d,0x72,0x61, 0x6e,0x67,0x65,0x2d,0x74,0x68,0x75,0x6d,0x62,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20, 0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20, 0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x0a,0x20, 0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73, 0x3a,0x20,0x35,0x30,0x25,0x3b,0x0a,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67, 0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x34,0x63,0x61,0x66,0x35,0x30,0x3b,0x0a, 0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x70,0x6f,0x69,0x6e, 0x74,0x65,0x72,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, 0x7b,0x0a,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x6e,0x6f, 0x6e,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72, 0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x36,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20, 0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x77,0x68,0x69,0x74,0x65,0x3b,0x0a,0x20, 0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x38,0x70,0x78,0x20, 0x31,0x34,0x70,0x78,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x73,0x6f,0x72, 0x3a,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x62, 0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a, 0x20,0x23,0x34,0x63,0x61,0x66,0x35,0x30,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e,0x62,0x75, 0x74,0x74,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x0a,0x20,0x20,0x20, 0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f, 0x72,0x3a,0x20,0x23,0x30,0x62,0x37,0x64,0x64,0x61,0x3b,0x0a,0x7d,0x0a,0x0a,0x2e, 0x78,0x31,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d, 0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x0a,0x7d,0x0a,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__index_shtml = 4; #endif static const unsigned char FSDATA_ALIGN_PRE data__index_shtml[] FSDATA_ALIGN_POST = { /* /index.shtml (13 chars) */ 0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x73,0x68,0x74,0x6d,0x6c,0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Last-Modified: Fri, 08 Aug 2025 04:17:50 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x46, 0x72,0x69,0x2c,0x20,0x30,0x38,0x20,0x41,0x75,0x67,0x20,0x32,0x30,0x32,0x35,0x20, 0x30,0x34,0x3a,0x31,0x37,0x3a,0x35,0x30,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Content-Type: text/html Expires: Fri, 10 Apr 2008 14:00:00 GMT Pragma: no-cache " (85 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x45,0x78,0x70,0x69,0x72,0x65,0x73, 0x3a,0x20,0x46,0x72,0x69,0x2c,0x20,0x31,0x30,0x20,0x41,0x70,0x72,0x20,0x32,0x30, 0x30,0x38,0x20,0x31,0x34,0x3a,0x30,0x30,0x3a,0x30,0x30,0x20,0x47,0x4d,0x54,0x0d, 0x0a,0x50,0x72,0x61,0x67,0x6d,0x61,0x3a,0x20,0x6e,0x6f,0x2d,0x63,0x61,0x63,0x68, 0x65,0x0d,0x0a,0x0d,0x0a, /* raw file data (2732 bytes) */ 0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x20,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a, 0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0x46,0x61,0x6e,0x50,0x69, 0x63,0x6f,0x3a,0x20,0x3c,0x21,0x2d,0x2d,0x23,0x6e,0x61,0x6d,0x65,0x2d,0x2d,0x3e, 0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69, 0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65, 0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x66,0x61,0x6e,0x70,0x69,0x63, 0x6f,0x2e,0x63,0x73,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x6e, 0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x69,0x63,0x6f,0x6e,0x22,0x20,0x74,0x79,0x70, 0x65,0x3d,0x22,0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x22,0x20,0x68,0x72, 0x65,0x66,0x3d,0x22,0x69,0x6d,0x67,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2d, 0x69,0x63,0x6f,0x6e,0x2e,0x70,0x6e,0x67,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c, 0x6d,0x65,0x74,0x61,0x20,0x68,0x74,0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76,0x3d, 0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x3d,0x22,0x3c,0x21,0x2d,0x2d,0x23,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d, 0x2d,0x3e,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e, 0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63, 0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65, 0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x69,0x6e,0x69,0x74,0x69, 0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x39,0x33,0x2c,0x75,0x73, 0x65,0x72,0x2d,0x73,0x63,0x61,0x6c,0x65,0x61,0x62,0x6c,0x65,0x3d,0x79,0x65,0x73, 0x22,0x3e,0x0a,0x20,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x3c, 0x62,0x6f,0x64,0x79,0x20,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x3d,0x22,0x77,0x68, 0x69,0x74,0x65,0x22,0x20,0x74,0x65,0x78,0x74,0x3d,0x22,0x62,0x6c,0x61,0x63,0x6b, 0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x64, 0x3d,0x22,0x62,0x31,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72, 0x3e,0x0a,0x09,0x3c,0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c, 0x65,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3d,0x30,0x3e,0x0a,0x09,0x20,0x20,0x20, 0x20,0x3c,0x74,0x72,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64, 0x3e,0x0a,0x09,0x09,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, 0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2f,0x22,0x3e,0x0a, 0x09,0x09,0x20,0x20,0x3c,0x69,0x6d,0x67,0x20,0x73,0x72,0x63,0x3d,0x22,0x69,0x6d, 0x67,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f,0x2e,0x70,0x6e,0x67,0x22,0x20,0x62, 0x6f,0x72,0x64,0x65,0x72,0x3d,0x22,0x30,0x22,0x20,0x61,0x6c,0x74,0x3d,0x22,0x46, 0x61,0x6e,0x50,0x69,0x63,0x6f,0x20,0x6c,0x6f,0x67,0x6f,0x22,0x20,0x74,0x69,0x74, 0x6c,0x65,0x3d,0x22,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20,0x6c,0x6f,0x67,0x6f, 0x22,0x3e,0x0a,0x09,0x09,0x3c,0x2f,0x61,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20, 0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, 0x64,0x20,0x76,0x61,0x6c,0x69,0x67,0x6e,0x3d,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d, 0x22,0x3e,0x0a,0x09,0x09,0x3c,0x68,0x32,0x3e,0x3c,0x66,0x6f,0x6e,0x74,0x20,0x63, 0x6f,0x6c,0x6f,0x72,0x3d,0x22,0x23,0x30,0x33,0x61,0x33,0x61,0x61,0x22,0x3e,0x46, 0x61,0x6e,0x50,0x69,0x63,0x6f,0x3a,0x20,0x3c,0x21,0x2d,0x2d,0x23,0x6e,0x61,0x6d, 0x65,0x2d,0x2d,0x3e,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20, 0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72, 0x3e,0x0a,0x09,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09,0x3c, 0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e, 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x09,0x3c,0x74,0x64, 0x3e,0x0a,0x09,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x64,0x74, 0x68,0x3d,0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c, 0x74,0x72,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x76, 0x61,0x6c,0x69,0x67,0x6e,0x3d,0x22,0x74,0x6f,0x70,0x22,0x3e,0x0a,0x09,0x09,0x46, 0x61,0x6e,0x73,0x3a,0x3c,0x62,0x72,0x3e,0x0a,0x09,0x09,0x3c,0x74,0x61,0x62,0x6c, 0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a, 0x09,0x09,0x20,0x20,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22, 0x6c,0x31,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61, 0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x65,0x74,0x74, 0x79,0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,0x25,0x22,0x3e, 0x0a,0x09,0x09,0x09,0x3c,0x74,0x72,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66, 0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x22, 0x3e,0x3c,0x74,0x68,0x3e,0x23,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e, 0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x52,0x50,0x4d,0x26, 0x64,0x61,0x72,0x72,0x3b,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x50,0x57, 0x4d,0x26,0x75,0x61,0x72,0x72,0x3b,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72, 0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66,0x61,0x6e,0x72,0x6f,0x77, 0x31,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66,0x61,0x6e, 0x72,0x6f,0x77,0x32,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23, 0x66,0x61,0x6e,0x72,0x6f,0x77,0x33,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21, 0x2d,0x2d,0x23,0x66,0x61,0x6e,0x72,0x6f,0x77,0x34,0x2d,0x2d,0x3e,0x0a,0x09,0x09, 0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66,0x61,0x6e,0x72,0x6f,0x77,0x35,0x2d,0x2d,0x3e, 0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66,0x61,0x6e,0x72,0x6f,0x77,0x36, 0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66,0x61,0x6e,0x72, 0x6f,0x77,0x37,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x66, 0x61,0x6e,0x72,0x6f,0x77,0x38,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20, 0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c, 0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x09,0x3c,0x2f,0x74,0x61, 0x62,0x6c,0x65,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x72,0x3e, 0x0a,0x09,0x09,0x4d,0x42,0x20,0x46,0x61,0x6e,0x73,0x3a,0x3c,0x62,0x72,0x3e,0x0a, 0x09,0x09,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22, 0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x74,0x72,0x3e,0x3c, 0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6c,0x31,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20, 0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73, 0x3d,0x22,0x70,0x72,0x65,0x74,0x74,0x79,0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d, 0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x74,0x72,0x20,0x73, 0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x20,0x31,0x34,0x70,0x78,0x3b,0x22,0x3e,0x3c,0x74,0x68,0x3e,0x23,0x3c,0x2f,0x74, 0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c, 0x74,0x68,0x3e,0x52,0x50,0x4d,0x26,0x75,0x61,0x72,0x72,0x3b,0x3c,0x2f,0x74,0x68, 0x3e,0x3c,0x74,0x68,0x3e,0x50,0x57,0x4d,0x26,0x64,0x61,0x72,0x72,0x3b,0x3c,0x2f, 0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d, 0x23,0x6d,0x66,0x61,0x6e,0x72,0x6f,0x77,0x31,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09, 0x3c,0x21,0x2d,0x2d,0x23,0x6d,0x66,0x61,0x6e,0x72,0x6f,0x77,0x32,0x2d,0x2d,0x3e, 0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x6d,0x66,0x61,0x6e,0x72,0x6f,0x77, 0x33,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x6d,0x66,0x61, 0x6e,0x72,0x6f,0x77,0x34,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20,0x20, 0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x2f, 0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x09,0x3c,0x2f,0x74,0x61,0x62, 0x6c,0x65,0x3e,0x0a,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64, 0x3e,0x0a,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x76,0x61, 0x6c,0x69,0x67,0x6e,0x3d,0x22,0x74,0x6f,0x70,0x22,0x3e,0x0a,0x09,0x09,0x53,0x65, 0x6e,0x73,0x6f,0x72,0x73,0x3a,0x3c,0x62,0x72,0x3e,0x0a,0x09,0x09,0x3c,0x74,0x61, 0x62,0x6c,0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,0x25,0x22, 0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x69,0x64, 0x3d,0x22,0x6c,0x31,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, 0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x65, 0x74,0x74,0x79,0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x30,0x25, 0x22,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x74,0x72,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d, 0x22,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78, 0x3b,0x22,0x3e,0x3c,0x74,0x68,0x3e,0x23,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68, 0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x54,0x65, 0x6d,0x70,0x20,0x26,0x23,0x78,0x32,0x36,0x30,0x30,0x3b,0x3c,0x2f,0x74,0x68,0x3e, 0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x73,0x65, 0x6e,0x73,0x72,0x6f,0x77,0x31,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d, 0x2d,0x23,0x73,0x65,0x6e,0x73,0x72,0x6f,0x77,0x32,0x2d,0x2d,0x3e,0x0a,0x09,0x09, 0x09,0x3c,0x21,0x2d,0x2d,0x23,0x73,0x65,0x6e,0x73,0x72,0x6f,0x77,0x33,0x2d,0x2d, 0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c, 0x65,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72, 0x3e,0x0a,0x09,0x09,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09,0x20,0x20, 0x20,0x20,0x20,0x20,0x3c,0x62,0x72,0x3e,0x0a,0x09,0x09,0x56,0x69,0x72,0x74,0x75, 0x61,0x6c,0x20,0x53,0x65,0x6e,0x73,0x6f,0x72,0x73,0x3a,0x3c,0x62,0x72,0x3e,0x0a, 0x09,0x09,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22, 0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x74,0x72,0x3e,0x3c, 0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6c,0x31,0x22,0x3e,0x0a,0x09,0x09,0x20,0x20, 0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73, 0x3d,0x22,0x70,0x72,0x65,0x74,0x74,0x79,0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d, 0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x74,0x72,0x20,0x73, 0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a, 0x20,0x31,0x34,0x70,0x78,0x3b,0x22,0x3e,0x3c,0x74,0x68,0x3e,0x23,0x3c,0x2f,0x74, 0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c, 0x74,0x68,0x3e,0x54,0x65,0x6d,0x70,0x20,0x26,0x23,0x78,0x32,0x36,0x30,0x30,0x3b, 0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4f,0x74,0x68,0x65,0x72,0x3c,0x2f, 0x74,0x68,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e, 0x72,0x6f,0x77,0x31,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23, 0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x32,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c, 0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x33,0x2d,0x2d,0x3e,0x0a, 0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x34, 0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e, 0x72,0x6f,0x77,0x35,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23, 0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x36,0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x09,0x3c, 0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x37,0x2d,0x2d,0x3e,0x0a, 0x09,0x09,0x09,0x3c,0x21,0x2d,0x2d,0x23,0x76,0x73,0x65,0x6e,0x72,0x6f,0x77,0x38, 0x2d,0x2d,0x3e,0x0a,0x09,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61, 0x62,0x6c,0x65,0x3e,0x0a,0x09,0x09,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f, 0x74,0x72,0x3e,0x0a,0x09,0x09,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09, 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x0a,0x09,0x20,0x20, 0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62, 0x6c,0x65,0x3e,0x0a,0x09,0x20,0x20,0x3c,0x62,0x72,0x3e,0x0a,0x09,0x3c,0x2f,0x74, 0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20, 0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x09,0x3c,0x74,0x64,0x3e,0x0a, 0x09,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x64,0x74,0x68,0x3d, 0x22,0x31,0x30,0x30,0x25,0x22,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x74,0x72, 0x20,0x76,0x61,0x6c,0x69,0x67,0x6e,0x3d,0x22,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x22, 0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x77,0x69,0x64, 0x74,0x68,0x3d,0x22,0x34,0x35,0x25,0x22,0x3e,0x3c,0x66,0x6f,0x6e,0x74,0x20,0x73, 0x69,0x7a,0x65,0x3d,0x2d,0x31,0x3e,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x2d,0x3c, 0x21,0x2d,0x2d,0x23,0x6d,0x6f,0x64,0x65,0x6c,0x2d,0x2d,0x3e,0x20,0x76,0x3c,0x21, 0x2d,0x2d,0x23,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2d,0x2d,0x3e,0x3c,0x2f,0x66, 0x6f,0x6e,0x74,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20, 0x20,0x3c,0x74,0x64,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,0x30,0x25,0x22, 0x3e,0x3c,0x21,0x2d,0x2d,0x23,0x77,0x61,0x74,0x63,0x68,0x64,0x6f,0x67,0x2d,0x2d, 0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, 0x64,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x34,0x35,0x25,0x22,0x20,0x61,0x6c, 0x69,0x67,0x6e,0x3d,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x3c,0x66,0x6f,0x6e, 0x74,0x20,0x73,0x69,0x7a,0x65,0x3d,0x22,0x2d,0x31,0x22,0x3e,0x3c,0x21,0x2d,0x2d, 0x23,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x2d,0x2d,0x3e,0x3c,0x62,0x72,0x3e, 0x55,0x70,0x74,0x69,0x6d,0x65,0x3a,0x20,0x3c,0x21,0x2d,0x2d,0x23,0x75,0x70,0x74, 0x69,0x6d,0x65,0x2d,0x2d,0x3e,0x3c,0x2f,0x66,0x6f,0x6e,0x74,0x3e,0x3c,0x2f,0x74, 0x64,0x3e,0x0a,0x09,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x09,0x20, 0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x09,0x3c,0x2f,0x74,0x64,0x3e, 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20, 0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x3c,0x2f,0x62,0x6f, 0x64,0x79,0x3e,0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x0a,}; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__status_csv = 5; #endif static const unsigned char FSDATA_ALIGN_PRE data__status_csv[] FSDATA_ALIGN_POST = { /* /status.csv (12 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x63,0x73,0x76,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Last-Modified: Sun, 25 Sep 2022 03:25:39 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x75,0x6e,0x2c,0x20,0x32,0x35,0x20,0x53,0x65,0x70,0x20,0x32,0x30,0x32,0x32,0x20, 0x30,0x33,0x3a,0x32,0x35,0x3a,0x33,0x39,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Expires: Fri, 10 Apr 2008 14:00:00 GMT Pragma: no-cache " (58 bytes) */ 0x45,0x78,0x70,0x69,0x72,0x65,0x73,0x3a,0x20,0x46,0x72,0x69,0x2c,0x20,0x31,0x30, 0x20,0x41,0x70,0x72,0x20,0x32,0x30,0x30,0x38,0x20,0x31,0x34,0x3a,0x30,0x30,0x3a, 0x30,0x30,0x20,0x47,0x4d,0x54,0x0d,0x0a,0x50,0x72,0x61,0x67,0x6d,0x61,0x3a,0x20, 0x6e,0x6f,0x2d,0x63,0x61,0x63,0x68,0x65,0x0d,0x0a, /* "Content-Type: text/plain " (28 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x74,0x65, 0x78,0x74,0x2f,0x70,0x6c,0x61,0x69,0x6e,0x0d,0x0a,0x0d,0x0a, /* raw file data (16 bytes) */ 0x3c,0x21,0x2d,0x2d,0x23,0x63,0x73,0x76,0x73,0x74,0x61,0x74,0x2d,0x2d,0x3e,0x0a, }; #if FSDATA_FILE_ALIGNMENT==1 static const unsigned int dummy_align__status_json = 6; #endif static const unsigned char FSDATA_ALIGN_PRE data__status_json[] FSDATA_ALIGN_POST = { /* /status.json (13 chars) */ 0x2f,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x00,0x00,0x00,0x00, /* HTTP header */ /* "HTTP/1.0 200 OK " (17 bytes) */ 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b,0x0d, 0x0a, /* "Server: FanPico (https://github.com/tjko/fanpico) " (51 bytes) */ 0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x46,0x61,0x6e,0x50,0x69,0x63,0x6f,0x20, 0x28,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, 0x63,0x6f,0x6d,0x2f,0x74,0x6a,0x6b,0x6f,0x2f,0x66,0x61,0x6e,0x70,0x69,0x63,0x6f, 0x29,0x0d,0x0a, /* "Last-Modified: Sun, 25 Sep 2022 20:03:36 GMT" " (46+ bytes) */ 0x4c,0x61,0x73,0x74,0x2d,0x4d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x3a,0x20,0x53, 0x75,0x6e,0x2c,0x20,0x32,0x35,0x20,0x53,0x65,0x70,0x20,0x32,0x30,0x32,0x32,0x20, 0x32,0x30,0x3a,0x30,0x33,0x3a,0x33,0x36,0x20,0x47,0x4d,0x54,0x0d,0x0a, /* "Expires: Fri, 10 Apr 2008 14:00:00 GMT Pragma: no-cache " (58 bytes) */ 0x45,0x78,0x70,0x69,0x72,0x65,0x73,0x3a,0x20,0x46,0x72,0x69,0x2c,0x20,0x31,0x30, 0x20,0x41,0x70,0x72,0x20,0x32,0x30,0x30,0x38,0x20,0x31,0x34,0x3a,0x30,0x30,0x3a, 0x30,0x30,0x20,0x47,0x4d,0x54,0x0d,0x0a,0x50,0x72,0x61,0x67,0x6d,0x61,0x3a,0x20, 0x6e,0x6f,0x2d,0x63,0x61,0x63,0x68,0x65,0x0d,0x0a, /* "Content-Type: application/json " (34 bytes) */ 0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20,0x61,0x70, 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x0d,0x0a, 0x0d,0x0a, /* raw file data (17 bytes) */ 0x3c,0x21,0x2d,0x2d,0x23,0x6a,0x73,0x6f,0x6e,0x73,0x74,0x61,0x74,0x2d,0x2d,0x3e, 0x0a,}; const struct fsdata_file file__img_fanpico_icon_png[] = { { file_NULL, data__img_fanpico_icon_png, data__img_fanpico_icon_png + 24, sizeof(data__img_fanpico_icon_png) - 24, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__img_fanpico_png[] = { { file__img_fanpico_icon_png, data__img_fanpico_png, data__img_fanpico_png + 20, sizeof(data__img_fanpico_png) - 20, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__404_html[] = { { file__img_fanpico_png, data__404_html, data__404_html + 12, sizeof(data__404_html) - 12, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__fanpico_css[] = { { file__404_html, data__fanpico_css, data__fanpico_css + 16, sizeof(data__fanpico_css) - 16, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_HEADER_PERSISTENT, }}; const struct fsdata_file file__index_shtml[] = { { file__fanpico_css, data__index_shtml, data__index_shtml + 16, sizeof(data__index_shtml) - 16, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_SSI, }}; const struct fsdata_file file__status_csv[] = { { file__index_shtml, data__status_csv, data__status_csv + 12, sizeof(data__status_csv) - 12, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_SSI, }}; const struct fsdata_file file__status_json[] = { { file__status_csv, data__status_json, data__status_json + 16, sizeof(data__status_json) - 16, FS_FILE_FLAGS_HEADER_INCLUDED | FS_FILE_FLAGS_SSI, }}; #define FS_ROOT file__status_json #define FS_NUMFILES 7 ================================================ FILE: src/filter_lossypeak.c ================================================ /* filter_lossypeak.c Copyright (C) 2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "fanpico.h" typedef struct lossypeak_context { float peak; int64_t delay_us; float decay; absolute_time_t last_t; absolute_time_t peak_t; uint8_t state; } lossypeak_context_t; void* lossy_peak_parse_args(char *args) { lossypeak_context_t *c; char *tok, *saveptr; float decay, delay; if (!args) return NULL; /* decay parameter (points per second) */ if (!(tok = strtok_r(args, ",", &saveptr))) return NULL; if (!str_to_float(tok, &decay)) return NULL; if (decay < 0.0) return NULL; /* delay parameter (seconds) */ if (!(tok = strtok_r(NULL, ",", &saveptr))) return NULL; if (!str_to_float(tok, &delay)) return NULL; if (delay < 0.0) return NULL; if (!(c = malloc(sizeof(lossypeak_context_t)))) return NULL; c->peak = 0.0; c->delay_us = delay * 1000000; c->decay = decay; c->last_t = get_absolute_time(); update_us_since_boot(&c->peak_t, 0); c->state = 0; return c; } char* lossy_peak_print_args(void *ctx) { lossypeak_context_t *c = (lossypeak_context_t*)ctx; char buf[128]; snprintf(buf, sizeof(buf), "%f,%f", c->decay, (float)(c->delay_us / 1000000.0)); return strdup(buf); } float lossy_peak_filter(void *ctx, float input) { lossypeak_context_t *c = (lossypeak_context_t*)ctx; absolute_time_t t_now = get_absolute_time(); int64_t t_d = absolute_time_diff_us(c->last_t, t_now); if (input >= c->peak) { c->peak = input; c->state = 0; c->peak_t = t_now; } else { if (c->state == 0) { if (c->delay_us > 0) { t_d = absolute_time_diff_us(c->peak_t, t_now); if (t_d > c->delay_us) { c->state = 1; t_d -= c->delay_us; } } else { c->state = 1; } } if (c->state == 1) { float decay = (t_d / 1000000.0) * c->decay; if (input > c->peak - decay) { c->peak = input; } else { c->peak -= decay; } } } c->last_t = t_now; return c->peak; } /* eof :-) */ ================================================ FILE: src/filter_sma.c ================================================ /* filter_sma.c Copyright (C) 2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "fanpico.h" #define SMA_WINDOW_MAX_SIZE 32 typedef struct sma_context { float data[SMA_WINDOW_MAX_SIZE]; double sum; uint8_t index; uint8_t used; uint8_t window; } sma_context_t; void* sma_parse_args(char *args) { sma_context_t *c; char *tok, *saveptr; int window, i; if (!args) return NULL; /* window parameter (samples) */ if (!(tok = strtok_r(args, ",", &saveptr))) return NULL; if (!str_to_int(tok, &window, 10)) return NULL; if (window < 2 || window > SMA_WINDOW_MAX_SIZE) return NULL; if (!(c = malloc(sizeof(sma_context_t)))) return NULL; c->index = 0; c->used = 0; c->window = window; c->sum = 0.0; for(i = 0; i < SMA_WINDOW_MAX_SIZE; i++) c->data[i] = 0.0; return c; } char* sma_print_args(void *ctx) { sma_context_t *c = (sma_context_t*)ctx; char buf[128]; snprintf(buf, sizeof(buf), "%u", c->window); return strdup(buf); } float sma_filter(void *ctx, float input) { sma_context_t *c = (sma_context_t*)ctx; float output; if (c->used < c->window) { /* Ring buffer not yet full */ c->used++; } else { /* Ring buffer is full, discard oldest value. */ c->sum -= c->data[c->index]; } c->data[c->index] = input; c->sum += input; output = c->sum / c->used; //printf("sma: index=%u,window=%u,used=%u,sum=%lf,input=%f,return=%f\n", // c->index, c->window, c->used, c->sum, input, output); /* Point index to next slot in the ring buffer. */ c->index = ((c->index + 1) % c->window); return output; } /* eof :-) */ ================================================ FILE: src/filters.c ================================================ /* filters.c Copyright (C) 2023-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include "pico/stdlib.h" #include "fanpico.h" #include "filters.h" static const filter_entry_t filters[] = { { "none", NULL, NULL, NULL }, /* FILTER_NONE */ { "lossypeak", lossy_peak_parse_args, lossy_peak_print_args, lossy_peak_filter }, /* FILTER_LOSSYPEAK */ { "sma", sma_parse_args, sma_print_args, sma_filter }, /* FILTER_SMA */ { NULL, NULL, NULL, NULL } }; int str2filter(const char *s) { int ret = FILTER_NONE; for(int i = 0; filters[i].name; i++) { if (!strcasecmp(s, filters[i].name)) { ret = i; break; } } return ret; } const char* filter2str(enum signal_filter_types source) { if (source <= FILTER_ENUM_MAX) return filters[source].name; return "none"; } void* filter_parse_args(enum signal_filter_types filter, char *args) { void *ret = NULL; if (filter <= FILTER_ENUM_MAX) { if (filters[filter].parse_args_func) ret = filters[filter].parse_args_func(args); } return ret; } char* filter_print_args(enum signal_filter_types filter, void *ctx) { char *ret = NULL; if (filter <= FILTER_ENUM_MAX && ctx) { if (filters[filter].print_args_func) ret = filters[filter].print_args_func(ctx); } return ret; } float filter(enum signal_filter_types filter, void *ctx, float input) { float ret = input; if (filter <= FILTER_ENUM_MAX && ctx) { if (filters[filter].filter_func) ret = filters[filter].filter_func(ctx, input); } return ret; } /* eof :-) */ ================================================ FILE: src/filters.h ================================================ /* filters.h Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef FANPICO_FILTERS_H #define FANPICO_FILTERS_H 1 typedef void* (filter_parse_args_func_t)(char *args); typedef char* (filter_print_args_func_t)(void *ctx); typedef float (filter_func_t)(void *ctx, float input); typedef struct filter_entry { const char* name; filter_parse_args_func_t *parse_args_func; filter_print_args_func_t *print_args_func; filter_func_t *filter_func; } filter_entry_t; /* filters_lossypeak.c */ void* lossy_peak_parse_args(char *args); char* lossy_peak_print_args(void *ctx); float lossy_peak_filter(void *ctx, float input); /* filters_sma.c */ void* sma_parse_args(char *args); char* sma_print_args(void *ctx); float sma_filter(void *ctx, float input); #endif /* FANPICO_FILTERS_H */ ================================================ FILE: src/flash.c ================================================ /* flash.c Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include "pico/stdlib.h" #include "pico/mutex.h" #include "pico_lfs.h" #include "fanpico.h" extern char __flash_binary_start; extern char __flash_binary_end; static struct lfs_config *lfs_cfg = NULL; static lfs_t lfs; void lfs_setup(bool multicore) { int err; //printf("lfs_setup\n"); lfs_cfg = pico_lfs_init(FANPICO_FS_OFFSET, FANPICO_FS_SIZE); if (!lfs_cfg) panic("lfs_setup: not enough memory!"); /* Check if we need to initialize/format filesystem... */ err = lfs_mount(&lfs, lfs_cfg); if (err != LFS_ERR_OK) { log_msg(LOG_ERR, "Trying to initialize a new filesystem..."); if (flash_format(false)) return; log_msg(LOG_ERR, "Filesystem successfully initialized."); } else { lfs_unmount(&lfs); } } int flash_format(bool multicore) { struct pico_lfs_context *ctx = (struct pico_lfs_context*)lfs_cfg; int err; bool saved; saved = ctx->multicore_lockout_enabled; ctx->multicore_lockout_enabled = (multicore ? true : false); if ((err = lfs_format(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "Unable to format flash filesystem: %d", err); } ctx->multicore_lockout_enabled = saved; return (err == LFS_ERR_OK ? 0 : 1); } int flash_read_file(char **bufptr, uint32_t *sizeptr, const char *filename) { lfs_file_t lfs_file; int res; if (!bufptr || !sizeptr || !filename) return -42; *bufptr = NULL; *sizeptr = 0; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_NOTICE, "lfs_mount() failed: %d", res); return -1; } log_msg(LOG_DEBUG, "Filesystem mounted OK"); res = 0; /* Open file */ if ((res = lfs_file_open(&lfs, &lfs_file, filename, LFS_O_RDONLY)) != LFS_ERR_OK) { log_msg(LOG_DEBUG, "Cannot open file \"%s\": %d", filename, res); res = -3; } else { /* Check file size */ uint32_t file_size = lfs_file_size(&lfs, &lfs_file); log_msg(LOG_DEBUG, "File \"%s\" opened ok: %u bytes", filename, file_size); if (file_size > 0) { *bufptr = malloc(file_size); if (!*bufptr) { log_msg(LOG_ALERT, "Not enough memory to read file \"%s\": %lu", filename, file_size); res = -4; } else { /* Read file... */ log_msg(LOG_DEBUG, "Reading file \"%s\"...", filename); *sizeptr = lfs_file_read(&lfs, &lfs_file, *bufptr, file_size); if (*sizeptr < file_size) { log_msg(LOG_ERR, "Error reading file \"%s\": %lu", filename, *sizeptr); res = -5; } } } lfs_file_close(&lfs, &lfs_file); } lfs_unmount(&lfs); return res; } int flash_write_file(const char *buf, uint32_t size, const char *filename) { lfs_file_t lfs_file; int res; if (!buf || !filename) return -42; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -1; } /* Create file */ if ((res = lfs_file_open(&lfs, &lfs_file, filename, LFS_O_WRONLY | LFS_O_CREAT)) != LFS_ERR_OK) { log_msg(LOG_ERR, "Failed to create file \"%s\": %d", filename, res); res = -2; } else { /* Write to file */ lfs_size_t wrote = lfs_file_write(&lfs, &lfs_file, buf, size); if (wrote < size) { log_msg(LOG_ERR, "Failed to write to file \"%s\": %li", filename, wrote); res = -3; } else { log_msg(LOG_INFO, "File \"%s\" successfully created: %li bytes", filename, wrote); res = 0; } lfs_file_close(&lfs, &lfs_file); } /* Unmount flash filesystem */ lfs_unmount(&lfs); return res; } int flash_delete_file(const char *filename) { int ret = 0; int res; struct lfs_info stat; if (!filename) return -42; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -1; } /* Check if file exists... */ if ((res = lfs_stat(&lfs, filename, &stat)) != LFS_ERR_OK) { log_msg(LOG_ERR, "File \"%s\" not found: %d", filename, res); ret = -2; } else { /* Remove the file...*/ log_msg(LOG_INFO, "Removing file \"%s\" (%lu bytes)", filename, stat.size); if ((res = lfs_remove(&lfs, filename)) != LFS_ERR_OK) { log_msg(LOG_ERR, "Failed to remove file \"%s\": %d", filename, res); ret = -3; } } lfs_unmount(&lfs); return ret; } int flash_rename_file(const char *oldname, const char *newname) { int ret = 0; int res; struct lfs_info stat; if (!oldname || !newname) return -42; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -1; } /* Check if file exists... */ if ((res = lfs_stat(&lfs, oldname, &stat)) != LFS_ERR_OK) { log_msg(LOG_ERR, "File \"%s\" not found: %d", oldname, res); ret = -2; } else { /* Rename file...*/ log_msg(LOG_INFO, "Renaming file \"%s\" --> \"%s\"", oldname, newname); if ((res = lfs_rename(&lfs, oldname, newname)) != LFS_ERR_OK) { log_msg(LOG_ERR, "Failed to rename file \"%s\": %d", oldname, res); ret = -3; } } lfs_unmount(&lfs); return ret; } int flash_copy_file(const char *srcname, const char *dstname, bool overwrite) { const size_t buf_size = 4096; char *buf = NULL; lfs_file_t f_in; lfs_file_t f_out; int ret = 0; int res; uint32_t file_size; uint32_t bytes_written = 0; if (!srcname || !dstname) return -42; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -1; } if (!(buf = malloc(buf_size))) { log_msg(LOG_ERR, "Not enough memory."); ret = -2; } /* Open source file... */ if (ret == 0) { if ((res = lfs_file_open(&lfs, &f_in, srcname, LFS_O_RDONLY)) == LFS_ERR_OK) { file_size = lfs_file_size(&lfs, &f_in); } else { log_msg(LOG_ERR, "Cannot open source file \"%s\": %d", srcname, res); ret = -2; } } /* Create destination file... */ if (ret == 0) { int flags = LFS_O_WRONLY | LFS_O_CREAT; if (!overwrite) flags |= LFS_O_EXCL; if ((res = lfs_file_open(&lfs, &f_out, dstname, flags)) != LFS_ERR_OK) { log_msg(LOG_ERR, "Cannot create destination file \"%s\": %d", srcname, res); lfs_file_close(&lfs, &f_out); ret = -3; } } /* Copy file...*/ if (ret == 0) { int32_t bytes_read, wrote; do { if ((bytes_read = lfs_file_read(&lfs, &f_in, buf, buf_size)) < 0) { log_msg(LOG_ERR, "Failed to read input file: %d", bytes_read); ret = -4; break; } if (bytes_read > 0) { wrote = lfs_file_write(&lfs, &f_out, buf, bytes_read); if (wrote < bytes_read) { log_msg(LOG_ERR, "Failed to write to target file: %d", wrote); ret = -5; break; } bytes_written += wrote; } } while (bytes_read > 0); lfs_file_close(&lfs, &f_in); lfs_file_close(&lfs, &f_out); if (ret == 0 && bytes_written < file_size) { log_msg(LOG_ERR, "Failed to copy entire file."); ret = -6; } else { log_msg(LOG_INFO, "Copied \"%s\" --> \"%s\" (%lu bytes)", srcname, dstname, bytes_written); } } if (buf) free(buf); lfs_unmount(&lfs); return ret; } int flash_file_size(const char *filename) { struct lfs_info stat; int res; if (!filename) return -42; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -1; } /* Check if file exists... */ if ((res = lfs_stat(&lfs, filename, &stat)) != LFS_ERR_OK) { res = -2; } else { res = stat.size; } lfs_unmount(&lfs); return res; } static int littlefs_scan_dir(const char *path, size_t *files, size_t *dirs, size_t *used) { lfs_dir_t dir; struct lfs_info info; char *dirname = NULL; char separator[2] = "/"; int res; size_t f_count = 0; size_t d_count = 0; size_t total = 0; size_t path_len; if (!path) return -1; /* Check if path ends with "/"... */ path_len = strnlen(path, LFS_NAME_MAX); if (path_len > 0) { if (path[path_len - 1] == '/') separator[0] = 0; } log_msg(LOG_DEBUG, "littlefs_scan_dir(%s)", path); if ((res = lfs_dir_open(&lfs, &dir, path)) != LFS_ERR_OK) return res; while ((res = lfs_dir_read(&lfs, &dir, &info) > 0)) { if (info.type == LFS_TYPE_REG) { f_count++; total += info.size; log_msg(LOG_DEBUG, "lfs: File '%s%s%s': size=%u", path, separator, info.name, info.size); } else if (info.type == LFS_TYPE_DIR) { /* Skip special directories ("." and "..") */ if (info.name[0] == '.') { if (info.name[1] == 0) continue; if (info.name[1] == '.' && info.name[2] == 0) continue; } d_count++; log_msg(LOG_DEBUG, "lfs: Directory '%s%s%s'", path, separator, info.name); if ((dirname = malloc(LFS_NAME_MAX + 1))) { res = snprintf(dirname, LFS_NAME_MAX + 1, "%s%s%s", path, separator, info.name); if (res > LFS_NAME_MAX) log_msg(LOG_WARNING, "lfs: filename truncated '%s'", dirname); littlefs_scan_dir(dirname, files, dirs, used); free(dirname); } else { log_msg(LOG_WARNING, "littlefs_scan_dir: malloc failed"); } } else { log_msg(LOG_NOTICE, "lfs: Unknown directory entry %s%s%s: type=%u, size=%u", path, separator, info.name, info.type, info.size); } } lfs_dir_close(&lfs, &dir); if (files) *files += f_count; if (dirs) *dirs += d_count; if (used) *used += total; log_msg(LOG_DEBUG, "littlefs_scan_dir(%s): files=%u (total size=%u), dirs=%u", path, f_count, total, d_count); return 0; } int flash_get_fs_info(size_t *size, size_t *free, size_t *files, size_t *directories, size_t *filesizetotal) { int res; size_t fs_dirs = 0; size_t fs_files = 0; size_t fs_total = 0; size_t used, used_blocks, fs_size; if (!size || !free) return -1; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -2; } used_blocks = lfs_fs_size(&lfs); used = used_blocks * lfs_cfg->block_size; fs_size = lfs_cfg->block_count * lfs_cfg->block_size; if ((res = littlefs_scan_dir("/", &fs_files, &fs_dirs, &fs_total)) < 0) log_msg(LOG_ERR, "little_fs_scan_dir() failed: %d", res); if (size) *size = fs_size; if (free) *free = fs_size - used; if (files) *files = fs_files; if (directories) *directories = fs_dirs; if (filesizetotal) *filesizetotal = fs_total; lfs_unmount(&lfs); return 0; } static int littlefs_list_dir(const char *path, bool recursive) { lfs_dir_t dir; struct lfs_info info; char separator[2] = "/"; char *dirname; size_t path_len; int res; if (!path) return LFS_ERR_INVAL; /* Check if path ends with "/" ... */ path_len = strnlen(path, LFS_NAME_MAX); if (path_len > 0) { if (path[path_len - 1] == '/') separator[0] = 0; } printf("Directory: %s\n\n", path); /* Open directory */ if ((res = lfs_dir_open(&lfs, &dir, path)) != LFS_ERR_OK) return res; /* First scan for directories... */ while ((res = lfs_dir_read(&lfs, &dir, &info)) > 0) { if (info.type == LFS_TYPE_DIR) printf("%-50s %10s\n", info.name, ""); } /* Next scan for files... */ lfs_dir_rewind(&lfs, &dir); while ((res = lfs_dir_read(&lfs, &dir, &info)) > 0) { if (info.type == LFS_TYPE_REG) printf("%-50s %10lu\n", info.name, info.size); } printf("\n"); if (recursive) { /* Scan subdirectories recursively... */ lfs_dir_rewind(&lfs, &dir); while ((res = lfs_dir_read(&lfs, &dir, &info)) > 0) { if (info.type != LFS_TYPE_DIR) continue; /* Skip special directories ("." and "..") */ if (info.name[0] == '.') { if (info.name[1] == 0) continue; if (info.name[1] == '.' && info.name[2] == 0) continue; } if ((dirname = malloc(LFS_NAME_MAX + 1))) { snprintf(dirname, LFS_NAME_MAX + 1, "%s%s%s", path, separator, info.name); flash_list_directory(dirname, recursive); free(dirname); } } } lfs_dir_close(&lfs, &dir); return LFS_ERR_OK; } int flash_list_directory(const char *path, bool recursive) { int res; if (!path) return -1; /* Mount flash filesystem... */ if ((res = lfs_mount(&lfs, lfs_cfg)) != LFS_ERR_OK) { log_msg(LOG_ERR, "lfs_mount() failed: %d", res); return -2; } res = littlefs_list_dir(path, recursive); lfs_unmount(&lfs); return res; } void print_rp2040_flashinfo() { size_t binary_size = &__flash_binary_end - &__flash_binary_start; size_t fs_size = lfs_cfg->block_count * lfs_cfg->block_size; printf("Flash memory size: %u\n", PICO_FLASH_SIZE_BYTES); printf("Binary size: %u\n", binary_size); printf("LittleFS size: %u\n", fs_size); printf("Unused flash memory: %u\n", PICO_FLASH_SIZE_BYTES - binary_size - fs_size); } ================================================ FILE: src/httpd-fs/404.html ================================================ FanPico: Error
FanPico logo

FanPico

404 - Page not found

Sorry, the page you are requesting was not found on this server.

 
================================================ FILE: src/httpd-fs/fanpico.css ================================================ /* FanPico CSS */ #b1 { background: #016567; border-radius: 10px; padding: 10px; } #l1 { background: #03a3aa; border-radius: 5px; padding: 10px; } .pretty tr:nth-child(even) td { background: #019367; } .sc { width:100%; } .s { -webkit-appearance: none; width: 82%; height: 15px; border-radius: 10px; background: #d3d3d3; outline: none; opacity: 0.7; -webkit-transition: .2s; transition: opacity .2s; } .s:hover { opacity: 1; } .s::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 30px; height: 30px; border-radius: 50%; background: #4CAF50; cursor: pointer; } .s::-moz-range-thumb { width: 30px; height: 30px; border-radius: 50%; background: #4caf50; cursor: pointer; } .button { border: none; border-radius: 16px; color: white; padding: 8px 14px; cursor: pointer; background-color: #4caf50; } .button:hover { background-color: #0b7dda; } .x1 { margin-left: 10px; } ================================================ FILE: src/httpd-fs/index.shtml ================================================ FanPico: <!--#name-->
FanPico logo

FanPico:

Fans:
#NameRPM↓PWM↑

MB Fans:
#NameRPM↑PWM↓
Sensors:
#NameTemp ☀

Virtual Sensors:
#NameTemp ☀Other

FanPico- v
Uptime:
================================================ FILE: src/httpd-fs/status.csv ================================================ ================================================ FILE: src/httpd-fs/status.json ================================================ ================================================ FILE: src/httpd-fs_ssi.list ================================================ index.shtml status.json status.csv ================================================ FILE: src/httpd.c ================================================ /* httpd.c Copyright (C) 2022-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "cJSON.h" #include "fanpico.h" #define BUF_LEN 1024 u16_t csv_stats(char *insert, int insertlen, u16_t current_tag_part, u16_t *next_tag_part) { const struct fanpico_state *st = fanpico_state; static char *buf = NULL; static char *p; static u16_t part; static size_t buf_left; char row[128]; double rpm, pwm; int i; size_t printed, count; if (current_tag_part == 0) { /* Generate 'output' into a buffer that then will be fed in chunks to LwIP... */ if (!(buf = malloc(BUF_LEN))) return 0; buf[0] = 0; for (i = 0; i < FAN_COUNT; i++) { rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; snprintf(row, sizeof(row), "fan%d,\"%s\",%.0lf,%.2f,%.1f\n", i+1, cfg->fans[i].name, rpm, st->fan_freq[i], st->fan_duty[i]); strncatenate(buf, row, BUF_LEN); } for (i = 0; i < MBFAN_COUNT; i++) { rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; snprintf(row, sizeof(row), "mbfan%d,\"%s\",%.0lf,%.2f,%.1f\n", i+1, cfg->mbfans[i].name, rpm, st->mbfan_freq[i], st->mbfan_duty[i]); strncatenate(buf, row, BUF_LEN); } for (i = 0; i < SENSOR_COUNT; i++) { pwm = sensor_get_duty(&cfg->sensors[i].map, st->temp[i]); snprintf(row, sizeof(row), "sensor%d,\"%s\",%.1lf,%.1lf\n", i+1, cfg->sensors[i].name, st->temp[i], pwm); strncatenate(buf, row, BUF_LEN); } for (i = 0; i < VSENSOR_COUNT; i++) { pwm = sensor_get_duty(&cfg->vsensors[i].map, st->vtemp[i]); snprintf(row, sizeof(row), "vsensor%d,\"%s\",%.1lf,%.1lf,%.0f,%.0f\n", i+1, cfg->vsensors[i].name, st->vtemp[i], pwm, st->vhumidity[i], st->vpressure[i]); strncatenate(buf, row, BUF_LEN); } snprintf(row, sizeof(row), "vref1,\"ADC Vref\",%.4lf\n", cfg->adc_vref); strncatenate(buf, row, BUF_LEN); p = buf; buf_left = strlen(buf); part = 1; } /* Copy a part of the multi-part response into LwIP buffer ...*/ count = (buf_left < insertlen - 1 ? buf_left : insertlen - 1); memcpy(insert, p, count); p += count; printed = count; buf_left -= count; if (buf_left > 0) { *next_tag_part = part++; } else { free(buf); buf = p = NULL; } return printed; } u16_t json_stats(char *insert, int insertlen, u16_t current_tag_part, u16_t *next_tag_part) { const struct fanpico_state *st = fanpico_state; cJSON *json = NULL; static char *buf = NULL; static char *p; static u16_t part; static size_t buf_left; int i; size_t printed, count; if (current_tag_part == 0) { /* Generate 'output' into a buffer that then will be fed in chunks to LwIP... */ cJSON *array, *o; if (!(json = cJSON_CreateObject())) goto panic; /* Fans */ if (!(array = cJSON_CreateArray())) goto panic; for (i = 0; i < FAN_COUNT; i++) { double rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "fan", cJSON_CreateNumber(i+1)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(cfg->fans[i].name)); cJSON_AddItemToObject(o, "rpm", cJSON_CreateNumber(round_decimal(rpm, 0))); cJSON_AddItemToObject(o, "frequency", cJSON_CreateNumber(round_decimal(st->fan_freq[i], 2))); cJSON_AddItemToObject(o, "duty_cycle", cJSON_CreateNumber(round_decimal(st->fan_duty[i], 1))); cJSON_AddItemToArray(array, o); } cJSON_AddItemToObject(json, "fans", array); /* MB Fans */ if (!(array = cJSON_CreateArray())) goto panic; for (i = 0; i < MBFAN_COUNT; i++) { double rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "mbfan", cJSON_CreateNumber(i+1)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(cfg->mbfans[i].name)); cJSON_AddItemToObject(o, "rpm", cJSON_CreateNumber(round_decimal(rpm, 0))); cJSON_AddItemToObject(o, "frequency", cJSON_CreateNumber(round_decimal(st->mbfan_freq[i], 2))); cJSON_AddItemToObject(o, "duty_cycle", cJSON_CreateNumber(round_decimal(st->mbfan_duty[i], 1))); cJSON_AddItemToArray(array, o); } cJSON_AddItemToObject(json, "mbfans", array); /* Sensors */ if (!(array = cJSON_CreateArray())) goto panic; for (i = 0; i < SENSOR_COUNT; i++) { double pwm = sensor_get_duty(&cfg->sensors[i].map, st->temp[i]); if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "sensor", cJSON_CreateNumber(i+1)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(cfg->sensors[i].name)); cJSON_AddItemToObject(o, "temperature", cJSON_CreateNumber(round_decimal(st->temp[i], 1))); cJSON_AddItemToObject(o, "duty_cycle", cJSON_CreateNumber(round_decimal(pwm, 1))); cJSON_AddItemToArray(array, o); } cJSON_AddItemToObject(json, "sensors", array); cJSON_AddItemToObject(json, "adc_vref", cJSON_CreateNumber(round_decimal(cfg->adc_vref,4))); /* Virtual Sensors */ if (!(array = cJSON_CreateArray())) goto panic; for (i = 0; i < VSENSOR_COUNT; i++) { double pwm = sensor_get_duty(&cfg->vsensors[i].map, st->vtemp[i]); if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "sensor", cJSON_CreateNumber(i+1)); cJSON_AddItemToObject(o, "name", cJSON_CreateString(cfg->vsensors[i].name)); cJSON_AddItemToObject(o, "temperature", cJSON_CreateNumber(round_decimal(st->vtemp[i], 1))); cJSON_AddItemToObject(o, "duty_cycle", cJSON_CreateNumber(round_decimal(pwm, 1))); if (st->vhumidity[i] >= 0.0) cJSON_AddItemToObject(o, "humidity", cJSON_CreateNumber(round_decimal(st->vhumidity[i], 1))); if (st->vpressure[i] >= 0.0) cJSON_AddItemToObject(o, "pressure", cJSON_CreateNumber(round_decimal(st->vpressure[i], 1))); cJSON_AddItemToArray(array, o); } cJSON_AddItemToObject(json, "vsensors", array); if (!(buf = cJSON_Print(json))) goto panic; cJSON_Delete(json); json = NULL; p = buf; buf_left = strlen(buf); part = 1; } /* Copy a part of the multi-part response into LwIP buffer ...*/ count = (buf_left < insertlen - 1 ? buf_left : insertlen - 1); memcpy(insert, p, count); p += count; printed = count; buf_left -= count; if (buf_left > 0) { *next_tag_part = part++; } else { free(buf); buf = p = NULL; } return printed; panic: if (json) cJSON_Delete(json); return 0; } u16_t fanpico_ssi_handler(const char *tag, char *insert, int insertlen, u16_t current_tag_part, u16_t *next_tag_part) { const struct fanpico_state *st = fanpico_state; size_t printed = 0; /* printf("ssi_handler(\"%s\",%lx,%d,%u,%u)\n", tag, (uint32_t)insert, insertlen, current_tag_part, *next_tag_part); */ if (!strncmp(tag, "datetime", 8)) { time_t t; if (rtc_get_time(&t)) { time_t_to_str(insert, insertlen, t); printed = strnlen(insert, insertlen); } } else if (!strncmp(tag, "uptime", 6)) { uint32_t secs = to_us_since_boot(get_absolute_time()) / 1000000; uint32_t mins = secs / 60; uint32_t hours = mins / 60; uint32_t days = hours / 24; printed = snprintf(insert, insertlen, "%lu days %02lu:%02lu:%02lu", days, hours % 24, mins % 60, secs % 60); } else if (!strncmp(tag, "watchdog", 8)) { printed = snprintf(insert, insertlen, "%s", (rebooted_by_watchdog ? "☹" : "☺")); } else if (!strncmp(tag, "model", 5)) { printed = snprintf(insert, insertlen, "%s", FANPICO_MODEL); } else if (!strncmp(tag, "version", 5)) { printed = snprintf(insert, insertlen, "%s", FANPICO_VERSION); } else if (!strncmp(tag, "name", 4)) { printed = snprintf(insert, insertlen, "%s", cfg->name); } else if (!strncmp(tag, "fanrow", 6)) { uint8_t i = tag[6] - '1'; if (i < FAN_COUNT && cfg->http_fan_mask & (1 << i)) { double rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; printed = snprintf(insert, insertlen, "%d%s%0.0f%0.0f %%", i + 1, cfg->fans[i].name, rpm, st->fan_duty[i]); } } else if (!strncmp(tag, "mfanrow", 7)) { uint8_t i = tag[7] - '1'; if (MBFAN_COUNT == 0 && i == 0) { printed = snprintf(insert, insertlen, "Not Available"); } else if (i < MBFAN_COUNT && cfg->http_mbfan_mask & (1 << i)) { double rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; printed = snprintf(insert, insertlen, "%d%s%0.0f%0.0f %%", i + 1, cfg->mbfans[i].name, rpm, st->mbfan_duty[i]); } } else if (!strncmp(tag, "sensrow", 7)) { uint8_t i = tag[7] - '1'; if (i < SENSOR_COUNT && cfg->http_sensor_mask & (1 << i)) { printed = snprintf(insert, insertlen, "%d%s%0.1f ℃", i + 1, cfg->sensors[i].name, st->temp[i]); } } else if (!strncmp(tag, "vsenrow", 7)) { uint8_t i = tag[7] - '1'; if (i < VSENSOR_COUNT && cfg->http_vsensor_mask & (1 << i)) { char other[24], tmp[12]; other[0] = 0; if (st->vhumidity[i] >= 0.0) { snprintf(tmp, sizeof(tmp), "%0.0f %%rh", st->vhumidity[i]); strncatenate(other, tmp, sizeof(other)); } if (st->vpressure[i] >= 0.0) { snprintf(tmp, sizeof(tmp), "%0.0f hPa", st->vpressure[i]); if (strlen(other) > 0) strncatenate(other, ", ", sizeof(other)); strncatenate(other, tmp, sizeof(other)); } printed = snprintf(insert, insertlen, "%d%s%0.1f ℃%s", i + 1, cfg->vsensors[i].name, st->vtemp[i], other); } } else if (!strncmp(tag, "adcvref", 7)) { printed = snprintf(insert, insertlen, "VrefADC%0.4f V", cfg->adc_vref); } else if (!strncmp(tag, "csvstat", 7)) { printed = csv_stats(insert, insertlen, current_tag_part, next_tag_part); } else if (!strncmp(tag, "jsonstat", 8)) { printed = json_stats(insert, insertlen, current_tag_part, next_tag_part); } else if (!strncmp(tag, "refresh", 8)) { /* generate "random" refresh time for a page, to help spread out the load... */ printed = snprintf(insert, insertlen, "%u", (uint)(30 + ((double)rand() / RAND_MAX) * 30)); } /* Check if snprintf() output was truncated... */ printed = (printed >= insertlen ? insertlen - 1 : printed); /* printf("printed=%u\n", printed); */ return printed; } ================================================ FILE: src/i2c.c ================================================ /* i2c.c Copyright (C) 2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "hardware/gpio.h" #include "hardware/i2c.h" #include "pico_sensor_lib.h" #include "fanpico.h" static bool i2c_bus_active = false; static i2c_inst_t *i2c_bus = NULL; static int i2c_temp_sensors = 0; void scan_i2c_bus() { int res; uint8_t buf[2]; int found = 0; if (!i2c_bus_active) return; printf("Scanning I2C Bus... "); for (uint addr = 0; addr < 0x80; addr++) { if (i2c_reserved_address(addr)) continue; res = i2c_read_timeout_us(i2c_bus, addr, buf, 1, false, 10000); if (res < 0) continue; if (found > 0) printf(", "); printf("0x%02x", addr); found++; } printf("\nDevice(s) found: %d\n", found); } void display_i2c_status() { printf("%d\n", i2c_bus_active ? 1 : 0); } void setup_i2c_bus(struct fanpico_config *config) { int res; uint baudrate; i2c_bus_active = false; #if SDA_PIN >= 0 if (!SPI_SHARED || !config->spi_active) i2c_bus_active = true; #endif if (!i2c_bus_active) { log_msg(LOG_INFO, "I2C Bus disabled"); return; } log_msg(LOG_INFO, "Initializing I2C Bus.."); i2c_bus = (I2C_HW > 1 ? i2c1 : i2c0); baudrate = i2c_init(i2c_bus, config->i2c_speed); baudrate /= 1000; i2c_sensor_baudrate(baudrate); log_msg(LOG_INFO, "I2C Bus initialized at %u kHz", baudrate); gpio_set_function(SDA_PIN, GPIO_FUNC_I2C); gpio_set_function(SCL_PIN, GPIO_FUNC_I2C); gpio_pull_up(SDA_PIN); gpio_pull_up(SCL_PIN); /* Scan for I2C Temperature Sensors */ for (int i = 0; i < VSENSOR_COUNT; i++) { struct vsensor_input *v = &config->vsensors[i]; void *ctx = NULL; if (v->mode != VSMODE_I2C) continue; if (v->i2c_type < 1) continue; res = i2c_init_sensor(v->i2c_type, i2c_bus, v->i2c_addr, &ctx); if (res) { log_msg(LOG_NOTICE, "I2C Device %s (at 0x%02x): failed to initialize: %d", i2c_sensor_type_str(v->i2c_type), v->i2c_addr, res); continue; } config->i2c_context[i] = ctx; log_msg(LOG_INFO, "I2C Device %s (at 0x%02x): mapped to vsensor%d", i2c_sensor_type_str(v->i2c_type), v->i2c_addr, i + 1); i2c_temp_sensors++; } } int i2c_read_temps(struct fanpico_config *config) { static uint step = 0; static uint sensor = 0; int wait_time = 0; float temp = 0.0; float pressure = 0.0; float humidity = 0.0; int res; if (!i2c_bus_active || i2c_temp_sensors < 1) return -1; if (step > 1) step = 0; if (step == 0) { /* Send "Convert Temperature" commands to all sensors */ log_msg(LOG_DEBUG, "Initiate I2C sensors temperature conversions."); for (int i = 0; i < VSENSOR_COUNT; i++) { struct vsensor_input *v = &config->vsensors[i]; if (v->mode != VSMODE_I2C) continue; if (v->i2c_type < 1 || !config->i2c_context[i]) continue; res = i2c_start_measurement(config->i2c_context[i]); if (res >= 0) { if (res > wait_time) wait_time = res; } else { log_msg(LOG_DEBUG, "vsensor%d: I2C temp conversion fail: %d", i + 1, res); } } if (wait_time < 1) wait_time = 15000; sensor = 0; step++; } else if (step == 1) { /* Read temperature measurements one sensor at a time... */ if (sensor == 0) log_msg(LOG_DEBUG, "Initiate I2C sensor measurement readings."); int i; for (i = sensor; i < VSENSOR_COUNT; i++) { struct vsensor_input *v = &config->vsensors[i]; if (v->mode != VSMODE_I2C) continue; if (v->i2c_type < 1 || !config->i2c_context[i]) continue; res = i2c_read_measurement(config->i2c_context[i], &temp, &pressure, &humidity); if (res == 0) { if (pressure >= 0.0 || humidity >= 0.0 ) { log_msg(LOG_DEBUG, "vsensor%d: temp=%0.4fC, pressure=%0.2fhPa, humidity=%0.2f%%", i + 1, temp, pressure, humidity); } else { log_msg(LOG_DEBUG, "vsensor%d: temperature %0.4f C", i + 1, temp); } mutex_enter_blocking(config_mutex); config->vtemp[i] = temp; config->vpressure[i] = pressure; config->vhumidity[i] = humidity; config->vtemp_updated[i] = get_absolute_time(); mutex_exit(config_mutex); } else { log_msg(LOG_INFO, "vsensor%d: I2C get temperature failed: %d", i + 1, res); } break; } sensor = i + 1; if (sensor >= VSENSOR_COUNT) { wait_time = 10000; step++; log_msg(LOG_DEBUG, "I2C Temperature measurements complete."); } else { wait_time = 50; } } return wait_time; } ================================================ FILE: src/log.c ================================================ /* log.c Copyright (C) 2021-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include #include #include #include #include "pico/stdlib.h" #include "pico/mutex.h" #include "pico/unique_id.h" #include "pico/util/datetime.h" #include "hardware/watchdog.h" #include "b64/cencode.h" #include "b64/cdecode.h" #include "fanpico.h" #ifdef WIFI_SUPPORT #include "syslog.h" #endif int global_debug_level = 0; int global_log_level = LOG_ERR; int global_syslog_level = LOG_ERR; struct log_priority { uint8_t priority; const char *name; }; struct log_facility { uint8_t facility; const char *name; }; const struct log_priority log_priorities[] = { { LOG_EMERG, "EMERG" }, { LOG_ALERT, "ALERT" }, { LOG_CRIT, "CRIT" }, { LOG_ERR, "ERR" }, { LOG_WARNING, "WARNING" }, { LOG_NOTICE, "NOTICE" }, { LOG_INFO, "INFO" }, { LOG_DEBUG, "DEBUG" }, { 0, NULL } }; const struct log_facility log_facilities[] = { { LOG_KERN, "KERN" }, { LOG_USER, "USER" }, { LOG_MAIL, "MAIL" }, { LOG_DAEMON, "DAEMON" }, { LOG_AUTH, "AUTH" }, { LOG_SYSLOG, "SYSLOG" }, { LOG_LPR, "LPR" }, { LOG_NEWS, "NEWS" }, { LOG_UUCP, "UUCP" }, { LOG_CRON, "CRON" }, { LOG_AUTHPRIV, "AUTHPRIV" }, { LOG_FTP, "FTP" }, { LOG_LOCAL0, "LOCAL0" }, { LOG_LOCAL1, "LOCAL1" }, { LOG_LOCAL2, "LOCAL2" }, { LOG_LOCAL3, "LOCAL3" }, { LOG_LOCAL4, "LOCAL4" }, { LOG_LOCAL5, "LOCAL5" }, { LOG_LOCAL6, "LOCAL6" }, { LOG_LOCAL7, "LOCAL7" }, { 0, NULL } }; int str2log_priority(const char *pri) { int i = 0; if (!pri) return -2; while(log_priorities[i].name) { if (!strcasecmp(log_priorities[i].name, pri)) return log_priorities[i].priority; i++; } return -1; } const char* log_priority2str(int pri) { int i = 0; while(log_priorities[i].name) { if (log_priorities[i].priority == pri) return log_priorities[i].name; i++; } return NULL; } int str2log_facility(const char *facility) { int i = 0; if (!facility) return -2; while(log_facilities[i].name) { if (!strcasecmp(log_facilities[i].name, facility)) return log_facilities[i].facility; i++; } return -1; } const char* log_facility2str(int facility) { int i = 0; while(log_facilities[i].name) { if (log_facilities[i].facility == facility) return log_facilities[i].name; i++; } return NULL; } int get_log_level() { return global_log_level; } void set_log_level(int level) { global_log_level = level; } int get_syslog_level() { return global_syslog_level; } void set_syslog_level(int level) { global_syslog_level = level; } int get_debug_level() { return global_debug_level; } void set_debug_level(int level) { global_debug_level = level; } void log_msg(int priority, const char *format, ...) { va_list ap; char buf[256]; int len; uint64_t start, end; uint core = get_core_num(); if ((priority > global_log_level) && (priority > global_syslog_level)) return; start = to_us_since_boot(get_absolute_time()); va_start(ap, format); vsnprintf(buf, sizeof(buf), format, ap); va_end(ap); if ((len = strlen(buf)) > 0) { /* If string ends with \n, remove it. */ if (buf[len - 1] == '\n') buf[len - 1] = 0; } if (priority <= global_log_level) { uint64_t t = to_us_since_boot(get_absolute_time()); printf("[%6llu.%06llu][%u] %s\n", (t / 1000000), (t % 1000000), core, buf); } #ifdef WIFI_SUPPORT if (priority <= global_syslog_level) { syslog_msg(priority, "%s", buf); } #endif end = to_us_since_boot(get_absolute_time()); if (end - start > 10000) { #ifndef NDEBUG printf("log_msg: core%u: %llu (duration=%llu)\n", core, end, end - start); #endif } } void debug(int debug_level, const char *fmt, ...) { va_list ap; if (debug_level > global_debug_level) return; printf("[DEBUG] "); va_start(ap, fmt); vprintf(fmt, ap); va_end(ap); } /* eof */ ================================================ FILE: src/log.h ================================================ /* log.h Copyright (C) 2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef _FANPICO_LOG_H_ #define _FANPICO_LOG_H_ /* Syslog Priorities */ #define LOG_EMERG 0 #define LOG_ALERT 1 #define LOG_CRIT 2 #define LOG_ERR 3 #define LOG_WARNING 4 #define LOG_NOTICE 5 #define LOG_INFO 6 #define LOG_DEBUG 7 /* Syslog Facilities */ #define LOG_KERN 0 #define LOG_USER 1 #define LOG_MAIL 2 #define LOG_DAEMON 3 #define LOG_AUTH 4 #define LOG_SYSLOG 5 #define LOG_LPR 6 #define LOG_NEWS 7 #define LOG_UUCP 8 #define LOG_CRON 9 #define LOG_AUTHPRIV 10 #define LOG_FTP 11 #define LOG_LOCAL0 16 #define LOG_LOCAL1 17 #define LOG_LOCAL2 18 #define LOG_LOCAL3 19 #define LOG_LOCAL4 20 #define LOG_LOCAL5 21 #define LOG_LOCAL6 22 #define LOG_LOCAL7 23 #endif /* _FANPICO_LOG_H_ */ ================================================ FILE: src/logos/custom.h ================================================ /* custom.h Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ extern const uint8_t fanpico_custom_lcd_logo_bmp[]; /* ptr to logo image */ const display_logo_t custom_lcd_logo_entry = { "custom", 160, 140, fanpico_custom_lcd_logo_bmp }; ================================================ FILE: src/logos/custom.s ================================================ # custom.s # Copyright (C) 2021-2023 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # # # Stub for embedding lcd-logo-custom.bmp in the executable. # .global fanpico_custom_lcd_logo_bmp .global fanpico_custom_lcd_logo_bmp_end .section .rodata .p2align 4 fanpico_custom_lcd_logo_bmp: .incbin "custom.bmp" fanpico_custom_lcd_logo_bmp_end: # eof ================================================ FILE: src/logos/default.h ================================================ /* default.h Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ extern const uint8_t fanpico_lcd_logo_bmp[]; /* ptr to logo image */ const display_logo_t default_lcd_logo_entry = { "default", 160, 140, fanpico_lcd_logo_bmp }; ================================================ FILE: src/logos/default.s ================================================ # default.s # Copyright (C) 2021-2023 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # # # Stub for embedding lcd-logo.bmp in the executable. # .global fanpico_lcd_logo_bmp .global fanpico_lcd_logo_bmp_end .section .rodata .p2align 4 fanpico_lcd_logo_bmp: .incbin "default.bmp" fanpico_lcd_logo_bmp_end: # eof ================================================ FILE: src/lwip_hooks.h ================================================ #ifndef _LWIP_HOOKS_H #define _LWIP_HOOKS_H #include "lwip/arch.h" #include "lwip/dhcp.h" #include "lwip/prot/dhcp.h" void pico_dhcp_option_add_hook(struct netif *netif, struct dhcp *dhcp, u8_t state, struct dhcp_msg *msg, u8_t msg_type, u16_t *options_len_ptr); void pico_dhcp_option_parse_hook(struct netif *netif, struct dhcp *dhcp, u8_t state, struct dhcp_msg *msg, u8_t msg_type, u8_t option, u8_t option_len, struct pbuf *pbuf, u16_t option_value_offset); #endif /* _LWIP_HOOKS_H */ ================================================ FILE: src/lwipopts.h ================================================ #ifndef _LWIPOPTS_H #define _LWIPOPTS_H #include #include "fanpico-compile.h" extern uint16_t fanpico_http_server_port; extern uint16_t fanpico_https_server_port; // Settings for FanPico when using Pico W... // (see https://www.nongnu.org/lwip/2_1_x/group__lwip__opts.html for details) // allow override in some examples #ifndef NO_SYS #define NO_SYS 1 #endif // allow override in some examples #ifndef LWIP_SOCKET #define LWIP_SOCKET 0 #endif #if PICO_CYW43_ARCH_POLL #define MEM_LIBC_MALLOC 1 #else // MEM_LIBC_MALLOC is incompatible with non polling versions #define MEM_LIBC_MALLOC 0 #endif #define MEM_ALIGNMENT 4 #define MEM_SIZE 49152 #define MEM_SANITY_CHECK 1 #define MEM_OVERFLOW_CHECK 1 #define MEMP_NUM_TCP_SEG 64 #define MEMP_NUM_TCP_PCB 32 #define MEMP_NUM_UDP_PCB 8 #define MEMP_NUM_ARP_QUEUE 10 #define MEMP_NUM_SYS_TIMEOUT (LWIP_NUM_SYS_TIMEOUT_INTERNAL + 4) #define PBUF_POOL_SIZE 24 #define LWIP_ARP 1 #define LWIP_ETHERNET 1 #define LWIP_ICMP 1 #define LWIP_RAW 1 #define TCP_MSS 1460 #define TCP_WND (12 * TCP_MSS) #define TCP_SND_BUF (8 * TCP_MSS) #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1)) / (TCP_MSS)) #define LWIP_NETIF_STATUS_CALLBACK 1 #define LWIP_NETIF_LINK_CALLBACK 1 #define LWIP_NETIF_HOSTNAME 1 #define LWIP_NETCONN 0 #define MEM_STATS 1 #define SYS_STATS 1 #define MEMP_STATS 1 #define LINK_STATS 0 // #define ETH_PAD_SIZE 2 #define LWIP_CHKSUM_ALGORITHM 3 #define LWIP_DHCP 1 #define LWIP_IPV4 1 #define LWIP_TCP 1 #define LWIP_UDP 1 #define LWIP_DNS 1 #define LWIP_TCP_KEEPALIVE 1 #define LWIP_NETIF_TX_SINGLE_PBUF 1 #define DHCP_DOES_ARP_CHECK 0 #define LWIP_DHCP_DOES_ACD_CHECK 0 #define LWIP_DHCP_GET_NTP_SRV 1 #define SNTP_GET_SERVERS_FROM_DHCP 1 #define SNTP_STARTUP_DELAY 1 #define SNTP_STARTUP_DELAY_FUNC (5000 + LWIP_RAND() % 4000) #define SNTP_MAX_SERVERS 2 void pico_set_system_time(long int sec); #define SNTP_SET_SYSTEM_TIME(sec) pico_set_system_time(sec) #define LWIP_HOOK_FILENAME "lwip_hooks.h" #define LWIP_HOOK_DHCP_APPEND_OPTIONS pico_dhcp_option_add_hook #define LWIP_HOOK_DHCP_PARSE_OPTION pico_dhcp_option_parse_hook #define MQTT_OUTPUT_RINGBUF_SIZE 4096 #define MQTT_REQ_MAX_IN_FLIGHT 32 #define HTTPD_FSDATA_FILE "fanpico_fsdata.c" #define HTTPD_USE_MEM_POOL 0 #define HTTPD_SERVER_PORT fanpico_http_server_port #define HTTPD_SERVER_PORT_HTTPS fanpico_https_server_port #define LWIP_HTTPD_SSI 1 #define LWIP_HTTPD_SSI_RAW 1 #define LWIP_HTTPD_SSI_MULTIPART 1 #define LWIP_HTTPD_SSI_INCLUDE_TAG 0 #define LWIP_HTTPD_SSI_EXTENSIONS ".shtml", ".xml", ".json", ".csv" #define LWIP_SNMP 1 #define SNMP_LWIP_MIB2 1 #define LWIP_STATS 1 #define MIB2_STATS 1 #define SNMP_MAX_COMMUNITY_STR_LEN 32 #if TLS_SUPPORT #define HTTPD_ENABLE_HTTPS 1 #define LWIP_ALTCP 1 #define LWIP_ALTCP_TLS 1 #define LWIP_ALTCP_TLS_MBEDTLS 1 #endif #ifndef NDEBUG #define LWIP_DEBUG 1 #define LWIP_STATS 1 #define LWIP_STATS_DISPLAY 1 #define LWIP_DEBUG_TIMERNAMES 1 #endif #define ETHARP_DEBUG LWIP_DBG_OFF #define NETIF_DEBUG LWIP_DBG_OFF #define PBUF_DEBUG LWIP_DBG_OFF #define API_LIB_DEBUG LWIP_DBG_OFF #define API_MSG_DEBUG LWIP_DBG_OFF #define SOCKETS_DEBUG LWIP_DBG_OFF #define ICMP_DEBUG LWIP_DBG_OFF #define INET_DEBUG LWIP_DBG_OFF #define IP_DEBUG LWIP_DBG_OFF #define IP_REASS_DEBUG LWIP_DBG_OFF #define RAW_DEBUG LWIP_DBG_OFF #define MEM_DEBUG LWIP_DBG_ON #define MEMP_DEBUG LWIP_DBG_ON #define SYS_DEBUG LWIP_DBG_ON #define TCP_DEBUG LWIP_DBG_OFF #define TCP_INPUT_DEBUG LWIP_DBG_OFF #define TCP_OUTPUT_DEBUG LWIP_DBG_OFF #define TCP_RTO_DEBUG LWIP_DBG_OFF #define TCP_CWND_DEBUG LWIP_DBG_OFF #define TCP_WND_DEBUG LWIP_DBG_OFF #define TCP_FR_DEBUG LWIP_DBG_OFF #define TCP_QLEN_DEBUG LWIP_DBG_OFF #define TCP_RST_DEBUG LWIP_DBG_OFF #define UDP_DEBUG LWIP_DBG_OFF #define TCPIP_DEBUG LWIP_DBG_OFF #define PPP_DEBUG LWIP_DBG_OFF #define SLIP_DEBUG LWIP_DBG_OFF #define DHCP_DEBUG LWIP_DBG_OFF #define SNTP_DEBUG LWIP_DBG_OFF #define HTTPD_DEBUG LWIP_DBG_OFF #define MQTT_DEBUG LWIP_DBG_ON #define ALTCP_MBEDTLS_DEBUG LWIP_DBG_ON #define ALTCP_MBEDTLS_MEM_DEBUG LWIP_DBG_ON #define ALTCP_MBEDTLS_LIB_DEBUG LWIP_DBG_ON #define TIMERS_DEBUG LWIP_DBG_OFF #endif /* __LWIPOPTS_H__ */ ================================================ FILE: src/mbedtls_config.h ================================================ /* Workaround for some mbedtls source files using INT_MAX without including limits.h */ #include #define MBEDTLS_NO_PLATFORM_ENTROPY #define MBEDTLS_ENTROPY_HARDWARE_ALT #define MBEDTLS_SSL_OUT_CONTENT_LEN 4096 /* seems like apparent bug (?) in LwIP altcp_tls requires this when MBEDTLS_SSL_OUT_CONTENT_LEN is over 2048 */ #define MBEDTLS_SSL_MAX_FRAGMENT_LENGTH 4096 #define MBEDTLS_ALLOW_PRIVATE_ACCESS #define MBEDTLS_HAVE_TIME #define MBEDTLS_PLATFORM_MS_TIME_ALT #define MBEDTLS_CIPHER_MODE_CBC #define MBEDTLS_ECP_DP_SECP192R1_ENABLED #define MBEDTLS_ECP_DP_SECP224R1_ENABLED #define MBEDTLS_ECP_DP_SECP256R1_ENABLED #define MBEDTLS_ECP_DP_SECP384R1_ENABLED #define MBEDTLS_ECP_DP_SECP521R1_ENABLED #define MBEDTLS_ECP_DP_SECP192K1_ENABLED #define MBEDTLS_ECP_DP_SECP224K1_ENABLED #define MBEDTLS_ECP_DP_SECP256K1_ENABLED #define MBEDTLS_ECP_DP_BP256R1_ENABLED #define MBEDTLS_ECP_DP_BP384R1_ENABLED #define MBEDTLS_ECP_DP_BP512R1_ENABLED #define MBEDTLS_ECP_DP_CURVE25519_ENABLED #define MBEDTLS_ECP_NIST_OPTIM #define MBEDTLS_KEY_EXCHANGE_RSA_ENABLED #define MBEDTLS_PKCS1_V15 #define MBEDTLS_SHA256_SMALLER #define MBEDTLS_SHA512_SMALLER //#define MBEDTLS_SHA512_NO_SHA384 #define MBEDTLS_SSL_SERVER_NAME_INDICATION #define MBEDTLS_AES_C #define MBEDTLS_ASN1_PARSE_C #define MBEDTLS_BIGNUM_C #define MBEDTLS_CIPHER_C #define MBEDTLS_CTR_DRBG_C #define MBEDTLS_ENTROPY_C #define MBEDTLS_ERROR_C #define MBEDTLS_MD_C #define MBEDTLS_MD5_C #define MBEDTLS_OID_C #define MBEDTLS_PKCS5_C #define MBEDTLS_PK_C #define MBEDTLS_PK_PARSE_C #define MBEDTLS_PLATFORM_C #define MBEDTLS_RSA_C #define MBEDTLS_SHA1_C #define MBEDTLS_SHA224_C #define MBEDTLS_SHA256_C #define MBEDTLS_SHA512_C #define MBEDTLS_SSL_CLI_C #define MBEDTLS_SSL_SRV_C #define MBEDTLS_SSL_TLS_C #define MBEDTLS_X509_CRT_PARSE_C #define MBEDTLS_X509_USE_C #define MBEDTLS_PEM_PARSE_C #define MBEDTLS_BASE64_C #define MBEDTLS_AES_FEWER_TABLES /* TLS 1.2 */ #define MBEDTLS_SSL_PROTO_TLS1_2 #define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED #define MBEDTLS_GCM_C #define MBEDTLS_ECDH_C #define MBEDTLS_ECP_C #define MBEDTLS_ECDSA_C #define MBEDTLS_ASN1_WRITE_C #ifndef NDEBUG #define MBEDTLS_DEBUG_C #endif ================================================ FILE: src/memmap_custom_rp2040.ld ================================================ /* Based on GCC ARM embedded samples. Defines the following symbols for use by code: __exidx_start __exidx_end __etext __data_start__ __preinit_array_start __preinit_array_end __init_array_start __init_array_end __fini_array_start __fini_array_end __data_end__ __bss_start__ __bss_end__ __end__ end __HeapLimit __StackLimit __StackTop __stack (== StackTop) */ MEMORY { INCLUDE "pico_flash_region.ld" RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 252k SCRATCH_X(rwx) : ORIGIN = 0x2003f000, LENGTH = 4k SCRATCH_Y(rwx) : ORIGIN = 0x20040000, LENGTH = 8k } ENTRY(_entry_point) SECTIONS { /* Second stage bootloader is prepended to the image. It must be 256 bytes big and checksummed. It is usually built by the boot_stage2 target in the Raspberry Pi Pico SDK */ .flash_begin : { __flash_binary_start = .; } > FLASH .boot2 : { __boot2_start__ = .; KEEP (*(.boot2)) __boot2_end__ = .; } > FLASH ASSERT(__boot2_end__ - __boot2_start__ == 256, "ERROR: Pico second stage bootloader must be 256 bytes in size") /* The second stage will always enter the image at the start of .text. The debugger will use the ELF entry point, which is the _entry_point symbol if present, otherwise defaults to start of .text. This can be used to transfer control back to the bootrom on debugger launches only, to perform proper flash setup. */ .text : { __logical_binary_start = .; KEEP (*(.vectors)) KEEP (*(.binary_info_header)) __binary_info_header_end = .; KEEP (*(.embedded_block)) __embedded_block_end = .; KEEP (*(.reset)) /* TODO revisit this now memset/memcpy/float in ROM */ /* bit of a hack right now to exclude all floating point and time critical (e.g. memset, memcpy) code from * FLASH ... we will include any thing excluded here in .data below by default */ *(.init) *(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .text*) *(.fini) /* Pull all c'tors into .text */ *crtbegin.o(.ctors) *crtbegin?.o(.ctors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) *(SORT(.ctors.*)) *(.ctors) /* Followed by destructors */ *crtbegin.o(.dtors) *crtbegin?.o(.dtors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) *(SORT(.dtors.*)) *(.dtors) . = ALIGN(4); /* preinit data */ PROVIDE_HIDDEN (__preinit_array_start = .); KEEP(*(SORT(.preinit_array.*))) KEEP(*(.preinit_array)) PROVIDE_HIDDEN (__preinit_array_end = .); . = ALIGN(4); /* init data */ PROVIDE_HIDDEN (__init_array_start = .); KEEP(*(SORT(.init_array.*))) KEEP(*(.init_array)) PROVIDE_HIDDEN (__init_array_end = .); . = ALIGN(4); /* finit data */ PROVIDE_HIDDEN (__fini_array_start = .); *(SORT(.fini_array.*)) *(.fini_array) PROVIDE_HIDDEN (__fini_array_end = .); *(.eh_frame*) . = ALIGN(4); } > FLASH .rodata : { *(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .rodata*) . = ALIGN(4); *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.flashdata*))) . = ALIGN(4); } > FLASH .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } > FLASH __exidx_start = .; .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } > FLASH __exidx_end = .; /* Machine inspectable binary information */ . = ALIGN(4); __binary_info_start = .; .binary_info : { KEEP(*(.binary_info.keep.*)) *(.binary_info.*) } > FLASH __binary_info_end = .; . = ALIGN(4); .ram_vector_table (NOLOAD): { *(.ram_vector_table) } > RAM .uninitialized_data (NOLOAD): { . = ALIGN(4); *(.uninitialized_data*) } > RAM .data : { __data_start__ = .; *(vtable) *(.time_critical*) /* remaining .text and .rodata; i.e. stuff we exclude above because we want it in RAM */ *(.text*) . = ALIGN(4); *(.rodata*) . = ALIGN(4); *(.data*) . = ALIGN(4); *(.after_data.*) . = ALIGN(4); /* preinit data */ PROVIDE_HIDDEN (__mutex_array_start = .); KEEP(*(SORT(.mutex_array.*))) KEEP(*(.mutex_array)) PROVIDE_HIDDEN (__mutex_array_end = .); . = ALIGN(4); *(.jcr) . = ALIGN(4); } > RAM AT> FLASH .tdata : { . = ALIGN(4); *(.tdata .tdata.* .gnu.linkonce.td.*) /* All data end */ __tdata_end = .; } > RAM AT> FLASH PROVIDE(__data_end__ = .); /* __etext is (for backwards compatibility) the name of the .data init source pointer (...) */ __etext = LOADADDR(.data); .tbss (NOLOAD) : { . = ALIGN(4); __bss_start__ = .; __tls_base = .; *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) __tls_end = .; } > RAM .bss (NOLOAD) : { . = ALIGN(4); __tbss_end = .; *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.bss*))) *(COMMON) . = ALIGN(4); __bss_end__ = .; } > RAM .heap (NOLOAD): { __end__ = .; end = __end__; KEEP(*(.heap*)) /* historically on GCC sbrk was growing past __HeapLimit to __StackLimit, however to be more compatible, we now set __HeapLimit explicitly to where the end of the heap is */ . = ORIGIN(RAM) + LENGTH(RAM); __HeapLimit = .; } > RAM /* Start and end symbols must be word-aligned */ .scratch_x : { __scratch_x_start__ = .; *(.scratch_x.*) . = ALIGN(4); __scratch_x_end__ = .; } > SCRATCH_X AT > FLASH __scratch_x_source__ = LOADADDR(.scratch_x); .scratch_y : { __scratch_y_start__ = .; *(.scratch_y.*) . = ALIGN(4); __scratch_y_end__ = .; } > SCRATCH_Y AT > FLASH __scratch_y_source__ = LOADADDR(.scratch_y); /* .stack*_dummy section doesn't contains any symbols. It is only * used for linker to calculate size of stack sections, and assign * values to stack symbols later * * stack1 section may be empty/missing if platform_launch_core1 is not used */ /* by default we put core 0 stack at the end of scratch Y, so that if core 1 * stack is not used then all of SCRATCH_X is free. */ .stack1_dummy (NOLOAD): { *(.stack1*) } > SCRATCH_X .stack_dummy (NOLOAD): { KEEP(*(.stack*)) } > SCRATCH_Y .flash_end : { KEEP(*(.embedded_end_block*)) PROVIDE(__flash_binary_end = .); } > FLASH /* stack limit is poorly named, but historically is maximum heap ptr */ __StackLimit = ORIGIN(RAM) + LENGTH(RAM); __StackOneTop = ORIGIN(SCRATCH_X) + LENGTH(SCRATCH_X); __StackTop = ORIGIN(SCRATCH_Y) + LENGTH(SCRATCH_Y); __StackOneBottom = __StackOneTop - SIZEOF(.stack1_dummy); __StackBottom = __StackTop - SIZEOF(.stack_dummy); PROVIDE(__stack = __StackTop); /* picolibc and LLVM */ PROVIDE (__heap_start = __end__); PROVIDE (__heap_end = __HeapLimit); PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) ); PROVIDE( __tls_size_align = (__tls_size + __tls_align - 1) & ~(__tls_align - 1)); PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) ); /* llvm-libc */ PROVIDE (_end = __end__); PROVIDE (__llvm_libc_heap_limit = __HeapLimit); /* Check if data + heap + stack exceeds RAM limit */ ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed") ASSERT( __binary_info_header_end - __logical_binary_start <= 256, "Binary info must be in first 256 bytes of the binary") /* todo assert on extra code */ } ================================================ FILE: src/memmap_custom_rp2350.ld ================================================ /* Based on GCC ARM embedded samples. Defines the following symbols for use by code: __exidx_start __exidx_end __etext __data_start__ __preinit_array_start __preinit_array_end __init_array_start __init_array_end __fini_array_start __fini_array_end __data_end__ __bss_start__ __bss_end__ __end__ end __HeapLimit __StackLimit __StackTop __stack (== StackTop) */ MEMORY { INCLUDE "pico_flash_region.ld" RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 508k SCRATCH_X(rwx) : ORIGIN = 0x2007f000, LENGTH = 4k SCRATCH_Y(rwx) : ORIGIN = 0x20080000, LENGTH = 8k } ENTRY(_entry_point) SECTIONS { .flash_begin : { __flash_binary_start = .; } > FLASH /* The bootrom will enter the image at the point indicated in your IMAGE_DEF, which is usually the reset handler of your vector table. The debugger will use the ELF entry point, which is the _entry_point symbol, and in our case is *different from the bootrom's entry point.* This is used to go back through the bootrom on debugger launches only, to perform the same initial flash setup that would be performed on a cold boot. */ .text : { __logical_binary_start = .; KEEP (*(.vectors)) KEEP (*(.binary_info_header)) __binary_info_header_end = .; KEEP (*(.embedded_block)) __embedded_block_end = .; KEEP (*(.reset)) /* TODO revisit this now memset/memcpy/float in ROM */ /* bit of a hack right now to exclude all floating point and time critical (e.g. memset, memcpy) code from * FLASH ... we will include any thing excluded here in .data below by default */ *(.init) *libgcc.a:cmse_nonsecure_call.o *(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .text*) *(.fini) /* Pull all c'tors into .text */ *crtbegin.o(.ctors) *crtbegin?.o(.ctors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) *(SORT(.ctors.*)) *(.ctors) /* Followed by destructors */ *crtbegin.o(.dtors) *crtbegin?.o(.dtors) *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) *(SORT(.dtors.*)) *(.dtors) . = ALIGN(4); /* preinit data */ PROVIDE_HIDDEN (__preinit_array_start = .); KEEP(*(SORT(.preinit_array.*))) KEEP(*(.preinit_array)) PROVIDE_HIDDEN (__preinit_array_end = .); . = ALIGN(4); /* init data */ PROVIDE_HIDDEN (__init_array_start = .); KEEP(*(SORT(.init_array.*))) KEEP(*(.init_array)) PROVIDE_HIDDEN (__init_array_end = .); . = ALIGN(4); /* finit data */ PROVIDE_HIDDEN (__fini_array_start = .); *(SORT(.fini_array.*)) *(.fini_array) PROVIDE_HIDDEN (__fini_array_end = .); *(.eh_frame*) . = ALIGN(4); } > FLASH /* Note the boot2 section is optional, and should be discarded if there is no reference to it *inside* the binary, as it is not called by the bootrom. (The bootrom performs a simple best-effort XIP setup and leaves it to the binary to do anything more sophisticated.) However there is still a size limit of 256 bytes, to ensure the boot2 can be stored in boot RAM. Really this is a "XIP setup function" -- the name boot2 is historic and refers to its dual-purpose on RP2040, where it also handled vectoring from the bootrom into the user image. */ .boot2 : { __boot2_start__ = .; *(.boot2) __boot2_end__ = .; } > FLASH ASSERT(__boot2_end__ - __boot2_start__ <= 256, "ERROR: Pico second stage bootloader must be no more than 256 bytes in size") .rodata : { *(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .rodata*) *(.srodata*) . = ALIGN(4); *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.flashdata*))) . = ALIGN(4); } > FLASH .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } > FLASH __exidx_start = .; .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } > FLASH __exidx_end = .; /* Machine inspectable binary information */ . = ALIGN(4); __binary_info_start = .; .binary_info : { KEEP(*(.binary_info.keep.*)) *(.binary_info.*) } > FLASH __binary_info_end = .; . = ALIGN(4); .ram_vector_table (NOLOAD): { *(.ram_vector_table) } > RAM .uninitialized_data (NOLOAD): { . = ALIGN(4); *(.uninitialized_data*) } > RAM .data : { __data_start__ = .; *(vtable) *(.time_critical*) /* remaining .text and .rodata; i.e. stuff we exclude above because we want it in RAM */ *(.text*) . = ALIGN(4); *(.rodata*) . = ALIGN(4); *(.data*) *(.sdata*) . = ALIGN(4); *(.after_data.*) . = ALIGN(4); /* preinit data */ PROVIDE_HIDDEN (__mutex_array_start = .); KEEP(*(SORT(.mutex_array.*))) KEEP(*(.mutex_array)) PROVIDE_HIDDEN (__mutex_array_end = .); *(.jcr) . = ALIGN(4); } > RAM AT> FLASH .tdata : { . = ALIGN(4); *(.tdata .tdata.* .gnu.linkonce.td.*) /* All data end */ __tdata_end = .; } > RAM AT> FLASH PROVIDE(__data_end__ = .); /* __etext is (for backwards compatibility) the name of the .data init source pointer (...) */ __etext = LOADADDR(.data); .tbss (NOLOAD) : { . = ALIGN(4); __bss_start__ = .; __tls_base = .; *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) __tls_end = .; } > RAM .bss (NOLOAD) : { . = ALIGN(4); __tbss_end = .; *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.bss*))) *(COMMON) PROVIDE(__global_pointer$ = . + 2K); *(.sbss*) . = ALIGN(4); __bss_end__ = .; } > RAM .heap (NOLOAD): { __end__ = .; end = __end__; KEEP(*(.heap*)) /* historically on GCC sbrk was growing past __HeapLimit to __StackLimit, however to be more compatible, we now set __HeapLimit explicitly to where the end of the heap is */ . = ORIGIN(RAM) + LENGTH(RAM); __HeapLimit = .; } > RAM /* Start and end symbols must be word-aligned */ .scratch_x : { __scratch_x_start__ = .; *(.scratch_x.*) . = ALIGN(4); __scratch_x_end__ = .; } > SCRATCH_X AT > FLASH __scratch_x_source__ = LOADADDR(.scratch_x); .scratch_y : { __scratch_y_start__ = .; *(.scratch_y.*) . = ALIGN(4); __scratch_y_end__ = .; } > SCRATCH_Y AT > FLASH __scratch_y_source__ = LOADADDR(.scratch_y); /* .stack*_dummy section doesn't contains any symbols. It is only * used for linker to calculate size of stack sections, and assign * values to stack symbols later * * stack1 section may be empty/missing if platform_launch_core1 is not used */ /* by default we put core 0 stack at the end of scratch Y, so that if core 1 * stack is not used then all of SCRATCH_X is free. */ .stack1_dummy (NOLOAD): { *(.stack1*) } > SCRATCH_X .stack_dummy (NOLOAD): { KEEP(*(.stack*)) } > SCRATCH_Y .flash_end : { KEEP(*(.embedded_end_block*)) PROVIDE(__flash_binary_end = .); } > FLASH =0xaa /* stack limit is poorly named, but historically is maximum heap ptr */ __StackLimit = ORIGIN(RAM) + LENGTH(RAM); __StackOneTop = ORIGIN(SCRATCH_X) + LENGTH(SCRATCH_X); __StackTop = ORIGIN(SCRATCH_Y) + LENGTH(SCRATCH_Y); __StackOneBottom = __StackOneTop - SIZEOF(.stack1_dummy); __StackBottom = __StackTop - SIZEOF(.stack_dummy); PROVIDE(__stack = __StackTop); /* picolibc and LLVM */ PROVIDE (__heap_start = __end__); PROVIDE (__heap_end = __HeapLimit); PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) ); PROVIDE( __tls_size_align = (__tls_size + __tls_align - 1) & ~(__tls_align - 1)); PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) ); /* llvm-libc */ PROVIDE (_end = __end__); PROVIDE (__llvm_libc_heap_limit = __HeapLimit); /* Check if data + heap + stack exceeds RAM limit */ ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed") ASSERT( __binary_info_header_end - __logical_binary_start <= 1024, "Binary info must be in first 1024 bytes of the binary") ASSERT( __embedded_block_end - __logical_binary_start <= 4096, "Embedded block must be in first 4096 bytes of the binary") /* todo assert on extra code */ } ================================================ FILE: src/memtest.c ================================================ /* memtest.c Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "pico/stdlib.h" void* walking_mem_test(void *heap, size_t size) { volatile uint32_t *t = (uint32_t*)heap; uint32_t len = size / sizeof(uint32_t); uint64_t t_start, t_end, speed; printf("Walking 1's test: "); t_start = time_us_64(); for (uint32_t bit = 0; bit < 32; bit++) { /* Write bits */ for (uint32_t i = 0; i < len; i++) t[i] = 1 << ((bit + i) % 32); /* Read bits */ for (uint32_t i = 0; i < len; i++) if (t[i] != 1 << ((bit + i) % 32)) { printf(" ERROR: %p (%lu)\n", &t[i], i); return (void*)&t[i]; } printf("."); } t_end = time_us_64(); speed = ((uint64_t)size * 1000000) / (t_end - t_start); printf(" OK (%lld KB/s)\n", speed / 1024); return NULL; } int simple_speed_mem_test(void *heap, size_t size, bool readonly) { volatile uint32_t *t = (uint32_t*)heap; uint32_t len = size / sizeof(uint32_t); uint64_t start, end, speed; volatile uint64_t read; if (!readonly) { printf("Testing write speed (32bit)..."); start = time_us_64(); for (int i = 0; i < len; i ++) { t[i] = 0xdeadbeef; } end = time_us_64(); speed = ((uint64_t)size * 1000000) / (end - start); printf(" %llu KB/s\n", speed / 1024); } printf("Testing read speed (32bit)...."); start = time_us_64(); for (int i = 0; i < len; i ++) { read = t[i]; } end = time_us_64(); if (!readonly && read != 0xdeadbeef) { printf(" (error)"); } speed = ((uint64_t)size * 1000000) / (end - start); printf(" %llu KB/s\n", speed / 1024); if (!readonly) { printf("memset() speed,..............."); start = time_us_64(); memset(heap, 0, size); end = time_us_64(); speed = ((uint64_t)size * 1000000) / (end - start); printf(" %llu KB/s\n", speed / 1024); } return 0; } ================================================ FILE: src/memtest.h ================================================ /* memtest.h Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef FANPICO_MEMTEST_H #define FANPICO_MEMTEST_H 1 int walking_mem_test(void *heap, size_t size); int simple_speed_mem_test(void *heap, size_t size, bool readonly); #endif /* FANPICO_MEMTEST_H */ ================================================ FILE: src/mqtt.c ================================================ /* mqtt.c Copyright (C) 2023-2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "cJSON.h" #ifdef LIB_PICO_CYW43_ARCH #include "pico/cyw43_arch.h" #include "lwip/dns.h" #include "lwip/apps/mqtt.h" #if TLS_SUPPORT #include "lwip/altcp_tls.h" #endif #endif #include "fanpico.h" #ifdef WIFI_SUPPORT #define MQTT_CMD_MAX_LEN 100 mqtt_client_t *mqtt_client = NULL; ip_addr_t mqtt_server_ip = IPADDR4_INIT_BYTES(0, 0, 0, 0); u16_t mqtt_server_port = 0; int incoming_topic = 0; int mqtt_qos = 1; char mqtt_ha_birth_topic[64 + 1]; char mqtt_ha_base_topic[64 + 1]; char mqtt_scpi_cmd[MQTT_CMD_MAX_LEN]; bool mqtt_scpi_cmd_queued = false; absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_mqtt_disconnect, 0); absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_mqtt_ha_discovery, 0); u16_t mqtt_reconnect = 0; u16_t mqtt_ha_discovery = 0; static void mqtt_connect(mqtt_client_t *client); static void mqtt_pub_request_cb(void *arg, err_t result) { const char *topic = (const char*)arg; if (!topic) topic = "NULL"; if (result == ERR_OK) { log_msg(LOG_DEBUG, "MQTT publish successful (%s)", topic); } else if (result == ERR_TIMEOUT) { log_msg(LOG_NOTICE, "MQTT publish failed: timeout (%s)", topic); } else { log_msg(LOG_NOTICE, "MQTT publish failed: %d (%s)", result, topic); } } static int mqtt_publish_message(const char *topic, const char *buf, u16_t buf_len, u8_t qos, u8_t retain, const char *arg) { if (!topic || !buf || buf_len == 0) return -1; if (!mqtt_client) return -2; /* Check that MQTT Client is connected */ cyw43_arch_lwip_begin(); u8_t connected = mqtt_client_is_connected(mqtt_client); cyw43_arch_lwip_end(); if (!connected) return -3; log_msg(LOG_INFO, "MQTT publish to %s: %u bytes.", topic, buf_len); /* Publish message to a MQTT topic */ cyw43_arch_lwip_begin(); err_t err = mqtt_publish(mqtt_client, topic, buf, buf_len, qos, retain, mqtt_pub_request_cb, (void*)arg); cyw43_arch_lwip_end(); if (err != ERR_OK) { log_msg(LOG_NOTICE, "mqtt_publish_message(): failed %d (topic=%s, buf_len=%u)", err, topic, buf_len); } return err; } static char* json_response_message(const char *cmd, int result, const char *msg) { char *buf; cJSON *json; if (!(json = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(json, "command", cJSON_CreateString(cmd)); cJSON_AddItemToObject(json, "result", cJSON_CreateString(result == 0 ? "OK" : "ERROR")); cJSON_AddItemToObject(json, "message", cJSON_CreateString(msg)); if (!(buf = cJSON_Print(json))) goto panic; cJSON_Delete(json); return buf; panic: if (json) cJSON_Delete(json); return NULL; } static void send_mqtt_command_response(const char *cmd, int result, const char *msg) { char *buf = NULL; if (!cmd || !msg || !mqtt_client || strlen(cfg->mqtt_resp_topic) < 1) return; /* Generate status message */ if (!(buf = json_response_message(cmd, result, msg))) { log_msg(LOG_WARNING,"json_response_message(): failed"); return; } mqtt_publish_message(cfg->mqtt_resp_topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_resp_topic); free(buf); } static void mqtt_incoming_publish_cb(void *arg, const char *topic, u32_t tot_len) { log_msg(LOG_DEBUG, "MQTT incoming publish at topic %s with total length %u", topic, (unsigned int)tot_len); if (!strncmp(topic, cfg->mqtt_cmd_topic, strlen(cfg->mqtt_cmd_topic) + 1)) { incoming_topic = 1; } else if (strlen(mqtt_ha_birth_topic) > 0) { if (!strncmp(topic, mqtt_ha_birth_topic, strlen(mqtt_ha_birth_topic) + 1)) { incoming_topic = 2; } } else { log_msg(LOG_DEBUG, "Ignoring publish on unknown topic: %s", topic); incoming_topic = 0; } } static void incoming_fanpico_cmd(const u8_t *data, u16_t len) { char cmd[MQTT_CMD_MAX_LEN]; const u8_t *end, *start; int l; /* Check for command prefix, if found skip past prefix */ if ((start = memmem(data, len, "CMD:", 4))) { start += 4; l = len - (start - data); if (l < 1) return; } else { start = data; l = len; } /* Check for command suffix, if found ignore anything past it */ if (!(end = memchr(start, ';', l))) end = start + l; if ((l = end - start) < 1) return; if (l >= sizeof(cmd)) l = sizeof(cmd) - 1; memcpy(cmd, start, l); cmd[l] = 0; /* Check if should be command allowed */ if (!cfg->mqtt_allow_scpi) { if (strncasecmp(cmd, "WRITE:", 6)) { log_msg(LOG_NOTICE, "MQTT SCPI commands not allowed: '%s'", cmd); return; } } if (mqtt_scpi_cmd_queued) { log_msg(LOG_NOTICE, "MQTT SCPI command queue full: '%s'", cmd); send_mqtt_command_response(cmd, 1, "SCPI command queue full"); } else { log_msg(LOG_NOTICE, "MQTT SCPI command queued: '%s'", cmd); strncopy(mqtt_scpi_cmd, cmd, sizeof(mqtt_scpi_cmd)); mqtt_scpi_cmd_queued = true; } } static void incoming_ha_status(const u8_t *data, u16_t len) { /* Handle incoming Home Assistant status messages (online/offline) */ log_msg(LOG_INFO, "Home Assistant status message received: %d", len); if (memmem(data, len, "online", 6)) { log_msg(LOG_INFO, "Schedule resending HA MQTT Discovery messages"); mqtt_ha_discovery = 1; t_mqtt_ha_discovery = get_absolute_time(); } } static void mqtt_incoming_data_cb(void *arg, const u8_t *data, u16_t len, u8_t flags) { log_msg(LOG_DEBUG, "MQTT incoming publish payload with length %d, flags %u\n", len, (unsigned int)flags); if (len < 1 || !data) return; if (incoming_topic == 1) { incoming_fanpico_cmd(data, len); } else if (incoming_topic == 2) { incoming_ha_status(data, len); } } static void mqtt_sub_request_cb(void *arg, err_t result) { if (result != ERR_OK) { log_msg(LOG_WARNING, "MQTT failed to subscribe command topic: %d", result); } } static void mqtt_ha_sub_request_cb(void *arg, err_t result) { if (result != ERR_OK) { log_msg(LOG_WARNING, "MQTT failed to subscribe HA Birth topic: %d", result); } } static void mqtt_connection_cb(mqtt_client_t *client, void *arg, mqtt_connection_status_t status) { t_mqtt_disconnect = get_absolute_time(); if (status == MQTT_CONNECT_ACCEPTED) { log_msg(LOG_INFO, "MQTT connected to %s:%u", ipaddr_ntoa(&mqtt_server_ip), mqtt_server_port); mqtt_set_inpub_callback(client, mqtt_incoming_publish_cb, mqtt_incoming_data_cb, arg); if (strlen(cfg->mqtt_cmd_topic) > 0) { /* Subscribe to command topic */ log_msg(LOG_INFO, "MQTT subscribe to command topic: %s", cfg->mqtt_cmd_topic); err_t err = mqtt_subscribe(client, cfg->mqtt_cmd_topic, 1, mqtt_sub_request_cb, arg); if (err != ERR_OK) { log_msg(LOG_WARNING, "MQTT subscribe failed: %d", err); } } if (strlen(cfg->mqtt_ha_discovery_prefix) > 0) { /* Subscribe to Home Assistant Birth topic */ snprintf(mqtt_ha_birth_topic, sizeof(mqtt_ha_birth_topic), "%s/status", cfg->mqtt_ha_discovery_prefix); log_msg(LOG_INFO, "MQTT subscribe to HA Birth topic: %s", mqtt_ha_birth_topic); err_t err = mqtt_subscribe(client, mqtt_ha_birth_topic, 1, mqtt_ha_sub_request_cb, arg); if (err != ERR_OK) { log_msg(LOG_WARNING, "MQTT subscribe failed: %d", err); } snprintf(mqtt_ha_base_topic, sizeof(mqtt_ha_base_topic), "%s/sensor/fanpico_%s", cfg->mqtt_ha_discovery_prefix, pico_serial_str()); mqtt_ha_discovery = 5; t_mqtt_ha_discovery = get_absolute_time(); } } else if (status == MQTT_CONNECT_DISCONNECTED) { log_msg(LOG_WARNING, "MQTT disconnected from %s", ipaddr_ntoa(&mqtt_server_ip)); mqtt_reconnect = 15; } else if (status == MQTT_CONNECT_TIMEOUT) { log_msg(LOG_WARNING, "MQTT connect: timeout (%s)", ipaddr_ntoa(&mqtt_server_ip)); mqtt_reconnect = 30; } else if (status == MQTT_CONNECT_REFUSED_USERNAME_PASS) { log_msg(LOG_WARNING, "MQTT connect: login failure (%s)", ipaddr_ntoa(&mqtt_server_ip)); } else if (status == MQTT_CONNECT_REFUSED_NOT_AUTHORIZED_) { log_msg(LOG_WARNING, "MQTT connect: not authorized (%s)", ipaddr_ntoa(&mqtt_server_ip)); mqtt_reconnect = 180; } else { log_msg(LOG_WARNING, "MQTT connect: refused (status=%d) (%s)", status, ipaddr_ntoa(&mqtt_server_ip)); mqtt_reconnect = 90; } } static void mqtt_dns_resolve_cb(const char *name, const ip_addr_t *ipaddr, void *arg) { if (ipaddr && ipaddr->addr) { log_msg(LOG_INFO, "DNS resolved: %s -> %s\n", name, ipaddr_ntoa(ipaddr)); ip_addr_set(&mqtt_server_ip, ipaddr); mqtt_connect(mqtt_client); } else { log_msg(LOG_WARNING, "Failed to resolve MQTT server name: %s", name); t_mqtt_disconnect = get_absolute_time(); mqtt_reconnect = 30; } } static void mqtt_connect(mqtt_client_t *client) { #if TLS_SUPPORT static struct altcp_tls_config *tlsconfig = NULL; #endif struct mqtt_connect_client_info_t ci; char client_id[32]; uint16_t port = MQTT_PORT; err_t err; if (!client) return; mqtt_reconnect = 0; mqtt_ha_discovery = 0; /* Resolve domain name */ cyw43_arch_lwip_begin(); err = dns_gethostbyname(cfg->mqtt_server, &mqtt_server_ip, mqtt_dns_resolve_cb, NULL); cyw43_arch_lwip_end(); if (err != ERR_OK) { if (err == ERR_INPROGRESS) log_msg(LOG_INFO, "Resolving DNS name: %s\n", cfg->mqtt_server); else log_msg(LOG_WARNING, "Failed to resolve MQTT server name: %s (%d)" , cfg->mqtt_server, err); return; } /* Setup client connect info */ memset(&ci, 0, sizeof(ci)); snprintf(client_id, sizeof(client_id), "fanpico-%s_%s", FANPICO_BOARD, pico_serial_str()); ci.client_id = client_id; ci.client_user = cfg->mqtt_user; ci.client_pass = cfg->mqtt_pass; ci.keep_alive = 60; ci.will_topic = NULL; ci.will_msg = NULL; ci.will_retain = 0; ci.will_qos = 0; #if TLS_SUPPORT if (cfg->mqtt_tls) { if (!tlsconfig) { cyw43_arch_lwip_begin(); tlsconfig = altcp_tls_create_config_client(NULL, 0); cyw43_arch_lwip_end(); if (!tlsconfig) log_msg(LOG_WARNING, "altcp_tls_create_config_client(): failed"); } ci.tls_config = tlsconfig; port = MQTT_TLS_PORT; } #endif if (cfg->mqtt_port > 0) port = cfg->mqtt_port; mqtt_server_port = port; /* Connect to MQTT Server */ log_msg(LOG_NOTICE, "MQTT Connecting to %s:%u%s", cfg->mqtt_server, mqtt_server_port, cfg->mqtt_tls ? " (TLS)" : ""); cyw43_arch_lwip_begin(); err = mqtt_client_connect(mqtt_client, &mqtt_server_ip, mqtt_server_port, mqtt_connection_cb, 0, &ci); cyw43_arch_lwip_end(); if (err != ERR_OK) { log_msg(LOG_WARNING,"mqtt_client_connect(): failed %d", err); if (err == ERR_RTE) { t_mqtt_disconnect = get_absolute_time(); mqtt_reconnect = 30; } } } void fanpico_setup_mqtt_client() { if (mqtt_client) return; ip_addr_set_zero(&mqtt_server_ip); mqtt_reconnect = 0; mqtt_ha_discovery = 0; mqtt_ha_birth_topic[0] = 0; mqtt_ha_base_topic[0] = 0; mqtt_scpi_cmd[0] = 0; cyw43_arch_lwip_begin(); mqtt_client = mqtt_client_new(); cyw43_arch_lwip_end(); if (!mqtt_client) { log_msg(LOG_WARNING,"mqtt_client_new(): failed"); return; } mqtt_connect(mqtt_client); } int fanpico_mqtt_client_active() { return (mqtt_client == NULL ? 0 : 1); } void fanpico_mqtt_reconnect() { if (mqtt_reconnect == 0) return; if (time_passed(&t_mqtt_disconnect, mqtt_reconnect * 1000)) { log_msg(LOG_INFO, "MQTT attempt reconnecting to server"); cyw43_arch_lwip_begin(); u8_t connected = mqtt_client_is_connected(mqtt_client); cyw43_arch_lwip_end(); if (connected) { log_msg(LOG_INFO, "MQTT attempt disconnecting existing connection"); cyw43_arch_lwip_begin(); mqtt_disconnect(mqtt_client); cyw43_arch_lwip_end(); } mqtt_connect(mqtt_client); } } static char* json_ha_discovery_message(const char *type, int idx, int count) { char *buf; cJSON *json, *d, *id; char tmp[100]; if (!(json = cJSON_CreateObject())) return NULL; if (!strncmp(type, "sensor", 6)) { snprintf(tmp, sizeof(tmp), "Sensor: %s", cfg->sensors[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "device_class", cJSON_CreateString("temperature")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("°C")); } else if (!strncmp(type, "vtemp", 5)) { snprintf(tmp, sizeof(tmp), "Sensor: %s", cfg->vsensors[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "device_class", cJSON_CreateString("temperature")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("°C")); } else if (!strncmp(type, "vhumidity", 9)) { snprintf(tmp, sizeof(tmp), "Sensor: %s", cfg->vsensors[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "device_class", cJSON_CreateString("humidity")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("%")); } else if (!strncmp(type, "vpressure", 9)) { snprintf(tmp, sizeof(tmp), "Sensor: %s", cfg->vsensors[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "device_class", cJSON_CreateString("pressure")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("hPa")); } else if (!strncmp(type, "fanrpm", 6)) { snprintf(tmp, sizeof(tmp), "Fan: %s", cfg->fans[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "icon", cJSON_CreateString("mdi:fan")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("RPM")); } else if (!strncmp(type, "fanpwm", 6)) { snprintf(tmp, sizeof(tmp), "Fan: %s", cfg->fans[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "icon", cJSON_CreateString("mdi:speedometer")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("%")); } else if (!strncmp(type, "mbfanrpm", 8)) { snprintf(tmp, sizeof(tmp), "MB Fan: %s", cfg->mbfans[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "icon", cJSON_CreateString("mdi:fan")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("RPM")); } else if (!strncmp(type, "mbfanpwm", 8)) { snprintf(tmp, sizeof(tmp), "MB Fan: %s", cfg->mbfans[idx - 1].name); cJSON_AddItemToObject(json, "name", cJSON_CreateString(tmp)); cJSON_AddItemToObject(json, "icon", cJSON_CreateString("mdi:speedometer")); cJSON_AddItemToObject(json, "unit_of_measurement", cJSON_CreateString("%")); } else { goto panic; } snprintf(tmp, sizeof(tmp), "{{ value_json.%s%d }}", type, idx); cJSON_AddItemToObject(json, "value_template", cJSON_CreateString(tmp)); snprintf(tmp, sizeof(tmp), "%s/state", mqtt_ha_base_topic); cJSON_AddItemToObject(json, "state_topic", cJSON_CreateString(tmp)); snprintf(tmp, sizeof(tmp), "fanpico_%s_%s%d", pico_serial_str(), type, idx); cJSON_AddItemToObject(json, "unique_id", cJSON_CreateString(tmp)); if (!(d = cJSON_CreateObject())) goto panic; if (!(id = cJSON_CreateArray())) goto panic; snprintf(tmp, sizeof(tmp), "fanpico_%s", pico_serial_str()); cJSON_AddItemToArray(id, cJSON_CreateString(tmp)); cJSON_AddItemToObject(d, "identifiers", id); if (count == 0) { cJSON_AddItemToObject(d, "name", cJSON_CreateString(cfg->name)); cJSON_AddItemToObject(d, "manufacturer", cJSON_CreateString("TJKO Industries")); cJSON_AddItemToObject(d, "model", cJSON_CreateString("FanPico")); cJSON_AddItemToObject(d, "model_id", cJSON_CreateString(FANPICO_MODEL)); cJSON_AddItemToObject(d, "serial_number", cJSON_CreateString(pico_serial_str())); cJSON_AddItemToObject(d, "sw_version", cJSON_CreateString(FANPICO_VERSION)); } cJSON_AddItemToObject(json, "device", d); if (!(buf = cJSON_Print(json))) goto panic; cJSON_Delete(json); return buf; panic: cJSON_Delete(json); return NULL; } static int send_ha_discovery_msg(const char *topic, const char *type, int idx, int count) { char *buf; if (!(buf = json_ha_discovery_message(type, idx, count))) { log_msg(LOG_WARNING, "json_ha_discovery_message(): failed"); return 1; } log_msg(LOG_INFO, "Publish HA Discovery Message: %s (%d)", topic, strlen(buf)); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, topic); free(buf); return 0; } static void fanpico_mqtt_ha_discovery() { char topic[128]; int count = 0; if (mqtt_ha_discovery == 0) return; if (!time_passed(&t_mqtt_ha_discovery, mqtt_ha_discovery * 1000)) return; mqtt_ha_discovery = 0; for (int i = 0; i < SENSOR_COUNT; i++) { if (cfg->mqtt_temp_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_t%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "sensor", i + 1, count++)) return; } } for (int i = 0; i < VSENSOR_COUNT; i++) { if (cfg->mqtt_vtemp_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_vt%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "vtemp", i + 1, count++)) return; } if (cfg->mqtt_vhumidity_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_vh%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "vhumidity", i + 1, count++)) return; } if (cfg->mqtt_vpressure_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_vp%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "vpressure", i + 1, count++)) return; } } for (int i = 0; i < FAN_COUNT; i++) { if (cfg->mqtt_fan_rpm_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_fr%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "fanrpm", i + 1, count++)) return; } if (cfg->mqtt_fan_duty_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_fp%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "fanpwm", i + 1, count++)) return; } } for (int i = 0; i < MBFAN_COUNT; i++) { if (cfg->mqtt_mbfan_rpm_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_mfr%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "mbfanrpm", i + 1, count++)) return; } if (cfg->mqtt_mbfan_duty_mask & (1 << i)) { snprintf(topic, sizeof(topic), "%s_mfp%d/config", mqtt_ha_base_topic, i + 1); if (send_ha_discovery_msg(topic, "mbfanpwm", i + 1, count++)) return; } } } static char* json_ha_state_message() { const struct fanpico_state *st = fanpico_state; cJSON *json; char *buf, name[32]; if (!(json = cJSON_CreateObject())) return NULL; for (int i = 0; i < SENSOR_COUNT; i++) { if (cfg->mqtt_temp_mask & (1 << i)) { snprintf(name, sizeof(name), "sensor%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->temp[i], 1))); } } for (int i = 0; i < VSENSOR_COUNT; i++) { if (cfg->mqtt_vtemp_mask & (1 << i)) { snprintf(name, sizeof(name), "vtemp%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->vtemp[i], 1))); } if (cfg->mqtt_vhumidity_mask & (1 << i)) { snprintf(name, sizeof(name), "vhumidity%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->vhumidity[i], 0))); } if (cfg->mqtt_vpressure_mask & (1 << i)) { snprintf(name, sizeof(name), "vpressure%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->vpressure[i], 0))); } } for (int i = 0; i < FAN_COUNT; i++) { if (cfg->mqtt_fan_rpm_mask & (1 << i)) { float rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; snprintf(name, sizeof(name), "fanrpm%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(rpm, 0))); } if (cfg->mqtt_fan_duty_mask & (1 << i)) { snprintf(name, sizeof(name), "fanpwm%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->fan_duty[i], 1))); } } for (int i = 0; i < MBFAN_COUNT; i++) { if (cfg->mqtt_mbfan_rpm_mask & (1 << i)) { float rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; snprintf(name, sizeof(name), "mbfanrpm%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(rpm, 0))); } if (cfg->mqtt_mbfan_duty_mask & (1 << i)) { snprintf(name, sizeof(name), "mbfanpwm%d", i + 1); cJSON_AddItemToObject(json, name, cJSON_CreateNumber(round_decimal(st->mbfan_duty[i], 1))); } } if (!(buf = cJSON_Print(json))) goto panic; cJSON_Delete(json); return buf; panic: cJSON_Delete(json); return NULL; } static char* json_status_message() { const struct fanpico_state *st = fanpico_state; char *buf; cJSON *json, *l, *o; int i; float rpm; time_t t; if (!(json = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(json, "name", cJSON_CreateString(cfg->name)); cJSON_AddItemToObject(json, "hostname", cJSON_CreateString(net_state->hostname)); if (network_ip()) cJSON_AddItemToObject(json, "ip", cJSON_CreateString(network_ip())); /* fans */ if (!(l = cJSON_CreateArray())) goto panic; cJSON_AddItemToObject(json, "fans", l); for (i = 0; i < FAN_COUNT; i++) { rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i + 1)); cJSON_AddItemToObject(o, "rpm", cJSON_CreateNumber(rpm)); cJSON_AddItemToObject(o, "pwm", cJSON_CreateNumber(st->fan_duty[i])); cJSON_AddItemToArray(l, o); } /* mbfans */ if (!(l = cJSON_CreateArray())) goto panic; cJSON_AddItemToObject(json, "mbfans", l); for (i = 0; i < MBFAN_COUNT; i++) { rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i + 1)); cJSON_AddItemToObject(o, "rpm", cJSON_CreateNumber(rpm)); cJSON_AddItemToObject(o, "pwm", cJSON_CreateNumber(st->mbfan_duty[i])); cJSON_AddItemToArray(l, o); } /* sensors */ if (!(l = cJSON_CreateArray())) goto panic; cJSON_AddItemToObject(json, "sensors", l); for (i = 0; i < SENSOR_COUNT; i++) { if (!(o = cJSON_CreateObject())) goto panic; cJSON_AddItemToObject(o, "id", cJSON_CreateNumber(i + 1)); cJSON_AddItemToObject(o, "temp", cJSON_CreateNumber(round_decimal(st->temp[i], 1))); cJSON_AddItemToArray(l, o); } if ( rtc_get_time(&t) ) { /* Send Data Time stamp to broker for possible use */ char datetime_buf[32]; time_t_to_str(datetime_buf, sizeof(datetime_buf), t); cJSON_AddItemToObject(json, "datetime", cJSON_CreateString( datetime_buf )); } if (!(buf = cJSON_Print(json))) goto panic; cJSON_Delete(json); return buf; panic: if (json) cJSON_Delete(json); return NULL; } void fanpico_mqtt_publish() { char *buf = NULL; if (!mqtt_client) return; log_msg(LOG_DEBUG, "fanpico_mqtt_publish(): start"); if (strlen(cfg->mqtt_status_topic) > 0) { /* Generate status message */ if (!(buf = json_status_message())) { log_msg(LOG_WARNING,"json_status_message(): failed"); return; } mqtt_publish_message(cfg->mqtt_status_topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_status_topic); free(buf); } if (strlen(cfg->mqtt_ha_discovery_prefix) > 0) { char topic[64 + 10 + 1]; if (mqtt_ha_discovery > 0) fanpico_mqtt_ha_discovery(); /* Generate Home Assistant State message */ if (!(buf = json_ha_state_message())) { log_msg(LOG_WARNING,"json_ha_state_message(): failed"); return; } snprintf(topic, sizeof(topic), "%s/state", mqtt_ha_base_topic); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, topic); free(buf); } log_msg(LOG_DEBUG, "fanpico_mqtt_publish(): end"); } void fanpico_mqtt_publish_temp() { const struct fanpico_state *st = fanpico_state; char topic[MQTT_MAX_TOPIC_LEN + 8]; char buf[64]; if (!mqtt_client || strlen(cfg->mqtt_temp_topic) < 1) return; log_msg(LOG_DEBUG, "fanpico_mqtt_publish_temp(): start"); for (int i = 0; i < SENSOR_COUNT; i++) { if (cfg->mqtt_temp_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_temp_topic, i + 1); snprintf(buf, sizeof(buf), "%.1f", st->temp[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_temp_topic); } } log_msg(LOG_DEBUG, "fanpico_mqtt_publish_temp(): end"); } void fanpico_mqtt_publish_vsensor() { const struct fanpico_state *st = fanpico_state; char topic[MQTT_MAX_TOPIC_LEN + 8]; char buf[64]; if (!mqtt_client) return; log_msg(LOG_DEBUG, "fanpico_mqtt_publish_vsensor(): start"); for (int i = 0; i < VSENSOR_COUNT; i++) { if (strlen(cfg->mqtt_vtemp_topic) > 0 && cfg->mqtt_vtemp_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_vtemp_topic, i + 1); snprintf(buf, sizeof(buf), "%.1f", st->vtemp[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_vtemp_topic); } if (strlen(cfg->mqtt_vhumidity_topic) > 0 && cfg->mqtt_vhumidity_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_vhumidity_topic, i + 1); snprintf(buf, sizeof(buf), "%.0f", st->vhumidity[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_vhumidity_topic); } if (strlen(cfg->mqtt_vpressure_topic) > 0 && cfg->mqtt_vpressure_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_vpressure_topic, i + 1); snprintf(buf, sizeof(buf), "%.0f", st->vpressure[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_vpressure_topic); } } log_msg(LOG_DEBUG, "fanpico_mqtt_publish_vsensor(): end"); } void fanpico_mqtt_publish_rpm() { const struct fanpico_state *st = fanpico_state; char topic[MQTT_MAX_TOPIC_LEN + 8]; char buf[64]; if (!mqtt_client) return; log_msg(LOG_DEBUG, "fanpico_mqtt_publish_rpm(): start"); if (strlen(cfg->mqtt_fan_rpm_topic) > 0) { for (int i = 0; i < FAN_COUNT; i++) { if (cfg->mqtt_fan_rpm_mask & (1 << i)) { float rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; snprintf(topic, sizeof(topic), cfg->mqtt_fan_rpm_topic, i + 1); snprintf(buf, sizeof(buf), "%.0f", rpm); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_fan_rpm_topic); } } } if (strlen(cfg->mqtt_mbfan_rpm_topic) > 0) { for (int i = 0; i < MBFAN_COUNT; i++) { if (cfg->mqtt_mbfan_rpm_mask & (1 << i)) { float rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; snprintf(topic, sizeof(topic), cfg->mqtt_mbfan_rpm_topic, i + 1); snprintf(buf, sizeof(buf), "%.0f", rpm); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_mbfan_rpm_topic); } } } log_msg(LOG_DEBUG, "fanpico_mqtt_publish_rpm(): end"); } void fanpico_mqtt_publish_duty() { const struct fanpico_state *st = fanpico_state; char topic[MQTT_MAX_TOPIC_LEN + 8]; char buf[64]; if (!mqtt_client) return; log_msg(LOG_DEBUG, "fanpico_mqtt_publish_duty(): start"); if (strlen(cfg->mqtt_fan_duty_topic) > 0) { for (int i = 0; i < FAN_COUNT; i++) { if (cfg->mqtt_fan_duty_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_fan_duty_topic, i + 1); snprintf(buf, sizeof(buf), "%.1f", st->fan_duty[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_fan_duty_topic); } } } if (strlen(cfg->mqtt_mbfan_duty_topic) > 0) { for (int i = 0; i < MBFAN_COUNT; i++) { if (cfg->mqtt_mbfan_duty_mask & (1 << i)) { snprintf(topic, sizeof(topic), cfg->mqtt_mbfan_duty_topic, i + 1); snprintf(buf, sizeof(buf), "%.1f", st->mbfan_duty[i]); mqtt_publish_message(topic, buf, strlen(buf), mqtt_qos, 0, cfg->mqtt_mbfan_duty_topic); } } } log_msg(LOG_DEBUG, "fanpico_mqtt_publish_duty(): end"); } void fanpico_mqtt_scpi_command() { const struct fanpico_state *st = fanpico_state; char cmd[MQTT_CMD_MAX_LEN]; int res; if (!mqtt_client || !mqtt_scpi_cmd_queued) return; log_msg(LOG_DEBUG, "MQTT process SCPI command: '%s'", mqtt_scpi_cmd); strncopy(cmd, mqtt_scpi_cmd, sizeof(cmd)); process_command(st, (struct fanpico_config *)cfg, cmd); if ((res = last_command_status()) == 0) { log_msg(LOG_INFO, "MQTT SCPI command successful: '%s'", mqtt_scpi_cmd); send_mqtt_command_response(mqtt_scpi_cmd, res, "SCPI command successful"); } else { log_msg(LOG_NOTICE, "MQTT SCPI command failed: '%s' (%d)", mqtt_scpi_cmd, res); if (res == -113) send_mqtt_command_response(mqtt_scpi_cmd, res, "SCPI unknown command"); else send_mqtt_command_response(mqtt_scpi_cmd, res, "SCPI command failed"); } mqtt_scpi_cmd[0] = 0; mqtt_scpi_cmd_queued = false; } #endif /* WIFI_SUPPORT */ ================================================ FILE: src/network.c ================================================ /* network.c Copyright (C) 2022-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "pico/stdlib.h" #include "pico/util/datetime.h" #include "pico/aon_timer.h" #ifdef LIB_PICO_CYW43_ARCH #include "pico/cyw43_arch.h" #include "lwip/dns.h" #include "lwip/apps/sntp.h" #include "lwip/apps/httpd.h" #include "util_net.h" #endif #include "fanpico.h" #ifdef WIFI_SUPPORT #include "syslog.h" #define WIFI_REJOIN_DELAY 10000 // Delay before attempting to re-join to WiFi (ms) #define FANPICO_WIFI_INACTIVE -255 uint16_t fanpico_http_server_port = HTTP_SERVER_DEFAULT_PORT; uint16_t fanpico_https_server_port = HTTPS_SERVER_DEFAULT_PORT; static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(t_network_initialized, 0); static bool wifi_initialized = false; static bool network_initialized = false; struct wifi_auth_type { char *name; uint32_t type; }; static const struct wifi_auth_type auth_types[] = { { "default", CYW43_AUTH_WPA2_AES_PSK }, { "WPA3_WPA2", CYW43_AUTH_WPA3_WPA2_AES_PSK }, { "WPA3", CYW43_AUTH_WPA3_SAE_AES_PSK }, { "WPA2", CYW43_AUTH_WPA2_AES_PSK }, { "WPA2_WPA", CYW43_AUTH_WPA2_MIXED_PSK }, { "WPA", CYW43_AUTH_WPA_TKIP_PSK }, { "OPEN", CYW43_AUTH_OPEN }, { NULL, 0 } }; bool wifi_get_auth_type(const char *name, uint32_t *type) { int len, i; if (!name || !type) return false; /* Return default type if no match... */ *type = auth_types[0].type; if ((len = strlen(name)) < 1) return false; i = 0; while (auth_types[i].name) { if (!strncasecmp(name, auth_types[i].name, len + 1)) { *type = auth_types[i].type; return true; } i++; } return false; } const char* wifi_auth_type_name(uint32_t type) { int i = 1; while (auth_types[i].name) { if (auth_types[i].type == type) { return auth_types[i].name; } i++; } return "Unknown"; } const char* wifi_link_status_text(int status) { switch (status) { case CYW43_LINK_DOWN: return "Link Down"; case CYW43_LINK_JOIN: return "Joining"; case CYW43_LINK_NOIP: return "No IP"; case CYW43_LINK_UP: return "Link Up"; case CYW43_LINK_FAIL: return "Link Fail"; case CYW43_LINK_NONET: return "Network Fail"; case CYW43_LINK_BADAUTH: return "Auth Fail"; case FANPICO_WIFI_INACTIVE: return ""; } return "Unknown"; } void wifi_rejoin() { int res; uint32_t wifi_auth_mode; if (!wifi_initialized) return; net_state->wifi_status_change = get_absolute_time(); if (strlen(cfg->wifi_ssid) < 1) return; wifi_get_auth_type(cfg->wifi_auth_mode, &wifi_auth_mode); if (wifi_auth_mode != CYW43_AUTH_OPEN && strlen(cfg->wifi_passwd) < 1) return; /* Disconnect if currently joined to a network */ res = cyw43_wifi_link_status(&cyw43_state, CYW43_ITF_STA); if (res == CYW43_LINK_JOIN || res == CYW43_LINK_NOIP || res == CYW43_LINK_UP) { if ((res = cyw43_wifi_leave(&cyw43_state, CYW43_ITF_STA))) { log_msg(LOG_ERR, "WiFi leave from network failed: %d", res); } } /* Initiate asynchronous join to the network */ log_msg(LOG_NOTICE, "Attempt rejoining to WiFi network: %s", cfg->wifi_ssid); res = cyw43_arch_wifi_connect_async(cfg->wifi_ssid, cfg->wifi_passwd, wifi_auth_mode); if (res != 0) { log_msg(LOG_ERR, "WiFi rejoin failed: %d", res); return; } } static bool wifi_check_status() { int status = cyw43_tcpip_link_status(&cyw43_state, CYW43_ITF_STA); if (status != net_state->wifi_status) { log_msg(LOG_NOTICE, "WiFi Status: %s ", wifi_link_status_text(status)); net_state->wifi_status = status; net_state->wifi_status_change = get_absolute_time(); } else { /* Check if should try rejoining to the network... */ if (status != CYW43_LINK_UP) { uint32_t delay = WIFI_REJOIN_DELAY; if (status == CYW43_LINK_JOIN || status == CYW43_LINK_NOIP) delay *= 3; if (time_elapsed(net_state->wifi_status_change, delay)) return true; } } return false; } static void wifi_link_cb(struct netif *netif) { wifi_check_status(); log_msg(LOG_WARNING, "Network Link: %s", (netif_is_link_up(netif) ? "UP" : "DOWN")); } static void wifi_status_cb(struct netif *netif) { wifi_check_status(); if (netif_is_up(netif)) { log_msg(LOG_WARNING, "Network Interface: UP (%s)", ipaddr_ntoa(netif_ip_addr4(netif))); net_state->netif_up = true; ip_addr_set(&net_state->ip, netif_ip_addr4(netif)); ip_addr_set(&net_state->netmask, netif_ip_netmask4(netif)); ip_addr_set(&net_state->gateway, netif_ip_gw4(netif)); for (int i = 0; i < DNS_MAX_SERVERS; i++) { const ip_addr_t *s = dns_getserver(i); if (s) ip_addr_set(&net_state->dns_servers[i], s); else ip_addr_set_zero(&net_state->dns_servers[i]); } for (int i = 0; i < SNTP_MAX_SERVERS; i++) { const ip_addr_t *s = sntp_getserver(i); if (s) ip_addr_set(&net_state->ntp_servers[i], s); else ip_addr_set_zero(&net_state->ntp_servers[i]); } } else { log_msg(LOG_WARNING, "Network Interface: DOWN"); net_state->netif_up = false; } if (netif_is_up(netif) && !network_initialized) { /* Network interface came up, first time... */ if (cfg->syslog_active && !ip_addr_isany(&net_state->syslog_server)) { syslog_open(&net_state->syslog_server, 0, LOG_USER, net_state->hostname); log_msg(LOG_NOTICE, "Syslog client enabled (server: %s)", ipaddr_ntoa(&net_state->syslog_server)); } network_initialized = true; t_network_initialized = get_absolute_time(); } } static void wifi_init() { uint32_t country_code = CYW43_COUNTRY_WORLDWIDE; struct netif *n = &cyw43_state.netif[CYW43_ITF_STA]; uint32_t wifi_auth_mode; int res; memset(net_state->mac, 0, sizeof(net_state->mac)); ip_addr_set_zero(&net_state->ip); ip_addr_set_zero(&net_state->netmask); ip_addr_set_zero(&net_state->gateway); net_state->hostname[0] = 0; net_state->netif_up = false; net_state->wifi_status = FANPICO_WIFI_INACTIVE; if (!rp2_is_picow()) return; log_msg(LOG_NOTICE, "Initializing WiFi..."); /* If WiFi country is defined in configuratio, use it... */ const char *country = cfg->wifi_country; if (strlen(country) > 1) { uint rev = 0; if (country[2] >= '0' && country[2] <= '9') { rev = country[2] - '0'; } country_code = CYW43_COUNTRY(country[0], country[1], rev); log_msg(LOG_NOTICE, "WiFi country code: %06x (%s)", country_code, country); } if ((res = cyw43_arch_init_with_country(country_code))) { log_msg(LOG_ALERT, "WiFi initialization failed: %d", res); return; } cyw43_arch_enable_sta_mode(); cyw43_wifi_pm(&cyw43_state, CYW43_NONE_PM); cyw43_arch_lwip_begin(); /* Set WiFi interface hostname... */ if (strlen(cfg->hostname) > 0) { strncopy(net_state->hostname, cfg->hostname, sizeof(net_state->hostname)); } else { snprintf(net_state->hostname, sizeof(net_state->hostname), "FanPico-%s", pico_serial_str()); } log_msg(LOG_NOTICE, "WiFi hostname: %s", net_state->hostname); netif_set_hostname(n, net_state->hostname); /* Set callback for link/interface status changes */ netif_set_link_callback(n, wifi_link_cb); netif_set_status_callback(n, wifi_status_cb); /* Configure interface */ if (!ip_addr_isany(&cfg->ip)) { /* Configure static IP */ dhcp_stop(n); log_msg(LOG_NOTICE, " IP: %s", ipaddr_ntoa(&cfg->ip)); log_msg(LOG_NOTICE, "Netmask: %s", ipaddr_ntoa(&cfg->netmask)); log_msg(LOG_NOTICE, "Gateway: %s", ipaddr_ntoa(&cfg->gateway)); netif_set_addr(n, &cfg->ip, &cfg->netmask, &cfg->gateway); } else { /* Use DHCP (default) */ log_msg(LOG_NOTICE, "IP: DHCP"); } netif_set_up(n); if (!ip_addr_isany(&cfg->dns_servers[0])) { for (int i = 0; i < DNS_MAX_SERVERS; i++) { const ip_addr_t *ip = &cfg->dns_servers[i]; if (!ip_addr_isany(ip)) { log_msg(LOG_NOTICE, "DNS Server #%d: %s", i + 1, ipaddr_ntoa(ip)); dns_setserver(i, ip); } } } cyw43_arch_lwip_end(); /* Get adapter MAC address */ if ((res = cyw43_wifi_get_mac(&cyw43_state, CYW43_ITF_STA, net_state->mac))) { log_msg(LOG_ALERT, "Cannot get WiFi MAC address: %d", res); return; } log_msg(LOG_NOTICE, "WiFi MAC: %s", mac_address_str(net_state->mac)); wifi_get_auth_type(cfg->wifi_auth_mode, &wifi_auth_mode); log_msg(LOG_NOTICE, "WiFi Authentication mode: %s", wifi_auth_type_name(wifi_auth_mode)); /* Attempt to connect to a WiFi network... */ if (strlen(cfg->wifi_ssid) > 0) { if (strlen(cfg->wifi_passwd) < 1 && wifi_auth_mode != CYW43_AUTH_OPEN) { log_msg(LOG_ERR, "No WiFi Password configured."); return; } log_msg(LOG_NOTICE, "WiFi connecting to network: %s", cfg->wifi_ssid); if (cfg->wifi_mode == 0) { /* Default is to initiate asynchronous connection. */ res = cyw43_arch_wifi_connect_async(cfg->wifi_ssid, cfg->wifi_passwd, wifi_auth_mode); } else { /* If "SYS:WIFI:MODE 1" has been used, attempt synchronous connection as connection to some buggy(?) APs don't seem to always work with asynchronouse connection... */ int retries = 2; do { res = cyw43_arch_wifi_connect_timeout_ms(cfg->wifi_ssid, cfg->wifi_passwd, wifi_auth_mode, 10000); log_msg(LOG_NOTICE, "cyw43_arch_wifi_connect_timeout_ms(): %d", res); } while (res != 0 && --retries > 0); } if (res != 0) { log_msg(LOG_ERR, "WiFi connect failed: %d", res); return; } } else { log_msg(LOG_ERR, "No WiFi SSID configured"); return; } wifi_initialized = true; cyw43_arch_lwip_begin(); /* Enable SNTP client... */ if (cfg->ntp_active) { if (!ip_addr_isany(&cfg->ntp_servers[0])) { sntp_servermode_dhcp(0); for (int i = 0; i < SNTP_MAX_SERVERS; i++) { const ip_addr_t *ip = &cfg->ntp_servers[i]; if (!ip_addr_isany(ip)) { log_msg(LOG_NOTICE, "NTP Server #%d: %s", i + 1, ipaddr_ntoa(ip)); sntp_setserver(i, ip); } ip_addr_copy(net_state->ntp_servers[i], *ip); } } else { log_msg(LOG_NOTICE, "NTP Server: DHCP"); sntp_servermode_dhcp(1); } sntp_init(); } /* Enable HTTP server */ if (cfg->http_active) { log_msg(LOG_NOTICE, "HTTP Server enabled"); if (cfg->http_port > 0) fanpico_http_server_port = cfg->http_port; if (cfg->https_port > 0) fanpico_https_server_port = cfg->https_port; httpd_init(); #if TLS_SUPPORT struct altcp_tls_config *tls_config = tls_server_config(); if (tls_config) { log_msg(LOG_NOTICE, "HTTPS/TLS enabled"); httpd_inits(tls_config); } #endif http_set_ssi_handler(fanpico_ssi_handler, NULL, 0); } /* Enable Telnet server */ if (cfg->telnet_active) { log_msg(LOG_NOTICE, "Telnet Server enabled"); telnetserver_init(); } /* Enable SSH server */ if (cfg->ssh_active) { log_msg(LOG_NOTICE, "SSH Server enabled"); sshserver_init(); } /* Enable SNMP agent */ if (cfg->snmp_active) { log_msg(LOG_NOTICE,"SNMP Agent enabled"); fanpico_snmp_init(); } cyw43_arch_lwip_end(); if (cfg->syslog_active) ip_addr_copy(net_state->syslog_server, cfg->syslog_server); } void wifi_status() { struct netif *n = &cyw43_state.netif[CYW43_ITF_STA]; int res; if (!wifi_initialized) { res = FANPICO_WIFI_INACTIVE; } else { res = cyw43_tcpip_link_status(&cyw43_state, CYW43_ITF_STA); } printf("%s,", wifi_link_status_text(res)); printf("%s,", ipaddr_ntoa(netif_ip_addr4(n))); printf("%s,", ipaddr_ntoa(netif_ip_netmask4(n))); printf("%s,%d\n", ipaddr_ntoa(netif_ip_gw4(n)), res); } void wifi_info_display() { char buf[32]; printf(" Network Link: %s\n", (net_state->netif_up ? "Up" : "Down")); uptime_to_str(buf, sizeof(buf), absolute_time_diff_us(net_state->wifi_status_change, get_absolute_time()), true); printf(" WiFi Status: %s (%s since last change)\n", wifi_link_status_text(net_state->wifi_status), buf); printf(" MAC Address: %s\n", mac_address_str(net_state->mac)); printf(" DHCP Client: %s\n", (ip_addr_isany(&cfg->ip) ? "Enabled" : "Disabled")); printf("DHCP Hostname: %s\n", net_state->hostname); printf("\n"); printf(" IP Address: %s\n", ipaddr_ntoa(&net_state->ip)); printf(" Netmask: %s\n", ipaddr_ntoa(&net_state->netmask)); printf(" Gateway: %s\n", ipaddr_ntoa(&net_state->gateway)); printf("\n"); printf(" DNS Servers: %s", ipaddr_ntoa(&net_state->dns_servers[0])); for (int i = 1; i < DNS_MAX_SERVERS; i++) { if (!ip_addr_isany(&net_state->dns_servers[i])) { printf(", %s", ipaddr_ntoa(&net_state->dns_servers[i])); } } printf("\n"); printf(" NTP Servers: %s", ipaddr_ntoa(&net_state->ntp_servers[0])); for (int i = 1; i < SNTP_MAX_SERVERS; i++) { if (!ip_addr_isany(&net_state->ntp_servers[i])) { printf(", %s", ipaddr_ntoa(&net_state->ntp_servers[i])); } } printf("\n"); printf(" Log Server: %s\n", ipaddr_ntoa(&net_state->syslog_server)); } static void wifi_poll() { static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(test_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(publish_status_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(publish_temp_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(publish_vsensor_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(publish_rpm_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(publish_duty_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(command_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(reconnect_t, 0); static absolute_time_t ABSOLUTE_TIME_INITIALIZED_VAR(wifi_status_check_t, 0); static bool init_msg_sent = false; if (!wifi_initialized) return; #if PICO_CYW43_ARCH_POLL cyw43_arch_poll(); #endif /* Periodically check for WiFi (link) status... */ if (time_passed(&wifi_status_check_t, 1500)) { if (wifi_check_status()) { /* Attempt to rejoin if connection has been in failed state for a while... */ wifi_rejoin(); } } if (!network_initialized) return; if (!init_msg_sent) { if (time_passed(&t_network_initialized, 2000)) { init_msg_sent = true; log_msg(LOG_INFO, "Network initialization complete.%s", (rebooted_by_watchdog ? " [Rebooted by watchdog]" : "")); if (cfg->snmp_active) fanpico_snmp_startup_trap(persistent_mem->warmstart); if (strlen(cfg->mqtt_server) > 0) fanpico_setup_mqtt_client(); } } if (time_passed(&test_t, 3600 * 1000)) { uint32_t secs = to_us_since_boot(get_absolute_time()) / 1000000; uint32_t mins = secs / 60; uint32_t hours = mins / 60; uint32_t days = hours / 24; syslog_msg(LOG_INFO, "Uptime: %lu days %02lu:%02lu:%02lu%s", days, hours % 24, mins % 60, secs % 60, (rebooted_by_watchdog ? " [Rebooted by watchdog]" : "")); } if (fanpico_mqtt_client_active()) { /* Check for pending SCPI command received via MQTT */ if (time_passed(&command_t, 500)) { fanpico_mqtt_scpi_command(); } /* Publish status update to MQTT status topic */ if (cfg->mqtt_status_interval > 0) { if (time_passed(&publish_status_t, cfg->mqtt_status_interval * 1000)) { fanpico_mqtt_publish(); } } if (cfg->mqtt_temp_interval > 0) { if (time_passed(&publish_temp_t, cfg->mqtt_temp_interval * 1000)) { fanpico_mqtt_publish_temp(); } } if (cfg->mqtt_vsensor_interval > 0) { if (time_passed(&publish_vsensor_t, cfg->mqtt_vsensor_interval * 1000)) { fanpico_mqtt_publish_vsensor(); } } if (cfg->mqtt_rpm_interval > 0) { if (time_passed(&publish_rpm_t, cfg->mqtt_rpm_interval * 1000)) { fanpico_mqtt_publish_rpm(); } } if (cfg->mqtt_duty_interval > 0) { if (time_passed(&publish_duty_t, cfg->mqtt_duty_interval * 1000)) { fanpico_mqtt_publish_duty(); } } if (time_passed(&reconnect_t, 1000)) { fanpico_mqtt_reconnect(); } } } static const char* wifi_ip() { static char ip_str[16 + 1]; if (ip_addr_isany(&net_state->ip)) return NULL; return ipaddr_ntoa_r(&net_state->ip, ip_str, sizeof(ip_str)); } void pico_set_system_time(long int sec) { struct timespec ts; struct tm *ntp, ntp_r; time_t ntp_time = sec; if (!(ntp = localtime_r(&ntp_time, &ntp_r))) return; time_t_to_timespec(ntp_time, &ts); if (aon_timer_is_running()) { aon_timer_set_time(&ts); } else { aon_timer_start(&ts); } log_msg(LOG_NOTICE, "SNTP Set System time: %s", asctime(ntp)); } #endif /* WIFI_SUPPORT */ /****************************************************************************/ void network_init() { #ifdef WIFI_SUPPORT wifi_init(); #endif } void network_poll() { #ifdef WIFI_SUPPORT wifi_poll(); #endif } const char *network_ip() { #ifdef WIFI_SUPPORT return wifi_ip(); #else return NULL; #endif } ================================================ FILE: src/onewire.c ================================================ /* onewire.c Copyright (C) 2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "pico_1wire.h" #include "fanpico.h" typedef struct onewire_state_t { pico_1wire_t *ctx; uint devices; uint64_t addr[ONEWIRE_MAX_COUNT]; float temp[ONEWIRE_MAX_COUNT]; } onewire_state_t; static onewire_state_t onewire_state_struct; static onewire_state_t *onewire_bus = &onewire_state_struct; uint64_t onewire_address(uint sensor) { if (sensor >= onewire_bus->devices) return 0; return onewire_bus->addr[sensor]; } void onewire_scan_bus() { int res, retries; bool psu; uint count; if (!onewire_bus->ctx) return; log_msg(LOG_INFO, "Scanning 1-Wire bus..."); /* Check for any devices on the bus... */ retries = 0; do { res = pico_1wire_reset_bus(onewire_bus->ctx); } while (!res && retries++ < 3); if (!res) { log_msg(LOG_INFO, "No devices found in 1-Wire bus."); return; } /* Check if any device requires "phantom" power... */ res = pico_1wire_read_power_supply(onewire_bus->ctx, 0, &psu); if (psu) { log_msg(LOG_INFO, "All devices in 1-Wire bus have power."); } else { log_msg(LOG_INFO, "1-Wire bus has devices requiring 'phantom' power."); return; } /* Search for devices... */ res = pico_1wire_search_rom(onewire_bus->ctx, onewire_bus->addr, ONEWIRE_MAX_COUNT, &count); if (res == 2) { log_msg(LOG_NOTICE, "1-Wire bus has more than %d devices.", ONEWIRE_MAX_COUNT); } else if (res) { log_msg(LOG_NOTICE, "1-Wire Search ROM Addresses failed: %d", res); return; } if (onewire_bus->devices != count) { log_msg(LOG_INFO, "1-Wire device count change detected: %u --> %u", onewire_bus->devices, count); for (int i = 0; i < count; i++) { log_msg(LOG_INFO, "1-Wire Device%d: %016llx", i + 1, onewire_bus->addr[i]); } onewire_bus->devices = count; } } int onewire_read_temps(struct fanpico_config *config, struct fanpico_state *state) { static uint step = 0; static uint sensor = 0; int res; float temp; if (!onewire_bus->ctx) return -1; if (step > 1) step = 0; if (onewire_bus->devices < 1) step = 2; if (step == 0) { /* Send "Convert Temperature" command to all devices. */ res = pico_1wire_convert_temperature(onewire_bus->ctx, 0, false); if (res) { log_msg(LOG_INFO, "pico_1wire_convert_temperature() failed: %d", res); step = 2; return 15000; } else { log_msg(LOG_DEBUG, "1-Wire Initiate temperature conversion"); sensor = 0; step++; } return 1000; /* delay 1sec before reading measurement results (min 750ms) */ } else if (step == 1) { if (sensor < onewire_bus->devices) { /* Read Temperature from one sensor */ res = pico_1wire_get_temperature(onewire_bus->ctx, onewire_bus->addr[sensor], &temp); if (res) { log_msg(LOG_INFO, "1-Wire Device%d: cannot get temperature: %d", sensor + 1, res); } else { log_msg(LOG_DEBUG, "1-Wire Device%d: temperature %5.1fC", sensor + 1, temp); state->onewire_temp[sensor] = temp; state->onewire_temp_updated[sensor] = get_absolute_time(); } sensor++; return 100; /* delay 100ms between reading sensors */ } step = 2; } return 15000; /* delay 15sec between measurements */ } void setup_onewire_bus() { memset(onewire_bus, 0, sizeof(onewire_state_t)); if (!cfg->onewire_active) { log_msg(LOG_INFO, "1-Wire Bus disabled"); return; } else if ((!cfg->spi_active && !cfg->serial_active) || !ONEWIRE_SHARED) { log_msg(LOG_NOTICE, "Initializing 1-Wire Bus..."); onewire_bus->ctx = pico_1wire_init(ONEWIRE_PIN, -1, true); if (!onewire_bus->ctx) { log_msg(LOG_ERR, "1-Wire initialization failed!"); return; } onewire_scan_bus(); } } ================================================ FILE: src/psram.c ================================================ /* psram.c Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #if !PICO_RP2040 #include "hardware/structs/qmi.h" #endif #include "hardware/structs/ioqspi.h" #include "hardware/structs/xip_ctrl.h" #include "hardware/gpio.h" #include "hardware/clocks.h" #include "hardware/sync.h" #include "psram.h" /* NOTE! This code tries to minimize RAM usage. Currently only 324 bytes of RAM is used for static variables and in-memory functions. */ /* PSRAM Manufacturer IDs */ #define MFID_APMEMORY 0x0d #define MFID_ISSI 0x9d /* PSRAM Command Codes */ #define CMD_READ 0x03 #define CMD_FAST_READ 0x0b #define CMD_QUAD_READ 0xeb #define CMD_WRITE 0x02 #define CMD_QUAD_WRITE 0x38 #define CMD_ENTER_QPI_MODE 0x35 #define CMD_EXIT_QPI_MODE 0xf5 #define CMD_RESET_ENABLE 0x66 #define CMD_RESET 0x99 #define CMD_SET_BURST_LEN 0xc0 #define CMD_READ_ID 0x9f #define CMD_DPD_MODE_ENTRY 0xb9 /* KGD (Known Good Die) Test */ #define KGD_FAIL 0x55 #define KGD_PASS 0x5d /* Speed of SPI mode access is not important. It just needs to be "slow enough" to reliably send "direct" mode commands during setup. */ #define PSRAM_MAX_CSR_CLK 5000000 /* 5MHz max clock for "direct" mode */ struct psram_type_t { uint8_t mfid; const char* mfname; uint32_t max_clk; uint64_t max_select_fs; uint32_t min_deselect_fs; int min_deselect_cs; }; /* PSRAM timings by chip manufacturer */ static const struct psram_type_t psram_chip_types[] = { /* ID Name Max Clk (Mhz) tCEM (fs) tCPM (fs) tCPM (cs) */ { MFID_APMEMORY, "AP Memory", 109000000, 8000000000, 18000000, -1 }, { MFID_ISSI, "ISSI", 104000000, 4000000000, 0, 1 }, { 0, "Unknown", 109000000, 8000000000, 50000000, -1 } }; #ifdef PSRAM_CS_PIN static size_t psram_sz = 0; static psram_id_t psram_id = { 0 }; static inline void csr_busy_wait() { /* Wait for BUSY flag to clear */ while((qmi_hw->direct_csr & QMI_DIRECT_CSR_BUSY_BITS)) { tight_loop_contents(); }; } static inline void csr_txempty_wait() { /* Wait for TXEMPTY flag to get set */ while((qmi_hw->direct_csr & QMI_DIRECT_CSR_TXEMPTY_BITS) == 0) { tight_loop_contents(); }; } static inline void csr_enable_direct_mode(uint8_t csr_clkdiv) { /* Enable CRS mode and set clock divider */ qmi_hw->direct_csr = csr_clkdiv << QMI_DIRECT_CSR_CLKDIV_LSB | QMI_DIRECT_CSR_EN_BITS; csr_busy_wait(); } static inline void csr_disable_direct_mode() { /* Disable direct mode */ hw_clear_bits(&qmi_hw->direct_csr, QMI_DIRECT_CSR_EN_BITS | QMI_DIRECT_CSR_ASSERT_CS1N_BITS); } static void __no_inline_not_in_flash_func(csr_send_command)(uint32_t cmd, uint16_t *rx) { uint16_t res; hw_set_bits(&qmi_hw->direct_csr, QMI_DIRECT_CSR_ASSERT_CS1N_BITS); qmi_hw->direct_tx = cmd; csr_txempty_wait(); csr_busy_wait(); res = qmi_hw->direct_rx; hw_clear_bits(&qmi_hw->direct_csr, QMI_DIRECT_CSR_ASSERT_CS1N_BITS); if (rx) *rx = res; } static void __no_inline_not_in_flash_func(psram_read_id)(uint8_t csr_clkdiv, uint8_t *buffer) { uint32_t saved_ints = save_and_disable_interrupts(); uint8_t rx; csr_enable_direct_mode(csr_clkdiv); /* Send 'Exit QPI mode' command to make sure chip is in SPI mode */ csr_send_command( QMI_DIRECT_TX_OE_BITS | QMI_DIRECT_TX_IWIDTH_VALUE_Q << QMI_DIRECT_TX_IWIDTH_LSB | CMD_EXIT_QPI_MODE, NULL); /* Send 'Read ID' command (this only works in SPI mode) */ hw_set_bits(&qmi_hw->direct_csr, QMI_DIRECT_CSR_ASSERT_CS1N_BITS); for (int i = 0; i < (4 + 8); i++) { qmi_hw->direct_tx = (i == 0 ? CMD_READ_ID : 0x00); csr_txempty_wait(); csr_busy_wait(); rx = qmi_hw->direct_rx; if (i >= 4) buffer[i - 4] = rx; } csr_disable_direct_mode(); restore_interrupts(saved_ints); } static void __no_inline_not_in_flash_func(psram_qmi_setup)(uint8_t clkdiv, uint8_t csr_clkdiv, uint8_t max_select, uint8_t min_deselect, uint8_t rxdelay) { uint32_t saved_ints = save_and_disable_interrupts(); /* Reset PSRAM chip and set it in QPI Mode */ csr_enable_direct_mode(csr_clkdiv); csr_send_command(CMD_RESET_ENABLE, NULL); csr_send_command(CMD_RESET, NULL); csr_send_command(CMD_ENTER_QPI_MODE, NULL); csr_disable_direct_mode(); /* Configure QSPI Memory Interface */ /* Set M1_TIMING register */ qmi_hw->m[1].timing = ( 1 << QMI_M1_TIMING_COOLDOWN_LSB | QMI_M1_TIMING_PAGEBREAK_VALUE_1024 << QMI_M1_TIMING_PAGEBREAK_LSB | 0 << QMI_M1_TIMING_SELECT_SETUP_LSB | 3 << QMI_M1_TIMING_SELECT_HOLD_LSB | max_select << QMI_M1_TIMING_MAX_SELECT_LSB | min_deselect << QMI_M1_TIMING_MIN_DESELECT_LSB | rxdelay << QMI_M1_TIMING_RXDELAY_LSB | clkdiv << QMI_M1_TIMING_CLKDIV_LSB ); /* Set M1_RFMT / M1_RCMD registers */ qmi_hw->m[1].rfmt = ( 0 << QMI_M1_RFMT_DTR_LSB | QMI_M1_RFMT_DUMMY_LEN_VALUE_24 << QMI_M1_RFMT_DUMMY_LEN_LSB | QMI_M1_RFMT_SUFFIX_LEN_VALUE_NONE << QMI_M1_RFMT_SUFFIX_LEN_LSB | QMI_M1_RFMT_PREFIX_LEN_VALUE_8 << QMI_M1_RFMT_PREFIX_LEN_LSB | QMI_M1_RFMT_DATA_WIDTH_VALUE_Q << QMI_M1_RFMT_DATA_WIDTH_LSB | QMI_M1_RFMT_DUMMY_WIDTH_VALUE_Q << QMI_M1_RFMT_DUMMY_WIDTH_LSB | QMI_M1_RFMT_SUFFIX_WIDTH_VALUE_Q << QMI_M1_RFMT_SUFFIX_WIDTH_LSB | QMI_M1_RFMT_ADDR_WIDTH_VALUE_Q << QMI_M1_RFMT_ADDR_WIDTH_LSB | QMI_M1_RFMT_PREFIX_WIDTH_VALUE_Q << QMI_M1_RFMT_PREFIX_WIDTH_LSB ); qmi_hw->m[1].rcmd = ( 0 << QMI_M1_RCMD_SUFFIX_LSB | CMD_QUAD_READ << QMI_M1_RCMD_PREFIX_LSB ); /* Set M1_WFMT / M1_WCMD registers */ qmi_hw->m[1].wfmt = ( 0 << QMI_M1_WFMT_DTR_LSB | QMI_M1_WFMT_DUMMY_LEN_VALUE_NONE << QMI_M1_WFMT_DUMMY_LEN_LSB | QMI_M1_WFMT_SUFFIX_LEN_VALUE_NONE << QMI_M1_WFMT_SUFFIX_LEN_LSB | QMI_M1_WFMT_PREFIX_LEN_VALUE_8 << QMI_M1_WFMT_PREFIX_LEN_LSB | QMI_M1_WFMT_DATA_WIDTH_VALUE_Q << QMI_M1_WFMT_DATA_WIDTH_LSB | QMI_M1_WFMT_DUMMY_WIDTH_VALUE_Q << QMI_M1_WFMT_DUMMY_WIDTH_LSB | QMI_M1_WFMT_SUFFIX_WIDTH_VALUE_Q << QMI_M1_WFMT_SUFFIX_WIDTH_LSB | QMI_M1_WFMT_ADDR_WIDTH_VALUE_Q << QMI_M1_WFMT_ADDR_WIDTH_LSB | QMI_M1_WFMT_PREFIX_WIDTH_VALUE_Q << QMI_M1_WFMT_PREFIX_WIDTH_LSB ); qmi_hw->m[1].wcmd = ( 0 << QMI_M1_WCMD_SUFFIX_LSB | CMD_QUAD_WRITE << QMI_M1_WCMD_PREFIX_LSB ); restore_interrupts(saved_ints); /* Enable writes to PSRAM (XIP) memory region */ hw_set_bits(&xip_ctrl_hw->ctrl, XIP_CTRL_WRITABLE_M1_BITS); } static bool psram_is_writable(void *base_addr) { volatile uint32_t *psram = (volatile uint32_t*)base_addr; volatile uint32_t rb_1, rb_2; /* Test if we can write to PSRAM... */ psram[0] = 0xdeadc0de; rb_1 = psram[0]; psram[0] = 0; rb_2 = psram[0]; return (rb_1 == 0xdeadc0de && rb_2 == 0) ? true : false; } static bool psram_check_size(void *base_addr, uint32_t size) { volatile uint32_t *psram = (volatile uint32_t*)base_addr; uint32_t psram_len = size / sizeof(uint32_t); if (size > PSRAM_WINDOW_SIZE) return false; if (size == PSRAM_WINDOW_SIZE) return true; /* Clear out beginning of the PSRAM */ psram[0] = 0; /* Write past the 'end' of PSRAM */ psram[psram_len] = 0xc0ffee42; /* Check if we see the earlier write at the beginning of the PSRAM. */ if (psram[0] == 0xc0ffee42) { psram[0] = 0; return true; } psram[psram_len] = 0; return false; } static int psram_init(int pin, bool clear_memory) { const struct psram_type_t *chip = psram_chip_types; uint32_t sys_clk = clock_get_hz(clk_sys); uint32_t clock_period_fs = 1000000000000000ll / sys_clk; uint8_t csr_clkdiv = (sys_clk + PSRAM_MAX_CSR_CLK - 1) / PSRAM_MAX_CSR_CLK; int ret = 0; psram_sz = 0; if (pin < 0) return -1; /* Configure GPIO pin */ gpio_set_function(pin, GPIO_FUNC_XIP_CS1); /* Check if PSRAM chip is present */ psram_read_id(csr_clkdiv, (uint8_t*)&psram_id); if (psram_id.kgd != KGD_PASS) { /* No PSRAM chip found */ return -2; } /* Lookup PSRAM Timings */ while (chip->mfid && chip->mfid != psram_id.mfid) chip++; /* Density EID[47:45] (encoding of this is manufacturer specific) */ uint8_t density = (psram_id.eid[0] >> 5); /* Try to determine PSRAM size */ switch (psram_id.mfid) { case MFID_APMEMORY: psram_sz = 2; if (density == 1) psram_sz = 4; else if (density == 2) psram_sz = 8; break; case MFID_ISSI: psram_sz = 1; if (density == 1) psram_sz = 2; else if (density == 2) psram_sz = 4; break; default: psram_sz = 1; } /* Convert size from megabytes to bytes */ psram_sz <<= 20; /* Calculate clock divider to get as close as possible to the max supported clock speed */ uint8_t clkdiv = (sys_clk + chip->max_clk - 1) / chip->max_clk; /* Calculate PSRAM timings */ uint8_t max_select = (chip->max_select_fs >> 6) / clock_period_fs; uint8_t min_deselect = (chip->min_deselect_fs + clock_period_fs - 1) / clock_period_fs; if (chip->min_deselect_cs >= 0) min_deselect = chip->min_deselect_cs; uint8_t rxdelay = 1 + (sys_clk > 150000000 ? clkdiv : 1); /* Enable PSRAM */ psram_qmi_setup(clkdiv , csr_clkdiv, max_select, min_deselect, rxdelay); /* Test that we can write to PSRAM */ if (!psram_is_writable((void*)PSRAM_NOCACHE_BASE)) { /* Cannot write to PSRAM! */ psram_sz = 0; return -3; } /* Validate PSRAM size determined from the Read ID command */ uint32_t actual_size = PSRAM_WINDOW_SIZE; for (uint32_t i = 1 << 20; i < PSRAM_WINDOW_SIZE; i <<= 1) { if (psram_check_size((void*)PSRAM_NOCACHE_BASE, i)) { actual_size = i; break; } } if (actual_size != psram_sz) { /* PSRAM size mismatch. Use detected memory size. */ psram_sz = actual_size; ret = -4; } /* Clear PSRAM */ if (clear_memory) memset((void*)PSRAM_NOCACHE_BASE, 0, psram_sz); return ret; } #endif void psram_setup() { #ifdef PSRAM_CS_PIN int res = psram_init(PSRAM_CS_PIN, true); if (res == -3) { printf("PSRAM: Cannot write to PSRAM!\n"); } else if (res == -4) { printf("PSRAM: Memory size mismatch!\n"); } #endif } size_t psram_size() { #ifdef PSRAM_CS_PIN return psram_sz; #else return 0; #endif } const psram_id_t* psram_get_id() { #ifdef PSRAM_CS_PIN return (const psram_id_t*)&psram_id; #else return NULL; #endif } const char* psram_get_manufacturer(uint8_t mfid) { const struct psram_type_t *chip = psram_chip_types; while (chip->mfid && chip->mfid != mfid) chip++; return chip->mfname; } ================================================ FILE: src/psram.h ================================================ /* psram.h Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef FANPICO_PSRAM_H #define FANPICO_PSRAM_H 1 #include "hardware/platform_defs.h" #include "hardware/regs/addressmap.h" #define PSRAM_BASE _u(0x11000000) #define PSRAM_NOCACHE_BASE _u(0x15000000) #define PSRAM_WINDOW_SIZE (16 << 20) #ifndef PSRAM_CS_PIN #ifdef PIMORONI_PGA2350_PSRAM_CS_PIN #define PSRAM_CS_PIN PIMORONI_PGA2350_PSRAM_CS_PIN #elifdef PIMORONI_PICO_PLUS2_PSRAM_CS_PIN #define PSRAM_CS_PIN PIMORONI_PICO_PLUS2_PSRAM_CS_PIN #elifdef PIMORONI_PICO_PLUS2_W_PSRAM_CS_PIN #define PSRAM_CS_PIN PIMORONI_PICO_PLUS2_W_PSRAM_CS_PIN #elifdef WEACT_STUDIO_RP2350B_PSRAM_CS_PIN #define PSRAM_CS_PIN WEACT_STUDIO_RP2350B_PSRAM_CS_PIN #elifdef ADAFRUIT_FEATHER_RP2350 #define PSRAM_CS_PIN 8 #endif #endif typedef struct psram_id_t { uint8_t mfid; /* Manufacturer ID */ uint8_t kgd; /* Known Good Die */ uint8_t eid[6]; /* EID */ } psram_id_t; void psram_setup(); size_t psram_size(); const psram_id_t* psram_get_id(); const char* psram_get_manufacturer(uint8_t mfid); #endif /* FANPICO_PSRAM_H */ ================================================ FILE: src/pulse_len.c ================================================ /* pulse_len.c Copyright (C) 2021-2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include "pico/stdlib.h" #include "hardware/gpio.h" /* * Functions for measuring pulses on GPIO pins. */ /* pulse_measure - measure pulse length or interval from a GPIO * * This function does not use interrupts. On a RP2040 this was observed * to achieve about +/- 1 microsecond accuracy, based on quick test with * a signal generator. Function works down to about 5 microsecond pulse * lengths. * * pin: GPIO input pin * type: true=measure HIGH pulse, false = measure LOW pulse * mode: true=measure pulse length, false = measure time between two pulses * timeout: timeout in ms, return 0 if no pulse seen before timeout * */ uint64_t pulse_measure(int pin, bool type, bool mode, uint32_t timeout_ms) { absolute_time_t start = get_absolute_time(); absolute_time_t pulse_start = start; absolute_time_t now; uint64_t timeout = timeout_ms * 1000; int state = 0; bool in; do { in = gpio_get(pin); now = get_absolute_time(); if (state == 0 && in == !type) { /* wait until previous pulse is done... */ state = 1; } else if (state == 1 && in == type) { /* pulse start detected */ state = 2; pulse_start = now; } else if (state == 2 && in == !type) { /* pulse end detected */ if (mode) { return absolute_time_diff_us(pulse_start, now); } else { state = 3; } } else if (state == 3 && in == type) { /* next pulse start detected */ return absolute_time_diff_us(pulse_start, now); } } while (absolute_time_diff_us(start, now) <= timeout); return 0; } /* pulseIn - Arduino style wrapper for pulse_measure */ uint64_t pulseIn(int gpio, int value, uint32_t timeout_ms) { return pulse_measure(gpio, (value ? true : false), true, timeout_ms); } uint pulse_pin = 0; volatile uint32_t pulse_counter = 0; volatile bool measure_complete = false; absolute_time_t pulse_start; absolute_time_t pulse_end; uint32_t pulse_events; /* Interrupt handler to measure pulse interval */ void __time_critical_func(pulse_measure_callback)(uint gpio, uint32_t events) { if (gpio != pulse_pin || pulse_counter > 1) return; if (pulse_counter == 0) { pulse_start = get_absolute_time(); pulse_counter++; } else if (pulse_counter == 1) { pulse_end = get_absolute_time(); measure_complete = true; pulse_counter++; } } /* Setup a GPIO pin to be used for measurements */ void pulse_setup_interrupt(uint gpio, uint32_t events) { pulse_pin = gpio; pulse_events = events; pulse_counter = 2; measure_complete = false; gpio_set_irq_enabled_with_callback(pulse_pin, pulse_events, true, &pulse_measure_callback); } void pulse_disable_interrupt() { gpio_set_irq_enabled(pulse_pin, pulse_events, false); } void pulse_enable_interrupt() { gpio_set_irq_enabled(pulse_pin, pulse_events, true); } /* Call to start measruement. */ void pulse_start_measure() { pulse_disable_interrupt(); pulse_counter = 0; measure_complete = false; pulse_enable_interrupt(); } /* Call to check if a pulse has been measured yet. */ uint64_t pulse_interval() { uint64_t delta; if (!measure_complete) return 0; /* Calculate pulse length. */ delta = absolute_time_diff_us(pulse_start, pulse_end); return delta; } /* eof :-) */ ================================================ FILE: src/pulse_len.h ================================================ /* pulse_len.h Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef PULSE_LEN_H #define PULSE_LEN_H 1 /* Busy wait based measurement (blocking). */ uint64_t pulse_measure(int pin, bool type, bool mode, uint32_t timeout); uint64_t pulseIn(int gpio, int value, uint32_t timeout_ms); /* Interrupt based measurement (non-blocking). */ void pulse_setup_interrupt(uint gpio, uint32_t events); void pulse_disable_interrupt(); void pulse_start_measure(); uint64_t pulse_interval(); #endif /* PULSE_LEN_H */ ================================================ FILE: src/pwm.c ================================================ /* pwm.c Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include "pico/stdlib.h" #include "hardware/gpio.h" #include "hardware/pwm.h" #include "hardware/clocks.h" #include "fanpico.h" #define PWM_IN_CLOCK_DIVIDER 100 #define PWM_IN_SAMPLE_INTERVAL 10 /* milliseconds */ /* * Functions for generating (emulating) fan PWM control signal and * reading (motherboard) PWM signal for controlling fans. * Pico PWM hardware is used for both. */ /* Map of fan PWM signal output pins. Every two pins must be the A and B pins of same PWM slice. */ uint8_t fan_gpio_pwm_map[FAN_MAX_COUNT] = { FAN1_PWM_GEN_PIN, FAN2_PWM_GEN_PIN, FAN3_PWM_GEN_PIN, FAN4_PWM_GEN_PIN, FAN5_PWM_GEN_PIN, FAN6_PWM_GEN_PIN, FAN7_PWM_GEN_PIN, FAN8_PWM_GEN_PIN, }; /* Map of motherboard PWM input pins. Every pin must be the B pin of a PWM slice. */ uint8_t mbfan_gpio_pwm_map[MBFAN_MAX_COUNT] = { MBFAN1_PWM_READ_PIN, MBFAN2_PWM_READ_PIN, MBFAN3_PWM_READ_PIN, MBFAN4_PWM_READ_PIN, }; /* Measured duty cycles from (motherboard) fan connectors. */ float mbfan_pwm_duty[MBFAN_MAX_COUNT]; uint pwm_out_top = 0; float pwm_in_count_rate = 0; /* Set PMW output signal duty cycle. */ void set_pwm_duty_cycle(uint fan, float duty) { uint level, pin; assert(fan < FAN_COUNT); pin = fan_gpio_pwm_map[fan]; if (duty >= 100.0) { level = pwm_out_top + 1; } else if (duty > 0.0) { level = (duty * (pwm_out_top + 1) / 100); } else { level = 0; } pwm_set_gpio_level(pin, level); } /* Measure duty cycle of input PWM signal. */ float get_pwm_duty_cycle(uint fan) { uint16_t counter; uint slice_num, pin; assert(fan < MBFAN_COUNT); pin = mbfan_gpio_pwm_map[fan]; slice_num = pwm_gpio_to_slice_num(pin); /* Reset current counter value in PWM slice. */ pwm_set_enabled(slice_num, false); pwm_set_counter(slice_num, 0); /* Turn PWM slice (counter) on for short time... */ uint64_t t_start = to_us_since_boot(get_absolute_time()); pwm_set_enabled(slice_num, true); busy_wait_ms(PWM_IN_SAMPLE_INTERVAL); pwm_set_enabled(slice_num, false); uint64_t t_end = to_us_since_boot(get_absolute_time()); float max_count = pwm_in_count_rate * ((t_end - t_start) / 1000000.0); /* Get counter value and calculate duty cycle. */ counter = pwm_get_counter(slice_num); float duty = counter * 100 / max_count; return duty; } /* Read multiple PWM signals simultaneously using PWM hardware. */ void get_pwm_duty_cycles(const struct fanpico_config *config) { static uint state = 0; static uint64_t t_start = 0; static uint slices[MBFAN_COUNT]; int i; if (MBFAN_COUNT < 1) return; if (state == 0) { /* Reset counters on all PWM slices. */ for (i = 0; i < MBFAN_COUNT; i++) { slices[i] = pwm_gpio_to_slice_num(mbfan_gpio_pwm_map[i]); pwm_set_enabled(slices[i], false); pwm_set_counter(slices[i], 0); } /* Turn on all PWM slices for short period of time... */ t_start = to_us_since_boot(get_absolute_time()); for (i = 0; i < MBFAN_COUNT; i++) { pwm_set_enabled(slices[i], true); } state = 1; } else if (state == 1) { //busy_wait_ms(PWM_IN_SAMPLE_INTERVAL); uint64_t t_end = to_us_since_boot(get_absolute_time()); if (t_end - t_start < PWM_IN_SAMPLE_INTERVAL * 1000) return; state = 0; for (i = 0; i < MBFAN_COUNT; i++) { pwm_set_enabled(slices[i], false); } t_end = to_us_since_boot(get_absolute_time()); float max_count = pwm_in_count_rate * ((t_end - t_start) / 1000000.0); if (max_count >= 65535) { log_msg(LOG_INFO, "get_pwm_duty_cycles(): counter overflow: %f (%llu)", max_count, (t_end - t_start)); return; } /* Calculate duty cycles based on measurements. */ for (i = 0; i < MBFAN_COUNT; i++) { const struct mb_input *mbfan = &config->mbfans[i]; uint16_t counter = pwm_get_counter(slices[i]); float duty = counter * 100 / max_count; /* Apply filter */ if (mbfan->filter != FILTER_NONE) { float duty_f = filter(mbfan->filter, mbfan->filter_ctx, duty); if (duty_f != duty) { log_msg(LOG_DEBUG, "filter mbfan%d: %lf -> %lf\n", i+1, duty, duty_f); duty = duty_f; } } mbfan_pwm_duty[i] = duty; } } } /* Initialize PWM hardware to generate 25kHz PWM signal on output pins. */ void setup_pwm_outputs() { uint32_t sys_clock = clock_get_hz(clk_sys); pwm_config config = pwm_get_default_config(); uint pwm_freq = 25000; uint slice_num; int i; log_msg(LOG_NOTICE, "Initializing PWM outputs..."); log_msg(LOG_NOTICE, "PWM Frequency: %0.2f kHz", pwm_freq / 1000.0); pwm_out_top = (sys_clock / pwm_freq / 2) - 1; /* for phase-correct PWM signal */ pwm_config_set_clkdiv(&config, 1); pwm_config_set_phase_correct(&config, 1); pwm_config_set_wrap(&config, pwm_out_top); /* Configure PWM outputs */ for (i = 0; i < FAN_COUNT; i += 2) { uint pin1 = fan_gpio_pwm_map[i]; uint pin2 = fan_gpio_pwm_map[i + 1]; gpio_set_function(pin1, GPIO_FUNC_PWM); gpio_set_function(pin2, GPIO_FUNC_PWM); slice_num = pwm_gpio_to_slice_num(pin1); /* two consecutive pins must belong to same PWM slice... */ assert(slice_num == pwm_gpio_to_slice_num(pin2)); pwm_init(slice_num, &config, true); } } /* Initialize PWM hardware for measuring input signal duty cycle on input pins. */ void setup_pwm_inputs() { pwm_config config = pwm_get_default_config(); uint slice_num; int i; if (MBFAN_COUNT < 1) return; log_msg(LOG_NOTICE, "Initializing PWM Inputs..."); pwm_config_set_clkdiv_mode(&config, PWM_DIV_B_HIGH); pwm_config_set_clkdiv(&config, PWM_IN_CLOCK_DIVIDER); pwm_in_count_rate = clock_get_hz(clk_sys) / PWM_IN_CLOCK_DIVIDER; for (i = 0; i < MBFAN_COUNT; i++) { uint pin = mbfan_gpio_pwm_map[i]; mbfan_pwm_duty[i] = 0.0; slice_num = pwm_gpio_to_slice_num(pin); /* reading PWM signal must be done on B channel... */ assert(pwm_gpio_to_channel(pin) == PWM_CHAN_B); pwm_init(slice_num, &config, false); gpio_set_function(pin, GPIO_FUNC_PWM); } } double pwm_map(const struct pwm_map *map, double val) { int i; double newval; // value is equal or smaller than first map point if (val <= map->pwm[0][0]) return map->pwm[0][1]; // find the map points that the value falls in between of... i = 1; while(i < map->points-1 && map->pwm[i][0] < val) i++; // value is larger or equal than last map point if (val >= map->pwm[i][0]) return map->pwm[i][1]; // calculate mapping using the map points left (i-i) and right (i) of the value... double a = (double)(map->pwm[i][1] - map->pwm[i-1][1]) / (double)(map->pwm[i][0] - map->pwm[i-1][0]); newval = map->pwm[i-1][1] + a * (val - map->pwm[i-1][0]); return newval; } double calculate_pwm_duty(struct fanpico_state *state, const struct fanpico_config *config, int i) { const struct fan_output *fan; double val = 0; fan = &config->fans[i]; /* Get source value */ switch (fan->s_type) { case PWM_FIXED: val = fan->s_id; break; case PWM_MB: val = state->mbfan_duty[fan->s_id]; break; case PWM_SENSOR: val = sensor_get_duty(&config->sensors[fan->s_id].map, state->temp[fan->s_id]); break; case PWM_VSENSOR: val = sensor_get_duty(&config->vsensors[fan->s_id].map, state->vtemp[fan->s_id]); break; case PWM_FAN: val = state->fan_duty[fan->s_id]; break; } /* Apply filter */ if (fan->filter != FILTER_NONE) { double f_val = filter(fan->filter, fan->filter_ctx, val); if (f_val != val) { log_msg(LOG_DEBUG, "filter fan%d: %lf -> %lf\n", i+1, val, f_val); val = f_val; } } /* Apply mapping */ val = pwm_map(&fan->map, val); /* Apply coefficient */ val *= fan->pwm_coefficient; /* Final step to enforce min/max limits for output */ if (val < fan->min_pwm) val = fan->min_pwm; if (val > fan->max_pwm) val = fan->max_pwm; return val; } ================================================ FILE: src/sensors.c ================================================ /* sensors.c Copyright (C) 2021-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "hardware/adc.h" #include "fanpico.h" /* Map of temperature sensor ADC inputs */ uint8_t sensor_adc_map[SENSOR_MAX_COUNT] = { SENSOR1_READ_ADC, SENSOR2_READ_ADC, SENSOR3_READ_ADC, }; double get_temperature(uint8_t input, const struct fanpico_config *config) { uint8_t pin; uint32_t raw = 0; uint64_t start, end; double t, r, volt; int i; const struct sensor_input *sensor; if (input >= SENSOR_COUNT) return 0.0; start = to_us_since_boot(get_absolute_time()); sensor = &config->sensors[input]; pin = sensor_adc_map[input]; adc_select_input(pin); for (i = 0; i < ADC_AVG_WINDOW; i++) { raw += adc_read(); } raw /= ADC_AVG_WINDOW; volt = raw * ((double)config->adc_vref / ADC_MAX_VALUE); if (sensor->type == TEMP_INTERNAL) { t = 27.0 - ((volt - 0.706) / 0.001721); t = t * sensor->temp_coefficient + sensor->temp_offset; } else { if (volt > 0.1 && volt < ADC_REF_VOLTAGE - 0.1) { r = SENSOR_SERIES_RESISTANCE / (((double)ADC_MAX_VALUE / raw) - 1); t = log(r / sensor->thermistor_nominal); t /= sensor->beta_coefficient; t += 1.0 / (sensor->temp_nominal + 273.15); t = 1.0 / t; t -= 273.15; t = t * sensor->temp_coefficient + sensor->temp_offset; } else { t = 0.0; } } /* Apply filter */ if (sensor->filter != FILTER_NONE) { double t_f = filter(sensor->filter, sensor->filter_ctx, t); if (t_f != t) { log_msg(LOG_DEBUG, "filter sensor%d: %lf -> %lf\n", i+1, t, t_f); t = t_f; } } end = to_us_since_boot(get_absolute_time()); log_msg(LOG_DEBUG, "get_temperature(%d): sensor_type=%u, raw=%u, volt=%lf, temp=%lf (duration=%llu)", input, sensor->type, raw, volt, t, end - start); return t; } double sensor_get_duty(const struct temp_map *map, double temp) { int i; double a, t; t = temp; if (t <= map->temp[0][0]) return map->temp[0][1]; i = 1; while (i < map->points-1 && map->temp[i][0] < t) i++; if (t >= map->temp[i][0]) return map->temp[i][1]; a = (double)(map->temp[i][1] - map->temp[i-1][1]) / (double)(map->temp[i][0] - map->temp[i-1][0]); return map->temp[i-1][1] + a * (t - map->temp[i-1][0]); } double get_vsensor(uint8_t i, struct fanpico_config *config, struct fanpico_state *state) { struct vsensor_input *s = &config->vsensors[i]; double t = state->vtemp[i]; if (s->mode == VSMODE_MANUAL || s->mode == VSMODE_I2C) { /* Copy over values from WRITE:VSENSORx commands ... */ if (absolute_time_diff_us(config->vtemp_updated[i], state->vtemp_updated[i]) != 0) { t = config->vtemp[i]; state->vtemp_updated[i] = config->vtemp_updated[i]; state->vpressure[i] = config->vpressure[i]; state->vhumidity[i] = config->vhumidity[i]; } /* Check if should reset temperature back to default due to lack of updates... */ if (s->timeout > 0 && t != s->default_temp) { if (absolute_time_diff_us(state->vtemp_updated[i], get_absolute_time())/1000000 > s->timeout) { log_msg(LOG_INFO,"sensor%d: timeout, temperature reset to default", i + 1); t = s->default_temp; } } } else if (s->mode == VSMODE_ONEWIRE) { uint64_t a = 0; int idx = -1; for (int j = 0; j < ONEWIRE_MAX_COUNT; j++) { if (!(a = onewire_address(j))) break; if (a == s->onewire_addr) { idx = j; break; } } t = (idx >= 0 ? state->onewire_temp[idx] : 0.0); } else { int count = 0; t = 0.0; for (int j = 0; j < VSENSOR_SOURCE_MAX_COUNT && s->sensors[j]; j++) { float val; if (s->sensors[j] > 100) val = state->vtemp[s->sensors[j] - 101]; else val = state->temp[s->sensors[j] - 1]; count++; if (s->mode == VSMODE_MAX) { if (count == 1 || val > t) t = val; } else if (s->mode == VSMODE_MIN) { if (count == 1 || val < t) t = val; } else if (s->mode == VSMODE_AVG) { t += val; } else if (s->mode == VSMODE_DELTA) { if (count == 1) t = val; else if (count == 2) t -= val; } } if (s->mode == VSMODE_AVG && count > 0) { t /= count; } } /* Apply filter */ if (s->filter != FILTER_NONE) { double t_f = filter(s->filter, s->filter_ctx, t); if (t_f != t) { log_msg(LOG_DEBUG, "filter vsensor%d: %lf -> %lf\n", i+1, t, t_f); t = t_f; } } return t; } ================================================ FILE: src/snmp.c ================================================ /* snmp.c Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #ifdef LIB_PICO_CYW43_ARCH #include "pico/cyw43_arch.h" #include "lwip/dns.h" #include "lwip/apps/snmp.h" #include "lwip/apps/snmp_mib2.h" #include "lwip/apps/snmp_table.h" #include "lwip/apps/snmp_scalar.h" #if TLS_SUPPORT #include "lwip/altcp_tls.h" #endif #endif #include "fanpico.h" #ifdef WIFI_SUPPORT static bool snmp_traps_active = false; /* NOTE! Private MIB for FanPico uses Private Enterprise Number (PEN) * that belongs to FanPico author. It is NOT allowed to allocate new * objects under this ID (63264) without permission from author. * * If you need to create your own private MIB, you must get * your own Private Enteprise Number from IANA. * * See: https://www.iana.org/assignments/enterprise-numbers/ */ static const struct snmp_obj_id fanpico_base_oid = { 9, // OID length { // OID: 1, 3, 6, 1, 4, 1, // SNMPv2-SMI::enterprises 63264, // Private Enterprise Number 1, // 1 = Devices 1 // 1 = FanPico } }; #define MAKE_GET_FUNC(funcname, var, var_type) \ static s16_t funcname(struct snmp_node_instance* instance, void* value) \ { \ var_type *val = (var_type *)value; \ *val = var; \ return sizeof(*val); \ } MAKE_GET_FUNC(get_fan_count, FAN_COUNT, u32_t) MAKE_GET_FUNC(get_mbfan_count, MBFAN_COUNT, u32_t) MAKE_GET_FUNC(get_sensor_count, SENSOR_COUNT, u32_t) MAKE_GET_FUNC(get_vsensor_count, VSENSOR_COUNT, u32_t) static const struct snmp_oid_range fan_table_oid_ranges[] = { { 1, FAN_COUNT } }; static const struct snmp_oid_range mbfan_table_oid_ranges[] = { { 1, MBFAN_COUNT } }; static const struct snmp_oid_range sensor_table_oid_ranges[] = { { 1, SENSOR_COUNT } }; static const struct snmp_oid_range vsensor_table_oid_ranges[] = { { 1, VSENSOR_COUNT } }; static snmp_err_t fan_table_get(const u32_t* column, const u32_t* row, union snmp_variant_value* value, u32_t* value_len) { const struct fanpico_state *st = fanpico_state; int i = *row - 1; double rpm; if (i < 0 || i >= FAN_COUNT) return SNMP_ERR_NOSUCHINSTANCE; switch (*column) { case 1: // id value->u32 = *row; break; case 2: // name value->const_ptr = (const void*)cfg->fans[i].name; *value_len = strlen(cfg->fans[i].name); break; case 3: //rpm rpm = st->fan_freq[i] * 60 / cfg->fans[i].rpm_factor; value->u32 = rpm; break; case 4: // frequency value->u32 = round_decimal(st->fan_freq[i], 2) * 100; break; case 5: // duty_cycle value->u32 = round_decimal(st->fan_duty[i], 0); break; default: return SNMP_ERR_NOSUCHINSTANCE; } return SNMP_ERR_NOERROR; } static snmp_err_t fan_table_get_cell_val(const u32_t* column, const u32_t* row_oid, u8_t row_oid_len, union snmp_variant_value* value, u32_t* value_len) { if (!snmp_oid_in_range(row_oid, row_oid_len, fan_table_oid_ranges, LWIP_ARRAYSIZE(fan_table_oid_ranges))) return SNMP_ERR_NOSUCHINSTANCE; return fan_table_get(column, row_oid, value, value_len); } static snmp_err_t fan_table_get_next_cell_inst_and_val(const u32_t* column, struct snmp_obj_id* row_oid, union snmp_variant_value* value, u32_t* value_len) { struct snmp_next_oid_state state; u32_t result_temp[LWIP_ARRAYSIZE(fan_table_oid_ranges)]; snmp_next_oid_init(&state, row_oid->id, row_oid->len, result_temp, LWIP_ARRAYSIZE(fan_table_oid_ranges)); for (u32_t i = 1; i <= FAN_COUNT; i++) { u32_t test_oid[LWIP_ARRAYSIZE(fan_table_oid_ranges)]; test_oid[0] = i; snmp_next_oid_check(&state, test_oid, LWIP_ARRAYSIZE(fan_table_oid_ranges), (void*)i); } if (state.status == SNMP_NEXT_OID_STATUS_SUCCESS) { snmp_oid_assign(row_oid, state.next_oid, state.next_oid_len); return fan_table_get(column, (const u32_t*)&state.reference, value, value_len); } return SNMP_ERR_NOSUCHINSTANCE; } static snmp_err_t mbfan_table_get(const u32_t* column, const u32_t* row, union snmp_variant_value* value, u32_t* value_len) { const struct fanpico_state *st = fanpico_state; int i = *row - 1; double rpm; if (i < 0 || i >= MBFAN_COUNT) return SNMP_ERR_NOSUCHINSTANCE; switch (*column) { case 1: // id value->u32 = *row; break; case 2: // name value->const_ptr = (const void*)cfg->mbfans[i].name; *value_len = strlen(cfg->mbfans[i].name); break; case 3: //rpm rpm = st->mbfan_freq[i] * 60 / cfg->mbfans[i].rpm_factor; value->u32 = rpm; break; case 4: // frequency value->u32 = round_decimal(st->mbfan_freq[i], 2) * 100; break; case 5: // duty_cycle value->u32 = round_decimal(st->mbfan_duty[i], 0); break; default: return SNMP_ERR_NOSUCHINSTANCE; } return SNMP_ERR_NOERROR; } static snmp_err_t mbfan_table_get_cell_val(const u32_t* column, const u32_t* row_oid, u8_t row_oid_len, union snmp_variant_value* value, u32_t* value_len) { if (!snmp_oid_in_range(row_oid, row_oid_len, mbfan_table_oid_ranges, LWIP_ARRAYSIZE(mbfan_table_oid_ranges))) return SNMP_ERR_NOSUCHINSTANCE; return mbfan_table_get(column, row_oid, value, value_len); } static snmp_err_t mbfan_table_get_next_cell_inst_and_val(const u32_t* column, struct snmp_obj_id* row_oid, union snmp_variant_value* value, u32_t* value_len) { struct snmp_next_oid_state state; u32_t result_temp[LWIP_ARRAYSIZE(mbfan_table_oid_ranges)]; snmp_next_oid_init(&state, row_oid->id, row_oid->len, result_temp, LWIP_ARRAYSIZE(mbfan_table_oid_ranges)); for (u32_t i = 1; i <= MBFAN_COUNT; i++) { u32_t test_oid[LWIP_ARRAYSIZE(mbfan_table_oid_ranges)]; test_oid[0] = i; snmp_next_oid_check(&state, test_oid, LWIP_ARRAYSIZE(mbfan_table_oid_ranges), (void*)i); } if (state.status == SNMP_NEXT_OID_STATUS_SUCCESS) { snmp_oid_assign(row_oid, state.next_oid, state.next_oid_len); return mbfan_table_get(column, (const u32_t*)&state.reference, value, value_len); } return SNMP_ERR_NOSUCHINSTANCE; } static snmp_err_t sensor_table_get(const u32_t* column, const u32_t* row, union snmp_variant_value* value, u32_t* value_len) { const struct fanpico_state *st = fanpico_state; int i = *row - 1; if (i < 0 || i >= SENSOR_COUNT) return SNMP_ERR_NOSUCHINSTANCE; switch (*column) { case 1: // id value->u32 = *row; break; case 2: // name value->const_ptr = (const void*)cfg->sensors[i].name; *value_len = strlen(cfg->sensors[i].name); break; case 3: // temperature value->s32 = round_decimal(st->temp[i], 1) * 10; break; case 4: // duty_cycle double pwm = sensor_get_duty(&cfg->sensors[i].map, st->temp[i]); value->u32 = round_decimal(pwm, 0); break; default: return SNMP_ERR_NOSUCHINSTANCE; } return SNMP_ERR_NOERROR; } static snmp_err_t sensor_table_get_cell_val(const u32_t* column, const u32_t* row_oid, u8_t row_oid_len, union snmp_variant_value* value, u32_t* value_len) { if (!snmp_oid_in_range(row_oid, row_oid_len, sensor_table_oid_ranges, LWIP_ARRAYSIZE(sensor_table_oid_ranges))) return SNMP_ERR_NOSUCHINSTANCE; return sensor_table_get(column, row_oid, value, value_len); } static snmp_err_t sensor_table_get_next_cell_inst_and_val(const u32_t* column, struct snmp_obj_id* row_oid, union snmp_variant_value* value, u32_t* value_len) { struct snmp_next_oid_state state; u32_t result_temp[LWIP_ARRAYSIZE(sensor_table_oid_ranges)]; snmp_next_oid_init(&state, row_oid->id, row_oid->len, result_temp, LWIP_ARRAYSIZE(sensor_table_oid_ranges)); for (u32_t i = 1; i <= SENSOR_COUNT; i++) { u32_t test_oid[LWIP_ARRAYSIZE(sensor_table_oid_ranges)]; test_oid[0] = i; snmp_next_oid_check(&state, test_oid, LWIP_ARRAYSIZE(sensor_table_oid_ranges), (void*)i); } if (state.status == SNMP_NEXT_OID_STATUS_SUCCESS) { snmp_oid_assign(row_oid, state.next_oid, state.next_oid_len); return sensor_table_get(column, (const u32_t*)&state.reference, value, value_len); } return SNMP_ERR_NOSUCHINSTANCE; } static snmp_err_t vsensor_table_get(const u32_t* column, const u32_t* row, union snmp_variant_value* value, u32_t* value_len) { const struct fanpico_state *st = fanpico_state; int i = *row - 1; if (i < 0 || i >= VSENSOR_COUNT) return SNMP_ERR_NOSUCHINSTANCE; switch (*column) { case 1: // id value->u32 = *row; break; case 2: // name value->const_ptr = (const void*)cfg->vsensors[i].name; *value_len = strlen(cfg->vsensors[i].name); break; case 3: // temperature value->s32 = round_decimal(st->vtemp[i], 1) * 10; break; case 4: // humidity value->u32 = round_decimal(st->vhumidity[i],1) * 10; break; case 5: // pressure value->u32 = round_decimal(st->vpressure[i], 1) * 10; break; case 6: // duty_cycle double pwm = sensor_get_duty(&cfg->vsensors[i].map, st->vtemp[i]); value->u32 = round_decimal(pwm, 0); break; default: return SNMP_ERR_NOSUCHINSTANCE; } return SNMP_ERR_NOERROR; } static snmp_err_t vsensor_table_get_cell_val(const u32_t* column, const u32_t* row_oid, u8_t row_oid_len, union snmp_variant_value* value, u32_t* value_len) { if (!snmp_oid_in_range(row_oid, row_oid_len, vsensor_table_oid_ranges, LWIP_ARRAYSIZE(vsensor_table_oid_ranges))) return SNMP_ERR_NOSUCHINSTANCE; return vsensor_table_get(column, row_oid, value, value_len); } static snmp_err_t vsensor_table_get_next_cell_inst_and_val(const u32_t* column, struct snmp_obj_id* row_oid, union snmp_variant_value* value, u32_t* value_len) { struct snmp_next_oid_state state; u32_t result_temp[LWIP_ARRAYSIZE(vsensor_table_oid_ranges)]; snmp_next_oid_init(&state, row_oid->id, row_oid->len, result_temp, LWIP_ARRAYSIZE(vsensor_table_oid_ranges)); for (u32_t i = 1; i <= VSENSOR_COUNT; i++) { u32_t test_oid[LWIP_ARRAYSIZE(vsensor_table_oid_ranges)]; test_oid[0] = i; snmp_next_oid_check(&state, test_oid, LWIP_ARRAYSIZE(vsensor_table_oid_ranges), (void*)i); } if (state.status == SNMP_NEXT_OID_STATUS_SUCCESS) { snmp_oid_assign(row_oid, state.next_oid, state.next_oid_len); return vsensor_table_get(column, (const u32_t*)&state.reference, value, value_len); } return SNMP_ERR_NOSUCHINSTANCE; } /* Fan Group */ static const struct snmp_scalar_node fan_count = SNMP_SCALAR_CREATE_NODE_READONLY( 1, SNMP_ASN1_TYPE_INTEGER, get_fan_count); static const struct snmp_table_simple_col_def fan_table_cols[] = { { 1, SNMP_ASN1_TYPE_INTEGER, SNMP_VARIANT_VALUE_TYPE_U32 }, // id { 2, SNMP_ASN1_TYPE_OCTET_STRING, SNMP_VARIANT_VALUE_TYPE_CONST_PTR }, // name { 3, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // rpm { 4, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // frequency { 5, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // duty_cycle }; static const struct snmp_table_simple_node fan_table = SNMP_TABLE_CREATE_SIMPLE( 2, fan_table_cols, fan_table_get_cell_val, fan_table_get_next_cell_inst_and_val); /* MBFan Group */ static const struct snmp_scalar_node mbfan_count = SNMP_SCALAR_CREATE_NODE_READONLY( 3, SNMP_ASN1_TYPE_INTEGER, get_mbfan_count); static const struct snmp_table_simple_node mbfan_table = SNMP_TABLE_CREATE_SIMPLE( 4, fan_table_cols, mbfan_table_get_cell_val, mbfan_table_get_next_cell_inst_and_val); /* Sensor Group */ static const struct snmp_scalar_node sensor_count = SNMP_SCALAR_CREATE_NODE_READONLY( 5, SNMP_ASN1_TYPE_INTEGER, get_sensor_count); static const struct snmp_table_simple_col_def sensor_table_cols[] = { { 1, SNMP_ASN1_TYPE_INTEGER, SNMP_VARIANT_VALUE_TYPE_U32 }, // id { 2, SNMP_ASN1_TYPE_OCTET_STRING, SNMP_VARIANT_VALUE_TYPE_CONST_PTR }, // name { 3, SNMP_ASN1_TYPE_INTEGER, SNMP_VARIANT_VALUE_TYPE_S32 }, // temperature { 4, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // duty_cycle }; static const struct snmp_table_simple_node sensor_table = SNMP_TABLE_CREATE_SIMPLE( 6, sensor_table_cols, sensor_table_get_cell_val, sensor_table_get_next_cell_inst_and_val); /* Vsendor Group */ static const struct snmp_scalar_node vsensor_count = SNMP_SCALAR_CREATE_NODE_READONLY( 7, SNMP_ASN1_TYPE_INTEGER, get_vsensor_count); static const struct snmp_table_simple_col_def vsensor_table_cols[] = { { 1, SNMP_ASN1_TYPE_INTEGER, SNMP_VARIANT_VALUE_TYPE_U32 }, // id { 2, SNMP_ASN1_TYPE_OCTET_STRING, SNMP_VARIANT_VALUE_TYPE_CONST_PTR }, // name { 3, SNMP_ASN1_TYPE_INTEGER, SNMP_VARIANT_VALUE_TYPE_S32 }, // temperature { 4, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // humidity { 5, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // pressure { 6, SNMP_ASN1_TYPE_UNSIGNED32, SNMP_VARIANT_VALUE_TYPE_U32 }, // duty_cycle }; static const struct snmp_table_simple_node vsensor_table = SNMP_TABLE_CREATE_SIMPLE( 8, vsensor_table_cols, vsensor_table_get_cell_val, vsensor_table_get_next_cell_inst_and_val); static const struct snmp_node* const fanpico_object_nodes[] = { &fan_count.node.node, &fan_table.node.node, &mbfan_count.node.node, &mbfan_table.node.node, &sensor_count.node.node, &sensor_table.node.node, &vsensor_count.node.node, &vsensor_table.node.node, }; static const struct snmp_tree_node fanpico_object_root = SNMP_CREATE_TREE_NODE(1, fanpico_object_nodes); static const struct snmp_node* const fanpico_mib_nodes[] = { &fanpico_object_root.node, }; static const struct snmp_tree_node fanpico_mib_root = SNMP_CREATE_TREE_NODE(1, fanpico_mib_nodes); static const struct snmp_mib fanpico_mib = { fanpico_base_oid.id, fanpico_base_oid.len, &fanpico_mib_root.node }; static const struct snmp_mib *mibs[] = { &mib2, &fanpico_mib, }; void fanpico_snmp_init() { snmp_set_device_enterprise_oid(&fanpico_base_oid); snmp_set_community(cfg->snmp_community); snmp_set_community_write(cfg->snmp_community_write); snmp_mib2_set_sysdescr((uint8_t*)"FanPico-" FANPICO_MODEL " Fan Controller v" FANPICO_VERSION FANPICO_BUILD_TAG, NULL); snmp_mib2_set_syscontact_readonly((const uint8_t*)cfg->snmp_contact, NULL); snmp_mib2_set_syslocation_readonly((const uint8_t*)cfg->snmp_location, NULL); snmp_mib2_set_sysname_readonly((const uint8_t*)cfg->name, NULL); /* SNMP Traps */ if (strlen(cfg->snmp_community_trap) > 0 && !ip_addr_isany(&cfg->snmp_trap_dst)) { log_msg(LOG_NOTICE, "SNMP Traps destination: %s", ip4addr_ntoa(&cfg->snmp_trap_dst)); snmp_set_community_trap(cfg->snmp_community_trap); snmp_set_auth_traps_enabled(cfg->snmp_auth_traps); snmp_trap_dst_ip_set(0, &cfg->snmp_trap_dst); snmp_trap_dst_enable(0, true); snmp_traps_active = true; } snmp_set_mibs(mibs, LWIP_ARRAYSIZE(mibs)); snmp_init(); } void fanpico_snmp_startup_trap(bool warmstart) { err_t err; if (!snmp_traps_active) return; err = snmp_send_trap_generic(warmstart ? SNMP_GENTRAP_WARMSTART : SNMP_GENTRAP_COLDSTART); if (err != ERR_OK) { log_msg(LOG_NOTICE, "Failed to send SNMP startup trap: %d", err); } } #endif /* WIFI_SUPPORT */ ================================================ FILE: src/square_wave_gen.c ================================================ /* square_wave_gen.c Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include "pico/stdlib.h" #include "hardware/gpio.h" #include "hardware/pio.h" #include "hardware/clocks.h" #include "square_wave_gen.h" // Include the assembled PIO program #include "square_wave_gen.pio.h" /* * Functions for PIO based Adjustable Square Wave Generator. */ /* Function for loading Square Wave generator program into a PIO. */ uint square_wave_gen_load_program(PIO pio) { return pio_add_program(pio, &square_wave_gen_program); } /* Function to initialize PIO state machine to run Square Wave Generator * program. */ void square_wave_gen_program_init(PIO pio, uint sm, uint offset, uint pin) { pio_sm_config config = square_wave_gen_program_get_default_config(offset); pio_gpio_init(pio, pin); pio_sm_set_consecutive_pindirs(pio, sm, pin, 1, true); sm_config_set_sideset_pins(&config, pin); sm_config_set_clkdiv(&config, 1.0); pio_sm_init(pio, sm, offset, &config); } /* Function to enable/disable a Square Wave generator. */ void square_wave_gen_enabled(PIO pio, uint sm, bool enabled) { pio_sm_set_enabled(pio, sm, enabled); } /* Function to set output signal 'period' of a Square Wave generator. */ void square_wave_gen_set_period(PIO pio, uint sm, uint32_t period) { /* Write 'period' to TX FIFO. State machine copies this into register X */ pio_sm_put_blocking(pio, sm, period); } /* Function to set output signal frequency of a Square Wave generator. */ void square_wave_gen_set_freq(PIO pio, uint sm, double freq) { uint32_t sys_clock = clock_get_hz(clk_sys); uint32_t period; if (freq > 0) { // Calculate 'period' needed to produce requested frequency square wave... period = sys_clock / (freq * 2); if (period > 5) period -= 5; } else { // no output if frequency <= 0 ... period = 0; } square_wave_gen_set_period(pio, sm, period); } ================================================ FILE: src/square_wave_gen.h ================================================ /* square_wave_gen.h Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef SQUARE_WAVE_GEN_H #define SQUARE_WAVE_GEN_H 1 uint square_wave_gen_load_program(PIO pio); void square_wave_gen_program_init(PIO pio, uint sm, uint offset, uint pin); void square_wave_gen_enabled(PIO pio, uint sm, bool enabled); void square_wave_gen_set_period(PIO pio, uint sm, uint32_t period); void square_wave_gen_set_freq(PIO pio, uint sm, double freq); #endif /* SQUARE_WAVE_GEN_H */ ================================================ FILE: src/square_wave_gen.pio ================================================ ; square_wave_gen.pio ; Copyright (C) 2021-2022 Timo Kokkonen ; ; SPDX-License-Identifier: GPL-3.0-or-later ; ; This file is part of FanPico. ; ; FanPico is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; FanPico is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with FanPico. If not, see . ; ; Adjustable Square Wave signal generator that reads 'period' from FIFO. ; Output is a square wave (at 50% duty cycle) where length of each pulse ; is 10+2*period clock cycles. ; ; Side-set pin 0 is used for output .program square_wave_gen .side_set 1 opt start: pull noblock side 0 ; Read 'period from FIFO to OSR and set output low ; ('noblock' causes X to be copied into OSR if FIFO empty) mov x, osr ; Save 'period' in X mov y, x ; Copy X to Y (which is used as counter). jmp !y start ; Steady low output if period is 0 lo_loop: jmp y-- lo_loop ; Loop until Y hits 0 mov y, x side 1 ; Reset Y back to X and set output high nop [2] ; Wait 3 cycle to keep both sides same length hi_loop: jmp y-- hi_loop ; Loop until Y hits 0 ; eof :-) ================================================ FILE: src/ssh_util.c ================================================ /* ssh_util.c Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include #include #include "fanpico.h" typedef struct ssh_pkey_alg_t { char *name; char *filename; int (*create_key)(void *buf, size_t buf_size); } ssh_pkey_alg_t; #ifndef NO_RSA static int create_rsa_key(void *buf, size_t buf_size) { return wolfSSH_MakeRsaKey(buf, buf_size, WOLFSSH_RSAKEY_DEFAULT_SZ, WOLFSSH_RSAKEY_DEFAULT_E); } #endif static int create_ecdsa_key(void *buf, size_t buf_size) { return wolfSSH_MakeEcdsaKey(buf, buf_size, WOLFSSH_ECDSAKEY_PRIME256); } static int create_ed25519_key(void *buf, size_t buf_size) { return wolfSSH_MakeEd25519Key(buf, buf_size, WOLFSSH_ED25519KEY); } static const ssh_pkey_alg_t pkey_algorithms[] = { { "ecdsa", "ssh-ecdsa.der", create_ecdsa_key }, { "ed25519", "ssh-ed25519.der", create_ed25519_key }, #ifndef NO_RSA { "rsa", "ssh-rsa.der", create_rsa_key }, #endif { NULL, NULL, NULL } }; void ssh_list_pkeys() { char *buf = NULL; char tmp[64]; uint32_t buf_size = 0; int i = 0; while(pkey_algorithms[i].name) { const ssh_pkey_alg_t *alg = &pkey_algorithms[i++]; int res = flash_read_file(&buf, &buf_size, alg->filename); printf("%-20s ", alg->name); if (res == 0) { printf("%8lu SHA256:%s\n", buf_size, ssh_server_get_pubkey_hash(buf, buf_size, tmp, sizeof(tmp))); free(buf); } else { printf("\n"); } } } int ssh_create_pkey(const char* args) { const size_t buf_size = 4096; int kcount = 0; bool create_all = false; byte *buf; int res; if (!strncasecmp(args, "all", 4)) create_all = true; for (int i = 0; pkey_algorithms[i].name; i++) { const ssh_pkey_alg_t *alg = &pkey_algorithms[i]; if (!create_all && strncasecmp(args, alg->name, strlen(alg->name) + 1)) continue; if (flash_file_size(alg->filename) > 0) { printf("%s key already exists!\n", alg->name); continue; } printf("Generating %s private key...", alg->name); if (!(buf = calloc(1, buf_size))) { printf("Out or memory!\n"); return 2; } res = alg->create_key(buf, buf_size); if (res > 0) { res = flash_write_file((const char*)buf, res, alg->filename); if (res) { printf("Failed to save private key! (%d)\n", res); } else { printf("OK\n"); kcount++; } } else { printf("Failed to generate key! (%d)\n", res); } free(buf); } return (kcount > 0 ? 0 : 1); } int ssh_delete_pkey(const char* args) { int res; for (int i = 0; pkey_algorithms[i].name; i++) { const ssh_pkey_alg_t *alg = &pkey_algorithms[i]; if (!strncasecmp(args, alg->name, strlen(alg->name) + 1)) { printf("Deleting %s private key...\n", alg->name); res = flash_delete_file(alg->filename); if (res == -2) { printf("No private key present.\n"); res = 0; } else if (res) { printf("Failed to delete private key: %d\n", res); res = 2; } else { printf("Private key deleted.\n"); } return res; } } return 1; } int ssh_get_pkey(int index, char** buf_ptr, uint32_t* buf_size_ptr, const char** name_ptr) { if (index < 0 || !buf_ptr || !buf_size_ptr || !name_ptr) return -1; *name_ptr = ""; /* Find the key... */ for (int i = 0; pkey_algorithms[i].name; i++) { const ssh_pkey_alg_t *alg = &pkey_algorithms[i]; if (i != index) continue; if (flash_read_file(buf_ptr, buf_size_ptr, alg->filename)) { /* No key found... */ return 0; } /* Found the key... */ log_msg(LOG_DEBUG, "Found SSH private key: %s (%lu)", alg->filename, *buf_size_ptr); *name_ptr = alg->name; return 1; } return -2; } int str_to_ssh_pubkey(const char *s, struct ssh_public_key *pk) { char *t, *str, *saveptr; void *buf = NULL; int idx = 0; int len, key_len; if (!s || !pk) return -1; if (!(str = strdup(s))) return -2; pk->type[0] = 0; pk->name[0] = 0; pk->pubkey_size = 0; memset(pk->pubkey, 0, sizeof(pk->pubkey)); t = strtok_r(str, " ", &saveptr); while (t && idx < 3) { if ((len = strlen(t)) > 0) { //printf("%d: '%s'\n", idx, t); if (idx == 0) { /* key type */ strncopy(pk->type, t, sizeof(pk->type)); } else if (idx == 1) { /* key (base64 encoded) */ key_len = base64decode_raw(t, len, &buf); if (key_len > 0 && key_len <= sizeof(pk->pubkey) && memmem(buf, key_len, pk->type, strlen(pk->type))) { memcpy(pk->pubkey, buf, key_len); pk->pubkey_size = key_len; } else { printf("Invalid key!\n"); break; } } else if (idx == 2) { /* key name */ strncopy(pk->name, t, sizeof(pk->name)); } idx++; } t = strtok_r(NULL, " ", &saveptr); } free(str); if (buf) free(buf); return (idx >= 2 ? 0 : 1); } const char* ssh_pubkey_to_str(const struct ssh_public_key *pk, char *s, size_t s_len) { char *e; if (!pk || !s || s_len < 1) return NULL; if (!(e = base64encode_raw(pk->pubkey, pk->pubkey_size))) return NULL; snprintf(s, s_len, "%s %s %s", pk->type, e, pk->name); s[s_len - 1] = 0; free(e); return s; } /* eof :-) */ ================================================ FILE: src/sshd.c ================================================ /* sshd.c Copyright (C) 2025-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #ifdef WOLFCRYPT_TEST #include #endif #include #include "util_net.h" #include "fanpico.h" static const char *ssh_banner = "\r\n" " _____ ____ _\r\n" " | ___|_ _ _ __ | _ \\(_) ___ ___\r\n" " | |_ / _` | '_ \\| |_) | |/ __/ _ \\\r\n" " | _| (_| | | | | __/| | (_| (_) |\r\n" " |_| \\__,_|_| |_|_| |_|\\___\\___/\r\n" " ...ssh...\r\n\r\n"; static ssh_user_auth_entry_t *ssh_users = NULL; static ssh_server_t *ssh_srv = NULL; static int ssh_allow_connection_cb(ip_addr_t *src_ip) { int ret = 0; int aclcount = 0; if (!src_ip) return -1; for (int i = 0; i < SSH_MAX_ACL_ENTRIES; i++) { const acl_entry_t *acl = &cfg->ssh_acls[i]; if (acl->prefix > 0) { ip_addr_t netmask; aclcount++; make_netmask(&netmask, acl->prefix); if (ip_addr_netcmp(&acl->ip, src_ip, &netmask)) { ret = 1; break; } } } return (aclcount > 0 ? ret: 1); } void sshserver_init() { char *buf = NULL; uint32_t buf_size = 0; const char *alg_name; int pkey_count = 0; int i, res; if (wolfCrypt_Init()) { log_msg(LOG_ERR, "Failed to initialize wolfCrypt library."); return; } #ifdef WOLFCRYPT_TEST printf("wolfcrypt_test(): %d\n", wolfcrypt_test(NULL)); #endif if (wolfSSH_Init() != WS_SUCCESS) { log_msg(LOG_ERR, "Failed to initialize wolfSSH library."); return; } #ifndef NDEBUG #ifdef DEBUG_WOLFSSL wolfSSL_Debugging_ON(); #endif #ifdef DEBUG_WOLFSSH wolfSSH_Debugging_ON(); #endif #endif /* Create SSH server instance */ if (!(ssh_srv = ssh_server_new(4096, 8192))) { log_msg(LOG_ERR, "Failed to initialize SSH server."); return; } /* Load SSH server private keys */ i = 0; while ((res = ssh_get_pkey(i++, &buf, &buf_size, &alg_name)) >= 0) { if (res) { if (ssh_server_add_priv_key(ssh_srv, WOLFSSH_FORMAT_ASN1, (uint8_t*)buf, buf_size)) { log_msg(LOG_NOTICE, "Failed to add private key: %s", alg_name); } else { pkey_count++; } } } if (pkey_count < 1) { log_msg(LOG_ERR, "No private key(s) found for SSH server."); return; } /* Setup context for default authentication callback... */ ssh_users = calloc(SSH_MAX_PUB_KEYS + 1 + 1, sizeof(ssh_user_auth_entry_t)); if (!ssh_users) { log_msg(LOG_ERR, "Not enough memory for SSH server."); return; } /* Add password authenticated user */ ssh_users[0].type = WOLFSSH_USERAUTH_PASSWORD; ssh_users[0].username = cfg->ssh_user; ssh_users[0].auth = (uint8_t*)cfg->ssh_pwhash; /* Add publickey authenticated users */ for (int i = 1; i <= SSH_MAX_PUB_KEYS; i++) { const struct ssh_public_key *k = &cfg->ssh_pub_keys[i - 1]; ssh_users[i].type = WOLFSSH_USERAUTH_PUBLICKEY; ssh_users[i].username = k->username; ssh_users[i].auth = k->pubkey; ssh_users[i].auth_len = k->pubkey_size; } /* Configure other SSH server settings */ ssh_srv->auth_enabled = cfg->ssh_auth; ssh_srv->auth_cb_ctx = (void*)ssh_users; ssh_srv->banner = ssh_banner; ssh_srv->log_cb = log_msg; ssh_srv->allow_connect_cb = ssh_allow_connection_cb; if (cfg->ssh_port > 0) ssh_srv->port = cfg->ssh_port; ssh_srv->max_auth_tries = 6; /* Start SSH server */ if (!ssh_server_start(ssh_srv, true)) { log_msg(LOG_ERR, "Failed to start SSH server."); } } void sshserver_disconnect() { if (!ssh_srv) return; ssh_server_disconnect_client(ssh_srv); } void sshserver_who() { ip_addr_t ip; uint16_t port; const char *user, *mode; if (!ssh_srv) return; if (ssh_server_client_connected(ssh_srv)) { ip_addr_set_zero(&ip); port = 0; ssh_server_get_client_ip(ssh_srv, &ip, &port); user = (strlen((char*)ssh_srv->login) > 0 ? (char*)ssh_srv->login : ""); mode = "ssh"; printf("%-8s %-8s %s:%u (%s)\n", user, mode, ipaddr_ntoa(&ip), port, ssh_server_connection_state_name(ssh_srv->cstate)); } else { printf("No active SSH connection(s)\n"); } } /* eof :-) */ ================================================ FILE: src/syslog.c ================================================ /* syslog.c Copyright (C) 2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "pico/cyw43_arch.h" #include "lwip/pbuf.h" #include "lwip/udp.h" #include "fanpico.h" #include "syslog.h" typedef struct syslog_t_ { ip_addr_t server_addr; u16_t port; int facility; char *hostname; struct udp_pcb *pcb; } syslog_t; static syslog_t *syslog = NULL; syslog_t* syslog_init(const ip_addr_t *ipaddr, u16_t port) { syslog_t *ctx = calloc(1, sizeof(syslog_t)); if (!ctx) { printf("syslog_init(): not enough memory!\n"); return NULL; } cyw43_arch_lwip_begin(); ctx->pcb = udp_new_ip_type(IPADDR_TYPE_ANY); if (!ctx->pcb) { printf("syslog_init(): failed to create pcb\n"); goto error; } ctx->server_addr = *ipaddr; ctx->port = (port > 0 ? port : SYSLOG_DEFAULT_PORT); if (udp_bind(ctx->pcb, IP_ANY_TYPE, 514) != ERR_OK) { printf("syslog_init(): udb bind failed\n"); goto error; } if (udp_connect(ctx->pcb, &ctx->server_addr, ctx->port) != ERR_OK) { printf("syslog_init(): udp connect failed\n"); goto error; } cyw43_arch_lwip_end(); return ctx; error: if (ctx) { if (ctx->pcb) udp_remove(ctx->pcb); free(ctx); } cyw43_arch_lwip_end(); return NULL; } int syslog_open(const ip_addr_t *server, u16_t port, int facility, const char *hostname) { if (!server || !hostname) return 0; syslog = syslog_init(server, port); if (syslog) { syslog->facility = facility; syslog->hostname = strdup(hostname); } return (syslog ? 0 : 1); } void syslog_close() { if (!syslog) return; if (syslog->hostname) free(syslog->hostname); cyw43_arch_lwip_begin(); if (syslog->pcb) { udp_disconnect(syslog->pcb); udp_remove(syslog->pcb); }; free(syslog); syslog = NULL; cyw43_arch_lwip_end(); } int syslog_msg(int severity, const char *format, ...) { va_list args; char buf[SYSLOG_MAX_MSG_LEN]; struct tm tm; uint16_t len; if (!format || !syslog) return 1; if (!rtc_get_tm(&tm)) return 2; /* Build syslog 'packet' ... */ /* priority */ snprintf(buf, 6, "<%u>", (syslog->facility << 3) | (severity & 0x07)); len = strlen(buf); /* timestamp */ strftime(&buf[len], 18, "%b %e %T ", &tm); len = strlen(buf); /* hostname */ snprintf(&buf[len], 34, "%s ", syslog->hostname); len = strlen(buf); /* message */ va_start(args, format); vsnprintf(&buf[len], sizeof(buf) - len - 1, format, args); va_end(args); len = strlen(buf); /* printf("SYSLOG: '%s'\n", buf); */ /* Send syslog (UDP) packet */ cyw43_arch_lwip_begin(); struct pbuf *p = pbuf_alloc(PBUF_TRANSPORT, len, PBUF_RAM); if (p) { memcpy(p->payload, buf, len); udp_send(syslog->pcb, p); pbuf_free(p); } cyw43_arch_lwip_end(); return 0; } ================================================ FILE: src/syslog.h ================================================ /* syslog.h Copyright (C) 2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef _FANPICO_SYSLOG_H_ #define _FANPICO_SYSLOG_H_ #include "pico/cyw43_arch.h" #include "log.h" #define SYSLOG_DEFAULT_PORT 514 #define SYSLOG_MAX_MSG_LEN 256 int syslog_open(const ip_addr_t *server, u16_t port, int facility, const char *hostname); void syslog_close(); int syslog_msg(int priority, const char *format, ...); #endif /* _FANPICO_SYSLOG_H_ */ ================================================ FILE: src/tacho.c ================================================ /* tacho.c Copyright (C) 2021-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "hardware/gpio.h" #include "hardware/pio.h" #include "square_wave_gen.h" #include "pulse_len.h" #include "fanpico.h" /* * Functions for generating (emulating) fan tachometer output using PIO * and functions for reading tachometer signals from fans to calculate * signal frequency and fan RPM. */ /* Map of input pins to read fan tachometer signals. */ uint8_t fan_gpio_tacho_map[FAN_MAX_COUNT] = { FAN1_TACHO_READ_PIN, FAN2_TACHO_READ_PIN, FAN3_TACHO_READ_PIN, FAN4_TACHO_READ_PIN, FAN5_TACHO_READ_PIN, FAN6_TACHO_READ_PIN, FAN7_TACHO_READ_PIN, FAN8_TACHO_READ_PIN, }; /* Reverse map of input pin numbers to fan numbers. */ uint8_t gpio_fan_tacho_map[MAX_GPIO_PINS]; /* Map of output pins that output/generate tachometer signal using PIO. */ uint8_t mbfan_gpio_tacho_map[MBFAN_MAX_COUNT] = { MBFAN1_TACHO_GEN_PIN, MBFAN2_TACHO_GEN_PIN, MBFAN3_TACHO_GEN_PIN, MBFAN4_TACHO_GEN_PIN, }; /* Tachometer pulse counters updated by GPIO interrupt */ volatile uint fan_tacho_counters[FAN_MAX_COUNT]; uint fan_tacho_counters_last[FAN_MAX_COUNT]; absolute_time_t fan_tacho_last_read; /* Array holding calculated fan tachometer (input) frequencies. */ float fan_tacho_freq[FAN_MAX_COUNT]; PIO pio = pio0; static uint8_t queue[FAN_MAX_COUNT] = { 0, 0, 0, 0, 0, 0 , 0, 0 }; static uint8_t queue_pos[2] = { 0, 0 }; /* Get next fan in the given queue. */ int next_in_queue(uint8_t q) { assert(q < 2); if (queue_pos[q] >= FAN_MAX_COUNT) { queue_pos[q] = 0; return -1; } while (queue[queue_pos[q]] != q) { queue_pos[q]++; if (queue_pos[q] >= FAN_MAX_COUNT) { queue_pos[q] = 0; return -1; } } return queue_pos[q]++; } /* Function to select active multiplexer port. */ void multiplexer_select(uint8_t port) { gpio_put(FAN_TACHO_READ_S0_PIN, port & 0x01); gpio_put(FAN_TACHO_READ_S1_PIN, port & 0x02); gpio_put(FAN_TACHO_READ_S2_PIN, port & 0x04); } /* Interrupt handler to keep count on pulses received on fan tachometer pins... */ void __time_critical_func(fan_tacho_read_callback)(uint gpio, uint32_t events) { uint fan = gpio_fan_tacho_map[(gpio & 0x1f)]; if (fan > 0) { fan_tacho_counters[fan-1]++; } } /* Function to update tachometer frequencies in fan_tacho_freq[] */ void read_tacho_inputs() #if TACHO_READ_MULTIPLEX == 0 { uint counters[FAN_COUNT]; int64_t delta; double s; uint pulses; double f; int i; /* Read current counter values. */ for (i = 0; i < FAN_COUNT; i++) { counters[i] = fan_tacho_counters[i]; } absolute_time_t read_time = get_absolute_time(); /* Calculate new frequency values, if enough time has passed... */ delta = absolute_time_diff_us(fan_tacho_last_read, read_time); if (delta < 1000000) return; s = delta / 1000000.0; for (i = 0; i < FAN_COUNT; i++) { if (cfg->fans[i].rpm_mode == RMODE_TACHO) { pulses = counters[i] - fan_tacho_counters_last[i]; f = pulses / s; } else { bool lra = gpio_get(fan_gpio_tacho_map[i]); f = lra ? cfg->fans[i].lra_high : cfg->fans[i].lra_low; f = f / 60.0 * cfg->fans[i].rpm_factor; } fan_tacho_freq[i] = f; } /* Save counter values for next time... */ for (i = 0; i < FAN_COUNT; i++) { fan_tacho_counters_last[i] = counters[i]; } fan_tacho_last_read = read_time; } #else { static int state = 0; static int q = 0; static absolute_time_t start_t; static int i; uint64_t t; double f; // uint64_t start, end; if (state == 0) { /* Pick next fan to 'measure' from queues... */ i = next_in_queue(q); if (i < 0) { /* End of queue reached, go to next queue. */ if (++q >= 2) q = 0; return; } /* process only one entry from second queue at a time */ if (q == 1) { log_msg(LOG_DEBUG, "queue2: fan%d: read", i+1); q = 0; } /* Switch multiplexer to the fan we want to measure from... */ multiplexer_select(fan_gpio_tacho_map[i]); busy_wait_us(50); pulse_start_measure(); start_t = get_absolute_time(); state++; } else if (state == 1) { // Measure pulse up to 600ms (down to 50 RPM)... if (cfg->fans[i].rpm_mode == RMODE_TACHO) { t = pulse_interval(); if (t == 0) { if (!time_passed(&start_t, 600)) return; } if (t > 0) { /* Fan is spinning, make sure fan is in the first queue... */ if (queue[i] != 0) queue[i] = 0; f = 1 / (t / 1000000.0); } else { /* Fan not spinning, put this fan into second queue */ if (queue[i] != 1) queue[i] = 1; f = 0; } log_msg(LOG_DEBUG + 0, "fan%d: pulse len=%llu", i+1, t); } else { bool lra = gpio_get(FAN_TACHO_READ_PIN); f = lra ? cfg->fans[i].lra_high : cfg->fans[i].lra_low; f = f / 60.0 * cfg->fans[i].rpm_factor; } fan_tacho_freq[i] = f; state = 0; } } #endif /* Function to calculate tachometer frequencies. */ void update_tacho_input_freq(struct fanpico_state *st) { for (int i = 0; i < FAN_COUNT; i++) { float hyst = cfg->fans[i].tacho_hyst; st->fan_freq[i] = roundf(fan_tacho_freq[i]*100)/100.0; if (check_for_change(st->fan_freq_prev[i], st->fan_freq[i], hyst)) { log_msg(LOG_INFO, "fan%d: Input Tacho change %.2fHz --> %.2fHz", i+1, st->fan_freq_prev[i], st->fan_freq[i]); st->fan_freq_prev[i] = st->fan_freq[i]; } } } /* Function to initialize inputs for reading tachometer signals. */ void setup_tacho_inputs() { int i, pin; log_msg(LOG_NOTICE, "Setting up Tacho Input pins..."); /* Configure pins and build GPIO to FAN mapping */ memset(gpio_fan_tacho_map, 0, sizeof(gpio_fan_tacho_map)); for (i = 0; i < FAN_COUNT; i++) { fan_tacho_counters[i] = 0; fan_tacho_counters_last[i] = 0; fan_tacho_freq[i] = 0.0; pin = fan_gpio_tacho_map[i]; gpio_fan_tacho_map[pin] = 1 + i; #if TACHO_READ_MULTIPLEX == 0 gpio_init(pin); gpio_set_dir(pin, GPIO_IN); #endif } #if TACHO_READ_MULTIPLEX > 0 // Setup multiplexer pins */ gpio_init(FAN_TACHO_READ_PIN); gpio_set_dir(FAN_TACHO_READ_PIN, GPIO_IN); gpio_init(FAN_TACHO_READ_S0_PIN); gpio_init(FAN_TACHO_READ_S1_PIN); gpio_init(FAN_TACHO_READ_S2_PIN); gpio_set_dir(FAN_TACHO_READ_S0_PIN, GPIO_OUT); gpio_set_dir(FAN_TACHO_READ_S1_PIN, GPIO_OUT); gpio_set_dir(FAN_TACHO_READ_S2_PIN, GPIO_OUT); multiplexer_select(0); #endif fan_tacho_last_read = get_absolute_time(); } void setup_tacho_input_interrupts() { /* This must be called from the core doing the measurements. */ #if TACHO_READ_MULTIPLEX > 0 pulse_setup_interrupt(FAN_TACHO_READ_PIN, GPIO_IRQ_EDGE_RISE); #else /* Enable interrupts on Fan Tacho input pins */ gpio_set_irq_enabled_with_callback(FAN1_TACHO_READ_PIN, GPIO_IRQ_EDGE_RISE, true, &fan_tacho_read_callback); for (int i = 1; i < FAN_COUNT; i++) { gpio_set_irq_enabled(fan_gpio_tacho_map[i], GPIO_IRQ_EDGE_RISE, true); } #endif } /* Function to set output frequency for tachometer output pin. */ void set_tacho_output_freq(uint fan, double frequency) { assert(fan < MBFAN_COUNT); square_wave_gen_set_freq(pio, fan, frequency); } /* Function to set output (high/low) for locked rotor alarm pin. */ void set_lra_output(uint fan, bool lra) { assert(fan < MBFAN_COUNT); uint pin = mbfan_gpio_tacho_map[fan]; gpio_put(pin, lra); } /* Funcition to initialize tachometer output (generator) pins. */ void setup_tacho_outputs() { uint i; log_msg(LOG_NOTICE, "Setting up Tacho Output pins..."); /* Load square wave generator program to PIO */ uint pio_program_addr = square_wave_gen_load_program(pio); /* Initialize PIO State machines for each tachometer output pin. */ for (i = 0; i < MBFAN_COUNT; i++) { uint pin = mbfan_gpio_tacho_map[i]; if (cfg->mbfans[i].rpm_mode == RMODE_TACHO) { /* Configure PIO square wave generator output... */ uint sm = i; square_wave_gen_program_init(pio, sm, pio_program_addr, pin); square_wave_gen_set_period(pio, sm, 0); square_wave_gen_enabled(pio, sm, true); } else { /* Otherwise assume locked rotor alarm signal output... */ gpio_init(pin); gpio_set_dir(pin, GPIO_OUT); gpio_put(pin, (cfg->mbfans[i].lra_invert ? 0 : 1)); } } } double tacho_map(const struct tacho_map *map, double val) { int i; double newval; /* Value is equal or smaller than first map point */ if (val <= map->tacho[0][0]) return map->tacho[0][1]; /* Find the map points that the value falls in between of... */ i = 1; while(i < map->points-1 && map->tacho[i][0] < val) i++; /* Value is larger or equal than last map point */ if (val >= map->tacho[i][0]) return map->tacho[i][1]; /* Calculate mapping using the map points left (i-i) and right (i) of the value... */ double a = (double)(map->tacho[i][1] - map->tacho[i-1][1]) / (double)(map->tacho[i][0] - map->tacho[i-1][0]); newval = map->tacho[i-1][1] + a * (val - map->tacho[i-1][0]); return newval; } double calculate_tacho_freq(struct fanpico_state *state, const struct fanpico_config *config, int i) { const struct mb_input *mbfan; int count = 0; double val = 0; double sum = 0; mbfan = &config->mbfans[i]; switch (mbfan->s_type) { case TACHO_FIXED: val = mbfan->s_id; break; case TACHO_FAN: val = state->fan_freq[mbfan->s_id] * 60.0 / config->fans[mbfan->s_id].rpm_factor; break; case TACHO_MIN: case TACHO_MAX: case TACHO_AVG: for (int i = 0; i < FAN_COUNT; i++) { if (mbfan->sources[i]) { val = state->fan_freq[i] * 60.0 / config->fans[i].rpm_factor; if (count == 0) { sum = val; } else { if (mbfan->s_type == TACHO_MIN) { if (val < sum) sum = val; } else if (mbfan->s_type == TACHO_MAX) { if (val > sum) sum = val; } else { /* average */ sum += val; } } count++; } } if (count >= 1) { if (mbfan->s_type == TACHO_AVG) { val = sum / count; } else { val = sum; } } break; } /* apply mapping */ val = tacho_map(&mbfan->map, val); /* apply coefficient */ val *= mbfan->rpm_coefficient; if (val < mbfan->min_rpm) val = mbfan->min_rpm; if (val > mbfan->max_rpm) val = mbfan->max_rpm; /* convert RPM to frequency */ val = val / 60.0 * mbfan->rpm_factor; return val; } ================================================ FILE: src/telnetd.c ================================================ /* telnetd.c Copyright (C) 2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include #include "pico/stdlib.h" #include "pico/stdio/driver.h" #include "pico/cyw43_arch.h" #include "lwip/pbuf.h" #include "lwip/tcp.h" #include "pico_telnetd.h" #include "pico_telnetd/util.h" #include "util_net.h" #include "fanpico.h" static const char *telnet_banner = "\r\n" " _____ ____ _\r\n" " | ___|_ _ _ __ | _ \\(_) ___ ___\r\n" " | |_ / _` | '_ \\| |_) | |/ __/ _ \\\r\n" " | _| (_| | | | | __/| | (_| (_) |\r\n" " |_| \\__,_|_| |_|_| |_|\\___\\___/\r\n" "\r\n"; static user_pwhash_entry_t telnet_users[] = { { NULL, NULL }, { NULL, NULL } }; static tcp_server_t *telnet_srv = NULL; static int telnet_allow_connection_cb(ip_addr_t *src_ip) { int ret = 0; int aclcount = 0; if (!src_ip) return -1; for (int i = 0; i < TELNET_MAX_ACL_ENTRIES; i++) { const acl_entry_t *acl = &cfg->telnet_acls[i]; if (acl->prefix > 0) { ip_addr_t netmask; aclcount++; make_netmask(&netmask, acl->prefix); if (ip_addr_netcmp(&acl->ip, src_ip, &netmask)) { ret = 1; break; } } } return (aclcount > 0 ? ret: 1); } void telnetserver_init() { telnet_srv = telnet_server_init(4096, 10240); if (!telnet_srv) return; telnet_users[0].login = cfg->telnet_user; telnet_users[0].hash = cfg->telnet_pwhash; telnet_srv->mode = (cfg->telnet_raw_mode ? RAW_MODE : TELNET_MODE); if (cfg->telnet_port > 0) telnet_srv->port = cfg->telnet_port; if (cfg->telnet_auth) { telnet_srv->auth_cb = sha512crypt_auth_cb; telnet_srv->auth_cb_param = (void*)telnet_users; } telnet_srv->log_cb = log_msg; telnet_srv->banner = telnet_banner; telnet_srv->allow_connect_cb = telnet_allow_connection_cb; telnet_server_start(telnet_srv, true); } void telnetserver_disconnect() { if (!telnet_srv) return; telnet_server_disconnect_client(telnet_srv); } void telnetserver_who() { ip_addr_t ip; uint16_t port; const char *user, *mode; if (!telnet_srv) return; if (telnet_server_client_connected(telnet_srv)) { ip_addr_set_zero(&ip); port = 0; telnet_server_get_client_ip(telnet_srv, &ip, &port); user = (strlen((char*)telnet_srv->login) > 0 ? (char*)telnet_srv->login : ""); mode = (telnet_srv->mode == TELNET_MODE ? "telnet" : "tcp"); printf("%-8s %-8s %s:%u (%s)\n", user, mode, ipaddr_ntoa(&ip), port, tcp_connection_state_name(telnet_srv->cstate)); } else { printf("No active telnet connection(s)\n"); } } ================================================ FILE: src/themes/custom.s ================================================ # custom.s # Copyright (C) 2021-2023 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # # # Stub for embedding LCD background images in the executable. # .global fanpico_theme_custom_320x240_bmp .global fanpico_theme_custom_480x320_bmp .section .rodata .p2align 4 fanpico_theme_custom_320x240_bmp: .incbin "custom-320x240.bmp" .p2align 4 fanpico_theme_custom_480x320_bmp: .incbin "custom-480x320.bmp" # eof ================================================ FILE: src/themes/default-320x240.h ================================================ /* default-320x240.h Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ const display_field_t theme_default_320x240_bg[] = { { FAN, LABEL, 0, 8, 40, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { FAN, LABEL, 1, 8, 57, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { FAN, LABEL, 2, 8, 74, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { FAN, LABEL, 3, 8, 91, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { FAN, LABEL, 4, 8, 108, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { FAN, LABEL, 5, 8, 125, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { FAN, LABEL, 6, 8, 142, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { FAN, LABEL, 7, 8, 159, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { MBFAN, LABEL, 0, 193, 40, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { MBFAN, LABEL, 1, 193, 57, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { MBFAN, LABEL, 2, 193, 74, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { MBFAN, LABEL, 3, 193, 91, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { SENSOR, LABEL, 0, 193, 150, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { SENSOR, LABEL, 1, 193, 167, RGB565(0x000000), RGB565(0x5fd35f), FONT_6x8 }, { SENSOR, LABEL, 2, 193, 184, RGB565(0x000000), RGB565(0x00aa44), FONT_6x8 }, { MODEL_VERSION, LABEL, 0, 12, 230, RGB565(0x000000), RGB565(0x008080), FONT_6x8 }, { 0, 0, -1, -1, -1, 0, 0, -1 } }; const display_field_t theme_default_320x240_fg[] = { { FAN, RPM, 0, 94, 36, RGB565(0xccff00), RGB565(0x00aa44), FONT_12x16 }, { FAN, RPM, 1, 94, 53, RGB565(0xccff00), RGB565(0x5fd35f), FONT_12x16 }, { FAN, RPM, 2, 94, 70, RGB565(0xccff00), RGB565(0x00aa44), FONT_12x16 }, { FAN, RPM, 3, 94, 87, RGB565(0xccff00), RGB565(0x5fd35f), FONT_12x16 }, { FAN, RPM, 4, 94, 104, RGB565(0xccff00), RGB565(0x00aa44), FONT_12x16 }, { FAN, RPM, 5, 94, 121, RGB565(0xccff00), RGB565(0x5fd35f), FONT_12x16 }, { FAN, RPM, 6, 94, 138, RGB565(0xccff00), RGB565(0x00aa44), FONT_12x16 }, { FAN, RPM, 7, 94, 155, RGB565(0xccff00), RGB565(0x5fd35f), FONT_12x16 }, { FAN, PWM, 0, 144, 36, RGB565(0x0055d4), RGB565(0x00aa44), FONT_12x16 }, { FAN, PWM, 1, 144, 53, RGB565(0x0055d4), RGB565(0x5fd35f), FONT_12x16 }, { FAN, PWM, 2, 144, 70, RGB565(0x0055d4), RGB565(0x00aa44), FONT_12x16 }, { FAN, PWM, 3, 144, 87, RGB565(0x0055d4), RGB565(0x5fd35f), FONT_12x16 }, { FAN, PWM, 4, 144, 104, RGB565(0x0055d4), RGB565(0x00aa44), FONT_12x16 }, { FAN, PWM, 5, 144, 121, RGB565(0x0055d4), RGB565(0x5fd35f), FONT_12x16 }, { FAN, PWM, 6, 144, 138, RGB565(0x0055d4), RGB565(0x00aa44), FONT_12x16 }, { FAN, PWM, 7, 144, 155, RGB565(0x0055d4), RGB565(0x5fd35f), FONT_12x16 }, { MBFAN, PWM, 0, 274, 36, RGB565(0xffcc00), RGB565(0x00aa44), FONT_12x16 }, { MBFAN, PWM, 1, 274, 53, RGB565(0xffcc00), RGB565(0x5fd35f), FONT_12x16 }, { MBFAN, PWM, 2, 274, 70, RGB565(0xffcc00), RGB565(0x00aa44), FONT_12x16 }, { MBFAN, PWM, 3, 274, 87, RGB565(0xffcc00), RGB565(0x5fd35f), FONT_12x16 }, { SENSOR, TEMP, 0, 262, 146, RGB565(0xff5599), RGB565(0x00aa44), FONT_12x16 }, { SENSOR, TEMP, 1, 262, 163, RGB565(0xff5599), RGB565(0x5fd35f), FONT_12x16 }, { SENSOR, TEMP, 2, 262, 180, RGB565(0xff5599), RGB565(0x00aa44), FONT_12x16 }, { TIME, OTHER, 0, 34, 192, RGB565(0x000000), RGB565(0x008080), FONT_16x32 }, // { DATE, OTHER, 0, 36, 207, RGB565(0x000000), RGB565(0x008080), FONT_12x16 }, { IP, OTHER, 0, 216, 220, RGB565(0x000000), RGB565(0x008080), FONT_6x8 }, { UPTIME, OTHER, 0, 234, 230, RGB565(0x000000), RGB565(0x008080), FONT_6x8 }, { 0, 0, -1, -1, -1, 0, 0, -1 } }; extern const uint8_t fanpico_theme_default_320x240_bmp[]; /* ptr to embedded background image */ const struct display_theme theme_default_320x240 = { theme_default_320x240_bg, theme_default_320x240_fg, fanpico_theme_default_320x240_bmp, "%-14s", 14, /* fan label */ "%-13s", 13, /* mbfan label */ "%-11s", 11, /* sensor label */ "%-11s", 11, /* vsensor label */ }; ================================================ FILE: src/themes/default-480x320.h ================================================ /* default-480x320.h Copyright (C) 2022-2023 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ const display_field_t theme_default_480x320_bg[] = { { FAN, LABEL, 0, 3, 36, RGB565(0x000000), RGB565(0xffff99), FONT_8x8 }, { FAN, LABEL, 1, 3, 56, RGB565(0x000000), RGB565(0xffcc66), FONT_8x8 }, { FAN, LABEL, 2, 3, 76, RGB565(0x000000), RGB565(0xff9966), FONT_8x8 }, { FAN, LABEL, 3, 3, 96, RGB565(0x000000), RGB565(0xff9900), FONT_8x8 }, { FAN, LABEL, 4, 3, 116, RGB565(0x000000), RGB565(0xff9900), FONT_8x8 }, { FAN, LABEL, 5, 3, 136, RGB565(0x000000), RGB565(0xff9966), FONT_8x8 }, { FAN, LABEL, 6, 3, 156, RGB565(0x000000), RGB565(0xffcc66), FONT_8x8 }, { FAN, LABEL, 7, 3, 176, RGB565(0x000000), RGB565(0xffff99), FONT_8x8 }, { MBFAN, LABEL, 0, 3, 214, RGB565(0x000000), RGB565(0xcc6699), FONT_8x8 }, { MBFAN, LABEL, 1, 3, 234, RGB565(0x000000), RGB565(0xbb6622), FONT_8x8 }, { MBFAN, LABEL, 2, 3, 254, RGB565(0x000000), RGB565(0xcc99cc), FONT_8x8 }, { MBFAN, LABEL, 3, 3, 274, RGB565(0x000000), RGB565(0xcc6666), FONT_8x8 }, { SENSOR, LABEL, 0, 276, 214, RGB565(0x000000), RGB565(0x6688cc), FONT_8x8 }, { SENSOR, LABEL, 1, 276, 234, RGB565(0x000000), RGB565(0x9977aa), FONT_8x8 }, { SENSOR, LABEL, 2, 276, 254, RGB565(0x000000), RGB565(0x774466), FONT_8x8 }, { 0, 0, -1, -1, -1, 0, 0, -1 } }; const display_field_t theme_default_480x320_fg[] = { { FAN, RPM, 0, 128, 32, RGB565(0xffff99), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 1, 128, 52, RGB565(0xffcc66), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 2, 128, 72, RGB565(0xff9966), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 3, 128, 92, RGB565(0xff9900), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 4, 128, 112, RGB565(0xff9900), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 5, 128, 132, RGB565(0xff9966), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 6, 128, 152, RGB565(0xffcc66), RGB565(0x000000), FONT_12x16 }, { FAN, RPM, 7, 128, 172, RGB565(0xffff99), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 0, 200, 32, RGB565(0xffff99), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 1, 200, 52, RGB565(0xffcc66), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 2, 200, 72, RGB565(0xff9966), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 3, 200, 92, RGB565(0xff9900), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 4, 200, 112, RGB565(0xff9900), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 5, 200, 132, RGB565(0xff9966), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 6, 200, 152, RGB565(0xffcc66), RGB565(0x000000), FONT_12x16 }, { FAN, PWM, 7, 200, 172, RGB565(0xffff99), RGB565(0x000000), FONT_12x16 }, { MBFAN, RPM, 0, 128, 210, RGB565(0xcc6699), RGB565(0x000000), FONT_12x16 }, { MBFAN, RPM, 1, 128, 230, RGB565(0xbb6622), RGB565(0x000000), FONT_12x16 }, { MBFAN, RPM, 2, 128, 250, RGB565(0xcc99cc), RGB565(0x000000), FONT_12x16 }, { MBFAN, RPM, 3, 128, 270, RGB565(0xcc6666), RGB565(0x000000), FONT_12x16 }, { MBFAN, PWM, 0, 200, 210, RGB565(0xcc6699), RGB565(0x000000), FONT_12x16 }, { MBFAN, PWM, 1, 200, 230, RGB565(0xbb6622), RGB565(0x000000), FONT_12x16 }, { MBFAN, PWM, 2, 200, 250, RGB565(0xcc99cc), RGB565(0x000000), FONT_12x16 }, { MBFAN, PWM, 3, 200, 270, RGB565(0xcc6666), RGB565(0x000000), FONT_12x16 }, { SENSOR, TEMP, 0, 401, 210, RGB565(0x6688cc), RGB565(0x000000), FONT_12x16 }, { SENSOR, TEMP, 1, 401, 230, RGB565(0x9977aa), RGB565(0x000000), FONT_12x16 }, { SENSOR, TEMP, 2, 401, 250, RGB565(0x774466), RGB565(0x000000), FONT_12x16 }, { IP, OTHER, 0, 350, 308, RGB565(0x000000), RGB565(0xff9900), FONT_8x8 }, { UPTIME, OTHER, 0, 292, 48, RGB565(0x000000), RGB565(0xcc99cc), FONT_12x16 }, { DATE, OTHER, 0, 300, 90, RGB565(0xff9900), RGB565(0x000000), FONT_12x16 }, { TIME, OTHER, 0, 300, 118, RGB565(0xffcc66), RGB565(0x000000), FONT_16x32 }, { 0, 0, -1, -1, -1, 0, 0, -1 } }; extern const uint8_t fanpico_theme_default_480x320_bmp[]; /* ptr to embedded background image */ const struct display_theme theme_default_480x320 = { theme_default_480x320_bg, theme_default_480x320_fg, fanpico_theme_default_480x320_bmp, "%14s", 14, /* fan label */ "%14s", 14, /* mbfan label */ "%14s", 14, /* sensor label */ "%14s", 14, /* vsensor label */ }; ================================================ FILE: src/themes/lcd-background.s ================================================ # lcd-background.s # Copyright (C) 2021-2023 Timo Kokkonen # # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of FanPico. # # # Stub for embedding LCD background images in the executable. # .global fanpico_theme_default_320x240_bmp .global fanpico_theme_default_480x320_bmp .section .rodata .p2align 4 fanpico_theme_default_320x240_bmp: .incbin "default-320x240.bmp" .p2align 4 fanpico_theme_default_480x320_bmp: .incbin "default-480x320.bmp" # eof ================================================ FILE: src/tls.c ================================================ /* tls.c Copyright (C) 2021-2022 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "pico/stdlib.h" #include "fanpico.h" #if WIFI_SUPPORT #if TLS_SUPPORT #include "mbedtls/error.h" #include "lwip/altcp_tls.h" #endif int read_pem_file(char *buf, uint32_t size, uint32_t timeout, bool append) { absolute_time_t t_timeout = get_absolute_time(); char tmp[128], *line; int state = 0; int r; if (!buf || size < 2) return -1; tmp[0] = 0; if (!append) buf[0] = 0; while (1) { r = getstring_timeout_ms(tmp, sizeof(tmp), 100); if (r < 0) break; if (r > 0) { line = trim_str(tmp); if (state == 0) { if (!strncmp(line, "-----BEGIN", 10)) { state = 1; } else { break; } } else if (state == 1) { if (!strncmp(line, "-----END", 8)) { state = 2; } } if (state > 0) { strncatenate(buf, line, size); strncatenate(buf, "\n", size); } if (state == 2) return 1; tmp[0] = 0; } if (time_passed(&t_timeout, timeout)) { break; } } return 0; } #if TLS_SUPPORT struct altcp_tls_config* tls_server_config() { struct altcp_tls_config *c = NULL; char *key = NULL, *cert = NULL; uint32_t key_size, cert_size; int res; log_msg(LOG_DEBUG, "tls_server_config(): started"); res = flash_read_file(&cert, &cert_size, "cert.pem"); if (res == 0) { //printf("cert:\n%s\n", cert); res = flash_read_file(&key, &key_size, "key.pem"); if (res == 0) { //printf("key:\n%s\n", key); c = altcp_tls_create_config_server_privkey_cert((const u8_t*)key, key_size, NULL, 0, (const u8_t*)cert, cert_size); if (!c) log_msg(LOG_NOTICE,"Failed to load TLS certificate"); } } if (key) free(key); if (cert) free(cert); log_msg(LOG_DEBUG, "tls_server_config(): finished (%lx)", (uint32_t)c); return c; } #endif #endif /* WIFI_SUPPORT */ ================================================ FILE: src/util.c ================================================ /* util.c Copyright (C) 2021-2024 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include "b64/cencode.h" #include "b64/cdecode.h" #include "pico/aon_timer.h" #include "fanpico.h" void print_mallinfo() { struct mallinfo mi = mallinfo(); printf("Total non-mmapped bytes (arena): %d\n", mi.arena); printf("# of free chunks (ordblks): %d\n", mi.ordblks); printf("# of free fastbin blocks (smblks): %d\n", mi.smblks); printf("# of mapped regions (hblks): %d\n", mi.hblks); printf("Bytes in mapped regions (hblkhd): %d\n", mi.hblkhd); printf("Max. total allocated space (usmblks): %d\n", mi.usmblks); printf("Free bytes held in fastbins (fsmblks): %d\n", mi.fsmblks); printf("Total allocated space (uordblks): %d\n", mi.uordblks); printf("Total free space (fordblks): %d\n", mi.fordblks); printf("Topmost releasable block (keepcost): %d\n", mi.keepcost); } char *trim_str(char *s) { char *e; if (!s) return NULL; while (iswspace(*s)) s++; e = s + strlen(s) - 1; while (e >= s && iswspace(*e)) *e-- = 0; return s; } int str_to_int(const char *str, int *val, int base) { char *endptr; if (!str || !val) return 0; *val = strtol(str, &endptr, base); return (str == endptr ? 0 : 1); } int str_to_float(const char *str, float *val) { char *endptr; if (!str || !val) return 0; *val = strtof(str, &endptr); return (str == endptr ? 0 : 1); } time_t timespec_to_time_t(const struct timespec *ts) { if (!ts) return 0; return ts->tv_sec; } struct timespec* time_t_to_timespec(time_t t, struct timespec *ts) { if (!ts) return NULL; memset(ts, 0, sizeof(*ts)); ts->tv_sec = t; return ts; } char* time_t_to_str(char *buf, size_t size, const time_t t) { struct tm tm; if (!buf) return NULL; localtime_r(&t, &tm); snprintf(buf, size, "%04d-%02d-%02d %02d:%02d:%02d", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); return buf; } char* uptime_to_str(char *buf, size_t size, uint64_t uptime, bool show_secs) { uint32_t secs = uptime / 1000000; uint32_t mins = secs / 60; uint32_t hours = mins / 60; uint32_t days = hours / 24; if (!buf) return NULL; if (show_secs) snprintf(buf, size, "%lu days, %02lu:%02lu:%02lu", days, hours % 24, mins % 60, secs % 60); else snprintf(buf, size, "%lu days, %02lu:%02lu", days, hours % 24, mins % 60); return buf; } bool str_to_time_t(const char *str, time_t *t) { struct tm tm; if (!str || !t) return false; if (!strptime(str, "%Y-%m-%d %H:%M:%S", &tm)) return false; *t = mktime(&tm); return true; } bool rtc_get_tm(struct tm *tm) { time_t t; if (!tm) return false; if (!rtc_get_time(&t)) return false; if (!localtime_r(&t, tm)) return false; return true; } #if PICO_SDK_VERSION_MAJOR == 2 #if PICO_SDK_VERSION_MINOR <= 1 #if PICO_SDK_VERSION_REVISION <= 1 /* Temporary workaround to a SDK issue (#2374) in datetime_to_tm() ... */ time_t pico_mktime(struct tm *tm) { tm->tm_isdst = -1; return mktime(tm); } #endif #endif #endif bool rtc_get_time(time_t *t) { struct timespec ts; if (!t || !aon_timer_is_running()) return false; if (!aon_timer_get_time(&ts)) return false; *t = timespec_to_time_t(&ts); return true; } int check_for_change(double oldval, double newval, double threshold) { double delta = fabs(oldval - newval); if (delta >= threshold) return 1; return 0; } #define SQRT_INT64_MAX 3037000499 // sqrt(INT64_MAX) int64_t pow_i64(int64_t x, uint8_t y) { int64_t res; /* Handle edge cases. */ if (x == 1 || y == 0) return 1; if (x == 0) return 0; /* Calculate x^y by squaring method. */ res = (y & 1 ? x : 1); y >>= 1; while (y) { /* Check for overflow. */ if (x > SQRT_INT64_MAX) return 0; x *= x; if (y & 1) res *= x; /* This may still overflow... */ y >>= 1; } return res; } double round_decimal(double val, unsigned int decimal) { double f = pow_i64(10, decimal); return round(val * f) / f; } char* base64encode_raw(const void *input, size_t input_len) { base64_encodestate ctx; size_t buf_len, count; char *buf, *c; if (!input) return NULL; base64_init_encodestate(&ctx); buf_len = base64_encode_length(input_len, &ctx); if (!(buf = malloc(buf_len + 1))) return NULL; c = buf; count = base64_encode_block(input, input_len, c, &ctx); c += count; count = base64_encode_blockend(c, &ctx); c += count; *c = 0; return buf; } char *base64encode(const char *input) { if (!input) return NULL; return base64encode_raw(input, strlen(input)); } int base64decode_raw(const void *input, size_t input_len, void **output) { base64_decodestate ctx; size_t buf_len, count; if (!input || !output || input_len < 1) return -1; base64_init_decodestate(&ctx); buf_len = base64_decode_maxlength(input_len); if (!(*output = calloc(1, buf_len))) return -2; count = base64_decode_block(input, input_len, *output, &ctx); return count; } char* base64decode(const char *input) { base64_decodestate ctx; size_t buf_len, input_len, count; char *buf, *c; if (!input) return NULL; base64_init_decodestate(&ctx); input_len = strlen(input); buf_len = base64_decode_maxlength(input_len); if (!(buf = malloc(buf_len + 1))) return NULL; c = buf; count = base64_decode_block(input, input_len, c, &ctx); c += count; *c = 0; return buf; } char *strncopy(char *dst, const char *src, size_t size) { if (!dst || !src || size < 1) return dst; if (size > 1) strncpy(dst, src, size - 1); dst[size - 1] = 0; return dst; } char *strncatenate(char *dst, const char *src, size_t size) { int used, free; if (!dst || !src || size < 1) return dst; /* Check if dst string is already "full" ... */ used = strnlen(dst, size); if ((free = size - used) <= 1) return dst; return strncat(dst + used, src, free - 1); } int clamp_int(int val, int min, int max) { int res = val; if (res < min) res = min; if (res > max) res = max; return res; } void* memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) { const uint8_t *h = (const uint8_t *) haystack; const uint8_t *n = (const uint8_t *) needle; if (haystacklen == 0 || needlelen == 0 || haystacklen < needlelen) return NULL; if (needlelen == 1) return memchr(haystack, (int)n[0], haystacklen); const uint8_t *search_end = h + haystacklen - needlelen; for (const uint8_t *p = h; p <= search_end; p++) { if (*p == *n) { if (!memcmp(p, n, needlelen)) { return (void *)p; } } } return NULL; } char *bitmask_to_str(uint32_t mask, uint16_t len, uint8_t base, bool range) { static char buf[96 + 16]; int state = 0; int prev = -2; int last = 0; char *s = buf; int i, w; buf[0] = 0; if (len < 1 || len > 32) return buf; if (!range && mask == (1 << len) - 1) { buf[0] = '*'; buf[1] = 0; return buf; } for (i = 0; i < len; i++) { if (mask & (1 << i)) { int consecutive = (i - prev == 1 ? 1 : 0); if (state == 0) { w = snprintf(s, 3, "%d", i + base); if (w > 2) w = 2; s += w; state = 1; } else if (state == 1) { if (range && consecutive) { last = i; state = 2; } else { w = snprintf(s, 4, ",%d", i + base); if (w > 3) w = 3; s += w; } } else if (state == 2) { if (consecutive) { last = i; } else { w = snprintf(s, 7, "-%d,%d", last + base, i + base); if (w > 6) w = 6; s += w; state = 1; } } prev = i; } } if (range && state == 2) { snprintf(s , 12, "-%d", last + base); } return buf; } int str_to_bitmask(const char *str, uint16_t len, uint32_t *mask, uint8_t base) { char *s, *tok, *saveptr, *saveptr2; if (!str || !mask) return -1; *mask = 0; if (len < 1 || len > 32) return -2; if (!strncmp(str, "*", 2)) { *mask = (1 << len) - 1; return 0; } if ((s = strdup(str)) == NULL) return -3; tok = strtok_r(s, ",", &saveptr); while (tok) { int a, b; tok = strtok_r(tok, "-", &saveptr2); if (str_to_int(tok, &a, 10)) { a -= base; if (a >= 0 && a < len) { *mask |= (1 << a); } tok = strtok_r(NULL, "-", &saveptr2); if (str_to_int(tok, &b, 10)) { b -= base; if (b > a && b < len) { while (++a <= b) { *mask |= (1 << a); } } } } tok = strtok_r(NULL, ",", &saveptr); } free(s); return 0; } /* eof */ ================================================ FILE: src/util_net.c ================================================ /* util_net.c Copyright (C) 2021-2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "lwip/ip_addr.h" #include "fanpico.h" const char *mac_address_str(const uint8_t *mac) { static char buf[32]; snprintf(buf, sizeof(buf), "%02x:%02x:%02x:%02x:%02x:%02x", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); return buf; } int valid_wifi_country(const char *country) { if (!country) return 0; if (strlen(country) < 2) return 0; if (!(country[0] >= 'A' && country[0] <= 'Z')) return 0; if (!(country[1] >= 'A' && country[1] <= 'Z')) return 0; if (strlen(country) == 2) return 1; if (country[2] >= '1' && country[2] <= '9') return 1; return 0; } int valid_hostname(const char *name) { if (!name) return 0; for (int i = 0; i < strlen(name); i++) { if (!(isalnum((int)name[i]) || name[i] == '-')) { return 0; } } return 1; } void make_netmask(ip_addr_t *nm, uint8_t prefix) { uint32_t mask = 0xffffffff; if (prefix < 32) mask <<= (32 - prefix); if (nm) ip4_addr_set_u32(nm, lwip_htonl(mask)); } /* eof */ ================================================ FILE: src/util_net.h ================================================ /* util_net.h Copyright (C) 2025 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #ifndef _FANPICO_UTIL_NET_H_ #define _FANPICO_UTIL_NET_H_ #include "lwip/ip_addr.h" const char *mac_address_str(const uint8_t *mac); int valid_wifi_country(const char *country); int valid_hostname(const char *name); void make_netmask(ip_addr_t *nm, uint8_t prefix); #endif /* _FANPICO_LOG_H_ */ ================================================ FILE: src/util_rp2.c ================================================ /* util_rp2.c Copyright (C) 2021-2026 Timo Kokkonen SPDX-License-Identifier: GPL-3.0-or-later This file is part of FanPico. FanPico is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. FanPico is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FanPico. If not, see . */ #include #include #include #include "pico/stdlib.h" #include "pico/mutex.h" #include "pico/unique_id.h" #include "pico/multicore.h" #include "hardware/gpio.h" #include "hardware/adc.h" #include "hardware/clocks.h" #include "hardware/watchdog.h" #if PICO_RP2040 #include "hardware/structs/vreg_and_chip_reset.h" #include "hardware/structs/ssi.h" #else #include "hardware/structs/powman.h" #include "hardware/structs/qmi.h" #include "psram.h" #endif #include "memtest.h" #include "pico_lfs.h" #include "fanpico.h" extern char __StackTop; extern char __StackOneTop; extern char __StackBottom; extern char __StackOneBottom; extern char __StackLimit; extern char __HeapLimit; extern char __end__; extern char __flash_binary_start; extern char __flash_binary_end; inline uint32_t get_stack_pointer() { uint32_t sp; asm volatile("mov %0, sp" : "=r"(sp)); return sp; } inline uint32_t get_stack_free() { uint32_t sp = get_stack_pointer(); uint32_t end = get_core_num() ? (uint32_t)&__StackOneBottom : (uint32_t)&__StackBottom; return (sp > end ? sp - end : 0); } void print_rp2_meminfo() { printf("Core0 stack size: %d\n", &__StackTop - &__StackBottom); printf("Core1 stack size: %d\n", &__StackOneTop - &__StackOneBottom); printf("Heap size: %d\n", &__StackLimit - &__end__); printf("Core%d stack free: %lu\n", get_core_num(), get_stack_free()); } #if PICO_SDK_VERSION_MAJOR < 2 void watchdog_disable() { hw_clear_bits(&watchdog_hw->ctrl, WATCHDOG_CTRL_ENABLE_BITS); } #endif void print_irqinfo() { uint core = get_core_num(); uint enabled, shared; for(uint i = 0; i < 32; i++) { enabled = irq_is_enabled(i); shared = (enabled ? irq_has_shared_handler(i) : 0); printf("core%u: IRQ%-2u: enabled=%u, shared=%u\n", core, i, enabled, shared); } } const char *rp2_model_str() { static char buf[32]; uint8_t version = 0; uint8_t known_chip = 0; uint8_t chip_version = 0; char *model; char r; #if PICO_RP2350 #if PICO_RP2350A model = "2350A"; #else model = "2350B"; #endif r = 'A'; chip_version = rp2350_chip_version(); if (chip_version <= 2) known_chip = 1; version = chip_version; #else model = "2040"; r = 'B'; uint8_t rom_version = rp2040_rom_version(); chip_version = rp2040_chip_version(); if (chip_version <= 2 && rom_version <= 3) known_chip = 1; version = rom_version - 1; #endif snprintf(buf, sizeof(buf), "RP%s-%c%d%s", model, r, version, (known_chip ? "" : " (?)")); return buf; } const char *pico_serial_str() { static char buf[PICO_UNIQUE_BOARD_ID_SIZE_BYTES * 2 + 1]; pico_unique_board_id_t board_id; memset(&board_id, 0, sizeof(board_id)); pico_get_unique_board_id(&board_id); for (int i = 0; i < PICO_UNIQUE_BOARD_ID_SIZE_BYTES; i++) snprintf(&buf[i*2], 3,"%02x", board_id.id[i]); return buf; } int time_passed(absolute_time_t *t, uint32_t ms) { absolute_time_t t_now = get_absolute_time(); if (t == NULL) return -1; if (to_us_since_boot(*t) == 0 || to_us_since_boot(delayed_by_ms(*t, ms)) < to_us_since_boot(t_now)) { *t = t_now; return 1; } return 0; } int time_elapsed(absolute_time_t t, uint32_t ms) { absolute_time_t t_now = get_absolute_time(); if (absolute_time_diff_us(t, t_now) > (uint64_t)ms * 1000) return 1; return 0; } int getstring_timeout_ms(char *str, uint32_t maxlen, uint32_t timeout) { absolute_time_t t_timeout = get_absolute_time(); char *p; int res = 0; int len; if (!str || maxlen < 2) return -1; len = strnlen(str, maxlen); if (len >= maxlen) return -2; p = str + len; while ((p - str) < (maxlen - 1) ) { if (time_passed(&t_timeout, timeout)) { break; } int c = getchar_timeout_us(1); if (c == PICO_ERROR_TIMEOUT) continue; if (c == 10 || c == 13) { res = 1; break; } *p++ = c; } *p = 0; return res; } float get_rp2_dvdd() { uint8_t vsel = 0; float v = 0.0; #if PICO_RP2040 vsel = (vreg_and_chip_reset_hw->vreg & VREG_AND_CHIP_RESET_VREG_VSEL_BITS) >> VREG_AND_CHIP_RESET_VREG_VSEL_LSB; v = 0.80; if (vsel > 5) v += (vsel - 5) * 0.05; #else vsel = (powman_hw->vreg & POWMAN_VREG_VSEL_BITS) >> POWMAN_VREG_VSEL_LSB; if (vsel <= 17) v = 0.55 + vsel * 0.05; else if (vsel <= 19) v = 1.50 + (vsel - 18) * 0.10; else if (vsel == 20) v = 1.65; else if (vsel <= 24) v = 1.70 + (vsel - 21) * 0.10; else if (vsel <= 28) v = 2.35 + (vsel - 25) * 0.15; else v = 3.00 + (vsel - 29) * 0.15; #endif return v; } void print_rp2_board_info() { uint32_t sys_clk = clock_get_hz(clk_sys); #if PICO_RP2040 uint8_t flash_clkdiv = (ssi_hw->baudr & SSI_BAUDR_SCKDV_BITS) >> SSI_BAUDR_SCKDV_LSB; #else uint8_t flash_clkdiv = (qmi_hw->m[0].timing & QMI_M0_TIMING_CLKDIV_BITS) >> QMI_M0_TIMING_CLKDIV_LSB; uint8_t psram_clkdiv = (qmi_hw->m[1].timing & QMI_M1_TIMING_CLKDIV_BITS) >> QMI_M1_TIMING_CLKDIV_LSB; uint32_t psram_clk = sys_clk / psram_clkdiv; #endif uint32_t flash_clk = sys_clk / flash_clkdiv; const char *board; #if PICO_RP2350 board = rp2_is_picow() ? "Pico 2 W" : "Pico 2"; #else board = rp2_is_picow() ? "Pico W" : "Pico"; #endif printf("Hardware Model: FANPICO-%s\n", FANPICO_MODEL); printf(" Board: %s\n", board); printf(" MCU: %s @ %luMHz\n", rp2_model_str(), sys_clk / 1000000); printf(" RAM: %luKB\n", ((uint32_t)SRAM_END - SRAM_BASE) >> 10); #if !PICO_RP2040 if (psram_size() > 0) printf(" PSRAM: %uKB @ %luMHz\n", psram_size() >> 10, psram_clk / 1000000); #endif printf(" Flash: %luKB @ %luMHz\n", (uint32_t)PICO_FLASH_SIZE_BYTES >> 10, flash_clk / 1000000); printf(" Serial Number: %s\n", pico_serial_str()); if (get_log_level() >= LOG_INFO) printf(" DVDD: %0.2fV\n", get_rp2_dvdd()); } void print_psram_info() { #if PICO_RP2040 || PSRAM_CS_PIN < 0 printf("No PSRAM support.\n"); #else uint8_t psram_clkdiv = (qmi_hw->m[1].timing & QMI_M1_TIMING_CLKDIV_BITS) >> QMI_M1_TIMING_CLKDIV_LSB; uint32_t psram_clk = clock_get_hz(clk_sys) / psram_clkdiv; const psram_id_t *p = psram_get_id(); if (p) { printf("Manufacturer: %s\n", psram_get_manufacturer(p->mfid)); printf(" Chip ID: %02x%02x%02x%02x%02x%02x%02x%02x\n", p->mfid, p->kgd, p->eid[0], p->eid[1], p->eid[2], p->eid[3], p->eid[4], p->eid[5]); } printf(" Size: %u KB\n", psram_size() >> 10); printf(" Clock: %lu MHz\n", psram_clk / 1000000); printf(" M1_TIMING: %08lx\n", qmi_hw->m[1].timing); #endif } void rp2_memtest() { void *heap; uint32_t size; #if !PICO_RP2040 /* PSRAM Tests */ if ((size = psram_size()) > 0) { printf("Testing PSRAM: %lu bytes\n", size); if (get_log_level() >= LOG_INFO) { printf("M1_TIMING: %08lx\n", qmi_hw->m[1].timing); printf("NOCACHE:\n"); } heap = (void*)PSRAM_NOCACHE_BASE; walking_mem_test(heap, size); simple_speed_mem_test(heap, size, false); if (get_log_level() >= LOG_INFO) { printf("CACHE:\n"); heap = (void*)PSRAM_BASE; walking_mem_test(heap, size); simple_speed_mem_test(heap, size, false); } } #endif /* Flash Tests */ size = PICO_FLASH_SIZE_BYTES; printf("Testing FLASH: %lu bytes\n", size); if (get_log_level() >= LOG_INFO) { #if PICO_RP2040 printf("BAUDR: %08lx\n", ssi_hw->baudr); #else printf("M0_TIMING: %08lx\n", qmi_hw->m[0].timing); #endif printf("NOCACHE:\n"); } heap = (void*)XIP_NOCACHE_NOALLOC_BASE; simple_speed_mem_test(heap, size, true); if (get_log_level() >= LOG_INFO) { printf("CACHE:\n"); heap = (void*)XIP_BASE; simple_speed_mem_test(heap, size, true); } } #if PICO_RP2350 static inline void powman_vreg_update_in_progress_wait() { while (powman_hw->vreg & POWMAN_VREG_UPDATE_IN_PROGRESS_BITS) { tight_loop_contents(); } } #endif void rp2_set_sys_clock(uint32_t khz) { #if PICO_RP2350 if (khz > 150000) { /* Increase core voltage from 1.10V to 1.15V if overclocking */ uint8_t vsel = 0x0c; // 01100 = 1.15V uint8_t hiz = (powman_hw->vreg & POWMAN_VREG_HIZ_BITS) >> POWMAN_VREG_HIZ_LSB; /* Unlock (enable) VREG control */ hw_set_bits(&powman_hw->vreg_ctrl, POWMAN_PASSWORD_BITS | POWMAN_VREG_CTRL_UNLOCK_BITS); /* Update VSEL (select output voltage) */ powman_vreg_update_in_progress_wait(); powman_hw->vreg = ( POWMAN_PASSWORD_BITS | ((vsel << POWMAN_VREG_VSEL_LSB) & POWMAN_VREG_VSEL_BITS) | ((hiz << POWMAN_VREG_HIZ_LSB) & POWMAN_VREG_HIZ_LSB) ); powman_vreg_update_in_progress_wait(); } #endif set_sys_clock_khz(khz, true); sleep_ms(50); } #define ADC_TRESHOLD ((1 << 12) / (3 * 2)) /* about 0.5V with 3.0V ADC reference */ /** * @brief Check whether running on a Pico W or Pico (or Pico 2 W or Pico 2). * * This is done by reading ADC3 voltage when GPIO25 is set to LOW. * This is meant to be called early in the boot process before Wifi, * ADC / GPIO is initialized. * Test is performed only once (and result cached), so this is safe to call * again later even if WiFi is active. * * @return non-zero when Pico W (or Pico 2 W) is detected, otherwise return zero */ int rp2_is_picow(void) { static int8_t pico_w = -1; if (pico_w < 0) { gpio_init(25); gpio_set_dir(25, GPIO_OUT); gpio_put(25, 0); adc_init(); adc_gpio_init(29); adc_select_input(3); sleep_ms(5); uint16_t res = adc_read(); pico_w = (res < ADC_TRESHOLD ? 1 : 0); #if 0 printf("ADC3 value: %d (0x%04x), voltage: %f V\n", res, res, res * (3.0f / (1 << 12))); #endif gpio_deinit(25); reset_unreset_block_num_wait_blocking(RESET_ADC); } return pico_w; } /* eof */ ================================================ FILE: src/wolfssl/user_settings.h ================================================ /* user_settings.h * * Copyright (C) 2006-2023 wolfSSL Inc. * * This file is part of wolfSSL. * * wolfSSL is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * wolfSSL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA */ /* Example wolfSSL user settings with #if 0/1 gates to enable/disable algorithms and features. * This file is included with wolfssl/wolfcrypt/settings.h when WOLFSSL_USER_SETTINGS is defined. * Based on IDE/GCC-ARM/Headers/user_settings.h */ #ifndef WOLFSSL_USER_SETTINGS_H #define WOLFSSL_USER_SETTINGS_H #ifdef __cplusplus extern "C" { #endif #include #include #define TARGET_EMBEDDED #define WOLFCRYPT_ONLY #define WOLFSSL_NO_SOCK //#define WOLFSSL_SP_NO_DYNSTACK #define WOLFSSL_WOLFSSH #define WOLFSSL_RPIPICO #define WOLFSSH_SMALL_STACK #define WOLFSSH_KEYGEN #define WOLFSSH_ALLOW_USERAUTH_NONE #if __GNUC__ >= 15 #define WOLFSSL_HAVE_MLKEM #define WOLFSSL_WC_MLKEM #define WOLFSSL_NO_MAKE_KEY #define WOLFSSL_SHAKE128 #define WOLFSSL_SHAKE256 #define WOLFSSH_NO_NISTP384_MLKEM1024_SHA384 #define WOLFSSH_NO_NISTP256_MLKEM768_SHA256 #endif #define NO_FAILURE_ON_REJECTED #define DEFAULT_WINDOW_SZ 4096 #define DEFAULT_MAX_PACKET_SZ 1024 #if 0 extern time_t ssh_server_my_time(time_t *); #define XTIME(t) ssh_server_my_time(t) #endif /* ------------------------------------------------------------------------- */ /* Platform */ /* ------------------------------------------------------------------------- */ #define WOLFSSL_GENERAL_ALIGNMENT 4 #define SIZEOF_LONG_LONG 8 #if 0 #define NO_64BIT /* disable use of 64-bit variables */ #endif #ifdef TARGET_EMBEDDED /* disable mutex locking */ #define SINGLE_THREADED /* reduce stack use. For variables over 100 bytes allocate from heap */ #define WOLFSSL_SMALL_STACK /* Disable the built-in socket support and use the IO callbacks. * Set IO callbacks with wolfSSL_CTX_SetIORecv/wolfSSL_CTX_SetIOSend */ #define WOLFSSL_USER_IO #endif /* ------------------------------------------------------------------------- */ /* Math Configuration */ /* ------------------------------------------------------------------------- */ /* Wolf Single Precision Math */ #if 1 #define SP_INT_BITS 256 //#define WOLFSSL_HAVE_SP_RSA //#define WOLFSSL_HAVE_SP_DH #define WOLFSSL_HAVE_SP_ECC // #define WOLFSSL_SP_4096 /* Enable RSA/RH 4096-bit support */ // #define WOLFSSL_SP_384 /* Enable ECC 384-bit SECP384R1 support */ // #define WOLFSSL_SP_CACHE_RESISTANT //#define WOLFSSL_SP_MATH /* only SP math - disables integer.c/tfm.c */ #define WOLFSSL_SP_MATH_ALL /* use SP math for all key sizes and curves */ // #define WOLFSSL_SP_NO_MALLOC // #define WOLFSSL_SP_DIV_32 /* do not use 64-bit divides */ #ifdef TARGET_EMBEDDED /* use smaller version of code */ //#define WOLFSSL_SP_SMALL #else /* SP Assembly Speedups - specific to chip type */ #define WOLFSSL_SP_ASM #endif /* Handled in CMake */ // #define WOLFSSL_SP_X86_64 // #define WOLFSSL_SP_X86 // #define WOLFSSL_SP_ARM32_ASM // #define WOLFSSL_SP_ARM64_ASM // #define WOLFSSL_SP_ARM_THUMB_ASM // #define WOLFSSL_SP_ARM_CORTEX_M_ASM #elif 1 /* Fast Math (tfm.c) (stack based and timing resistant) */ #define USE_FAST_MATH #define TFM_TIMING_RESISTANT #else /* Normal (integer.c) (heap based, not timing resistant) - not recommended*/ #define USE_INTEGER_HEAP_MATH #endif /* ------------------------------------------------------------------------- */ /* Crypto */ /* ------------------------------------------------------------------------- */ /* RSA */ #undef NO_RSA #if 0 #ifdef USE_FAST_MATH /* Maximum math bits (Max RSA key bits * 2) */ #define FP_MAX_BITS 4096 #endif #endif #if 0 /* half as much memory but twice as slow */ // #define RSA_LOW_MEM /* Enables blinding mode, to prevent timing attacks */ #define WC_RSA_BLINDING /* RSA PSS Support */ #define WC_RSA_PSS #else #define NO_RSA #endif /* DH */ #undef NO_DH #if 0 /* Use table for DH instead of -lm (math) lib dependency */ #if 1 #define WOLFSSL_DH_CONST #define HAVE_FFDHE_2048 // #define HAVE_FFDHE_4096 // #define HAVE_FFDHE_6144 // #define HAVE_FFDHE_8192 #endif #else #define NO_DH #endif /* ECC */ #undef HAVE_ECC #if 1 #define HAVE_ECC /* Manually define enabled curves */ //#define ECC_USER_CURVES #ifdef ECC_USER_CURVES /* Manual Curve Selection */ // #define HAVE_ECC192 // #define HAVE_ECC224 #undef NO_ECC256 // #define HAVE_ECC384 // #define HAVE_ECC521 #endif /* Fixed point cache (speeds repeated operations against same private key) */ // #define FP_ECC #ifdef FP_ECC /* Bits / Entries */ #define FP_ENTRIES 2 #define FP_LUT 4 #endif /* Optional ECC calculation method */ /* Note: doubles heap usage, but slightly faster */ #define ECC_SHAMIR /* Reduces heap usage, but slower */ #define ECC_TIMING_RESISTANT /* Compressed ECC Key Support */ // #define HAVE_COMP_KEY /* Use alternate ECC size for ECC math */ #ifdef USE_FAST_MATH /* MAX ECC BITS = ROUND8(MAX ECC) * 2 */ #if defined(NO_RSA) && defined(NO_DH) /* Custom fastmath size if not using RSA/DH */ #define FP_MAX_BITS (256 * 2) #else /* use heap allocation for ECC points */ #define ALT_ECC_SIZE /* wolfSSL will compute the FP_MAX_BITS_ECC, but it can be overridden */ // #define FP_MAX_BITS_ECC (256 * 2) #endif /* Speedups specific to curve */ #ifndef NO_ECC256 #define TFM_ECC256 #endif #endif #endif /* AES */ #undef NO_AES #if 1 #define HAVE_AES_CBC /* GCM Method: GCM_TABLE_4BIT, GCM_SMALL, GCM_WORD32 or GCM_TABLE */ #define HAVE_AESGCM #if 0 //TARGET_EMBEDDED #define GCM_SMALL #else #define GCM_TABLE_4BIT #endif // #define WOLFSSL_AES_DIRECT // #define HAVE_AES_ECB // #define WOLFSSL_AES_COUNTER // #define HAVE_AESCCM #else #define NO_AES #endif /* DES3 */ #undef NO_DES3 #if 0 #else #define NO_DES3 #endif /* ChaCha20 / Poly1305 */ #undef HAVE_CHACHA #undef HAVE_POLY1305 #if 1 #define HAVE_CHACHA #define HAVE_POLY1305 /* Needed for Poly1305 */ #define HAVE_ONE_TIME_AUTH #endif /* Ed25519 / Curve25519 */ #undef HAVE_CURVE25519 #undef HAVE_ED25519 #if 1 #define HAVE_CURVE25519 #define HAVE_ED25519 /* ED25519 Requires SHA512 */ #define HAVE_ED25519_KEY_IMPORT #define HAVE_ED25519_KEY_EXPORT #define WOLFSSL_ED25519_STREAMING_VERIFY /* Optionally use small math (less flash usage, but much slower) */ #if 0 #define CURVED25519_SMALL #endif #endif /* Ed448 / Curve448 */ #undef HAVE_CURVE448 #undef HAVE_ED448 #if 1 #define HAVE_CURVE448 #define HAVE_ED448 /* ED448 Requires SHA512 */ #define WOLFSSL_SHAKE256 /* Optionally use small math (less flash usage, but much slower) */ #if 0 #define CURVED448_SMALL #endif #endif /* ------------------------------------------------------------------------- */ /* Hashing */ /* ------------------------------------------------------------------------- */ /* Sha */ #undef NO_SHA #if 1 /* 1k smaller, but 25% slower */ // #define USE_SLOW_SHA #else #define NO_SHA #endif /* Sha256 */ #undef NO_SHA256 #if 1 /* not unrolled - ~2k smaller and ~25% slower */ // #define USE_SLOW_SHA256 /* Sha224 */ #if 0 #define WOLFSSL_SHA224 #endif #else #define NO_SHA256 #endif /* Sha512 */ #undef WOLFSSL_SHA512 #if 1 #define WOLFSSL_SHA512 /* Sha384 */ #undef WOLFSSL_SHA384 #if 1 #define WOLFSSL_SHA384 #endif /* over twice as small, but 50% slower */ //#define USE_SLOW_SHA512 #endif /* Sha3 */ #undef WOLFSSL_SHA3 #if 1 #define WOLFSSL_SHA3 #endif /* MD5 */ #undef NO_MD5 #if 0 #else #define NO_MD5 #endif /* HKDF */ #undef HAVE_HKDF #if 1 #define HAVE_HKDF #endif /* CMAC */ #undef WOLFSSL_CMAC #if 0 #define WOLFSSL_CMAC #endif /* ------------------------------------------------------------------------- */ /* Benchmark / Test */ /* ------------------------------------------------------------------------- */ #ifdef TARGET_EMBEDDED /* Use reduced benchmark / test sizes */ #define BENCH_EMBEDDED #endif /* Use test buffers from array (not filesystem) */ #ifndef NO_FILESYSTEM #define USE_CERT_BUFFERS_256 #define USE_CERT_BUFFERS_2048 #endif /* ------------------------------------------------------------------------- */ /* Debugging */ /* ------------------------------------------------------------------------- */ #undef DEBUG_WOLFSSL #undef NO_ERROR_STRINGS #ifndef NDEBUG #if 1 #define DEBUG_WOLFSSL #define DEBUG_WOLFSSH #define DEBUG_MLKEM #else #if 0 #define NO_ERROR_STRINGS #endif #endif #endif /* ------------------------------------------------------------------------- */ /* Memory */ /* ------------------------------------------------------------------------- */ /* Override Memory API's */ #if 0 #define XMALLOC_OVERRIDE /* prototypes for user heap override functions */ /* Note: Realloc only required for normal math */ #include /* for size_t */ extern void *myMalloc(size_t n, void* heap, int type); extern void myFree(void *p, void* heap, int type); extern void *myRealloc(void *p, size_t n, void* heap, int type); #define XMALLOC(n, h, t) myMalloc(n, h, t) #define XFREE(p, h, t) myFree(p, h, t) #define XREALLOC(p, n, h, t) myRealloc(p, n, h, t) #endif #if 0 /* Static memory requires fast math */ #define WOLFSSL_STATIC_MEMORY /* Disable fallback malloc/free */ #define WOLFSSL_NO_MALLOC #if 1 #define WOLFSSL_MALLOC_CHECK /* trap malloc failure */ #endif #endif /* Memory callbacks */ #if 0 #undef USE_WOLFSSL_MEMORY #define USE_WOLFSSL_MEMORY /* Use this to measure / print heap usage */ #if 0 #define WOLFSSL_TRACK_MEMORY #define WOLFSSL_DEBUG_MEMORY #endif #else #ifndef WOLFSSL_STATIC_MEMORY #define NO_WOLFSSL_MEMORY /* Otherwise we will use stdlib malloc, free and realloc */ #endif #endif /* ------------------------------------------------------------------------- */ /* Port */ /* ------------------------------------------------------------------------- */ /* Override Current Time */ #if 0 /* Allows custom "custom_time()" function to be used for benchmark */ #define WOLFSSL_USER_CURRTIME #define WOLFSSL_GMTIME #define USER_TICKS extern unsigned long my_time(unsigned long* timer); #define XTIME my_time #endif /* ------------------------------------------------------------------------- */ /* RNG */ /* ------------------------------------------------------------------------- */ /* Choose RNG method */ #if 0 /* Custom Seed Source */ /* Size of returned HW RNG value */ //#define CUSTOM_RAND_TYPE unsigned int unsigned long get_rand_32(void); #undef CUSTOM_RAND_GENERATE #define CUSTOM_RAND_GENERATE get_rand_32 #endif #if 0 /* Use built-in P-RNG (SHA256 based) with HW RNG */ /* P-RNG + HW RNG (P-RNG is ~8K) */ #undef HAVE_HASHDRBG #define HAVE_HASHDRBG #else #undef WC_NO_HASHDRBG #define WC_NO_HASHDRBG #endif #if 1 /* Bypass P-RNG and use only HW RNG */ //extern int my_rng_gen_block(unsigned char *output, unsigned int sz); #undef CUSTOM_RAND_GENERATE_BLOCK #define CUSTOM_RAND_GENERATE_BLOCK wc_pico_rng_gen_block #define WC_NO_HASHDRBG #define WC_RESEED_INTERVAL (1000000) #endif /* ------------------------------------------------------------------------- */ /* Custom Standard Lib */ /* ------------------------------------------------------------------------- */ /* Allows override of all standard library functions */ #undef STRING_USER #if 0 #define STRING_USER #include #define USE_WOLF_STRSEP #define XSTRSEP(s1, d) wc_strsep((s1), (d)) #define USE_WOLF_STRTOK #define XSTRTOK(s1, d, ptr) wc_strtok((s1), (d), (ptr)) #define XSTRNSTR(s1, s2, n) mystrnstr((s1), (s2), (n)) #define XMEMCPY(d, s, l) memcpy((d), (s), (l)) #define XMEMSET(b, c, l) memset((b), (c), (l)) #define XMEMCMP(s1, s2, n) memcmp((s1), (s2), (n)) #define XMEMMOVE(d, s, l) memmove((d), (s), (l)) #define XSTRLEN(s1) strlen((s1)) #define XSTRNCPY(s1, s2, n) strncpy((s1), (s2), (n)) #define XSTRSTR(s1, s2) strstr((s1), (s2)) #define XSTRNCMP(s1, s2, n) strncmp((s1), (s2), (n)) #define XSTRNCAT(s1, s2, n) strncat((s1), (s2), (n)) #define XSTRNCASECMP(s1, s2, n) strncasecmp((s1), (s2), (n)) #define XSNPRINTF snprintf #endif /* ------------------------------------------------------------------------- */ /* Enable Features */ /* ------------------------------------------------------------------------- */ #define WOLFSSL_TLS13 #define WOLFSSL_OLD_PRIME_CHECK /* Use faster DH prime checking */ #define HAVE_TLS_EXTENSIONS #define HAVE_SUPPORTED_CURVES #define WOLFSSL_BASE64_ENCODE #define WOLFSSL_KEY_GEN /* For RSA Key gen only */ // #define KEEP_PEER_CERT // #define HAVE_COMP_KEY /* TLS Session Cache */ #if 0 #define SMALL_SESSION_CACHE #else #define NO_SESSION_CACHE #endif /* ------------------------------------------------------------------------- */ /* Disable Features */ /* ------------------------------------------------------------------------- */ // #define NO_WOLFSSL_SERVER // #define NO_WOLFSSL_CLIENT // #define NO_CRYPT_TEST // #define NO_CRYPT_BENCHMARK // #define WOLFCRYPT_ONLY /* do not warm when file is included to be built and not required to be */ #define WOLFSSL_IGNORE_FILE_WARN /* In-lining of misc.c functions */ /* If defined, must include wolfcrypt/src/misc.c in build */ /* Slower, but about 1k smaller */ // #define NO_INLINE #ifdef TARGET_EMBEDDED #define NO_FILESYSTEM #define NO_WRITEV #define NO_MAIN_DRIVER #define NO_DEV_RANDOM #endif #define NO_OLD_TLS #define NO_PSK #define NO_DSA #define NO_RC4 #define NO_MD4 #define NO_PWDBASED // #define NO_CODING // #define NO_ASN_TIME // #define NO_CERTS // #define NO_SIG_WRAPPER #ifdef __cplusplus } #endif #endif /* WOLFSSL_USER_SETTINGS_H */